diff --git a/.devcontainer/docker-compose.yml b/.devcontainer/docker-compose.yml index 0c310b5b50..a44c1ea9c3 100644 --- a/.devcontainer/docker-compose.yml +++ b/.devcontainer/docker-compose.yml @@ -1,6 +1,6 @@ services: db: - image: postgres:17 + image: postgres:15 restart: unless-stopped ports: - 5432/tcp diff --git a/.github/dependabot.yml b/.github/dependabot.yml index cc0b8cf14a..441ac9a7bb 100644 --- a/.github/dependabot.yml +++ b/.github/dependabot.yml @@ -4,6 +4,8 @@ updates: directory: / schedule: interval: weekly + cooldown: + default-days: 7 groups: dependencies: patterns: @@ -13,11 +15,15 @@ updates: directory: /contrib/container schedule: interval: weekly + cooldown: + default-days: 7 - package-ecosystem: docker directory: /.devcontainer schedule: interval: weekly + cooldown: + default-days: 7 - package-ecosystem: pip directories: @@ -28,6 +34,8 @@ updates: schedule: interval: weekly day: friday + cooldown: + default-days: 7 groups: dependencies: patterns: @@ -41,6 +49,8 @@ updates: - /src/frontend schedule: interval: weekly + cooldown: + default-days: 7 groups: dependencies: patterns: diff --git a/.github/workflows/check_translations.yaml b/.github/workflows/check_translations.yaml index d16bff66f3..7f3cf46758 100644 --- a/.github/workflows/check_translations.yaml +++ b/.github/workflows/check_translations.yaml @@ -31,7 +31,7 @@ jobs: steps: - name: Checkout Code - uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # pin@v5.0.0 + uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # pin@v6.0.1 with: persist-credentials: false diff --git a/.github/workflows/docker.yaml b/.github/workflows/docker.yaml index 166246ba65..6eab2a60ed 100644 --- a/.github/workflows/docker.yaml +++ b/.github/workflows/docker.yaml @@ -39,7 +39,7 @@ jobs: docker: ${{ steps.filter.outputs.docker }} steps: - - uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # pin@v5.0.0 + - uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # pin@v6.0.1 with: persist-credentials: false - uses: dorny/paths-filter@de90cc6fb38fc0963ad72b210f1f284cd68cea36 # pin@v3.0.2 @@ -67,7 +67,7 @@ jobs: steps: - name: Check out repo - uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # pin@v5.0.0 + uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # pin@v6.0.1 with: persist-credentials: false - name: Test Docker Image @@ -129,7 +129,7 @@ jobs: steps: - name: Check out repo - uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # pin@v5.0.0 + uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # pin@v6.0.1 with: persist-credentials: false - name: Run Migration Tests @@ -153,11 +153,11 @@ jobs: steps: - name: Check out repo - uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # pin@v5.0.0 + uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # pin@v6.0.1 with: persist-credentials: false - name: Set Up Python ${{ env.python_version }} - uses: actions/setup-python@e797f83bcb11b83ae66e0230d6156d7c80228e7c # pin@v6.0.0 + uses: actions/setup-python@83679a892e2d95755f2dac6acb0bfd1e9ac5d548 # pin@v6.1.0 with: python-version: ${{ env.python_version }} - name: Version Check @@ -201,7 +201,7 @@ jobs: - name: Extract Docker metadata if: github.event_name != 'pull_request' id: meta - uses: docker/metadata-action@318604b99e75e41977312d83839a89be02ca4893 # pin@v5.9.0 + uses: docker/metadata-action@c299e40c65443455700f0fdfc63efafe5b349051 # pin@v5.10.0 with: images: | inventree/inventree diff --git a/.github/workflows/qc_checks.yaml b/.github/workflows/qc_checks.yaml index 1a53f77b5c..386920a0f4 100644 --- a/.github/workflows/qc_checks.yaml +++ b/.github/workflows/qc_checks.yaml @@ -41,7 +41,7 @@ jobs: requirements: ${{ steps.filter.outputs.requirements }} steps: - - uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # pin@v5.0.0 + - uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # pin@v6.0.1 with: persist-credentials: false - uses: dorny/paths-filter@de90cc6fb38fc0963ad72b210f1f284cd68cea36 # pin@v3.0.2 @@ -82,11 +82,11 @@ jobs: if: needs.paths-filter.outputs.cicd == 'true' || needs.paths-filter.outputs.server == 'true' || needs.paths-filter.outputs.frontend == 'true' || needs.paths-filter.outputs.requirements == 'true' || needs.paths-filter.outputs.force == 'true' steps: - - uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # pin@v5.0.0 + - uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # pin@v6.0.1 with: persist-credentials: false - name: Set up Python ${{ env.python_version }} - uses: actions/setup-python@e797f83bcb11b83ae66e0230d6156d7c80228e7c # pin@v6.0.0 + uses: actions/setup-python@83679a892e2d95755f2dac6acb0bfd1e9ac5d548 # pin@v6.1.0 with: python-version: ${{ env.python_version }} cache: "pip" @@ -104,7 +104,7 @@ jobs: if: needs.paths-filter.outputs.server == 'true' || needs.paths-filter.outputs.requirements == 'true' || needs.paths-filter.outputs.force == 'true' steps: - - uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # pin@v5.0.0 + - uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # pin@v6.0.1 with: persist-credentials: false - name: Environment Setup @@ -126,11 +126,11 @@ jobs: steps: - name: Checkout Code - uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # pin@v5.0.0 + uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # pin@v6.0.1 with: persist-credentials: false - name: Set up Python ${{ env.python_version }} - uses: actions/setup-python@e797f83bcb11b83ae66e0230d6156d7c80228e7c # pin@v6.0.0 + uses: actions/setup-python@83679a892e2d95755f2dac6acb0bfd1e9ac5d548 # pin@v6.1.0 with: python-version: ${{ env.python_version }} - name: Check Config @@ -164,7 +164,7 @@ jobs: version: ${{ steps.version.outputs.version }} steps: - - uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # pin@v5.0.0 + - uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # pin@v6.0.1 with: persist-credentials: false - name: Environment Setup @@ -249,7 +249,7 @@ jobs: version: ${{ needs.schema.outputs.version }} steps: - - uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # pin@v5.0.0 + - uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # pin@v6.0.1 name: Checkout Code with: repository: inventree/schema @@ -302,9 +302,9 @@ jobs: INVENTREE_LOG_LEVEL: WARNING steps: - - uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # pin@v5.0.0 + - uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # pin@v6.0.1 with: - persist-credentials: true + persist-credentials: false - name: Environment Setup uses: ./.github/actions/setup with: @@ -345,7 +345,7 @@ jobs: python_version: ${{ matrix.python_version }} steps: - - uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # pin@v5.0.0 + - uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # pin@v6.0.1 with: persist-credentials: false - name: Environment Setup @@ -376,6 +376,39 @@ jobs: slug: inventree/InvenTree flags: backend + performance: + name: Tests - Performance + runs-on: ubuntu-24.04 + + needs: ["pre-commit", "paths-filter"] + if: needs.paths-filter.outputs.server == 'true' || needs.paths-filter.outputs.force == 'true' + permissions: + contents: read + id-token: write + + env: + INVENTREE_DB_NAME: inventree_unit_test_db.sqlite + INVENTREE_DB_ENGINE: sqlite3 + INVENTREE_PLUGINS_ENABLED: true + INVENTREE_CONSOLE_LOG: false + INVENTREE_AUTO_UPDATE: true + + steps: + - uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # pin@v6.0.1 + with: + persist-credentials: false + - name: Environment Setup + uses: ./.github/actions/setup + with: + apt-dependency: gettext poppler-utils + dev-install: true + update: true + - name: Performance Reporting + uses: CodSpeedHQ/action@346a2d8a8d9d38909abd0bc3d23f773110f076ad # pin@v4 + with: + mode: simulation + run: inv dev.test --pytest + postgres: name: Tests - DB [PostgreSQL] runs-on: ubuntu-24.04 @@ -409,7 +442,7 @@ jobs: - 6379:6379 steps: - - uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # pin@v5.0.0 + - uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # pin@v6.0.1 with: persist-credentials: false - name: Environment Setup @@ -457,7 +490,7 @@ jobs: - 3306:3306 steps: - - uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # pin@v5.0.0 + - uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # pin@v6.0.1 with: persist-credentials: false - name: Environment Setup @@ -499,7 +532,7 @@ jobs: - 5432:5432 steps: - - uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # pin@v5.0.0 + - uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # pin@v6.0.1 with: persist-credentials: false - name: Environment Setup @@ -533,7 +566,7 @@ jobs: INVENTREE_PLUGINS_ENABLED: false steps: - - uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # pin@v5.0.0 + - uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # pin@v6.0.1 with: persist-credentials: false name: Checkout Code @@ -612,7 +645,7 @@ jobs: VITE_COVERAGE_BUILD: true steps: - - uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # pin@v5.0.0 + - uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # pin@v6.0.1 with: persist-credentials: false - name: Environment Setup @@ -662,7 +695,7 @@ jobs: timeout-minutes: 60 steps: - - uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # pin@v5.0.0 + - uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # pin@v6.0.1 with: persist-credentials: false - name: Environment Setup @@ -695,7 +728,7 @@ jobs: security-events: write steps: - name: Checkout repository - uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # pin@v5.0.0 + uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # pin@v6.0.1 with: persist-credentials: false - uses: hynek/setup-cached-uv@757bedc3f972eb7227a1aa657651f15a8527c817 # pin@v2 @@ -704,7 +737,7 @@ jobs: env: GH_TOKEN: ${{ secrets.GITHUB_TOKEN }} - name: Upload SARIF file - uses: github/codeql-action/upload-sarif@0499de31b99561a6d14a36a5f662c2a54f91beee # pin@v3 + uses: github/codeql-action/upload-sarif@fdbfb4d2750291e159f0156def62b853c2798ca2 # pin@v3 with: sarif_file: results.sarif category: zizmor diff --git a/.github/workflows/release.yaml b/.github/workflows/release.yaml index 00f20bb4a1..35f2aeea44 100644 --- a/.github/workflows/release.yaml +++ b/.github/workflows/release.yaml @@ -20,7 +20,7 @@ jobs: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} steps: - name: Checkout Code - uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # pin@v5.0.0 + uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # pin@v6.0.1 with: persist-credentials: false - name: Version Check @@ -43,7 +43,7 @@ jobs: contents: write attestations: write steps: - - uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # pin@v5.0.0 + - uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # pin@v6.0.1 with: persist-credentials: false - name: Environment Setup @@ -55,7 +55,7 @@ jobs: - name: Build frontend run: cd src/frontend && npm run compile && npm run build - name: Create SBOM for frontend - uses: anchore/sbom-action@8e94d75ddd33f69f691467e42275782e4bfefe84 # pin@v0 + uses: anchore/sbom-action@fbfd9c6c189226748411491745178e0c2017392d # pin@v0 with: artifact-name: frontend-build.spdx path: src/frontend @@ -76,7 +76,7 @@ jobs: subject-path: "${{ github.workspace }}/src/backend/InvenTree/web/static/frontend-build.zip" - name: Upload frontend - uses: svenstaro/upload-release-action@81c65b7cd4de9b2570615ce3aad67a41de5b1a13 # pin@2.11.2 + uses: svenstaro/upload-release-action@6b7fa9f267e90b50a19fef07b3596790bb941741 # pin@2.11.3 with: repo_token: ${{ secrets.GITHUB_TOKEN }} file: src/backend/InvenTree/web/static/frontend-build.zip @@ -84,7 +84,7 @@ jobs: tag: ${{ github.ref }} overwrite: true - name: Upload Attestation - uses: svenstaro/upload-release-action@81c65b7cd4de9b2570615ce3aad67a41de5b1a13 # pin@2.11.2 + uses: svenstaro/upload-release-action@6b7fa9f267e90b50a19fef07b3596790bb941741 # pin@2.11.3 with: repo_token: ${{ secrets.GITHUB_TOKEN }} asset_name: frontend-build.intoto.jsonl @@ -107,7 +107,7 @@ jobs: INVENTREE_DEBUG: true steps: - - uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # pin@v5.0.0 + - uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # pin@v6.0.1 with: persist-credentials: false - name: Environment Setup @@ -127,7 +127,7 @@ jobs: cd docs/site zip -r docs-html.zip * - name: Publish documentation - uses: svenstaro/upload-release-action@81c65b7cd4de9b2570615ce3aad67a41de5b1a13 # pin@2.11.2 + uses: svenstaro/upload-release-action@6b7fa9f267e90b50a19fef07b3596790bb941741 # pin@2.11.3 with: repo_token: ${{ secrets.GITHUB_TOKEN }} file: docs/site/docs-html.zip diff --git a/.github/workflows/scorecard.yaml b/.github/workflows/scorecard.yaml index 8925802f8f..167b29bc60 100644 --- a/.github/workflows/scorecard.yaml +++ b/.github/workflows/scorecard.yaml @@ -32,7 +32,7 @@ jobs: steps: - name: "Checkout code" - uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0 + uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1 with: persist-credentials: false @@ -67,6 +67,6 @@ jobs: # Upload the results to GitHub's code scanning dashboard. - name: "Upload to code-scanning" - uses: github/codeql-action/upload-sarif@0499de31b99561a6d14a36a5f662c2a54f91beee # v4.31.2 + uses: github/codeql-action/upload-sarif@fdbfb4d2750291e159f0156def62b853c2798ca2 # v4.31.5 with: sarif_file: results.sarif diff --git a/.github/workflows/stale.yaml b/.github/workflows/stale.yaml index 131ed2d94a..d8b024b852 100644 --- a/.github/workflows/stale.yaml +++ b/.github/workflows/stale.yaml @@ -16,7 +16,7 @@ jobs: pull-requests: write steps: - - uses: actions/stale@5f858e3efba33a5ca4407a664cc011ad407f2008 # pin@v10.1.0 + - uses: actions/stale@997185467fa4f803885201cee163a9f38240193d # pin@v10.1.1 with: repo-token: ${{ secrets.GITHUB_TOKEN }} stale-issue-message: "This issue seems stale. Please react to show this is still important." diff --git a/.github/workflows/translations.yaml b/.github/workflows/translations.yaml index f27dc5932c..0cce768eeb 100644 --- a/.github/workflows/translations.yaml +++ b/.github/workflows/translations.yaml @@ -32,9 +32,9 @@ jobs: steps: - name: Checkout Code - uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # pin@v5.0.0 + uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # pin@v6.0.1 with: - persist-credentials: true + persist-credentials: false - name: Environment Setup uses: ./.github/actions/setup with: @@ -56,7 +56,7 @@ jobs: echo "Resetting to HEAD~" git reset HEAD~ || true - name: crowdin action - uses: crowdin/github-action@08713f00a50548bfe39b37e8f44afb53e7a802d4 # pin@v2 + uses: crowdin/github-action@60debf382ee245b21794321190ad0501db89d8c1 # pin@v2 with: upload_sources: true upload_translations: false diff --git a/.gitignore b/.gitignore index 7ac5d57dee..b5d907f9e6 100644 --- a/.gitignore +++ b/.gitignore @@ -37,6 +37,11 @@ local_settings.py *.backup *.old +# Files generated by profiling tools +*.prof +*.log +*.sql + # Files used for testing inventree-demo-dataset/ inventree-data/ @@ -111,3 +116,6 @@ api.yaml # web frontend (static files) src/backend/InvenTree/web/static InvenTree/web/static + +# performance test results +.codspeed/ diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml index fe3dee099d..8505425941 100644 --- a/.pre-commit-config.yaml +++ b/.pre-commit-config.yaml @@ -10,7 +10,7 @@ exclude: | )$ repos: - repo: https://github.com/pre-commit/pre-commit-hooks - rev: v5.0.0 + rev: v6.0.0 hooks: - id: trailing-whitespace - id: end-of-file-fixer @@ -18,7 +18,7 @@ repos: exclude: mkdocs.yml - id: mixed-line-ending - repo: https://github.com/astral-sh/ruff-pre-commit - rev: v0.14.3 + rev: v0.14.8 hooks: - id: ruff-format args: [--preview] @@ -29,7 +29,7 @@ repos: --preview ] - repo: https://github.com/astral-sh/uv-pre-commit - rev: 0.7.12 + rev: 0.9.16 hooks: - id: pip-compile name: pip-compile requirements-dev.in @@ -71,16 +71,16 @@ repos: src/frontend/vite.config.ts | )$ - repo: https://github.com/biomejs/pre-commit - rev: v2.0.0-beta.5 + rev: v2.3.8 hooks: - id: biome-check additional_dependencies: ["@biomejs/biome@1.9.4"] files: ^src/frontend/.*\.(js|ts|tsx)$ - repo: https://github.com/gitleaks/gitleaks - rev: v8.27.2 + rev: v8.30.0 hooks: - id: gitleaks - language_version: 1.23.6 + language_version: 1.25.4 #- repo: https://github.com/jumanjihouse/pre-commit-hooks # rev: 3.0.0 # hooks: diff --git a/CHANGELOG.md b/CHANGELOG.md index d6c1804cc6..af5b9c2437 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,14 +7,26 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## Unreleased - YYYY-MM-DD +### Breaking Changes + +- [#10699](https://github.com/inventree/InvenTree/pull/10699) removes the `PartParameter` and `PartParameterTempalate` models (and associated API endpoints). These have been replaced with generic `Parameter` and `ParameterTemplate` models (and API endpoints). Any external client applications which made use of the old endpoints will need to be updated. + ### Added - Adds "Category" columns to BOM and Build Item tables and APIs in [#10722](https://github.com/inventree/InvenTree/pull/10772) +- Adds generic "Parameter" and "ParameterTemplate" models (and associated API endpoints) in [#10699](https://github.com/inventree/InvenTree/pull/10699) +- Adds parameter support for multiple new model types in [#10699](https://github.com/inventree/InvenTree/pull/10699) +- Allows report generator to produce PDF input controls in [#10969](https://github.com/inventree/InvenTree/pull/10969) +- UI overhaul of parameter management in [#10699](https://github.com/inventree/InvenTree/pull/10699) ### Changed +- + ### Removed - Removed python 3.9 / 3.10 support as part of Django 5.2 upgrade in [#10730](https://github.com/inventree/InvenTree/pull/10730) +- Removed the "PartParameter" and "PartParameterTemplate" models (and associated API endpoints) in [#10699](https://github.com/inventree/InvenTree/pull/10699) +- Removed the "ManufacturerPartParameter" model (and associated API endpoints) [#10699](https://github.com/inventree/InvenTree/pull/10699) ## 1.1.0 - 2025-11-02 diff --git a/contrib/container/init.sh b/contrib/container/init.sh index a9dceaf6f0..4883c49b0b 100644 --- a/contrib/container/init.sh +++ b/contrib/container/init.sh @@ -1,4 +1,4 @@ -#!/bin/ash +#!/bin/bash # exit when any command fails set -e diff --git a/contrib/container/requirements.txt b/contrib/container/requirements.txt index 38d766d444..17750212bb 100644 --- a/contrib/container/requirements.txt +++ b/contrib/container/requirements.txt @@ -4,9 +4,9 @@ asgiref==3.10.0 \ --hash=sha256:aef8a81283a34d0ab31630c9b7dfe70c812c95eba78171367ca8745e88124734 \ --hash=sha256:d89f2d8cd8b56dada7d52fa7dc8075baa08fb836560710d38c292a7a3f78c04e # via django -django==5.2.8 \ - --hash=sha256:23254866a5bb9a2cfa6004e8b809ec6246eba4b58a7589bc2772f1bcc8456c7f \ - --hash=sha256:37e687f7bd73ddf043e2b6b97cfe02fcbb11f2dbb3adccc6a2b18c6daa054d7f +django==5.2.9 \ + --hash=sha256:16b5ccfc5e8c27e6c0561af551d2ea32852d7352c67d452ae3e76b4f6b2ca495 \ + --hash=sha256:3a4ea88a70370557ab1930b332fd2887a9f48654261cdffda663fef5976bb00a # via # -r contrib/container/requirements.in # django-auth-ldap diff --git a/contrib/dev_reqs/requirements.txt b/contrib/dev_reqs/requirements.txt index 7a484fd610..3e727175ac 100644 --- a/contrib/dev_reqs/requirements.txt +++ b/contrib/dev_reqs/requirements.txt @@ -214,66 +214,72 @@ ruamel-yaml==0.18.15 \ --hash=sha256:148f6488d698b7a5eded5ea793a025308b25eca97208181b6a026037f391f701 \ --hash=sha256:dbfca74b018c4c3fba0b9cc9ee33e53c371194a9000e694995e620490fd40700 # via jc -ruamel-yaml-clib==0.2.14 \ - --hash=sha256:090782b5fb9d98df96509eecdbcaffd037d47389a89492320280d52f91330d78 \ - --hash=sha256:0a54e5e40a7a691a426c2703b09b0d61a14294d25cfacc00631aa6f9c964df0d \ - --hash=sha256:10d9595b6a19778f3269399eff6bab642608e5966183abc2adbe558a42d4efc9 \ - --hash=sha256:16a60d69f4057ad9a92f3444e2367c08490daed6428291aa16cefb445c29b0e9 \ - --hash=sha256:18c041b28f3456ddef1f1951d4492dbebe0f8114157c1b3c981a4611c2020792 \ - --hash=sha256:1c1acc3a0209ea9042cc3cfc0790edd2eddd431a2ec3f8283d081e4d5018571e \ - --hash=sha256:1f118b707eece8cf84ecbc3e3ec94d9db879d85ed608f95870d39b2d2efa5dca \ - --hash=sha256:2070bf0ad1540d5c77a664de07ebcc45eebd1ddcab71a7a06f26936920692beb \ - --hash=sha256:26a8de280ab0d22b6e3ec745b4a5a07151a0f74aad92dd76ab9c8d8d7087720d \ - --hash=sha256:275f938692013a3883edbd848edde6d9f26825d65c9a2eb1db8baa1adc96a05d \ - --hash=sha256:27c070cf3888e90d992be75dd47292ff9aa17dafd36492812a6a304a1aedc182 \ - --hash=sha256:29757bdb7c142f9595cc1b62ec49a3d1c83fab9cef92db52b0ccebaad4eafb98 \ - --hash=sha256:4ccba93c1e5a40af45b2f08e4591969fa4697eae951c708f3f83dcbf9f6c6bb1 \ - --hash=sha256:4f4a150a737fccae13fb51234d41304ff2222e3b7d4c8e9428ed1a6ab48389b8 \ - --hash=sha256:557df28dbccf79b152fe2d1b935f6063d9cc431199ea2b0e84892f35c03bb0ee \ - --hash=sha256:5ac5ff9425d8acb8f59ac5b96bcb7fd3d272dc92d96a7c730025928ffcc88a7a \ - --hash=sha256:5bae1a073ca4244620425cd3d3aa9746bde590992b98ee8c7c8be8c597ca0d4e \ - --hash=sha256:5e56ac47260c0eed992789fa0b8efe43404a9adb608608631a948cee4fc2b052 \ - --hash=sha256:6aeadc170090ff1889f0d2c3057557f9cd71f975f17535c26a5d37af98f19c27 \ - --hash=sha256:6d5472f63a31b042aadf5ed28dd3ef0523da49ac17f0463e10fda9c4a2773352 \ - --hash=sha256:70eda7703b8126f5e52fcf276e6c0f40b0d314674f896fc58c47b0aef2b9ae83 \ - --hash=sha256:7df6f6e9d0e33c7b1d435defb185095386c469109de723d514142632a7b9d07f \ - --hash=sha256:7e4f9da7e7549946e02a6122dcad00b7c1168513acb1f8a726b1aaf504a99d32 \ - --hash=sha256:803f5044b13602d58ea378576dd75aa759f52116a0232608e8fdada4da33752e \ - --hash=sha256:808c7190a0fe7ae7014c42f73897cf8e9ef14ff3aa533450e51b1e72ec5239ad \ - --hash=sha256:81f6d3b19bc703679a5705c6a16dabdc79823c71d791d73c65949be7f3012c02 \ - --hash=sha256:83bbd8354f6abb3fdfb922d1ed47ad8d1db3ea72b0523dac8d07cdacfe1c0fcf \ - --hash=sha256:8dd3c2cc49caa7a8d64b67146462aed6723a0495e44bf0aa0a2e94beaa8432f6 \ - --hash=sha256:915748cfc25b8cfd81b14d00f4bfdb2ab227a30d6d43459034533f4d1c207a2a \ - --hash=sha256:94f3efb718f8f49b031f2071ec7a27dd20cbfe511b4dfd54ecee54c956da2b31 \ - --hash=sha256:9bd8fe07f49c170e09d76773fb86ad9135e0beee44f36e1576a201b0676d3d1d \ - --hash=sha256:9bf6b699223afe6c7fe9f2ef76e0bfa6dd892c21e94ce8c957478987ade76cd8 \ - --hash=sha256:a05ba88adf3d7189a974b2de7a9d56731548d35dc0a822ec3dc669caa7019b29 \ - --hash=sha256:a0ac90efbc7a77b0d796c03c8cc4e62fd710b3f1e4c32947713ef2ef52e09543 \ - --hash=sha256:a0cb71ccc6ef9ce36eecb6272c81afdc2f565950cdcec33ae8e6cd8f7fc86f27 \ - --hash=sha256:a37f40a859b503304dd740686359fcf541d6fb3ff7fc10f539af7f7150917c68 \ - --hash=sha256:a911aa73588d9a8b08d662b9484bc0567949529824a55d3885b77e8dd62a127a \ - --hash=sha256:aef953f3b8bd0b50bd52a2e52fb54a6a2171a1889d8dea4a5959d46c6624c451 \ - --hash=sha256:b28caeaf3e670c08cb7e8de221266df8494c169bd6ed8875493fab45be9607a4 \ - --hash=sha256:b30110b29484adc597df6bd92a37b90e63a8c152ca8136aad100a02f8ba6d1b6 \ - --hash=sha256:b5b0f7e294700b615a3bcf6d28b26e6da94e8eba63b079f4ec92e9ba6c0d6b54 \ - --hash=sha256:c099cafc1834d3c5dac305865d04235f7c21c167c8dd31ebc3d6bbc357e2f023 \ - --hash=sha256:d73a0187718f6eec5b2f729b0f98e4603f7bd9c48aa65d01227d1a5dcdfbe9e8 \ - --hash=sha256:d8354515ab62f95a07deaf7f845886cc50e2f345ceab240a3d2d09a9f7d77853 \ - --hash=sha256:dba72975485f2b87b786075e18a6e5d07dc2b4d8973beb2732b9b2816f1bad70 \ - --hash=sha256:dd7546c851e59c06197a7c651335755e74aa383a835878ca86d2c650c07a2f85 \ - --hash=sha256:df3ec9959241d07bc261f4983d25a1205ff37703faf42b474f15d54d88b4f8c9 \ - --hash=sha256:e1d1735d97fd8a48473af048739379975651fab186f8a25a9f683534e6904179 \ - --hash=sha256:e501c096aa3889133d674605ebd018471bc404a59cbc17da3c5924421c54d97c \ - --hash=sha256:e7cb9ad1d525d40f7d87b6df7c0ff916a66bc52cb61b66ac1b2a16d0c1b07640 \ - --hash=sha256:f4e97a1cf0b7a30af9e1d9dad10a5671157b9acee790d9e26996391f49b965a2 \ - --hash=sha256:f8b2acb0ffdd2ce8208accbec2dca4a06937d556fdcaefd6473ba1b5daa7e3c4 \ - --hash=sha256:fb04c5650de6668b853623eceadcdb1a9f2fee381f5d7b6bc842ee7c239eeec4 \ - --hash=sha256:fbc08c02e9b147a11dfcaa1ac8a83168b699863493e183f7c0c8b12850b7d259 \ - --hash=sha256:ff86876889ea478b1381089e55cf9e345707b312beda4986f823e1d95e8c0f59 +ruamel-yaml-clib==0.2.15 \ + --hash=sha256:014181cdec565c8745b7cbc4de3bf2cc8ced05183d986e6d1200168e5bb59490 \ + --hash=sha256:04d21dc9c57d9608225da28285900762befbb0165ae48482c15d8d4989d4af14 \ + --hash=sha256:05c70f7f86be6f7bee53794d80050a28ae7e13e4a0087c1839dcdefd68eb36b6 \ + --hash=sha256:0ba6604bbc3dfcef844631932d06a1a4dcac3fee904efccf582261948431628a \ + --hash=sha256:11e5499db1ccbc7f4b41f0565e4f799d863ea720e01d3e99fa0b7b5fcd7802c9 \ + --hash=sha256:1b45498cc81a4724a2d42273d6cfc243c0547ad7c6b87b4f774cb7bcc131c98d \ + --hash=sha256:1bb7b728fd9f405aa00b4a0b17ba3f3b810d0ccc5f77f7373162e9b5f0ff75d5 \ + --hash=sha256:1f66f600833af58bea694d5892453f2270695b92200280ee8c625ec5a477eed3 \ + --hash=sha256:27dc656e84396e6d687f97c6e65fb284d100483628f02d95464fd731743a4afe \ + --hash=sha256:2812ff359ec1f30129b62372e5f22a52936fac13d5d21e70373dbca5d64bb97c \ + --hash=sha256:2b216904750889133d9222b7b873c199d48ecbb12912aca78970f84a5aa1a4bc \ + --hash=sha256:331fb180858dd8534f0e61aa243b944f25e73a4dae9962bd44c46d1761126bbf \ + --hash=sha256:3cb75a3c14f1d6c3c2a94631e362802f70e83e20d1f2b2ef3026c05b415c4900 \ + --hash=sha256:3eb199178b08956e5be6288ee0b05b2fb0b5c1f309725ad25d9c6ea7e27f962a \ + --hash=sha256:424ead8cef3939d690c4b5c85ef5b52155a231ff8b252961b6516ed7cf05f6aa \ + --hash=sha256:45702dfbea1420ba3450bb3dd9a80b33f0badd57539c6aac09f42584303e0db6 \ + --hash=sha256:468858e5cbde0198337e6a2a78eda8c3fb148bdf4c6498eaf4bc9ba3f8e780bd \ + --hash=sha256:46895c17ead5e22bea5e576f1db7e41cb273e8d062c04a6a49013d9f60996c25 \ + --hash=sha256:46e4cc8c43ef6a94885f72512094e482114a8a706d3c555a34ed4b0d20200600 \ + --hash=sha256:480894aee0b29752560a9de46c0e5f84a82602f2bc5c6cde8db9a345319acfdf \ + --hash=sha256:4b293a37dc97e2b1e8a1aec62792d1e52027087c8eea4fc7b5abd2bdafdd6642 \ + --hash=sha256:4be366220090d7c3424ac2b71c90d1044ea34fca8c0b88f250064fd06087e614 \ + --hash=sha256:4d1032919280ebc04a80e4fb1e93f7a738129857eaec9448310e638c8bccefcf \ + --hash=sha256:4d3b58ab2454b4747442ac76fab66739c72b1e2bb9bd173d7694b9f9dbc9c000 \ + --hash=sha256:4dcec721fddbb62e60c2801ba08c87010bd6b700054a09998c4d09c08147b8fb \ + --hash=sha256:512571ad41bba04eac7268fe33f7f4742210ca26a81fe0c75357fa682636c690 \ + --hash=sha256:542d77b72786a35563f97069b9379ce762944e67055bea293480f7734b2c7e5e \ + --hash=sha256:56ea19c157ed8c74b6be51b5fa1c3aff6e289a041575f0556f66e5fb848bb137 \ + --hash=sha256:5d3c9210219cbc0f22706f19b154c9a798ff65a6beeafbf77fc9c057ec806f7d \ + --hash=sha256:5fea0932358e18293407feb921d4f4457db837b67ec1837f87074667449f9401 \ + --hash=sha256:617d35dc765715fa86f8c3ccdae1e4229055832c452d4ec20856136acc75053f \ + --hash=sha256:64da03cbe93c1e91af133f5bec37fd24d0d4ba2418eaf970d7166b0a26a148a2 \ + --hash=sha256:65f48245279f9bb301d1276f9679b82e4c080a1ae25e679f682ac62446fac471 \ + --hash=sha256:6f1d38cbe622039d111b69e9ca945e7e3efebb30ba998867908773183357f3ed \ + --hash=sha256:713cd68af9dfbe0bb588e144a61aad8dcc00ef92a82d2e87183ca662d242f524 \ + --hash=sha256:71845d377c7a47afc6592aacfea738cc8a7e876d586dfba814501d8c53c1ba60 \ + --hash=sha256:753faf20b3a5906faf1fc50e4ddb8c074cb9b251e00b14c18b28492f933ac8ef \ + --hash=sha256:7e74ea87307303ba91073b63e67f2c667e93f05a8c63079ee5b7a5c8d0d7b043 \ + --hash=sha256:88eea8baf72f0ccf232c22124d122a7f26e8a24110a0273d9bcddcb0f7e1fa03 \ + --hash=sha256:923816815974425fbb1f1bf57e85eca6e14d8adc313c66db21c094927ad01815 \ + --hash=sha256:9b6f7d74d094d1f3a4e157278da97752f16ee230080ae331fcc219056ca54f77 \ + --hash=sha256:a8220fd4c6f98485e97aea65e1df76d4fed1678ede1fe1d0eed2957230d287c4 \ + --hash=sha256:ab0df0648d86a7ecbd9c632e8f8d6b21bb21b5fc9d9e095c796cacf32a728d2d \ + --hash=sha256:ac9b8d5fa4bb7fd2917ab5027f60d4234345fd366fe39aa711d5dca090aa1467 \ + --hash=sha256:badd1d7283f3e5894779a6ea8944cc765138b96804496c91812b2829f70e18a7 \ + --hash=sha256:bdc06ad71173b915167702f55d0f3f027fc61abd975bd308a0968c02db4a4c3e \ + --hash=sha256:bf0846d629e160223805db9fe8cc7aec16aaa11a07310c50c8c7164efa440aec \ + --hash=sha256:bfd309b316228acecfa30670c3887dcedf9b7a44ea39e2101e75d2654522acd4 \ + --hash=sha256:c583229f336682b7212a43d2fa32c30e643d3076178fb9f7a6a14dde85a2d8bd \ + --hash=sha256:cb15a2e2a90c8475df45c0949793af1ff413acfb0a716b8b94e488ea95ce7cff \ + --hash=sha256:d290eda8f6ada19e1771b54e5706b8f9807e6bb08e873900d5ba114ced13e02c \ + --hash=sha256:da3d6adadcf55a93c214d23941aef4abfd45652110aed6580e814152f385b862 \ + --hash=sha256:dcc7f3162d3711fd5d52e2267e44636e3e566d1e5675a5f0b30e98f2c4af7974 \ + --hash=sha256:def5663361f6771b18646620fca12968aae730132e104688766cf8a3b1d65922 \ + --hash=sha256:e5e9f630c73a490b758bf14d859a39f375e6999aea5ddd2e2e9da89b9953486a \ + --hash=sha256:e9fde97ecb7bb9c41261c2ce0da10323e9227555c674989f8d9eb7572fc2098d \ + --hash=sha256:ef71831bd61fbdb7aa0399d5c4da06bea37107ab5c79ff884cc07f2450910262 \ + --hash=sha256:f4421ab780c37210a07d138e56dd4b51f8642187cdfb433eb687fe8c11de0144 \ + --hash=sha256:f6d3655e95a80325b84c4e14c080b2470fe4f33b6846f288379ce36154993fb1 \ + --hash=sha256:fd4c928ddf6bce586285daa6d90680b9c291cfd045fc40aad34e445d57b1bf51 \ + --hash=sha256:fe239bdfdae2302e93bd6e8264bd9b71290218fff7084a9db250b55caaccf43f # via ruamel-yaml -urllib3==2.5.0 \ - --hash=sha256:3fc47733c7e419d4bc3f6b3dc2b4f890bb743906a30d56ba4a5bfa4bbff92760 \ - --hash=sha256:e6b01673c0fa6a13e374b50871808eb3bf7046c4b125b216f6bf1cc604cff0dc +urllib3==2.6.0 \ + --hash=sha256:c90f7a39f716c572c4e3e58509581ebd83f9b59cced005b7db7ad2d22b0db99f \ + --hash=sha256:cb9bcef5a4b345d5da5d145dc3e30834f58e8018828cbc724d30b4cb7d4d49f1 # via requests xmltodict==1.0.2 \ --hash=sha256:54306780b7c2175a3967cad1db92f218207e5bc1aba697d887807c0fb68b7649 \ diff --git a/docs/README.md b/docs/README.md index d9d1b1e1da..017cc6bd53 100644 --- a/docs/README.md +++ b/docs/README.md @@ -4,32 +4,92 @@ This repository hosts the [official documentation](https://inventree.readthedocs.io/) for [InvenTree](https://github.com/inventree/inventree), an open source inventory management system. -To serve this documentation locally (e.g. for development), you will need to have Python 3 installed on your system. +## Prerequisites -## Setup +InvenTree uses [MkDocs](https://www.mkdocs.org/) to convert [Markdown](https://www.mkdocs.org/user-guide/writing-your-docs/#writing-with-markdown) format `.md` files into HTML suitable for viewing in a web browser. -Run the following commands from the top-level project directory: +!!! info "Prerequisites" + To build and serve this documentation locally (e.g. for development), you will need: + + * Python 3 installed on your system. + * An existing InvenTree installation containing the virtual environment that was created during installation. + + These instructions assume you followed the [InvenTree bare metal installation instructions](./docs/start/install.md), so you'll have an `inventree` user, a home directory at `/home/inventree`, the InvenTree source code cloned from [GitHub](https://github.com/inventree/inventree) into `/home/inventree/src`, and a virtual environment at `/home/inventree/env`. If you installed InvenTree some other way, this might vary, and you'll have to adjust these instructions accordingly. + +!!! warning "Your InvenTree install will be updated!" + Some of the commands that follow will make changes to your install, for example, by running any pending database migrations. There's a small risk this may cause issues with your existing installation. If you can't risk this, consider setting up a separate InvenTree installation specifically for documentation development. + +## Building the documentation locally + +To build the documentation locally, run these commands as the `inventree` user: ``` -$ git clone https://github.com/inventree/inventree +$ cd /home/inventree +$ source env/bin/activate +``` + +!!! info "(env) prefix" + The shell prompt should now display the `(env)` prefix, showing that you are operating within the context of the python virtual environment + +You can now install the additional packages needed by mkdocs: + +``` +$ cd src $ pip install --require-hashes -r docs/requirements.txt ``` -## Serve Locally +## Schema generation -To serve the pages locally, run the following command (from the top-level project directory): +Building the documentation requires extracting the API schema from the source code. + +!!! tip + This command is only required when building the documentation for the first time, or when changes have been made to the API schema. ``` -$ mkdocs serve -f docs/mkdocs.yml -a localhost:8080 +$ invoke build-docs ``` -## Edit Documentation Files +You will see output similar to this (truncated for brevity): +``` +Running InvenTree database migrations... +Exporting definitions... +Exporting settings definition to '/home/inventree/src/docs/generated/inventree_settings.json'... +Exported InvenTree settings definitions to '/home/inventree/src/docs/generated/inventree_settings.json' +Exported InvenTree tag definitions to '/home/inventree/src/docs/generated/inventree_tags.yml' +Exported InvenTree filter definitions to '/home/inventree/src/docs/generated/inventree_filters.yml' +Exported InvenTree report context definitions to '/home/inventree/src/docs/generated/inventree_report_context.json' +Exporting definitions complete +Exporting schema file to '/home/inventree/src/docs/generated/schema.yml' -Once the server is running, it will monitor the documentation files for any changes, and update the served pages. +Schema export completed: /home/inventree/src/docs/generated/schema.yml +Documentation build complete, but mkdocs not requested +``` + +## Viewing the documentation + +Generate the HTML files from the markdown source files, and start the MkDocs webpage server: + +``` +$ mkdocs serve -f docs/mkdocs.yml +``` + +You can then point your web browser at http://localhost:8080/ + +Alternatively, you can use the `invoke` command: + +``` +$ invoke dev.docs-server +``` + +If you need to, use the `-a` option after `mkdocs` or `invoke` to set the address and port. Run `invoke dev.docs-server --help` for details. + +## Editing the Documentation Files + +Once the server is running, it will monitor the documentation files for changes, and regenerate the HTML pages as required. Refresh your web browser to see the changes. ### Admonitions -"Admonition" blocks can be added as follow: +"Admonition" blocks can be added to the documentation source as follows: ``` !!! info "This is the admonition block title" This is the admonition block content diff --git a/docs/docs/api/index.md b/docs/docs/api/index.md index b65c63b159..58c21fa947 100644 --- a/docs/docs/api/index.md +++ b/docs/docs/api/index.md @@ -106,7 +106,7 @@ response = request.get('http://localhost:8080/api/part/', data=data, headers=hea InvenTree has built-in support for using [oAuth2](https://oauth.net/2/) and OpenID Connect (OIDC) for authentication to the API. This enables using the instance as a very limited identity provider. -A default application using a public client with PKCE enabled ships with each instance. Intended to be used with the python api and configured with very wide scopes this can also be used for quick tests - the cliend_id is `zDFnsiRheJIOKNx6aCQ0quBxECg1QBHtVFDPloJ6`. +A default application using a public client with PKCE enabled ships with each instance. Intended to be used with the python api and configured with very wide scopes this can also be used for quick tests - the client_id is `zDFnsiRheJIOKNx6aCQ0quBxECg1QBHtVFDPloJ6`. #### Managing applications diff --git a/docs/docs/api/python/examples.md b/docs/docs/api/python/examples.md index 7ec1059f42..34e31c2829 100644 --- a/docs/docs/api/python/examples.md +++ b/docs/docs/api/python/examples.md @@ -67,7 +67,7 @@ print("Minimum stock:", part.minimum_stock) ### Adding Parameters -Each [part](../../part/index.md) can have multiple [parameters](../../part/parameter.md). For the example of the sofa (above) *length* and *weight* make sense. Each parameter has a parameter template that combines the parameter name with a unit. So we first have to create the parameter templates and afterwards add the parameter values to the sofa. +Each [part](../../part/index.md) can have multiple [parameters](../../concepts/parameters.md). For the example of the sofa (above) *length* and *weight* make sense. Each parameter has a parameter template that combines the parameter name with a unit. So we first have to create the parameter templates and afterwards add the parameter values to the sofa. ```python from inventree.part import Parameter diff --git a/docs/docs/app/barcode.md b/docs/docs/app/barcode.md index 5f470b3391..2645287f76 100644 --- a/docs/docs/app/barcode.md +++ b/docs/docs/app/barcode.md @@ -73,7 +73,7 @@ the *Scan Items Into Location* action allows you to scan items into the selected ### Stock Item Actions -From the [Stock Item detail page](./stock.md#stock-item-detail-view), the following barcode actions may be available: +From the [Stock Item detail page](./stock.md#details-tab), the following barcode actions may be available: {{ image("app/barcode_stock_item_actions.png", "Stock item barcode actions") }} diff --git a/docs/docs/assets/images/barcode/barcode_allocate_stock.png b/docs/docs/assets/images/barcode/barcode_allocate_stock.png new file mode 100644 index 0000000000..676efcb1e3 Binary files /dev/null and b/docs/docs/assets/images/barcode/barcode_allocate_stock.png differ diff --git a/docs/docs/assets/images/barcode/barcode_field.png b/docs/docs/assets/images/barcode/barcode_field.png new file mode 100644 index 0000000000..37683eb33e Binary files /dev/null and b/docs/docs/assets/images/barcode/barcode_field.png differ diff --git a/docs/docs/assets/images/barcode/barcode_field_dialog.png b/docs/docs/assets/images/barcode/barcode_field_dialog.png new file mode 100644 index 0000000000..202bf2fcd6 Binary files /dev/null and b/docs/docs/assets/images/barcode/barcode_field_dialog.png differ diff --git a/docs/docs/assets/images/barcode/barcode_field_filled.png b/docs/docs/assets/images/barcode/barcode_field_filled.png new file mode 100644 index 0000000000..208cfa4a3a Binary files /dev/null and b/docs/docs/assets/images/barcode/barcode_field_filled.png differ diff --git a/docs/docs/assets/images/concepts/attachments-tab.png b/docs/docs/assets/images/concepts/attachments-tab.png new file mode 100644 index 0000000000..1eff956ca9 Binary files /dev/null and b/docs/docs/assets/images/concepts/attachments-tab.png differ diff --git a/docs/docs/assets/images/concepts/parameter-tab.png b/docs/docs/assets/images/concepts/parameter-tab.png new file mode 100644 index 0000000000..e9d19bed50 Binary files /dev/null and b/docs/docs/assets/images/concepts/parameter-tab.png differ diff --git a/docs/docs/assets/images/concepts/parameter-template.png b/docs/docs/assets/images/concepts/parameter-template.png new file mode 100644 index 0000000000..a3a2234340 Binary files /dev/null and b/docs/docs/assets/images/concepts/parameter-template.png differ diff --git a/docs/docs/assets/images/concepts/parametric-parts.png b/docs/docs/assets/images/concepts/parametric-parts.png new file mode 100644 index 0000000000..16d108c23d Binary files /dev/null and b/docs/docs/assets/images/concepts/parametric-parts.png differ diff --git a/docs/docs/assets/images/plugin/plugin_install_git.png b/docs/docs/assets/images/plugin/plugin_install_git.png new file mode 100644 index 0000000000..fe66c9a19c Binary files /dev/null and b/docs/docs/assets/images/plugin/plugin_install_git.png differ diff --git a/docs/docs/assets/images/plugin/plugin_install_txt.png b/docs/docs/assets/images/plugin/plugin_install_txt.png new file mode 100644 index 0000000000..306f85eb49 Binary files /dev/null and b/docs/docs/assets/images/plugin/plugin_install_txt.png differ diff --git a/docs/docs/assets/images/plugin/plugin_install_web.png b/docs/docs/assets/images/plugin/plugin_install_web.png index 67ecc3bfd7..053c1ce56e 100644 Binary files a/docs/docs/assets/images/plugin/plugin_install_web.png and b/docs/docs/assets/images/plugin/plugin_install_web.png differ diff --git a/docs/docs/assets/images/report/report_merge.png b/docs/docs/assets/images/report/report_merge.png new file mode 100644 index 0000000000..a6ef742047 Binary files /dev/null and b/docs/docs/assets/images/report/report_merge.png differ diff --git a/docs/docs/assets/images/stock/build_order_allocations.png b/docs/docs/assets/images/stock/build_order_allocations.png new file mode 100644 index 0000000000..d5a32d9eec Binary files /dev/null and b/docs/docs/assets/images/stock/build_order_allocations.png differ diff --git a/docs/docs/assets/images/stock/sales_order_allocations.png b/docs/docs/assets/images/stock/sales_order_allocations.png new file mode 100644 index 0000000000..1b50d86ff2 Binary files /dev/null and b/docs/docs/assets/images/stock/sales_order_allocations.png differ diff --git a/docs/docs/assets/images/stock/serial_edit.png b/docs/docs/assets/images/stock/serial_edit.png new file mode 100644 index 0000000000..913dde91fe Binary files /dev/null and b/docs/docs/assets/images/stock/serial_edit.png differ diff --git a/docs/docs/assets/images/stock/serial_edit_error.png b/docs/docs/assets/images/stock/serial_edit_error.png new file mode 100644 index 0000000000..26cad8d44d Binary files /dev/null and b/docs/docs/assets/images/stock/serial_edit_error.png differ diff --git a/docs/docs/assets/images/stock/stock_detail.png b/docs/docs/assets/images/stock/stock_detail.png new file mode 100644 index 0000000000..de6f1975f3 Binary files /dev/null and b/docs/docs/assets/images/stock/stock_detail.png differ diff --git a/docs/docs/assets/images/stock/stock_overview.png b/docs/docs/assets/images/stock/stock_overview.png new file mode 100644 index 0000000000..5efbf9927c Binary files /dev/null and b/docs/docs/assets/images/stock/stock_overview.png differ diff --git a/docs/docs/barcodes/index.md b/docs/docs/barcodes/index.md index 5632473594..6d5eb04d76 100644 --- a/docs/docs/barcodes/index.md +++ b/docs/docs/barcodes/index.md @@ -69,6 +69,27 @@ To access this page, select *Scan Barcode* from the main navigation menu: {{ image("barcode/barcode_nav_menu.png", "Barcode menu item") }} {{ image("barcode/barcode_scan_page.png", "Barcode scan page") }} +## Barcodes in Forms + +The InvenTree user interface supports direct scanning of barcodes within certain forms in the web UI. This means that any form field which points to a model which supports barcodes can accept barcode input. If barcode scanning is supported for a particular field, a barcode icon will be displayed next to the input field: + +{{ image("barcode/barcode_field.png", "Barcode form field") }} + +To scan a barcode into a form field, click this barcode icon. A barcode scanning dialog will be displayed, allowing the user to scan a barcode using their preferred input method: + +{{ image("barcode/barcode_field_dialog.png", "Barcode field scan dialog") }} + +Once scanned, the form field will be automatically populated with the correct item. + +{{ image("barcode/barcode_field_filled.png", "Barcode field populated") }} + +Any field which supports barcode input will have this functionality, such as allocating stock items to an order: + +{{ image("barcode/barcode_allocate_stock.png", "Allocate stock via barcode") }} + +### User Configuration + +By default, barcode scanning in form fields is disabled. Each user can enable this feature via their [user preferences](../settings/user.md#display-settings). ## App Integration @@ -76,8 +97,15 @@ Barcode scanning is a key feature of the [companion mobile app](../app/barcode.m ## Barcode History -If enabled, InvenTree can retain logs of the most recent barcode scans. This can be very useful for debugging or auditing purpopes. +If enabled, InvenTree can retain logs of the most recent barcode scans. This can be very useful for debugging or auditing purposes. Refer to the [barcode settings](../settings/global.md#barcodes) to enable barcode history logging. The barcode history can be viewed via the admin panel in the web interface. + +## Barcode Settings + +There are a number of settings which control the behavior of barcodes within InvenTree. For more information, refer to the links below: + +- [Global Barcode Settings](../settings/global.md#barcodes) +- [User Preferences for Barcode Scanning](../settings/user.md#display-settings) diff --git a/docs/docs/concepts/attachments.md b/docs/docs/concepts/attachments.md new file mode 100644 index 0000000000..7fcdde8238 --- /dev/null +++ b/docs/docs/concepts/attachments.md @@ -0,0 +1,18 @@ +--- +title: Attachments +--- + +## Attachments + +An *attachment* is a file which has been uploaded and linked to a specific object within InvenTree. Attachments can be used to store additional documentation, images, or other relevant files associated with various InvenTree models. + +!!! note "Business Logic" + Attachments are not used for any core business logic within InvenTree. They are intended to provide additional metadata for objects, which can be useful for documentation, reference, or reporting purposes. + +Parameters can be associated with various InvenTree models. + +### Attachments Tab + +Any model which supports attachments will have an "Attachments" tab on its detail page. This tab displays all attachments associated with that object: + +{{ image("concepts/attachments-tab.png", "Order Attachments Example") }} diff --git a/docs/docs/part/parameter.md b/docs/docs/concepts/parameters.md similarity index 79% rename from docs/docs/part/parameter.md rename to docs/docs/concepts/parameters.md index 4adff5e784..ca44989dab 100644 --- a/docs/docs/part/parameter.md +++ b/docs/docs/concepts/parameters.md @@ -1,17 +1,21 @@ --- -title: Part Parameters +title: Parameters --- -## Part Parameters +## Parameters -A part *parameter* describes a particular "attribute" or "property" of a specific part. +A *parameter* describes a particular "attribute" or "property" of a specific object in InvenTree. Parameters allow for flexible and customizable data to be stored against various InvenTree models. -Part parameters are located in the "Parameters" tab, on each part detail page. -There is no limit for the number of part parameters and they are fully customizable through the use of [parameter templates](#parameter-templates). +!!! note "Business Logic" + Parameters are not used for any core business logic within InvenTree. They are intended to provide additional metadata for objects, which can be useful for documentation, filtering, or reporting purposes. -Here is an example of parameters for a capacitor: +Parameters can be associated with various InvenTree models. -{{ image("part/part_parameters_example.png", "Part Parameters Example") }} +### Parameter Tab + +Any model which supports parameters will have a "Parameters" tab on its detail page. This tab displays all parameters associated with that object: + +{{ image("concepts/parameter-tab.png", "Part Parameters Example") }} ## Parameter Templates @@ -22,13 +26,16 @@ Parameter templates are used to define the different types of parameters which a | Name | The name of the parameter template (*must be unique*) | | Description | Optional description for the template | | Units | Optional units field (*must be a valid [physical unit](#parameter-units)*) | +| Model Type | The InvenTree model to which this parameter template applies (e.g. Part, Company, etc). If this is left blank, the template can be used for any model type. | | Choices | A comma-separated list of valid choices for parameter values linked to this template. | | Checkbox | If set, parameters linked to this template can only be assigned values *true* or *false* | | Selection List | If set, parameters linked to this template can only be assigned values from the linked [selection list](#selection-lists) | +{{ image("concepts/parameter-template.png", "Parameters Template") }} + ### Create Template -Parameter templates are created and edited via the [settings interface](../settings/global.md). +Parameter templates are created and edited via the [admin interface](../settings/admin.md). To create a template: @@ -54,11 +61,11 @@ Select the parameter `Template` you would like to use for this parameter, fill-o ## Parametric Tables -Parametric tables gather all parameters from all parts inside a particular [part category](./index.md#part-category) to be sorted and filtered. +Parametric tables gather all parameters from all objects of a particular type, to be sorted and filtered. -To access a category's parametric table, click on the "Parameters" tab within the category view: +Tables views which support parametric filtering and sorting will have a "Parametric View" button above the table: -{{ image("part/parametric_table_tab.png", "Parametric Table Tab") }} +{{ image("concepts/parametric-parts.png", "Parametric Parts Table") }} ### Sorting by Parameter Value @@ -139,7 +146,7 @@ Parameter sorting takes unit conversion into account, meaning that values provid ### Selection Lists -Selection Lists can be used to add a large number of predefined values to a parameter template. This can be useful for parameters which must be selected from a large predefined list of values (e.g. a list of standardised colo codes). Choices on templates are limited to 5000 characters, selection lists can be used to overcome this limitation. +Selection Lists can be used to add a large number of predefined values to a parameter template. This can be useful for parameters which must be selected from a large predefined list of values (e.g. a list of standardized color codes). Choices on templates are limited to 5000 characters, selection lists can be used to overcome this limitation. It is possible that plugins lock selection lists to ensure a known state. diff --git a/docs/docs/concepts/units.md b/docs/docs/concepts/units.md index 2f78f34ede..b46e61a745 100644 --- a/docs/docs/concepts/units.md +++ b/docs/docs/concepts/units.md @@ -59,9 +59,9 @@ The [unit of measure](../part/index.md#units-of-measure) field for the [Part](.. The [supplier part](../part/index.md/#supplier-parts) model uses real-world units to convert between supplier part quantities and internal stock quantities. Unit conversion rules ensure that only compatible unit types can be supplied -### Part Parameter +### Parameter -The [part parameter template](../part/parameter.md#parameter-templates) model can specify units of measure, and part parameters can be specified against these templates with compatible units +The [parameter template](../concepts/parameters.md#parameter-templates) model can specify units of measure, and part parameters can be specified against these templates with compatible units ## Custom Units diff --git a/docs/docs/develop/index.md b/docs/docs/develop/index.md new file mode 100644 index 0000000000..907d12099a --- /dev/null +++ b/docs/docs/develop/index.md @@ -0,0 +1,56 @@ +--- +title: InvenTree Development +--- + +## Introduction + +If you are interested in contributing to InvenTree, then this section is for you! Here you will find information about the architecture of InvenTree, how to set up a development environment, and guidelines for contributing code or documentation. + +### Architecture Overview + +Read the [architecture overview](./architecture.md) to understand the high-level architecture of InvenTree, including how requests are processed, the backend and frontend architecture, and various components of the system. + +### Contribution Guide + +Start with the [contribution guide](./contributing.md) to understand how to get involved with the InvenTree project. + +### Devcontainer Setup + +We provide a [devcontainer](./devcontainer.md) configuration to help you quickly set up a development environment using vscode. + +### Frontend Development + +For information on developing the InvenTree frontend, refer to the [frontend development guide](./react-frontend.md). + +## Profiling Tools + +The InvenTree project supports integrated profiling tools to help developers analyze and optimize performance. Note that the following tools are intended for development use only and should not be enabled in production environments. In fact, they are explicitly disabled unless the server is running in [debug mode](../start/index.md#debug-mode). + +### Django Silk + +[django-silk](https://silk.readthedocs.io/en/latest/) is a profiling tool that can be used to monitor and analyze the performance of Django applications. It provides insights into SQL queries, request/response times, and more. + +To enable django-silk profiling, ensure that the `debug_silk` option is set to `True` in your [config file](../start/config.md#configuration-file). Alternative, you can set the `INVENTREE_DEBUG_SILK` environment variable to enable this feature. + +Once enabled, you can access the silk interface at the `/silk/` endpoint of your InvenTree instance. + +!!! tip "Run Migrations" + If you are enabling django-silk for the first time, you may need to run database migrations to create the necessary tables. You can do this by running `invoke migrate`. + +#### Detailed Profiling + +To enable detailed profiling in django-silk, set the `INVENTREE_DEBUG_SILK_PROFILING` environment variable to `True`, or set the `debug_silk_profiling` option to `True` in your config file. This will enable more granular profiling features within django-silk. Refer to the [django-silk documentation](https://github.com/jazzband/django-silk#profiling) for more information. + +### Django QueryCount + +Enabling the `INVENTREE_DEBUG_QUERYCOUNT` setting will log (to the terminal) the number of database queries executed for each page load. This can be useful for identifying performance bottlenecks in the InvenTree server. Note that this setting is only available if `INVENTREE_DEBUG` is also enabled. + +### Database Logging + +Enabling the `INVENTREE_DB_LOGGING` setting will log all database queries to the terminal. This can be useful for debugging database-related issues. + +### Internal Profiling Tools + +In addition to the above third-party tools, InvenTree includes some internal profiling tools that can be enabled in debug mode. These tools can be used to provide additional insights into the performance of various components of the InvenTree server. + +These profiling tools can be found in `./src/backend/InvenTree/profiling.py`. diff --git a/docs/docs/faq.md b/docs/docs/faq.md index 47617dadc6..3f3bbe01f3 100644 --- a/docs/docs/faq.md +++ b/docs/docs/faq.md @@ -98,7 +98,7 @@ Sometimes, users may encounter unexpected error messages when updating their Inv The most common problem here is that the correct sequence of steps has not been followed: -1. Ensure that the InvenTree web server and background worker processes are *halted* +1. Ensure that the InvenTree [web server](./start/processes.md#web-server) and [background worker](./start/processes.md#background-worker) processes are *halted* 1. Update the InvenTree software (e.g. using git or docker, depending on installation method) 1. Run the `invoke update` command 1. Restart the web server and background worker processes @@ -150,7 +150,7 @@ or ### Background Worker "Not Running" -The background worker process must be started separately to the web-server application. +The [background worker process](./start/processes.md#background-worker) must be started separately to the web-server application. From the top-level source directory, run the following command from a separate terminal, while the server is already running: diff --git a/docs/docs/manufacturing/allocate.md b/docs/docs/manufacturing/allocate.md index f6627f35fe..9df1ded15e 100644 --- a/docs/docs/manufacturing/allocate.md +++ b/docs/docs/manufacturing/allocate.md @@ -31,7 +31,7 @@ Before continuing, it is important that the difference between *untracked* and * #### BOM Considerations -A [Bill of Materials](./bom.md) to generate an assembly may consist of a mixture of *untracked* and *tracked* components. The build order process can facilitate this, as documentated in the sections below. +A [Bill of Materials](./bom.md) to generate an assembly may consist of a mixture of *untracked* and *tracked* components. The build order process can facilitate this, as documented in the sections below. ### Tracked Build Outputs diff --git a/docs/docs/part/trackable.md b/docs/docs/part/trackable.md index 5eccdb355d..d833829929 100644 --- a/docs/docs/part/trackable.md +++ b/docs/docs/part/trackable.md @@ -4,7 +4,7 @@ title: Trackable Parts ## Stock Tracking -Denoting a part as *Trackble* changes the way that [stock items](../stock/index.md) associated with the particular part are handled in the database. A trackable part also has more restrictions imposed by the database scheme. +Denoting a part as *Trackable* changes the way that [stock items](../stock/index.md) associated with the particular part are handled in the database. A trackable part also has more restrictions imposed by the database scheme. For many parts in an InvenTree database, simply tracking current stock levels (and locations) is sufficient. However, some parts require more extensive tracking than simple stock level knowledge. diff --git a/docs/docs/part/views.md b/docs/docs/part/views.md index 9c485893f8..8867c7a44e 100644 --- a/docs/docs/part/views.md +++ b/docs/docs/part/views.md @@ -39,12 +39,6 @@ A Part is defined in the system by the following parameters: The Part view page organizes part data into sections, displayed as tabs. Each tab has its own function, which is described in this section. -### Parameters - -Parts can have multiple defined parameters. - -[Read about Part parameters](./parameter.md) - ### Variants If a part is a *Template Part* then the *Variants* tab will be visible. @@ -125,10 +119,18 @@ Related parts can be added and are shown under a table of the same name in the " This feature can be enabled or disabled in the global part settings. +### Parameters + +Parts can have multiple defined parameters. + +[Read about parameters](../concepts/parameters.md). + ### Attachments The *Part Attachments* tab displays file attachments associated with the selected *Part*. Multiple file attachments (such as datasheets) can be uploaded for each *Part*. +[Read about attachments](../concepts/attachments.md). + ### Notes A part may have notes attached, which support markdown formatting. diff --git a/docs/docs/plugins/builtin/index.md b/docs/docs/plugins/builtin/index.md index 0d4d1db859..c229f02ca7 100644 --- a/docs/docs/plugins/builtin/index.md +++ b/docs/docs/plugins/builtin/index.md @@ -21,7 +21,7 @@ The following builtin plugins are available in InvenTree: | Barcodes | [TME](./barcode_tme.md) | TME barcode support | No | | Data Export | [BOM Exporter](./bom_exporter.md) | Custom [exporter](../mixins/export.md) for BOM data | Yes | | Data Export | [InvenTree Exporter](./inventree_exporter.md) | Custom [exporter](../mixins/export.md) for InvenTree data | Yes | -| Data Export | [Parameter Exporter](./part_parameter_exporter.md) | Custom [exporter](../mixins/export.md) for part parameter data | Yes | +| Data Export | [Parameter Exporter](./parameter_exporter.md) | Custom [exporter](../mixins/export.md) for parameter data | Yes | | Data Export | [Stocktake Exporter](./stocktake_exporter.md) | Custom [exporter](../mixins/export.md) for stocktake data | No | | Events | [Auto Create Child Builds](./auto_create_builds.md) | Automatically create child build orders for sub-assemblies | No | | Events | [Auto Issue Orders](./auto_issue.md) | Automatically issue pending orders when target date is reached | No | diff --git a/docs/docs/plugins/builtin/parameter_exporter.md b/docs/docs/plugins/builtin/parameter_exporter.md new file mode 100644 index 0000000000..7bc104d663 --- /dev/null +++ b/docs/docs/plugins/builtin/parameter_exporter.md @@ -0,0 +1,27 @@ +--- +title: Parameter Exporter +--- + +## Parameter Exporter + +The **Parameter Exporter** plugin provides custom export functionality for models which support custom [Parameter](../../concepts/parameters.md) data. + +It utilizes the [ExporterMixin](../mixins/export.md) mixin to provide a custom export format for part parameter data. + +In addition to the standard exported fields, this plugin also exports all associated parameter data for each row of the export. + +### Activation + +This plugin is a *mandatory* plugin, and is always enabled. + +### Plugin Settings + +This plugin has no configurable settings. + +## Usage + +This plugin is used in the same way as the [InvenTree Exporter Plugin](./inventree_exporter.md), but provides a custom export format for part parameter data. + +When exporting parameter data, the *Parameter Exporter* plugin is available for selection in the export dialog. When selected, the plugin provides some additional export options to control the data export process. + +{{ image("parameter_export_options.png", base="plugin/builtin", title="Parameter Export Options") }} diff --git a/docs/docs/plugins/builtin/part_parameter_exporter.md b/docs/docs/plugins/builtin/part_parameter_exporter.md deleted file mode 100644 index f77962e58d..0000000000 --- a/docs/docs/plugins/builtin/part_parameter_exporter.md +++ /dev/null @@ -1,25 +0,0 @@ ---- -title: Part Parameter Exporter ---- - -## Part Parameter Exporter - -The **Part Parameter Exporter** plugin provides custom export functionality for [Part Parameter](../../part/parameter.md) data. - -It utilizes the [ExporterMixin](../mixins/export.md) mixin to provide a custom export format for part parameter data. - -### Activation - -This plugin is a *mandatory* plugin, and is always enabled. - -### Plugin Settings - -This plugin has no configurable settings. - -## Usage - -This plugin is used in the same way as the [InvenTree Exporter Plugin](./inventree_exporter.md), but provides a custom export format for part parameter data. - -When exporting part parameter data, the *Part Parameter Exporter* plugin is available for selection in the export dialog. When selected, the plugin provides some additional export options to control the data export process. - -{{ image("parameter_export_options.png", base="plugin/builtin", title="Part Parameter Export Options") }} diff --git a/docs/docs/plugins/install.md b/docs/docs/plugins/install.md index f0ca40839e..3d18d58850 100644 --- a/docs/docs/plugins/install.md +++ b/docs/docs/plugins/install.md @@ -65,8 +65,14 @@ Admin users can install plugins directly from the web interface, via the "Plugin {{ image("plugin/plugin_install_web.png", "Install plugin via web interface") }} +Enter the package name into the form as shown below. You can add a path and a version. Leave the version field empty for the latest version. In case the package is on pypi the path can be omitted. Pip will find it automatically. + +{{ image("plugin/plugin_install_git.png", "Install plugin from git") }} + !!! success "Plugin File" - A plugin installed via the web interface is added to the [plugins.txt](#plugin-installation-file-pip) plugin file. + A plugin installed via the web interface is added to the [plugins.txt](#plugin-installation-file-pip) plugin file as shown below. + +{{ image("plugin/plugin_install_txt.png", "Plugin.txt file") }} #### Local Directory diff --git a/docs/docs/plugins/mixins/validation.md b/docs/docs/plugins/mixins/validation.md index 82b414f635..bbdbc2207f 100644 --- a/docs/docs/plugins/mixins/validation.md +++ b/docs/docs/plugins/mixins/validation.md @@ -134,11 +134,11 @@ Validation of the Part IPN (Internal Part Number) field is exposed to custom plu summary: False members: [] -### Part Parameter Values +### Parameter Values -[Part parameters](../../part/parameter.md) can also have custom validation rules applied, by implementing the `validate_part_parameter` method. A plugin which implements this method should raise a `ValidationError` with an appropriate message if the part parameter value does not match a required convention. +[Parameters](../../concepts/parameters.md) can also have custom validation rules applied, by implementing the `validate_parameter` method. A plugin which implements this method should raise a `ValidationError` with an appropriate message if the parameter value does not match a required convention. -::: plugin.base.integration.ValidationMixin.ValidationMixin.validate_part_parameter +::: plugin.base.integration.ValidationMixin.ValidationMixin.validate_parameter options: show_bases: False show_root_heading: False diff --git a/docs/docs/project/resources.md b/docs/docs/project/resources.md index 0437810cb7..9074d17818 100644 --- a/docs/docs/project/resources.md +++ b/docs/docs/project/resources.md @@ -6,7 +6,7 @@ The InvenTree project is grateful to receive resources from various vendors free Individuals and companies can also support via [GitHub sponsors](https://github.com/sponsors/inventree). -## Current supporters +## Current Supporters - [DigitalOcean](https://inventree.org/digitalocean) - Cloud hosting provider, used to host the InvenTree demo instance - [Crowdin](https://crowdin.com/) - Translation platform, used to manage the [InvenTree translations](../develop/contributing.md#translations) across backend, frontend and app - [SonarQube Cloud](https://sonarcloud.io/) - Code quality and security analysis, used to track the code quality of the various components @@ -15,7 +15,8 @@ Individuals and companies can also support via [GitHub sponsors](https://github. - [Netlify](https://www.netlify.com/) - Static site hosting provider, used to test deploy the frontend and website - [Depot](https://depot.dev/?utm_source=inventree) - Docker build accelerator, used to build the multi-arch images for the InvenTree docker image -## Past supporters -Non cromprehensive list of past supporters. The project stops consuming resources for various reasons, this does not mean they are not good resources. +## Past Supporters + +Non comprehensive list of past supporters. The project stops consuming resources for various reasons, this does not mean they are not good resources. - [Coveralls](https://coveralls.io/) - Code coverage as a service - [Deepsource](https://deepsource.io/) - Code quality and security analysis diff --git a/docs/docs/report/helpers.md b/docs/docs/report/helpers.md index 817aff67d9..79fde22b2f 100644 --- a/docs/docs/report/helpers.md +++ b/docs/docs/report/helpers.md @@ -545,11 +545,11 @@ You can add asset images to the reports and labels by using the `{% raw %}{% ass {% endraw %} ``` -## Part Parameters +## Parameters -If you need to load a part parameter for a particular Part, within the context of your template, you can use the `part_parameter` template tag: +If you need to load a parameter value for a particular model instance, within the context of your template, you can use the `parameter` template tag: -::: report.templatetags.report.part_parameter +::: report.templatetags.report.parameter options: show_docstring_description: false show_source: False @@ -562,7 +562,7 @@ The following example assumes that you have a report or label which contains a v {% raw %} {% load report %} -{% part_parameter part "length" as length %} +{% parameter part "length" as length %} Part: {{ part.name }}
Length: {{ length.data }} [{{ length.units }}] @@ -570,7 +570,7 @@ Length: {{ length.data }} [{{ length.units }}] {% endraw %} ``` -A [Part Parameter](../part/parameter.md) has the following available attributes: +A [Parameter](../concepts/parameters.md) has the following available attributes: | Attribute | Description | | --- | --- | @@ -578,7 +578,7 @@ A [Part Parameter](../part/parameter.md) has the following available attributes: | Description | The *description* of the parameter | | Data | The *value* of the parameter (e.g. "123.4") | | Units | The *units* of the parameter (e.g. "km") | -| Template | A reference to a [PartParameterTemplate](../part/parameter.md#parameter-templates) | +| Template | A reference to a [ParameterTemplate](../concepts/parameters.md#parameter-templates) | ## Rendering Markdown diff --git a/docs/docs/report/report.md b/docs/docs/report/report.md index 795c0f9483..c28b1c1874 100644 --- a/docs/docs/report/report.md +++ b/docs/docs/report/report.md @@ -44,5 +44,45 @@ For example, rendering the name of a part (which is available in the particular

{% endraw %} ``` -#### Rendering a single report vs. multiple report from selection -Users can select multiple items such as `part`, `stockItem`,...etc to render from a report template. By default, the `merge` attribute of report template is disabled, which means an independent report will be generated for each item in the list of selected items. If `merge` is enabled, all selected items will be available in the `instances` context variable of the report template. Users are free to access them by indexing or in a loop. For more details, visit [context variable](./context_variables.md) + +## Merging Reports + +When rendering reports for multiple items, the default behaviour is that each item is rendered as a separate report. The chosen templeate is rendered multiple times, once for each item selected, and expects a single item in the context variable. + +However, it is possible to merge multiple items into a single report document. This is achieved by enabling the `merge` attribute of the report template: + +{{ image("report/report_merge.png", alt="Report Merge Option") }} + +When the `merge` is enabled, all selected items are passed to the report template in the `instances` context variable, which is a list of all selected items. The user can then iterate over this list to render multiple items in a single report document. + +### Instance Context + +When rendering a single template against multiple *instances* of a particular model (e.g. multiple parts, multiple stock items, etc), each instance being rendered has its own unique context data. + +Each "instance" is provided to the report template as a dictionary of context variables, which can be accessed using standard django template syntax. + +Refer to the [context variable documentation](./context_variables.md) for more information about the available context variables for each model type. + +The `instances` variable is provided as a list of all selected items, where each item in the list is a dictionary of context variables for that particular instance. Within the report template, the user can iterate over the `instances` list to render each item in turn. + +### Example + +As an example, let's consider a report template where we are printing multiple parts in a single report document. + +When the `merge` option is enabled, the report template is provided with an `instances` variable, which is a list of all selected parts. + +Each *instance* in the `instances` list is a dictionary of context variables for that particular part, which conforms to the standard [part context structure](./context_variables.md#part). + +```django +{% raw %} + +{% for instance in instances %} +Part Name: {{ instance.part.name }}
+IPN: {{ instance.part.IPN }}
+Description: {{ instance.part.description }}
+ +{% endraw %} +``` + +!!! tip "Instance Prefix" + Note that the context variable is prefixed with `instance.` when accessing variables for each item in the `instances` list. diff --git a/docs/docs/report/weasyprint.md b/docs/docs/report/weasyprint.md index e2aaaccad5..faeabfc143 100644 --- a/docs/docs/report/weasyprint.md +++ b/docs/docs/report/weasyprint.md @@ -13,6 +13,9 @@ We use the powerful [WeasyPrint](https://weasyprint.org/) PDF generation engine Templates are rendered using standard HTML / CSS - if you are familiar with web page layout, you're ready to go! +HTML form elements (`input`, `select`, `textarea`, `button`) are converted into PDF form controls. Use CSS to limit which elements are converted; refer to the +[WeasyPrint docs](https://doc.courtbouillon.org/weasyprint/stable/common_use_cases.html#include-pdf-forms) for further information. + ### Template Language Uploaded report template files are passed through the [django template rendering framework]({% include "django.html" %}/topics/templates/), and as such accept the same variable template strings as any other django template file. Different variables are passed to the report template (based on the context of the report) and can be used to customize the contents of the generated PDF. diff --git a/docs/docs/settings/MFA.md b/docs/docs/settings/MFA.md index 0c882443d2..feccabc87f 100644 --- a/docs/docs/settings/MFA.md +++ b/docs/docs/settings/MFA.md @@ -4,7 +4,7 @@ title: InvenTree Multi Factor Authentication ## Multi Factor Authentication - InvenTree gives the option to use TOTP or statically generated backup tokens as an additional factor to password or SSO authentication. This is a widely adopted security feature on enterprise web services. We highly encourage to enable it if you expose your instance to the public internet. + InvenTree gives the option to use [TOTP](https://en.wikipedia.org/wiki/Time-based_One-Time_Password) or statically generated backup tokens as an additional factor to password or SSO authentication. This is a widely adopted security feature on enterprise web services. We highly encourage to enable it if you expose your instance to the public internet. As TOTP is an [open standard](https://datatracker.ietf.org/doc/html/rfc6238) there are a lot of different ways to hold your key and generate the time based tokens needed for authentication. That ranges from physical devices to password managers and mobile apps. We do not advertise any method but recommend to keep password and token generator separate from each other. @@ -16,4 +16,4 @@ To make MFA mandatory for all users: ### Security Consideration -A user can lock themself out if they lose access to both the device with their TOTP app and their backup tokens. An admin can delete their tokens from the admin pages (they exist under the 'TOTP devices' / 'static devices' models) . This should be a last resort and only done by people knowledgeable about the [admin pages](../settings/admin.md) as changes there might circumvent InvneTrees business and security logic. +A user can lock themselves out if they lose access to both the device with their TOTP app and their backup tokens. An admin can delete their tokens from the admin pages (they exist under the 'TOTP devices' / 'static devices' models) . This should be a last resort and only done by people knowledgeable about the [admin pages](../settings/admin.md) as changes there might circumvent InvenTree's business and security logic. diff --git a/docs/docs/settings/email.md b/docs/docs/settings/email.md index a45c8b101b..7f420a2484 100644 --- a/docs/docs/settings/email.md +++ b/docs/docs/settings/email.md @@ -9,7 +9,7 @@ InvenTree can be configured to send emails to users, for various purposes. To enable this, email configuration settings must be supplied to the InvenTree [configuration options](../start/config.md#email-settings). !!! info "Functionality might be degraded" - Multiple functions of InvenTree require functioning email delivery, including *Password Reset*, *Notififications*, *Update Infos* + Multiple functions of InvenTree require functioning email delivery, including *Password Reset*, *Notifications*, *Update Infos* ### Outgoing diff --git a/docs/docs/settings/error_codes.md b/docs/docs/settings/error_codes.md index 75dc200d80..1de6491a18 100644 --- a/docs/docs/settings/error_codes.md +++ b/docs/docs/settings/error_codes.md @@ -95,6 +95,12 @@ An error occurred while reading the InvenTree configuration file. This might be Django is not installed in the current Python environment. This means that the InvenTree backend is not running within the correct [python virtual environment](../start/index.md#virtual-environment) or that the required Python packages were not installed correctly. +#### INVE-E15 + +**Python version not supported** + +This error occurs attempting to run InvenTree on a version of Python which is older than the minimum required version. We [require Python {{ config.extra.min_python_version }} or newer](../start/index.md#python-requirements) + ### INVE-W (InvenTree Warning) Warnings - These are non-critical errors which should be addressed when possible. diff --git a/docs/docs/settings/global.md b/docs/docs/settings/global.md index d60d02a367..d443084077 100644 --- a/docs/docs/settings/global.md +++ b/docs/docs/settings/global.md @@ -78,7 +78,7 @@ If this setting is enabled, users can reset their password via email. This requi If this setting is enabled, users must have multi-factor authentication enabled to log in. -#### Auto Fil SSO Users +#### Auto Fill SSO Users Automatically fill out user-details from SSO account-data. If this feature is enabled the user is only asked for their username, first- and surname if those values can not be gathered from their SSO profile. This might lead to unwanted usernames bleeding over. @@ -174,11 +174,14 @@ Configuration of label printing: {{ globalsetting("PART_COPY_TESTS") }} {{ globalsetting("PART_CATEGORY_PARAMETERS") }} {{ globalsetting("PART_CATEGORY_DEFAULT_ICON") }} -{{ globalsetting("PART_PARAMETER_ENFORCE_UNITS") }} -#### Part Parameter Templates +#### Parameter Templates -Refer to the section describing [how to create part parameter templates](../part/parameter.md#create-template). +| Name | Description | Default | Units | +| ---- | ----------- | ------- | ----- | +{{ globalsetting("PARAMETER_ENFORCE_UNITS") }} + +For more information on parameters, refer to the [parameter documentation](../concepts/parameters.md). ### Categories diff --git a/docs/docs/settings/user.md b/docs/docs/settings/user.md index 39871b25d3..faaa7aae8a 100644 --- a/docs/docs/settings/user.md +++ b/docs/docs/settings/user.md @@ -22,6 +22,7 @@ The *Display Settings* screen shows general display configuration options: {{ usersetting("STICKY_HEADER") }} {{ usersetting("STICKY_TABLE_HEADER") }} {{ usersetting("SHOW_SPOTLIGHT") }} +{{ usersetting("BARCODE_IN_FORM_FIELDS") }} {{ usersetting("DATE_DISPLAY_FORMAT") }} {{ usersetting("FORMS_CLOSE_USING_ESCAPE") }} {{ usersetting("DISPLAY_STOCKTAKE_TAB") }} diff --git a/docs/docs/start/backup.md b/docs/docs/start/backup.md index aee6193790..4861b7e77f 100644 --- a/docs/docs/start/backup.md +++ b/docs/docs/start/backup.md @@ -143,7 +143,7 @@ pip install django-storages[google] You will need to change the storage backend, which is set via the `INVENTREE_BACKUP_STORAGE` environment variable, or via `backup_storage` in the configuration file: ```yaml -backup_stoage: storages.backends.gcloud.GoogleCloudStorage +backup_storage: storages.backends.gcloud.GoogleCloudStorage ``` ### Configure Backend Options diff --git a/docs/docs/start/bare_prod.md b/docs/docs/start/bare_prod.md index db9e863788..3f2d405ad9 100644 --- a/docs/docs/start/bare_prod.md +++ b/docs/docs/start/bare_prod.md @@ -38,7 +38,7 @@ First, let's confirm that the gunicorn server is operational. cd /home/InvenTree source ./env/bin/activate -cd src/InvenTree +cd src/src/backend/InvenTree /home/inventree/env/bin/gunicorn -c gunicorn.conf.py InvenTree.wsgi -b 127.0.0.1:8000 ``` diff --git a/docs/docs/start/config.md b/docs/docs/start/config.md index 2dec53c44f..c739ad2a97 100644 --- a/docs/docs/start/config.md +++ b/docs/docs/start/config.md @@ -92,7 +92,9 @@ The following debugging / logging options are available: | Environment Variable | Configuration File | Description | Default | | --- | --- | --- | --- | | INVENTREE_DEBUG | debug | Enable [debug mode](./index.md#debug-mode) | False | -| INVENTREE_DEBUG_QUERYCOUNT | debug_querycount | Enable [query count logging](https://github.com/bradmontgomery/django-querycount) in the terminal | False | +| INVENTREE_DEBUG_QUERYCOUNT | debug_querycount | Enable support for [django-querycount](../develop/index.md#django-querycount) middleware. | False | +| INVENTREE_DEBUG_SILK | debug_silk | Enable support for [django-silk](../develop/index.md#django-silk) profiling tool. | False | +| INVENTREE_DEBUG_SILK_PROFILING | debug_silk_profiling | Enable detailed profiling in django-silk | False | | INVENTREE_DB_LOGGING | db_logging | Enable logging of database messages | False | | INVENTREE_LOG_LEVEL | log_level | Set level of logging to terminal | WARNING | | INVENTREE_JSON_LOG | json_log | log as json | False | @@ -103,13 +105,7 @@ The following debugging / logging options are available: Enabling the `INVENTREE_DEBUG` setting will turn on [Django debug mode]({% include "django.html" %}/ref/settings/#debug). This mode is intended for development purposes, and should not be enabled in a production environment. Read more about [InvenTree debug mode](./index.md#debug-mode). -### Query Count Logging - -Enabling the `INVENTREE_DEBUG_QUERYCOUNT` setting will log the number of database queries executed for each page load. This can be useful for identifying performance bottlenecks in the InvenTree server. Note that this setting is only available if `INVENTREE_DEBUG` is also enabled. - -### Database Logging - -Enabling the `INVENTREE_DB_LOGGING` setting will log all database queries to the terminal. This can be useful for debugging database-related issues. +In debug mode, there are additional [profiling tools](../develop/index.md#profiling-tools) available to help developers analyze and optimize performance. ## Server Access @@ -266,6 +262,9 @@ The following database options can be configured: | INVENTREE_DB_HOST | database.HOST | Database host address (if required) | *Not specified* | | INVENTREE_DB_PORT | database.PORT | Database host port (if required) | *Not specified* | +!!! tip "Database Password" + The value specified for `INVENTREE_DB_PASSWORD` should not contain comma `,` or colon `:` characters, otherwise the connection to the database may fail. + ### PostgreSQL Settings If running with a PostgreSQL database backend, the following additional options are available: @@ -318,6 +317,9 @@ The following cache settings are available: | INVENTREE_CACHE_KEEPALIVE_INTERVAL | cache.keepalive_interval | Cache keepalive interval | 1 | | INVENTREE_CACHE_USER_TIMEOUT | cache.user_timeout | Cache user timeout | 1000 | +!!! tip "Cache Password" + The value specified for `INVENTREE_CACHE_PASSWORD` should not contain comma `,` or colon `:` characters, otherwise the connection to the cache server may fail. + ## Email Settings To enable [email functionality](../settings/email.md), email settings must be configured here, either via environment variables or within the configuration file. @@ -336,6 +338,10 @@ The following email settings are available: | INVENTREE_EMAIL_SENDER | email.sender | Sending email address | *Not specified* | | INVENTREE_EMAIL_PREFIX | email.prefix | Prefix for subject text | [InvenTree] | +### Email Backend + +The default email implementation uses the Django STMP backend. This should be sufficient for most implementations, although other backends can be used if required. Note that selection of a different backend requires must use fully qualified module path, and requires advanced knowledge. + ### Sender Email The "sender" email address is the address from which InvenTree emails are sent (by default) and must be specified for outgoing emails to function: @@ -482,7 +488,7 @@ The INVENTREE_CUSTOMIZE environment variable must contain a json object with the the wanted values. Example: ``` -INVENTREE_CUSTOMIZE={"login_message":"Hallo Michi"} +INVENTREE_CUSTOMIZE={"login_message":"Hello World"} ``` This example sets a login message. Take care of the double quotes. diff --git a/docs/docs/start/docker_install.md b/docs/docs/start/docker_install.md index 3ae72c5082..cb4f29da35 100644 --- a/docs/docs/start/docker_install.md +++ b/docs/docs/start/docker_install.md @@ -235,6 +235,21 @@ The [Caddy](./docker.md#ssl-certificates) container will automatically generate Any persistent files generated by the Caddy container (such as certificates, etc) will be stored in the `caddy` directory within the external volume. +### Web Server Bind Address + +By default, the Dockerized InvenTree web server binds to all available network interfaces and listens for IPv4 traffic on port 8000. +This can be adjusted using the following environment variables: + +| Environment Variable | Default | +| --- | --- | --- | --- | +| INVENTREE_WEB_ADDR | 0.0.0.0 | +| INVENTREE_WEB_PORT | 8000 | + +These variables are combined in the [Dockerfile]({{ sourcefile("contrib/container/Dockerfile") }}) to build the bind string passed to the InvenTree server on startup. + +!!! tip "IPv6 Support" + To enable IPv6/Dual Stack support, set `INVENTREE_WEB_ADDR` to `[::]` when you create/start the container. + ### Demo Dataset To quickly get started with a [demo dataset](../demo.md), you can run the following command: diff --git a/docs/docs/start/index.md b/docs/docs/start/index.md index 9a5b6b8937..c88c642976 100644 --- a/docs/docs/start/index.md +++ b/docs/docs/start/index.md @@ -123,11 +123,14 @@ By default, a production InvenTree installation is configured to run with [DEBUG Running in DEBUG mode provides many handy development features, however it is strongly recommended *NOT* to run in DEBUG mode in a production environment. This recommendation is made because DEBUG mode leaks a lot of information about your installation and may pose a security risk. -So, for a production setup, you should set `INVENTREE_DEBUG=false` in the [configuration options](./config.md). +So, for a production setup, you should ensure that `INVENTREE_DEBUG=false` in the [configuration options](./config.md). + +!!! warning "Security Risk" + Running InvenTree in DEBUG mode in a production environment is a significant security risk, and should be avoided at all costs. ### Turning Debug Mode off -When running in DEBUG mode, the InvenTree web server natively manages *static* and *media* files, which means that when DEBUG mode is *disabled*, the proxy setup has to be configured to handle this. +When running in DEBUG mode, the InvenTree web server natively manages *static* and *media* files, which means that when DEBUG mode is *disabled* (which is the default for a production setup), the proxy setup has to be configured to handle this. !!! info "Read More" Refer to the [proxy server documentation](./processes.md#proxy-server) for more details diff --git a/docs/docs/start/install.md b/docs/docs/start/install.md index 80e5eaba06..b9276928c2 100644 --- a/docs/docs/start/install.md +++ b/docs/docs/start/install.md @@ -108,6 +108,27 @@ The Python packages required by the InvenTree server must be installed into the ``` pip install --upgrade --ignore-installed invoke +``` + +#### Install Python Bindings + +Depending on your database the python bindings must also be installed (into your virtual environment). + +For PostgreSQL install: + +``` +pip3 install psycopg pgcli +``` + +For MySQL install: + +``` +pip3 install mysqlclient mariadb +``` + +If all packages have been installed run: + +``` invoke install ``` @@ -155,14 +176,6 @@ grant all privileges on database inventree to myuser; !!! info "Username / Password" You should change the username and password from the values specified above. This username and password will also be for the InvenTree database connection configuration. -#### Install Python Bindings - -The PostgreSQL python binding must also be installed (into your virtual environment): - -``` -pip3 install psycopg pgcli -``` - #### Install Postgresql client If PostgreSQL and InvenTree are installed on separate servers / containers the PostgreSQL client has to be installed also where InvenTree is running. @@ -184,14 +197,6 @@ To run InvenTree with the MySQL or MariaDB backends, a number of extra packages sudo apt-get install mysql-server libmysqlclient-dev ``` -#### Install Python Bindings - -Install the python bindings for MySQL (into the python virtual environment). - -``` -pip3 install mysqlclient mariadb -``` - #### Create Database Assuming the MySQL server is installed and running, login to the MySQL server as follows: diff --git a/docs/docs/start/migrate.md b/docs/docs/start/migrate.md index 8cc760ffdb..f8189c08f7 100644 --- a/docs/docs/start/migrate.md +++ b/docs/docs/start/migrate.md @@ -114,3 +114,86 @@ Once the migration process completes, the database records are now updated! Rest !!! tip "Example: Docker" If running under docker, run `docker compose up -d` + +## Migrating Between Incompatible Database Versions + +There may be occasions when InvenTree data needs to be migrated between two database installations running *incompatible* versions of the database software. For example, InvenTree may be running on a Postgres database running on version 12, and the administrator wishes to migrate the data to a Postgres version 17 database. + +!!! warning "Advanced Procedure" + The following procedure is *advanced*, and should only be attempted by experienced database administrators. Always ensure that database backups are made before attempting any migration procedure. + +Due to inherit incompatibilities between different major versions of database software, it is not always possible to directly migrate data between two different database versions. In such cases, the following procedure can be used as a workaround. + +!!! warning "InvenTree Version" + It is *crucial* that both InvenTree database installations are running the same version of InvenTree software! If this is not the case, data migration may fail, and there is a possibility that data corruption can occur. Ensure that the original database is up to date, by running `invoke update`. + +The following instructions assume that the source (old) database is Postgres version 15, and the target (new) database is Postgres version 17. Additionally, it assumes that the InvenTree installation is running under [docker / docker compose](./docker.md), for simplicity. Adjust commands as required for other InvenTree configurations or database software. + +The overall procedure is as follows: + +### Backup Old Database + +Run the following command to create a backup dump of the old database: + +``` +docker compose run --rm inventree-server invoke backup +``` + +This will create a database backup file in the InvenTree backup directory. + +!!! tip "Secondary Backup" + It may be prudent to create a secondary backup of the database, separate to the one created by InvenTree. + +### Shutdown Old Database + +Stop the old InvenTree installation, to ensure that the database is not being accessed during the migration process: + +``` +docker compose down +``` + +### Remove Old Database Files + +The raw database files are incompatible between different major versions of Postgres. Thus, the old database files must be removed before starting the new database. + +!!! warning "Data Loss" + Ensure that a complete backup of the old database has been made before proceeding! Removing the database files will result in data loss if a backup does not exist. + +``` +rm -rf ./path/to/database/* +``` + +!!! info "Database Location" + The location of the database files depends on how InvenTree was configured. + +### Start New Database + +Update the InvenTree docker configuration to use the new version of Postgres (e.g. `postgres:17`), and then start the InvenTree installation: + +``` +docker compose up -d +``` + +This will initialize a new, empty database using the new version of Postgres. + +### Run Database Migrations + +Run the database migration process to ensure that the new database schema is correctly initialized: + +``` +docker compose run --rm inventree-server invoke update +``` + +### Restore Database Backup + +Finally, restore the database backup created earlier into the new database: + +``` +docker compose run --rm inventree-server invoke restore +``` + +This will load the database records from the backup file into the new database. + +### Caveats + +The process described here is a *suggested* procedure for migrating between incompatible database versions. However, due to the complexity of database software, there may be unforeseen complications that arise during the process. diff --git a/docs/docs/stock/availability.md b/docs/docs/stock/availability.md new file mode 100644 index 0000000000..d1cef5c8d1 --- /dev/null +++ b/docs/docs/stock/availability.md @@ -0,0 +1,88 @@ +--- +title: Stock Availability +--- + +## Stock Availability + +Each stock item represents a physical quantity of a particular part in a specific location. Given the complexities of tracking stock across multiple locations, reservations, and allocations, it is important to understand whether a stock item is actually available for use. + +There are multiple terms used in InvenTree to describe stock availability: + +### Required + +The *Required* quantity indicates the total number of a certain [part](../part/index.md) that is needed to fulfill all current orders, builds, or other commitments. This is independent of the actual stock levels. + +### In Stock + +The *In Stock* quantity represents the total number of items physically present in the stock location, regardless of their allocation or reservation status. + +For example, if a stock item has a quantity of 100, it means there are 100 units of that part physically present in the specified location. + +### Allocated + +The *Allocated* quantity indicates the number of stock items that have been reserved for specific orders, builds, or other commitments. This number is specified against each stock item when it is allocated. + +Note that the *Allocated* quantity is always less than or equal to the *In Stock* quantity. + +For example, if a stock item has an *In Stock* quantity of 100, and 30 units have been allocated to fulfill orders, then the *Allocated* quantity is 30. In this case the *In Stock* quantity remains 100, until the alloacted quantity is actually consumed. + +### Available + +The *Available* quantity for a given stock item is the difference between the *In Stock* quantity and the *Allocated* quantity. + +For example, if a stock item has an *In Stock* quantity of 100, and 30 units have been allocated, then the *Available* quantity is 70. + +## Consumed or Depleted Stock + +Once allocated stock quantities are consumed (e.g. when fulfilling an order or completing a build), the *In Stock* quantity of the stock item is reduced accordingly. This means that the *Available* quantity is also reduced. + +### Delete on Deplete + +Stock items can be designated with the `Delete on Deplete` flag. When this flag is set, if the stock quantity of the item reaches zero, the stock item will be automatically deleted from the system. + +## Part Stock Levels + +There are multiple ways to view the overall stock levels for a given part across all stock items and locations. + +### Stock Overview + +Each [part](../part/index.md) page displays an overview of the stocktotal stock levels across all locations. This page shows the total *In Stock*, *Allocated*, and *Available* quantities for the part, aggregated across all stock items: + +{{ image("stock/stock_overview.png", title="Stock overview") }} + +In the example above, the "Red Widget" part has the following stock levels: + +| Metric | Quantity | Description | +| ------ | -------- | ----------- | +| In Stock | 138 | There are 138 physical units of the Red Widget part across all stock locations. | +| Available | 123 | Only 123 units are available for allocation, as 15 units have already been allocated to fulfill orders. | +| Required | 657 | A total of 657 units of the Red Widget part are needed to fulfill all current orders and builds. | +| Deficit | 519 | There is a deficit of 519 units, meaning that the current available stock is insufficient to meet the required quantity. | + +### Stock Details + +The *Part Detail* view displays additional information regarding the stock levels for the part: + +{{ image("stock/stock_detail.png", title="Stock detail") }} + +Here we can see that: + +- There are 138 units of the Red Widget part physically in stock across all locations. +- Of this quantity, 15 units have been allocated to fulfill orders, leaving 123 units available for allocation. +- A total of 657 units are required to fulfill all current orders and builds. +- 645 units are required to fulfil outstanding build orders, of which 15 units have already been allocated. +- 12 units are required to fulfil outstanding sales orders, none of which have been allocated yet. + +### Allocations Tab + +To view further details regarding which stock items have been allocated, the *Allocations* tab on the part view can be used. + +This tab displays a complete overview of where the stock items for this part are allocated, against any open orders: + +#### Build Order Allocations + +{{ image("stock/build_order_allocations.png", title="Build order allocations") }} + +#### Sales Order Allocations + +{{ image("stock/sales_order_allocations.png", title="Sales order allocations") }} diff --git a/docs/docs/stock/index.md b/docs/docs/stock/index.md index beb9525280..d020dd67d1 100644 --- a/docs/docs/stock/index.md +++ b/docs/docs/stock/index.md @@ -26,11 +26,15 @@ The *Stock Item* detail view shows information regarding the particular stock it **Status** - Status of this stock item +### Stock Availability + +InvenTree has a number of different mechanisms to determine whether stock is available for use. See the [Stock Availability](./availability.md) page for more information. + ### Stock Tracking Every time a *Stock Item* is adjusted, a *Stock Tracking* entry is automatically created. This ensures a complete history of the *Stock Item* is maintained as long as the item is in the system. -Each stock tracking historical item records the user who performed the action. +Each stock tracking historical item records the user who performed the action. [Read more about stock tracking here](./tracking.md). ## Stock Location @@ -49,12 +53,10 @@ If there are some icons missing in the tabler icons package, users can even inst A stock location type represents a specific type of location (e.g. one specific size of drawer, shelf, ... or box) which can be assigned to multiple stock locations. In the first place, it is used to specify an icon and having the icon in sync for all locations that use this location type, but it also serves as a data field to quickly see what type of location this is. It is planned to add e.g. drawer dimension information to the location type to add a "find a matching, empty stock location" tool. ## External Stock Location -An external stock location can be used to indicate that items in there might not be available -for immediate usage. Stock items in an external location are marked with an additional icon + +It may be useful to mark certain stock locations as *external*. An external stock location can be used to indicate that items in there might not be available for immediate usage. Stock items in an external location are marked with an additional icon in the build order line items view where the material is allocated. {{ image("stock/stock_external_icon.png", title="External stock indication") }} -Anyhow there is no limitation on the stock item. It can be allocated as usual. - The external flag does not get inherited to sublocations. diff --git a/docs/docs/stock/tracking.md b/docs/docs/stock/tracking.md index 2fcf459da9..5ce0809602 100644 --- a/docs/docs/stock/tracking.md +++ b/docs/docs/stock/tracking.md @@ -132,6 +132,17 @@ If a provided serial number (or group of numbers) is not considered valid, an er !!! tip "Serial Number Validation" Custom serial number validation can be implemented using an external plugin +#### Adjusting Serial Numbers + +Once a stock item has been created with a serial number, it is possible to adjust that serial number value if required. This can be achieved by navigating to the stock item's detail page, and selecting the "Edit" option from the actions menu. Here, the serial number value can be modified as required: + +{{ image("stock/serial_edit.png", title="Editing a serial number") }} + +Note that any serial number adjustments are subject to the same validation rules as when the stock item was created. If the new serial number value is not valid, an error message will be displayed to the user: + +{{ image("stock/serial_edit_error.png", title="Error while editing a serial number") }} + + #### Plugin Support Custom serial number functionality, with any arbitrary requirements or level of complexity, can be implemented using the [Validation Plugin Mixin class](../plugins/mixins/validation.md#serial-numbers). Refer to the documentation for this plugin for technical details. diff --git a/docs/docs/troubleshooting.md b/docs/docs/troubleshooting.md index c2b5b7f71e..1c34fd02f7 100644 --- a/docs/docs/troubleshooting.md +++ b/docs/docs/troubleshooting.md @@ -9,6 +9,12 @@ If you are struggling with an issue which is not covered in the FAQ above, pleas Even if you cannot immediately resolve the issue, the information below will be very useful when reporting the issue on GitHub. +## Error Codes + +InvenTree uses a system of error codes to help identify specific issues. Each error code is prefixed with `INVE-`, followed by a letter indicating the error type, and a number. + +Refer to the [error code documentation](./settings/error_codes.md) for more information on specific error codes. + ## Recent Update If you have recently updated your InvenTree instance, please ensure that you have followed all update instructions carefully. In particular, make sure that you have run any required database migrations using the `invoke update` command. diff --git a/docs/mkdocs.yml b/docs/mkdocs.yml index 1d8096cc23..d9585f3996 100644 --- a/docs/mkdocs.yml +++ b/docs/mkdocs.yml @@ -78,6 +78,7 @@ nav: - Demo: demo.md - Release Notes: releases/release_notes.md - Development: + - InvenTree Development: develop/index.md - Contributing: develop/contributing.md - Architecture: develop/architecture.md - Roadmap: develop/roadmap.md @@ -96,6 +97,8 @@ nav: - Custom States: concepts/custom_states.md - Pricing: concepts/pricing.md - Project Codes: concepts/project_codes.md + - Attachments: concepts/attachments.md + - Parameters: concepts/parameters.md - Barcodes: - Barcode Support: barcodes/index.md - Internal Barcodes: barcodes/internal.md @@ -125,7 +128,6 @@ nav: - Virtual Parts: part/virtual.md - Part Views: part/views.md - Tracking: part/trackable.md - - Parameters: part/parameter.md - Revisions: part/revision.md - Templates: part/template.md - Tests: part/test.md @@ -134,8 +136,9 @@ nav: - Notifications: part/notification.md - Stock: - Stock Items: stock/index.md - - Stock Status: stock/status.md + - Availability: stock/availability.md - Stock Tracking: stock/tracking.md + - Stock Status: stock/status.md - Adjusting Stock: stock/adjust.md - Stock Expiry: stock/expiry.md - Stock Ownership: stock/owner.md @@ -237,7 +240,7 @@ nav: - Export Plugins: - BOM Exporter: plugins/builtin/bom_exporter.md - InvenTree Exporter: plugins/builtin/inventree_exporter.md - - Parameter Exporter: plugins/builtin/part_parameter_exporter.md + - Parameter Exporter: plugins/builtin/parameter_exporter.md - Stocktake Exporter: plugins/builtin/stocktake_exporter.md - Label Printing: - Label Printer: plugins/builtin/inventree_label.md @@ -357,7 +360,7 @@ extra: # provider: google # property: UA-143467500-1 - min_python_version: 3.10 + min_python_version: 3.11 min_invoke_version: 2.0.0 django_version: 5.2 docker_postgres_version: 17 diff --git a/docs/requirements.in b/docs/requirements.in index f8eb471211..09178c1b77 100644 --- a/docs/requirements.in +++ b/docs/requirements.in @@ -6,5 +6,5 @@ mkdocs-redirects mkdocs-simple-hooks>=0.1,<1.0 mkdocs-include-markdown-plugin neoteroi-mkdocs -mkdocstrings[python]>=0.25.0,<=0.30.1 +mkdocstrings[python]>=0.25.0,<=1.0.0 mkdocs-mermaid2-plugin diff --git a/docs/requirements.txt b/docs/requirements.txt index 09674d1102..99f0b5e762 100644 --- a/docs/requirements.txt +++ b/docs/requirements.txt @@ -148,9 +148,9 @@ essentials==1.1.6 \ --hash=sha256:3fd26923f5f2ece51a219dbb17b1fb22c9190d70fa2104919be92a6419521877 \ --hash=sha256:a470e693d83c13369ebf1f488d60236b4ea99400f38db6b7224e2808c1369256 # via essentials-openapi -essentials-openapi==1.2.1 \ - --hash=sha256:70b06d80a8d9cb7634b702903cfe8fcfc48e6fc054e744eab514bb7bc37f00c9 \ - --hash=sha256:d0085cde3ceaa25e6fc4983d8372ac0185909e3fa2791f498280379bb3c86c62 +essentials-openapi==1.3.0 \ + --hash=sha256:453327a0a847a431133f4472ced7e4a9180bf667437049b57381ddf88079e886 \ + --hash=sha256:9c2a88531e2c70c565d5b526d74043941e46f60c114f7a0e3ae91e9e6bef4dae # via neoteroi-mkdocs ghp-import==2.1.0 \ --hash=sha256:8337dd7b50877f163d4c0289bc1f1c7f127550241988d568c1db512c4324a619 \ @@ -354,9 +354,9 @@ mkdocs-simple-hooks==0.1.5 \ --hash=sha256:dddbdf151a18723c9302a133e5cf79538be8eb9d274e8e07d2ac3ac34890837c \ --hash=sha256:efeabdbb98b0850a909adee285f3404535117159d5cb3a34f541d6eaa644d50a # via -r docs/requirements.in -mkdocstrings[python]==0.30.1 \ - --hash=sha256:41bd71f284ca4d44a668816193e4025c950b002252081e387433656ae9a70a82 \ - --hash=sha256:84a007aae9b707fb0aebfc9da23db4b26fc9ab562eb56e335e9ec480cb19744f +mkdocstrings[python]==1.0.0 \ + --hash=sha256:351a006dbb27aefce241ade110d3cd040c1145b7a3eb5fd5ac23f03ed67f401a \ + --hash=sha256:4c50eb960bff6e05dfc631f6bc00dfabffbcb29c5ff25f676d64daae05ed82fa # via # -r docs/requirements.in # mkdocstrings-python @@ -364,9 +364,9 @@ mkdocstrings-python==1.16.12 \ --hash=sha256:22ded3a63b3d823d57457a70ff9860d5a4de9e8b1e482876fc9baabaf6f5f374 \ --hash=sha256:9b9eaa066e0024342d433e332a41095c4e429937024945fea511afe58f63175d # via mkdocstrings -neoteroi-mkdocs==1.1.3 \ - --hash=sha256:3ecfb825e898d10a6d703a3ef3f0484d823b7b5660425e76af421e316ac18036 \ - --hash=sha256:772aee317c9bb10a89d67e71e322730f92cc349d5eecc8a08e8fb079398e514b +neoteroi-mkdocs==1.2.0 \ + --hash=sha256:58e25cb1b9db093ffa8d12bdb33264bf567cac30fb964b56e0a493efa749ad6e \ + --hash=sha256:91b6aa95a4e46c9bb93e00e021d2044cb0c7d80c0b4600434ff8f440d613a0a8 # via -r docs/requirements.in packaging==25.0 \ --hash=sha256:29572ef2b1f17581046b3a2227d5c611fb25ec70ca1ba8554b24b0e69331a484 \ @@ -539,9 +539,9 @@ typing-extensions==4.14.1 \ # via # anyio # beautifulsoup4 -urllib3==2.5.0 \ - --hash=sha256:3fc47733c7e419d4bc3f6b3dc2b4f890bb743906a30d56ba4a5bfa4bbff92760 \ - --hash=sha256:e6b01673c0fa6a13e374b50871808eb3bf7046c4b125b216f6bf1cc604cff0dc +urllib3==2.6.0 \ + --hash=sha256:c90f7a39f716c572c4e3e58509581ebd83f9b59cced005b7db7ad2d22b0db99f \ + --hash=sha256:cb9bcef5a4b345d5da5d145dc3e30834f58e8018828cbc724d30b4cb7d4d49f1 # via requests watchdog==6.0.0 \ --hash=sha256:07df1fdd701c5d4c8e55ef6cf55b8f0120fe1aef7ef39a1c6fc6bc2e606d517a \ diff --git a/pyproject.toml b/pyproject.toml index c3fa78bf3d..fa2658abfa 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -101,8 +101,8 @@ python-version = "3.11.0" no-strip-extras=true generate-hashes=true -[tool.ty.src] -root = "src/backend/InvenTree" +[tool.ty.environment] +root = ["src/backend/InvenTree"] [tool.ty.rules] unresolved-reference="ignore" # 21 # see https://github.com/astral-sh/ty/issues/220 @@ -133,3 +133,9 @@ sections=["FUTURE","STDLIB","DJANGO","THIRDPARTY","FIRSTPARTY","LOCALFOLDER"] [tool.codespell] ignore-words-list = ["assertIn","SME","intoto","fitH"] + +[tool.pytest] +django_find_project = false +pythonpath = ["src/backend/InvenTree"] +DJANGO_SETTINGS_MODULE = "InvenTree.settings" +python_files = ["test*.py",] diff --git a/src/backend/InvenTree/InvenTree/api.py b/src/backend/InvenTree/InvenTree/api.py index 4c91ae61cd..cd57fb1cc2 100644 --- a/src/backend/InvenTree/InvenTree/api.py +++ b/src/backend/InvenTree/InvenTree/api.py @@ -600,6 +600,34 @@ class BulkUpdateMixin(BulkOperationMixin): return Response({'success': f'Updated {n} items'}, status=200) +class ParameterListMixin: + """Mixin class which supports filtering against parametric fields.""" + + def filter_queryset(self, queryset): + """Perform filtering against parametric fields.""" + import common.filters + + queryset = super().filter_queryset(queryset) + + # Filter by parametric data + queryset = common.filters.filter_parametric_data( + queryset, self.request.query_params + ) + + serializer_class = ( + getattr(self, 'serializer_class', None) or self.get_serializer_class() + ) + + model_class = serializer_class.Meta.model + + # Apply ordering based on query parameter + queryset = common.filters.order_by_parameter( + queryset, model_class, self.request.query_params.get('ordering', None) + ) + + return queryset + + class BulkDeleteMixin(BulkOperationMixin): """Mixin class for enabling 'bulk delete' operations for various models. diff --git a/src/backend/InvenTree/InvenTree/api_version.py b/src/backend/InvenTree/InvenTree/api_version.py index bc0d0c5bcd..35d64fcb0d 100644 --- a/src/backend/InvenTree/InvenTree/api_version.py +++ b/src/backend/InvenTree/InvenTree/api_version.py @@ -1,11 +1,45 @@ """InvenTree API version information.""" # InvenTree API version -INVENTREE_API_VERSION = 427 +INVENTREE_API_VERSION = 435 """Increment this API version number whenever there is a significant change to the API that any clients need to know about.""" INVENTREE_API_TEXT = """ +v435 -> 2025-12-16 : https://github.com/inventree/InvenTree/pull/11030 + - Adds token refresh endpoint to auth API + +v434 -> 2025-12-16 : https://github.com/inventree/InvenTree/pull/11021 + - The "tags" fields (on various API endpoints) is now optional, and disabled by default + - To request tags information, add "tags=true" to the API request query parameters + +v433 -> 2025-12-16 : https://github.com/inventree/InvenTree/pull/11023 + - "substitutes" field on the BomItem API endpoint is now excluded by default + - Add "?substitutes=true" query parameter to include substitute parts in BomItem API endpoint(s) + +v432 -> 2025-12-15 : https://github.com/inventree/InvenTree/pull/11012 + - The "part_detail" field on the SupplierPart API endpoint is now optional + - The "supplier_detail" field on the SupplierPart API endpoint is now optional + - The "manufacturer_detail" field on the ManufacturerPart API endpoint is now optional + - The "part_detail" field on the StockItem API is now disabled by default + +v431 -> 2025-12-14 : https://github.com/inventree/InvenTree/pull/11006 + - Remove duplicate "address" field on the Company API endpoint + - Make "primary_address" field optional on the Company API endpoint + - Remove "address_count" field from the Company API endpoint + +v430 -> 2025-12-04 : https://github.com/inventree/InvenTree/pull/10699 + - Removed the "PartParameter" and "PartParameterTemplate" API endpoints + - Removed the "ManufacturerPartParameter" API endpoint + - Added generic "Parameter" and "ParameterTemplate" API endpoints + +v429 -> 2025-12-04 : https://github.com/inventree/InvenTree/pull/10938 + - Adjust default values for currency codes in the API schema + - Note that this does not change any functional behavior, only the schema documentation + +v428 -> 2025-11-28 : https://github.com/inventree/InvenTree/pull/10926 + - Various typo fixes in API - no functional changes + v427 -> 2025-11-24 : https://github.com/inventree/InvenTree/pull/10896 - Fixes a spelling mistake in the API field labels @@ -42,7 +76,7 @@ v418 -> 2025-10-24 : https://github.com/inventree/InvenTree/pull/10657 v417 -> 2025-10-22 : https://github.com/inventree/InvenTree/pull/10654 - Adds "checked" filter to SalesOrderShipment API endpoint - - Adds "order_status" filter to SalesOrdereShipment API endpoint + - Adds "order_status" filter to SalesOrderShipment API endpoint - Adds "order_outstanding" filter to SalesOrderShipment API endpoint v416 -> 2025-10-22 : https://github.com/inventree/InvenTree/pull/10651 @@ -100,7 +134,7 @@ v401 -> 2025-10-05 : https://github.com/inventree/InvenTree/pull/10381 - Adds machine properties to machine API endpoints v400 -> 2025-10-05 : https://github.com/inventree/InvenTree/pull/10486 - - Adds return datatypes for admin/config and flags entpoints + - Adds return datatypes for admin/config and flags endpoints v399 -> 2025-10-05 : https://github.com/inventree/InvenTree/pull/10445 - Refactors 'customer_detail' param in SalesOrder API endpoint diff --git a/src/backend/InvenTree/InvenTree/apps.py b/src/backend/InvenTree/InvenTree/apps.py index 9d94ba5843..16e634e023 100644 --- a/src/backend/InvenTree/InvenTree/apps.py +++ b/src/backend/InvenTree/InvenTree/apps.py @@ -18,6 +18,7 @@ import InvenTree.conversion import InvenTree.ready import InvenTree.tasks from InvenTree.config import get_setting +from InvenTree.ready import ignore_ready_warning logger = structlog.get_logger('inventree') MIGRATIONS_CHECK_DONE = False @@ -70,9 +71,7 @@ class InvenTreeConfig(AppConfig): InvenTree.tasks.offload_task(InvenTree.tasks.check_for_migrations) self.update_site_url() - - # Ensure the unit registry is loaded - InvenTree.conversion.get_unit_registry() + self.load_unit_registry() if InvenTree.ready.canAppAccessDatabase() or settings.TESTING_ENV: self.add_user_on_startup() @@ -84,6 +83,7 @@ class InvenTreeConfig(AppConfig): social_account_updated.connect(sso.ensure_sso_groups) + @ignore_ready_warning def remove_obsolete_tasks(self): """Delete any obsolete scheduled tasks in the database.""" obsolete = [ @@ -112,6 +112,7 @@ class InvenTreeConfig(AppConfig): except Exception: logger.exception('Failed to remove obsolete tasks - database not ready') + @ignore_ready_warning def start_background_tasks(self): """Start all background tests for InvenTree.""" logger.info('Starting background tasks...') @@ -171,6 +172,7 @@ class InvenTreeConfig(AppConfig): logger.info('Started %s scheduled background tasks...', len(tasks)) + @ignore_ready_warning def add_heartbeat(self): """Ensure there is at least one background task in the queue.""" import django_q.models @@ -185,6 +187,7 @@ class InvenTreeConfig(AppConfig): except Exception: pass + @ignore_ready_warning def collect_tasks(self): """Collect all background tasks.""" for app_name, app in apps.app_configs.items(): @@ -197,6 +200,7 @@ class InvenTreeConfig(AppConfig): except Exception as e: # pragma: no cover logger.exception('Error loading tasks for %s: %s', app_name, e) + @ignore_ready_warning def update_site_url(self): """Update the site URL setting. @@ -223,6 +227,12 @@ class InvenTreeConfig(AppConfig): except Exception: pass + @ignore_ready_warning + def load_unit_registry(self): + """Ensure the unit registry is loaded.""" + InvenTree.conversion.get_unit_registry() + + @ignore_ready_warning def add_user_on_startup(self): """Add a user on startup.""" # stop if checks were already created @@ -281,6 +291,7 @@ class InvenTreeConfig(AppConfig): except IntegrityError: logger.warning('The user "%s" could not be created', add_user) + @ignore_ready_warning def add_user_from_file(self): """Add the superuser from a file.""" # stop if checks were already created diff --git a/src/backend/InvenTree/InvenTree/cache.py b/src/backend/InvenTree/InvenTree/cache.py index 3d56a11815..00214610cc 100644 --- a/src/backend/InvenTree/InvenTree/cache.py +++ b/src/backend/InvenTree/InvenTree/cache.py @@ -4,6 +4,8 @@ import socket import threading from typing import Any +from django.db.utils import OperationalError, ProgrammingError + import structlog import InvenTree.config @@ -169,3 +171,22 @@ def set_session_cache(key: str, value: Any) -> None: if request_cache is not None: request_cache[key] = value + + +def get_cached_content_types(cache_key: str = 'all_content_types') -> list: + """Return a list of all ContentType objects, using session cache if possible.""" + from django.contrib.contenttypes.models import ContentType + + # Attempt to retrieve a list of ContentType objects from session cache + if content_types := get_session_cache(cache_key): + return content_types + + try: + content_types = list(ContentType.objects.all()) + if len(content_types) > 0: + set_session_cache(cache_key, content_types) + except (OperationalError, ProgrammingError): + # Database is likely not yet ready + content_types = [] + + return content_types diff --git a/src/backend/InvenTree/InvenTree/helpers_model.py b/src/backend/InvenTree/InvenTree/helpers_model.py index 16338266d8..5fa5ae3cea 100644 --- a/src/backend/InvenTree/InvenTree/helpers_model.py +++ b/src/backend/InvenTree/InvenTree/helpers_model.py @@ -24,7 +24,13 @@ from common.notifications import ( trigger_notification, ) from common.settings import get_global_setting +from InvenTree.cache import ( + get_cached_content_types, + get_session_cache, + set_session_cache, +) from InvenTree.format import format_money +from InvenTree.ready import ignore_ready_warning logger = structlog.get_logger('inventree') @@ -260,6 +266,7 @@ def render_currency( ) +@ignore_ready_warning def getModelsWithMixin(mixin_class) -> list: """Return a list of database models that inherit from the given mixin class. @@ -268,17 +275,23 @@ def getModelsWithMixin(mixin_class) -> list: Returns: List of models that inherit from the given mixin class """ - from django.contrib.contenttypes.models import ContentType + # First, look in the session cache - to prevent repeated expensive comparisons + cache_key = f'models_with_mixin_{mixin_class.__name__}' - try: - db_models = [ - x.model_class() for x in ContentType.objects.all() if x is not None - ] - except (OperationalError, ProgrammingError): - # Database is likely not yet ready - db_models = [] + if cached_models := get_session_cache(cache_key): + return cached_models - return [x for x in db_models if x is not None and issubclass(x, mixin_class)] + content_types = get_cached_content_types() + + db_models = [x.model_class() for x in content_types if x is not None] + + models_with_mixin = [ + x for x in db_models if x is not None and issubclass(x, mixin_class) + ] + + # Store the result in the session cache + set_session_cache(cache_key, models_with_mixin) + return models_with_mixin def notify_responsible( diff --git a/src/backend/InvenTree/InvenTree/management/commands/schema.py b/src/backend/InvenTree/InvenTree/management/commands/schema.py index badf5702ad..5f7022411f 100644 --- a/src/backend/InvenTree/InvenTree/management/commands/schema.py +++ b/src/backend/InvenTree/InvenTree/management/commands/schema.py @@ -70,8 +70,10 @@ class Command(spectacular.Command): # Reformat paths for p_name, p_spec in spec['paths'].items(): # strip path name - p_name = p_name.removeprefix(dja_path_prefix).removeprefix( - '/_allauth/browser/v1/' + p_name = ( + p_name.removeprefix(dja_path_prefix) + .removeprefix('/_allauth/browser/v1/') + .removeprefix('/_allauth/app/v1/') ) # fix refs diff --git a/src/backend/InvenTree/InvenTree/metadata.py b/src/backend/InvenTree/InvenTree/metadata.py index 15733fa3de..c45c20e832 100644 --- a/src/backend/InvenTree/InvenTree/metadata.py +++ b/src/backend/InvenTree/InvenTree/metadata.py @@ -23,7 +23,7 @@ logger = structlog.get_logger('inventree') class InvenTreeMetadata(SimpleMetadata): """Custom metadata class for the DRF API. - This custom metadata class imits the available "actions", + This custom metadata class limits the available "actions", based on the user's role permissions. Thus when a client send an OPTIONS request to an API endpoint, @@ -50,6 +50,10 @@ class InvenTreeMetadata(SimpleMetadata): for method in {'PUT', 'POST', 'GET'} & set(view.allowed_methods): view.request = clone_request(request, method) + + # Mark this request, to prevent expensive prefetching + view.request._metadata_requested = True + try: # Test global permissions if hasattr(view, 'check_permissions'): @@ -420,6 +424,13 @@ class InvenTreeMetadata(SimpleMetadata): if field_info['type'] == 'dependent field': field_info['depends_on'] = field.depends_on + # Extends with extra attributes from the serializer + extra_field_attributes = ['allow_blank', 'allow_null'] + + for attr in extra_field_attributes: + if hasattr(field, attr): + field_info[attr] = getattr(field, attr) + # Extend field info if the field has a get_field_info method if ( not field_info.get('read_only') diff --git a/src/backend/InvenTree/InvenTree/mixins.py b/src/backend/InvenTree/InvenTree/mixins.py index ac394f1e6d..498b201872 100644 --- a/src/backend/InvenTree/InvenTree/mixins.py +++ b/src/backend/InvenTree/InvenTree/mixins.py @@ -258,6 +258,19 @@ class OutputOptionsMixin: return serializer + def get_queryset(self): + """Return the queryset with output options applied. + + This automatically applies any prefetching defined against the optional fields. + """ + queryset = super().get_queryset() + serializer = self.get_serializer() + + if isinstance(serializer, FilterableSerializerMixin): + queryset = serializer.prefetch_queryset(queryset) + + return queryset + class SerializerContextMixin: """Mixin to add context to serializer.""" diff --git a/src/backend/InvenTree/InvenTree/models.py b/src/backend/InvenTree/InvenTree/models.py index c6f61b3ca3..978b11532c 100644 --- a/src/backend/InvenTree/InvenTree/models.py +++ b/src/backend/InvenTree/InvenTree/models.py @@ -6,10 +6,13 @@ from string import Formatter from typing import Any, Optional from django.contrib.auth import get_user_model +from django.contrib.contenttypes.fields import GenericRelation +from django.contrib.contenttypes.models import ContentType from django.core.exceptions import ValidationError -from django.db import models +from django.db import models, transaction from django.db.models import QuerySet from django.db.models.signals import post_save +from django.db.transaction import TransactionManagementError from django.dispatch import receiver from django.urls import resolve, reverse from django.urls.exceptions import NoReverseMatch @@ -449,7 +452,18 @@ class ReferenceIndexingMixin(models.Model): reference_int = models.BigIntegerField(default=0) -class InvenTreeModel(PluginValidationMixin, models.Model): +class ContentTypeMixin: + """Mixin class which supports retrieval of the ContentType for a model instance.""" + + @classmethod + def get_content_type(cls): + """Return the ContentType object associated with this model.""" + from django.contrib.contenttypes.models import ContentType + + return ContentType.objects.get_for_model(cls) + + +class InvenTreeModel(ContentTypeMixin, PluginValidationMixin, models.Model): """Base class for InvenTree models, which provides some common functionality. Includes the following mixins by default: @@ -472,7 +486,167 @@ class InvenTreeMetadataModel(MetadataMixin, InvenTreeModel): abstract = True -class InvenTreeAttachmentMixin: +class InvenTreePermissionCheckMixin: + """Provides an abstracted class for managing permissions against related fields.""" + + @classmethod + def check_related_permission(cls, permission, user) -> bool: + """Check if the user has permission to perform the specified action on the attachment. + + The default implementation runs a permission check against *this* model class, + but this can be overridden in the implementing class if required. + + Arguments: + permission: The permission to check (add / change / view / delete) + user: The user to check against + + Returns: + bool: True if the user has permission, False otherwise + """ + perm = f'{cls._meta.app_label}.{permission}_{cls._meta.model_name}' + return user.has_perm(perm) + + +class InvenTreeParameterMixin(InvenTreePermissionCheckMixin, models.Model): + """Provides an abstracted class for managing parameters. + + Links the implementing model to the common.models.Parameter table, + and provides the following methods: + """ + + class Meta: + """Metaclass options for InvenTreeParameterMixin.""" + + abstract = True + + # Define a reverse relation to the Parameter model + parameters_list = GenericRelation( + 'common.Parameter', content_type_field='model_type', object_id_field='model_id' + ) + + @staticmethod + def annotate_parameters(queryset: QuerySet) -> QuerySet: + """Annotate a queryset with pre-fetched parameters. + + Args: + queryset: Queryset to annotate + + Returns: + Annotated queryset + """ + return queryset.prefetch_related( + 'parameters_list', + 'parameters_list__model_type', + 'parameters_list__updated_by', + 'parameters_list__template', + 'parameters_list__template__model_type', + ) + + @property + def parameters(self) -> QuerySet: + """Return a QuerySet containing all the Parameter instances for this model. + + This will return pre-fetched data if available (i.e. in a serializer context). + """ + # Check the query cache for pre-fetched parameters + if cache := getattr(self, '_prefetched_objects_cache', None): + if 'parameters_list' in cache: + return cache['parameters_list'] + + return self.parameters_list.all() + + def delete(self, *args, **kwargs): + """Handle the deletion of a model instance. + + Before deleting the model instance, delete any associated parameters. + """ + self.parameters_list.all().delete() + super().delete(*args, **kwargs) + + @transaction.atomic + def copy_parameters_from(self, other, clear=True, **kwargs): + """Copy all parameters from another model instance. + + Arguments: + other: The other model instance to copy parameters from + clear: If True, clear existing parameters before copying + **kwargs: Additional keyword arguments to pass to the Parameter constructor + """ + import common.models + + if clear: + self.parameters_list.all().delete() + + parameters = [] + + content_type = ContentType.objects.get_for_model(self.__class__) + + template_ids = [parameter.template.pk for parameter in other.parameters.all()] + + # Remove all conflicting parameters first + self.parameters_list.filter(template__pk__in=template_ids).delete() + + for parameter in other.parameters.all(): + parameter.pk = None + parameter.model_id = self.pk + parameter.model_type = content_type + + parameters.append(parameter) + + if len(parameters) > 0: + common.models.Parameter.objects.bulk_create(parameters) + + def get_parameter(self, name: str): + """Return a Parameter instance for the given parameter name. + + Args: + name: Name of the parameter template + + Returns: + Parameter instance if found, else None + """ + return self.parameters_list.filter(template__name=name).first() + + def get_parameters(self) -> QuerySet: + """Return all Parameter instances for this model.""" + return ( + self.parameters_list.all() + .prefetch_related('template', 'model_type') + .order_by('template__name') + ) + + def parameters_map(self) -> dict: + """Return a map (dict) of parameter values associated with this Part instance, of the form. + + Example: + { + "name_1": "value_1", + "name_2": "value_2", + } + """ + params = {} + + for parameter in self.parameters.all().prefetch_related('template'): + params[parameter.template.name] = parameter.data + + return params + + def check_parameter_delete(self, parameter): + """Run a check to determine if the provided parameter can be deleted. + + The default implementation always returns True, but this can be overridden in the implementing class. + """ + return True + + def check_parameter_save(self, parameter): + """Run a check to determine if the provided parameter can be saved. + + The default implementation always returns True, but this can be overridden in the implementing class. + """ + return True + + +class InvenTreeAttachmentMixin(InvenTreePermissionCheckMixin): """Provides an abstracted class for managing file attachments. Links the implementing model to the common.models.Attachment table, @@ -490,33 +664,15 @@ class InvenTreeAttachmentMixin: super().delete(*args, **kwargs) @property - def attachments(self): + def attachments(self) -> QuerySet: """Return a queryset containing all attachments for this model.""" return self.attachments_for_model().filter(model_id=self.pk) - @classmethod - def check_attachment_permission(cls, permission, user) -> bool: - """Check if the user has permission to perform the specified action on the attachment. - - The default implementation runs a permission check against *this* model class, - but this can be overridden in the implementing class if required. - - Arguments: - permission: The permission to check (add / change / view / delete) - user: The user to check against - - Returns: - bool: True if the user has permission, False otherwise - """ - perm = f'{cls._meta.app_label}.{permission}_{cls._meta.model_name}' - return user.has_perm(perm) - - def attachments_for_model(self): + def attachments_for_model(self) -> QuerySet: """Return all attachments for this model class.""" from common.models import Attachment model_type = self.__class__.__name__.lower() - return Attachment.objects.filter(model_type=model_type) def create_attachment(self, attachment=None, link=None, comment='', **kwargs): @@ -532,7 +688,7 @@ class InvenTreeAttachmentMixin: Attachment.objects.create(**kwargs) -class InvenTreeTree(MPTTModel): +class InvenTreeTree(ContentTypeMixin, MPTTModel): """Provides an abstracted self-referencing tree model, based on the MPTTModel class. Our implementation provides the following key improvements: @@ -763,7 +919,15 @@ class InvenTreeTree(MPTTModel): if len(trees) > 0: # A tree update was performed, so we need to refresh the instance - self.refresh_from_db() + try: + self.refresh_from_db() + except TransactionManagementError: + # If we are inside a transaction block, we cannot refresh from db + pass + except Exception as e: + # Any other error is unexpected + InvenTree.sentry.report_exception(e) + InvenTree.exceptions.log_error(f'{self.__class__.__name__}.save') def partial_rebuild(self, tree_id: int) -> bool: """Perform a partial rebuild of the tree structure. diff --git a/src/backend/InvenTree/InvenTree/permissions.py b/src/backend/InvenTree/InvenTree/permissions.py index bc48d862ea..bf4335e94c 100644 --- a/src/backend/InvenTree/InvenTree/permissions.py +++ b/src/backend/InvenTree/InvenTree/permissions.py @@ -149,7 +149,7 @@ class InvenTreeRoleScopeMixin(OASTokenMixin): class InvenTreeTokenMatchesOASRequirements(InvenTreeRoleScopeMixin): """Combines InvenTree role-based scope handling with OpenAPI schema token requirements. - Usesd as default permission class. + Used as default permission class. """ def has_permission(self, request, view): @@ -166,6 +166,29 @@ class InvenTreeTokenMatchesOASRequirements(InvenTreeRoleScopeMixin): return True +class ModelPermission(permissions.DjangoModelPermissions): + """Custom ModelPermission implementation which provides cached lookup of queryset. + + This is entirely for optimization purposes. + """ + + def _queryset(self, view): + """Return the queryset associated with this view, with caching. + + This is because in a metadata OPTIONS request, the view is copied multiple times. + We can cache the queryset to avoid repeated calculation. + """ + if getattr(view, '_cached_queryset', None) is not None: + return view._cached_queryset + + queryset = super()._queryset(view) + + if queryset is not None: + view._cached_queryset = queryset + + return queryset + + class RolePermission(InvenTreeRoleScopeMixin, permissions.BasePermission): """Role mixin for API endpoints, allowing us to specify the user "role" which is required for certain operations. diff --git a/src/backend/InvenTree/InvenTree/profiling.py b/src/backend/InvenTree/InvenTree/profiling.py new file mode 100644 index 0000000000..bed703a3d3 --- /dev/null +++ b/src/backend/InvenTree/InvenTree/profiling.py @@ -0,0 +1,130 @@ +"""Helper functions for profiling InvenTree code. + +A set of decorators to assist with profiling functions and logging, +which implement oft-repeated patterns used during development and debugging. + +Note: These functions are not to be used in production code. +""" + +from functools import wraps + + +def ensure_debug(): + """Ensure that InvenTree is running in DEBUG mode.""" + from django.conf import settings + + if not settings.DEBUG: + raise RuntimeError('Profiling functions can only be used in DEBUG mode!') + + +def time_function(func): # pragma: no cover + """Decorator to time a function's execution duration. + + Args: + func: Function to be timed + """ + + @wraps(func) + def wrapper(*args, **kwargs): + import time + + ensure_debug() + + start_time = time.time() + result = func(*args, **kwargs) + end_time = time.time() + + duration = end_time - start_time + print(f"Function '{func.__name__}' executed in {duration:.6f} seconds.") + + return result + + return wrapper + + +def profile_function(filename='profile.prof'): # pragma: no cover + """Decorator to profile a function using cProfile. + + Args: + func: Function to be profiled + filename: Output filename for the profiling data + """ + + def decorator(func): + + @wraps(func) + def wrapper(*args, **kwargs): + import cProfile + import io + import pstats + + ensure_debug() + + pr = cProfile.Profile() + pr.enable() + + result = func(*args, **kwargs) + + pr.disable() + s = io.StringIO() + sortby = pstats.SortKey.CUMULATIVE + ps = pstats.Stats(pr, stream=s).sort_stats(sortby) + ps.dump_stats(filename) + print(s.getvalue()) + + return result + + return wrapper + + return decorator + + +def log_slow_queries( + threshold: float = 0.01, n: int = 5, log_to_file: bool = True +): # pragma: no cover + """Decorator to log slow database queries in a Django view function. + + Args: + func: Function to be decorated + threshold: Time threshold (in seconds) for logging slow queries + n: Number of slowest queries to log + log_to_file: Whether to log to a file or print to console + """ + + def decorator(func): + + @wraps(func) + def wrapper(*args, **kwargs): + from django.db import connection + + ensure_debug() + + result = func(*args, **kwargs) + + slow_queries = [ + q for q in connection.queries if float(q.get('time', 0)) >= threshold + ] + slow_queries.sort(key=lambda x: float(x.get('time', 0)), reverse=True) + + log_entries = [] + for query in slow_queries[:n]: + log_entry = f'Time: {query["time"]}s | SQL: {query["sql"]}' + log_entries.append(log_entry) + + if log_entries: + log_message = '\n'.join(log_entries) + if log_to_file: + with open('slow_queries.log', 'w', encoding='utf-8') as f: + f.write(f'Slow queries detected:\n{log_message}\n') + else: + print(f'Slow queries detected:\n{log_message}') + + return result + + return wrapper + + return decorator + + +# Raise an exception if this file is imported outside of DEBUG mode +ensure_debug() diff --git a/src/backend/InvenTree/InvenTree/ready.py b/src/backend/InvenTree/InvenTree/ready.py index fd4aa565d6..b7fb78ca6b 100644 --- a/src/backend/InvenTree/InvenTree/ready.py +++ b/src/backend/InvenTree/InvenTree/ready.py @@ -1,13 +1,36 @@ """Functions to check if certain parts of InvenTree are ready.""" +import functools import inspect import os import sys +import warnings + +# Keep track of loaded apps, to prevent multiple executions of ready functions +_loaded_apps = set() + + +def clearLoadedApps(): + """Clear the set of loaded apps.""" + global _loaded_apps + _loaded_apps = set() + + +def setAppLoaded(app_name: str): + """Mark an app as loaded.""" + global _loaded_apps + _loaded_apps.add(app_name) + + +def isAppLoaded(app_name: str) -> bool: + """Return True if the app has been marked as loaded.""" + global _loaded_apps + return app_name in _loaded_apps def isInTestMode(): """Returns True if the database is in testing mode.""" - return 'test' in sys.argv + return 'test' in sys.argv or sys.argv[0].endswith('pytest') def isImportingData(): @@ -157,3 +180,22 @@ def isPluginRegistryLoaded(): from plugin import registry return registry.plugins_loaded + + +def ignore_ready_warning(func): + """Decorator to ignore 'AppRegistryNotReady' warnings in functions called during app ready phase. + + Ref: https://github.com/inventree/InvenTree/issues/10806 + """ + + @functools.wraps(func) + def wrapper(*args, **kwargs): + with warnings.catch_warnings(): + warnings.filterwarnings( + 'ignore', + message='Accessing the database during app initialization is discouraged', + category=RuntimeWarning, + ) + return func(*args, **kwargs) + + return wrapper diff --git a/src/backend/InvenTree/InvenTree/schema.py b/src/backend/InvenTree/InvenTree/schema.py index 36918d3d95..095dbe15d4 100644 --- a/src/backend/InvenTree/InvenTree/schema.py +++ b/src/backend/InvenTree/InvenTree/schema.py @@ -1,7 +1,7 @@ """Schema processing functions for cleaning up generated schema.""" from itertools import chain -from typing import Optional +from typing import Any, Optional from django.conf import settings @@ -138,6 +138,43 @@ class ExtendedAutoSchema(AutoSchema): return operation +def postprocess_schema_enums(result, generator, **kwargs): + """Override call to drf-spectacular's enum postprocessor to filter out specific warnings.""" + from drf_spectacular import drainage + + # Monkey-patch the warn function temporarily + original_warn = drainage.warn + + def custom_warn(msg: str, delayed: Any = None) -> None: + """Custom patch to ignore some drf-spectacular warnings. + + - Some warnings are unavoidable due to the way that InvenTree implements generic relationships (via ContentType). + - The cleanest way to handle this appears to be to override the 'warn' function from drf-spectacular. + + Ref: https://github.com/inventree/InvenTree/pull/10699 + """ + ignore_patterns = [ + 'enum naming encountered a non-optimally resolvable collision for fields named "model_type"' + ] + + if any(pattern in msg for pattern in ignore_patterns): + return + + original_warn(msg, delayed) + + # Replace the warn function with our custom version + drainage.warn = custom_warn + + import drf_spectacular.hooks + + result = drf_spectacular.hooks.postprocess_schema_enums(result, generator, **kwargs) + + # Restore the original warn function + drainage.warn = original_warn + + return result + + def postprocess_required_nullable(result, generator, request, public): """Un-require nullable fields. diff --git a/src/backend/InvenTree/InvenTree/serializers.py b/src/backend/InvenTree/InvenTree/serializers.py index ee707f27ff..3fc8e04db5 100644 --- a/src/backend/InvenTree/InvenTree/serializers.py +++ b/src/backend/InvenTree/InvenTree/serializers.py @@ -7,8 +7,10 @@ from decimal import Decimal from typing import Any, Optional from django.conf import settings +from django.contrib.contenttypes.models import ContentType from django.core.exceptions import ValidationError as DjangoValidationError from django.db import models +from django.db.models import QuerySet from django.utils.translation import gettext_lazy as _ from djmoney.contrib.django_rest_framework.fields import MoneyField @@ -21,13 +23,14 @@ from rest_framework.fields import empty from rest_framework.mixins import ListModelMixin from rest_framework.serializers import DecimalField from rest_framework.utils import model_meta -from taggit.serializers import TaggitSerializer +from taggit.serializers import TaggitSerializer, TagListSerializerField import common.models as common_models import InvenTree.ready from common.currency import currency_code_default, currency_code_mappings from InvenTree.fields import InvenTreeRestURLField, InvenTreeURLField from InvenTree.helpers import str2bool +from InvenTree.helpers_model import getModelsWithMixin from .setting.storages import StorageBackends @@ -42,11 +45,15 @@ class FilterableSerializerField: is_filterable = None is_filterable_vals = {} + # Options for automatic queryset prefetching + prefetch_fields: Optional[list[str]] = None + def __init__(self, *args, **kwargs): """Initialize the serializer.""" - if self.is_filterable is None: # Materialize parameters for later usage - self.is_filterable = kwargs.pop('is_filterable', None) - self.is_filterable_vals = kwargs.pop('is_filterable_vals', {}) + self.is_filterable = kwargs.pop('is_filterable', None) + self.is_filterable_vals = kwargs.pop('is_filterable_vals', {}) + self.prefetch_fields = kwargs.pop('prefetch_fields', None) + super().__init__(*args, **kwargs) @@ -55,6 +62,7 @@ def enable_filter( default_include: bool = False, filter_name: Optional[str] = None, filter_by_query: bool = True, + prefetch_fields: Optional[list[str]] = None, ): """Decorator for marking a serializer field as filterable. @@ -65,11 +73,12 @@ def enable_filter( default_include (bool): If True, the field will be included by default unless explicitly excluded. If False, the field will be excluded by default unless explicitly included. filter_name (str, optional): The name of the filter parameter to use in the URL. If None, the function name of the (decorated) function will be used. filter_by_query (bool): If True, also look for filter parameters in the request query parameters. + prefetch_fields (list of str, optional): List of related fields to prefetch when this field is included. This can be used to optimize database queries. Returns: The decorated serializer field, marked as filterable. """ - # Ensure this function can be actually filteres + # Ensure this function can be actually filtered if not issubclass(func.__class__, FilterableSerializerField): raise TypeError( 'INVE-I2: `enable_filter` can only be applied to serializer fields / serializers that contain the `FilterableSerializerField` mixin!' @@ -82,6 +91,10 @@ def enable_filter( 'filter_name': filter_name if filter_name else func.field_name, 'filter_by_query': filter_by_query, } + + # Attach queryset prefetching information + func._kwargs['prefetch_fields'] = prefetch_fields + return func @@ -111,6 +124,43 @@ class FilterableSerializerMixin: super().__init__(*args, **kwargs) self.do_filtering() + def prefetch_queryset(self, queryset: QuerySet) -> QuerySet: + """Apply any prefetching to the queryset based on the optionally included fields. + + Args: + queryset: The original queryset. + + Returns: + The modified queryset with prefetching applied. + """ + # If we are inside an OPTIONS request, DO NOT PREFETCH + if request := getattr(self, 'request', None): + if method := getattr(request, 'method', None): + if str(method).lower() == 'options': + return queryset + + if getattr(request, '_metadata_requested', False): + return queryset + + # Gather up the set of simple 'prefetch' fields and functions + prefetch_fields = set() + + filterable_fields = [ + field + for field in self.fields.values() + if getattr(field, 'is_filterable', None) + ] + + for field in filterable_fields: + if prefetch_names := getattr(field, 'prefetch_fields', None): + for pf in prefetch_names: + prefetch_fields.add(pf) + + if prefetch_fields and len(prefetch_fields) > 0: + queryset = queryset.prefetch_related(*list(prefetch_fields)) + + return queryset + def gather_filters(self, kwargs) -> None: """Gather filterable fields through introspection.""" # Fast exit if this has already been done or would not have any effect @@ -132,11 +182,11 @@ class FilterableSerializerMixin: query_params = dict(getattr(context.get('request', {}), 'query_params', {})) # Remove filter args from kwargs to avoid issues with super().__init__ - poped_kwargs = {} # store popped kwargs as a arg might be reused for multiple fields + popped_kwargs = {} # store popped kwargs as a arg might be reused for multiple fields tgs_vals: dict[str, bool] = {} for k, v in self.filter_targets.items(): pop_ref = v['filter_name'] or k - val = kwargs.pop(pop_ref, poped_kwargs.get(pop_ref)) + val = kwargs.pop(pop_ref, popped_kwargs.get(pop_ref)) # Optionally also look in query parameters if val is None and self.filter_on_query and v.get('filter_by_query', True): @@ -145,13 +195,13 @@ class FilterableSerializerMixin: val = val[0] if val: # Save popped value for reuse - poped_kwargs[pop_ref] = val + popped_kwargs[pop_ref] = val tgs_vals[k] = ( str2bool(val) if isinstance(val, (str, int, float)) else val ) # Support for various filtering style for backwards compatibility self.filter_target_values = tgs_vals - # Ensure this mixin is not proadly applied as it is expensive on scale (total CI time increased by 21% when running all coverage tests) + # Ensure this mixin is not broadly applied as it is expensive on scale (total CI time increased by 21% when running all coverage tests) if len(self.filter_targets) == 0 and not self.no_filters: raise Exception( 'INVE-I2: No filter targets found in fields, remove `PathScopedMixin`' @@ -166,6 +216,16 @@ class FilterableSerializerMixin: ): return + # Skip filtering when exporting data - leave all fields intact + if getattr(self, '_exporting_data', False): + return + + # Skip filtering for a write requests - all fields should be present for data creation + if request := self.context.get('request', None): + if method := getattr(request, 'method', None): + if str(method).lower() in ['post', 'put', 'patch']: + return + # Throw out fields which are not requested (either by default or explicitly) for k, v in self.filter_target_values.items(): # See `enable_filter` where` is_filterable and is_filterable_vals are set @@ -208,6 +268,13 @@ class FilterableIntegerField(FilterableSerializerField, serializers.IntegerField """Custom IntegerField which allows filtering.""" +class FilterableTagListField(FilterableSerializerField, TagListSerializerField): + """Custom TagListSerializerField which allows filtering.""" + + class Meta: + """Empty Meta class.""" + + # endregion @@ -646,6 +713,11 @@ class InvenTreeDecimalField(serializers.FloatField): def to_internal_value(self, data): """Convert to python type.""" + if data in [None, '']: + if self.allow_null: + return None + raise serializers.ValidationError(_('This field may not be null.')) + # Convert the value to a string, and then a decimal try: return Decimal(str(data)) @@ -716,3 +788,96 @@ class RemoteImageMixin(metaclass=serializers.SerializerMetaclass): raise ValidationError(_('Failed to download image from remote URL')) return url + + +class ContentTypeField(serializers.ChoiceField): + """Serializer field which represents a ContentType as 'app_label.model_name'. + + This field converts a ContentType instance to a string representation in the format 'app_label.model_name' during serialization, and vice versa during deserialization. + + Additionally, a "mixin_class" can be supplied to the field, which will restrict the valid content types to only those models which inherit from the specified mixin. + """ + + mixin_class = None + + def __init__(self, *args, mixin_class=None, **kwargs): + """Initialize the ContentTypeField. + + Args: + mixin_class: Optional mixin class to restrict valid content types. + """ + from InvenTree.cache import get_cached_content_types + + self.mixin_class = mixin_class + + # Override the 'choices' field, to limit to the appropriate models + if self.mixin_class is not None: + models = getModelsWithMixin(self.mixin_class) + + kwargs['choices'] = [ + ( + f'{model._meta.app_label}.{model._meta.model_name}', + model._meta.verbose_name, + ) + for model in models + ] + else: + content_types = get_cached_content_types() + + kwargs['choices'] = [ + (f'{ct.app_label}.{ct.model}', str(ct)) for ct in content_types + ] + + if kwargs.get('allow_null') or kwargs.get('allow_blank'): + kwargs['choices'] = [('', '---------'), *kwargs['choices']] + + super().__init__(*args, **kwargs) + + def to_representation(self, value): + """Convert ContentType instance to string representation.""" + return f'{value.app_label}.{value.model}' + + def to_internal_value(self, data): + """Convert string representation back to ContentType instance.""" + content_type = None + + if data in ['', None]: + return None + + # First, try to resolve the content type via direct pk value + try: + content_type_id = int(data) + content_type = ContentType.objects.get_for_id(content_type_id) + except (ValueError, ContentType.DoesNotExist): + content_type = None + + try: + if len(data.split('.')) == 2: + app_label, model = data.split('.') + content_types = ContentType.objects.filter( + app_label=app_label, model=model + ) + + if content_types.count() == 1: + # Try exact match first + content_type = content_types.first() + else: + # Try lookup just on model name + content_types = ContentType.objects.filter(model=data) + if content_types.exists() and content_types.count() == 1: + content_type = content_types.first() + + except Exception: + raise ValidationError(_('Invalid content type format')) + + if content_type is None: + raise ValidationError(_('Content type not found')) + + if self.mixin_class is not None: + model_class = content_type.model_class() + if not issubclass(model_class, self.mixin_class): + raise ValidationError( + _('Content type does not match required mixin class') + ) + + return content_type diff --git a/src/backend/InvenTree/InvenTree/setting/spectacular.py b/src/backend/InvenTree/InvenTree/setting/spectacular.py index 56fdbdc4fa..c83e1f8265 100644 --- a/src/backend/InvenTree/InvenTree/setting/spectacular.py +++ b/src/backend/InvenTree/InvenTree/setting/spectacular.py @@ -20,7 +20,7 @@ def get_spectacular_settings(): 'SERVE_INCLUDE_SCHEMA': False, 'SCHEMA_PATH_PREFIX': '/api/', 'POSTPROCESSING_HOOKS': [ - 'drf_spectacular.hooks.postprocess_schema_enums', + 'InvenTree.schema.postprocess_schema_enums', 'InvenTree.schema.postprocess_required_nullable', 'InvenTree.schema.postprocess_print_stats', ], @@ -28,6 +28,7 @@ def get_spectacular_settings(): 'UserTypeEnum': 'users.models.UserProfile.UserType', 'TemplateModelTypeEnum': 'report.models.ReportTemplateBase.ModelChoices', 'AttachmentModelTypeEnum': 'common.models.Attachment.ModelChoices', + 'ParameterModelTypeEnum': 'common.models.Parameter.ModelChoices', 'DataImportSessionModelTypeEnum': 'importer.models.DataImportSession.ModelChoices', # Allauth 'UnauthorizedStatus': [[401, 401]], diff --git a/src/backend/InvenTree/InvenTree/settings.py b/src/backend/InvenTree/InvenTree/settings.py index 17585f7bf9..1945e3c8c4 100644 --- a/src/backend/InvenTree/InvenTree/settings.py +++ b/src/backend/InvenTree/InvenTree/settings.py @@ -53,7 +53,7 @@ INVENTREE_BASE_URL = 'https://inventree.org' INVENTREE_NEWS_URL = f'{INVENTREE_BASE_URL}/news/feed.atom' # Determine if we are running in "test" mode e.g. "manage.py test" -TESTING = 'test' in sys.argv or 'TESTING' in os.environ +TESTING = 'test' in sys.argv or 'TESTING' in os.environ or 'pytest' in sys.argv if TESTING: # Use a weaker password hasher for testing (improves testing speed) @@ -367,6 +367,21 @@ MIDDLEWARE = CONFIG.get( ], ) +# In DEBUG mode, add support for django-silk +# Ref: https://silk.readthedocs.io/en/latest/ +DJANGO_SILK_ENABLED = DEBUG and get_boolean_setting( # pragma: no cover + 'INVENTREE_DEBUG_SILK', 'debug_silk', False +) + +if DJANGO_SILK_ENABLED: # pragma: no cover + MIDDLEWARE.append('silk.middleware.SilkyMiddleware') + INSTALLED_APPS.append('silk') + + # Optionally enable the silk python profiler + SILKY_PYTHON_PROFILER = SILKY_PYTHON_PROFILER_BINARY = get_boolean_setting( + 'INVENTREE_DEBUG_SILK_PROFILING', 'debug_silk_profiling', False + ) + # In DEBUG mode, add support for django-querycount # Ref: https://github.com/bradmontgomery/django-querycount if DEBUG and get_boolean_setting( # pragma: no cover @@ -577,7 +592,7 @@ REST_FRAMEWORK = { 'DEFAULT_PAGINATION_CLASS': 'rest_framework.pagination.LimitOffsetPagination', 'DEFAULT_PERMISSION_CLASSES': [ 'rest_framework.permissions.IsAuthenticated', - 'rest_framework.permissions.DjangoModelPermissions', + 'InvenTree.permissions.ModelPermission', 'InvenTree.permissions.RolePermission', 'InvenTree.permissions.InvenTreeTokenMatchesOASRequirements', ], @@ -1017,11 +1032,13 @@ EXCHANGE_BACKEND = 'InvenTree.exchange.InvenTreeExchange' # region email # Email configuration options EMAIL_BACKEND = 'InvenTree.backends.InvenTreeMailLoggingBackend' + INTERNAL_EMAIL_BACKEND = get_setting( 'INVENTREE_EMAIL_BACKEND', 'email.backend', 'django.core.mail.backends.smtp.EmailBackend', ) + # SMTP backend EMAIL_HOST = get_setting('INVENTREE_EMAIL_HOST', 'email.host', '') EMAIL_PORT = get_setting('INVENTREE_EMAIL_PORT', 'email.port', 25, typecast=int) diff --git a/src/backend/InvenTree/InvenTree/unit_test.py b/src/backend/InvenTree/InvenTree/unit_test.py index 305bd0c506..5360d9f71d 100644 --- a/src/backend/InvenTree/InvenTree/unit_test.py +++ b/src/backend/InvenTree/InvenTree/unit_test.py @@ -16,7 +16,7 @@ from django.contrib.auth import get_user_model from django.contrib.auth.models import Group, Permission, User from django.db import connections, models from django.http.response import StreamingHttpResponse -from django.test import TestCase +from django.test import TestCase, tag from django.test.utils import CaptureQueriesContext, override_settings from django.urls import reverse @@ -824,3 +824,11 @@ class AdminTestCase(InvenTreeAPITestCase): def in_env_context(envs): """Patch the env to include the given dict.""" return mock.patch.dict(os.environ, envs) + + +@tag('performance_test') +class InvenTreeAPIPerformanceTestCase(InvenTreeAPITestCase): + """Base class for InvenTree API performance tests.""" + + MAX_QUERY_COUNT = 50 + MAX_QUERY_TIME = 60 diff --git a/src/backend/InvenTree/InvenTree/urls.py b/src/backend/InvenTree/InvenTree/urls.py index 78ecedc744..2820606347 100644 --- a/src/backend/InvenTree/InvenTree/urls.py +++ b/src/backend/InvenTree/InvenTree/urls.py @@ -186,6 +186,9 @@ urlpatterns.append( if settings.FRONTEND_SETTINGS.get('url_compatibility'): urlpatterns += cui_compatibility_urls(settings.FRONTEND_URL_BASE) +if settings.DJANGO_SILK_ENABLED: + urlpatterns += [path('silk/', include('silk.urls', namespace='silk'))] + # Send any unknown URLs to the index page urlpatterns += [ re_path( diff --git a/src/backend/InvenTree/InvenTree/version.py b/src/backend/InvenTree/InvenTree/version.py index 81bca6570a..387d60c0fb 100644 --- a/src/backend/InvenTree/InvenTree/version.py +++ b/src/backend/InvenTree/InvenTree/version.py @@ -12,14 +12,13 @@ import sys from datetime import datetime as dt from datetime import timedelta as td -import django -from django.conf import settings - from .api_version import INVENTREE_API_TEXT, INVENTREE_API_VERSION # InvenTree software version INVENTREE_SW_VERSION = '1.2.0 dev' +# Minimum supported Python version +MIN_PYTHON_VERSION = (3, 11) logger = logging.getLogger('inventree') @@ -59,33 +58,36 @@ except Exception as exc: def checkMinPythonVersion(): - """Check that the Python version is at least 3.11.""" + """Check that the Python version meets the minimum requirements.""" + V_MIN_MAJOR, V_MIN_MINOR = MIN_PYTHON_VERSION + version = sys.version.split(' ')[0] - docs = 'https://docs.inventree.org/en/stable/start/intro/#python-requirements' + docs = 'https://docs.inventree.org/en/stable/start/#python-requirements' msg = f""" - InvenTree requires Python 3.11 or above - you are running version {version}. + INVE-E15: Python version not supported. + InvenTree requires Python {V_MIN_MAJOR}.{V_MIN_MINOR} or above - you are running version {version}. - Refer to the InvenTree documentation for more information: - {docs} """ - if sys.version_info.major < 3: # noqa: UP036 + if sys.version_info.major < V_MIN_MAJOR: raise RuntimeError(msg) - if sys.version_info.major == 3 and sys.version_info.minor < 11: + if sys.version_info.major == V_MIN_MAJOR and sys.version_info.minor < V_MIN_MINOR: raise RuntimeError(msg) - print(f'Python version {version} - {sys.executable}') + logger.info(f'Python version {version} - {sys.executable}') -def inventreeInstanceName(): +def inventreeInstanceName() -> str: """Returns the InstanceName settings for the current database.""" from common.settings import get_global_setting return get_global_setting('INVENTREE_INSTANCE') -def inventreeInstanceTitle(): +def inventreeInstanceTitle() -> str: """Returns the InstanceTitle for the current database.""" from common.settings import get_global_setting @@ -95,7 +97,7 @@ def inventreeInstanceTitle(): return 'InvenTree' -def inventreeVersion(): +def inventreeVersion() -> str: """Returns the InvenTree version string.""" return INVENTREE_SW_VERSION.lower().strip() @@ -110,12 +112,12 @@ def inventreeVersionTuple(version=None): return [int(g) for g in match.groups()] if match else [] -def isInvenTreeDevelopmentVersion(): +def isInvenTreeDevelopmentVersion() -> bool: """Return True if current InvenTree version is a "development" version.""" return inventreeVersion().endswith('dev') -def inventreeDocsVersion(): +def inventreeDocsVersion() -> str: """Return the version string matching the latest documentation. Development -> "latest" @@ -123,26 +125,27 @@ def inventreeDocsVersion(): """ if isInvenTreeDevelopmentVersion(): return 'latest' - return INVENTREE_SW_VERSION # pragma: no cover + + return INVENTREE_SW_VERSION -def inventreeDocUrl(): +def inventreeDocUrl() -> str: """Return URL for InvenTree documentation site.""" tag = inventreeDocsVersion() return f'https://docs.inventree.org/en/{tag}' -def inventreeAppUrl(): +def inventreeAppUrl() -> str: """Return URL for InvenTree app site.""" - return 'https://docs.inventree.org/app/' + return 'https://docs.inventree.org/en/stable/app/' -def inventreeGithubUrl(): +def inventreeGithubUrl() -> str: """Return URL for InvenTree github site.""" return 'https://github.com/InvenTree/InvenTree/' -def isInvenTreeUpToDate(): +def isInvenTreeUpToDate() -> bool: """Test if the InvenTree instance is "up to date" with the latest version. A background task periodically queries GitHub for latest version, and stores it to the database as "_INVENTREE_LATEST_VERSION" @@ -164,7 +167,7 @@ def isInvenTreeUpToDate(): return inventree_version >= latest_version # pragma: no cover -def inventreeApiVersion(): +def inventreeApiVersion() -> int: """Returns current API version of InvenTree.""" return INVENTREE_API_VERSION @@ -224,6 +227,8 @@ def inventreeApiText(versions: int = 10, start_version: int = 0): def inventreeDjangoVersion(): """Returns the version of Django library.""" + import django + return django.get_version() @@ -290,6 +295,8 @@ def inventreePlatform(): def inventreeDatabase(): """Return the InvenTree database backend e.g. 'postgresql'.""" + from django.conf import settings + return settings.DB_ENGINE diff --git a/src/backend/InvenTree/build/api.py b/src/backend/InvenTree/build/api.py index 2f0cf3d2ab..d7b8692bab 100644 --- a/src/backend/InvenTree/build/api.py +++ b/src/backend/InvenTree/build/api.py @@ -24,7 +24,7 @@ from build.models import Build, BuildItem, BuildLine from build.status_codes import BuildStatus, BuildStatusGroups from data_exporter.mixins import DataExportViewMixin from generic.states.api import StatusView -from InvenTree.api import BulkDeleteMixin, MetadataView +from InvenTree.api import BulkDeleteMixin, MetadataView, ParameterListMixin from InvenTree.fields import InvenTreeOutputOption, OutputConfiguration from InvenTree.filters import ( SEARCH_ORDER_FILTER_ALIAS, @@ -317,15 +317,7 @@ class BuildMixin: """Return the queryset for the Build API endpoints.""" queryset = super().get_queryset() - queryset = queryset.prefetch_related( - 'responsible', - 'issued_by', - 'build_lines', - 'build_lines__bom_item', - 'build_lines__build', - 'part', - 'part__pricing_data', - ) + queryset = build.serializers.BuildSerializer.annotate_queryset(queryset) return queryset @@ -336,7 +328,13 @@ class BuildListOutputOptions(OutputConfiguration): OPTIONS = [InvenTreeOutputOption('part_detail', default=True)] -class BuildList(DataExportViewMixin, BuildMixin, OutputOptionsMixin, ListCreateAPI): +class BuildList( + DataExportViewMixin, + BuildMixin, + OutputOptionsMixin, + ParameterListMixin, + ListCreateAPI, +): """API endpoint for accessing a list of Build objects. - GET: Return list of objects (with filters) @@ -378,14 +376,6 @@ class BuildList(DataExportViewMixin, BuildMixin, OutputOptionsMixin, ListCreateA 'priority', ] - def get_queryset(self): - """Override the queryset filtering, as some of the fields don't natively play nicely with DRF.""" - queryset = super().get_queryset().select_related('part') - - queryset = build.serializers.BuildSerializer.annotate_queryset(queryset) - - return queryset - def get_serializer(self, *args, **kwargs): """Add extra context information to the endpoint serializer.""" kwargs['create'] = True @@ -569,26 +559,27 @@ class BuildLineOutputOptions(OutputConfiguration): InvenTreeOutputOption( 'bom_item_detail', description='Include detailed information about the BOM item linked to this build line.', - default=True, + default=False, ), InvenTreeOutputOption( 'assembly_detail', description='Include brief details of the assembly (parent part) related to the BOM item in this build line.', - default=True, + default=False, ), InvenTreeOutputOption( 'part_detail', description='Include detailed information about the specific part being built or consumed in this build line.', - default=True, + default=False, ), InvenTreeOutputOption( 'build_detail', description='Include detailed information about the associated build order.', + default=False, ), InvenTreeOutputOption( 'allocations', description='Include allocation details showing which stock items are allocated to this build line.', - default=True, + default=False, ), ] @@ -906,6 +897,7 @@ class BuildItemOutputOptions(OutputConfiguration): InvenTreeOutputOption('location_detail'), InvenTreeOutputOption('stock_detail'), InvenTreeOutputOption('build_detail'), + InvenTreeOutputOption('supplier_part_detail'), ] @@ -928,26 +920,9 @@ class BuildItemList( """Override the queryset method, to perform custom prefetch.""" queryset = super().get_queryset() - queryset = queryset.select_related( - 'build_line', - 'build_line__build', - 'build_line__build__part', - 'build_line__build__responsible', - 'build_line__build__issued_by', - 'build_line__build__project_code', - 'build_line__build__part__pricing_data', - 'build_line__bom_item', - 'build_line__bom_item__part', - 'build_line__bom_item__sub_part', - 'install_into', - 'stock_item', - 'stock_item__location', - 'stock_item__part', - 'stock_item__supplier_part__part', - 'stock_item__supplier_part__supplier', - 'stock_item__supplier_part__manufacturer_part', - 'stock_item__supplier_part__manufacturer_part__manufacturer', - ).prefetch_related('stock_item__location__tags', 'stock_item__tags') + queryset = queryset.select_related('install_into').prefetch_related( + 'build_line', 'build_line__build', 'build_line__bom_item' + ) return queryset diff --git a/src/backend/InvenTree/build/models.py b/src/backend/InvenTree/build/models.py index e4c89c5d63..42e8213099 100644 --- a/src/backend/InvenTree/build/models.py +++ b/src/backend/InvenTree/build/models.py @@ -76,6 +76,7 @@ class BuildReportContext(report.mixins.BaseReportContext): class Build( InvenTree.models.PluginValidationMixin, report.mixins.InvenTreeReportMixin, + InvenTree.models.InvenTreeParameterMixin, InvenTree.models.InvenTreeAttachmentMixin, InvenTree.models.InvenTreeBarcodeMixin, InvenTree.models.InvenTreeNotesMixin, @@ -85,7 +86,7 @@ class Build( InvenTree.models.MetadataMixin, InvenTree.models.InvenTreeTree, ): - """A Build object organises the creation of new StockItem objects from other existing StockItem objects. + """A Build object organizes the creation of new StockItem objects from other existing StockItem objects. Attributes: part: The part to be built (from component BOM items) diff --git a/src/backend/InvenTree/build/serializers.py b/src/backend/InvenTree/build/serializers.py index 2da5c2ee85..b13d5fdf17 100644 --- a/src/backend/InvenTree/build/serializers.py +++ b/src/backend/InvenTree/build/serializers.py @@ -22,17 +22,16 @@ from rest_framework import serializers from rest_framework.serializers import ValidationError import build.tasks +import common.filters import common.settings import company.serializers import InvenTree.helpers import part.filters import part.serializers as part_serializers -from common.serializers import ProjectCodeSerializer from common.settings import get_global_setting from generic.states.fields import InvenTreeCustomStatusSerializerMixin from InvenTree.mixins import DataImportExportSerializerMixin from InvenTree.serializers import ( - FilterableCharField, FilterableSerializerMixin, InvenTreeDecimalField, InvenTreeModelSerializer, @@ -101,6 +100,7 @@ class BuildSerializer( 'issued_by_detail', 'responsible', 'responsible_detail', + 'parameters', 'priority', 'level', ] @@ -122,8 +122,11 @@ class BuildSerializer( part_detail = enable_filter( part_serializers.PartBriefSerializer(source='part', many=False, read_only=True), True, + prefetch_fields=['part', 'part__category', 'part__pricing_data'], ) + parameters = common.filters.enable_parameters_filter() + part_name = serializers.CharField( source='part.name', read_only=True, label=_('Part Name') ) @@ -136,34 +139,21 @@ class BuildSerializer( UserSerializer(source='issued_by', read_only=True), True, filter_name='user_detail', + prefetch_fields=['issued_by'], ) responsible_detail = enable_filter( OwnerSerializer(source='responsible', read_only=True, allow_null=True), True, filter_name='user_detail', + prefetch_fields=['responsible'], ) barcode_hash = serializers.CharField(read_only=True) - project_code_label = enable_filter( - FilterableCharField( - source='project_code.code', - read_only=True, - label=_('Project Code Label'), - allow_null=True, - ), - True, - filter_name='project_code_detail', - ) + project_code_label = common.filters.enable_project_label_filter() - project_code_detail = enable_filter( - ProjectCodeSerializer( - source='project_code', many=False, read_only=True, allow_null=True - ), - True, - filter_name='project_code_detail', - ) + project_code_detail = common.filters.enable_project_code_filter() @staticmethod def annotate_queryset(queryset): @@ -1230,6 +1220,7 @@ class BuildItemSerializer( pricing=False, ), True, + prefetch_fields=['stock_item__part'], ) stock_item_detail = enable_filter( @@ -1245,6 +1236,12 @@ class BuildItemSerializer( ), True, filter_name='stock_detail', + prefetch_fields=[ + 'stock_item', + 'stock_item__part', + 'stock_item__supplier_part', + 'stock_item__supplier_part__manufacturer_part', + ], ) location = serializers.PrimaryKeyRelatedField( @@ -1259,6 +1256,7 @@ class BuildItemSerializer( allow_null=True, ), True, + prefetch_fields=['stock_item__location'], ) build_detail = enable_filter( @@ -1270,15 +1268,32 @@ class BuildItemSerializer( allow_null=True, ), True, + prefetch_fields=[ + 'build_line__build', + 'build_line__build__part', + 'build_line__build__responsible', + 'build_line__build__issued_by', + 'build_line__build__project_code', + 'build_line__build__part__pricing_data', + ], ) - supplier_part_detail = company.serializers.SupplierPartSerializer( - label=_('Supplier Part'), - source='stock_item.supplier_part', - many=False, - read_only=True, - allow_null=True, - brief=True, + supplier_part_detail = enable_filter( + company.serializers.SupplierPartSerializer( + label=_('Supplier Part'), + source='stock_item.supplier_part', + many=False, + read_only=True, + allow_null=True, + brief=True, + ), + False, + prefetch_fields=[ + 'stock_item__supplier_part', + 'stock_item__supplier_part__supplier', + 'stock_item__supplier_part__manufacturer_part', + 'stock_item__supplier_part__manufacturer_part__manufacturer', + ], ) quantity = InvenTreeDecimalField(label=_('Allocated Quantity')) @@ -1363,7 +1378,17 @@ class BuildLineSerializer( ) allocations = enable_filter( - BuildItemSerializer(many=True, read_only=True, build_detail=False), True + BuildItemSerializer(many=True, read_only=True, build_detail=False), + True, + prefetch_fields=[ + 'allocations', + 'allocations__stock_item', + 'allocations__stock_item__part', + 'allocations__stock_item__part__pricing_data', + 'allocations__stock_item__supplier_part', + 'allocations__stock_item__supplier_part__manufacturer_part', + 'allocations__stock_item__location', + ], ) # BOM item info fields @@ -1407,7 +1432,8 @@ class BuildLineSerializer( part_detail=False, can_build=False, ), - True, + False, + prefetch_fields=['bom_item'], ) assembly_detail = enable_filter( @@ -1419,7 +1445,8 @@ class BuildLineSerializer( allow_null=True, pricing=False, ), - True, + False, + prefetch_fields=['bom_item__part', 'bom_item__part__pricing_data'], ) part_detail = enable_filter( @@ -1430,7 +1457,8 @@ class BuildLineSerializer( read_only=True, pricing=False, ), - True, + False, + prefetch_fields=['bom_item__sub_part', 'bom_item__sub_part__pricing_data'], ) category_detail = enable_filter( @@ -1442,6 +1470,7 @@ class BuildLineSerializer( allow_null=True, ), False, + prefetch_fields=['bom_item__sub_part__category'], ) build_detail = enable_filter( @@ -1507,77 +1536,16 @@ class BuildLineSerializer( 'bom_item__sub_part__pricing_data', ) - # Pre-fetch related fields - queryset = queryset.prefetch_related( - 'allocations', - 'allocations__stock_item', - 'allocations__stock_item__part', - 'allocations__stock_item__supplier_part', - 'allocations__stock_item__supplier_part__manufacturer_part', - 'allocations__stock_item__location', - 'allocations__stock_item__tags', - 'bom_item', - 'bom_item__part', - 'bom_item__sub_part', - 'bom_item__sub_part__category', - 'bom_item__sub_part__stock_items', - 'bom_item__sub_part__stock_items__allocations', - 'bom_item__sub_part__stock_items__sales_order_allocations', - 'bom_item__substitutes', - 'bom_item__substitutes__part__stock_items', - 'bom_item__substitutes__part__stock_items__allocations', - 'bom_item__substitutes__part__stock_items__sales_order_allocations', - ) - # Defer expensive fields which we do not need for this serializer - queryset = ( - queryset.defer( - 'build__lft', - 'build__rght', - 'build__level', - 'build__tree_id', - 'build__destination', - 'build__take_from', - 'build__completed_by', - 'build__sales_order', - 'build__parent', - 'build__notes', - 'build__metadata', - 'build__responsible', - 'build__barcode_data', - 'build__barcode_hash', - 'build__project_code', - ) - .defer('bom_item__metadata') - .defer( - 'bom_item__part__lft', - 'bom_item__part__rght', - 'bom_item__part__level', - 'bom_item__part__tree_id', - 'bom_item__part__tags', - 'bom_item__part__notes', - 'bom_item__part__variant_of', - 'bom_item__part__revision_of', - 'bom_item__part__creation_user', - 'bom_item__part__bom_checked_by', - 'bom_item__part__default_supplier', - 'bom_item__part__responsible_owner', - ) - .defer( - 'bom_item__sub_part__lft', - 'bom_item__sub_part__rght', - 'bom_item__sub_part__level', - 'bom_item__sub_part__tree_id', - 'bom_item__sub_part__tags', - 'bom_item__sub_part__notes', - 'bom_item__sub_part__variant_of', - 'bom_item__sub_part__revision_of', - 'bom_item__sub_part__creation_user', - 'bom_item__sub_part__bom_checked_by', - 'bom_item__sub_part__default_supplier', - 'bom_item__sub_part__responsible_owner', - ) + queryset = queryset.defer( + 'build__notes', + 'build__metadata', + 'bom_item__metadata', + 'bom_item__part__notes', + 'bom_item__part__metadata', + 'bom_item__sub_part__notes', + 'bom_item__sub_part__metadata', ) # Annotate the "allocated" quantity diff --git a/src/backend/InvenTree/build/test_migrations.py b/src/backend/InvenTree/build/test_migrations.py index 924b45d249..6613c50dcc 100644 --- a/src/backend/InvenTree/build/test_migrations.py +++ b/src/backend/InvenTree/build/test_migrations.py @@ -86,7 +86,7 @@ class TestReferencePatternMigration(MigratorTestCase): """ migrate_from = ('build', '0019_auto_20201019_1302') - migrate_to = ('build', unit_test.getNewestMigrationFile('build')) + migrate_to = ('build', '0037_build_priority') def prepare(self): """Create some initial data prior to migration.""" diff --git a/src/backend/InvenTree/common/admin.py b/src/backend/InvenTree/common/admin.py index 213f42bd29..a5461b7d02 100644 --- a/src/backend/InvenTree/common/admin.py +++ b/src/backend/InvenTree/common/admin.py @@ -6,6 +6,32 @@ import common.models import common.validators +@admin.register(common.models.ParameterTemplate) +class ParameterTemplateAdmin(admin.ModelAdmin): + """Admin interface for ParameterTemplate objects.""" + + list_display = ('name', 'description', 'model_type', 'units') + search_fields = ('name', 'description') + + +@admin.register(common.models.Parameter) +class ParameterAdmin(admin.ModelAdmin): + """Admin interface for Parameter objects.""" + + list_display = ( + 'template', + 'model_type', + 'model_id', + 'data', + 'updated', + 'updated_by', + ) + + autocomplete_fields = ('template', 'updated_by') + list_filter = ('template', 'model_type', 'updated_by') + search_fields = ('template__name', 'data', 'note') + + @admin.register(common.models.Attachment) class AttachmentAdmin(admin.ModelAdmin): """Admin interface for Attachment objects.""" diff --git a/src/backend/InvenTree/common/api.py b/src/backend/InvenTree/common/api.py index a28bf451cf..4118548acc 100644 --- a/src/backend/InvenTree/common/api.py +++ b/src/backend/InvenTree/common/api.py @@ -27,7 +27,9 @@ from rest_framework.exceptions import NotAcceptable, NotFound, PermissionDenied from rest_framework.permissions import IsAdminUser, IsAuthenticated from rest_framework.response import Response from rest_framework.views import APIView +from sql_util.utils import SubqueryCount +import common.filters import common.models import common.serializers import InvenTree.conversion @@ -35,15 +37,20 @@ from common.icons import get_icon_packs from common.settings import get_global_setting from data_exporter.mixins import DataExportViewMixin from generic.states.api import urlpattern as generic_states_api_urls -from InvenTree.api import BulkDeleteMixin, MetadataView +from InvenTree.api import BulkCreateMixin, BulkDeleteMixin, MetadataView from InvenTree.config import CONFIG_LOOKUPS -from InvenTree.filters import ORDER_FILTER, SEARCH_ORDER_FILTER -from InvenTree.helpers import inheritors +from InvenTree.filters import ( + ORDER_FILTER, + SEARCH_ORDER_FILTER, + SEARCH_ORDER_FILTER_ALIAS, +) +from InvenTree.helpers import inheritors, str2bool from InvenTree.helpers_email import send_email from InvenTree.mixins import ( CreateAPI, ListAPI, ListCreateAPI, + OutputOptionsMixin, RetrieveAPI, RetrieveDestroyAPI, RetrieveUpdateAPI, @@ -708,13 +715,17 @@ class AttachmentFilter(FilterSet): return queryset.filter(Q(attachment=None) | Q(attachment='')).distinct() -class AttachmentList(BulkDeleteMixin, ListCreateAPI): - """List API endpoint for Attachment objects.""" +class AttachmentMixin: + """Mixin class for Attachment views.""" queryset = common.models.Attachment.objects.all() serializer_class = common.serializers.AttachmentSerializer permission_classes = [IsAuthenticatedOrReadScope] + +class AttachmentList(AttachmentMixin, BulkDeleteMixin, ListCreateAPI): + """List API endpoint for Attachment objects.""" + filter_backends = SEARCH_ORDER_FILTER filterset_class = AttachmentFilter @@ -746,13 +757,9 @@ class AttachmentList(BulkDeleteMixin, ListCreateAPI): ) -class AttachmentDetail(RetrieveUpdateDestroyAPI): +class AttachmentDetail(AttachmentMixin, RetrieveUpdateDestroyAPI): """Detail API endpoint for Attachment objects.""" - queryset = common.models.Attachment.objects.all() - serializer_class = common.serializers.AttachmentSerializer - permission_classes = [IsAuthenticatedOrReadScope] - def destroy(self, request, *args, **kwargs): """Check user permissions before deleting an attachment.""" attachment = self.get_object() @@ -765,6 +772,167 @@ class AttachmentDetail(RetrieveUpdateDestroyAPI): return super().destroy(request, *args, **kwargs) +class ParameterTemplateFilter(FilterSet): + """FilterSet class for the ParameterTemplateList API endpoint.""" + + class Meta: + """Metaclass options.""" + + model = common.models.ParameterTemplate + fields = ['name', 'units', 'checkbox', 'enabled'] + + has_choices = rest_filters.BooleanFilter( + method='filter_has_choices', label='Has Choice' + ) + + def filter_has_choices(self, queryset, name, value): + """Filter queryset to include only PartParameterTemplates with choices.""" + if str2bool(value): + return queryset.exclude(Q(choices=None) | Q(choices='')) + + return queryset.filter(Q(choices=None) | Q(choices='')).distinct() + + has_units = rest_filters.BooleanFilter(method='filter_has_units', label='Has Units') + + def filter_has_units(self, queryset, name, value): + """Filter queryset to include only PartParameterTemplates with units.""" + if str2bool(value): + return queryset.exclude(Q(units=None) | Q(units='')) + + return queryset.filter(Q(units=None) | Q(units='')).distinct() + + model_type = rest_filters.CharFilter(method='filter_model_type', label='Model Type') + + def filter_model_type(self, queryset, name, value): + """Filter queryset to include only ParameterTemplates of the given model type.""" + return common.filters.filter_content_type( + queryset, 'model_type', value, allow_null=False + ) + + for_model = rest_filters.CharFilter(method='filter_for_model', label='For Model') + + def filter_for_model(self, queryset, name, value): + """Filter queryset to include only ParameterTemplates which apply to the given model. + + Note that this varies from the 'model_type' filter, in that ParameterTemplates + with a blank 'model_type' are considered to apply to all models. + """ + return common.filters.filter_content_type( + queryset, 'model_type', value, allow_null=True + ) + + exists_for_model = rest_filters.CharFilter( + method='filter_exists_for_model', label='Exists For Model' + ) + + def filter_exists_for_model(self, queryset, name, value): + """Filter queryset to include only ParameterTemplates which have at least one Parameter for the given model type.""" + content_type = common.filters.determine_content_type(value) + + if not content_type: + return queryset.none() + + queryset = queryset.prefetch_related('parameters') + + # Annotate the queryset to determine which ParameterTemplates have at least one Parameter for the given model type + queryset = queryset.annotate( + parameter_count=SubqueryCount( + 'parameters', filter=Q(model_type=content_type) + ) + ) + + # Return only those ParameterTemplates which have at least one Parameter for the given model type + return queryset.filter(parameter_count__gt=0) + + +class ParameterTemplateMixin: + """Mixin class for ParameterTemplate views.""" + + queryset = common.models.ParameterTemplate.objects.all().prefetch_related( + 'model_type' + ) + serializer_class = common.serializers.ParameterTemplateSerializer + permission_classes = [IsAuthenticatedOrReadScope] + + +class ParameterTemplateList(ParameterTemplateMixin, DataExportViewMixin, ListCreateAPI): + """List view for ParameterTemplate objects.""" + + filterset_class = ParameterTemplateFilter + filter_backends = SEARCH_ORDER_FILTER + search_fields = ['name', 'description'] + ordering_fields = ['name', 'units', 'checkbox'] + + +class ParameterTemplateDetail(ParameterTemplateMixin, RetrieveUpdateDestroyAPI): + """Detail view for a ParameterTemplate object.""" + + +class ParameterFilter(FilterSet): + """Custom filters for the ParameterList API endpoint.""" + + class Meta: + """Metaclass options for the filterset.""" + + model = common.models.Parameter + fields = ['model_id', 'template', 'updated_by'] + + enabled = rest_filters.BooleanFilter( + label='Template Enabled', field_name='template__enabled' + ) + + model_type = rest_filters.CharFilter(method='filter_model_type', label='Model Type') + + def filter_model_type(self, queryset, name, value): + """Filter queryset to include only Parameters of the given model type.""" + return common.filters.filter_content_type( + queryset, 'model_type', value, allow_null=False + ) + + +class ParameterMixin: + """Mixin class for Parameter views.""" + + queryset = common.models.Parameter.objects.all().prefetch_related('model_type') + serializer_class = common.serializers.ParameterSerializer + permission_classes = [IsAuthenticatedOrReadScope] + + +class ParameterList( + OutputOptionsMixin, + ParameterMixin, + BulkCreateMixin, + BulkDeleteMixin, + DataExportViewMixin, + ListCreateAPI, +): + """List API endpoint for Parameter objects.""" + + filterset_class = ParameterFilter + filter_backends = SEARCH_ORDER_FILTER_ALIAS + + ordering_fields = ['name', 'data', 'units', 'template', 'updated', 'updated_by'] + + ordering_field_aliases = { + 'name': 'template__name', + 'units': 'template__units', + 'data': ['data_numeric', 'data'], + } + + search_fields = [ + 'data', + 'template__name', + 'template__description', + 'template__units', + ] + + unique_create_fields = ['model_type', 'model_id', 'template'] + + +class ParameterDetail(ParameterMixin, RetrieveUpdateDestroyAPI): + """Detail API endpoint for Parameter objects.""" + + @method_decorator(cache_control(public=True, max_age=86400), name='dispatch') class IconList(ListAPI): """List view for available icon packages.""" @@ -997,6 +1165,51 @@ common_api_urls = [ path('', AttachmentList.as_view(), name='api-attachment-list'), ]), ), + # Parameters and templates + path( + 'parameter/', + include([ + path( + 'template/', + include([ + path( + '/', + include([ + path( + 'metadata/', + MetadataView.as_view( + model=common.models.ParameterTemplate + ), + name='api-parameter-template-metadata', + ), + path( + '', + ParameterTemplateDetail.as_view(), + name='api-parameter-template-detail', + ), + ]), + ), + path( + '', + ParameterTemplateList.as_view(), + name='api-parameter-template-list', + ), + ]), + ), + path( + '/', + include([ + path( + 'metadata/', + MetadataView.as_view(model=common.models.Parameter), + name='api-parameter-metadata', + ), + path('', ParameterDetail.as_view(), name='api-parameter-detail'), + ]), + ), + path('', ParameterList.as_view(), name='api-parameter-list'), + ]), + ), path( 'error-report/', include([ diff --git a/src/backend/InvenTree/common/apps.py b/src/backend/InvenTree/common/apps.py index d795c7136c..ad1f5c321e 100644 --- a/src/backend/InvenTree/common/apps.py +++ b/src/backend/InvenTree/common/apps.py @@ -6,6 +6,7 @@ import structlog import InvenTree.ready from common.settings import get_global_setting, set_global_setting +from InvenTree.ready import ignore_ready_warning logger = structlog.get_logger('inventree') @@ -20,11 +21,16 @@ class CommonConfig(AppConfig): def ready(self): """Initialize restart flag clearance on startup.""" + from InvenTree.ready import setAppLoaded + + setAppLoaded(self.name) + if InvenTree.ready.isRunningMigrations(): # pragma: no cover return self.clear_restart_flag() + @ignore_ready_warning def clear_restart_flag(self): """Clear the SERVER_RESTART_REQUIRED setting.""" try: diff --git a/src/backend/InvenTree/common/currency.py b/src/backend/InvenTree/common/currency.py index 307e54d6d5..6146c321c7 100644 --- a/src/backend/InvenTree/common/currency.py +++ b/src/backend/InvenTree/common/currency.py @@ -11,6 +11,7 @@ import structlog from moneyed import CURRENCIES import InvenTree.helpers +import InvenTree.ready logger = structlog.get_logger('inventree') @@ -19,15 +20,18 @@ def currency_code_default(create: bool = True): """Returns the default currency code (or USD if not specified).""" from common.settings import get_global_setting - try: - code = get_global_setting( - 'INVENTREE_DEFAULT_CURRENCY', create=create, cache=True - ) - except Exception: # pragma: no cover - # Database may not yet be ready, no need to throw an error here - code = '' + code = '' - if code not in CURRENCIES: + if InvenTree.ready.isAppLoaded('common'): + try: + code = get_global_setting( + 'INVENTREE_DEFAULT_CURRENCY', create=create, cache=True + ) + except Exception: # pragma: no cover + # Database may not yet be ready, no need to throw an error here + code = '' + + if not code or code not in CURRENCIES: code = 'USD' # pragma: no cover return code @@ -47,9 +51,13 @@ def currency_codes() -> list: """Returns the current currency codes.""" from common.settings import get_global_setting - codes = get_global_setting( - 'CURRENCY_CODES', create=False, environment_key='INVENTREE_CURRENCY_CODES' - ).strip() + codes = None + + # Ensure we do not hit the database until the common app is loaded + if InvenTree.ready.isAppLoaded('common'): + codes = get_global_setting( + 'CURRENCY_CODES', create=False, environment_key='INVENTREE_CURRENCY_CODES' + ).strip() if not codes: codes = currency_codes_default_list() diff --git a/src/backend/InvenTree/common/filters.py b/src/backend/InvenTree/common/filters.py new file mode 100644 index 0000000000..35b59908ed --- /dev/null +++ b/src/backend/InvenTree/common/filters.py @@ -0,0 +1,400 @@ +"""Custom API filters for InvenTree.""" + +import re + +from django.contrib.contenttypes.models import ContentType +from django.core.exceptions import ValidationError +from django.db.models import ( + Case, + CharField, + Exists, + FloatField, + Model, + OuterRef, + Q, + Subquery, + Value, + When, +) +from django.db.models.query import QuerySet +from django.utils.translation import gettext_lazy as _ + +import InvenTree.conversion +import InvenTree.helpers +import InvenTree.serializers + + +def determine_content_type(content_type: str | int | None) -> ContentType | None: + """Determine a ContentType instance from a string or integer input. + + Arguments: + content_type: The content type to resolve (name or ID). + + Returns: + ContentType instance if found, else None. + """ + if content_type is None: + return None + + ct = None + + # First, try to resolve the content type via a PK value + try: + content_type_id = int(content_type) + ct = ContentType.objects.get_for_id(content_type_id) + except (ValueError, ContentType.DoesNotExist): + ct = None + + if len(content_type.split('.')) == 2: + # Next, try to resolve the content type via app_label.model_name + try: + app_label, model = content_type.split('.') + ct = ContentType.objects.get(app_label=app_label, model=model) + except ContentType.DoesNotExist: + ct = None + + else: + # Next, try to resolve the content type via a model name + ct = ContentType.objects.filter(model__iexact=content_type).first() + + return ct + + +def filter_content_type( + queryset, field_name: str, content_type: str | int | None, allow_null: bool = True +): + """Filter a queryset by content type. + + Arguments: + queryset: The queryset to filter. + field_name: The name of the content type field within the current model context. + content_type: The content type to filter by (name or ID). + allow_null: If True, include entries with null content type. + + Returns: + Filtered queryset. + """ + if content_type is None: + return queryset + + ct = determine_content_type(content_type) + + if ct is None: + raise ValidationError(f'Invalid content type: {content_type}') + + q = Q(**{f'{field_name}': ct}) + + if allow_null: + q |= Q(**{f'{field_name}__isnull': True}) + + return queryset.filter(q) + + +"""A list of valid operators for filtering part parameters.""" +PARAMETER_FILTER_OPERATORS: list[str] = ['gt', 'gte', 'lt', 'lte', 'ne', 'icontains'] + + +def filter_parameters_by_value( + queryset: QuerySet, template_id: int, value: str, func: str = '' +) -> QuerySet: + """Filter the Parameter model based on the provided template and value. + + Arguments: + queryset: The initial QuerySet to filter. + template_id: The parameter template ID to filter by. + value: The value to filter against. + func: The filtering function to apply (e.g. 'gt', 'lt', etc). + + Returns: + A list of Parameter instances which match the given criteria. + + Notes: + - Parts which do not have a value for the given parameter are excluded. + """ + from common.models import ParameterTemplate + + # Ensure that the provided function is valid + if func and func not in PARAMETER_FILTER_OPERATORS: + raise ValueError(f'Invalid parameter filter function: {func}') + + # Ensure that the template exists + try: + template = ParameterTemplate.objects.get(pk=template_id) + except ParameterTemplate.DoesNotExist: + raise ValueError(f'Invalid parameter template ID: {template_id}') + + # Construct a "numeric" value for the filter + try: + value_numeric = float(value) + except (ValueError, TypeError): + value_numeric = None + + if template.checkbox: + # Account for 'boolean' parameter values + bool_value = InvenTree.helpers.str2bool(value) + value_numeric = 1 if bool_value else 0 + value = str(bool_value) + + # Boolean filtering is limited to exact matches + func = '' + + elif value_numeric is None and template.units: + # Convert the raw value to the units of the template parameter + try: + value_numeric = InvenTree.conversion.convert_physical_value( + value, template.units + ) + except Exception: + # The value cannot be converted - return an empty queryset + return queryset.none() + + # Special handling for the "not equal" operator + if func == 'ne': + invert = True + func = '' + else: + invert = False + + # Some filters are only applicable to string values + text_only = any([func in ['icontains'], value_numeric is None]) + + # Ensure the function starts with a double underscore + if func and not func.startswith('__'): + func = f'__{func}' + + # Query for 'numeric' value - this has priority over 'string' value + data_numeric = { + 'parameters_list__template': template, + 'parameters_list__data_numeric__isnull': False, + f'parameters_list__data_numeric{func}': value_numeric, + } + + query_numeric = Q(**data_numeric) + + # Query for 'string' value + data_text = { + 'parameters_list__template': template, + f'parameters_list__data{func}': str(value), + } + + if not text_only: + data_text['parameters_list__data_numeric__isnull'] = True + + query_text = Q(**data_text) + + # Combine the queries based on whether we are filtering by text or numeric value + q = query_text if text_only else query_text | query_numeric + + # Special handling for the '__ne' (not equal) operator + # In this case, we want the *opposite* of the above queries + if invert: + return queryset.exclude(q).distinct() + else: + return queryset.filter(q).distinct() + + +def filter_parametric_data(queryset: QuerySet, parameters: dict[str, str]) -> QuerySet: + """Filter the provided queryset by parametric data. + + Arguments: + queryset: The initial queryset to filter. + parameters: A dictionary of parameter filters to apply. + + Returns: + Filtered queryset. + + Used to filter returned parts based on their parameter values. + + To filter based on parameter value, supply query parameters like: + - parameter_= + - parameter__gt= + - parameter__lte= + + where: + - is the ID of the ParameterTemplate. + - is the value to filter against. + + Typically these filters would be provided against via an API request. + """ + # Allowed lookup operations for parameter values + operators = '|'.join(PARAMETER_FILTER_OPERATORS) + + regex_pattern = rf'^parameter_(\d+)(_({operators}))?$' + + for param, value in parameters.items(): + result = re.match(regex_pattern, param) + if not result: + continue + + template_id = result.group(1) + operator = result.group(3) or '' + + queryset = filter_parameters_by_value( + queryset, template_id, value, func=operator + ) + + return queryset + + +def order_by_parameter( + queryset: QuerySet, model_type: Model, ordering: str | None +) -> QuerySet: + """Order the provided queryset by a parameter value. + + Arguments: + queryset: The initial queryset to order. + model_type: The model type of the items in the queryset. + ordering: The ordering string provided by the user. + + Returns: + Ordered queryset. + + Used to order returned parts based on their parameter values. + + To order based on parameter value, supply an ordering string like: + - parameter_ + - -parameter_ + + where: + - is the ID of the ParameterTemplate. + - A leading '-' indicates descending order. + """ + import common.models + + if not ordering: + # No ordering provided - return the original queryset + return queryset + + result = re.match(r'^-?parameter_(\d+)$', ordering) + + if not result: + # Ordering does not match the expected pattern - return the original queryset + return queryset + + template_id = result.group(1) + ascending = not ordering.startswith('-') + + template_exists_filter = common.models.Parameter.objects.filter( + template__id=template_id, + model_type=ContentType.objects.get_for_model(model_type), + model_id=OuterRef('id'), + ) + + queryset = queryset.annotate(parameter_exists=Exists(template_exists_filter)) + + # Annotate the queryset with the parameter value for the provided template + queryset = queryset.annotate( + parameter_value=Case( + When( + parameter_exists=True, + then=Subquery( + template_exists_filter.values('data')[:1], output_field=CharField() + ), + ), + default=Value('', output_field=CharField()), + ), + parameter_value_numeric=Case( + When( + parameter_exists=True, + then=Subquery( + template_exists_filter.values('data_numeric')[:1], + output_field=FloatField(), + ), + ), + default=Value(0, output_field=FloatField()), + ), + ) + + prefix = '' if ascending else '-' + + return queryset.order_by( + '-parameter_exists', + f'{prefix}parameter_value_numeric', + f'{prefix}parameter_value', + ) + + +def enable_project_code_filter(default: bool = True): + """Add an optional 'project_code_detail' field to an API serializer. + + Arguments: + filter_name: The name of the filter field. + default: If True, enable the filter by default. + + If applied, this field will automatically prefetch the 'project_code' relationship. + """ + from common.serializers import ProjectCodeSerializer + + return InvenTree.serializers.enable_filter( + ProjectCodeSerializer( + source='project_code', many=False, read_only=True, allow_null=True + ), + default, + filter_name='project_code_detail', + prefetch_fields=['project_code'], + ) + + +def enable_project_label_filter(default: bool = True): + """Add an optional 'project_code_label' field to an API serializer. + + Arguments: + filter_name: The name of the filter field. + default: If True, enable the filter by default. + + If applied, this field will automatically prefetch the 'project_code' relationship. + """ + return InvenTree.serializers.enable_filter( + InvenTree.serializers.FilterableCharField( + source='project_code.code', + read_only=True, + label=_('Project Code Label'), + allow_null=True, + ), + default, + filter_name='project_code_detail', + prefetch_fields=['project_code'], + ) + + +def enable_parameters_filter(): + """Add an optional 'parameters' field to an API serializer. + + Arguments: + source: The source field for the serializer. + filter_name: The name of the filter field. + default: If True, enable the filter by default. + + If applied, this field will automatically annotate the queryset with parameter data. + """ + from common.serializers import ParameterSerializer + + return InvenTree.serializers.enable_filter( + ParameterSerializer(many=True, read_only=True, allow_null=True), + False, + filter_name='parameters', + prefetch_fields=[ + 'parameters_list', + 'parameters_list__model_type', + 'parameters_list__updated_by', + 'parameters_list__template', + ], + ) + + +def enable_tags_filter(default: bool = False): + """Add an optional 'tags' field to an API serializer. + + Arguments: + default: If True, enable the filter by default. + + If applied, this field will automatically prefetch the 'tags' relationship. + """ + from InvenTree.serializers import FilterableTagListField + + return InvenTree.serializers.enable_filter( + FilterableTagListField(required=False), + default, + filter_name='tags', + prefetch_fields=['tags', 'tagged_items', 'tagged_items__tag'], + ) diff --git a/src/backend/InvenTree/common/migrations/0023_auto_20240602_1332.py b/src/backend/InvenTree/common/migrations/0023_auto_20240602_1332.py index a3cc1fd02a..3c29bda31f 100644 --- a/src/backend/InvenTree/common/migrations/0023_auto_20240602_1332.py +++ b/src/backend/InvenTree/common/migrations/0023_auto_20240602_1332.py @@ -44,7 +44,7 @@ def set_currencies(apps, schema_editor): valid_codes.add(code) if len(valid_codes) == 0: - print(f"No valid currency codes found in configuration file") + print(f"No currency codes found in configuration file - skipping migration") return value = ','.join(valid_codes) diff --git a/src/backend/InvenTree/common/migrations/0040_parametertemplate_parameter.py b/src/backend/InvenTree/common/migrations/0040_parametertemplate_parameter.py new file mode 100644 index 0000000000..5bfce74256 --- /dev/null +++ b/src/backend/InvenTree/common/migrations/0040_parametertemplate_parameter.py @@ -0,0 +1,248 @@ +# Generated by Django 5.2.8 on 2025-12-03 12:39 + +import InvenTree.models +import InvenTree.validators +import django.core.validators +import django.db.models.deletion +from django.conf import settings +from django.db import migrations, models + + +class Migration(migrations.Migration): + + dependencies = [ + ("common", "0039_emailthread_emailmessage"), + ("contenttypes", "0002_remove_content_type_name"), + migrations.swappable_dependency(settings.AUTH_USER_MODEL), + ("part", "0144_auto_20251203_1045") + ] + + operations = [ + migrations.SeparateDatabaseAndState( + state_operations=[ + migrations.CreateModel( + name="ParameterTemplate", + fields=[ + ( + "id", + models.AutoField( + auto_created=True, + primary_key=True, + serialize=False, + verbose_name="ID", + ), + ), + ( + "metadata", + models.JSONField( + blank=True, + help_text="JSON metadata field, for use by external plugins", + null=True, + verbose_name="Plugin Metadata", + ), + ), + ( + "name", + models.CharField( + help_text="Parameter Name", + max_length=100, + unique=True, + verbose_name="Name", + ), + ), + ( + "units", + models.CharField( + blank=True, + help_text="Physical units for this parameter", + max_length=25, + validators=[InvenTree.validators.validate_physical_units], + verbose_name="Units", + ), + ), + ( + "description", + models.CharField( + blank=True, + help_text="Parameter description", + max_length=250, + verbose_name="Description", + ), + ), + ( + "checkbox", + models.BooleanField( + default=False, + help_text="Is this parameter a checkbox?", + verbose_name="Checkbox", + ), + ), + ( + "choices", + models.CharField( + blank=True, + help_text="Valid choices for this parameter (comma-separated)", + max_length=5000, + verbose_name="Choices", + ), + ), + ( + "enabled", + models.BooleanField( + default=True, + help_text="Is this parameter template enabled?", + verbose_name="Enabled", + ), + ), + ( + "model_type", + models.ForeignKey( + blank=True, + help_text="Target model type for this parameter template", + null=True, + on_delete=django.db.models.deletion.SET_NULL, + to="contenttypes.contenttype", + verbose_name="Model type", + ), + ), + ( + "selectionlist", + models.ForeignKey( + blank=True, + help_text="Selection list for this parameter", + null=True, + on_delete=django.db.models.deletion.SET_NULL, + related_name="templates", + to="common.selectionlist", + verbose_name="Selection List", + ), + ), + ], + options={ + "verbose_name": "Parameter Template", + "verbose_name_plural": "Parameter Templates", + "db_table": "part_partparametertemplate", + }, + bases=( + InvenTree.models.ContentTypeMixin, + InvenTree.models.PluginValidationMixin, + models.Model, + ), + ), + ], + database_operations=[], + ), + migrations.SeparateDatabaseAndState( + state_operations=[ + migrations.CreateModel( + name="Parameter", + fields=[ + ( + "id", + models.AutoField( + auto_created=True, + primary_key=True, + serialize=False, + verbose_name="ID", + ), + ), + ( + "metadata", + models.JSONField( + blank=True, + help_text="JSON metadata field, for use by external plugins", + null=True, + verbose_name="Plugin Metadata", + ), + ), + ( + "updated", + models.DateTimeField( + blank=True, + default=None, + help_text="Timestamp of last update", + null=True, + verbose_name="Updated", + ), + ), + ( + "model_id", + models.PositiveIntegerField( + help_text="ID of the target model for this parameter", + verbose_name="Model ID", + ), + ), + ( + "data", + models.CharField( + help_text="Parameter Value", + max_length=500, + validators=[django.core.validators.MinLengthValidator(1)], + verbose_name="Data", + ), + ), + ( + "data_numeric", + models.FloatField(blank=True, default=None, null=True), + ), + ( + "note", + models.CharField( + blank=True, + help_text="Optional note field", + max_length=500, + verbose_name="Note", + ), + ), + ( + "model_type", + models.ForeignKey( + on_delete=django.db.models.deletion.CASCADE, + to="contenttypes.contenttype", + ), + ), + ( + "updated_by", + models.ForeignKey( + blank=True, + help_text="User who last updated this object", + null=True, + on_delete=django.db.models.deletion.SET_NULL, + related_name="%(class)s_updated", + to=settings.AUTH_USER_MODEL, + verbose_name="Update By", + ), + ), + ( + "template", + models.ForeignKey( + help_text="Parameter template", + on_delete=django.db.models.deletion.CASCADE, + related_name="parameters", + to="common.parametertemplate", + verbose_name="Template", + ), + ), + ], + options={ + "verbose_name": "Parameter", + "verbose_name_plural": "Parameters", + "db_table": "part_partparameter", + "indexes": [ + models.Index( + fields=["model_type", "model_id"], + name="part_partpa_model_t_198c9d_idx", + ) + ], + "unique_together": {("model_type", "model_id", "template")}, + }, + bases=( + InvenTree.models.ContentTypeMixin, + InvenTree.models.PluginValidationMixin, + models.Model, + ), + ), + ], + database_operations=[], + ), + ] diff --git a/src/backend/InvenTree/common/migrations/0041_auto_20251203_1244.py b/src/backend/InvenTree/common/migrations/0041_auto_20251203_1244.py new file mode 100644 index 0000000000..7be962b226 --- /dev/null +++ b/src/backend/InvenTree/common/migrations/0041_auto_20251203_1244.py @@ -0,0 +1,116 @@ +# Generated by Django 5.2.8 on 2025-12-03 12:44 + +from django.db import migrations + +def convert_to_numeric_value(value: str, units: str): + """Convert a value (with units) to a numeric value. + + Defaults to zero if the value cannot be converted. + """ + + import InvenTree.conversion + + # Default value is null + result = None + + if units: + try: + result = InvenTree.conversion.convert_physical_value(value, units) + result = float(result.magnitude) + except Exception: + pass + else: + try: + result = float(value) + except Exception: + pass + + return result + + +def copy_manufacturer_part_parameters(apps, schema_editor): + """Copy ManufacturerPartParameter to Parameter.""" + + ManufacturerPartParameter = apps.get_model("company", "ManufacturerPartParameter") + Parameter = apps.get_model("common", "Parameter") + ParameterTemplate = apps.get_model("common", "ParameterTemplate") + ContentType = apps.get_model("contenttypes", "ContentType") + parameters = [] + + content_type, _created = ContentType.objects.get_or_create(app_label='company', model='manufacturerpart') + + N = ManufacturerPartParameter.objects.count() + + if N > 0: + print(f"\nMigrating {N} ManufacturerPartParameter objects to the Parameter table.") + + for parameter in ManufacturerPartParameter.objects.all(): + # Find the corresponding ParameterTemplate + template = ParameterTemplate.objects.filter(name=parameter.name).first() + + if not template: + # A matching template does not exist - let's create one + template = ParameterTemplate.objects.create( + name=parameter.name, + description='', + units=parameter.units or '', + model_type=None, + checkbox=False + ) + + parameters.append(Parameter( + template=template, + model_type=content_type, + model_id=parameter.manufacturer_part.id, + data=parameter.value, + data_numeric=convert_to_numeric_value(parameter.value, parameter.units), + )) + + if len(parameters) > 0: + assert ParameterTemplate.objects.count() > 0 + Parameter.objects.bulk_create(parameters) + print(f"\nMigrated {len(parameters)} ManufacturerPartParameter instances.") + + assert Parameter.objects.filter(model_type=content_type).count() == len(parameters) + + +def update_global_setting(apps, schema_editor): + """Update global setting key from PART_PARAMETER_ENFORCE_UNITS to PARAMETER_ENFORCE_UNITS.""" + GlobalSetting = apps.get_model("common", "InvenTreeSetting") + + OLD_KEY = 'PART_PARAMETER_ENFORCE_UNITS' + NEW_KEY = 'PARAMETER_ENFORCE_UNITS' + + try: + setting = GlobalSetting.objects.get(key=OLD_KEY) + + if setting is not None: + # Remove any existing new key + GlobalSetting.objects.filter(key=NEW_KEY).delete() + setting.key = NEW_KEY + setting.save() + print(f"Updated global setting key from {OLD_KEY} to {NEW_KEY}.") + except GlobalSetting.DoesNotExist: + pass + + +class Migration(migrations.Migration): + """Perform data migration for the ManufacturerPartParameter model.""" + + atomic = False + + dependencies = [ + ("common", "0040_parametertemplate_parameter"), + ("part", "0145_auto_20251203_1238"), + ] + + operations = [ + migrations.RunPython( + update_global_setting, + reverse_code=migrations.RunPython.noop + ), + migrations.RunPython( + copy_manufacturer_part_parameters, + reverse_code=migrations.RunPython.noop + ), + ] diff --git a/src/backend/InvenTree/common/models.py b/src/backend/InvenTree/common/models.py index 9104ee04d1..6e1dbd2e5f 100644 --- a/src/backend/InvenTree/common/models.py +++ b/src/backend/InvenTree/common/models.py @@ -7,6 +7,7 @@ import base64 import hashlib import hmac import json +import math import os import uuid from datetime import timedelta, timezone @@ -28,7 +29,7 @@ from django.core.files.base import ContentFile from django.core.files.storage import default_storage from django.core.mail import EmailMultiAlternatives, get_connection from django.core.mail.utils import DNS_NAME -from django.core.validators import MinValueValidator +from django.core.validators import MinLengthValidator, MinValueValidator from django.db import models, transaction from django.db.models import enums from django.db.models.signals import post_delete, post_save @@ -48,11 +49,14 @@ from rest_framework.exceptions import PermissionDenied from taggit.managers import TaggableManager import common.validators +import InvenTree.conversion +import InvenTree.exceptions import InvenTree.fields import InvenTree.helpers import InvenTree.models import InvenTree.ready import InvenTree.tasks +import InvenTree.validators import users.models from common.setting.type import InvenTreeSettingsKeyType, SettingsKeyType from common.settings import get_global_setting, global_setting_overrides @@ -1895,6 +1899,8 @@ class Attachment(InvenTree.models.MetadataMixin, InvenTree.models.InvenTreeModel An attachment can be either an uploaded file, or an external URL. Attributes: + model_type: The type of model to which this attachment is linked + model_id: The ID of the model to which this attachment is linked attachment: The uploaded file url: An external URL comment: A comment or description for the attachment @@ -2050,7 +2056,7 @@ class Attachment(InvenTree.models.MetadataMixin, InvenTree.models.InvenTreeModel if not issubclass(model_class, InvenTreeAttachmentMixin): raise ValidationError(_('Invalid model type specified for attachment')) - return model_class.check_attachment_permission(permission, user) + return model_class.check_related_permission(permission, user) class InvenTreeCustomUserStateModel(models.Model): @@ -2356,6 +2362,421 @@ class SelectionListEntry(models.Model): return self.label +class ParameterTemplate( + InvenTree.models.MetadataMixin, InvenTree.models.InvenTreeModel +): + """A ParameterTemplate provides a template for defining parameter values against various models. + + This allow for assigning arbitrary data fields against existing models, + extending their functionality beyond the built-in fields. + + Attributes: + name: The name (key) of the template + description: A description of the template + model_type: The type of model to which this template applies (e.g. 'part') + units: The units associated with the template (if applicable) + checkbox: Is this template a checkbox (boolean) type? + choices: Comma-separated list of choices (if applicable) + selectionlist: Optional link to a SelectionList for this template + enabled: Is this template enabled? + """ + + class Meta: + """Metaclass options for the ParameterTemplate model.""" + + verbose_name = _('Parameter Template') + verbose_name_plural = _('Parameter Templates') + + # Note: Data was migrated from the existing 'part_partparametertemplate' table + # Ref: https://github.com/inventree/InvenTree/pull/10699 + # To avoid data loss, we retain the existing table name + db_table = 'part_partparametertemplate' + + class ModelChoices(RenderChoices): + """Model choices for parameters.""" + + choice_fnc = common.validators.parameter_template_model_options + + @staticmethod + def get_api_url() -> str: + """Return the API URL associated with the ParameterTemplate model.""" + return reverse('api-parameter-template-list') + + def __str__(self): + """Return a string representation of a ParameterTemplate instance.""" + s = str(self.name) + if self.units: + s += f' ({self.units})' + return s + + def clean(self): + """Custom cleaning step for this model. + + Checks: + - A 'checkbox' field cannot have 'choices' set + - A 'checkbox' field cannot have 'units' set + """ + super().clean() + + # Check that checkbox parameters do not have units or choices + if self.checkbox: + if self.units: + raise ValidationError({ + 'units': _('Checkbox parameters cannot have units') + }) + + if self.choices: + raise ValidationError({ + 'choices': _('Checkbox parameters cannot have choices') + }) + + # Check that 'choices' are in fact valid + if self.choices is None: + self.choices = '' + else: + self.choices = str(self.choices).strip() + + if self.choices: + choice_set = set() + + for choice in self.choices.split(','): + choice = choice.strip() + + # Ignore empty choices + if not choice: + continue + + if choice in choice_set: + raise ValidationError({'choices': _('Choices must be unique')}) + + choice_set.add(choice) + + def validate_unique(self, exclude=None): + """Ensure that ParameterTemplates cannot be created with the same name. + + This test should be case-insensitive (which the unique caveat does not cover). + """ + super().validate_unique(exclude) + + try: + others = ParameterTemplate.objects.filter(name__iexact=self.name).exclude( + pk=self.pk + ) + + if others.exists(): + msg = _('Parameter template name must be unique') + raise ValidationError({'name': msg}) + except ParameterTemplate.DoesNotExist: + pass + + def get_choices(self): + """Return a list of choices for this parameter template.""" + if self.selectionlist: + return self.selectionlist.get_choices() + + if not self.choices: + return [] + + return [x.strip() for x in self.choices.split(',') if x.strip()] + + # TODO: Reintroduce validator for model_type + model_type = models.ForeignKey( + ContentType, + on_delete=models.SET_NULL, + blank=True, + null=True, + verbose_name=_('Model type'), + help_text=_('Target model type for this parameter template'), + ) + + name = models.CharField( + max_length=100, + verbose_name=_('Name'), + help_text=_('Parameter Name'), + unique=True, + ) + + units = models.CharField( + max_length=25, + verbose_name=_('Units'), + help_text=_('Physical units for this parameter'), + blank=True, + validators=[InvenTree.validators.validate_physical_units], + ) + + description = models.CharField( + max_length=250, + verbose_name=_('Description'), + help_text=_('Parameter description'), + blank=True, + ) + + checkbox = models.BooleanField( + default=False, + verbose_name=_('Checkbox'), + help_text=_('Is this parameter a checkbox?'), + ) + + choices = models.CharField( + max_length=5000, + verbose_name=_('Choices'), + help_text=_('Valid choices for this parameter (comma-separated)'), + blank=True, + ) + + selectionlist = models.ForeignKey( + SelectionList, + blank=True, + null=True, + on_delete=models.SET_NULL, + related_name='templates', + verbose_name=_('Selection List'), + help_text=_('Selection list for this parameter'), + ) + + enabled = models.BooleanField( + default=True, + verbose_name=_('Enabled'), + help_text=_('Is this parameter template enabled?'), + ) + + +@receiver( + post_save, sender=ParameterTemplate, dispatch_uid='post_save_parameter_template' +) +def post_save_parameter_template(sender, instance, created, **kwargs): + """Callback function when a ParameterTemplate is created or saved.""" + import common.tasks + + if InvenTree.ready.canAppAccessDatabase() and not InvenTree.ready.isImportingData(): + if not created: + # Schedule a background task to rebuild the parameters against this template + InvenTree.tasks.offload_task( + common.tasks.rebuild_parameters, + instance.pk, + force_async=True, + group='part', + ) + + +class Parameter( + UpdatedUserMixin, InvenTree.models.MetadataMixin, InvenTree.models.InvenTreeModel +): + """Class which represents a parameter value assigned to a particular model instance. + + Attributes: + model_type: The type of model to which this parameter is linked + model_id: The ID of the model to which this parameter is linked + template: The ParameterTemplate which defines this parameter + data: The value of the parameter [string] + data_numeric: Numeric value of the parameter (if applicable) [float] + note: Optional note associated with this parameter [string] + updated: Date/time that this parameter was last updated + updated_by: User who last updated this parameter + """ + + class Meta: + """Meta options for Parameter model.""" + + verbose_name = _('Parameter') + verbose_name_plural = _('Parameters') + unique_together = [['model_type', 'model_id', 'template']] + indexes = [models.Index(fields=['model_type', 'model_id'])] + + # Note: Data was migrated from the existing 'part_partparameter' table + # Ref: https://github.com/inventree/InvenTree/pull/10699 + # To avoid data loss, we retain the existing table name + db_table = 'part_partparameter' + + class ModelChoices(RenderChoices): + """Model choices for parameters.""" + + choice_fnc = common.validators.parameter_model_options + + @staticmethod + def get_api_url() -> str: + """Return the API URL associated with the Parameter model.""" + return reverse('api-parameter-list') + + def save(self, *args, **kwargs): + """Custom save method for Parameter model. + + - Update the numeric data field (if applicable) + """ + self.calculate_numeric_value() + + # Convert 'boolean' values to 'True' / 'False' + if self.template.checkbox: + self.data = InvenTree.helpers.str2bool(self.data) + self.data_numeric = 1 if self.data else 0 + + self.check_save() + super().save(*args, **kwargs) + + def delete(self): + """Perform custom delete checks before deleting a Parameter instance.""" + self.check_delete() + super().delete() + + def clean(self): + """Validate the Parameter before saving to the database.""" + super().clean() + + # Validate the parameter data against the template choices + if choices := self.template.get_choices(): + if self.data not in choices: + raise ValidationError({'data': _('Invalid choice for parameter value')}) + + self.calculate_numeric_value() + + # TODO: Check that the model_type for this parameter matches the template + + # Validate the parameter data against the template units + if ( + get_global_setting( + 'PARAMETER_ENFORCE_UNITS', True, cache=False, create=False + ) + and self.template.units + ): + try: + InvenTree.conversion.convert_physical_value( + self.data, self.template.units + ) + except ValidationError as e: + raise ValidationError({'data': e.message}) + + # Finally, run custom validation checks (via plugins) + from plugin import PluginMixinEnum, registry + + for plugin in registry.with_mixin(PluginMixinEnum.VALIDATION): + # Note: The validate_parameter function may raise a ValidationError + try: + if hasattr(plugin, 'validate_parameter'): + result = plugin.validate_parameter(self, self.data) + if result: + break + except ValidationError as exc: + # Re-throw the ValidationError against the 'data' field + raise ValidationError({'data': exc.message}) + except Exception: + InvenTree.exceptions.log_error('validate_parameter', plugin=plugin.slug) + + def calculate_numeric_value(self): + """Calculate a numeric value for the parameter data. + + - If a 'units' field is provided, then the data will be converted to the base SI unit. + - Otherwise, we'll try to do a simple float cast + """ + if self.template.units: + try: + self.data_numeric = InvenTree.conversion.convert_physical_value( + self.data, self.template.units + ) + except (ValidationError, ValueError): + self.data_numeric = None + + # No units provided, so try to cast to a float + else: + try: + self.data_numeric = float(self.data) + except ValueError: + self.data_numeric = None + + if self.data_numeric is not None and type(self.data_numeric) is float: + # Prevent out of range numbers, etc + # Ref: https://github.com/inventree/InvenTree/issues/7593 + if math.isnan(self.data_numeric) or math.isinf(self.data_numeric): + self.data_numeric = None + + def check_permission(self, permission, user): + """Check if the user has the required permission for this parameter.""" + from InvenTree.models import InvenTreeParameterMixin + + model_class = self.model_type.model_class() + + if not issubclass(model_class, InvenTreeParameterMixin): + raise ValidationError(_('Invalid model type specified for parameter')) + + return model_class.check_related_permission(permission, user) + + def check_save(self): + """Check if this parameter can be saved. + + The linked content_object can implement custom checks by overriding + the 'check_parameter_edit' method. + """ + from InvenTree.models import InvenTreeParameterMixin + + try: + instance = self.content_object + except InvenTree.models.InvenTreeModel.DoesNotExist: + return + + if instance and isinstance(instance, InvenTreeParameterMixin): + instance.check_parameter_save(self) + + def check_delete(self): + """Check if this parameter can be deleted.""" + from InvenTree.models import InvenTreeParameterMixin + + try: + instance = self.content_object + except InvenTree.models.InvenTreeModel.DoesNotExist: + return + + if instance and isinstance(instance, InvenTreeParameterMixin): + instance.check_parameter_delete(self) + + # TODO: Reintroduce validator for model_type + model_type = models.ForeignKey(ContentType, on_delete=models.CASCADE) + + model_id = models.PositiveIntegerField( + verbose_name=_('Model ID'), + help_text=_('ID of the target model for this parameter'), + ) + + content_object = GenericForeignKey('model_type', 'model_id') + + template = models.ForeignKey( + ParameterTemplate, + on_delete=models.CASCADE, + related_name='parameters', + verbose_name=_('Template'), + help_text=_('Parameter template'), + ) + + data = models.CharField( + max_length=500, + verbose_name=_('Data'), + help_text=_('Parameter Value'), + validators=[MinLengthValidator(1)], + ) + + data_numeric = models.FloatField(default=None, null=True, blank=True) + + note = models.CharField( + max_length=500, + blank=True, + verbose_name=_('Note'), + help_text=_('Optional note field'), + ) + + @property + def units(self): + """Return the units associated with the template.""" + return self.template.units + + @property + def name(self): + """Return the name of the template.""" + return self.template.name + + @property + def description(self): + """Return the description of the template.""" + return self.template.description + + class BarcodeScanResult(InvenTree.models.InvenTreeModel): """Model for storing barcode scans results.""" diff --git a/src/backend/InvenTree/common/serializers.py b/src/backend/InvenTree/common/serializers.py index f45e652a90..d2fee07132 100644 --- a/src/backend/InvenTree/common/serializers.py +++ b/src/backend/InvenTree/common/serializers.py @@ -12,8 +12,8 @@ from error_report.models import Error from flags.state import flag_state from rest_framework import serializers from rest_framework.exceptions import PermissionDenied -from taggit.serializers import TagListSerializerField +import common.filters import common.models as common_models import common.validators import generic.states.custom @@ -21,10 +21,14 @@ from importer.registry import register_importer from InvenTree.helpers import get_objectreference from InvenTree.helpers_model import construct_absolute_url from InvenTree.mixins import DataImportExportSerializerMixin +from InvenTree.models import InvenTreeParameterMixin from InvenTree.serializers import ( + ContentTypeField, + FilterableSerializerMixin, InvenTreeAttachmentSerializerField, InvenTreeImageSerializerField, InvenTreeModelSerializer, + enable_filter, ) from plugin import registry as plugin_registry from users.serializers import OwnerSerializer, UserSerializer @@ -608,7 +612,7 @@ class FailedTaskSerializer(InvenTreeModelSerializer): result = serializers.CharField() -class AttachmentSerializer(InvenTreeModelSerializer): +class AttachmentSerializer(FilterableSerializerMixin, InvenTreeModelSerializer): """Serializer class for the Attachment model.""" class Meta: @@ -641,7 +645,7 @@ class AttachmentSerializer(InvenTreeModelSerializer): 'model_type' ].choices = common.validators.attachment_model_options() - tags = TagListSerializerField(required=False) + tags = common.filters.enable_tags_filter() user_detail = UserSerializer(source='upload_user', read_only=True, many=False) @@ -691,12 +695,131 @@ class AttachmentSerializer(InvenTreeModelSerializer): raise PermissionDenied(permission_error_msg) # Check that the user has the required permissions to attach files to the target model - if not target_model_class.check_attachment_permission('change', user): - raise PermissionDenied(_(permission_error_msg)) + if not target_model_class.check_related_permission('change', user): + raise PermissionDenied(permission_error_msg) return super().save(**kwargs) +@register_importer() +class ParameterTemplateSerializer( + DataImportExportSerializerMixin, InvenTreeModelSerializer +): + """Serializer for the ParameterTemplate model.""" + + class Meta: + """Meta options for ParameterTemplateSerializer.""" + + model = common_models.ParameterTemplate + fields = [ + 'pk', + 'name', + 'units', + 'description', + 'model_type', + 'checkbox', + 'choices', + 'selectionlist', + 'enabled', + ] + + # Note: The choices are overridden at run-time on class initialization + model_type = ContentTypeField( + mixin_class=InvenTreeParameterMixin, + choices=common.validators.parameter_template_model_options, + label=_('Model Type'), + default='', + required=False, + allow_null=True, + ) + + def validate_model_type(self, model_type): + """Convert an empty string to None for the model_type field.""" + return model_type or None + + +@register_importer() +class ParameterSerializer( + FilterableSerializerMixin, DataImportExportSerializerMixin, InvenTreeModelSerializer +): + """Serializer for the Parameter model.""" + + class Meta: + """Meta options for ParameterSerializer.""" + + model = common_models.Parameter + fields = [ + 'pk', + 'template', + 'model_type', + 'model_id', + 'data', + 'data_numeric', + 'note', + 'updated', + 'updated_by', + 'template_detail', + 'updated_by_detail', + ] + + read_only_fields = ['updated', 'updated_by'] + + def save(self, **kwargs): + """Save the Parameter instance.""" + from InvenTree.models import InvenTreeParameterMixin + from users.permissions import check_user_permission + + model_type = self.validated_data.get('model_type', None) + + if model_type is None and self.instance: + model_type = self.instance.model_type + + # Ensure that the user has permission to modify parameters for the specified model + user = self.context.get('request').user + + target_model_class = model_type.model_class() + + if not issubclass(target_model_class, InvenTreeParameterMixin): + raise PermissionDenied(_('Invalid model type specified for parameter')) + + permission_error_msg = _( + 'User does not have permission to create or edit parameters for this model' + ) + + if not check_user_permission(user, target_model_class, 'change'): + raise PermissionDenied(permission_error_msg) + + if not target_model_class.check_related_permission('change', user): + raise PermissionDenied(permission_error_msg) + + instance = super().save(**kwargs) + instance.updated_by = user + instance.save() + + return instance + + # Note: The choices are overridden at run-time on class initialization + model_type = ContentTypeField( + mixin_class=InvenTreeParameterMixin, + choices=common.validators.parameter_model_options, + label=_('Model Type'), + default='', + allow_null=False, + ) + + updated_by_detail = enable_filter( + UserSerializer(source='updated_by', read_only=True, many=False), + True, + prefetch_fields=['updated_by'], + ) + + template_detail = enable_filter( + ParameterTemplateSerializer(source='template', read_only=True, many=False), + True, + prefetch_fields=['template', 'template__model_type'], + ) + + class IconSerializer(serializers.Serializer): """Serializer for an icon.""" diff --git a/src/backend/InvenTree/common/setting/system.py b/src/backend/InvenTree/common/setting/system.py index 49d06e30b4..087e494400 100644 --- a/src/backend/InvenTree/common/setting/system.py +++ b/src/backend/InvenTree/common/setting/system.py @@ -521,14 +521,6 @@ SYSTEM_SETTINGS: dict[str, InvenTreeSettingsKeyType] = { 'default': '', 'validator': common.validators.validate_icon, }, - 'PART_PARAMETER_ENFORCE_UNITS': { - 'name': _('Enforce Parameter Units'), - 'description': _( - 'If units are provided, parameter values must match the specified units' - ), - 'default': True, - 'validator': bool, - }, 'PRICING_DECIMAL_PLACES_MIN': { 'name': _('Minimum Pricing Decimal Places'), 'description': _( @@ -669,6 +661,14 @@ SYSTEM_SETTINGS: dict[str, InvenTreeSettingsKeyType] = { 'default': 'A4', 'choices': report.helpers.report_page_size_options, }, + 'PARAMETER_ENFORCE_UNITS': { + 'name': _('Enforce Parameter Units'), + 'description': _( + 'If units are provided, parameter values must match the specified units' + ), + 'default': True, + 'validator': bool, + }, 'SERIAL_NUMBER_GLOBALLY_UNIQUE': { 'name': _('Globally Unique Serials'), 'description': _('Serial numbers for stock items must be globally unique'), diff --git a/src/backend/InvenTree/common/setting/user.py b/src/backend/InvenTree/common/setting/user.py index 793f9bae1b..23dee7e5bd 100644 --- a/src/backend/InvenTree/common/setting/user.py +++ b/src/backend/InvenTree/common/setting/user.py @@ -41,6 +41,12 @@ USER_SETTINGS: dict[str, InvenTreeSettingsKeyType] = { 'default': False, 'validator': bool, }, + 'BARCODE_IN_FORM_FIELDS': { + 'name': _('Barcode Scanner in Form Fields'), + 'description': _('Allow barcode scanner input in form fields'), + 'default': False, + 'validator': bool, + }, 'SEARCH_PREVIEW_SHOW_PARTS': { 'name': _('Search Parts'), 'description': _('Display parts in search preview window'), diff --git a/src/backend/InvenTree/common/tasks.py b/src/backend/InvenTree/common/tasks.py index a718c2e201..6a86367937 100644 --- a/src/backend/InvenTree/common/tasks.py +++ b/src/backend/InvenTree/common/tasks.py @@ -172,3 +172,35 @@ def delete_old_notes_images(): if not found: logger.info('Deleting note %s - image file not linked to a note', image) os.remove(os.path.join(notes_dir, image)) + + +@tracer.start_as_current_span('rebuild_parameters') +def rebuild_parameters(template_id): + """Rebuild all parameters for a given template. + + This function is called when a base template is changed, + which may cause the base unit to be adjusted. + """ + from common.models import Parameter, ParameterTemplate + + try: + template = ParameterTemplate.objects.get(pk=template_id) + except ParameterTemplate.DoesNotExist: + return + + parameters = Parameter.objects.filter(template=template) + + n = 0 + + for parameter in parameters: + # Update the parameter if the numeric value has changed + value_old = parameter.data_numeric + parameter.calculate_numeric_value() + + if value_old != parameter.data_numeric: + parameter.full_clean() + parameter.save() + n += 1 + + if n > 0: + logger.info("Rebuilt %s parameters for template '%s'", n, template.name) diff --git a/src/backend/InvenTree/common/test_api.py b/src/backend/InvenTree/common/test_api.py new file mode 100644 index 0000000000..4e77eacf85 --- /dev/null +++ b/src/backend/InvenTree/common/test_api.py @@ -0,0 +1,428 @@ +"""API unit tests for InvenTree common functionality.""" + +from django.urls import reverse + +import common.models +from InvenTree.unit_test import InvenTreeAPITestCase + + +class ParameterAPITests(InvenTreeAPITestCase): + """Tests for the Parameter API.""" + + roles = 'all' + + def test_template_options(self): + """Test OPTIONS information for the ParameterTemplate API endpoint.""" + url = reverse('api-parameter-template-list') + + options = self.options(url) + actions = options.data['actions']['GET'] + + for field in [ + 'pk', + 'name', + 'units', + 'description', + 'model_type', + 'selectionlist', + 'enabled', + ]: + self.assertIn( + field, + actions.keys(), + f'Field "{field}" missing from ParameterTemplate API!', + ) + + model_types = [act['value'] for act in actions['model_type']['choices']] + + for mdl in [ + 'part.part', + 'build.build', + 'company.company', + 'order.purchaseorder', + ]: + self.assertIn( + mdl, + model_types, + f'Model type "{mdl}" missing from ParameterTemplate API!', + ) + + def test_parameter_options(self): + """Test OPTIONS information for the Parameter API endpoint.""" + url = reverse('api-parameter-list') + + options = self.options(url) + actions = options.data['actions']['GET'] + + for field in [ + 'pk', + 'template', + 'model_type', + 'model_id', + 'data', + 'data_numeric', + ]: + self.assertIn( + field, actions.keys(), f'Field "{field}" missing from Parameter API!' + ) + + self.assertFalse(actions['data']['read_only']) + self.assertFalse(actions['model_type']['read_only']) + + def test_template_api(self): + """Test ParameterTemplate API functionality.""" + url = reverse('api-parameter-template-list') + + N = common.models.ParameterTemplate.objects.count() + + # Create a new ParameterTemplate - initially with invalid model_type field + data = { + 'name': 'Test Parameter', + 'units': 'mm', + 'description': 'A test parameter template', + 'model_type': 'order.salesorderx', + 'enabled': True, + } + + response = self.post(url, data, expected_code=400) + self.assertIn('Content type not found', str(response.data['model_type'])) + + data['model_type'] = 'order.salesorder' + + response = self.post(url, data, expected_code=201) + pk = response.data['pk'] + + # Verify that the ParameterTemplate was created + self.assertEqual(common.models.ParameterTemplate.objects.count(), N + 1) + + template = common.models.ParameterTemplate.objects.get(pk=pk) + self.assertEqual(template.name, 'Test Parameter') + self.assertEqual(template.description, 'A test parameter template') + self.assertEqual(template.units, 'mm') + + # Let's update the Template via the API + data = {'description': 'An UPDATED test parameter template'} + + response = self.patch( + reverse('api-parameter-template-detail', kwargs={'pk': pk}), + data, + expected_code=200, + ) + + template.refresh_from_db() + self.assertEqual(template.description, 'An UPDATED test parameter template') + + # Finally, let's delete the Template + response = self.delete( + reverse('api-parameter-template-detail', kwargs={'pk': pk}), + expected_code=204, + ) + + self.assertEqual(common.models.ParameterTemplate.objects.count(), N) + self.assertFalse(common.models.ParameterTemplate.objects.filter(pk=pk).exists()) + + # Let's create a template which does not specify a model_type + data = { + 'name': 'Universal Parameter', + 'units': '', + 'description': 'A parameter template for all models', + 'enabled': False, + } + + response = self.post(url, data, expected_code=201) + + self.assertIsNone(response.data['model_type']) + self.assertFalse(response.data['enabled']) + + def test_template_filters(self): + """Tests for API filters against ParameterTemplate endpoint.""" + from company.models import Company + + # Create some ParameterTemplate objects + t1 = common.models.ParameterTemplate.objects.create( + name='Template A', + description='Template with choices', + choices='apple,banana,cherry', + enabled=True, + ) + + t2 = common.models.ParameterTemplate.objects.create( + name='Template B', + description='Template without choices', + enabled=True, + units='mm', + model_type=Company.get_content_type(), + ) + + t3 = common.models.ParameterTemplate.objects.create( + name='Template C', description='Another template', enabled=False + ) + + url = reverse('api-parameter-template-list') + + # Filter by 'enabled' status + response = self.get(url, data={'enabled': True}) + self.assertEqual(len(response.data), 2) + + response = self.get(url, data={'enabled': False}) + self.assertEqual(len(response.data), 1) + self.assertEqual(response.data[0]['pk'], t3.pk) + + # Filter by 'has_choices' + response = self.get(url, data={'has_choices': True}) + self.assertEqual(len(response.data), 1) + self.assertEqual(response.data[0]['pk'], t1.pk) + + response = self.get(url, data={'has_choices': False}) + self.assertEqual(len(response.data), 2) + + # Filter by 'model_type' + response = self.get(url, data={'model_type': 'company.company'}) + self.assertEqual(len(response.data), 1) + self.assertEqual(response.data[0]['pk'], t2.pk) + + # Filter by 'has_units' + response = self.get(url, data={'has_units': True}) + self.assertEqual(len(response.data), 1) + self.assertEqual(response.data[0]['pk'], t2.pk) + + response = self.get(url, data={'has_units': False}) + self.assertEqual(len(response.data), 2) + + # Filter by 'for_model' + # Note that a 'blank' model_type is considered to match all models + response = self.get(url, data={'for_model': 'part.part'}) + self.assertEqual(len(response.data), 2) + + response = self.get(url, data={'for_model': 'company'}) + self.assertEqual(len(response.data), 3) + + # Create a Parameter against a specific Company instance + company = Company.objects.create( + name='Test Company', description='A company for testing' + ) + + common.models.Parameter.objects.create( + template=t1, + model_type=company.get_content_type(), + model_id=company.pk, + data='apple', + ) + + model_types = {'company': 3, 'part.part': 2, 'order.purchaseorder': 2} + + for model_name, count in model_types.items(): + response = self.get(url, data={'for_model': model_name}) + self.assertEqual( + len(response.data), + count, + f'Incorrect number of templates for model "{model_name}"', + ) + + # Filter with an invalid 'for_model' + response = self.get( + url, data={'for_model': 'invalid.modelname'}, expected_code=400 + ) + + self.assertIn('Invalid content type: invalid.modelname', str(response.data)) + + # Filter the "exists for model" filter + model_types = {'company': 1, 'part.part': 0, 'order.purchaseorder': 0} + + for model_name, count in model_types.items(): + response = self.get(url, data={'exists_for_model': model_name}) + self.assertEqual( + len(response.data), + count, + f'Incorrect number of templates for model "{model_name}"', + ) + + def test_parameter_api(self): + """Test Parameter API functionality.""" + # Create a simple part to test with + from part.models import Part + + part = Part.objects.create(name='Test Part', description='A part for testing') + + N = common.models.Parameter.objects.count() + + # Create a ParameterTemplate for the Part model + template = common.models.ParameterTemplate.objects.create( + name='Length', + units='mm', + model_type=part.get_content_type(), + description='Length of part', + enabled=True, + ) + + # Create a Parameter via the API + url = reverse('api-parameter-list') + + data = { + 'template': template.pk, + 'model_type': 'part.part', + 'model_id': part.pk, + 'data': '25.4', + } + + # Initially, user does not have correct permissions + response = self.post(url, data=data, expected_code=403) + + self.assertIn( + 'User does not have permission to create or edit parameters for this model', + str(response.data['detail']), + ) + + # Grant user the correct permissions + self.assignRole('part.add') + + response = self.post(url, data=data, expected_code=201) + + parameter = common.models.Parameter.objects.get(pk=response.data['pk']) + + # Check that the Parameter was created + self.assertEqual(common.models.Parameter.objects.count(), N + 1) + + # Try to create a duplicate Parameter (should fail) + response = self.post(url, data=data, expected_code=400) + + self.assertIn( + 'The fields model_type, model_id, template must make a unique set.', + str(response.data['non_field_errors']), + ) + + # Let's edit the Parameter via the API + url = reverse('api-parameter-detail', kwargs={'pk': parameter.pk}) + + response = self.patch(url, data={'data': '-2 inches'}, expected_code=200) + + # Ensure parameter conversion has correctly updated data_numeric field + data = response.data + self.assertEqual(data['data'], '-2 inches') + self.assertAlmostEqual(data['data_numeric'], -50.8, places=2) + + # Finally, delete the Parameter via the API + response = self.delete(url, expected_code=204) + + self.assertEqual(common.models.Parameter.objects.count(), N) + self.assertFalse( + common.models.Parameter.objects.filter(pk=parameter.pk).exists() + ) + + def test_parameter_annotation(self): + """Test that we can annotate parameters against a queryset.""" + from company.models import Company + + templates = [] + parameters = [] + companies = [] + + for ii in range(100): + company = Company( + name=f'Test Company {ii}', + description='A company for testing parameter annotations', + ) + companies.append(company) + + Company.objects.bulk_create(companies) + + # Let's create a large number of parameters + for ii in range(25): + templates.append( + common.models.ParameterTemplate( + name=f'Test Parameter {ii}', + units='', + description='A parameter for testing annotations', + model_type=Company.get_content_type(), + enabled=True, + ) + ) + + common.models.ParameterTemplate.objects.bulk_create(templates) + + # Create a parameter for every company against every template + for company in Company.objects.all(): + for template in common.models.ParameterTemplate.objects.all(): + parameters.append( + common.models.Parameter( + template=template, + model_type=company.get_content_type(), + model_id=company.pk, + data=f'Test data for {company.name} - {template.name}', + ) + ) + + common.models.Parameter.objects.bulk_create(parameters) + + self.assertEqual( + common.models.Parameter.objects.count(), len(companies) * len(templates) + ) + + # We will fetch the companies, annotated with all parameters + url = reverse('api-company-list') + + # By default, we do not expect any parameter annotations + response = self.get(url, data={'limit': 5}) + + self.assertEqual(response.data['count'], len(companies)) + for company in response.data['results']: + self.assertNotIn('parameters', company) + + # Fetch all companies, explicitly without parameters + with self.assertNumQueriesLessThan(20): + response = self.get(url, data={'parameters': False}) + + # Now, annotate with parameters + # This must be done efficiently, without an 1 + N query pattern + with self.assertNumQueriesLessThan(45): + response = self.get(url, data={'parameters': True}) + + self.assertEqual(len(response.data), len(companies)) + + for company in response.data: + self.assertIn('parameters', company) + self.assertEqual( + len(company['parameters']), + len(templates), + 'Incorrect number of parameter annotations found', + ) + + def test_parameter_delete(self): + """Test that associated parameters are correctly deleted when removing the linked model.""" + from part.models import Part + + part = Part.objects.create( + name='Test Part', description='A part for testing', active=False + ) + + # Create a ParameterTemplate for the Part model + template = common.models.ParameterTemplate.objects.create( + name='Test Parameter', + description='A parameter template for testing parameter deletion', + model_type=None, + ) + + # Create a Parameter for the Build + parameter = common.models.Parameter.objects.create( + template=template, + model_type=part.get_content_type(), + model_id=part.pk, + data='Test data', + ) + + self.assertTrue( + common.models.Parameter.objects.filter(pk=parameter.pk).exists() + ) + + N = common.models.Parameter.objects.count() + + # Now delete the part instance + self.assignRole('part.delete') + self.delete( + reverse('api-part-detail', kwargs={'pk': part.pk}), expected_code=204 + ) + + self.assertEqual(common.models.Parameter.objects.count(), N - 1) + self.assertFalse( + common.models.Parameter.objects.filter(template=template.pk).exists() + ) diff --git a/src/backend/InvenTree/common/test_migrations.py b/src/backend/InvenTree/common/test_migrations.py index 74b899f3f8..6c21dc1074 100644 --- a/src/backend/InvenTree/common/test_migrations.py +++ b/src/backend/InvenTree/common/test_migrations.py @@ -7,8 +7,6 @@ from django.core.files.base import ContentFile from django_test_migrations.contrib.unittest_case import MigratorTestCase -from InvenTree import unit_test - def get_legacy_models(): """Return a set of legacy attachment models.""" @@ -43,7 +41,7 @@ class TestForwardMigrations(MigratorTestCase): """Test entire schema migration sequence for the common app.""" migrate_from = ('common', '0024_notesimage_model_id_notesimage_model_type') - migrate_to = ('common', unit_test.getNewestMigrationFile('common')) + migrate_to = ('common', '0039_emailthread_emailmessage') def prepare(self): """Create initial data. diff --git a/src/backend/InvenTree/common/tests.py b/src/backend/InvenTree/common/tests.py index 52a1eeca95..4cc16136bd 100644 --- a/src/backend/InvenTree/common/tests.py +++ b/src/backend/InvenTree/common/tests.py @@ -32,7 +32,7 @@ from InvenTree.unit_test import ( PluginMixin, addUserPermission, ) -from part.models import Part, PartParameterTemplate +from part.models import Part from plugin import registry from .api import WebhookView @@ -45,6 +45,7 @@ from .models import ( NotesImage, NotificationEntry, NotificationMessage, + ParameterTemplate, ProjectCode, SelectionList, SelectionListEntry, @@ -2055,27 +2056,37 @@ class SelectionListTest(InvenTreeAPITestCase): # Add to parameter part = Part.objects.get(pk=1) - template = PartParameterTemplate.objects.create( + template = ParameterTemplate.objects.create( name='test_parameter', units='', selectionlist=self.list ) rsp = self.get( - reverse('api-part-parameter-template-detail', kwargs={'pk': template.pk}) + reverse('api-parameter-template-detail', kwargs={'pk': template.pk}) ) self.assertEqual(rsp.data['name'], 'test_parameter') self.assertEqual(rsp.data['choices'], '') # Add to part - url = reverse('api-part-parameter-list') + url = reverse('api-parameter-list') response = self.post( url, - {'part': part.pk, 'template': template.pk, 'data': 70}, + { + 'model_id': part.pk, + 'model_type': 'part.part', + 'template': template.pk, + 'data': 70, + }, expected_code=400, ) self.assertIn('Invalid choice for parameter value', response.data['data']) response = self.post( url, - {'part': part.pk, 'template': template.pk, 'data': self.entry1.value}, + { + 'model_id': part.pk, + 'model_type': 'part.part', + 'template': template.pk, + 'data': self.entry1.value, + }, expected_code=201, ) self.assertEqual(response.data['data'], self.entry1.value) diff --git a/src/backend/InvenTree/common/validators.py b/src/backend/InvenTree/common/validators.py index 056bc4ca1b..02c3805f96 100644 --- a/src/backend/InvenTree/common/validators.py +++ b/src/backend/InvenTree/common/validators.py @@ -9,6 +9,35 @@ import common.icons from common.settings import get_global_setting +def parameter_model_types(): + """Return a list of valid parameter model choices.""" + import InvenTree.models + + return list( + InvenTree.helpers_model.getModelsWithMixin( + InvenTree.models.InvenTreeParameterMixin + ) + ) + + +def parameter_model_options(): + """Return a list of options for models which support parameters.""" + return [ + (model.__name__.lower(), model._meta.verbose_name) + for model in parameter_model_types() + ] + + +def parameter_template_model_options(): + """Return a list of options for models which support parameter templates.""" + options = [ + (model.__name__.lower(), model._meta.verbose_name) + for model in parameter_model_types() + ] + + return [(None, _('All models')), *options] + + def attachment_model_types(): """Return a list of valid attachment model choices.""" import InvenTree.models diff --git a/src/backend/InvenTree/company/admin.py b/src/backend/InvenTree/company/admin.py index 64610709af..b35218ad1e 100644 --- a/src/backend/InvenTree/company/admin.py +++ b/src/backend/InvenTree/company/admin.py @@ -9,7 +9,6 @@ from .models import ( Company, Contact, ManufacturerPart, - ManufacturerPartParameter, SupplierPart, SupplierPriceBreak, ) @@ -56,17 +55,6 @@ class ManufacturerPartAdmin(admin.ModelAdmin): autocomplete_fields = ('part', 'manufacturer') -@admin.register(ManufacturerPartParameter) -class ManufacturerPartParameterAdmin(admin.ModelAdmin): - """Admin class for ManufacturerPartParameter model.""" - - list_display = ('manufacturer_part', 'name', 'value') - - search_fields = ['manufacturer_part__manufacturer__name', 'name', 'value'] - - autocomplete_fields = ('manufacturer_part',) - - @admin.register(SupplierPriceBreak) class SupplierPriceBreakAdmin(admin.ModelAdmin): """Admin class for the SupplierPriceBreak model.""" diff --git a/src/backend/InvenTree/company/api.py b/src/backend/InvenTree/company/api.py index cde689119e..8ec8a4ae14 100644 --- a/src/backend/InvenTree/company/api.py +++ b/src/backend/InvenTree/company/api.py @@ -9,7 +9,7 @@ from django_filters.rest_framework.filterset import FilterSet import part.models from data_exporter.mixins import DataExportViewMixin -from InvenTree.api import ListCreateDestroyAPIView, MetadataView +from InvenTree.api import ListCreateDestroyAPIView, MetadataView, ParameterListMixin from InvenTree.fields import InvenTreeOutputOption, OutputConfiguration from InvenTree.filters import SEARCH_ORDER_FILTER, SEARCH_ORDER_FILTER_ALIAS from InvenTree.mixins import ( @@ -24,7 +24,6 @@ from .models import ( Company, Contact, ManufacturerPart, - ManufacturerPartParameter, SupplierPart, SupplierPriceBreak, ) @@ -32,14 +31,27 @@ from .serializers import ( AddressSerializer, CompanySerializer, ContactSerializer, - ManufacturerPartParameterSerializer, ManufacturerPartSerializer, SupplierPartSerializer, SupplierPriceBreakSerializer, ) -class CompanyList(DataExportViewMixin, ListCreateAPI): +class CompanyMixin(OutputOptionsMixin): + """Mixin class for Company API endpoints.""" + + queryset = Company.objects.all() + serializer_class = CompanySerializer + + def get_queryset(self): + """Return annotated queryset for the company endpoints.""" + queryset = super().get_queryset() + queryset = CompanySerializer.annotate_queryset(queryset) + + return queryset + + +class CompanyList(CompanyMixin, ParameterListMixin, DataExportViewMixin, ListCreateAPI): """API endpoint for accessing a list of Company objects. Provides two methods: @@ -48,14 +60,6 @@ class CompanyList(DataExportViewMixin, ListCreateAPI): - POST: Create a new Company object """ - serializer_class = CompanySerializer - queryset = Company.objects.all() - - def get_queryset(self): - """Return annotated queryset for the company list endpoint.""" - queryset = super().get_queryset() - return CompanySerializer.annotate_queryset(queryset) - filter_backends = SEARCH_ORDER_FILTER filterset_fields = [ @@ -73,19 +77,9 @@ class CompanyList(DataExportViewMixin, ListCreateAPI): ordering = 'name' -class CompanyDetail(RetrieveUpdateDestroyAPI): +class CompanyDetail(CompanyMixin, RetrieveUpdateDestroyAPI): """API endpoint for detail of a single Company object.""" - queryset = Company.objects.all() - serializer_class = CompanySerializer - - def get_queryset(self): - """Return annotated queryset for the company detail endpoint.""" - queryset = super().get_queryset() - queryset = CompanySerializer.annotate_queryset(queryset) - - return queryset - class ContactList(DataExportViewMixin, ListCreateDestroyAPIView): """API endpoint for list view of Company model.""" @@ -174,10 +168,26 @@ class ManufacturerOutputOptions(OutputConfiguration): ] +class ManufacturerPartMixin(SerializerContextMixin): + """Mixin class for ManufacturerPart API endpoints.""" + + queryset = ManufacturerPart.objects.all() + serializer_class = ManufacturerPartSerializer + + def get_queryset(self, *args, **kwargs): + """Return annotated queryset for the ManufacturerPart list endpoint.""" + queryset = super().get_queryset(*args, **kwargs) + + queryset = queryset.prefetch_related('supplier_parts') + + return queryset + + class ManufacturerPartList( + ManufacturerPartMixin, SerializerContextMixin, - DataExportViewMixin, OutputOptionsMixin, + ParameterListMixin, ListCreateDestroyAPIView, ): """API endpoint for list view of ManufacturerPart object. @@ -186,13 +196,10 @@ class ManufacturerPartList( - POST: Create a new ManufacturerPart object """ - queryset = ManufacturerPart.objects.all().prefetch_related( - 'part', 'manufacturer', 'supplier_parts', 'tags' - ) - serializer_class = ManufacturerPartSerializer filterset_class = ManufacturerPartFilter - output_options = ManufacturerOutputOptions filter_backends = SEARCH_ORDER_FILTER + output_options = ManufacturerOutputOptions + search_fields = [ 'manufacturer__name', 'description', @@ -205,7 +212,9 @@ class ManufacturerPartList( ] -class ManufacturerPartDetail(RetrieveUpdateDestroyAPI): +class ManufacturerPartDetail( + ManufacturerPartMixin, OutputOptionsMixin, RetrieveUpdateDestroyAPI +): """API endpoint for detail view of ManufacturerPart object. - GET: Retrieve detail view @@ -213,59 +222,6 @@ class ManufacturerPartDetail(RetrieveUpdateDestroyAPI): - DELETE: Delete object """ - queryset = ManufacturerPart.objects.all() - serializer_class = ManufacturerPartSerializer - - -class ManufacturerPartParameterFilter(FilterSet): - """Custom filterset for the ManufacturerPartParameterList API endpoint.""" - - class Meta: - """Metaclass options.""" - - model = ManufacturerPartParameter - fields = ['name', 'value', 'units', 'manufacturer_part'] - - manufacturer = rest_filters.ModelChoiceFilter( - queryset=Company.objects.all(), field_name='manufacturer_part__manufacturer' - ) - - part = rest_filters.ModelChoiceFilter( - queryset=part.models.Part.objects.all(), field_name='manufacturer_part__part' - ) - - -class ManufacturerPartParameterOptions(OutputConfiguration): - """Available output options for the ManufacturerPartParameter endpoints.""" - - OPTIONS = [ - InvenTreeOutputOption( - description='Include detailed information about the linked ManufacturerPart in the response', - flag='manufacturer_part_detail', - default=False, - ) - ] - - -class ManufacturerPartParameterList( - SerializerContextMixin, ListCreateDestroyAPIView, OutputOptionsMixin -): - """API endpoint for list view of ManufacturerPartParamater model.""" - - queryset = ManufacturerPartParameter.objects.all() - serializer_class = ManufacturerPartParameterSerializer - filterset_class = ManufacturerPartParameterFilter - output_options = ManufacturerPartParameterOptions - filter_backends = SEARCH_ORDER_FILTER - search_fields = ['name', 'value', 'units'] - - -class ManufacturerPartParameterDetail(RetrieveUpdateDestroyAPI): - """API endpoint for detail view of ManufacturerPartParameter model.""" - - queryset = ManufacturerPartParameter.objects.all() - serializer_class = ManufacturerPartParameterSerializer - class SupplierPartFilter(FilterSet): """API filters for the SupplierPartList endpoint.""" @@ -344,13 +300,18 @@ class SupplierPartOutputOptions(OutputConfiguration): InvenTreeOutputOption( description='Include detailed information about the Supplier in the response', flag='supplier_detail', - default=True, + default=False, ), InvenTreeOutputOption( description='Include detailed information about the Manufacturer in the response', flag='manufacturer_detail', default=False, ), + InvenTreeOutputOption( + flag='manufacturer_part_detail', + description='Include detailed information about the linked ManufacturerPart in the response', + default=False, + ), InvenTreeOutputOption( description='Format the output with a more readable (pretty) name', flag='pretty', @@ -362,23 +323,25 @@ class SupplierPartOutputOptions(OutputConfiguration): class SupplierPartMixin: """Mixin class for SupplierPart API endpoints.""" - queryset = SupplierPart.objects.all().prefetch_related('tags') + queryset = SupplierPart.objects.all() serializer_class = SupplierPartSerializer def get_queryset(self, *args, **kwargs): - """Return annotated queryest object for the SupplierPart list.""" + """Return annotated queryset object for the SupplierPart list.""" queryset = super().get_queryset(*args, **kwargs) queryset = SupplierPartSerializer.annotate_queryset(queryset) - queryset = queryset.prefetch_related( - 'part', 'part__pricing_data', 'manufacturer_part__tags' - ) + queryset = queryset.prefetch_related('part', 'part__pricing_data') return queryset class SupplierPartList( - DataExportViewMixin, SupplierPartMixin, OutputOptionsMixin, ListCreateDestroyAPIView + DataExportViewMixin, + SupplierPartMixin, + ParameterListMixin, + OutputOptionsMixin, + ListCreateDestroyAPIView, ): """API endpoint for list view of SupplierPart object. @@ -387,7 +350,6 @@ class SupplierPartList( """ filterset_class = SupplierPartFilter - filter_backends = SEARCH_ORDER_FILTER_ALIAS output_options = SupplierPartOutputOptions @@ -466,13 +428,6 @@ class SupplierPriceBreakMixin: queryset = SupplierPriceBreak.objects.all() serializer_class = SupplierPriceBreakSerializer - def get_queryset(self): - """Return annotated queryset for the SupplierPriceBreak list endpoint.""" - queryset = super().get_queryset() - queryset = SupplierPriceBreakSerializer.annotate_queryset(queryset) - - return queryset - class SupplierPriceBreakOutputOptions(OutputConfiguration): """Available output options for the SupplierPriceBreak endpoints.""" @@ -518,22 +473,6 @@ class SupplierPriceBreakDetail(SupplierPriceBreakMixin, RetrieveUpdateDestroyAPI manufacturer_part_api_urls = [ - path( - 'parameter/', - include([ - path( - '/', - ManufacturerPartParameterDetail.as_view(), - name='api-manufacturer-part-parameter-detail', - ), - # Catch anything else - path( - '', - ManufacturerPartParameterList.as_view(), - name='api-manufacturer-part-parameter-list', - ), - ]), - ), path( '/', include([ diff --git a/src/backend/InvenTree/company/migrations/0077_delete_manufacturerpartparameter.py b/src/backend/InvenTree/company/migrations/0077_delete_manufacturerpartparameter.py new file mode 100644 index 0000000000..0b39842dc3 --- /dev/null +++ b/src/backend/InvenTree/company/migrations/0077_delete_manufacturerpartparameter.py @@ -0,0 +1,22 @@ +# Generated by Django 5.2.8 on 2025-11-25 07:03 + +from django.db import migrations + + +class Migration(migrations.Migration): + """Remove the ManufacturerPartParameter model. + + The data has been migrated to the common.Parameter model in a previous migration. + """ + + dependencies = [ + ("company", "0076_alter_company_image"), + ("common", "0041_auto_20251203_1244"), + ("part", "0146_auto_20251203_1241") + ] + + operations = [ + migrations.DeleteModel( + name="ManufacturerPartParameter", + ), + ] diff --git a/src/backend/InvenTree/company/models.py b/src/backend/InvenTree/company/models.py index c60e82900c..96934ff277 100644 --- a/src/backend/InvenTree/company/models.py +++ b/src/backend/InvenTree/company/models.py @@ -77,6 +77,7 @@ class CompanyReportContext(report.mixins.BaseReportContext): class Company( InvenTree.models.InvenTreeAttachmentMixin, + InvenTree.models.InvenTreeParameterMixin, InvenTree.models.InvenTreeNotesMixin, report.mixins.InvenTreeReportMixin, InvenTree.models.InvenTreeImageMixin, @@ -237,8 +238,14 @@ class Company( @property def primary_address(self): - """Returns address object of primary address. Parsed by serializer.""" - return Address.objects.filter(company=self.id).filter(primary=True).first() + """Returns address object of primary address for this Company.""" + # We may have a pre-fetched primary address list + if hasattr(self, 'primary_address_list'): + addresses = self.primary_address_list + return addresses[0] if len(addresses) > 0 else None + + # Otherwise, query the database + return self.addresses.filter(primary=True).first() @property def currency_code(self): @@ -297,7 +304,7 @@ class Contact(InvenTree.models.InvenTreeMetadataModel): @staticmethod def get_api_url(): - """Return the API URL associated with the Contcat model.""" + """Return the API URL associated with the Contact model.""" return reverse('api-contact-list') company = models.ForeignKey( @@ -382,7 +389,7 @@ class Address(InvenTree.models.InvenTreeModel): @staticmethod def get_api_url(): - """Return the API URL associated with the Contcat model.""" + """Return the API URL associated with the Contact model.""" return reverse('api-address-list') company = models.ForeignKey( @@ -472,6 +479,7 @@ class Address(InvenTree.models.InvenTreeModel): class ManufacturerPart( InvenTree.models.InvenTreeAttachmentMixin, + InvenTree.models.InvenTreeParameterMixin, InvenTree.models.InvenTreeBarcodeMixin, InvenTree.models.InvenTreeNotesMixin, InvenTree.models.InvenTreeMetadataModel, @@ -583,74 +591,9 @@ class ManufacturerPart( return s -class ManufacturerPartParameter(InvenTree.models.InvenTreeModel): - """A ManufacturerPartParameter represents a key:value parameter for a MnaufacturerPart. - - This is used to represent parameters / properties for a particular manufacturer part. - - Each parameter is a simple string (text) value. - """ - - class Meta: - """Metaclass defines extra model options.""" - - verbose_name = _('Manufacturer Part Parameter') - unique_together = ('manufacturer_part', 'name') - - @staticmethod - def get_api_url(): - """Return the API URL associated with the ManufacturerPartParameter model.""" - return reverse('api-manufacturer-part-parameter-list') - - manufacturer_part = models.ForeignKey( - ManufacturerPart, - on_delete=models.CASCADE, - related_name='parameters', - verbose_name=_('Manufacturer Part'), - ) - - name = models.CharField( - max_length=500, - blank=False, - verbose_name=_('Name'), - help_text=_('Parameter name'), - ) - - value = models.CharField( - max_length=500, - blank=False, - verbose_name=_('Value'), - help_text=_('Parameter value'), - ) - - units = models.CharField( - max_length=64, - blank=True, - null=True, - verbose_name=_('Units'), - help_text=_('Parameter units'), - ) - - -class SupplierPartManager(models.Manager): - """Define custom SupplierPart objects manager. - - The main purpose of this manager is to improve database hit as the - SupplierPart model involves A LOT of foreign keys lookups - """ - - def get_queryset(self): - """Prefetch related fields when querying against the SupplierPart model.""" - # Always prefetch related models - return ( - super() - .get_queryset() - .prefetch_related('part', 'supplier', 'manufacturer_part__manufacturer') - ) - - class SupplierPart( InvenTree.models.InvenTreeAttachmentMixin, + InvenTree.models.InvenTreeParameterMixin, InvenTree.models.MetadataMixin, InvenTree.models.InvenTreeBarcodeMixin, InvenTree.models.InvenTreeNotesMixin, @@ -687,8 +630,6 @@ class SupplierPart( # This model was moved from the 'Part' app db_table = 'part_supplierpart' - objects = SupplierPartManager() - tags = TaggableManager(blank=True) @staticmethod @@ -888,7 +829,7 @@ class SupplierPart( ) def base_quantity(self, quantity=1) -> Decimal: - """Calculate the base unit quantiy for a given quantity.""" + """Calculate the base unit quantity for a given quantity.""" q = Decimal(quantity) * Decimal(self.pack_quantity_native) q = round(q, 10).normalize() diff --git a/src/backend/InvenTree/company/serializers.py b/src/backend/InvenTree/company/serializers.py index 5488abbf43..b3c936ae49 100644 --- a/src/backend/InvenTree/company/serializers.py +++ b/src/backend/InvenTree/company/serializers.py @@ -6,11 +6,10 @@ from django.core.files.base import ContentFile from django.db.models import Prefetch from django.utils.translation import gettext_lazy as _ -from drf_spectacular.utils import extend_schema_field from rest_framework import serializers from sql_util.utils import SubqueryCount -from taggit.serializers import TagListSerializerField +import common.filters import company.filters import part.filters import part.serializers as part_serializers @@ -36,7 +35,6 @@ from .models import ( Company, Contact, ManufacturerPart, - ManufacturerPartParameter, SupplierPart, SupplierPriceBreak, ) @@ -113,6 +111,7 @@ class AddressBriefSerializer(InvenTreeModelSerializer): @register_importer() class CompanySerializer( + FilterableSerializerMixin, DataImportExportSerializerMixin, NotesFieldMixin, RemoteImageMixin, @@ -135,7 +134,6 @@ class CompanySerializer( 'website', 'name', 'phone', - 'address', 'email', 'currency', 'contact', @@ -149,9 +147,9 @@ class CompanySerializer( 'parts_supplied', 'parts_manufactured', 'remote_image', - 'address_count', 'primary_address', 'tax_id', + 'parameters', ] @staticmethod @@ -164,39 +162,20 @@ class CompanySerializer( queryset = queryset.annotate(parts_supplied=SubqueryCount('supplied_parts')) - queryset = queryset.annotate(address_count=SubqueryCount('addresses')) + return queryset - queryset = queryset.prefetch_related( + primary_address = enable_filter( + AddressBriefSerializer(read_only=True, allow_null=True), + False, + filter_name='address_detail', + prefetch_fields=[ Prefetch( 'addresses', queryset=Address.objects.filter(primary=True), to_attr='primary_address_list', ) - ) - - return queryset - - address = serializers.SerializerMethodField( - label=_( - 'Return the string representation for the primary address. This property exists for backwards compatibility.' - ), - allow_null=True, + ], ) - primary_address = serializers.SerializerMethodField(allow_null=True) - - @extend_schema_field(serializers.CharField()) - def get_address(self, obj): - """Return string version of primary address (for backwards compatibility).""" - if hasattr(obj, 'primary_address_list') and obj.primary_address_list: - return str(obj.primary_address_list[0]) - return None - - @extend_schema_field(AddressSerializer()) - def get_primary_address(self, obj): - """Return full address object for primary address using prefetch data.""" - if hasattr(obj, 'primary_address_list') and obj.primary_address_list: - return AddressSerializer(obj.primary_address_list[0]).data - return None image = InvenTreeImageSerializerField(required=False, allow_null=True) @@ -205,13 +184,15 @@ class CompanySerializer( ) parts_supplied = serializers.IntegerField(read_only=True) + parts_manufactured = serializers.IntegerField(read_only=True) - address_count = serializers.IntegerField(read_only=True) currency = InvenTreeCurrencySerializer( help_text=_('Default currency used for this supplier'), required=True ) + parameters = common.filters.enable_parameters_filter() + def save(self): """Save the Company instance.""" super().save() @@ -275,22 +256,23 @@ class ManufacturerPartSerializer( 'barcode_hash', 'notes', 'tags', + 'parameters', ] - tags = TagListSerializerField(required=False) + tags = common.filters.enable_tags_filter() + + parameters = common.filters.enable_parameters_filter() part_detail = enable_filter( part_serializers.PartBriefSerializer( source='part', many=False, read_only=True, allow_null=True ), True, - ) - - manufacturer_detail = enable_filter( - CompanyBriefSerializer( - source='manufacturer', many=False, read_only=True, allow_null=True - ), - True, + prefetch_fields=[ + Prefetch( + 'part', queryset=part.models.Part.objects.select_related('pricing_data') + ) + ], ) pretty_name = enable_filter( @@ -301,31 +283,12 @@ class ManufacturerPartSerializer( queryset=Company.objects.filter(is_manufacturer=True) ) - -@register_importer() -class ManufacturerPartParameterSerializer( - FilterableSerializerMixin, DataImportExportSerializerMixin, InvenTreeModelSerializer -): - """Serializer for the ManufacturerPartParameter model.""" - - class Meta: - """Metaclass options.""" - - model = ManufacturerPartParameter - - fields = [ - 'pk', - 'manufacturer_part', - 'manufacturer_part_detail', - 'name', - 'value', - 'units', - ] - - manufacturer_part_detail = enable_filter( - ManufacturerPartSerializer( - source='manufacturer_part', many=False, read_only=True, allow_null=True - ) + manufacturer_detail = enable_filter( + CompanyBriefSerializer( + source='manufacturer', many=False, read_only=True, allow_null=True + ), + True, + prefetch_fields=['manufacturer'], ) @@ -415,6 +378,7 @@ class SupplierPartSerializer( 'part_detail', 'tags', 'price_breaks', + 'parameters', ] read_only_fields = [ 'availability_updated', @@ -422,45 +386,24 @@ class SupplierPartSerializer( 'pack_quantity_native', ] - tags = TagListSerializerField(required=False) + tags = common.filters.enable_tags_filter() def __init__(self, *args, **kwargs): """Initialize this serializer with extra detail fields as required.""" # Check if 'available' quantity was supplied self.has_available_quantity = 'available' in kwargs.get('data', {}) - # TODO INVE-T1 support complex filters brief = kwargs.pop('brief', False) - detail_default = not brief - part_detail = kwargs.pop('part_detail', detail_default) - supplier_detail = kwargs.pop('supplier_detail', detail_default) - manufacturer_detail = kwargs.pop('manufacturer_detail', detail_default) - - prettify = kwargs.pop('pretty', False) super().__init__(*args, **kwargs) if isGeneratingSchema(): return - if part_detail is not True: - self.fields.pop('part_detail', None) - - if supplier_detail is not True: - self.fields.pop('supplier_detail', None) - - if manufacturer_detail is not True: - self.fields.pop('manufacturer_detail', None) - self.fields.pop('manufacturer_part_detail', None) - - if brief or prettify is not True: - self.fields.pop('pretty_name', None) - if brief: - self.fields.pop('tags') - self.fields.pop('available') - self.fields.pop('on_order') - self.fields.pop('availability_updated') + self.fields.pop('available', None) + self.fields.pop('on_order', None) + self.fields.pop('availability_updated', None) # Annotated field showing total in-stock quantity in_stock = serializers.FloatField( @@ -485,40 +428,61 @@ class SupplierPartSerializer( ), False, filter_name='price_breaks', + prefetch_fields=['pricebreaks'], ) - part_detail = part_serializers.PartBriefSerializer( - label=_('Part'), source='part', many=False, read_only=True, allow_null=True + parameters = common.filters.enable_parameters_filter() + + part_detail = enable_filter( + part_serializers.PartBriefSerializer( + label=_('Part'), source='part', many=False, read_only=True, allow_null=True + ), + False, + prefetch_fields=['part'], ) - supplier_detail = CompanyBriefSerializer( - label=_('Supplier'), - source='supplier', - many=False, - read_only=True, - allow_null=True, + supplier_detail = enable_filter( + CompanyBriefSerializer( + label=_('Supplier'), + source='supplier', + many=False, + read_only=True, + allow_null=True, + ), + False, + prefetch_fields=['supplier'], ) - manufacturer_detail = CompanyBriefSerializer( - label=_('Manufacturer'), - source='manufacturer_part.manufacturer', - many=False, - read_only=True, - allow_null=True, + manufacturer_detail = enable_filter( + CompanyBriefSerializer( + label=_('Manufacturer'), + source='manufacturer_part.manufacturer', + many=False, + read_only=True, + allow_null=True, + ), + False, + prefetch_fields=['manufacturer_part__manufacturer'], ) - pretty_name = serializers.CharField(read_only=True, allow_null=True) + pretty_name = enable_filter( + FilterableCharField(read_only=True, allow_null=True), filter_name='pretty' + ) supplier = serializers.PrimaryKeyRelatedField( label=_('Supplier'), queryset=Company.objects.filter(is_supplier=True) ) - manufacturer_part_detail = ManufacturerPartSerializer( - label=_('Manufacturer Part'), - source='manufacturer_part', - part_detail=False, - read_only=True, - allow_null=True, + manufacturer_part_detail = enable_filter( + ManufacturerPartSerializer( + label=_('Manufacturer Part'), + source='manufacturer_part', + part_detail=False, + read_only=True, + allow_null=True, + ), + False, + prefetch_fields=['manufacturer_part'], ) MPN = serializers.CharField( @@ -535,14 +499,14 @@ class SupplierPartSerializer( Fields: in_stock: Current stock quantity for each SupplierPart """ - queryset = queryset.prefetch_related('part', 'pricebreaks') - queryset = queryset.annotate(in_stock=part.filters.annotate_total_stock()) queryset = queryset.annotate( on_order=company.filters.annotate_on_order_quantity() ) + queryset = queryset.prefetch_related('supplier', 'manufacturer_part') + return queryset def update(self, supplier_part, data): @@ -610,7 +574,9 @@ class SupplierPriceBreakSerializer( supplier_detail = enable_filter( CompanyBriefSerializer( source='part.supplier', many=False, read_only=True, allow_null=True - ) + ), + False, + prefetch_fields=['part__supplier'], ) part_detail = enable_filter( @@ -618,4 +584,5 @@ class SupplierPriceBreakSerializer( source='part', brief=True, many=False, read_only=True, allow_null=True ), False, + prefetch_fields=['part', 'part__part', 'part__part__pricing_data'], ) diff --git a/src/backend/InvenTree/company/test_api.py b/src/backend/InvenTree/company/test_api.py index 5e5ffd372f..3599160d93 100644 --- a/src/backend/InvenTree/company/test_api.py +++ b/src/backend/InvenTree/company/test_api.py @@ -210,6 +210,34 @@ class CompanyTest(InvenTreeAPITestCase): self.assertEqual(response.data['notes'], note) + def test_company_parameters(self): + """Test for annotation of 'parameters' field in Company API.""" + url = reverse('api-company-list') + + response = self.get(url, expected_code=200) + + self.assertGreater(len(response.data), 0) + + # Default = not included + for result in response.data: + self.assertNotIn('parameters', result) + + # Exclude parameters + response = self.get(url, {'parameters': 'false'}, expected_code=200) + + self.assertGreater(len(response.data), 0) + + for result in response.data: + self.assertNotIn('parameters', result) + + # Include parameters + response = self.get(url, {'parameters': 'true'}, expected_code=200) + + self.assertGreater(len(response.data), 0) + + for result in response.data: + self.assertIn('parameters', result) + class ContactTest(InvenTreeAPITestCase): """Tests for the Contact models.""" @@ -682,6 +710,42 @@ class SupplierPartTest(InvenTreeAPITestCase): for result in response.data: self.assertEqual(result['supplier'], company.pk) + def test_filterable_fields(self): + """Test inclusion/exclusion of optional API fields.""" + fields = { + 'price_breaks': False, + 'part_detail': False, + 'supplier_detail': False, + 'manufacturer_detail': False, + 'manufacturer_part_detail': False, + } + + url = reverse('api-supplier-part-list') + + for field, included in fields.items(): + # Test default behavior + response = self.get(url, data={}, expected_code=200) + self.assertGreater(len(response.data), 0) + self.assertEqual( + included, + field in response.data[0], + f'Field: {field} failed default test', + ) + + # Test explicit inclusion + response = self.get(url, data={field: 'true'}, expected_code=200) + self.assertGreater(len(response.data), 0) + self.assertIn( + field, response.data[0], f'Field: {field} failed inclusion test' + ) + + # Test explicit exclusion + response = self.get(url, data={field: 'false'}, expected_code=200) + self.assertGreater(len(response.data), 0) + self.assertNotIn( + field, response.data[0], f'Field: {field} failed exclusion test' + ) + class CompanyMetadataAPITest(InvenTreeAPITestCase): """Unit tests for the various metadata endpoints of API.""" diff --git a/src/backend/InvenTree/company/test_migrations.py b/src/backend/InvenTree/company/test_migrations.py index 305eaf6031..cfea9f7cca 100644 --- a/src/backend/InvenTree/company/test_migrations.py +++ b/src/backend/InvenTree/company/test_migrations.py @@ -316,7 +316,7 @@ class TestSupplierPartQuantity(MigratorTestCase): """Test that the supplier part quantity is correctly migrated.""" migrate_from = ('company', '0058_auto_20230515_0004') - migrate_to = ('company', unit_test.getNewestMigrationFile('company')) + migrate_to = ('company', '0062_contact_metadata') def prepare(self): """Prepare a number of SupplierPart objects.""" @@ -361,3 +361,80 @@ class TestSupplierPartQuantity(MigratorTestCase): # And the 'pack_size' attribute has been removed with self.assertRaises(AttributeError): sp.pack_size + + +class TestManufacturerPartParameterMigration(MigratorTestCase): + """Test migration of ManufacturerPartParameter data. + + Ref: https://github.com/inventree/InvenTree/pull/10699 + + In the referenced PR: + + - Generic ParameterTemplate and Parameter models were created + - Existing ManufacturerPartParameter data was migrated to the new models + - ManufacturerPartParameter model was removed + """ + + migrate_from = ('common', '0038_alter_attachment_model_type') + migrate_to = ('company', '0077_delete_manufacturerpartparameter') + + def prepare(self): + """Create some existing data before migration.""" + Part = self.old_state.apps.get_model('part', 'part') + + Company = self.old_state.apps.get_model('company', 'company') + ManufacturerPart = self.old_state.apps.get_model('company', 'manufacturerpart') + ManufacturerPartParameter = self.old_state.apps.get_model( + 'company', 'manufacturerpartparameter' + ) + + # Create a ManufacturerPart + part = Part.objects.create( + name='PART', + description='A purchaseable part', + purchaseable=True, + level=0, + tree_id=0, + lft=0, + rght=0, + ) + + manufacturer = Company.objects.create( + name='Manufacturer', description='A manufacturer', is_manufacturer=True + ) + + manu_part = ManufacturerPart.objects.create( + part=part, manufacturer=manufacturer, MPN='MPN-001' + ) + + # Create a parameter which does NOT correlate with any existing template + for name in ['Width', 'Height', 'Depth']: + ManufacturerPartParameter.objects.create( + manufacturer_part=manu_part, name=name, value='100', units='mm' + ) + + def test_manufacturer_part_parameter_migration(self): + """Test that ManufacturerPartParameter data has been migrated correctly.""" + ContentType = self.new_state.apps.get_model('contenttypes', 'contenttype') + ParameterTemplate = self.new_state.apps.get_model('common', 'parametertemplate') + Parameter = self.new_state.apps.get_model('common', 'parameter') + ManufacturerPart = self.new_state.apps.get_model('company', 'manufacturerpart') + + # There should be 6 ParameterTemplate objects + self.assertEqual(ParameterTemplate.objects.count(), 3) + + manu_part = ManufacturerPart.objects.first() + + content_type, _created = ContentType.objects.get_or_create( + app_label='company', model='manufacturerpart' + ) + + # There should be 3 Parameter objects linked to the ManufacturerPart + params = Parameter.objects.filter( + model_type=content_type, model_id=manu_part.pk + ) + + self.assertEqual(params.count(), 3) + + for name in ['Width', 'Height', 'Depth']: + self.assertTrue(params.filter(template__name=name).exists()) diff --git a/src/backend/InvenTree/config_template.yaml b/src/backend/InvenTree/config_template.yaml index 4fa23d3eb3..a65509f072 100644 --- a/src/backend/InvenTree/config_template.yaml +++ b/src/backend/InvenTree/config_template.yaml @@ -36,6 +36,8 @@ debug: False # Additional debug options debug_querycount: False +debug_silk: False +debug_silk_profiling: False debug_shell: False # Set to False to disable the admin interface, or use the environment variable INVENTREE_ADMIN_ENABLED @@ -44,6 +46,12 @@ debug_shell: False # Set the admin URL, or use the environment variable INVENTREE_ADMIN_URL #admin_url: 'admin' +# Add new user on first startup by either adding values here or from a file +#admin_user: admin +#admin_email: info@example.com +#admin_password: inventree +#admin_password_file: '/etc/inventree/admin_password.txt' + # Configure the system logging level (or use environment variable INVENTREE_LOG_LEVEL) # Options: DEBUG / INFO / WARNING / ERROR / CRITICAL log_level: WARNING @@ -67,13 +75,6 @@ language: en-us # System time-zone (default is UTC). Reference: https://en.wikipedia.org/wiki/List_of_tz_database_time_zones timezone: UTC - -# Add new user on first startup by either adding values here or from a file -#admin_user: admin -#admin_email: info@example.com -#admin_password: inventree -#admin_password_file: '/etc/inventree/admin_password.txt' - # Email backend configuration # See https://docs.inventree.org/en/stable/settings/email for more information on email configuration # You can either use (1) SMTP, (2) console or (3) anymail backends diff --git a/src/backend/InvenTree/data_exporter/mixins.py b/src/backend/InvenTree/data_exporter/mixins.py index 33077354ff..316dfdfbce 100644 --- a/src/backend/InvenTree/data_exporter/mixins.py +++ b/src/backend/InvenTree/data_exporter/mixins.py @@ -53,7 +53,7 @@ class DataExportSerializerMixin: Determine if the serializer is being used for data export, and if so, adjust the serializer fields accordingly. """ - exporting = kwargs.pop('exporting', False) + self._exporting_data = exporting = kwargs.pop('exporting', False) super().__init__(*args, **kwargs) @@ -264,10 +264,8 @@ class DataExportViewMixin: exporting = kwargs.pop('exporting', None) if exporting is None: - exporting = ( - self.request.method.lower() in ['options', 'get'] - and self.is_exporting() - ) + method = str(getattr(self.request, 'method', '')).lower() + exporting = method in ['options', 'get'] and self.is_exporting() if exporting: # Override kwargs when initializing the DataExportOptionsSerializer diff --git a/src/backend/InvenTree/generic/states/api.py b/src/backend/InvenTree/generic/states/api.py index 925fc772ce..4047c69161 100644 --- a/src/backend/InvenTree/generic/states/api.py +++ b/src/backend/InvenTree/generic/states/api.py @@ -129,11 +129,24 @@ class AllStatusViews(StatusView): # Find all inherited status classes status_classes = inheritors(StatusCode) - for cls in status_classes: - cls_data = {'status_class': cls.__name__, 'values': cls.dict()} + # Pre-fetch all custom values from the database + # This reduces the number of queries required + from common.models import InvenTreeCustomUserStateModel - # Extend with custom values - for item in cls.custom_values(): + custom_states_map = {} + for state in InvenTreeCustomUserStateModel.objects.all(): + key = state.reference_status + if key not in custom_states_map: + custom_states_map[key] = [] + custom_states_map[key].append(state) + + for cls in status_classes: + cls_data = {'status_class': cls.__name__, 'values': cls.dict(custom=False)} + + # Extend with custom values (from pre-cached queryset) + custom_states = custom_states_map.get(cls.__name__, []) + + for item in custom_states: label = str(item.name) if label not in cls_data['values']: cls_data['values'][label] = { diff --git a/src/backend/InvenTree/generic/states/fields.py b/src/backend/InvenTree/generic/states/fields.py index 458a13dacb..9ffa81d8eb 100644 --- a/src/backend/InvenTree/generic/states/fields.py +++ b/src/backend/InvenTree/generic/states/fields.py @@ -144,7 +144,7 @@ class InvenTreeCustomStatusModelField(models.PositiveIntegerField): validators.append(CustomStatusCodeValidator(status_class=self.status_class)) help_text = _('Additional status information for this item') - if InvenTree.ready.isGeneratingSchema(): + if InvenTree.ready.isGeneratingSchema() and self.status_class: help_text = ( help_text + '\n\n' diff --git a/src/backend/InvenTree/locale/ar/LC_MESSAGES/django.po b/src/backend/InvenTree/locale/ar/LC_MESSAGES/django.po index 0afd69cdf0..46d379db99 100644 --- a/src/backend/InvenTree/locale/ar/LC_MESSAGES/django.po +++ b/src/backend/InvenTree/locale/ar/LC_MESSAGES/django.po @@ -2,8 +2,8 @@ msgid "" msgstr "" "Project-Id-Version: inventree\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-11-19 04:55+0000\n" -"PO-Revision-Date: 2025-11-19 04:59\n" +"POT-Creation-Date: 2025-12-07 07:33+0000\n" +"PO-Revision-Date: 2025-12-07 07:36\n" "Last-Translator: \n" "Language-Team: Arabic\n" "Language: ar_SA\n" @@ -57,7 +57,7 @@ msgstr "" msgid "This field must be unique." msgstr "" -#: InvenTree/api.py:775 +#: InvenTree/api.py:803 msgid "User does not have permission to view this model" msgstr "المستخدم ليس لديه الصلاحية لعرض هذا النموذج" @@ -81,22 +81,22 @@ msgstr "عنوان البريد الإلكتروني الرئيسي المقدم msgid "The provided email domain is not approved." msgstr "لم تتم الموافقة على نطاق البريد الإلكتروني المقدم." -#: InvenTree/conversion.py:166 +#: InvenTree/conversion.py:240 #, python-brace-format msgid "Invalid unit provided ({unit})" msgstr "الوحدة المقدمة غير صالحة ({unit})" -#: InvenTree/conversion.py:183 +#: InvenTree/conversion.py:257 msgid "No value provided" msgstr "لم يتم تقديم قيمة" -#: InvenTree/conversion.py:210 +#: InvenTree/conversion.py:284 #, python-brace-format msgid "Could not convert {original} to {unit}" msgstr "تعذّر تحويل {original} إلى {unit}" -#: InvenTree/conversion.py:212 InvenTree/conversion.py:226 -#: InvenTree/helpers.py:597 order/models.py:720 order/models.py:1015 +#: InvenTree/conversion.py:286 InvenTree/conversion.py:300 +#: InvenTree/helpers.py:597 order/models.py:721 order/models.py:1016 msgid "Invalid quantity provided" msgstr "الكمية المقدمة غير صحيحة" @@ -112,11 +112,11 @@ msgstr "أدخل التاريخ" msgid "Invalid decimal value" msgstr "" -#: InvenTree/fields.py:218 InvenTree/models.py:1067 build/serializers.py:509 -#: build/serializers.py:580 build/serializers.py:1788 company/models.py:857 -#: order/models.py:1780 +#: InvenTree/fields.py:218 InvenTree/models.py:1228 build/serializers.py:517 +#: build/serializers.py:588 build/serializers.py:1796 company/models.py:811 +#: order/models.py:1781 #: report/templates/report/inventree_build_order_report.html:172 -#: stock/models.py:2848 stock/models.py:2972 stock/serializers.py:717 +#: stock/models.py:2865 stock/models.py:2989 stock/serializers.py:717 #: stock/serializers.py:893 stock/serializers.py:1035 stock/serializers.py:1336 #: stock/serializers.py:1425 stock/serializers.py:1624 msgid "Notes" @@ -171,35 +171,35 @@ msgstr "إزالة علامات HTML من هذه القيمة" msgid "Data contains prohibited markdown content" msgstr "" -#: InvenTree/helpers_model.py:133 +#: InvenTree/helpers_model.py:134 msgid "Connection error" msgstr "خطأ فى الاتصال" -#: InvenTree/helpers_model.py:138 InvenTree/helpers_model.py:145 +#: InvenTree/helpers_model.py:139 InvenTree/helpers_model.py:146 msgid "Server responded with invalid status code" msgstr "" -#: InvenTree/helpers_model.py:141 +#: InvenTree/helpers_model.py:142 msgid "Exception occurred" msgstr "" -#: InvenTree/helpers_model.py:151 +#: InvenTree/helpers_model.py:152 msgid "Server responded with invalid Content-Length value" msgstr "" -#: InvenTree/helpers_model.py:154 +#: InvenTree/helpers_model.py:155 msgid "Image size is too large" msgstr "" -#: InvenTree/helpers_model.py:166 +#: InvenTree/helpers_model.py:167 msgid "Image download exceeded maximum size" msgstr "" -#: InvenTree/helpers_model.py:171 +#: InvenTree/helpers_model.py:172 msgid "Remote server returned empty response" msgstr "" -#: InvenTree/helpers_model.py:179 +#: InvenTree/helpers_model.py:180 msgid "Supplied URL is not a valid image file" msgstr "" @@ -207,7 +207,7 @@ msgstr "" msgid "Log in to the app" msgstr "" -#: InvenTree/magic_login.py:41 company/models.py:172 users/serializers.py:198 +#: InvenTree/magic_login.py:41 company/models.py:173 users/serializers.py:198 msgid "Email" msgstr "البريد الإلكتروني" @@ -215,160 +215,176 @@ msgstr "البريد الإلكتروني" msgid "You must enable two-factor authentication before doing anything else." msgstr "" -#: InvenTree/models.py:111 +#: InvenTree/models.py:114 msgid "Error running plugin validation" msgstr "خطأ في تشغيل التحقق من صحة الإضافات" -#: InvenTree/models.py:192 +#: InvenTree/models.py:195 msgid "Metadata must be a python dict object" msgstr "البيانات الوصفية يجب أن تكون كائن القالب بايثون" -#: InvenTree/models.py:198 +#: InvenTree/models.py:201 msgid "Plugin Metadata" msgstr "" -#: InvenTree/models.py:199 +#: InvenTree/models.py:202 msgid "JSON metadata field, for use by external plugins" msgstr "" -#: InvenTree/models.py:382 +#: InvenTree/models.py:385 msgid "Improperly formatted pattern" msgstr "" -#: InvenTree/models.py:389 +#: InvenTree/models.py:392 msgid "Unknown format key specified" msgstr "" -#: InvenTree/models.py:395 +#: InvenTree/models.py:398 msgid "Missing required format key" msgstr "" -#: InvenTree/models.py:406 +#: InvenTree/models.py:409 msgid "Reference field cannot be empty" msgstr "" -#: InvenTree/models.py:414 +#: InvenTree/models.py:417 msgid "Reference must match required pattern" msgstr "" -#: InvenTree/models.py:445 +#: InvenTree/models.py:448 msgid "Reference number is too large" msgstr "" -#: InvenTree/models.py:743 +#: InvenTree/models.py:896 msgid "Invalid choice" msgstr "" -#: InvenTree/models.py:856 common/models.py:1410 common/models.py:1837 -#: common/models.py:2096 common/models.py:2221 common/serializers.py:535 -#: company/models.py:615 generic/states/serializers.py:20 machine/models.py:25 -#: part/models.py:1039 part/models.py:3850 plugin/models.py:54 +#: InvenTree/models.py:1017 common/models.py:1414 common/models.py:1841 +#: common/models.py:2102 common/models.py:2227 common/models.py:2494 +#: common/serializers.py:539 generic/states/serializers.py:20 +#: machine/models.py:25 part/models.py:1127 plugin/models.py:54 #: report/models.py:216 stock/models.py:84 msgid "Name" msgstr "" -#: InvenTree/models.py:862 build/models.py:252 common/models.py:171 -#: common/models.py:2228 common/models.py:2341 company/models.py:543 -#: company/models.py:848 order/models.py:442 order/models.py:1825 -#: part/models.py:1062 part/models.py:3865 report/models.py:222 +#: InvenTree/models.py:1023 build/models.py:253 common/models.py:175 +#: common/models.py:2234 common/models.py:2347 common/models.py:2509 +#: company/models.py:545 company/models.py:802 order/models.py:443 +#: order/models.py:1826 part/models.py:1150 report/models.py:222 #: report/models.py:815 report/models.py:841 #: report/templates/report/inventree_build_order_report.html:117 #: stock/models.py:90 msgid "Description" msgstr "" -#: InvenTree/models.py:863 stock/models.py:91 +#: InvenTree/models.py:1024 stock/models.py:91 msgid "Description (optional)" msgstr "" -#: InvenTree/models.py:878 common/models.py:2394 +#: InvenTree/models.py:1039 common/models.py:2815 msgid "Path" msgstr "" -#: InvenTree/models.py:983 +#: InvenTree/models.py:1144 msgid "Duplicate names cannot exist under the same parent" msgstr "" -#: InvenTree/models.py:1067 +#: InvenTree/models.py:1228 msgid "Markdown notes (optional)" msgstr "" -#: InvenTree/models.py:1098 +#: InvenTree/models.py:1259 msgid "Barcode Data" msgstr "" -#: InvenTree/models.py:1099 +#: InvenTree/models.py:1260 msgid "Third party barcode data" msgstr "" -#: InvenTree/models.py:1105 +#: InvenTree/models.py:1266 msgid "Barcode Hash" msgstr "" -#: InvenTree/models.py:1106 +#: InvenTree/models.py:1267 msgid "Unique hash of barcode data" msgstr "" -#: InvenTree/models.py:1187 +#: InvenTree/models.py:1348 msgid "Existing barcode found" msgstr "" -#: InvenTree/models.py:1269 +#: InvenTree/models.py:1430 msgid "Task Failure" msgstr "" -#: InvenTree/models.py:1270 +#: InvenTree/models.py:1431 #, python-brace-format msgid "Background worker task '{f}' failed after {n} attempts" msgstr "" -#: InvenTree/models.py:1297 +#: InvenTree/models.py:1458 msgid "Server Error" msgstr "" -#: InvenTree/models.py:1298 +#: InvenTree/models.py:1459 msgid "An error has been logged by the server." msgstr "" -#: InvenTree/models.py:1340 common/models.py:1748 +#: InvenTree/models.py:1501 common/models.py:1752 #: report/templates/report/inventree_bill_of_materials_report.html:126 #: report/templates/report/inventree_bill_of_materials_report.html:148 #: report/templates/report/inventree_return_order_report.html:35 msgid "Image" msgstr "" -#: InvenTree/serializers.py:253 part/models.py:4571 +#: InvenTree/serializers.py:255 part/models.py:4196 msgid "Must be a valid number" msgstr "" -#: InvenTree/serializers.py:295 company/models.py:214 part/models.py:3285 +#: InvenTree/serializers.py:297 company/models.py:215 part/models.py:3349 msgid "Currency" msgstr "" -#: InvenTree/serializers.py:298 part/serializers.py:1385 +#: InvenTree/serializers.py:300 part/serializers.py:1250 msgid "Select currency from available options" msgstr "" -#: InvenTree/serializers.py:653 +#: InvenTree/serializers.py:654 +msgid "This field may not be null." +msgstr "" + +#: InvenTree/serializers.py:660 msgid "Invalid value" msgstr "" -#: InvenTree/serializers.py:690 +#: InvenTree/serializers.py:697 msgid "Remote Image" msgstr "" -#: InvenTree/serializers.py:691 +#: InvenTree/serializers.py:698 msgid "URL of remote image file" msgstr "" -#: InvenTree/serializers.py:709 +#: InvenTree/serializers.py:716 msgid "Downloading images from remote URL is not enabled" msgstr "" -#: InvenTree/serializers.py:716 +#: InvenTree/serializers.py:723 msgid "Failed to download image from remote URL" msgstr "" +#: InvenTree/serializers.py:806 +msgid "Invalid content type format" +msgstr "" + +#: InvenTree/serializers.py:809 +msgid "Content type not found" +msgstr "" + +#: InvenTree/serializers.py:815 +msgid "Content type does not match required mixin class" +msgstr "" + #: InvenTree/setting/locales.py:20 msgid "Arabic" msgstr "العربيّة" @@ -537,30 +553,30 @@ msgstr "" msgid "Not a valid currency code" msgstr "" -#: build/api.py:54 order/api.py:111 order/api.py:270 order/api.py:1373 -#: order/serializers.py:132 +#: build/api.py:54 order/api.py:116 order/api.py:275 order/api.py:1378 +#: order/serializers.py:133 msgid "Order Status" msgstr "" -#: build/api.py:80 build/models.py:264 +#: build/api.py:80 build/models.py:265 msgid "Parent Build" msgstr "" -#: build/api.py:84 build/api.py:831 order/api.py:547 order/api.py:770 -#: order/api.py:1174 order/api.py:1449 stock/api.py:573 +#: build/api.py:84 build/api.py:837 order/api.py:553 order/api.py:776 +#: order/api.py:1179 order/api.py:1454 stock/api.py:573 msgid "Include Variants" msgstr "" -#: build/api.py:100 build/api.py:466 build/api.py:845 build/models.py:270 -#: build/serializers.py:1225 build/serializers.py:1356 -#: build/serializers.py:1427 company/models.py:1067 company/serializers.py:445 -#: order/api.py:298 order/api.py:302 order/api.py:929 order/api.py:1187 -#: order/api.py:1190 order/models.py:1941 order/models.py:2108 -#: order/models.py:2109 part/api.py:1233 part/api.py:1236 part/api.py:1302 -#: part/api.py:1589 part/models.py:472 part/models.py:3296 part/models.py:3439 -#: part/models.py:3497 part/models.py:3518 part/models.py:3540 -#: part/models.py:3679 part/models.py:4046 part/models.py:4368 -#: part/models.py:4787 part/serializers.py:1928 +#: build/api.py:100 build/api.py:472 build/api.py:851 build/models.py:271 +#: build/serializers.py:1233 build/serializers.py:1364 +#: build/serializers.py:1435 company/models.py:1021 company/serializers.py:490 +#: order/api.py:303 order/api.py:307 order/api.py:934 order/api.py:1192 +#: order/api.py:1195 order/models.py:1942 order/models.py:2109 +#: order/models.py:2110 part/api.py:1160 part/api.py:1163 part/api.py:1314 +#: part/models.py:550 part/models.py:3360 part/models.py:3503 +#: part/models.py:3561 part/models.py:3582 part/models.py:3604 +#: part/models.py:3743 part/models.py:3993 part/models.py:4412 +#: part/serializers.py:1801 #: report/templates/report/inventree_bill_of_materials_report.html:110 #: report/templates/report/inventree_bill_of_materials_report.html:137 #: report/templates/report/inventree_build_order_report.html:109 @@ -580,9 +596,9 @@ msgstr "" msgid "Part" msgstr "" -#: build/api.py:120 build/api.py:123 build/serializers.py:1438 part/api.py:980 -#: part/api.py:1316 part/api.py:1600 part/models.py:1080 part/models.py:3568 -#: part/models.py:4162 part/serializers.py:1752 stock/api.py:869 +#: build/api.py:120 build/api.py:123 build/serializers.py:1446 part/api.py:975 +#: part/api.py:1325 part/models.py:435 part/models.py:1168 part/models.py:3632 +#: part/serializers.py:1617 stock/api.py:869 msgid "Category" msgstr "" @@ -590,7 +606,7 @@ msgstr "" msgid "Ancestor Build" msgstr "" -#: build/api.py:152 order/api.py:129 +#: build/api.py:152 order/api.py:134 msgid "Assigned to me" msgstr "" @@ -638,134 +654,134 @@ msgstr "" msgid "Completed after" msgstr "" -#: build/api.py:249 order/api.py:226 +#: build/api.py:249 order/api.py:231 msgid "Min Date" msgstr "" -#: build/api.py:272 order/api.py:245 +#: build/api.py:272 order/api.py:250 msgid "Max Date" msgstr "" -#: build/api.py:297 build/api.py:300 part/api.py:217 stock/api.py:961 +#: build/api.py:297 build/api.py:300 part/api.py:212 stock/api.py:961 msgid "Exclude Tree" msgstr "" -#: build/api.py:405 +#: build/api.py:411 msgid "Build must be cancelled before it can be deleted" msgstr "" -#: build/api.py:449 build/serializers.py:1374 part/models.py:4402 +#: build/api.py:455 build/serializers.py:1382 part/models.py:4027 msgid "Consumable" msgstr "" -#: build/api.py:452 build/serializers.py:1377 part/models.py:4396 +#: build/api.py:458 build/serializers.py:1385 part/models.py:4021 msgid "Optional" msgstr "" -#: build/api.py:455 build/serializers.py:1415 common/setting/system.py:456 -#: part/models.py:1202 part/serializers.py:1714 part/serializers.py:1725 +#: build/api.py:461 build/serializers.py:1423 common/setting/system.py:456 +#: part/models.py:1290 part/serializers.py:1579 part/serializers.py:1590 #: stock/api.py:639 msgid "Assembly" msgstr "" -#: build/api.py:458 +#: build/api.py:464 msgid "Tracked" msgstr "" -#: build/api.py:461 build/serializers.py:1380 part/models.py:1220 +#: build/api.py:467 build/serializers.py:1388 part/models.py:1308 msgid "Testable" msgstr "" -#: build/api.py:471 order/api.py:993 order/api.py:1363 +#: build/api.py:477 order/api.py:998 order/api.py:1368 msgid "Order Outstanding" msgstr "" -#: build/api.py:481 build/serializers.py:1464 order/api.py:952 +#: build/api.py:487 build/serializers.py:1472 order/api.py:957 msgid "Allocated" msgstr "" -#: build/api.py:490 build/models.py:1672 build/serializers.py:1393 +#: build/api.py:496 build/models.py:1673 build/serializers.py:1401 msgid "Consumed" msgstr "" -#: build/api.py:499 company/models.py:912 company/serializers.py:440 +#: build/api.py:505 company/models.py:866 company/serializers.py:467 #: templates/email/build_order_required_stock.html:19 #: templates/email/low_stock_notification.html:17 #: templates/email/part_event_notification.html:18 msgid "Available" msgstr "" -#: build/api.py:523 build/serializers.py:1466 company/serializers.py:437 -#: order/serializers.py:1281 part/serializers.py:959 part/serializers.py:1306 -#: part/serializers.py:1761 +#: build/api.py:529 build/serializers.py:1474 company/serializers.py:464 +#: order/serializers.py:1295 part/serializers.py:844 part/serializers.py:1171 +#: part/serializers.py:1626 msgid "On Order" msgstr "" -#: build/api.py:868 build/models.py:117 order/models.py:1974 +#: build/api.py:874 build/models.py:118 order/models.py:1975 #: report/templates/report/inventree_build_order_report.html:105 #: stock/serializers.py:93 templates/email/build_order_completed.html:16 #: templates/email/overdue_build_order.html:15 msgid "Build Order" msgstr "" -#: build/api.py:882 build/api.py:886 build/serializers.py:372 -#: build/serializers.py:497 build/serializers.py:567 build/serializers.py:1251 -#: build/serializers.py:1256 order/api.py:1234 order/api.py:1239 -#: order/serializers.py:833 order/serializers.py:973 order/serializers.py:2042 +#: build/api.py:888 build/api.py:892 build/serializers.py:380 +#: build/serializers.py:505 build/serializers.py:575 build/serializers.py:1259 +#: build/serializers.py:1264 order/api.py:1239 order/api.py:1244 +#: order/serializers.py:844 order/serializers.py:984 order/serializers.py:2059 #: stock/api.py:987 stock/serializers.py:111 stock/serializers.py:601 #: stock/serializers.py:710 stock/serializers.py:888 stock/serializers.py:1418 -#: stock/serializers.py:1731 stock/serializers.py:1780 +#: stock/serializers.py:1739 stock/serializers.py:1788 #: templates/email/stale_stock_notification.html:18 users/models.py:549 msgid "Location" msgstr "" -#: build/api.py:894 +#: build/api.py:900 msgid "Output" msgstr "" -#: build/api.py:896 +#: build/api.py:902 msgid "Filter by output stock item ID. Use 'null' to find uninstalled build items." msgstr "" -#: build/models.py:118 users/ruleset.py:31 +#: build/models.py:119 users/ruleset.py:31 msgid "Build Orders" msgstr "" -#: build/models.py:168 +#: build/models.py:169 msgid "Assembly BOM has not been validated" msgstr "" -#: build/models.py:175 +#: build/models.py:176 msgid "Build order cannot be created for an inactive part" msgstr "" -#: build/models.py:182 +#: build/models.py:183 msgid "Build order cannot be created for an unlocked part" msgstr "" -#: build/models.py:200 +#: build/models.py:201 msgid "Build orders can only be externally fulfilled for purchaseable parts" msgstr "" -#: build/models.py:207 order/models.py:369 +#: build/models.py:208 order/models.py:370 msgid "Responsible user or group must be specified" msgstr "" -#: build/models.py:212 +#: build/models.py:213 msgid "Build order part cannot be changed" msgstr "" -#: build/models.py:217 order/models.py:382 +#: build/models.py:218 order/models.py:383 msgid "Target date must be after start date" msgstr "" -#: build/models.py:245 +#: build/models.py:246 msgid "Build Order Reference" msgstr "" -#: build/models.py:246 build/serializers.py:1371 order/models.py:614 -#: order/models.py:1311 order/models.py:1773 order/models.py:2712 -#: part/models.py:4442 +#: build/models.py:247 build/serializers.py:1379 order/models.py:615 +#: order/models.py:1312 order/models.py:1774 order/models.py:2713 +#: part/models.py:4067 #: report/templates/report/inventree_bill_of_materials_report.html:139 #: report/templates/report/inventree_purchase_order_report.html:35 #: report/templates/report/inventree_return_order_report.html:26 @@ -773,230 +789,230 @@ msgstr "" msgid "Reference" msgstr "" -#: build/models.py:255 +#: build/models.py:256 msgid "Brief description of the build (optional)" msgstr "" -#: build/models.py:265 +#: build/models.py:266 msgid "BuildOrder to which this build is allocated" msgstr "" -#: build/models.py:274 +#: build/models.py:275 msgid "Select part to build" msgstr "" -#: build/models.py:279 +#: build/models.py:280 msgid "Sales Order Reference" msgstr "" -#: build/models.py:284 +#: build/models.py:285 msgid "SalesOrder to which this build is allocated" msgstr "" -#: build/models.py:289 build/serializers.py:1097 +#: build/models.py:290 build/serializers.py:1105 msgid "Source Location" msgstr "" -#: build/models.py:295 +#: build/models.py:296 msgid "Select location to take stock from for this build (leave blank to take from any stock location)" msgstr "" -#: build/models.py:301 +#: build/models.py:302 msgid "External Build" msgstr "" -#: build/models.py:302 +#: build/models.py:303 msgid "This build order is fulfilled externally" msgstr "" -#: build/models.py:307 +#: build/models.py:308 msgid "Destination Location" msgstr "" -#: build/models.py:312 +#: build/models.py:313 msgid "Select location where the completed items will be stored" msgstr "" -#: build/models.py:316 +#: build/models.py:317 msgid "Build Quantity" msgstr "" -#: build/models.py:319 +#: build/models.py:320 msgid "Number of stock items to build" msgstr "" -#: build/models.py:323 +#: build/models.py:324 msgid "Completed items" msgstr "" -#: build/models.py:325 +#: build/models.py:326 msgid "Number of stock items which have been completed" msgstr "" -#: build/models.py:329 +#: build/models.py:330 msgid "Build Status" msgstr "" -#: build/models.py:334 +#: build/models.py:335 msgid "Build status code" msgstr "" -#: build/models.py:343 build/serializers.py:359 order/serializers.py:849 +#: build/models.py:344 build/serializers.py:367 order/serializers.py:860 #: stock/models.py:1100 stock/serializers.py:85 stock/serializers.py:1591 msgid "Batch Code" msgstr "" -#: build/models.py:347 build/serializers.py:360 +#: build/models.py:348 build/serializers.py:368 msgid "Batch code for this build output" msgstr "" -#: build/models.py:351 order/models.py:479 order/serializers.py:186 -#: part/models.py:1283 +#: build/models.py:352 order/models.py:480 order/serializers.py:193 +#: part/models.py:1371 msgid "Creation Date" msgstr "" -#: build/models.py:357 +#: build/models.py:358 msgid "Build start date" msgstr "" -#: build/models.py:358 +#: build/models.py:359 msgid "Scheduled start date for this build order" msgstr "" -#: build/models.py:364 +#: build/models.py:365 msgid "Target completion date" msgstr "" -#: build/models.py:366 +#: build/models.py:367 msgid "Target date for build completion. Build will be overdue after this date." msgstr "" -#: build/models.py:371 order/models.py:667 order/models.py:2751 +#: build/models.py:372 order/models.py:668 order/models.py:2752 msgid "Completion Date" msgstr "" -#: build/models.py:379 +#: build/models.py:380 msgid "completed by" msgstr "" -#: build/models.py:388 +#: build/models.py:389 msgid "Issued by" msgstr "" -#: build/models.py:389 +#: build/models.py:390 msgid "User who issued this build order" msgstr "" -#: build/models.py:398 common/models.py:180 order/api.py:179 -#: order/models.py:504 part/models.py:1300 +#: build/models.py:399 common/models.py:184 order/api.py:184 +#: order/models.py:505 part/models.py:1388 #: report/templates/report/inventree_build_order_report.html:158 msgid "Responsible" msgstr "" -#: build/models.py:399 +#: build/models.py:400 msgid "User or group responsible for this build order" msgstr "" -#: build/models.py:404 stock/models.py:1093 +#: build/models.py:405 stock/models.py:1093 msgid "External Link" msgstr "" -#: build/models.py:406 common/models.py:1984 part/models.py:1114 +#: build/models.py:407 common/models.py:1990 part/models.py:1202 #: stock/models.py:1095 msgid "Link to external URL" msgstr "" -#: build/models.py:411 +#: build/models.py:412 msgid "Build Priority" msgstr "" -#: build/models.py:414 +#: build/models.py:415 msgid "Priority of this build order" msgstr "" -#: build/models.py:422 common/models.py:150 common/models.py:164 -#: order/api.py:165 order/models.py:451 order/models.py:1805 +#: build/models.py:423 common/models.py:154 common/models.py:168 +#: order/api.py:170 order/models.py:452 order/models.py:1806 msgid "Project Code" msgstr "" -#: build/models.py:423 +#: build/models.py:424 msgid "Project code for this build order" msgstr "" -#: build/models.py:676 +#: build/models.py:677 msgid "Cannot complete build order with open child builds" msgstr "" -#: build/models.py:681 +#: build/models.py:682 msgid "Cannot complete build order with incomplete outputs" msgstr "" -#: build/models.py:700 build/models.py:830 +#: build/models.py:701 build/models.py:831 msgid "Failed to offload task to complete build allocations" msgstr "" -#: build/models.py:723 +#: build/models.py:724 #, python-brace-format msgid "Build order {build} has been completed" msgstr "" -#: build/models.py:729 +#: build/models.py:730 msgid "A build order has been completed" msgstr "" -#: build/models.py:911 build/serializers.py:407 +#: build/models.py:912 build/serializers.py:415 msgid "Serial numbers must be provided for trackable parts" msgstr "" -#: build/models.py:1042 build/models.py:1129 +#: build/models.py:1043 build/models.py:1130 msgid "No build output specified" msgstr "" -#: build/models.py:1045 +#: build/models.py:1046 msgid "Build output is already completed" msgstr "" -#: build/models.py:1048 +#: build/models.py:1049 msgid "Build output does not match Build Order" msgstr "" -#: build/models.py:1136 build/models.py:1234 build/serializers.py:285 -#: build/serializers.py:335 build/serializers.py:965 build/serializers.py:1739 -#: order/models.py:717 order/serializers.py:658 order/serializers.py:844 -#: part/serializers.py:1708 stock/models.py:940 stock/models.py:1430 +#: build/models.py:1137 build/models.py:1235 build/serializers.py:293 +#: build/serializers.py:343 build/serializers.py:973 build/serializers.py:1747 +#: order/models.py:718 order/serializers.py:669 order/serializers.py:855 +#: part/serializers.py:1573 stock/models.py:940 stock/models.py:1430 #: stock/models.py:1878 stock/serializers.py:688 stock/serializers.py:1580 msgid "Quantity must be greater than zero" msgstr "" -#: build/models.py:1140 build/models.py:1239 build/serializers.py:290 +#: build/models.py:1141 build/models.py:1240 build/serializers.py:298 msgid "Quantity cannot be greater than the output quantity" msgstr "" -#: build/models.py:1214 build/serializers.py:606 +#: build/models.py:1215 build/serializers.py:614 msgid "Build output has not passed all required tests" msgstr "" -#: build/models.py:1217 build/serializers.py:601 +#: build/models.py:1218 build/serializers.py:609 #, python-brace-format msgid "Build output {serial} has not passed all required tests" msgstr "" -#: build/models.py:1229 +#: build/models.py:1230 msgid "Cannot partially complete a build output with allocated items" msgstr "" -#: build/models.py:1627 +#: build/models.py:1628 msgid "Build Order Line Item" msgstr "" -#: build/models.py:1651 +#: build/models.py:1652 msgid "Build object" msgstr "" -#: build/models.py:1663 build/models.py:1974 build/serializers.py:271 -#: build/serializers.py:320 build/serializers.py:1392 common/models.py:1340 -#: order/models.py:1756 order/models.py:2597 order/serializers.py:1696 -#: order/serializers.py:2124 part/models.py:3453 part/models.py:4390 +#: build/models.py:1664 build/models.py:1975 build/serializers.py:279 +#: build/serializers.py:328 build/serializers.py:1400 common/models.py:1344 +#: order/models.py:1757 order/models.py:2598 order/serializers.py:1710 +#: order/serializers.py:2141 part/models.py:3517 part/models.py:4015 #: report/templates/report/inventree_bill_of_materials_report.html:138 #: report/templates/report/inventree_build_order_report.html:113 #: report/templates/report/inventree_purchase_order_report.html:36 @@ -1014,427 +1030,427 @@ msgstr "" msgid "Quantity" msgstr "" -#: build/models.py:1664 +#: build/models.py:1665 msgid "Required quantity for build order" msgstr "" -#: build/models.py:1673 +#: build/models.py:1674 msgid "Quantity of consumed stock" msgstr "" -#: build/models.py:1772 +#: build/models.py:1773 msgid "Build item must specify a build output, as master part is marked as trackable" msgstr "" -#: build/models.py:1783 +#: build/models.py:1784 #, python-brace-format msgid "Allocated quantity ({q}) must not exceed available stock quantity ({a})" msgstr "" -#: build/models.py:1804 order/models.py:2546 +#: build/models.py:1805 order/models.py:2547 msgid "Stock item is over-allocated" msgstr "" -#: build/models.py:1809 order/models.py:2549 +#: build/models.py:1810 order/models.py:2550 msgid "Allocation quantity must be greater than zero" msgstr "" -#: build/models.py:1815 +#: build/models.py:1816 msgid "Quantity must be 1 for serialized stock" msgstr "" -#: build/models.py:1875 +#: build/models.py:1876 msgid "Selected stock item does not match BOM line" msgstr "" -#: build/models.py:1913 +#: build/models.py:1914 msgid "Allocated quantity exceeds available stock quantity" msgstr "" -#: build/models.py:1964 build/serializers.py:948 build/serializers.py:1240 -#: order/serializers.py:1533 order/serializers.py:1554 +#: build/models.py:1965 build/serializers.py:956 build/serializers.py:1248 +#: order/serializers.py:1547 order/serializers.py:1568 #: report/templates/report/inventree_sales_order_shipment_report.html:29 #: stock/api.py:1404 stock/models.py:456 stock/serializers.py:102 #: stock/serializers.py:800 stock/serializers.py:1274 stock/serializers.py:1386 msgid "Stock Item" msgstr "" -#: build/models.py:1965 +#: build/models.py:1966 msgid "Source stock item" msgstr "" -#: build/models.py:1975 +#: build/models.py:1976 msgid "Stock quantity to allocate to build" msgstr "" -#: build/models.py:1984 +#: build/models.py:1985 msgid "Install into" msgstr "" -#: build/models.py:1985 +#: build/models.py:1986 msgid "Destination stock item" msgstr "" -#: build/serializers.py:118 +#: build/serializers.py:120 msgid "Build Level" msgstr "" -#: build/serializers.py:128 +#: build/serializers.py:136 msgid "Part Name" msgstr "" -#: build/serializers.py:153 +#: build/serializers.py:161 msgid "Project Code Label" msgstr "" -#: build/serializers.py:219 build/serializers.py:974 +#: build/serializers.py:227 build/serializers.py:982 msgid "Build Output" msgstr "" -#: build/serializers.py:231 +#: build/serializers.py:239 msgid "Build output does not match the parent build" msgstr "" -#: build/serializers.py:235 +#: build/serializers.py:243 msgid "Output part does not match BuildOrder part" msgstr "" -#: build/serializers.py:239 +#: build/serializers.py:247 msgid "This build output has already been completed" msgstr "" -#: build/serializers.py:253 +#: build/serializers.py:261 msgid "This build output is not fully allocated" msgstr "" -#: build/serializers.py:272 build/serializers.py:321 +#: build/serializers.py:280 build/serializers.py:329 msgid "Enter quantity for build output" msgstr "" -#: build/serializers.py:343 +#: build/serializers.py:351 msgid "Integer quantity required for trackable parts" msgstr "" -#: build/serializers.py:349 +#: build/serializers.py:357 msgid "Integer quantity required, as the bill of materials contains trackable parts" msgstr "" -#: build/serializers.py:366 order/serializers.py:865 order/serializers.py:1700 +#: build/serializers.py:374 order/serializers.py:876 order/serializers.py:1714 #: stock/serializers.py:699 msgid "Serial Numbers" msgstr "" -#: build/serializers.py:367 +#: build/serializers.py:375 msgid "Enter serial numbers for build outputs" msgstr "" -#: build/serializers.py:373 +#: build/serializers.py:381 msgid "Stock location for build output" msgstr "" -#: build/serializers.py:388 +#: build/serializers.py:396 msgid "Auto Allocate Serial Numbers" msgstr "" -#: build/serializers.py:390 +#: build/serializers.py:398 msgid "Automatically allocate required items with matching serial numbers" msgstr "" -#: build/serializers.py:423 order/serializers.py:951 stock/api.py:1183 +#: build/serializers.py:431 order/serializers.py:962 stock/api.py:1183 #: stock/models.py:1901 msgid "The following serial numbers already exist or are invalid" msgstr "" -#: build/serializers.py:465 build/serializers.py:521 build/serializers.py:613 +#: build/serializers.py:473 build/serializers.py:529 build/serializers.py:621 msgid "A list of build outputs must be provided" msgstr "" -#: build/serializers.py:498 +#: build/serializers.py:506 msgid "Stock location for scrapped outputs" msgstr "" -#: build/serializers.py:504 +#: build/serializers.py:512 msgid "Discard Allocations" msgstr "" -#: build/serializers.py:505 +#: build/serializers.py:513 msgid "Discard any stock allocations for scrapped outputs" msgstr "" -#: build/serializers.py:510 +#: build/serializers.py:518 msgid "Reason for scrapping build output(s)" msgstr "" -#: build/serializers.py:568 +#: build/serializers.py:576 msgid "Location for completed build outputs" msgstr "" -#: build/serializers.py:576 +#: build/serializers.py:584 msgid "Accept Incomplete Allocation" msgstr "" -#: build/serializers.py:577 +#: build/serializers.py:585 msgid "Complete outputs if stock has not been fully allocated" msgstr "" -#: build/serializers.py:702 +#: build/serializers.py:710 msgid "Consume Allocated Stock" msgstr "" -#: build/serializers.py:703 +#: build/serializers.py:711 msgid "Consume any stock which has already been allocated to this build" msgstr "" -#: build/serializers.py:709 +#: build/serializers.py:717 msgid "Remove Incomplete Outputs" msgstr "" -#: build/serializers.py:710 +#: build/serializers.py:718 msgid "Delete any build outputs which have not been completed" msgstr "" -#: build/serializers.py:737 +#: build/serializers.py:745 msgid "Not permitted" msgstr "" -#: build/serializers.py:738 +#: build/serializers.py:746 msgid "Accept as consumed by this build order" msgstr "" -#: build/serializers.py:739 +#: build/serializers.py:747 msgid "Deallocate before completing this build order" msgstr "" -#: build/serializers.py:766 +#: build/serializers.py:774 msgid "Overallocated Stock" msgstr "" -#: build/serializers.py:769 +#: build/serializers.py:777 msgid "How do you want to handle extra stock items assigned to the build order" msgstr "" -#: build/serializers.py:780 +#: build/serializers.py:788 msgid "Some stock items have been overallocated" msgstr "" -#: build/serializers.py:785 +#: build/serializers.py:793 msgid "Accept Unallocated" msgstr "" -#: build/serializers.py:787 +#: build/serializers.py:795 msgid "Accept that stock items have not been fully allocated to this build order" msgstr "" -#: build/serializers.py:798 +#: build/serializers.py:806 msgid "Required stock has not been fully allocated" msgstr "" -#: build/serializers.py:803 order/serializers.py:524 order/serializers.py:1601 +#: build/serializers.py:811 order/serializers.py:535 order/serializers.py:1615 msgid "Accept Incomplete" msgstr "" -#: build/serializers.py:805 +#: build/serializers.py:813 msgid "Accept that the required number of build outputs have not been completed" msgstr "" -#: build/serializers.py:816 +#: build/serializers.py:824 msgid "Required build quantity has not been completed" msgstr "" -#: build/serializers.py:828 +#: build/serializers.py:836 msgid "Build order has open child build orders" msgstr "" -#: build/serializers.py:831 +#: build/serializers.py:839 msgid "Build order must be in production state" msgstr "" -#: build/serializers.py:834 +#: build/serializers.py:842 msgid "Build order has incomplete outputs" msgstr "" -#: build/serializers.py:873 +#: build/serializers.py:881 msgid "Build Line" msgstr "" -#: build/serializers.py:881 +#: build/serializers.py:889 msgid "Build output" msgstr "" -#: build/serializers.py:889 +#: build/serializers.py:897 msgid "Build output must point to the same build" msgstr "" -#: build/serializers.py:920 +#: build/serializers.py:928 msgid "Build Line Item" msgstr "" -#: build/serializers.py:938 +#: build/serializers.py:946 msgid "bom_item.part must point to the same part as the build order" msgstr "" -#: build/serializers.py:954 stock/serializers.py:1287 +#: build/serializers.py:962 stock/serializers.py:1287 msgid "Item must be in stock" msgstr "" -#: build/serializers.py:997 order/serializers.py:1587 +#: build/serializers.py:1005 order/serializers.py:1601 #, python-brace-format msgid "Available quantity ({q}) exceeded" msgstr "" -#: build/serializers.py:1003 +#: build/serializers.py:1011 msgid "Build output must be specified for allocation of tracked parts" msgstr "" -#: build/serializers.py:1011 +#: build/serializers.py:1019 msgid "Build output cannot be specified for allocation of untracked parts" msgstr "" -#: build/serializers.py:1035 order/serializers.py:1860 +#: build/serializers.py:1043 order/serializers.py:1874 msgid "Allocation items must be provided" msgstr "" -#: build/serializers.py:1099 +#: build/serializers.py:1107 msgid "Stock location where parts are to be sourced (leave blank to take from any location)" msgstr "" -#: build/serializers.py:1108 +#: build/serializers.py:1116 msgid "Exclude Location" msgstr "" -#: build/serializers.py:1109 +#: build/serializers.py:1117 msgid "Exclude stock items from this selected location" msgstr "" -#: build/serializers.py:1114 +#: build/serializers.py:1122 msgid "Interchangeable Stock" msgstr "" -#: build/serializers.py:1115 +#: build/serializers.py:1123 msgid "Stock items in multiple locations can be used interchangeably" msgstr "" -#: build/serializers.py:1120 +#: build/serializers.py:1128 msgid "Substitute Stock" msgstr "" -#: build/serializers.py:1121 +#: build/serializers.py:1129 msgid "Allow allocation of substitute parts" msgstr "" -#: build/serializers.py:1126 +#: build/serializers.py:1134 msgid "Optional Items" msgstr "" -#: build/serializers.py:1127 +#: build/serializers.py:1135 msgid "Allocate optional BOM items to build order" msgstr "" -#: build/serializers.py:1148 +#: build/serializers.py:1156 msgid "Failed to start auto-allocation task" msgstr "" -#: build/serializers.py:1200 +#: build/serializers.py:1208 msgid "BOM Reference" msgstr "" -#: build/serializers.py:1206 +#: build/serializers.py:1214 msgid "BOM Part ID" msgstr "" -#: build/serializers.py:1213 +#: build/serializers.py:1221 msgid "BOM Part Name" msgstr "" -#: build/serializers.py:1266 build/serializers.py:1449 +#: build/serializers.py:1274 build/serializers.py:1457 msgid "Build" msgstr "" -#: build/serializers.py:1276 company/models.py:685 order/api.py:311 -#: order/api.py:316 order/api.py:543 order/serializers.py:650 +#: build/serializers.py:1284 company/models.py:639 order/api.py:316 +#: order/api.py:321 order/api.py:549 order/serializers.py:661 #: stock/models.py:1036 stock/serializers.py:579 msgid "Supplier Part" msgstr "" -#: build/serializers.py:1284 stock/serializers.py:620 +#: build/serializers.py:1292 stock/serializers.py:620 msgid "Allocated Quantity" msgstr "" -#: build/serializers.py:1351 +#: build/serializers.py:1359 msgid "Build Reference" msgstr "" -#: build/serializers.py:1361 +#: build/serializers.py:1369 msgid "Part Category Name" msgstr "" -#: build/serializers.py:1383 common/setting/system.py:480 part/models.py:1214 +#: build/serializers.py:1391 common/setting/system.py:480 part/models.py:1302 msgid "Trackable" msgstr "" -#: build/serializers.py:1386 +#: build/serializers.py:1394 msgid "Inherited" msgstr "" -#: build/serializers.py:1389 part/models.py:4475 +#: build/serializers.py:1397 part/models.py:4100 msgid "Allow Variants" msgstr "" -#: build/serializers.py:1395 build/serializers.py:1400 part/models.py:4208 -#: part/models.py:4779 stock/api.py:882 +#: build/serializers.py:1403 build/serializers.py:1408 part/models.py:3833 +#: part/models.py:4404 stock/api.py:882 msgid "BOM Item" msgstr "" -#: build/serializers.py:1467 order/serializers.py:1282 part/serializers.py:1310 -#: part/serializers.py:1765 +#: build/serializers.py:1475 order/serializers.py:1296 part/serializers.py:1175 +#: part/serializers.py:1630 msgid "In Production" msgstr "" -#: build/serializers.py:1469 part/serializers.py:950 part/serializers.py:1314 +#: build/serializers.py:1477 part/serializers.py:835 part/serializers.py:1179 msgid "Scheduled to Build" msgstr "" -#: build/serializers.py:1472 part/serializers.py:987 +#: build/serializers.py:1480 part/serializers.py:872 msgid "External Stock" msgstr "" -#: build/serializers.py:1473 part/serializers.py:1300 part/serializers.py:1808 +#: build/serializers.py:1481 part/serializers.py:1165 part/serializers.py:1673 msgid "Available Stock" msgstr "" -#: build/serializers.py:1475 +#: build/serializers.py:1483 msgid "Available Substitute Stock" msgstr "" -#: build/serializers.py:1478 +#: build/serializers.py:1486 msgid "Available Variant Stock" msgstr "" -#: build/serializers.py:1752 +#: build/serializers.py:1760 msgid "Consumed quantity exceeds allocated quantity" msgstr "" -#: build/serializers.py:1789 +#: build/serializers.py:1797 msgid "Optional notes for the stock consumption" msgstr "" -#: build/serializers.py:1806 +#: build/serializers.py:1814 msgid "Build item must point to the correct build order" msgstr "" -#: build/serializers.py:1811 +#: build/serializers.py:1819 msgid "Duplicate build item allocation" msgstr "" -#: build/serializers.py:1829 +#: build/serializers.py:1837 msgid "Build line must point to the correct build order" msgstr "" -#: build/serializers.py:1834 +#: build/serializers.py:1842 msgid "Duplicate build line allocation" msgstr "" -#: build/serializers.py:1846 +#: build/serializers.py:1854 msgid "At least one item or line must be provided" msgstr "" @@ -1482,702 +1498,826 @@ msgstr "" msgid "Build order {bo} is now overdue" msgstr "" -#: common/api.py:694 +#: common/api.py:701 msgid "Is Link" msgstr "" -#: common/api.py:702 +#: common/api.py:709 msgid "Is File" msgstr "" -#: common/api.py:745 +#: common/api.py:756 msgid "User does not have permission to delete these attachments" msgstr "" -#: common/api.py:762 +#: common/api.py:769 msgid "User does not have permission to delete this attachment" msgstr "" -#: common/currency.py:122 +#: common/currency.py:130 msgid "Invalid currency code" msgstr "" -#: common/currency.py:124 +#: common/currency.py:132 msgid "Duplicate currency code" msgstr "" -#: common/currency.py:129 +#: common/currency.py:137 msgid "No valid currency codes provided" msgstr "" -#: common/currency.py:146 +#: common/currency.py:154 msgid "No plugin" msgstr "" -#: common/models.py:101 common/models.py:126 common/models.py:2729 +#: common/models.py:105 common/models.py:130 common/models.py:3150 msgid "Updated" msgstr "" -#: common/models.py:102 common/models.py:127 +#: common/models.py:106 common/models.py:131 msgid "Timestamp of last update" msgstr "" -#: common/models.py:139 +#: common/models.py:143 msgid "Update By" msgstr "" -#: common/models.py:140 +#: common/models.py:144 msgid "User who last updated this object" msgstr "" -#: common/models.py:165 +#: common/models.py:169 msgid "Unique project code" msgstr "" -#: common/models.py:172 +#: common/models.py:176 msgid "Project description" msgstr "" -#: common/models.py:181 +#: common/models.py:185 msgid "User or group responsible for this project" msgstr "" -#: common/models.py:771 common/models.py:1272 common/models.py:1310 +#: common/models.py:775 common/models.py:1276 common/models.py:1314 msgid "Settings key" msgstr "" -#: common/models.py:775 +#: common/models.py:779 msgid "Settings value" msgstr "" -#: common/models.py:830 +#: common/models.py:834 msgid "Chosen value is not a valid option" msgstr "" -#: common/models.py:846 +#: common/models.py:850 msgid "Value must be a boolean value" msgstr "" -#: common/models.py:854 +#: common/models.py:858 msgid "Value must be an integer value" msgstr "" -#: common/models.py:862 +#: common/models.py:866 msgid "Value must be a valid number" msgstr "" -#: common/models.py:887 +#: common/models.py:891 msgid "Value does not pass validation checks" msgstr "" -#: common/models.py:909 +#: common/models.py:913 msgid "Key string must be unique" msgstr "" -#: common/models.py:1318 common/models.py:1319 common/models.py:1423 -#: common/models.py:1424 common/models.py:1669 common/models.py:1670 -#: common/models.py:2000 common/models.py:2001 common/models.py:2382 -#: importer/models.py:100 part/models.py:3547 part/models.py:3575 +#: common/models.py:1322 common/models.py:1323 common/models.py:1427 +#: common/models.py:1428 common/models.py:1673 common/models.py:1674 +#: common/models.py:2006 common/models.py:2007 common/models.py:2803 +#: importer/models.py:100 part/models.py:3611 part/models.py:3639 #: plugin/models.py:355 plugin/models.py:356 #: report/templates/report/inventree_test_report.html:105 users/models.py:124 #: users/models.py:501 msgid "User" msgstr "" -#: common/models.py:1341 +#: common/models.py:1345 msgid "Price break quantity" msgstr "" -#: common/models.py:1348 company/serializers.py:564 order/models.py:1842 -#: order/models.py:3043 +#: common/models.py:1352 company/serializers.py:349 order/models.py:1843 +#: order/models.py:3044 msgid "Price" msgstr "" -#: common/models.py:1349 +#: common/models.py:1353 msgid "Unit price at specified quantity" msgstr "" -#: common/models.py:1400 common/models.py:1585 +#: common/models.py:1404 common/models.py:1589 msgid "Endpoint" msgstr "" -#: common/models.py:1401 +#: common/models.py:1405 msgid "Endpoint at which this webhook is received" msgstr "" -#: common/models.py:1411 +#: common/models.py:1415 msgid "Name for this webhook" msgstr "" -#: common/models.py:1415 common/models.py:2241 common/models.py:2348 -#: company/models.py:191 company/models.py:822 machine/models.py:40 -#: part/models.py:1237 plugin/models.py:69 stock/api.py:642 users/models.py:195 +#: common/models.py:1419 common/models.py:2247 common/models.py:2354 +#: company/models.py:192 company/models.py:776 machine/models.py:40 +#: part/models.py:1325 plugin/models.py:69 stock/api.py:642 users/models.py:195 #: users/models.py:554 users/serializers.py:314 msgid "Active" msgstr "" -#: common/models.py:1415 +#: common/models.py:1419 msgid "Is this webhook active" msgstr "" -#: common/models.py:1431 users/models.py:172 +#: common/models.py:1435 users/models.py:172 msgid "Token" msgstr "" -#: common/models.py:1432 +#: common/models.py:1436 msgid "Token for access" msgstr "" -#: common/models.py:1440 +#: common/models.py:1444 msgid "Secret" msgstr "" -#: common/models.py:1441 +#: common/models.py:1445 msgid "Shared secret for HMAC" msgstr "" -#: common/models.py:1549 common/models.py:2619 +#: common/models.py:1553 common/models.py:3040 msgid "Message ID" msgstr "" -#: common/models.py:1550 common/models.py:2609 +#: common/models.py:1554 common/models.py:3030 msgid "Unique identifier for this message" msgstr "" -#: common/models.py:1558 +#: common/models.py:1562 msgid "Host" msgstr "" -#: common/models.py:1559 +#: common/models.py:1563 msgid "Host from which this message was received" msgstr "" -#: common/models.py:1567 +#: common/models.py:1571 msgid "Header" msgstr "" -#: common/models.py:1568 +#: common/models.py:1572 msgid "Header of this message" msgstr "" -#: common/models.py:1575 +#: common/models.py:1579 msgid "Body" msgstr "" -#: common/models.py:1576 +#: common/models.py:1580 msgid "Body of this message" msgstr "" -#: common/models.py:1586 +#: common/models.py:1590 msgid "Endpoint on which this message was received" msgstr "" -#: common/models.py:1591 +#: common/models.py:1595 msgid "Worked on" msgstr "" -#: common/models.py:1592 +#: common/models.py:1596 msgid "Was the work on this message finished?" msgstr "" -#: common/models.py:1718 +#: common/models.py:1722 msgid "Id" msgstr "" -#: common/models.py:1720 +#: common/models.py:1724 msgid "Title" msgstr "" -#: common/models.py:1722 common/models.py:1983 company/models.py:185 -#: company/models.py:467 company/models.py:534 company/models.py:839 -#: order/models.py:457 order/models.py:1786 order/models.py:2343 -#: part/models.py:1113 +#: common/models.py:1726 common/models.py:1989 company/models.py:186 +#: company/models.py:468 company/models.py:536 company/models.py:793 +#: order/models.py:458 order/models.py:1787 order/models.py:2344 +#: part/models.py:1201 #: report/templates/report/inventree_build_order_report.html:164 msgid "Link" msgstr "" -#: common/models.py:1724 +#: common/models.py:1728 msgid "Published" msgstr "" -#: common/models.py:1726 +#: common/models.py:1730 msgid "Author" msgstr "" -#: common/models.py:1728 +#: common/models.py:1732 msgid "Summary" msgstr "" -#: common/models.py:1731 common/models.py:2586 +#: common/models.py:1735 common/models.py:3007 msgid "Read" msgstr "" -#: common/models.py:1731 +#: common/models.py:1735 msgid "Was this news item read?" msgstr "" -#: common/models.py:1748 +#: common/models.py:1752 msgid "Image file" msgstr "" -#: common/models.py:1760 +#: common/models.py:1764 msgid "Target model type for this image" msgstr "" -#: common/models.py:1764 +#: common/models.py:1768 msgid "Target model ID for this image" msgstr "" -#: common/models.py:1786 +#: common/models.py:1790 msgid "Custom Unit" msgstr "" -#: common/models.py:1804 +#: common/models.py:1808 msgid "Unit symbol must be unique" msgstr "" -#: common/models.py:1819 +#: common/models.py:1823 msgid "Unit name must be a valid identifier" msgstr "" -#: common/models.py:1838 +#: common/models.py:1842 msgid "Unit name" msgstr "" -#: common/models.py:1845 +#: common/models.py:1849 msgid "Symbol" msgstr "" -#: common/models.py:1846 +#: common/models.py:1850 msgid "Optional unit symbol" msgstr "" -#: common/models.py:1852 +#: common/models.py:1856 msgid "Definition" msgstr "" -#: common/models.py:1853 +#: common/models.py:1857 msgid "Unit definition" msgstr "" -#: common/models.py:1911 common/models.py:1974 stock/models.py:2967 +#: common/models.py:1917 common/models.py:1980 stock/models.py:2984 #: stock/serializers.py:247 msgid "Attachment" msgstr "" -#: common/models.py:1928 +#: common/models.py:1934 msgid "Missing file" msgstr "" -#: common/models.py:1929 +#: common/models.py:1935 msgid "Missing external link" msgstr "" -#: common/models.py:1966 +#: common/models.py:1972 common/models.py:2488 msgid "Model type" msgstr "" -#: common/models.py:1967 +#: common/models.py:1973 msgid "Target model type for image" msgstr "" -#: common/models.py:1975 +#: common/models.py:1981 msgid "Select file to attach" msgstr "" -#: common/models.py:1991 +#: common/models.py:1997 msgid "Comment" msgstr "" -#: common/models.py:1992 +#: common/models.py:1998 msgid "Attachment comment" msgstr "" -#: common/models.py:2008 +#: common/models.py:2014 msgid "Upload date" msgstr "" -#: common/models.py:2009 +#: common/models.py:2015 msgid "Date the file was uploaded" msgstr "" -#: common/models.py:2013 +#: common/models.py:2019 msgid "File size" msgstr "" -#: common/models.py:2013 +#: common/models.py:2019 msgid "File size in bytes" msgstr "" -#: common/models.py:2051 common/serializers.py:684 +#: common/models.py:2057 common/serializers.py:688 msgid "Invalid model type specified for attachment" msgstr "" -#: common/models.py:2072 +#: common/models.py:2078 msgid "Custom State" msgstr "" -#: common/models.py:2073 +#: common/models.py:2079 msgid "Custom States" msgstr "" -#: common/models.py:2078 +#: common/models.py:2084 msgid "Reference Status Set" msgstr "" -#: common/models.py:2079 +#: common/models.py:2085 msgid "Status set that is extended with this custom state" msgstr "" -#: common/models.py:2083 generic/states/serializers.py:18 +#: common/models.py:2089 generic/states/serializers.py:18 msgid "Logical Key" msgstr "" -#: common/models.py:2085 +#: common/models.py:2091 msgid "State logical key that is equal to this custom state in business logic" msgstr "" -#: common/models.py:2090 common/models.py:2329 company/models.py:622 -#: machine/serializers.py:27 -#: report/templates/report/inventree_test_report.html:104 stock/models.py:2959 +#: common/models.py:2096 common/models.py:2335 machine/serializers.py:27 +#: report/templates/report/inventree_test_report.html:104 stock/models.py:2976 msgid "Value" msgstr "" -#: common/models.py:2091 +#: common/models.py:2097 msgid "Numerical value that will be saved in the models database" msgstr "" -#: common/models.py:2097 +#: common/models.py:2103 msgid "Name of the state" msgstr "" -#: common/models.py:2106 common/models.py:2335 generic/states/serializers.py:22 +#: common/models.py:2112 common/models.py:2341 generic/states/serializers.py:22 msgid "Label" msgstr "" -#: common/models.py:2107 +#: common/models.py:2113 msgid "Label that will be displayed in the frontend" msgstr "" -#: common/models.py:2114 generic/states/serializers.py:24 +#: common/models.py:2120 generic/states/serializers.py:24 msgid "Color" msgstr "" -#: common/models.py:2115 +#: common/models.py:2121 msgid "Color that will be displayed in the frontend" msgstr "" -#: common/models.py:2123 +#: common/models.py:2129 msgid "Model" msgstr "" -#: common/models.py:2124 +#: common/models.py:2130 msgid "Model this state is associated with" msgstr "" -#: common/models.py:2139 +#: common/models.py:2145 msgid "Model must be selected" msgstr "" -#: common/models.py:2142 +#: common/models.py:2148 msgid "Key must be selected" msgstr "" -#: common/models.py:2145 +#: common/models.py:2151 msgid "Logical key must be selected" msgstr "" -#: common/models.py:2149 +#: common/models.py:2155 msgid "Key must be different from logical key" msgstr "" -#: common/models.py:2156 +#: common/models.py:2162 msgid "Valid reference status class must be provided" msgstr "" -#: common/models.py:2162 +#: common/models.py:2168 msgid "Key must be different from the logical keys of the reference status" msgstr "" -#: common/models.py:2169 +#: common/models.py:2175 msgid "Logical key must be in the logical keys of the reference status" msgstr "" -#: common/models.py:2176 +#: common/models.py:2182 msgid "Name must be different from the names of the reference status" msgstr "" -#: common/models.py:2216 common/models.py:2323 part/models.py:3889 +#: common/models.py:2222 common/models.py:2329 common/models.py:2533 msgid "Selection List" msgstr "" -#: common/models.py:2217 +#: common/models.py:2223 msgid "Selection Lists" msgstr "" -#: common/models.py:2222 +#: common/models.py:2228 msgid "Name of the selection list" msgstr "" -#: common/models.py:2229 +#: common/models.py:2235 msgid "Description of the selection list" msgstr "" -#: common/models.py:2235 part/models.py:1242 +#: common/models.py:2241 part/models.py:1330 msgid "Locked" msgstr "" -#: common/models.py:2236 +#: common/models.py:2242 msgid "Is this selection list locked?" msgstr "" -#: common/models.py:2242 +#: common/models.py:2248 msgid "Can this selection list be used?" msgstr "" -#: common/models.py:2250 +#: common/models.py:2256 msgid "Source Plugin" msgstr "" -#: common/models.py:2251 +#: common/models.py:2257 msgid "Plugin which provides the selection list" msgstr "" -#: common/models.py:2256 +#: common/models.py:2262 msgid "Source String" msgstr "" -#: common/models.py:2257 +#: common/models.py:2263 msgid "Optional string identifying the source used for this list" msgstr "" -#: common/models.py:2266 +#: common/models.py:2272 msgid "Default Entry" msgstr "" -#: common/models.py:2267 +#: common/models.py:2273 msgid "Default entry for this selection list" msgstr "" -#: common/models.py:2272 common/models.py:2724 +#: common/models.py:2278 common/models.py:3145 msgid "Created" msgstr "" -#: common/models.py:2273 +#: common/models.py:2279 msgid "Date and time that the selection list was created" msgstr "" -#: common/models.py:2278 +#: common/models.py:2284 msgid "Last Updated" msgstr "" -#: common/models.py:2279 +#: common/models.py:2285 msgid "Date and time that the selection list was last updated" msgstr "" -#: common/models.py:2313 +#: common/models.py:2319 msgid "Selection List Entry" msgstr "" -#: common/models.py:2314 +#: common/models.py:2320 msgid "Selection List Entries" msgstr "" -#: common/models.py:2324 +#: common/models.py:2330 msgid "Selection list to which this entry belongs" msgstr "" -#: common/models.py:2330 +#: common/models.py:2336 msgid "Value of the selection list entry" msgstr "" -#: common/models.py:2336 +#: common/models.py:2342 msgid "Label for the selection list entry" msgstr "" -#: common/models.py:2342 +#: common/models.py:2348 msgid "Description of the selection list entry" msgstr "" -#: common/models.py:2349 +#: common/models.py:2355 msgid "Is this selection list entry active?" msgstr "" -#: common/models.py:2367 -msgid "Barcode Scan" +#: common/models.py:2387 +msgid "Parameter Template" msgstr "" -#: common/models.py:2371 importer/models.py:546 part/models.py:4060 -msgid "Data" +#: common/models.py:2388 +msgid "Parameter Templates" msgstr "" -#: common/models.py:2372 -msgid "Barcode data" +#: common/models.py:2425 +msgid "Checkbox parameters cannot have units" msgstr "" -#: common/models.py:2383 -msgid "User who scanned the barcode" +#: common/models.py:2430 +msgid "Checkbox parameters cannot have choices" msgstr "" -#: common/models.py:2388 importer/models.py:69 -msgid "Timestamp" +#: common/models.py:2450 part/models.py:3707 +msgid "Choices must be unique" msgstr "" -#: common/models.py:2389 -msgid "Date and time of the barcode scan" +#: common/models.py:2467 +msgid "Parameter template name must be unique" msgstr "" -#: common/models.py:2395 -msgid "URL endpoint which processed the barcode" +#: common/models.py:2489 +msgid "Target model type for this parameter template" msgstr "" -#: common/models.py:2402 order/models.py:1832 plugin/serializers.py:93 -msgid "Context" +#: common/models.py:2495 +msgid "Parameter Name" msgstr "" -#: common/models.py:2403 -msgid "Context data for the barcode scan" +#: common/models.py:2501 part/models.py:1283 +msgid "Units" msgstr "" -#: common/models.py:2410 -msgid "Response" +#: common/models.py:2502 +msgid "Physical units for this parameter" msgstr "" -#: common/models.py:2411 -msgid "Response data from the barcode scan" +#: common/models.py:2510 +msgid "Parameter description" msgstr "" -#: common/models.py:2417 report/templates/report/inventree_test_report.html:103 -#: stock/models.py:2953 -msgid "Result" +#: common/models.py:2516 +msgid "Checkbox" msgstr "" -#: common/models.py:2418 -msgid "Was the barcode scan successful?" +#: common/models.py:2517 +msgid "Is this parameter a checkbox?" msgstr "" -#: common/models.py:2500 -msgid "An error occurred" +#: common/models.py:2522 part/models.py:3794 +msgid "Choices" msgstr "" -#: common/models.py:2521 -msgid "INVE-E8: Email log deletion is protected. Set INVENTREE_PROTECT_EMAIL_LOG to False to allow deletion." +#: common/models.py:2523 +msgid "Valid choices for this parameter (comma-separated)" msgstr "" -#: common/models.py:2568 -msgid "Email Message" +#: common/models.py:2534 +msgid "Selection list for this parameter" msgstr "" -#: common/models.py:2569 -msgid "Email Messages" +#: common/models.py:2539 part/models.py:3769 report/models.py:287 +msgid "Enabled" msgstr "" -#: common/models.py:2576 -msgid "Announced" +#: common/models.py:2540 +msgid "Is this parameter template enabled?" msgstr "" -#: common/models.py:2578 -msgid "Sent" -msgstr "" - -#: common/models.py:2579 -msgid "Failed" +#: common/models.py:2581 +msgid "Parameter" msgstr "" #: common/models.py:2582 -msgid "Delivered" -msgstr "" - -#: common/models.py:2590 -msgid "Confirmed" -msgstr "" - -#: common/models.py:2596 -msgid "Inbound" -msgstr "" - -#: common/models.py:2597 -msgid "Outbound" -msgstr "" - -#: common/models.py:2602 -msgid "No Reply" -msgstr "" - -#: common/models.py:2603 -msgid "Track Delivery" -msgstr "" - -#: common/models.py:2604 -msgid "Track Read" -msgstr "" - -#: common/models.py:2605 -msgid "Track Click" -msgstr "" - -#: common/models.py:2608 common/models.py:2711 -msgid "Global ID" -msgstr "" - -#: common/models.py:2621 -msgid "Identifier for this message (might be supplied by external system)" +msgid "Parameters" msgstr "" #: common/models.py:2628 +msgid "Invalid choice for parameter value" +msgstr "" + +#: common/models.py:2698 common/serializers.py:783 +msgid "Invalid model type specified for parameter" +msgstr "" + +#: common/models.py:2734 +msgid "Model ID" +msgstr "" + +#: common/models.py:2735 +msgid "ID of the target model for this parameter" +msgstr "" + +#: common/models.py:2744 common/setting/system.py:450 report/models.py:373 +#: report/models.py:669 report/serializers.py:94 report/serializers.py:135 +#: stock/serializers.py:234 +msgid "Template" +msgstr "" + +#: common/models.py:2745 +msgid "Parameter template" +msgstr "" + +#: common/models.py:2750 common/models.py:2792 importer/models.py:546 +msgid "Data" +msgstr "" + +#: common/models.py:2751 +msgid "Parameter Value" +msgstr "" + +#: common/models.py:2760 company/models.py:810 order/serializers.py:894 +#: order/serializers.py:2064 part/models.py:4075 part/models.py:4444 +#: report/templates/report/inventree_bill_of_materials_report.html:140 +#: report/templates/report/inventree_purchase_order_report.html:39 +#: report/templates/report/inventree_return_order_report.html:27 +#: report/templates/report/inventree_sales_order_report.html:32 +#: report/templates/report/inventree_stock_location_report.html:105 +#: stock/serializers.py:813 +msgid "Note" +msgstr "" + +#: common/models.py:2761 stock/serializers.py:718 +msgid "Optional note field" +msgstr "" + +#: common/models.py:2788 +msgid "Barcode Scan" +msgstr "" + +#: common/models.py:2793 +msgid "Barcode data" +msgstr "" + +#: common/models.py:2804 +msgid "User who scanned the barcode" +msgstr "" + +#: common/models.py:2809 importer/models.py:69 +msgid "Timestamp" +msgstr "" + +#: common/models.py:2810 +msgid "Date and time of the barcode scan" +msgstr "" + +#: common/models.py:2816 +msgid "URL endpoint which processed the barcode" +msgstr "" + +#: common/models.py:2823 order/models.py:1833 plugin/serializers.py:93 +msgid "Context" +msgstr "" + +#: common/models.py:2824 +msgid "Context data for the barcode scan" +msgstr "" + +#: common/models.py:2831 +msgid "Response" +msgstr "" + +#: common/models.py:2832 +msgid "Response data from the barcode scan" +msgstr "" + +#: common/models.py:2838 report/templates/report/inventree_test_report.html:103 +#: stock/models.py:2970 +msgid "Result" +msgstr "" + +#: common/models.py:2839 +msgid "Was the barcode scan successful?" +msgstr "" + +#: common/models.py:2921 +msgid "An error occurred" +msgstr "" + +#: common/models.py:2942 +msgid "INVE-E8: Email log deletion is protected. Set INVENTREE_PROTECT_EMAIL_LOG to False to allow deletion." +msgstr "" + +#: common/models.py:2989 +msgid "Email Message" +msgstr "" + +#: common/models.py:2990 +msgid "Email Messages" +msgstr "" + +#: common/models.py:2997 +msgid "Announced" +msgstr "" + +#: common/models.py:2999 +msgid "Sent" +msgstr "" + +#: common/models.py:3000 +msgid "Failed" +msgstr "" + +#: common/models.py:3003 +msgid "Delivered" +msgstr "" + +#: common/models.py:3011 +msgid "Confirmed" +msgstr "" + +#: common/models.py:3017 +msgid "Inbound" +msgstr "" + +#: common/models.py:3018 +msgid "Outbound" +msgstr "" + +#: common/models.py:3023 +msgid "No Reply" +msgstr "" + +#: common/models.py:3024 +msgid "Track Delivery" +msgstr "" + +#: common/models.py:3025 +msgid "Track Read" +msgstr "" + +#: common/models.py:3026 +msgid "Track Click" +msgstr "" + +#: common/models.py:3029 common/models.py:3132 +msgid "Global ID" +msgstr "" + +#: common/models.py:3042 +msgid "Identifier for this message (might be supplied by external system)" +msgstr "" + +#: common/models.py:3049 msgid "Thread ID" msgstr "" -#: common/models.py:2630 +#: common/models.py:3051 msgid "Identifier for this message thread (might be supplied by external system)" msgstr "" -#: common/models.py:2639 +#: common/models.py:3060 msgid "Thread" msgstr "" -#: common/models.py:2640 +#: common/models.py:3061 msgid "Linked thread for this message" msgstr "" -#: common/models.py:2656 -msgid "Prioriy" +#: common/models.py:3077 +msgid "Priority" msgstr "" -#: common/models.py:2698 +#: common/models.py:3119 msgid "Email Thread" msgstr "" -#: common/models.py:2699 +#: common/models.py:3120 msgid "Email Threads" msgstr "" -#: common/models.py:2705 generic/states/serializers.py:16 +#: common/models.py:3126 generic/states/serializers.py:16 #: machine/serializers.py:24 plugin/models.py:46 users/models.py:113 msgid "Key" msgstr "" -#: common/models.py:2708 +#: common/models.py:3129 msgid "Unique key for this thread (used to identify the thread)" msgstr "" -#: common/models.py:2712 +#: common/models.py:3133 msgid "Unique identifier for this thread" msgstr "" -#: common/models.py:2719 +#: common/models.py:3140 msgid "Started Internal" msgstr "" -#: common/models.py:2720 +#: common/models.py:3141 msgid "Was this thread started internally?" msgstr "" -#: common/models.py:2725 +#: common/models.py:3146 msgid "Date and time that the thread was created" msgstr "" -#: common/models.py:2730 +#: common/models.py:3151 msgid "Date and time that the thread was last updated" msgstr "" @@ -2199,7 +2339,7 @@ msgstr "" msgid "A order that is assigned to you was canceled" msgstr "" -#: common/notifications.py:73 common/notifications.py:80 order/api.py:594 +#: common/notifications.py:73 common/notifications.py:80 order/api.py:600 msgid "Items Received" msgstr "" @@ -2211,88 +2351,93 @@ msgstr "" msgid "Items have been received against a return order" msgstr "" -#: common/serializers.py:145 +#: common/serializers.py:149 msgid "Indicates if the setting is overridden by an environment variable" msgstr "" -#: common/serializers.py:147 +#: common/serializers.py:151 msgid "Override" msgstr "" -#: common/serializers.py:498 +#: common/serializers.py:502 msgid "Is Running" msgstr "" -#: common/serializers.py:504 +#: common/serializers.py:508 msgid "Pending Tasks" msgstr "" -#: common/serializers.py:510 +#: common/serializers.py:514 msgid "Scheduled Tasks" msgstr "" -#: common/serializers.py:516 +#: common/serializers.py:520 msgid "Failed Tasks" msgstr "" -#: common/serializers.py:531 +#: common/serializers.py:535 msgid "Task ID" msgstr "" -#: common/serializers.py:531 +#: common/serializers.py:535 msgid "Unique task ID" msgstr "" -#: common/serializers.py:533 +#: common/serializers.py:537 msgid "Lock" msgstr "" -#: common/serializers.py:533 +#: common/serializers.py:537 msgid "Lock time" msgstr "" -#: common/serializers.py:535 +#: common/serializers.py:539 msgid "Task name" msgstr "" -#: common/serializers.py:537 +#: common/serializers.py:541 msgid "Function" msgstr "" -#: common/serializers.py:537 +#: common/serializers.py:541 msgid "Function name" msgstr "" -#: common/serializers.py:539 +#: common/serializers.py:543 msgid "Arguments" msgstr "" -#: common/serializers.py:539 +#: common/serializers.py:543 msgid "Task arguments" msgstr "" -#: common/serializers.py:542 +#: common/serializers.py:546 msgid "Keyword Arguments" msgstr "" -#: common/serializers.py:542 +#: common/serializers.py:546 msgid "Task keyword arguments" msgstr "" -#: common/serializers.py:652 +#: common/serializers.py:656 msgid "Filename" msgstr "" -#: common/serializers.py:659 importer/models.py:89 report/api.py:41 +#: common/serializers.py:663 common/serializers.py:730 +#: common/serializers.py:805 importer/models.py:89 report/api.py:41 #: report/models.py:293 report/serializers.py:52 msgid "Model Type" msgstr "" -#: common/serializers.py:687 +#: common/serializers.py:691 msgid "User does not have permission to create or edit attachments for this model" msgstr "" -#: common/serializers.py:731 common/serializers.py:834 +#: common/serializers.py:786 +msgid "User does not have permission to create or edit parameters for this model" +msgstr "" + +#: common/serializers.py:850 common/serializers.py:953 msgid "Selection list is locked" msgstr "" @@ -2368,7 +2513,7 @@ msgstr "" msgid "Show the `about` modal only to superusers" msgstr "" -#: common/setting/system.py:224 company/models.py:144 company/models.py:145 +#: common/setting/system.py:224 company/models.py:145 company/models.py:146 msgid "Company name" msgstr "" @@ -2411,8 +2556,8 @@ msgstr "" #: common/setting/system.py:253 common/setting/system.py:293 #: common/setting/system.py:306 common/setting/system.py:314 #: common/setting/system.py:321 common/setting/system.py:330 -#: common/setting/system.py:339 common/setting/system.py:588 -#: common/setting/system.py:616 common/setting/system.py:707 +#: common/setting/system.py:339 common/setting/system.py:580 +#: common/setting/system.py:608 common/setting/system.py:707 #: common/setting/system.py:1103 common/setting/system.py:1119 msgid "days" msgstr "" @@ -2657,12 +2802,6 @@ msgstr "" msgid "Copy category parameter templates when creating a part" msgstr "" -#: common/setting/system.py:450 part/models.py:4054 report/models.py:373 -#: report/models.py:669 report/serializers.py:94 report/serializers.py:135 -#: stock/serializers.py:234 -msgid "Template" -msgstr "" - #: common/setting/system.py:451 msgid "Parts are templates by default" msgstr "" @@ -2671,8 +2810,8 @@ msgstr "" msgid "Parts can be assembled from other components by default" msgstr "" -#: common/setting/system.py:462 part/models.py:1208 part/serializers.py:1734 -#: part/serializers.py:1741 +#: common/setting/system.py:462 part/models.py:1296 part/serializers.py:1599 +#: part/serializers.py:1606 msgid "Component" msgstr "" @@ -2680,7 +2819,7 @@ msgstr "" msgid "Parts can be used as sub-components by default" msgstr "" -#: common/setting/system.py:468 part/models.py:1226 +#: common/setting/system.py:468 part/models.py:1314 msgid "Purchaseable" msgstr "" @@ -2688,7 +2827,7 @@ msgstr "" msgid "Parts are purchaseable by default" msgstr "" -#: common/setting/system.py:474 part/models.py:1232 stock/api.py:643 +#: common/setting/system.py:474 part/models.py:1320 stock/api.py:643 msgid "Salable" msgstr "" @@ -2700,7 +2839,7 @@ msgstr "" msgid "Parts are trackable by default" msgstr "" -#: common/setting/system.py:486 part/models.py:1248 +#: common/setting/system.py:486 part/models.py:1336 msgid "Virtual" msgstr "" @@ -2749,158 +2888,158 @@ msgid "Part category default icon (empty means no icon)" msgstr "" #: common/setting/system.py:525 -msgid "Enforce Parameter Units" -msgstr "" - -#: common/setting/system.py:527 -msgid "If units are provided, parameter values must match the specified units" -msgstr "" - -#: common/setting/system.py:533 msgid "Minimum Pricing Decimal Places" msgstr "" -#: common/setting/system.py:535 +#: common/setting/system.py:527 msgid "Minimum number of decimal places to display when rendering pricing data" msgstr "" -#: common/setting/system.py:546 +#: common/setting/system.py:538 msgid "Maximum Pricing Decimal Places" msgstr "" -#: common/setting/system.py:548 +#: common/setting/system.py:540 msgid "Maximum number of decimal places to display when rendering pricing data" msgstr "" -#: common/setting/system.py:559 +#: common/setting/system.py:551 msgid "Use Supplier Pricing" msgstr "" -#: common/setting/system.py:561 +#: common/setting/system.py:553 msgid "Include supplier price breaks in overall pricing calculations" msgstr "" -#: common/setting/system.py:567 +#: common/setting/system.py:559 msgid "Purchase History Override" msgstr "" -#: common/setting/system.py:569 +#: common/setting/system.py:561 msgid "Historical purchase order pricing overrides supplier price breaks" msgstr "" -#: common/setting/system.py:575 +#: common/setting/system.py:567 msgid "Use Stock Item Pricing" msgstr "" -#: common/setting/system.py:577 +#: common/setting/system.py:569 msgid "Use pricing from manually entered stock data for pricing calculations" msgstr "" -#: common/setting/system.py:583 +#: common/setting/system.py:575 msgid "Stock Item Pricing Age" msgstr "" -#: common/setting/system.py:585 +#: common/setting/system.py:577 msgid "Exclude stock items older than this number of days from pricing calculations" msgstr "" -#: common/setting/system.py:592 +#: common/setting/system.py:584 msgid "Use Variant Pricing" msgstr "" -#: common/setting/system.py:593 +#: common/setting/system.py:585 msgid "Include variant pricing in overall pricing calculations" msgstr "" -#: common/setting/system.py:598 +#: common/setting/system.py:590 msgid "Active Variants Only" msgstr "" -#: common/setting/system.py:600 +#: common/setting/system.py:592 msgid "Only use active variant parts for calculating variant pricing" msgstr "" -#: common/setting/system.py:606 +#: common/setting/system.py:598 msgid "Auto Update Pricing" msgstr "" -#: common/setting/system.py:608 +#: common/setting/system.py:600 msgid "Automatically update part pricing when internal data changes" msgstr "" -#: common/setting/system.py:614 +#: common/setting/system.py:606 msgid "Pricing Rebuild Interval" msgstr "" -#: common/setting/system.py:615 +#: common/setting/system.py:607 msgid "Number of days before part pricing is automatically updated" msgstr "" -#: common/setting/system.py:621 +#: common/setting/system.py:613 msgid "Internal Prices" msgstr "" -#: common/setting/system.py:622 +#: common/setting/system.py:614 msgid "Enable internal prices for parts" msgstr "" -#: common/setting/system.py:627 +#: common/setting/system.py:619 msgid "Internal Price Override" msgstr "" -#: common/setting/system.py:629 +#: common/setting/system.py:621 msgid "If available, internal prices override price range calculations" msgstr "" -#: common/setting/system.py:635 +#: common/setting/system.py:627 msgid "Enable label printing" msgstr "" -#: common/setting/system.py:636 +#: common/setting/system.py:628 msgid "Enable label printing from the web interface" msgstr "" -#: common/setting/system.py:641 +#: common/setting/system.py:633 msgid "Label Image DPI" msgstr "" -#: common/setting/system.py:643 +#: common/setting/system.py:635 msgid "DPI resolution when generating image files to supply to label printing plugins" msgstr "" -#: common/setting/system.py:649 +#: common/setting/system.py:641 msgid "Enable Reports" msgstr "" -#: common/setting/system.py:650 +#: common/setting/system.py:642 msgid "Enable generation of reports" msgstr "" -#: common/setting/system.py:655 +#: common/setting/system.py:647 msgid "Debug Mode" msgstr "" -#: common/setting/system.py:656 +#: common/setting/system.py:648 msgid "Generate reports in debug mode (HTML output)" msgstr "" -#: common/setting/system.py:661 +#: common/setting/system.py:653 msgid "Log Report Errors" msgstr "" -#: common/setting/system.py:662 +#: common/setting/system.py:654 msgid "Log errors which occur when generating reports" msgstr "" -#: common/setting/system.py:667 plugin/builtin/labels/label_sheet.py:29 +#: common/setting/system.py:659 plugin/builtin/labels/label_sheet.py:29 #: report/models.py:381 msgid "Page Size" msgstr "" -#: common/setting/system.py:668 +#: common/setting/system.py:660 msgid "Default page size for PDF reports" msgstr "" +#: common/setting/system.py:665 +msgid "Enforce Parameter Units" +msgstr "" + +#: common/setting/system.py:667 +msgid "If units are provided, parameter values must match the specified units" +msgstr "" + #: common/setting/system.py:673 msgid "Globally Unique Serials" msgstr "" @@ -3456,688 +3595,677 @@ msgid "Display PDF reports in the browser, instead of downloading as a file" msgstr "" #: common/setting/user.py:45 -msgid "Search Parts" +msgid "Barcode Scanner in Form Fields" msgstr "" #: common/setting/user.py:46 -msgid "Display parts in search preview window" +msgid "Allow barcode scanner input in form fields" msgstr "" #: common/setting/user.py:51 -msgid "Search Supplier Parts" +msgid "Search Parts" msgstr "" #: common/setting/user.py:52 -msgid "Display supplier parts in search preview window" +msgid "Display parts in search preview window" msgstr "" #: common/setting/user.py:57 -msgid "Search Manufacturer Parts" +msgid "Search Supplier Parts" msgstr "" #: common/setting/user.py:58 -msgid "Display manufacturer parts in search preview window" +msgid "Display supplier parts in search preview window" msgstr "" #: common/setting/user.py:63 -msgid "Hide Inactive Parts" +msgid "Search Manufacturer Parts" msgstr "" #: common/setting/user.py:64 -msgid "Excluded inactive parts from search preview window" +msgid "Display manufacturer parts in search preview window" msgstr "" #: common/setting/user.py:69 -msgid "Search Categories" +msgid "Hide Inactive Parts" msgstr "" #: common/setting/user.py:70 -msgid "Display part categories in search preview window" +msgid "Excluded inactive parts from search preview window" msgstr "" #: common/setting/user.py:75 -msgid "Search Stock" +msgid "Search Categories" msgstr "" #: common/setting/user.py:76 -msgid "Display stock items in search preview window" +msgid "Display part categories in search preview window" msgstr "" #: common/setting/user.py:81 +msgid "Search Stock" +msgstr "" + +#: common/setting/user.py:82 +msgid "Display stock items in search preview window" +msgstr "" + +#: common/setting/user.py:87 msgid "Hide Unavailable Stock Items" msgstr "" -#: common/setting/user.py:83 +#: common/setting/user.py:89 msgid "Exclude stock items which are not available from the search preview window" msgstr "" -#: common/setting/user.py:89 +#: common/setting/user.py:95 msgid "Search Locations" msgstr "" -#: common/setting/user.py:90 +#: common/setting/user.py:96 msgid "Display stock locations in search preview window" msgstr "" -#: common/setting/user.py:95 +#: common/setting/user.py:101 msgid "Search Companies" msgstr "" -#: common/setting/user.py:96 +#: common/setting/user.py:102 msgid "Display companies in search preview window" msgstr "" -#: common/setting/user.py:101 +#: common/setting/user.py:107 msgid "Search Build Orders" msgstr "" -#: common/setting/user.py:102 +#: common/setting/user.py:108 msgid "Display build orders in search preview window" msgstr "" -#: common/setting/user.py:107 +#: common/setting/user.py:113 msgid "Search Purchase Orders" msgstr "" -#: common/setting/user.py:108 +#: common/setting/user.py:114 msgid "Display purchase orders in search preview window" msgstr "" -#: common/setting/user.py:113 +#: common/setting/user.py:119 msgid "Exclude Inactive Purchase Orders" msgstr "" -#: common/setting/user.py:114 +#: common/setting/user.py:120 msgid "Exclude inactive purchase orders from search preview window" msgstr "" -#: common/setting/user.py:119 +#: common/setting/user.py:125 msgid "Search Sales Orders" msgstr "" -#: common/setting/user.py:120 +#: common/setting/user.py:126 msgid "Display sales orders in search preview window" msgstr "" -#: common/setting/user.py:125 +#: common/setting/user.py:131 msgid "Exclude Inactive Sales Orders" msgstr "" -#: common/setting/user.py:126 +#: common/setting/user.py:132 msgid "Exclude inactive sales orders from search preview window" msgstr "" -#: common/setting/user.py:131 +#: common/setting/user.py:137 msgid "Search Sales Order Shipments" msgstr "" -#: common/setting/user.py:132 +#: common/setting/user.py:138 msgid "Display sales order shipments in search preview window" msgstr "" -#: common/setting/user.py:137 +#: common/setting/user.py:143 msgid "Search Return Orders" msgstr "" -#: common/setting/user.py:138 +#: common/setting/user.py:144 msgid "Display return orders in search preview window" msgstr "" -#: common/setting/user.py:143 +#: common/setting/user.py:149 msgid "Exclude Inactive Return Orders" msgstr "" -#: common/setting/user.py:144 +#: common/setting/user.py:150 msgid "Exclude inactive return orders from search preview window" msgstr "" -#: common/setting/user.py:149 +#: common/setting/user.py:155 msgid "Search Preview Results" msgstr "" -#: common/setting/user.py:151 +#: common/setting/user.py:157 msgid "Number of results to show in each section of the search preview window" msgstr "" -#: common/setting/user.py:157 +#: common/setting/user.py:163 msgid "Regex Search" msgstr "" -#: common/setting/user.py:158 +#: common/setting/user.py:164 msgid "Enable regular expressions in search queries" msgstr "" -#: common/setting/user.py:163 +#: common/setting/user.py:169 msgid "Whole Word Search" msgstr "" -#: common/setting/user.py:164 +#: common/setting/user.py:170 msgid "Search queries return results for whole word matches" msgstr "" -#: common/setting/user.py:169 +#: common/setting/user.py:175 msgid "Search Notes" msgstr "" -#: common/setting/user.py:171 +#: common/setting/user.py:177 msgid "Search queries return results for matches from the item's notes" msgstr "" -#: common/setting/user.py:177 +#: common/setting/user.py:183 msgid "Escape Key Closes Forms" msgstr "" -#: common/setting/user.py:178 +#: common/setting/user.py:184 msgid "Use the escape key to close modal forms" msgstr "" -#: common/setting/user.py:183 +#: common/setting/user.py:189 msgid "Fixed Navbar" msgstr "" -#: common/setting/user.py:184 +#: common/setting/user.py:190 msgid "The navbar position is fixed to the top of the screen" msgstr "" -#: common/setting/user.py:189 +#: common/setting/user.py:195 msgid "Fixed Table Headers" msgstr "" -#: common/setting/user.py:190 +#: common/setting/user.py:196 msgid "Table headers are fixed to the top of the table" msgstr "" -#: common/setting/user.py:195 +#: common/setting/user.py:201 msgid "Show Spotlight" msgstr "" -#: common/setting/user.py:196 +#: common/setting/user.py:202 msgid "Enable spotlight navigation functionality" msgstr "" -#: common/setting/user.py:201 +#: common/setting/user.py:207 msgid "Navigation Icons" msgstr "" -#: common/setting/user.py:202 +#: common/setting/user.py:208 msgid "Display icons in the navigation bar" msgstr "" -#: common/setting/user.py:207 +#: common/setting/user.py:213 msgid "Date Format" msgstr "" -#: common/setting/user.py:208 +#: common/setting/user.py:214 msgid "Preferred format for displaying dates" msgstr "" -#: common/setting/user.py:221 +#: common/setting/user.py:227 msgid "Show Stock History" msgstr "" -#: common/setting/user.py:222 +#: common/setting/user.py:228 msgid "Display stock history information in the part detail page" msgstr "" -#: common/setting/user.py:227 +#: common/setting/user.py:233 msgid "Show Last Breadcrumb" msgstr "" -#: common/setting/user.py:228 +#: common/setting/user.py:234 msgid "Show the current page in breadcrumbs" msgstr "" -#: common/setting/user.py:233 +#: common/setting/user.py:239 msgid "Show full stock location in tables" msgstr "" -#: common/setting/user.py:235 +#: common/setting/user.py:241 msgid "Disabled: The full location path is displayed as a hover tooltip. Enabled: The full location path is displayed as plain text." msgstr "" -#: common/setting/user.py:241 +#: common/setting/user.py:247 msgid "Show full part categories in tables" msgstr "" -#: common/setting/user.py:243 +#: common/setting/user.py:249 msgid "Disabled: The full category path is displayed as a hover tooltip. Enabled: The full category path is displayed as plain text." msgstr "" -#: common/setting/user.py:249 +#: common/setting/user.py:255 msgid "Receive error reports" msgstr "" -#: common/setting/user.py:250 +#: common/setting/user.py:256 msgid "Receive notifications for system errors" msgstr "" -#: common/setting/user.py:255 +#: common/setting/user.py:261 msgid "Last used printing machines" msgstr "" -#: common/setting/user.py:256 +#: common/setting/user.py:262 msgid "Save the last used printing machines for a user" msgstr "" -#: common/validators.py:34 +#: common/validators.py:38 +msgid "All models" +msgstr "" + +#: common/validators.py:63 msgid "No attachment model type provided" msgstr "" -#: common/validators.py:40 +#: common/validators.py:69 msgid "Invalid attachment model type" msgstr "" -#: common/validators.py:81 +#: common/validators.py:110 msgid "Minimum places cannot be greater than maximum places" msgstr "" -#: common/validators.py:93 +#: common/validators.py:122 msgid "Maximum places cannot be less than minimum places" msgstr "" -#: common/validators.py:104 +#: common/validators.py:133 msgid "An empty domain is not allowed." msgstr "" -#: common/validators.py:106 +#: common/validators.py:135 #, python-brace-format msgid "Invalid domain name: {domain}" msgstr "" -#: common/validators.py:122 +#: common/validators.py:151 msgid "Value must be uppercase" msgstr "" -#: common/validators.py:128 +#: common/validators.py:157 msgid "Value must be a valid variable identifier" msgstr "" -#: company/api.py:147 +#: company/api.py:141 msgid "Part is Active" msgstr "" -#: company/api.py:151 +#: company/api.py:145 msgid "Manufacturer is Active" msgstr "" -#: company/api.py:286 +#: company/api.py:246 msgid "Supplier Part is Active" msgstr "" -#: company/api.py:290 +#: company/api.py:250 msgid "Internal Part is Active" msgstr "" -#: company/api.py:295 +#: company/api.py:255 msgid "Supplier is Active" msgstr "" -#: company/api.py:307 company/models.py:520 company/serializers.py:457 -#: part/serializers.py:566 +#: company/api.py:267 company/models.py:522 company/serializers.py:502 +#: part/serializers.py:477 msgid "Manufacturer" msgstr "" -#: company/api.py:314 company/models.py:121 company/models.py:392 +#: company/api.py:274 company/models.py:122 company/models.py:393 #: stock/api.py:900 msgid "Company" msgstr "" -#: company/api.py:324 +#: company/api.py:284 msgid "Has Stock" msgstr "" -#: company/models.py:122 +#: company/models.py:123 msgid "Companies" msgstr "" -#: company/models.py:150 +#: company/models.py:151 msgid "Company description" msgstr "" -#: company/models.py:151 +#: company/models.py:152 msgid "Description of the company" msgstr "" -#: company/models.py:157 +#: company/models.py:158 msgid "Website" msgstr "" -#: company/models.py:158 +#: company/models.py:159 msgid "Company website URL" msgstr "" -#: company/models.py:164 +#: company/models.py:165 msgid "Phone number" msgstr "" -#: company/models.py:166 +#: company/models.py:167 msgid "Contact phone number" msgstr "" -#: company/models.py:173 +#: company/models.py:174 msgid "Contact email address" msgstr "" -#: company/models.py:178 company/models.py:296 order/models.py:513 +#: company/models.py:179 company/models.py:297 order/models.py:514 #: users/models.py:561 msgid "Contact" msgstr "" -#: company/models.py:180 +#: company/models.py:181 msgid "Point of contact" msgstr "" -#: company/models.py:186 +#: company/models.py:187 msgid "Link to external company information" msgstr "" -#: company/models.py:191 +#: company/models.py:192 msgid "Is this company active?" msgstr "" -#: company/models.py:196 +#: company/models.py:197 msgid "Is customer" msgstr "" -#: company/models.py:197 +#: company/models.py:198 msgid "Do you sell items to this company?" msgstr "" -#: company/models.py:202 +#: company/models.py:203 msgid "Is supplier" msgstr "" -#: company/models.py:203 +#: company/models.py:204 msgid "Do you purchase items from this company?" msgstr "" -#: company/models.py:208 +#: company/models.py:209 msgid "Is manufacturer" msgstr "" -#: company/models.py:209 +#: company/models.py:210 msgid "Does this company manufacture parts?" msgstr "" -#: company/models.py:217 +#: company/models.py:218 msgid "Default currency used for this company" msgstr "" -#: company/models.py:224 +#: company/models.py:225 msgid "Tax ID" msgstr "" -#: company/models.py:225 +#: company/models.py:226 msgid "Company Tax ID" msgstr "" -#: company/models.py:335 order/models.py:523 order/models.py:2288 +#: company/models.py:336 order/models.py:524 order/models.py:2289 msgid "Address" msgstr "" -#: company/models.py:336 +#: company/models.py:337 msgid "Addresses" msgstr "" -#: company/models.py:393 +#: company/models.py:394 msgid "Select company" msgstr "" -#: company/models.py:398 +#: company/models.py:399 msgid "Address title" msgstr "" -#: company/models.py:399 +#: company/models.py:400 msgid "Title describing the address entry" msgstr "" -#: company/models.py:405 +#: company/models.py:406 msgid "Primary address" msgstr "" -#: company/models.py:406 +#: company/models.py:407 msgid "Set as primary address" msgstr "" -#: company/models.py:411 +#: company/models.py:412 msgid "Line 1" msgstr "" -#: company/models.py:412 +#: company/models.py:413 msgid "Address line 1" msgstr "" -#: company/models.py:418 +#: company/models.py:419 msgid "Line 2" msgstr "" -#: company/models.py:419 +#: company/models.py:420 msgid "Address line 2" msgstr "" -#: company/models.py:425 company/models.py:426 +#: company/models.py:426 company/models.py:427 msgid "Postal code" msgstr "" -#: company/models.py:432 +#: company/models.py:433 msgid "City/Region" msgstr "" -#: company/models.py:433 +#: company/models.py:434 msgid "Postal code city/region" msgstr "" -#: company/models.py:439 +#: company/models.py:440 msgid "State/Province" msgstr "" -#: company/models.py:440 +#: company/models.py:441 msgid "State or province" msgstr "" -#: company/models.py:446 +#: company/models.py:447 msgid "Country" msgstr "" -#: company/models.py:447 +#: company/models.py:448 msgid "Address country" msgstr "" -#: company/models.py:453 +#: company/models.py:454 msgid "Courier shipping notes" msgstr "" -#: company/models.py:454 +#: company/models.py:455 msgid "Notes for shipping courier" msgstr "" -#: company/models.py:460 +#: company/models.py:461 msgid "Internal shipping notes" msgstr "" -#: company/models.py:461 +#: company/models.py:462 msgid "Shipping notes for internal use" msgstr "" -#: company/models.py:468 +#: company/models.py:469 msgid "Link to address information (external)" msgstr "" -#: company/models.py:492 company/models.py:609 company/models.py:832 -#: company/serializers.py:471 stock/api.py:561 +#: company/models.py:494 company/models.py:786 company/serializers.py:516 +#: stock/api.py:561 msgid "Manufacturer Part" msgstr "" -#: company/models.py:509 company/models.py:800 stock/models.py:1025 +#: company/models.py:511 company/models.py:754 stock/models.py:1025 #: stock/serializers.py:407 msgid "Base Part" msgstr "" -#: company/models.py:511 company/models.py:802 +#: company/models.py:513 company/models.py:756 msgid "Select part" msgstr "" -#: company/models.py:521 +#: company/models.py:523 msgid "Select manufacturer" msgstr "" -#: company/models.py:527 company/serializers.py:479 order/serializers.py:734 -#: part/serializers.py:576 +#: company/models.py:529 company/serializers.py:524 order/serializers.py:745 +#: part/serializers.py:487 msgid "MPN" msgstr "" -#: company/models.py:528 stock/serializers.py:572 +#: company/models.py:530 stock/serializers.py:572 msgid "Manufacturer Part Number" msgstr "" -#: company/models.py:535 +#: company/models.py:537 msgid "URL for external manufacturer part link" msgstr "" -#: company/models.py:544 +#: company/models.py:546 msgid "Manufacturer part description" msgstr "" -#: company/models.py:597 -msgid "Manufacturer Part Parameter" -msgstr "" - -#: company/models.py:616 -msgid "Parameter name" -msgstr "" - -#: company/models.py:623 -msgid "Parameter value" -msgstr "" - -#: company/models.py:630 part/models.py:1195 part/models.py:3857 -msgid "Units" -msgstr "" - -#: company/models.py:631 -msgid "Parameter units" -msgstr "" - -#: company/models.py:740 +#: company/models.py:694 msgid "Pack units must be compatible with the base part units" msgstr "" -#: company/models.py:747 +#: company/models.py:701 msgid "Pack units must be greater than zero" msgstr "" -#: company/models.py:761 +#: company/models.py:715 msgid "Linked manufacturer part must reference the same base part" msgstr "" -#: company/models.py:810 company/serializers.py:449 company/serializers.py:467 -#: order/models.py:639 part/serializers.py:550 +#: company/models.py:764 company/serializers.py:494 company/serializers.py:512 +#: order/models.py:640 part/serializers.py:461 #: plugin/builtin/suppliers/digikey.py:26 plugin/builtin/suppliers/lcsc.py:27 #: plugin/builtin/suppliers/mouser.py:25 plugin/builtin/suppliers/tme.py:27 #: stock/api.py:567 templates/email/overdue_purchase_order.html:16 msgid "Supplier" msgstr "" -#: company/models.py:811 +#: company/models.py:765 msgid "Select supplier" msgstr "" -#: company/models.py:817 part/serializers.py:561 +#: company/models.py:771 part/serializers.py:472 msgid "Supplier stock keeping unit" msgstr "" -#: company/models.py:823 +#: company/models.py:777 msgid "Is this supplier part active?" msgstr "" -#: company/models.py:833 +#: company/models.py:787 msgid "Select manufacturer part" msgstr "" -#: company/models.py:840 +#: company/models.py:794 msgid "URL for external supplier part link" msgstr "" -#: company/models.py:849 +#: company/models.py:803 msgid "Supplier part description" msgstr "" -#: company/models.py:856 order/serializers.py:883 order/serializers.py:2047 -#: part/models.py:4070 part/models.py:4450 part/models.py:4819 -#: report/templates/report/inventree_bill_of_materials_report.html:140 -#: report/templates/report/inventree_purchase_order_report.html:39 -#: report/templates/report/inventree_return_order_report.html:27 -#: report/templates/report/inventree_sales_order_report.html:32 -#: report/templates/report/inventree_stock_location_report.html:105 -#: stock/serializers.py:813 -msgid "Note" -msgstr "" - -#: company/models.py:865 part/models.py:2250 +#: company/models.py:819 part/models.py:2338 msgid "base cost" msgstr "" -#: company/models.py:866 part/models.py:2251 +#: company/models.py:820 part/models.py:2339 msgid "Minimum charge (e.g. stocking fee)" msgstr "" -#: company/models.py:873 order/serializers.py:875 stock/models.py:1056 +#: company/models.py:827 order/serializers.py:886 stock/models.py:1056 #: stock/serializers.py:1606 msgid "Packaging" msgstr "" -#: company/models.py:874 +#: company/models.py:828 msgid "Part packaging" msgstr "" -#: company/models.py:879 +#: company/models.py:833 msgid "Pack Quantity" msgstr "" -#: company/models.py:881 +#: company/models.py:835 msgid "Total quantity supplied in a single pack. Leave empty for single items." msgstr "" -#: company/models.py:900 part/models.py:2257 +#: company/models.py:854 part/models.py:2345 msgid "multiple" msgstr "" -#: company/models.py:901 +#: company/models.py:855 msgid "Order multiple" msgstr "" -#: company/models.py:913 +#: company/models.py:867 msgid "Quantity available from supplier" msgstr "" -#: company/models.py:919 +#: company/models.py:873 msgid "Availability Updated" msgstr "" -#: company/models.py:920 +#: company/models.py:874 msgid "Date of last update of availability data" msgstr "" -#: company/models.py:1048 +#: company/models.py:1002 msgid "Supplier Price Break" msgstr "" -#: company/serializers.py:181 +#: company/serializers.py:184 +msgid "Primary Address" +msgstr "" + +#: company/serializers.py:186 msgid "Return the string representation for the primary address. This property exists for backwards compatibility." msgstr "" -#: company/serializers.py:212 +#: company/serializers.py:218 msgid "Default currency used for this supplier" msgstr "" -#: company/serializers.py:248 +#: company/serializers.py:260 msgid "Company Name" msgstr "" -#: company/serializers.py:433 part/serializers.py:955 stock/serializers.py:428 +#: company/serializers.py:460 part/serializers.py:840 stock/serializers.py:428 msgid "In Stock" msgstr "" +#: company/serializers.py:477 +msgid "Price Breaks" +msgstr "" + #: data_exporter/mixins.py:325 data_exporter/mixins.py:403 msgid "Error occurred during data export" msgstr "" @@ -4290,7 +4418,7 @@ msgstr "" msgid "Errors" msgstr "" -#: importer/models.py:550 part/serializers.py:1268 +#: importer/models.py:550 part/serializers.py:1133 msgid "Valid" msgstr "" @@ -4402,7 +4530,7 @@ msgstr "" msgid "Connected" msgstr "" -#: machine/machine_types/label_printer.py:232 order/api.py:1795 +#: machine/machine_types/label_printer.py:232 order/api.py:1800 msgid "Unknown" msgstr "" @@ -4530,105 +4658,105 @@ msgstr "" msgid "Maximum value for progress type, required if type=progress" msgstr "" -#: order/api.py:125 +#: order/api.py:130 msgid "Order Reference" msgstr "" -#: order/api.py:153 order/api.py:1207 +#: order/api.py:158 order/api.py:1212 msgid "Outstanding" msgstr "" -#: order/api.py:169 +#: order/api.py:174 msgid "Has Project Code" msgstr "" -#: order/api.py:183 order/models.py:488 +#: order/api.py:188 order/models.py:489 msgid "Created By" msgstr "" -#: order/api.py:187 +#: order/api.py:192 msgid "Created Before" msgstr "" -#: order/api.py:191 +#: order/api.py:196 msgid "Created After" msgstr "" -#: order/api.py:195 +#: order/api.py:200 msgid "Has Start Date" msgstr "" -#: order/api.py:203 +#: order/api.py:208 msgid "Start Date Before" msgstr "" -#: order/api.py:207 +#: order/api.py:212 msgid "Start Date After" msgstr "" -#: order/api.py:211 +#: order/api.py:216 msgid "Has Target Date" msgstr "" -#: order/api.py:219 +#: order/api.py:224 msgid "Target Date Before" msgstr "" -#: order/api.py:223 +#: order/api.py:228 msgid "Target Date After" msgstr "" -#: order/api.py:274 +#: order/api.py:279 msgid "Has Pricing" msgstr "" -#: order/api.py:327 order/api.py:812 order/api.py:1490 +#: order/api.py:332 order/api.py:818 order/api.py:1495 msgid "Completed Before" msgstr "" -#: order/api.py:331 order/api.py:816 order/api.py:1494 +#: order/api.py:336 order/api.py:822 order/api.py:1499 msgid "Completed After" msgstr "" -#: order/api.py:337 order/api.py:341 +#: order/api.py:342 order/api.py:346 msgid "External Build Order" msgstr "" -#: order/api.py:526 order/api.py:914 order/api.py:1170 order/models.py:1922 -#: order/models.py:2049 order/models.py:2099 order/models.py:2279 -#: order/models.py:2477 order/models.py:2999 order/models.py:3065 +#: order/api.py:532 order/api.py:919 order/api.py:1175 order/models.py:1923 +#: order/models.py:2050 order/models.py:2100 order/models.py:2280 +#: order/models.py:2478 order/models.py:3000 order/models.py:3066 msgid "Order" msgstr "" -#: order/api.py:530 order/api.py:982 +#: order/api.py:536 order/api.py:987 msgid "Order Complete" msgstr "" -#: order/api.py:562 order/api.py:566 order/serializers.py:745 +#: order/api.py:568 order/api.py:572 order/serializers.py:756 msgid "Internal Part" msgstr "" -#: order/api.py:584 +#: order/api.py:590 msgid "Order Pending" msgstr "" -#: order/api.py:967 +#: order/api.py:972 msgid "Completed" msgstr "" -#: order/api.py:1223 +#: order/api.py:1228 msgid "Has Shipment" msgstr "" -#: order/api.py:1789 order/models.py:552 order/models.py:1923 -#: order/models.py:2050 +#: order/api.py:1794 order/models.py:553 order/models.py:1924 +#: order/models.py:2051 #: report/templates/report/inventree_purchase_order_report.html:14 #: stock/serializers.py:129 templates/email/overdue_purchase_order.html:15 msgid "Purchase Order" msgstr "" -#: order/api.py:1791 order/models.py:1251 order/models.py:2100 -#: order/models.py:2280 order/models.py:2478 +#: order/api.py:1796 order/models.py:1252 order/models.py:2101 +#: order/models.py:2281 order/models.py:2479 #: report/templates/report/inventree_build_order_report.html:135 #: report/templates/report/inventree_sales_order_report.html:14 #: report/templates/report/inventree_sales_order_shipment_report.html:15 @@ -4636,8 +4764,8 @@ msgstr "" msgid "Sales Order" msgstr "" -#: order/api.py:1793 order/models.py:2649 order/models.py:3000 -#: order/models.py:3066 +#: order/api.py:1798 order/models.py:2650 order/models.py:3001 +#: order/models.py:3067 #: report/templates/report/inventree_return_order_report.html:13 #: templates/email/overdue_return_order.html:15 msgid "Return Order" @@ -4653,722 +4781,722 @@ msgstr "" msgid "Total price for this order" msgstr "" -#: order/models.py:96 order/serializers.py:77 +#: order/models.py:96 order/serializers.py:78 msgid "Order Currency" msgstr "" -#: order/models.py:99 order/serializers.py:78 +#: order/models.py:99 order/serializers.py:79 msgid "Currency for this order (leave blank to use company default)" msgstr "" -#: order/models.py:324 +#: order/models.py:325 msgid "This order is locked and cannot be modified" msgstr "" -#: order/models.py:376 +#: order/models.py:377 msgid "Contact does not match selected company" msgstr "" -#: order/models.py:383 +#: order/models.py:384 msgid "Start date must be before target date" msgstr "" -#: order/models.py:390 +#: order/models.py:391 msgid "Address does not match selected company" msgstr "" -#: order/models.py:443 +#: order/models.py:444 msgid "Order description (optional)" msgstr "" -#: order/models.py:452 order/models.py:1806 +#: order/models.py:453 order/models.py:1807 msgid "Select project code for this order" msgstr "" -#: order/models.py:458 order/models.py:1787 order/models.py:2344 +#: order/models.py:459 order/models.py:1788 order/models.py:2345 msgid "Link to external page" msgstr "" -#: order/models.py:465 +#: order/models.py:466 msgid "Start date" msgstr "" -#: order/models.py:466 +#: order/models.py:467 msgid "Scheduled start date for this order" msgstr "" -#: order/models.py:472 order/models.py:1794 order/serializers.py:309 +#: order/models.py:473 order/models.py:1795 order/serializers.py:317 #: report/templates/report/inventree_build_order_report.html:125 msgid "Target Date" msgstr "" -#: order/models.py:474 +#: order/models.py:475 msgid "Expected date for order delivery. Order will be overdue after this date." msgstr "" -#: order/models.py:494 +#: order/models.py:495 msgid "Issue Date" msgstr "" -#: order/models.py:495 +#: order/models.py:496 msgid "Date order was issued" msgstr "" -#: order/models.py:503 +#: order/models.py:504 msgid "User or group responsible for this order" msgstr "" -#: order/models.py:514 +#: order/models.py:515 msgid "Point of contact for this order" msgstr "" -#: order/models.py:524 +#: order/models.py:525 msgid "Company address for this order" msgstr "" -#: order/models.py:615 order/models.py:1312 +#: order/models.py:616 order/models.py:1313 msgid "Order reference" msgstr "" -#: order/models.py:624 order/models.py:1336 order/models.py:2737 +#: order/models.py:625 order/models.py:1337 order/models.py:2738 #: stock/serializers.py:559 stock/serializers.py:988 users/models.py:542 msgid "Status" msgstr "" -#: order/models.py:625 +#: order/models.py:626 msgid "Purchase order status" msgstr "" -#: order/models.py:640 +#: order/models.py:641 msgid "Company from which the items are being ordered" msgstr "" -#: order/models.py:651 +#: order/models.py:652 msgid "Supplier Reference" msgstr "" -#: order/models.py:652 +#: order/models.py:653 msgid "Supplier order reference code" msgstr "" -#: order/models.py:661 +#: order/models.py:662 msgid "received by" msgstr "" -#: order/models.py:668 order/models.py:2752 +#: order/models.py:669 order/models.py:2753 msgid "Date order was completed" msgstr "" -#: order/models.py:677 order/models.py:1981 +#: order/models.py:678 order/models.py:1982 msgid "Destination" msgstr "" -#: order/models.py:678 order/models.py:1985 +#: order/models.py:679 order/models.py:1986 msgid "Destination for received items" msgstr "" -#: order/models.py:724 +#: order/models.py:725 msgid "Part supplier must match PO supplier" msgstr "" -#: order/models.py:994 +#: order/models.py:995 msgid "Line item does not match purchase order" msgstr "" -#: order/models.py:997 +#: order/models.py:998 msgid "Line item is missing a linked part" msgstr "" -#: order/models.py:1011 +#: order/models.py:1012 msgid "Quantity must be a positive number" msgstr "" -#: order/models.py:1323 order/models.py:2724 stock/models.py:1078 +#: order/models.py:1324 order/models.py:2725 stock/models.py:1078 #: stock/models.py:1079 stock/serializers.py:1322 #: templates/email/overdue_return_order.html:16 #: templates/email/overdue_sales_order.html:16 msgid "Customer" msgstr "" -#: order/models.py:1324 +#: order/models.py:1325 msgid "Company to which the items are being sold" msgstr "" -#: order/models.py:1337 +#: order/models.py:1338 msgid "Sales order status" msgstr "" -#: order/models.py:1348 order/models.py:2744 +#: order/models.py:1349 order/models.py:2745 msgid "Customer Reference " msgstr "" -#: order/models.py:1349 order/models.py:2745 +#: order/models.py:1350 order/models.py:2746 msgid "Customer order reference code" msgstr "" -#: order/models.py:1353 order/models.py:2296 +#: order/models.py:1354 order/models.py:2297 msgid "Shipment Date" msgstr "" -#: order/models.py:1362 +#: order/models.py:1363 msgid "shipped by" msgstr "" -#: order/models.py:1413 +#: order/models.py:1414 msgid "Order is already complete" msgstr "" -#: order/models.py:1416 +#: order/models.py:1417 msgid "Order is already cancelled" msgstr "" -#: order/models.py:1420 +#: order/models.py:1421 msgid "Only an open order can be marked as complete" msgstr "" -#: order/models.py:1424 +#: order/models.py:1425 msgid "Order cannot be completed as there are incomplete shipments" msgstr "" -#: order/models.py:1429 +#: order/models.py:1430 msgid "Order cannot be completed as there are incomplete allocations" msgstr "" -#: order/models.py:1438 +#: order/models.py:1439 msgid "Order cannot be completed as there are incomplete line items" msgstr "" -#: order/models.py:1733 order/models.py:1749 +#: order/models.py:1734 order/models.py:1750 msgid "The order is locked and cannot be modified" msgstr "" -#: order/models.py:1757 +#: order/models.py:1758 msgid "Item quantity" msgstr "" -#: order/models.py:1774 +#: order/models.py:1775 msgid "Line item reference" msgstr "" -#: order/models.py:1781 +#: order/models.py:1782 msgid "Line item notes" msgstr "" -#: order/models.py:1796 +#: order/models.py:1797 msgid "Target date for this line item (leave blank to use the target date from the order)" msgstr "" -#: order/models.py:1826 +#: order/models.py:1827 msgid "Line item description (optional)" msgstr "" -#: order/models.py:1833 +#: order/models.py:1834 msgid "Additional context for this line" msgstr "" -#: order/models.py:1843 +#: order/models.py:1844 msgid "Unit price" msgstr "" -#: order/models.py:1862 +#: order/models.py:1863 msgid "Purchase Order Line Item" msgstr "" -#: order/models.py:1889 +#: order/models.py:1890 msgid "Supplier part must match supplier" msgstr "" -#: order/models.py:1894 +#: order/models.py:1895 msgid "Build order must be marked as external" msgstr "" -#: order/models.py:1901 +#: order/models.py:1902 msgid "Build orders can only be linked to assembly parts" msgstr "" -#: order/models.py:1907 +#: order/models.py:1908 msgid "Build order part must match line item part" msgstr "" -#: order/models.py:1942 +#: order/models.py:1943 msgid "Supplier part" msgstr "" -#: order/models.py:1949 +#: order/models.py:1950 msgid "Received" msgstr "" -#: order/models.py:1950 +#: order/models.py:1951 msgid "Number of items received" msgstr "" -#: order/models.py:1958 stock/models.py:1201 stock/serializers.py:637 +#: order/models.py:1959 stock/models.py:1201 stock/serializers.py:637 msgid "Purchase Price" msgstr "" -#: order/models.py:1959 +#: order/models.py:1960 msgid "Unit purchase price" msgstr "" -#: order/models.py:1975 +#: order/models.py:1976 msgid "External Build Order to be fulfilled by this line item" msgstr "" -#: order/models.py:2038 +#: order/models.py:2039 msgid "Purchase Order Extra Line" msgstr "" -#: order/models.py:2067 +#: order/models.py:2068 msgid "Sales Order Line Item" msgstr "" -#: order/models.py:2092 +#: order/models.py:2093 msgid "Only salable parts can be assigned to a sales order" msgstr "" -#: order/models.py:2118 +#: order/models.py:2119 msgid "Sale Price" msgstr "" -#: order/models.py:2119 +#: order/models.py:2120 msgid "Unit sale price" msgstr "" -#: order/models.py:2128 order/status_codes.py:50 +#: order/models.py:2129 order/status_codes.py:50 msgid "Shipped" msgstr "" -#: order/models.py:2129 +#: order/models.py:2130 msgid "Shipped quantity" msgstr "" -#: order/models.py:2240 +#: order/models.py:2241 msgid "Sales Order Shipment" msgstr "" -#: order/models.py:2253 +#: order/models.py:2254 msgid "Shipment address must match the customer" msgstr "" -#: order/models.py:2289 +#: order/models.py:2290 msgid "Shipping address for this shipment" msgstr "" -#: order/models.py:2297 +#: order/models.py:2298 msgid "Date of shipment" msgstr "" -#: order/models.py:2303 +#: order/models.py:2304 msgid "Delivery Date" msgstr "" -#: order/models.py:2304 +#: order/models.py:2305 msgid "Date of delivery of shipment" msgstr "" -#: order/models.py:2312 +#: order/models.py:2313 msgid "Checked By" msgstr "" -#: order/models.py:2313 +#: order/models.py:2314 msgid "User who checked this shipment" msgstr "" -#: order/models.py:2320 order/models.py:2574 order/serializers.py:1711 -#: order/serializers.py:1835 +#: order/models.py:2321 order/models.py:2575 order/serializers.py:1725 +#: order/serializers.py:1849 #: report/templates/report/inventree_sales_order_shipment_report.html:14 msgid "Shipment" msgstr "" -#: order/models.py:2321 +#: order/models.py:2322 msgid "Shipment number" msgstr "" -#: order/models.py:2329 +#: order/models.py:2330 msgid "Tracking Number" msgstr "" -#: order/models.py:2330 +#: order/models.py:2331 msgid "Shipment tracking information" msgstr "" -#: order/models.py:2337 +#: order/models.py:2338 msgid "Invoice Number" msgstr "" -#: order/models.py:2338 +#: order/models.py:2339 msgid "Reference number for associated invoice" msgstr "" -#: order/models.py:2377 +#: order/models.py:2378 msgid "Shipment has already been sent" msgstr "" -#: order/models.py:2380 +#: order/models.py:2381 msgid "Shipment has no allocated stock items" msgstr "" -#: order/models.py:2387 +#: order/models.py:2388 msgid "Shipment must be checked before it can be completed" msgstr "" -#: order/models.py:2466 +#: order/models.py:2467 msgid "Sales Order Extra Line" msgstr "" -#: order/models.py:2495 +#: order/models.py:2496 msgid "Sales Order Allocation" msgstr "" -#: order/models.py:2518 order/models.py:2520 +#: order/models.py:2519 order/models.py:2521 msgid "Stock item has not been assigned" msgstr "" -#: order/models.py:2527 +#: order/models.py:2528 msgid "Cannot allocate stock item to a line with a different part" msgstr "" -#: order/models.py:2530 +#: order/models.py:2531 msgid "Cannot allocate stock to a line without a part" msgstr "" -#: order/models.py:2533 +#: order/models.py:2534 msgid "Allocation quantity cannot exceed stock quantity" msgstr "" -#: order/models.py:2552 order/serializers.py:1581 +#: order/models.py:2553 order/serializers.py:1595 msgid "Quantity must be 1 for serialized stock item" msgstr "" -#: order/models.py:2555 +#: order/models.py:2556 msgid "Sales order does not match shipment" msgstr "" -#: order/models.py:2556 plugin/base/barcodes/api.py:642 +#: order/models.py:2557 plugin/base/barcodes/api.py:642 msgid "Shipment does not match sales order" msgstr "" -#: order/models.py:2564 +#: order/models.py:2565 msgid "Line" msgstr "" -#: order/models.py:2575 +#: order/models.py:2576 msgid "Sales order shipment reference" msgstr "" -#: order/models.py:2588 order/models.py:3007 +#: order/models.py:2589 order/models.py:3008 msgid "Item" msgstr "" -#: order/models.py:2589 +#: order/models.py:2590 msgid "Select stock item to allocate" msgstr "" -#: order/models.py:2598 +#: order/models.py:2599 msgid "Enter stock allocation quantity" msgstr "" -#: order/models.py:2713 +#: order/models.py:2714 msgid "Return Order reference" msgstr "" -#: order/models.py:2725 +#: order/models.py:2726 msgid "Company from which items are being returned" msgstr "" -#: order/models.py:2738 +#: order/models.py:2739 msgid "Return order status" msgstr "" -#: order/models.py:2965 +#: order/models.py:2966 msgid "Return Order Line Item" msgstr "" -#: order/models.py:2978 +#: order/models.py:2979 msgid "Stock item must be specified" msgstr "" -#: order/models.py:2982 +#: order/models.py:2983 msgid "Return quantity exceeds stock quantity" msgstr "" -#: order/models.py:2987 +#: order/models.py:2988 msgid "Return quantity must be greater than zero" msgstr "" -#: order/models.py:2992 +#: order/models.py:2993 msgid "Invalid quantity for serialized stock item" msgstr "" -#: order/models.py:3008 +#: order/models.py:3009 msgid "Select item to return from customer" msgstr "" -#: order/models.py:3023 +#: order/models.py:3024 msgid "Received Date" msgstr "" -#: order/models.py:3024 +#: order/models.py:3025 msgid "The date this this return item was received" msgstr "" -#: order/models.py:3036 +#: order/models.py:3037 msgid "Outcome" msgstr "" -#: order/models.py:3037 +#: order/models.py:3038 msgid "Outcome for this line item" msgstr "" -#: order/models.py:3044 +#: order/models.py:3045 msgid "Cost associated with return or repair for this line item" msgstr "" -#: order/models.py:3054 +#: order/models.py:3055 msgid "Return Order Extra Line" msgstr "" -#: order/serializers.py:91 +#: order/serializers.py:92 msgid "Order ID" msgstr "" -#: order/serializers.py:91 +#: order/serializers.py:92 msgid "ID of the order to duplicate" msgstr "" -#: order/serializers.py:97 +#: order/serializers.py:98 msgid "Copy Lines" msgstr "" -#: order/serializers.py:98 +#: order/serializers.py:99 msgid "Copy line items from the original order" msgstr "" -#: order/serializers.py:104 +#: order/serializers.py:105 msgid "Copy Extra Lines" msgstr "" -#: order/serializers.py:105 +#: order/serializers.py:106 msgid "Copy extra line items from the original order" msgstr "" -#: order/serializers.py:120 +#: order/serializers.py:121 #: report/templates/report/inventree_purchase_order_report.html:29 #: report/templates/report/inventree_return_order_report.html:19 #: report/templates/report/inventree_sales_order_report.html:22 msgid "Line Items" msgstr "" -#: order/serializers.py:125 +#: order/serializers.py:126 msgid "Completed Lines" msgstr "" -#: order/serializers.py:192 +#: order/serializers.py:199 msgid "Duplicate Order" msgstr "" -#: order/serializers.py:193 +#: order/serializers.py:200 msgid "Specify options for duplicating this order" msgstr "" -#: order/serializers.py:270 +#: order/serializers.py:278 msgid "Invalid order ID" msgstr "" -#: order/serializers.py:466 +#: order/serializers.py:477 msgid "Supplier Name" msgstr "" -#: order/serializers.py:510 +#: order/serializers.py:521 msgid "Order cannot be cancelled" msgstr "" -#: order/serializers.py:525 order/serializers.py:1602 +#: order/serializers.py:536 order/serializers.py:1616 msgid "Allow order to be closed with incomplete line items" msgstr "" -#: order/serializers.py:535 order/serializers.py:1612 +#: order/serializers.py:546 order/serializers.py:1626 msgid "Order has incomplete line items" msgstr "" -#: order/serializers.py:665 +#: order/serializers.py:676 msgid "Order is not open" msgstr "" -#: order/serializers.py:692 +#: order/serializers.py:703 msgid "Auto Pricing" msgstr "" -#: order/serializers.py:694 +#: order/serializers.py:705 msgid "Automatically calculate purchase price based on supplier part data" msgstr "" -#: order/serializers.py:704 +#: order/serializers.py:715 msgid "Purchase price currency" msgstr "" -#: order/serializers.py:718 +#: order/serializers.py:729 msgid "Merge Items" msgstr "" -#: order/serializers.py:720 +#: order/serializers.py:731 msgid "Merge items with the same part, destination and target date into one line item" msgstr "" -#: order/serializers.py:727 part/serializers.py:560 +#: order/serializers.py:738 part/serializers.py:471 msgid "SKU" msgstr "" -#: order/serializers.py:741 part/models.py:1089 part/serializers.py:372 +#: order/serializers.py:752 part/models.py:1177 part/serializers.py:337 msgid "Internal Part Number" msgstr "" -#: order/serializers.py:749 +#: order/serializers.py:760 msgid "Internal Part Name" msgstr "" -#: order/serializers.py:765 +#: order/serializers.py:776 msgid "Supplier part must be specified" msgstr "" -#: order/serializers.py:768 +#: order/serializers.py:779 msgid "Purchase order must be specified" msgstr "" -#: order/serializers.py:776 +#: order/serializers.py:787 msgid "Supplier must match purchase order" msgstr "" -#: order/serializers.py:777 +#: order/serializers.py:788 msgid "Purchase order must match supplier" msgstr "" -#: order/serializers.py:825 order/serializers.py:1682 +#: order/serializers.py:836 order/serializers.py:1696 msgid "Line Item" msgstr "" -#: order/serializers.py:834 order/serializers.py:974 order/serializers.py:2043 +#: order/serializers.py:845 order/serializers.py:985 order/serializers.py:2060 msgid "Select destination location for received items" msgstr "" -#: order/serializers.py:850 +#: order/serializers.py:861 msgid "Enter batch code for incoming stock items" msgstr "" -#: order/serializers.py:857 stock/models.py:1160 +#: order/serializers.py:868 stock/models.py:1160 #: templates/email/stale_stock_notification.html:22 users/models.py:137 msgid "Expiry Date" msgstr "" -#: order/serializers.py:858 +#: order/serializers.py:869 msgid "Enter expiry date for incoming stock items" msgstr "" -#: order/serializers.py:866 +#: order/serializers.py:877 msgid "Enter serial numbers for incoming stock items" msgstr "" -#: order/serializers.py:876 +#: order/serializers.py:887 msgid "Override packaging information for incoming stock items" msgstr "" -#: order/serializers.py:884 order/serializers.py:2048 +#: order/serializers.py:895 order/serializers.py:2065 msgid "Additional note for incoming stock items" msgstr "" -#: order/serializers.py:891 +#: order/serializers.py:902 msgid "Barcode" msgstr "" -#: order/serializers.py:892 +#: order/serializers.py:903 msgid "Scanned barcode" msgstr "" -#: order/serializers.py:908 +#: order/serializers.py:919 msgid "Barcode is already in use" msgstr "" -#: order/serializers.py:991 order/serializers.py:2067 +#: order/serializers.py:1002 order/serializers.py:2084 msgid "Line items must be provided" msgstr "" -#: order/serializers.py:1010 +#: order/serializers.py:1021 msgid "Destination location must be specified" msgstr "" -#: order/serializers.py:1017 +#: order/serializers.py:1028 msgid "Supplied barcode values must be unique" msgstr "" -#: order/serializers.py:1121 +#: order/serializers.py:1135 msgid "Shipments" msgstr "" -#: order/serializers.py:1125 +#: order/serializers.py:1139 msgid "Completed Shipments" msgstr "" -#: order/serializers.py:1293 +#: order/serializers.py:1307 msgid "Sale price currency" msgstr "" -#: order/serializers.py:1339 +#: order/serializers.py:1353 msgid "Allocated Items" msgstr "" -#: order/serializers.py:1484 +#: order/serializers.py:1498 msgid "No shipment details provided" msgstr "" -#: order/serializers.py:1545 order/serializers.py:1691 +#: order/serializers.py:1559 order/serializers.py:1705 msgid "Line item is not associated with this order" msgstr "" -#: order/serializers.py:1564 +#: order/serializers.py:1578 msgid "Quantity must be positive" msgstr "" -#: order/serializers.py:1701 +#: order/serializers.py:1715 msgid "Enter serial numbers to allocate" msgstr "" -#: order/serializers.py:1723 order/serializers.py:1843 +#: order/serializers.py:1737 order/serializers.py:1857 msgid "Shipment has already been shipped" msgstr "" -#: order/serializers.py:1726 order/serializers.py:1846 +#: order/serializers.py:1740 order/serializers.py:1860 msgid "Shipment is not associated with this order" msgstr "" -#: order/serializers.py:1781 +#: order/serializers.py:1795 msgid "No match found for the following serial numbers" msgstr "" -#: order/serializers.py:1788 +#: order/serializers.py:1802 msgid "The following serial numbers are unavailable" msgstr "" -#: order/serializers.py:2009 +#: order/serializers.py:2026 msgid "Return order line item" msgstr "" -#: order/serializers.py:2019 +#: order/serializers.py:2036 msgid "Line item does not match return order" msgstr "" -#: order/serializers.py:2022 +#: order/serializers.py:2039 msgid "Line item has already been received" msgstr "" -#: order/serializers.py:2059 +#: order/serializers.py:2076 msgid "Items can only be received against orders which are in progress" msgstr "" -#: order/serializers.py:2124 +#: order/serializers.py:2141 msgid "Quantity to return" msgstr "" -#: order/serializers.py:2140 +#: order/serializers.py:2157 msgid "Line price currency" msgstr "" @@ -5431,1190 +5559,1109 @@ msgstr "" msgid "Return order {ro} is now overdue" msgstr "" -#: part/api.py:108 +#: part/api.py:103 msgid "Starred" msgstr "" -#: part/api.py:110 +#: part/api.py:105 msgid "Filter by starred categories" msgstr "" -#: part/api.py:127 stock/api.py:288 +#: part/api.py:122 stock/api.py:288 msgid "Depth" msgstr "" -#: part/api.py:127 +#: part/api.py:122 msgid "Filter by category depth" msgstr "" -#: part/api.py:145 stock/api.py:306 +#: part/api.py:140 stock/api.py:306 msgid "Top Level" msgstr "" -#: part/api.py:147 +#: part/api.py:142 msgid "Filter by top-level categories" msgstr "" -#: part/api.py:160 stock/api.py:321 +#: part/api.py:155 stock/api.py:321 msgid "Cascade" msgstr "" -#: part/api.py:162 +#: part/api.py:157 msgid "Include sub-categories in filtered results" msgstr "" -#: part/api.py:182 +#: part/api.py:177 msgid "Parent" msgstr "" -#: part/api.py:184 +#: part/api.py:179 msgid "Filter by parent category" msgstr "" -#: part/api.py:219 +#: part/api.py:214 msgid "Exclude sub-categories under the specified category" msgstr "" -#: part/api.py:445 +#: part/api.py:440 msgid "Has Results" msgstr "" -#: part/api.py:666 +#: part/api.py:661 msgid "Is Variant" msgstr "" -#: part/api.py:674 +#: part/api.py:669 msgid "Is Revision" msgstr "" -#: part/api.py:684 +#: part/api.py:679 msgid "Has Revisions" msgstr "" -#: part/api.py:865 +#: part/api.py:860 msgid "BOM Valid" msgstr "" -#: part/api.py:974 +#: part/api.py:969 msgid "Cascade Categories" msgstr "" -#: part/api.py:975 +#: part/api.py:970 msgid "If true, include items in child categories of the given category" msgstr "" -#: part/api.py:981 +#: part/api.py:976 msgid "Filter by numeric category ID or the literal 'null'" msgstr "" -#: part/api.py:1533 +#: part/api.py:1258 msgid "Assembly part is testable" msgstr "" -#: part/api.py:1542 +#: part/api.py:1267 msgid "Component part is testable" msgstr "" -#: part/api.py:1611 +#: part/api.py:1336 msgid "Uses" msgstr "" -#: part/models.py:96 part/models.py:4163 +#: part/models.py:93 part/models.py:436 #: templates/email/part_event_notification.html:16 msgid "Part Category" msgstr "" -#: part/models.py:97 users/ruleset.py:27 +#: part/models.py:94 users/ruleset.py:27 msgid "Part Categories" msgstr "" -#: part/models.py:115 part/models.py:1125 +#: part/models.py:112 part/models.py:1213 msgid "Default Location" msgstr "" -#: part/models.py:116 +#: part/models.py:113 msgid "Default location for parts in this category" msgstr "" -#: part/models.py:121 stock/models.py:216 +#: part/models.py:118 stock/models.py:216 msgid "Structural" msgstr "" -#: part/models.py:123 +#: part/models.py:120 msgid "Parts may not be directly assigned to a structural category, but may be assigned to child categories." msgstr "" -#: part/models.py:132 +#: part/models.py:129 msgid "Default keywords" msgstr "" -#: part/models.py:133 +#: part/models.py:130 msgid "Default keywords for parts in this category" msgstr "" -#: part/models.py:140 stock/models.py:97 stock/models.py:198 +#: part/models.py:137 stock/models.py:97 stock/models.py:198 msgid "Icon" msgstr "" -#: part/models.py:141 part/serializers.py:148 part/serializers.py:167 +#: part/models.py:138 part/serializers.py:147 part/serializers.py:166 #: stock/models.py:199 msgid "Icon (optional)" msgstr "" -#: part/models.py:185 +#: part/models.py:182 msgid "You cannot make this part category structural because some parts are already assigned to it!" msgstr "" -#: part/models.py:473 part/serializers.py:119 part/serializers.py:310 -#: users/ruleset.py:28 +#: part/models.py:392 +msgid "Part Category Parameter Template" +msgstr "" + +#: part/models.py:448 +msgid "Default Value" +msgstr "" + +#: part/models.py:449 +msgid "Default Parameter Value" +msgstr "" + +#: part/models.py:551 part/serializers.py:118 users/ruleset.py:28 msgid "Parts" msgstr "" -#: part/models.py:525 +#: part/models.py:597 +msgid "Cannot delete parameters of a locked part" +msgstr "" + +#: part/models.py:602 +msgid "Cannot modify parameters of a locked part" +msgstr "" + +#: part/models.py:613 msgid "Cannot delete this part as it is locked" msgstr "" -#: part/models.py:528 +#: part/models.py:616 msgid "Cannot delete this part as it is still active" msgstr "" -#: part/models.py:533 +#: part/models.py:621 msgid "Cannot delete this part as it is used in an assembly" msgstr "" -#: part/models.py:616 part/models.py:623 +#: part/models.py:704 part/models.py:711 #, python-brace-format msgid "Part '{self}' cannot be used in BOM for '{parent}' (recursive)" msgstr "" -#: part/models.py:635 +#: part/models.py:723 #, python-brace-format msgid "Part '{parent}' is used in BOM for '{self}' (recursive)" msgstr "" -#: part/models.py:702 +#: part/models.py:790 #, python-brace-format msgid "IPN must match regex pattern {pattern}" msgstr "" -#: part/models.py:710 +#: part/models.py:798 msgid "Part cannot be a revision of itself" msgstr "" -#: part/models.py:717 +#: part/models.py:805 msgid "Cannot make a revision of a part which is already a revision" msgstr "" -#: part/models.py:724 +#: part/models.py:812 msgid "Revision code must be specified" msgstr "" -#: part/models.py:731 +#: part/models.py:819 msgid "Revisions are only allowed for assembly parts" msgstr "" -#: part/models.py:738 +#: part/models.py:826 msgid "Cannot make a revision of a template part" msgstr "" -#: part/models.py:744 +#: part/models.py:832 msgid "Parent part must point to the same template" msgstr "" -#: part/models.py:841 +#: part/models.py:929 msgid "Stock item with this serial number already exists" msgstr "" -#: part/models.py:971 +#: part/models.py:1059 msgid "Duplicate IPN not allowed in part settings" msgstr "" -#: part/models.py:983 +#: part/models.py:1071 msgid "Duplicate part revision already exists." msgstr "" -#: part/models.py:992 +#: part/models.py:1080 msgid "Part with this Name, IPN and Revision already exists." msgstr "" -#: part/models.py:1007 +#: part/models.py:1095 msgid "Parts cannot be assigned to structural part categories!" msgstr "" -#: part/models.py:1039 +#: part/models.py:1127 msgid "Part name" msgstr "" -#: part/models.py:1044 +#: part/models.py:1132 msgid "Is Template" msgstr "" -#: part/models.py:1045 +#: part/models.py:1133 msgid "Is this part a template part?" msgstr "" -#: part/models.py:1055 +#: part/models.py:1143 msgid "Is this part a variant of another part?" msgstr "" -#: part/models.py:1056 +#: part/models.py:1144 msgid "Variant Of" msgstr "" -#: part/models.py:1063 +#: part/models.py:1151 msgid "Part description (optional)" msgstr "" -#: part/models.py:1070 +#: part/models.py:1158 msgid "Keywords" msgstr "" -#: part/models.py:1071 +#: part/models.py:1159 msgid "Part keywords to improve visibility in search results" msgstr "" -#: part/models.py:1081 +#: part/models.py:1169 msgid "Part category" msgstr "" -#: part/models.py:1088 part/serializers.py:929 +#: part/models.py:1176 part/serializers.py:814 #: report/templates/report/inventree_stock_location_report.html:103 msgid "IPN" msgstr "" -#: part/models.py:1096 +#: part/models.py:1184 msgid "Part revision or version number" msgstr "" -#: part/models.py:1097 report/models.py:228 +#: part/models.py:1185 report/models.py:228 msgid "Revision" msgstr "" -#: part/models.py:1106 +#: part/models.py:1194 msgid "Is this part a revision of another part?" msgstr "" -#: part/models.py:1107 +#: part/models.py:1195 msgid "Revision Of" msgstr "" -#: part/models.py:1123 +#: part/models.py:1211 msgid "Where is this item normally stored?" msgstr "" -#: part/models.py:1169 +#: part/models.py:1257 msgid "Default Supplier" msgstr "" -#: part/models.py:1170 +#: part/models.py:1258 msgid "Default supplier part" msgstr "" -#: part/models.py:1177 +#: part/models.py:1265 msgid "Default Expiry" msgstr "" -#: part/models.py:1178 +#: part/models.py:1266 msgid "Expiry time (in days) for stock items of this part" msgstr "" -#: part/models.py:1186 part/serializers.py:1003 +#: part/models.py:1274 part/serializers.py:888 msgid "Minimum Stock" msgstr "" -#: part/models.py:1187 +#: part/models.py:1275 msgid "Minimum allowed stock level" msgstr "" -#: part/models.py:1196 +#: part/models.py:1284 msgid "Units of measure for this part" msgstr "" -#: part/models.py:1203 +#: part/models.py:1291 msgid "Can this part be built from other parts?" msgstr "" -#: part/models.py:1209 +#: part/models.py:1297 msgid "Can this part be used to build other parts?" msgstr "" -#: part/models.py:1215 +#: part/models.py:1303 msgid "Does this part have tracking for unique items?" msgstr "" -#: part/models.py:1221 +#: part/models.py:1309 msgid "Can this part have test results recorded against it?" msgstr "" -#: part/models.py:1227 +#: part/models.py:1315 msgid "Can this part be purchased from external suppliers?" msgstr "" -#: part/models.py:1233 +#: part/models.py:1321 msgid "Can this part be sold to customers?" msgstr "" -#: part/models.py:1237 +#: part/models.py:1325 msgid "Is this part active?" msgstr "" -#: part/models.py:1243 +#: part/models.py:1331 msgid "Locked parts cannot be edited" msgstr "" -#: part/models.py:1249 +#: part/models.py:1337 msgid "Is this a virtual part, such as a software product or license?" msgstr "" -#: part/models.py:1254 +#: part/models.py:1342 msgid "BOM Validated" msgstr "" -#: part/models.py:1255 +#: part/models.py:1343 msgid "Is the BOM for this part valid?" msgstr "" -#: part/models.py:1261 +#: part/models.py:1349 msgid "BOM checksum" msgstr "" -#: part/models.py:1262 +#: part/models.py:1350 msgid "Stored BOM checksum" msgstr "" -#: part/models.py:1270 +#: part/models.py:1358 msgid "BOM checked by" msgstr "" -#: part/models.py:1275 +#: part/models.py:1363 msgid "BOM checked date" msgstr "" -#: part/models.py:1291 +#: part/models.py:1379 msgid "Creation User" msgstr "" -#: part/models.py:1301 +#: part/models.py:1389 msgid "Owner responsible for this part" msgstr "" -#: part/models.py:2258 +#: part/models.py:2346 msgid "Sell multiple" msgstr "" -#: part/models.py:3286 +#: part/models.py:3350 msgid "Currency used to cache pricing calculations" msgstr "" -#: part/models.py:3302 +#: part/models.py:3366 msgid "Minimum BOM Cost" msgstr "" -#: part/models.py:3303 +#: part/models.py:3367 msgid "Minimum cost of component parts" msgstr "" -#: part/models.py:3309 +#: part/models.py:3373 msgid "Maximum BOM Cost" msgstr "" -#: part/models.py:3310 +#: part/models.py:3374 msgid "Maximum cost of component parts" msgstr "" -#: part/models.py:3316 +#: part/models.py:3380 msgid "Minimum Purchase Cost" msgstr "" -#: part/models.py:3317 +#: part/models.py:3381 msgid "Minimum historical purchase cost" msgstr "" -#: part/models.py:3323 +#: part/models.py:3387 msgid "Maximum Purchase Cost" msgstr "" -#: part/models.py:3324 +#: part/models.py:3388 msgid "Maximum historical purchase cost" msgstr "" -#: part/models.py:3330 +#: part/models.py:3394 msgid "Minimum Internal Price" msgstr "" -#: part/models.py:3331 +#: part/models.py:3395 msgid "Minimum cost based on internal price breaks" msgstr "" -#: part/models.py:3337 +#: part/models.py:3401 msgid "Maximum Internal Price" msgstr "" -#: part/models.py:3338 +#: part/models.py:3402 msgid "Maximum cost based on internal price breaks" msgstr "" -#: part/models.py:3344 +#: part/models.py:3408 msgid "Minimum Supplier Price" msgstr "" -#: part/models.py:3345 +#: part/models.py:3409 msgid "Minimum price of part from external suppliers" msgstr "" -#: part/models.py:3351 +#: part/models.py:3415 msgid "Maximum Supplier Price" msgstr "" -#: part/models.py:3352 +#: part/models.py:3416 msgid "Maximum price of part from external suppliers" msgstr "" -#: part/models.py:3358 +#: part/models.py:3422 msgid "Minimum Variant Cost" msgstr "" -#: part/models.py:3359 +#: part/models.py:3423 msgid "Calculated minimum cost of variant parts" msgstr "" -#: part/models.py:3365 +#: part/models.py:3429 msgid "Maximum Variant Cost" msgstr "" -#: part/models.py:3366 +#: part/models.py:3430 msgid "Calculated maximum cost of variant parts" msgstr "" -#: part/models.py:3372 part/models.py:3386 +#: part/models.py:3436 part/models.py:3450 msgid "Minimum Cost" msgstr "" -#: part/models.py:3373 +#: part/models.py:3437 msgid "Override minimum cost" msgstr "" -#: part/models.py:3379 part/models.py:3393 +#: part/models.py:3443 part/models.py:3457 msgid "Maximum Cost" msgstr "" -#: part/models.py:3380 +#: part/models.py:3444 msgid "Override maximum cost" msgstr "" -#: part/models.py:3387 +#: part/models.py:3451 msgid "Calculated overall minimum cost" msgstr "" -#: part/models.py:3394 +#: part/models.py:3458 msgid "Calculated overall maximum cost" msgstr "" -#: part/models.py:3400 +#: part/models.py:3464 msgid "Minimum Sale Price" msgstr "" -#: part/models.py:3401 +#: part/models.py:3465 msgid "Minimum sale price based on price breaks" msgstr "" -#: part/models.py:3407 +#: part/models.py:3471 msgid "Maximum Sale Price" msgstr "" -#: part/models.py:3408 +#: part/models.py:3472 msgid "Maximum sale price based on price breaks" msgstr "" -#: part/models.py:3414 +#: part/models.py:3478 msgid "Minimum Sale Cost" msgstr "" -#: part/models.py:3415 +#: part/models.py:3479 msgid "Minimum historical sale price" msgstr "" -#: part/models.py:3421 +#: part/models.py:3485 msgid "Maximum Sale Cost" msgstr "" -#: part/models.py:3422 +#: part/models.py:3486 msgid "Maximum historical sale price" msgstr "" -#: part/models.py:3440 +#: part/models.py:3504 msgid "Part for stocktake" msgstr "" -#: part/models.py:3445 +#: part/models.py:3509 msgid "Item Count" msgstr "" -#: part/models.py:3446 +#: part/models.py:3510 msgid "Number of individual stock entries at time of stocktake" msgstr "" -#: part/models.py:3454 +#: part/models.py:3518 msgid "Total available stock at time of stocktake" msgstr "" -#: part/models.py:3458 report/templates/report/inventree_test_report.html:106 +#: part/models.py:3522 report/templates/report/inventree_test_report.html:106 msgid "Date" msgstr "" -#: part/models.py:3459 +#: part/models.py:3523 msgid "Date stocktake was performed" msgstr "" -#: part/models.py:3466 +#: part/models.py:3530 msgid "Minimum Stock Cost" msgstr "" -#: part/models.py:3467 +#: part/models.py:3531 msgid "Estimated minimum cost of stock on hand" msgstr "" -#: part/models.py:3473 +#: part/models.py:3537 msgid "Maximum Stock Cost" msgstr "" -#: part/models.py:3474 +#: part/models.py:3538 msgid "Estimated maximum cost of stock on hand" msgstr "" -#: part/models.py:3484 +#: part/models.py:3548 msgid "Part Sale Price Break" msgstr "" -#: part/models.py:3596 +#: part/models.py:3660 msgid "Part Test Template" msgstr "" -#: part/models.py:3622 +#: part/models.py:3686 msgid "Invalid template name - must include at least one alphanumeric character" msgstr "" -#: part/models.py:3643 part/models.py:3816 -msgid "Choices must be unique" -msgstr "" - -#: part/models.py:3654 +#: part/models.py:3718 msgid "Test templates can only be created for testable parts" msgstr "" -#: part/models.py:3668 +#: part/models.py:3732 msgid "Test template with the same key already exists for part" msgstr "" -#: part/models.py:3685 +#: part/models.py:3749 msgid "Test Name" msgstr "" -#: part/models.py:3686 +#: part/models.py:3750 msgid "Enter a name for the test" msgstr "" -#: part/models.py:3692 +#: part/models.py:3756 msgid "Test Key" msgstr "" -#: part/models.py:3693 +#: part/models.py:3757 msgid "Simplified key for the test" msgstr "" -#: part/models.py:3700 +#: part/models.py:3764 msgid "Test Description" msgstr "" -#: part/models.py:3701 +#: part/models.py:3765 msgid "Enter description for this test" msgstr "" -#: part/models.py:3705 report/models.py:287 -msgid "Enabled" -msgstr "" - -#: part/models.py:3705 +#: part/models.py:3769 msgid "Is this test enabled?" msgstr "" -#: part/models.py:3710 +#: part/models.py:3774 msgid "Required" msgstr "" -#: part/models.py:3711 +#: part/models.py:3775 msgid "Is this test required to pass?" msgstr "" -#: part/models.py:3716 +#: part/models.py:3780 msgid "Requires Value" msgstr "" -#: part/models.py:3717 +#: part/models.py:3781 msgid "Does this test require a value when adding a test result?" msgstr "" -#: part/models.py:3722 +#: part/models.py:3786 msgid "Requires Attachment" msgstr "" -#: part/models.py:3724 +#: part/models.py:3788 msgid "Does this test require a file attachment when adding a test result?" msgstr "" -#: part/models.py:3730 part/models.py:3878 -msgid "Choices" -msgstr "" - -#: part/models.py:3731 +#: part/models.py:3795 msgid "Valid choices for this test (comma-separated)" msgstr "" -#: part/models.py:3764 -msgid "Part Parameter Template" -msgstr "" - -#: part/models.py:3791 -msgid "Checkbox parameters cannot have units" -msgstr "" - -#: part/models.py:3796 -msgid "Checkbox parameters cannot have choices" -msgstr "" - -#: part/models.py:3833 -msgid "Parameter template name must be unique" -msgstr "" - -#: part/models.py:3851 -msgid "Parameter Name" -msgstr "" - -#: part/models.py:3858 -msgid "Physical units for this parameter" -msgstr "" - -#: part/models.py:3866 -msgid "Parameter description" -msgstr "" - -#: part/models.py:3872 -msgid "Checkbox" -msgstr "" - -#: part/models.py:3873 -msgid "Is this parameter a checkbox?" -msgstr "" - -#: part/models.py:3879 -msgid "Valid choices for this parameter (comma-separated)" -msgstr "" - -#: part/models.py:3890 -msgid "Selection list for this parameter" -msgstr "" - -#: part/models.py:3932 -msgid "Part Parameter" -msgstr "" - -#: part/models.py:3958 -msgid "Parameter cannot be modified - part is locked" -msgstr "" - -#: part/models.py:3996 -msgid "Invalid choice for parameter value" -msgstr "" - -#: part/models.py:4047 -msgid "Parent Part" -msgstr "" - -#: part/models.py:4055 part/models.py:4170 part/models.py:4171 -msgid "Parameter Template" -msgstr "" - -#: part/models.py:4061 -msgid "Parameter Value" -msgstr "" - -#: part/models.py:4071 stock/serializers.py:718 -msgid "Optional note field" -msgstr "" - -#: part/models.py:4118 -msgid "Part Category Parameter Template" -msgstr "" - -#: part/models.py:4177 -msgid "Default Value" -msgstr "" - -#: part/models.py:4178 -msgid "Default Parameter Value" -msgstr "" - -#: part/models.py:4352 +#: part/models.py:3977 msgid "BOM item cannot be modified - assembly is locked" msgstr "" -#: part/models.py:4359 +#: part/models.py:3984 msgid "BOM item cannot be modified - variant assembly is locked" msgstr "" -#: part/models.py:4369 +#: part/models.py:3994 msgid "Select parent part" msgstr "" -#: part/models.py:4379 +#: part/models.py:4004 msgid "Sub part" msgstr "" -#: part/models.py:4380 +#: part/models.py:4005 msgid "Select part to be used in BOM" msgstr "" -#: part/models.py:4391 +#: part/models.py:4016 msgid "BOM quantity for this BOM item" msgstr "" -#: part/models.py:4397 +#: part/models.py:4022 msgid "This BOM item is optional" msgstr "" -#: part/models.py:4403 +#: part/models.py:4028 msgid "This BOM item is consumable (it is not tracked in build orders)" msgstr "" -#: part/models.py:4411 +#: part/models.py:4036 msgid "Setup Quantity" msgstr "" -#: part/models.py:4412 +#: part/models.py:4037 msgid "Extra required quantity for a build, to account for setup losses" msgstr "" -#: part/models.py:4420 +#: part/models.py:4045 msgid "Attrition" msgstr "" -#: part/models.py:4422 +#: part/models.py:4047 msgid "Estimated attrition for a build, expressed as a percentage (0-100)" msgstr "" -#: part/models.py:4433 +#: part/models.py:4058 msgid "Rounding Multiple" msgstr "" -#: part/models.py:4435 +#: part/models.py:4060 msgid "Round up required production quantity to nearest multiple of this value" msgstr "" -#: part/models.py:4443 +#: part/models.py:4068 msgid "BOM item reference" msgstr "" -#: part/models.py:4451 +#: part/models.py:4076 msgid "BOM item notes" msgstr "" -#: part/models.py:4457 +#: part/models.py:4082 msgid "Checksum" msgstr "" -#: part/models.py:4458 +#: part/models.py:4083 msgid "BOM line checksum" msgstr "" -#: part/models.py:4463 +#: part/models.py:4088 msgid "Validated" msgstr "" -#: part/models.py:4464 +#: part/models.py:4089 msgid "This BOM item has been validated" msgstr "" -#: part/models.py:4469 +#: part/models.py:4094 msgid "Gets inherited" msgstr "" -#: part/models.py:4470 +#: part/models.py:4095 msgid "This BOM item is inherited by BOMs for variant parts" msgstr "" -#: part/models.py:4476 +#: part/models.py:4101 msgid "Stock items for variant parts can be used for this BOM item" msgstr "" -#: part/models.py:4583 stock/models.py:925 +#: part/models.py:4208 stock/models.py:925 msgid "Quantity must be integer value for trackable parts" msgstr "" -#: part/models.py:4593 part/models.py:4595 +#: part/models.py:4218 part/models.py:4220 msgid "Sub part must be specified" msgstr "" -#: part/models.py:4746 +#: part/models.py:4371 msgid "BOM Item Substitute" msgstr "" -#: part/models.py:4767 +#: part/models.py:4392 msgid "Substitute part cannot be the same as the master part" msgstr "" -#: part/models.py:4780 +#: part/models.py:4405 msgid "Parent BOM item" msgstr "" -#: part/models.py:4788 +#: part/models.py:4413 msgid "Substitute part" msgstr "" -#: part/models.py:4804 +#: part/models.py:4429 msgid "Part 1" msgstr "" -#: part/models.py:4812 +#: part/models.py:4437 msgid "Part 2" msgstr "" -#: part/models.py:4813 +#: part/models.py:4438 msgid "Select Related Part" msgstr "" -#: part/models.py:4820 +#: part/models.py:4445 msgid "Note for this relationship" msgstr "" -#: part/models.py:4839 +#: part/models.py:4464 msgid "Part relationship cannot be created between a part and itself" msgstr "" -#: part/models.py:4844 +#: part/models.py:4469 msgid "Duplicate relationship already exists" msgstr "" -#: part/serializers.py:114 +#: part/serializers.py:113 msgid "Parent Category" msgstr "" -#: part/serializers.py:115 +#: part/serializers.py:114 msgid "Parent part category" msgstr "" -#: part/serializers.py:123 part/serializers.py:164 +#: part/serializers.py:122 part/serializers.py:163 msgid "Subcategories" msgstr "" -#: part/serializers.py:203 +#: part/serializers.py:202 msgid "Results" msgstr "" -#: part/serializers.py:204 +#: part/serializers.py:203 msgid "Number of results recorded against this template" msgstr "" -#: part/serializers.py:235 part/serializers.py:253 stock/serializers.py:643 +#: part/serializers.py:234 part/serializers.py:252 stock/serializers.py:643 msgid "Purchase currency of this stock item" msgstr "" -#: part/serializers.py:280 +#: part/serializers.py:279 msgid "File is not an image" msgstr "" -#: part/serializers.py:311 -msgid "Number of parts using this template" -msgstr "" - -#: part/serializers.py:471 +#: part/serializers.py:382 msgid "Original Part" msgstr "" -#: part/serializers.py:472 +#: part/serializers.py:383 msgid "Select original part to duplicate" msgstr "" -#: part/serializers.py:477 +#: part/serializers.py:388 msgid "Copy Image" msgstr "" -#: part/serializers.py:478 +#: part/serializers.py:389 msgid "Copy image from original part" msgstr "" -#: part/serializers.py:484 +#: part/serializers.py:395 msgid "Copy BOM" msgstr "" -#: part/serializers.py:485 +#: part/serializers.py:396 msgid "Copy bill of materials from original part" msgstr "" -#: part/serializers.py:491 +#: part/serializers.py:402 msgid "Copy Parameters" msgstr "" -#: part/serializers.py:492 +#: part/serializers.py:403 msgid "Copy parameter data from original part" msgstr "" -#: part/serializers.py:498 +#: part/serializers.py:409 msgid "Copy Notes" msgstr "" -#: part/serializers.py:499 +#: part/serializers.py:410 msgid "Copy notes from original part" msgstr "" -#: part/serializers.py:505 +#: part/serializers.py:416 msgid "Copy Tests" msgstr "" -#: part/serializers.py:506 +#: part/serializers.py:417 msgid "Copy test templates from original part" msgstr "" -#: part/serializers.py:524 +#: part/serializers.py:435 msgid "Initial Stock Quantity" msgstr "" -#: part/serializers.py:526 +#: part/serializers.py:437 msgid "Specify initial stock quantity for this Part. If quantity is zero, no stock is added." msgstr "" -#: part/serializers.py:533 +#: part/serializers.py:444 msgid "Initial Stock Location" msgstr "" -#: part/serializers.py:534 +#: part/serializers.py:445 msgid "Specify initial stock location for this Part" msgstr "" -#: part/serializers.py:551 +#: part/serializers.py:462 msgid "Select supplier (or leave blank to skip)" msgstr "" -#: part/serializers.py:567 +#: part/serializers.py:478 msgid "Select manufacturer (or leave blank to skip)" msgstr "" -#: part/serializers.py:577 +#: part/serializers.py:488 msgid "Manufacturer part number" msgstr "" -#: part/serializers.py:584 +#: part/serializers.py:495 msgid "Selected company is not a valid supplier" msgstr "" -#: part/serializers.py:593 +#: part/serializers.py:504 msgid "Selected company is not a valid manufacturer" msgstr "" -#: part/serializers.py:604 +#: part/serializers.py:515 msgid "Manufacturer part matching this MPN already exists" msgstr "" -#: part/serializers.py:611 +#: part/serializers.py:522 msgid "Supplier part matching this SKU already exists" msgstr "" -#: part/serializers.py:914 +#: part/serializers.py:799 msgid "Category Name" msgstr "" -#: part/serializers.py:943 +#: part/serializers.py:828 msgid "Building" msgstr "" -#: part/serializers.py:944 +#: part/serializers.py:829 msgid "Quantity of this part currently being in production" msgstr "" -#: part/serializers.py:951 +#: part/serializers.py:836 msgid "Outstanding quantity of this part scheduled to be built" msgstr "" -#: part/serializers.py:971 stock/serializers.py:1019 stock/serializers.py:1189 +#: part/serializers.py:856 stock/serializers.py:1019 stock/serializers.py:1189 #: users/ruleset.py:30 msgid "Stock Items" msgstr "" -#: part/serializers.py:975 +#: part/serializers.py:860 msgid "Revisions" msgstr "" -#: part/serializers.py:979 +#: part/serializers.py:864 msgid "Suppliers" msgstr "" -#: part/serializers.py:983 part/serializers.py:1297 +#: part/serializers.py:868 part/serializers.py:1162 #: templates/email/low_stock_notification.html:16 #: templates/email/part_event_notification.html:17 msgid "Total Stock" msgstr "" -#: part/serializers.py:991 +#: part/serializers.py:876 msgid "Unallocated Stock" msgstr "" -#: part/serializers.py:999 +#: part/serializers.py:884 msgid "Variant Stock" msgstr "" -#: part/serializers.py:1054 +#: part/serializers.py:943 msgid "Duplicate Part" msgstr "" -#: part/serializers.py:1055 +#: part/serializers.py:944 msgid "Copy initial data from another Part" msgstr "" -#: part/serializers.py:1061 +#: part/serializers.py:950 msgid "Initial Stock" msgstr "" -#: part/serializers.py:1062 +#: part/serializers.py:951 msgid "Create Part with initial stock quantity" msgstr "" -#: part/serializers.py:1068 +#: part/serializers.py:957 msgid "Supplier Information" msgstr "" -#: part/serializers.py:1069 +#: part/serializers.py:958 msgid "Add initial supplier information for this part" msgstr "" -#: part/serializers.py:1077 +#: part/serializers.py:966 msgid "Copy Category Parameters" msgstr "" -#: part/serializers.py:1078 +#: part/serializers.py:967 msgid "Copy parameter templates from selected part category" msgstr "" -#: part/serializers.py:1083 +#: part/serializers.py:972 msgid "Existing Image" msgstr "" -#: part/serializers.py:1084 +#: part/serializers.py:973 msgid "Filename of an existing part image" msgstr "" -#: part/serializers.py:1101 +#: part/serializers.py:990 msgid "Image file does not exist" msgstr "" -#: part/serializers.py:1269 +#: part/serializers.py:1134 msgid "Validate entire Bill of Materials" msgstr "" -#: part/serializers.py:1303 part/serializers.py:1769 +#: part/serializers.py:1168 part/serializers.py:1634 msgid "Can Build" msgstr "" -#: part/serializers.py:1320 +#: part/serializers.py:1185 msgid "Required for Build Orders" msgstr "" -#: part/serializers.py:1325 +#: part/serializers.py:1190 msgid "Allocated to Build Orders" msgstr "" -#: part/serializers.py:1332 +#: part/serializers.py:1197 msgid "Required for Sales Orders" msgstr "" -#: part/serializers.py:1336 +#: part/serializers.py:1201 msgid "Allocated to Sales Orders" msgstr "" -#: part/serializers.py:1475 +#: part/serializers.py:1340 msgid "Minimum Price" msgstr "" -#: part/serializers.py:1476 +#: part/serializers.py:1341 msgid "Override calculated value for minimum price" msgstr "" -#: part/serializers.py:1483 +#: part/serializers.py:1348 msgid "Minimum price currency" msgstr "" -#: part/serializers.py:1490 +#: part/serializers.py:1355 msgid "Maximum Price" msgstr "" -#: part/serializers.py:1491 +#: part/serializers.py:1356 msgid "Override calculated value for maximum price" msgstr "" -#: part/serializers.py:1498 +#: part/serializers.py:1363 msgid "Maximum price currency" msgstr "" -#: part/serializers.py:1527 +#: part/serializers.py:1392 msgid "Update" msgstr "" -#: part/serializers.py:1528 +#: part/serializers.py:1393 msgid "Update pricing for this part" msgstr "" -#: part/serializers.py:1551 +#: part/serializers.py:1416 #, python-brace-format msgid "Could not convert from provided currencies to {default_currency}" msgstr "" -#: part/serializers.py:1558 +#: part/serializers.py:1423 msgid "Minimum price must not be greater than maximum price" msgstr "" -#: part/serializers.py:1561 +#: part/serializers.py:1426 msgid "Maximum price must not be less than minimum price" msgstr "" -#: part/serializers.py:1715 +#: part/serializers.py:1580 msgid "Select the parent assembly" msgstr "" -#: part/serializers.py:1735 +#: part/serializers.py:1600 msgid "Select the component part" msgstr "" -#: part/serializers.py:1929 +#: part/serializers.py:1802 msgid "Select part to copy BOM from" msgstr "" -#: part/serializers.py:1937 +#: part/serializers.py:1810 msgid "Remove Existing Data" msgstr "" -#: part/serializers.py:1938 +#: part/serializers.py:1811 msgid "Remove existing BOM items before copying" msgstr "" -#: part/serializers.py:1943 +#: part/serializers.py:1816 msgid "Include Inherited" msgstr "" -#: part/serializers.py:1944 +#: part/serializers.py:1817 msgid "Include BOM items which are inherited from templated parts" msgstr "" -#: part/serializers.py:1949 +#: part/serializers.py:1822 msgid "Skip Invalid Rows" msgstr "" -#: part/serializers.py:1950 +#: part/serializers.py:1823 msgid "Enable this option to skip invalid rows" msgstr "" -#: part/serializers.py:1955 +#: part/serializers.py:1828 msgid "Copy Substitute Parts" msgstr "" -#: part/serializers.py:1956 +#: part/serializers.py:1829 msgid "Copy substitute parts when duplicate BOM items" msgstr "" @@ -6927,7 +6974,7 @@ msgstr "" #: plugin/builtin/events/auto_issue_orders.py:19 #: plugin/builtin/exporter/bom_exporter.py:73 #: plugin/builtin/exporter/inventree_exporter.py:17 -#: plugin/builtin/exporter/part_parameter_exporter.py:36 +#: plugin/builtin/exporter/parameter_exporter.py:32 #: plugin/builtin/exporter/stocktake_exporter.py:47 #: plugin/builtin/integration/core_notifications.py:25 #: plugin/builtin/integration/core_notifications.py:69 @@ -7041,23 +7088,19 @@ msgid "Include total quantity of each part in the BOM" msgstr "" #: plugin/builtin/exporter/bom_exporter.py:35 -#: plugin/builtin/exporter/part_parameter_exporter.py:17 msgid "Stock Data" msgstr "" #: plugin/builtin/exporter/bom_exporter.py:35 -#: plugin/builtin/exporter/part_parameter_exporter.py:17 msgid "Include part stock data" msgstr "" #: plugin/builtin/exporter/bom_exporter.py:39 -#: plugin/builtin/exporter/part_parameter_exporter.py:21 #: plugin/builtin/exporter/stocktake_exporter.py:20 msgid "Pricing Data" msgstr "" #: plugin/builtin/exporter/bom_exporter.py:39 -#: plugin/builtin/exporter/part_parameter_exporter.py:21 #: plugin/builtin/exporter/stocktake_exporter.py:20 msgid "Include part pricing data" msgstr "" @@ -7144,12 +7187,20 @@ msgstr "" msgid "Provides support for exporting data from InvenTree" msgstr "" -#: plugin/builtin/exporter/part_parameter_exporter.py:33 -msgid "Part Parameter Exporter" +#: plugin/builtin/exporter/parameter_exporter.py:16 +msgid "Exclude Inactive" msgstr "" -#: plugin/builtin/exporter/part_parameter_exporter.py:34 -msgid "Exporter for part parameter data" +#: plugin/builtin/exporter/parameter_exporter.py:17 +msgid "Exclude parameters which are inactive" +msgstr "" + +#: plugin/builtin/exporter/parameter_exporter.py:29 +msgid "Parameter Exporter" +msgstr "" + +#: plugin/builtin/exporter/parameter_exporter.py:30 +msgid "Exporter for model parameter data" msgstr "" #: plugin/builtin/exporter/stocktake_exporter.py:25 @@ -8079,19 +8130,19 @@ msgstr "" msgid "No result" msgstr "" -#: report/templatetags/report.py:167 +#: report/templatetags/report.py:169 msgid "Asset file does not exist" msgstr "" -#: report/templatetags/report.py:224 report/templatetags/report.py:300 +#: report/templatetags/report.py:226 report/templatetags/report.py:302 msgid "Image file not found" msgstr "" -#: report/templatetags/report.py:325 +#: report/templatetags/report.py:327 msgid "part_image tag requires a Part instance" msgstr "" -#: report/templatetags/report.py:362 +#: report/templatetags/report.py:383 msgid "company_image tag requires a Company instance" msgstr "" @@ -8455,115 +8506,119 @@ msgstr "" msgid "Quantity does not match serial numbers" msgstr "" -#: stock/models.py:2012 stock/models.py:2917 +#: stock/models.py:1912 +msgid "Cannot assign stock to structural location" +msgstr "" + +#: stock/models.py:2029 stock/models.py:2934 msgid "Test template does not exist" msgstr "" -#: stock/models.py:2030 +#: stock/models.py:2047 msgid "Stock item has been assigned to a sales order" msgstr "" -#: stock/models.py:2034 +#: stock/models.py:2051 msgid "Stock item is installed in another item" msgstr "" -#: stock/models.py:2037 +#: stock/models.py:2054 msgid "Stock item contains other items" msgstr "" -#: stock/models.py:2040 +#: stock/models.py:2057 msgid "Stock item has been assigned to a customer" msgstr "" -#: stock/models.py:2043 stock/models.py:2226 +#: stock/models.py:2060 stock/models.py:2243 msgid "Stock item is currently in production" msgstr "" -#: stock/models.py:2046 +#: stock/models.py:2063 msgid "Serialized stock cannot be merged" msgstr "" -#: stock/models.py:2053 stock/serializers.py:1462 +#: stock/models.py:2070 stock/serializers.py:1462 msgid "Duplicate stock items" msgstr "" -#: stock/models.py:2057 +#: stock/models.py:2074 msgid "Stock items must refer to the same part" msgstr "" -#: stock/models.py:2065 +#: stock/models.py:2082 msgid "Stock items must refer to the same supplier part" msgstr "" -#: stock/models.py:2070 +#: stock/models.py:2087 msgid "Stock status codes must match" msgstr "" -#: stock/models.py:2349 +#: stock/models.py:2366 msgid "StockItem cannot be moved as it is not in stock" msgstr "" -#: stock/models.py:2818 +#: stock/models.py:2835 msgid "Stock Item Tracking" msgstr "" -#: stock/models.py:2849 +#: stock/models.py:2866 msgid "Entry notes" msgstr "" -#: stock/models.py:2889 +#: stock/models.py:2906 msgid "Stock Item Test Result" msgstr "" -#: stock/models.py:2920 +#: stock/models.py:2937 msgid "Value must be provided for this test" msgstr "" -#: stock/models.py:2924 +#: stock/models.py:2941 msgid "Attachment must be uploaded for this test" msgstr "" -#: stock/models.py:2929 +#: stock/models.py:2946 msgid "Invalid value for this test" msgstr "" -#: stock/models.py:2953 +#: stock/models.py:2970 msgid "Test result" msgstr "" -#: stock/models.py:2960 +#: stock/models.py:2977 msgid "Test output value" msgstr "" -#: stock/models.py:2968 stock/serializers.py:248 +#: stock/models.py:2985 stock/serializers.py:248 msgid "Test result attachment" msgstr "" -#: stock/models.py:2972 +#: stock/models.py:2989 msgid "Test notes" msgstr "" -#: stock/models.py:2980 +#: stock/models.py:2997 msgid "Test station" msgstr "" -#: stock/models.py:2981 +#: stock/models.py:2998 msgid "The identifier of the test station where the test was performed" msgstr "" -#: stock/models.py:2987 +#: stock/models.py:3004 msgid "Started" msgstr "" -#: stock/models.py:2988 +#: stock/models.py:3005 msgid "The timestamp of the test start" msgstr "" -#: stock/models.py:2994 +#: stock/models.py:3011 msgid "Finished" msgstr "" -#: stock/models.py:2995 +#: stock/models.py:3012 msgid "The timestamp of the test finish" msgstr "" @@ -8677,8 +8732,8 @@ msgstr "" msgid "Quantity must not exceed available stock quantity ({q})" msgstr "" -#: stock/serializers.py:711 stock/serializers.py:1419 stock/serializers.py:1732 -#: stock/serializers.py:1781 +#: stock/serializers.py:711 stock/serializers.py:1419 stock/serializers.py:1740 +#: stock/serializers.py:1789 msgid "Destination stock location" msgstr "" @@ -8834,19 +8889,19 @@ msgstr "" msgid "Stock transaction notes" msgstr "" -#: stock/serializers.py:1787 +#: stock/serializers.py:1795 msgid "Merge into existing stock" msgstr "" -#: stock/serializers.py:1788 +#: stock/serializers.py:1796 msgid "Merge returned items into existing stock items if possible" msgstr "" -#: stock/serializers.py:1831 +#: stock/serializers.py:1839 msgid "Next Serial Number" msgstr "" -#: stock/serializers.py:1837 +#: stock/serializers.py:1845 msgid "Previous Serial Number" msgstr "" @@ -8902,83 +8957,87 @@ msgstr "" msgid "Stock manually removed" msgstr "" -#: stock/status_codes.py:57 +#: stock/status_codes.py:56 +msgid "Serialized stock items" +msgstr "" + +#: stock/status_codes.py:58 msgid "Returned to stock" msgstr "" -#: stock/status_codes.py:60 +#: stock/status_codes.py:61 msgid "Location changed" msgstr "" -#: stock/status_codes.py:61 +#: stock/status_codes.py:62 msgid "Stock updated" msgstr "" -#: stock/status_codes.py:64 +#: stock/status_codes.py:65 msgid "Installed into assembly" msgstr "" -#: stock/status_codes.py:65 +#: stock/status_codes.py:66 msgid "Removed from assembly" msgstr "" -#: stock/status_codes.py:67 +#: stock/status_codes.py:68 msgid "Installed component item" msgstr "" -#: stock/status_codes.py:68 +#: stock/status_codes.py:69 msgid "Removed component item" msgstr "" -#: stock/status_codes.py:71 +#: stock/status_codes.py:72 msgid "Split from parent item" msgstr "" -#: stock/status_codes.py:72 +#: stock/status_codes.py:73 msgid "Split child item" msgstr "" -#: stock/status_codes.py:75 +#: stock/status_codes.py:76 msgid "Merged stock items" msgstr "" -#: stock/status_codes.py:78 +#: stock/status_codes.py:79 msgid "Converted to variant" msgstr "" -#: stock/status_codes.py:81 +#: stock/status_codes.py:82 msgid "Build order output created" msgstr "" -#: stock/status_codes.py:82 +#: stock/status_codes.py:83 msgid "Build order output completed" msgstr "" -#: stock/status_codes.py:83 +#: stock/status_codes.py:84 msgid "Build order output rejected" msgstr "" -#: stock/status_codes.py:84 +#: stock/status_codes.py:85 msgid "Consumed by build order" msgstr "" -#: stock/status_codes.py:87 +#: stock/status_codes.py:88 msgid "Shipped against Sales Order" msgstr "" -#: stock/status_codes.py:90 +#: stock/status_codes.py:91 msgid "Received against Purchase Order" msgstr "" -#: stock/status_codes.py:93 +#: stock/status_codes.py:94 msgid "Returned against Return Order" msgstr "" -#: stock/status_codes.py:96 +#: stock/status_codes.py:97 msgid "Sent to customer" msgstr "" -#: stock/status_codes.py:97 +#: stock/status_codes.py:98 msgid "Returned from customer" msgstr "" diff --git a/src/backend/InvenTree/locale/bg/LC_MESSAGES/django.po b/src/backend/InvenTree/locale/bg/LC_MESSAGES/django.po index e72f42a53a..e93e5251a6 100644 --- a/src/backend/InvenTree/locale/bg/LC_MESSAGES/django.po +++ b/src/backend/InvenTree/locale/bg/LC_MESSAGES/django.po @@ -2,8 +2,8 @@ msgid "" msgstr "" "Project-Id-Version: inventree\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-11-19 04:55+0000\n" -"PO-Revision-Date: 2025-11-19 04:59\n" +"POT-Creation-Date: 2025-12-07 07:33+0000\n" +"PO-Revision-Date: 2025-12-07 07:36\n" "Last-Translator: \n" "Language-Team: Bulgarian\n" "Language: bg_BG\n" @@ -57,7 +57,7 @@ msgstr "" msgid "This field must be unique." msgstr "" -#: InvenTree/api.py:775 +#: InvenTree/api.py:803 msgid "User does not have permission to view this model" msgstr "Потребителя няма нужното разрешение, за да вижда този модел" @@ -81,22 +81,22 @@ msgstr "Въведената основна електронна поща е н msgid "The provided email domain is not approved." msgstr "Въведеният домейн на електронната поща не е утвърден." -#: InvenTree/conversion.py:166 +#: InvenTree/conversion.py:240 #, python-brace-format msgid "Invalid unit provided ({unit})" msgstr "" -#: InvenTree/conversion.py:183 +#: InvenTree/conversion.py:257 msgid "No value provided" msgstr "Не е зададена стойност" -#: InvenTree/conversion.py:210 +#: InvenTree/conversion.py:284 #, python-brace-format msgid "Could not convert {original} to {unit}" msgstr "Преобразуването на {original} в {unit} не беше успешно" -#: InvenTree/conversion.py:212 InvenTree/conversion.py:226 -#: InvenTree/helpers.py:597 order/models.py:720 order/models.py:1015 +#: InvenTree/conversion.py:286 InvenTree/conversion.py:300 +#: InvenTree/helpers.py:597 order/models.py:721 order/models.py:1016 msgid "Invalid quantity provided" msgstr "Въведена е недопустима стойност" @@ -112,11 +112,11 @@ msgstr "Въведи дата" msgid "Invalid decimal value" msgstr "" -#: InvenTree/fields.py:218 InvenTree/models.py:1067 build/serializers.py:509 -#: build/serializers.py:580 build/serializers.py:1788 company/models.py:857 -#: order/models.py:1780 +#: InvenTree/fields.py:218 InvenTree/models.py:1228 build/serializers.py:517 +#: build/serializers.py:588 build/serializers.py:1796 company/models.py:811 +#: order/models.py:1781 #: report/templates/report/inventree_build_order_report.html:172 -#: stock/models.py:2848 stock/models.py:2972 stock/serializers.py:717 +#: stock/models.py:2865 stock/models.py:2989 stock/serializers.py:717 #: stock/serializers.py:893 stock/serializers.py:1035 stock/serializers.py:1336 #: stock/serializers.py:1425 stock/serializers.py:1624 msgid "Notes" @@ -171,35 +171,35 @@ msgstr "Премахнете HTML маркерите от тази стойно msgid "Data contains prohibited markdown content" msgstr "" -#: InvenTree/helpers_model.py:133 +#: InvenTree/helpers_model.py:134 msgid "Connection error" msgstr "Грешка при съединението" -#: InvenTree/helpers_model.py:138 InvenTree/helpers_model.py:145 +#: InvenTree/helpers_model.py:139 InvenTree/helpers_model.py:146 msgid "Server responded with invalid status code" msgstr "Сървърът отговари с невалиден статусен код" -#: InvenTree/helpers_model.py:141 +#: InvenTree/helpers_model.py:142 msgid "Exception occurred" msgstr "Възникна изключение" -#: InvenTree/helpers_model.py:151 +#: InvenTree/helpers_model.py:152 msgid "Server responded with invalid Content-Length value" msgstr "Сървърът отговори с невалидна стойност за дължината на съдържанието (Content-Length)" -#: InvenTree/helpers_model.py:154 +#: InvenTree/helpers_model.py:155 msgid "Image size is too large" msgstr "Размерът на изображението е твърде голям" -#: InvenTree/helpers_model.py:166 +#: InvenTree/helpers_model.py:167 msgid "Image download exceeded maximum size" msgstr "Сваляното на изображение превиши максималния размер" -#: InvenTree/helpers_model.py:171 +#: InvenTree/helpers_model.py:172 msgid "Remote server returned empty response" msgstr "Отдалеченият сървър върна празен отговор" -#: InvenTree/helpers_model.py:179 +#: InvenTree/helpers_model.py:180 msgid "Supplied URL is not a valid image file" msgstr "" @@ -207,7 +207,7 @@ msgstr "" msgid "Log in to the app" msgstr "" -#: InvenTree/magic_login.py:41 company/models.py:172 users/serializers.py:198 +#: InvenTree/magic_login.py:41 company/models.py:173 users/serializers.py:198 msgid "Email" msgstr "" @@ -215,160 +215,176 @@ msgstr "" msgid "You must enable two-factor authentication before doing anything else." msgstr "Трябва да активирате двойно оторизиране преди да направите, каквото и да е." -#: InvenTree/models.py:111 +#: InvenTree/models.py:114 msgid "Error running plugin validation" msgstr "" -#: InvenTree/models.py:192 +#: InvenTree/models.py:195 msgid "Metadata must be a python dict object" msgstr "" -#: InvenTree/models.py:198 +#: InvenTree/models.py:201 msgid "Plugin Metadata" msgstr "" -#: InvenTree/models.py:199 +#: InvenTree/models.py:202 msgid "JSON metadata field, for use by external plugins" msgstr "" -#: InvenTree/models.py:382 +#: InvenTree/models.py:385 msgid "Improperly formatted pattern" msgstr "" -#: InvenTree/models.py:389 +#: InvenTree/models.py:392 msgid "Unknown format key specified" msgstr "" -#: InvenTree/models.py:395 +#: InvenTree/models.py:398 msgid "Missing required format key" msgstr "" -#: InvenTree/models.py:406 +#: InvenTree/models.py:409 msgid "Reference field cannot be empty" msgstr "" -#: InvenTree/models.py:414 +#: InvenTree/models.py:417 msgid "Reference must match required pattern" msgstr "" -#: InvenTree/models.py:445 +#: InvenTree/models.py:448 msgid "Reference number is too large" msgstr "" -#: InvenTree/models.py:743 +#: InvenTree/models.py:896 msgid "Invalid choice" msgstr "" -#: InvenTree/models.py:856 common/models.py:1410 common/models.py:1837 -#: common/models.py:2096 common/models.py:2221 common/serializers.py:535 -#: company/models.py:615 generic/states/serializers.py:20 machine/models.py:25 -#: part/models.py:1039 part/models.py:3850 plugin/models.py:54 +#: InvenTree/models.py:1017 common/models.py:1414 common/models.py:1841 +#: common/models.py:2102 common/models.py:2227 common/models.py:2494 +#: common/serializers.py:539 generic/states/serializers.py:20 +#: machine/models.py:25 part/models.py:1127 plugin/models.py:54 #: report/models.py:216 stock/models.py:84 msgid "Name" msgstr "" -#: InvenTree/models.py:862 build/models.py:252 common/models.py:171 -#: common/models.py:2228 common/models.py:2341 company/models.py:543 -#: company/models.py:848 order/models.py:442 order/models.py:1825 -#: part/models.py:1062 part/models.py:3865 report/models.py:222 +#: InvenTree/models.py:1023 build/models.py:253 common/models.py:175 +#: common/models.py:2234 common/models.py:2347 common/models.py:2509 +#: company/models.py:545 company/models.py:802 order/models.py:443 +#: order/models.py:1826 part/models.py:1150 report/models.py:222 #: report/models.py:815 report/models.py:841 #: report/templates/report/inventree_build_order_report.html:117 #: stock/models.py:90 msgid "Description" msgstr "" -#: InvenTree/models.py:863 stock/models.py:91 +#: InvenTree/models.py:1024 stock/models.py:91 msgid "Description (optional)" msgstr "" -#: InvenTree/models.py:878 common/models.py:2394 +#: InvenTree/models.py:1039 common/models.py:2815 msgid "Path" msgstr "" -#: InvenTree/models.py:983 +#: InvenTree/models.py:1144 msgid "Duplicate names cannot exist under the same parent" msgstr "" -#: InvenTree/models.py:1067 +#: InvenTree/models.py:1228 msgid "Markdown notes (optional)" msgstr "" -#: InvenTree/models.py:1098 +#: InvenTree/models.py:1259 msgid "Barcode Data" msgstr "" -#: InvenTree/models.py:1099 +#: InvenTree/models.py:1260 msgid "Third party barcode data" msgstr "" -#: InvenTree/models.py:1105 +#: InvenTree/models.py:1266 msgid "Barcode Hash" msgstr "" -#: InvenTree/models.py:1106 +#: InvenTree/models.py:1267 msgid "Unique hash of barcode data" msgstr "" -#: InvenTree/models.py:1187 +#: InvenTree/models.py:1348 msgid "Existing barcode found" msgstr "" -#: InvenTree/models.py:1269 +#: InvenTree/models.py:1430 msgid "Task Failure" msgstr "" -#: InvenTree/models.py:1270 +#: InvenTree/models.py:1431 #, python-brace-format msgid "Background worker task '{f}' failed after {n} attempts" msgstr "" -#: InvenTree/models.py:1297 +#: InvenTree/models.py:1458 msgid "Server Error" msgstr "" -#: InvenTree/models.py:1298 +#: InvenTree/models.py:1459 msgid "An error has been logged by the server." msgstr "" -#: InvenTree/models.py:1340 common/models.py:1748 +#: InvenTree/models.py:1501 common/models.py:1752 #: report/templates/report/inventree_bill_of_materials_report.html:126 #: report/templates/report/inventree_bill_of_materials_report.html:148 #: report/templates/report/inventree_return_order_report.html:35 msgid "Image" msgstr "" -#: InvenTree/serializers.py:253 part/models.py:4571 +#: InvenTree/serializers.py:255 part/models.py:4196 msgid "Must be a valid number" msgstr "" -#: InvenTree/serializers.py:295 company/models.py:214 part/models.py:3285 +#: InvenTree/serializers.py:297 company/models.py:215 part/models.py:3349 msgid "Currency" msgstr "" -#: InvenTree/serializers.py:298 part/serializers.py:1385 +#: InvenTree/serializers.py:300 part/serializers.py:1250 msgid "Select currency from available options" msgstr "" -#: InvenTree/serializers.py:653 +#: InvenTree/serializers.py:654 +msgid "This field may not be null." +msgstr "" + +#: InvenTree/serializers.py:660 msgid "Invalid value" msgstr "" -#: InvenTree/serializers.py:690 +#: InvenTree/serializers.py:697 msgid "Remote Image" msgstr "" -#: InvenTree/serializers.py:691 +#: InvenTree/serializers.py:698 msgid "URL of remote image file" msgstr "" -#: InvenTree/serializers.py:709 +#: InvenTree/serializers.py:716 msgid "Downloading images from remote URL is not enabled" msgstr "" -#: InvenTree/serializers.py:716 +#: InvenTree/serializers.py:723 msgid "Failed to download image from remote URL" msgstr "" +#: InvenTree/serializers.py:806 +msgid "Invalid content type format" +msgstr "" + +#: InvenTree/serializers.py:809 +msgid "Content type not found" +msgstr "" + +#: InvenTree/serializers.py:815 +msgid "Content type does not match required mixin class" +msgstr "" + #: InvenTree/setting/locales.py:20 msgid "Arabic" msgstr "" @@ -537,30 +553,30 @@ msgstr "" msgid "Not a valid currency code" msgstr "" -#: build/api.py:54 order/api.py:111 order/api.py:270 order/api.py:1373 -#: order/serializers.py:132 +#: build/api.py:54 order/api.py:116 order/api.py:275 order/api.py:1378 +#: order/serializers.py:133 msgid "Order Status" msgstr "" -#: build/api.py:80 build/models.py:264 +#: build/api.py:80 build/models.py:265 msgid "Parent Build" msgstr "" -#: build/api.py:84 build/api.py:831 order/api.py:547 order/api.py:770 -#: order/api.py:1174 order/api.py:1449 stock/api.py:573 +#: build/api.py:84 build/api.py:837 order/api.py:553 order/api.py:776 +#: order/api.py:1179 order/api.py:1454 stock/api.py:573 msgid "Include Variants" msgstr "" -#: build/api.py:100 build/api.py:466 build/api.py:845 build/models.py:270 -#: build/serializers.py:1225 build/serializers.py:1356 -#: build/serializers.py:1427 company/models.py:1067 company/serializers.py:445 -#: order/api.py:298 order/api.py:302 order/api.py:929 order/api.py:1187 -#: order/api.py:1190 order/models.py:1941 order/models.py:2108 -#: order/models.py:2109 part/api.py:1233 part/api.py:1236 part/api.py:1302 -#: part/api.py:1589 part/models.py:472 part/models.py:3296 part/models.py:3439 -#: part/models.py:3497 part/models.py:3518 part/models.py:3540 -#: part/models.py:3679 part/models.py:4046 part/models.py:4368 -#: part/models.py:4787 part/serializers.py:1928 +#: build/api.py:100 build/api.py:472 build/api.py:851 build/models.py:271 +#: build/serializers.py:1233 build/serializers.py:1364 +#: build/serializers.py:1435 company/models.py:1021 company/serializers.py:490 +#: order/api.py:303 order/api.py:307 order/api.py:934 order/api.py:1192 +#: order/api.py:1195 order/models.py:1942 order/models.py:2109 +#: order/models.py:2110 part/api.py:1160 part/api.py:1163 part/api.py:1314 +#: part/models.py:550 part/models.py:3360 part/models.py:3503 +#: part/models.py:3561 part/models.py:3582 part/models.py:3604 +#: part/models.py:3743 part/models.py:3993 part/models.py:4412 +#: part/serializers.py:1801 #: report/templates/report/inventree_bill_of_materials_report.html:110 #: report/templates/report/inventree_bill_of_materials_report.html:137 #: report/templates/report/inventree_build_order_report.html:109 @@ -580,9 +596,9 @@ msgstr "" msgid "Part" msgstr "Част" -#: build/api.py:120 build/api.py:123 build/serializers.py:1438 part/api.py:980 -#: part/api.py:1316 part/api.py:1600 part/models.py:1080 part/models.py:3568 -#: part/models.py:4162 part/serializers.py:1752 stock/api.py:869 +#: build/api.py:120 build/api.py:123 build/serializers.py:1446 part/api.py:975 +#: part/api.py:1325 part/models.py:435 part/models.py:1168 part/models.py:3632 +#: part/serializers.py:1617 stock/api.py:869 msgid "Category" msgstr "" @@ -590,7 +606,7 @@ msgstr "" msgid "Ancestor Build" msgstr "" -#: build/api.py:152 order/api.py:129 +#: build/api.py:152 order/api.py:134 msgid "Assigned to me" msgstr "" @@ -638,134 +654,134 @@ msgstr "" msgid "Completed after" msgstr "" -#: build/api.py:249 order/api.py:226 +#: build/api.py:249 order/api.py:231 msgid "Min Date" msgstr "" -#: build/api.py:272 order/api.py:245 +#: build/api.py:272 order/api.py:250 msgid "Max Date" msgstr "" -#: build/api.py:297 build/api.py:300 part/api.py:217 stock/api.py:961 +#: build/api.py:297 build/api.py:300 part/api.py:212 stock/api.py:961 msgid "Exclude Tree" msgstr "" -#: build/api.py:405 +#: build/api.py:411 msgid "Build must be cancelled before it can be deleted" msgstr "" -#: build/api.py:449 build/serializers.py:1374 part/models.py:4402 +#: build/api.py:455 build/serializers.py:1382 part/models.py:4027 msgid "Consumable" msgstr "" -#: build/api.py:452 build/serializers.py:1377 part/models.py:4396 +#: build/api.py:458 build/serializers.py:1385 part/models.py:4021 msgid "Optional" msgstr "" -#: build/api.py:455 build/serializers.py:1415 common/setting/system.py:456 -#: part/models.py:1202 part/serializers.py:1714 part/serializers.py:1725 +#: build/api.py:461 build/serializers.py:1423 common/setting/system.py:456 +#: part/models.py:1290 part/serializers.py:1579 part/serializers.py:1590 #: stock/api.py:639 msgid "Assembly" msgstr "" -#: build/api.py:458 +#: build/api.py:464 msgid "Tracked" msgstr "" -#: build/api.py:461 build/serializers.py:1380 part/models.py:1220 +#: build/api.py:467 build/serializers.py:1388 part/models.py:1308 msgid "Testable" msgstr "" -#: build/api.py:471 order/api.py:993 order/api.py:1363 +#: build/api.py:477 order/api.py:998 order/api.py:1368 msgid "Order Outstanding" msgstr "" -#: build/api.py:481 build/serializers.py:1464 order/api.py:952 +#: build/api.py:487 build/serializers.py:1472 order/api.py:957 msgid "Allocated" msgstr "" -#: build/api.py:490 build/models.py:1672 build/serializers.py:1393 +#: build/api.py:496 build/models.py:1673 build/serializers.py:1401 msgid "Consumed" msgstr "" -#: build/api.py:499 company/models.py:912 company/serializers.py:440 +#: build/api.py:505 company/models.py:866 company/serializers.py:467 #: templates/email/build_order_required_stock.html:19 #: templates/email/low_stock_notification.html:17 #: templates/email/part_event_notification.html:18 msgid "Available" msgstr "" -#: build/api.py:523 build/serializers.py:1466 company/serializers.py:437 -#: order/serializers.py:1281 part/serializers.py:959 part/serializers.py:1306 -#: part/serializers.py:1761 +#: build/api.py:529 build/serializers.py:1474 company/serializers.py:464 +#: order/serializers.py:1295 part/serializers.py:844 part/serializers.py:1171 +#: part/serializers.py:1626 msgid "On Order" msgstr "" -#: build/api.py:868 build/models.py:117 order/models.py:1974 +#: build/api.py:874 build/models.py:118 order/models.py:1975 #: report/templates/report/inventree_build_order_report.html:105 #: stock/serializers.py:93 templates/email/build_order_completed.html:16 #: templates/email/overdue_build_order.html:15 msgid "Build Order" msgstr "" -#: build/api.py:882 build/api.py:886 build/serializers.py:372 -#: build/serializers.py:497 build/serializers.py:567 build/serializers.py:1251 -#: build/serializers.py:1256 order/api.py:1234 order/api.py:1239 -#: order/serializers.py:833 order/serializers.py:973 order/serializers.py:2042 +#: build/api.py:888 build/api.py:892 build/serializers.py:380 +#: build/serializers.py:505 build/serializers.py:575 build/serializers.py:1259 +#: build/serializers.py:1264 order/api.py:1239 order/api.py:1244 +#: order/serializers.py:844 order/serializers.py:984 order/serializers.py:2059 #: stock/api.py:987 stock/serializers.py:111 stock/serializers.py:601 #: stock/serializers.py:710 stock/serializers.py:888 stock/serializers.py:1418 -#: stock/serializers.py:1731 stock/serializers.py:1780 +#: stock/serializers.py:1739 stock/serializers.py:1788 #: templates/email/stale_stock_notification.html:18 users/models.py:549 msgid "Location" msgstr "" -#: build/api.py:894 +#: build/api.py:900 msgid "Output" msgstr "" -#: build/api.py:896 +#: build/api.py:902 msgid "Filter by output stock item ID. Use 'null' to find uninstalled build items." msgstr "" -#: build/models.py:118 users/ruleset.py:31 +#: build/models.py:119 users/ruleset.py:31 msgid "Build Orders" msgstr "" -#: build/models.py:168 +#: build/models.py:169 msgid "Assembly BOM has not been validated" msgstr "" -#: build/models.py:175 +#: build/models.py:176 msgid "Build order cannot be created for an inactive part" msgstr "" -#: build/models.py:182 +#: build/models.py:183 msgid "Build order cannot be created for an unlocked part" msgstr "" -#: build/models.py:200 +#: build/models.py:201 msgid "Build orders can only be externally fulfilled for purchaseable parts" msgstr "" -#: build/models.py:207 order/models.py:369 +#: build/models.py:208 order/models.py:370 msgid "Responsible user or group must be specified" msgstr "" -#: build/models.py:212 +#: build/models.py:213 msgid "Build order part cannot be changed" msgstr "" -#: build/models.py:217 order/models.py:382 +#: build/models.py:218 order/models.py:383 msgid "Target date must be after start date" msgstr "" -#: build/models.py:245 +#: build/models.py:246 msgid "Build Order Reference" msgstr "" -#: build/models.py:246 build/serializers.py:1371 order/models.py:614 -#: order/models.py:1311 order/models.py:1773 order/models.py:2712 -#: part/models.py:4442 +#: build/models.py:247 build/serializers.py:1379 order/models.py:615 +#: order/models.py:1312 order/models.py:1774 order/models.py:2713 +#: part/models.py:4067 #: report/templates/report/inventree_bill_of_materials_report.html:139 #: report/templates/report/inventree_purchase_order_report.html:35 #: report/templates/report/inventree_return_order_report.html:26 @@ -773,230 +789,230 @@ msgstr "" msgid "Reference" msgstr "" -#: build/models.py:255 +#: build/models.py:256 msgid "Brief description of the build (optional)" msgstr "" -#: build/models.py:265 +#: build/models.py:266 msgid "BuildOrder to which this build is allocated" msgstr "" -#: build/models.py:274 +#: build/models.py:275 msgid "Select part to build" msgstr "" -#: build/models.py:279 +#: build/models.py:280 msgid "Sales Order Reference" msgstr "" -#: build/models.py:284 +#: build/models.py:285 msgid "SalesOrder to which this build is allocated" msgstr "" -#: build/models.py:289 build/serializers.py:1097 +#: build/models.py:290 build/serializers.py:1105 msgid "Source Location" msgstr "" -#: build/models.py:295 +#: build/models.py:296 msgid "Select location to take stock from for this build (leave blank to take from any stock location)" msgstr "" -#: build/models.py:301 +#: build/models.py:302 msgid "External Build" msgstr "" -#: build/models.py:302 +#: build/models.py:303 msgid "This build order is fulfilled externally" msgstr "" -#: build/models.py:307 +#: build/models.py:308 msgid "Destination Location" msgstr "" -#: build/models.py:312 +#: build/models.py:313 msgid "Select location where the completed items will be stored" msgstr "" -#: build/models.py:316 +#: build/models.py:317 msgid "Build Quantity" msgstr "" -#: build/models.py:319 +#: build/models.py:320 msgid "Number of stock items to build" msgstr "" -#: build/models.py:323 +#: build/models.py:324 msgid "Completed items" msgstr "" -#: build/models.py:325 +#: build/models.py:326 msgid "Number of stock items which have been completed" msgstr "" -#: build/models.py:329 +#: build/models.py:330 msgid "Build Status" msgstr "" -#: build/models.py:334 +#: build/models.py:335 msgid "Build status code" msgstr "" -#: build/models.py:343 build/serializers.py:359 order/serializers.py:849 +#: build/models.py:344 build/serializers.py:367 order/serializers.py:860 #: stock/models.py:1100 stock/serializers.py:85 stock/serializers.py:1591 msgid "Batch Code" msgstr "" -#: build/models.py:347 build/serializers.py:360 +#: build/models.py:348 build/serializers.py:368 msgid "Batch code for this build output" msgstr "" -#: build/models.py:351 order/models.py:479 order/serializers.py:186 -#: part/models.py:1283 +#: build/models.py:352 order/models.py:480 order/serializers.py:193 +#: part/models.py:1371 msgid "Creation Date" msgstr "" -#: build/models.py:357 +#: build/models.py:358 msgid "Build start date" msgstr "" -#: build/models.py:358 +#: build/models.py:359 msgid "Scheduled start date for this build order" msgstr "" -#: build/models.py:364 +#: build/models.py:365 msgid "Target completion date" msgstr "" -#: build/models.py:366 +#: build/models.py:367 msgid "Target date for build completion. Build will be overdue after this date." msgstr "" -#: build/models.py:371 order/models.py:667 order/models.py:2751 +#: build/models.py:372 order/models.py:668 order/models.py:2752 msgid "Completion Date" msgstr "" -#: build/models.py:379 +#: build/models.py:380 msgid "completed by" msgstr "" -#: build/models.py:388 +#: build/models.py:389 msgid "Issued by" msgstr "" -#: build/models.py:389 +#: build/models.py:390 msgid "User who issued this build order" msgstr "" -#: build/models.py:398 common/models.py:180 order/api.py:179 -#: order/models.py:504 part/models.py:1300 +#: build/models.py:399 common/models.py:184 order/api.py:184 +#: order/models.py:505 part/models.py:1388 #: report/templates/report/inventree_build_order_report.html:158 msgid "Responsible" msgstr "" -#: build/models.py:399 +#: build/models.py:400 msgid "User or group responsible for this build order" msgstr "" -#: build/models.py:404 stock/models.py:1093 +#: build/models.py:405 stock/models.py:1093 msgid "External Link" msgstr "" -#: build/models.py:406 common/models.py:1984 part/models.py:1114 +#: build/models.py:407 common/models.py:1990 part/models.py:1202 #: stock/models.py:1095 msgid "Link to external URL" msgstr "" -#: build/models.py:411 +#: build/models.py:412 msgid "Build Priority" msgstr "" -#: build/models.py:414 +#: build/models.py:415 msgid "Priority of this build order" msgstr "" -#: build/models.py:422 common/models.py:150 common/models.py:164 -#: order/api.py:165 order/models.py:451 order/models.py:1805 +#: build/models.py:423 common/models.py:154 common/models.py:168 +#: order/api.py:170 order/models.py:452 order/models.py:1806 msgid "Project Code" msgstr "" -#: build/models.py:423 +#: build/models.py:424 msgid "Project code for this build order" msgstr "" -#: build/models.py:676 +#: build/models.py:677 msgid "Cannot complete build order with open child builds" msgstr "" -#: build/models.py:681 +#: build/models.py:682 msgid "Cannot complete build order with incomplete outputs" msgstr "" -#: build/models.py:700 build/models.py:830 +#: build/models.py:701 build/models.py:831 msgid "Failed to offload task to complete build allocations" msgstr "" -#: build/models.py:723 +#: build/models.py:724 #, python-brace-format msgid "Build order {build} has been completed" msgstr "" -#: build/models.py:729 +#: build/models.py:730 msgid "A build order has been completed" msgstr "" -#: build/models.py:911 build/serializers.py:407 +#: build/models.py:912 build/serializers.py:415 msgid "Serial numbers must be provided for trackable parts" msgstr "" -#: build/models.py:1042 build/models.py:1129 +#: build/models.py:1043 build/models.py:1130 msgid "No build output specified" msgstr "" -#: build/models.py:1045 +#: build/models.py:1046 msgid "Build output is already completed" msgstr "" -#: build/models.py:1048 +#: build/models.py:1049 msgid "Build output does not match Build Order" msgstr "" -#: build/models.py:1136 build/models.py:1234 build/serializers.py:285 -#: build/serializers.py:335 build/serializers.py:965 build/serializers.py:1739 -#: order/models.py:717 order/serializers.py:658 order/serializers.py:844 -#: part/serializers.py:1708 stock/models.py:940 stock/models.py:1430 +#: build/models.py:1137 build/models.py:1235 build/serializers.py:293 +#: build/serializers.py:343 build/serializers.py:973 build/serializers.py:1747 +#: order/models.py:718 order/serializers.py:669 order/serializers.py:855 +#: part/serializers.py:1573 stock/models.py:940 stock/models.py:1430 #: stock/models.py:1878 stock/serializers.py:688 stock/serializers.py:1580 msgid "Quantity must be greater than zero" msgstr "" -#: build/models.py:1140 build/models.py:1239 build/serializers.py:290 +#: build/models.py:1141 build/models.py:1240 build/serializers.py:298 msgid "Quantity cannot be greater than the output quantity" msgstr "" -#: build/models.py:1214 build/serializers.py:606 +#: build/models.py:1215 build/serializers.py:614 msgid "Build output has not passed all required tests" msgstr "" -#: build/models.py:1217 build/serializers.py:601 +#: build/models.py:1218 build/serializers.py:609 #, python-brace-format msgid "Build output {serial} has not passed all required tests" msgstr "" -#: build/models.py:1229 +#: build/models.py:1230 msgid "Cannot partially complete a build output with allocated items" msgstr "" -#: build/models.py:1627 +#: build/models.py:1628 msgid "Build Order Line Item" msgstr "" -#: build/models.py:1651 +#: build/models.py:1652 msgid "Build object" msgstr "" -#: build/models.py:1663 build/models.py:1974 build/serializers.py:271 -#: build/serializers.py:320 build/serializers.py:1392 common/models.py:1340 -#: order/models.py:1756 order/models.py:2597 order/serializers.py:1696 -#: order/serializers.py:2124 part/models.py:3453 part/models.py:4390 +#: build/models.py:1664 build/models.py:1975 build/serializers.py:279 +#: build/serializers.py:328 build/serializers.py:1400 common/models.py:1344 +#: order/models.py:1757 order/models.py:2598 order/serializers.py:1710 +#: order/serializers.py:2141 part/models.py:3517 part/models.py:4015 #: report/templates/report/inventree_bill_of_materials_report.html:138 #: report/templates/report/inventree_build_order_report.html:113 #: report/templates/report/inventree_purchase_order_report.html:36 @@ -1014,427 +1030,427 @@ msgstr "" msgid "Quantity" msgstr "" -#: build/models.py:1664 +#: build/models.py:1665 msgid "Required quantity for build order" msgstr "" -#: build/models.py:1673 +#: build/models.py:1674 msgid "Quantity of consumed stock" msgstr "" -#: build/models.py:1772 +#: build/models.py:1773 msgid "Build item must specify a build output, as master part is marked as trackable" msgstr "" -#: build/models.py:1783 +#: build/models.py:1784 #, python-brace-format msgid "Allocated quantity ({q}) must not exceed available stock quantity ({a})" msgstr "" -#: build/models.py:1804 order/models.py:2546 +#: build/models.py:1805 order/models.py:2547 msgid "Stock item is over-allocated" msgstr "" -#: build/models.py:1809 order/models.py:2549 +#: build/models.py:1810 order/models.py:2550 msgid "Allocation quantity must be greater than zero" msgstr "" -#: build/models.py:1815 +#: build/models.py:1816 msgid "Quantity must be 1 for serialized stock" msgstr "" -#: build/models.py:1875 +#: build/models.py:1876 msgid "Selected stock item does not match BOM line" msgstr "" -#: build/models.py:1913 +#: build/models.py:1914 msgid "Allocated quantity exceeds available stock quantity" msgstr "" -#: build/models.py:1964 build/serializers.py:948 build/serializers.py:1240 -#: order/serializers.py:1533 order/serializers.py:1554 +#: build/models.py:1965 build/serializers.py:956 build/serializers.py:1248 +#: order/serializers.py:1547 order/serializers.py:1568 #: report/templates/report/inventree_sales_order_shipment_report.html:29 #: stock/api.py:1404 stock/models.py:456 stock/serializers.py:102 #: stock/serializers.py:800 stock/serializers.py:1274 stock/serializers.py:1386 msgid "Stock Item" msgstr "" -#: build/models.py:1965 +#: build/models.py:1966 msgid "Source stock item" msgstr "" -#: build/models.py:1975 +#: build/models.py:1976 msgid "Stock quantity to allocate to build" msgstr "" -#: build/models.py:1984 +#: build/models.py:1985 msgid "Install into" msgstr "" -#: build/models.py:1985 +#: build/models.py:1986 msgid "Destination stock item" msgstr "" -#: build/serializers.py:118 +#: build/serializers.py:120 msgid "Build Level" msgstr "" -#: build/serializers.py:128 +#: build/serializers.py:136 msgid "Part Name" msgstr "" -#: build/serializers.py:153 +#: build/serializers.py:161 msgid "Project Code Label" msgstr "" -#: build/serializers.py:219 build/serializers.py:974 +#: build/serializers.py:227 build/serializers.py:982 msgid "Build Output" msgstr "" -#: build/serializers.py:231 +#: build/serializers.py:239 msgid "Build output does not match the parent build" msgstr "" -#: build/serializers.py:235 +#: build/serializers.py:243 msgid "Output part does not match BuildOrder part" msgstr "" -#: build/serializers.py:239 +#: build/serializers.py:247 msgid "This build output has already been completed" msgstr "" -#: build/serializers.py:253 +#: build/serializers.py:261 msgid "This build output is not fully allocated" msgstr "" -#: build/serializers.py:272 build/serializers.py:321 +#: build/serializers.py:280 build/serializers.py:329 msgid "Enter quantity for build output" msgstr "" -#: build/serializers.py:343 +#: build/serializers.py:351 msgid "Integer quantity required for trackable parts" msgstr "" -#: build/serializers.py:349 +#: build/serializers.py:357 msgid "Integer quantity required, as the bill of materials contains trackable parts" msgstr "" -#: build/serializers.py:366 order/serializers.py:865 order/serializers.py:1700 +#: build/serializers.py:374 order/serializers.py:876 order/serializers.py:1714 #: stock/serializers.py:699 msgid "Serial Numbers" msgstr "" -#: build/serializers.py:367 +#: build/serializers.py:375 msgid "Enter serial numbers for build outputs" msgstr "" -#: build/serializers.py:373 +#: build/serializers.py:381 msgid "Stock location for build output" msgstr "" -#: build/serializers.py:388 +#: build/serializers.py:396 msgid "Auto Allocate Serial Numbers" msgstr "" -#: build/serializers.py:390 +#: build/serializers.py:398 msgid "Automatically allocate required items with matching serial numbers" msgstr "" -#: build/serializers.py:423 order/serializers.py:951 stock/api.py:1183 +#: build/serializers.py:431 order/serializers.py:962 stock/api.py:1183 #: stock/models.py:1901 msgid "The following serial numbers already exist or are invalid" msgstr "" -#: build/serializers.py:465 build/serializers.py:521 build/serializers.py:613 +#: build/serializers.py:473 build/serializers.py:529 build/serializers.py:621 msgid "A list of build outputs must be provided" msgstr "" -#: build/serializers.py:498 +#: build/serializers.py:506 msgid "Stock location for scrapped outputs" msgstr "" -#: build/serializers.py:504 +#: build/serializers.py:512 msgid "Discard Allocations" msgstr "" -#: build/serializers.py:505 +#: build/serializers.py:513 msgid "Discard any stock allocations for scrapped outputs" msgstr "" -#: build/serializers.py:510 +#: build/serializers.py:518 msgid "Reason for scrapping build output(s)" msgstr "" -#: build/serializers.py:568 +#: build/serializers.py:576 msgid "Location for completed build outputs" msgstr "" -#: build/serializers.py:576 +#: build/serializers.py:584 msgid "Accept Incomplete Allocation" msgstr "" -#: build/serializers.py:577 +#: build/serializers.py:585 msgid "Complete outputs if stock has not been fully allocated" msgstr "" -#: build/serializers.py:702 +#: build/serializers.py:710 msgid "Consume Allocated Stock" msgstr "" -#: build/serializers.py:703 +#: build/serializers.py:711 msgid "Consume any stock which has already been allocated to this build" msgstr "" -#: build/serializers.py:709 +#: build/serializers.py:717 msgid "Remove Incomplete Outputs" msgstr "" -#: build/serializers.py:710 +#: build/serializers.py:718 msgid "Delete any build outputs which have not been completed" msgstr "" -#: build/serializers.py:737 +#: build/serializers.py:745 msgid "Not permitted" msgstr "" -#: build/serializers.py:738 +#: build/serializers.py:746 msgid "Accept as consumed by this build order" msgstr "" -#: build/serializers.py:739 +#: build/serializers.py:747 msgid "Deallocate before completing this build order" msgstr "" -#: build/serializers.py:766 +#: build/serializers.py:774 msgid "Overallocated Stock" msgstr "" -#: build/serializers.py:769 +#: build/serializers.py:777 msgid "How do you want to handle extra stock items assigned to the build order" msgstr "" -#: build/serializers.py:780 +#: build/serializers.py:788 msgid "Some stock items have been overallocated" msgstr "" -#: build/serializers.py:785 +#: build/serializers.py:793 msgid "Accept Unallocated" msgstr "" -#: build/serializers.py:787 +#: build/serializers.py:795 msgid "Accept that stock items have not been fully allocated to this build order" msgstr "" -#: build/serializers.py:798 +#: build/serializers.py:806 msgid "Required stock has not been fully allocated" msgstr "" -#: build/serializers.py:803 order/serializers.py:524 order/serializers.py:1601 +#: build/serializers.py:811 order/serializers.py:535 order/serializers.py:1615 msgid "Accept Incomplete" msgstr "" -#: build/serializers.py:805 +#: build/serializers.py:813 msgid "Accept that the required number of build outputs have not been completed" msgstr "" -#: build/serializers.py:816 +#: build/serializers.py:824 msgid "Required build quantity has not been completed" msgstr "" -#: build/serializers.py:828 +#: build/serializers.py:836 msgid "Build order has open child build orders" msgstr "" -#: build/serializers.py:831 +#: build/serializers.py:839 msgid "Build order must be in production state" msgstr "" -#: build/serializers.py:834 +#: build/serializers.py:842 msgid "Build order has incomplete outputs" msgstr "" -#: build/serializers.py:873 +#: build/serializers.py:881 msgid "Build Line" msgstr "" -#: build/serializers.py:881 +#: build/serializers.py:889 msgid "Build output" msgstr "" -#: build/serializers.py:889 +#: build/serializers.py:897 msgid "Build output must point to the same build" msgstr "" -#: build/serializers.py:920 +#: build/serializers.py:928 msgid "Build Line Item" msgstr "" -#: build/serializers.py:938 +#: build/serializers.py:946 msgid "bom_item.part must point to the same part as the build order" msgstr "" -#: build/serializers.py:954 stock/serializers.py:1287 +#: build/serializers.py:962 stock/serializers.py:1287 msgid "Item must be in stock" msgstr "" -#: build/serializers.py:997 order/serializers.py:1587 +#: build/serializers.py:1005 order/serializers.py:1601 #, python-brace-format msgid "Available quantity ({q}) exceeded" msgstr "" -#: build/serializers.py:1003 +#: build/serializers.py:1011 msgid "Build output must be specified for allocation of tracked parts" msgstr "" -#: build/serializers.py:1011 +#: build/serializers.py:1019 msgid "Build output cannot be specified for allocation of untracked parts" msgstr "" -#: build/serializers.py:1035 order/serializers.py:1860 +#: build/serializers.py:1043 order/serializers.py:1874 msgid "Allocation items must be provided" msgstr "" -#: build/serializers.py:1099 +#: build/serializers.py:1107 msgid "Stock location where parts are to be sourced (leave blank to take from any location)" msgstr "" -#: build/serializers.py:1108 +#: build/serializers.py:1116 msgid "Exclude Location" msgstr "" -#: build/serializers.py:1109 +#: build/serializers.py:1117 msgid "Exclude stock items from this selected location" msgstr "" -#: build/serializers.py:1114 +#: build/serializers.py:1122 msgid "Interchangeable Stock" msgstr "" -#: build/serializers.py:1115 +#: build/serializers.py:1123 msgid "Stock items in multiple locations can be used interchangeably" msgstr "" -#: build/serializers.py:1120 +#: build/serializers.py:1128 msgid "Substitute Stock" msgstr "" -#: build/serializers.py:1121 +#: build/serializers.py:1129 msgid "Allow allocation of substitute parts" msgstr "" -#: build/serializers.py:1126 +#: build/serializers.py:1134 msgid "Optional Items" msgstr "" -#: build/serializers.py:1127 +#: build/serializers.py:1135 msgid "Allocate optional BOM items to build order" msgstr "" -#: build/serializers.py:1148 +#: build/serializers.py:1156 msgid "Failed to start auto-allocation task" msgstr "" -#: build/serializers.py:1200 +#: build/serializers.py:1208 msgid "BOM Reference" msgstr "" -#: build/serializers.py:1206 +#: build/serializers.py:1214 msgid "BOM Part ID" msgstr "" -#: build/serializers.py:1213 +#: build/serializers.py:1221 msgid "BOM Part Name" msgstr "" -#: build/serializers.py:1266 build/serializers.py:1449 +#: build/serializers.py:1274 build/serializers.py:1457 msgid "Build" msgstr "" -#: build/serializers.py:1276 company/models.py:685 order/api.py:311 -#: order/api.py:316 order/api.py:543 order/serializers.py:650 +#: build/serializers.py:1284 company/models.py:639 order/api.py:316 +#: order/api.py:321 order/api.py:549 order/serializers.py:661 #: stock/models.py:1036 stock/serializers.py:579 msgid "Supplier Part" msgstr "" -#: build/serializers.py:1284 stock/serializers.py:620 +#: build/serializers.py:1292 stock/serializers.py:620 msgid "Allocated Quantity" msgstr "" -#: build/serializers.py:1351 +#: build/serializers.py:1359 msgid "Build Reference" msgstr "" -#: build/serializers.py:1361 +#: build/serializers.py:1369 msgid "Part Category Name" msgstr "" -#: build/serializers.py:1383 common/setting/system.py:480 part/models.py:1214 +#: build/serializers.py:1391 common/setting/system.py:480 part/models.py:1302 msgid "Trackable" msgstr "" -#: build/serializers.py:1386 +#: build/serializers.py:1394 msgid "Inherited" msgstr "" -#: build/serializers.py:1389 part/models.py:4475 +#: build/serializers.py:1397 part/models.py:4100 msgid "Allow Variants" msgstr "" -#: build/serializers.py:1395 build/serializers.py:1400 part/models.py:4208 -#: part/models.py:4779 stock/api.py:882 +#: build/serializers.py:1403 build/serializers.py:1408 part/models.py:3833 +#: part/models.py:4404 stock/api.py:882 msgid "BOM Item" msgstr "" -#: build/serializers.py:1467 order/serializers.py:1282 part/serializers.py:1310 -#: part/serializers.py:1765 +#: build/serializers.py:1475 order/serializers.py:1296 part/serializers.py:1175 +#: part/serializers.py:1630 msgid "In Production" msgstr "" -#: build/serializers.py:1469 part/serializers.py:950 part/serializers.py:1314 +#: build/serializers.py:1477 part/serializers.py:835 part/serializers.py:1179 msgid "Scheduled to Build" msgstr "" -#: build/serializers.py:1472 part/serializers.py:987 +#: build/serializers.py:1480 part/serializers.py:872 msgid "External Stock" msgstr "" -#: build/serializers.py:1473 part/serializers.py:1300 part/serializers.py:1808 +#: build/serializers.py:1481 part/serializers.py:1165 part/serializers.py:1673 msgid "Available Stock" msgstr "" -#: build/serializers.py:1475 +#: build/serializers.py:1483 msgid "Available Substitute Stock" msgstr "" -#: build/serializers.py:1478 +#: build/serializers.py:1486 msgid "Available Variant Stock" msgstr "" -#: build/serializers.py:1752 +#: build/serializers.py:1760 msgid "Consumed quantity exceeds allocated quantity" msgstr "" -#: build/serializers.py:1789 +#: build/serializers.py:1797 msgid "Optional notes for the stock consumption" msgstr "" -#: build/serializers.py:1806 +#: build/serializers.py:1814 msgid "Build item must point to the correct build order" msgstr "" -#: build/serializers.py:1811 +#: build/serializers.py:1819 msgid "Duplicate build item allocation" msgstr "" -#: build/serializers.py:1829 +#: build/serializers.py:1837 msgid "Build line must point to the correct build order" msgstr "" -#: build/serializers.py:1834 +#: build/serializers.py:1842 msgid "Duplicate build line allocation" msgstr "" -#: build/serializers.py:1846 +#: build/serializers.py:1854 msgid "At least one item or line must be provided" msgstr "" @@ -1482,702 +1498,826 @@ msgstr "" msgid "Build order {bo} is now overdue" msgstr "" -#: common/api.py:694 +#: common/api.py:701 msgid "Is Link" msgstr "" -#: common/api.py:702 +#: common/api.py:709 msgid "Is File" msgstr "" -#: common/api.py:745 +#: common/api.py:756 msgid "User does not have permission to delete these attachments" msgstr "" -#: common/api.py:762 +#: common/api.py:769 msgid "User does not have permission to delete this attachment" msgstr "" -#: common/currency.py:122 +#: common/currency.py:130 msgid "Invalid currency code" msgstr "" -#: common/currency.py:124 +#: common/currency.py:132 msgid "Duplicate currency code" msgstr "" -#: common/currency.py:129 +#: common/currency.py:137 msgid "No valid currency codes provided" msgstr "" -#: common/currency.py:146 +#: common/currency.py:154 msgid "No plugin" msgstr "" -#: common/models.py:101 common/models.py:126 common/models.py:2729 +#: common/models.py:105 common/models.py:130 common/models.py:3150 msgid "Updated" msgstr "" -#: common/models.py:102 common/models.py:127 +#: common/models.py:106 common/models.py:131 msgid "Timestamp of last update" msgstr "" -#: common/models.py:139 +#: common/models.py:143 msgid "Update By" msgstr "" -#: common/models.py:140 +#: common/models.py:144 msgid "User who last updated this object" msgstr "" -#: common/models.py:165 +#: common/models.py:169 msgid "Unique project code" msgstr "" -#: common/models.py:172 +#: common/models.py:176 msgid "Project description" msgstr "" -#: common/models.py:181 +#: common/models.py:185 msgid "User or group responsible for this project" msgstr "" -#: common/models.py:771 common/models.py:1272 common/models.py:1310 +#: common/models.py:775 common/models.py:1276 common/models.py:1314 msgid "Settings key" msgstr "" -#: common/models.py:775 +#: common/models.py:779 msgid "Settings value" msgstr "" -#: common/models.py:830 +#: common/models.py:834 msgid "Chosen value is not a valid option" msgstr "" -#: common/models.py:846 +#: common/models.py:850 msgid "Value must be a boolean value" msgstr "" -#: common/models.py:854 +#: common/models.py:858 msgid "Value must be an integer value" msgstr "" -#: common/models.py:862 +#: common/models.py:866 msgid "Value must be a valid number" msgstr "" -#: common/models.py:887 +#: common/models.py:891 msgid "Value does not pass validation checks" msgstr "" -#: common/models.py:909 +#: common/models.py:913 msgid "Key string must be unique" msgstr "" -#: common/models.py:1318 common/models.py:1319 common/models.py:1423 -#: common/models.py:1424 common/models.py:1669 common/models.py:1670 -#: common/models.py:2000 common/models.py:2001 common/models.py:2382 -#: importer/models.py:100 part/models.py:3547 part/models.py:3575 +#: common/models.py:1322 common/models.py:1323 common/models.py:1427 +#: common/models.py:1428 common/models.py:1673 common/models.py:1674 +#: common/models.py:2006 common/models.py:2007 common/models.py:2803 +#: importer/models.py:100 part/models.py:3611 part/models.py:3639 #: plugin/models.py:355 plugin/models.py:356 #: report/templates/report/inventree_test_report.html:105 users/models.py:124 #: users/models.py:501 msgid "User" msgstr "Потребител" -#: common/models.py:1341 +#: common/models.py:1345 msgid "Price break quantity" msgstr "" -#: common/models.py:1348 company/serializers.py:564 order/models.py:1842 -#: order/models.py:3043 +#: common/models.py:1352 company/serializers.py:349 order/models.py:1843 +#: order/models.py:3044 msgid "Price" msgstr "" -#: common/models.py:1349 +#: common/models.py:1353 msgid "Unit price at specified quantity" msgstr "" -#: common/models.py:1400 common/models.py:1585 +#: common/models.py:1404 common/models.py:1589 msgid "Endpoint" msgstr "" -#: common/models.py:1401 +#: common/models.py:1405 msgid "Endpoint at which this webhook is received" msgstr "" -#: common/models.py:1411 +#: common/models.py:1415 msgid "Name for this webhook" msgstr "" -#: common/models.py:1415 common/models.py:2241 common/models.py:2348 -#: company/models.py:191 company/models.py:822 machine/models.py:40 -#: part/models.py:1237 plugin/models.py:69 stock/api.py:642 users/models.py:195 +#: common/models.py:1419 common/models.py:2247 common/models.py:2354 +#: company/models.py:192 company/models.py:776 machine/models.py:40 +#: part/models.py:1325 plugin/models.py:69 stock/api.py:642 users/models.py:195 #: users/models.py:554 users/serializers.py:314 msgid "Active" msgstr "" -#: common/models.py:1415 +#: common/models.py:1419 msgid "Is this webhook active" msgstr "" -#: common/models.py:1431 users/models.py:172 +#: common/models.py:1435 users/models.py:172 msgid "Token" msgstr "" -#: common/models.py:1432 +#: common/models.py:1436 msgid "Token for access" msgstr "" -#: common/models.py:1440 +#: common/models.py:1444 msgid "Secret" msgstr "" -#: common/models.py:1441 +#: common/models.py:1445 msgid "Shared secret for HMAC" msgstr "" -#: common/models.py:1549 common/models.py:2619 +#: common/models.py:1553 common/models.py:3040 msgid "Message ID" msgstr "" -#: common/models.py:1550 common/models.py:2609 +#: common/models.py:1554 common/models.py:3030 msgid "Unique identifier for this message" msgstr "" -#: common/models.py:1558 +#: common/models.py:1562 msgid "Host" msgstr "" -#: common/models.py:1559 +#: common/models.py:1563 msgid "Host from which this message was received" msgstr "" -#: common/models.py:1567 +#: common/models.py:1571 msgid "Header" msgstr "" -#: common/models.py:1568 +#: common/models.py:1572 msgid "Header of this message" msgstr "" -#: common/models.py:1575 +#: common/models.py:1579 msgid "Body" msgstr "" -#: common/models.py:1576 +#: common/models.py:1580 msgid "Body of this message" msgstr "" -#: common/models.py:1586 +#: common/models.py:1590 msgid "Endpoint on which this message was received" msgstr "" -#: common/models.py:1591 +#: common/models.py:1595 msgid "Worked on" msgstr "" -#: common/models.py:1592 +#: common/models.py:1596 msgid "Was the work on this message finished?" msgstr "" -#: common/models.py:1718 +#: common/models.py:1722 msgid "Id" msgstr "" -#: common/models.py:1720 +#: common/models.py:1724 msgid "Title" msgstr "" -#: common/models.py:1722 common/models.py:1983 company/models.py:185 -#: company/models.py:467 company/models.py:534 company/models.py:839 -#: order/models.py:457 order/models.py:1786 order/models.py:2343 -#: part/models.py:1113 +#: common/models.py:1726 common/models.py:1989 company/models.py:186 +#: company/models.py:468 company/models.py:536 company/models.py:793 +#: order/models.py:458 order/models.py:1787 order/models.py:2344 +#: part/models.py:1201 #: report/templates/report/inventree_build_order_report.html:164 msgid "Link" msgstr "" -#: common/models.py:1724 +#: common/models.py:1728 msgid "Published" msgstr "" -#: common/models.py:1726 +#: common/models.py:1730 msgid "Author" msgstr "" -#: common/models.py:1728 +#: common/models.py:1732 msgid "Summary" msgstr "" -#: common/models.py:1731 common/models.py:2586 +#: common/models.py:1735 common/models.py:3007 msgid "Read" msgstr "" -#: common/models.py:1731 +#: common/models.py:1735 msgid "Was this news item read?" msgstr "" -#: common/models.py:1748 +#: common/models.py:1752 msgid "Image file" msgstr "" -#: common/models.py:1760 +#: common/models.py:1764 msgid "Target model type for this image" msgstr "" -#: common/models.py:1764 +#: common/models.py:1768 msgid "Target model ID for this image" msgstr "" -#: common/models.py:1786 +#: common/models.py:1790 msgid "Custom Unit" msgstr "" -#: common/models.py:1804 +#: common/models.py:1808 msgid "Unit symbol must be unique" msgstr "" -#: common/models.py:1819 +#: common/models.py:1823 msgid "Unit name must be a valid identifier" msgstr "" -#: common/models.py:1838 +#: common/models.py:1842 msgid "Unit name" msgstr "" -#: common/models.py:1845 +#: common/models.py:1849 msgid "Symbol" msgstr "" -#: common/models.py:1846 +#: common/models.py:1850 msgid "Optional unit symbol" msgstr "" -#: common/models.py:1852 +#: common/models.py:1856 msgid "Definition" msgstr "" -#: common/models.py:1853 +#: common/models.py:1857 msgid "Unit definition" msgstr "" -#: common/models.py:1911 common/models.py:1974 stock/models.py:2967 +#: common/models.py:1917 common/models.py:1980 stock/models.py:2984 #: stock/serializers.py:247 msgid "Attachment" msgstr "" -#: common/models.py:1928 +#: common/models.py:1934 msgid "Missing file" msgstr "" -#: common/models.py:1929 +#: common/models.py:1935 msgid "Missing external link" msgstr "" -#: common/models.py:1966 +#: common/models.py:1972 common/models.py:2488 msgid "Model type" msgstr "" -#: common/models.py:1967 +#: common/models.py:1973 msgid "Target model type for image" msgstr "" -#: common/models.py:1975 +#: common/models.py:1981 msgid "Select file to attach" msgstr "" -#: common/models.py:1991 +#: common/models.py:1997 msgid "Comment" msgstr "" -#: common/models.py:1992 +#: common/models.py:1998 msgid "Attachment comment" msgstr "" -#: common/models.py:2008 +#: common/models.py:2014 msgid "Upload date" msgstr "" -#: common/models.py:2009 +#: common/models.py:2015 msgid "Date the file was uploaded" msgstr "" -#: common/models.py:2013 +#: common/models.py:2019 msgid "File size" msgstr "" -#: common/models.py:2013 +#: common/models.py:2019 msgid "File size in bytes" msgstr "" -#: common/models.py:2051 common/serializers.py:684 +#: common/models.py:2057 common/serializers.py:688 msgid "Invalid model type specified for attachment" msgstr "" -#: common/models.py:2072 +#: common/models.py:2078 msgid "Custom State" msgstr "" -#: common/models.py:2073 +#: common/models.py:2079 msgid "Custom States" msgstr "" -#: common/models.py:2078 +#: common/models.py:2084 msgid "Reference Status Set" msgstr "" -#: common/models.py:2079 +#: common/models.py:2085 msgid "Status set that is extended with this custom state" msgstr "" -#: common/models.py:2083 generic/states/serializers.py:18 +#: common/models.py:2089 generic/states/serializers.py:18 msgid "Logical Key" msgstr "" -#: common/models.py:2085 +#: common/models.py:2091 msgid "State logical key that is equal to this custom state in business logic" msgstr "" -#: common/models.py:2090 common/models.py:2329 company/models.py:622 -#: machine/serializers.py:27 -#: report/templates/report/inventree_test_report.html:104 stock/models.py:2959 +#: common/models.py:2096 common/models.py:2335 machine/serializers.py:27 +#: report/templates/report/inventree_test_report.html:104 stock/models.py:2976 msgid "Value" msgstr "" -#: common/models.py:2091 +#: common/models.py:2097 msgid "Numerical value that will be saved in the models database" msgstr "" -#: common/models.py:2097 +#: common/models.py:2103 msgid "Name of the state" msgstr "" -#: common/models.py:2106 common/models.py:2335 generic/states/serializers.py:22 +#: common/models.py:2112 common/models.py:2341 generic/states/serializers.py:22 msgid "Label" msgstr "" -#: common/models.py:2107 +#: common/models.py:2113 msgid "Label that will be displayed in the frontend" msgstr "" -#: common/models.py:2114 generic/states/serializers.py:24 +#: common/models.py:2120 generic/states/serializers.py:24 msgid "Color" msgstr "" -#: common/models.py:2115 +#: common/models.py:2121 msgid "Color that will be displayed in the frontend" msgstr "" -#: common/models.py:2123 +#: common/models.py:2129 msgid "Model" msgstr "" -#: common/models.py:2124 +#: common/models.py:2130 msgid "Model this state is associated with" msgstr "" -#: common/models.py:2139 +#: common/models.py:2145 msgid "Model must be selected" msgstr "" -#: common/models.py:2142 +#: common/models.py:2148 msgid "Key must be selected" msgstr "" -#: common/models.py:2145 +#: common/models.py:2151 msgid "Logical key must be selected" msgstr "" -#: common/models.py:2149 +#: common/models.py:2155 msgid "Key must be different from logical key" msgstr "" -#: common/models.py:2156 +#: common/models.py:2162 msgid "Valid reference status class must be provided" msgstr "" -#: common/models.py:2162 +#: common/models.py:2168 msgid "Key must be different from the logical keys of the reference status" msgstr "" -#: common/models.py:2169 +#: common/models.py:2175 msgid "Logical key must be in the logical keys of the reference status" msgstr "" -#: common/models.py:2176 +#: common/models.py:2182 msgid "Name must be different from the names of the reference status" msgstr "" -#: common/models.py:2216 common/models.py:2323 part/models.py:3889 +#: common/models.py:2222 common/models.py:2329 common/models.py:2533 msgid "Selection List" msgstr "" -#: common/models.py:2217 +#: common/models.py:2223 msgid "Selection Lists" msgstr "" -#: common/models.py:2222 +#: common/models.py:2228 msgid "Name of the selection list" msgstr "" -#: common/models.py:2229 +#: common/models.py:2235 msgid "Description of the selection list" msgstr "" -#: common/models.py:2235 part/models.py:1242 +#: common/models.py:2241 part/models.py:1330 msgid "Locked" msgstr "" -#: common/models.py:2236 +#: common/models.py:2242 msgid "Is this selection list locked?" msgstr "" -#: common/models.py:2242 +#: common/models.py:2248 msgid "Can this selection list be used?" msgstr "" -#: common/models.py:2250 +#: common/models.py:2256 msgid "Source Plugin" msgstr "" -#: common/models.py:2251 +#: common/models.py:2257 msgid "Plugin which provides the selection list" msgstr "" -#: common/models.py:2256 +#: common/models.py:2262 msgid "Source String" msgstr "" -#: common/models.py:2257 +#: common/models.py:2263 msgid "Optional string identifying the source used for this list" msgstr "" -#: common/models.py:2266 +#: common/models.py:2272 msgid "Default Entry" msgstr "" -#: common/models.py:2267 +#: common/models.py:2273 msgid "Default entry for this selection list" msgstr "" -#: common/models.py:2272 common/models.py:2724 +#: common/models.py:2278 common/models.py:3145 msgid "Created" msgstr "" -#: common/models.py:2273 +#: common/models.py:2279 msgid "Date and time that the selection list was created" msgstr "" -#: common/models.py:2278 +#: common/models.py:2284 msgid "Last Updated" msgstr "" -#: common/models.py:2279 +#: common/models.py:2285 msgid "Date and time that the selection list was last updated" msgstr "" -#: common/models.py:2313 +#: common/models.py:2319 msgid "Selection List Entry" msgstr "" -#: common/models.py:2314 +#: common/models.py:2320 msgid "Selection List Entries" msgstr "" -#: common/models.py:2324 +#: common/models.py:2330 msgid "Selection list to which this entry belongs" msgstr "" -#: common/models.py:2330 +#: common/models.py:2336 msgid "Value of the selection list entry" msgstr "" -#: common/models.py:2336 +#: common/models.py:2342 msgid "Label for the selection list entry" msgstr "" -#: common/models.py:2342 +#: common/models.py:2348 msgid "Description of the selection list entry" msgstr "" -#: common/models.py:2349 +#: common/models.py:2355 msgid "Is this selection list entry active?" msgstr "" -#: common/models.py:2367 -msgid "Barcode Scan" +#: common/models.py:2387 +msgid "Parameter Template" msgstr "" -#: common/models.py:2371 importer/models.py:546 part/models.py:4060 -msgid "Data" +#: common/models.py:2388 +msgid "Parameter Templates" msgstr "" -#: common/models.py:2372 -msgid "Barcode data" +#: common/models.py:2425 +msgid "Checkbox parameters cannot have units" msgstr "" -#: common/models.py:2383 -msgid "User who scanned the barcode" +#: common/models.py:2430 +msgid "Checkbox parameters cannot have choices" msgstr "" -#: common/models.py:2388 importer/models.py:69 -msgid "Timestamp" +#: common/models.py:2450 part/models.py:3707 +msgid "Choices must be unique" msgstr "" -#: common/models.py:2389 -msgid "Date and time of the barcode scan" +#: common/models.py:2467 +msgid "Parameter template name must be unique" msgstr "" -#: common/models.py:2395 -msgid "URL endpoint which processed the barcode" +#: common/models.py:2489 +msgid "Target model type for this parameter template" msgstr "" -#: common/models.py:2402 order/models.py:1832 plugin/serializers.py:93 -msgid "Context" +#: common/models.py:2495 +msgid "Parameter Name" msgstr "" -#: common/models.py:2403 -msgid "Context data for the barcode scan" +#: common/models.py:2501 part/models.py:1283 +msgid "Units" msgstr "" -#: common/models.py:2410 -msgid "Response" +#: common/models.py:2502 +msgid "Physical units for this parameter" msgstr "" -#: common/models.py:2411 -msgid "Response data from the barcode scan" +#: common/models.py:2510 +msgid "Parameter description" msgstr "" -#: common/models.py:2417 report/templates/report/inventree_test_report.html:103 -#: stock/models.py:2953 -msgid "Result" +#: common/models.py:2516 +msgid "Checkbox" msgstr "" -#: common/models.py:2418 -msgid "Was the barcode scan successful?" +#: common/models.py:2517 +msgid "Is this parameter a checkbox?" msgstr "" -#: common/models.py:2500 -msgid "An error occurred" +#: common/models.py:2522 part/models.py:3794 +msgid "Choices" msgstr "" -#: common/models.py:2521 -msgid "INVE-E8: Email log deletion is protected. Set INVENTREE_PROTECT_EMAIL_LOG to False to allow deletion." +#: common/models.py:2523 +msgid "Valid choices for this parameter (comma-separated)" msgstr "" -#: common/models.py:2568 -msgid "Email Message" +#: common/models.py:2534 +msgid "Selection list for this parameter" msgstr "" -#: common/models.py:2569 -msgid "Email Messages" +#: common/models.py:2539 part/models.py:3769 report/models.py:287 +msgid "Enabled" msgstr "" -#: common/models.py:2576 -msgid "Announced" +#: common/models.py:2540 +msgid "Is this parameter template enabled?" msgstr "" -#: common/models.py:2578 -msgid "Sent" -msgstr "" - -#: common/models.py:2579 -msgid "Failed" +#: common/models.py:2581 +msgid "Parameter" msgstr "" #: common/models.py:2582 -msgid "Delivered" -msgstr "" - -#: common/models.py:2590 -msgid "Confirmed" -msgstr "" - -#: common/models.py:2596 -msgid "Inbound" -msgstr "" - -#: common/models.py:2597 -msgid "Outbound" -msgstr "" - -#: common/models.py:2602 -msgid "No Reply" -msgstr "" - -#: common/models.py:2603 -msgid "Track Delivery" -msgstr "" - -#: common/models.py:2604 -msgid "Track Read" -msgstr "" - -#: common/models.py:2605 -msgid "Track Click" -msgstr "" - -#: common/models.py:2608 common/models.py:2711 -msgid "Global ID" -msgstr "" - -#: common/models.py:2621 -msgid "Identifier for this message (might be supplied by external system)" +msgid "Parameters" msgstr "" #: common/models.py:2628 +msgid "Invalid choice for parameter value" +msgstr "" + +#: common/models.py:2698 common/serializers.py:783 +msgid "Invalid model type specified for parameter" +msgstr "" + +#: common/models.py:2734 +msgid "Model ID" +msgstr "" + +#: common/models.py:2735 +msgid "ID of the target model for this parameter" +msgstr "" + +#: common/models.py:2744 common/setting/system.py:450 report/models.py:373 +#: report/models.py:669 report/serializers.py:94 report/serializers.py:135 +#: stock/serializers.py:234 +msgid "Template" +msgstr "" + +#: common/models.py:2745 +msgid "Parameter template" +msgstr "" + +#: common/models.py:2750 common/models.py:2792 importer/models.py:546 +msgid "Data" +msgstr "" + +#: common/models.py:2751 +msgid "Parameter Value" +msgstr "" + +#: common/models.py:2760 company/models.py:810 order/serializers.py:894 +#: order/serializers.py:2064 part/models.py:4075 part/models.py:4444 +#: report/templates/report/inventree_bill_of_materials_report.html:140 +#: report/templates/report/inventree_purchase_order_report.html:39 +#: report/templates/report/inventree_return_order_report.html:27 +#: report/templates/report/inventree_sales_order_report.html:32 +#: report/templates/report/inventree_stock_location_report.html:105 +#: stock/serializers.py:813 +msgid "Note" +msgstr "" + +#: common/models.py:2761 stock/serializers.py:718 +msgid "Optional note field" +msgstr "" + +#: common/models.py:2788 +msgid "Barcode Scan" +msgstr "" + +#: common/models.py:2793 +msgid "Barcode data" +msgstr "" + +#: common/models.py:2804 +msgid "User who scanned the barcode" +msgstr "" + +#: common/models.py:2809 importer/models.py:69 +msgid "Timestamp" +msgstr "" + +#: common/models.py:2810 +msgid "Date and time of the barcode scan" +msgstr "" + +#: common/models.py:2816 +msgid "URL endpoint which processed the barcode" +msgstr "" + +#: common/models.py:2823 order/models.py:1833 plugin/serializers.py:93 +msgid "Context" +msgstr "" + +#: common/models.py:2824 +msgid "Context data for the barcode scan" +msgstr "" + +#: common/models.py:2831 +msgid "Response" +msgstr "" + +#: common/models.py:2832 +msgid "Response data from the barcode scan" +msgstr "" + +#: common/models.py:2838 report/templates/report/inventree_test_report.html:103 +#: stock/models.py:2970 +msgid "Result" +msgstr "" + +#: common/models.py:2839 +msgid "Was the barcode scan successful?" +msgstr "" + +#: common/models.py:2921 +msgid "An error occurred" +msgstr "" + +#: common/models.py:2942 +msgid "INVE-E8: Email log deletion is protected. Set INVENTREE_PROTECT_EMAIL_LOG to False to allow deletion." +msgstr "" + +#: common/models.py:2989 +msgid "Email Message" +msgstr "" + +#: common/models.py:2990 +msgid "Email Messages" +msgstr "" + +#: common/models.py:2997 +msgid "Announced" +msgstr "" + +#: common/models.py:2999 +msgid "Sent" +msgstr "" + +#: common/models.py:3000 +msgid "Failed" +msgstr "" + +#: common/models.py:3003 +msgid "Delivered" +msgstr "" + +#: common/models.py:3011 +msgid "Confirmed" +msgstr "" + +#: common/models.py:3017 +msgid "Inbound" +msgstr "" + +#: common/models.py:3018 +msgid "Outbound" +msgstr "" + +#: common/models.py:3023 +msgid "No Reply" +msgstr "" + +#: common/models.py:3024 +msgid "Track Delivery" +msgstr "" + +#: common/models.py:3025 +msgid "Track Read" +msgstr "" + +#: common/models.py:3026 +msgid "Track Click" +msgstr "" + +#: common/models.py:3029 common/models.py:3132 +msgid "Global ID" +msgstr "" + +#: common/models.py:3042 +msgid "Identifier for this message (might be supplied by external system)" +msgstr "" + +#: common/models.py:3049 msgid "Thread ID" msgstr "" -#: common/models.py:2630 +#: common/models.py:3051 msgid "Identifier for this message thread (might be supplied by external system)" msgstr "" -#: common/models.py:2639 +#: common/models.py:3060 msgid "Thread" msgstr "" -#: common/models.py:2640 +#: common/models.py:3061 msgid "Linked thread for this message" msgstr "" -#: common/models.py:2656 -msgid "Prioriy" +#: common/models.py:3077 +msgid "Priority" msgstr "" -#: common/models.py:2698 +#: common/models.py:3119 msgid "Email Thread" msgstr "" -#: common/models.py:2699 +#: common/models.py:3120 msgid "Email Threads" msgstr "" -#: common/models.py:2705 generic/states/serializers.py:16 +#: common/models.py:3126 generic/states/serializers.py:16 #: machine/serializers.py:24 plugin/models.py:46 users/models.py:113 msgid "Key" msgstr "" -#: common/models.py:2708 +#: common/models.py:3129 msgid "Unique key for this thread (used to identify the thread)" msgstr "" -#: common/models.py:2712 +#: common/models.py:3133 msgid "Unique identifier for this thread" msgstr "" -#: common/models.py:2719 +#: common/models.py:3140 msgid "Started Internal" msgstr "" -#: common/models.py:2720 +#: common/models.py:3141 msgid "Was this thread started internally?" msgstr "" -#: common/models.py:2725 +#: common/models.py:3146 msgid "Date and time that the thread was created" msgstr "" -#: common/models.py:2730 +#: common/models.py:3151 msgid "Date and time that the thread was last updated" msgstr "" @@ -2199,7 +2339,7 @@ msgstr "" msgid "A order that is assigned to you was canceled" msgstr "" -#: common/notifications.py:73 common/notifications.py:80 order/api.py:594 +#: common/notifications.py:73 common/notifications.py:80 order/api.py:600 msgid "Items Received" msgstr "" @@ -2211,88 +2351,93 @@ msgstr "" msgid "Items have been received against a return order" msgstr "" -#: common/serializers.py:145 +#: common/serializers.py:149 msgid "Indicates if the setting is overridden by an environment variable" msgstr "" -#: common/serializers.py:147 +#: common/serializers.py:151 msgid "Override" msgstr "" -#: common/serializers.py:498 +#: common/serializers.py:502 msgid "Is Running" msgstr "" -#: common/serializers.py:504 +#: common/serializers.py:508 msgid "Pending Tasks" msgstr "" -#: common/serializers.py:510 +#: common/serializers.py:514 msgid "Scheduled Tasks" msgstr "" -#: common/serializers.py:516 +#: common/serializers.py:520 msgid "Failed Tasks" msgstr "" -#: common/serializers.py:531 +#: common/serializers.py:535 msgid "Task ID" msgstr "" -#: common/serializers.py:531 +#: common/serializers.py:535 msgid "Unique task ID" msgstr "" -#: common/serializers.py:533 +#: common/serializers.py:537 msgid "Lock" msgstr "" -#: common/serializers.py:533 +#: common/serializers.py:537 msgid "Lock time" msgstr "" -#: common/serializers.py:535 +#: common/serializers.py:539 msgid "Task name" msgstr "" -#: common/serializers.py:537 +#: common/serializers.py:541 msgid "Function" msgstr "" -#: common/serializers.py:537 +#: common/serializers.py:541 msgid "Function name" msgstr "" -#: common/serializers.py:539 +#: common/serializers.py:543 msgid "Arguments" msgstr "" -#: common/serializers.py:539 +#: common/serializers.py:543 msgid "Task arguments" msgstr "" -#: common/serializers.py:542 +#: common/serializers.py:546 msgid "Keyword Arguments" msgstr "" -#: common/serializers.py:542 +#: common/serializers.py:546 msgid "Task keyword arguments" msgstr "" -#: common/serializers.py:652 +#: common/serializers.py:656 msgid "Filename" msgstr "" -#: common/serializers.py:659 importer/models.py:89 report/api.py:41 +#: common/serializers.py:663 common/serializers.py:730 +#: common/serializers.py:805 importer/models.py:89 report/api.py:41 #: report/models.py:293 report/serializers.py:52 msgid "Model Type" msgstr "" -#: common/serializers.py:687 +#: common/serializers.py:691 msgid "User does not have permission to create or edit attachments for this model" msgstr "" -#: common/serializers.py:731 common/serializers.py:834 +#: common/serializers.py:786 +msgid "User does not have permission to create or edit parameters for this model" +msgstr "" + +#: common/serializers.py:850 common/serializers.py:953 msgid "Selection list is locked" msgstr "" @@ -2368,7 +2513,7 @@ msgstr "" msgid "Show the `about` modal only to superusers" msgstr "" -#: common/setting/system.py:224 company/models.py:144 company/models.py:145 +#: common/setting/system.py:224 company/models.py:145 company/models.py:146 msgid "Company name" msgstr "" @@ -2411,8 +2556,8 @@ msgstr "" #: common/setting/system.py:253 common/setting/system.py:293 #: common/setting/system.py:306 common/setting/system.py:314 #: common/setting/system.py:321 common/setting/system.py:330 -#: common/setting/system.py:339 common/setting/system.py:588 -#: common/setting/system.py:616 common/setting/system.py:707 +#: common/setting/system.py:339 common/setting/system.py:580 +#: common/setting/system.py:608 common/setting/system.py:707 #: common/setting/system.py:1103 common/setting/system.py:1119 msgid "days" msgstr "" @@ -2657,12 +2802,6 @@ msgstr "" msgid "Copy category parameter templates when creating a part" msgstr "" -#: common/setting/system.py:450 part/models.py:4054 report/models.py:373 -#: report/models.py:669 report/serializers.py:94 report/serializers.py:135 -#: stock/serializers.py:234 -msgid "Template" -msgstr "" - #: common/setting/system.py:451 msgid "Parts are templates by default" msgstr "" @@ -2671,8 +2810,8 @@ msgstr "" msgid "Parts can be assembled from other components by default" msgstr "" -#: common/setting/system.py:462 part/models.py:1208 part/serializers.py:1734 -#: part/serializers.py:1741 +#: common/setting/system.py:462 part/models.py:1296 part/serializers.py:1599 +#: part/serializers.py:1606 msgid "Component" msgstr "" @@ -2680,7 +2819,7 @@ msgstr "" msgid "Parts can be used as sub-components by default" msgstr "" -#: common/setting/system.py:468 part/models.py:1226 +#: common/setting/system.py:468 part/models.py:1314 msgid "Purchaseable" msgstr "" @@ -2688,7 +2827,7 @@ msgstr "" msgid "Parts are purchaseable by default" msgstr "" -#: common/setting/system.py:474 part/models.py:1232 stock/api.py:643 +#: common/setting/system.py:474 part/models.py:1320 stock/api.py:643 msgid "Salable" msgstr "" @@ -2700,7 +2839,7 @@ msgstr "" msgid "Parts are trackable by default" msgstr "" -#: common/setting/system.py:486 part/models.py:1248 +#: common/setting/system.py:486 part/models.py:1336 msgid "Virtual" msgstr "" @@ -2749,158 +2888,158 @@ msgid "Part category default icon (empty means no icon)" msgstr "" #: common/setting/system.py:525 -msgid "Enforce Parameter Units" -msgstr "" - -#: common/setting/system.py:527 -msgid "If units are provided, parameter values must match the specified units" -msgstr "" - -#: common/setting/system.py:533 msgid "Minimum Pricing Decimal Places" msgstr "" -#: common/setting/system.py:535 +#: common/setting/system.py:527 msgid "Minimum number of decimal places to display when rendering pricing data" msgstr "" -#: common/setting/system.py:546 +#: common/setting/system.py:538 msgid "Maximum Pricing Decimal Places" msgstr "" -#: common/setting/system.py:548 +#: common/setting/system.py:540 msgid "Maximum number of decimal places to display when rendering pricing data" msgstr "" -#: common/setting/system.py:559 +#: common/setting/system.py:551 msgid "Use Supplier Pricing" msgstr "" -#: common/setting/system.py:561 +#: common/setting/system.py:553 msgid "Include supplier price breaks in overall pricing calculations" msgstr "" -#: common/setting/system.py:567 +#: common/setting/system.py:559 msgid "Purchase History Override" msgstr "" -#: common/setting/system.py:569 +#: common/setting/system.py:561 msgid "Historical purchase order pricing overrides supplier price breaks" msgstr "" -#: common/setting/system.py:575 +#: common/setting/system.py:567 msgid "Use Stock Item Pricing" msgstr "" -#: common/setting/system.py:577 +#: common/setting/system.py:569 msgid "Use pricing from manually entered stock data for pricing calculations" msgstr "" -#: common/setting/system.py:583 +#: common/setting/system.py:575 msgid "Stock Item Pricing Age" msgstr "" -#: common/setting/system.py:585 +#: common/setting/system.py:577 msgid "Exclude stock items older than this number of days from pricing calculations" msgstr "" -#: common/setting/system.py:592 +#: common/setting/system.py:584 msgid "Use Variant Pricing" msgstr "" -#: common/setting/system.py:593 +#: common/setting/system.py:585 msgid "Include variant pricing in overall pricing calculations" msgstr "" -#: common/setting/system.py:598 +#: common/setting/system.py:590 msgid "Active Variants Only" msgstr "" -#: common/setting/system.py:600 +#: common/setting/system.py:592 msgid "Only use active variant parts for calculating variant pricing" msgstr "" -#: common/setting/system.py:606 +#: common/setting/system.py:598 msgid "Auto Update Pricing" msgstr "" -#: common/setting/system.py:608 +#: common/setting/system.py:600 msgid "Automatically update part pricing when internal data changes" msgstr "" -#: common/setting/system.py:614 +#: common/setting/system.py:606 msgid "Pricing Rebuild Interval" msgstr "" -#: common/setting/system.py:615 +#: common/setting/system.py:607 msgid "Number of days before part pricing is automatically updated" msgstr "" -#: common/setting/system.py:621 +#: common/setting/system.py:613 msgid "Internal Prices" msgstr "" -#: common/setting/system.py:622 +#: common/setting/system.py:614 msgid "Enable internal prices for parts" msgstr "" -#: common/setting/system.py:627 +#: common/setting/system.py:619 msgid "Internal Price Override" msgstr "" -#: common/setting/system.py:629 +#: common/setting/system.py:621 msgid "If available, internal prices override price range calculations" msgstr "" -#: common/setting/system.py:635 +#: common/setting/system.py:627 msgid "Enable label printing" msgstr "" -#: common/setting/system.py:636 +#: common/setting/system.py:628 msgid "Enable label printing from the web interface" msgstr "" -#: common/setting/system.py:641 +#: common/setting/system.py:633 msgid "Label Image DPI" msgstr "" -#: common/setting/system.py:643 +#: common/setting/system.py:635 msgid "DPI resolution when generating image files to supply to label printing plugins" msgstr "" -#: common/setting/system.py:649 +#: common/setting/system.py:641 msgid "Enable Reports" msgstr "" -#: common/setting/system.py:650 +#: common/setting/system.py:642 msgid "Enable generation of reports" msgstr "" -#: common/setting/system.py:655 +#: common/setting/system.py:647 msgid "Debug Mode" msgstr "" -#: common/setting/system.py:656 +#: common/setting/system.py:648 msgid "Generate reports in debug mode (HTML output)" msgstr "" -#: common/setting/system.py:661 +#: common/setting/system.py:653 msgid "Log Report Errors" msgstr "" -#: common/setting/system.py:662 +#: common/setting/system.py:654 msgid "Log errors which occur when generating reports" msgstr "" -#: common/setting/system.py:667 plugin/builtin/labels/label_sheet.py:29 +#: common/setting/system.py:659 plugin/builtin/labels/label_sheet.py:29 #: report/models.py:381 msgid "Page Size" msgstr "" -#: common/setting/system.py:668 +#: common/setting/system.py:660 msgid "Default page size for PDF reports" msgstr "" +#: common/setting/system.py:665 +msgid "Enforce Parameter Units" +msgstr "" + +#: common/setting/system.py:667 +msgid "If units are provided, parameter values must match the specified units" +msgstr "" + #: common/setting/system.py:673 msgid "Globally Unique Serials" msgstr "" @@ -3456,688 +3595,677 @@ msgid "Display PDF reports in the browser, instead of downloading as a file" msgstr "" #: common/setting/user.py:45 -msgid "Search Parts" +msgid "Barcode Scanner in Form Fields" msgstr "" #: common/setting/user.py:46 -msgid "Display parts in search preview window" +msgid "Allow barcode scanner input in form fields" msgstr "" #: common/setting/user.py:51 -msgid "Search Supplier Parts" +msgid "Search Parts" msgstr "" #: common/setting/user.py:52 -msgid "Display supplier parts in search preview window" +msgid "Display parts in search preview window" msgstr "" #: common/setting/user.py:57 -msgid "Search Manufacturer Parts" +msgid "Search Supplier Parts" msgstr "" #: common/setting/user.py:58 -msgid "Display manufacturer parts in search preview window" +msgid "Display supplier parts in search preview window" msgstr "" #: common/setting/user.py:63 -msgid "Hide Inactive Parts" +msgid "Search Manufacturer Parts" msgstr "" #: common/setting/user.py:64 -msgid "Excluded inactive parts from search preview window" +msgid "Display manufacturer parts in search preview window" msgstr "" #: common/setting/user.py:69 -msgid "Search Categories" +msgid "Hide Inactive Parts" msgstr "" #: common/setting/user.py:70 -msgid "Display part categories in search preview window" +msgid "Excluded inactive parts from search preview window" msgstr "" #: common/setting/user.py:75 -msgid "Search Stock" +msgid "Search Categories" msgstr "" #: common/setting/user.py:76 -msgid "Display stock items in search preview window" +msgid "Display part categories in search preview window" msgstr "" #: common/setting/user.py:81 +msgid "Search Stock" +msgstr "" + +#: common/setting/user.py:82 +msgid "Display stock items in search preview window" +msgstr "" + +#: common/setting/user.py:87 msgid "Hide Unavailable Stock Items" msgstr "" -#: common/setting/user.py:83 +#: common/setting/user.py:89 msgid "Exclude stock items which are not available from the search preview window" msgstr "" -#: common/setting/user.py:89 +#: common/setting/user.py:95 msgid "Search Locations" msgstr "" -#: common/setting/user.py:90 +#: common/setting/user.py:96 msgid "Display stock locations in search preview window" msgstr "" -#: common/setting/user.py:95 +#: common/setting/user.py:101 msgid "Search Companies" msgstr "" -#: common/setting/user.py:96 +#: common/setting/user.py:102 msgid "Display companies in search preview window" msgstr "" -#: common/setting/user.py:101 +#: common/setting/user.py:107 msgid "Search Build Orders" msgstr "" -#: common/setting/user.py:102 +#: common/setting/user.py:108 msgid "Display build orders in search preview window" msgstr "" -#: common/setting/user.py:107 +#: common/setting/user.py:113 msgid "Search Purchase Orders" msgstr "" -#: common/setting/user.py:108 +#: common/setting/user.py:114 msgid "Display purchase orders in search preview window" msgstr "" -#: common/setting/user.py:113 +#: common/setting/user.py:119 msgid "Exclude Inactive Purchase Orders" msgstr "" -#: common/setting/user.py:114 +#: common/setting/user.py:120 msgid "Exclude inactive purchase orders from search preview window" msgstr "" -#: common/setting/user.py:119 +#: common/setting/user.py:125 msgid "Search Sales Orders" msgstr "" -#: common/setting/user.py:120 +#: common/setting/user.py:126 msgid "Display sales orders in search preview window" msgstr "" -#: common/setting/user.py:125 +#: common/setting/user.py:131 msgid "Exclude Inactive Sales Orders" msgstr "" -#: common/setting/user.py:126 +#: common/setting/user.py:132 msgid "Exclude inactive sales orders from search preview window" msgstr "" -#: common/setting/user.py:131 +#: common/setting/user.py:137 msgid "Search Sales Order Shipments" msgstr "" -#: common/setting/user.py:132 +#: common/setting/user.py:138 msgid "Display sales order shipments in search preview window" msgstr "" -#: common/setting/user.py:137 +#: common/setting/user.py:143 msgid "Search Return Orders" msgstr "" -#: common/setting/user.py:138 +#: common/setting/user.py:144 msgid "Display return orders in search preview window" msgstr "" -#: common/setting/user.py:143 +#: common/setting/user.py:149 msgid "Exclude Inactive Return Orders" msgstr "" -#: common/setting/user.py:144 +#: common/setting/user.py:150 msgid "Exclude inactive return orders from search preview window" msgstr "" -#: common/setting/user.py:149 +#: common/setting/user.py:155 msgid "Search Preview Results" msgstr "" -#: common/setting/user.py:151 +#: common/setting/user.py:157 msgid "Number of results to show in each section of the search preview window" msgstr "" -#: common/setting/user.py:157 +#: common/setting/user.py:163 msgid "Regex Search" msgstr "" -#: common/setting/user.py:158 +#: common/setting/user.py:164 msgid "Enable regular expressions in search queries" msgstr "" -#: common/setting/user.py:163 +#: common/setting/user.py:169 msgid "Whole Word Search" msgstr "" -#: common/setting/user.py:164 +#: common/setting/user.py:170 msgid "Search queries return results for whole word matches" msgstr "" -#: common/setting/user.py:169 +#: common/setting/user.py:175 msgid "Search Notes" msgstr "" -#: common/setting/user.py:171 +#: common/setting/user.py:177 msgid "Search queries return results for matches from the item's notes" msgstr "" -#: common/setting/user.py:177 +#: common/setting/user.py:183 msgid "Escape Key Closes Forms" msgstr "" -#: common/setting/user.py:178 +#: common/setting/user.py:184 msgid "Use the escape key to close modal forms" msgstr "" -#: common/setting/user.py:183 +#: common/setting/user.py:189 msgid "Fixed Navbar" msgstr "" -#: common/setting/user.py:184 +#: common/setting/user.py:190 msgid "The navbar position is fixed to the top of the screen" msgstr "" -#: common/setting/user.py:189 +#: common/setting/user.py:195 msgid "Fixed Table Headers" msgstr "" -#: common/setting/user.py:190 +#: common/setting/user.py:196 msgid "Table headers are fixed to the top of the table" msgstr "" -#: common/setting/user.py:195 +#: common/setting/user.py:201 msgid "Show Spotlight" msgstr "" -#: common/setting/user.py:196 +#: common/setting/user.py:202 msgid "Enable spotlight navigation functionality" msgstr "" -#: common/setting/user.py:201 +#: common/setting/user.py:207 msgid "Navigation Icons" msgstr "" -#: common/setting/user.py:202 +#: common/setting/user.py:208 msgid "Display icons in the navigation bar" msgstr "" -#: common/setting/user.py:207 +#: common/setting/user.py:213 msgid "Date Format" msgstr "" -#: common/setting/user.py:208 +#: common/setting/user.py:214 msgid "Preferred format for displaying dates" msgstr "" -#: common/setting/user.py:221 +#: common/setting/user.py:227 msgid "Show Stock History" msgstr "" -#: common/setting/user.py:222 +#: common/setting/user.py:228 msgid "Display stock history information in the part detail page" msgstr "" -#: common/setting/user.py:227 +#: common/setting/user.py:233 msgid "Show Last Breadcrumb" msgstr "" -#: common/setting/user.py:228 +#: common/setting/user.py:234 msgid "Show the current page in breadcrumbs" msgstr "" -#: common/setting/user.py:233 +#: common/setting/user.py:239 msgid "Show full stock location in tables" msgstr "" -#: common/setting/user.py:235 +#: common/setting/user.py:241 msgid "Disabled: The full location path is displayed as a hover tooltip. Enabled: The full location path is displayed as plain text." msgstr "" -#: common/setting/user.py:241 +#: common/setting/user.py:247 msgid "Show full part categories in tables" msgstr "" -#: common/setting/user.py:243 +#: common/setting/user.py:249 msgid "Disabled: The full category path is displayed as a hover tooltip. Enabled: The full category path is displayed as plain text." msgstr "" -#: common/setting/user.py:249 +#: common/setting/user.py:255 msgid "Receive error reports" msgstr "" -#: common/setting/user.py:250 +#: common/setting/user.py:256 msgid "Receive notifications for system errors" msgstr "" -#: common/setting/user.py:255 +#: common/setting/user.py:261 msgid "Last used printing machines" msgstr "" -#: common/setting/user.py:256 +#: common/setting/user.py:262 msgid "Save the last used printing machines for a user" msgstr "" -#: common/validators.py:34 +#: common/validators.py:38 +msgid "All models" +msgstr "" + +#: common/validators.py:63 msgid "No attachment model type provided" msgstr "" -#: common/validators.py:40 +#: common/validators.py:69 msgid "Invalid attachment model type" msgstr "" -#: common/validators.py:81 +#: common/validators.py:110 msgid "Minimum places cannot be greater than maximum places" msgstr "" -#: common/validators.py:93 +#: common/validators.py:122 msgid "Maximum places cannot be less than minimum places" msgstr "" -#: common/validators.py:104 +#: common/validators.py:133 msgid "An empty domain is not allowed." msgstr "" -#: common/validators.py:106 +#: common/validators.py:135 #, python-brace-format msgid "Invalid domain name: {domain}" msgstr "" -#: common/validators.py:122 +#: common/validators.py:151 msgid "Value must be uppercase" msgstr "" -#: common/validators.py:128 +#: common/validators.py:157 msgid "Value must be a valid variable identifier" msgstr "" -#: company/api.py:147 +#: company/api.py:141 msgid "Part is Active" msgstr "" -#: company/api.py:151 +#: company/api.py:145 msgid "Manufacturer is Active" msgstr "" -#: company/api.py:286 +#: company/api.py:246 msgid "Supplier Part is Active" msgstr "" -#: company/api.py:290 +#: company/api.py:250 msgid "Internal Part is Active" msgstr "" -#: company/api.py:295 +#: company/api.py:255 msgid "Supplier is Active" msgstr "" -#: company/api.py:307 company/models.py:520 company/serializers.py:457 -#: part/serializers.py:566 +#: company/api.py:267 company/models.py:522 company/serializers.py:502 +#: part/serializers.py:477 msgid "Manufacturer" msgstr "" -#: company/api.py:314 company/models.py:121 company/models.py:392 +#: company/api.py:274 company/models.py:122 company/models.py:393 #: stock/api.py:900 msgid "Company" msgstr "" -#: company/api.py:324 +#: company/api.py:284 msgid "Has Stock" msgstr "" -#: company/models.py:122 +#: company/models.py:123 msgid "Companies" msgstr "" -#: company/models.py:150 +#: company/models.py:151 msgid "Company description" msgstr "" -#: company/models.py:151 +#: company/models.py:152 msgid "Description of the company" msgstr "" -#: company/models.py:157 +#: company/models.py:158 msgid "Website" msgstr "" -#: company/models.py:158 +#: company/models.py:159 msgid "Company website URL" msgstr "" -#: company/models.py:164 +#: company/models.py:165 msgid "Phone number" msgstr "" -#: company/models.py:166 +#: company/models.py:167 msgid "Contact phone number" msgstr "" -#: company/models.py:173 +#: company/models.py:174 msgid "Contact email address" msgstr "" -#: company/models.py:178 company/models.py:296 order/models.py:513 +#: company/models.py:179 company/models.py:297 order/models.py:514 #: users/models.py:561 msgid "Contact" msgstr "" -#: company/models.py:180 +#: company/models.py:181 msgid "Point of contact" msgstr "" -#: company/models.py:186 +#: company/models.py:187 msgid "Link to external company information" msgstr "" -#: company/models.py:191 +#: company/models.py:192 msgid "Is this company active?" msgstr "" -#: company/models.py:196 +#: company/models.py:197 msgid "Is customer" msgstr "" -#: company/models.py:197 +#: company/models.py:198 msgid "Do you sell items to this company?" msgstr "" -#: company/models.py:202 +#: company/models.py:203 msgid "Is supplier" msgstr "" -#: company/models.py:203 +#: company/models.py:204 msgid "Do you purchase items from this company?" msgstr "" -#: company/models.py:208 +#: company/models.py:209 msgid "Is manufacturer" msgstr "" -#: company/models.py:209 +#: company/models.py:210 msgid "Does this company manufacture parts?" msgstr "" -#: company/models.py:217 +#: company/models.py:218 msgid "Default currency used for this company" msgstr "" -#: company/models.py:224 +#: company/models.py:225 msgid "Tax ID" msgstr "" -#: company/models.py:225 +#: company/models.py:226 msgid "Company Tax ID" msgstr "" -#: company/models.py:335 order/models.py:523 order/models.py:2288 +#: company/models.py:336 order/models.py:524 order/models.py:2289 msgid "Address" msgstr "" -#: company/models.py:336 +#: company/models.py:337 msgid "Addresses" msgstr "" -#: company/models.py:393 +#: company/models.py:394 msgid "Select company" msgstr "" -#: company/models.py:398 +#: company/models.py:399 msgid "Address title" msgstr "" -#: company/models.py:399 +#: company/models.py:400 msgid "Title describing the address entry" msgstr "" -#: company/models.py:405 +#: company/models.py:406 msgid "Primary address" msgstr "" -#: company/models.py:406 +#: company/models.py:407 msgid "Set as primary address" msgstr "" -#: company/models.py:411 +#: company/models.py:412 msgid "Line 1" msgstr "" -#: company/models.py:412 +#: company/models.py:413 msgid "Address line 1" msgstr "" -#: company/models.py:418 +#: company/models.py:419 msgid "Line 2" msgstr "" -#: company/models.py:419 +#: company/models.py:420 msgid "Address line 2" msgstr "" -#: company/models.py:425 company/models.py:426 +#: company/models.py:426 company/models.py:427 msgid "Postal code" msgstr "" -#: company/models.py:432 +#: company/models.py:433 msgid "City/Region" msgstr "" -#: company/models.py:433 +#: company/models.py:434 msgid "Postal code city/region" msgstr "" -#: company/models.py:439 +#: company/models.py:440 msgid "State/Province" msgstr "" -#: company/models.py:440 +#: company/models.py:441 msgid "State or province" msgstr "" -#: company/models.py:446 +#: company/models.py:447 msgid "Country" msgstr "" -#: company/models.py:447 +#: company/models.py:448 msgid "Address country" msgstr "" -#: company/models.py:453 +#: company/models.py:454 msgid "Courier shipping notes" msgstr "" -#: company/models.py:454 +#: company/models.py:455 msgid "Notes for shipping courier" msgstr "" -#: company/models.py:460 +#: company/models.py:461 msgid "Internal shipping notes" msgstr "" -#: company/models.py:461 +#: company/models.py:462 msgid "Shipping notes for internal use" msgstr "" -#: company/models.py:468 +#: company/models.py:469 msgid "Link to address information (external)" msgstr "" -#: company/models.py:492 company/models.py:609 company/models.py:832 -#: company/serializers.py:471 stock/api.py:561 +#: company/models.py:494 company/models.py:786 company/serializers.py:516 +#: stock/api.py:561 msgid "Manufacturer Part" msgstr "" -#: company/models.py:509 company/models.py:800 stock/models.py:1025 +#: company/models.py:511 company/models.py:754 stock/models.py:1025 #: stock/serializers.py:407 msgid "Base Part" msgstr "" -#: company/models.py:511 company/models.py:802 +#: company/models.py:513 company/models.py:756 msgid "Select part" msgstr "" -#: company/models.py:521 +#: company/models.py:523 msgid "Select manufacturer" msgstr "" -#: company/models.py:527 company/serializers.py:479 order/serializers.py:734 -#: part/serializers.py:576 +#: company/models.py:529 company/serializers.py:524 order/serializers.py:745 +#: part/serializers.py:487 msgid "MPN" msgstr "" -#: company/models.py:528 stock/serializers.py:572 +#: company/models.py:530 stock/serializers.py:572 msgid "Manufacturer Part Number" msgstr "" -#: company/models.py:535 +#: company/models.py:537 msgid "URL for external manufacturer part link" msgstr "" -#: company/models.py:544 +#: company/models.py:546 msgid "Manufacturer part description" msgstr "" -#: company/models.py:597 -msgid "Manufacturer Part Parameter" -msgstr "" - -#: company/models.py:616 -msgid "Parameter name" -msgstr "" - -#: company/models.py:623 -msgid "Parameter value" -msgstr "" - -#: company/models.py:630 part/models.py:1195 part/models.py:3857 -msgid "Units" -msgstr "" - -#: company/models.py:631 -msgid "Parameter units" -msgstr "" - -#: company/models.py:740 +#: company/models.py:694 msgid "Pack units must be compatible with the base part units" msgstr "" -#: company/models.py:747 +#: company/models.py:701 msgid "Pack units must be greater than zero" msgstr "" -#: company/models.py:761 +#: company/models.py:715 msgid "Linked manufacturer part must reference the same base part" msgstr "" -#: company/models.py:810 company/serializers.py:449 company/serializers.py:467 -#: order/models.py:639 part/serializers.py:550 +#: company/models.py:764 company/serializers.py:494 company/serializers.py:512 +#: order/models.py:640 part/serializers.py:461 #: plugin/builtin/suppliers/digikey.py:26 plugin/builtin/suppliers/lcsc.py:27 #: plugin/builtin/suppliers/mouser.py:25 plugin/builtin/suppliers/tme.py:27 #: stock/api.py:567 templates/email/overdue_purchase_order.html:16 msgid "Supplier" msgstr "" -#: company/models.py:811 +#: company/models.py:765 msgid "Select supplier" msgstr "" -#: company/models.py:817 part/serializers.py:561 +#: company/models.py:771 part/serializers.py:472 msgid "Supplier stock keeping unit" msgstr "" -#: company/models.py:823 +#: company/models.py:777 msgid "Is this supplier part active?" msgstr "" -#: company/models.py:833 +#: company/models.py:787 msgid "Select manufacturer part" msgstr "" -#: company/models.py:840 +#: company/models.py:794 msgid "URL for external supplier part link" msgstr "" -#: company/models.py:849 +#: company/models.py:803 msgid "Supplier part description" msgstr "" -#: company/models.py:856 order/serializers.py:883 order/serializers.py:2047 -#: part/models.py:4070 part/models.py:4450 part/models.py:4819 -#: report/templates/report/inventree_bill_of_materials_report.html:140 -#: report/templates/report/inventree_purchase_order_report.html:39 -#: report/templates/report/inventree_return_order_report.html:27 -#: report/templates/report/inventree_sales_order_report.html:32 -#: report/templates/report/inventree_stock_location_report.html:105 -#: stock/serializers.py:813 -msgid "Note" -msgstr "" - -#: company/models.py:865 part/models.py:2250 +#: company/models.py:819 part/models.py:2338 msgid "base cost" msgstr "" -#: company/models.py:866 part/models.py:2251 +#: company/models.py:820 part/models.py:2339 msgid "Minimum charge (e.g. stocking fee)" msgstr "" -#: company/models.py:873 order/serializers.py:875 stock/models.py:1056 +#: company/models.py:827 order/serializers.py:886 stock/models.py:1056 #: stock/serializers.py:1606 msgid "Packaging" msgstr "" -#: company/models.py:874 +#: company/models.py:828 msgid "Part packaging" msgstr "" -#: company/models.py:879 +#: company/models.py:833 msgid "Pack Quantity" msgstr "" -#: company/models.py:881 +#: company/models.py:835 msgid "Total quantity supplied in a single pack. Leave empty for single items." msgstr "" -#: company/models.py:900 part/models.py:2257 +#: company/models.py:854 part/models.py:2345 msgid "multiple" msgstr "" -#: company/models.py:901 +#: company/models.py:855 msgid "Order multiple" msgstr "" -#: company/models.py:913 +#: company/models.py:867 msgid "Quantity available from supplier" msgstr "" -#: company/models.py:919 +#: company/models.py:873 msgid "Availability Updated" msgstr "" -#: company/models.py:920 +#: company/models.py:874 msgid "Date of last update of availability data" msgstr "" -#: company/models.py:1048 +#: company/models.py:1002 msgid "Supplier Price Break" msgstr "" -#: company/serializers.py:181 +#: company/serializers.py:184 +msgid "Primary Address" +msgstr "" + +#: company/serializers.py:186 msgid "Return the string representation for the primary address. This property exists for backwards compatibility." msgstr "" -#: company/serializers.py:212 +#: company/serializers.py:218 msgid "Default currency used for this supplier" msgstr "" -#: company/serializers.py:248 +#: company/serializers.py:260 msgid "Company Name" msgstr "" -#: company/serializers.py:433 part/serializers.py:955 stock/serializers.py:428 +#: company/serializers.py:460 part/serializers.py:840 stock/serializers.py:428 msgid "In Stock" msgstr "" +#: company/serializers.py:477 +msgid "Price Breaks" +msgstr "" + #: data_exporter/mixins.py:325 data_exporter/mixins.py:403 msgid "Error occurred during data export" msgstr "" @@ -4290,7 +4418,7 @@ msgstr "" msgid "Errors" msgstr "" -#: importer/models.py:550 part/serializers.py:1268 +#: importer/models.py:550 part/serializers.py:1133 msgid "Valid" msgstr "" @@ -4402,7 +4530,7 @@ msgstr "" msgid "Connected" msgstr "" -#: machine/machine_types/label_printer.py:232 order/api.py:1795 +#: machine/machine_types/label_printer.py:232 order/api.py:1800 msgid "Unknown" msgstr "" @@ -4530,105 +4658,105 @@ msgstr "" msgid "Maximum value for progress type, required if type=progress" msgstr "" -#: order/api.py:125 +#: order/api.py:130 msgid "Order Reference" msgstr "" -#: order/api.py:153 order/api.py:1207 +#: order/api.py:158 order/api.py:1212 msgid "Outstanding" msgstr "" -#: order/api.py:169 +#: order/api.py:174 msgid "Has Project Code" msgstr "" -#: order/api.py:183 order/models.py:488 +#: order/api.py:188 order/models.py:489 msgid "Created By" msgstr "" -#: order/api.py:187 +#: order/api.py:192 msgid "Created Before" msgstr "" -#: order/api.py:191 +#: order/api.py:196 msgid "Created After" msgstr "" -#: order/api.py:195 +#: order/api.py:200 msgid "Has Start Date" msgstr "" -#: order/api.py:203 +#: order/api.py:208 msgid "Start Date Before" msgstr "" -#: order/api.py:207 +#: order/api.py:212 msgid "Start Date After" msgstr "" -#: order/api.py:211 +#: order/api.py:216 msgid "Has Target Date" msgstr "" -#: order/api.py:219 +#: order/api.py:224 msgid "Target Date Before" msgstr "" -#: order/api.py:223 +#: order/api.py:228 msgid "Target Date After" msgstr "" -#: order/api.py:274 +#: order/api.py:279 msgid "Has Pricing" msgstr "" -#: order/api.py:327 order/api.py:812 order/api.py:1490 +#: order/api.py:332 order/api.py:818 order/api.py:1495 msgid "Completed Before" msgstr "" -#: order/api.py:331 order/api.py:816 order/api.py:1494 +#: order/api.py:336 order/api.py:822 order/api.py:1499 msgid "Completed After" msgstr "" -#: order/api.py:337 order/api.py:341 +#: order/api.py:342 order/api.py:346 msgid "External Build Order" msgstr "" -#: order/api.py:526 order/api.py:914 order/api.py:1170 order/models.py:1922 -#: order/models.py:2049 order/models.py:2099 order/models.py:2279 -#: order/models.py:2477 order/models.py:2999 order/models.py:3065 +#: order/api.py:532 order/api.py:919 order/api.py:1175 order/models.py:1923 +#: order/models.py:2050 order/models.py:2100 order/models.py:2280 +#: order/models.py:2478 order/models.py:3000 order/models.py:3066 msgid "Order" msgstr "" -#: order/api.py:530 order/api.py:982 +#: order/api.py:536 order/api.py:987 msgid "Order Complete" msgstr "" -#: order/api.py:562 order/api.py:566 order/serializers.py:745 +#: order/api.py:568 order/api.py:572 order/serializers.py:756 msgid "Internal Part" msgstr "" -#: order/api.py:584 +#: order/api.py:590 msgid "Order Pending" msgstr "" -#: order/api.py:967 +#: order/api.py:972 msgid "Completed" msgstr "" -#: order/api.py:1223 +#: order/api.py:1228 msgid "Has Shipment" msgstr "" -#: order/api.py:1789 order/models.py:552 order/models.py:1923 -#: order/models.py:2050 +#: order/api.py:1794 order/models.py:553 order/models.py:1924 +#: order/models.py:2051 #: report/templates/report/inventree_purchase_order_report.html:14 #: stock/serializers.py:129 templates/email/overdue_purchase_order.html:15 msgid "Purchase Order" msgstr "" -#: order/api.py:1791 order/models.py:1251 order/models.py:2100 -#: order/models.py:2280 order/models.py:2478 +#: order/api.py:1796 order/models.py:1252 order/models.py:2101 +#: order/models.py:2281 order/models.py:2479 #: report/templates/report/inventree_build_order_report.html:135 #: report/templates/report/inventree_sales_order_report.html:14 #: report/templates/report/inventree_sales_order_shipment_report.html:15 @@ -4636,8 +4764,8 @@ msgstr "" msgid "Sales Order" msgstr "" -#: order/api.py:1793 order/models.py:2649 order/models.py:3000 -#: order/models.py:3066 +#: order/api.py:1798 order/models.py:2650 order/models.py:3001 +#: order/models.py:3067 #: report/templates/report/inventree_return_order_report.html:13 #: templates/email/overdue_return_order.html:15 msgid "Return Order" @@ -4653,722 +4781,722 @@ msgstr "" msgid "Total price for this order" msgstr "" -#: order/models.py:96 order/serializers.py:77 +#: order/models.py:96 order/serializers.py:78 msgid "Order Currency" msgstr "" -#: order/models.py:99 order/serializers.py:78 +#: order/models.py:99 order/serializers.py:79 msgid "Currency for this order (leave blank to use company default)" msgstr "" -#: order/models.py:324 +#: order/models.py:325 msgid "This order is locked and cannot be modified" msgstr "" -#: order/models.py:376 +#: order/models.py:377 msgid "Contact does not match selected company" msgstr "" -#: order/models.py:383 +#: order/models.py:384 msgid "Start date must be before target date" msgstr "" -#: order/models.py:390 +#: order/models.py:391 msgid "Address does not match selected company" msgstr "" -#: order/models.py:443 +#: order/models.py:444 msgid "Order description (optional)" msgstr "" -#: order/models.py:452 order/models.py:1806 +#: order/models.py:453 order/models.py:1807 msgid "Select project code for this order" msgstr "" -#: order/models.py:458 order/models.py:1787 order/models.py:2344 +#: order/models.py:459 order/models.py:1788 order/models.py:2345 msgid "Link to external page" msgstr "" -#: order/models.py:465 +#: order/models.py:466 msgid "Start date" msgstr "" -#: order/models.py:466 +#: order/models.py:467 msgid "Scheduled start date for this order" msgstr "" -#: order/models.py:472 order/models.py:1794 order/serializers.py:309 +#: order/models.py:473 order/models.py:1795 order/serializers.py:317 #: report/templates/report/inventree_build_order_report.html:125 msgid "Target Date" msgstr "" -#: order/models.py:474 +#: order/models.py:475 msgid "Expected date for order delivery. Order will be overdue after this date." msgstr "" -#: order/models.py:494 +#: order/models.py:495 msgid "Issue Date" msgstr "" -#: order/models.py:495 +#: order/models.py:496 msgid "Date order was issued" msgstr "" -#: order/models.py:503 +#: order/models.py:504 msgid "User or group responsible for this order" msgstr "" -#: order/models.py:514 +#: order/models.py:515 msgid "Point of contact for this order" msgstr "" -#: order/models.py:524 +#: order/models.py:525 msgid "Company address for this order" msgstr "" -#: order/models.py:615 order/models.py:1312 +#: order/models.py:616 order/models.py:1313 msgid "Order reference" msgstr "" -#: order/models.py:624 order/models.py:1336 order/models.py:2737 +#: order/models.py:625 order/models.py:1337 order/models.py:2738 #: stock/serializers.py:559 stock/serializers.py:988 users/models.py:542 msgid "Status" msgstr "" -#: order/models.py:625 +#: order/models.py:626 msgid "Purchase order status" msgstr "" -#: order/models.py:640 +#: order/models.py:641 msgid "Company from which the items are being ordered" msgstr "" -#: order/models.py:651 +#: order/models.py:652 msgid "Supplier Reference" msgstr "" -#: order/models.py:652 +#: order/models.py:653 msgid "Supplier order reference code" msgstr "" -#: order/models.py:661 +#: order/models.py:662 msgid "received by" msgstr "" -#: order/models.py:668 order/models.py:2752 +#: order/models.py:669 order/models.py:2753 msgid "Date order was completed" msgstr "" -#: order/models.py:677 order/models.py:1981 +#: order/models.py:678 order/models.py:1982 msgid "Destination" msgstr "" -#: order/models.py:678 order/models.py:1985 +#: order/models.py:679 order/models.py:1986 msgid "Destination for received items" msgstr "" -#: order/models.py:724 +#: order/models.py:725 msgid "Part supplier must match PO supplier" msgstr "" -#: order/models.py:994 +#: order/models.py:995 msgid "Line item does not match purchase order" msgstr "" -#: order/models.py:997 +#: order/models.py:998 msgid "Line item is missing a linked part" msgstr "" -#: order/models.py:1011 +#: order/models.py:1012 msgid "Quantity must be a positive number" msgstr "" -#: order/models.py:1323 order/models.py:2724 stock/models.py:1078 +#: order/models.py:1324 order/models.py:2725 stock/models.py:1078 #: stock/models.py:1079 stock/serializers.py:1322 #: templates/email/overdue_return_order.html:16 #: templates/email/overdue_sales_order.html:16 msgid "Customer" msgstr "" -#: order/models.py:1324 +#: order/models.py:1325 msgid "Company to which the items are being sold" msgstr "" -#: order/models.py:1337 +#: order/models.py:1338 msgid "Sales order status" msgstr "" -#: order/models.py:1348 order/models.py:2744 +#: order/models.py:1349 order/models.py:2745 msgid "Customer Reference " msgstr "" -#: order/models.py:1349 order/models.py:2745 +#: order/models.py:1350 order/models.py:2746 msgid "Customer order reference code" msgstr "" -#: order/models.py:1353 order/models.py:2296 +#: order/models.py:1354 order/models.py:2297 msgid "Shipment Date" msgstr "" -#: order/models.py:1362 +#: order/models.py:1363 msgid "shipped by" msgstr "" -#: order/models.py:1413 +#: order/models.py:1414 msgid "Order is already complete" msgstr "" -#: order/models.py:1416 +#: order/models.py:1417 msgid "Order is already cancelled" msgstr "" -#: order/models.py:1420 +#: order/models.py:1421 msgid "Only an open order can be marked as complete" msgstr "" -#: order/models.py:1424 +#: order/models.py:1425 msgid "Order cannot be completed as there are incomplete shipments" msgstr "" -#: order/models.py:1429 +#: order/models.py:1430 msgid "Order cannot be completed as there are incomplete allocations" msgstr "" -#: order/models.py:1438 +#: order/models.py:1439 msgid "Order cannot be completed as there are incomplete line items" msgstr "" -#: order/models.py:1733 order/models.py:1749 +#: order/models.py:1734 order/models.py:1750 msgid "The order is locked and cannot be modified" msgstr "" -#: order/models.py:1757 +#: order/models.py:1758 msgid "Item quantity" msgstr "" -#: order/models.py:1774 +#: order/models.py:1775 msgid "Line item reference" msgstr "" -#: order/models.py:1781 +#: order/models.py:1782 msgid "Line item notes" msgstr "" -#: order/models.py:1796 +#: order/models.py:1797 msgid "Target date for this line item (leave blank to use the target date from the order)" msgstr "" -#: order/models.py:1826 +#: order/models.py:1827 msgid "Line item description (optional)" msgstr "" -#: order/models.py:1833 +#: order/models.py:1834 msgid "Additional context for this line" msgstr "" -#: order/models.py:1843 +#: order/models.py:1844 msgid "Unit price" msgstr "" -#: order/models.py:1862 +#: order/models.py:1863 msgid "Purchase Order Line Item" msgstr "" -#: order/models.py:1889 +#: order/models.py:1890 msgid "Supplier part must match supplier" msgstr "" -#: order/models.py:1894 +#: order/models.py:1895 msgid "Build order must be marked as external" msgstr "" -#: order/models.py:1901 +#: order/models.py:1902 msgid "Build orders can only be linked to assembly parts" msgstr "" -#: order/models.py:1907 +#: order/models.py:1908 msgid "Build order part must match line item part" msgstr "" -#: order/models.py:1942 +#: order/models.py:1943 msgid "Supplier part" msgstr "" -#: order/models.py:1949 +#: order/models.py:1950 msgid "Received" msgstr "" -#: order/models.py:1950 +#: order/models.py:1951 msgid "Number of items received" msgstr "" -#: order/models.py:1958 stock/models.py:1201 stock/serializers.py:637 +#: order/models.py:1959 stock/models.py:1201 stock/serializers.py:637 msgid "Purchase Price" msgstr "" -#: order/models.py:1959 +#: order/models.py:1960 msgid "Unit purchase price" msgstr "" -#: order/models.py:1975 +#: order/models.py:1976 msgid "External Build Order to be fulfilled by this line item" msgstr "" -#: order/models.py:2038 +#: order/models.py:2039 msgid "Purchase Order Extra Line" msgstr "" -#: order/models.py:2067 +#: order/models.py:2068 msgid "Sales Order Line Item" msgstr "" -#: order/models.py:2092 +#: order/models.py:2093 msgid "Only salable parts can be assigned to a sales order" msgstr "" -#: order/models.py:2118 +#: order/models.py:2119 msgid "Sale Price" msgstr "" -#: order/models.py:2119 +#: order/models.py:2120 msgid "Unit sale price" msgstr "" -#: order/models.py:2128 order/status_codes.py:50 +#: order/models.py:2129 order/status_codes.py:50 msgid "Shipped" msgstr "Изпратено" -#: order/models.py:2129 +#: order/models.py:2130 msgid "Shipped quantity" msgstr "" -#: order/models.py:2240 +#: order/models.py:2241 msgid "Sales Order Shipment" msgstr "" -#: order/models.py:2253 +#: order/models.py:2254 msgid "Shipment address must match the customer" msgstr "" -#: order/models.py:2289 +#: order/models.py:2290 msgid "Shipping address for this shipment" msgstr "" -#: order/models.py:2297 +#: order/models.py:2298 msgid "Date of shipment" msgstr "" -#: order/models.py:2303 +#: order/models.py:2304 msgid "Delivery Date" msgstr "" -#: order/models.py:2304 +#: order/models.py:2305 msgid "Date of delivery of shipment" msgstr "" -#: order/models.py:2312 +#: order/models.py:2313 msgid "Checked By" msgstr "" -#: order/models.py:2313 +#: order/models.py:2314 msgid "User who checked this shipment" msgstr "" -#: order/models.py:2320 order/models.py:2574 order/serializers.py:1711 -#: order/serializers.py:1835 +#: order/models.py:2321 order/models.py:2575 order/serializers.py:1725 +#: order/serializers.py:1849 #: report/templates/report/inventree_sales_order_shipment_report.html:14 msgid "Shipment" msgstr "" -#: order/models.py:2321 +#: order/models.py:2322 msgid "Shipment number" msgstr "" -#: order/models.py:2329 +#: order/models.py:2330 msgid "Tracking Number" msgstr "" -#: order/models.py:2330 +#: order/models.py:2331 msgid "Shipment tracking information" msgstr "" -#: order/models.py:2337 +#: order/models.py:2338 msgid "Invoice Number" msgstr "" -#: order/models.py:2338 +#: order/models.py:2339 msgid "Reference number for associated invoice" msgstr "" -#: order/models.py:2377 +#: order/models.py:2378 msgid "Shipment has already been sent" msgstr "" -#: order/models.py:2380 +#: order/models.py:2381 msgid "Shipment has no allocated stock items" msgstr "" -#: order/models.py:2387 +#: order/models.py:2388 msgid "Shipment must be checked before it can be completed" msgstr "" -#: order/models.py:2466 +#: order/models.py:2467 msgid "Sales Order Extra Line" msgstr "" -#: order/models.py:2495 +#: order/models.py:2496 msgid "Sales Order Allocation" msgstr "" -#: order/models.py:2518 order/models.py:2520 +#: order/models.py:2519 order/models.py:2521 msgid "Stock item has not been assigned" msgstr "" -#: order/models.py:2527 +#: order/models.py:2528 msgid "Cannot allocate stock item to a line with a different part" msgstr "" -#: order/models.py:2530 +#: order/models.py:2531 msgid "Cannot allocate stock to a line without a part" msgstr "" -#: order/models.py:2533 +#: order/models.py:2534 msgid "Allocation quantity cannot exceed stock quantity" msgstr "" -#: order/models.py:2552 order/serializers.py:1581 +#: order/models.py:2553 order/serializers.py:1595 msgid "Quantity must be 1 for serialized stock item" msgstr "" -#: order/models.py:2555 +#: order/models.py:2556 msgid "Sales order does not match shipment" msgstr "" -#: order/models.py:2556 plugin/base/barcodes/api.py:642 +#: order/models.py:2557 plugin/base/barcodes/api.py:642 msgid "Shipment does not match sales order" msgstr "" -#: order/models.py:2564 +#: order/models.py:2565 msgid "Line" msgstr "" -#: order/models.py:2575 +#: order/models.py:2576 msgid "Sales order shipment reference" msgstr "" -#: order/models.py:2588 order/models.py:3007 +#: order/models.py:2589 order/models.py:3008 msgid "Item" msgstr "" -#: order/models.py:2589 +#: order/models.py:2590 msgid "Select stock item to allocate" msgstr "" -#: order/models.py:2598 +#: order/models.py:2599 msgid "Enter stock allocation quantity" msgstr "" -#: order/models.py:2713 +#: order/models.py:2714 msgid "Return Order reference" msgstr "" -#: order/models.py:2725 +#: order/models.py:2726 msgid "Company from which items are being returned" msgstr "" -#: order/models.py:2738 +#: order/models.py:2739 msgid "Return order status" msgstr "" -#: order/models.py:2965 +#: order/models.py:2966 msgid "Return Order Line Item" msgstr "" -#: order/models.py:2978 +#: order/models.py:2979 msgid "Stock item must be specified" msgstr "" -#: order/models.py:2982 +#: order/models.py:2983 msgid "Return quantity exceeds stock quantity" msgstr "" -#: order/models.py:2987 +#: order/models.py:2988 msgid "Return quantity must be greater than zero" msgstr "" -#: order/models.py:2992 +#: order/models.py:2993 msgid "Invalid quantity for serialized stock item" msgstr "" -#: order/models.py:3008 +#: order/models.py:3009 msgid "Select item to return from customer" msgstr "" -#: order/models.py:3023 +#: order/models.py:3024 msgid "Received Date" msgstr "" -#: order/models.py:3024 +#: order/models.py:3025 msgid "The date this this return item was received" msgstr "" -#: order/models.py:3036 +#: order/models.py:3037 msgid "Outcome" msgstr "" -#: order/models.py:3037 +#: order/models.py:3038 msgid "Outcome for this line item" msgstr "" -#: order/models.py:3044 +#: order/models.py:3045 msgid "Cost associated with return or repair for this line item" msgstr "" -#: order/models.py:3054 +#: order/models.py:3055 msgid "Return Order Extra Line" msgstr "" -#: order/serializers.py:91 +#: order/serializers.py:92 msgid "Order ID" msgstr "" -#: order/serializers.py:91 +#: order/serializers.py:92 msgid "ID of the order to duplicate" msgstr "" -#: order/serializers.py:97 +#: order/serializers.py:98 msgid "Copy Lines" msgstr "" -#: order/serializers.py:98 +#: order/serializers.py:99 msgid "Copy line items from the original order" msgstr "" -#: order/serializers.py:104 +#: order/serializers.py:105 msgid "Copy Extra Lines" msgstr "" -#: order/serializers.py:105 +#: order/serializers.py:106 msgid "Copy extra line items from the original order" msgstr "" -#: order/serializers.py:120 +#: order/serializers.py:121 #: report/templates/report/inventree_purchase_order_report.html:29 #: report/templates/report/inventree_return_order_report.html:19 #: report/templates/report/inventree_sales_order_report.html:22 msgid "Line Items" msgstr "" -#: order/serializers.py:125 +#: order/serializers.py:126 msgid "Completed Lines" msgstr "" -#: order/serializers.py:192 +#: order/serializers.py:199 msgid "Duplicate Order" msgstr "" -#: order/serializers.py:193 +#: order/serializers.py:200 msgid "Specify options for duplicating this order" msgstr "" -#: order/serializers.py:270 +#: order/serializers.py:278 msgid "Invalid order ID" msgstr "" -#: order/serializers.py:466 +#: order/serializers.py:477 msgid "Supplier Name" msgstr "" -#: order/serializers.py:510 +#: order/serializers.py:521 msgid "Order cannot be cancelled" msgstr "" -#: order/serializers.py:525 order/serializers.py:1602 +#: order/serializers.py:536 order/serializers.py:1616 msgid "Allow order to be closed with incomplete line items" msgstr "" -#: order/serializers.py:535 order/serializers.py:1612 +#: order/serializers.py:546 order/serializers.py:1626 msgid "Order has incomplete line items" msgstr "" -#: order/serializers.py:665 +#: order/serializers.py:676 msgid "Order is not open" msgstr "" -#: order/serializers.py:692 +#: order/serializers.py:703 msgid "Auto Pricing" msgstr "" -#: order/serializers.py:694 +#: order/serializers.py:705 msgid "Automatically calculate purchase price based on supplier part data" msgstr "" -#: order/serializers.py:704 +#: order/serializers.py:715 msgid "Purchase price currency" msgstr "" -#: order/serializers.py:718 +#: order/serializers.py:729 msgid "Merge Items" msgstr "" -#: order/serializers.py:720 +#: order/serializers.py:731 msgid "Merge items with the same part, destination and target date into one line item" msgstr "" -#: order/serializers.py:727 part/serializers.py:560 +#: order/serializers.py:738 part/serializers.py:471 msgid "SKU" msgstr "" -#: order/serializers.py:741 part/models.py:1089 part/serializers.py:372 +#: order/serializers.py:752 part/models.py:1177 part/serializers.py:337 msgid "Internal Part Number" msgstr "" -#: order/serializers.py:749 +#: order/serializers.py:760 msgid "Internal Part Name" msgstr "" -#: order/serializers.py:765 +#: order/serializers.py:776 msgid "Supplier part must be specified" msgstr "" -#: order/serializers.py:768 +#: order/serializers.py:779 msgid "Purchase order must be specified" msgstr "" -#: order/serializers.py:776 +#: order/serializers.py:787 msgid "Supplier must match purchase order" msgstr "" -#: order/serializers.py:777 +#: order/serializers.py:788 msgid "Purchase order must match supplier" msgstr "" -#: order/serializers.py:825 order/serializers.py:1682 +#: order/serializers.py:836 order/serializers.py:1696 msgid "Line Item" msgstr "" -#: order/serializers.py:834 order/serializers.py:974 order/serializers.py:2043 +#: order/serializers.py:845 order/serializers.py:985 order/serializers.py:2060 msgid "Select destination location for received items" msgstr "" -#: order/serializers.py:850 +#: order/serializers.py:861 msgid "Enter batch code for incoming stock items" msgstr "" -#: order/serializers.py:857 stock/models.py:1160 +#: order/serializers.py:868 stock/models.py:1160 #: templates/email/stale_stock_notification.html:22 users/models.py:137 msgid "Expiry Date" msgstr "" -#: order/serializers.py:858 +#: order/serializers.py:869 msgid "Enter expiry date for incoming stock items" msgstr "" -#: order/serializers.py:866 +#: order/serializers.py:877 msgid "Enter serial numbers for incoming stock items" msgstr "" -#: order/serializers.py:876 +#: order/serializers.py:887 msgid "Override packaging information for incoming stock items" msgstr "" -#: order/serializers.py:884 order/serializers.py:2048 +#: order/serializers.py:895 order/serializers.py:2065 msgid "Additional note for incoming stock items" msgstr "" -#: order/serializers.py:891 +#: order/serializers.py:902 msgid "Barcode" msgstr "" -#: order/serializers.py:892 +#: order/serializers.py:903 msgid "Scanned barcode" msgstr "" -#: order/serializers.py:908 +#: order/serializers.py:919 msgid "Barcode is already in use" msgstr "" -#: order/serializers.py:991 order/serializers.py:2067 +#: order/serializers.py:1002 order/serializers.py:2084 msgid "Line items must be provided" msgstr "" -#: order/serializers.py:1010 +#: order/serializers.py:1021 msgid "Destination location must be specified" msgstr "" -#: order/serializers.py:1017 +#: order/serializers.py:1028 msgid "Supplied barcode values must be unique" msgstr "" -#: order/serializers.py:1121 +#: order/serializers.py:1135 msgid "Shipments" msgstr "" -#: order/serializers.py:1125 +#: order/serializers.py:1139 msgid "Completed Shipments" msgstr "" -#: order/serializers.py:1293 +#: order/serializers.py:1307 msgid "Sale price currency" msgstr "" -#: order/serializers.py:1339 +#: order/serializers.py:1353 msgid "Allocated Items" msgstr "" -#: order/serializers.py:1484 +#: order/serializers.py:1498 msgid "No shipment details provided" msgstr "" -#: order/serializers.py:1545 order/serializers.py:1691 +#: order/serializers.py:1559 order/serializers.py:1705 msgid "Line item is not associated with this order" msgstr "" -#: order/serializers.py:1564 +#: order/serializers.py:1578 msgid "Quantity must be positive" msgstr "" -#: order/serializers.py:1701 +#: order/serializers.py:1715 msgid "Enter serial numbers to allocate" msgstr "" -#: order/serializers.py:1723 order/serializers.py:1843 +#: order/serializers.py:1737 order/serializers.py:1857 msgid "Shipment has already been shipped" msgstr "" -#: order/serializers.py:1726 order/serializers.py:1846 +#: order/serializers.py:1740 order/serializers.py:1860 msgid "Shipment is not associated with this order" msgstr "" -#: order/serializers.py:1781 +#: order/serializers.py:1795 msgid "No match found for the following serial numbers" msgstr "" -#: order/serializers.py:1788 +#: order/serializers.py:1802 msgid "The following serial numbers are unavailable" msgstr "" -#: order/serializers.py:2009 +#: order/serializers.py:2026 msgid "Return order line item" msgstr "" -#: order/serializers.py:2019 +#: order/serializers.py:2036 msgid "Line item does not match return order" msgstr "" -#: order/serializers.py:2022 +#: order/serializers.py:2039 msgid "Line item has already been received" msgstr "" -#: order/serializers.py:2059 +#: order/serializers.py:2076 msgid "Items can only be received against orders which are in progress" msgstr "" -#: order/serializers.py:2124 +#: order/serializers.py:2141 msgid "Quantity to return" msgstr "" -#: order/serializers.py:2140 +#: order/serializers.py:2157 msgid "Line price currency" msgstr "" @@ -5431,1190 +5559,1109 @@ msgstr "" msgid "Return order {ro} is now overdue" msgstr "" -#: part/api.py:108 +#: part/api.py:103 msgid "Starred" msgstr "" -#: part/api.py:110 +#: part/api.py:105 msgid "Filter by starred categories" msgstr "" -#: part/api.py:127 stock/api.py:288 +#: part/api.py:122 stock/api.py:288 msgid "Depth" msgstr "" -#: part/api.py:127 +#: part/api.py:122 msgid "Filter by category depth" msgstr "" -#: part/api.py:145 stock/api.py:306 +#: part/api.py:140 stock/api.py:306 msgid "Top Level" msgstr "" -#: part/api.py:147 +#: part/api.py:142 msgid "Filter by top-level categories" msgstr "" -#: part/api.py:160 stock/api.py:321 +#: part/api.py:155 stock/api.py:321 msgid "Cascade" msgstr "" -#: part/api.py:162 +#: part/api.py:157 msgid "Include sub-categories in filtered results" msgstr "" -#: part/api.py:182 +#: part/api.py:177 msgid "Parent" msgstr "" -#: part/api.py:184 +#: part/api.py:179 msgid "Filter by parent category" msgstr "" -#: part/api.py:219 +#: part/api.py:214 msgid "Exclude sub-categories under the specified category" msgstr "" -#: part/api.py:445 +#: part/api.py:440 msgid "Has Results" msgstr "" -#: part/api.py:666 +#: part/api.py:661 msgid "Is Variant" msgstr "" -#: part/api.py:674 +#: part/api.py:669 msgid "Is Revision" msgstr "" -#: part/api.py:684 +#: part/api.py:679 msgid "Has Revisions" msgstr "" -#: part/api.py:865 +#: part/api.py:860 msgid "BOM Valid" msgstr "" -#: part/api.py:974 +#: part/api.py:969 msgid "Cascade Categories" msgstr "" -#: part/api.py:975 +#: part/api.py:970 msgid "If true, include items in child categories of the given category" msgstr "" -#: part/api.py:981 +#: part/api.py:976 msgid "Filter by numeric category ID or the literal 'null'" msgstr "" -#: part/api.py:1533 +#: part/api.py:1258 msgid "Assembly part is testable" msgstr "" -#: part/api.py:1542 +#: part/api.py:1267 msgid "Component part is testable" msgstr "" -#: part/api.py:1611 +#: part/api.py:1336 msgid "Uses" msgstr "" -#: part/models.py:96 part/models.py:4163 +#: part/models.py:93 part/models.py:436 #: templates/email/part_event_notification.html:16 msgid "Part Category" msgstr "" -#: part/models.py:97 users/ruleset.py:27 +#: part/models.py:94 users/ruleset.py:27 msgid "Part Categories" msgstr "" -#: part/models.py:115 part/models.py:1125 +#: part/models.py:112 part/models.py:1213 msgid "Default Location" msgstr "" -#: part/models.py:116 +#: part/models.py:113 msgid "Default location for parts in this category" msgstr "" -#: part/models.py:121 stock/models.py:216 +#: part/models.py:118 stock/models.py:216 msgid "Structural" msgstr "" -#: part/models.py:123 +#: part/models.py:120 msgid "Parts may not be directly assigned to a structural category, but may be assigned to child categories." msgstr "" -#: part/models.py:132 +#: part/models.py:129 msgid "Default keywords" msgstr "" -#: part/models.py:133 +#: part/models.py:130 msgid "Default keywords for parts in this category" msgstr "" -#: part/models.py:140 stock/models.py:97 stock/models.py:198 +#: part/models.py:137 stock/models.py:97 stock/models.py:198 msgid "Icon" msgstr "" -#: part/models.py:141 part/serializers.py:148 part/serializers.py:167 +#: part/models.py:138 part/serializers.py:147 part/serializers.py:166 #: stock/models.py:199 msgid "Icon (optional)" msgstr "" -#: part/models.py:185 +#: part/models.py:182 msgid "You cannot make this part category structural because some parts are already assigned to it!" msgstr "" -#: part/models.py:473 part/serializers.py:119 part/serializers.py:310 -#: users/ruleset.py:28 +#: part/models.py:392 +msgid "Part Category Parameter Template" +msgstr "" + +#: part/models.py:448 +msgid "Default Value" +msgstr "" + +#: part/models.py:449 +msgid "Default Parameter Value" +msgstr "" + +#: part/models.py:551 part/serializers.py:118 users/ruleset.py:28 msgid "Parts" msgstr "" -#: part/models.py:525 +#: part/models.py:597 +msgid "Cannot delete parameters of a locked part" +msgstr "" + +#: part/models.py:602 +msgid "Cannot modify parameters of a locked part" +msgstr "" + +#: part/models.py:613 msgid "Cannot delete this part as it is locked" msgstr "" -#: part/models.py:528 +#: part/models.py:616 msgid "Cannot delete this part as it is still active" msgstr "" -#: part/models.py:533 +#: part/models.py:621 msgid "Cannot delete this part as it is used in an assembly" msgstr "" -#: part/models.py:616 part/models.py:623 +#: part/models.py:704 part/models.py:711 #, python-brace-format msgid "Part '{self}' cannot be used in BOM for '{parent}' (recursive)" msgstr "" -#: part/models.py:635 +#: part/models.py:723 #, python-brace-format msgid "Part '{parent}' is used in BOM for '{self}' (recursive)" msgstr "" -#: part/models.py:702 +#: part/models.py:790 #, python-brace-format msgid "IPN must match regex pattern {pattern}" msgstr "" -#: part/models.py:710 +#: part/models.py:798 msgid "Part cannot be a revision of itself" msgstr "" -#: part/models.py:717 +#: part/models.py:805 msgid "Cannot make a revision of a part which is already a revision" msgstr "" -#: part/models.py:724 +#: part/models.py:812 msgid "Revision code must be specified" msgstr "" -#: part/models.py:731 +#: part/models.py:819 msgid "Revisions are only allowed for assembly parts" msgstr "" -#: part/models.py:738 +#: part/models.py:826 msgid "Cannot make a revision of a template part" msgstr "" -#: part/models.py:744 +#: part/models.py:832 msgid "Parent part must point to the same template" msgstr "" -#: part/models.py:841 +#: part/models.py:929 msgid "Stock item with this serial number already exists" msgstr "" -#: part/models.py:971 +#: part/models.py:1059 msgid "Duplicate IPN not allowed in part settings" msgstr "" -#: part/models.py:983 +#: part/models.py:1071 msgid "Duplicate part revision already exists." msgstr "" -#: part/models.py:992 +#: part/models.py:1080 msgid "Part with this Name, IPN and Revision already exists." msgstr "" -#: part/models.py:1007 +#: part/models.py:1095 msgid "Parts cannot be assigned to structural part categories!" msgstr "" -#: part/models.py:1039 +#: part/models.py:1127 msgid "Part name" msgstr "" -#: part/models.py:1044 +#: part/models.py:1132 msgid "Is Template" msgstr "" -#: part/models.py:1045 +#: part/models.py:1133 msgid "Is this part a template part?" msgstr "" -#: part/models.py:1055 +#: part/models.py:1143 msgid "Is this part a variant of another part?" msgstr "" -#: part/models.py:1056 +#: part/models.py:1144 msgid "Variant Of" msgstr "" -#: part/models.py:1063 +#: part/models.py:1151 msgid "Part description (optional)" msgstr "" -#: part/models.py:1070 +#: part/models.py:1158 msgid "Keywords" msgstr "" -#: part/models.py:1071 +#: part/models.py:1159 msgid "Part keywords to improve visibility in search results" msgstr "" -#: part/models.py:1081 +#: part/models.py:1169 msgid "Part category" msgstr "" -#: part/models.py:1088 part/serializers.py:929 +#: part/models.py:1176 part/serializers.py:814 #: report/templates/report/inventree_stock_location_report.html:103 msgid "IPN" msgstr "" -#: part/models.py:1096 +#: part/models.py:1184 msgid "Part revision or version number" msgstr "" -#: part/models.py:1097 report/models.py:228 +#: part/models.py:1185 report/models.py:228 msgid "Revision" msgstr "" -#: part/models.py:1106 +#: part/models.py:1194 msgid "Is this part a revision of another part?" msgstr "" -#: part/models.py:1107 +#: part/models.py:1195 msgid "Revision Of" msgstr "" -#: part/models.py:1123 +#: part/models.py:1211 msgid "Where is this item normally stored?" msgstr "" -#: part/models.py:1169 +#: part/models.py:1257 msgid "Default Supplier" msgstr "" -#: part/models.py:1170 +#: part/models.py:1258 msgid "Default supplier part" msgstr "" -#: part/models.py:1177 +#: part/models.py:1265 msgid "Default Expiry" msgstr "" -#: part/models.py:1178 +#: part/models.py:1266 msgid "Expiry time (in days) for stock items of this part" msgstr "" -#: part/models.py:1186 part/serializers.py:1003 +#: part/models.py:1274 part/serializers.py:888 msgid "Minimum Stock" msgstr "" -#: part/models.py:1187 +#: part/models.py:1275 msgid "Minimum allowed stock level" msgstr "" -#: part/models.py:1196 +#: part/models.py:1284 msgid "Units of measure for this part" msgstr "" -#: part/models.py:1203 +#: part/models.py:1291 msgid "Can this part be built from other parts?" msgstr "" -#: part/models.py:1209 +#: part/models.py:1297 msgid "Can this part be used to build other parts?" msgstr "" -#: part/models.py:1215 +#: part/models.py:1303 msgid "Does this part have tracking for unique items?" msgstr "" -#: part/models.py:1221 +#: part/models.py:1309 msgid "Can this part have test results recorded against it?" msgstr "" -#: part/models.py:1227 +#: part/models.py:1315 msgid "Can this part be purchased from external suppliers?" msgstr "" -#: part/models.py:1233 +#: part/models.py:1321 msgid "Can this part be sold to customers?" msgstr "" -#: part/models.py:1237 +#: part/models.py:1325 msgid "Is this part active?" msgstr "" -#: part/models.py:1243 +#: part/models.py:1331 msgid "Locked parts cannot be edited" msgstr "" -#: part/models.py:1249 +#: part/models.py:1337 msgid "Is this a virtual part, such as a software product or license?" msgstr "" -#: part/models.py:1254 +#: part/models.py:1342 msgid "BOM Validated" msgstr "" -#: part/models.py:1255 +#: part/models.py:1343 msgid "Is the BOM for this part valid?" msgstr "" -#: part/models.py:1261 +#: part/models.py:1349 msgid "BOM checksum" msgstr "" -#: part/models.py:1262 +#: part/models.py:1350 msgid "Stored BOM checksum" msgstr "" -#: part/models.py:1270 +#: part/models.py:1358 msgid "BOM checked by" msgstr "" -#: part/models.py:1275 +#: part/models.py:1363 msgid "BOM checked date" msgstr "" -#: part/models.py:1291 +#: part/models.py:1379 msgid "Creation User" msgstr "" -#: part/models.py:1301 +#: part/models.py:1389 msgid "Owner responsible for this part" msgstr "" -#: part/models.py:2258 +#: part/models.py:2346 msgid "Sell multiple" msgstr "" -#: part/models.py:3286 +#: part/models.py:3350 msgid "Currency used to cache pricing calculations" msgstr "" -#: part/models.py:3302 +#: part/models.py:3366 msgid "Minimum BOM Cost" msgstr "" -#: part/models.py:3303 +#: part/models.py:3367 msgid "Minimum cost of component parts" msgstr "" -#: part/models.py:3309 +#: part/models.py:3373 msgid "Maximum BOM Cost" msgstr "" -#: part/models.py:3310 +#: part/models.py:3374 msgid "Maximum cost of component parts" msgstr "" -#: part/models.py:3316 +#: part/models.py:3380 msgid "Minimum Purchase Cost" msgstr "" -#: part/models.py:3317 +#: part/models.py:3381 msgid "Minimum historical purchase cost" msgstr "" -#: part/models.py:3323 +#: part/models.py:3387 msgid "Maximum Purchase Cost" msgstr "" -#: part/models.py:3324 +#: part/models.py:3388 msgid "Maximum historical purchase cost" msgstr "" -#: part/models.py:3330 +#: part/models.py:3394 msgid "Minimum Internal Price" msgstr "" -#: part/models.py:3331 +#: part/models.py:3395 msgid "Minimum cost based on internal price breaks" msgstr "" -#: part/models.py:3337 +#: part/models.py:3401 msgid "Maximum Internal Price" msgstr "" -#: part/models.py:3338 +#: part/models.py:3402 msgid "Maximum cost based on internal price breaks" msgstr "" -#: part/models.py:3344 +#: part/models.py:3408 msgid "Minimum Supplier Price" msgstr "" -#: part/models.py:3345 +#: part/models.py:3409 msgid "Minimum price of part from external suppliers" msgstr "" -#: part/models.py:3351 +#: part/models.py:3415 msgid "Maximum Supplier Price" msgstr "" -#: part/models.py:3352 +#: part/models.py:3416 msgid "Maximum price of part from external suppliers" msgstr "" -#: part/models.py:3358 +#: part/models.py:3422 msgid "Minimum Variant Cost" msgstr "" -#: part/models.py:3359 +#: part/models.py:3423 msgid "Calculated minimum cost of variant parts" msgstr "" -#: part/models.py:3365 +#: part/models.py:3429 msgid "Maximum Variant Cost" msgstr "" -#: part/models.py:3366 +#: part/models.py:3430 msgid "Calculated maximum cost of variant parts" msgstr "" -#: part/models.py:3372 part/models.py:3386 +#: part/models.py:3436 part/models.py:3450 msgid "Minimum Cost" msgstr "" -#: part/models.py:3373 +#: part/models.py:3437 msgid "Override minimum cost" msgstr "" -#: part/models.py:3379 part/models.py:3393 +#: part/models.py:3443 part/models.py:3457 msgid "Maximum Cost" msgstr "" -#: part/models.py:3380 +#: part/models.py:3444 msgid "Override maximum cost" msgstr "" -#: part/models.py:3387 +#: part/models.py:3451 msgid "Calculated overall minimum cost" msgstr "" -#: part/models.py:3394 +#: part/models.py:3458 msgid "Calculated overall maximum cost" msgstr "" -#: part/models.py:3400 +#: part/models.py:3464 msgid "Minimum Sale Price" msgstr "" -#: part/models.py:3401 +#: part/models.py:3465 msgid "Minimum sale price based on price breaks" msgstr "" -#: part/models.py:3407 +#: part/models.py:3471 msgid "Maximum Sale Price" msgstr "" -#: part/models.py:3408 +#: part/models.py:3472 msgid "Maximum sale price based on price breaks" msgstr "" -#: part/models.py:3414 +#: part/models.py:3478 msgid "Minimum Sale Cost" msgstr "" -#: part/models.py:3415 +#: part/models.py:3479 msgid "Minimum historical sale price" msgstr "" -#: part/models.py:3421 +#: part/models.py:3485 msgid "Maximum Sale Cost" msgstr "" -#: part/models.py:3422 +#: part/models.py:3486 msgid "Maximum historical sale price" msgstr "" -#: part/models.py:3440 +#: part/models.py:3504 msgid "Part for stocktake" msgstr "" -#: part/models.py:3445 +#: part/models.py:3509 msgid "Item Count" msgstr "" -#: part/models.py:3446 +#: part/models.py:3510 msgid "Number of individual stock entries at time of stocktake" msgstr "" -#: part/models.py:3454 +#: part/models.py:3518 msgid "Total available stock at time of stocktake" msgstr "" -#: part/models.py:3458 report/templates/report/inventree_test_report.html:106 +#: part/models.py:3522 report/templates/report/inventree_test_report.html:106 msgid "Date" msgstr "" -#: part/models.py:3459 +#: part/models.py:3523 msgid "Date stocktake was performed" msgstr "" -#: part/models.py:3466 +#: part/models.py:3530 msgid "Minimum Stock Cost" msgstr "" -#: part/models.py:3467 +#: part/models.py:3531 msgid "Estimated minimum cost of stock on hand" msgstr "" -#: part/models.py:3473 +#: part/models.py:3537 msgid "Maximum Stock Cost" msgstr "" -#: part/models.py:3474 +#: part/models.py:3538 msgid "Estimated maximum cost of stock on hand" msgstr "" -#: part/models.py:3484 +#: part/models.py:3548 msgid "Part Sale Price Break" msgstr "" -#: part/models.py:3596 +#: part/models.py:3660 msgid "Part Test Template" msgstr "" -#: part/models.py:3622 +#: part/models.py:3686 msgid "Invalid template name - must include at least one alphanumeric character" msgstr "" -#: part/models.py:3643 part/models.py:3816 -msgid "Choices must be unique" -msgstr "" - -#: part/models.py:3654 +#: part/models.py:3718 msgid "Test templates can only be created for testable parts" msgstr "" -#: part/models.py:3668 +#: part/models.py:3732 msgid "Test template with the same key already exists for part" msgstr "" -#: part/models.py:3685 +#: part/models.py:3749 msgid "Test Name" msgstr "" -#: part/models.py:3686 +#: part/models.py:3750 msgid "Enter a name for the test" msgstr "" -#: part/models.py:3692 +#: part/models.py:3756 msgid "Test Key" msgstr "" -#: part/models.py:3693 +#: part/models.py:3757 msgid "Simplified key for the test" msgstr "" -#: part/models.py:3700 +#: part/models.py:3764 msgid "Test Description" msgstr "" -#: part/models.py:3701 +#: part/models.py:3765 msgid "Enter description for this test" msgstr "" -#: part/models.py:3705 report/models.py:287 -msgid "Enabled" -msgstr "" - -#: part/models.py:3705 +#: part/models.py:3769 msgid "Is this test enabled?" msgstr "" -#: part/models.py:3710 +#: part/models.py:3774 msgid "Required" msgstr "" -#: part/models.py:3711 +#: part/models.py:3775 msgid "Is this test required to pass?" msgstr "" -#: part/models.py:3716 +#: part/models.py:3780 msgid "Requires Value" msgstr "" -#: part/models.py:3717 +#: part/models.py:3781 msgid "Does this test require a value when adding a test result?" msgstr "" -#: part/models.py:3722 +#: part/models.py:3786 msgid "Requires Attachment" msgstr "" -#: part/models.py:3724 +#: part/models.py:3788 msgid "Does this test require a file attachment when adding a test result?" msgstr "" -#: part/models.py:3730 part/models.py:3878 -msgid "Choices" -msgstr "" - -#: part/models.py:3731 +#: part/models.py:3795 msgid "Valid choices for this test (comma-separated)" msgstr "" -#: part/models.py:3764 -msgid "Part Parameter Template" -msgstr "" - -#: part/models.py:3791 -msgid "Checkbox parameters cannot have units" -msgstr "" - -#: part/models.py:3796 -msgid "Checkbox parameters cannot have choices" -msgstr "" - -#: part/models.py:3833 -msgid "Parameter template name must be unique" -msgstr "" - -#: part/models.py:3851 -msgid "Parameter Name" -msgstr "" - -#: part/models.py:3858 -msgid "Physical units for this parameter" -msgstr "" - -#: part/models.py:3866 -msgid "Parameter description" -msgstr "" - -#: part/models.py:3872 -msgid "Checkbox" -msgstr "" - -#: part/models.py:3873 -msgid "Is this parameter a checkbox?" -msgstr "" - -#: part/models.py:3879 -msgid "Valid choices for this parameter (comma-separated)" -msgstr "" - -#: part/models.py:3890 -msgid "Selection list for this parameter" -msgstr "" - -#: part/models.py:3932 -msgid "Part Parameter" -msgstr "" - -#: part/models.py:3958 -msgid "Parameter cannot be modified - part is locked" -msgstr "" - -#: part/models.py:3996 -msgid "Invalid choice for parameter value" -msgstr "" - -#: part/models.py:4047 -msgid "Parent Part" -msgstr "" - -#: part/models.py:4055 part/models.py:4170 part/models.py:4171 -msgid "Parameter Template" -msgstr "" - -#: part/models.py:4061 -msgid "Parameter Value" -msgstr "" - -#: part/models.py:4071 stock/serializers.py:718 -msgid "Optional note field" -msgstr "" - -#: part/models.py:4118 -msgid "Part Category Parameter Template" -msgstr "" - -#: part/models.py:4177 -msgid "Default Value" -msgstr "" - -#: part/models.py:4178 -msgid "Default Parameter Value" -msgstr "" - -#: part/models.py:4352 +#: part/models.py:3977 msgid "BOM item cannot be modified - assembly is locked" msgstr "" -#: part/models.py:4359 +#: part/models.py:3984 msgid "BOM item cannot be modified - variant assembly is locked" msgstr "" -#: part/models.py:4369 +#: part/models.py:3994 msgid "Select parent part" msgstr "" -#: part/models.py:4379 +#: part/models.py:4004 msgid "Sub part" msgstr "" -#: part/models.py:4380 +#: part/models.py:4005 msgid "Select part to be used in BOM" msgstr "" -#: part/models.py:4391 +#: part/models.py:4016 msgid "BOM quantity for this BOM item" msgstr "" -#: part/models.py:4397 +#: part/models.py:4022 msgid "This BOM item is optional" msgstr "" -#: part/models.py:4403 +#: part/models.py:4028 msgid "This BOM item is consumable (it is not tracked in build orders)" msgstr "" -#: part/models.py:4411 +#: part/models.py:4036 msgid "Setup Quantity" msgstr "" -#: part/models.py:4412 +#: part/models.py:4037 msgid "Extra required quantity for a build, to account for setup losses" msgstr "" -#: part/models.py:4420 +#: part/models.py:4045 msgid "Attrition" msgstr "" -#: part/models.py:4422 +#: part/models.py:4047 msgid "Estimated attrition for a build, expressed as a percentage (0-100)" msgstr "" -#: part/models.py:4433 +#: part/models.py:4058 msgid "Rounding Multiple" msgstr "" -#: part/models.py:4435 +#: part/models.py:4060 msgid "Round up required production quantity to nearest multiple of this value" msgstr "" -#: part/models.py:4443 +#: part/models.py:4068 msgid "BOM item reference" msgstr "" -#: part/models.py:4451 +#: part/models.py:4076 msgid "BOM item notes" msgstr "" -#: part/models.py:4457 +#: part/models.py:4082 msgid "Checksum" msgstr "" -#: part/models.py:4458 +#: part/models.py:4083 msgid "BOM line checksum" msgstr "" -#: part/models.py:4463 +#: part/models.py:4088 msgid "Validated" msgstr "" -#: part/models.py:4464 +#: part/models.py:4089 msgid "This BOM item has been validated" msgstr "" -#: part/models.py:4469 +#: part/models.py:4094 msgid "Gets inherited" msgstr "" -#: part/models.py:4470 +#: part/models.py:4095 msgid "This BOM item is inherited by BOMs for variant parts" msgstr "" -#: part/models.py:4476 +#: part/models.py:4101 msgid "Stock items for variant parts can be used for this BOM item" msgstr "" -#: part/models.py:4583 stock/models.py:925 +#: part/models.py:4208 stock/models.py:925 msgid "Quantity must be integer value for trackable parts" msgstr "" -#: part/models.py:4593 part/models.py:4595 +#: part/models.py:4218 part/models.py:4220 msgid "Sub part must be specified" msgstr "" -#: part/models.py:4746 +#: part/models.py:4371 msgid "BOM Item Substitute" msgstr "" -#: part/models.py:4767 +#: part/models.py:4392 msgid "Substitute part cannot be the same as the master part" msgstr "" -#: part/models.py:4780 +#: part/models.py:4405 msgid "Parent BOM item" msgstr "" -#: part/models.py:4788 +#: part/models.py:4413 msgid "Substitute part" msgstr "" -#: part/models.py:4804 +#: part/models.py:4429 msgid "Part 1" msgstr "" -#: part/models.py:4812 +#: part/models.py:4437 msgid "Part 2" msgstr "" -#: part/models.py:4813 +#: part/models.py:4438 msgid "Select Related Part" msgstr "" -#: part/models.py:4820 +#: part/models.py:4445 msgid "Note for this relationship" msgstr "" -#: part/models.py:4839 +#: part/models.py:4464 msgid "Part relationship cannot be created between a part and itself" msgstr "" -#: part/models.py:4844 +#: part/models.py:4469 msgid "Duplicate relationship already exists" msgstr "" -#: part/serializers.py:114 +#: part/serializers.py:113 msgid "Parent Category" msgstr "" -#: part/serializers.py:115 +#: part/serializers.py:114 msgid "Parent part category" msgstr "" -#: part/serializers.py:123 part/serializers.py:164 +#: part/serializers.py:122 part/serializers.py:163 msgid "Subcategories" msgstr "" -#: part/serializers.py:203 +#: part/serializers.py:202 msgid "Results" msgstr "" -#: part/serializers.py:204 +#: part/serializers.py:203 msgid "Number of results recorded against this template" msgstr "" -#: part/serializers.py:235 part/serializers.py:253 stock/serializers.py:643 +#: part/serializers.py:234 part/serializers.py:252 stock/serializers.py:643 msgid "Purchase currency of this stock item" msgstr "" -#: part/serializers.py:280 +#: part/serializers.py:279 msgid "File is not an image" msgstr "" -#: part/serializers.py:311 -msgid "Number of parts using this template" -msgstr "" - -#: part/serializers.py:471 +#: part/serializers.py:382 msgid "Original Part" msgstr "" -#: part/serializers.py:472 +#: part/serializers.py:383 msgid "Select original part to duplicate" msgstr "" -#: part/serializers.py:477 +#: part/serializers.py:388 msgid "Copy Image" msgstr "" -#: part/serializers.py:478 +#: part/serializers.py:389 msgid "Copy image from original part" msgstr "" -#: part/serializers.py:484 +#: part/serializers.py:395 msgid "Copy BOM" msgstr "" -#: part/serializers.py:485 +#: part/serializers.py:396 msgid "Copy bill of materials from original part" msgstr "" -#: part/serializers.py:491 +#: part/serializers.py:402 msgid "Copy Parameters" msgstr "" -#: part/serializers.py:492 +#: part/serializers.py:403 msgid "Copy parameter data from original part" msgstr "" -#: part/serializers.py:498 +#: part/serializers.py:409 msgid "Copy Notes" msgstr "" -#: part/serializers.py:499 +#: part/serializers.py:410 msgid "Copy notes from original part" msgstr "" -#: part/serializers.py:505 +#: part/serializers.py:416 msgid "Copy Tests" msgstr "" -#: part/serializers.py:506 +#: part/serializers.py:417 msgid "Copy test templates from original part" msgstr "" -#: part/serializers.py:524 +#: part/serializers.py:435 msgid "Initial Stock Quantity" msgstr "" -#: part/serializers.py:526 +#: part/serializers.py:437 msgid "Specify initial stock quantity for this Part. If quantity is zero, no stock is added." msgstr "" -#: part/serializers.py:533 +#: part/serializers.py:444 msgid "Initial Stock Location" msgstr "" -#: part/serializers.py:534 +#: part/serializers.py:445 msgid "Specify initial stock location for this Part" msgstr "" -#: part/serializers.py:551 +#: part/serializers.py:462 msgid "Select supplier (or leave blank to skip)" msgstr "" -#: part/serializers.py:567 +#: part/serializers.py:478 msgid "Select manufacturer (or leave blank to skip)" msgstr "" -#: part/serializers.py:577 +#: part/serializers.py:488 msgid "Manufacturer part number" msgstr "" -#: part/serializers.py:584 +#: part/serializers.py:495 msgid "Selected company is not a valid supplier" msgstr "" -#: part/serializers.py:593 +#: part/serializers.py:504 msgid "Selected company is not a valid manufacturer" msgstr "" -#: part/serializers.py:604 +#: part/serializers.py:515 msgid "Manufacturer part matching this MPN already exists" msgstr "" -#: part/serializers.py:611 +#: part/serializers.py:522 msgid "Supplier part matching this SKU already exists" msgstr "" -#: part/serializers.py:914 +#: part/serializers.py:799 msgid "Category Name" msgstr "" -#: part/serializers.py:943 +#: part/serializers.py:828 msgid "Building" msgstr "" -#: part/serializers.py:944 +#: part/serializers.py:829 msgid "Quantity of this part currently being in production" msgstr "" -#: part/serializers.py:951 +#: part/serializers.py:836 msgid "Outstanding quantity of this part scheduled to be built" msgstr "" -#: part/serializers.py:971 stock/serializers.py:1019 stock/serializers.py:1189 +#: part/serializers.py:856 stock/serializers.py:1019 stock/serializers.py:1189 #: users/ruleset.py:30 msgid "Stock Items" msgstr "" -#: part/serializers.py:975 +#: part/serializers.py:860 msgid "Revisions" msgstr "" -#: part/serializers.py:979 +#: part/serializers.py:864 msgid "Suppliers" msgstr "" -#: part/serializers.py:983 part/serializers.py:1297 +#: part/serializers.py:868 part/serializers.py:1162 #: templates/email/low_stock_notification.html:16 #: templates/email/part_event_notification.html:17 msgid "Total Stock" msgstr "Цялостна наличност" -#: part/serializers.py:991 +#: part/serializers.py:876 msgid "Unallocated Stock" msgstr "" -#: part/serializers.py:999 +#: part/serializers.py:884 msgid "Variant Stock" msgstr "" -#: part/serializers.py:1054 +#: part/serializers.py:943 msgid "Duplicate Part" msgstr "" -#: part/serializers.py:1055 +#: part/serializers.py:944 msgid "Copy initial data from another Part" msgstr "" -#: part/serializers.py:1061 +#: part/serializers.py:950 msgid "Initial Stock" msgstr "" -#: part/serializers.py:1062 +#: part/serializers.py:951 msgid "Create Part with initial stock quantity" msgstr "" -#: part/serializers.py:1068 +#: part/serializers.py:957 msgid "Supplier Information" msgstr "" -#: part/serializers.py:1069 +#: part/serializers.py:958 msgid "Add initial supplier information for this part" msgstr "" -#: part/serializers.py:1077 +#: part/serializers.py:966 msgid "Copy Category Parameters" msgstr "" -#: part/serializers.py:1078 +#: part/serializers.py:967 msgid "Copy parameter templates from selected part category" msgstr "" -#: part/serializers.py:1083 +#: part/serializers.py:972 msgid "Existing Image" msgstr "" -#: part/serializers.py:1084 +#: part/serializers.py:973 msgid "Filename of an existing part image" msgstr "" -#: part/serializers.py:1101 +#: part/serializers.py:990 msgid "Image file does not exist" msgstr "" -#: part/serializers.py:1269 +#: part/serializers.py:1134 msgid "Validate entire Bill of Materials" msgstr "" -#: part/serializers.py:1303 part/serializers.py:1769 +#: part/serializers.py:1168 part/serializers.py:1634 msgid "Can Build" msgstr "" -#: part/serializers.py:1320 +#: part/serializers.py:1185 msgid "Required for Build Orders" msgstr "" -#: part/serializers.py:1325 +#: part/serializers.py:1190 msgid "Allocated to Build Orders" msgstr "" -#: part/serializers.py:1332 +#: part/serializers.py:1197 msgid "Required for Sales Orders" msgstr "" -#: part/serializers.py:1336 +#: part/serializers.py:1201 msgid "Allocated to Sales Orders" msgstr "" -#: part/serializers.py:1475 +#: part/serializers.py:1340 msgid "Minimum Price" msgstr "" -#: part/serializers.py:1476 +#: part/serializers.py:1341 msgid "Override calculated value for minimum price" msgstr "" -#: part/serializers.py:1483 +#: part/serializers.py:1348 msgid "Minimum price currency" msgstr "" -#: part/serializers.py:1490 +#: part/serializers.py:1355 msgid "Maximum Price" msgstr "" -#: part/serializers.py:1491 +#: part/serializers.py:1356 msgid "Override calculated value for maximum price" msgstr "" -#: part/serializers.py:1498 +#: part/serializers.py:1363 msgid "Maximum price currency" msgstr "" -#: part/serializers.py:1527 +#: part/serializers.py:1392 msgid "Update" msgstr "" -#: part/serializers.py:1528 +#: part/serializers.py:1393 msgid "Update pricing for this part" msgstr "" -#: part/serializers.py:1551 +#: part/serializers.py:1416 #, python-brace-format msgid "Could not convert from provided currencies to {default_currency}" msgstr "" -#: part/serializers.py:1558 +#: part/serializers.py:1423 msgid "Minimum price must not be greater than maximum price" msgstr "" -#: part/serializers.py:1561 +#: part/serializers.py:1426 msgid "Maximum price must not be less than minimum price" msgstr "" -#: part/serializers.py:1715 +#: part/serializers.py:1580 msgid "Select the parent assembly" msgstr "" -#: part/serializers.py:1735 +#: part/serializers.py:1600 msgid "Select the component part" msgstr "" -#: part/serializers.py:1929 +#: part/serializers.py:1802 msgid "Select part to copy BOM from" msgstr "" -#: part/serializers.py:1937 +#: part/serializers.py:1810 msgid "Remove Existing Data" msgstr "" -#: part/serializers.py:1938 +#: part/serializers.py:1811 msgid "Remove existing BOM items before copying" msgstr "" -#: part/serializers.py:1943 +#: part/serializers.py:1816 msgid "Include Inherited" msgstr "" -#: part/serializers.py:1944 +#: part/serializers.py:1817 msgid "Include BOM items which are inherited from templated parts" msgstr "" -#: part/serializers.py:1949 +#: part/serializers.py:1822 msgid "Skip Invalid Rows" msgstr "" -#: part/serializers.py:1950 +#: part/serializers.py:1823 msgid "Enable this option to skip invalid rows" msgstr "" -#: part/serializers.py:1955 +#: part/serializers.py:1828 msgid "Copy Substitute Parts" msgstr "" -#: part/serializers.py:1956 +#: part/serializers.py:1829 msgid "Copy substitute parts when duplicate BOM items" msgstr "" @@ -6927,7 +6974,7 @@ msgstr "" #: plugin/builtin/events/auto_issue_orders.py:19 #: plugin/builtin/exporter/bom_exporter.py:73 #: plugin/builtin/exporter/inventree_exporter.py:17 -#: plugin/builtin/exporter/part_parameter_exporter.py:36 +#: plugin/builtin/exporter/parameter_exporter.py:32 #: plugin/builtin/exporter/stocktake_exporter.py:47 #: plugin/builtin/integration/core_notifications.py:25 #: plugin/builtin/integration/core_notifications.py:69 @@ -7041,23 +7088,19 @@ msgid "Include total quantity of each part in the BOM" msgstr "" #: plugin/builtin/exporter/bom_exporter.py:35 -#: plugin/builtin/exporter/part_parameter_exporter.py:17 msgid "Stock Data" msgstr "" #: plugin/builtin/exporter/bom_exporter.py:35 -#: plugin/builtin/exporter/part_parameter_exporter.py:17 msgid "Include part stock data" msgstr "" #: plugin/builtin/exporter/bom_exporter.py:39 -#: plugin/builtin/exporter/part_parameter_exporter.py:21 #: plugin/builtin/exporter/stocktake_exporter.py:20 msgid "Pricing Data" msgstr "" #: plugin/builtin/exporter/bom_exporter.py:39 -#: plugin/builtin/exporter/part_parameter_exporter.py:21 #: plugin/builtin/exporter/stocktake_exporter.py:20 msgid "Include part pricing data" msgstr "" @@ -7144,12 +7187,20 @@ msgstr "" msgid "Provides support for exporting data from InvenTree" msgstr "" -#: plugin/builtin/exporter/part_parameter_exporter.py:33 -msgid "Part Parameter Exporter" +#: plugin/builtin/exporter/parameter_exporter.py:16 +msgid "Exclude Inactive" msgstr "" -#: plugin/builtin/exporter/part_parameter_exporter.py:34 -msgid "Exporter for part parameter data" +#: plugin/builtin/exporter/parameter_exporter.py:17 +msgid "Exclude parameters which are inactive" +msgstr "" + +#: plugin/builtin/exporter/parameter_exporter.py:29 +msgid "Parameter Exporter" +msgstr "" + +#: plugin/builtin/exporter/parameter_exporter.py:30 +msgid "Exporter for model parameter data" msgstr "" #: plugin/builtin/exporter/stocktake_exporter.py:25 @@ -8079,19 +8130,19 @@ msgstr "" msgid "No result" msgstr "" -#: report/templatetags/report.py:167 +#: report/templatetags/report.py:169 msgid "Asset file does not exist" msgstr "" -#: report/templatetags/report.py:224 report/templatetags/report.py:300 +#: report/templatetags/report.py:226 report/templatetags/report.py:302 msgid "Image file not found" msgstr "" -#: report/templatetags/report.py:325 +#: report/templatetags/report.py:327 msgid "part_image tag requires a Part instance" msgstr "" -#: report/templatetags/report.py:362 +#: report/templatetags/report.py:383 msgid "company_image tag requires a Company instance" msgstr "" @@ -8455,115 +8506,119 @@ msgstr "" msgid "Quantity does not match serial numbers" msgstr "" -#: stock/models.py:2012 stock/models.py:2917 +#: stock/models.py:1912 +msgid "Cannot assign stock to structural location" +msgstr "" + +#: stock/models.py:2029 stock/models.py:2934 msgid "Test template does not exist" msgstr "" -#: stock/models.py:2030 +#: stock/models.py:2047 msgid "Stock item has been assigned to a sales order" msgstr "" -#: stock/models.py:2034 +#: stock/models.py:2051 msgid "Stock item is installed in another item" msgstr "" -#: stock/models.py:2037 +#: stock/models.py:2054 msgid "Stock item contains other items" msgstr "" -#: stock/models.py:2040 +#: stock/models.py:2057 msgid "Stock item has been assigned to a customer" msgstr "" -#: stock/models.py:2043 stock/models.py:2226 +#: stock/models.py:2060 stock/models.py:2243 msgid "Stock item is currently in production" msgstr "" -#: stock/models.py:2046 +#: stock/models.py:2063 msgid "Serialized stock cannot be merged" msgstr "" -#: stock/models.py:2053 stock/serializers.py:1462 +#: stock/models.py:2070 stock/serializers.py:1462 msgid "Duplicate stock items" msgstr "" -#: stock/models.py:2057 +#: stock/models.py:2074 msgid "Stock items must refer to the same part" msgstr "" -#: stock/models.py:2065 +#: stock/models.py:2082 msgid "Stock items must refer to the same supplier part" msgstr "" -#: stock/models.py:2070 +#: stock/models.py:2087 msgid "Stock status codes must match" msgstr "" -#: stock/models.py:2349 +#: stock/models.py:2366 msgid "StockItem cannot be moved as it is not in stock" msgstr "" -#: stock/models.py:2818 +#: stock/models.py:2835 msgid "Stock Item Tracking" msgstr "" -#: stock/models.py:2849 +#: stock/models.py:2866 msgid "Entry notes" msgstr "" -#: stock/models.py:2889 +#: stock/models.py:2906 msgid "Stock Item Test Result" msgstr "" -#: stock/models.py:2920 +#: stock/models.py:2937 msgid "Value must be provided for this test" msgstr "" -#: stock/models.py:2924 +#: stock/models.py:2941 msgid "Attachment must be uploaded for this test" msgstr "" -#: stock/models.py:2929 +#: stock/models.py:2946 msgid "Invalid value for this test" msgstr "" -#: stock/models.py:2953 +#: stock/models.py:2970 msgid "Test result" msgstr "" -#: stock/models.py:2960 +#: stock/models.py:2977 msgid "Test output value" msgstr "" -#: stock/models.py:2968 stock/serializers.py:248 +#: stock/models.py:2985 stock/serializers.py:248 msgid "Test result attachment" msgstr "" -#: stock/models.py:2972 +#: stock/models.py:2989 msgid "Test notes" msgstr "" -#: stock/models.py:2980 +#: stock/models.py:2997 msgid "Test station" msgstr "" -#: stock/models.py:2981 +#: stock/models.py:2998 msgid "The identifier of the test station where the test was performed" msgstr "" -#: stock/models.py:2987 +#: stock/models.py:3004 msgid "Started" msgstr "" -#: stock/models.py:2988 +#: stock/models.py:3005 msgid "The timestamp of the test start" msgstr "" -#: stock/models.py:2994 +#: stock/models.py:3011 msgid "Finished" msgstr "" -#: stock/models.py:2995 +#: stock/models.py:3012 msgid "The timestamp of the test finish" msgstr "" @@ -8677,8 +8732,8 @@ msgstr "" msgid "Quantity must not exceed available stock quantity ({q})" msgstr "" -#: stock/serializers.py:711 stock/serializers.py:1419 stock/serializers.py:1732 -#: stock/serializers.py:1781 +#: stock/serializers.py:711 stock/serializers.py:1419 stock/serializers.py:1740 +#: stock/serializers.py:1789 msgid "Destination stock location" msgstr "" @@ -8834,19 +8889,19 @@ msgstr "" msgid "Stock transaction notes" msgstr "" -#: stock/serializers.py:1787 +#: stock/serializers.py:1795 msgid "Merge into existing stock" msgstr "" -#: stock/serializers.py:1788 +#: stock/serializers.py:1796 msgid "Merge returned items into existing stock items if possible" msgstr "" -#: stock/serializers.py:1831 +#: stock/serializers.py:1839 msgid "Next Serial Number" msgstr "" -#: stock/serializers.py:1837 +#: stock/serializers.py:1845 msgid "Previous Serial Number" msgstr "" @@ -8902,83 +8957,87 @@ msgstr "" msgid "Stock manually removed" msgstr "" -#: stock/status_codes.py:57 +#: stock/status_codes.py:56 +msgid "Serialized stock items" +msgstr "" + +#: stock/status_codes.py:58 msgid "Returned to stock" msgstr "" -#: stock/status_codes.py:60 +#: stock/status_codes.py:61 msgid "Location changed" msgstr "" -#: stock/status_codes.py:61 +#: stock/status_codes.py:62 msgid "Stock updated" msgstr "" -#: stock/status_codes.py:64 +#: stock/status_codes.py:65 msgid "Installed into assembly" msgstr "" -#: stock/status_codes.py:65 +#: stock/status_codes.py:66 msgid "Removed from assembly" msgstr "" -#: stock/status_codes.py:67 +#: stock/status_codes.py:68 msgid "Installed component item" msgstr "" -#: stock/status_codes.py:68 +#: stock/status_codes.py:69 msgid "Removed component item" msgstr "" -#: stock/status_codes.py:71 +#: stock/status_codes.py:72 msgid "Split from parent item" msgstr "" -#: stock/status_codes.py:72 +#: stock/status_codes.py:73 msgid "Split child item" msgstr "" -#: stock/status_codes.py:75 +#: stock/status_codes.py:76 msgid "Merged stock items" msgstr "" -#: stock/status_codes.py:78 +#: stock/status_codes.py:79 msgid "Converted to variant" msgstr "" -#: stock/status_codes.py:81 +#: stock/status_codes.py:82 msgid "Build order output created" msgstr "" -#: stock/status_codes.py:82 +#: stock/status_codes.py:83 msgid "Build order output completed" msgstr "" -#: stock/status_codes.py:83 +#: stock/status_codes.py:84 msgid "Build order output rejected" msgstr "" -#: stock/status_codes.py:84 +#: stock/status_codes.py:85 msgid "Consumed by build order" msgstr "" -#: stock/status_codes.py:87 +#: stock/status_codes.py:88 msgid "Shipped against Sales Order" msgstr "" -#: stock/status_codes.py:90 +#: stock/status_codes.py:91 msgid "Received against Purchase Order" msgstr "" -#: stock/status_codes.py:93 +#: stock/status_codes.py:94 msgid "Returned against Return Order" msgstr "" -#: stock/status_codes.py:96 +#: stock/status_codes.py:97 msgid "Sent to customer" msgstr "" -#: stock/status_codes.py:97 +#: stock/status_codes.py:98 msgid "Returned from customer" msgstr "" diff --git a/src/backend/InvenTree/locale/cs/LC_MESSAGES/django.po b/src/backend/InvenTree/locale/cs/LC_MESSAGES/django.po index 11f8f3fd4c..f91c06515f 100644 --- a/src/backend/InvenTree/locale/cs/LC_MESSAGES/django.po +++ b/src/backend/InvenTree/locale/cs/LC_MESSAGES/django.po @@ -2,8 +2,8 @@ msgid "" msgstr "" "Project-Id-Version: inventree\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-11-19 04:55+0000\n" -"PO-Revision-Date: 2025-11-19 19:39\n" +"POT-Creation-Date: 2025-12-07 07:33+0000\n" +"PO-Revision-Date: 2025-12-07 07:36\n" "Last-Translator: \n" "Language-Team: Czech\n" "Language: cs_CZ\n" @@ -57,7 +57,7 @@ msgstr "Nebyla poskytnuta žádná data" msgid "This field must be unique." msgstr "Toto pole musí být unikátní." -#: InvenTree/api.py:775 +#: InvenTree/api.py:803 msgid "User does not have permission to view this model" msgstr "Uživatel nemá právo zobrazit tento model" @@ -81,22 +81,22 @@ msgstr "Zadaná primární e-mailová adresa je neplatná." msgid "The provided email domain is not approved." msgstr "Zadaná e-mailová doména není povolena." -#: InvenTree/conversion.py:166 +#: InvenTree/conversion.py:240 #, python-brace-format msgid "Invalid unit provided ({unit})" msgstr "Zadána neplatná jednotka ({unit})" -#: InvenTree/conversion.py:183 +#: InvenTree/conversion.py:257 msgid "No value provided" msgstr "Není k dispozici žádná hodnota" -#: InvenTree/conversion.py:210 +#: InvenTree/conversion.py:284 #, python-brace-format msgid "Could not convert {original} to {unit}" msgstr "Nelze převést {original} na {unit}" -#: InvenTree/conversion.py:212 InvenTree/conversion.py:226 -#: InvenTree/helpers.py:597 order/models.py:720 order/models.py:1015 +#: InvenTree/conversion.py:286 InvenTree/conversion.py:300 +#: InvenTree/helpers.py:597 order/models.py:721 order/models.py:1016 msgid "Invalid quantity provided" msgstr "Vyplněno neplatné množství" @@ -112,11 +112,11 @@ msgstr "Zadejte datum" msgid "Invalid decimal value" msgstr "Neplaté desetinné číslo" -#: InvenTree/fields.py:218 InvenTree/models.py:1067 build/serializers.py:509 -#: build/serializers.py:580 build/serializers.py:1788 company/models.py:857 -#: order/models.py:1780 +#: InvenTree/fields.py:218 InvenTree/models.py:1228 build/serializers.py:517 +#: build/serializers.py:588 build/serializers.py:1796 company/models.py:811 +#: order/models.py:1781 #: report/templates/report/inventree_build_order_report.html:172 -#: stock/models.py:2848 stock/models.py:2972 stock/serializers.py:717 +#: stock/models.py:2865 stock/models.py:2989 stock/serializers.py:717 #: stock/serializers.py:893 stock/serializers.py:1035 stock/serializers.py:1336 #: stock/serializers.py:1425 stock/serializers.py:1624 msgid "Notes" @@ -171,35 +171,35 @@ msgstr "Odstranit HTML tagy z této hodnoty" msgid "Data contains prohibited markdown content" msgstr "Data obsahují zakázaný markdown obsah" -#: InvenTree/helpers_model.py:133 +#: InvenTree/helpers_model.py:134 msgid "Connection error" msgstr "Chyba spojení" -#: InvenTree/helpers_model.py:138 InvenTree/helpers_model.py:145 +#: InvenTree/helpers_model.py:139 InvenTree/helpers_model.py:146 msgid "Server responded with invalid status code" msgstr "Server odpověděl s neplatným stavovým kódem" -#: InvenTree/helpers_model.py:141 +#: InvenTree/helpers_model.py:142 msgid "Exception occurred" msgstr "Došlo k výjimce" -#: InvenTree/helpers_model.py:151 +#: InvenTree/helpers_model.py:152 msgid "Server responded with invalid Content-Length value" msgstr "Server odpověděl s neplatnou hodnotou Content-Length" -#: InvenTree/helpers_model.py:154 +#: InvenTree/helpers_model.py:155 msgid "Image size is too large" msgstr "Velikost obrázku je příliš velká" -#: InvenTree/helpers_model.py:166 +#: InvenTree/helpers_model.py:167 msgid "Image download exceeded maximum size" msgstr "Stahování obrázku překročilo maximální velikost" -#: InvenTree/helpers_model.py:171 +#: InvenTree/helpers_model.py:172 msgid "Remote server returned empty response" msgstr "Vzdálený server vrátil prázdnou odpověď" -#: InvenTree/helpers_model.py:179 +#: InvenTree/helpers_model.py:180 msgid "Supplied URL is not a valid image file" msgstr "Zadaná URL adresa není platný soubor obrázku" @@ -207,7 +207,7 @@ msgstr "Zadaná URL adresa není platný soubor obrázku" msgid "Log in to the app" msgstr "Přihlásit se do aplikace" -#: InvenTree/magic_login.py:41 company/models.py:172 users/serializers.py:198 +#: InvenTree/magic_login.py:41 company/models.py:173 users/serializers.py:198 msgid "Email" msgstr "E-mail" @@ -215,160 +215,176 @@ msgstr "E-mail" msgid "You must enable two-factor authentication before doing anything else." msgstr "Před tím, než budete dělat cokoli jiného, musíte zapnout dvoufaktorové ověřování." -#: InvenTree/models.py:111 +#: InvenTree/models.py:114 msgid "Error running plugin validation" msgstr "Chyba při ověření pluginu" -#: InvenTree/models.py:192 +#: InvenTree/models.py:195 msgid "Metadata must be a python dict object" msgstr "Metadata musí být objekt python dict" -#: InvenTree/models.py:198 +#: InvenTree/models.py:201 msgid "Plugin Metadata" msgstr "Metadata pluginu" -#: InvenTree/models.py:199 +#: InvenTree/models.py:202 msgid "JSON metadata field, for use by external plugins" msgstr "Pole metadat JSON pro použití externími pluginy" -#: InvenTree/models.py:382 +#: InvenTree/models.py:385 msgid "Improperly formatted pattern" msgstr "Nesprávně naformátovaný vzor" -#: InvenTree/models.py:389 +#: InvenTree/models.py:392 msgid "Unknown format key specified" msgstr "Neznámý formát klíče" -#: InvenTree/models.py:395 +#: InvenTree/models.py:398 msgid "Missing required format key" msgstr "Chybí požadovaný klíč" -#: InvenTree/models.py:406 +#: InvenTree/models.py:409 msgid "Reference field cannot be empty" msgstr "Referenční pole nemůže být prázdné" -#: InvenTree/models.py:414 +#: InvenTree/models.py:417 msgid "Reference must match required pattern" msgstr "Referenční číslo musí odpovídat požadovanému vzoru" -#: InvenTree/models.py:445 +#: InvenTree/models.py:448 msgid "Reference number is too large" msgstr "Referenční číslo je příliš velké" -#: InvenTree/models.py:743 +#: InvenTree/models.py:896 msgid "Invalid choice" msgstr "Neplatný výběr" -#: InvenTree/models.py:856 common/models.py:1410 common/models.py:1837 -#: common/models.py:2096 common/models.py:2221 common/serializers.py:535 -#: company/models.py:615 generic/states/serializers.py:20 machine/models.py:25 -#: part/models.py:1039 part/models.py:3850 plugin/models.py:54 +#: InvenTree/models.py:1017 common/models.py:1414 common/models.py:1841 +#: common/models.py:2102 common/models.py:2227 common/models.py:2494 +#: common/serializers.py:539 generic/states/serializers.py:20 +#: machine/models.py:25 part/models.py:1127 plugin/models.py:54 #: report/models.py:216 stock/models.py:84 msgid "Name" msgstr "Název" -#: InvenTree/models.py:862 build/models.py:252 common/models.py:171 -#: common/models.py:2228 common/models.py:2341 company/models.py:543 -#: company/models.py:848 order/models.py:442 order/models.py:1825 -#: part/models.py:1062 part/models.py:3865 report/models.py:222 +#: InvenTree/models.py:1023 build/models.py:253 common/models.py:175 +#: common/models.py:2234 common/models.py:2347 common/models.py:2509 +#: company/models.py:545 company/models.py:802 order/models.py:443 +#: order/models.py:1826 part/models.py:1150 report/models.py:222 #: report/models.py:815 report/models.py:841 #: report/templates/report/inventree_build_order_report.html:117 #: stock/models.py:90 msgid "Description" msgstr "Popis" -#: InvenTree/models.py:863 stock/models.py:91 +#: InvenTree/models.py:1024 stock/models.py:91 msgid "Description (optional)" msgstr "Popis (volitelně)" -#: InvenTree/models.py:878 common/models.py:2394 +#: InvenTree/models.py:1039 common/models.py:2815 msgid "Path" msgstr "Cesta" -#: InvenTree/models.py:983 +#: InvenTree/models.py:1144 msgid "Duplicate names cannot exist under the same parent" msgstr "Duplicitní názvy nemohou existovat pod stejným nadřazeným názvem" -#: InvenTree/models.py:1067 +#: InvenTree/models.py:1228 msgid "Markdown notes (optional)" msgstr "Poznámky (volitelné)" -#: InvenTree/models.py:1098 +#: InvenTree/models.py:1259 msgid "Barcode Data" msgstr "Data čárového kódu" -#: InvenTree/models.py:1099 +#: InvenTree/models.py:1260 msgid "Third party barcode data" msgstr "Data čárového kódu třetí strany" -#: InvenTree/models.py:1105 +#: InvenTree/models.py:1266 msgid "Barcode Hash" msgstr "Hash čárového kódu" -#: InvenTree/models.py:1106 +#: InvenTree/models.py:1267 msgid "Unique hash of barcode data" msgstr "Jedinečný hash dat čárového kódu" -#: InvenTree/models.py:1187 +#: InvenTree/models.py:1348 msgid "Existing barcode found" msgstr "Nalezen existující čárový kód" -#: InvenTree/models.py:1269 +#: InvenTree/models.py:1430 msgid "Task Failure" msgstr "Selhání úlohy" -#: InvenTree/models.py:1270 +#: InvenTree/models.py:1431 #, python-brace-format msgid "Background worker task '{f}' failed after {n} attempts" msgstr "Úloha na pozadí '{f}' se ani po {n} pokusech nezdařila" -#: InvenTree/models.py:1297 +#: InvenTree/models.py:1458 msgid "Server Error" msgstr "Chyba serveru" -#: InvenTree/models.py:1298 +#: InvenTree/models.py:1459 msgid "An error has been logged by the server." msgstr "Server zaznamenal chybu." -#: InvenTree/models.py:1340 common/models.py:1748 +#: InvenTree/models.py:1501 common/models.py:1752 #: report/templates/report/inventree_bill_of_materials_report.html:126 #: report/templates/report/inventree_bill_of_materials_report.html:148 #: report/templates/report/inventree_return_order_report.html:35 msgid "Image" msgstr "Obrazek" -#: InvenTree/serializers.py:253 part/models.py:4571 +#: InvenTree/serializers.py:255 part/models.py:4196 msgid "Must be a valid number" msgstr "Musí být platné číslo" -#: InvenTree/serializers.py:295 company/models.py:214 part/models.py:3285 +#: InvenTree/serializers.py:297 company/models.py:215 part/models.py:3349 msgid "Currency" msgstr "Měna" -#: InvenTree/serializers.py:298 part/serializers.py:1385 +#: InvenTree/serializers.py:300 part/serializers.py:1250 msgid "Select currency from available options" msgstr "Vyberte měnu z dostupných možností" -#: InvenTree/serializers.py:653 +#: InvenTree/serializers.py:654 +msgid "This field may not be null." +msgstr "Toto pole nesmí být nulové." + +#: InvenTree/serializers.py:660 msgid "Invalid value" msgstr "Neplatná hodnota" -#: InvenTree/serializers.py:690 +#: InvenTree/serializers.py:697 msgid "Remote Image" msgstr "Vzdálený obraz" -#: InvenTree/serializers.py:691 +#: InvenTree/serializers.py:698 msgid "URL of remote image file" msgstr "URL souboru vzdáleného obrázku" -#: InvenTree/serializers.py:709 +#: InvenTree/serializers.py:716 msgid "Downloading images from remote URL is not enabled" msgstr "Stahování obrázků ze vzdálené URL není povoleno" -#: InvenTree/serializers.py:716 +#: InvenTree/serializers.py:723 msgid "Failed to download image from remote URL" msgstr "Nepodařilo se stáhnout obrázek ze vzdálené adresy URL" +#: InvenTree/serializers.py:806 +msgid "Invalid content type format" +msgstr "Neplatný formát typu obsahu" + +#: InvenTree/serializers.py:809 +msgid "Content type not found" +msgstr "Typ obsahu nenalezen" + +#: InvenTree/serializers.py:815 +msgid "Content type does not match required mixin class" +msgstr "Typ obsahu neodpovídá požadované třídě mixinu" + #: InvenTree/setting/locales.py:20 msgid "Arabic" msgstr "Arabština" @@ -537,30 +553,30 @@ msgstr "Neplatná fyzikální jednotka" msgid "Not a valid currency code" msgstr "Neplatný kód měny" -#: build/api.py:54 order/api.py:111 order/api.py:270 order/api.py:1373 -#: order/serializers.py:132 +#: build/api.py:54 order/api.py:116 order/api.py:275 order/api.py:1378 +#: order/serializers.py:133 msgid "Order Status" msgstr "Stav objednávky" -#: build/api.py:80 build/models.py:264 +#: build/api.py:80 build/models.py:265 msgid "Parent Build" msgstr "Nadřazená sestava" -#: build/api.py:84 build/api.py:831 order/api.py:547 order/api.py:770 -#: order/api.py:1174 order/api.py:1449 stock/api.py:573 +#: build/api.py:84 build/api.py:837 order/api.py:553 order/api.py:776 +#: order/api.py:1179 order/api.py:1454 stock/api.py:573 msgid "Include Variants" msgstr "Zahrnout varianty" -#: build/api.py:100 build/api.py:466 build/api.py:845 build/models.py:270 -#: build/serializers.py:1225 build/serializers.py:1356 -#: build/serializers.py:1427 company/models.py:1067 company/serializers.py:445 -#: order/api.py:298 order/api.py:302 order/api.py:929 order/api.py:1187 -#: order/api.py:1190 order/models.py:1941 order/models.py:2108 -#: order/models.py:2109 part/api.py:1233 part/api.py:1236 part/api.py:1302 -#: part/api.py:1589 part/models.py:472 part/models.py:3296 part/models.py:3439 -#: part/models.py:3497 part/models.py:3518 part/models.py:3540 -#: part/models.py:3679 part/models.py:4046 part/models.py:4368 -#: part/models.py:4787 part/serializers.py:1928 +#: build/api.py:100 build/api.py:472 build/api.py:851 build/models.py:271 +#: build/serializers.py:1233 build/serializers.py:1364 +#: build/serializers.py:1435 company/models.py:1021 company/serializers.py:490 +#: order/api.py:303 order/api.py:307 order/api.py:934 order/api.py:1192 +#: order/api.py:1195 order/models.py:1942 order/models.py:2109 +#: order/models.py:2110 part/api.py:1160 part/api.py:1163 part/api.py:1314 +#: part/models.py:550 part/models.py:3360 part/models.py:3503 +#: part/models.py:3561 part/models.py:3582 part/models.py:3604 +#: part/models.py:3743 part/models.py:3993 part/models.py:4412 +#: part/serializers.py:1801 #: report/templates/report/inventree_bill_of_materials_report.html:110 #: report/templates/report/inventree_bill_of_materials_report.html:137 #: report/templates/report/inventree_build_order_report.html:109 @@ -580,9 +596,9 @@ msgstr "Zahrnout varianty" msgid "Part" msgstr "Díl" -#: build/api.py:120 build/api.py:123 build/serializers.py:1438 part/api.py:980 -#: part/api.py:1316 part/api.py:1600 part/models.py:1080 part/models.py:3568 -#: part/models.py:4162 part/serializers.py:1752 stock/api.py:869 +#: build/api.py:120 build/api.py:123 build/serializers.py:1446 part/api.py:975 +#: part/api.py:1325 part/models.py:435 part/models.py:1168 part/models.py:3632 +#: part/serializers.py:1617 stock/api.py:869 msgid "Category" msgstr "Kategorie" @@ -590,7 +606,7 @@ msgstr "Kategorie" msgid "Ancestor Build" msgstr "Sestava předků" -#: build/api.py:152 order/api.py:129 +#: build/api.py:152 order/api.py:134 msgid "Assigned to me" msgstr "Přiřazeno mě" @@ -638,134 +654,134 @@ msgstr "Dokončeno před" msgid "Completed after" msgstr "Dokončeno po" -#: build/api.py:249 order/api.py:226 +#: build/api.py:249 order/api.py:231 msgid "Min Date" msgstr "Min. datum" -#: build/api.py:272 order/api.py:245 +#: build/api.py:272 order/api.py:250 msgid "Max Date" msgstr "Max datum" -#: build/api.py:297 build/api.py:300 part/api.py:217 stock/api.py:961 +#: build/api.py:297 build/api.py:300 part/api.py:212 stock/api.py:961 msgid "Exclude Tree" msgstr "Vyloučit strom" -#: build/api.py:405 +#: build/api.py:411 msgid "Build must be cancelled before it can be deleted" msgstr "Sestavení musí být zrušeno před odstraněním" -#: build/api.py:449 build/serializers.py:1374 part/models.py:4402 +#: build/api.py:455 build/serializers.py:1382 part/models.py:4027 msgid "Consumable" msgstr "Spotřební materiál" -#: build/api.py:452 build/serializers.py:1377 part/models.py:4396 +#: build/api.py:458 build/serializers.py:1385 part/models.py:4021 msgid "Optional" msgstr "Volitelné" -#: build/api.py:455 build/serializers.py:1415 common/setting/system.py:456 -#: part/models.py:1202 part/serializers.py:1714 part/serializers.py:1725 +#: build/api.py:461 build/serializers.py:1423 common/setting/system.py:456 +#: part/models.py:1290 part/serializers.py:1579 part/serializers.py:1590 #: stock/api.py:639 msgid "Assembly" msgstr "Sestava" -#: build/api.py:458 +#: build/api.py:464 msgid "Tracked" msgstr "Sledováno" -#: build/api.py:461 build/serializers.py:1380 part/models.py:1220 +#: build/api.py:467 build/serializers.py:1388 part/models.py:1308 msgid "Testable" msgstr "Testovatelné" -#: build/api.py:471 order/api.py:993 order/api.py:1363 +#: build/api.py:477 order/api.py:998 order/api.py:1368 msgid "Order Outstanding" msgstr "Objednávka nevyřízená" -#: build/api.py:481 build/serializers.py:1464 order/api.py:952 +#: build/api.py:487 build/serializers.py:1472 order/api.py:957 msgid "Allocated" msgstr "Přiděleno" -#: build/api.py:490 build/models.py:1672 build/serializers.py:1393 +#: build/api.py:496 build/models.py:1673 build/serializers.py:1401 msgid "Consumed" msgstr "Spotřebováno" -#: build/api.py:499 company/models.py:912 company/serializers.py:440 +#: build/api.py:505 company/models.py:866 company/serializers.py:467 #: templates/email/build_order_required_stock.html:19 #: templates/email/low_stock_notification.html:17 #: templates/email/part_event_notification.html:18 msgid "Available" msgstr "Dostupné" -#: build/api.py:523 build/serializers.py:1466 company/serializers.py:437 -#: order/serializers.py:1281 part/serializers.py:959 part/serializers.py:1306 -#: part/serializers.py:1761 +#: build/api.py:529 build/serializers.py:1474 company/serializers.py:464 +#: order/serializers.py:1295 part/serializers.py:844 part/serializers.py:1171 +#: part/serializers.py:1626 msgid "On Order" msgstr "Na objednávku" -#: build/api.py:868 build/models.py:117 order/models.py:1974 +#: build/api.py:874 build/models.py:118 order/models.py:1975 #: report/templates/report/inventree_build_order_report.html:105 #: stock/serializers.py:93 templates/email/build_order_completed.html:16 #: templates/email/overdue_build_order.html:15 msgid "Build Order" msgstr "Výrobní příkaz" -#: build/api.py:882 build/api.py:886 build/serializers.py:372 -#: build/serializers.py:497 build/serializers.py:567 build/serializers.py:1251 -#: build/serializers.py:1256 order/api.py:1234 order/api.py:1239 -#: order/serializers.py:833 order/serializers.py:973 order/serializers.py:2042 +#: build/api.py:888 build/api.py:892 build/serializers.py:380 +#: build/serializers.py:505 build/serializers.py:575 build/serializers.py:1259 +#: build/serializers.py:1264 order/api.py:1239 order/api.py:1244 +#: order/serializers.py:844 order/serializers.py:984 order/serializers.py:2059 #: stock/api.py:987 stock/serializers.py:111 stock/serializers.py:601 #: stock/serializers.py:710 stock/serializers.py:888 stock/serializers.py:1418 -#: stock/serializers.py:1731 stock/serializers.py:1780 +#: stock/serializers.py:1739 stock/serializers.py:1788 #: templates/email/stale_stock_notification.html:18 users/models.py:549 msgid "Location" msgstr "Lokace" -#: build/api.py:894 +#: build/api.py:900 msgid "Output" msgstr "Výstup" -#: build/api.py:896 +#: build/api.py:902 msgid "Filter by output stock item ID. Use 'null' to find uninstalled build items." msgstr "Filtrovat podle ID výstupní položky zásoby. Použijte 'null' pro nalezení odinstalovaných položek sestavení." -#: build/models.py:118 users/ruleset.py:31 +#: build/models.py:119 users/ruleset.py:31 msgid "Build Orders" msgstr "Výrobní příkazy" -#: build/models.py:168 +#: build/models.py:169 msgid "Assembly BOM has not been validated" msgstr "Kusovník sestavy ještě nebyl schválen" -#: build/models.py:175 +#: build/models.py:176 msgid "Build order cannot be created for an inactive part" msgstr "Výrobní příkaz nesmí být vytvořen pro neaktivní díl" -#: build/models.py:182 +#: build/models.py:183 msgid "Build order cannot be created for an unlocked part" msgstr "Výrobní příkaz nemůže být vytvořen pro odemčený díl" -#: build/models.py:200 +#: build/models.py:201 msgid "Build orders can only be externally fulfilled for purchaseable parts" msgstr "Výrobní příkaz může být externě splněn pouze pro nakupovatelné díly" -#: build/models.py:207 order/models.py:369 +#: build/models.py:208 order/models.py:370 msgid "Responsible user or group must be specified" msgstr "Musí být specifikován odpovědný uživatel nebo skupina" -#: build/models.py:212 +#: build/models.py:213 msgid "Build order part cannot be changed" msgstr "Díl výrobního příkazu nelze změnit" -#: build/models.py:217 order/models.py:382 +#: build/models.py:218 order/models.py:383 msgid "Target date must be after start date" msgstr "Cílové datum musí být po datu zahájení" -#: build/models.py:245 +#: build/models.py:246 msgid "Build Order Reference" msgstr "Referenční číslo výrobního příkazu" -#: build/models.py:246 build/serializers.py:1371 order/models.py:614 -#: order/models.py:1311 order/models.py:1773 order/models.py:2712 -#: part/models.py:4442 +#: build/models.py:247 build/serializers.py:1379 order/models.py:615 +#: order/models.py:1312 order/models.py:1774 order/models.py:2713 +#: part/models.py:4067 #: report/templates/report/inventree_bill_of_materials_report.html:139 #: report/templates/report/inventree_purchase_order_report.html:35 #: report/templates/report/inventree_return_order_report.html:26 @@ -773,230 +789,230 @@ msgstr "Referenční číslo výrobního příkazu" msgid "Reference" msgstr "Reference" -#: build/models.py:255 +#: build/models.py:256 msgid "Brief description of the build (optional)" msgstr "Stručný popis sestavení (nepovinné)" -#: build/models.py:265 +#: build/models.py:266 msgid "BuildOrder to which this build is allocated" msgstr "Výrobní příkaz, kterému je tento výrobní příkaz přidělen" -#: build/models.py:274 +#: build/models.py:275 msgid "Select part to build" msgstr "Vyber téma, které chceš stavět" -#: build/models.py:279 +#: build/models.py:280 msgid "Sales Order Reference" msgstr "Referenční číslo prodejní objednávky" -#: build/models.py:284 +#: build/models.py:285 msgid "SalesOrder to which this build is allocated" msgstr "Prodejní objednávka, které je tento výrobní příkaz přidělen" -#: build/models.py:289 build/serializers.py:1097 +#: build/models.py:290 build/serializers.py:1105 msgid "Source Location" msgstr "Zdrojové umístění" -#: build/models.py:295 +#: build/models.py:296 msgid "Select location to take stock from for this build (leave blank to take from any stock location)" msgstr "Vyberte lokaci, ze které chcete brát zásoby pro sestavu (nechte prázdné, chcete-li brát zásoby z libovolné lokace)" -#: build/models.py:301 +#: build/models.py:302 msgid "External Build" msgstr "Externí sestavení" -#: build/models.py:302 +#: build/models.py:303 msgid "This build order is fulfilled externally" msgstr "Tento výrobní příkaz je plněn externě" -#: build/models.py:307 +#: build/models.py:308 msgid "Destination Location" msgstr "Cílová lokace" -#: build/models.py:312 +#: build/models.py:313 msgid "Select location where the completed items will be stored" msgstr "Vyberte lokaci, kde budou dokončené položky uloženy" -#: build/models.py:316 +#: build/models.py:317 msgid "Build Quantity" msgstr "Množství sestav" -#: build/models.py:319 +#: build/models.py:320 msgid "Number of stock items to build" msgstr "Počet skladových položek k sestavení" -#: build/models.py:323 +#: build/models.py:324 msgid "Completed items" msgstr "Dokončené položky" -#: build/models.py:325 +#: build/models.py:326 msgid "Number of stock items which have been completed" msgstr "Počet skladových položek, které byly dokončeny" -#: build/models.py:329 +#: build/models.py:330 msgid "Build Status" msgstr "Stav sestavení" -#: build/models.py:334 +#: build/models.py:335 msgid "Build status code" msgstr "Stavový kód sestavení" -#: build/models.py:343 build/serializers.py:359 order/serializers.py:849 +#: build/models.py:344 build/serializers.py:367 order/serializers.py:860 #: stock/models.py:1100 stock/serializers.py:85 stock/serializers.py:1591 msgid "Batch Code" msgstr "Kód dávky" -#: build/models.py:347 build/serializers.py:360 +#: build/models.py:348 build/serializers.py:368 msgid "Batch code for this build output" msgstr "Dávkový kód pro tento výstup sestavení" -#: build/models.py:351 order/models.py:479 order/serializers.py:186 -#: part/models.py:1283 +#: build/models.py:352 order/models.py:480 order/serializers.py:193 +#: part/models.py:1371 msgid "Creation Date" msgstr "Datum vytvoření" -#: build/models.py:357 +#: build/models.py:358 msgid "Build start date" msgstr "Datum zahájení sestavení" -#: build/models.py:358 +#: build/models.py:359 msgid "Scheduled start date for this build order" msgstr "Plánované datum zahájení této objednávky" -#: build/models.py:364 +#: build/models.py:365 msgid "Target completion date" msgstr "Cílové datum dokončení" -#: build/models.py:366 +#: build/models.py:367 msgid "Target date for build completion. Build will be overdue after this date." msgstr "Cílové datum dokončení sestavení. Sestavení bude po tomto datu v prodlení." -#: build/models.py:371 order/models.py:667 order/models.py:2751 +#: build/models.py:372 order/models.py:668 order/models.py:2752 msgid "Completion Date" msgstr "Datum dokončení" -#: build/models.py:379 +#: build/models.py:380 msgid "completed by" msgstr "dokončil" -#: build/models.py:388 +#: build/models.py:389 msgid "Issued by" msgstr "Vystavil" -#: build/models.py:389 +#: build/models.py:390 msgid "User who issued this build order" msgstr "Uživatel, který vystavil tento výrobní příkaz" -#: build/models.py:398 common/models.py:180 order/api.py:179 -#: order/models.py:504 part/models.py:1300 +#: build/models.py:399 common/models.py:184 order/api.py:184 +#: order/models.py:505 part/models.py:1388 #: report/templates/report/inventree_build_order_report.html:158 msgid "Responsible" msgstr "Odpovědný" -#: build/models.py:399 +#: build/models.py:400 msgid "User or group responsible for this build order" msgstr "Uživatel nebo skupina odpovědná za tento výrobní příkaz" -#: build/models.py:404 stock/models.py:1093 +#: build/models.py:405 stock/models.py:1093 msgid "External Link" msgstr "Externí odkaz" -#: build/models.py:406 common/models.py:1984 part/models.py:1114 +#: build/models.py:407 common/models.py:1990 part/models.py:1202 #: stock/models.py:1095 msgid "Link to external URL" msgstr "Odkaz na externí URL" -#: build/models.py:411 +#: build/models.py:412 msgid "Build Priority" msgstr "Priorita sestavení" -#: build/models.py:414 +#: build/models.py:415 msgid "Priority of this build order" msgstr "Priorita tohoto výrobního příkazu" -#: build/models.py:422 common/models.py:150 common/models.py:164 -#: order/api.py:165 order/models.py:451 order/models.py:1805 +#: build/models.py:423 common/models.py:154 common/models.py:168 +#: order/api.py:170 order/models.py:452 order/models.py:1806 msgid "Project Code" msgstr "Kód projektu" -#: build/models.py:423 +#: build/models.py:424 msgid "Project code for this build order" msgstr "Kód projektu pro tento výrobní příkaz" -#: build/models.py:676 +#: build/models.py:677 msgid "Cannot complete build order with open child builds" msgstr "Nelze dokončit výrobní příkaz s otevřenými podobjednávkami" -#: build/models.py:681 +#: build/models.py:682 msgid "Cannot complete build order with incomplete outputs" msgstr "Nelze dokončit výrobní příkaz s neúplnými výstupy" -#: build/models.py:700 build/models.py:830 +#: build/models.py:701 build/models.py:831 msgid "Failed to offload task to complete build allocations" msgstr "Nepodařilo se uvolnit úlohu pro dokončení přidělení sestavy" -#: build/models.py:723 +#: build/models.py:724 #, python-brace-format msgid "Build order {build} has been completed" msgstr "Výrobní příkaz {build} byl dokončen" -#: build/models.py:729 +#: build/models.py:730 msgid "A build order has been completed" msgstr "Výrobní příkaz byl dokončen" -#: build/models.py:911 build/serializers.py:407 +#: build/models.py:912 build/serializers.py:415 msgid "Serial numbers must be provided for trackable parts" msgstr "U sledovatelných dílů musí být uvedena sériová čísla" -#: build/models.py:1042 build/models.py:1129 +#: build/models.py:1043 build/models.py:1130 msgid "No build output specified" msgstr "Nebyl specifikováno žádný výstup sestavení" -#: build/models.py:1045 +#: build/models.py:1046 msgid "Build output is already completed" msgstr "Výstup sestavení je již dokončen" -#: build/models.py:1048 +#: build/models.py:1049 msgid "Build output does not match Build Order" msgstr "Výstup neodpovídá výrobnímu příkazu" -#: build/models.py:1136 build/models.py:1234 build/serializers.py:285 -#: build/serializers.py:335 build/serializers.py:965 build/serializers.py:1739 -#: order/models.py:717 order/serializers.py:658 order/serializers.py:844 -#: part/serializers.py:1708 stock/models.py:940 stock/models.py:1430 +#: build/models.py:1137 build/models.py:1235 build/serializers.py:293 +#: build/serializers.py:343 build/serializers.py:973 build/serializers.py:1747 +#: order/models.py:718 order/serializers.py:669 order/serializers.py:855 +#: part/serializers.py:1573 stock/models.py:940 stock/models.py:1430 #: stock/models.py:1878 stock/serializers.py:688 stock/serializers.py:1580 msgid "Quantity must be greater than zero" msgstr "Množství musí být vyšší než nula" -#: build/models.py:1140 build/models.py:1239 build/serializers.py:290 +#: build/models.py:1141 build/models.py:1240 build/serializers.py:298 msgid "Quantity cannot be greater than the output quantity" msgstr "Množství nemůže být větší než výstupní množství" -#: build/models.py:1214 build/serializers.py:606 +#: build/models.py:1215 build/serializers.py:614 msgid "Build output has not passed all required tests" msgstr "Výstup výroby neprošel všemi požadovanými testy" -#: build/models.py:1217 build/serializers.py:601 +#: build/models.py:1218 build/serializers.py:609 #, python-brace-format msgid "Build output {serial} has not passed all required tests" msgstr "Výstup sestavy {serial} neprošel všemi požadavky" -#: build/models.py:1229 +#: build/models.py:1230 msgid "Cannot partially complete a build output with allocated items" msgstr "Nelze částečně dokončit výrobní příkaz s přiřazenými položkami" -#: build/models.py:1627 +#: build/models.py:1628 msgid "Build Order Line Item" msgstr "Řádková položka výrobního příkazu" -#: build/models.py:1651 +#: build/models.py:1652 msgid "Build object" msgstr "Vytvořit objekt" -#: build/models.py:1663 build/models.py:1974 build/serializers.py:271 -#: build/serializers.py:320 build/serializers.py:1392 common/models.py:1340 -#: order/models.py:1756 order/models.py:2597 order/serializers.py:1696 -#: order/serializers.py:2124 part/models.py:3453 part/models.py:4390 +#: build/models.py:1664 build/models.py:1975 build/serializers.py:279 +#: build/serializers.py:328 build/serializers.py:1400 common/models.py:1344 +#: order/models.py:1757 order/models.py:2598 order/serializers.py:1710 +#: order/serializers.py:2141 part/models.py:3517 part/models.py:4015 #: report/templates/report/inventree_bill_of_materials_report.html:138 #: report/templates/report/inventree_build_order_report.html:113 #: report/templates/report/inventree_purchase_order_report.html:36 @@ -1014,427 +1030,427 @@ msgstr "Vytvořit objekt" msgid "Quantity" msgstr "Množství" -#: build/models.py:1664 +#: build/models.py:1665 msgid "Required quantity for build order" msgstr "Vyžadované množství pro výrobní příkaz" -#: build/models.py:1673 +#: build/models.py:1674 msgid "Quantity of consumed stock" msgstr "Množství spotřebovaných zásob" -#: build/models.py:1772 +#: build/models.py:1773 msgid "Build item must specify a build output, as master part is marked as trackable" msgstr "Položka sestavení musí specifikovat výstup sestavení, protože hlavní díl je označen jako sledovatelný" -#: build/models.py:1783 +#: build/models.py:1784 #, python-brace-format msgid "Allocated quantity ({q}) must not exceed available stock quantity ({a})" msgstr "Zabrané množství ({q}) nesmí překročit dostupné skladové množství ({a})" -#: build/models.py:1804 order/models.py:2546 +#: build/models.py:1805 order/models.py:2547 msgid "Stock item is over-allocated" msgstr "Skladová položka je nadměrně zabrána" -#: build/models.py:1809 order/models.py:2549 +#: build/models.py:1810 order/models.py:2550 msgid "Allocation quantity must be greater than zero" msgstr "Zabrané množství musí být větší než nula" -#: build/models.py:1815 +#: build/models.py:1816 msgid "Quantity must be 1 for serialized stock" msgstr "Množství musí být 1 pro zřetězený sklad" -#: build/models.py:1875 +#: build/models.py:1876 msgid "Selected stock item does not match BOM line" msgstr "Vybraná skladová položka neodpovídá řádku kusovníku" -#: build/models.py:1913 +#: build/models.py:1914 msgid "Allocated quantity exceeds available stock quantity" msgstr "Přidělené množství přesahuje dostupné množství na skladě" -#: build/models.py:1964 build/serializers.py:948 build/serializers.py:1240 -#: order/serializers.py:1533 order/serializers.py:1554 +#: build/models.py:1965 build/serializers.py:956 build/serializers.py:1248 +#: order/serializers.py:1547 order/serializers.py:1568 #: report/templates/report/inventree_sales_order_shipment_report.html:29 #: stock/api.py:1404 stock/models.py:456 stock/serializers.py:102 #: stock/serializers.py:800 stock/serializers.py:1274 stock/serializers.py:1386 msgid "Stock Item" msgstr "Skladové položky" -#: build/models.py:1965 +#: build/models.py:1966 msgid "Source stock item" msgstr "Zdrojová skladová položka" -#: build/models.py:1975 +#: build/models.py:1976 msgid "Stock quantity to allocate to build" msgstr "Skladové množství pro sestavení" -#: build/models.py:1984 +#: build/models.py:1985 msgid "Install into" msgstr "Instalovat do" -#: build/models.py:1985 +#: build/models.py:1986 msgid "Destination stock item" msgstr "Cílová skladová položka" -#: build/serializers.py:118 +#: build/serializers.py:120 msgid "Build Level" msgstr "Úroveň sestavení" -#: build/serializers.py:128 +#: build/serializers.py:136 msgid "Part Name" msgstr "Název dílu" -#: build/serializers.py:153 +#: build/serializers.py:161 msgid "Project Code Label" msgstr "Popisek kódu projektu" -#: build/serializers.py:219 build/serializers.py:974 +#: build/serializers.py:227 build/serializers.py:982 msgid "Build Output" msgstr "Vytvořit výstup" -#: build/serializers.py:231 +#: build/serializers.py:239 msgid "Build output does not match the parent build" msgstr "Vytvořený výstup neodpovídá nadřazenému sestavení" -#: build/serializers.py:235 +#: build/serializers.py:243 msgid "Output part does not match BuildOrder part" msgstr "Výstupní díl se neshoduje s dílem výrobního příkazu" -#: build/serializers.py:239 +#: build/serializers.py:247 msgid "This build output has already been completed" msgstr "Výstup sestavení je již dokončen" -#: build/serializers.py:253 +#: build/serializers.py:261 msgid "This build output is not fully allocated" msgstr "Tento stavební výstup není plně přiřazen" -#: build/serializers.py:272 build/serializers.py:321 +#: build/serializers.py:280 build/serializers.py:329 msgid "Enter quantity for build output" msgstr "Zadejte množství pro výstup sestavení" -#: build/serializers.py:343 +#: build/serializers.py:351 msgid "Integer quantity required for trackable parts" msgstr "Celé množství požadované pro sledovatelné díly" -#: build/serializers.py:349 +#: build/serializers.py:357 msgid "Integer quantity required, as the bill of materials contains trackable parts" msgstr "Je vyžadována celočíselná hodnota množství, protože kusovník obsahuje sledovatelné díly" -#: build/serializers.py:366 order/serializers.py:865 order/serializers.py:1700 +#: build/serializers.py:374 order/serializers.py:876 order/serializers.py:1714 #: stock/serializers.py:699 msgid "Serial Numbers" msgstr "Sériová čísla" -#: build/serializers.py:367 +#: build/serializers.py:375 msgid "Enter serial numbers for build outputs" msgstr "Zadejte sériová čísla pro sestavení výstupů" -#: build/serializers.py:373 +#: build/serializers.py:381 msgid "Stock location for build output" msgstr "Skladové umístění pro výstup sestavy" -#: build/serializers.py:388 +#: build/serializers.py:396 msgid "Auto Allocate Serial Numbers" msgstr "Automaticky zvolit sériová čísla" -#: build/serializers.py:390 +#: build/serializers.py:398 msgid "Automatically allocate required items with matching serial numbers" msgstr "Automaticky přidělit požadované položky s odpovídajícími sériovými čísly" -#: build/serializers.py:423 order/serializers.py:951 stock/api.py:1183 +#: build/serializers.py:431 order/serializers.py:962 stock/api.py:1183 #: stock/models.py:1901 msgid "The following serial numbers already exist or are invalid" msgstr "Následující sériová čísla již existují nebo jsou neplatná" -#: build/serializers.py:465 build/serializers.py:521 build/serializers.py:613 +#: build/serializers.py:473 build/serializers.py:529 build/serializers.py:621 msgid "A list of build outputs must be provided" msgstr "Musí být uveden seznam výstupů sestavy" -#: build/serializers.py:498 +#: build/serializers.py:506 msgid "Stock location for scrapped outputs" msgstr "Skladové umístění pro sešrotované výstupy" -#: build/serializers.py:504 +#: build/serializers.py:512 msgid "Discard Allocations" msgstr "Zahodit alokace" -#: build/serializers.py:505 +#: build/serializers.py:513 msgid "Discard any stock allocations for scrapped outputs" msgstr "Vyřadit všechny přidělené zásoby pro vyřazené výstupy" -#: build/serializers.py:510 +#: build/serializers.py:518 msgid "Reason for scrapping build output(s)" msgstr "Důvod vyřazení výstupu(ů) sestavy" -#: build/serializers.py:568 +#: build/serializers.py:576 msgid "Location for completed build outputs" msgstr "Umístění dokončených výstupů sestavy" -#: build/serializers.py:576 +#: build/serializers.py:584 msgid "Accept Incomplete Allocation" msgstr "Přijmout neúplné přidělení" -#: build/serializers.py:577 +#: build/serializers.py:585 msgid "Complete outputs if stock has not been fully allocated" msgstr "Dokončit výstupy pokud zásoby nebyly plně přiděleny" -#: build/serializers.py:702 +#: build/serializers.py:710 msgid "Consume Allocated Stock" msgstr "Spotřebovat přidělené zásoby" -#: build/serializers.py:703 +#: build/serializers.py:711 msgid "Consume any stock which has already been allocated to this build" msgstr "Spotřebovat všechny zásoby, které již byly přiděleny této sestavě" -#: build/serializers.py:709 +#: build/serializers.py:717 msgid "Remove Incomplete Outputs" msgstr "Odstranit neúplné výstupy" -#: build/serializers.py:710 +#: build/serializers.py:718 msgid "Delete any build outputs which have not been completed" msgstr "Odstranit všechny výstupy sestavy, které nebyly dokončeny" -#: build/serializers.py:737 +#: build/serializers.py:745 msgid "Not permitted" msgstr "Není povoleno" -#: build/serializers.py:738 +#: build/serializers.py:746 msgid "Accept as consumed by this build order" msgstr "Přijmout jako spotřebované tímto výrobním příkazem" -#: build/serializers.py:739 +#: build/serializers.py:747 msgid "Deallocate before completing this build order" msgstr "Uvolnit před dokončením tohoto výrobního příkazu" -#: build/serializers.py:766 +#: build/serializers.py:774 msgid "Overallocated Stock" msgstr "Nadměrně přidělené zásoby" -#: build/serializers.py:769 +#: build/serializers.py:777 msgid "How do you want to handle extra stock items assigned to the build order" msgstr "Jak chcete zacházet s extra skladovými položkami přiřazenými k tomuto výrobnímu příkazu" -#: build/serializers.py:780 +#: build/serializers.py:788 msgid "Some stock items have been overallocated" msgstr "Některé skladové položky byly nadměrně přiděleny" -#: build/serializers.py:785 +#: build/serializers.py:793 msgid "Accept Unallocated" msgstr "Přijmout nepřidělené" -#: build/serializers.py:787 +#: build/serializers.py:795 msgid "Accept that stock items have not been fully allocated to this build order" msgstr "Přijmout, že skladové položky nebyly plně přiřazeny k tomuto výrobnímu příkazu" -#: build/serializers.py:798 +#: build/serializers.py:806 msgid "Required stock has not been fully allocated" msgstr "Požadované zásoby nebyly plně přiděleny" -#: build/serializers.py:803 order/serializers.py:524 order/serializers.py:1601 +#: build/serializers.py:811 order/serializers.py:535 order/serializers.py:1615 msgid "Accept Incomplete" msgstr "Přijmout neúplné" -#: build/serializers.py:805 +#: build/serializers.py:813 msgid "Accept that the required number of build outputs have not been completed" msgstr "Přijmout, že nebyl dokončen požadovaný počet výstupů sestavy" -#: build/serializers.py:816 +#: build/serializers.py:824 msgid "Required build quantity has not been completed" msgstr "Požadované množství sestavy nebylo dokončeno" -#: build/serializers.py:828 +#: build/serializers.py:836 msgid "Build order has open child build orders" msgstr "Výrobní příkaz má otevřené podpříkazy" -#: build/serializers.py:831 +#: build/serializers.py:839 msgid "Build order must be in production state" msgstr "Výrobní příkaz musí být ve stavu produkce" -#: build/serializers.py:834 +#: build/serializers.py:842 msgid "Build order has incomplete outputs" msgstr "Výrobní příkaz má neúplné výstupy" -#: build/serializers.py:873 +#: build/serializers.py:881 msgid "Build Line" msgstr "Linka sestavy" -#: build/serializers.py:881 +#: build/serializers.py:889 msgid "Build output" msgstr "Výstup sestavy" -#: build/serializers.py:889 +#: build/serializers.py:897 msgid "Build output must point to the same build" msgstr "Výstup sestavy musí odkazovat na stejnou sestavu" -#: build/serializers.py:920 +#: build/serializers.py:928 msgid "Build Line Item" msgstr "Řádková položka sestavy" -#: build/serializers.py:938 +#: build/serializers.py:946 msgid "bom_item.part must point to the same part as the build order" msgstr "bom_item.part musí ukazovat na stejný díl jako výrobní příkaz" -#: build/serializers.py:954 stock/serializers.py:1287 +#: build/serializers.py:962 stock/serializers.py:1287 msgid "Item must be in stock" msgstr "Položka musí být skladem" -#: build/serializers.py:997 order/serializers.py:1587 +#: build/serializers.py:1005 order/serializers.py:1601 #, python-brace-format msgid "Available quantity ({q}) exceeded" msgstr "Dostupné množství ({q}) překročeno" -#: build/serializers.py:1003 +#: build/serializers.py:1011 msgid "Build output must be specified for allocation of tracked parts" msgstr "Pro přidělení sledovaných dílů musí být zadán výstup sestavy" -#: build/serializers.py:1011 +#: build/serializers.py:1019 msgid "Build output cannot be specified for allocation of untracked parts" msgstr "Výstup sestavy nelze zadat pro přidělení nesledovaných dílů" -#: build/serializers.py:1035 order/serializers.py:1860 +#: build/serializers.py:1043 order/serializers.py:1874 msgid "Allocation items must be provided" msgstr "Položky přidělení musí být poskytnuty" -#: build/serializers.py:1099 +#: build/serializers.py:1107 msgid "Stock location where parts are to be sourced (leave blank to take from any location)" msgstr "Skladové místo, odkud se mají díly odebírat (ponechte prázdné, pokud chcete odebírat z libovolného místa)" -#: build/serializers.py:1108 +#: build/serializers.py:1116 msgid "Exclude Location" msgstr "Vynechat lokace" -#: build/serializers.py:1109 +#: build/serializers.py:1117 msgid "Exclude stock items from this selected location" msgstr "Vyloučit skladové položky z tohoto vybraného umístění" -#: build/serializers.py:1114 +#: build/serializers.py:1122 msgid "Interchangeable Stock" msgstr "Zaměnitelné zásoby" -#: build/serializers.py:1115 +#: build/serializers.py:1123 msgid "Stock items in multiple locations can be used interchangeably" msgstr "Skladové položky na více místech lze používat zaměnitelně" -#: build/serializers.py:1120 +#: build/serializers.py:1128 msgid "Substitute Stock" msgstr "Náhradní zásoby" -#: build/serializers.py:1121 +#: build/serializers.py:1129 msgid "Allow allocation of substitute parts" msgstr "Povolit přidělování náhradních dílů" -#: build/serializers.py:1126 +#: build/serializers.py:1134 msgid "Optional Items" msgstr "Volitelné položky" -#: build/serializers.py:1127 +#: build/serializers.py:1135 msgid "Allocate optional BOM items to build order" msgstr "Přiřazení volitelných položek kusovníku k objednávce sestavy" -#: build/serializers.py:1148 +#: build/serializers.py:1156 msgid "Failed to start auto-allocation task" msgstr "Nepodařilo se spustit úlohu automatického přidělování" -#: build/serializers.py:1200 +#: build/serializers.py:1208 msgid "BOM Reference" msgstr "Reference v kusovníku" -#: build/serializers.py:1206 +#: build/serializers.py:1214 msgid "BOM Part ID" msgstr "ID dílu kusovníku" -#: build/serializers.py:1213 +#: build/serializers.py:1221 msgid "BOM Part Name" msgstr "Název dílu kusovníku" -#: build/serializers.py:1266 build/serializers.py:1449 +#: build/serializers.py:1274 build/serializers.py:1457 msgid "Build" msgstr "Sestavení" -#: build/serializers.py:1276 company/models.py:685 order/api.py:311 -#: order/api.py:316 order/api.py:543 order/serializers.py:650 +#: build/serializers.py:1284 company/models.py:639 order/api.py:316 +#: order/api.py:321 order/api.py:549 order/serializers.py:661 #: stock/models.py:1036 stock/serializers.py:579 msgid "Supplier Part" msgstr "Díl dodavatele" -#: build/serializers.py:1284 stock/serializers.py:620 +#: build/serializers.py:1292 stock/serializers.py:620 msgid "Allocated Quantity" msgstr "Přidělené množství" -#: build/serializers.py:1351 +#: build/serializers.py:1359 msgid "Build Reference" msgstr "Reference sestavení" -#: build/serializers.py:1361 +#: build/serializers.py:1369 msgid "Part Category Name" msgstr "Název kategorie dílů" -#: build/serializers.py:1383 common/setting/system.py:480 part/models.py:1214 +#: build/serializers.py:1391 common/setting/system.py:480 part/models.py:1302 msgid "Trackable" msgstr "Sledovatelné" -#: build/serializers.py:1386 +#: build/serializers.py:1394 msgid "Inherited" msgstr "Zděděno" -#: build/serializers.py:1389 part/models.py:4475 +#: build/serializers.py:1397 part/models.py:4100 msgid "Allow Variants" msgstr "Povolit varianty" -#: build/serializers.py:1395 build/serializers.py:1400 part/models.py:4208 -#: part/models.py:4779 stock/api.py:882 +#: build/serializers.py:1403 build/serializers.py:1408 part/models.py:3833 +#: part/models.py:4404 stock/api.py:882 msgid "BOM Item" msgstr "Položka kusovníku" -#: build/serializers.py:1467 order/serializers.py:1282 part/serializers.py:1310 -#: part/serializers.py:1765 +#: build/serializers.py:1475 order/serializers.py:1296 part/serializers.py:1175 +#: part/serializers.py:1630 msgid "In Production" msgstr "Ve výrobě" -#: build/serializers.py:1469 part/serializers.py:950 part/serializers.py:1314 +#: build/serializers.py:1477 part/serializers.py:835 part/serializers.py:1179 msgid "Scheduled to Build" msgstr "Naplánováno na sestavení" -#: build/serializers.py:1472 part/serializers.py:987 +#: build/serializers.py:1480 part/serializers.py:872 msgid "External Stock" msgstr "Externí zásoby" -#: build/serializers.py:1473 part/serializers.py:1300 part/serializers.py:1808 +#: build/serializers.py:1481 part/serializers.py:1165 part/serializers.py:1673 msgid "Available Stock" msgstr "Dostupné zásoby" -#: build/serializers.py:1475 +#: build/serializers.py:1483 msgid "Available Substitute Stock" msgstr "Dostupné náhradní zásoby" -#: build/serializers.py:1478 +#: build/serializers.py:1486 msgid "Available Variant Stock" msgstr "Dostupná varianta skladu" -#: build/serializers.py:1752 +#: build/serializers.py:1760 msgid "Consumed quantity exceeds allocated quantity" msgstr "Spotřebované množství přesahuje přidělené množství" -#: build/serializers.py:1789 +#: build/serializers.py:1797 msgid "Optional notes for the stock consumption" msgstr "Nepovinné poznámky ke spotřebě zásob" -#: build/serializers.py:1806 +#: build/serializers.py:1814 msgid "Build item must point to the correct build order" msgstr "Sestavení položky musí odkazovat na správný výrobní příkaz" -#: build/serializers.py:1811 +#: build/serializers.py:1819 msgid "Duplicate build item allocation" msgstr "Duplikovat přidělení položky sestavení" -#: build/serializers.py:1829 +#: build/serializers.py:1837 msgid "Build line must point to the correct build order" msgstr "Výrobní linka musí odkazovat na správný výrobní příkaz" -#: build/serializers.py:1834 +#: build/serializers.py:1842 msgid "Duplicate build line allocation" msgstr "Duplikovat přiřazení výrobní linky" -#: build/serializers.py:1846 +#: build/serializers.py:1854 msgid "At least one item or line must be provided" msgstr "Musí být poskytnuta alespoň jedna linka nebo předmět" @@ -1482,702 +1498,826 @@ msgstr "Opožděný výrobní příkaz" msgid "Build order {bo} is now overdue" msgstr "Objednávka sestavy {bo} je nyní opožděná" -#: common/api.py:694 +#: common/api.py:701 msgid "Is Link" msgstr "Je odkaz" -#: common/api.py:702 +#: common/api.py:709 msgid "Is File" msgstr "Je soubor" -#: common/api.py:745 +#: common/api.py:756 msgid "User does not have permission to delete these attachments" msgstr "Uživatel nemá oprávnění k odstranění těchto příloh" -#: common/api.py:762 +#: common/api.py:769 msgid "User does not have permission to delete this attachment" msgstr "Uživatel nemá oprávnění k odstranění této přílohy" -#: common/currency.py:122 +#: common/currency.py:130 msgid "Invalid currency code" msgstr "Neplatný kód měny" -#: common/currency.py:124 +#: common/currency.py:132 msgid "Duplicate currency code" msgstr "Duplicitní kód měny" -#: common/currency.py:129 +#: common/currency.py:137 msgid "No valid currency codes provided" msgstr "Nejsou uvedeny žádné platné kódy měn" -#: common/currency.py:146 +#: common/currency.py:154 msgid "No plugin" msgstr "Žádný plugin" -#: common/models.py:101 common/models.py:126 common/models.py:2729 +#: common/models.py:105 common/models.py:130 common/models.py:3150 msgid "Updated" msgstr "Aktualizováno" -#: common/models.py:102 common/models.py:127 +#: common/models.py:106 common/models.py:131 msgid "Timestamp of last update" msgstr "Časové razítko poslední aktualizace" -#: common/models.py:139 +#: common/models.py:143 msgid "Update By" msgstr "Aktualizoval/a" -#: common/models.py:140 +#: common/models.py:144 msgid "User who last updated this object" msgstr "Uživatel, který naposledy aktualizoval tento objekt" -#: common/models.py:165 +#: common/models.py:169 msgid "Unique project code" msgstr "Jedinečný kód projektu" -#: common/models.py:172 +#: common/models.py:176 msgid "Project description" msgstr "Popis projektu" -#: common/models.py:181 +#: common/models.py:185 msgid "User or group responsible for this project" msgstr "Uživatel nebo skupina odpovědná za tento projekt" -#: common/models.py:771 common/models.py:1272 common/models.py:1310 +#: common/models.py:775 common/models.py:1276 common/models.py:1314 msgid "Settings key" msgstr "Tlačítko nastavení" -#: common/models.py:775 +#: common/models.py:779 msgid "Settings value" msgstr "Hodnota nastavení" -#: common/models.py:830 +#: common/models.py:834 msgid "Chosen value is not a valid option" msgstr "Zvolená hodnota není platnou možností" -#: common/models.py:846 +#: common/models.py:850 msgid "Value must be a boolean value" msgstr "Hodnota musí být logická hodnota" -#: common/models.py:854 +#: common/models.py:858 msgid "Value must be an integer value" msgstr "Hodnota musí být celé číslo" -#: common/models.py:862 +#: common/models.py:866 msgid "Value must be a valid number" msgstr "Hodnota musí být platné číslo" -#: common/models.py:887 +#: common/models.py:891 msgid "Value does not pass validation checks" msgstr "Hodnota neprošla kontrolou platnosti" -#: common/models.py:909 +#: common/models.py:913 msgid "Key string must be unique" msgstr "Klíčový text musí být jedinečný" -#: common/models.py:1318 common/models.py:1319 common/models.py:1423 -#: common/models.py:1424 common/models.py:1669 common/models.py:1670 -#: common/models.py:2000 common/models.py:2001 common/models.py:2382 -#: importer/models.py:100 part/models.py:3547 part/models.py:3575 +#: common/models.py:1322 common/models.py:1323 common/models.py:1427 +#: common/models.py:1428 common/models.py:1673 common/models.py:1674 +#: common/models.py:2006 common/models.py:2007 common/models.py:2803 +#: importer/models.py:100 part/models.py:3611 part/models.py:3639 #: plugin/models.py:355 plugin/models.py:356 #: report/templates/report/inventree_test_report.html:105 users/models.py:124 #: users/models.py:501 msgid "User" msgstr "Uživatel" -#: common/models.py:1341 +#: common/models.py:1345 msgid "Price break quantity" msgstr "Množství cenové slevy" -#: common/models.py:1348 company/serializers.py:564 order/models.py:1842 -#: order/models.py:3043 +#: common/models.py:1352 company/serializers.py:349 order/models.py:1843 +#: order/models.py:3044 msgid "Price" msgstr "Cena" -#: common/models.py:1349 +#: common/models.py:1353 msgid "Unit price at specified quantity" msgstr "Jednotková cena při stanoveném množství" -#: common/models.py:1400 common/models.py:1585 +#: common/models.py:1404 common/models.py:1589 msgid "Endpoint" msgstr "Koncový bod" -#: common/models.py:1401 +#: common/models.py:1405 msgid "Endpoint at which this webhook is received" msgstr "Koncový bod, ve kterém je tento webhook přijímán" -#: common/models.py:1411 +#: common/models.py:1415 msgid "Name for this webhook" msgstr "Název tohoto webhooku" -#: common/models.py:1415 common/models.py:2241 common/models.py:2348 -#: company/models.py:191 company/models.py:822 machine/models.py:40 -#: part/models.py:1237 plugin/models.py:69 stock/api.py:642 users/models.py:195 +#: common/models.py:1419 common/models.py:2247 common/models.py:2354 +#: company/models.py:192 company/models.py:776 machine/models.py:40 +#: part/models.py:1325 plugin/models.py:69 stock/api.py:642 users/models.py:195 #: users/models.py:554 users/serializers.py:314 msgid "Active" msgstr "Aktivní" -#: common/models.py:1415 +#: common/models.py:1419 msgid "Is this webhook active" msgstr "Je tento webhook aktivní" -#: common/models.py:1431 users/models.py:172 +#: common/models.py:1435 users/models.py:172 msgid "Token" msgstr "Token" -#: common/models.py:1432 +#: common/models.py:1436 msgid "Token for access" msgstr "Token pro přístup" -#: common/models.py:1440 +#: common/models.py:1444 msgid "Secret" msgstr "Tajný klíč" -#: common/models.py:1441 +#: common/models.py:1445 msgid "Shared secret for HMAC" msgstr "Sdílený tajný klíč pro HMAC" -#: common/models.py:1549 common/models.py:2619 +#: common/models.py:1553 common/models.py:3040 msgid "Message ID" msgstr "ID zprávy" -#: common/models.py:1550 common/models.py:2609 +#: common/models.py:1554 common/models.py:3030 msgid "Unique identifier for this message" msgstr "Unikátní identifikátor pro tuto zprávu" -#: common/models.py:1558 +#: common/models.py:1562 msgid "Host" msgstr "Hostitel" -#: common/models.py:1559 +#: common/models.py:1563 msgid "Host from which this message was received" msgstr "Hostitel, od kterého byla tato zpráva přijata" -#: common/models.py:1567 +#: common/models.py:1571 msgid "Header" msgstr "Záhlaví" -#: common/models.py:1568 +#: common/models.py:1572 msgid "Header of this message" msgstr "Záhlaví této zprávy" -#: common/models.py:1575 +#: common/models.py:1579 msgid "Body" msgstr "Tělo" -#: common/models.py:1576 +#: common/models.py:1580 msgid "Body of this message" msgstr "Tělo zprávy" -#: common/models.py:1586 +#: common/models.py:1590 msgid "Endpoint on which this message was received" msgstr "Koncový bod, na kterém byla zpráva přijata" -#: common/models.py:1591 +#: common/models.py:1595 msgid "Worked on" msgstr "Pracoval na" -#: common/models.py:1592 +#: common/models.py:1596 msgid "Was the work on this message finished?" msgstr "Byla práce na této zprávě dokončena?" -#: common/models.py:1718 +#: common/models.py:1722 msgid "Id" msgstr "ID" -#: common/models.py:1720 +#: common/models.py:1724 msgid "Title" msgstr "Název" -#: common/models.py:1722 common/models.py:1983 company/models.py:185 -#: company/models.py:467 company/models.py:534 company/models.py:839 -#: order/models.py:457 order/models.py:1786 order/models.py:2343 -#: part/models.py:1113 +#: common/models.py:1726 common/models.py:1989 company/models.py:186 +#: company/models.py:468 company/models.py:536 company/models.py:793 +#: order/models.py:458 order/models.py:1787 order/models.py:2344 +#: part/models.py:1201 #: report/templates/report/inventree_build_order_report.html:164 msgid "Link" msgstr "Odkaz" -#: common/models.py:1724 +#: common/models.py:1728 msgid "Published" msgstr "Zveřejněno" -#: common/models.py:1726 +#: common/models.py:1730 msgid "Author" msgstr "Autor" -#: common/models.py:1728 +#: common/models.py:1732 msgid "Summary" msgstr "Souhrn" -#: common/models.py:1731 common/models.py:2586 +#: common/models.py:1735 common/models.py:3007 msgid "Read" msgstr "Přečteno" -#: common/models.py:1731 +#: common/models.py:1735 msgid "Was this news item read?" msgstr "Byla tato novinka přečtena?" -#: common/models.py:1748 +#: common/models.py:1752 msgid "Image file" msgstr "Soubor obrázku" -#: common/models.py:1760 +#: common/models.py:1764 msgid "Target model type for this image" msgstr "Cílový typ modelu pro tento obrázek" -#: common/models.py:1764 +#: common/models.py:1768 msgid "Target model ID for this image" msgstr "Cílové ID modelu pro tento obrázek" -#: common/models.py:1786 +#: common/models.py:1790 msgid "Custom Unit" msgstr "Vlastní jednotka" -#: common/models.py:1804 +#: common/models.py:1808 msgid "Unit symbol must be unique" msgstr "Symbol jednotky musí být unikátní" -#: common/models.py:1819 +#: common/models.py:1823 msgid "Unit name must be a valid identifier" msgstr "Název jednotky musí být platný identifikátor" -#: common/models.py:1838 +#: common/models.py:1842 msgid "Unit name" msgstr "Název jednotky" -#: common/models.py:1845 +#: common/models.py:1849 msgid "Symbol" msgstr "Symbol" -#: common/models.py:1846 +#: common/models.py:1850 msgid "Optional unit symbol" msgstr "Volitelný symbol jednotky" -#: common/models.py:1852 +#: common/models.py:1856 msgid "Definition" msgstr "Definice" -#: common/models.py:1853 +#: common/models.py:1857 msgid "Unit definition" msgstr "Definice jednotky" -#: common/models.py:1911 common/models.py:1974 stock/models.py:2967 +#: common/models.py:1917 common/models.py:1980 stock/models.py:2984 #: stock/serializers.py:247 msgid "Attachment" msgstr "Příloha" -#: common/models.py:1928 +#: common/models.py:1934 msgid "Missing file" msgstr "Chybějící soubor" -#: common/models.py:1929 +#: common/models.py:1935 msgid "Missing external link" msgstr "Chybějící externí odkaz" -#: common/models.py:1966 +#: common/models.py:1972 common/models.py:2488 msgid "Model type" msgstr "Typ modelu" -#: common/models.py:1967 +#: common/models.py:1973 msgid "Target model type for image" msgstr "Cílový typ modelu pro obrázek" -#: common/models.py:1975 +#: common/models.py:1981 msgid "Select file to attach" msgstr "Vyberte soubor k přiložení" -#: common/models.py:1991 +#: common/models.py:1997 msgid "Comment" msgstr "Komentář" -#: common/models.py:1992 +#: common/models.py:1998 msgid "Attachment comment" msgstr "Komentář přílohy" -#: common/models.py:2008 +#: common/models.py:2014 msgid "Upload date" msgstr "Datum nahrání" -#: common/models.py:2009 +#: common/models.py:2015 msgid "Date the file was uploaded" msgstr "Datum, kdy byl soubor nahrán" -#: common/models.py:2013 +#: common/models.py:2019 msgid "File size" msgstr "Velikost souboru" -#: common/models.py:2013 +#: common/models.py:2019 msgid "File size in bytes" msgstr "Velikost souboru v bytech" -#: common/models.py:2051 common/serializers.py:684 +#: common/models.py:2057 common/serializers.py:688 msgid "Invalid model type specified for attachment" msgstr "Uveden neplatný typ modelu pro přílohu" -#: common/models.py:2072 +#: common/models.py:2078 msgid "Custom State" msgstr "Vlastní stav" -#: common/models.py:2073 +#: common/models.py:2079 msgid "Custom States" msgstr "Vlastní stavy" -#: common/models.py:2078 +#: common/models.py:2084 msgid "Reference Status Set" msgstr "Nastavení referenčního stavu" -#: common/models.py:2079 +#: common/models.py:2085 msgid "Status set that is extended with this custom state" msgstr "Stav nastavený, který je prodloužen tímto vlastním stavem" -#: common/models.py:2083 generic/states/serializers.py:18 +#: common/models.py:2089 generic/states/serializers.py:18 msgid "Logical Key" msgstr "Logický klíč" -#: common/models.py:2085 +#: common/models.py:2091 msgid "State logical key that is equal to this custom state in business logic" msgstr "Logický klíč statusu, který je rovný tomuto vlastnímu statusu v podnikové logice" -#: common/models.py:2090 common/models.py:2329 company/models.py:622 -#: machine/serializers.py:27 -#: report/templates/report/inventree_test_report.html:104 stock/models.py:2959 +#: common/models.py:2096 common/models.py:2335 machine/serializers.py:27 +#: report/templates/report/inventree_test_report.html:104 stock/models.py:2976 msgid "Value" msgstr "Hodnota" -#: common/models.py:2091 +#: common/models.py:2097 msgid "Numerical value that will be saved in the models database" msgstr "Číselná hodnota, která bude uložena v databázi modelů" -#: common/models.py:2097 +#: common/models.py:2103 msgid "Name of the state" msgstr "Název stavu" -#: common/models.py:2106 common/models.py:2335 generic/states/serializers.py:22 +#: common/models.py:2112 common/models.py:2341 generic/states/serializers.py:22 msgid "Label" msgstr "Popisek" -#: common/models.py:2107 +#: common/models.py:2113 msgid "Label that will be displayed in the frontend" msgstr "Štítek, který bude zobrazen na webu" -#: common/models.py:2114 generic/states/serializers.py:24 +#: common/models.py:2120 generic/states/serializers.py:24 msgid "Color" msgstr "Barva" -#: common/models.py:2115 +#: common/models.py:2121 msgid "Color that will be displayed in the frontend" msgstr "Barva, která bude zobrazena ve frontendu" -#: common/models.py:2123 +#: common/models.py:2129 msgid "Model" msgstr "Model" -#: common/models.py:2124 +#: common/models.py:2130 msgid "Model this state is associated with" msgstr "Model, ke kterému je tento stav přiřazen" -#: common/models.py:2139 +#: common/models.py:2145 msgid "Model must be selected" msgstr "Musí být vybrán model" -#: common/models.py:2142 +#: common/models.py:2148 msgid "Key must be selected" msgstr "Musí být vybrán klíč" -#: common/models.py:2145 +#: common/models.py:2151 msgid "Logical key must be selected" msgstr "Musí být vybrán logický klíč" -#: common/models.py:2149 +#: common/models.py:2155 msgid "Key must be different from logical key" msgstr "Klíč se musí lišit od logického klíče" -#: common/models.py:2156 +#: common/models.py:2162 msgid "Valid reference status class must be provided" msgstr "Musí být uvedena platná referenční třída statusu" -#: common/models.py:2162 +#: common/models.py:2168 msgid "Key must be different from the logical keys of the reference status" msgstr "Klíč se musí lišit od logických klíčů referenčního statusu" -#: common/models.py:2169 +#: common/models.py:2175 msgid "Logical key must be in the logical keys of the reference status" msgstr "" -#: common/models.py:2176 +#: common/models.py:2182 msgid "Name must be different from the names of the reference status" msgstr "Název se musí lišit od názvů referenčního statusu" -#: common/models.py:2216 common/models.py:2323 part/models.py:3889 +#: common/models.py:2222 common/models.py:2329 common/models.py:2533 msgid "Selection List" msgstr "Výběrové pole" -#: common/models.py:2217 +#: common/models.py:2223 msgid "Selection Lists" msgstr "Výběrová pole" -#: common/models.py:2222 +#: common/models.py:2228 msgid "Name of the selection list" msgstr "Název výběrového pole" -#: common/models.py:2229 +#: common/models.py:2235 msgid "Description of the selection list" msgstr "Popis výběrového pole" -#: common/models.py:2235 part/models.py:1242 +#: common/models.py:2241 part/models.py:1330 msgid "Locked" msgstr "Uzamčeno" -#: common/models.py:2236 +#: common/models.py:2242 msgid "Is this selection list locked?" msgstr "Je tento seznam výběrů uzamčen?" -#: common/models.py:2242 +#: common/models.py:2248 msgid "Can this selection list be used?" msgstr "Může být tento seznam výběru použit?" -#: common/models.py:2250 +#: common/models.py:2256 msgid "Source Plugin" msgstr "Zdrojový plugin" -#: common/models.py:2251 +#: common/models.py:2257 msgid "Plugin which provides the selection list" msgstr "Plugin, který poskytuje seznam výběru" -#: common/models.py:2256 +#: common/models.py:2262 msgid "Source String" msgstr "Zdrojový řetězec" -#: common/models.py:2257 +#: common/models.py:2263 msgid "Optional string identifying the source used for this list" msgstr "Volitelný řetězec identifikující zdroj použitý pro tento seznam" -#: common/models.py:2266 +#: common/models.py:2272 msgid "Default Entry" msgstr "Výchozí položka" -#: common/models.py:2267 +#: common/models.py:2273 msgid "Default entry for this selection list" msgstr "Výchozí položka pro tento seznam výběru" -#: common/models.py:2272 common/models.py:2724 +#: common/models.py:2278 common/models.py:3145 msgid "Created" msgstr "Vytvořeno" -#: common/models.py:2273 +#: common/models.py:2279 msgid "Date and time that the selection list was created" msgstr "Datum a čas vytvoření výběrového seznamu" -#: common/models.py:2278 +#: common/models.py:2284 msgid "Last Updated" msgstr "Poslední aktualizace" -#: common/models.py:2279 +#: common/models.py:2285 msgid "Date and time that the selection list was last updated" msgstr "Datum a čas poslední aktualizace výběrového seznamu" -#: common/models.py:2313 +#: common/models.py:2319 msgid "Selection List Entry" msgstr "Položka seznamu výběrů" -#: common/models.py:2314 +#: common/models.py:2320 msgid "Selection List Entries" msgstr "Položky seznamu výběrů" -#: common/models.py:2324 +#: common/models.py:2330 msgid "Selection list to which this entry belongs" msgstr "Seznam výběru, do kterého tato položka patří" -#: common/models.py:2330 +#: common/models.py:2336 msgid "Value of the selection list entry" msgstr "Název výběrového seznamu" -#: common/models.py:2336 +#: common/models.py:2342 msgid "Label for the selection list entry" msgstr "Popisek pro výběr seznamu" -#: common/models.py:2342 +#: common/models.py:2348 msgid "Description of the selection list entry" msgstr "Popis vstupu výběrového seznamu" -#: common/models.py:2349 +#: common/models.py:2355 msgid "Is this selection list entry active?" msgstr "Je tento výběr výběrového listu aktivní?" -#: common/models.py:2367 -msgid "Barcode Scan" -msgstr "Sken čárového kódu" +#: common/models.py:2387 +msgid "Parameter Template" +msgstr "Šablona parametru" -#: common/models.py:2371 importer/models.py:546 part/models.py:4060 +#: common/models.py:2388 +msgid "Parameter Templates" +msgstr "Šablona parametru" + +#: common/models.py:2425 +msgid "Checkbox parameters cannot have units" +msgstr "Parametry zaškrtávacího pole nemohou mít jednotky" + +#: common/models.py:2430 +msgid "Checkbox parameters cannot have choices" +msgstr "Parametry zaškrtávacího pole nemohou mít výběr" + +#: common/models.py:2450 part/models.py:3707 +msgid "Choices must be unique" +msgstr "Volby musí být jedinečné" + +#: common/models.py:2467 +msgid "Parameter template name must be unique" +msgstr "Název šablony parametru musí být jedinečný" + +#: common/models.py:2489 +msgid "Target model type for this parameter template" +msgstr "Cílový typ modelu pro šablonu tohoto parametru" + +#: common/models.py:2495 +msgid "Parameter Name" +msgstr "Název parametru" + +#: common/models.py:2501 part/models.py:1283 +msgid "Units" +msgstr "Jednotky" + +#: common/models.py:2502 +msgid "Physical units for this parameter" +msgstr "Fyzické jednotky pro tento parametr" + +#: common/models.py:2510 +msgid "Parameter description" +msgstr "Popis parametru" + +#: common/models.py:2516 +msgid "Checkbox" +msgstr "Zaškrtávací políčko" + +#: common/models.py:2517 +msgid "Is this parameter a checkbox?" +msgstr "Je tento parametr zaškrtávací políčko?" + +#: common/models.py:2522 part/models.py:3794 +msgid "Choices" +msgstr "Volby" + +#: common/models.py:2523 +msgid "Valid choices for this parameter (comma-separated)" +msgstr "Platné volby pro tento parametr (oddělené čárkami)" + +#: common/models.py:2534 +msgid "Selection list for this parameter" +msgstr "Seznam výběru pro tento parametr" + +#: common/models.py:2539 part/models.py:3769 report/models.py:287 +msgid "Enabled" +msgstr "Povoleno" + +#: common/models.py:2540 +msgid "Is this parameter template enabled?" +msgstr "Je šablona tohoto parametru povolena?" + +#: common/models.py:2581 +msgid "Parameter" +msgstr "Parametr" + +#: common/models.py:2582 +msgid "Parameters" +msgstr "Parametry" + +#: common/models.py:2628 +msgid "Invalid choice for parameter value" +msgstr "Neplatná volba pro hodnotu parametru" + +#: common/models.py:2698 common/serializers.py:783 +msgid "Invalid model type specified for parameter" +msgstr "Neplatný typ modelu pro daný parametr" + +#: common/models.py:2734 +msgid "Model ID" +msgstr "ID modelu" + +#: common/models.py:2735 +msgid "ID of the target model for this parameter" +msgstr "ID cílového modelu pro tento parametr" + +#: common/models.py:2744 common/setting/system.py:450 report/models.py:373 +#: report/models.py:669 report/serializers.py:94 report/serializers.py:135 +#: stock/serializers.py:234 +msgid "Template" +msgstr "Šablona" + +#: common/models.py:2745 +msgid "Parameter template" +msgstr "Šablona parametru" + +#: common/models.py:2750 common/models.py:2792 importer/models.py:546 msgid "Data" msgstr "Data" -#: common/models.py:2372 +#: common/models.py:2751 +msgid "Parameter Value" +msgstr "Hodnota parametru" + +#: common/models.py:2760 company/models.py:810 order/serializers.py:894 +#: order/serializers.py:2064 part/models.py:4075 part/models.py:4444 +#: report/templates/report/inventree_bill_of_materials_report.html:140 +#: report/templates/report/inventree_purchase_order_report.html:39 +#: report/templates/report/inventree_return_order_report.html:27 +#: report/templates/report/inventree_sales_order_report.html:32 +#: report/templates/report/inventree_stock_location_report.html:105 +#: stock/serializers.py:813 +msgid "Note" +msgstr "Poznámka" + +#: common/models.py:2761 stock/serializers.py:718 +msgid "Optional note field" +msgstr "Volitelné pole pro poznámku" + +#: common/models.py:2788 +msgid "Barcode Scan" +msgstr "Sken čárového kódu" + +#: common/models.py:2793 msgid "Barcode data" msgstr "Data čárového kódu" -#: common/models.py:2383 +#: common/models.py:2804 msgid "User who scanned the barcode" msgstr "Uživatel, který naskenoval čárový kód" -#: common/models.py:2388 importer/models.py:69 +#: common/models.py:2809 importer/models.py:69 msgid "Timestamp" msgstr "Časová značka" -#: common/models.py:2389 +#: common/models.py:2810 msgid "Date and time of the barcode scan" msgstr "Datum a čas skenování čárového kódu" -#: common/models.py:2395 +#: common/models.py:2816 msgid "URL endpoint which processed the barcode" msgstr "Koncový bod URL, který zpracoval čárový kód" -#: common/models.py:2402 order/models.py:1832 plugin/serializers.py:93 +#: common/models.py:2823 order/models.py:1833 plugin/serializers.py:93 msgid "Context" msgstr "Kontext" -#: common/models.py:2403 +#: common/models.py:2824 msgid "Context data for the barcode scan" msgstr "Kontextová data pro skenov čárového kódu" -#: common/models.py:2410 +#: common/models.py:2831 msgid "Response" msgstr "Odpověď" -#: common/models.py:2411 +#: common/models.py:2832 msgid "Response data from the barcode scan" msgstr "Data z odezvy z čárového kódu" -#: common/models.py:2417 report/templates/report/inventree_test_report.html:103 -#: stock/models.py:2953 +#: common/models.py:2838 report/templates/report/inventree_test_report.html:103 +#: stock/models.py:2970 msgid "Result" msgstr "Výsledek" -#: common/models.py:2418 +#: common/models.py:2839 msgid "Was the barcode scan successful?" msgstr "Bylo skenování čárového kódu úspěšné?" -#: common/models.py:2500 +#: common/models.py:2921 msgid "An error occurred" msgstr "Vyskytla se chyba" -#: common/models.py:2521 +#: common/models.py:2942 msgid "INVE-E8: Email log deletion is protected. Set INVENTREE_PROTECT_EMAIL_LOG to False to allow deletion." msgstr "INVE-E8: Odstranení Emailového logu je chráněno. Nastavte INVENTREE_PROTECT_EMAIL_LOG na False pro užmožnění odstranění." -#: common/models.py:2568 +#: common/models.py:2989 msgid "Email Message" msgstr "E-mailová zpráva" -#: common/models.py:2569 +#: common/models.py:2990 msgid "Email Messages" msgstr "E-mailové zprávy" -#: common/models.py:2576 +#: common/models.py:2997 msgid "Announced" msgstr "Oznámeno" -#: common/models.py:2578 +#: common/models.py:2999 msgid "Sent" msgstr "Odesláno" -#: common/models.py:2579 +#: common/models.py:3000 msgid "Failed" msgstr "Selhalo" -#: common/models.py:2582 +#: common/models.py:3003 msgid "Delivered" msgstr "Doručeno" -#: common/models.py:2590 +#: common/models.py:3011 msgid "Confirmed" msgstr "Potvrzeno" -#: common/models.py:2596 +#: common/models.py:3017 msgid "Inbound" msgstr "Příchozí" -#: common/models.py:2597 +#: common/models.py:3018 msgid "Outbound" msgstr "Odchozí" -#: common/models.py:2602 +#: common/models.py:3023 msgid "No Reply" msgstr "Bez odpovědi" -#: common/models.py:2603 +#: common/models.py:3024 msgid "Track Delivery" msgstr "Sledovat doručení" -#: common/models.py:2604 +#: common/models.py:3025 msgid "Track Read" msgstr "Sledovat přečtení" -#: common/models.py:2605 +#: common/models.py:3026 msgid "Track Click" msgstr "Sledovat kliknutí" -#: common/models.py:2608 common/models.py:2711 +#: common/models.py:3029 common/models.py:3132 msgid "Global ID" msgstr "Globální ID" -#: common/models.py:2621 +#: common/models.py:3042 msgid "Identifier for this message (might be supplied by external system)" msgstr "Identifikátor pro tuto zprávu (může být poskytnut externím systémem)" -#: common/models.py:2628 +#: common/models.py:3049 msgid "Thread ID" msgstr "ID vlákna" -#: common/models.py:2630 +#: common/models.py:3051 msgid "Identifier for this message thread (might be supplied by external system)" msgstr "Identifikátor pro toto vlákno (může být poskytnut externím systémem)" -#: common/models.py:2639 +#: common/models.py:3060 msgid "Thread" msgstr "Vlákno" -#: common/models.py:2640 +#: common/models.py:3061 msgid "Linked thread for this message" msgstr "Vlákno propojeno k této zprávě" -#: common/models.py:2656 -msgid "Prioriy" +#: common/models.py:3077 +msgid "Priority" msgstr "Priorita" -#: common/models.py:2698 +#: common/models.py:3119 msgid "Email Thread" msgstr "Emailové vlákno" -#: common/models.py:2699 +#: common/models.py:3120 msgid "Email Threads" msgstr "Emailové vlákna" -#: common/models.py:2705 generic/states/serializers.py:16 +#: common/models.py:3126 generic/states/serializers.py:16 #: machine/serializers.py:24 plugin/models.py:46 users/models.py:113 msgid "Key" msgstr "Klíč" -#: common/models.py:2708 +#: common/models.py:3129 msgid "Unique key for this thread (used to identify the thread)" msgstr "Unikátní klíč pro toto vlákno (použitý k identifikaci vlákna)" -#: common/models.py:2712 +#: common/models.py:3133 msgid "Unique identifier for this thread" msgstr "Unikátní identifikátor pro toto vlákno" -#: common/models.py:2719 +#: common/models.py:3140 msgid "Started Internal" msgstr "Začato interně" -#: common/models.py:2720 +#: common/models.py:3141 msgid "Was this thread started internally?" msgstr "Bylo toto vlákno započato interně?" -#: common/models.py:2725 +#: common/models.py:3146 msgid "Date and time that the thread was created" msgstr "Datum a čas kdy bylo vlákno vytvořeno" -#: common/models.py:2730 +#: common/models.py:3151 msgid "Date and time that the thread was last updated" msgstr "Datum a čas kdy bylo vlákno naposledy aktualizováno" @@ -2199,7 +2339,7 @@ msgstr "{verbose_name} zrušeno" msgid "A order that is assigned to you was canceled" msgstr "Objednávka, která je vám přidělena, byla zrušena" -#: common/notifications.py:73 common/notifications.py:80 order/api.py:594 +#: common/notifications.py:73 common/notifications.py:80 order/api.py:600 msgid "Items Received" msgstr "Přijaté položky" @@ -2211,88 +2351,93 @@ msgstr "Položky byly obdrženy proti objednávce" msgid "Items have been received against a return order" msgstr "Položky byly obdrženy proti vratce" -#: common/serializers.py:145 +#: common/serializers.py:149 msgid "Indicates if the setting is overridden by an environment variable" msgstr "Indikuje zdali bylo nastavení přepsáno proměnou prostředí" -#: common/serializers.py:147 +#: common/serializers.py:151 msgid "Override" msgstr "Přepsat" -#: common/serializers.py:498 +#: common/serializers.py:502 msgid "Is Running" msgstr "Je spuštěné" -#: common/serializers.py:504 +#: common/serializers.py:508 msgid "Pending Tasks" msgstr "Čekající úkoly" -#: common/serializers.py:510 +#: common/serializers.py:514 msgid "Scheduled Tasks" msgstr "Naplánované úlohy" -#: common/serializers.py:516 +#: common/serializers.py:520 msgid "Failed Tasks" msgstr "Neúspěšné úlohy" -#: common/serializers.py:531 +#: common/serializers.py:535 msgid "Task ID" msgstr "ID úlohy" -#: common/serializers.py:531 +#: common/serializers.py:535 msgid "Unique task ID" msgstr "Unikátní ID úlohy" -#: common/serializers.py:533 +#: common/serializers.py:537 msgid "Lock" msgstr "Zamknout" -#: common/serializers.py:533 +#: common/serializers.py:537 msgid "Lock time" msgstr "Čas uzamčení" -#: common/serializers.py:535 +#: common/serializers.py:539 msgid "Task name" msgstr "Jméno úkolu" -#: common/serializers.py:537 +#: common/serializers.py:541 msgid "Function" msgstr "Funkce" -#: common/serializers.py:537 +#: common/serializers.py:541 msgid "Function name" msgstr "Název funkce" -#: common/serializers.py:539 +#: common/serializers.py:543 msgid "Arguments" msgstr "Argumenty" -#: common/serializers.py:539 +#: common/serializers.py:543 msgid "Task arguments" msgstr "Argumenty úlohy" -#: common/serializers.py:542 +#: common/serializers.py:546 msgid "Keyword Arguments" msgstr "Argumenty klíčových slov" -#: common/serializers.py:542 +#: common/serializers.py:546 msgid "Task keyword arguments" msgstr "Argumenty klíčových slov úlohy" -#: common/serializers.py:652 +#: common/serializers.py:656 msgid "Filename" msgstr "Název souboru" -#: common/serializers.py:659 importer/models.py:89 report/api.py:41 +#: common/serializers.py:663 common/serializers.py:730 +#: common/serializers.py:805 importer/models.py:89 report/api.py:41 #: report/models.py:293 report/serializers.py:52 msgid "Model Type" msgstr "Typ modelu" -#: common/serializers.py:687 +#: common/serializers.py:691 msgid "User does not have permission to create or edit attachments for this model" msgstr "Uživatel nemá oprávnění k vytváření nebo úpravám příloh pro tento model" -#: common/serializers.py:731 common/serializers.py:834 +#: common/serializers.py:786 +msgid "User does not have permission to create or edit parameters for this model" +msgstr "Uživatel nemá práva vytvářet nebo upravovat parametry pro tento model" + +#: common/serializers.py:850 common/serializers.py:953 msgid "Selection list is locked" msgstr "Tento výběr je uzamčen" @@ -2368,7 +2513,7 @@ msgstr "Omezit zobrazování `o aplikaci`" msgid "Show the `about` modal only to superusers" msgstr "Zobrazovat okno `o aplikaci` pouze superuživatelům" -#: common/setting/system.py:224 company/models.py:144 company/models.py:145 +#: common/setting/system.py:224 company/models.py:145 company/models.py:146 msgid "Company name" msgstr "Jméno společnosti" @@ -2411,8 +2556,8 @@ msgstr "Jak často aktualizovat směnné kurzy (pro vypnutí nastavte na nulu)" #: common/setting/system.py:253 common/setting/system.py:293 #: common/setting/system.py:306 common/setting/system.py:314 #: common/setting/system.py:321 common/setting/system.py:330 -#: common/setting/system.py:339 common/setting/system.py:588 -#: common/setting/system.py:616 common/setting/system.py:707 +#: common/setting/system.py:339 common/setting/system.py:580 +#: common/setting/system.py:608 common/setting/system.py:707 #: common/setting/system.py:1103 common/setting/system.py:1119 msgid "days" msgstr "dny" @@ -2657,12 +2802,6 @@ msgstr "Kopírovat šablony parametrů kategorie" msgid "Copy category parameter templates when creating a part" msgstr "Kopírování šablon parametrů kategorie při vytváření dílu" -#: common/setting/system.py:450 part/models.py:4054 report/models.py:373 -#: report/models.py:669 report/serializers.py:94 report/serializers.py:135 -#: stock/serializers.py:234 -msgid "Template" -msgstr "Šablona" - #: common/setting/system.py:451 msgid "Parts are templates by default" msgstr "Díly jsou ve výchozím nastavení šablony" @@ -2671,8 +2810,8 @@ msgstr "Díly jsou ve výchozím nastavení šablony" msgid "Parts can be assembled from other components by default" msgstr "Díly lze ve výchozím nastavení sestavit z jiných komponentů" -#: common/setting/system.py:462 part/models.py:1208 part/serializers.py:1734 -#: part/serializers.py:1741 +#: common/setting/system.py:462 part/models.py:1296 part/serializers.py:1599 +#: part/serializers.py:1606 msgid "Component" msgstr "Komponent" @@ -2680,7 +2819,7 @@ msgstr "Komponent" msgid "Parts can be used as sub-components by default" msgstr "Díly lze ve výchozím nastavení použít jako dílčí komponenty" -#: common/setting/system.py:468 part/models.py:1226 +#: common/setting/system.py:468 part/models.py:1314 msgid "Purchaseable" msgstr "Možné zakoupit" @@ -2688,7 +2827,7 @@ msgstr "Možné zakoupit" msgid "Parts are purchaseable by default" msgstr "Díly jsou zakoupitelné ve výchozím nastavení" -#: common/setting/system.py:474 part/models.py:1232 stock/api.py:643 +#: common/setting/system.py:474 part/models.py:1320 stock/api.py:643 msgid "Salable" msgstr "Prodejné" @@ -2700,7 +2839,7 @@ msgstr "Díly jsou prodejné ve výchozím nastavení" msgid "Parts are trackable by default" msgstr "Díly jsou sledovatelné ve výchozím nastavení" -#: common/setting/system.py:486 part/models.py:1248 +#: common/setting/system.py:486 part/models.py:1336 msgid "Virtual" msgstr "Nehmotné (virtuální)" @@ -2749,158 +2888,158 @@ msgid "Part category default icon (empty means no icon)" msgstr "Výchozí ikona kategorie dílu (prázdné znamená bez ikony)" #: common/setting/system.py:525 -msgid "Enforce Parameter Units" -msgstr "Vynutit jednotky parametru" - -#: common/setting/system.py:527 -msgid "If units are provided, parameter values must match the specified units" -msgstr "Pokud jsou uvedeny jednotky, musí hodnoty parametrů odpovídat zadaným jednotkám" - -#: common/setting/system.py:533 msgid "Minimum Pricing Decimal Places" msgstr "Minimální počet desetinných míst u cen" -#: common/setting/system.py:535 +#: common/setting/system.py:527 msgid "Minimum number of decimal places to display when rendering pricing data" msgstr "Minimální počet desetinných míst k zobrazení u cenových údajů" -#: common/setting/system.py:546 +#: common/setting/system.py:538 msgid "Maximum Pricing Decimal Places" msgstr "Maximální počet desetinných míst u cen" -#: common/setting/system.py:548 +#: common/setting/system.py:540 msgid "Maximum number of decimal places to display when rendering pricing data" msgstr "Maximální počet desetinných míst k zobrazení u cenových údajů" -#: common/setting/system.py:559 +#: common/setting/system.py:551 msgid "Use Supplier Pricing" msgstr "Použít ceny dodavatele" -#: common/setting/system.py:561 +#: common/setting/system.py:553 msgid "Include supplier price breaks in overall pricing calculations" msgstr "Zahrnout cenová zvýhodnění dodavatelů do celkových cenových kalkulací" -#: common/setting/system.py:567 +#: common/setting/system.py:559 msgid "Purchase History Override" msgstr "Přepsání historie nákupu" -#: common/setting/system.py:569 +#: common/setting/system.py:561 msgid "Historical purchase order pricing overrides supplier price breaks" msgstr "Historické ceny nákupních objednávek mají přednost před cenovými zvýhodněními dodavatele" -#: common/setting/system.py:575 +#: common/setting/system.py:567 msgid "Use Stock Item Pricing" msgstr "Použít ceny skladových položek" -#: common/setting/system.py:577 +#: common/setting/system.py:569 msgid "Use pricing from manually entered stock data for pricing calculations" msgstr "Použít ceny z ručně zadaných skladových údajů pro cenové kalkulace" -#: common/setting/system.py:583 +#: common/setting/system.py:575 msgid "Stock Item Pricing Age" msgstr "Stáří cen skladových položek" -#: common/setting/system.py:585 +#: common/setting/system.py:577 msgid "Exclude stock items older than this number of days from pricing calculations" msgstr "Vyloučit skladové položky starší než tento počet dní z cenových kalkulací" -#: common/setting/system.py:592 +#: common/setting/system.py:584 msgid "Use Variant Pricing" msgstr "Použít cenu varianty" -#: common/setting/system.py:593 +#: common/setting/system.py:585 msgid "Include variant pricing in overall pricing calculations" msgstr "Zahrnutí cen variant do celkových cenových kalkulací" -#: common/setting/system.py:598 +#: common/setting/system.py:590 msgid "Active Variants Only" msgstr "Pouze aktivní varianty" -#: common/setting/system.py:600 +#: common/setting/system.py:592 msgid "Only use active variant parts for calculating variant pricing" msgstr "Pro výpočet ceny varianty použijte pouze aktivní díly varianty" -#: common/setting/system.py:606 +#: common/setting/system.py:598 msgid "Auto Update Pricing" msgstr "Automatická aktualizace cen" -#: common/setting/system.py:608 +#: common/setting/system.py:600 msgid "Automatically update part pricing when internal data changes" msgstr "Automaticky aktualizovat cenu dílu když se změní interní data" -#: common/setting/system.py:614 +#: common/setting/system.py:606 msgid "Pricing Rebuild Interval" msgstr "Interval přestavby cen" -#: common/setting/system.py:615 +#: common/setting/system.py:607 msgid "Number of days before part pricing is automatically updated" msgstr "Počet dní před automatickou aktualizací cen dílů" -#: common/setting/system.py:621 +#: common/setting/system.py:613 msgid "Internal Prices" msgstr "Interní ceny" -#: common/setting/system.py:622 +#: common/setting/system.py:614 msgid "Enable internal prices for parts" msgstr "Povolit interní ceny pro díly" -#: common/setting/system.py:627 +#: common/setting/system.py:619 msgid "Internal Price Override" msgstr "Přepis interní ceny" -#: common/setting/system.py:629 +#: common/setting/system.py:621 msgid "If available, internal prices override price range calculations" msgstr "Pokud jsou k dispozici, interní ceny mají přednost před výpočty cenového rozpětí" -#: common/setting/system.py:635 +#: common/setting/system.py:627 msgid "Enable label printing" msgstr "Povolit tisk štítků" -#: common/setting/system.py:636 +#: common/setting/system.py:628 msgid "Enable label printing from the web interface" msgstr "Povolit tisk štítků z webového rozhraní" -#: common/setting/system.py:641 +#: common/setting/system.py:633 msgid "Label Image DPI" msgstr "DPI rozlišení štítků" -#: common/setting/system.py:643 +#: common/setting/system.py:635 msgid "DPI resolution when generating image files to supply to label printing plugins" msgstr "Rozlišení DPI při generování obrazových souborů, které se dodávají do zásuvných modulů pro tisk štítků" -#: common/setting/system.py:649 +#: common/setting/system.py:641 msgid "Enable Reports" msgstr "Povolit reporty" -#: common/setting/system.py:650 +#: common/setting/system.py:642 msgid "Enable generation of reports" msgstr "Povolit generování reportů" -#: common/setting/system.py:655 +#: common/setting/system.py:647 msgid "Debug Mode" msgstr "Režim ladění chyb" -#: common/setting/system.py:656 +#: common/setting/system.py:648 msgid "Generate reports in debug mode (HTML output)" msgstr "Generovat reporty v režimu ladění (HTML výstup)" -#: common/setting/system.py:661 +#: common/setting/system.py:653 msgid "Log Report Errors" msgstr "Zaznamenávat chyby reportů" -#: common/setting/system.py:662 +#: common/setting/system.py:654 msgid "Log errors which occur when generating reports" msgstr "Zaznamenávat chyby, které se vyskytnou při vytváření reportů" -#: common/setting/system.py:667 plugin/builtin/labels/label_sheet.py:29 +#: common/setting/system.py:659 plugin/builtin/labels/label_sheet.py:29 #: report/models.py:381 msgid "Page Size" msgstr "Velikost stránky" -#: common/setting/system.py:668 +#: common/setting/system.py:660 msgid "Default page size for PDF reports" msgstr "Výchozí velikost stránky pro PDF reporty" +#: common/setting/system.py:665 +msgid "Enforce Parameter Units" +msgstr "Vynutit jednotky parametru" + +#: common/setting/system.py:667 +msgid "If units are provided, parameter values must match the specified units" +msgstr "Pokud jsou uvedeny jednotky, musí hodnoty parametrů odpovídat zadaným jednotkám" + #: common/setting/system.py:673 msgid "Globally Unique Serials" msgstr "Globálně unikátní sériová čísla" @@ -3456,688 +3595,677 @@ msgid "Display PDF reports in the browser, instead of downloading as a file" msgstr "Zobrazit reporty PDF v prohlížeči namísto stahování jako soubor" #: common/setting/user.py:45 +msgid "Barcode Scanner in Form Fields" +msgstr "" + +#: common/setting/user.py:46 +msgid "Allow barcode scanner input in form fields" +msgstr "" + +#: common/setting/user.py:51 msgid "Search Parts" msgstr "Hledat díly" -#: common/setting/user.py:46 +#: common/setting/user.py:52 msgid "Display parts in search preview window" msgstr "Zobrazit díly v náhledu hledání" -#: common/setting/user.py:51 +#: common/setting/user.py:57 msgid "Search Supplier Parts" msgstr "Hledat díly dodavatele" -#: common/setting/user.py:52 +#: common/setting/user.py:58 msgid "Display supplier parts in search preview window" msgstr "Zobrazit díly dodavatele v náhledu hledání" -#: common/setting/user.py:57 +#: common/setting/user.py:63 msgid "Search Manufacturer Parts" msgstr "Vyhledávání dílů výrobce" -#: common/setting/user.py:58 +#: common/setting/user.py:64 msgid "Display manufacturer parts in search preview window" msgstr "Zobrazit díly výrobce v náhledu hledání" -#: common/setting/user.py:63 +#: common/setting/user.py:69 msgid "Hide Inactive Parts" msgstr "Skrýt neaktivní díly" -#: common/setting/user.py:64 +#: common/setting/user.py:70 msgid "Excluded inactive parts from search preview window" msgstr "Vyloučené neaktivní části z okna náhledu vyhledávání" -#: common/setting/user.py:69 +#: common/setting/user.py:75 msgid "Search Categories" msgstr "Hledat kategorie" -#: common/setting/user.py:70 +#: common/setting/user.py:76 msgid "Display part categories in search preview window" msgstr "Zobrazit kategorie dílů v náhledu hledání" -#: common/setting/user.py:75 +#: common/setting/user.py:81 msgid "Search Stock" msgstr "Hledat zásoby" -#: common/setting/user.py:76 +#: common/setting/user.py:82 msgid "Display stock items in search preview window" msgstr "Zobrazit skladové položky v náhledu hledání" -#: common/setting/user.py:81 +#: common/setting/user.py:87 msgid "Hide Unavailable Stock Items" msgstr "Skrýt nedostupné skladové položky" -#: common/setting/user.py:83 +#: common/setting/user.py:89 msgid "Exclude stock items which are not available from the search preview window" msgstr "Vyloučit skladové položky, které nejsou dostupné z okna náhledu hledání" -#: common/setting/user.py:89 +#: common/setting/user.py:95 msgid "Search Locations" msgstr "Hledat umístění" -#: common/setting/user.py:90 +#: common/setting/user.py:96 msgid "Display stock locations in search preview window" msgstr "Zobrazit skladová umístění v náhledu hledání" -#: common/setting/user.py:95 +#: common/setting/user.py:101 msgid "Search Companies" msgstr "Hledat společnosti" -#: common/setting/user.py:96 +#: common/setting/user.py:102 msgid "Display companies in search preview window" msgstr "Zobrazit společnosti v náhledu hledání" -#: common/setting/user.py:101 +#: common/setting/user.py:107 msgid "Search Build Orders" msgstr "Hledat výrobní příkazy" -#: common/setting/user.py:102 +#: common/setting/user.py:108 msgid "Display build orders in search preview window" msgstr "Zobrazit výrobní příkazy v náhledu hledání" -#: common/setting/user.py:107 +#: common/setting/user.py:113 msgid "Search Purchase Orders" msgstr "Hledat nákupní objednávky" -#: common/setting/user.py:108 +#: common/setting/user.py:114 msgid "Display purchase orders in search preview window" msgstr "Zobrazit nákupní objednávky v náhledu hledání" -#: common/setting/user.py:113 +#: common/setting/user.py:119 msgid "Exclude Inactive Purchase Orders" msgstr "Vyloučit neaktivní nákupní objednávky" -#: common/setting/user.py:114 +#: common/setting/user.py:120 msgid "Exclude inactive purchase orders from search preview window" msgstr "Vyloučit neaktivní nákupní objednávky z okna náhledu vyhledávání" -#: common/setting/user.py:119 +#: common/setting/user.py:125 msgid "Search Sales Orders" msgstr "Hledat prodejní objednávky" -#: common/setting/user.py:120 +#: common/setting/user.py:126 msgid "Display sales orders in search preview window" msgstr "Zobrazit prodejní objednávky v náhledu hledání" -#: common/setting/user.py:125 +#: common/setting/user.py:131 msgid "Exclude Inactive Sales Orders" msgstr "Vyloučit neaktivní prodejní objednávky" -#: common/setting/user.py:126 +#: common/setting/user.py:132 msgid "Exclude inactive sales orders from search preview window" msgstr "Vyloučit neaktivní prodejní objednávky z okna náhledu vyhledávání" -#: common/setting/user.py:131 +#: common/setting/user.py:137 msgid "Search Sales Order Shipments" msgstr "Vyhledat zásilky prodejních objednávek" -#: common/setting/user.py:132 +#: common/setting/user.py:138 msgid "Display sales order shipments in search preview window" msgstr "Zobrazit zásilky prodejních objednávek ve vyhledávacím náhledu" -#: common/setting/user.py:137 +#: common/setting/user.py:143 msgid "Search Return Orders" msgstr "Vyhledávání vrácených objednávek" -#: common/setting/user.py:138 +#: common/setting/user.py:144 msgid "Display return orders in search preview window" msgstr "Zobrazit vrácené objednávky v okně náhledu vyhledávání" -#: common/setting/user.py:143 +#: common/setting/user.py:149 msgid "Exclude Inactive Return Orders" msgstr "Vyloučit neaktivní vrácené objednávky" -#: common/setting/user.py:144 +#: common/setting/user.py:150 msgid "Exclude inactive return orders from search preview window" msgstr "Vyloučit neaktivní vrácené objednávky z okna náhledu vyhledávání" -#: common/setting/user.py:149 +#: common/setting/user.py:155 msgid "Search Preview Results" msgstr "Náhled výsledků vyhledávání" -#: common/setting/user.py:151 +#: common/setting/user.py:157 msgid "Number of results to show in each section of the search preview window" msgstr "Počet výsledků, které se mají zobrazit v každé části okna náhledu vyhledávání" -#: common/setting/user.py:157 +#: common/setting/user.py:163 msgid "Regex Search" msgstr "Regex hledání" -#: common/setting/user.py:158 +#: common/setting/user.py:164 msgid "Enable regular expressions in search queries" msgstr "Povolit regulární výrazy ve vyhledávacích dotazech" -#: common/setting/user.py:163 +#: common/setting/user.py:169 msgid "Whole Word Search" msgstr "Vyhledávání celého slova" -#: common/setting/user.py:164 +#: common/setting/user.py:170 msgid "Search queries return results for whole word matches" msgstr "Vyhledávací dotazy vracejí výsledky pro shody celých slov" -#: common/setting/user.py:169 +#: common/setting/user.py:175 msgid "Search Notes" msgstr "Hledat poznámky" -#: common/setting/user.py:171 +#: common/setting/user.py:177 msgid "Search queries return results for matches from the item's notes" msgstr "Vyhledávací dotazi vrátí výsledky pro shody v poznámek položek" -#: common/setting/user.py:177 +#: common/setting/user.py:183 msgid "Escape Key Closes Forms" msgstr "Klávesa Escape zavře formuláře" -#: common/setting/user.py:178 +#: common/setting/user.py:184 msgid "Use the escape key to close modal forms" msgstr "Zavřít modální formuláře pomocí klávesy escape" -#: common/setting/user.py:183 +#: common/setting/user.py:189 msgid "Fixed Navbar" msgstr "Pevná navigační lišta" -#: common/setting/user.py:184 +#: common/setting/user.py:190 msgid "The navbar position is fixed to the top of the screen" msgstr "Pozice navigační lišty je pevně nastavena na horní okraj obrazovky" -#: common/setting/user.py:189 +#: common/setting/user.py:195 msgid "Fixed Table Headers" msgstr "Pevné záhlaví tabulky" -#: common/setting/user.py:190 +#: common/setting/user.py:196 msgid "Table headers are fixed to the top of the table" msgstr "Hlavičky tabulky jsou připevněny k horní části tabulky" -#: common/setting/user.py:195 +#: common/setting/user.py:201 msgid "Show Spotlight" msgstr "Zobrazit Spotlight" -#: common/setting/user.py:196 +#: common/setting/user.py:202 msgid "Enable spotlight navigation functionality" msgstr "Povolit funkci spotlight navigace" -#: common/setting/user.py:201 +#: common/setting/user.py:207 msgid "Navigation Icons" msgstr "Navigační ikony" -#: common/setting/user.py:202 +#: common/setting/user.py:208 msgid "Display icons in the navigation bar" msgstr "Zobrazit ikony v navigačním panelu" -#: common/setting/user.py:207 +#: common/setting/user.py:213 msgid "Date Format" msgstr "Formát data" -#: common/setting/user.py:208 +#: common/setting/user.py:214 msgid "Preferred format for displaying dates" msgstr "Preferovaný formát pro zobrazení datumů" -#: common/setting/user.py:221 +#: common/setting/user.py:227 msgid "Show Stock History" msgstr "Zobrazit historii skladu" -#: common/setting/user.py:222 +#: common/setting/user.py:228 msgid "Display stock history information in the part detail page" msgstr "Zobrazit informace o historii zásob na stránce s podrobnostmi dílu" -#: common/setting/user.py:227 +#: common/setting/user.py:233 msgid "Show Last Breadcrumb" msgstr "Zobrazit poslední drobečkovou navigaci" -#: common/setting/user.py:228 +#: common/setting/user.py:234 msgid "Show the current page in breadcrumbs" msgstr "Zobrazit aktuální stránku v navigační službě" -#: common/setting/user.py:233 +#: common/setting/user.py:239 msgid "Show full stock location in tables" msgstr "Zobrazit plnou polohu zásob v tabulkách" -#: common/setting/user.py:235 +#: common/setting/user.py:241 msgid "Disabled: The full location path is displayed as a hover tooltip. Enabled: The full location path is displayed as plain text." msgstr "Vypnuto: Celá cesta lokace se ukáže jako nápověda. Zapnuto: Celá cesta lokace se ukáže jako prostý text." -#: common/setting/user.py:241 +#: common/setting/user.py:247 msgid "Show full part categories in tables" msgstr "Zobrazit celé kategorie dílů v tabulkách" -#: common/setting/user.py:243 +#: common/setting/user.py:249 msgid "Disabled: The full category path is displayed as a hover tooltip. Enabled: The full category path is displayed as plain text." msgstr "Vypnuto: Celá kategorie se ukáže jako nápověda. Zapnuto: Celá kategorie se ukáže jako prostý text." -#: common/setting/user.py:249 +#: common/setting/user.py:255 msgid "Receive error reports" msgstr "Přijímat zprávy o chybách" -#: common/setting/user.py:250 +#: common/setting/user.py:256 msgid "Receive notifications for system errors" msgstr "Dostávat oznámení o systémových chybách" -#: common/setting/user.py:255 +#: common/setting/user.py:261 msgid "Last used printing machines" msgstr "Poslední použité tiskárny" -#: common/setting/user.py:256 +#: common/setting/user.py:262 msgid "Save the last used printing machines for a user" msgstr "Uložte poslední použité tiskárny pro uživatele" -#: common/validators.py:34 +#: common/validators.py:38 +msgid "All models" +msgstr "Všechny modely" + +#: common/validators.py:63 msgid "No attachment model type provided" msgstr "Není zadán typ modelu přílohy" -#: common/validators.py:40 +#: common/validators.py:69 msgid "Invalid attachment model type" msgstr "Neplatný typ přílohy modelu" -#: common/validators.py:81 +#: common/validators.py:110 msgid "Minimum places cannot be greater than maximum places" msgstr "Minimální počet míst nesmí být větší než maximální počet míst" -#: common/validators.py:93 +#: common/validators.py:122 msgid "Maximum places cannot be less than minimum places" msgstr "Maximální počet míst nesmí být menší než minimální počet míst" -#: common/validators.py:104 +#: common/validators.py:133 msgid "An empty domain is not allowed." msgstr "Prázdná doména není povolena." -#: common/validators.py:106 +#: common/validators.py:135 #, python-brace-format msgid "Invalid domain name: {domain}" msgstr "Neplatný název domény: {domain}" -#: common/validators.py:122 +#: common/validators.py:151 msgid "Value must be uppercase" msgstr "Hodnota musí být napsána velkými písmeny" -#: common/validators.py:128 +#: common/validators.py:157 msgid "Value must be a valid variable identifier" msgstr "Hodnota musí být platný variabilní identifikátor" -#: company/api.py:147 +#: company/api.py:141 msgid "Part is Active" msgstr "Díl je aktivní" -#: company/api.py:151 +#: company/api.py:145 msgid "Manufacturer is Active" msgstr "Výrobce je aktivní" -#: company/api.py:286 +#: company/api.py:246 msgid "Supplier Part is Active" msgstr "Díl dodavatele je aktivní" -#: company/api.py:290 +#: company/api.py:250 msgid "Internal Part is Active" msgstr "Interní díl je aktivní" -#: company/api.py:295 +#: company/api.py:255 msgid "Supplier is Active" msgstr "Dodavatel je aktivní" -#: company/api.py:307 company/models.py:520 company/serializers.py:457 -#: part/serializers.py:566 +#: company/api.py:267 company/models.py:522 company/serializers.py:502 +#: part/serializers.py:477 msgid "Manufacturer" msgstr "Výrobce" -#: company/api.py:314 company/models.py:121 company/models.py:392 +#: company/api.py:274 company/models.py:122 company/models.py:393 #: stock/api.py:900 msgid "Company" msgstr "Společnost" -#: company/api.py:324 +#: company/api.py:284 msgid "Has Stock" msgstr "Má zásoby" -#: company/models.py:122 +#: company/models.py:123 msgid "Companies" msgstr "Společnosti" -#: company/models.py:150 +#: company/models.py:151 msgid "Company description" msgstr "Popis společnosti" -#: company/models.py:151 +#: company/models.py:152 msgid "Description of the company" msgstr "Popis společnosti" -#: company/models.py:157 +#: company/models.py:158 msgid "Website" msgstr "Webová stránka" -#: company/models.py:158 +#: company/models.py:159 msgid "Company website URL" msgstr "Webové stránky společnosti" -#: company/models.py:164 +#: company/models.py:165 msgid "Phone number" msgstr "Telefonní číslo" -#: company/models.py:166 +#: company/models.py:167 msgid "Contact phone number" msgstr "Kontaktní telefonní číslo" -#: company/models.py:173 +#: company/models.py:174 msgid "Contact email address" msgstr "Kontaktní e-mailová adresa" -#: company/models.py:178 company/models.py:296 order/models.py:513 +#: company/models.py:179 company/models.py:297 order/models.py:514 #: users/models.py:561 msgid "Contact" msgstr "Kontakt" -#: company/models.py:180 +#: company/models.py:181 msgid "Point of contact" msgstr "Kontaktní místo" -#: company/models.py:186 +#: company/models.py:187 msgid "Link to external company information" msgstr "Odkaz na externí informace o společnosti" -#: company/models.py:191 +#: company/models.py:192 msgid "Is this company active?" msgstr "Je tato společnost aktivní?" -#: company/models.py:196 +#: company/models.py:197 msgid "Is customer" msgstr "Je zákazník" -#: company/models.py:197 +#: company/models.py:198 msgid "Do you sell items to this company?" msgstr "Prodáváte zboží této společnosti?" -#: company/models.py:202 +#: company/models.py:203 msgid "Is supplier" msgstr "Je dodavatel" -#: company/models.py:203 +#: company/models.py:204 msgid "Do you purchase items from this company?" msgstr "Zakupujete zboží od této společnosti?" -#: company/models.py:208 +#: company/models.py:209 msgid "Is manufacturer" msgstr "Je výrobce" -#: company/models.py:209 +#: company/models.py:210 msgid "Does this company manufacture parts?" msgstr "Vyrábí tato společnost díly?" -#: company/models.py:217 +#: company/models.py:218 msgid "Default currency used for this company" msgstr "Výchozí měna používaná pro tuto společnost" -#: company/models.py:224 +#: company/models.py:225 msgid "Tax ID" msgstr "DIČ" -#: company/models.py:225 +#: company/models.py:226 msgid "Company Tax ID" msgstr "DIČ společnosti" -#: company/models.py:335 order/models.py:523 order/models.py:2288 +#: company/models.py:336 order/models.py:524 order/models.py:2289 msgid "Address" msgstr "Adresa" -#: company/models.py:336 +#: company/models.py:337 msgid "Addresses" msgstr "Adresy" -#: company/models.py:393 +#: company/models.py:394 msgid "Select company" msgstr "Vyberte společnost" -#: company/models.py:398 +#: company/models.py:399 msgid "Address title" msgstr "Název adresy" -#: company/models.py:399 +#: company/models.py:400 msgid "Title describing the address entry" msgstr "Název popisující záznam adresy" -#: company/models.py:405 +#: company/models.py:406 msgid "Primary address" msgstr "Primární adresa" -#: company/models.py:406 +#: company/models.py:407 msgid "Set as primary address" msgstr "Nastavit jako primární adresu" -#: company/models.py:411 +#: company/models.py:412 msgid "Line 1" msgstr "Řádek 1" -#: company/models.py:412 +#: company/models.py:413 msgid "Address line 1" msgstr "1. řádek adresy" -#: company/models.py:418 +#: company/models.py:419 msgid "Line 2" msgstr "Řádek 2" -#: company/models.py:419 +#: company/models.py:420 msgid "Address line 2" msgstr "2. řádek adresy" -#: company/models.py:425 company/models.py:426 +#: company/models.py:426 company/models.py:427 msgid "Postal code" msgstr "PSČ" -#: company/models.py:432 +#: company/models.py:433 msgid "City/Region" msgstr "Město/Region" -#: company/models.py:433 +#: company/models.py:434 msgid "Postal code city/region" msgstr "PSČ město/region" -#: company/models.py:439 +#: company/models.py:440 msgid "State/Province" msgstr "Stát/kraj" -#: company/models.py:440 +#: company/models.py:441 msgid "State or province" msgstr "Stát nebo provincie" -#: company/models.py:446 +#: company/models.py:447 msgid "Country" msgstr "Země" -#: company/models.py:447 +#: company/models.py:448 msgid "Address country" msgstr "Adresovaná země" -#: company/models.py:453 +#: company/models.py:454 msgid "Courier shipping notes" msgstr "Doručovací poznámky pro kurýra" -#: company/models.py:454 +#: company/models.py:455 msgid "Notes for shipping courier" msgstr "Poznámky pro kurýra" -#: company/models.py:460 +#: company/models.py:461 msgid "Internal shipping notes" msgstr "Interní přepravní poznámky" -#: company/models.py:461 +#: company/models.py:462 msgid "Shipping notes for internal use" msgstr "Doručovací poznámky pro interní použití" -#: company/models.py:468 +#: company/models.py:469 msgid "Link to address information (external)" msgstr "Odkaz na informace o adrese (externí)" -#: company/models.py:492 company/models.py:609 company/models.py:832 -#: company/serializers.py:471 stock/api.py:561 +#: company/models.py:494 company/models.py:786 company/serializers.py:516 +#: stock/api.py:561 msgid "Manufacturer Part" msgstr "Výrobce dílu" -#: company/models.py:509 company/models.py:800 stock/models.py:1025 +#: company/models.py:511 company/models.py:754 stock/models.py:1025 #: stock/serializers.py:407 msgid "Base Part" msgstr "Základní díl" -#: company/models.py:511 company/models.py:802 +#: company/models.py:513 company/models.py:756 msgid "Select part" msgstr "Zvolte díl" -#: company/models.py:521 +#: company/models.py:523 msgid "Select manufacturer" msgstr "Vyberte výrobce" -#: company/models.py:527 company/serializers.py:479 order/serializers.py:734 -#: part/serializers.py:576 +#: company/models.py:529 company/serializers.py:524 order/serializers.py:745 +#: part/serializers.py:487 msgid "MPN" msgstr "MPN" -#: company/models.py:528 stock/serializers.py:572 +#: company/models.py:530 stock/serializers.py:572 msgid "Manufacturer Part Number" msgstr "Číslo dílu výrobce" -#: company/models.py:535 +#: company/models.py:537 msgid "URL for external manufacturer part link" msgstr "URL pro odkaz na díl externího výrobce" -#: company/models.py:544 +#: company/models.py:546 msgid "Manufacturer part description" msgstr "Popis dílu výrobce" -#: company/models.py:597 -msgid "Manufacturer Part Parameter" -msgstr "Číslo dílu výrobce (MPP/MPN)" - -#: company/models.py:616 -msgid "Parameter name" -msgstr "Název parametru" - -#: company/models.py:623 -msgid "Parameter value" -msgstr "Hodnota parametru" - -#: company/models.py:630 part/models.py:1195 part/models.py:3857 -msgid "Units" -msgstr "Jednotky" - -#: company/models.py:631 -msgid "Parameter units" -msgstr "Jednotky parametru" - -#: company/models.py:740 +#: company/models.py:694 msgid "Pack units must be compatible with the base part units" msgstr "Jednotky balení musí být kompatibilní s jednotkami základních dílů" -#: company/models.py:747 +#: company/models.py:701 msgid "Pack units must be greater than zero" msgstr "Jednotky balení musí být větší než nula" -#: company/models.py:761 +#: company/models.py:715 msgid "Linked manufacturer part must reference the same base part" msgstr "Odkazovaný díl výrobce musí odkazovat na stejný základní díl" -#: company/models.py:810 company/serializers.py:449 company/serializers.py:467 -#: order/models.py:639 part/serializers.py:550 +#: company/models.py:764 company/serializers.py:494 company/serializers.py:512 +#: order/models.py:640 part/serializers.py:461 #: plugin/builtin/suppliers/digikey.py:26 plugin/builtin/suppliers/lcsc.py:27 #: plugin/builtin/suppliers/mouser.py:25 plugin/builtin/suppliers/tme.py:27 #: stock/api.py:567 templates/email/overdue_purchase_order.html:16 msgid "Supplier" msgstr "Dodavatel" -#: company/models.py:811 +#: company/models.py:765 msgid "Select supplier" msgstr "Vyberte dodavatele" -#: company/models.py:817 part/serializers.py:561 +#: company/models.py:771 part/serializers.py:472 msgid "Supplier stock keeping unit" msgstr "Skladová evidence dodavatele" -#: company/models.py:823 +#: company/models.py:777 msgid "Is this supplier part active?" msgstr "Je tento díl dodavatele aktivní?" -#: company/models.py:833 +#: company/models.py:787 msgid "Select manufacturer part" msgstr "Vyberte díl výrobce" -#: company/models.py:840 +#: company/models.py:794 msgid "URL for external supplier part link" msgstr "Adresa URL pro odkaz na externí díl dodavatele" -#: company/models.py:849 +#: company/models.py:803 msgid "Supplier part description" msgstr "Popis dílu dodavatele" -#: company/models.py:856 order/serializers.py:883 order/serializers.py:2047 -#: part/models.py:4070 part/models.py:4450 part/models.py:4819 -#: report/templates/report/inventree_bill_of_materials_report.html:140 -#: report/templates/report/inventree_purchase_order_report.html:39 -#: report/templates/report/inventree_return_order_report.html:27 -#: report/templates/report/inventree_sales_order_report.html:32 -#: report/templates/report/inventree_stock_location_report.html:105 -#: stock/serializers.py:813 -msgid "Note" -msgstr "Poznámka" - -#: company/models.py:865 part/models.py:2250 +#: company/models.py:819 part/models.py:2338 msgid "base cost" msgstr "základní cena" -#: company/models.py:866 part/models.py:2251 +#: company/models.py:820 part/models.py:2339 msgid "Minimum charge (e.g. stocking fee)" msgstr "Minimální poplatek (např. poplatek za skladování)" -#: company/models.py:873 order/serializers.py:875 stock/models.py:1056 +#: company/models.py:827 order/serializers.py:886 stock/models.py:1056 #: stock/serializers.py:1606 msgid "Packaging" msgstr "Balení" -#: company/models.py:874 +#: company/models.py:828 msgid "Part packaging" msgstr "Balení dílu" -#: company/models.py:879 +#: company/models.py:833 msgid "Pack Quantity" msgstr "Počet kusů v balení" -#: company/models.py:881 +#: company/models.py:835 msgid "Total quantity supplied in a single pack. Leave empty for single items." msgstr "Celkové množství dodávané v jednom balení. Pro jednotlivé položky ponechte prázdné." -#: company/models.py:900 part/models.py:2257 +#: company/models.py:854 part/models.py:2345 msgid "multiple" msgstr "více" -#: company/models.py:901 +#: company/models.py:855 msgid "Order multiple" msgstr "Objednat více" -#: company/models.py:913 +#: company/models.py:867 msgid "Quantity available from supplier" msgstr "Množství dostupné od dodavatele" -#: company/models.py:919 +#: company/models.py:873 msgid "Availability Updated" msgstr "Dostupnost aktualizována" -#: company/models.py:920 +#: company/models.py:874 msgid "Date of last update of availability data" msgstr "Datum poslední aktualizace údajů o dostupnosti" -#: company/models.py:1048 +#: company/models.py:1002 msgid "Supplier Price Break" msgstr "Cenová sleva dodavatele" -#: company/serializers.py:181 +#: company/serializers.py:184 +msgid "Primary Address" +msgstr "Hlavní adresa" + +#: company/serializers.py:186 msgid "Return the string representation for the primary address. This property exists for backwards compatibility." msgstr "Vrátí reprezentaci řetězce pro primární adresu. Tato vlastnost existuje pro zpětnou kompatibilitu." -#: company/serializers.py:212 +#: company/serializers.py:218 msgid "Default currency used for this supplier" msgstr "Výchozí měna používaná pro tohoto dodavatele" -#: company/serializers.py:248 +#: company/serializers.py:260 msgid "Company Name" msgstr "Jméno společnosti" -#: company/serializers.py:433 part/serializers.py:955 stock/serializers.py:428 +#: company/serializers.py:460 part/serializers.py:840 stock/serializers.py:428 msgid "In Stock" msgstr "Skladem" +#: company/serializers.py:477 +msgid "Price Breaks" +msgstr "Množstevní sleva" + #: data_exporter/mixins.py:325 data_exporter/mixins.py:403 msgid "Error occurred during data export" msgstr "Při exportu dat došlo k chybě" @@ -4290,7 +4418,7 @@ msgstr "Původní data řádku" msgid "Errors" msgstr "Chyby" -#: importer/models.py:550 part/serializers.py:1268 +#: importer/models.py:550 part/serializers.py:1133 msgid "Valid" msgstr "Platné" @@ -4402,7 +4530,7 @@ msgstr "Počet kopií, které se mají tisknout pro každý štítek" msgid "Connected" msgstr "Připojeno" -#: machine/machine_types/label_printer.py:232 order/api.py:1795 +#: machine/machine_types/label_printer.py:232 order/api.py:1800 msgid "Unknown" msgstr "Neznámý" @@ -4530,105 +4658,105 @@ msgstr "Maximální pokrok" msgid "Maximum value for progress type, required if type=progress" msgstr "Maximální hodnota pro pokrok typu, vyžadováno pokud typ=pokrok" -#: order/api.py:125 +#: order/api.py:130 msgid "Order Reference" msgstr "Označení objednávky" -#: order/api.py:153 order/api.py:1207 +#: order/api.py:158 order/api.py:1212 msgid "Outstanding" msgstr "Vynikající" -#: order/api.py:169 +#: order/api.py:174 msgid "Has Project Code" msgstr "Má projektový kód" -#: order/api.py:183 order/models.py:488 +#: order/api.py:188 order/models.py:489 msgid "Created By" msgstr "Vytvořil(a)" -#: order/api.py:187 +#: order/api.py:192 msgid "Created Before" msgstr "Vytvořeno před" -#: order/api.py:191 +#: order/api.py:196 msgid "Created After" msgstr "Vytvořeno po" -#: order/api.py:195 +#: order/api.py:200 msgid "Has Start Date" msgstr "Má počáteční datum" -#: order/api.py:203 +#: order/api.py:208 msgid "Start Date Before" msgstr "Datum začátku před" -#: order/api.py:207 +#: order/api.py:212 msgid "Start Date After" msgstr "Datum začátku po" -#: order/api.py:211 +#: order/api.py:216 msgid "Has Target Date" msgstr "Má cílové datum" -#: order/api.py:219 +#: order/api.py:224 msgid "Target Date Before" msgstr "Cílové datum před" -#: order/api.py:223 +#: order/api.py:228 msgid "Target Date After" msgstr "Cílové datum po" -#: order/api.py:274 +#: order/api.py:279 msgid "Has Pricing" msgstr "Má cenu" -#: order/api.py:327 order/api.py:812 order/api.py:1490 +#: order/api.py:332 order/api.py:818 order/api.py:1495 msgid "Completed Before" msgstr "Dokončeno před" -#: order/api.py:331 order/api.py:816 order/api.py:1494 +#: order/api.py:336 order/api.py:822 order/api.py:1499 msgid "Completed After" msgstr "Dokončeno po" -#: order/api.py:337 order/api.py:341 +#: order/api.py:342 order/api.py:346 msgid "External Build Order" msgstr "Externí výrobní příkaz" -#: order/api.py:526 order/api.py:914 order/api.py:1170 order/models.py:1922 -#: order/models.py:2049 order/models.py:2099 order/models.py:2279 -#: order/models.py:2477 order/models.py:2999 order/models.py:3065 +#: order/api.py:532 order/api.py:919 order/api.py:1175 order/models.py:1923 +#: order/models.py:2050 order/models.py:2100 order/models.py:2280 +#: order/models.py:2478 order/models.py:3000 order/models.py:3066 msgid "Order" msgstr "Objednávka" -#: order/api.py:530 order/api.py:982 +#: order/api.py:536 order/api.py:987 msgid "Order Complete" msgstr "Objednávka byla dokončena" -#: order/api.py:562 order/api.py:566 order/serializers.py:745 +#: order/api.py:568 order/api.py:572 order/serializers.py:756 msgid "Internal Part" msgstr "Interní díl" -#: order/api.py:584 +#: order/api.py:590 msgid "Order Pending" msgstr "Objednávka čeká na vyřízení" -#: order/api.py:967 +#: order/api.py:972 msgid "Completed" msgstr "Dokončeno" -#: order/api.py:1223 +#: order/api.py:1228 msgid "Has Shipment" msgstr "Má zásilku" -#: order/api.py:1789 order/models.py:552 order/models.py:1923 -#: order/models.py:2050 +#: order/api.py:1794 order/models.py:553 order/models.py:1924 +#: order/models.py:2051 #: report/templates/report/inventree_purchase_order_report.html:14 #: stock/serializers.py:129 templates/email/overdue_purchase_order.html:15 msgid "Purchase Order" msgstr "Nákupní objednávka" -#: order/api.py:1791 order/models.py:1251 order/models.py:2100 -#: order/models.py:2280 order/models.py:2478 +#: order/api.py:1796 order/models.py:1252 order/models.py:2101 +#: order/models.py:2281 order/models.py:2479 #: report/templates/report/inventree_build_order_report.html:135 #: report/templates/report/inventree_sales_order_report.html:14 #: report/templates/report/inventree_sales_order_shipment_report.html:15 @@ -4636,8 +4764,8 @@ msgstr "Nákupní objednávka" msgid "Sales Order" msgstr "Prodejní objednávka" -#: order/api.py:1793 order/models.py:2649 order/models.py:3000 -#: order/models.py:3066 +#: order/api.py:1798 order/models.py:2650 order/models.py:3001 +#: order/models.py:3067 #: report/templates/report/inventree_return_order_report.html:13 #: templates/email/overdue_return_order.html:15 msgid "Return Order" @@ -4653,722 +4781,722 @@ msgstr "Celková cena" msgid "Total price for this order" msgstr "Celková cena za tuto objednávku" -#: order/models.py:96 order/serializers.py:77 +#: order/models.py:96 order/serializers.py:78 msgid "Order Currency" msgstr "Měna objednávky" -#: order/models.py:99 order/serializers.py:78 +#: order/models.py:99 order/serializers.py:79 msgid "Currency for this order (leave blank to use company default)" msgstr "Měna pro tuto objednávku (nechte prázdné pro použití výchozí hodnoty společnosti)" -#: order/models.py:324 +#: order/models.py:325 msgid "This order is locked and cannot be modified" msgstr "Tato objednávka je uzamčena a nelze ji upravit" -#: order/models.py:376 +#: order/models.py:377 msgid "Contact does not match selected company" msgstr "Kontakt nesouhlasí s vybranou společností" -#: order/models.py:383 +#: order/models.py:384 msgid "Start date must be before target date" msgstr "Datum zahájení musí být před cílovým datem" -#: order/models.py:390 +#: order/models.py:391 msgid "Address does not match selected company" msgstr "Adresa nesouhlasí s vybranou společností" -#: order/models.py:443 +#: order/models.py:444 msgid "Order description (optional)" msgstr "Popis objednávky (volitelné)" -#: order/models.py:452 order/models.py:1806 +#: order/models.py:453 order/models.py:1807 msgid "Select project code for this order" msgstr "Vyberte kód projektu pro tuto objednávku" -#: order/models.py:458 order/models.py:1787 order/models.py:2344 +#: order/models.py:459 order/models.py:1788 order/models.py:2345 msgid "Link to external page" msgstr "Odkaz na externí stránku" -#: order/models.py:465 +#: order/models.py:466 msgid "Start date" msgstr "Datum zahájení" -#: order/models.py:466 +#: order/models.py:467 msgid "Scheduled start date for this order" msgstr "Plánované datum zahájení této objednávky" -#: order/models.py:472 order/models.py:1794 order/serializers.py:309 +#: order/models.py:473 order/models.py:1795 order/serializers.py:317 #: report/templates/report/inventree_build_order_report.html:125 msgid "Target Date" msgstr "Cílené datum" -#: order/models.py:474 +#: order/models.py:475 msgid "Expected date for order delivery. Order will be overdue after this date." msgstr "Očekávané datum doručení objednávky. Objednávka bude po tomto datu splatná." -#: order/models.py:494 +#: order/models.py:495 msgid "Issue Date" msgstr "Datum vystavení" -#: order/models.py:495 +#: order/models.py:496 msgid "Date order was issued" msgstr "Datum vystavení objednávky" -#: order/models.py:503 +#: order/models.py:504 msgid "User or group responsible for this order" msgstr "Uživatel nebo skupina odpovědná za tuto objednávku" -#: order/models.py:514 +#: order/models.py:515 msgid "Point of contact for this order" msgstr "Kontaktní bod pro tuto objednávku" -#: order/models.py:524 +#: order/models.py:525 msgid "Company address for this order" msgstr "Adresa společnosti pro tuto objednávku" -#: order/models.py:615 order/models.py:1312 +#: order/models.py:616 order/models.py:1313 msgid "Order reference" msgstr "Číslo objednávky" -#: order/models.py:624 order/models.py:1336 order/models.py:2737 +#: order/models.py:625 order/models.py:1337 order/models.py:2738 #: stock/serializers.py:559 stock/serializers.py:988 users/models.py:542 msgid "Status" msgstr "Stav" -#: order/models.py:625 +#: order/models.py:626 msgid "Purchase order status" msgstr "Stav objednávky" -#: order/models.py:640 +#: order/models.py:641 msgid "Company from which the items are being ordered" msgstr "Společnost, od které se položky objednávají" -#: order/models.py:651 +#: order/models.py:652 msgid "Supplier Reference" msgstr "Reference dodavatele" -#: order/models.py:652 +#: order/models.py:653 msgid "Supplier order reference code" msgstr "Referenční kód objednávky dodavatele" -#: order/models.py:661 +#: order/models.py:662 msgid "received by" msgstr "přijal" -#: order/models.py:668 order/models.py:2752 +#: order/models.py:669 order/models.py:2753 msgid "Date order was completed" msgstr "Datum dokončení objednávky" -#: order/models.py:677 order/models.py:1981 +#: order/models.py:678 order/models.py:1982 msgid "Destination" msgstr "Místo určení" -#: order/models.py:678 order/models.py:1985 +#: order/models.py:679 order/models.py:1986 msgid "Destination for received items" msgstr "Cílové místo pro přijaté položky" -#: order/models.py:724 +#: order/models.py:725 msgid "Part supplier must match PO supplier" msgstr "Dodavatel dílu se musí shodovat s dodavatelem PO" -#: order/models.py:994 +#: order/models.py:995 msgid "Line item does not match purchase order" msgstr "Řádková položka neodpovídá nákupní objednávce" -#: order/models.py:997 +#: order/models.py:998 msgid "Line item is missing a linked part" msgstr "Řádkové položce chybí propojený díl" -#: order/models.py:1011 +#: order/models.py:1012 msgid "Quantity must be a positive number" msgstr "Množství musí být kladné" -#: order/models.py:1323 order/models.py:2724 stock/models.py:1078 +#: order/models.py:1324 order/models.py:2725 stock/models.py:1078 #: stock/models.py:1079 stock/serializers.py:1322 #: templates/email/overdue_return_order.html:16 #: templates/email/overdue_sales_order.html:16 msgid "Customer" msgstr "Zákazník" -#: order/models.py:1324 +#: order/models.py:1325 msgid "Company to which the items are being sold" msgstr "Společnost, jíž se položky prodávají" -#: order/models.py:1337 +#: order/models.py:1338 msgid "Sales order status" msgstr "Stav prodejní objednávky" -#: order/models.py:1348 order/models.py:2744 +#: order/models.py:1349 order/models.py:2745 msgid "Customer Reference " msgstr "Reference zákazníka " -#: order/models.py:1349 order/models.py:2745 +#: order/models.py:1350 order/models.py:2746 msgid "Customer order reference code" msgstr "Referenční kód objednávky zákazníka" -#: order/models.py:1353 order/models.py:2296 +#: order/models.py:1354 order/models.py:2297 msgid "Shipment Date" msgstr "Datum odeslání" -#: order/models.py:1362 +#: order/models.py:1363 msgid "shipped by" msgstr "odesláno společností" -#: order/models.py:1413 +#: order/models.py:1414 msgid "Order is already complete" msgstr "Objednávka je již dokončena" -#: order/models.py:1416 +#: order/models.py:1417 msgid "Order is already cancelled" msgstr "Objednávka je již zrušena" -#: order/models.py:1420 +#: order/models.py:1421 msgid "Only an open order can be marked as complete" msgstr "Pouze otevřená objednávka může být označena jako kompletní" -#: order/models.py:1424 +#: order/models.py:1425 msgid "Order cannot be completed as there are incomplete shipments" msgstr "Objednávku nelze dokončit, protože dodávky jsou nekompletní" -#: order/models.py:1429 +#: order/models.py:1430 msgid "Order cannot be completed as there are incomplete allocations" msgstr "Objednávka nemůže být dokončena, protože jsou neúplné přiřazení" -#: order/models.py:1438 +#: order/models.py:1439 msgid "Order cannot be completed as there are incomplete line items" msgstr "Objednávka nemůže být dokončena, protože jsou neúplné řádkové položky" -#: order/models.py:1733 order/models.py:1749 +#: order/models.py:1734 order/models.py:1750 msgid "The order is locked and cannot be modified" msgstr "Objednávka je uzamčena a nelze ji upravit" -#: order/models.py:1757 +#: order/models.py:1758 msgid "Item quantity" msgstr "Množství položky" -#: order/models.py:1774 +#: order/models.py:1775 msgid "Line item reference" msgstr "Označení řádkové položky" -#: order/models.py:1781 +#: order/models.py:1782 msgid "Line item notes" msgstr "Poznámky k řádkovým položkám" -#: order/models.py:1796 +#: order/models.py:1797 msgid "Target date for this line item (leave blank to use the target date from the order)" msgstr "Cílové datum pro tuto řádkovou položku (pro použití cílového data z objednávky ponechte prázdné)" -#: order/models.py:1826 +#: order/models.py:1827 msgid "Line item description (optional)" msgstr "Popis řádkové položky (nepovinné)" -#: order/models.py:1833 +#: order/models.py:1834 msgid "Additional context for this line" msgstr "Dodatečný kontext pro tento řádek" -#: order/models.py:1843 +#: order/models.py:1844 msgid "Unit price" msgstr "Cena za jednotku" -#: order/models.py:1862 +#: order/models.py:1863 msgid "Purchase Order Line Item" msgstr "Řádková položka nákupní objednávky" -#: order/models.py:1889 +#: order/models.py:1890 msgid "Supplier part must match supplier" msgstr "Dodavatelský díl musí odpovídat dodavateli" -#: order/models.py:1894 +#: order/models.py:1895 msgid "Build order must be marked as external" msgstr "Objednávka sestavení musí být označená jako externí" -#: order/models.py:1901 +#: order/models.py:1902 msgid "Build orders can only be linked to assembly parts" msgstr "Objednávka sestavení může být propojena pouze s montážními díly" -#: order/models.py:1907 +#: order/models.py:1908 msgid "Build order part must match line item part" msgstr "Výrobní příkaz musí odpovídat lince předmětu dílu" -#: order/models.py:1942 +#: order/models.py:1943 msgid "Supplier part" msgstr "Díl dodavatele" -#: order/models.py:1949 +#: order/models.py:1950 msgid "Received" msgstr "Doručeno" -#: order/models.py:1950 +#: order/models.py:1951 msgid "Number of items received" msgstr "Počet přijatých položek" -#: order/models.py:1958 stock/models.py:1201 stock/serializers.py:637 +#: order/models.py:1959 stock/models.py:1201 stock/serializers.py:637 msgid "Purchase Price" msgstr "Nákupní cena" -#: order/models.py:1959 +#: order/models.py:1960 msgid "Unit purchase price" msgstr "Jednotková nákupní cena" -#: order/models.py:1975 +#: order/models.py:1976 msgid "External Build Order to be fulfilled by this line item" msgstr "Externí výrobní příkaz který má být splněn touto linkovou položkou" -#: order/models.py:2038 +#: order/models.py:2039 msgid "Purchase Order Extra Line" msgstr "Nákupní příkaz extra linka" -#: order/models.py:2067 +#: order/models.py:2068 msgid "Sales Order Line Item" msgstr "Řádková položka prodejní objednávky" -#: order/models.py:2092 +#: order/models.py:2093 msgid "Only salable parts can be assigned to a sales order" msgstr "K prodejní objednávce lze přiřadit pouze prodejné díly" -#: order/models.py:2118 +#: order/models.py:2119 msgid "Sale Price" msgstr "Prodejní cena" -#: order/models.py:2119 +#: order/models.py:2120 msgid "Unit sale price" msgstr "Jednotková prodejní cena" -#: order/models.py:2128 order/status_codes.py:50 +#: order/models.py:2129 order/status_codes.py:50 msgid "Shipped" msgstr "Odesláno" -#: order/models.py:2129 +#: order/models.py:2130 msgid "Shipped quantity" msgstr "Odeslané množství" -#: order/models.py:2240 +#: order/models.py:2241 msgid "Sales Order Shipment" msgstr "Zásilka prodejní objednávky" -#: order/models.py:2253 +#: order/models.py:2254 msgid "Shipment address must match the customer" msgstr "Adresa zásilky musí odpovídat adrese zákazníka" -#: order/models.py:2289 +#: order/models.py:2290 msgid "Shipping address for this shipment" msgstr "Dodací adresa pro tuto zásilku" -#: order/models.py:2297 +#: order/models.py:2298 msgid "Date of shipment" msgstr "Datum odeslání" -#: order/models.py:2303 +#: order/models.py:2304 msgid "Delivery Date" msgstr "Datum doručení" -#: order/models.py:2304 +#: order/models.py:2305 msgid "Date of delivery of shipment" msgstr "Datum doručení zásilky" -#: order/models.py:2312 +#: order/models.py:2313 msgid "Checked By" msgstr "Kontroloval(a)" -#: order/models.py:2313 +#: order/models.py:2314 msgid "User who checked this shipment" msgstr "Uživatel, který zkontroloval tuto zásilku" -#: order/models.py:2320 order/models.py:2574 order/serializers.py:1711 -#: order/serializers.py:1835 +#: order/models.py:2321 order/models.py:2575 order/serializers.py:1725 +#: order/serializers.py:1849 #: report/templates/report/inventree_sales_order_shipment_report.html:14 msgid "Shipment" msgstr "Doprava" -#: order/models.py:2321 +#: order/models.py:2322 msgid "Shipment number" msgstr "Číslo zásilky" -#: order/models.py:2329 +#: order/models.py:2330 msgid "Tracking Number" msgstr "Sledovací číslo" -#: order/models.py:2330 +#: order/models.py:2331 msgid "Shipment tracking information" msgstr "Informace o sledování zásilky" -#: order/models.py:2337 +#: order/models.py:2338 msgid "Invoice Number" msgstr "Číslo faktury" -#: order/models.py:2338 +#: order/models.py:2339 msgid "Reference number for associated invoice" msgstr "Referenční číslo přiřazené faktury" -#: order/models.py:2377 +#: order/models.py:2378 msgid "Shipment has already been sent" msgstr "Zásilka již byla odeslána" -#: order/models.py:2380 +#: order/models.py:2381 msgid "Shipment has no allocated stock items" msgstr "Zásilka nemá žádné přidělené skladové položky" -#: order/models.py:2387 +#: order/models.py:2388 msgid "Shipment must be checked before it can be completed" msgstr "Zásilka musí být zkontrolována než může být dokončená" -#: order/models.py:2466 +#: order/models.py:2467 msgid "Sales Order Extra Line" msgstr "Prodejní příkaz extra linka" -#: order/models.py:2495 +#: order/models.py:2496 msgid "Sales Order Allocation" msgstr "Přidělení prodejní objednávky" -#: order/models.py:2518 order/models.py:2520 +#: order/models.py:2519 order/models.py:2521 msgid "Stock item has not been assigned" msgstr "Skladová položka nebyla přiřazena" -#: order/models.py:2527 +#: order/models.py:2528 msgid "Cannot allocate stock item to a line with a different part" msgstr "Nelze přidělit skladovou položku na řádek s jiným dílem" -#: order/models.py:2530 +#: order/models.py:2531 msgid "Cannot allocate stock to a line without a part" msgstr "Nelze přidělit skladovou položku na řádek bez dílu" -#: order/models.py:2533 +#: order/models.py:2534 msgid "Allocation quantity cannot exceed stock quantity" msgstr "Přidělené množství nesmí překročit množství zásob" -#: order/models.py:2552 order/serializers.py:1581 +#: order/models.py:2553 order/serializers.py:1595 msgid "Quantity must be 1 for serialized stock item" msgstr "Množství musí být 1 pro serializovanou skladovou položku" -#: order/models.py:2555 +#: order/models.py:2556 msgid "Sales order does not match shipment" msgstr "Prodejní objednávka neodpovídá zásilce" -#: order/models.py:2556 plugin/base/barcodes/api.py:642 +#: order/models.py:2557 plugin/base/barcodes/api.py:642 msgid "Shipment does not match sales order" msgstr "Zásilka neodpovídá prodejní objednávce" -#: order/models.py:2564 +#: order/models.py:2565 msgid "Line" msgstr "Řádek" -#: order/models.py:2575 +#: order/models.py:2576 msgid "Sales order shipment reference" msgstr "Odkaz na zásilku z prodejní objednávky" -#: order/models.py:2588 order/models.py:3007 +#: order/models.py:2589 order/models.py:3008 msgid "Item" msgstr "Položka" -#: order/models.py:2589 +#: order/models.py:2590 msgid "Select stock item to allocate" msgstr "Vyberte skladovou položku pro přidělení" -#: order/models.py:2598 +#: order/models.py:2599 msgid "Enter stock allocation quantity" msgstr "Zadejte množství pro přidělení zásob" -#: order/models.py:2713 +#: order/models.py:2714 msgid "Return Order reference" msgstr "Reference návratové objednávky" -#: order/models.py:2725 +#: order/models.py:2726 msgid "Company from which items are being returned" msgstr "Společnost, od které se vrací položky" -#: order/models.py:2738 +#: order/models.py:2739 msgid "Return order status" msgstr "Stav návratové objednávky" -#: order/models.py:2965 +#: order/models.py:2966 msgid "Return Order Line Item" msgstr "Linkový předmět vratky" -#: order/models.py:2978 +#: order/models.py:2979 msgid "Stock item must be specified" msgstr "Zásobní položka musí být specifikována" -#: order/models.py:2982 +#: order/models.py:2983 msgid "Return quantity exceeds stock quantity" msgstr "Množství vratky přesahuje množstvní zásob" -#: order/models.py:2987 +#: order/models.py:2988 msgid "Return quantity must be greater than zero" msgstr "Množstvní vratky musí být více než nula" -#: order/models.py:2992 +#: order/models.py:2993 msgid "Invalid quantity for serialized stock item" msgstr "Neplatné množství pro sériovou skladovou položku" -#: order/models.py:3008 +#: order/models.py:3009 msgid "Select item to return from customer" msgstr "Vyberte položku pro vrácení od zákazníka" -#: order/models.py:3023 +#: order/models.py:3024 msgid "Received Date" msgstr "Datum přijetí" -#: order/models.py:3024 +#: order/models.py:3025 msgid "The date this this return item was received" msgstr "Datum přijetí této vrácené položky" -#: order/models.py:3036 +#: order/models.py:3037 msgid "Outcome" msgstr "Výsledek" -#: order/models.py:3037 +#: order/models.py:3038 msgid "Outcome for this line item" msgstr "Výsledky pro tuto položku" -#: order/models.py:3044 +#: order/models.py:3045 msgid "Cost associated with return or repair for this line item" msgstr "Náklady spojené s návratem nebo opravou této položky" -#: order/models.py:3054 +#: order/models.py:3055 msgid "Return Order Extra Line" msgstr "Vratka extra linka" -#: order/serializers.py:91 +#: order/serializers.py:92 msgid "Order ID" msgstr "ID objednávky" -#: order/serializers.py:91 +#: order/serializers.py:92 msgid "ID of the order to duplicate" msgstr "ID objednávky k duplikaci" -#: order/serializers.py:97 +#: order/serializers.py:98 msgid "Copy Lines" msgstr "Kopírovat řádky" -#: order/serializers.py:98 +#: order/serializers.py:99 msgid "Copy line items from the original order" msgstr "Kopírovat řádkové položky z původní objednávky" -#: order/serializers.py:104 +#: order/serializers.py:105 msgid "Copy Extra Lines" msgstr "Kopírovat extra řádky" -#: order/serializers.py:105 +#: order/serializers.py:106 msgid "Copy extra line items from the original order" msgstr "Kopírovat extra řádkové položky z původní objednávky" -#: order/serializers.py:120 +#: order/serializers.py:121 #: report/templates/report/inventree_purchase_order_report.html:29 #: report/templates/report/inventree_return_order_report.html:19 #: report/templates/report/inventree_sales_order_report.html:22 msgid "Line Items" msgstr "Řádkové položky" -#: order/serializers.py:125 +#: order/serializers.py:126 msgid "Completed Lines" msgstr "Dokončené řádky" -#: order/serializers.py:192 +#: order/serializers.py:199 msgid "Duplicate Order" msgstr "Duplikovat objednávku" -#: order/serializers.py:193 +#: order/serializers.py:200 msgid "Specify options for duplicating this order" msgstr "Specifikujte možnosti pro duplikaci této objednávky" -#: order/serializers.py:270 +#: order/serializers.py:278 msgid "Invalid order ID" msgstr "Neplatné ID objednávky" -#: order/serializers.py:466 +#: order/serializers.py:477 msgid "Supplier Name" msgstr "Název dodavatele" -#: order/serializers.py:510 +#: order/serializers.py:521 msgid "Order cannot be cancelled" msgstr "Objednávku nelze zrušit" -#: order/serializers.py:525 order/serializers.py:1602 +#: order/serializers.py:536 order/serializers.py:1616 msgid "Allow order to be closed with incomplete line items" msgstr "Povolit uzavření objednávky s neúplnými řádkovými položkami" -#: order/serializers.py:535 order/serializers.py:1612 +#: order/serializers.py:546 order/serializers.py:1626 msgid "Order has incomplete line items" msgstr "Objednávka má nedokončené řádkové položky" -#: order/serializers.py:665 +#: order/serializers.py:676 msgid "Order is not open" msgstr "Objednávka není otevřena" -#: order/serializers.py:692 +#: order/serializers.py:703 msgid "Auto Pricing" msgstr "Automatická cena" -#: order/serializers.py:694 +#: order/serializers.py:705 msgid "Automatically calculate purchase price based on supplier part data" msgstr "Automaticky vypočítat nákupní cenu na základě údajů o dílech dodavatele" -#: order/serializers.py:704 +#: order/serializers.py:715 msgid "Purchase price currency" msgstr "Měna nákupní ceny" -#: order/serializers.py:718 +#: order/serializers.py:729 msgid "Merge Items" msgstr "Sloučit položky" -#: order/serializers.py:720 +#: order/serializers.py:731 msgid "Merge items with the same part, destination and target date into one line item" msgstr "Sloučit položky se stejným dílem, místem určení a cílovým datem do jedné řádkové položky" -#: order/serializers.py:727 part/serializers.py:560 +#: order/serializers.py:738 part/serializers.py:471 msgid "SKU" msgstr "Číslo zboží (SKU)" -#: order/serializers.py:741 part/models.py:1089 part/serializers.py:372 +#: order/serializers.py:752 part/models.py:1177 part/serializers.py:337 msgid "Internal Part Number" msgstr "Interní číslo dílu" -#: order/serializers.py:749 +#: order/serializers.py:760 msgid "Internal Part Name" msgstr "Interní název dílu" -#: order/serializers.py:765 +#: order/serializers.py:776 msgid "Supplier part must be specified" msgstr "Musí být uveden díl dodavatele" -#: order/serializers.py:768 +#: order/serializers.py:779 msgid "Purchase order must be specified" msgstr "Objednávka musí být zadána" -#: order/serializers.py:776 +#: order/serializers.py:787 msgid "Supplier must match purchase order" msgstr "Dodavatel musí odpovídat objednávce" -#: order/serializers.py:777 +#: order/serializers.py:788 msgid "Purchase order must match supplier" msgstr "Objednávka musí odpovídat dodavateli" -#: order/serializers.py:825 order/serializers.py:1682 +#: order/serializers.py:836 order/serializers.py:1696 msgid "Line Item" msgstr "Řádková položka" -#: order/serializers.py:834 order/serializers.py:974 order/serializers.py:2043 +#: order/serializers.py:845 order/serializers.py:985 order/serializers.py:2060 msgid "Select destination location for received items" msgstr "Vyberte cílové umístění pro přijaté položky" -#: order/serializers.py:850 +#: order/serializers.py:861 msgid "Enter batch code for incoming stock items" msgstr "Zadat kód šarže pro příchozí skladové položky" -#: order/serializers.py:857 stock/models.py:1160 +#: order/serializers.py:868 stock/models.py:1160 #: templates/email/stale_stock_notification.html:22 users/models.py:137 msgid "Expiry Date" msgstr "Datum expirace" -#: order/serializers.py:858 +#: order/serializers.py:869 msgid "Enter expiry date for incoming stock items" msgstr "Zadejte datum expirace pro příchozí skladové položky" -#: order/serializers.py:866 +#: order/serializers.py:877 msgid "Enter serial numbers for incoming stock items" msgstr "Zadat sériová čísla pro příchozí skladové položky" -#: order/serializers.py:876 +#: order/serializers.py:887 msgid "Override packaging information for incoming stock items" msgstr "Přepsat informace o obalu pro příchozí skladové položky" -#: order/serializers.py:884 order/serializers.py:2048 +#: order/serializers.py:895 order/serializers.py:2065 msgid "Additional note for incoming stock items" msgstr "Dodatečná poznámka pro příchozí skladové položky" -#: order/serializers.py:891 +#: order/serializers.py:902 msgid "Barcode" msgstr "Čárový kód" -#: order/serializers.py:892 +#: order/serializers.py:903 msgid "Scanned barcode" msgstr "Naskenovaný čárový kód" -#: order/serializers.py:908 +#: order/serializers.py:919 msgid "Barcode is already in use" msgstr "Tento čárový kód se již používá" -#: order/serializers.py:991 order/serializers.py:2067 +#: order/serializers.py:1002 order/serializers.py:2084 msgid "Line items must be provided" msgstr "Musí být uvedeny řádkové položky" -#: order/serializers.py:1010 +#: order/serializers.py:1021 msgid "Destination location must be specified" msgstr "Místo určení musí být specifikováno" -#: order/serializers.py:1017 +#: order/serializers.py:1028 msgid "Supplied barcode values must be unique" msgstr "Hodnoty dodaných čárových kódů musí být unikátní" -#: order/serializers.py:1121 +#: order/serializers.py:1135 msgid "Shipments" msgstr "Zásilky" -#: order/serializers.py:1125 +#: order/serializers.py:1139 msgid "Completed Shipments" msgstr "Dokončené zásilky" -#: order/serializers.py:1293 +#: order/serializers.py:1307 msgid "Sale price currency" msgstr "Měna prodejní ceny" -#: order/serializers.py:1339 +#: order/serializers.py:1353 msgid "Allocated Items" msgstr "Přidělené položky" -#: order/serializers.py:1484 +#: order/serializers.py:1498 msgid "No shipment details provided" msgstr "Nebyly poskytnuty žádné údaje o zásilce" -#: order/serializers.py:1545 order/serializers.py:1691 +#: order/serializers.py:1559 order/serializers.py:1705 msgid "Line item is not associated with this order" msgstr "Řádková položka není přiřazena k této objednávce" -#: order/serializers.py:1564 +#: order/serializers.py:1578 msgid "Quantity must be positive" msgstr "Množství musí být kladné" -#: order/serializers.py:1701 +#: order/serializers.py:1715 msgid "Enter serial numbers to allocate" msgstr "Zadejte sériová čísla pro přidělení" -#: order/serializers.py:1723 order/serializers.py:1843 +#: order/serializers.py:1737 order/serializers.py:1857 msgid "Shipment has already been shipped" msgstr "Zásilka již byla odeslána" -#: order/serializers.py:1726 order/serializers.py:1846 +#: order/serializers.py:1740 order/serializers.py:1860 msgid "Shipment is not associated with this order" msgstr "Zásilka není spojena s touto objednávkou" -#: order/serializers.py:1781 +#: order/serializers.py:1795 msgid "No match found for the following serial numbers" msgstr "Nebyla nalezena žádná shoda pro následující sériová čísla" -#: order/serializers.py:1788 +#: order/serializers.py:1802 msgid "The following serial numbers are unavailable" msgstr "Následující sériová čísla nejsou k dispozici" -#: order/serializers.py:2009 +#: order/serializers.py:2026 msgid "Return order line item" msgstr "Řádkový předmět vratky" -#: order/serializers.py:2019 +#: order/serializers.py:2036 msgid "Line item does not match return order" msgstr "Řádková položka neodpovídá vratce" -#: order/serializers.py:2022 +#: order/serializers.py:2039 msgid "Line item has already been received" msgstr "Řádková položka již byla přijata" -#: order/serializers.py:2059 +#: order/serializers.py:2076 msgid "Items can only be received against orders which are in progress" msgstr "Položky lze přijímat pouze proti objednávkám, které probíhají" -#: order/serializers.py:2124 +#: order/serializers.py:2141 msgid "Quantity to return" msgstr "Množství k vrácení" -#: order/serializers.py:2140 +#: order/serializers.py:2157 msgid "Line price currency" msgstr "Měna ceny řádku" @@ -5431,1190 +5559,1109 @@ msgstr "Vratka po termínu vrácení" msgid "Return order {ro} is now overdue" msgstr "Vratka {ro} je nyní opožděná" -#: part/api.py:108 +#: part/api.py:103 msgid "Starred" msgstr "Označené" -#: part/api.py:110 +#: part/api.py:105 msgid "Filter by starred categories" msgstr "Filtrovat podle kategorií s hvězdičkou" -#: part/api.py:127 stock/api.py:288 +#: part/api.py:122 stock/api.py:288 msgid "Depth" msgstr "Hloubka" -#: part/api.py:127 +#: part/api.py:122 msgid "Filter by category depth" msgstr "Filtrovat podle hloubky kategorie" -#: part/api.py:145 stock/api.py:306 +#: part/api.py:140 stock/api.py:306 msgid "Top Level" msgstr "Nejvyšší úroveň" -#: part/api.py:147 +#: part/api.py:142 msgid "Filter by top-level categories" msgstr "Filtrovat podle nejvyšších kategorií" -#: part/api.py:160 stock/api.py:321 +#: part/api.py:155 stock/api.py:321 msgid "Cascade" msgstr "Kaskáda" -#: part/api.py:162 +#: part/api.py:157 msgid "Include sub-categories in filtered results" msgstr "Zahrnout podkategorie do filtrovaných výsledků" -#: part/api.py:182 +#: part/api.py:177 msgid "Parent" msgstr "Předek" -#: part/api.py:184 +#: part/api.py:179 msgid "Filter by parent category" msgstr "Filtrovat podle nadřazené kategorie" -#: part/api.py:219 +#: part/api.py:214 msgid "Exclude sub-categories under the specified category" msgstr "Vyloučit podkategorie v zadané kategorii" -#: part/api.py:445 +#: part/api.py:440 msgid "Has Results" msgstr "Má výsledky" -#: part/api.py:666 +#: part/api.py:661 msgid "Is Variant" msgstr "Je varianta" -#: part/api.py:674 +#: part/api.py:669 msgid "Is Revision" msgstr "Je revizí" -#: part/api.py:684 +#: part/api.py:679 msgid "Has Revisions" msgstr "Má revize" -#: part/api.py:865 +#: part/api.py:860 msgid "BOM Valid" msgstr "Kusovník schválen" -#: part/api.py:974 +#: part/api.py:969 msgid "Cascade Categories" msgstr "Kaskádové kategorie" -#: part/api.py:975 +#: part/api.py:970 msgid "If true, include items in child categories of the given category" msgstr "Pokud je pravda, zahrne položky z podkategorií dané kategorie" -#: part/api.py:981 +#: part/api.py:976 msgid "Filter by numeric category ID or the literal 'null'" msgstr "Filtrovat podle numerického ID kategorie nebo doslovného 'null'" -#: part/api.py:1533 +#: part/api.py:1258 msgid "Assembly part is testable" msgstr "Sestavený díl je testovatelný" -#: part/api.py:1542 +#: part/api.py:1267 msgid "Component part is testable" msgstr "Díl komponenty je testovatelný" -#: part/api.py:1611 +#: part/api.py:1336 msgid "Uses" msgstr "Využití" -#: part/models.py:96 part/models.py:4163 +#: part/models.py:93 part/models.py:436 #: templates/email/part_event_notification.html:16 msgid "Part Category" msgstr "Kategorie dílu" -#: part/models.py:97 users/ruleset.py:27 +#: part/models.py:94 users/ruleset.py:27 msgid "Part Categories" msgstr "Kategorie dílů" -#: part/models.py:115 part/models.py:1125 +#: part/models.py:112 part/models.py:1213 msgid "Default Location" msgstr "Výchozí umístění" -#: part/models.py:116 +#: part/models.py:113 msgid "Default location for parts in this category" msgstr "Výchozí umístění dílů v této kategorii" -#: part/models.py:121 stock/models.py:216 +#: part/models.py:118 stock/models.py:216 msgid "Structural" msgstr "Strukturální" -#: part/models.py:123 +#: part/models.py:120 msgid "Parts may not be directly assigned to a structural category, but may be assigned to child categories." msgstr "Díly nesmějí být přímo zařazeny do strukturální kategorie, ale mohou být zařazeny do jejích podkategorií." -#: part/models.py:132 +#: part/models.py:129 msgid "Default keywords" msgstr "Výchozí klíčová slova" -#: part/models.py:133 +#: part/models.py:130 msgid "Default keywords for parts in this category" msgstr "Výchozí klíčová slova pro díly v této kategorii" -#: part/models.py:140 stock/models.py:97 stock/models.py:198 +#: part/models.py:137 stock/models.py:97 stock/models.py:198 msgid "Icon" msgstr "Ikona" -#: part/models.py:141 part/serializers.py:148 part/serializers.py:167 +#: part/models.py:138 part/serializers.py:147 part/serializers.py:166 #: stock/models.py:199 msgid "Icon (optional)" msgstr "Ikona (volitelná)" -#: part/models.py:185 +#: part/models.py:182 msgid "You cannot make this part category structural because some parts are already assigned to it!" msgstr "Nemůžete tuto kategorii označit jako strukturální, protože má již přiřazené díly!" -#: part/models.py:473 part/serializers.py:119 part/serializers.py:310 -#: users/ruleset.py:28 +#: part/models.py:392 +msgid "Part Category Parameter Template" +msgstr "Šablona parametru kategorie dílu" + +#: part/models.py:448 +msgid "Default Value" +msgstr "Výchozí hodnota" + +#: part/models.py:449 +msgid "Default Parameter Value" +msgstr "Výchozí hodnota parametru" + +#: part/models.py:551 part/serializers.py:118 users/ruleset.py:28 msgid "Parts" msgstr "Díly" -#: part/models.py:525 +#: part/models.py:597 +msgid "Cannot delete parameters of a locked part" +msgstr "Nelze odstranit parametry zamčeného dílu" + +#: part/models.py:602 +msgid "Cannot modify parameters of a locked part" +msgstr "Nelze upravit parametry zamčeného dílu" + +#: part/models.py:613 msgid "Cannot delete this part as it is locked" msgstr "Tento díl nelze smazat, protože je uzamčen" -#: part/models.py:528 +#: part/models.py:616 msgid "Cannot delete this part as it is still active" msgstr "Tento díl nelze odstanit, protože je stále aktivní" -#: part/models.py:533 +#: part/models.py:621 msgid "Cannot delete this part as it is used in an assembly" msgstr "Tento díl nelze odstranit, protože je použit v sestavě" -#: part/models.py:616 part/models.py:623 +#: part/models.py:704 part/models.py:711 #, python-brace-format msgid "Part '{self}' cannot be used in BOM for '{parent}' (recursive)" msgstr "Díl '{self}' nelze použít v kusovníku '{parent}' (rekurzivní)" -#: part/models.py:635 +#: part/models.py:723 #, python-brace-format msgid "Part '{parent}' is used in BOM for '{self}' (recursive)" msgstr "Díl '{parent}' je využit v kusovníku '{self}' (rekurzivní)" -#: part/models.py:702 +#: part/models.py:790 #, python-brace-format msgid "IPN must match regex pattern {pattern}" msgstr "IPN musí odpovídat regex vzoru {pattern}" -#: part/models.py:710 +#: part/models.py:798 msgid "Part cannot be a revision of itself" msgstr "Díl nemůže být revize same sebe" -#: part/models.py:717 +#: part/models.py:805 msgid "Cannot make a revision of a part which is already a revision" msgstr "Nelze udělat revizi dílu, který už je revize" -#: part/models.py:724 +#: part/models.py:812 msgid "Revision code must be specified" msgstr "Kód revize musí být uveden" -#: part/models.py:731 +#: part/models.py:819 msgid "Revisions are only allowed for assembly parts" msgstr "Revize jsou povoleny pouze pro sestavy" -#: part/models.py:738 +#: part/models.py:826 msgid "Cannot make a revision of a template part" msgstr "Nelze provést revizi šablony" -#: part/models.py:744 +#: part/models.py:832 msgid "Parent part must point to the same template" msgstr "Nadřazený díl musí odkazovat na stejnou šablonu" -#: part/models.py:841 +#: part/models.py:929 msgid "Stock item with this serial number already exists" msgstr "Skladová položka s tímto sériovým číslem již existuje" -#: part/models.py:971 +#: part/models.py:1059 msgid "Duplicate IPN not allowed in part settings" msgstr "Duplicitní IPN není povoleno v nastavení dílu" -#: part/models.py:983 +#: part/models.py:1071 msgid "Duplicate part revision already exists." msgstr "Duplicitní díl revize již existuje." -#: part/models.py:992 +#: part/models.py:1080 msgid "Part with this Name, IPN and Revision already exists." msgstr "Díl s tímto názvem, IPN a revizí již existuje." -#: part/models.py:1007 +#: part/models.py:1095 msgid "Parts cannot be assigned to structural part categories!" msgstr "Díly nemohou být přiřazeny do strukturálních kategorií!" -#: part/models.py:1039 +#: part/models.py:1127 msgid "Part name" msgstr "Název dílu" -#: part/models.py:1044 +#: part/models.py:1132 msgid "Is Template" msgstr "Je šablonou" -#: part/models.py:1045 +#: part/models.py:1133 msgid "Is this part a template part?" msgstr "Je tento díl šablona?" -#: part/models.py:1055 +#: part/models.py:1143 msgid "Is this part a variant of another part?" msgstr "Je tento díl varianta jiného dílu?" -#: part/models.py:1056 +#: part/models.py:1144 msgid "Variant Of" msgstr "Varianta" -#: part/models.py:1063 +#: part/models.py:1151 msgid "Part description (optional)" msgstr "Popis dílu (nepovinné)" -#: part/models.py:1070 +#: part/models.py:1158 msgid "Keywords" msgstr "Klíčová slova" -#: part/models.py:1071 +#: part/models.py:1159 msgid "Part keywords to improve visibility in search results" msgstr "Klíčová slova dílu pro zlepšení vyhledávání" -#: part/models.py:1081 +#: part/models.py:1169 msgid "Part category" msgstr "Kategorie dílu" -#: part/models.py:1088 part/serializers.py:929 +#: part/models.py:1176 part/serializers.py:814 #: report/templates/report/inventree_stock_location_report.html:103 msgid "IPN" msgstr "Interní číslo dílu (IPN)" -#: part/models.py:1096 +#: part/models.py:1184 msgid "Part revision or version number" msgstr "Číslo revize nebo verze dílu" -#: part/models.py:1097 report/models.py:228 +#: part/models.py:1185 report/models.py:228 msgid "Revision" msgstr "Revize" -#: part/models.py:1106 +#: part/models.py:1194 msgid "Is this part a revision of another part?" msgstr "Je tento díl revizí jiného dílu?" -#: part/models.py:1107 +#: part/models.py:1195 msgid "Revision Of" msgstr "Revize" -#: part/models.py:1123 +#: part/models.py:1211 msgid "Where is this item normally stored?" msgstr "Kde je tato položka obvykle skladněna?" -#: part/models.py:1169 +#: part/models.py:1257 msgid "Default Supplier" msgstr "Výchozí dodavatel" -#: part/models.py:1170 +#: part/models.py:1258 msgid "Default supplier part" msgstr "Výchozí díl dodavatele" -#: part/models.py:1177 +#: part/models.py:1265 msgid "Default Expiry" msgstr "Výchozí expirace" -#: part/models.py:1178 +#: part/models.py:1266 msgid "Expiry time (in days) for stock items of this part" msgstr "Expirační čas (ve dnech) pro zásoby tohoto dílu" -#: part/models.py:1186 part/serializers.py:1003 +#: part/models.py:1274 part/serializers.py:888 msgid "Minimum Stock" msgstr "Minimální zásoby na skladě" -#: part/models.py:1187 +#: part/models.py:1275 msgid "Minimum allowed stock level" msgstr "Minimální povolená úroveň zásob" -#: part/models.py:1196 +#: part/models.py:1284 msgid "Units of measure for this part" msgstr "Měrné jednotky pro tento díl" -#: part/models.py:1203 +#: part/models.py:1291 msgid "Can this part be built from other parts?" msgstr "Lze tento díl sestavit z jiných dílů?" -#: part/models.py:1209 +#: part/models.py:1297 msgid "Can this part be used to build other parts?" msgstr "Lze tento díl použít k sestavení jiných dílů?" -#: part/models.py:1215 +#: part/models.py:1303 msgid "Does this part have tracking for unique items?" msgstr "Lze u tohoto dílu sledovat jednotlivé položky?" -#: part/models.py:1221 +#: part/models.py:1309 msgid "Can this part have test results recorded against it?" msgstr "Může mít tento díl zaznamenány výsledky testu?" -#: part/models.py:1227 +#: part/models.py:1315 msgid "Can this part be purchased from external suppliers?" msgstr "Může být tento díl zakoupen od externích dodavatelů?" -#: part/models.py:1233 +#: part/models.py:1321 msgid "Can this part be sold to customers?" msgstr "Lze tento díl prodávat zákazníkům?" -#: part/models.py:1237 +#: part/models.py:1325 msgid "Is this part active?" msgstr "Je tento díl aktivní?" -#: part/models.py:1243 +#: part/models.py:1331 msgid "Locked parts cannot be edited" msgstr "Uzamčené díly nelze upravit" -#: part/models.py:1249 +#: part/models.py:1337 msgid "Is this a virtual part, such as a software product or license?" msgstr "Je to virtuální díl, například softwarový produkt nebo licence?" -#: part/models.py:1254 +#: part/models.py:1342 msgid "BOM Validated" msgstr "Kusovník ověřen" -#: part/models.py:1255 +#: part/models.py:1343 msgid "Is the BOM for this part valid?" msgstr "Je kusovník pro tuto část platný?" -#: part/models.py:1261 +#: part/models.py:1349 msgid "BOM checksum" msgstr "Kontrolní součet kusovníku" -#: part/models.py:1262 +#: part/models.py:1350 msgid "Stored BOM checksum" msgstr "Uložený kontrolní součet kusovníku" -#: part/models.py:1270 +#: part/models.py:1358 msgid "BOM checked by" msgstr "Kusovník zkontroloval" -#: part/models.py:1275 +#: part/models.py:1363 msgid "BOM checked date" msgstr "Datum kontroly kusovníku" -#: part/models.py:1291 +#: part/models.py:1379 msgid "Creation User" msgstr "Vytváření uživatele" -#: part/models.py:1301 +#: part/models.py:1389 msgid "Owner responsible for this part" msgstr "Vlastník odpovědný za tento díl" -#: part/models.py:2258 +#: part/models.py:2346 msgid "Sell multiple" msgstr "Prodat více" -#: part/models.py:3286 +#: part/models.py:3350 msgid "Currency used to cache pricing calculations" msgstr "Měna použitá pro výpočet cen v mezipaměti" -#: part/models.py:3302 +#: part/models.py:3366 msgid "Minimum BOM Cost" msgstr "Minimální cena kusovníku" -#: part/models.py:3303 +#: part/models.py:3367 msgid "Minimum cost of component parts" msgstr "Minimální cena komponent dílu" -#: part/models.py:3309 +#: part/models.py:3373 msgid "Maximum BOM Cost" msgstr "Maximální cena kusovníku" -#: part/models.py:3310 +#: part/models.py:3374 msgid "Maximum cost of component parts" msgstr "Maximální cena komponent dílu" -#: part/models.py:3316 +#: part/models.py:3380 msgid "Minimum Purchase Cost" msgstr "Minimální nákupní cena" -#: part/models.py:3317 +#: part/models.py:3381 msgid "Minimum historical purchase cost" msgstr "Minimální historická nákupní cena" -#: part/models.py:3323 +#: part/models.py:3387 msgid "Maximum Purchase Cost" msgstr "Maximální nákupní cena" -#: part/models.py:3324 +#: part/models.py:3388 msgid "Maximum historical purchase cost" msgstr "Maximální historická nákupní cena" -#: part/models.py:3330 +#: part/models.py:3394 msgid "Minimum Internal Price" msgstr "Minimální interní cena" -#: part/models.py:3331 +#: part/models.py:3395 msgid "Minimum cost based on internal price breaks" msgstr "Minimální cena závislá na množstevní slevě" -#: part/models.py:3337 +#: part/models.py:3401 msgid "Maximum Internal Price" msgstr "Maximální interní cena" -#: part/models.py:3338 +#: part/models.py:3402 msgid "Maximum cost based on internal price breaks" msgstr "Maximální cena závislá na množstevní slevě" -#: part/models.py:3344 +#: part/models.py:3408 msgid "Minimum Supplier Price" msgstr "Minimální cena dodavatele" -#: part/models.py:3345 +#: part/models.py:3409 msgid "Minimum price of part from external suppliers" msgstr "Minimální cena dílu od externích dodavatelů" -#: part/models.py:3351 +#: part/models.py:3415 msgid "Maximum Supplier Price" msgstr "Maximální cena dodavatele" -#: part/models.py:3352 +#: part/models.py:3416 msgid "Maximum price of part from external suppliers" msgstr "Maximální cena dílu od externích dodavatelů" -#: part/models.py:3358 +#: part/models.py:3422 msgid "Minimum Variant Cost" msgstr "Minimální cena variant" -#: part/models.py:3359 +#: part/models.py:3423 msgid "Calculated minimum cost of variant parts" msgstr "Vypočítané minimální náklady na varianty dílů" -#: part/models.py:3365 +#: part/models.py:3429 msgid "Maximum Variant Cost" msgstr "Maximální cena variant" -#: part/models.py:3366 +#: part/models.py:3430 msgid "Calculated maximum cost of variant parts" msgstr "Vypočítané maximální náklady na varianty dílů" -#: part/models.py:3372 part/models.py:3386 +#: part/models.py:3436 part/models.py:3450 msgid "Minimum Cost" msgstr "Minimální cena" -#: part/models.py:3373 +#: part/models.py:3437 msgid "Override minimum cost" msgstr "Přepsat minimální náklady" -#: part/models.py:3379 part/models.py:3393 +#: part/models.py:3443 part/models.py:3457 msgid "Maximum Cost" msgstr "Maximální cena" -#: part/models.py:3380 +#: part/models.py:3444 msgid "Override maximum cost" msgstr "Přepsat maximální náklady" -#: part/models.py:3387 +#: part/models.py:3451 msgid "Calculated overall minimum cost" msgstr "Vypočítané minimální celkové náklady" -#: part/models.py:3394 +#: part/models.py:3458 msgid "Calculated overall maximum cost" msgstr "Vypočítané maximální celkové náklady" -#: part/models.py:3400 +#: part/models.py:3464 msgid "Minimum Sale Price" msgstr "Minimální prodejní cena" -#: part/models.py:3401 +#: part/models.py:3465 msgid "Minimum sale price based on price breaks" msgstr "Minimální prodejní cena na základě cenových zvýhodnění" -#: part/models.py:3407 +#: part/models.py:3471 msgid "Maximum Sale Price" msgstr "Maximální prodejní cena" -#: part/models.py:3408 +#: part/models.py:3472 msgid "Maximum sale price based on price breaks" msgstr "Maximální prodejní cena na základě cenových zvýhodnění" -#: part/models.py:3414 +#: part/models.py:3478 msgid "Minimum Sale Cost" msgstr "Minimální prodejní cena" -#: part/models.py:3415 +#: part/models.py:3479 msgid "Minimum historical sale price" msgstr "Minimální historická prodejní cena" -#: part/models.py:3421 +#: part/models.py:3485 msgid "Maximum Sale Cost" msgstr "Maximální prodejní cena" -#: part/models.py:3422 +#: part/models.py:3486 msgid "Maximum historical sale price" msgstr "Maximální historická prodejní cena" -#: part/models.py:3440 +#: part/models.py:3504 msgid "Part for stocktake" msgstr "Díl na inventuru" -#: part/models.py:3445 +#: part/models.py:3509 msgid "Item Count" msgstr "Počet položek" -#: part/models.py:3446 +#: part/models.py:3510 msgid "Number of individual stock entries at time of stocktake" msgstr "Počet jednotlivých položek zásob v době inventury" -#: part/models.py:3454 +#: part/models.py:3518 msgid "Total available stock at time of stocktake" msgstr "Celkové dostupné zásoby v době inventury" -#: part/models.py:3458 report/templates/report/inventree_test_report.html:106 +#: part/models.py:3522 report/templates/report/inventree_test_report.html:106 msgid "Date" msgstr "Datum" -#: part/models.py:3459 +#: part/models.py:3523 msgid "Date stocktake was performed" msgstr "Datum provedení inventury" -#: part/models.py:3466 +#: part/models.py:3530 msgid "Minimum Stock Cost" msgstr "Minimální cena zásob" -#: part/models.py:3467 +#: part/models.py:3531 msgid "Estimated minimum cost of stock on hand" msgstr "Odhadovaná minimální cena zásob k dispozici" -#: part/models.py:3473 +#: part/models.py:3537 msgid "Maximum Stock Cost" msgstr "Maximální cena zásob" -#: part/models.py:3474 +#: part/models.py:3538 msgid "Estimated maximum cost of stock on hand" msgstr "Odhadovaná maximální cena zásob k dispozici" -#: part/models.py:3484 +#: part/models.py:3548 msgid "Part Sale Price Break" msgstr "Částeční sleva v ceně" -#: part/models.py:3596 +#: part/models.py:3660 msgid "Part Test Template" msgstr "Šablona testu položky" -#: part/models.py:3622 +#: part/models.py:3686 msgid "Invalid template name - must include at least one alphanumeric character" msgstr "Neplatný název šablony - musí obsahovat alespoň jeden alfanumerický znak" -#: part/models.py:3643 part/models.py:3816 -msgid "Choices must be unique" -msgstr "Volby musí být jedinečné" - -#: part/models.py:3654 +#: part/models.py:3718 msgid "Test templates can only be created for testable parts" msgstr "Zkušební šablony lze vytvořit pouze pro testovatelné části" -#: part/models.py:3668 +#: part/models.py:3732 msgid "Test template with the same key already exists for part" msgstr "Testovací šablona se stejným klíčem již existuje pro díl" -#: part/models.py:3685 +#: part/models.py:3749 msgid "Test Name" msgstr "Název testu" -#: part/models.py:3686 +#: part/models.py:3750 msgid "Enter a name for the test" msgstr "Zadejte název testu" -#: part/models.py:3692 +#: part/models.py:3756 msgid "Test Key" msgstr "Testovací klíč" -#: part/models.py:3693 +#: part/models.py:3757 msgid "Simplified key for the test" msgstr "Zjednodušený klíč pro testování" -#: part/models.py:3700 +#: part/models.py:3764 msgid "Test Description" msgstr "Popis testu" -#: part/models.py:3701 +#: part/models.py:3765 msgid "Enter description for this test" msgstr "Zadejte popis pro tento test" -#: part/models.py:3705 report/models.py:287 -msgid "Enabled" -msgstr "Povoleno" - -#: part/models.py:3705 +#: part/models.py:3769 msgid "Is this test enabled?" msgstr "Je tento test povolen?" -#: part/models.py:3710 +#: part/models.py:3774 msgid "Required" msgstr "Požadováno" -#: part/models.py:3711 +#: part/models.py:3775 msgid "Is this test required to pass?" msgstr "Je tato zkouška vyžadována k projití?" -#: part/models.py:3716 +#: part/models.py:3780 msgid "Requires Value" msgstr "Požadovaná hodnota" -#: part/models.py:3717 +#: part/models.py:3781 msgid "Does this test require a value when adding a test result?" msgstr "Vyžaduje tato zkouška hodnotu při výpočtu výsledku zkoušky?" -#: part/models.py:3722 +#: part/models.py:3786 msgid "Requires Attachment" msgstr "Vyžaduje přílohu" -#: part/models.py:3724 +#: part/models.py:3788 msgid "Does this test require a file attachment when adding a test result?" msgstr "Vyžaduje tato zkouška soubor při přidání výsledku testu?" -#: part/models.py:3730 part/models.py:3878 -msgid "Choices" -msgstr "Volby" - -#: part/models.py:3731 +#: part/models.py:3795 msgid "Valid choices for this test (comma-separated)" msgstr "Platné volby pro tento test (oddělené čárkami)" -#: part/models.py:3764 -msgid "Part Parameter Template" -msgstr "Šablona parametru dílu" - -#: part/models.py:3791 -msgid "Checkbox parameters cannot have units" -msgstr "Parametry zaškrtávacího pole nemohou mít jednotky" - -#: part/models.py:3796 -msgid "Checkbox parameters cannot have choices" -msgstr "Parametry zaškrtávacího pole nemohou mít výběr" - -#: part/models.py:3833 -msgid "Parameter template name must be unique" -msgstr "Název šablony parametru musí být jedinečný" - -#: part/models.py:3851 -msgid "Parameter Name" -msgstr "Název parametru" - -#: part/models.py:3858 -msgid "Physical units for this parameter" -msgstr "Fyzické jednotky pro tento parametr" - -#: part/models.py:3866 -msgid "Parameter description" -msgstr "Popis parametru" - -#: part/models.py:3872 -msgid "Checkbox" -msgstr "Zaškrtávací políčko" - -#: part/models.py:3873 -msgid "Is this parameter a checkbox?" -msgstr "Je tento parametr zaškrtávací políčko?" - -#: part/models.py:3879 -msgid "Valid choices for this parameter (comma-separated)" -msgstr "Platné volby pro tento parametr (oddělené čárkami)" - -#: part/models.py:3890 -msgid "Selection list for this parameter" -msgstr "Seznam výběru pro tento parametr" - -#: part/models.py:3932 -msgid "Part Parameter" -msgstr "Díl parmetru" - -#: part/models.py:3958 -msgid "Parameter cannot be modified - part is locked" -msgstr "Parametr nelze upravit - díl je zamčen" - -#: part/models.py:3996 -msgid "Invalid choice for parameter value" -msgstr "Neplatná volba pro hodnotu parametru" - -#: part/models.py:4047 -msgid "Parent Part" -msgstr "Nadřazený díl" - -#: part/models.py:4055 part/models.py:4170 part/models.py:4171 -msgid "Parameter Template" -msgstr "Šablona parametru" - -#: part/models.py:4061 -msgid "Parameter Value" -msgstr "Hodnota parametru" - -#: part/models.py:4071 stock/serializers.py:718 -msgid "Optional note field" -msgstr "Volitelné pole pro poznámku" - -#: part/models.py:4118 -msgid "Part Category Parameter Template" -msgstr "Šablona parametru kategorie dílu" - -#: part/models.py:4177 -msgid "Default Value" -msgstr "Výchozí hodnota" - -#: part/models.py:4178 -msgid "Default Parameter Value" -msgstr "Výchozí hodnota parametru" - -#: part/models.py:4352 +#: part/models.py:3977 msgid "BOM item cannot be modified - assembly is locked" msgstr "Položku kusovníku nelze změnit - sestava je uzamčena" -#: part/models.py:4359 +#: part/models.py:3984 msgid "BOM item cannot be modified - variant assembly is locked" msgstr "Položku kusovníku nelze změnit - varianta montáže je uzamčena" -#: part/models.py:4369 +#: part/models.py:3994 msgid "Select parent part" msgstr "Vyberte nadřazený díl" -#: part/models.py:4379 +#: part/models.py:4004 msgid "Sub part" msgstr "Poddílec" -#: part/models.py:4380 +#: part/models.py:4005 msgid "Select part to be used in BOM" msgstr "Vyberte díl které bude použit v kusovníku" -#: part/models.py:4391 +#: part/models.py:4016 msgid "BOM quantity for this BOM item" msgstr "Kusovníkové množství pro tuto kusovníkovou položku" -#: part/models.py:4397 +#: part/models.py:4022 msgid "This BOM item is optional" msgstr "Tato položka kusovníku je nepovinná" -#: part/models.py:4403 +#: part/models.py:4028 msgid "This BOM item is consumable (it is not tracked in build orders)" msgstr "Tento předmět kusovníku je spotřebovatelný (není sledován v objednávkách stavby)" -#: part/models.py:4411 +#: part/models.py:4036 msgid "Setup Quantity" msgstr "Nastavit množství" -#: part/models.py:4412 +#: part/models.py:4037 msgid "Extra required quantity for a build, to account for setup losses" msgstr "Dodatečné množství potřebné pro sestavení k vyúčtování ztráty nastavení" -#: part/models.py:4420 +#: part/models.py:4045 msgid "Attrition" msgstr "Přirozené ztráty" -#: part/models.py:4422 +#: part/models.py:4047 msgid "Estimated attrition for a build, expressed as a percentage (0-100)" msgstr "Odhadované přirozené ztráty pro stavbu, vyjádřeno v procentech (0-100)" -#: part/models.py:4433 +#: part/models.py:4058 msgid "Rounding Multiple" msgstr "Zaokrouhlení více" -#: part/models.py:4435 +#: part/models.py:4060 msgid "Round up required production quantity to nearest multiple of this value" msgstr "Zaokrouhlit požadované množství produkce na nejbližší násobek této hodnoty" -#: part/models.py:4443 +#: part/models.py:4068 msgid "BOM item reference" msgstr "Reference položky kusovníku" -#: part/models.py:4451 +#: part/models.py:4076 msgid "BOM item notes" msgstr "Poznámky k položce kusovníku" -#: part/models.py:4457 +#: part/models.py:4082 msgid "Checksum" msgstr "Kontrolní součet" -#: part/models.py:4458 +#: part/models.py:4083 msgid "BOM line checksum" msgstr "Kontrolní součet řádku kusovníku" -#: part/models.py:4463 +#: part/models.py:4088 msgid "Validated" msgstr "Schváleno" -#: part/models.py:4464 +#: part/models.py:4089 msgid "This BOM item has been validated" msgstr "Tato položka kusovníku ještě nebyla schválena" -#: part/models.py:4469 +#: part/models.py:4094 msgid "Gets inherited" msgstr "Se zdědí" -#: part/models.py:4470 +#: part/models.py:4095 msgid "This BOM item is inherited by BOMs for variant parts" msgstr "Tento kusovník se zdědí kusovníky pro varianty dílů" -#: part/models.py:4476 +#: part/models.py:4101 msgid "Stock items for variant parts can be used for this BOM item" msgstr "Skladové položky pro varianty dílu lze použít pro tuto položku kusovníku" -#: part/models.py:4583 stock/models.py:925 +#: part/models.py:4208 stock/models.py:925 msgid "Quantity must be integer value for trackable parts" msgstr "Množství musí být celé číslo pro sledovatelné díly" -#: part/models.py:4593 part/models.py:4595 +#: part/models.py:4218 part/models.py:4220 msgid "Sub part must be specified" msgstr "Poddíl musí být specifikován" -#: part/models.py:4746 +#: part/models.py:4371 msgid "BOM Item Substitute" msgstr "Náhradní položka kusovníku" -#: part/models.py:4767 +#: part/models.py:4392 msgid "Substitute part cannot be the same as the master part" msgstr "Náhradní díl nemůže být stejný jako hlavní díl" -#: part/models.py:4780 +#: part/models.py:4405 msgid "Parent BOM item" msgstr "Nadřazená položka kusovníku" -#: part/models.py:4788 +#: part/models.py:4413 msgid "Substitute part" msgstr "Náhradní díl" -#: part/models.py:4804 +#: part/models.py:4429 msgid "Part 1" msgstr "Díl 1" -#: part/models.py:4812 +#: part/models.py:4437 msgid "Part 2" msgstr "Díl 2" -#: part/models.py:4813 +#: part/models.py:4438 msgid "Select Related Part" msgstr "Vyberte související díl" -#: part/models.py:4820 +#: part/models.py:4445 msgid "Note for this relationship" msgstr "Poznámka pro tento vztah" -#: part/models.py:4839 +#: part/models.py:4464 msgid "Part relationship cannot be created between a part and itself" msgstr "Část vztahu nemůže být vytvořena mezi dílem samotným" -#: part/models.py:4844 +#: part/models.py:4469 msgid "Duplicate relationship already exists" msgstr "Duplicitní vztah již existuje" -#: part/serializers.py:114 +#: part/serializers.py:113 msgid "Parent Category" msgstr "Nadřazená kategorie" -#: part/serializers.py:115 +#: part/serializers.py:114 msgid "Parent part category" msgstr "Nadřazená kategorie dílu" -#: part/serializers.py:123 part/serializers.py:164 +#: part/serializers.py:122 part/serializers.py:163 msgid "Subcategories" msgstr "Podkategorie" -#: part/serializers.py:203 +#: part/serializers.py:202 msgid "Results" msgstr "Výsledky" -#: part/serializers.py:204 +#: part/serializers.py:203 msgid "Number of results recorded against this template" msgstr "Počet výsledků zaznamenaných podle této šablony" -#: part/serializers.py:235 part/serializers.py:253 stock/serializers.py:643 +#: part/serializers.py:234 part/serializers.py:252 stock/serializers.py:643 msgid "Purchase currency of this stock item" msgstr "Nákupní měna této skladové položky" -#: part/serializers.py:280 +#: part/serializers.py:279 msgid "File is not an image" msgstr "Soubor není obrázek" -#: part/serializers.py:311 -msgid "Number of parts using this template" -msgstr "Počet dílů používajících tuto šablonu" - -#: part/serializers.py:471 +#: part/serializers.py:382 msgid "Original Part" msgstr "Původní díl" -#: part/serializers.py:472 +#: part/serializers.py:383 msgid "Select original part to duplicate" msgstr "Vyberte původní díl, který má být duplikován" -#: part/serializers.py:477 +#: part/serializers.py:388 msgid "Copy Image" msgstr "Kopírovat obrázek" -#: part/serializers.py:478 +#: part/serializers.py:389 msgid "Copy image from original part" msgstr "Kopírovat obrázek z původního dílu" -#: part/serializers.py:484 +#: part/serializers.py:395 msgid "Copy BOM" msgstr "Kopírovat kusovník" -#: part/serializers.py:485 +#: part/serializers.py:396 msgid "Copy bill of materials from original part" msgstr "Kopírovat kusovník z původního dílu" -#: part/serializers.py:491 +#: part/serializers.py:402 msgid "Copy Parameters" msgstr "Kopírovat parametry" -#: part/serializers.py:492 +#: part/serializers.py:403 msgid "Copy parameter data from original part" msgstr "Kopírovat data parametrů z původního dílu" -#: part/serializers.py:498 +#: part/serializers.py:409 msgid "Copy Notes" msgstr "Kopírovat poznámky" -#: part/serializers.py:499 +#: part/serializers.py:410 msgid "Copy notes from original part" msgstr "Kopírovat poznámky z původního dílu" -#: part/serializers.py:505 +#: part/serializers.py:416 msgid "Copy Tests" msgstr "Kopírovat testy" -#: part/serializers.py:506 +#: part/serializers.py:417 msgid "Copy test templates from original part" msgstr "Kopírovat testovací šablony z původního dílu" -#: part/serializers.py:524 +#: part/serializers.py:435 msgid "Initial Stock Quantity" msgstr "Počáteční skladové množství" -#: part/serializers.py:526 +#: part/serializers.py:437 msgid "Specify initial stock quantity for this Part. If quantity is zero, no stock is added." msgstr "Zadejte počáteční skladové množství pro tuto část. Pokud je množství nulové, není přidáno žádné." -#: part/serializers.py:533 +#: part/serializers.py:444 msgid "Initial Stock Location" msgstr "Počáteční skladové místo" -#: part/serializers.py:534 +#: part/serializers.py:445 msgid "Specify initial stock location for this Part" msgstr "Zadejte počáteční skladové místo pro tento díl" -#: part/serializers.py:551 +#: part/serializers.py:462 msgid "Select supplier (or leave blank to skip)" msgstr "Vyberte dodavatele (nebo nechte prázdné pro přeskočení)" -#: part/serializers.py:567 +#: part/serializers.py:478 msgid "Select manufacturer (or leave blank to skip)" msgstr "Vyberte výrobce (nebo nechte prázdné pro přeskočení)" -#: part/serializers.py:577 +#: part/serializers.py:488 msgid "Manufacturer part number" msgstr "Číslo dílu výrobce" -#: part/serializers.py:584 +#: part/serializers.py:495 msgid "Selected company is not a valid supplier" msgstr "Vybraná společnost není platný dodavatel" -#: part/serializers.py:593 +#: part/serializers.py:504 msgid "Selected company is not a valid manufacturer" msgstr "Vybraná společnost není platný výrobce" -#: part/serializers.py:604 +#: part/serializers.py:515 msgid "Manufacturer part matching this MPN already exists" msgstr "Výrobce dílu se stejným MPN již existuje" -#: part/serializers.py:611 +#: part/serializers.py:522 msgid "Supplier part matching this SKU already exists" msgstr "Dodavatelský díl s tímto SKU již existuje" -#: part/serializers.py:914 +#: part/serializers.py:799 msgid "Category Name" msgstr "Název kategorie" -#: part/serializers.py:943 +#: part/serializers.py:828 msgid "Building" msgstr "Budova" -#: part/serializers.py:944 +#: part/serializers.py:829 msgid "Quantity of this part currently being in production" msgstr "Množství tohoto dílu, které je v současné době ve výrobě" -#: part/serializers.py:951 +#: part/serializers.py:836 msgid "Outstanding quantity of this part scheduled to be built" msgstr "Zbývající množství tohoto dílu, které má být postaveno" -#: part/serializers.py:971 stock/serializers.py:1019 stock/serializers.py:1189 +#: part/serializers.py:856 stock/serializers.py:1019 stock/serializers.py:1189 #: users/ruleset.py:30 msgid "Stock Items" msgstr "Skladové položky" -#: part/serializers.py:975 +#: part/serializers.py:860 msgid "Revisions" msgstr "Revize" -#: part/serializers.py:979 +#: part/serializers.py:864 msgid "Suppliers" msgstr "Dodavatelé" -#: part/serializers.py:983 part/serializers.py:1297 +#: part/serializers.py:868 part/serializers.py:1162 #: templates/email/low_stock_notification.html:16 #: templates/email/part_event_notification.html:17 msgid "Total Stock" msgstr "Celkem skladem" -#: part/serializers.py:991 +#: part/serializers.py:876 msgid "Unallocated Stock" msgstr "Nezařazené zásoby" -#: part/serializers.py:999 +#: part/serializers.py:884 msgid "Variant Stock" msgstr "Skladové varianty" -#: part/serializers.py:1054 +#: part/serializers.py:943 msgid "Duplicate Part" msgstr "Duplikovat díl" -#: part/serializers.py:1055 +#: part/serializers.py:944 msgid "Copy initial data from another Part" msgstr "Kopírovat počáteční data z jiného dílu" -#: part/serializers.py:1061 +#: part/serializers.py:950 msgid "Initial Stock" msgstr "Počáteční zásoby" -#: part/serializers.py:1062 +#: part/serializers.py:951 msgid "Create Part with initial stock quantity" msgstr "Vytvořit díl s počátečním množstvím zásob" -#: part/serializers.py:1068 +#: part/serializers.py:957 msgid "Supplier Information" msgstr "Informace o dodavateli" -#: part/serializers.py:1069 +#: part/serializers.py:958 msgid "Add initial supplier information for this part" msgstr "Přidat počáteční informace dodavatele pro tento díl" -#: part/serializers.py:1077 +#: part/serializers.py:966 msgid "Copy Category Parameters" msgstr "Kopírovat parametry kategorie" -#: part/serializers.py:1078 +#: part/serializers.py:967 msgid "Copy parameter templates from selected part category" msgstr "Kopírovat šablony parametrů z vybrané kategorie dilu" -#: part/serializers.py:1083 +#: part/serializers.py:972 msgid "Existing Image" msgstr "Stávající obrázek" -#: part/serializers.py:1084 +#: part/serializers.py:973 msgid "Filename of an existing part image" msgstr "Název souboru existujícího obrázku dílu" -#: part/serializers.py:1101 +#: part/serializers.py:990 msgid "Image file does not exist" msgstr "Obrázek neexistuje" -#: part/serializers.py:1269 +#: part/serializers.py:1134 msgid "Validate entire Bill of Materials" msgstr "Schválit celý kusovník" -#: part/serializers.py:1303 part/serializers.py:1769 +#: part/serializers.py:1168 part/serializers.py:1634 msgid "Can Build" msgstr "Lze postavit" -#: part/serializers.py:1320 +#: part/serializers.py:1185 msgid "Required for Build Orders" msgstr "Vyžadováno pro výrobní objednávku" -#: part/serializers.py:1325 +#: part/serializers.py:1190 msgid "Allocated to Build Orders" msgstr "Přířazeno výrobním objednávkám" -#: part/serializers.py:1332 +#: part/serializers.py:1197 msgid "Required for Sales Orders" msgstr "Vyžadováno pro prodejní objednávky" -#: part/serializers.py:1336 +#: part/serializers.py:1201 msgid "Allocated to Sales Orders" msgstr "Přiřazeno prodejním objednávkám" -#: part/serializers.py:1475 +#: part/serializers.py:1340 msgid "Minimum Price" msgstr "Minimální cena" -#: part/serializers.py:1476 +#: part/serializers.py:1341 msgid "Override calculated value for minimum price" msgstr "Přespat vypočítanou hodnotu pro minimální cenu" -#: part/serializers.py:1483 +#: part/serializers.py:1348 msgid "Minimum price currency" msgstr "Měna minimální ceny" -#: part/serializers.py:1490 +#: part/serializers.py:1355 msgid "Maximum Price" msgstr "Maximální cena" -#: part/serializers.py:1491 +#: part/serializers.py:1356 msgid "Override calculated value for maximum price" msgstr "Přespat vypočítanou hodnotu pro maximální cenu" -#: part/serializers.py:1498 +#: part/serializers.py:1363 msgid "Maximum price currency" msgstr "Měna maximální ceny" -#: part/serializers.py:1527 +#: part/serializers.py:1392 msgid "Update" msgstr "Aktualizovat" -#: part/serializers.py:1528 +#: part/serializers.py:1393 msgid "Update pricing for this part" msgstr "Aktualizovat cenu pro díl" -#: part/serializers.py:1551 +#: part/serializers.py:1416 #, python-brace-format msgid "Could not convert from provided currencies to {default_currency}" msgstr "Nelze převést z poskytnutých měn na {default_currency}" -#: part/serializers.py:1558 +#: part/serializers.py:1423 msgid "Minimum price must not be greater than maximum price" msgstr "Minimální cena musí být vyšší než maximální cena" -#: part/serializers.py:1561 +#: part/serializers.py:1426 msgid "Maximum price must not be less than minimum price" msgstr "Maximální cena nesmí být nížší než minimální cena" -#: part/serializers.py:1715 +#: part/serializers.py:1580 msgid "Select the parent assembly" msgstr "Vybrat nadřazenou sestavu" -#: part/serializers.py:1735 +#: part/serializers.py:1600 msgid "Select the component part" msgstr "Vyberte komponentu dílu" -#: part/serializers.py:1929 +#: part/serializers.py:1802 msgid "Select part to copy BOM from" msgstr "Vyberte díl pro kopírování kusovníku z" -#: part/serializers.py:1937 +#: part/serializers.py:1810 msgid "Remove Existing Data" msgstr "Odstranit existující data" -#: part/serializers.py:1938 +#: part/serializers.py:1811 msgid "Remove existing BOM items before copying" msgstr "Odstranit existující položky kusovníku před kopírováním" -#: part/serializers.py:1943 +#: part/serializers.py:1816 msgid "Include Inherited" msgstr "Zahrnout zděděné" -#: part/serializers.py:1944 +#: part/serializers.py:1817 msgid "Include BOM items which are inherited from templated parts" msgstr "Zahrnout položky kusovníku které jsou zdědené z šablonových dílů" -#: part/serializers.py:1949 +#: part/serializers.py:1822 msgid "Skip Invalid Rows" msgstr "Přeskočit neplatné řádky" -#: part/serializers.py:1950 +#: part/serializers.py:1823 msgid "Enable this option to skip invalid rows" msgstr "Povolte tuto možnost pro přeskočení neplatných řádků" -#: part/serializers.py:1955 +#: part/serializers.py:1828 msgid "Copy Substitute Parts" msgstr "Kopírovat náhradní díly" -#: part/serializers.py:1956 +#: part/serializers.py:1829 msgid "Copy substitute parts when duplicate BOM items" msgstr "Kopírovat náhradní díly při duplikaci položek kusovníku" @@ -6927,7 +6974,7 @@ msgstr "Poskytuje nativní podporu pro čárové kódy" #: plugin/builtin/events/auto_issue_orders.py:19 #: plugin/builtin/exporter/bom_exporter.py:73 #: plugin/builtin/exporter/inventree_exporter.py:17 -#: plugin/builtin/exporter/part_parameter_exporter.py:36 +#: plugin/builtin/exporter/parameter_exporter.py:32 #: plugin/builtin/exporter/stocktake_exporter.py:47 #: plugin/builtin/integration/core_notifications.py:25 #: plugin/builtin/integration/core_notifications.py:69 @@ -7041,23 +7088,19 @@ msgid "Include total quantity of each part in the BOM" msgstr "Zahrnout celkové množství každé části kusovníku" #: plugin/builtin/exporter/bom_exporter.py:35 -#: plugin/builtin/exporter/part_parameter_exporter.py:17 msgid "Stock Data" msgstr "Skladová data" #: plugin/builtin/exporter/bom_exporter.py:35 -#: plugin/builtin/exporter/part_parameter_exporter.py:17 msgid "Include part stock data" msgstr "Zahrnout údaje o zásobách" #: plugin/builtin/exporter/bom_exporter.py:39 -#: plugin/builtin/exporter/part_parameter_exporter.py:21 #: plugin/builtin/exporter/stocktake_exporter.py:20 msgid "Pricing Data" msgstr "Cenová data" #: plugin/builtin/exporter/bom_exporter.py:39 -#: plugin/builtin/exporter/part_parameter_exporter.py:21 #: plugin/builtin/exporter/stocktake_exporter.py:20 msgid "Include part pricing data" msgstr "Zahrnout cenová data" @@ -7144,13 +7187,21 @@ msgstr "InvenTree generický exportér" msgid "Provides support for exporting data from InvenTree" msgstr "Poskytuje podporu pro exportování dat z InvenTree" -#: plugin/builtin/exporter/part_parameter_exporter.py:33 -msgid "Part Parameter Exporter" -msgstr "Exportér parametrů dílů" +#: plugin/builtin/exporter/parameter_exporter.py:16 +msgid "Exclude Inactive" +msgstr "Vyloučit neaktivní" -#: plugin/builtin/exporter/part_parameter_exporter.py:34 -msgid "Exporter for part parameter data" -msgstr "Exportér dat parametrů dílu" +#: plugin/builtin/exporter/parameter_exporter.py:17 +msgid "Exclude parameters which are inactive" +msgstr "Vyloučit parametry které jsou neaktivní" + +#: plugin/builtin/exporter/parameter_exporter.py:29 +msgid "Parameter Exporter" +msgstr "Exportér parametru" + +#: plugin/builtin/exporter/parameter_exporter.py:30 +msgid "Exporter for model parameter data" +msgstr "Exportér pro modelová parametrová data" #: plugin/builtin/exporter/stocktake_exporter.py:25 msgid "Include External Stock" @@ -8079,19 +8130,19 @@ msgstr "Žádný výsledek (povinný)" msgid "No result" msgstr "Žádný výsledek" -#: report/templatetags/report.py:167 +#: report/templatetags/report.py:169 msgid "Asset file does not exist" msgstr "Soubor aktiva neexistuje" -#: report/templatetags/report.py:224 report/templatetags/report.py:300 +#: report/templatetags/report.py:226 report/templatetags/report.py:302 msgid "Image file not found" msgstr "Soubor obrázku nebyl nalezen" -#: report/templatetags/report.py:325 +#: report/templatetags/report.py:327 msgid "part_image tag requires a Part instance" msgstr "part_image tag vyžaduje instanci dílu" -#: report/templatetags/report.py:362 +#: report/templatetags/report.py:383 msgid "company_image tag requires a Company instance" msgstr "company_image tag vyžaduje intanci společnosti" @@ -8455,115 +8506,119 @@ msgstr "Sériové čísla musí být poskytnuta jako seznam" msgid "Quantity does not match serial numbers" msgstr "Množství neodpovídá sériovým číslům" -#: stock/models.py:2012 stock/models.py:2917 +#: stock/models.py:1912 +msgid "Cannot assign stock to structural location" +msgstr "Nelze přiřadit zásoby ke strukturálnímu umístění" + +#: stock/models.py:2029 stock/models.py:2934 msgid "Test template does not exist" msgstr "Testovací šablona neexistuje" -#: stock/models.py:2030 +#: stock/models.py:2047 msgid "Stock item has been assigned to a sales order" msgstr "Skladová položka byla přidělena prodejní objednávce" -#: stock/models.py:2034 +#: stock/models.py:2051 msgid "Stock item is installed in another item" msgstr "Skladová položka je nainstalována v jiné položce" -#: stock/models.py:2037 +#: stock/models.py:2054 msgid "Stock item contains other items" msgstr "Skladová položka obsahuje jiné položky" -#: stock/models.py:2040 +#: stock/models.py:2057 msgid "Stock item has been assigned to a customer" msgstr "Skladová položka byla přidělena zákazníkovi" -#: stock/models.py:2043 stock/models.py:2226 +#: stock/models.py:2060 stock/models.py:2243 msgid "Stock item is currently in production" msgstr "Skladová položka je ve výrobě" -#: stock/models.py:2046 +#: stock/models.py:2063 msgid "Serialized stock cannot be merged" msgstr "Serializované zásoby nelze sloučit" -#: stock/models.py:2053 stock/serializers.py:1462 +#: stock/models.py:2070 stock/serializers.py:1462 msgid "Duplicate stock items" msgstr "Duplicitní skladové položky" -#: stock/models.py:2057 +#: stock/models.py:2074 msgid "Stock items must refer to the same part" msgstr "Skladové položky musí odkazovat na stejný díl" -#: stock/models.py:2065 +#: stock/models.py:2082 msgid "Stock items must refer to the same supplier part" msgstr "Skladové položky musí odkazovat na stejný díl dodavatele" -#: stock/models.py:2070 +#: stock/models.py:2087 msgid "Stock status codes must match" msgstr "Kódy stavu zásob se musí shodovat" -#: stock/models.py:2349 +#: stock/models.py:2366 msgid "StockItem cannot be moved as it is not in stock" msgstr "Zásobová položka nemůže být přesunuta, protože není skladem" -#: stock/models.py:2818 +#: stock/models.py:2835 msgid "Stock Item Tracking" msgstr "Sledování skladových položek" -#: stock/models.py:2849 +#: stock/models.py:2866 msgid "Entry notes" msgstr "Poznámky k záznamu" -#: stock/models.py:2889 +#: stock/models.py:2906 msgid "Stock Item Test Result" msgstr "Výsledek testu skladové položky" -#: stock/models.py:2920 +#: stock/models.py:2937 msgid "Value must be provided for this test" msgstr "Pro tuto zkoušku musí být uvedena hodnota" -#: stock/models.py:2924 +#: stock/models.py:2941 msgid "Attachment must be uploaded for this test" msgstr "Pro tento test musí být nahrána příloha" -#: stock/models.py:2929 +#: stock/models.py:2946 msgid "Invalid value for this test" msgstr "Neplatná hodnota pro tento test" -#: stock/models.py:2953 +#: stock/models.py:2970 msgid "Test result" msgstr "Výsledek testu" -#: stock/models.py:2960 +#: stock/models.py:2977 msgid "Test output value" msgstr "Výstupní hodnota testu" -#: stock/models.py:2968 stock/serializers.py:248 +#: stock/models.py:2985 stock/serializers.py:248 msgid "Test result attachment" msgstr "Příloha výsledků testu" -#: stock/models.py:2972 +#: stock/models.py:2989 msgid "Test notes" msgstr "Poznámky testu" -#: stock/models.py:2980 +#: stock/models.py:2997 msgid "Test station" msgstr "Testovací stanice" -#: stock/models.py:2981 +#: stock/models.py:2998 msgid "The identifier of the test station where the test was performed" msgstr "Identifikátor testovací stanice kde byl test proveden" -#: stock/models.py:2987 +#: stock/models.py:3004 msgid "Started" msgstr "Začátek" -#: stock/models.py:2988 +#: stock/models.py:3005 msgid "The timestamp of the test start" msgstr "Čas začátku testu" -#: stock/models.py:2994 +#: stock/models.py:3011 msgid "Finished" msgstr "Ukončeno" -#: stock/models.py:2995 +#: stock/models.py:3012 msgid "The timestamp of the test finish" msgstr "Čas dokončení testu" @@ -8677,8 +8732,8 @@ msgstr "Nebyla poskytnuta žádná skladová položka" msgid "Quantity must not exceed available stock quantity ({q})" msgstr "Množství nesmí překročit dostupné skladové množství ({q})" -#: stock/serializers.py:711 stock/serializers.py:1419 stock/serializers.py:1732 -#: stock/serializers.py:1781 +#: stock/serializers.py:711 stock/serializers.py:1419 stock/serializers.py:1740 +#: stock/serializers.py:1789 msgid "Destination stock location" msgstr "Cílové skladové umístění" @@ -8834,19 +8889,19 @@ msgstr "Množství nesmí být záporné" msgid "Stock transaction notes" msgstr "Poznámky ke skladovací transakci" -#: stock/serializers.py:1787 +#: stock/serializers.py:1795 msgid "Merge into existing stock" msgstr "Sloučit do existující zásoby" -#: stock/serializers.py:1788 +#: stock/serializers.py:1796 msgid "Merge returned items into existing stock items if possible" msgstr "Sloučit vrácené položky do existujích položek, pokud je to možné" -#: stock/serializers.py:1831 +#: stock/serializers.py:1839 msgid "Next Serial Number" msgstr "Další sériové číslo" -#: stock/serializers.py:1837 +#: stock/serializers.py:1845 msgid "Previous Serial Number" msgstr "Předchozí sériové číslo" @@ -8902,83 +8957,87 @@ msgstr "Zásoba přidána ručně" msgid "Stock manually removed" msgstr "Zásoba odebrána ručně" -#: stock/status_codes.py:57 +#: stock/status_codes.py:56 +msgid "Serialized stock items" +msgstr "Serializované skladové položky" + +#: stock/status_codes.py:58 msgid "Returned to stock" msgstr "Vráceno na sklad" -#: stock/status_codes.py:60 +#: stock/status_codes.py:61 msgid "Location changed" msgstr "Umístění změněno" -#: stock/status_codes.py:61 +#: stock/status_codes.py:62 msgid "Stock updated" msgstr "Stav zásob byl aktualizován" -#: stock/status_codes.py:64 +#: stock/status_codes.py:65 msgid "Installed into assembly" msgstr "Nainstalováno do sestavy" -#: stock/status_codes.py:65 +#: stock/status_codes.py:66 msgid "Removed from assembly" msgstr "Odstraněno ze sestavy" -#: stock/status_codes.py:67 +#: stock/status_codes.py:68 msgid "Installed component item" msgstr "Instalovaná položka komponenty" -#: stock/status_codes.py:68 +#: stock/status_codes.py:69 msgid "Removed component item" msgstr "Odstraněná komponenta" -#: stock/status_codes.py:71 +#: stock/status_codes.py:72 msgid "Split from parent item" msgstr "Rozdělit od nadřazené položky" -#: stock/status_codes.py:72 +#: stock/status_codes.py:73 msgid "Split child item" msgstr "Rozdělit podřazený předmět" -#: stock/status_codes.py:75 +#: stock/status_codes.py:76 msgid "Merged stock items" msgstr "Skladové položky sloučeny" -#: stock/status_codes.py:78 +#: stock/status_codes.py:79 msgid "Converted to variant" msgstr "Převedeno na variantu" -#: stock/status_codes.py:81 +#: stock/status_codes.py:82 msgid "Build order output created" msgstr "Výstup výrobního příkazu vytvořen" -#: stock/status_codes.py:82 +#: stock/status_codes.py:83 msgid "Build order output completed" msgstr "Výstup výrobního příkazu dokončen" -#: stock/status_codes.py:83 +#: stock/status_codes.py:84 msgid "Build order output rejected" msgstr "Výstup výrobního příkazu odmítnut" -#: stock/status_codes.py:84 +#: stock/status_codes.py:85 msgid "Consumed by build order" msgstr "Spotřebováno výrobním příkazem" -#: stock/status_codes.py:87 +#: stock/status_codes.py:88 msgid "Shipped against Sales Order" msgstr "Odesláno na základě prodejní objednávky" -#: stock/status_codes.py:90 +#: stock/status_codes.py:91 msgid "Received against Purchase Order" msgstr "Přijato proti objednávce" -#: stock/status_codes.py:93 +#: stock/status_codes.py:94 msgid "Returned against Return Order" msgstr "Vráceno proti vratce" -#: stock/status_codes.py:96 +#: stock/status_codes.py:97 msgid "Sent to customer" msgstr "Odesláno zákazníkovi" -#: stock/status_codes.py:97 +#: stock/status_codes.py:98 msgid "Returned from customer" msgstr "Vráceno od zákazníka" diff --git a/src/backend/InvenTree/locale/da/LC_MESSAGES/django.po b/src/backend/InvenTree/locale/da/LC_MESSAGES/django.po index 288b2c25e3..a0cdf6435b 100644 --- a/src/backend/InvenTree/locale/da/LC_MESSAGES/django.po +++ b/src/backend/InvenTree/locale/da/LC_MESSAGES/django.po @@ -2,8 +2,8 @@ msgid "" msgstr "" "Project-Id-Version: inventree\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-11-19 04:55+0000\n" -"PO-Revision-Date: 2025-11-19 04:59\n" +"POT-Creation-Date: 2025-12-07 07:33+0000\n" +"PO-Revision-Date: 2025-12-07 07:36\n" "Last-Translator: \n" "Language-Team: Danish\n" "Language: da_DK\n" @@ -57,7 +57,7 @@ msgstr "" msgid "This field must be unique." msgstr "" -#: InvenTree/api.py:775 +#: InvenTree/api.py:803 msgid "User does not have permission to view this model" msgstr "Bruger har ikke tilladelse til at se denne model" @@ -81,22 +81,22 @@ msgstr "Den indtastede email adresse er ikke gyldig." msgid "The provided email domain is not approved." msgstr "Det angivne e-mail domæne er ikke godkendt." -#: InvenTree/conversion.py:166 +#: InvenTree/conversion.py:240 #, python-brace-format msgid "Invalid unit provided ({unit})" msgstr "" -#: InvenTree/conversion.py:183 +#: InvenTree/conversion.py:257 msgid "No value provided" msgstr "Ingen værdi angivet" -#: InvenTree/conversion.py:210 +#: InvenTree/conversion.py:284 #, python-brace-format msgid "Could not convert {original} to {unit}" msgstr "Kunne ikke konvertere {original} til {unit}" -#: InvenTree/conversion.py:212 InvenTree/conversion.py:226 -#: InvenTree/helpers.py:597 order/models.py:720 order/models.py:1015 +#: InvenTree/conversion.py:286 InvenTree/conversion.py:300 +#: InvenTree/helpers.py:597 order/models.py:721 order/models.py:1016 msgid "Invalid quantity provided" msgstr "Ugyldigt antal angivet" @@ -112,11 +112,11 @@ msgstr "Angiv dato" msgid "Invalid decimal value" msgstr "" -#: InvenTree/fields.py:218 InvenTree/models.py:1067 build/serializers.py:509 -#: build/serializers.py:580 build/serializers.py:1788 company/models.py:857 -#: order/models.py:1780 +#: InvenTree/fields.py:218 InvenTree/models.py:1228 build/serializers.py:517 +#: build/serializers.py:588 build/serializers.py:1796 company/models.py:811 +#: order/models.py:1781 #: report/templates/report/inventree_build_order_report.html:172 -#: stock/models.py:2848 stock/models.py:2972 stock/serializers.py:717 +#: stock/models.py:2865 stock/models.py:2989 stock/serializers.py:717 #: stock/serializers.py:893 stock/serializers.py:1035 stock/serializers.py:1336 #: stock/serializers.py:1425 stock/serializers.py:1624 msgid "Notes" @@ -171,35 +171,35 @@ msgstr "Fjern HTML-tags fra denne værdi" msgid "Data contains prohibited markdown content" msgstr "" -#: InvenTree/helpers_model.py:133 +#: InvenTree/helpers_model.py:134 msgid "Connection error" msgstr "Forbindelsesfejl" -#: InvenTree/helpers_model.py:138 InvenTree/helpers_model.py:145 +#: InvenTree/helpers_model.py:139 InvenTree/helpers_model.py:146 msgid "Server responded with invalid status code" msgstr "Serveren svarede med ugyldig statuskode" -#: InvenTree/helpers_model.py:141 +#: InvenTree/helpers_model.py:142 msgid "Exception occurred" msgstr "Der opstod en fejl" -#: InvenTree/helpers_model.py:151 +#: InvenTree/helpers_model.py:152 msgid "Server responded with invalid Content-Length value" msgstr "Serveren svarede med ugyldig Content-Length værdi" -#: InvenTree/helpers_model.py:154 +#: InvenTree/helpers_model.py:155 msgid "Image size is too large" msgstr "Billedstørrelsen er for stor" -#: InvenTree/helpers_model.py:166 +#: InvenTree/helpers_model.py:167 msgid "Image download exceeded maximum size" msgstr "Billeddownload overskred maksimumstørrelsen" -#: InvenTree/helpers_model.py:171 +#: InvenTree/helpers_model.py:172 msgid "Remote server returned empty response" msgstr "Fjernserver returnerede tomt svar" -#: InvenTree/helpers_model.py:179 +#: InvenTree/helpers_model.py:180 msgid "Supplied URL is not a valid image file" msgstr "Angivet URL er ikke en gyldig billedfil" @@ -207,7 +207,7 @@ msgstr "Angivet URL er ikke en gyldig billedfil" msgid "Log in to the app" msgstr "" -#: InvenTree/magic_login.py:41 company/models.py:172 users/serializers.py:198 +#: InvenTree/magic_login.py:41 company/models.py:173 users/serializers.py:198 msgid "Email" msgstr "E-mail" @@ -215,160 +215,176 @@ msgstr "E-mail" msgid "You must enable two-factor authentication before doing anything else." msgstr "" -#: InvenTree/models.py:111 +#: InvenTree/models.py:114 msgid "Error running plugin validation" msgstr "" -#: InvenTree/models.py:192 +#: InvenTree/models.py:195 msgid "Metadata must be a python dict object" msgstr "Metadata skal være et python dict objekt" -#: InvenTree/models.py:198 +#: InvenTree/models.py:201 msgid "Plugin Metadata" msgstr "" -#: InvenTree/models.py:199 +#: InvenTree/models.py:202 msgid "JSON metadata field, for use by external plugins" msgstr "JSON metadata felt, til brug af eksterne plugins" -#: InvenTree/models.py:382 +#: InvenTree/models.py:385 msgid "Improperly formatted pattern" msgstr "Forkert formateret mønster" -#: InvenTree/models.py:389 +#: InvenTree/models.py:392 msgid "Unknown format key specified" msgstr "Ukendt formatnøgle angivet" -#: InvenTree/models.py:395 +#: InvenTree/models.py:398 msgid "Missing required format key" msgstr "Mangler nødvendig formatnøgle" -#: InvenTree/models.py:406 +#: InvenTree/models.py:409 msgid "Reference field cannot be empty" msgstr "Referencefelt må ikke være tomt" -#: InvenTree/models.py:414 +#: InvenTree/models.py:417 msgid "Reference must match required pattern" msgstr "Reference skal matche det påkrævede mønster" -#: InvenTree/models.py:445 +#: InvenTree/models.py:448 msgid "Reference number is too large" msgstr "Referencenummer er for stort" -#: InvenTree/models.py:743 +#: InvenTree/models.py:896 msgid "Invalid choice" msgstr "Ugyldigt valg" -#: InvenTree/models.py:856 common/models.py:1410 common/models.py:1837 -#: common/models.py:2096 common/models.py:2221 common/serializers.py:535 -#: company/models.py:615 generic/states/serializers.py:20 machine/models.py:25 -#: part/models.py:1039 part/models.py:3850 plugin/models.py:54 +#: InvenTree/models.py:1017 common/models.py:1414 common/models.py:1841 +#: common/models.py:2102 common/models.py:2227 common/models.py:2494 +#: common/serializers.py:539 generic/states/serializers.py:20 +#: machine/models.py:25 part/models.py:1127 plugin/models.py:54 #: report/models.py:216 stock/models.py:84 msgid "Name" msgstr "Navn" -#: InvenTree/models.py:862 build/models.py:252 common/models.py:171 -#: common/models.py:2228 common/models.py:2341 company/models.py:543 -#: company/models.py:848 order/models.py:442 order/models.py:1825 -#: part/models.py:1062 part/models.py:3865 report/models.py:222 +#: InvenTree/models.py:1023 build/models.py:253 common/models.py:175 +#: common/models.py:2234 common/models.py:2347 common/models.py:2509 +#: company/models.py:545 company/models.py:802 order/models.py:443 +#: order/models.py:1826 part/models.py:1150 report/models.py:222 #: report/models.py:815 report/models.py:841 #: report/templates/report/inventree_build_order_report.html:117 #: stock/models.py:90 msgid "Description" msgstr "Beskrivelse" -#: InvenTree/models.py:863 stock/models.py:91 +#: InvenTree/models.py:1024 stock/models.py:91 msgid "Description (optional)" msgstr "Beskrivelse (valgfri)" -#: InvenTree/models.py:878 common/models.py:2394 +#: InvenTree/models.py:1039 common/models.py:2815 msgid "Path" msgstr "Sti" -#: InvenTree/models.py:983 +#: InvenTree/models.py:1144 msgid "Duplicate names cannot exist under the same parent" msgstr "" -#: InvenTree/models.py:1067 +#: InvenTree/models.py:1228 msgid "Markdown notes (optional)" msgstr "Markdown noter (valgfri)" -#: InvenTree/models.py:1098 +#: InvenTree/models.py:1259 msgid "Barcode Data" msgstr "Stregkode Data" -#: InvenTree/models.py:1099 +#: InvenTree/models.py:1260 msgid "Third party barcode data" msgstr "Tredjeparts stregkode data" -#: InvenTree/models.py:1105 +#: InvenTree/models.py:1266 msgid "Barcode Hash" msgstr "Stregkode Hash" -#: InvenTree/models.py:1106 +#: InvenTree/models.py:1267 msgid "Unique hash of barcode data" msgstr "Unik hash af stregkode data" -#: InvenTree/models.py:1187 +#: InvenTree/models.py:1348 msgid "Existing barcode found" msgstr "Eksisterende stregkode fundet" -#: InvenTree/models.py:1269 +#: InvenTree/models.py:1430 msgid "Task Failure" msgstr "" -#: InvenTree/models.py:1270 +#: InvenTree/models.py:1431 #, python-brace-format msgid "Background worker task '{f}' failed after {n} attempts" msgstr "" -#: InvenTree/models.py:1297 +#: InvenTree/models.py:1458 msgid "Server Error" msgstr "Serverfejl" -#: InvenTree/models.py:1298 +#: InvenTree/models.py:1459 msgid "An error has been logged by the server." msgstr "En fejl blev logget af serveren." -#: InvenTree/models.py:1340 common/models.py:1748 +#: InvenTree/models.py:1501 common/models.py:1752 #: report/templates/report/inventree_bill_of_materials_report.html:126 #: report/templates/report/inventree_bill_of_materials_report.html:148 #: report/templates/report/inventree_return_order_report.html:35 msgid "Image" msgstr "" -#: InvenTree/serializers.py:253 part/models.py:4571 +#: InvenTree/serializers.py:255 part/models.py:4196 msgid "Must be a valid number" msgstr "Skal være et gyldigt tal" -#: InvenTree/serializers.py:295 company/models.py:214 part/models.py:3285 +#: InvenTree/serializers.py:297 company/models.py:215 part/models.py:3349 msgid "Currency" msgstr "Valuta" -#: InvenTree/serializers.py:298 part/serializers.py:1385 +#: InvenTree/serializers.py:300 part/serializers.py:1250 msgid "Select currency from available options" msgstr "Vælg valuta fra tilgængelige muligheder" -#: InvenTree/serializers.py:653 +#: InvenTree/serializers.py:654 +msgid "This field may not be null." +msgstr "" + +#: InvenTree/serializers.py:660 msgid "Invalid value" msgstr "Ugyldig værdi" -#: InvenTree/serializers.py:690 +#: InvenTree/serializers.py:697 msgid "Remote Image" msgstr "Eksternt billede" -#: InvenTree/serializers.py:691 +#: InvenTree/serializers.py:698 msgid "URL of remote image file" msgstr "URL til ekstern billedfil" -#: InvenTree/serializers.py:709 +#: InvenTree/serializers.py:716 msgid "Downloading images from remote URL is not enabled" msgstr "Download af billeder fra ekstern URL er ikke aktiveret" -#: InvenTree/serializers.py:716 +#: InvenTree/serializers.py:723 msgid "Failed to download image from remote URL" msgstr "" +#: InvenTree/serializers.py:806 +msgid "Invalid content type format" +msgstr "" + +#: InvenTree/serializers.py:809 +msgid "Content type not found" +msgstr "" + +#: InvenTree/serializers.py:815 +msgid "Content type does not match required mixin class" +msgstr "" + #: InvenTree/setting/locales.py:20 msgid "Arabic" msgstr "" @@ -537,30 +553,30 @@ msgstr "Ugyldig fysisk enhed" msgid "Not a valid currency code" msgstr "Ikke en gyldig valutakode" -#: build/api.py:54 order/api.py:111 order/api.py:270 order/api.py:1373 -#: order/serializers.py:132 +#: build/api.py:54 order/api.py:116 order/api.py:275 order/api.py:1378 +#: order/serializers.py:133 msgid "Order Status" msgstr "" -#: build/api.py:80 build/models.py:264 +#: build/api.py:80 build/models.py:265 msgid "Parent Build" msgstr "Overordnet produktion" -#: build/api.py:84 build/api.py:831 order/api.py:547 order/api.py:770 -#: order/api.py:1174 order/api.py:1449 stock/api.py:573 +#: build/api.py:84 build/api.py:837 order/api.py:553 order/api.py:776 +#: order/api.py:1179 order/api.py:1454 stock/api.py:573 msgid "Include Variants" msgstr "" -#: build/api.py:100 build/api.py:466 build/api.py:845 build/models.py:270 -#: build/serializers.py:1225 build/serializers.py:1356 -#: build/serializers.py:1427 company/models.py:1067 company/serializers.py:445 -#: order/api.py:298 order/api.py:302 order/api.py:929 order/api.py:1187 -#: order/api.py:1190 order/models.py:1941 order/models.py:2108 -#: order/models.py:2109 part/api.py:1233 part/api.py:1236 part/api.py:1302 -#: part/api.py:1589 part/models.py:472 part/models.py:3296 part/models.py:3439 -#: part/models.py:3497 part/models.py:3518 part/models.py:3540 -#: part/models.py:3679 part/models.py:4046 part/models.py:4368 -#: part/models.py:4787 part/serializers.py:1928 +#: build/api.py:100 build/api.py:472 build/api.py:851 build/models.py:271 +#: build/serializers.py:1233 build/serializers.py:1364 +#: build/serializers.py:1435 company/models.py:1021 company/serializers.py:490 +#: order/api.py:303 order/api.py:307 order/api.py:934 order/api.py:1192 +#: order/api.py:1195 order/models.py:1942 order/models.py:2109 +#: order/models.py:2110 part/api.py:1160 part/api.py:1163 part/api.py:1314 +#: part/models.py:550 part/models.py:3360 part/models.py:3503 +#: part/models.py:3561 part/models.py:3582 part/models.py:3604 +#: part/models.py:3743 part/models.py:3993 part/models.py:4412 +#: part/serializers.py:1801 #: report/templates/report/inventree_bill_of_materials_report.html:110 #: report/templates/report/inventree_bill_of_materials_report.html:137 #: report/templates/report/inventree_build_order_report.html:109 @@ -580,9 +596,9 @@ msgstr "" msgid "Part" msgstr "Del" -#: build/api.py:120 build/api.py:123 build/serializers.py:1438 part/api.py:980 -#: part/api.py:1316 part/api.py:1600 part/models.py:1080 part/models.py:3568 -#: part/models.py:4162 part/serializers.py:1752 stock/api.py:869 +#: build/api.py:120 build/api.py:123 build/serializers.py:1446 part/api.py:975 +#: part/api.py:1325 part/models.py:435 part/models.py:1168 part/models.py:3632 +#: part/serializers.py:1617 stock/api.py:869 msgid "Category" msgstr "" @@ -590,7 +606,7 @@ msgstr "" msgid "Ancestor Build" msgstr "" -#: build/api.py:152 order/api.py:129 +#: build/api.py:152 order/api.py:134 msgid "Assigned to me" msgstr "" @@ -638,134 +654,134 @@ msgstr "" msgid "Completed after" msgstr "" -#: build/api.py:249 order/api.py:226 +#: build/api.py:249 order/api.py:231 msgid "Min Date" msgstr "" -#: build/api.py:272 order/api.py:245 +#: build/api.py:272 order/api.py:250 msgid "Max Date" msgstr "" -#: build/api.py:297 build/api.py:300 part/api.py:217 stock/api.py:961 +#: build/api.py:297 build/api.py:300 part/api.py:212 stock/api.py:961 msgid "Exclude Tree" msgstr "" -#: build/api.py:405 +#: build/api.py:411 msgid "Build must be cancelled before it can be deleted" msgstr "Produktion skal anulleres, før den kan slettes" -#: build/api.py:449 build/serializers.py:1374 part/models.py:4402 +#: build/api.py:455 build/serializers.py:1382 part/models.py:4027 msgid "Consumable" msgstr "Forbrugsvare" -#: build/api.py:452 build/serializers.py:1377 part/models.py:4396 +#: build/api.py:458 build/serializers.py:1385 part/models.py:4021 msgid "Optional" msgstr "Valgfri" -#: build/api.py:455 build/serializers.py:1415 common/setting/system.py:456 -#: part/models.py:1202 part/serializers.py:1714 part/serializers.py:1725 +#: build/api.py:461 build/serializers.py:1423 common/setting/system.py:456 +#: part/models.py:1290 part/serializers.py:1579 part/serializers.py:1590 #: stock/api.py:639 msgid "Assembly" msgstr "" -#: build/api.py:458 +#: build/api.py:464 msgid "Tracked" msgstr "Sporet" -#: build/api.py:461 build/serializers.py:1380 part/models.py:1220 +#: build/api.py:467 build/serializers.py:1388 part/models.py:1308 msgid "Testable" msgstr "" -#: build/api.py:471 order/api.py:993 order/api.py:1363 +#: build/api.py:477 order/api.py:998 order/api.py:1368 msgid "Order Outstanding" msgstr "" -#: build/api.py:481 build/serializers.py:1464 order/api.py:952 +#: build/api.py:487 build/serializers.py:1472 order/api.py:957 msgid "Allocated" msgstr "Allokeret" -#: build/api.py:490 build/models.py:1672 build/serializers.py:1393 +#: build/api.py:496 build/models.py:1673 build/serializers.py:1401 msgid "Consumed" msgstr "" -#: build/api.py:499 company/models.py:912 company/serializers.py:440 +#: build/api.py:505 company/models.py:866 company/serializers.py:467 #: templates/email/build_order_required_stock.html:19 #: templates/email/low_stock_notification.html:17 #: templates/email/part_event_notification.html:18 msgid "Available" msgstr "Tilgængelig" -#: build/api.py:523 build/serializers.py:1466 company/serializers.py:437 -#: order/serializers.py:1281 part/serializers.py:959 part/serializers.py:1306 -#: part/serializers.py:1761 +#: build/api.py:529 build/serializers.py:1474 company/serializers.py:464 +#: order/serializers.py:1295 part/serializers.py:844 part/serializers.py:1171 +#: part/serializers.py:1626 msgid "On Order" msgstr "" -#: build/api.py:868 build/models.py:117 order/models.py:1974 +#: build/api.py:874 build/models.py:118 order/models.py:1975 #: report/templates/report/inventree_build_order_report.html:105 #: stock/serializers.py:93 templates/email/build_order_completed.html:16 #: templates/email/overdue_build_order.html:15 msgid "Build Order" msgstr "Produktionsordre" -#: build/api.py:882 build/api.py:886 build/serializers.py:372 -#: build/serializers.py:497 build/serializers.py:567 build/serializers.py:1251 -#: build/serializers.py:1256 order/api.py:1234 order/api.py:1239 -#: order/serializers.py:833 order/serializers.py:973 order/serializers.py:2042 +#: build/api.py:888 build/api.py:892 build/serializers.py:380 +#: build/serializers.py:505 build/serializers.py:575 build/serializers.py:1259 +#: build/serializers.py:1264 order/api.py:1239 order/api.py:1244 +#: order/serializers.py:844 order/serializers.py:984 order/serializers.py:2059 #: stock/api.py:987 stock/serializers.py:111 stock/serializers.py:601 #: stock/serializers.py:710 stock/serializers.py:888 stock/serializers.py:1418 -#: stock/serializers.py:1731 stock/serializers.py:1780 +#: stock/serializers.py:1739 stock/serializers.py:1788 #: templates/email/stale_stock_notification.html:18 users/models.py:549 msgid "Location" msgstr "" -#: build/api.py:894 +#: build/api.py:900 msgid "Output" msgstr "" -#: build/api.py:896 +#: build/api.py:902 msgid "Filter by output stock item ID. Use 'null' to find uninstalled build items." msgstr "" -#: build/models.py:118 users/ruleset.py:31 +#: build/models.py:119 users/ruleset.py:31 msgid "Build Orders" msgstr "Produktionsordrer" -#: build/models.py:168 +#: build/models.py:169 msgid "Assembly BOM has not been validated" msgstr "" -#: build/models.py:175 +#: build/models.py:176 msgid "Build order cannot be created for an inactive part" msgstr "" -#: build/models.py:182 +#: build/models.py:183 msgid "Build order cannot be created for an unlocked part" msgstr "" -#: build/models.py:200 +#: build/models.py:201 msgid "Build orders can only be externally fulfilled for purchaseable parts" msgstr "" -#: build/models.py:207 order/models.py:369 +#: build/models.py:208 order/models.py:370 msgid "Responsible user or group must be specified" msgstr "" -#: build/models.py:212 +#: build/models.py:213 msgid "Build order part cannot be changed" msgstr "Byggeordre enhed kan ikke ændres" -#: build/models.py:217 order/models.py:382 +#: build/models.py:218 order/models.py:383 msgid "Target date must be after start date" msgstr "" -#: build/models.py:245 +#: build/models.py:246 msgid "Build Order Reference" msgstr "Produktionsordre reference" -#: build/models.py:246 build/serializers.py:1371 order/models.py:614 -#: order/models.py:1311 order/models.py:1773 order/models.py:2712 -#: part/models.py:4442 +#: build/models.py:247 build/serializers.py:1379 order/models.py:615 +#: order/models.py:1312 order/models.py:1774 order/models.py:2713 +#: part/models.py:4067 #: report/templates/report/inventree_bill_of_materials_report.html:139 #: report/templates/report/inventree_purchase_order_report.html:35 #: report/templates/report/inventree_return_order_report.html:26 @@ -773,230 +789,230 @@ msgstr "Produktionsordre reference" msgid "Reference" msgstr "" -#: build/models.py:255 +#: build/models.py:256 msgid "Brief description of the build (optional)" msgstr "" -#: build/models.py:265 +#: build/models.py:266 msgid "BuildOrder to which this build is allocated" msgstr "Produktionsordre som er tildelt denne produktion" -#: build/models.py:274 +#: build/models.py:275 msgid "Select part to build" msgstr "Vælg dele til produktion" -#: build/models.py:279 +#: build/models.py:280 msgid "Sales Order Reference" msgstr "Salgsordrereference" -#: build/models.py:284 +#: build/models.py:285 msgid "SalesOrder to which this build is allocated" msgstr "Salgsordre, som er tildelt denne produktion" -#: build/models.py:289 build/serializers.py:1097 +#: build/models.py:290 build/serializers.py:1105 msgid "Source Location" msgstr "Kilde Lokation" -#: build/models.py:295 +#: build/models.py:296 msgid "Select location to take stock from for this build (leave blank to take from any stock location)" msgstr "Vælg lokation for lager, som skal benyttes til denne produktion (lad feltet stå tomt for at benytte vilkårligt lager)" -#: build/models.py:301 +#: build/models.py:302 msgid "External Build" msgstr "" -#: build/models.py:302 +#: build/models.py:303 msgid "This build order is fulfilled externally" msgstr "" -#: build/models.py:307 +#: build/models.py:308 msgid "Destination Location" msgstr "Destinations Placering" -#: build/models.py:312 +#: build/models.py:313 msgid "Select location where the completed items will be stored" msgstr "Vælg placering, hvor de færdige elementer vil blive gemt" -#: build/models.py:316 +#: build/models.py:317 msgid "Build Quantity" msgstr "Produktions antal" -#: build/models.py:319 +#: build/models.py:320 msgid "Number of stock items to build" msgstr "Antal lagervarer som skal produceres" -#: build/models.py:323 +#: build/models.py:324 msgid "Completed items" msgstr "Afsluttede elementer" -#: build/models.py:325 +#: build/models.py:326 msgid "Number of stock items which have been completed" msgstr "Antal lagervarer som er færdiggjort" -#: build/models.py:329 +#: build/models.py:330 msgid "Build Status" msgstr "Produktions Status" -#: build/models.py:334 +#: build/models.py:335 msgid "Build status code" msgstr "Produktions statuskode" -#: build/models.py:343 build/serializers.py:359 order/serializers.py:849 +#: build/models.py:344 build/serializers.py:367 order/serializers.py:860 #: stock/models.py:1100 stock/serializers.py:85 stock/serializers.py:1591 msgid "Batch Code" msgstr "Batch Kode" -#: build/models.py:347 build/serializers.py:360 +#: build/models.py:348 build/serializers.py:368 msgid "Batch code for this build output" msgstr "Batch kode til dette produktions output" -#: build/models.py:351 order/models.py:479 order/serializers.py:186 -#: part/models.py:1283 +#: build/models.py:352 order/models.py:480 order/serializers.py:193 +#: part/models.py:1371 msgid "Creation Date" msgstr "Oprettelsesdato" -#: build/models.py:357 +#: build/models.py:358 msgid "Build start date" msgstr "" -#: build/models.py:358 +#: build/models.py:359 msgid "Scheduled start date for this build order" msgstr "" -#: build/models.py:364 +#: build/models.py:365 msgid "Target completion date" msgstr "Projekteret afslutningsdato" -#: build/models.py:366 +#: build/models.py:367 msgid "Target date for build completion. Build will be overdue after this date." msgstr "" -#: build/models.py:371 order/models.py:667 order/models.py:2751 +#: build/models.py:372 order/models.py:668 order/models.py:2752 msgid "Completion Date" msgstr "Dato for afslutning" -#: build/models.py:379 +#: build/models.py:380 msgid "completed by" msgstr "udført af" -#: build/models.py:388 +#: build/models.py:389 msgid "Issued by" msgstr "Udstedt af" -#: build/models.py:389 +#: build/models.py:390 msgid "User who issued this build order" msgstr "Bruger som udstedte denne byggeordre" -#: build/models.py:398 common/models.py:180 order/api.py:179 -#: order/models.py:504 part/models.py:1300 +#: build/models.py:399 common/models.py:184 order/api.py:184 +#: order/models.py:505 part/models.py:1388 #: report/templates/report/inventree_build_order_report.html:158 msgid "Responsible" msgstr "Ansvarlig" -#: build/models.py:399 +#: build/models.py:400 msgid "User or group responsible for this build order" msgstr "Bruger eller gruppe ansvarlig for denne byggeordre" -#: build/models.py:404 stock/models.py:1093 +#: build/models.py:405 stock/models.py:1093 msgid "External Link" msgstr "Ekstern link" -#: build/models.py:406 common/models.py:1984 part/models.py:1114 +#: build/models.py:407 common/models.py:1990 part/models.py:1202 #: stock/models.py:1095 msgid "Link to external URL" msgstr "Link til ekstern URL" -#: build/models.py:411 +#: build/models.py:412 msgid "Build Priority" msgstr "Bygge Prioritet" -#: build/models.py:414 +#: build/models.py:415 msgid "Priority of this build order" msgstr "Prioritet af denne byggeordre" -#: build/models.py:422 common/models.py:150 common/models.py:164 -#: order/api.py:165 order/models.py:451 order/models.py:1805 +#: build/models.py:423 common/models.py:154 common/models.py:168 +#: order/api.py:170 order/models.py:452 order/models.py:1806 msgid "Project Code" msgstr "" -#: build/models.py:423 +#: build/models.py:424 msgid "Project code for this build order" msgstr "" -#: build/models.py:676 +#: build/models.py:677 msgid "Cannot complete build order with open child builds" msgstr "" -#: build/models.py:681 +#: build/models.py:682 msgid "Cannot complete build order with incomplete outputs" msgstr "" -#: build/models.py:700 build/models.py:830 +#: build/models.py:701 build/models.py:831 msgid "Failed to offload task to complete build allocations" msgstr "" -#: build/models.py:723 +#: build/models.py:724 #, python-brace-format msgid "Build order {build} has been completed" msgstr "Bygningsordre {build} er fuldført" -#: build/models.py:729 +#: build/models.py:730 msgid "A build order has been completed" msgstr "En byggeordre er fuldført" -#: build/models.py:911 build/serializers.py:407 +#: build/models.py:912 build/serializers.py:415 msgid "Serial numbers must be provided for trackable parts" msgstr "" -#: build/models.py:1042 build/models.py:1129 +#: build/models.py:1043 build/models.py:1130 msgid "No build output specified" msgstr "" -#: build/models.py:1045 +#: build/models.py:1046 msgid "Build output is already completed" msgstr "" -#: build/models.py:1048 +#: build/models.py:1049 msgid "Build output does not match Build Order" msgstr "" -#: build/models.py:1136 build/models.py:1234 build/serializers.py:285 -#: build/serializers.py:335 build/serializers.py:965 build/serializers.py:1739 -#: order/models.py:717 order/serializers.py:658 order/serializers.py:844 -#: part/serializers.py:1708 stock/models.py:940 stock/models.py:1430 +#: build/models.py:1137 build/models.py:1235 build/serializers.py:293 +#: build/serializers.py:343 build/serializers.py:973 build/serializers.py:1747 +#: order/models.py:718 order/serializers.py:669 order/serializers.py:855 +#: part/serializers.py:1573 stock/models.py:940 stock/models.py:1430 #: stock/models.py:1878 stock/serializers.py:688 stock/serializers.py:1580 msgid "Quantity must be greater than zero" msgstr "" -#: build/models.py:1140 build/models.py:1239 build/serializers.py:290 +#: build/models.py:1141 build/models.py:1240 build/serializers.py:298 msgid "Quantity cannot be greater than the output quantity" msgstr "" -#: build/models.py:1214 build/serializers.py:606 +#: build/models.py:1215 build/serializers.py:614 msgid "Build output has not passed all required tests" msgstr "" -#: build/models.py:1217 build/serializers.py:601 +#: build/models.py:1218 build/serializers.py:609 #, python-brace-format msgid "Build output {serial} has not passed all required tests" msgstr "" -#: build/models.py:1229 +#: build/models.py:1230 msgid "Cannot partially complete a build output with allocated items" msgstr "" -#: build/models.py:1627 +#: build/models.py:1628 msgid "Build Order Line Item" msgstr "" -#: build/models.py:1651 +#: build/models.py:1652 msgid "Build object" msgstr "" -#: build/models.py:1663 build/models.py:1974 build/serializers.py:271 -#: build/serializers.py:320 build/serializers.py:1392 common/models.py:1340 -#: order/models.py:1756 order/models.py:2597 order/serializers.py:1696 -#: order/serializers.py:2124 part/models.py:3453 part/models.py:4390 +#: build/models.py:1664 build/models.py:1975 build/serializers.py:279 +#: build/serializers.py:328 build/serializers.py:1400 common/models.py:1344 +#: order/models.py:1757 order/models.py:2598 order/serializers.py:1710 +#: order/serializers.py:2141 part/models.py:3517 part/models.py:4015 #: report/templates/report/inventree_bill_of_materials_report.html:138 #: report/templates/report/inventree_build_order_report.html:113 #: report/templates/report/inventree_purchase_order_report.html:36 @@ -1014,427 +1030,427 @@ msgstr "" msgid "Quantity" msgstr "" -#: build/models.py:1664 +#: build/models.py:1665 msgid "Required quantity for build order" msgstr "" -#: build/models.py:1673 +#: build/models.py:1674 msgid "Quantity of consumed stock" msgstr "" -#: build/models.py:1772 +#: build/models.py:1773 msgid "Build item must specify a build output, as master part is marked as trackable" msgstr "" -#: build/models.py:1783 +#: build/models.py:1784 #, python-brace-format msgid "Allocated quantity ({q}) must not exceed available stock quantity ({a})" msgstr "" -#: build/models.py:1804 order/models.py:2546 +#: build/models.py:1805 order/models.py:2547 msgid "Stock item is over-allocated" msgstr "" -#: build/models.py:1809 order/models.py:2549 +#: build/models.py:1810 order/models.py:2550 msgid "Allocation quantity must be greater than zero" msgstr "" -#: build/models.py:1815 +#: build/models.py:1816 msgid "Quantity must be 1 for serialized stock" msgstr "" -#: build/models.py:1875 +#: build/models.py:1876 msgid "Selected stock item does not match BOM line" msgstr "" -#: build/models.py:1913 +#: build/models.py:1914 msgid "Allocated quantity exceeds available stock quantity" msgstr "" -#: build/models.py:1964 build/serializers.py:948 build/serializers.py:1240 -#: order/serializers.py:1533 order/serializers.py:1554 +#: build/models.py:1965 build/serializers.py:956 build/serializers.py:1248 +#: order/serializers.py:1547 order/serializers.py:1568 #: report/templates/report/inventree_sales_order_shipment_report.html:29 #: stock/api.py:1404 stock/models.py:456 stock/serializers.py:102 #: stock/serializers.py:800 stock/serializers.py:1274 stock/serializers.py:1386 msgid "Stock Item" msgstr "" -#: build/models.py:1965 +#: build/models.py:1966 msgid "Source stock item" msgstr "" -#: build/models.py:1975 +#: build/models.py:1976 msgid "Stock quantity to allocate to build" msgstr "" -#: build/models.py:1984 +#: build/models.py:1985 msgid "Install into" msgstr "" -#: build/models.py:1985 +#: build/models.py:1986 msgid "Destination stock item" msgstr "" -#: build/serializers.py:118 +#: build/serializers.py:120 msgid "Build Level" msgstr "" -#: build/serializers.py:128 +#: build/serializers.py:136 msgid "Part Name" msgstr "" -#: build/serializers.py:153 +#: build/serializers.py:161 msgid "Project Code Label" msgstr "" -#: build/serializers.py:219 build/serializers.py:974 +#: build/serializers.py:227 build/serializers.py:982 msgid "Build Output" msgstr "" -#: build/serializers.py:231 +#: build/serializers.py:239 msgid "Build output does not match the parent build" msgstr "" -#: build/serializers.py:235 +#: build/serializers.py:243 msgid "Output part does not match BuildOrder part" msgstr "" -#: build/serializers.py:239 +#: build/serializers.py:247 msgid "This build output has already been completed" msgstr "" -#: build/serializers.py:253 +#: build/serializers.py:261 msgid "This build output is not fully allocated" msgstr "" -#: build/serializers.py:272 build/serializers.py:321 +#: build/serializers.py:280 build/serializers.py:329 msgid "Enter quantity for build output" msgstr "" -#: build/serializers.py:343 +#: build/serializers.py:351 msgid "Integer quantity required for trackable parts" msgstr "" -#: build/serializers.py:349 +#: build/serializers.py:357 msgid "Integer quantity required, as the bill of materials contains trackable parts" msgstr "" -#: build/serializers.py:366 order/serializers.py:865 order/serializers.py:1700 +#: build/serializers.py:374 order/serializers.py:876 order/serializers.py:1714 #: stock/serializers.py:699 msgid "Serial Numbers" msgstr "" -#: build/serializers.py:367 +#: build/serializers.py:375 msgid "Enter serial numbers for build outputs" msgstr "" -#: build/serializers.py:373 +#: build/serializers.py:381 msgid "Stock location for build output" msgstr "" -#: build/serializers.py:388 +#: build/serializers.py:396 msgid "Auto Allocate Serial Numbers" msgstr "" -#: build/serializers.py:390 +#: build/serializers.py:398 msgid "Automatically allocate required items with matching serial numbers" msgstr "" -#: build/serializers.py:423 order/serializers.py:951 stock/api.py:1183 +#: build/serializers.py:431 order/serializers.py:962 stock/api.py:1183 #: stock/models.py:1901 msgid "The following serial numbers already exist or are invalid" msgstr "" -#: build/serializers.py:465 build/serializers.py:521 build/serializers.py:613 +#: build/serializers.py:473 build/serializers.py:529 build/serializers.py:621 msgid "A list of build outputs must be provided" msgstr "" -#: build/serializers.py:498 +#: build/serializers.py:506 msgid "Stock location for scrapped outputs" msgstr "" -#: build/serializers.py:504 +#: build/serializers.py:512 msgid "Discard Allocations" msgstr "" -#: build/serializers.py:505 +#: build/serializers.py:513 msgid "Discard any stock allocations for scrapped outputs" msgstr "" -#: build/serializers.py:510 +#: build/serializers.py:518 msgid "Reason for scrapping build output(s)" msgstr "" -#: build/serializers.py:568 +#: build/serializers.py:576 msgid "Location for completed build outputs" msgstr "" -#: build/serializers.py:576 +#: build/serializers.py:584 msgid "Accept Incomplete Allocation" msgstr "" -#: build/serializers.py:577 +#: build/serializers.py:585 msgid "Complete outputs if stock has not been fully allocated" msgstr "" -#: build/serializers.py:702 +#: build/serializers.py:710 msgid "Consume Allocated Stock" msgstr "" -#: build/serializers.py:703 +#: build/serializers.py:711 msgid "Consume any stock which has already been allocated to this build" msgstr "" -#: build/serializers.py:709 +#: build/serializers.py:717 msgid "Remove Incomplete Outputs" msgstr "" -#: build/serializers.py:710 +#: build/serializers.py:718 msgid "Delete any build outputs which have not been completed" msgstr "" -#: build/serializers.py:737 +#: build/serializers.py:745 msgid "Not permitted" msgstr "Ikke tilladt" -#: build/serializers.py:738 +#: build/serializers.py:746 msgid "Accept as consumed by this build order" msgstr "Accepter som forbrugt af denne byggeordre" -#: build/serializers.py:739 +#: build/serializers.py:747 msgid "Deallocate before completing this build order" msgstr "" -#: build/serializers.py:766 +#: build/serializers.py:774 msgid "Overallocated Stock" msgstr "" -#: build/serializers.py:769 +#: build/serializers.py:777 msgid "How do you want to handle extra stock items assigned to the build order" msgstr "" -#: build/serializers.py:780 +#: build/serializers.py:788 msgid "Some stock items have been overallocated" msgstr "" -#: build/serializers.py:785 +#: build/serializers.py:793 msgid "Accept Unallocated" msgstr "Accepter Ikke tildelt" -#: build/serializers.py:787 +#: build/serializers.py:795 msgid "Accept that stock items have not been fully allocated to this build order" msgstr "Accepter at lagervarer ikke er fuldt tildelt til denne byggeordre" -#: build/serializers.py:798 +#: build/serializers.py:806 msgid "Required stock has not been fully allocated" msgstr "" -#: build/serializers.py:803 order/serializers.py:524 order/serializers.py:1601 +#: build/serializers.py:811 order/serializers.py:535 order/serializers.py:1615 msgid "Accept Incomplete" msgstr "Accepter ufuldført" -#: build/serializers.py:805 +#: build/serializers.py:813 msgid "Accept that the required number of build outputs have not been completed" msgstr "" -#: build/serializers.py:816 +#: build/serializers.py:824 msgid "Required build quantity has not been completed" msgstr "" -#: build/serializers.py:828 +#: build/serializers.py:836 msgid "Build order has open child build orders" msgstr "" -#: build/serializers.py:831 +#: build/serializers.py:839 msgid "Build order must be in production state" msgstr "" -#: build/serializers.py:834 +#: build/serializers.py:842 msgid "Build order has incomplete outputs" msgstr "" -#: build/serializers.py:873 +#: build/serializers.py:881 msgid "Build Line" msgstr "Bygge linje" -#: build/serializers.py:881 +#: build/serializers.py:889 msgid "Build output" msgstr "" -#: build/serializers.py:889 +#: build/serializers.py:897 msgid "Build output must point to the same build" msgstr "" -#: build/serializers.py:920 +#: build/serializers.py:928 msgid "Build Line Item" msgstr "" -#: build/serializers.py:938 +#: build/serializers.py:946 msgid "bom_item.part must point to the same part as the build order" msgstr "" -#: build/serializers.py:954 stock/serializers.py:1287 +#: build/serializers.py:962 stock/serializers.py:1287 msgid "Item must be in stock" msgstr "" -#: build/serializers.py:997 order/serializers.py:1587 +#: build/serializers.py:1005 order/serializers.py:1601 #, python-brace-format msgid "Available quantity ({q}) exceeded" msgstr "" -#: build/serializers.py:1003 +#: build/serializers.py:1011 msgid "Build output must be specified for allocation of tracked parts" msgstr "" -#: build/serializers.py:1011 +#: build/serializers.py:1019 msgid "Build output cannot be specified for allocation of untracked parts" msgstr "" -#: build/serializers.py:1035 order/serializers.py:1860 +#: build/serializers.py:1043 order/serializers.py:1874 msgid "Allocation items must be provided" msgstr "" -#: build/serializers.py:1099 +#: build/serializers.py:1107 msgid "Stock location where parts are to be sourced (leave blank to take from any location)" msgstr "" -#: build/serializers.py:1108 +#: build/serializers.py:1116 msgid "Exclude Location" msgstr "" -#: build/serializers.py:1109 +#: build/serializers.py:1117 msgid "Exclude stock items from this selected location" msgstr "" -#: build/serializers.py:1114 +#: build/serializers.py:1122 msgid "Interchangeable Stock" msgstr "" -#: build/serializers.py:1115 +#: build/serializers.py:1123 msgid "Stock items in multiple locations can be used interchangeably" msgstr "" -#: build/serializers.py:1120 +#: build/serializers.py:1128 msgid "Substitute Stock" msgstr "" -#: build/serializers.py:1121 +#: build/serializers.py:1129 msgid "Allow allocation of substitute parts" msgstr "" -#: build/serializers.py:1126 +#: build/serializers.py:1134 msgid "Optional Items" msgstr "" -#: build/serializers.py:1127 +#: build/serializers.py:1135 msgid "Allocate optional BOM items to build order" msgstr "" -#: build/serializers.py:1148 +#: build/serializers.py:1156 msgid "Failed to start auto-allocation task" msgstr "" -#: build/serializers.py:1200 +#: build/serializers.py:1208 msgid "BOM Reference" msgstr "" -#: build/serializers.py:1206 +#: build/serializers.py:1214 msgid "BOM Part ID" msgstr "" -#: build/serializers.py:1213 +#: build/serializers.py:1221 msgid "BOM Part Name" msgstr "" -#: build/serializers.py:1266 build/serializers.py:1449 +#: build/serializers.py:1274 build/serializers.py:1457 msgid "Build" msgstr "" -#: build/serializers.py:1276 company/models.py:685 order/api.py:311 -#: order/api.py:316 order/api.py:543 order/serializers.py:650 +#: build/serializers.py:1284 company/models.py:639 order/api.py:316 +#: order/api.py:321 order/api.py:549 order/serializers.py:661 #: stock/models.py:1036 stock/serializers.py:579 msgid "Supplier Part" msgstr "" -#: build/serializers.py:1284 stock/serializers.py:620 +#: build/serializers.py:1292 stock/serializers.py:620 msgid "Allocated Quantity" msgstr "" -#: build/serializers.py:1351 +#: build/serializers.py:1359 msgid "Build Reference" msgstr "" -#: build/serializers.py:1361 +#: build/serializers.py:1369 msgid "Part Category Name" msgstr "" -#: build/serializers.py:1383 common/setting/system.py:480 part/models.py:1214 +#: build/serializers.py:1391 common/setting/system.py:480 part/models.py:1302 msgid "Trackable" msgstr "" -#: build/serializers.py:1386 +#: build/serializers.py:1394 msgid "Inherited" msgstr "" -#: build/serializers.py:1389 part/models.py:4475 +#: build/serializers.py:1397 part/models.py:4100 msgid "Allow Variants" msgstr "" -#: build/serializers.py:1395 build/serializers.py:1400 part/models.py:4208 -#: part/models.py:4779 stock/api.py:882 +#: build/serializers.py:1403 build/serializers.py:1408 part/models.py:3833 +#: part/models.py:4404 stock/api.py:882 msgid "BOM Item" msgstr "" -#: build/serializers.py:1467 order/serializers.py:1282 part/serializers.py:1310 -#: part/serializers.py:1765 +#: build/serializers.py:1475 order/serializers.py:1296 part/serializers.py:1175 +#: part/serializers.py:1630 msgid "In Production" msgstr "" -#: build/serializers.py:1469 part/serializers.py:950 part/serializers.py:1314 +#: build/serializers.py:1477 part/serializers.py:835 part/serializers.py:1179 msgid "Scheduled to Build" msgstr "" -#: build/serializers.py:1472 part/serializers.py:987 +#: build/serializers.py:1480 part/serializers.py:872 msgid "External Stock" msgstr "" -#: build/serializers.py:1473 part/serializers.py:1300 part/serializers.py:1808 +#: build/serializers.py:1481 part/serializers.py:1165 part/serializers.py:1673 msgid "Available Stock" msgstr "" -#: build/serializers.py:1475 +#: build/serializers.py:1483 msgid "Available Substitute Stock" msgstr "" -#: build/serializers.py:1478 +#: build/serializers.py:1486 msgid "Available Variant Stock" msgstr "" -#: build/serializers.py:1752 +#: build/serializers.py:1760 msgid "Consumed quantity exceeds allocated quantity" msgstr "" -#: build/serializers.py:1789 +#: build/serializers.py:1797 msgid "Optional notes for the stock consumption" msgstr "" -#: build/serializers.py:1806 +#: build/serializers.py:1814 msgid "Build item must point to the correct build order" msgstr "" -#: build/serializers.py:1811 +#: build/serializers.py:1819 msgid "Duplicate build item allocation" msgstr "" -#: build/serializers.py:1829 +#: build/serializers.py:1837 msgid "Build line must point to the correct build order" msgstr "" -#: build/serializers.py:1834 +#: build/serializers.py:1842 msgid "Duplicate build line allocation" msgstr "" -#: build/serializers.py:1846 +#: build/serializers.py:1854 msgid "At least one item or line must be provided" msgstr "" @@ -1482,702 +1498,826 @@ msgstr "" msgid "Build order {bo} is now overdue" msgstr "" -#: common/api.py:694 +#: common/api.py:701 msgid "Is Link" msgstr "" -#: common/api.py:702 +#: common/api.py:709 msgid "Is File" msgstr "" -#: common/api.py:745 +#: common/api.py:756 msgid "User does not have permission to delete these attachments" msgstr "" -#: common/api.py:762 +#: common/api.py:769 msgid "User does not have permission to delete this attachment" msgstr "" -#: common/currency.py:122 +#: common/currency.py:130 msgid "Invalid currency code" msgstr "" -#: common/currency.py:124 +#: common/currency.py:132 msgid "Duplicate currency code" msgstr "" -#: common/currency.py:129 +#: common/currency.py:137 msgid "No valid currency codes provided" msgstr "" -#: common/currency.py:146 +#: common/currency.py:154 msgid "No plugin" msgstr "" -#: common/models.py:101 common/models.py:126 common/models.py:2729 +#: common/models.py:105 common/models.py:130 common/models.py:3150 msgid "Updated" msgstr "" -#: common/models.py:102 common/models.py:127 +#: common/models.py:106 common/models.py:131 msgid "Timestamp of last update" msgstr "" -#: common/models.py:139 +#: common/models.py:143 msgid "Update By" msgstr "" -#: common/models.py:140 +#: common/models.py:144 msgid "User who last updated this object" msgstr "" -#: common/models.py:165 +#: common/models.py:169 msgid "Unique project code" msgstr "" -#: common/models.py:172 +#: common/models.py:176 msgid "Project description" msgstr "" -#: common/models.py:181 +#: common/models.py:185 msgid "User or group responsible for this project" msgstr "" -#: common/models.py:771 common/models.py:1272 common/models.py:1310 +#: common/models.py:775 common/models.py:1276 common/models.py:1314 msgid "Settings key" msgstr "" -#: common/models.py:775 +#: common/models.py:779 msgid "Settings value" msgstr "" -#: common/models.py:830 +#: common/models.py:834 msgid "Chosen value is not a valid option" msgstr "" -#: common/models.py:846 +#: common/models.py:850 msgid "Value must be a boolean value" msgstr "" -#: common/models.py:854 +#: common/models.py:858 msgid "Value must be an integer value" msgstr "" -#: common/models.py:862 +#: common/models.py:866 msgid "Value must be a valid number" msgstr "" -#: common/models.py:887 +#: common/models.py:891 msgid "Value does not pass validation checks" msgstr "" -#: common/models.py:909 +#: common/models.py:913 msgid "Key string must be unique" msgstr "" -#: common/models.py:1318 common/models.py:1319 common/models.py:1423 -#: common/models.py:1424 common/models.py:1669 common/models.py:1670 -#: common/models.py:2000 common/models.py:2001 common/models.py:2382 -#: importer/models.py:100 part/models.py:3547 part/models.py:3575 +#: common/models.py:1322 common/models.py:1323 common/models.py:1427 +#: common/models.py:1428 common/models.py:1673 common/models.py:1674 +#: common/models.py:2006 common/models.py:2007 common/models.py:2803 +#: importer/models.py:100 part/models.py:3611 part/models.py:3639 #: plugin/models.py:355 plugin/models.py:356 #: report/templates/report/inventree_test_report.html:105 users/models.py:124 #: users/models.py:501 msgid "User" msgstr "Bruger" -#: common/models.py:1341 +#: common/models.py:1345 msgid "Price break quantity" msgstr "" -#: common/models.py:1348 company/serializers.py:564 order/models.py:1842 -#: order/models.py:3043 +#: common/models.py:1352 company/serializers.py:349 order/models.py:1843 +#: order/models.py:3044 msgid "Price" msgstr "" -#: common/models.py:1349 +#: common/models.py:1353 msgid "Unit price at specified quantity" msgstr "" -#: common/models.py:1400 common/models.py:1585 +#: common/models.py:1404 common/models.py:1589 msgid "Endpoint" msgstr "" -#: common/models.py:1401 +#: common/models.py:1405 msgid "Endpoint at which this webhook is received" msgstr "" -#: common/models.py:1411 +#: common/models.py:1415 msgid "Name for this webhook" msgstr "" -#: common/models.py:1415 common/models.py:2241 common/models.py:2348 -#: company/models.py:191 company/models.py:822 machine/models.py:40 -#: part/models.py:1237 plugin/models.py:69 stock/api.py:642 users/models.py:195 +#: common/models.py:1419 common/models.py:2247 common/models.py:2354 +#: company/models.py:192 company/models.py:776 machine/models.py:40 +#: part/models.py:1325 plugin/models.py:69 stock/api.py:642 users/models.py:195 #: users/models.py:554 users/serializers.py:314 msgid "Active" msgstr "" -#: common/models.py:1415 +#: common/models.py:1419 msgid "Is this webhook active" msgstr "" -#: common/models.py:1431 users/models.py:172 +#: common/models.py:1435 users/models.py:172 msgid "Token" msgstr "" -#: common/models.py:1432 +#: common/models.py:1436 msgid "Token for access" msgstr "" -#: common/models.py:1440 +#: common/models.py:1444 msgid "Secret" msgstr "" -#: common/models.py:1441 +#: common/models.py:1445 msgid "Shared secret for HMAC" msgstr "" -#: common/models.py:1549 common/models.py:2619 +#: common/models.py:1553 common/models.py:3040 msgid "Message ID" msgstr "" -#: common/models.py:1550 common/models.py:2609 +#: common/models.py:1554 common/models.py:3030 msgid "Unique identifier for this message" msgstr "" -#: common/models.py:1558 +#: common/models.py:1562 msgid "Host" msgstr "" -#: common/models.py:1559 +#: common/models.py:1563 msgid "Host from which this message was received" msgstr "" -#: common/models.py:1567 +#: common/models.py:1571 msgid "Header" msgstr "" -#: common/models.py:1568 +#: common/models.py:1572 msgid "Header of this message" msgstr "" -#: common/models.py:1575 +#: common/models.py:1579 msgid "Body" msgstr "" -#: common/models.py:1576 +#: common/models.py:1580 msgid "Body of this message" msgstr "" -#: common/models.py:1586 +#: common/models.py:1590 msgid "Endpoint on which this message was received" msgstr "" -#: common/models.py:1591 +#: common/models.py:1595 msgid "Worked on" msgstr "" -#: common/models.py:1592 +#: common/models.py:1596 msgid "Was the work on this message finished?" msgstr "" -#: common/models.py:1718 +#: common/models.py:1722 msgid "Id" msgstr "" -#: common/models.py:1720 +#: common/models.py:1724 msgid "Title" msgstr "" -#: common/models.py:1722 common/models.py:1983 company/models.py:185 -#: company/models.py:467 company/models.py:534 company/models.py:839 -#: order/models.py:457 order/models.py:1786 order/models.py:2343 -#: part/models.py:1113 +#: common/models.py:1726 common/models.py:1989 company/models.py:186 +#: company/models.py:468 company/models.py:536 company/models.py:793 +#: order/models.py:458 order/models.py:1787 order/models.py:2344 +#: part/models.py:1201 #: report/templates/report/inventree_build_order_report.html:164 msgid "Link" msgstr "" -#: common/models.py:1724 +#: common/models.py:1728 msgid "Published" msgstr "" -#: common/models.py:1726 +#: common/models.py:1730 msgid "Author" msgstr "" -#: common/models.py:1728 +#: common/models.py:1732 msgid "Summary" msgstr "" -#: common/models.py:1731 common/models.py:2586 +#: common/models.py:1735 common/models.py:3007 msgid "Read" msgstr "" -#: common/models.py:1731 +#: common/models.py:1735 msgid "Was this news item read?" msgstr "" -#: common/models.py:1748 +#: common/models.py:1752 msgid "Image file" msgstr "" -#: common/models.py:1760 +#: common/models.py:1764 msgid "Target model type for this image" msgstr "" -#: common/models.py:1764 +#: common/models.py:1768 msgid "Target model ID for this image" msgstr "" -#: common/models.py:1786 +#: common/models.py:1790 msgid "Custom Unit" msgstr "" -#: common/models.py:1804 +#: common/models.py:1808 msgid "Unit symbol must be unique" msgstr "" -#: common/models.py:1819 +#: common/models.py:1823 msgid "Unit name must be a valid identifier" msgstr "" -#: common/models.py:1838 +#: common/models.py:1842 msgid "Unit name" msgstr "" -#: common/models.py:1845 +#: common/models.py:1849 msgid "Symbol" msgstr "" -#: common/models.py:1846 +#: common/models.py:1850 msgid "Optional unit symbol" msgstr "" -#: common/models.py:1852 +#: common/models.py:1856 msgid "Definition" msgstr "" -#: common/models.py:1853 +#: common/models.py:1857 msgid "Unit definition" msgstr "" -#: common/models.py:1911 common/models.py:1974 stock/models.py:2967 +#: common/models.py:1917 common/models.py:1980 stock/models.py:2984 #: stock/serializers.py:247 msgid "Attachment" msgstr "Vedhæftning" -#: common/models.py:1928 +#: common/models.py:1934 msgid "Missing file" msgstr "Manglende fil" -#: common/models.py:1929 +#: common/models.py:1935 msgid "Missing external link" msgstr "Manglende eksternt link" -#: common/models.py:1966 +#: common/models.py:1972 common/models.py:2488 msgid "Model type" msgstr "" -#: common/models.py:1967 +#: common/models.py:1973 msgid "Target model type for image" msgstr "" -#: common/models.py:1975 +#: common/models.py:1981 msgid "Select file to attach" msgstr "Vælg fil, der skal vedhæftes" -#: common/models.py:1991 +#: common/models.py:1997 msgid "Comment" msgstr "Kommentar" -#: common/models.py:1992 +#: common/models.py:1998 msgid "Attachment comment" msgstr "" -#: common/models.py:2008 +#: common/models.py:2014 msgid "Upload date" msgstr "" -#: common/models.py:2009 +#: common/models.py:2015 msgid "Date the file was uploaded" msgstr "" -#: common/models.py:2013 +#: common/models.py:2019 msgid "File size" msgstr "" -#: common/models.py:2013 +#: common/models.py:2019 msgid "File size in bytes" msgstr "" -#: common/models.py:2051 common/serializers.py:684 +#: common/models.py:2057 common/serializers.py:688 msgid "Invalid model type specified for attachment" msgstr "" -#: common/models.py:2072 +#: common/models.py:2078 msgid "Custom State" msgstr "" -#: common/models.py:2073 +#: common/models.py:2079 msgid "Custom States" msgstr "" -#: common/models.py:2078 +#: common/models.py:2084 msgid "Reference Status Set" msgstr "" -#: common/models.py:2079 +#: common/models.py:2085 msgid "Status set that is extended with this custom state" msgstr "" -#: common/models.py:2083 generic/states/serializers.py:18 +#: common/models.py:2089 generic/states/serializers.py:18 msgid "Logical Key" msgstr "" -#: common/models.py:2085 +#: common/models.py:2091 msgid "State logical key that is equal to this custom state in business logic" msgstr "" -#: common/models.py:2090 common/models.py:2329 company/models.py:622 -#: machine/serializers.py:27 -#: report/templates/report/inventree_test_report.html:104 stock/models.py:2959 +#: common/models.py:2096 common/models.py:2335 machine/serializers.py:27 +#: report/templates/report/inventree_test_report.html:104 stock/models.py:2976 msgid "Value" msgstr "" -#: common/models.py:2091 +#: common/models.py:2097 msgid "Numerical value that will be saved in the models database" msgstr "" -#: common/models.py:2097 +#: common/models.py:2103 msgid "Name of the state" msgstr "" -#: common/models.py:2106 common/models.py:2335 generic/states/serializers.py:22 +#: common/models.py:2112 common/models.py:2341 generic/states/serializers.py:22 msgid "Label" msgstr "" -#: common/models.py:2107 +#: common/models.py:2113 msgid "Label that will be displayed in the frontend" msgstr "" -#: common/models.py:2114 generic/states/serializers.py:24 +#: common/models.py:2120 generic/states/serializers.py:24 msgid "Color" msgstr "" -#: common/models.py:2115 +#: common/models.py:2121 msgid "Color that will be displayed in the frontend" msgstr "" -#: common/models.py:2123 +#: common/models.py:2129 msgid "Model" msgstr "" -#: common/models.py:2124 +#: common/models.py:2130 msgid "Model this state is associated with" msgstr "" -#: common/models.py:2139 +#: common/models.py:2145 msgid "Model must be selected" msgstr "" -#: common/models.py:2142 +#: common/models.py:2148 msgid "Key must be selected" msgstr "" -#: common/models.py:2145 +#: common/models.py:2151 msgid "Logical key must be selected" msgstr "" -#: common/models.py:2149 +#: common/models.py:2155 msgid "Key must be different from logical key" msgstr "" -#: common/models.py:2156 +#: common/models.py:2162 msgid "Valid reference status class must be provided" msgstr "" -#: common/models.py:2162 +#: common/models.py:2168 msgid "Key must be different from the logical keys of the reference status" msgstr "" -#: common/models.py:2169 +#: common/models.py:2175 msgid "Logical key must be in the logical keys of the reference status" msgstr "" -#: common/models.py:2176 +#: common/models.py:2182 msgid "Name must be different from the names of the reference status" msgstr "" -#: common/models.py:2216 common/models.py:2323 part/models.py:3889 +#: common/models.py:2222 common/models.py:2329 common/models.py:2533 msgid "Selection List" msgstr "" -#: common/models.py:2217 +#: common/models.py:2223 msgid "Selection Lists" msgstr "" -#: common/models.py:2222 +#: common/models.py:2228 msgid "Name of the selection list" msgstr "" -#: common/models.py:2229 +#: common/models.py:2235 msgid "Description of the selection list" msgstr "" -#: common/models.py:2235 part/models.py:1242 +#: common/models.py:2241 part/models.py:1330 msgid "Locked" msgstr "" -#: common/models.py:2236 +#: common/models.py:2242 msgid "Is this selection list locked?" msgstr "" -#: common/models.py:2242 +#: common/models.py:2248 msgid "Can this selection list be used?" msgstr "" -#: common/models.py:2250 +#: common/models.py:2256 msgid "Source Plugin" msgstr "" -#: common/models.py:2251 +#: common/models.py:2257 msgid "Plugin which provides the selection list" msgstr "" -#: common/models.py:2256 +#: common/models.py:2262 msgid "Source String" msgstr "" -#: common/models.py:2257 +#: common/models.py:2263 msgid "Optional string identifying the source used for this list" msgstr "" -#: common/models.py:2266 +#: common/models.py:2272 msgid "Default Entry" msgstr "" -#: common/models.py:2267 +#: common/models.py:2273 msgid "Default entry for this selection list" msgstr "" -#: common/models.py:2272 common/models.py:2724 +#: common/models.py:2278 common/models.py:3145 msgid "Created" msgstr "" -#: common/models.py:2273 +#: common/models.py:2279 msgid "Date and time that the selection list was created" msgstr "" -#: common/models.py:2278 +#: common/models.py:2284 msgid "Last Updated" msgstr "" -#: common/models.py:2279 +#: common/models.py:2285 msgid "Date and time that the selection list was last updated" msgstr "" -#: common/models.py:2313 +#: common/models.py:2319 msgid "Selection List Entry" msgstr "" -#: common/models.py:2314 +#: common/models.py:2320 msgid "Selection List Entries" msgstr "" -#: common/models.py:2324 +#: common/models.py:2330 msgid "Selection list to which this entry belongs" msgstr "" -#: common/models.py:2330 +#: common/models.py:2336 msgid "Value of the selection list entry" msgstr "" -#: common/models.py:2336 +#: common/models.py:2342 msgid "Label for the selection list entry" msgstr "" -#: common/models.py:2342 +#: common/models.py:2348 msgid "Description of the selection list entry" msgstr "" -#: common/models.py:2349 +#: common/models.py:2355 msgid "Is this selection list entry active?" msgstr "" -#: common/models.py:2367 -msgid "Barcode Scan" +#: common/models.py:2387 +msgid "Parameter Template" msgstr "" -#: common/models.py:2371 importer/models.py:546 part/models.py:4060 -msgid "Data" +#: common/models.py:2388 +msgid "Parameter Templates" msgstr "" -#: common/models.py:2372 -msgid "Barcode data" +#: common/models.py:2425 +msgid "Checkbox parameters cannot have units" msgstr "" -#: common/models.py:2383 -msgid "User who scanned the barcode" +#: common/models.py:2430 +msgid "Checkbox parameters cannot have choices" msgstr "" -#: common/models.py:2388 importer/models.py:69 -msgid "Timestamp" +#: common/models.py:2450 part/models.py:3707 +msgid "Choices must be unique" msgstr "" -#: common/models.py:2389 -msgid "Date and time of the barcode scan" +#: common/models.py:2467 +msgid "Parameter template name must be unique" msgstr "" -#: common/models.py:2395 -msgid "URL endpoint which processed the barcode" +#: common/models.py:2489 +msgid "Target model type for this parameter template" msgstr "" -#: common/models.py:2402 order/models.py:1832 plugin/serializers.py:93 -msgid "Context" +#: common/models.py:2495 +msgid "Parameter Name" msgstr "" -#: common/models.py:2403 -msgid "Context data for the barcode scan" +#: common/models.py:2501 part/models.py:1283 +msgid "Units" msgstr "" -#: common/models.py:2410 -msgid "Response" +#: common/models.py:2502 +msgid "Physical units for this parameter" msgstr "" -#: common/models.py:2411 -msgid "Response data from the barcode scan" +#: common/models.py:2510 +msgid "Parameter description" msgstr "" -#: common/models.py:2417 report/templates/report/inventree_test_report.html:103 -#: stock/models.py:2953 -msgid "Result" +#: common/models.py:2516 +msgid "Checkbox" msgstr "" -#: common/models.py:2418 -msgid "Was the barcode scan successful?" +#: common/models.py:2517 +msgid "Is this parameter a checkbox?" msgstr "" -#: common/models.py:2500 -msgid "An error occurred" +#: common/models.py:2522 part/models.py:3794 +msgid "Choices" msgstr "" -#: common/models.py:2521 -msgid "INVE-E8: Email log deletion is protected. Set INVENTREE_PROTECT_EMAIL_LOG to False to allow deletion." +#: common/models.py:2523 +msgid "Valid choices for this parameter (comma-separated)" msgstr "" -#: common/models.py:2568 -msgid "Email Message" +#: common/models.py:2534 +msgid "Selection list for this parameter" msgstr "" -#: common/models.py:2569 -msgid "Email Messages" +#: common/models.py:2539 part/models.py:3769 report/models.py:287 +msgid "Enabled" msgstr "" -#: common/models.py:2576 -msgid "Announced" +#: common/models.py:2540 +msgid "Is this parameter template enabled?" msgstr "" -#: common/models.py:2578 -msgid "Sent" -msgstr "" - -#: common/models.py:2579 -msgid "Failed" +#: common/models.py:2581 +msgid "Parameter" msgstr "" #: common/models.py:2582 -msgid "Delivered" -msgstr "" - -#: common/models.py:2590 -msgid "Confirmed" -msgstr "" - -#: common/models.py:2596 -msgid "Inbound" -msgstr "" - -#: common/models.py:2597 -msgid "Outbound" -msgstr "" - -#: common/models.py:2602 -msgid "No Reply" -msgstr "" - -#: common/models.py:2603 -msgid "Track Delivery" -msgstr "" - -#: common/models.py:2604 -msgid "Track Read" -msgstr "" - -#: common/models.py:2605 -msgid "Track Click" -msgstr "" - -#: common/models.py:2608 common/models.py:2711 -msgid "Global ID" -msgstr "" - -#: common/models.py:2621 -msgid "Identifier for this message (might be supplied by external system)" +msgid "Parameters" msgstr "" #: common/models.py:2628 +msgid "Invalid choice for parameter value" +msgstr "" + +#: common/models.py:2698 common/serializers.py:783 +msgid "Invalid model type specified for parameter" +msgstr "" + +#: common/models.py:2734 +msgid "Model ID" +msgstr "" + +#: common/models.py:2735 +msgid "ID of the target model for this parameter" +msgstr "" + +#: common/models.py:2744 common/setting/system.py:450 report/models.py:373 +#: report/models.py:669 report/serializers.py:94 report/serializers.py:135 +#: stock/serializers.py:234 +msgid "Template" +msgstr "" + +#: common/models.py:2745 +msgid "Parameter template" +msgstr "" + +#: common/models.py:2750 common/models.py:2792 importer/models.py:546 +msgid "Data" +msgstr "" + +#: common/models.py:2751 +msgid "Parameter Value" +msgstr "" + +#: common/models.py:2760 company/models.py:810 order/serializers.py:894 +#: order/serializers.py:2064 part/models.py:4075 part/models.py:4444 +#: report/templates/report/inventree_bill_of_materials_report.html:140 +#: report/templates/report/inventree_purchase_order_report.html:39 +#: report/templates/report/inventree_return_order_report.html:27 +#: report/templates/report/inventree_sales_order_report.html:32 +#: report/templates/report/inventree_stock_location_report.html:105 +#: stock/serializers.py:813 +msgid "Note" +msgstr "" + +#: common/models.py:2761 stock/serializers.py:718 +msgid "Optional note field" +msgstr "" + +#: common/models.py:2788 +msgid "Barcode Scan" +msgstr "" + +#: common/models.py:2793 +msgid "Barcode data" +msgstr "" + +#: common/models.py:2804 +msgid "User who scanned the barcode" +msgstr "" + +#: common/models.py:2809 importer/models.py:69 +msgid "Timestamp" +msgstr "" + +#: common/models.py:2810 +msgid "Date and time of the barcode scan" +msgstr "" + +#: common/models.py:2816 +msgid "URL endpoint which processed the barcode" +msgstr "" + +#: common/models.py:2823 order/models.py:1833 plugin/serializers.py:93 +msgid "Context" +msgstr "" + +#: common/models.py:2824 +msgid "Context data for the barcode scan" +msgstr "" + +#: common/models.py:2831 +msgid "Response" +msgstr "" + +#: common/models.py:2832 +msgid "Response data from the barcode scan" +msgstr "" + +#: common/models.py:2838 report/templates/report/inventree_test_report.html:103 +#: stock/models.py:2970 +msgid "Result" +msgstr "" + +#: common/models.py:2839 +msgid "Was the barcode scan successful?" +msgstr "" + +#: common/models.py:2921 +msgid "An error occurred" +msgstr "" + +#: common/models.py:2942 +msgid "INVE-E8: Email log deletion is protected. Set INVENTREE_PROTECT_EMAIL_LOG to False to allow deletion." +msgstr "" + +#: common/models.py:2989 +msgid "Email Message" +msgstr "" + +#: common/models.py:2990 +msgid "Email Messages" +msgstr "" + +#: common/models.py:2997 +msgid "Announced" +msgstr "" + +#: common/models.py:2999 +msgid "Sent" +msgstr "" + +#: common/models.py:3000 +msgid "Failed" +msgstr "" + +#: common/models.py:3003 +msgid "Delivered" +msgstr "" + +#: common/models.py:3011 +msgid "Confirmed" +msgstr "" + +#: common/models.py:3017 +msgid "Inbound" +msgstr "" + +#: common/models.py:3018 +msgid "Outbound" +msgstr "" + +#: common/models.py:3023 +msgid "No Reply" +msgstr "" + +#: common/models.py:3024 +msgid "Track Delivery" +msgstr "" + +#: common/models.py:3025 +msgid "Track Read" +msgstr "" + +#: common/models.py:3026 +msgid "Track Click" +msgstr "" + +#: common/models.py:3029 common/models.py:3132 +msgid "Global ID" +msgstr "" + +#: common/models.py:3042 +msgid "Identifier for this message (might be supplied by external system)" +msgstr "" + +#: common/models.py:3049 msgid "Thread ID" msgstr "" -#: common/models.py:2630 +#: common/models.py:3051 msgid "Identifier for this message thread (might be supplied by external system)" msgstr "" -#: common/models.py:2639 +#: common/models.py:3060 msgid "Thread" msgstr "" -#: common/models.py:2640 +#: common/models.py:3061 msgid "Linked thread for this message" msgstr "" -#: common/models.py:2656 -msgid "Prioriy" +#: common/models.py:3077 +msgid "Priority" msgstr "" -#: common/models.py:2698 +#: common/models.py:3119 msgid "Email Thread" msgstr "" -#: common/models.py:2699 +#: common/models.py:3120 msgid "Email Threads" msgstr "" -#: common/models.py:2705 generic/states/serializers.py:16 +#: common/models.py:3126 generic/states/serializers.py:16 #: machine/serializers.py:24 plugin/models.py:46 users/models.py:113 msgid "Key" msgstr "" -#: common/models.py:2708 +#: common/models.py:3129 msgid "Unique key for this thread (used to identify the thread)" msgstr "" -#: common/models.py:2712 +#: common/models.py:3133 msgid "Unique identifier for this thread" msgstr "" -#: common/models.py:2719 +#: common/models.py:3140 msgid "Started Internal" msgstr "" -#: common/models.py:2720 +#: common/models.py:3141 msgid "Was this thread started internally?" msgstr "" -#: common/models.py:2725 +#: common/models.py:3146 msgid "Date and time that the thread was created" msgstr "" -#: common/models.py:2730 +#: common/models.py:3151 msgid "Date and time that the thread was last updated" msgstr "" @@ -2199,7 +2339,7 @@ msgstr "" msgid "A order that is assigned to you was canceled" msgstr "" -#: common/notifications.py:73 common/notifications.py:80 order/api.py:594 +#: common/notifications.py:73 common/notifications.py:80 order/api.py:600 msgid "Items Received" msgstr "" @@ -2211,88 +2351,93 @@ msgstr "" msgid "Items have been received against a return order" msgstr "" -#: common/serializers.py:145 +#: common/serializers.py:149 msgid "Indicates if the setting is overridden by an environment variable" msgstr "" -#: common/serializers.py:147 +#: common/serializers.py:151 msgid "Override" msgstr "" -#: common/serializers.py:498 +#: common/serializers.py:502 msgid "Is Running" msgstr "" -#: common/serializers.py:504 +#: common/serializers.py:508 msgid "Pending Tasks" msgstr "" -#: common/serializers.py:510 +#: common/serializers.py:514 msgid "Scheduled Tasks" msgstr "" -#: common/serializers.py:516 +#: common/serializers.py:520 msgid "Failed Tasks" msgstr "" -#: common/serializers.py:531 +#: common/serializers.py:535 msgid "Task ID" msgstr "" -#: common/serializers.py:531 +#: common/serializers.py:535 msgid "Unique task ID" msgstr "" -#: common/serializers.py:533 +#: common/serializers.py:537 msgid "Lock" msgstr "" -#: common/serializers.py:533 +#: common/serializers.py:537 msgid "Lock time" msgstr "" -#: common/serializers.py:535 +#: common/serializers.py:539 msgid "Task name" msgstr "" -#: common/serializers.py:537 +#: common/serializers.py:541 msgid "Function" msgstr "" -#: common/serializers.py:537 +#: common/serializers.py:541 msgid "Function name" msgstr "" -#: common/serializers.py:539 +#: common/serializers.py:543 msgid "Arguments" msgstr "" -#: common/serializers.py:539 +#: common/serializers.py:543 msgid "Task arguments" msgstr "" -#: common/serializers.py:542 +#: common/serializers.py:546 msgid "Keyword Arguments" msgstr "" -#: common/serializers.py:542 +#: common/serializers.py:546 msgid "Task keyword arguments" msgstr "" -#: common/serializers.py:652 +#: common/serializers.py:656 msgid "Filename" msgstr "Filnavn" -#: common/serializers.py:659 importer/models.py:89 report/api.py:41 +#: common/serializers.py:663 common/serializers.py:730 +#: common/serializers.py:805 importer/models.py:89 report/api.py:41 #: report/models.py:293 report/serializers.py:52 msgid "Model Type" msgstr "" -#: common/serializers.py:687 +#: common/serializers.py:691 msgid "User does not have permission to create or edit attachments for this model" msgstr "" -#: common/serializers.py:731 common/serializers.py:834 +#: common/serializers.py:786 +msgid "User does not have permission to create or edit parameters for this model" +msgstr "" + +#: common/serializers.py:850 common/serializers.py:953 msgid "Selection list is locked" msgstr "" @@ -2368,7 +2513,7 @@ msgstr "" msgid "Show the `about` modal only to superusers" msgstr "" -#: common/setting/system.py:224 company/models.py:144 company/models.py:145 +#: common/setting/system.py:224 company/models.py:145 company/models.py:146 msgid "Company name" msgstr "" @@ -2411,8 +2556,8 @@ msgstr "" #: common/setting/system.py:253 common/setting/system.py:293 #: common/setting/system.py:306 common/setting/system.py:314 #: common/setting/system.py:321 common/setting/system.py:330 -#: common/setting/system.py:339 common/setting/system.py:588 -#: common/setting/system.py:616 common/setting/system.py:707 +#: common/setting/system.py:339 common/setting/system.py:580 +#: common/setting/system.py:608 common/setting/system.py:707 #: common/setting/system.py:1103 common/setting/system.py:1119 msgid "days" msgstr "" @@ -2657,12 +2802,6 @@ msgstr "" msgid "Copy category parameter templates when creating a part" msgstr "" -#: common/setting/system.py:450 part/models.py:4054 report/models.py:373 -#: report/models.py:669 report/serializers.py:94 report/serializers.py:135 -#: stock/serializers.py:234 -msgid "Template" -msgstr "" - #: common/setting/system.py:451 msgid "Parts are templates by default" msgstr "" @@ -2671,8 +2810,8 @@ msgstr "" msgid "Parts can be assembled from other components by default" msgstr "" -#: common/setting/system.py:462 part/models.py:1208 part/serializers.py:1734 -#: part/serializers.py:1741 +#: common/setting/system.py:462 part/models.py:1296 part/serializers.py:1599 +#: part/serializers.py:1606 msgid "Component" msgstr "" @@ -2680,7 +2819,7 @@ msgstr "" msgid "Parts can be used as sub-components by default" msgstr "" -#: common/setting/system.py:468 part/models.py:1226 +#: common/setting/system.py:468 part/models.py:1314 msgid "Purchaseable" msgstr "" @@ -2688,7 +2827,7 @@ msgstr "" msgid "Parts are purchaseable by default" msgstr "" -#: common/setting/system.py:474 part/models.py:1232 stock/api.py:643 +#: common/setting/system.py:474 part/models.py:1320 stock/api.py:643 msgid "Salable" msgstr "" @@ -2700,7 +2839,7 @@ msgstr "" msgid "Parts are trackable by default" msgstr "" -#: common/setting/system.py:486 part/models.py:1248 +#: common/setting/system.py:486 part/models.py:1336 msgid "Virtual" msgstr "" @@ -2749,158 +2888,158 @@ msgid "Part category default icon (empty means no icon)" msgstr "" #: common/setting/system.py:525 -msgid "Enforce Parameter Units" -msgstr "" - -#: common/setting/system.py:527 -msgid "If units are provided, parameter values must match the specified units" -msgstr "" - -#: common/setting/system.py:533 msgid "Minimum Pricing Decimal Places" msgstr "" -#: common/setting/system.py:535 +#: common/setting/system.py:527 msgid "Minimum number of decimal places to display when rendering pricing data" msgstr "" -#: common/setting/system.py:546 +#: common/setting/system.py:538 msgid "Maximum Pricing Decimal Places" msgstr "" -#: common/setting/system.py:548 +#: common/setting/system.py:540 msgid "Maximum number of decimal places to display when rendering pricing data" msgstr "" -#: common/setting/system.py:559 +#: common/setting/system.py:551 msgid "Use Supplier Pricing" msgstr "" -#: common/setting/system.py:561 +#: common/setting/system.py:553 msgid "Include supplier price breaks in overall pricing calculations" msgstr "" -#: common/setting/system.py:567 +#: common/setting/system.py:559 msgid "Purchase History Override" msgstr "" -#: common/setting/system.py:569 +#: common/setting/system.py:561 msgid "Historical purchase order pricing overrides supplier price breaks" msgstr "" -#: common/setting/system.py:575 +#: common/setting/system.py:567 msgid "Use Stock Item Pricing" msgstr "" -#: common/setting/system.py:577 +#: common/setting/system.py:569 msgid "Use pricing from manually entered stock data for pricing calculations" msgstr "" -#: common/setting/system.py:583 +#: common/setting/system.py:575 msgid "Stock Item Pricing Age" msgstr "" -#: common/setting/system.py:585 +#: common/setting/system.py:577 msgid "Exclude stock items older than this number of days from pricing calculations" msgstr "" -#: common/setting/system.py:592 +#: common/setting/system.py:584 msgid "Use Variant Pricing" msgstr "" -#: common/setting/system.py:593 +#: common/setting/system.py:585 msgid "Include variant pricing in overall pricing calculations" msgstr "" -#: common/setting/system.py:598 +#: common/setting/system.py:590 msgid "Active Variants Only" msgstr "" -#: common/setting/system.py:600 +#: common/setting/system.py:592 msgid "Only use active variant parts for calculating variant pricing" msgstr "" -#: common/setting/system.py:606 +#: common/setting/system.py:598 msgid "Auto Update Pricing" msgstr "" -#: common/setting/system.py:608 +#: common/setting/system.py:600 msgid "Automatically update part pricing when internal data changes" msgstr "" -#: common/setting/system.py:614 +#: common/setting/system.py:606 msgid "Pricing Rebuild Interval" msgstr "" -#: common/setting/system.py:615 +#: common/setting/system.py:607 msgid "Number of days before part pricing is automatically updated" msgstr "" -#: common/setting/system.py:621 +#: common/setting/system.py:613 msgid "Internal Prices" msgstr "" -#: common/setting/system.py:622 +#: common/setting/system.py:614 msgid "Enable internal prices for parts" msgstr "" -#: common/setting/system.py:627 +#: common/setting/system.py:619 msgid "Internal Price Override" msgstr "" -#: common/setting/system.py:629 +#: common/setting/system.py:621 msgid "If available, internal prices override price range calculations" msgstr "" -#: common/setting/system.py:635 +#: common/setting/system.py:627 msgid "Enable label printing" msgstr "" -#: common/setting/system.py:636 +#: common/setting/system.py:628 msgid "Enable label printing from the web interface" msgstr "" -#: common/setting/system.py:641 +#: common/setting/system.py:633 msgid "Label Image DPI" msgstr "" -#: common/setting/system.py:643 +#: common/setting/system.py:635 msgid "DPI resolution when generating image files to supply to label printing plugins" msgstr "" -#: common/setting/system.py:649 +#: common/setting/system.py:641 msgid "Enable Reports" msgstr "" -#: common/setting/system.py:650 +#: common/setting/system.py:642 msgid "Enable generation of reports" msgstr "" -#: common/setting/system.py:655 +#: common/setting/system.py:647 msgid "Debug Mode" msgstr "" -#: common/setting/system.py:656 +#: common/setting/system.py:648 msgid "Generate reports in debug mode (HTML output)" msgstr "" -#: common/setting/system.py:661 +#: common/setting/system.py:653 msgid "Log Report Errors" msgstr "" -#: common/setting/system.py:662 +#: common/setting/system.py:654 msgid "Log errors which occur when generating reports" msgstr "" -#: common/setting/system.py:667 plugin/builtin/labels/label_sheet.py:29 +#: common/setting/system.py:659 plugin/builtin/labels/label_sheet.py:29 #: report/models.py:381 msgid "Page Size" msgstr "" -#: common/setting/system.py:668 +#: common/setting/system.py:660 msgid "Default page size for PDF reports" msgstr "" +#: common/setting/system.py:665 +msgid "Enforce Parameter Units" +msgstr "" + +#: common/setting/system.py:667 +msgid "If units are provided, parameter values must match the specified units" +msgstr "" + #: common/setting/system.py:673 msgid "Globally Unique Serials" msgstr "" @@ -3456,688 +3595,677 @@ msgid "Display PDF reports in the browser, instead of downloading as a file" msgstr "" #: common/setting/user.py:45 -msgid "Search Parts" +msgid "Barcode Scanner in Form Fields" msgstr "" #: common/setting/user.py:46 -msgid "Display parts in search preview window" +msgid "Allow barcode scanner input in form fields" msgstr "" #: common/setting/user.py:51 -msgid "Search Supplier Parts" +msgid "Search Parts" msgstr "" #: common/setting/user.py:52 -msgid "Display supplier parts in search preview window" +msgid "Display parts in search preview window" msgstr "" #: common/setting/user.py:57 -msgid "Search Manufacturer Parts" +msgid "Search Supplier Parts" msgstr "" #: common/setting/user.py:58 -msgid "Display manufacturer parts in search preview window" +msgid "Display supplier parts in search preview window" msgstr "" #: common/setting/user.py:63 -msgid "Hide Inactive Parts" +msgid "Search Manufacturer Parts" msgstr "" #: common/setting/user.py:64 -msgid "Excluded inactive parts from search preview window" +msgid "Display manufacturer parts in search preview window" msgstr "" #: common/setting/user.py:69 -msgid "Search Categories" +msgid "Hide Inactive Parts" msgstr "" #: common/setting/user.py:70 -msgid "Display part categories in search preview window" +msgid "Excluded inactive parts from search preview window" msgstr "" #: common/setting/user.py:75 -msgid "Search Stock" +msgid "Search Categories" msgstr "" #: common/setting/user.py:76 -msgid "Display stock items in search preview window" +msgid "Display part categories in search preview window" msgstr "" #: common/setting/user.py:81 +msgid "Search Stock" +msgstr "" + +#: common/setting/user.py:82 +msgid "Display stock items in search preview window" +msgstr "" + +#: common/setting/user.py:87 msgid "Hide Unavailable Stock Items" msgstr "" -#: common/setting/user.py:83 +#: common/setting/user.py:89 msgid "Exclude stock items which are not available from the search preview window" msgstr "" -#: common/setting/user.py:89 +#: common/setting/user.py:95 msgid "Search Locations" msgstr "" -#: common/setting/user.py:90 +#: common/setting/user.py:96 msgid "Display stock locations in search preview window" msgstr "" -#: common/setting/user.py:95 +#: common/setting/user.py:101 msgid "Search Companies" msgstr "" -#: common/setting/user.py:96 +#: common/setting/user.py:102 msgid "Display companies in search preview window" msgstr "" -#: common/setting/user.py:101 +#: common/setting/user.py:107 msgid "Search Build Orders" msgstr "" -#: common/setting/user.py:102 +#: common/setting/user.py:108 msgid "Display build orders in search preview window" msgstr "" -#: common/setting/user.py:107 +#: common/setting/user.py:113 msgid "Search Purchase Orders" msgstr "" -#: common/setting/user.py:108 +#: common/setting/user.py:114 msgid "Display purchase orders in search preview window" msgstr "" -#: common/setting/user.py:113 +#: common/setting/user.py:119 msgid "Exclude Inactive Purchase Orders" msgstr "" -#: common/setting/user.py:114 +#: common/setting/user.py:120 msgid "Exclude inactive purchase orders from search preview window" msgstr "" -#: common/setting/user.py:119 +#: common/setting/user.py:125 msgid "Search Sales Orders" msgstr "" -#: common/setting/user.py:120 +#: common/setting/user.py:126 msgid "Display sales orders in search preview window" msgstr "" -#: common/setting/user.py:125 +#: common/setting/user.py:131 msgid "Exclude Inactive Sales Orders" msgstr "" -#: common/setting/user.py:126 +#: common/setting/user.py:132 msgid "Exclude inactive sales orders from search preview window" msgstr "" -#: common/setting/user.py:131 +#: common/setting/user.py:137 msgid "Search Sales Order Shipments" msgstr "" -#: common/setting/user.py:132 +#: common/setting/user.py:138 msgid "Display sales order shipments in search preview window" msgstr "" -#: common/setting/user.py:137 +#: common/setting/user.py:143 msgid "Search Return Orders" msgstr "" -#: common/setting/user.py:138 +#: common/setting/user.py:144 msgid "Display return orders in search preview window" msgstr "" -#: common/setting/user.py:143 +#: common/setting/user.py:149 msgid "Exclude Inactive Return Orders" msgstr "" -#: common/setting/user.py:144 +#: common/setting/user.py:150 msgid "Exclude inactive return orders from search preview window" msgstr "" -#: common/setting/user.py:149 +#: common/setting/user.py:155 msgid "Search Preview Results" msgstr "" -#: common/setting/user.py:151 +#: common/setting/user.py:157 msgid "Number of results to show in each section of the search preview window" msgstr "" -#: common/setting/user.py:157 +#: common/setting/user.py:163 msgid "Regex Search" msgstr "" -#: common/setting/user.py:158 +#: common/setting/user.py:164 msgid "Enable regular expressions in search queries" msgstr "" -#: common/setting/user.py:163 +#: common/setting/user.py:169 msgid "Whole Word Search" msgstr "" -#: common/setting/user.py:164 +#: common/setting/user.py:170 msgid "Search queries return results for whole word matches" msgstr "" -#: common/setting/user.py:169 +#: common/setting/user.py:175 msgid "Search Notes" msgstr "" -#: common/setting/user.py:171 +#: common/setting/user.py:177 msgid "Search queries return results for matches from the item's notes" msgstr "" -#: common/setting/user.py:177 +#: common/setting/user.py:183 msgid "Escape Key Closes Forms" msgstr "" -#: common/setting/user.py:178 +#: common/setting/user.py:184 msgid "Use the escape key to close modal forms" msgstr "" -#: common/setting/user.py:183 +#: common/setting/user.py:189 msgid "Fixed Navbar" msgstr "" -#: common/setting/user.py:184 +#: common/setting/user.py:190 msgid "The navbar position is fixed to the top of the screen" msgstr "" -#: common/setting/user.py:189 +#: common/setting/user.py:195 msgid "Fixed Table Headers" msgstr "" -#: common/setting/user.py:190 +#: common/setting/user.py:196 msgid "Table headers are fixed to the top of the table" msgstr "" -#: common/setting/user.py:195 +#: common/setting/user.py:201 msgid "Show Spotlight" msgstr "" -#: common/setting/user.py:196 +#: common/setting/user.py:202 msgid "Enable spotlight navigation functionality" msgstr "" -#: common/setting/user.py:201 +#: common/setting/user.py:207 msgid "Navigation Icons" msgstr "" -#: common/setting/user.py:202 +#: common/setting/user.py:208 msgid "Display icons in the navigation bar" msgstr "" -#: common/setting/user.py:207 +#: common/setting/user.py:213 msgid "Date Format" msgstr "" -#: common/setting/user.py:208 +#: common/setting/user.py:214 msgid "Preferred format for displaying dates" msgstr "" -#: common/setting/user.py:221 +#: common/setting/user.py:227 msgid "Show Stock History" msgstr "" -#: common/setting/user.py:222 +#: common/setting/user.py:228 msgid "Display stock history information in the part detail page" msgstr "" -#: common/setting/user.py:227 +#: common/setting/user.py:233 msgid "Show Last Breadcrumb" msgstr "" -#: common/setting/user.py:228 +#: common/setting/user.py:234 msgid "Show the current page in breadcrumbs" msgstr "" -#: common/setting/user.py:233 +#: common/setting/user.py:239 msgid "Show full stock location in tables" msgstr "" -#: common/setting/user.py:235 +#: common/setting/user.py:241 msgid "Disabled: The full location path is displayed as a hover tooltip. Enabled: The full location path is displayed as plain text." msgstr "" -#: common/setting/user.py:241 +#: common/setting/user.py:247 msgid "Show full part categories in tables" msgstr "" -#: common/setting/user.py:243 +#: common/setting/user.py:249 msgid "Disabled: The full category path is displayed as a hover tooltip. Enabled: The full category path is displayed as plain text." msgstr "" -#: common/setting/user.py:249 +#: common/setting/user.py:255 msgid "Receive error reports" msgstr "" -#: common/setting/user.py:250 +#: common/setting/user.py:256 msgid "Receive notifications for system errors" msgstr "" -#: common/setting/user.py:255 +#: common/setting/user.py:261 msgid "Last used printing machines" msgstr "" -#: common/setting/user.py:256 +#: common/setting/user.py:262 msgid "Save the last used printing machines for a user" msgstr "" -#: common/validators.py:34 +#: common/validators.py:38 +msgid "All models" +msgstr "" + +#: common/validators.py:63 msgid "No attachment model type provided" msgstr "" -#: common/validators.py:40 +#: common/validators.py:69 msgid "Invalid attachment model type" msgstr "" -#: common/validators.py:81 +#: common/validators.py:110 msgid "Minimum places cannot be greater than maximum places" msgstr "" -#: common/validators.py:93 +#: common/validators.py:122 msgid "Maximum places cannot be less than minimum places" msgstr "" -#: common/validators.py:104 +#: common/validators.py:133 msgid "An empty domain is not allowed." msgstr "" -#: common/validators.py:106 +#: common/validators.py:135 #, python-brace-format msgid "Invalid domain name: {domain}" msgstr "" -#: common/validators.py:122 +#: common/validators.py:151 msgid "Value must be uppercase" msgstr "" -#: common/validators.py:128 +#: common/validators.py:157 msgid "Value must be a valid variable identifier" msgstr "" -#: company/api.py:147 +#: company/api.py:141 msgid "Part is Active" msgstr "" -#: company/api.py:151 +#: company/api.py:145 msgid "Manufacturer is Active" msgstr "" -#: company/api.py:286 +#: company/api.py:246 msgid "Supplier Part is Active" msgstr "" -#: company/api.py:290 +#: company/api.py:250 msgid "Internal Part is Active" msgstr "" -#: company/api.py:295 +#: company/api.py:255 msgid "Supplier is Active" msgstr "" -#: company/api.py:307 company/models.py:520 company/serializers.py:457 -#: part/serializers.py:566 +#: company/api.py:267 company/models.py:522 company/serializers.py:502 +#: part/serializers.py:477 msgid "Manufacturer" msgstr "" -#: company/api.py:314 company/models.py:121 company/models.py:392 +#: company/api.py:274 company/models.py:122 company/models.py:393 #: stock/api.py:900 msgid "Company" msgstr "" -#: company/api.py:324 +#: company/api.py:284 msgid "Has Stock" msgstr "" -#: company/models.py:122 +#: company/models.py:123 msgid "Companies" msgstr "" -#: company/models.py:150 +#: company/models.py:151 msgid "Company description" msgstr "" -#: company/models.py:151 +#: company/models.py:152 msgid "Description of the company" msgstr "" -#: company/models.py:157 +#: company/models.py:158 msgid "Website" msgstr "" -#: company/models.py:158 +#: company/models.py:159 msgid "Company website URL" msgstr "" -#: company/models.py:164 +#: company/models.py:165 msgid "Phone number" msgstr "" -#: company/models.py:166 +#: company/models.py:167 msgid "Contact phone number" msgstr "" -#: company/models.py:173 +#: company/models.py:174 msgid "Contact email address" msgstr "" -#: company/models.py:178 company/models.py:296 order/models.py:513 +#: company/models.py:179 company/models.py:297 order/models.py:514 #: users/models.py:561 msgid "Contact" msgstr "" -#: company/models.py:180 +#: company/models.py:181 msgid "Point of contact" msgstr "" -#: company/models.py:186 +#: company/models.py:187 msgid "Link to external company information" msgstr "" -#: company/models.py:191 +#: company/models.py:192 msgid "Is this company active?" msgstr "" -#: company/models.py:196 +#: company/models.py:197 msgid "Is customer" msgstr "" -#: company/models.py:197 +#: company/models.py:198 msgid "Do you sell items to this company?" msgstr "" -#: company/models.py:202 +#: company/models.py:203 msgid "Is supplier" msgstr "" -#: company/models.py:203 +#: company/models.py:204 msgid "Do you purchase items from this company?" msgstr "" -#: company/models.py:208 +#: company/models.py:209 msgid "Is manufacturer" msgstr "" -#: company/models.py:209 +#: company/models.py:210 msgid "Does this company manufacture parts?" msgstr "" -#: company/models.py:217 +#: company/models.py:218 msgid "Default currency used for this company" msgstr "" -#: company/models.py:224 +#: company/models.py:225 msgid "Tax ID" msgstr "" -#: company/models.py:225 +#: company/models.py:226 msgid "Company Tax ID" msgstr "" -#: company/models.py:335 order/models.py:523 order/models.py:2288 +#: company/models.py:336 order/models.py:524 order/models.py:2289 msgid "Address" msgstr "" -#: company/models.py:336 +#: company/models.py:337 msgid "Addresses" msgstr "" -#: company/models.py:393 +#: company/models.py:394 msgid "Select company" msgstr "" -#: company/models.py:398 +#: company/models.py:399 msgid "Address title" msgstr "" -#: company/models.py:399 +#: company/models.py:400 msgid "Title describing the address entry" msgstr "" -#: company/models.py:405 +#: company/models.py:406 msgid "Primary address" msgstr "" -#: company/models.py:406 +#: company/models.py:407 msgid "Set as primary address" msgstr "" -#: company/models.py:411 +#: company/models.py:412 msgid "Line 1" msgstr "" -#: company/models.py:412 +#: company/models.py:413 msgid "Address line 1" msgstr "" -#: company/models.py:418 +#: company/models.py:419 msgid "Line 2" msgstr "" -#: company/models.py:419 +#: company/models.py:420 msgid "Address line 2" msgstr "" -#: company/models.py:425 company/models.py:426 +#: company/models.py:426 company/models.py:427 msgid "Postal code" msgstr "" -#: company/models.py:432 +#: company/models.py:433 msgid "City/Region" msgstr "" -#: company/models.py:433 +#: company/models.py:434 msgid "Postal code city/region" msgstr "" -#: company/models.py:439 +#: company/models.py:440 msgid "State/Province" msgstr "" -#: company/models.py:440 +#: company/models.py:441 msgid "State or province" msgstr "" -#: company/models.py:446 +#: company/models.py:447 msgid "Country" msgstr "" -#: company/models.py:447 +#: company/models.py:448 msgid "Address country" msgstr "" -#: company/models.py:453 +#: company/models.py:454 msgid "Courier shipping notes" msgstr "" -#: company/models.py:454 +#: company/models.py:455 msgid "Notes for shipping courier" msgstr "" -#: company/models.py:460 +#: company/models.py:461 msgid "Internal shipping notes" msgstr "" -#: company/models.py:461 +#: company/models.py:462 msgid "Shipping notes for internal use" msgstr "" -#: company/models.py:468 +#: company/models.py:469 msgid "Link to address information (external)" msgstr "" -#: company/models.py:492 company/models.py:609 company/models.py:832 -#: company/serializers.py:471 stock/api.py:561 +#: company/models.py:494 company/models.py:786 company/serializers.py:516 +#: stock/api.py:561 msgid "Manufacturer Part" msgstr "" -#: company/models.py:509 company/models.py:800 stock/models.py:1025 +#: company/models.py:511 company/models.py:754 stock/models.py:1025 #: stock/serializers.py:407 msgid "Base Part" msgstr "" -#: company/models.py:511 company/models.py:802 +#: company/models.py:513 company/models.py:756 msgid "Select part" msgstr "" -#: company/models.py:521 +#: company/models.py:523 msgid "Select manufacturer" msgstr "" -#: company/models.py:527 company/serializers.py:479 order/serializers.py:734 -#: part/serializers.py:576 +#: company/models.py:529 company/serializers.py:524 order/serializers.py:745 +#: part/serializers.py:487 msgid "MPN" msgstr "" -#: company/models.py:528 stock/serializers.py:572 +#: company/models.py:530 stock/serializers.py:572 msgid "Manufacturer Part Number" msgstr "" -#: company/models.py:535 +#: company/models.py:537 msgid "URL for external manufacturer part link" msgstr "" -#: company/models.py:544 +#: company/models.py:546 msgid "Manufacturer part description" msgstr "" -#: company/models.py:597 -msgid "Manufacturer Part Parameter" -msgstr "" - -#: company/models.py:616 -msgid "Parameter name" -msgstr "" - -#: company/models.py:623 -msgid "Parameter value" -msgstr "" - -#: company/models.py:630 part/models.py:1195 part/models.py:3857 -msgid "Units" -msgstr "" - -#: company/models.py:631 -msgid "Parameter units" -msgstr "" - -#: company/models.py:740 +#: company/models.py:694 msgid "Pack units must be compatible with the base part units" msgstr "" -#: company/models.py:747 +#: company/models.py:701 msgid "Pack units must be greater than zero" msgstr "" -#: company/models.py:761 +#: company/models.py:715 msgid "Linked manufacturer part must reference the same base part" msgstr "" -#: company/models.py:810 company/serializers.py:449 company/serializers.py:467 -#: order/models.py:639 part/serializers.py:550 +#: company/models.py:764 company/serializers.py:494 company/serializers.py:512 +#: order/models.py:640 part/serializers.py:461 #: plugin/builtin/suppliers/digikey.py:26 plugin/builtin/suppliers/lcsc.py:27 #: plugin/builtin/suppliers/mouser.py:25 plugin/builtin/suppliers/tme.py:27 #: stock/api.py:567 templates/email/overdue_purchase_order.html:16 msgid "Supplier" msgstr "" -#: company/models.py:811 +#: company/models.py:765 msgid "Select supplier" msgstr "" -#: company/models.py:817 part/serializers.py:561 +#: company/models.py:771 part/serializers.py:472 msgid "Supplier stock keeping unit" msgstr "" -#: company/models.py:823 +#: company/models.py:777 msgid "Is this supplier part active?" msgstr "" -#: company/models.py:833 +#: company/models.py:787 msgid "Select manufacturer part" msgstr "" -#: company/models.py:840 +#: company/models.py:794 msgid "URL for external supplier part link" msgstr "" -#: company/models.py:849 +#: company/models.py:803 msgid "Supplier part description" msgstr "" -#: company/models.py:856 order/serializers.py:883 order/serializers.py:2047 -#: part/models.py:4070 part/models.py:4450 part/models.py:4819 -#: report/templates/report/inventree_bill_of_materials_report.html:140 -#: report/templates/report/inventree_purchase_order_report.html:39 -#: report/templates/report/inventree_return_order_report.html:27 -#: report/templates/report/inventree_sales_order_report.html:32 -#: report/templates/report/inventree_stock_location_report.html:105 -#: stock/serializers.py:813 -msgid "Note" -msgstr "" - -#: company/models.py:865 part/models.py:2250 +#: company/models.py:819 part/models.py:2338 msgid "base cost" msgstr "" -#: company/models.py:866 part/models.py:2251 +#: company/models.py:820 part/models.py:2339 msgid "Minimum charge (e.g. stocking fee)" msgstr "" -#: company/models.py:873 order/serializers.py:875 stock/models.py:1056 +#: company/models.py:827 order/serializers.py:886 stock/models.py:1056 #: stock/serializers.py:1606 msgid "Packaging" msgstr "" -#: company/models.py:874 +#: company/models.py:828 msgid "Part packaging" msgstr "" -#: company/models.py:879 +#: company/models.py:833 msgid "Pack Quantity" msgstr "" -#: company/models.py:881 +#: company/models.py:835 msgid "Total quantity supplied in a single pack. Leave empty for single items." msgstr "" -#: company/models.py:900 part/models.py:2257 +#: company/models.py:854 part/models.py:2345 msgid "multiple" msgstr "" -#: company/models.py:901 +#: company/models.py:855 msgid "Order multiple" msgstr "" -#: company/models.py:913 +#: company/models.py:867 msgid "Quantity available from supplier" msgstr "" -#: company/models.py:919 +#: company/models.py:873 msgid "Availability Updated" msgstr "" -#: company/models.py:920 +#: company/models.py:874 msgid "Date of last update of availability data" msgstr "" -#: company/models.py:1048 +#: company/models.py:1002 msgid "Supplier Price Break" msgstr "" -#: company/serializers.py:181 +#: company/serializers.py:184 +msgid "Primary Address" +msgstr "" + +#: company/serializers.py:186 msgid "Return the string representation for the primary address. This property exists for backwards compatibility." msgstr "" -#: company/serializers.py:212 +#: company/serializers.py:218 msgid "Default currency used for this supplier" msgstr "" -#: company/serializers.py:248 +#: company/serializers.py:260 msgid "Company Name" msgstr "" -#: company/serializers.py:433 part/serializers.py:955 stock/serializers.py:428 +#: company/serializers.py:460 part/serializers.py:840 stock/serializers.py:428 msgid "In Stock" msgstr "" +#: company/serializers.py:477 +msgid "Price Breaks" +msgstr "" + #: data_exporter/mixins.py:325 data_exporter/mixins.py:403 msgid "Error occurred during data export" msgstr "" @@ -4290,7 +4418,7 @@ msgstr "" msgid "Errors" msgstr "" -#: importer/models.py:550 part/serializers.py:1268 +#: importer/models.py:550 part/serializers.py:1133 msgid "Valid" msgstr "" @@ -4402,7 +4530,7 @@ msgstr "" msgid "Connected" msgstr "" -#: machine/machine_types/label_printer.py:232 order/api.py:1795 +#: machine/machine_types/label_printer.py:232 order/api.py:1800 msgid "Unknown" msgstr "" @@ -4530,105 +4658,105 @@ msgstr "" msgid "Maximum value for progress type, required if type=progress" msgstr "" -#: order/api.py:125 +#: order/api.py:130 msgid "Order Reference" msgstr "" -#: order/api.py:153 order/api.py:1207 +#: order/api.py:158 order/api.py:1212 msgid "Outstanding" msgstr "" -#: order/api.py:169 +#: order/api.py:174 msgid "Has Project Code" msgstr "" -#: order/api.py:183 order/models.py:488 +#: order/api.py:188 order/models.py:489 msgid "Created By" msgstr "" -#: order/api.py:187 +#: order/api.py:192 msgid "Created Before" msgstr "" -#: order/api.py:191 +#: order/api.py:196 msgid "Created After" msgstr "" -#: order/api.py:195 +#: order/api.py:200 msgid "Has Start Date" msgstr "" -#: order/api.py:203 +#: order/api.py:208 msgid "Start Date Before" msgstr "" -#: order/api.py:207 +#: order/api.py:212 msgid "Start Date After" msgstr "" -#: order/api.py:211 +#: order/api.py:216 msgid "Has Target Date" msgstr "" -#: order/api.py:219 +#: order/api.py:224 msgid "Target Date Before" msgstr "" -#: order/api.py:223 +#: order/api.py:228 msgid "Target Date After" msgstr "" -#: order/api.py:274 +#: order/api.py:279 msgid "Has Pricing" msgstr "" -#: order/api.py:327 order/api.py:812 order/api.py:1490 +#: order/api.py:332 order/api.py:818 order/api.py:1495 msgid "Completed Before" msgstr "" -#: order/api.py:331 order/api.py:816 order/api.py:1494 +#: order/api.py:336 order/api.py:822 order/api.py:1499 msgid "Completed After" msgstr "" -#: order/api.py:337 order/api.py:341 +#: order/api.py:342 order/api.py:346 msgid "External Build Order" msgstr "" -#: order/api.py:526 order/api.py:914 order/api.py:1170 order/models.py:1922 -#: order/models.py:2049 order/models.py:2099 order/models.py:2279 -#: order/models.py:2477 order/models.py:2999 order/models.py:3065 +#: order/api.py:532 order/api.py:919 order/api.py:1175 order/models.py:1923 +#: order/models.py:2050 order/models.py:2100 order/models.py:2280 +#: order/models.py:2478 order/models.py:3000 order/models.py:3066 msgid "Order" msgstr "" -#: order/api.py:530 order/api.py:982 +#: order/api.py:536 order/api.py:987 msgid "Order Complete" msgstr "" -#: order/api.py:562 order/api.py:566 order/serializers.py:745 +#: order/api.py:568 order/api.py:572 order/serializers.py:756 msgid "Internal Part" msgstr "" -#: order/api.py:584 +#: order/api.py:590 msgid "Order Pending" msgstr "" -#: order/api.py:967 +#: order/api.py:972 msgid "Completed" msgstr "" -#: order/api.py:1223 +#: order/api.py:1228 msgid "Has Shipment" msgstr "" -#: order/api.py:1789 order/models.py:552 order/models.py:1923 -#: order/models.py:2050 +#: order/api.py:1794 order/models.py:553 order/models.py:1924 +#: order/models.py:2051 #: report/templates/report/inventree_purchase_order_report.html:14 #: stock/serializers.py:129 templates/email/overdue_purchase_order.html:15 msgid "Purchase Order" msgstr "" -#: order/api.py:1791 order/models.py:1251 order/models.py:2100 -#: order/models.py:2280 order/models.py:2478 +#: order/api.py:1796 order/models.py:1252 order/models.py:2101 +#: order/models.py:2281 order/models.py:2479 #: report/templates/report/inventree_build_order_report.html:135 #: report/templates/report/inventree_sales_order_report.html:14 #: report/templates/report/inventree_sales_order_shipment_report.html:15 @@ -4636,8 +4764,8 @@ msgstr "" msgid "Sales Order" msgstr "" -#: order/api.py:1793 order/models.py:2649 order/models.py:3000 -#: order/models.py:3066 +#: order/api.py:1798 order/models.py:2650 order/models.py:3001 +#: order/models.py:3067 #: report/templates/report/inventree_return_order_report.html:13 #: templates/email/overdue_return_order.html:15 msgid "Return Order" @@ -4653,722 +4781,722 @@ msgstr "" msgid "Total price for this order" msgstr "" -#: order/models.py:96 order/serializers.py:77 +#: order/models.py:96 order/serializers.py:78 msgid "Order Currency" msgstr "" -#: order/models.py:99 order/serializers.py:78 +#: order/models.py:99 order/serializers.py:79 msgid "Currency for this order (leave blank to use company default)" msgstr "" -#: order/models.py:324 +#: order/models.py:325 msgid "This order is locked and cannot be modified" msgstr "" -#: order/models.py:376 +#: order/models.py:377 msgid "Contact does not match selected company" msgstr "" -#: order/models.py:383 +#: order/models.py:384 msgid "Start date must be before target date" msgstr "" -#: order/models.py:390 +#: order/models.py:391 msgid "Address does not match selected company" msgstr "" -#: order/models.py:443 +#: order/models.py:444 msgid "Order description (optional)" msgstr "" -#: order/models.py:452 order/models.py:1806 +#: order/models.py:453 order/models.py:1807 msgid "Select project code for this order" msgstr "" -#: order/models.py:458 order/models.py:1787 order/models.py:2344 +#: order/models.py:459 order/models.py:1788 order/models.py:2345 msgid "Link to external page" msgstr "" -#: order/models.py:465 +#: order/models.py:466 msgid "Start date" msgstr "" -#: order/models.py:466 +#: order/models.py:467 msgid "Scheduled start date for this order" msgstr "" -#: order/models.py:472 order/models.py:1794 order/serializers.py:309 +#: order/models.py:473 order/models.py:1795 order/serializers.py:317 #: report/templates/report/inventree_build_order_report.html:125 msgid "Target Date" msgstr "" -#: order/models.py:474 +#: order/models.py:475 msgid "Expected date for order delivery. Order will be overdue after this date." msgstr "" -#: order/models.py:494 +#: order/models.py:495 msgid "Issue Date" msgstr "" -#: order/models.py:495 +#: order/models.py:496 msgid "Date order was issued" msgstr "" -#: order/models.py:503 +#: order/models.py:504 msgid "User or group responsible for this order" msgstr "" -#: order/models.py:514 +#: order/models.py:515 msgid "Point of contact for this order" msgstr "" -#: order/models.py:524 +#: order/models.py:525 msgid "Company address for this order" msgstr "" -#: order/models.py:615 order/models.py:1312 +#: order/models.py:616 order/models.py:1313 msgid "Order reference" msgstr "" -#: order/models.py:624 order/models.py:1336 order/models.py:2737 +#: order/models.py:625 order/models.py:1337 order/models.py:2738 #: stock/serializers.py:559 stock/serializers.py:988 users/models.py:542 msgid "Status" msgstr "" -#: order/models.py:625 +#: order/models.py:626 msgid "Purchase order status" msgstr "" -#: order/models.py:640 +#: order/models.py:641 msgid "Company from which the items are being ordered" msgstr "" -#: order/models.py:651 +#: order/models.py:652 msgid "Supplier Reference" msgstr "" -#: order/models.py:652 +#: order/models.py:653 msgid "Supplier order reference code" msgstr "" -#: order/models.py:661 +#: order/models.py:662 msgid "received by" msgstr "" -#: order/models.py:668 order/models.py:2752 +#: order/models.py:669 order/models.py:2753 msgid "Date order was completed" msgstr "" -#: order/models.py:677 order/models.py:1981 +#: order/models.py:678 order/models.py:1982 msgid "Destination" msgstr "" -#: order/models.py:678 order/models.py:1985 +#: order/models.py:679 order/models.py:1986 msgid "Destination for received items" msgstr "" -#: order/models.py:724 +#: order/models.py:725 msgid "Part supplier must match PO supplier" msgstr "" -#: order/models.py:994 +#: order/models.py:995 msgid "Line item does not match purchase order" msgstr "" -#: order/models.py:997 +#: order/models.py:998 msgid "Line item is missing a linked part" msgstr "" -#: order/models.py:1011 +#: order/models.py:1012 msgid "Quantity must be a positive number" msgstr "" -#: order/models.py:1323 order/models.py:2724 stock/models.py:1078 +#: order/models.py:1324 order/models.py:2725 stock/models.py:1078 #: stock/models.py:1079 stock/serializers.py:1322 #: templates/email/overdue_return_order.html:16 #: templates/email/overdue_sales_order.html:16 msgid "Customer" msgstr "" -#: order/models.py:1324 +#: order/models.py:1325 msgid "Company to which the items are being sold" msgstr "" -#: order/models.py:1337 +#: order/models.py:1338 msgid "Sales order status" msgstr "" -#: order/models.py:1348 order/models.py:2744 +#: order/models.py:1349 order/models.py:2745 msgid "Customer Reference " msgstr "" -#: order/models.py:1349 order/models.py:2745 +#: order/models.py:1350 order/models.py:2746 msgid "Customer order reference code" msgstr "" -#: order/models.py:1353 order/models.py:2296 +#: order/models.py:1354 order/models.py:2297 msgid "Shipment Date" msgstr "" -#: order/models.py:1362 +#: order/models.py:1363 msgid "shipped by" msgstr "" -#: order/models.py:1413 +#: order/models.py:1414 msgid "Order is already complete" msgstr "" -#: order/models.py:1416 +#: order/models.py:1417 msgid "Order is already cancelled" msgstr "" -#: order/models.py:1420 +#: order/models.py:1421 msgid "Only an open order can be marked as complete" msgstr "" -#: order/models.py:1424 +#: order/models.py:1425 msgid "Order cannot be completed as there are incomplete shipments" msgstr "" -#: order/models.py:1429 +#: order/models.py:1430 msgid "Order cannot be completed as there are incomplete allocations" msgstr "" -#: order/models.py:1438 +#: order/models.py:1439 msgid "Order cannot be completed as there are incomplete line items" msgstr "" -#: order/models.py:1733 order/models.py:1749 +#: order/models.py:1734 order/models.py:1750 msgid "The order is locked and cannot be modified" msgstr "" -#: order/models.py:1757 +#: order/models.py:1758 msgid "Item quantity" msgstr "" -#: order/models.py:1774 +#: order/models.py:1775 msgid "Line item reference" msgstr "" -#: order/models.py:1781 +#: order/models.py:1782 msgid "Line item notes" msgstr "" -#: order/models.py:1796 +#: order/models.py:1797 msgid "Target date for this line item (leave blank to use the target date from the order)" msgstr "" -#: order/models.py:1826 +#: order/models.py:1827 msgid "Line item description (optional)" msgstr "" -#: order/models.py:1833 +#: order/models.py:1834 msgid "Additional context for this line" msgstr "" -#: order/models.py:1843 +#: order/models.py:1844 msgid "Unit price" msgstr "" -#: order/models.py:1862 +#: order/models.py:1863 msgid "Purchase Order Line Item" msgstr "" -#: order/models.py:1889 +#: order/models.py:1890 msgid "Supplier part must match supplier" msgstr "" -#: order/models.py:1894 +#: order/models.py:1895 msgid "Build order must be marked as external" msgstr "" -#: order/models.py:1901 +#: order/models.py:1902 msgid "Build orders can only be linked to assembly parts" msgstr "" -#: order/models.py:1907 +#: order/models.py:1908 msgid "Build order part must match line item part" msgstr "" -#: order/models.py:1942 +#: order/models.py:1943 msgid "Supplier part" msgstr "" -#: order/models.py:1949 +#: order/models.py:1950 msgid "Received" msgstr "" -#: order/models.py:1950 +#: order/models.py:1951 msgid "Number of items received" msgstr "" -#: order/models.py:1958 stock/models.py:1201 stock/serializers.py:637 +#: order/models.py:1959 stock/models.py:1201 stock/serializers.py:637 msgid "Purchase Price" msgstr "" -#: order/models.py:1959 +#: order/models.py:1960 msgid "Unit purchase price" msgstr "" -#: order/models.py:1975 +#: order/models.py:1976 msgid "External Build Order to be fulfilled by this line item" msgstr "" -#: order/models.py:2038 +#: order/models.py:2039 msgid "Purchase Order Extra Line" msgstr "" -#: order/models.py:2067 +#: order/models.py:2068 msgid "Sales Order Line Item" msgstr "" -#: order/models.py:2092 +#: order/models.py:2093 msgid "Only salable parts can be assigned to a sales order" msgstr "" -#: order/models.py:2118 +#: order/models.py:2119 msgid "Sale Price" msgstr "" -#: order/models.py:2119 +#: order/models.py:2120 msgid "Unit sale price" msgstr "" -#: order/models.py:2128 order/status_codes.py:50 +#: order/models.py:2129 order/status_codes.py:50 msgid "Shipped" msgstr "Afsendt" -#: order/models.py:2129 +#: order/models.py:2130 msgid "Shipped quantity" msgstr "" -#: order/models.py:2240 +#: order/models.py:2241 msgid "Sales Order Shipment" msgstr "" -#: order/models.py:2253 +#: order/models.py:2254 msgid "Shipment address must match the customer" msgstr "" -#: order/models.py:2289 +#: order/models.py:2290 msgid "Shipping address for this shipment" msgstr "" -#: order/models.py:2297 +#: order/models.py:2298 msgid "Date of shipment" msgstr "" -#: order/models.py:2303 +#: order/models.py:2304 msgid "Delivery Date" msgstr "" -#: order/models.py:2304 +#: order/models.py:2305 msgid "Date of delivery of shipment" msgstr "" -#: order/models.py:2312 +#: order/models.py:2313 msgid "Checked By" msgstr "" -#: order/models.py:2313 +#: order/models.py:2314 msgid "User who checked this shipment" msgstr "" -#: order/models.py:2320 order/models.py:2574 order/serializers.py:1711 -#: order/serializers.py:1835 +#: order/models.py:2321 order/models.py:2575 order/serializers.py:1725 +#: order/serializers.py:1849 #: report/templates/report/inventree_sales_order_shipment_report.html:14 msgid "Shipment" msgstr "" -#: order/models.py:2321 +#: order/models.py:2322 msgid "Shipment number" msgstr "" -#: order/models.py:2329 +#: order/models.py:2330 msgid "Tracking Number" msgstr "" -#: order/models.py:2330 +#: order/models.py:2331 msgid "Shipment tracking information" msgstr "" -#: order/models.py:2337 +#: order/models.py:2338 msgid "Invoice Number" msgstr "" -#: order/models.py:2338 +#: order/models.py:2339 msgid "Reference number for associated invoice" msgstr "" -#: order/models.py:2377 +#: order/models.py:2378 msgid "Shipment has already been sent" msgstr "" -#: order/models.py:2380 +#: order/models.py:2381 msgid "Shipment has no allocated stock items" msgstr "" -#: order/models.py:2387 +#: order/models.py:2388 msgid "Shipment must be checked before it can be completed" msgstr "" -#: order/models.py:2466 +#: order/models.py:2467 msgid "Sales Order Extra Line" msgstr "" -#: order/models.py:2495 +#: order/models.py:2496 msgid "Sales Order Allocation" msgstr "" -#: order/models.py:2518 order/models.py:2520 +#: order/models.py:2519 order/models.py:2521 msgid "Stock item has not been assigned" msgstr "" -#: order/models.py:2527 +#: order/models.py:2528 msgid "Cannot allocate stock item to a line with a different part" msgstr "" -#: order/models.py:2530 +#: order/models.py:2531 msgid "Cannot allocate stock to a line without a part" msgstr "" -#: order/models.py:2533 +#: order/models.py:2534 msgid "Allocation quantity cannot exceed stock quantity" msgstr "" -#: order/models.py:2552 order/serializers.py:1581 +#: order/models.py:2553 order/serializers.py:1595 msgid "Quantity must be 1 for serialized stock item" msgstr "" -#: order/models.py:2555 +#: order/models.py:2556 msgid "Sales order does not match shipment" msgstr "" -#: order/models.py:2556 plugin/base/barcodes/api.py:642 +#: order/models.py:2557 plugin/base/barcodes/api.py:642 msgid "Shipment does not match sales order" msgstr "" -#: order/models.py:2564 +#: order/models.py:2565 msgid "Line" msgstr "" -#: order/models.py:2575 +#: order/models.py:2576 msgid "Sales order shipment reference" msgstr "" -#: order/models.py:2588 order/models.py:3007 +#: order/models.py:2589 order/models.py:3008 msgid "Item" msgstr "" -#: order/models.py:2589 +#: order/models.py:2590 msgid "Select stock item to allocate" msgstr "" -#: order/models.py:2598 +#: order/models.py:2599 msgid "Enter stock allocation quantity" msgstr "" -#: order/models.py:2713 +#: order/models.py:2714 msgid "Return Order reference" msgstr "" -#: order/models.py:2725 +#: order/models.py:2726 msgid "Company from which items are being returned" msgstr "" -#: order/models.py:2738 +#: order/models.py:2739 msgid "Return order status" msgstr "" -#: order/models.py:2965 +#: order/models.py:2966 msgid "Return Order Line Item" msgstr "" -#: order/models.py:2978 +#: order/models.py:2979 msgid "Stock item must be specified" msgstr "" -#: order/models.py:2982 +#: order/models.py:2983 msgid "Return quantity exceeds stock quantity" msgstr "" -#: order/models.py:2987 +#: order/models.py:2988 msgid "Return quantity must be greater than zero" msgstr "" -#: order/models.py:2992 +#: order/models.py:2993 msgid "Invalid quantity for serialized stock item" msgstr "" -#: order/models.py:3008 +#: order/models.py:3009 msgid "Select item to return from customer" msgstr "" -#: order/models.py:3023 +#: order/models.py:3024 msgid "Received Date" msgstr "" -#: order/models.py:3024 +#: order/models.py:3025 msgid "The date this this return item was received" msgstr "" -#: order/models.py:3036 +#: order/models.py:3037 msgid "Outcome" msgstr "" -#: order/models.py:3037 +#: order/models.py:3038 msgid "Outcome for this line item" msgstr "" -#: order/models.py:3044 +#: order/models.py:3045 msgid "Cost associated with return or repair for this line item" msgstr "" -#: order/models.py:3054 +#: order/models.py:3055 msgid "Return Order Extra Line" msgstr "" -#: order/serializers.py:91 +#: order/serializers.py:92 msgid "Order ID" msgstr "" -#: order/serializers.py:91 +#: order/serializers.py:92 msgid "ID of the order to duplicate" msgstr "" -#: order/serializers.py:97 +#: order/serializers.py:98 msgid "Copy Lines" msgstr "" -#: order/serializers.py:98 +#: order/serializers.py:99 msgid "Copy line items from the original order" msgstr "" -#: order/serializers.py:104 +#: order/serializers.py:105 msgid "Copy Extra Lines" msgstr "" -#: order/serializers.py:105 +#: order/serializers.py:106 msgid "Copy extra line items from the original order" msgstr "" -#: order/serializers.py:120 +#: order/serializers.py:121 #: report/templates/report/inventree_purchase_order_report.html:29 #: report/templates/report/inventree_return_order_report.html:19 #: report/templates/report/inventree_sales_order_report.html:22 msgid "Line Items" msgstr "" -#: order/serializers.py:125 +#: order/serializers.py:126 msgid "Completed Lines" msgstr "" -#: order/serializers.py:192 +#: order/serializers.py:199 msgid "Duplicate Order" msgstr "" -#: order/serializers.py:193 +#: order/serializers.py:200 msgid "Specify options for duplicating this order" msgstr "" -#: order/serializers.py:270 +#: order/serializers.py:278 msgid "Invalid order ID" msgstr "" -#: order/serializers.py:466 +#: order/serializers.py:477 msgid "Supplier Name" msgstr "" -#: order/serializers.py:510 +#: order/serializers.py:521 msgid "Order cannot be cancelled" msgstr "" -#: order/serializers.py:525 order/serializers.py:1602 +#: order/serializers.py:536 order/serializers.py:1616 msgid "Allow order to be closed with incomplete line items" msgstr "" -#: order/serializers.py:535 order/serializers.py:1612 +#: order/serializers.py:546 order/serializers.py:1626 msgid "Order has incomplete line items" msgstr "" -#: order/serializers.py:665 +#: order/serializers.py:676 msgid "Order is not open" msgstr "" -#: order/serializers.py:692 +#: order/serializers.py:703 msgid "Auto Pricing" msgstr "" -#: order/serializers.py:694 +#: order/serializers.py:705 msgid "Automatically calculate purchase price based on supplier part data" msgstr "" -#: order/serializers.py:704 +#: order/serializers.py:715 msgid "Purchase price currency" msgstr "" -#: order/serializers.py:718 +#: order/serializers.py:729 msgid "Merge Items" msgstr "" -#: order/serializers.py:720 +#: order/serializers.py:731 msgid "Merge items with the same part, destination and target date into one line item" msgstr "" -#: order/serializers.py:727 part/serializers.py:560 +#: order/serializers.py:738 part/serializers.py:471 msgid "SKU" msgstr "" -#: order/serializers.py:741 part/models.py:1089 part/serializers.py:372 +#: order/serializers.py:752 part/models.py:1177 part/serializers.py:337 msgid "Internal Part Number" msgstr "" -#: order/serializers.py:749 +#: order/serializers.py:760 msgid "Internal Part Name" msgstr "" -#: order/serializers.py:765 +#: order/serializers.py:776 msgid "Supplier part must be specified" msgstr "" -#: order/serializers.py:768 +#: order/serializers.py:779 msgid "Purchase order must be specified" msgstr "" -#: order/serializers.py:776 +#: order/serializers.py:787 msgid "Supplier must match purchase order" msgstr "" -#: order/serializers.py:777 +#: order/serializers.py:788 msgid "Purchase order must match supplier" msgstr "" -#: order/serializers.py:825 order/serializers.py:1682 +#: order/serializers.py:836 order/serializers.py:1696 msgid "Line Item" msgstr "" -#: order/serializers.py:834 order/serializers.py:974 order/serializers.py:2043 +#: order/serializers.py:845 order/serializers.py:985 order/serializers.py:2060 msgid "Select destination location for received items" msgstr "" -#: order/serializers.py:850 +#: order/serializers.py:861 msgid "Enter batch code for incoming stock items" msgstr "" -#: order/serializers.py:857 stock/models.py:1160 +#: order/serializers.py:868 stock/models.py:1160 #: templates/email/stale_stock_notification.html:22 users/models.py:137 msgid "Expiry Date" msgstr "" -#: order/serializers.py:858 +#: order/serializers.py:869 msgid "Enter expiry date for incoming stock items" msgstr "" -#: order/serializers.py:866 +#: order/serializers.py:877 msgid "Enter serial numbers for incoming stock items" msgstr "" -#: order/serializers.py:876 +#: order/serializers.py:887 msgid "Override packaging information for incoming stock items" msgstr "" -#: order/serializers.py:884 order/serializers.py:2048 +#: order/serializers.py:895 order/serializers.py:2065 msgid "Additional note for incoming stock items" msgstr "" -#: order/serializers.py:891 +#: order/serializers.py:902 msgid "Barcode" msgstr "" -#: order/serializers.py:892 +#: order/serializers.py:903 msgid "Scanned barcode" msgstr "" -#: order/serializers.py:908 +#: order/serializers.py:919 msgid "Barcode is already in use" msgstr "" -#: order/serializers.py:991 order/serializers.py:2067 +#: order/serializers.py:1002 order/serializers.py:2084 msgid "Line items must be provided" msgstr "" -#: order/serializers.py:1010 +#: order/serializers.py:1021 msgid "Destination location must be specified" msgstr "" -#: order/serializers.py:1017 +#: order/serializers.py:1028 msgid "Supplied barcode values must be unique" msgstr "" -#: order/serializers.py:1121 +#: order/serializers.py:1135 msgid "Shipments" msgstr "" -#: order/serializers.py:1125 +#: order/serializers.py:1139 msgid "Completed Shipments" msgstr "" -#: order/serializers.py:1293 +#: order/serializers.py:1307 msgid "Sale price currency" msgstr "" -#: order/serializers.py:1339 +#: order/serializers.py:1353 msgid "Allocated Items" msgstr "" -#: order/serializers.py:1484 +#: order/serializers.py:1498 msgid "No shipment details provided" msgstr "" -#: order/serializers.py:1545 order/serializers.py:1691 +#: order/serializers.py:1559 order/serializers.py:1705 msgid "Line item is not associated with this order" msgstr "" -#: order/serializers.py:1564 +#: order/serializers.py:1578 msgid "Quantity must be positive" msgstr "" -#: order/serializers.py:1701 +#: order/serializers.py:1715 msgid "Enter serial numbers to allocate" msgstr "" -#: order/serializers.py:1723 order/serializers.py:1843 +#: order/serializers.py:1737 order/serializers.py:1857 msgid "Shipment has already been shipped" msgstr "" -#: order/serializers.py:1726 order/serializers.py:1846 +#: order/serializers.py:1740 order/serializers.py:1860 msgid "Shipment is not associated with this order" msgstr "" -#: order/serializers.py:1781 +#: order/serializers.py:1795 msgid "No match found for the following serial numbers" msgstr "" -#: order/serializers.py:1788 +#: order/serializers.py:1802 msgid "The following serial numbers are unavailable" msgstr "" -#: order/serializers.py:2009 +#: order/serializers.py:2026 msgid "Return order line item" msgstr "" -#: order/serializers.py:2019 +#: order/serializers.py:2036 msgid "Line item does not match return order" msgstr "" -#: order/serializers.py:2022 +#: order/serializers.py:2039 msgid "Line item has already been received" msgstr "" -#: order/serializers.py:2059 +#: order/serializers.py:2076 msgid "Items can only be received against orders which are in progress" msgstr "" -#: order/serializers.py:2124 +#: order/serializers.py:2141 msgid "Quantity to return" msgstr "" -#: order/serializers.py:2140 +#: order/serializers.py:2157 msgid "Line price currency" msgstr "" @@ -5431,1190 +5559,1109 @@ msgstr "" msgid "Return order {ro} is now overdue" msgstr "" -#: part/api.py:108 +#: part/api.py:103 msgid "Starred" msgstr "" -#: part/api.py:110 +#: part/api.py:105 msgid "Filter by starred categories" msgstr "" -#: part/api.py:127 stock/api.py:288 +#: part/api.py:122 stock/api.py:288 msgid "Depth" msgstr "" -#: part/api.py:127 +#: part/api.py:122 msgid "Filter by category depth" msgstr "" -#: part/api.py:145 stock/api.py:306 +#: part/api.py:140 stock/api.py:306 msgid "Top Level" msgstr "" -#: part/api.py:147 +#: part/api.py:142 msgid "Filter by top-level categories" msgstr "" -#: part/api.py:160 stock/api.py:321 +#: part/api.py:155 stock/api.py:321 msgid "Cascade" msgstr "" -#: part/api.py:162 +#: part/api.py:157 msgid "Include sub-categories in filtered results" msgstr "" -#: part/api.py:182 +#: part/api.py:177 msgid "Parent" msgstr "" -#: part/api.py:184 +#: part/api.py:179 msgid "Filter by parent category" msgstr "" -#: part/api.py:219 +#: part/api.py:214 msgid "Exclude sub-categories under the specified category" msgstr "" -#: part/api.py:445 +#: part/api.py:440 msgid "Has Results" msgstr "" -#: part/api.py:666 +#: part/api.py:661 msgid "Is Variant" msgstr "" -#: part/api.py:674 +#: part/api.py:669 msgid "Is Revision" msgstr "" -#: part/api.py:684 +#: part/api.py:679 msgid "Has Revisions" msgstr "" -#: part/api.py:865 +#: part/api.py:860 msgid "BOM Valid" msgstr "" -#: part/api.py:974 +#: part/api.py:969 msgid "Cascade Categories" msgstr "" -#: part/api.py:975 +#: part/api.py:970 msgid "If true, include items in child categories of the given category" msgstr "" -#: part/api.py:981 +#: part/api.py:976 msgid "Filter by numeric category ID or the literal 'null'" msgstr "" -#: part/api.py:1533 +#: part/api.py:1258 msgid "Assembly part is testable" msgstr "" -#: part/api.py:1542 +#: part/api.py:1267 msgid "Component part is testable" msgstr "" -#: part/api.py:1611 +#: part/api.py:1336 msgid "Uses" msgstr "" -#: part/models.py:96 part/models.py:4163 +#: part/models.py:93 part/models.py:436 #: templates/email/part_event_notification.html:16 msgid "Part Category" msgstr "" -#: part/models.py:97 users/ruleset.py:27 +#: part/models.py:94 users/ruleset.py:27 msgid "Part Categories" msgstr "" -#: part/models.py:115 part/models.py:1125 +#: part/models.py:112 part/models.py:1213 msgid "Default Location" msgstr "" -#: part/models.py:116 +#: part/models.py:113 msgid "Default location for parts in this category" msgstr "" -#: part/models.py:121 stock/models.py:216 +#: part/models.py:118 stock/models.py:216 msgid "Structural" msgstr "" -#: part/models.py:123 +#: part/models.py:120 msgid "Parts may not be directly assigned to a structural category, but may be assigned to child categories." msgstr "" -#: part/models.py:132 +#: part/models.py:129 msgid "Default keywords" msgstr "" -#: part/models.py:133 +#: part/models.py:130 msgid "Default keywords for parts in this category" msgstr "" -#: part/models.py:140 stock/models.py:97 stock/models.py:198 +#: part/models.py:137 stock/models.py:97 stock/models.py:198 msgid "Icon" msgstr "" -#: part/models.py:141 part/serializers.py:148 part/serializers.py:167 +#: part/models.py:138 part/serializers.py:147 part/serializers.py:166 #: stock/models.py:199 msgid "Icon (optional)" msgstr "" -#: part/models.py:185 +#: part/models.py:182 msgid "You cannot make this part category structural because some parts are already assigned to it!" msgstr "" -#: part/models.py:473 part/serializers.py:119 part/serializers.py:310 -#: users/ruleset.py:28 +#: part/models.py:392 +msgid "Part Category Parameter Template" +msgstr "" + +#: part/models.py:448 +msgid "Default Value" +msgstr "" + +#: part/models.py:449 +msgid "Default Parameter Value" +msgstr "" + +#: part/models.py:551 part/serializers.py:118 users/ruleset.py:28 msgid "Parts" msgstr "" -#: part/models.py:525 +#: part/models.py:597 +msgid "Cannot delete parameters of a locked part" +msgstr "" + +#: part/models.py:602 +msgid "Cannot modify parameters of a locked part" +msgstr "" + +#: part/models.py:613 msgid "Cannot delete this part as it is locked" msgstr "" -#: part/models.py:528 +#: part/models.py:616 msgid "Cannot delete this part as it is still active" msgstr "" -#: part/models.py:533 +#: part/models.py:621 msgid "Cannot delete this part as it is used in an assembly" msgstr "" -#: part/models.py:616 part/models.py:623 +#: part/models.py:704 part/models.py:711 #, python-brace-format msgid "Part '{self}' cannot be used in BOM for '{parent}' (recursive)" msgstr "" -#: part/models.py:635 +#: part/models.py:723 #, python-brace-format msgid "Part '{parent}' is used in BOM for '{self}' (recursive)" msgstr "" -#: part/models.py:702 +#: part/models.py:790 #, python-brace-format msgid "IPN must match regex pattern {pattern}" msgstr "" -#: part/models.py:710 +#: part/models.py:798 msgid "Part cannot be a revision of itself" msgstr "" -#: part/models.py:717 +#: part/models.py:805 msgid "Cannot make a revision of a part which is already a revision" msgstr "" -#: part/models.py:724 +#: part/models.py:812 msgid "Revision code must be specified" msgstr "" -#: part/models.py:731 +#: part/models.py:819 msgid "Revisions are only allowed for assembly parts" msgstr "" -#: part/models.py:738 +#: part/models.py:826 msgid "Cannot make a revision of a template part" msgstr "" -#: part/models.py:744 +#: part/models.py:832 msgid "Parent part must point to the same template" msgstr "" -#: part/models.py:841 +#: part/models.py:929 msgid "Stock item with this serial number already exists" msgstr "" -#: part/models.py:971 +#: part/models.py:1059 msgid "Duplicate IPN not allowed in part settings" msgstr "" -#: part/models.py:983 +#: part/models.py:1071 msgid "Duplicate part revision already exists." msgstr "" -#: part/models.py:992 +#: part/models.py:1080 msgid "Part with this Name, IPN and Revision already exists." msgstr "" -#: part/models.py:1007 +#: part/models.py:1095 msgid "Parts cannot be assigned to structural part categories!" msgstr "" -#: part/models.py:1039 +#: part/models.py:1127 msgid "Part name" msgstr "" -#: part/models.py:1044 +#: part/models.py:1132 msgid "Is Template" msgstr "" -#: part/models.py:1045 +#: part/models.py:1133 msgid "Is this part a template part?" msgstr "" -#: part/models.py:1055 +#: part/models.py:1143 msgid "Is this part a variant of another part?" msgstr "" -#: part/models.py:1056 +#: part/models.py:1144 msgid "Variant Of" msgstr "" -#: part/models.py:1063 +#: part/models.py:1151 msgid "Part description (optional)" msgstr "" -#: part/models.py:1070 +#: part/models.py:1158 msgid "Keywords" msgstr "" -#: part/models.py:1071 +#: part/models.py:1159 msgid "Part keywords to improve visibility in search results" msgstr "" -#: part/models.py:1081 +#: part/models.py:1169 msgid "Part category" msgstr "" -#: part/models.py:1088 part/serializers.py:929 +#: part/models.py:1176 part/serializers.py:814 #: report/templates/report/inventree_stock_location_report.html:103 msgid "IPN" msgstr "" -#: part/models.py:1096 +#: part/models.py:1184 msgid "Part revision or version number" msgstr "" -#: part/models.py:1097 report/models.py:228 +#: part/models.py:1185 report/models.py:228 msgid "Revision" msgstr "" -#: part/models.py:1106 +#: part/models.py:1194 msgid "Is this part a revision of another part?" msgstr "" -#: part/models.py:1107 +#: part/models.py:1195 msgid "Revision Of" msgstr "" -#: part/models.py:1123 +#: part/models.py:1211 msgid "Where is this item normally stored?" msgstr "" -#: part/models.py:1169 +#: part/models.py:1257 msgid "Default Supplier" msgstr "" -#: part/models.py:1170 +#: part/models.py:1258 msgid "Default supplier part" msgstr "" -#: part/models.py:1177 +#: part/models.py:1265 msgid "Default Expiry" msgstr "" -#: part/models.py:1178 +#: part/models.py:1266 msgid "Expiry time (in days) for stock items of this part" msgstr "" -#: part/models.py:1186 part/serializers.py:1003 +#: part/models.py:1274 part/serializers.py:888 msgid "Minimum Stock" msgstr "" -#: part/models.py:1187 +#: part/models.py:1275 msgid "Minimum allowed stock level" msgstr "" -#: part/models.py:1196 +#: part/models.py:1284 msgid "Units of measure for this part" msgstr "" -#: part/models.py:1203 +#: part/models.py:1291 msgid "Can this part be built from other parts?" msgstr "" -#: part/models.py:1209 +#: part/models.py:1297 msgid "Can this part be used to build other parts?" msgstr "" -#: part/models.py:1215 +#: part/models.py:1303 msgid "Does this part have tracking for unique items?" msgstr "" -#: part/models.py:1221 +#: part/models.py:1309 msgid "Can this part have test results recorded against it?" msgstr "" -#: part/models.py:1227 +#: part/models.py:1315 msgid "Can this part be purchased from external suppliers?" msgstr "" -#: part/models.py:1233 +#: part/models.py:1321 msgid "Can this part be sold to customers?" msgstr "" -#: part/models.py:1237 +#: part/models.py:1325 msgid "Is this part active?" msgstr "" -#: part/models.py:1243 +#: part/models.py:1331 msgid "Locked parts cannot be edited" msgstr "" -#: part/models.py:1249 +#: part/models.py:1337 msgid "Is this a virtual part, such as a software product or license?" msgstr "" -#: part/models.py:1254 +#: part/models.py:1342 msgid "BOM Validated" msgstr "" -#: part/models.py:1255 +#: part/models.py:1343 msgid "Is the BOM for this part valid?" msgstr "" -#: part/models.py:1261 +#: part/models.py:1349 msgid "BOM checksum" msgstr "" -#: part/models.py:1262 +#: part/models.py:1350 msgid "Stored BOM checksum" msgstr "" -#: part/models.py:1270 +#: part/models.py:1358 msgid "BOM checked by" msgstr "" -#: part/models.py:1275 +#: part/models.py:1363 msgid "BOM checked date" msgstr "" -#: part/models.py:1291 +#: part/models.py:1379 msgid "Creation User" msgstr "" -#: part/models.py:1301 +#: part/models.py:1389 msgid "Owner responsible for this part" msgstr "" -#: part/models.py:2258 +#: part/models.py:2346 msgid "Sell multiple" msgstr "" -#: part/models.py:3286 +#: part/models.py:3350 msgid "Currency used to cache pricing calculations" msgstr "" -#: part/models.py:3302 +#: part/models.py:3366 msgid "Minimum BOM Cost" msgstr "" -#: part/models.py:3303 +#: part/models.py:3367 msgid "Minimum cost of component parts" msgstr "" -#: part/models.py:3309 +#: part/models.py:3373 msgid "Maximum BOM Cost" msgstr "" -#: part/models.py:3310 +#: part/models.py:3374 msgid "Maximum cost of component parts" msgstr "" -#: part/models.py:3316 +#: part/models.py:3380 msgid "Minimum Purchase Cost" msgstr "" -#: part/models.py:3317 +#: part/models.py:3381 msgid "Minimum historical purchase cost" msgstr "" -#: part/models.py:3323 +#: part/models.py:3387 msgid "Maximum Purchase Cost" msgstr "" -#: part/models.py:3324 +#: part/models.py:3388 msgid "Maximum historical purchase cost" msgstr "" -#: part/models.py:3330 +#: part/models.py:3394 msgid "Minimum Internal Price" msgstr "" -#: part/models.py:3331 +#: part/models.py:3395 msgid "Minimum cost based on internal price breaks" msgstr "" -#: part/models.py:3337 +#: part/models.py:3401 msgid "Maximum Internal Price" msgstr "" -#: part/models.py:3338 +#: part/models.py:3402 msgid "Maximum cost based on internal price breaks" msgstr "" -#: part/models.py:3344 +#: part/models.py:3408 msgid "Minimum Supplier Price" msgstr "" -#: part/models.py:3345 +#: part/models.py:3409 msgid "Minimum price of part from external suppliers" msgstr "" -#: part/models.py:3351 +#: part/models.py:3415 msgid "Maximum Supplier Price" msgstr "" -#: part/models.py:3352 +#: part/models.py:3416 msgid "Maximum price of part from external suppliers" msgstr "" -#: part/models.py:3358 +#: part/models.py:3422 msgid "Minimum Variant Cost" msgstr "" -#: part/models.py:3359 +#: part/models.py:3423 msgid "Calculated minimum cost of variant parts" msgstr "" -#: part/models.py:3365 +#: part/models.py:3429 msgid "Maximum Variant Cost" msgstr "" -#: part/models.py:3366 +#: part/models.py:3430 msgid "Calculated maximum cost of variant parts" msgstr "" -#: part/models.py:3372 part/models.py:3386 +#: part/models.py:3436 part/models.py:3450 msgid "Minimum Cost" msgstr "" -#: part/models.py:3373 +#: part/models.py:3437 msgid "Override minimum cost" msgstr "" -#: part/models.py:3379 part/models.py:3393 +#: part/models.py:3443 part/models.py:3457 msgid "Maximum Cost" msgstr "" -#: part/models.py:3380 +#: part/models.py:3444 msgid "Override maximum cost" msgstr "" -#: part/models.py:3387 +#: part/models.py:3451 msgid "Calculated overall minimum cost" msgstr "" -#: part/models.py:3394 +#: part/models.py:3458 msgid "Calculated overall maximum cost" msgstr "" -#: part/models.py:3400 +#: part/models.py:3464 msgid "Minimum Sale Price" msgstr "" -#: part/models.py:3401 +#: part/models.py:3465 msgid "Minimum sale price based on price breaks" msgstr "" -#: part/models.py:3407 +#: part/models.py:3471 msgid "Maximum Sale Price" msgstr "" -#: part/models.py:3408 +#: part/models.py:3472 msgid "Maximum sale price based on price breaks" msgstr "" -#: part/models.py:3414 +#: part/models.py:3478 msgid "Minimum Sale Cost" msgstr "" -#: part/models.py:3415 +#: part/models.py:3479 msgid "Minimum historical sale price" msgstr "" -#: part/models.py:3421 +#: part/models.py:3485 msgid "Maximum Sale Cost" msgstr "" -#: part/models.py:3422 +#: part/models.py:3486 msgid "Maximum historical sale price" msgstr "" -#: part/models.py:3440 +#: part/models.py:3504 msgid "Part for stocktake" msgstr "" -#: part/models.py:3445 +#: part/models.py:3509 msgid "Item Count" msgstr "" -#: part/models.py:3446 +#: part/models.py:3510 msgid "Number of individual stock entries at time of stocktake" msgstr "" -#: part/models.py:3454 +#: part/models.py:3518 msgid "Total available stock at time of stocktake" msgstr "" -#: part/models.py:3458 report/templates/report/inventree_test_report.html:106 +#: part/models.py:3522 report/templates/report/inventree_test_report.html:106 msgid "Date" msgstr "" -#: part/models.py:3459 +#: part/models.py:3523 msgid "Date stocktake was performed" msgstr "" -#: part/models.py:3466 +#: part/models.py:3530 msgid "Minimum Stock Cost" msgstr "" -#: part/models.py:3467 +#: part/models.py:3531 msgid "Estimated minimum cost of stock on hand" msgstr "" -#: part/models.py:3473 +#: part/models.py:3537 msgid "Maximum Stock Cost" msgstr "" -#: part/models.py:3474 +#: part/models.py:3538 msgid "Estimated maximum cost of stock on hand" msgstr "" -#: part/models.py:3484 +#: part/models.py:3548 msgid "Part Sale Price Break" msgstr "" -#: part/models.py:3596 +#: part/models.py:3660 msgid "Part Test Template" msgstr "" -#: part/models.py:3622 +#: part/models.py:3686 msgid "Invalid template name - must include at least one alphanumeric character" msgstr "" -#: part/models.py:3643 part/models.py:3816 -msgid "Choices must be unique" -msgstr "" - -#: part/models.py:3654 +#: part/models.py:3718 msgid "Test templates can only be created for testable parts" msgstr "" -#: part/models.py:3668 +#: part/models.py:3732 msgid "Test template with the same key already exists for part" msgstr "" -#: part/models.py:3685 +#: part/models.py:3749 msgid "Test Name" msgstr "" -#: part/models.py:3686 +#: part/models.py:3750 msgid "Enter a name for the test" msgstr "" -#: part/models.py:3692 +#: part/models.py:3756 msgid "Test Key" msgstr "" -#: part/models.py:3693 +#: part/models.py:3757 msgid "Simplified key for the test" msgstr "" -#: part/models.py:3700 +#: part/models.py:3764 msgid "Test Description" msgstr "" -#: part/models.py:3701 +#: part/models.py:3765 msgid "Enter description for this test" msgstr "" -#: part/models.py:3705 report/models.py:287 -msgid "Enabled" -msgstr "" - -#: part/models.py:3705 +#: part/models.py:3769 msgid "Is this test enabled?" msgstr "" -#: part/models.py:3710 +#: part/models.py:3774 msgid "Required" msgstr "" -#: part/models.py:3711 +#: part/models.py:3775 msgid "Is this test required to pass?" msgstr "" -#: part/models.py:3716 +#: part/models.py:3780 msgid "Requires Value" msgstr "" -#: part/models.py:3717 +#: part/models.py:3781 msgid "Does this test require a value when adding a test result?" msgstr "" -#: part/models.py:3722 +#: part/models.py:3786 msgid "Requires Attachment" msgstr "" -#: part/models.py:3724 +#: part/models.py:3788 msgid "Does this test require a file attachment when adding a test result?" msgstr "" -#: part/models.py:3730 part/models.py:3878 -msgid "Choices" -msgstr "" - -#: part/models.py:3731 +#: part/models.py:3795 msgid "Valid choices for this test (comma-separated)" msgstr "" -#: part/models.py:3764 -msgid "Part Parameter Template" -msgstr "" - -#: part/models.py:3791 -msgid "Checkbox parameters cannot have units" -msgstr "" - -#: part/models.py:3796 -msgid "Checkbox parameters cannot have choices" -msgstr "" - -#: part/models.py:3833 -msgid "Parameter template name must be unique" -msgstr "" - -#: part/models.py:3851 -msgid "Parameter Name" -msgstr "" - -#: part/models.py:3858 -msgid "Physical units for this parameter" -msgstr "" - -#: part/models.py:3866 -msgid "Parameter description" -msgstr "" - -#: part/models.py:3872 -msgid "Checkbox" -msgstr "" - -#: part/models.py:3873 -msgid "Is this parameter a checkbox?" -msgstr "" - -#: part/models.py:3879 -msgid "Valid choices for this parameter (comma-separated)" -msgstr "" - -#: part/models.py:3890 -msgid "Selection list for this parameter" -msgstr "" - -#: part/models.py:3932 -msgid "Part Parameter" -msgstr "" - -#: part/models.py:3958 -msgid "Parameter cannot be modified - part is locked" -msgstr "" - -#: part/models.py:3996 -msgid "Invalid choice for parameter value" -msgstr "" - -#: part/models.py:4047 -msgid "Parent Part" -msgstr "" - -#: part/models.py:4055 part/models.py:4170 part/models.py:4171 -msgid "Parameter Template" -msgstr "" - -#: part/models.py:4061 -msgid "Parameter Value" -msgstr "" - -#: part/models.py:4071 stock/serializers.py:718 -msgid "Optional note field" -msgstr "" - -#: part/models.py:4118 -msgid "Part Category Parameter Template" -msgstr "" - -#: part/models.py:4177 -msgid "Default Value" -msgstr "" - -#: part/models.py:4178 -msgid "Default Parameter Value" -msgstr "" - -#: part/models.py:4352 +#: part/models.py:3977 msgid "BOM item cannot be modified - assembly is locked" msgstr "" -#: part/models.py:4359 +#: part/models.py:3984 msgid "BOM item cannot be modified - variant assembly is locked" msgstr "" -#: part/models.py:4369 +#: part/models.py:3994 msgid "Select parent part" msgstr "" -#: part/models.py:4379 +#: part/models.py:4004 msgid "Sub part" msgstr "" -#: part/models.py:4380 +#: part/models.py:4005 msgid "Select part to be used in BOM" msgstr "" -#: part/models.py:4391 +#: part/models.py:4016 msgid "BOM quantity for this BOM item" msgstr "" -#: part/models.py:4397 +#: part/models.py:4022 msgid "This BOM item is optional" msgstr "" -#: part/models.py:4403 +#: part/models.py:4028 msgid "This BOM item is consumable (it is not tracked in build orders)" msgstr "" -#: part/models.py:4411 +#: part/models.py:4036 msgid "Setup Quantity" msgstr "" -#: part/models.py:4412 +#: part/models.py:4037 msgid "Extra required quantity for a build, to account for setup losses" msgstr "" -#: part/models.py:4420 +#: part/models.py:4045 msgid "Attrition" msgstr "" -#: part/models.py:4422 +#: part/models.py:4047 msgid "Estimated attrition for a build, expressed as a percentage (0-100)" msgstr "" -#: part/models.py:4433 +#: part/models.py:4058 msgid "Rounding Multiple" msgstr "" -#: part/models.py:4435 +#: part/models.py:4060 msgid "Round up required production quantity to nearest multiple of this value" msgstr "" -#: part/models.py:4443 +#: part/models.py:4068 msgid "BOM item reference" msgstr "" -#: part/models.py:4451 +#: part/models.py:4076 msgid "BOM item notes" msgstr "" -#: part/models.py:4457 +#: part/models.py:4082 msgid "Checksum" msgstr "" -#: part/models.py:4458 +#: part/models.py:4083 msgid "BOM line checksum" msgstr "" -#: part/models.py:4463 +#: part/models.py:4088 msgid "Validated" msgstr "" -#: part/models.py:4464 +#: part/models.py:4089 msgid "This BOM item has been validated" msgstr "" -#: part/models.py:4469 +#: part/models.py:4094 msgid "Gets inherited" msgstr "" -#: part/models.py:4470 +#: part/models.py:4095 msgid "This BOM item is inherited by BOMs for variant parts" msgstr "" -#: part/models.py:4476 +#: part/models.py:4101 msgid "Stock items for variant parts can be used for this BOM item" msgstr "" -#: part/models.py:4583 stock/models.py:925 +#: part/models.py:4208 stock/models.py:925 msgid "Quantity must be integer value for trackable parts" msgstr "" -#: part/models.py:4593 part/models.py:4595 +#: part/models.py:4218 part/models.py:4220 msgid "Sub part must be specified" msgstr "" -#: part/models.py:4746 +#: part/models.py:4371 msgid "BOM Item Substitute" msgstr "" -#: part/models.py:4767 +#: part/models.py:4392 msgid "Substitute part cannot be the same as the master part" msgstr "" -#: part/models.py:4780 +#: part/models.py:4405 msgid "Parent BOM item" msgstr "" -#: part/models.py:4788 +#: part/models.py:4413 msgid "Substitute part" msgstr "" -#: part/models.py:4804 +#: part/models.py:4429 msgid "Part 1" msgstr "" -#: part/models.py:4812 +#: part/models.py:4437 msgid "Part 2" msgstr "" -#: part/models.py:4813 +#: part/models.py:4438 msgid "Select Related Part" msgstr "" -#: part/models.py:4820 +#: part/models.py:4445 msgid "Note for this relationship" msgstr "" -#: part/models.py:4839 +#: part/models.py:4464 msgid "Part relationship cannot be created between a part and itself" msgstr "" -#: part/models.py:4844 +#: part/models.py:4469 msgid "Duplicate relationship already exists" msgstr "" -#: part/serializers.py:114 +#: part/serializers.py:113 msgid "Parent Category" msgstr "" -#: part/serializers.py:115 +#: part/serializers.py:114 msgid "Parent part category" msgstr "" -#: part/serializers.py:123 part/serializers.py:164 +#: part/serializers.py:122 part/serializers.py:163 msgid "Subcategories" msgstr "" -#: part/serializers.py:203 +#: part/serializers.py:202 msgid "Results" msgstr "" -#: part/serializers.py:204 +#: part/serializers.py:203 msgid "Number of results recorded against this template" msgstr "" -#: part/serializers.py:235 part/serializers.py:253 stock/serializers.py:643 +#: part/serializers.py:234 part/serializers.py:252 stock/serializers.py:643 msgid "Purchase currency of this stock item" msgstr "" -#: part/serializers.py:280 +#: part/serializers.py:279 msgid "File is not an image" msgstr "" -#: part/serializers.py:311 -msgid "Number of parts using this template" -msgstr "" - -#: part/serializers.py:471 +#: part/serializers.py:382 msgid "Original Part" msgstr "" -#: part/serializers.py:472 +#: part/serializers.py:383 msgid "Select original part to duplicate" msgstr "" -#: part/serializers.py:477 +#: part/serializers.py:388 msgid "Copy Image" msgstr "" -#: part/serializers.py:478 +#: part/serializers.py:389 msgid "Copy image from original part" msgstr "" -#: part/serializers.py:484 +#: part/serializers.py:395 msgid "Copy BOM" msgstr "" -#: part/serializers.py:485 +#: part/serializers.py:396 msgid "Copy bill of materials from original part" msgstr "" -#: part/serializers.py:491 +#: part/serializers.py:402 msgid "Copy Parameters" msgstr "" -#: part/serializers.py:492 +#: part/serializers.py:403 msgid "Copy parameter data from original part" msgstr "" -#: part/serializers.py:498 +#: part/serializers.py:409 msgid "Copy Notes" msgstr "" -#: part/serializers.py:499 +#: part/serializers.py:410 msgid "Copy notes from original part" msgstr "" -#: part/serializers.py:505 +#: part/serializers.py:416 msgid "Copy Tests" msgstr "" -#: part/serializers.py:506 +#: part/serializers.py:417 msgid "Copy test templates from original part" msgstr "" -#: part/serializers.py:524 +#: part/serializers.py:435 msgid "Initial Stock Quantity" msgstr "" -#: part/serializers.py:526 +#: part/serializers.py:437 msgid "Specify initial stock quantity for this Part. If quantity is zero, no stock is added." msgstr "" -#: part/serializers.py:533 +#: part/serializers.py:444 msgid "Initial Stock Location" msgstr "" -#: part/serializers.py:534 +#: part/serializers.py:445 msgid "Specify initial stock location for this Part" msgstr "" -#: part/serializers.py:551 +#: part/serializers.py:462 msgid "Select supplier (or leave blank to skip)" msgstr "" -#: part/serializers.py:567 +#: part/serializers.py:478 msgid "Select manufacturer (or leave blank to skip)" msgstr "" -#: part/serializers.py:577 +#: part/serializers.py:488 msgid "Manufacturer part number" msgstr "" -#: part/serializers.py:584 +#: part/serializers.py:495 msgid "Selected company is not a valid supplier" msgstr "" -#: part/serializers.py:593 +#: part/serializers.py:504 msgid "Selected company is not a valid manufacturer" msgstr "" -#: part/serializers.py:604 +#: part/serializers.py:515 msgid "Manufacturer part matching this MPN already exists" msgstr "" -#: part/serializers.py:611 +#: part/serializers.py:522 msgid "Supplier part matching this SKU already exists" msgstr "" -#: part/serializers.py:914 +#: part/serializers.py:799 msgid "Category Name" msgstr "" -#: part/serializers.py:943 +#: part/serializers.py:828 msgid "Building" msgstr "" -#: part/serializers.py:944 +#: part/serializers.py:829 msgid "Quantity of this part currently being in production" msgstr "" -#: part/serializers.py:951 +#: part/serializers.py:836 msgid "Outstanding quantity of this part scheduled to be built" msgstr "" -#: part/serializers.py:971 stock/serializers.py:1019 stock/serializers.py:1189 +#: part/serializers.py:856 stock/serializers.py:1019 stock/serializers.py:1189 #: users/ruleset.py:30 msgid "Stock Items" msgstr "" -#: part/serializers.py:975 +#: part/serializers.py:860 msgid "Revisions" msgstr "" -#: part/serializers.py:979 +#: part/serializers.py:864 msgid "Suppliers" msgstr "" -#: part/serializers.py:983 part/serializers.py:1297 +#: part/serializers.py:868 part/serializers.py:1162 #: templates/email/low_stock_notification.html:16 #: templates/email/part_event_notification.html:17 msgid "Total Stock" msgstr "" -#: part/serializers.py:991 +#: part/serializers.py:876 msgid "Unallocated Stock" msgstr "" -#: part/serializers.py:999 +#: part/serializers.py:884 msgid "Variant Stock" msgstr "" -#: part/serializers.py:1054 +#: part/serializers.py:943 msgid "Duplicate Part" msgstr "" -#: part/serializers.py:1055 +#: part/serializers.py:944 msgid "Copy initial data from another Part" msgstr "" -#: part/serializers.py:1061 +#: part/serializers.py:950 msgid "Initial Stock" msgstr "" -#: part/serializers.py:1062 +#: part/serializers.py:951 msgid "Create Part with initial stock quantity" msgstr "" -#: part/serializers.py:1068 +#: part/serializers.py:957 msgid "Supplier Information" msgstr "" -#: part/serializers.py:1069 +#: part/serializers.py:958 msgid "Add initial supplier information for this part" msgstr "" -#: part/serializers.py:1077 +#: part/serializers.py:966 msgid "Copy Category Parameters" msgstr "" -#: part/serializers.py:1078 +#: part/serializers.py:967 msgid "Copy parameter templates from selected part category" msgstr "" -#: part/serializers.py:1083 +#: part/serializers.py:972 msgid "Existing Image" msgstr "" -#: part/serializers.py:1084 +#: part/serializers.py:973 msgid "Filename of an existing part image" msgstr "" -#: part/serializers.py:1101 +#: part/serializers.py:990 msgid "Image file does not exist" msgstr "" -#: part/serializers.py:1269 +#: part/serializers.py:1134 msgid "Validate entire Bill of Materials" msgstr "" -#: part/serializers.py:1303 part/serializers.py:1769 +#: part/serializers.py:1168 part/serializers.py:1634 msgid "Can Build" msgstr "" -#: part/serializers.py:1320 +#: part/serializers.py:1185 msgid "Required for Build Orders" msgstr "" -#: part/serializers.py:1325 +#: part/serializers.py:1190 msgid "Allocated to Build Orders" msgstr "" -#: part/serializers.py:1332 +#: part/serializers.py:1197 msgid "Required for Sales Orders" msgstr "" -#: part/serializers.py:1336 +#: part/serializers.py:1201 msgid "Allocated to Sales Orders" msgstr "" -#: part/serializers.py:1475 +#: part/serializers.py:1340 msgid "Minimum Price" msgstr "" -#: part/serializers.py:1476 +#: part/serializers.py:1341 msgid "Override calculated value for minimum price" msgstr "" -#: part/serializers.py:1483 +#: part/serializers.py:1348 msgid "Minimum price currency" msgstr "" -#: part/serializers.py:1490 +#: part/serializers.py:1355 msgid "Maximum Price" msgstr "" -#: part/serializers.py:1491 +#: part/serializers.py:1356 msgid "Override calculated value for maximum price" msgstr "" -#: part/serializers.py:1498 +#: part/serializers.py:1363 msgid "Maximum price currency" msgstr "" -#: part/serializers.py:1527 +#: part/serializers.py:1392 msgid "Update" msgstr "" -#: part/serializers.py:1528 +#: part/serializers.py:1393 msgid "Update pricing for this part" msgstr "" -#: part/serializers.py:1551 +#: part/serializers.py:1416 #, python-brace-format msgid "Could not convert from provided currencies to {default_currency}" msgstr "" -#: part/serializers.py:1558 +#: part/serializers.py:1423 msgid "Minimum price must not be greater than maximum price" msgstr "" -#: part/serializers.py:1561 +#: part/serializers.py:1426 msgid "Maximum price must not be less than minimum price" msgstr "" -#: part/serializers.py:1715 +#: part/serializers.py:1580 msgid "Select the parent assembly" msgstr "" -#: part/serializers.py:1735 +#: part/serializers.py:1600 msgid "Select the component part" msgstr "" -#: part/serializers.py:1929 +#: part/serializers.py:1802 msgid "Select part to copy BOM from" msgstr "" -#: part/serializers.py:1937 +#: part/serializers.py:1810 msgid "Remove Existing Data" msgstr "" -#: part/serializers.py:1938 +#: part/serializers.py:1811 msgid "Remove existing BOM items before copying" msgstr "" -#: part/serializers.py:1943 +#: part/serializers.py:1816 msgid "Include Inherited" msgstr "" -#: part/serializers.py:1944 +#: part/serializers.py:1817 msgid "Include BOM items which are inherited from templated parts" msgstr "" -#: part/serializers.py:1949 +#: part/serializers.py:1822 msgid "Skip Invalid Rows" msgstr "" -#: part/serializers.py:1950 +#: part/serializers.py:1823 msgid "Enable this option to skip invalid rows" msgstr "" -#: part/serializers.py:1955 +#: part/serializers.py:1828 msgid "Copy Substitute Parts" msgstr "" -#: part/serializers.py:1956 +#: part/serializers.py:1829 msgid "Copy substitute parts when duplicate BOM items" msgstr "" @@ -6927,7 +6974,7 @@ msgstr "" #: plugin/builtin/events/auto_issue_orders.py:19 #: plugin/builtin/exporter/bom_exporter.py:73 #: plugin/builtin/exporter/inventree_exporter.py:17 -#: plugin/builtin/exporter/part_parameter_exporter.py:36 +#: plugin/builtin/exporter/parameter_exporter.py:32 #: plugin/builtin/exporter/stocktake_exporter.py:47 #: plugin/builtin/integration/core_notifications.py:25 #: plugin/builtin/integration/core_notifications.py:69 @@ -7041,23 +7088,19 @@ msgid "Include total quantity of each part in the BOM" msgstr "" #: plugin/builtin/exporter/bom_exporter.py:35 -#: plugin/builtin/exporter/part_parameter_exporter.py:17 msgid "Stock Data" msgstr "" #: plugin/builtin/exporter/bom_exporter.py:35 -#: plugin/builtin/exporter/part_parameter_exporter.py:17 msgid "Include part stock data" msgstr "" #: plugin/builtin/exporter/bom_exporter.py:39 -#: plugin/builtin/exporter/part_parameter_exporter.py:21 #: plugin/builtin/exporter/stocktake_exporter.py:20 msgid "Pricing Data" msgstr "" #: plugin/builtin/exporter/bom_exporter.py:39 -#: plugin/builtin/exporter/part_parameter_exporter.py:21 #: plugin/builtin/exporter/stocktake_exporter.py:20 msgid "Include part pricing data" msgstr "" @@ -7144,12 +7187,20 @@ msgstr "" msgid "Provides support for exporting data from InvenTree" msgstr "" -#: plugin/builtin/exporter/part_parameter_exporter.py:33 -msgid "Part Parameter Exporter" +#: plugin/builtin/exporter/parameter_exporter.py:16 +msgid "Exclude Inactive" msgstr "" -#: plugin/builtin/exporter/part_parameter_exporter.py:34 -msgid "Exporter for part parameter data" +#: plugin/builtin/exporter/parameter_exporter.py:17 +msgid "Exclude parameters which are inactive" +msgstr "" + +#: plugin/builtin/exporter/parameter_exporter.py:29 +msgid "Parameter Exporter" +msgstr "" + +#: plugin/builtin/exporter/parameter_exporter.py:30 +msgid "Exporter for model parameter data" msgstr "" #: plugin/builtin/exporter/stocktake_exporter.py:25 @@ -8079,19 +8130,19 @@ msgstr "" msgid "No result" msgstr "" -#: report/templatetags/report.py:167 +#: report/templatetags/report.py:169 msgid "Asset file does not exist" msgstr "" -#: report/templatetags/report.py:224 report/templatetags/report.py:300 +#: report/templatetags/report.py:226 report/templatetags/report.py:302 msgid "Image file not found" msgstr "" -#: report/templatetags/report.py:325 +#: report/templatetags/report.py:327 msgid "part_image tag requires a Part instance" msgstr "" -#: report/templatetags/report.py:362 +#: report/templatetags/report.py:383 msgid "company_image tag requires a Company instance" msgstr "" @@ -8455,115 +8506,119 @@ msgstr "" msgid "Quantity does not match serial numbers" msgstr "" -#: stock/models.py:2012 stock/models.py:2917 +#: stock/models.py:1912 +msgid "Cannot assign stock to structural location" +msgstr "" + +#: stock/models.py:2029 stock/models.py:2934 msgid "Test template does not exist" msgstr "" -#: stock/models.py:2030 +#: stock/models.py:2047 msgid "Stock item has been assigned to a sales order" msgstr "" -#: stock/models.py:2034 +#: stock/models.py:2051 msgid "Stock item is installed in another item" msgstr "" -#: stock/models.py:2037 +#: stock/models.py:2054 msgid "Stock item contains other items" msgstr "" -#: stock/models.py:2040 +#: stock/models.py:2057 msgid "Stock item has been assigned to a customer" msgstr "" -#: stock/models.py:2043 stock/models.py:2226 +#: stock/models.py:2060 stock/models.py:2243 msgid "Stock item is currently in production" msgstr "" -#: stock/models.py:2046 +#: stock/models.py:2063 msgid "Serialized stock cannot be merged" msgstr "" -#: stock/models.py:2053 stock/serializers.py:1462 +#: stock/models.py:2070 stock/serializers.py:1462 msgid "Duplicate stock items" msgstr "" -#: stock/models.py:2057 +#: stock/models.py:2074 msgid "Stock items must refer to the same part" msgstr "" -#: stock/models.py:2065 +#: stock/models.py:2082 msgid "Stock items must refer to the same supplier part" msgstr "" -#: stock/models.py:2070 +#: stock/models.py:2087 msgid "Stock status codes must match" msgstr "" -#: stock/models.py:2349 +#: stock/models.py:2366 msgid "StockItem cannot be moved as it is not in stock" msgstr "" -#: stock/models.py:2818 +#: stock/models.py:2835 msgid "Stock Item Tracking" msgstr "" -#: stock/models.py:2849 +#: stock/models.py:2866 msgid "Entry notes" msgstr "" -#: stock/models.py:2889 +#: stock/models.py:2906 msgid "Stock Item Test Result" msgstr "" -#: stock/models.py:2920 +#: stock/models.py:2937 msgid "Value must be provided for this test" msgstr "" -#: stock/models.py:2924 +#: stock/models.py:2941 msgid "Attachment must be uploaded for this test" msgstr "" -#: stock/models.py:2929 +#: stock/models.py:2946 msgid "Invalid value for this test" msgstr "" -#: stock/models.py:2953 +#: stock/models.py:2970 msgid "Test result" msgstr "" -#: stock/models.py:2960 +#: stock/models.py:2977 msgid "Test output value" msgstr "" -#: stock/models.py:2968 stock/serializers.py:248 +#: stock/models.py:2985 stock/serializers.py:248 msgid "Test result attachment" msgstr "" -#: stock/models.py:2972 +#: stock/models.py:2989 msgid "Test notes" msgstr "" -#: stock/models.py:2980 +#: stock/models.py:2997 msgid "Test station" msgstr "" -#: stock/models.py:2981 +#: stock/models.py:2998 msgid "The identifier of the test station where the test was performed" msgstr "" -#: stock/models.py:2987 +#: stock/models.py:3004 msgid "Started" msgstr "" -#: stock/models.py:2988 +#: stock/models.py:3005 msgid "The timestamp of the test start" msgstr "" -#: stock/models.py:2994 +#: stock/models.py:3011 msgid "Finished" msgstr "" -#: stock/models.py:2995 +#: stock/models.py:3012 msgid "The timestamp of the test finish" msgstr "" @@ -8677,8 +8732,8 @@ msgstr "" msgid "Quantity must not exceed available stock quantity ({q})" msgstr "" -#: stock/serializers.py:711 stock/serializers.py:1419 stock/serializers.py:1732 -#: stock/serializers.py:1781 +#: stock/serializers.py:711 stock/serializers.py:1419 stock/serializers.py:1740 +#: stock/serializers.py:1789 msgid "Destination stock location" msgstr "" @@ -8834,19 +8889,19 @@ msgstr "" msgid "Stock transaction notes" msgstr "" -#: stock/serializers.py:1787 +#: stock/serializers.py:1795 msgid "Merge into existing stock" msgstr "" -#: stock/serializers.py:1788 +#: stock/serializers.py:1796 msgid "Merge returned items into existing stock items if possible" msgstr "" -#: stock/serializers.py:1831 +#: stock/serializers.py:1839 msgid "Next Serial Number" msgstr "" -#: stock/serializers.py:1837 +#: stock/serializers.py:1845 msgid "Previous Serial Number" msgstr "" @@ -8902,83 +8957,87 @@ msgstr "Lagerbeholdning tilføjet manuelt" msgid "Stock manually removed" msgstr "Lagerbeholdning fjernet manuelt" -#: stock/status_codes.py:57 +#: stock/status_codes.py:56 +msgid "Serialized stock items" +msgstr "" + +#: stock/status_codes.py:58 msgid "Returned to stock" msgstr "" -#: stock/status_codes.py:60 +#: stock/status_codes.py:61 msgid "Location changed" msgstr "Lokation ændret" -#: stock/status_codes.py:61 +#: stock/status_codes.py:62 msgid "Stock updated" msgstr "Lager opdateret" -#: stock/status_codes.py:64 +#: stock/status_codes.py:65 msgid "Installed into assembly" msgstr "Monteret i samling" -#: stock/status_codes.py:65 +#: stock/status_codes.py:66 msgid "Removed from assembly" msgstr "Fjernet fra samling" -#: stock/status_codes.py:67 +#: stock/status_codes.py:68 msgid "Installed component item" msgstr "Installeret komponent element" -#: stock/status_codes.py:68 +#: stock/status_codes.py:69 msgid "Removed component item" msgstr "Fjernet komponent element" -#: stock/status_codes.py:71 +#: stock/status_codes.py:72 msgid "Split from parent item" msgstr "Opdel fra overordnet element" -#: stock/status_codes.py:72 +#: stock/status_codes.py:73 msgid "Split child item" msgstr "Opdel underordnet element" -#: stock/status_codes.py:75 +#: stock/status_codes.py:76 msgid "Merged stock items" msgstr "Flettede lagervarer" -#: stock/status_codes.py:78 +#: stock/status_codes.py:79 msgid "Converted to variant" msgstr "Konverteret til variant" -#: stock/status_codes.py:81 +#: stock/status_codes.py:82 msgid "Build order output created" msgstr "Byggeordre output genereret" -#: stock/status_codes.py:82 +#: stock/status_codes.py:83 msgid "Build order output completed" msgstr "Byggeorder output fuldført" -#: stock/status_codes.py:83 +#: stock/status_codes.py:84 msgid "Build order output rejected" msgstr "" -#: stock/status_codes.py:84 +#: stock/status_codes.py:85 msgid "Consumed by build order" msgstr "Brugt efter byggeordre" -#: stock/status_codes.py:87 +#: stock/status_codes.py:88 msgid "Shipped against Sales Order" msgstr "Afsendt mod salgsordre" -#: stock/status_codes.py:90 +#: stock/status_codes.py:91 msgid "Received against Purchase Order" msgstr "Modtaget mod indkøbsordre" -#: stock/status_codes.py:93 +#: stock/status_codes.py:94 msgid "Returned against Return Order" msgstr "Returneret mod returordre" -#: stock/status_codes.py:96 +#: stock/status_codes.py:97 msgid "Sent to customer" msgstr "Sendt til kunde" -#: stock/status_codes.py:97 +#: stock/status_codes.py:98 msgid "Returned from customer" msgstr "Returneret fra kunde" diff --git a/src/backend/InvenTree/locale/de/LC_MESSAGES/django.po b/src/backend/InvenTree/locale/de/LC_MESSAGES/django.po index 29a978ff2f..c89044ca68 100644 --- a/src/backend/InvenTree/locale/de/LC_MESSAGES/django.po +++ b/src/backend/InvenTree/locale/de/LC_MESSAGES/django.po @@ -2,8 +2,8 @@ msgid "" msgstr "" "Project-Id-Version: inventree\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-11-19 04:55+0000\n" -"PO-Revision-Date: 2025-11-19 04:59\n" +"POT-Creation-Date: 2025-12-07 07:33+0000\n" +"PO-Revision-Date: 2025-12-07 07:36\n" "Last-Translator: \n" "Language-Team: German\n" "Language: de_DE\n" @@ -57,7 +57,7 @@ msgstr "Keine Daten verfügbar" msgid "This field must be unique." msgstr "" -#: InvenTree/api.py:775 +#: InvenTree/api.py:803 msgid "User does not have permission to view this model" msgstr "Benutzer hat keine Berechtigung, dieses Modell anzuzeigen" @@ -81,22 +81,22 @@ msgstr "Die angegebene primäre E-Mail-Adresse ist ungültig." msgid "The provided email domain is not approved." msgstr "Die angegebene E-Mail-Domain ist nicht freigegeben." -#: InvenTree/conversion.py:166 +#: InvenTree/conversion.py:240 #, python-brace-format msgid "Invalid unit provided ({unit})" msgstr "Ungültige Einheit angegeben ({unit})" -#: InvenTree/conversion.py:183 +#: InvenTree/conversion.py:257 msgid "No value provided" msgstr "Kein Wert angegeben" -#: InvenTree/conversion.py:210 +#: InvenTree/conversion.py:284 #, python-brace-format msgid "Could not convert {original} to {unit}" msgstr "Konnte {original} nicht in {unit} umwandeln" -#: InvenTree/conversion.py:212 InvenTree/conversion.py:226 -#: InvenTree/helpers.py:597 order/models.py:720 order/models.py:1015 +#: InvenTree/conversion.py:286 InvenTree/conversion.py:300 +#: InvenTree/helpers.py:597 order/models.py:721 order/models.py:1016 msgid "Invalid quantity provided" msgstr "Keine gültige Menge" @@ -112,11 +112,11 @@ msgstr "Datum eingeben" msgid "Invalid decimal value" msgstr "Ungültiger Dezimalwert" -#: InvenTree/fields.py:218 InvenTree/models.py:1067 build/serializers.py:509 -#: build/serializers.py:580 build/serializers.py:1788 company/models.py:857 -#: order/models.py:1780 +#: InvenTree/fields.py:218 InvenTree/models.py:1228 build/serializers.py:517 +#: build/serializers.py:588 build/serializers.py:1796 company/models.py:811 +#: order/models.py:1781 #: report/templates/report/inventree_build_order_report.html:172 -#: stock/models.py:2848 stock/models.py:2972 stock/serializers.py:717 +#: stock/models.py:2865 stock/models.py:2989 stock/serializers.py:717 #: stock/serializers.py:893 stock/serializers.py:1035 stock/serializers.py:1336 #: stock/serializers.py:1425 stock/serializers.py:1624 msgid "Notes" @@ -171,35 +171,35 @@ msgstr "Entferne HTML-Tags von diesem Wert" msgid "Data contains prohibited markdown content" msgstr "Daten enthalten verbotene Markdown-Inhalte" -#: InvenTree/helpers_model.py:133 +#: InvenTree/helpers_model.py:134 msgid "Connection error" msgstr "Verbindungsfehler" -#: InvenTree/helpers_model.py:138 InvenTree/helpers_model.py:145 +#: InvenTree/helpers_model.py:139 InvenTree/helpers_model.py:146 msgid "Server responded with invalid status code" msgstr "Server antwortete mit ungültigem Statuscode" -#: InvenTree/helpers_model.py:141 +#: InvenTree/helpers_model.py:142 msgid "Exception occurred" msgstr "Ausnahme aufgetreten" -#: InvenTree/helpers_model.py:151 +#: InvenTree/helpers_model.py:152 msgid "Server responded with invalid Content-Length value" msgstr "Server antwortete mit ungültigem Wert für die Inhaltslänge" -#: InvenTree/helpers_model.py:154 +#: InvenTree/helpers_model.py:155 msgid "Image size is too large" msgstr "Bild ist zu groß" -#: InvenTree/helpers_model.py:166 +#: InvenTree/helpers_model.py:167 msgid "Image download exceeded maximum size" msgstr "Bilddownload überschreitet maximale Größe" -#: InvenTree/helpers_model.py:171 +#: InvenTree/helpers_model.py:172 msgid "Remote server returned empty response" msgstr "Remote-Server gab leere Antwort zurück" -#: InvenTree/helpers_model.py:179 +#: InvenTree/helpers_model.py:180 msgid "Supplied URL is not a valid image file" msgstr "Angegebene URL ist kein gültiges Bild" @@ -207,7 +207,7 @@ msgstr "Angegebene URL ist kein gültiges Bild" msgid "Log in to the app" msgstr "Bei der App anmelden" -#: InvenTree/magic_login.py:41 company/models.py:172 users/serializers.py:198 +#: InvenTree/magic_login.py:41 company/models.py:173 users/serializers.py:198 msgid "Email" msgstr "Email" @@ -215,160 +215,176 @@ msgstr "Email" msgid "You must enable two-factor authentication before doing anything else." msgstr "Sie müssen die Zwei-Faktor-Authentifizierung aktivieren, bevor Sie etwas tun können." -#: InvenTree/models.py:111 +#: InvenTree/models.py:114 msgid "Error running plugin validation" msgstr "Fehler beim Ausführen der Plugin Validierung" -#: InvenTree/models.py:192 +#: InvenTree/models.py:195 msgid "Metadata must be a python dict object" msgstr "Metadaten müssen ein Python-Dict Objekt sein" -#: InvenTree/models.py:198 +#: InvenTree/models.py:201 msgid "Plugin Metadata" msgstr "Plugin Metadaten" -#: InvenTree/models.py:199 +#: InvenTree/models.py:202 msgid "JSON metadata field, for use by external plugins" msgstr "JSON-Metadatenfeld, für die Verwendung durch externe Plugins" -#: InvenTree/models.py:382 +#: InvenTree/models.py:385 msgid "Improperly formatted pattern" msgstr "Falsch formatiertes Muster" -#: InvenTree/models.py:389 +#: InvenTree/models.py:392 msgid "Unknown format key specified" msgstr "Unbekannter Formatschlüssel angegeben" -#: InvenTree/models.py:395 +#: InvenTree/models.py:398 msgid "Missing required format key" msgstr "Erforderlicher Formatschlüssel fehlt" -#: InvenTree/models.py:406 +#: InvenTree/models.py:409 msgid "Reference field cannot be empty" msgstr "Referenz-Feld darf nicht leer sein" -#: InvenTree/models.py:414 +#: InvenTree/models.py:417 msgid "Reference must match required pattern" msgstr "Referenz muss erforderlichem Muster entsprechen" -#: InvenTree/models.py:445 +#: InvenTree/models.py:448 msgid "Reference number is too large" msgstr "Referenznummer ist zu groß" -#: InvenTree/models.py:743 +#: InvenTree/models.py:896 msgid "Invalid choice" msgstr "Ungültige Auswahl" -#: InvenTree/models.py:856 common/models.py:1410 common/models.py:1837 -#: common/models.py:2096 common/models.py:2221 common/serializers.py:535 -#: company/models.py:615 generic/states/serializers.py:20 machine/models.py:25 -#: part/models.py:1039 part/models.py:3850 plugin/models.py:54 +#: InvenTree/models.py:1017 common/models.py:1414 common/models.py:1841 +#: common/models.py:2102 common/models.py:2227 common/models.py:2494 +#: common/serializers.py:539 generic/states/serializers.py:20 +#: machine/models.py:25 part/models.py:1127 plugin/models.py:54 #: report/models.py:216 stock/models.py:84 msgid "Name" msgstr "Name" -#: InvenTree/models.py:862 build/models.py:252 common/models.py:171 -#: common/models.py:2228 common/models.py:2341 company/models.py:543 -#: company/models.py:848 order/models.py:442 order/models.py:1825 -#: part/models.py:1062 part/models.py:3865 report/models.py:222 +#: InvenTree/models.py:1023 build/models.py:253 common/models.py:175 +#: common/models.py:2234 common/models.py:2347 common/models.py:2509 +#: company/models.py:545 company/models.py:802 order/models.py:443 +#: order/models.py:1826 part/models.py:1150 report/models.py:222 #: report/models.py:815 report/models.py:841 #: report/templates/report/inventree_build_order_report.html:117 #: stock/models.py:90 msgid "Description" msgstr "Beschreibung" -#: InvenTree/models.py:863 stock/models.py:91 +#: InvenTree/models.py:1024 stock/models.py:91 msgid "Description (optional)" msgstr "Beschreibung (optional)" -#: InvenTree/models.py:878 common/models.py:2394 +#: InvenTree/models.py:1039 common/models.py:2815 msgid "Path" msgstr "Pfad" -#: InvenTree/models.py:983 +#: InvenTree/models.py:1144 msgid "Duplicate names cannot exist under the same parent" msgstr "Doppelte Namen können nicht unter dem selben Elternteil existieren" -#: InvenTree/models.py:1067 +#: InvenTree/models.py:1228 msgid "Markdown notes (optional)" msgstr "Markdown Notizen (optional)" -#: InvenTree/models.py:1098 +#: InvenTree/models.py:1259 msgid "Barcode Data" msgstr "Barcode-Daten" -#: InvenTree/models.py:1099 +#: InvenTree/models.py:1260 msgid "Third party barcode data" msgstr "Drittanbieter-Barcode-Daten" -#: InvenTree/models.py:1105 +#: InvenTree/models.py:1266 msgid "Barcode Hash" msgstr "Barcode-Hash" -#: InvenTree/models.py:1106 +#: InvenTree/models.py:1267 msgid "Unique hash of barcode data" msgstr "Eindeutiger Hash der Barcode-Daten" -#: InvenTree/models.py:1187 +#: InvenTree/models.py:1348 msgid "Existing barcode found" msgstr "Bestehender Barcode gefunden" -#: InvenTree/models.py:1269 +#: InvenTree/models.py:1430 msgid "Task Failure" msgstr "Aufgabe fehlgeschlagen" -#: InvenTree/models.py:1270 +#: InvenTree/models.py:1431 #, python-brace-format msgid "Background worker task '{f}' failed after {n} attempts" msgstr "Hintergrundarbeiteraufgabe '{f}' fehlgeschlagen nach {n} Versuchen" -#: InvenTree/models.py:1297 +#: InvenTree/models.py:1458 msgid "Server Error" msgstr "Serverfehler" -#: InvenTree/models.py:1298 +#: InvenTree/models.py:1459 msgid "An error has been logged by the server." msgstr "Ein Fehler wurde vom Server protokolliert." -#: InvenTree/models.py:1340 common/models.py:1748 +#: InvenTree/models.py:1501 common/models.py:1752 #: report/templates/report/inventree_bill_of_materials_report.html:126 #: report/templates/report/inventree_bill_of_materials_report.html:148 #: report/templates/report/inventree_return_order_report.html:35 msgid "Image" msgstr "Bild" -#: InvenTree/serializers.py:253 part/models.py:4571 +#: InvenTree/serializers.py:255 part/models.py:4196 msgid "Must be a valid number" msgstr "Muss eine gültige Nummer sein" -#: InvenTree/serializers.py:295 company/models.py:214 part/models.py:3285 +#: InvenTree/serializers.py:297 company/models.py:215 part/models.py:3349 msgid "Currency" msgstr "Währung" -#: InvenTree/serializers.py:298 part/serializers.py:1385 +#: InvenTree/serializers.py:300 part/serializers.py:1250 msgid "Select currency from available options" msgstr "Währung aus verfügbaren Optionen auswählen" -#: InvenTree/serializers.py:653 +#: InvenTree/serializers.py:654 +msgid "This field may not be null." +msgstr "" + +#: InvenTree/serializers.py:660 msgid "Invalid value" msgstr "Ungültiger Wert" -#: InvenTree/serializers.py:690 +#: InvenTree/serializers.py:697 msgid "Remote Image" msgstr "Grafiken aus externen Quellen" -#: InvenTree/serializers.py:691 +#: InvenTree/serializers.py:698 msgid "URL of remote image file" msgstr "URL der Remote-Bilddatei" -#: InvenTree/serializers.py:709 +#: InvenTree/serializers.py:716 msgid "Downloading images from remote URL is not enabled" msgstr "Das Herunterladen von Bildern von Remote-URLs ist nicht aktiviert" -#: InvenTree/serializers.py:716 +#: InvenTree/serializers.py:723 msgid "Failed to download image from remote URL" msgstr "Fehler beim Herunterladen des Bildes von entfernter URL" +#: InvenTree/serializers.py:806 +msgid "Invalid content type format" +msgstr "" + +#: InvenTree/serializers.py:809 +msgid "Content type not found" +msgstr "" + +#: InvenTree/serializers.py:815 +msgid "Content type does not match required mixin class" +msgstr "" + #: InvenTree/setting/locales.py:20 msgid "Arabic" msgstr "Arabisch" @@ -537,30 +553,30 @@ msgstr "Ungültige physikalische Einheit" msgid "Not a valid currency code" msgstr "Kein gültiger Währungscode" -#: build/api.py:54 order/api.py:111 order/api.py:270 order/api.py:1373 -#: order/serializers.py:132 +#: build/api.py:54 order/api.py:116 order/api.py:275 order/api.py:1378 +#: order/serializers.py:133 msgid "Order Status" msgstr "Bestellstatus" -#: build/api.py:80 build/models.py:264 +#: build/api.py:80 build/models.py:265 msgid "Parent Build" msgstr "Eltern-Bauauftrag" -#: build/api.py:84 build/api.py:831 order/api.py:547 order/api.py:770 -#: order/api.py:1174 order/api.py:1449 stock/api.py:573 +#: build/api.py:84 build/api.py:837 order/api.py:553 order/api.py:776 +#: order/api.py:1179 order/api.py:1454 stock/api.py:573 msgid "Include Variants" msgstr "Varianten einschließen" -#: build/api.py:100 build/api.py:466 build/api.py:845 build/models.py:270 -#: build/serializers.py:1225 build/serializers.py:1356 -#: build/serializers.py:1427 company/models.py:1067 company/serializers.py:445 -#: order/api.py:298 order/api.py:302 order/api.py:929 order/api.py:1187 -#: order/api.py:1190 order/models.py:1941 order/models.py:2108 -#: order/models.py:2109 part/api.py:1233 part/api.py:1236 part/api.py:1302 -#: part/api.py:1589 part/models.py:472 part/models.py:3296 part/models.py:3439 -#: part/models.py:3497 part/models.py:3518 part/models.py:3540 -#: part/models.py:3679 part/models.py:4046 part/models.py:4368 -#: part/models.py:4787 part/serializers.py:1928 +#: build/api.py:100 build/api.py:472 build/api.py:851 build/models.py:271 +#: build/serializers.py:1233 build/serializers.py:1364 +#: build/serializers.py:1435 company/models.py:1021 company/serializers.py:490 +#: order/api.py:303 order/api.py:307 order/api.py:934 order/api.py:1192 +#: order/api.py:1195 order/models.py:1942 order/models.py:2109 +#: order/models.py:2110 part/api.py:1160 part/api.py:1163 part/api.py:1314 +#: part/models.py:550 part/models.py:3360 part/models.py:3503 +#: part/models.py:3561 part/models.py:3582 part/models.py:3604 +#: part/models.py:3743 part/models.py:3993 part/models.py:4412 +#: part/serializers.py:1801 #: report/templates/report/inventree_bill_of_materials_report.html:110 #: report/templates/report/inventree_bill_of_materials_report.html:137 #: report/templates/report/inventree_build_order_report.html:109 @@ -580,9 +596,9 @@ msgstr "Varianten einschließen" msgid "Part" msgstr "Teil" -#: build/api.py:120 build/api.py:123 build/serializers.py:1438 part/api.py:980 -#: part/api.py:1316 part/api.py:1600 part/models.py:1080 part/models.py:3568 -#: part/models.py:4162 part/serializers.py:1752 stock/api.py:869 +#: build/api.py:120 build/api.py:123 build/serializers.py:1446 part/api.py:975 +#: part/api.py:1325 part/models.py:435 part/models.py:1168 part/models.py:3632 +#: part/serializers.py:1617 stock/api.py:869 msgid "Category" msgstr "Kategorie" @@ -590,7 +606,7 @@ msgstr "Kategorie" msgid "Ancestor Build" msgstr "Vorgänger-Build" -#: build/api.py:152 order/api.py:129 +#: build/api.py:152 order/api.py:134 msgid "Assigned to me" msgstr "Mir zugewiesen" @@ -638,134 +654,134 @@ msgstr "Abgeschlossen vor" msgid "Completed after" msgstr "Abgeschlossen nach" -#: build/api.py:249 order/api.py:226 +#: build/api.py:249 order/api.py:231 msgid "Min Date" msgstr "" -#: build/api.py:272 order/api.py:245 +#: build/api.py:272 order/api.py:250 msgid "Max Date" msgstr "" -#: build/api.py:297 build/api.py:300 part/api.py:217 stock/api.py:961 +#: build/api.py:297 build/api.py:300 part/api.py:212 stock/api.py:961 msgid "Exclude Tree" msgstr "Baum ausschließen" -#: build/api.py:405 +#: build/api.py:411 msgid "Build must be cancelled before it can be deleted" msgstr "Bauauftrag muss abgebrochen werden, bevor er gelöscht werden kann" -#: build/api.py:449 build/serializers.py:1374 part/models.py:4402 +#: build/api.py:455 build/serializers.py:1382 part/models.py:4027 msgid "Consumable" msgstr "Verbrauchsmaterial" -#: build/api.py:452 build/serializers.py:1377 part/models.py:4396 +#: build/api.py:458 build/serializers.py:1385 part/models.py:4021 msgid "Optional" msgstr "Optional" -#: build/api.py:455 build/serializers.py:1415 common/setting/system.py:456 -#: part/models.py:1202 part/serializers.py:1714 part/serializers.py:1725 +#: build/api.py:461 build/serializers.py:1423 common/setting/system.py:456 +#: part/models.py:1290 part/serializers.py:1579 part/serializers.py:1590 #: stock/api.py:639 msgid "Assembly" msgstr "Baugruppe" -#: build/api.py:458 +#: build/api.py:464 msgid "Tracked" msgstr "Nachverfolgt" -#: build/api.py:461 build/serializers.py:1380 part/models.py:1220 +#: build/api.py:467 build/serializers.py:1388 part/models.py:1308 msgid "Testable" msgstr "Prüfbar" -#: build/api.py:471 order/api.py:993 order/api.py:1363 +#: build/api.py:477 order/api.py:998 order/api.py:1368 msgid "Order Outstanding" msgstr "Offene Bestellung" -#: build/api.py:481 build/serializers.py:1464 order/api.py:952 +#: build/api.py:487 build/serializers.py:1472 order/api.py:957 msgid "Allocated" msgstr "Zugeordnet" -#: build/api.py:490 build/models.py:1672 build/serializers.py:1393 +#: build/api.py:496 build/models.py:1673 build/serializers.py:1401 msgid "Consumed" msgstr "Verbraucht" -#: build/api.py:499 company/models.py:912 company/serializers.py:440 +#: build/api.py:505 company/models.py:866 company/serializers.py:467 #: templates/email/build_order_required_stock.html:19 #: templates/email/low_stock_notification.html:17 #: templates/email/part_event_notification.html:18 msgid "Available" msgstr "Verfügbar" -#: build/api.py:523 build/serializers.py:1466 company/serializers.py:437 -#: order/serializers.py:1281 part/serializers.py:959 part/serializers.py:1306 -#: part/serializers.py:1761 +#: build/api.py:529 build/serializers.py:1474 company/serializers.py:464 +#: order/serializers.py:1295 part/serializers.py:844 part/serializers.py:1171 +#: part/serializers.py:1626 msgid "On Order" msgstr "Bestellt" -#: build/api.py:868 build/models.py:117 order/models.py:1974 +#: build/api.py:874 build/models.py:118 order/models.py:1975 #: report/templates/report/inventree_build_order_report.html:105 #: stock/serializers.py:93 templates/email/build_order_completed.html:16 #: templates/email/overdue_build_order.html:15 msgid "Build Order" msgstr "Bauauftrag" -#: build/api.py:882 build/api.py:886 build/serializers.py:372 -#: build/serializers.py:497 build/serializers.py:567 build/serializers.py:1251 -#: build/serializers.py:1256 order/api.py:1234 order/api.py:1239 -#: order/serializers.py:833 order/serializers.py:973 order/serializers.py:2042 +#: build/api.py:888 build/api.py:892 build/serializers.py:380 +#: build/serializers.py:505 build/serializers.py:575 build/serializers.py:1259 +#: build/serializers.py:1264 order/api.py:1239 order/api.py:1244 +#: order/serializers.py:844 order/serializers.py:984 order/serializers.py:2059 #: stock/api.py:987 stock/serializers.py:111 stock/serializers.py:601 #: stock/serializers.py:710 stock/serializers.py:888 stock/serializers.py:1418 -#: stock/serializers.py:1731 stock/serializers.py:1780 +#: stock/serializers.py:1739 stock/serializers.py:1788 #: templates/email/stale_stock_notification.html:18 users/models.py:549 msgid "Location" msgstr "Lagerort" -#: build/api.py:894 +#: build/api.py:900 msgid "Output" msgstr "Bauprodukt" -#: build/api.py:896 +#: build/api.py:902 msgid "Filter by output stock item ID. Use 'null' to find uninstalled build items." msgstr "" -#: build/models.py:118 users/ruleset.py:31 +#: build/models.py:119 users/ruleset.py:31 msgid "Build Orders" msgstr "Bauaufträge" -#: build/models.py:168 +#: build/models.py:169 msgid "Assembly BOM has not been validated" msgstr "Die Stückliste wurde noch nicht kontrolliert" -#: build/models.py:175 +#: build/models.py:176 msgid "Build order cannot be created for an inactive part" msgstr "Baureihenfolge kann nicht für ein inaktives Teil erstellt werden" -#: build/models.py:182 +#: build/models.py:183 msgid "Build order cannot be created for an unlocked part" msgstr "Baureihenfolge kann nicht für ein inaktives Teil erstellt werden" -#: build/models.py:200 +#: build/models.py:201 msgid "Build orders can only be externally fulfilled for purchaseable parts" msgstr "" -#: build/models.py:207 order/models.py:369 +#: build/models.py:208 order/models.py:370 msgid "Responsible user or group must be specified" msgstr "Verantwortlicher Benutzer oder Gruppe muss angegeben werden" -#: build/models.py:212 +#: build/models.py:213 msgid "Build order part cannot be changed" msgstr "Teil in Bauauftrag kann nicht geändert werden" -#: build/models.py:217 order/models.py:382 +#: build/models.py:218 order/models.py:383 msgid "Target date must be after start date" msgstr "Zieldatum muss nach dem Startdatum liegen" -#: build/models.py:245 +#: build/models.py:246 msgid "Build Order Reference" msgstr "Bauauftragsreferenz" -#: build/models.py:246 build/serializers.py:1371 order/models.py:614 -#: order/models.py:1311 order/models.py:1773 order/models.py:2712 -#: part/models.py:4442 +#: build/models.py:247 build/serializers.py:1379 order/models.py:615 +#: order/models.py:1312 order/models.py:1774 order/models.py:2713 +#: part/models.py:4067 #: report/templates/report/inventree_bill_of_materials_report.html:139 #: report/templates/report/inventree_purchase_order_report.html:35 #: report/templates/report/inventree_return_order_report.html:26 @@ -773,230 +789,230 @@ msgstr "Bauauftragsreferenz" msgid "Reference" msgstr "Referenz" -#: build/models.py:255 +#: build/models.py:256 msgid "Brief description of the build (optional)" msgstr "Kurze Beschreibung des Baus (optional)" -#: build/models.py:265 +#: build/models.py:266 msgid "BuildOrder to which this build is allocated" msgstr "Bauauftrag, zu dem dieser Bauauftrag zugwiesen ist" -#: build/models.py:274 +#: build/models.py:275 msgid "Select part to build" msgstr "Teil für den Bauauftrag wählen" -#: build/models.py:279 +#: build/models.py:280 msgid "Sales Order Reference" msgstr "Auftrag Referenz" -#: build/models.py:284 +#: build/models.py:285 msgid "SalesOrder to which this build is allocated" msgstr "Bestellung, die diesem Bauauftrag zugewiesen ist" -#: build/models.py:289 build/serializers.py:1097 +#: build/models.py:290 build/serializers.py:1105 msgid "Source Location" msgstr "Quell-Lagerort" -#: build/models.py:295 +#: build/models.py:296 msgid "Select location to take stock from for this build (leave blank to take from any stock location)" msgstr "Entnahme-Lagerort für diesen Bauauftrag wählen (oder leer lassen für einen beliebigen Lagerort)" -#: build/models.py:301 +#: build/models.py:302 msgid "External Build" msgstr "" -#: build/models.py:302 +#: build/models.py:303 msgid "This build order is fulfilled externally" msgstr "" -#: build/models.py:307 +#: build/models.py:308 msgid "Destination Location" msgstr "Ziel-Lagerort" -#: build/models.py:312 +#: build/models.py:313 msgid "Select location where the completed items will be stored" msgstr "Lagerort an dem fertige Objekte gelagert werden auswählen" -#: build/models.py:316 +#: build/models.py:317 msgid "Build Quantity" msgstr "Bau-Anzahl" -#: build/models.py:319 +#: build/models.py:320 msgid "Number of stock items to build" msgstr "Anzahl der zu bauenden Lagerartikel" -#: build/models.py:323 +#: build/models.py:324 msgid "Completed items" msgstr "Fertiggestellte Teile" -#: build/models.py:325 +#: build/models.py:326 msgid "Number of stock items which have been completed" msgstr "Anzahl der fertigen Lagerartikel" -#: build/models.py:329 +#: build/models.py:330 msgid "Build Status" msgstr "Bauauftrags-Status" -#: build/models.py:334 +#: build/models.py:335 msgid "Build status code" msgstr "Bau-Statuscode" -#: build/models.py:343 build/serializers.py:359 order/serializers.py:849 +#: build/models.py:344 build/serializers.py:367 order/serializers.py:860 #: stock/models.py:1100 stock/serializers.py:85 stock/serializers.py:1591 msgid "Batch Code" msgstr "Losnummer" -#: build/models.py:347 build/serializers.py:360 +#: build/models.py:348 build/serializers.py:368 msgid "Batch code for this build output" msgstr "Losnummer für dieses Endprodukt" -#: build/models.py:351 order/models.py:479 order/serializers.py:186 -#: part/models.py:1283 +#: build/models.py:352 order/models.py:480 order/serializers.py:193 +#: part/models.py:1371 msgid "Creation Date" msgstr "Erstelldatum" -#: build/models.py:357 +#: build/models.py:358 msgid "Build start date" msgstr "Startdatum des Bauauftrags" -#: build/models.py:358 +#: build/models.py:359 msgid "Scheduled start date for this build order" msgstr "Geplantes Startdatum des Bauauftrags" -#: build/models.py:364 +#: build/models.py:365 msgid "Target completion date" msgstr "geplantes Fertigstellungsdatum" -#: build/models.py:366 +#: build/models.py:367 msgid "Target date for build completion. Build will be overdue after this date." msgstr "Zieldatum für Bauauftrag-Fertigstellung." -#: build/models.py:371 order/models.py:667 order/models.py:2751 +#: build/models.py:372 order/models.py:668 order/models.py:2752 msgid "Completion Date" msgstr "Fertigstellungsdatum" -#: build/models.py:379 +#: build/models.py:380 msgid "completed by" msgstr "Fertiggestellt von" -#: build/models.py:388 +#: build/models.py:389 msgid "Issued by" msgstr "Aufgegeben von" -#: build/models.py:389 +#: build/models.py:390 msgid "User who issued this build order" msgstr "Nutzer der diesen Bauauftrag erstellt hat" -#: build/models.py:398 common/models.py:180 order/api.py:179 -#: order/models.py:504 part/models.py:1300 +#: build/models.py:399 common/models.py:184 order/api.py:184 +#: order/models.py:505 part/models.py:1388 #: report/templates/report/inventree_build_order_report.html:158 msgid "Responsible" msgstr "Verantwortlicher Benutzer" -#: build/models.py:399 +#: build/models.py:400 msgid "User or group responsible for this build order" msgstr "Benutzer oder Gruppe verantwortlich für diesen Bauauftrag" -#: build/models.py:404 stock/models.py:1093 +#: build/models.py:405 stock/models.py:1093 msgid "External Link" msgstr "Externer Link" -#: build/models.py:406 common/models.py:1984 part/models.py:1114 +#: build/models.py:407 common/models.py:1990 part/models.py:1202 #: stock/models.py:1095 msgid "Link to external URL" msgstr "Link zu einer externen URL" -#: build/models.py:411 +#: build/models.py:412 msgid "Build Priority" msgstr "Bauauftrags-Priorität" -#: build/models.py:414 +#: build/models.py:415 msgid "Priority of this build order" msgstr "Priorität dieses Bauauftrags" -#: build/models.py:422 common/models.py:150 common/models.py:164 -#: order/api.py:165 order/models.py:451 order/models.py:1805 +#: build/models.py:423 common/models.py:154 common/models.py:168 +#: order/api.py:170 order/models.py:452 order/models.py:1806 msgid "Project Code" msgstr "Projektcode" -#: build/models.py:423 +#: build/models.py:424 msgid "Project code for this build order" msgstr "Projektcode für diesen Auftrag" -#: build/models.py:676 +#: build/models.py:677 msgid "Cannot complete build order with open child builds" msgstr "" -#: build/models.py:681 +#: build/models.py:682 msgid "Cannot complete build order with incomplete outputs" msgstr "" -#: build/models.py:700 build/models.py:830 +#: build/models.py:701 build/models.py:831 msgid "Failed to offload task to complete build allocations" msgstr "Fehler beim Abladen der Aufgabe, um die Build-Allokation abzuschließen" -#: build/models.py:723 +#: build/models.py:724 #, python-brace-format msgid "Build order {build} has been completed" msgstr "Bauauftrag {build} wurde fertiggestellt" -#: build/models.py:729 +#: build/models.py:730 msgid "A build order has been completed" msgstr "Ein Bauauftrag wurde fertiggestellt" -#: build/models.py:911 build/serializers.py:407 +#: build/models.py:912 build/serializers.py:415 msgid "Serial numbers must be provided for trackable parts" msgstr "Seriennummern müssen für nachverfolgbare Teile angegeben werden" -#: build/models.py:1042 build/models.py:1129 +#: build/models.py:1043 build/models.py:1130 msgid "No build output specified" msgstr "kein Endprodukt angegeben" -#: build/models.py:1045 +#: build/models.py:1046 msgid "Build output is already completed" msgstr "Endprodukt bereits hergstellt" -#: build/models.py:1048 +#: build/models.py:1049 msgid "Build output does not match Build Order" msgstr "Endprodukt stimmt nicht mit dem Bauauftrag überein" -#: build/models.py:1136 build/models.py:1234 build/serializers.py:285 -#: build/serializers.py:335 build/serializers.py:965 build/serializers.py:1739 -#: order/models.py:717 order/serializers.py:658 order/serializers.py:844 -#: part/serializers.py:1708 stock/models.py:940 stock/models.py:1430 +#: build/models.py:1137 build/models.py:1235 build/serializers.py:293 +#: build/serializers.py:343 build/serializers.py:973 build/serializers.py:1747 +#: order/models.py:718 order/serializers.py:669 order/serializers.py:855 +#: part/serializers.py:1573 stock/models.py:940 stock/models.py:1430 #: stock/models.py:1878 stock/serializers.py:688 stock/serializers.py:1580 msgid "Quantity must be greater than zero" msgstr "Anzahl muss größer Null sein" -#: build/models.py:1140 build/models.py:1239 build/serializers.py:290 +#: build/models.py:1141 build/models.py:1240 build/serializers.py:298 msgid "Quantity cannot be greater than the output quantity" msgstr "Menge kann nicht größer als die Ausgangsmenge sein" -#: build/models.py:1214 build/serializers.py:606 +#: build/models.py:1215 build/serializers.py:614 msgid "Build output has not passed all required tests" msgstr "" -#: build/models.py:1217 build/serializers.py:601 +#: build/models.py:1218 build/serializers.py:609 #, python-brace-format msgid "Build output {serial} has not passed all required tests" msgstr "Build Ausgabe {serial} hat nicht alle erforderlichen Tests bestanden" -#: build/models.py:1229 +#: build/models.py:1230 msgid "Cannot partially complete a build output with allocated items" msgstr "" -#: build/models.py:1627 +#: build/models.py:1628 msgid "Build Order Line Item" msgstr "Bauauftragsposition" -#: build/models.py:1651 +#: build/models.py:1652 msgid "Build object" msgstr "Objekt bauen" -#: build/models.py:1663 build/models.py:1974 build/serializers.py:271 -#: build/serializers.py:320 build/serializers.py:1392 common/models.py:1340 -#: order/models.py:1756 order/models.py:2597 order/serializers.py:1696 -#: order/serializers.py:2124 part/models.py:3453 part/models.py:4390 +#: build/models.py:1664 build/models.py:1975 build/serializers.py:279 +#: build/serializers.py:328 build/serializers.py:1400 common/models.py:1344 +#: order/models.py:1757 order/models.py:2598 order/serializers.py:1710 +#: order/serializers.py:2141 part/models.py:3517 part/models.py:4015 #: report/templates/report/inventree_bill_of_materials_report.html:138 #: report/templates/report/inventree_build_order_report.html:113 #: report/templates/report/inventree_purchase_order_report.html:36 @@ -1014,427 +1030,427 @@ msgstr "Objekt bauen" msgid "Quantity" msgstr "Anzahl" -#: build/models.py:1664 +#: build/models.py:1665 msgid "Required quantity for build order" msgstr "Erforderliche Menge für Auftrag" -#: build/models.py:1673 +#: build/models.py:1674 msgid "Quantity of consumed stock" msgstr "" -#: build/models.py:1772 +#: build/models.py:1773 msgid "Build item must specify a build output, as master part is marked as trackable" msgstr "Bauauftragsposition muss ein Endprodukt festlegen, da der übergeordnete Teil verfolgbar ist" -#: build/models.py:1783 +#: build/models.py:1784 #, python-brace-format msgid "Allocated quantity ({q}) must not exceed available stock quantity ({a})" msgstr "Zugewiesene Menge ({q}) darf nicht verfügbare Menge ({a}) übersteigen" -#: build/models.py:1804 order/models.py:2546 +#: build/models.py:1805 order/models.py:2547 msgid "Stock item is over-allocated" msgstr "BestandObjekt ist zu oft zugewiesen" -#: build/models.py:1809 order/models.py:2549 +#: build/models.py:1810 order/models.py:2550 msgid "Allocation quantity must be greater than zero" msgstr "Reserviermenge muss größer null sein" -#: build/models.py:1815 +#: build/models.py:1816 msgid "Quantity must be 1 for serialized stock" msgstr "Anzahl muss 1 für Objekte mit Seriennummer sein" -#: build/models.py:1875 +#: build/models.py:1876 msgid "Selected stock item does not match BOM line" msgstr "Ausgewählter Lagerbestand stimmt nicht mit BOM-Linie überein" -#: build/models.py:1913 +#: build/models.py:1914 msgid "Allocated quantity exceeds available stock quantity" msgstr "" -#: build/models.py:1964 build/serializers.py:948 build/serializers.py:1240 -#: order/serializers.py:1533 order/serializers.py:1554 +#: build/models.py:1965 build/serializers.py:956 build/serializers.py:1248 +#: order/serializers.py:1547 order/serializers.py:1568 #: report/templates/report/inventree_sales_order_shipment_report.html:29 #: stock/api.py:1404 stock/models.py:456 stock/serializers.py:102 #: stock/serializers.py:800 stock/serializers.py:1274 stock/serializers.py:1386 msgid "Stock Item" msgstr "Lagerartikel" -#: build/models.py:1965 +#: build/models.py:1966 msgid "Source stock item" msgstr "Quell-Lagerartikel" -#: build/models.py:1975 +#: build/models.py:1976 msgid "Stock quantity to allocate to build" msgstr "Anzahl an Lagerartikel dem Bauauftrag zuweisen" -#: build/models.py:1984 +#: build/models.py:1985 msgid "Install into" msgstr "Installiere in" -#: build/models.py:1985 +#: build/models.py:1986 msgid "Destination stock item" msgstr "Ziel-Lagerartikel" -#: build/serializers.py:118 +#: build/serializers.py:120 msgid "Build Level" msgstr "" -#: build/serializers.py:128 +#: build/serializers.py:136 msgid "Part Name" msgstr "Name des Teils" -#: build/serializers.py:153 +#: build/serializers.py:161 msgid "Project Code Label" msgstr "" -#: build/serializers.py:219 build/serializers.py:974 +#: build/serializers.py:227 build/serializers.py:982 msgid "Build Output" msgstr "Endprodukt" -#: build/serializers.py:231 +#: build/serializers.py:239 msgid "Build output does not match the parent build" msgstr "Endprodukt stimmt nicht mit übergeordnetem Bauauftrag überein" -#: build/serializers.py:235 +#: build/serializers.py:243 msgid "Output part does not match BuildOrder part" msgstr "Endprodukt entspricht nicht dem Teil des Bauauftrags" -#: build/serializers.py:239 +#: build/serializers.py:247 msgid "This build output has already been completed" msgstr "Dieses Endprodukt wurde bereits fertiggestellt" -#: build/serializers.py:253 +#: build/serializers.py:261 msgid "This build output is not fully allocated" msgstr "Dieses Endprodukt ist nicht vollständig zugewiesen" -#: build/serializers.py:272 build/serializers.py:321 +#: build/serializers.py:280 build/serializers.py:329 msgid "Enter quantity for build output" msgstr "Menge der Endprodukte angeben" -#: build/serializers.py:343 +#: build/serializers.py:351 msgid "Integer quantity required for trackable parts" msgstr "Ganzzahl für verfolgbare Teile erforderlich" -#: build/serializers.py:349 +#: build/serializers.py:357 msgid "Integer quantity required, as the bill of materials contains trackable parts" msgstr "Ganzzahl erforderlich da die Stückliste nachverfolgbare Teile enthält" -#: build/serializers.py:366 order/serializers.py:865 order/serializers.py:1700 +#: build/serializers.py:374 order/serializers.py:876 order/serializers.py:1714 #: stock/serializers.py:699 msgid "Serial Numbers" msgstr "Seriennummer" -#: build/serializers.py:367 +#: build/serializers.py:375 msgid "Enter serial numbers for build outputs" msgstr "Seriennummer für dieses Endprodukt eingeben" -#: build/serializers.py:373 +#: build/serializers.py:381 msgid "Stock location for build output" msgstr "Lagerort für Bauprodukt" -#: build/serializers.py:388 +#: build/serializers.py:396 msgid "Auto Allocate Serial Numbers" msgstr "Seriennummern automatisch zuweisen" -#: build/serializers.py:390 +#: build/serializers.py:398 msgid "Automatically allocate required items with matching serial numbers" msgstr "Benötigte Lagerartikel automatisch mit passenden Seriennummern zuweisen" -#: build/serializers.py:423 order/serializers.py:951 stock/api.py:1183 +#: build/serializers.py:431 order/serializers.py:962 stock/api.py:1183 #: stock/models.py:1901 msgid "The following serial numbers already exist or are invalid" msgstr "Die folgenden Seriennummern existieren bereits oder sind ungültig" -#: build/serializers.py:465 build/serializers.py:521 build/serializers.py:613 +#: build/serializers.py:473 build/serializers.py:529 build/serializers.py:621 msgid "A list of build outputs must be provided" msgstr "Eine Liste von Endprodukten muss angegeben werden" -#: build/serializers.py:498 +#: build/serializers.py:506 msgid "Stock location for scrapped outputs" msgstr "Lagerort für ausgemusterte Ausgänge" -#: build/serializers.py:504 +#: build/serializers.py:512 msgid "Discard Allocations" msgstr "Zuteilungen verwerfen" -#: build/serializers.py:505 +#: build/serializers.py:513 msgid "Discard any stock allocations for scrapped outputs" msgstr "Bestandszuteilung für ausgemusterte Endprodukte verwerfen" -#: build/serializers.py:510 +#: build/serializers.py:518 msgid "Reason for scrapping build output(s)" msgstr "Grund für das Verwerfen des Bauauftrages/der Bauaufträge" -#: build/serializers.py:568 +#: build/serializers.py:576 msgid "Location for completed build outputs" msgstr "Lagerort für fertige Endprodukte" -#: build/serializers.py:576 +#: build/serializers.py:584 msgid "Accept Incomplete Allocation" msgstr "Unvollständige Zuweisung akzeptieren" -#: build/serializers.py:577 +#: build/serializers.py:585 msgid "Complete outputs if stock has not been fully allocated" msgstr "Endprodukte fertigstellen, auch wenn Bestand nicht fertig zugewiesen wurde" -#: build/serializers.py:702 +#: build/serializers.py:710 msgid "Consume Allocated Stock" msgstr "Zugewiesen Bestand verbrauchen" -#: build/serializers.py:703 +#: build/serializers.py:711 msgid "Consume any stock which has already been allocated to this build" msgstr "Verbrauche alle Bestände, die diesem Bauauftrag bereits zugewiesen wurden" -#: build/serializers.py:709 +#: build/serializers.py:717 msgid "Remove Incomplete Outputs" msgstr "Unfertige Endprodukte entfernen" -#: build/serializers.py:710 +#: build/serializers.py:718 msgid "Delete any build outputs which have not been completed" msgstr "Lösche alle noch nicht abgeschlossenen Endprodukte" -#: build/serializers.py:737 +#: build/serializers.py:745 msgid "Not permitted" msgstr "Nicht erlaubt" -#: build/serializers.py:738 +#: build/serializers.py:746 msgid "Accept as consumed by this build order" msgstr "Als von diesem Bauauftrag verbraucht setzen" -#: build/serializers.py:739 +#: build/serializers.py:747 msgid "Deallocate before completing this build order" msgstr "Bestandszuordnung vor dem Abschluss dieses Bauauftrags freigeben" -#: build/serializers.py:766 +#: build/serializers.py:774 msgid "Overallocated Stock" msgstr "Überbelegter Lagerbestand" -#: build/serializers.py:769 +#: build/serializers.py:777 msgid "How do you want to handle extra stock items assigned to the build order" msgstr "Wie sollen zusätzliche Lagerbestandteile, die dem Bauauftrag zugewiesen wurden, behandelt werden" -#: build/serializers.py:780 +#: build/serializers.py:788 msgid "Some stock items have been overallocated" msgstr "Der Bestand einiger Lagerartikel ist überbelegt" -#: build/serializers.py:785 +#: build/serializers.py:793 msgid "Accept Unallocated" msgstr "Nicht zugewiesene akzeptieren" -#: build/serializers.py:787 +#: build/serializers.py:795 msgid "Accept that stock items have not been fully allocated to this build order" msgstr "Akzeptieren, dass Lagerartikel diesem Bauauftrag nicht vollständig zugewiesen wurden" -#: build/serializers.py:798 +#: build/serializers.py:806 msgid "Required stock has not been fully allocated" msgstr "Benötigter Bestand wurde nicht vollständig zugewiesen" -#: build/serializers.py:803 order/serializers.py:524 order/serializers.py:1601 +#: build/serializers.py:811 order/serializers.py:535 order/serializers.py:1615 msgid "Accept Incomplete" msgstr "Unvollständig Zuweisung akzeptieren" -#: build/serializers.py:805 +#: build/serializers.py:813 msgid "Accept that the required number of build outputs have not been completed" msgstr "Akzeptieren, dass die erforderliche Anzahl der Bauaufträge nicht abgeschlossen ist" -#: build/serializers.py:816 +#: build/serializers.py:824 msgid "Required build quantity has not been completed" msgstr "Benötigte Teil-Anzahl wurde noch nicht fertiggestellt" -#: build/serializers.py:828 +#: build/serializers.py:836 msgid "Build order has open child build orders" msgstr "" -#: build/serializers.py:831 +#: build/serializers.py:839 msgid "Build order must be in production state" msgstr "" -#: build/serializers.py:834 +#: build/serializers.py:842 msgid "Build order has incomplete outputs" msgstr "Bauauftrag hat unvollständige Aufbauten" -#: build/serializers.py:873 +#: build/serializers.py:881 msgid "Build Line" msgstr "Bauauftragsposition" -#: build/serializers.py:881 +#: build/serializers.py:889 msgid "Build output" msgstr "Endprodukt" -#: build/serializers.py:889 +#: build/serializers.py:897 msgid "Build output must point to the same build" msgstr "Endprodukt muss auf den gleichen Bauauftrag verweisen" -#: build/serializers.py:920 +#: build/serializers.py:928 msgid "Build Line Item" msgstr "Bauauftragspositionsartikel" -#: build/serializers.py:938 +#: build/serializers.py:946 msgid "bom_item.part must point to the same part as the build order" msgstr "bom_item.part muss auf dasselbe Teil verweisen wie der Bauauftrag" -#: build/serializers.py:954 stock/serializers.py:1287 +#: build/serializers.py:962 stock/serializers.py:1287 msgid "Item must be in stock" msgstr "Teil muss auf Lager sein" -#: build/serializers.py:997 order/serializers.py:1587 +#: build/serializers.py:1005 order/serializers.py:1601 #, python-brace-format msgid "Available quantity ({q}) exceeded" msgstr "Verfügbare Menge ({q}) überschritten" -#: build/serializers.py:1003 +#: build/serializers.py:1011 msgid "Build output must be specified for allocation of tracked parts" msgstr "Für Zuweisung von verfolgten Teilen muss ein Endprodukt angegeben sein" -#: build/serializers.py:1011 +#: build/serializers.py:1019 msgid "Build output cannot be specified for allocation of untracked parts" msgstr "Endprodukt kann bei Zuweisung nicht-verfolgter Teile nicht angegeben werden" -#: build/serializers.py:1035 order/serializers.py:1860 +#: build/serializers.py:1043 order/serializers.py:1874 msgid "Allocation items must be provided" msgstr "Zuweisungen müssen angegeben werden" -#: build/serializers.py:1099 +#: build/serializers.py:1107 msgid "Stock location where parts are to be sourced (leave blank to take from any location)" msgstr "Lagerort, von dem Teile bezogen werden sollen (leer lassen, um sie von jedem Lagerort zu nehmen)" -#: build/serializers.py:1108 +#: build/serializers.py:1116 msgid "Exclude Location" msgstr "Lagerort ausschließen" -#: build/serializers.py:1109 +#: build/serializers.py:1117 msgid "Exclude stock items from this selected location" msgstr "Lagerartikel vom ausgewählten Ort ausschließen" -#: build/serializers.py:1114 +#: build/serializers.py:1122 msgid "Interchangeable Stock" msgstr "Wechselbares Lagerbestand" -#: build/serializers.py:1115 +#: build/serializers.py:1123 msgid "Stock items in multiple locations can be used interchangeably" msgstr "Lagerartikel an mehreren Standorten können austauschbar verwendet werden" -#: build/serializers.py:1120 +#: build/serializers.py:1128 msgid "Substitute Stock" msgstr "Ersatzbestand" -#: build/serializers.py:1121 +#: build/serializers.py:1129 msgid "Allow allocation of substitute parts" msgstr "Zuordnung von Ersatzteilen erlauben" -#: build/serializers.py:1126 +#: build/serializers.py:1134 msgid "Optional Items" msgstr "Optionale Positionen" -#: build/serializers.py:1127 +#: build/serializers.py:1135 msgid "Allocate optional BOM items to build order" msgstr "Optionale Stücklisten-Positionen dem Bauauftrag hinzufügen" -#: build/serializers.py:1148 +#: build/serializers.py:1156 msgid "Failed to start auto-allocation task" msgstr "Fehler beim Starten der automatischen Zuweisung" -#: build/serializers.py:1200 +#: build/serializers.py:1208 msgid "BOM Reference" msgstr "Stücklisten-Referenz" -#: build/serializers.py:1206 +#: build/serializers.py:1214 msgid "BOM Part ID" msgstr "" -#: build/serializers.py:1213 +#: build/serializers.py:1221 msgid "BOM Part Name" msgstr "" -#: build/serializers.py:1266 build/serializers.py:1449 +#: build/serializers.py:1274 build/serializers.py:1457 msgid "Build" msgstr "Zusammenbau" -#: build/serializers.py:1276 company/models.py:685 order/api.py:311 -#: order/api.py:316 order/api.py:543 order/serializers.py:650 +#: build/serializers.py:1284 company/models.py:639 order/api.py:316 +#: order/api.py:321 order/api.py:549 order/serializers.py:661 #: stock/models.py:1036 stock/serializers.py:579 msgid "Supplier Part" msgstr "Zuliefererteil" -#: build/serializers.py:1284 stock/serializers.py:620 +#: build/serializers.py:1292 stock/serializers.py:620 msgid "Allocated Quantity" msgstr "Zugewiesene Menge" -#: build/serializers.py:1351 +#: build/serializers.py:1359 msgid "Build Reference" msgstr "" -#: build/serializers.py:1361 +#: build/serializers.py:1369 msgid "Part Category Name" msgstr "" -#: build/serializers.py:1383 common/setting/system.py:480 part/models.py:1214 +#: build/serializers.py:1391 common/setting/system.py:480 part/models.py:1302 msgid "Trackable" msgstr "Nachverfolgbar" -#: build/serializers.py:1386 +#: build/serializers.py:1394 msgid "Inherited" msgstr "Vererbt" -#: build/serializers.py:1389 part/models.py:4475 +#: build/serializers.py:1397 part/models.py:4100 msgid "Allow Variants" msgstr "Varianten zulassen" -#: build/serializers.py:1395 build/serializers.py:1400 part/models.py:4208 -#: part/models.py:4779 stock/api.py:882 +#: build/serializers.py:1403 build/serializers.py:1408 part/models.py:3833 +#: part/models.py:4404 stock/api.py:882 msgid "BOM Item" msgstr "Stücklisten-Position" -#: build/serializers.py:1467 order/serializers.py:1282 part/serializers.py:1310 -#: part/serializers.py:1765 +#: build/serializers.py:1475 order/serializers.py:1296 part/serializers.py:1175 +#: part/serializers.py:1630 msgid "In Production" msgstr "In Produktion" -#: build/serializers.py:1469 part/serializers.py:950 part/serializers.py:1314 +#: build/serializers.py:1477 part/serializers.py:835 part/serializers.py:1179 msgid "Scheduled to Build" msgstr "" -#: build/serializers.py:1472 part/serializers.py:987 +#: build/serializers.py:1480 part/serializers.py:872 msgid "External Stock" msgstr "Externes Lager" -#: build/serializers.py:1473 part/serializers.py:1300 part/serializers.py:1808 +#: build/serializers.py:1481 part/serializers.py:1165 part/serializers.py:1673 msgid "Available Stock" msgstr "Verfügbarer Bestand" -#: build/serializers.py:1475 +#: build/serializers.py:1483 msgid "Available Substitute Stock" msgstr "Verfügbares Ersatzmaterial" -#: build/serializers.py:1478 +#: build/serializers.py:1486 msgid "Available Variant Stock" msgstr "" -#: build/serializers.py:1752 +#: build/serializers.py:1760 msgid "Consumed quantity exceeds allocated quantity" msgstr "" -#: build/serializers.py:1789 +#: build/serializers.py:1797 msgid "Optional notes for the stock consumption" msgstr "" -#: build/serializers.py:1806 +#: build/serializers.py:1814 msgid "Build item must point to the correct build order" msgstr "" -#: build/serializers.py:1811 +#: build/serializers.py:1819 msgid "Duplicate build item allocation" msgstr "" -#: build/serializers.py:1829 +#: build/serializers.py:1837 msgid "Build line must point to the correct build order" msgstr "" -#: build/serializers.py:1834 +#: build/serializers.py:1842 msgid "Duplicate build line allocation" msgstr "" -#: build/serializers.py:1846 +#: build/serializers.py:1854 msgid "At least one item or line must be provided" msgstr "" @@ -1482,702 +1498,826 @@ msgstr "Überfälliger Bauauftrag" msgid "Build order {bo} is now overdue" msgstr "Bauauftrag {bo} ist jetzt überfällig" -#: common/api.py:694 +#: common/api.py:701 msgid "Is Link" msgstr "Link" -#: common/api.py:702 +#: common/api.py:709 msgid "Is File" msgstr "Datei" -#: common/api.py:745 +#: common/api.py:756 msgid "User does not have permission to delete these attachments" msgstr "" -#: common/api.py:762 +#: common/api.py:769 msgid "User does not have permission to delete this attachment" msgstr "Benutzer hat keine Berechtigung zum Löschen des Anhangs" -#: common/currency.py:122 +#: common/currency.py:130 msgid "Invalid currency code" msgstr "Ungültiges Währungskürzel" -#: common/currency.py:124 +#: common/currency.py:132 msgid "Duplicate currency code" msgstr "Doppeltes Währungskürzel" -#: common/currency.py:129 +#: common/currency.py:137 msgid "No valid currency codes provided" msgstr "" -#: common/currency.py:146 +#: common/currency.py:154 msgid "No plugin" msgstr "Kein Plugin" -#: common/models.py:101 common/models.py:126 common/models.py:2729 +#: common/models.py:105 common/models.py:130 common/models.py:3150 msgid "Updated" msgstr "Aktualisiert" -#: common/models.py:102 common/models.py:127 +#: common/models.py:106 common/models.py:131 msgid "Timestamp of last update" msgstr "Zeitstempel der letzten Aktualisierung" -#: common/models.py:139 +#: common/models.py:143 msgid "Update By" msgstr "" -#: common/models.py:140 +#: common/models.py:144 msgid "User who last updated this object" msgstr "" -#: common/models.py:165 +#: common/models.py:169 msgid "Unique project code" msgstr "Eindeutiger Projektcode" -#: common/models.py:172 +#: common/models.py:176 msgid "Project description" msgstr "Projektbeschreibung" -#: common/models.py:181 +#: common/models.py:185 msgid "User or group responsible for this project" msgstr "Benutzer oder Gruppe verantwortlich für dieses Projekt" -#: common/models.py:771 common/models.py:1272 common/models.py:1310 +#: common/models.py:775 common/models.py:1276 common/models.py:1314 msgid "Settings key" msgstr "" -#: common/models.py:775 +#: common/models.py:779 msgid "Settings value" msgstr "Einstellungs-Wert" -#: common/models.py:830 +#: common/models.py:834 msgid "Chosen value is not a valid option" msgstr "Wert ist keine gültige Option" -#: common/models.py:846 +#: common/models.py:850 msgid "Value must be a boolean value" msgstr "Wahrheitswert erforderlich" -#: common/models.py:854 +#: common/models.py:858 msgid "Value must be an integer value" msgstr "Nur Ganzzahl eingeben" -#: common/models.py:862 +#: common/models.py:866 msgid "Value must be a valid number" msgstr "" -#: common/models.py:887 +#: common/models.py:891 msgid "Value does not pass validation checks" msgstr "" -#: common/models.py:909 +#: common/models.py:913 msgid "Key string must be unique" msgstr "Schlüsseltext muss eindeutig sein" -#: common/models.py:1318 common/models.py:1319 common/models.py:1423 -#: common/models.py:1424 common/models.py:1669 common/models.py:1670 -#: common/models.py:2000 common/models.py:2001 common/models.py:2382 -#: importer/models.py:100 part/models.py:3547 part/models.py:3575 +#: common/models.py:1322 common/models.py:1323 common/models.py:1427 +#: common/models.py:1428 common/models.py:1673 common/models.py:1674 +#: common/models.py:2006 common/models.py:2007 common/models.py:2803 +#: importer/models.py:100 part/models.py:3611 part/models.py:3639 #: plugin/models.py:355 plugin/models.py:356 #: report/templates/report/inventree_test_report.html:105 users/models.py:124 #: users/models.py:501 msgid "User" msgstr "Benutzer" -#: common/models.py:1341 +#: common/models.py:1345 msgid "Price break quantity" msgstr "Preisstaffelungs Anzahl" -#: common/models.py:1348 company/serializers.py:564 order/models.py:1842 -#: order/models.py:3043 +#: common/models.py:1352 company/serializers.py:349 order/models.py:1843 +#: order/models.py:3044 msgid "Price" msgstr "Preis" -#: common/models.py:1349 +#: common/models.py:1353 msgid "Unit price at specified quantity" msgstr "Stückpreis für die angegebene Anzahl" -#: common/models.py:1400 common/models.py:1585 +#: common/models.py:1404 common/models.py:1589 msgid "Endpoint" msgstr "Endpunkt" -#: common/models.py:1401 +#: common/models.py:1405 msgid "Endpoint at which this webhook is received" msgstr "Endpunkt, an dem dieser Webhook empfangen wird" -#: common/models.py:1411 +#: common/models.py:1415 msgid "Name for this webhook" msgstr "Name für diesen Webhook" -#: common/models.py:1415 common/models.py:2241 common/models.py:2348 -#: company/models.py:191 company/models.py:822 machine/models.py:40 -#: part/models.py:1237 plugin/models.py:69 stock/api.py:642 users/models.py:195 +#: common/models.py:1419 common/models.py:2247 common/models.py:2354 +#: company/models.py:192 company/models.py:776 machine/models.py:40 +#: part/models.py:1325 plugin/models.py:69 stock/api.py:642 users/models.py:195 #: users/models.py:554 users/serializers.py:314 msgid "Active" msgstr "Aktiv" -#: common/models.py:1415 +#: common/models.py:1419 msgid "Is this webhook active" msgstr "Ist dieser Webhook aktiv" -#: common/models.py:1431 users/models.py:172 +#: common/models.py:1435 users/models.py:172 msgid "Token" msgstr "Token" -#: common/models.py:1432 +#: common/models.py:1436 msgid "Token for access" msgstr "Token für Zugang" -#: common/models.py:1440 +#: common/models.py:1444 msgid "Secret" msgstr "Geheimnis" -#: common/models.py:1441 +#: common/models.py:1445 msgid "Shared secret for HMAC" msgstr "Shared Secret für HMAC" -#: common/models.py:1549 common/models.py:2619 +#: common/models.py:1553 common/models.py:3040 msgid "Message ID" msgstr "Nachrichten-ID" -#: common/models.py:1550 common/models.py:2609 +#: common/models.py:1554 common/models.py:3030 msgid "Unique identifier for this message" msgstr "Eindeutige Kennung für diese Nachricht" -#: common/models.py:1558 +#: common/models.py:1562 msgid "Host" msgstr "Host" -#: common/models.py:1559 +#: common/models.py:1563 msgid "Host from which this message was received" msgstr "Host von dem diese Nachricht empfangen wurde" -#: common/models.py:1567 +#: common/models.py:1571 msgid "Header" msgstr "Kopfzeile" -#: common/models.py:1568 +#: common/models.py:1572 msgid "Header of this message" msgstr "Header dieser Nachricht" -#: common/models.py:1575 +#: common/models.py:1579 msgid "Body" msgstr "Body" -#: common/models.py:1576 +#: common/models.py:1580 msgid "Body of this message" msgstr "Body dieser Nachricht" -#: common/models.py:1586 +#: common/models.py:1590 msgid "Endpoint on which this message was received" msgstr "Endpunkt, über den diese Nachricht empfangen wurde" -#: common/models.py:1591 +#: common/models.py:1595 msgid "Worked on" msgstr "Bearbeitet" -#: common/models.py:1592 +#: common/models.py:1596 msgid "Was the work on this message finished?" msgstr "Wurde die Arbeit an dieser Nachricht abgeschlossen?" -#: common/models.py:1718 +#: common/models.py:1722 msgid "Id" msgstr "ID" -#: common/models.py:1720 +#: common/models.py:1724 msgid "Title" msgstr "Titel" -#: common/models.py:1722 common/models.py:1983 company/models.py:185 -#: company/models.py:467 company/models.py:534 company/models.py:839 -#: order/models.py:457 order/models.py:1786 order/models.py:2343 -#: part/models.py:1113 +#: common/models.py:1726 common/models.py:1989 company/models.py:186 +#: company/models.py:468 company/models.py:536 company/models.py:793 +#: order/models.py:458 order/models.py:1787 order/models.py:2344 +#: part/models.py:1201 #: report/templates/report/inventree_build_order_report.html:164 msgid "Link" msgstr "Link" -#: common/models.py:1724 +#: common/models.py:1728 msgid "Published" msgstr "Veröffentlicht" -#: common/models.py:1726 +#: common/models.py:1730 msgid "Author" msgstr "Autor" -#: common/models.py:1728 +#: common/models.py:1732 msgid "Summary" msgstr "Zusammenfassung" -#: common/models.py:1731 common/models.py:2586 +#: common/models.py:1735 common/models.py:3007 msgid "Read" msgstr "Gelesen" -#: common/models.py:1731 +#: common/models.py:1735 msgid "Was this news item read?" msgstr "Wurde diese Nachricht gelesen?" -#: common/models.py:1748 +#: common/models.py:1752 msgid "Image file" msgstr "Bilddatei" -#: common/models.py:1760 +#: common/models.py:1764 msgid "Target model type for this image" msgstr "" -#: common/models.py:1764 +#: common/models.py:1768 msgid "Target model ID for this image" msgstr "" -#: common/models.py:1786 +#: common/models.py:1790 msgid "Custom Unit" msgstr "Benutzerdefinierte Einheit" -#: common/models.py:1804 +#: common/models.py:1808 msgid "Unit symbol must be unique" msgstr "Einheitensymbol muss eindeutig sein" -#: common/models.py:1819 +#: common/models.py:1823 msgid "Unit name must be a valid identifier" msgstr "Einheitsname muss eine gültige Kennung sein" -#: common/models.py:1838 +#: common/models.py:1842 msgid "Unit name" msgstr "Einheitsname" -#: common/models.py:1845 +#: common/models.py:1849 msgid "Symbol" msgstr "Symbol" -#: common/models.py:1846 +#: common/models.py:1850 msgid "Optional unit symbol" msgstr "Optionales Einheitssymbol" -#: common/models.py:1852 +#: common/models.py:1856 msgid "Definition" msgstr "Definition" -#: common/models.py:1853 +#: common/models.py:1857 msgid "Unit definition" msgstr "Einheitsdefinition" -#: common/models.py:1911 common/models.py:1974 stock/models.py:2967 +#: common/models.py:1917 common/models.py:1980 stock/models.py:2984 #: stock/serializers.py:247 msgid "Attachment" msgstr "Anhang" -#: common/models.py:1928 +#: common/models.py:1934 msgid "Missing file" msgstr "Fehlende Datei" -#: common/models.py:1929 +#: common/models.py:1935 msgid "Missing external link" msgstr "Fehlender externer Link" -#: common/models.py:1966 +#: common/models.py:1972 common/models.py:2488 msgid "Model type" -msgstr "" +msgstr "Modelltyp" -#: common/models.py:1967 +#: common/models.py:1973 msgid "Target model type for image" msgstr "" -#: common/models.py:1975 +#: common/models.py:1981 msgid "Select file to attach" msgstr "Datei zum Anhängen auswählen" -#: common/models.py:1991 +#: common/models.py:1997 msgid "Comment" msgstr "Kommentar" -#: common/models.py:1992 +#: common/models.py:1998 msgid "Attachment comment" msgstr "" -#: common/models.py:2008 +#: common/models.py:2014 msgid "Upload date" msgstr "Upload Datum" -#: common/models.py:2009 +#: common/models.py:2015 msgid "Date the file was uploaded" msgstr "Datum der hochgeladenen Datei" -#: common/models.py:2013 +#: common/models.py:2019 msgid "File size" msgstr "Dateigröße" -#: common/models.py:2013 +#: common/models.py:2019 msgid "File size in bytes" msgstr "Dateigröße in Bytes" -#: common/models.py:2051 common/serializers.py:684 +#: common/models.py:2057 common/serializers.py:688 msgid "Invalid model type specified for attachment" msgstr "Ungültiger Modelltyp für Anhang angegeben" -#: common/models.py:2072 +#: common/models.py:2078 msgid "Custom State" msgstr "" -#: common/models.py:2073 +#: common/models.py:2079 msgid "Custom States" msgstr "" -#: common/models.py:2078 +#: common/models.py:2084 msgid "Reference Status Set" msgstr "" -#: common/models.py:2079 +#: common/models.py:2085 msgid "Status set that is extended with this custom state" msgstr "" -#: common/models.py:2083 generic/states/serializers.py:18 +#: common/models.py:2089 generic/states/serializers.py:18 msgid "Logical Key" msgstr "" -#: common/models.py:2085 +#: common/models.py:2091 msgid "State logical key that is equal to this custom state in business logic" msgstr "" -#: common/models.py:2090 common/models.py:2329 company/models.py:622 -#: machine/serializers.py:27 -#: report/templates/report/inventree_test_report.html:104 stock/models.py:2959 +#: common/models.py:2096 common/models.py:2335 machine/serializers.py:27 +#: report/templates/report/inventree_test_report.html:104 stock/models.py:2976 msgid "Value" msgstr "Wert" -#: common/models.py:2091 +#: common/models.py:2097 msgid "Numerical value that will be saved in the models database" msgstr "" -#: common/models.py:2097 +#: common/models.py:2103 msgid "Name of the state" msgstr "Name des Bundeslandes" -#: common/models.py:2106 common/models.py:2335 generic/states/serializers.py:22 +#: common/models.py:2112 common/models.py:2341 generic/states/serializers.py:22 msgid "Label" msgstr "Bezeichnung" -#: common/models.py:2107 +#: common/models.py:2113 msgid "Label that will be displayed in the frontend" msgstr "Bezeichnung, die im Frontend angezeigt wird" -#: common/models.py:2114 generic/states/serializers.py:24 +#: common/models.py:2120 generic/states/serializers.py:24 msgid "Color" msgstr "Farbe" -#: common/models.py:2115 +#: common/models.py:2121 msgid "Color that will be displayed in the frontend" msgstr "Farbe, die im Frontend angezeigt wird" -#: common/models.py:2123 +#: common/models.py:2129 msgid "Model" msgstr "" -#: common/models.py:2124 +#: common/models.py:2130 msgid "Model this state is associated with" msgstr "" -#: common/models.py:2139 +#: common/models.py:2145 msgid "Model must be selected" msgstr "" -#: common/models.py:2142 +#: common/models.py:2148 msgid "Key must be selected" msgstr "" -#: common/models.py:2145 +#: common/models.py:2151 msgid "Logical key must be selected" msgstr "" -#: common/models.py:2149 +#: common/models.py:2155 msgid "Key must be different from logical key" msgstr "" -#: common/models.py:2156 +#: common/models.py:2162 msgid "Valid reference status class must be provided" msgstr "" -#: common/models.py:2162 +#: common/models.py:2168 msgid "Key must be different from the logical keys of the reference status" msgstr "" -#: common/models.py:2169 +#: common/models.py:2175 msgid "Logical key must be in the logical keys of the reference status" msgstr "" -#: common/models.py:2176 +#: common/models.py:2182 msgid "Name must be different from the names of the reference status" msgstr "Name muss sich von den Namen des Referenzstatus unterscheiden" -#: common/models.py:2216 common/models.py:2323 part/models.py:3889 +#: common/models.py:2222 common/models.py:2329 common/models.py:2533 msgid "Selection List" msgstr "Auswahlliste" -#: common/models.py:2217 +#: common/models.py:2223 msgid "Selection Lists" msgstr "Auswahllisten" -#: common/models.py:2222 +#: common/models.py:2228 msgid "Name of the selection list" msgstr "Name der Auswahlliste" -#: common/models.py:2229 +#: common/models.py:2235 msgid "Description of the selection list" msgstr "Beschreibung der Auswahlliste" -#: common/models.py:2235 part/models.py:1242 +#: common/models.py:2241 part/models.py:1330 msgid "Locked" msgstr "Gesperrt" -#: common/models.py:2236 +#: common/models.py:2242 msgid "Is this selection list locked?" msgstr "Ist diese Auswahlliste gesperrt?" -#: common/models.py:2242 +#: common/models.py:2248 msgid "Can this selection list be used?" msgstr "Kann diese Auswahlliste benutzt werden?" -#: common/models.py:2250 +#: common/models.py:2256 msgid "Source Plugin" msgstr "" -#: common/models.py:2251 +#: common/models.py:2257 msgid "Plugin which provides the selection list" msgstr "" -#: common/models.py:2256 +#: common/models.py:2262 msgid "Source String" msgstr "" -#: common/models.py:2257 +#: common/models.py:2263 msgid "Optional string identifying the source used for this list" msgstr "" -#: common/models.py:2266 +#: common/models.py:2272 msgid "Default Entry" msgstr "Standardeintrag" -#: common/models.py:2267 +#: common/models.py:2273 msgid "Default entry for this selection list" msgstr "" -#: common/models.py:2272 common/models.py:2724 +#: common/models.py:2278 common/models.py:3145 msgid "Created" msgstr "Erstellt" -#: common/models.py:2273 +#: common/models.py:2279 msgid "Date and time that the selection list was created" msgstr "" -#: common/models.py:2278 +#: common/models.py:2284 msgid "Last Updated" msgstr "Zuletzt aktualisiert" -#: common/models.py:2279 +#: common/models.py:2285 msgid "Date and time that the selection list was last updated" msgstr "" -#: common/models.py:2313 +#: common/models.py:2319 msgid "Selection List Entry" msgstr "" -#: common/models.py:2314 +#: common/models.py:2320 msgid "Selection List Entries" msgstr "" -#: common/models.py:2324 +#: common/models.py:2330 msgid "Selection list to which this entry belongs" msgstr "" -#: common/models.py:2330 +#: common/models.py:2336 msgid "Value of the selection list entry" msgstr "" -#: common/models.py:2336 +#: common/models.py:2342 msgid "Label for the selection list entry" msgstr "" -#: common/models.py:2342 +#: common/models.py:2348 msgid "Description of the selection list entry" msgstr "" -#: common/models.py:2349 +#: common/models.py:2355 msgid "Is this selection list entry active?" msgstr "" -#: common/models.py:2367 -msgid "Barcode Scan" -msgstr "Barcodescan" +#: common/models.py:2387 +msgid "Parameter Template" +msgstr "Parameter Vorlage" -#: common/models.py:2371 importer/models.py:546 part/models.py:4060 -msgid "Data" -msgstr "Wert" - -#: common/models.py:2372 -msgid "Barcode data" +#: common/models.py:2388 +msgid "Parameter Templates" msgstr "" -#: common/models.py:2383 -msgid "User who scanned the barcode" +#: common/models.py:2425 +msgid "Checkbox parameters cannot have units" +msgstr "Checkbox-Parameter können keine Einheiten haben" + +#: common/models.py:2430 +msgid "Checkbox parameters cannot have choices" +msgstr "Checkbox-Parameter können keine Auswahl haben" + +#: common/models.py:2450 part/models.py:3707 +msgid "Choices must be unique" +msgstr "Auswahl muss einzigartig sein" + +#: common/models.py:2467 +msgid "Parameter template name must be unique" +msgstr "Vorlagen-Name des Parameters muss eindeutig sein" + +#: common/models.py:2489 +msgid "Target model type for this parameter template" msgstr "" -#: common/models.py:2388 importer/models.py:69 -msgid "Timestamp" -msgstr "Zeitstempel" +#: common/models.py:2495 +msgid "Parameter Name" +msgstr "Name des Parameters" -#: common/models.py:2389 -msgid "Date and time of the barcode scan" +#: common/models.py:2501 part/models.py:1283 +msgid "Units" +msgstr "Einheiten" + +#: common/models.py:2502 +msgid "Physical units for this parameter" +msgstr "Physikalische Einheiten für diesen Parameter" + +#: common/models.py:2510 +msgid "Parameter description" +msgstr "Parameter-Beschreibung" + +#: common/models.py:2516 +msgid "Checkbox" +msgstr "Checkbox" + +#: common/models.py:2517 +msgid "Is this parameter a checkbox?" +msgstr "Ist dieser Parameter eine Checkbox?" + +#: common/models.py:2522 part/models.py:3794 +msgid "Choices" +msgstr "Auswahlmöglichkeiten" + +#: common/models.py:2523 +msgid "Valid choices for this parameter (comma-separated)" +msgstr "Gültige Optionen für diesen Parameter (durch Kommas getrennt)" + +#: common/models.py:2534 +msgid "Selection list for this parameter" msgstr "" -#: common/models.py:2395 -msgid "URL endpoint which processed the barcode" +#: common/models.py:2539 part/models.py:3769 report/models.py:287 +msgid "Enabled" +msgstr "Aktiviert" + +#: common/models.py:2540 +msgid "Is this parameter template enabled?" msgstr "" -#: common/models.py:2402 order/models.py:1832 plugin/serializers.py:93 -msgid "Context" -msgstr "Kontext" - -#: common/models.py:2403 -msgid "Context data for the barcode scan" +#: common/models.py:2581 +msgid "Parameter" msgstr "" -#: common/models.py:2410 -msgid "Response" -msgstr "" - -#: common/models.py:2411 -msgid "Response data from the barcode scan" -msgstr "" - -#: common/models.py:2417 report/templates/report/inventree_test_report.html:103 -#: stock/models.py:2953 -msgid "Result" -msgstr "Ergebnis" - -#: common/models.py:2418 -msgid "Was the barcode scan successful?" -msgstr "" - -#: common/models.py:2500 -msgid "An error occurred" -msgstr "" - -#: common/models.py:2521 -msgid "INVE-E8: Email log deletion is protected. Set INVENTREE_PROTECT_EMAIL_LOG to False to allow deletion." -msgstr "" - -#: common/models.py:2568 -msgid "Email Message" -msgstr "" - -#: common/models.py:2569 -msgid "Email Messages" -msgstr "" - -#: common/models.py:2576 -msgid "Announced" -msgstr "Angekündigt" - -#: common/models.py:2578 -msgid "Sent" -msgstr "Gesendet" - -#: common/models.py:2579 -msgid "Failed" -msgstr "Fehlgeschlagen" - #: common/models.py:2582 -msgid "Delivered" -msgstr "Zugestellt" - -#: common/models.py:2590 -msgid "Confirmed" -msgstr "Bestätigt" - -#: common/models.py:2596 -msgid "Inbound" -msgstr "Eingehend" - -#: common/models.py:2597 -msgid "Outbound" -msgstr "Ausgehend" - -#: common/models.py:2602 -msgid "No Reply" -msgstr "Keine Rückmeldung" - -#: common/models.py:2603 -msgid "Track Delivery" -msgstr "" - -#: common/models.py:2604 -msgid "Track Read" -msgstr "" - -#: common/models.py:2605 -msgid "Track Click" -msgstr "" - -#: common/models.py:2608 common/models.py:2711 -msgid "Global ID" -msgstr "" - -#: common/models.py:2621 -msgid "Identifier for this message (might be supplied by external system)" +msgid "Parameters" msgstr "" #: common/models.py:2628 +msgid "Invalid choice for parameter value" +msgstr "Ungültige Auswahl für Parameterwert" + +#: common/models.py:2698 common/serializers.py:783 +msgid "Invalid model type specified for parameter" +msgstr "" + +#: common/models.py:2734 +msgid "Model ID" +msgstr "" + +#: common/models.py:2735 +msgid "ID of the target model for this parameter" +msgstr "" + +#: common/models.py:2744 common/setting/system.py:450 report/models.py:373 +#: report/models.py:669 report/serializers.py:94 report/serializers.py:135 +#: stock/serializers.py:234 +msgid "Template" +msgstr "Vorlage" + +#: common/models.py:2745 +msgid "Parameter template" +msgstr "" + +#: common/models.py:2750 common/models.py:2792 importer/models.py:546 +msgid "Data" +msgstr "Wert" + +#: common/models.py:2751 +msgid "Parameter Value" +msgstr "Parameter Wert" + +#: common/models.py:2760 company/models.py:810 order/serializers.py:894 +#: order/serializers.py:2064 part/models.py:4075 part/models.py:4444 +#: report/templates/report/inventree_bill_of_materials_report.html:140 +#: report/templates/report/inventree_purchase_order_report.html:39 +#: report/templates/report/inventree_return_order_report.html:27 +#: report/templates/report/inventree_sales_order_report.html:32 +#: report/templates/report/inventree_stock_location_report.html:105 +#: stock/serializers.py:813 +msgid "Note" +msgstr "Notiz" + +#: common/models.py:2761 stock/serializers.py:718 +msgid "Optional note field" +msgstr "Optionales Notizfeld" + +#: common/models.py:2788 +msgid "Barcode Scan" +msgstr "Barcodescan" + +#: common/models.py:2793 +msgid "Barcode data" +msgstr "" + +#: common/models.py:2804 +msgid "User who scanned the barcode" +msgstr "" + +#: common/models.py:2809 importer/models.py:69 +msgid "Timestamp" +msgstr "Zeitstempel" + +#: common/models.py:2810 +msgid "Date and time of the barcode scan" +msgstr "" + +#: common/models.py:2816 +msgid "URL endpoint which processed the barcode" +msgstr "" + +#: common/models.py:2823 order/models.py:1833 plugin/serializers.py:93 +msgid "Context" +msgstr "Kontext" + +#: common/models.py:2824 +msgid "Context data for the barcode scan" +msgstr "" + +#: common/models.py:2831 +msgid "Response" +msgstr "" + +#: common/models.py:2832 +msgid "Response data from the barcode scan" +msgstr "" + +#: common/models.py:2838 report/templates/report/inventree_test_report.html:103 +#: stock/models.py:2970 +msgid "Result" +msgstr "Ergebnis" + +#: common/models.py:2839 +msgid "Was the barcode scan successful?" +msgstr "" + +#: common/models.py:2921 +msgid "An error occurred" +msgstr "" + +#: common/models.py:2942 +msgid "INVE-E8: Email log deletion is protected. Set INVENTREE_PROTECT_EMAIL_LOG to False to allow deletion." +msgstr "" + +#: common/models.py:2989 +msgid "Email Message" +msgstr "" + +#: common/models.py:2990 +msgid "Email Messages" +msgstr "" + +#: common/models.py:2997 +msgid "Announced" +msgstr "Angekündigt" + +#: common/models.py:2999 +msgid "Sent" +msgstr "Gesendet" + +#: common/models.py:3000 +msgid "Failed" +msgstr "Fehlgeschlagen" + +#: common/models.py:3003 +msgid "Delivered" +msgstr "Zugestellt" + +#: common/models.py:3011 +msgid "Confirmed" +msgstr "Bestätigt" + +#: common/models.py:3017 +msgid "Inbound" +msgstr "Eingehend" + +#: common/models.py:3018 +msgid "Outbound" +msgstr "Ausgehend" + +#: common/models.py:3023 +msgid "No Reply" +msgstr "Keine Rückmeldung" + +#: common/models.py:3024 +msgid "Track Delivery" +msgstr "" + +#: common/models.py:3025 +msgid "Track Read" +msgstr "" + +#: common/models.py:3026 +msgid "Track Click" +msgstr "" + +#: common/models.py:3029 common/models.py:3132 +msgid "Global ID" +msgstr "" + +#: common/models.py:3042 +msgid "Identifier for this message (might be supplied by external system)" +msgstr "" + +#: common/models.py:3049 msgid "Thread ID" msgstr "" -#: common/models.py:2630 +#: common/models.py:3051 msgid "Identifier for this message thread (might be supplied by external system)" msgstr "" -#: common/models.py:2639 +#: common/models.py:3060 msgid "Thread" msgstr "" -#: common/models.py:2640 +#: common/models.py:3061 msgid "Linked thread for this message" msgstr "" -#: common/models.py:2656 -msgid "Prioriy" +#: common/models.py:3077 +msgid "Priority" msgstr "" -#: common/models.py:2698 +#: common/models.py:3119 msgid "Email Thread" msgstr "" -#: common/models.py:2699 +#: common/models.py:3120 msgid "Email Threads" msgstr "" -#: common/models.py:2705 generic/states/serializers.py:16 +#: common/models.py:3126 generic/states/serializers.py:16 #: machine/serializers.py:24 plugin/models.py:46 users/models.py:113 msgid "Key" msgstr "Schlüssel" -#: common/models.py:2708 +#: common/models.py:3129 msgid "Unique key for this thread (used to identify the thread)" msgstr "" -#: common/models.py:2712 +#: common/models.py:3133 msgid "Unique identifier for this thread" msgstr "" -#: common/models.py:2719 +#: common/models.py:3140 msgid "Started Internal" msgstr "" -#: common/models.py:2720 +#: common/models.py:3141 msgid "Was this thread started internally?" msgstr "" -#: common/models.py:2725 +#: common/models.py:3146 msgid "Date and time that the thread was created" msgstr "" -#: common/models.py:2730 +#: common/models.py:3151 msgid "Date and time that the thread was last updated" msgstr "" @@ -2199,7 +2339,7 @@ msgstr "{verbose_name} storniert" msgid "A order that is assigned to you was canceled" msgstr "Eine Bestellung, die Ihnen zugewiesen war, wurde storniert" -#: common/notifications.py:73 common/notifications.py:80 order/api.py:594 +#: common/notifications.py:73 common/notifications.py:80 order/api.py:600 msgid "Items Received" msgstr "Artikel erhalten" @@ -2211,88 +2351,93 @@ msgstr "Artikel wurden aus einer Bestellung erhalten" msgid "Items have been received against a return order" msgstr "Artikel wurden aus einer Rücksendung erhalten" -#: common/serializers.py:145 +#: common/serializers.py:149 msgid "Indicates if the setting is overridden by an environment variable" msgstr "" -#: common/serializers.py:147 +#: common/serializers.py:151 msgid "Override" msgstr "" -#: common/serializers.py:498 +#: common/serializers.py:502 msgid "Is Running" msgstr "Wird ausgeführt" -#: common/serializers.py:504 +#: common/serializers.py:508 msgid "Pending Tasks" msgstr "Anstehende Aufgaben" -#: common/serializers.py:510 +#: common/serializers.py:514 msgid "Scheduled Tasks" msgstr "Geplante Aufgaben" -#: common/serializers.py:516 +#: common/serializers.py:520 msgid "Failed Tasks" msgstr "Fehlgeschlagene Aufgaben" -#: common/serializers.py:531 +#: common/serializers.py:535 msgid "Task ID" msgstr "Aufgabe-ID" -#: common/serializers.py:531 +#: common/serializers.py:535 msgid "Unique task ID" msgstr "Eindeutige Aufgaben-ID" -#: common/serializers.py:533 +#: common/serializers.py:537 msgid "Lock" msgstr "Sperren" -#: common/serializers.py:533 +#: common/serializers.py:537 msgid "Lock time" msgstr "Sperrzeit" -#: common/serializers.py:535 +#: common/serializers.py:539 msgid "Task name" msgstr "Aufgabenname" -#: common/serializers.py:537 +#: common/serializers.py:541 msgid "Function" msgstr "Funktion" -#: common/serializers.py:537 +#: common/serializers.py:541 msgid "Function name" msgstr "Funktionsname" -#: common/serializers.py:539 +#: common/serializers.py:543 msgid "Arguments" msgstr "Parameter" -#: common/serializers.py:539 +#: common/serializers.py:543 msgid "Task arguments" msgstr "Aufgaben-Parameter" -#: common/serializers.py:542 +#: common/serializers.py:546 msgid "Keyword Arguments" msgstr "Schlüsselwort Parameter" -#: common/serializers.py:542 +#: common/serializers.py:546 msgid "Task keyword arguments" msgstr "Schlüsselwort Parameter für Aufgaben" -#: common/serializers.py:652 +#: common/serializers.py:656 msgid "Filename" msgstr "Dateiname" -#: common/serializers.py:659 importer/models.py:89 report/api.py:41 +#: common/serializers.py:663 common/serializers.py:730 +#: common/serializers.py:805 importer/models.py:89 report/api.py:41 #: report/models.py:293 report/serializers.py:52 msgid "Model Type" msgstr "Modelltyp" -#: common/serializers.py:687 +#: common/serializers.py:691 msgid "User does not have permission to create or edit attachments for this model" msgstr "Benutzer hat keine Berechtigung, Anhänge für dieses Modell zu erstellen oder zu bearbeiten" -#: common/serializers.py:731 common/serializers.py:834 +#: common/serializers.py:786 +msgid "User does not have permission to create or edit parameters for this model" +msgstr "" + +#: common/serializers.py:850 common/serializers.py:953 msgid "Selection list is locked" msgstr "" @@ -2368,7 +2513,7 @@ msgstr "Anzeige von `Über` einschränken" msgid "Show the `about` modal only to superusers" msgstr "Zeige das `Über` Fenster nur Administratoren" -#: common/setting/system.py:224 company/models.py:144 company/models.py:145 +#: common/setting/system.py:224 company/models.py:145 company/models.py:146 msgid "Company name" msgstr "Firmenname" @@ -2411,8 +2556,8 @@ msgstr "Wie oft Wechselkurse aktualisiert werden sollen (auf Null zum Deaktivier #: common/setting/system.py:253 common/setting/system.py:293 #: common/setting/system.py:306 common/setting/system.py:314 #: common/setting/system.py:321 common/setting/system.py:330 -#: common/setting/system.py:339 common/setting/system.py:588 -#: common/setting/system.py:616 common/setting/system.py:707 +#: common/setting/system.py:339 common/setting/system.py:580 +#: common/setting/system.py:608 common/setting/system.py:707 #: common/setting/system.py:1103 common/setting/system.py:1119 msgid "days" msgstr "Tage" @@ -2657,12 +2802,6 @@ msgstr "Kategorie-Parametervorlage kopieren" msgid "Copy category parameter templates when creating a part" msgstr "Kategorie-Parameter Vorlagen kopieren wenn ein Teil angelegt wird" -#: common/setting/system.py:450 part/models.py:4054 report/models.py:373 -#: report/models.py:669 report/serializers.py:94 report/serializers.py:135 -#: stock/serializers.py:234 -msgid "Template" -msgstr "Vorlage" - #: common/setting/system.py:451 msgid "Parts are templates by default" msgstr "Teile sind standardmäßig Vorlagen" @@ -2671,8 +2810,8 @@ msgstr "Teile sind standardmäßig Vorlagen" msgid "Parts can be assembled from other components by default" msgstr "Teile können standardmäßig aus anderen Teilen angefertigt werden" -#: common/setting/system.py:462 part/models.py:1208 part/serializers.py:1734 -#: part/serializers.py:1741 +#: common/setting/system.py:462 part/models.py:1296 part/serializers.py:1599 +#: part/serializers.py:1606 msgid "Component" msgstr "Komponente" @@ -2680,7 +2819,7 @@ msgstr "Komponente" msgid "Parts can be used as sub-components by default" msgstr "Teile können standardmäßig in Baugruppen benutzt werden" -#: common/setting/system.py:468 part/models.py:1226 +#: common/setting/system.py:468 part/models.py:1314 msgid "Purchaseable" msgstr "Kaufbar" @@ -2688,7 +2827,7 @@ msgstr "Kaufbar" msgid "Parts are purchaseable by default" msgstr "Artikel sind grundsätzlich kaufbar" -#: common/setting/system.py:474 part/models.py:1232 stock/api.py:643 +#: common/setting/system.py:474 part/models.py:1320 stock/api.py:643 msgid "Salable" msgstr "Verkäuflich" @@ -2700,7 +2839,7 @@ msgstr "Artikel sind grundsätzlich verkaufbar" msgid "Parts are trackable by default" msgstr "Artikel sind grundsätzlich verfolgbar" -#: common/setting/system.py:486 part/models.py:1248 +#: common/setting/system.py:486 part/models.py:1336 msgid "Virtual" msgstr "Virtuell" @@ -2749,158 +2888,158 @@ msgid "Part category default icon (empty means no icon)" msgstr "Standardsymbol der Teilkategorie (leer bedeutet kein Symbol)" #: common/setting/system.py:525 -msgid "Enforce Parameter Units" -msgstr "Parameter Einheiten durchsetzen" - -#: common/setting/system.py:527 -msgid "If units are provided, parameter values must match the specified units" -msgstr "Wenn Einheiten angegeben werden, müssen die Parameterwerte mit den angegebenen Einheiten übereinstimmen" - -#: common/setting/system.py:533 msgid "Minimum Pricing Decimal Places" msgstr "Dezimalstellen für minimalen Preis" -#: common/setting/system.py:535 +#: common/setting/system.py:527 msgid "Minimum number of decimal places to display when rendering pricing data" msgstr "Mindestanzahl der Dezimalstellen bei der Darstellung der Preisdaten" -#: common/setting/system.py:546 +#: common/setting/system.py:538 msgid "Maximum Pricing Decimal Places" msgstr "Dezimalstellen für maximalen Preis" -#: common/setting/system.py:548 +#: common/setting/system.py:540 msgid "Maximum number of decimal places to display when rendering pricing data" msgstr "Maximale Anzahl der Dezimalstellen bei der Darstellung der Preisdaten" -#: common/setting/system.py:559 +#: common/setting/system.py:551 msgid "Use Supplier Pricing" msgstr "Zulieferer-Preise verwenden" -#: common/setting/system.py:561 +#: common/setting/system.py:553 msgid "Include supplier price breaks in overall pricing calculations" msgstr "Lieferanten-Staffelpreise in die Gesamt-Preisberechnungen einbeziehen" -#: common/setting/system.py:567 +#: common/setting/system.py:559 msgid "Purchase History Override" msgstr "Kaufverlauf überschreiben" -#: common/setting/system.py:569 +#: common/setting/system.py:561 msgid "Historical purchase order pricing overrides supplier price breaks" msgstr "Historische Bestellungspreise überschreiben die Lieferanten-Staffelpreise" -#: common/setting/system.py:575 +#: common/setting/system.py:567 msgid "Use Stock Item Pricing" msgstr "Lagerartikel-Preis verwenden" -#: common/setting/system.py:577 +#: common/setting/system.py:569 msgid "Use pricing from manually entered stock data for pricing calculations" msgstr "Preise aus manuell eingegebenen Lagerdaten für Preisberechnungen verwenden" -#: common/setting/system.py:583 +#: common/setting/system.py:575 msgid "Stock Item Pricing Age" msgstr "Lagerartikelpreis Alter" -#: common/setting/system.py:585 +#: common/setting/system.py:577 msgid "Exclude stock items older than this number of days from pricing calculations" msgstr "Lagerartikel, die älter als diese Anzahl an Tagen sind, von der Preisberechnung ausschließen" -#: common/setting/system.py:592 +#: common/setting/system.py:584 msgid "Use Variant Pricing" msgstr "Variantenpreise verwenden" -#: common/setting/system.py:593 +#: common/setting/system.py:585 msgid "Include variant pricing in overall pricing calculations" msgstr "Variantenpreise in die Gesamt-Preisberechnungen einbeziehen" -#: common/setting/system.py:598 +#: common/setting/system.py:590 msgid "Active Variants Only" msgstr "Nur aktive Varianten" -#: common/setting/system.py:600 +#: common/setting/system.py:592 msgid "Only use active variant parts for calculating variant pricing" msgstr "Nur aktive Variantenteile zur Berechnung der Variantenbepreisung verwenden" -#: common/setting/system.py:606 +#: common/setting/system.py:598 msgid "Auto Update Pricing" msgstr "" -#: common/setting/system.py:608 +#: common/setting/system.py:600 msgid "Automatically update part pricing when internal data changes" msgstr "" -#: common/setting/system.py:614 +#: common/setting/system.py:606 msgid "Pricing Rebuild Interval" msgstr "Intervall für Neuberechnung von Preisen" -#: common/setting/system.py:615 +#: common/setting/system.py:607 msgid "Number of days before part pricing is automatically updated" msgstr "Anzahl der Tage bis die Teile-Preisberechnungen automatisch aktualisiert werden" -#: common/setting/system.py:621 +#: common/setting/system.py:613 msgid "Internal Prices" msgstr "Interne Preise" -#: common/setting/system.py:622 +#: common/setting/system.py:614 msgid "Enable internal prices for parts" msgstr "Interne Preise für Teile aktivieren" -#: common/setting/system.py:627 +#: common/setting/system.py:619 msgid "Internal Price Override" msgstr "Interne Preisüberschreibung" -#: common/setting/system.py:629 +#: common/setting/system.py:621 msgid "If available, internal prices override price range calculations" msgstr "Falls verfügbar, überschreiben interne Preise Preispannenberechnungen" -#: common/setting/system.py:635 +#: common/setting/system.py:627 msgid "Enable label printing" msgstr "Labeldruck aktivieren" -#: common/setting/system.py:636 +#: common/setting/system.py:628 msgid "Enable label printing from the web interface" msgstr "Labeldruck über die Website aktivieren" -#: common/setting/system.py:641 +#: common/setting/system.py:633 msgid "Label Image DPI" msgstr "Label Bild DPI" -#: common/setting/system.py:643 +#: common/setting/system.py:635 msgid "DPI resolution when generating image files to supply to label printing plugins" msgstr "DPI-Auflösung bei der Erstellung von Bilddateien für Etikettendruck-Plugins" -#: common/setting/system.py:649 +#: common/setting/system.py:641 msgid "Enable Reports" msgstr "Berichte aktivieren" -#: common/setting/system.py:650 +#: common/setting/system.py:642 msgid "Enable generation of reports" msgstr "Berichterstellung aktivieren" -#: common/setting/system.py:655 +#: common/setting/system.py:647 msgid "Debug Mode" msgstr "Entwickler-Modus" -#: common/setting/system.py:656 +#: common/setting/system.py:648 msgid "Generate reports in debug mode (HTML output)" msgstr "Berichte im Entwickler-Modus generieren (als HTML)" -#: common/setting/system.py:661 +#: common/setting/system.py:653 msgid "Log Report Errors" msgstr "Berichtsfehler protokollieren" -#: common/setting/system.py:662 +#: common/setting/system.py:654 msgid "Log errors which occur when generating reports" msgstr "Fehler, die beim Erstellen von Berichten auftreten, protokollieren" -#: common/setting/system.py:667 plugin/builtin/labels/label_sheet.py:29 +#: common/setting/system.py:659 plugin/builtin/labels/label_sheet.py:29 #: report/models.py:381 msgid "Page Size" msgstr "Seitengröße" -#: common/setting/system.py:668 +#: common/setting/system.py:660 msgid "Default page size for PDF reports" msgstr "Standardseitenformat für PDF-Bericht" +#: common/setting/system.py:665 +msgid "Enforce Parameter Units" +msgstr "Parameter Einheiten durchsetzen" + +#: common/setting/system.py:667 +msgid "If units are provided, parameter values must match the specified units" +msgstr "Wenn Einheiten angegeben werden, müssen die Parameterwerte mit den angegebenen Einheiten übereinstimmen" + #: common/setting/system.py:673 msgid "Globally Unique Serials" msgstr "Global einzigartige Seriennummern" @@ -3456,688 +3595,677 @@ msgid "Display PDF reports in the browser, instead of downloading as a file" msgstr "PDF-Berichte im Browser anzeigen, anstatt als Datei herunterzuladen" #: common/setting/user.py:45 +msgid "Barcode Scanner in Form Fields" +msgstr "" + +#: common/setting/user.py:46 +msgid "Allow barcode scanner input in form fields" +msgstr "" + +#: common/setting/user.py:51 msgid "Search Parts" msgstr "Teile suchen" -#: common/setting/user.py:46 +#: common/setting/user.py:52 msgid "Display parts in search preview window" msgstr "Teile in der Suchvorschau anzeigen" -#: common/setting/user.py:51 +#: common/setting/user.py:57 msgid "Search Supplier Parts" msgstr "Zulieferteile durchsuchen" -#: common/setting/user.py:52 +#: common/setting/user.py:58 msgid "Display supplier parts in search preview window" msgstr "Zuliefererteile in der Suchvorschau anzeigen" -#: common/setting/user.py:57 +#: common/setting/user.py:63 msgid "Search Manufacturer Parts" msgstr "Herstellerteile durchsuchen" -#: common/setting/user.py:58 +#: common/setting/user.py:64 msgid "Display manufacturer parts in search preview window" msgstr "Herstellerteile in der Suchvorschau anzeigen" -#: common/setting/user.py:63 +#: common/setting/user.py:69 msgid "Hide Inactive Parts" msgstr "Inaktive Teile ausblenden" -#: common/setting/user.py:64 +#: common/setting/user.py:70 msgid "Excluded inactive parts from search preview window" msgstr "Inaktive Teile in der Suchvorschau ausblenden" -#: common/setting/user.py:69 +#: common/setting/user.py:75 msgid "Search Categories" msgstr "Kategorien durchsuchen" -#: common/setting/user.py:70 +#: common/setting/user.py:76 msgid "Display part categories in search preview window" msgstr "Teilekategorien in der Suchvorschau anzeigen" -#: common/setting/user.py:75 +#: common/setting/user.py:81 msgid "Search Stock" msgstr "Bestand durchsuchen" -#: common/setting/user.py:76 +#: common/setting/user.py:82 msgid "Display stock items in search preview window" msgstr "Lagerartikel in Suchvorschau anzeigen" -#: common/setting/user.py:81 +#: common/setting/user.py:87 msgid "Hide Unavailable Stock Items" msgstr "Nicht verfügbare Artikel ausblenden" -#: common/setting/user.py:83 +#: common/setting/user.py:89 msgid "Exclude stock items which are not available from the search preview window" msgstr "Nicht verfügbare Lagerartikel aus der Suchvorschau ausschließen" -#: common/setting/user.py:89 +#: common/setting/user.py:95 msgid "Search Locations" msgstr "Lagerorte durchsuchen" -#: common/setting/user.py:90 +#: common/setting/user.py:96 msgid "Display stock locations in search preview window" msgstr "Lagerorte in Suchvorschau anzeigen" -#: common/setting/user.py:95 +#: common/setting/user.py:101 msgid "Search Companies" msgstr "Firmen durchsuchen" -#: common/setting/user.py:96 +#: common/setting/user.py:102 msgid "Display companies in search preview window" msgstr "Firmen in der Suchvorschau anzeigen" -#: common/setting/user.py:101 +#: common/setting/user.py:107 msgid "Search Build Orders" msgstr "Bauaufträge durchsuchen" -#: common/setting/user.py:102 +#: common/setting/user.py:108 msgid "Display build orders in search preview window" msgstr "Bauaufträge in der Suchvorschau anzeigen" -#: common/setting/user.py:107 +#: common/setting/user.py:113 msgid "Search Purchase Orders" msgstr "Bestellungen durchsuchen" -#: common/setting/user.py:108 +#: common/setting/user.py:114 msgid "Display purchase orders in search preview window" msgstr "Bestellungen in der Suchvorschau anzeigen" -#: common/setting/user.py:113 +#: common/setting/user.py:119 msgid "Exclude Inactive Purchase Orders" msgstr "Inaktive Bestellungen ausblenden" -#: common/setting/user.py:114 +#: common/setting/user.py:120 msgid "Exclude inactive purchase orders from search preview window" msgstr "Inaktive Bestellungen in der Suchvorschau ausblenden" -#: common/setting/user.py:119 +#: common/setting/user.py:125 msgid "Search Sales Orders" msgstr "Aufträge durchsuchen" -#: common/setting/user.py:120 +#: common/setting/user.py:126 msgid "Display sales orders in search preview window" msgstr "Aufträge in der Suchvorschau anzeigen" -#: common/setting/user.py:125 +#: common/setting/user.py:131 msgid "Exclude Inactive Sales Orders" msgstr "Inaktive Aufträge ausblenden" -#: common/setting/user.py:126 +#: common/setting/user.py:132 msgid "Exclude inactive sales orders from search preview window" msgstr "Inaktive Aufträge in der Suchvorschau ausblenden" -#: common/setting/user.py:131 +#: common/setting/user.py:137 msgid "Search Sales Order Shipments" msgstr "" -#: common/setting/user.py:132 +#: common/setting/user.py:138 msgid "Display sales order shipments in search preview window" msgstr "" -#: common/setting/user.py:137 +#: common/setting/user.py:143 msgid "Search Return Orders" msgstr "Suche nach Rücksendungen" -#: common/setting/user.py:138 +#: common/setting/user.py:144 msgid "Display return orders in search preview window" msgstr "Rücksendungen in der Suchvorschau anzeigen" -#: common/setting/user.py:143 +#: common/setting/user.py:149 msgid "Exclude Inactive Return Orders" msgstr "Inaktive Rücksendungen ausblenden" -#: common/setting/user.py:144 +#: common/setting/user.py:150 msgid "Exclude inactive return orders from search preview window" msgstr "Inaktive Rücksendungen in der Suchvorschau ausblenden" -#: common/setting/user.py:149 +#: common/setting/user.py:155 msgid "Search Preview Results" msgstr "Anzahl Suchergebnisse" -#: common/setting/user.py:151 +#: common/setting/user.py:157 msgid "Number of results to show in each section of the search preview window" msgstr "Anzahl der Ergebnisse, die in der Vorschau pro Sektion angezeigt werden sollen" -#: common/setting/user.py:157 +#: common/setting/user.py:163 msgid "Regex Search" msgstr "Regex Suche" -#: common/setting/user.py:158 +#: common/setting/user.py:164 msgid "Enable regular expressions in search queries" msgstr "Reguläre Ausdrücke in Suchabfragen aktivieren" -#: common/setting/user.py:163 +#: common/setting/user.py:169 msgid "Whole Word Search" msgstr "Ganzes Wort suchen" -#: common/setting/user.py:164 +#: common/setting/user.py:170 msgid "Search queries return results for whole word matches" msgstr "Suchabfragen liefern Ergebnisse für ganze Wortkombinationen" -#: common/setting/user.py:169 +#: common/setting/user.py:175 msgid "Search Notes" msgstr "" -#: common/setting/user.py:171 +#: common/setting/user.py:177 msgid "Search queries return results for matches from the item's notes" msgstr "" -#: common/setting/user.py:177 +#: common/setting/user.py:183 msgid "Escape Key Closes Forms" msgstr "Esc-Taste schließt Formulare" -#: common/setting/user.py:178 +#: common/setting/user.py:184 msgid "Use the escape key to close modal forms" msgstr "Benutze die Esc-Taste, um Formulare zu schließen" -#: common/setting/user.py:183 +#: common/setting/user.py:189 msgid "Fixed Navbar" msgstr "Fixierter Navigationsleiste" -#: common/setting/user.py:184 +#: common/setting/user.py:190 msgid "The navbar position is fixed to the top of the screen" msgstr "Position der Navigationsleiste am oberen Bildschirmrand fixieren" -#: common/setting/user.py:189 +#: common/setting/user.py:195 msgid "Fixed Table Headers" msgstr "" -#: common/setting/user.py:190 +#: common/setting/user.py:196 msgid "Table headers are fixed to the top of the table" msgstr "" -#: common/setting/user.py:195 +#: common/setting/user.py:201 msgid "Show Spotlight" msgstr "" -#: common/setting/user.py:196 +#: common/setting/user.py:202 msgid "Enable spotlight navigation functionality" msgstr "" -#: common/setting/user.py:201 +#: common/setting/user.py:207 msgid "Navigation Icons" msgstr "" -#: common/setting/user.py:202 +#: common/setting/user.py:208 msgid "Display icons in the navigation bar" msgstr "" -#: common/setting/user.py:207 +#: common/setting/user.py:213 msgid "Date Format" msgstr "Datumsformat" -#: common/setting/user.py:208 +#: common/setting/user.py:214 msgid "Preferred format for displaying dates" msgstr "Bevorzugtes Format für die Anzeige von Daten" -#: common/setting/user.py:221 +#: common/setting/user.py:227 msgid "Show Stock History" msgstr "" -#: common/setting/user.py:222 +#: common/setting/user.py:228 msgid "Display stock history information in the part detail page" msgstr "" -#: common/setting/user.py:227 +#: common/setting/user.py:233 msgid "Show Last Breadcrumb" msgstr "" -#: common/setting/user.py:228 +#: common/setting/user.py:234 msgid "Show the current page in breadcrumbs" msgstr "" -#: common/setting/user.py:233 +#: common/setting/user.py:239 msgid "Show full stock location in tables" msgstr "" -#: common/setting/user.py:235 +#: common/setting/user.py:241 msgid "Disabled: The full location path is displayed as a hover tooltip. Enabled: The full location path is displayed as plain text." msgstr "" -#: common/setting/user.py:241 +#: common/setting/user.py:247 msgid "Show full part categories in tables" msgstr "" -#: common/setting/user.py:243 +#: common/setting/user.py:249 msgid "Disabled: The full category path is displayed as a hover tooltip. Enabled: The full category path is displayed as plain text." msgstr "" -#: common/setting/user.py:249 +#: common/setting/user.py:255 msgid "Receive error reports" msgstr "Fehlerberichte empfangen" -#: common/setting/user.py:250 +#: common/setting/user.py:256 msgid "Receive notifications for system errors" msgstr "Benachrichtigungen bei Systemfehlern erhalten" -#: common/setting/user.py:255 +#: common/setting/user.py:261 msgid "Last used printing machines" msgstr "Zuletzt verwendete Druckmaschinen" -#: common/setting/user.py:256 +#: common/setting/user.py:262 msgid "Save the last used printing machines for a user" msgstr "Die zuletzt benutzten Druckmaschinen für einen Benutzer speichern" -#: common/validators.py:34 +#: common/validators.py:38 +msgid "All models" +msgstr "" + +#: common/validators.py:63 msgid "No attachment model type provided" msgstr "" -#: common/validators.py:40 +#: common/validators.py:69 msgid "Invalid attachment model type" msgstr "" -#: common/validators.py:81 +#: common/validators.py:110 msgid "Minimum places cannot be greater than maximum places" msgstr "" -#: common/validators.py:93 +#: common/validators.py:122 msgid "Maximum places cannot be less than minimum places" msgstr "" -#: common/validators.py:104 +#: common/validators.py:133 msgid "An empty domain is not allowed." msgstr "Eine leere Domain ist nicht erlaubt." -#: common/validators.py:106 +#: common/validators.py:135 #, python-brace-format msgid "Invalid domain name: {domain}" msgstr "Ungültiger Domainname: {domain}" -#: common/validators.py:122 +#: common/validators.py:151 msgid "Value must be uppercase" msgstr "" -#: common/validators.py:128 +#: common/validators.py:157 msgid "Value must be a valid variable identifier" msgstr "" -#: company/api.py:147 +#: company/api.py:141 msgid "Part is Active" msgstr "Teil ist aktiv" -#: company/api.py:151 +#: company/api.py:145 msgid "Manufacturer is Active" msgstr "Hersteller ist aktiv" -#: company/api.py:286 +#: company/api.py:246 msgid "Supplier Part is Active" msgstr "Lieferantenteil ist aktiv" -#: company/api.py:290 +#: company/api.py:250 msgid "Internal Part is Active" msgstr "Internes Teil ist aktiv" -#: company/api.py:295 +#: company/api.py:255 msgid "Supplier is Active" msgstr "Lieferant ist aktiv" -#: company/api.py:307 company/models.py:520 company/serializers.py:457 -#: part/serializers.py:566 +#: company/api.py:267 company/models.py:522 company/serializers.py:502 +#: part/serializers.py:477 msgid "Manufacturer" msgstr "Hersteller" -#: company/api.py:314 company/models.py:121 company/models.py:392 +#: company/api.py:274 company/models.py:122 company/models.py:393 #: stock/api.py:900 msgid "Company" msgstr "Firma" -#: company/api.py:324 +#: company/api.py:284 msgid "Has Stock" msgstr "" -#: company/models.py:122 +#: company/models.py:123 msgid "Companies" msgstr "Firmen" -#: company/models.py:150 +#: company/models.py:151 msgid "Company description" msgstr "Firmenbeschreibung" -#: company/models.py:151 +#: company/models.py:152 msgid "Description of the company" msgstr "Firmenbeschreibung" -#: company/models.py:157 +#: company/models.py:158 msgid "Website" msgstr "Webseite" -#: company/models.py:158 +#: company/models.py:159 msgid "Company website URL" msgstr "Firmenwebsite Adresse/URL" -#: company/models.py:164 +#: company/models.py:165 msgid "Phone number" msgstr "Kontakt-Tel." -#: company/models.py:166 +#: company/models.py:167 msgid "Contact phone number" msgstr "Kontakt-Telefon" -#: company/models.py:173 +#: company/models.py:174 msgid "Contact email address" msgstr "Kontakt-Email" -#: company/models.py:178 company/models.py:296 order/models.py:513 +#: company/models.py:179 company/models.py:297 order/models.py:514 #: users/models.py:561 msgid "Contact" msgstr "Kontakt" -#: company/models.py:180 +#: company/models.py:181 msgid "Point of contact" msgstr "Anlaufstelle" -#: company/models.py:186 +#: company/models.py:187 msgid "Link to external company information" msgstr "Link auf externe Firmeninformation" -#: company/models.py:191 +#: company/models.py:192 msgid "Is this company active?" msgstr "Ist dieses Unternehmen aktiv?" -#: company/models.py:196 +#: company/models.py:197 msgid "Is customer" msgstr "Ist Kunde" -#: company/models.py:197 +#: company/models.py:198 msgid "Do you sell items to this company?" msgstr "Verkaufen Sie Teile an diese Firma?" -#: company/models.py:202 +#: company/models.py:203 msgid "Is supplier" msgstr "Ist Zulieferer" -#: company/models.py:203 +#: company/models.py:204 msgid "Do you purchase items from this company?" msgstr "Kaufen Sie Teile von dieser Firma?" -#: company/models.py:208 +#: company/models.py:209 msgid "Is manufacturer" msgstr "Ist Hersteller" -#: company/models.py:209 +#: company/models.py:210 msgid "Does this company manufacture parts?" msgstr "Produziert diese Firma Teile?" -#: company/models.py:217 +#: company/models.py:218 msgid "Default currency used for this company" msgstr "Standard-Währung für diese Firma" -#: company/models.py:224 +#: company/models.py:225 msgid "Tax ID" msgstr "" -#: company/models.py:225 +#: company/models.py:226 msgid "Company Tax ID" msgstr "" -#: company/models.py:335 order/models.py:523 order/models.py:2288 +#: company/models.py:336 order/models.py:524 order/models.py:2289 msgid "Address" msgstr "Adresse" -#: company/models.py:336 +#: company/models.py:337 msgid "Addresses" msgstr "Adressen" -#: company/models.py:393 +#: company/models.py:394 msgid "Select company" msgstr "Firma auswählen" -#: company/models.py:398 +#: company/models.py:399 msgid "Address title" msgstr "Adresstitel" -#: company/models.py:399 +#: company/models.py:400 msgid "Title describing the address entry" msgstr "Titel zur Beschreibung des Adresseintrages" -#: company/models.py:405 +#: company/models.py:406 msgid "Primary address" msgstr "Primäre Adresse" -#: company/models.py:406 +#: company/models.py:407 msgid "Set as primary address" msgstr "Als primäre Adresse festlegen" -#: company/models.py:411 +#: company/models.py:412 msgid "Line 1" msgstr "Linie 1" -#: company/models.py:412 +#: company/models.py:413 msgid "Address line 1" msgstr "Adresszeile 1" -#: company/models.py:418 +#: company/models.py:419 msgid "Line 2" msgstr "Linie 2" -#: company/models.py:419 +#: company/models.py:420 msgid "Address line 2" msgstr "Adresszeile 2" -#: company/models.py:425 company/models.py:426 +#: company/models.py:426 company/models.py:427 msgid "Postal code" msgstr "Postleitzahl" -#: company/models.py:432 +#: company/models.py:433 msgid "City/Region" msgstr "Stadt/Region" -#: company/models.py:433 +#: company/models.py:434 msgid "Postal code city/region" msgstr "Postleitzahl Stadt/Region" -#: company/models.py:439 +#: company/models.py:440 msgid "State/Province" msgstr "Staat/Provinz" -#: company/models.py:440 +#: company/models.py:441 msgid "State or province" msgstr "Bundesland" -#: company/models.py:446 +#: company/models.py:447 msgid "Country" msgstr "Land" -#: company/models.py:447 +#: company/models.py:448 msgid "Address country" msgstr "Adresse Land" -#: company/models.py:453 +#: company/models.py:454 msgid "Courier shipping notes" msgstr "Versandnotizen" -#: company/models.py:454 +#: company/models.py:455 msgid "Notes for shipping courier" msgstr "Notizen für Versandkurier" -#: company/models.py:460 +#: company/models.py:461 msgid "Internal shipping notes" msgstr "Interne Versandnotizen" -#: company/models.py:461 +#: company/models.py:462 msgid "Shipping notes for internal use" msgstr "Versandnotizen für interne Verwendung" -#: company/models.py:468 +#: company/models.py:469 msgid "Link to address information (external)" msgstr "Link zu Adressinformationen (extern)" -#: company/models.py:492 company/models.py:609 company/models.py:832 -#: company/serializers.py:471 stock/api.py:561 +#: company/models.py:494 company/models.py:786 company/serializers.py:516 +#: stock/api.py:561 msgid "Manufacturer Part" msgstr "Herstellerteil" -#: company/models.py:509 company/models.py:800 stock/models.py:1025 +#: company/models.py:511 company/models.py:754 stock/models.py:1025 #: stock/serializers.py:407 msgid "Base Part" msgstr "Basisteil" -#: company/models.py:511 company/models.py:802 +#: company/models.py:513 company/models.py:756 msgid "Select part" msgstr "Teil auswählen" -#: company/models.py:521 +#: company/models.py:523 msgid "Select manufacturer" msgstr "Hersteller auswählen" -#: company/models.py:527 company/serializers.py:479 order/serializers.py:734 -#: part/serializers.py:576 +#: company/models.py:529 company/serializers.py:524 order/serializers.py:745 +#: part/serializers.py:487 msgid "MPN" msgstr "MPN" -#: company/models.py:528 stock/serializers.py:572 +#: company/models.py:530 stock/serializers.py:572 msgid "Manufacturer Part Number" msgstr "Hersteller-Teilenummer" -#: company/models.py:535 +#: company/models.py:537 msgid "URL for external manufacturer part link" msgstr "Externe URL für das Herstellerteil" -#: company/models.py:544 +#: company/models.py:546 msgid "Manufacturer part description" msgstr "Teilbeschreibung des Herstellers" -#: company/models.py:597 -msgid "Manufacturer Part Parameter" -msgstr "Teilenummer des Herstellers" - -#: company/models.py:616 -msgid "Parameter name" -msgstr "Parametername" - -#: company/models.py:623 -msgid "Parameter value" -msgstr "Parameterwert" - -#: company/models.py:630 part/models.py:1195 part/models.py:3857 -msgid "Units" -msgstr "Einheiten" - -#: company/models.py:631 -msgid "Parameter units" -msgstr "Parametereinheit" - -#: company/models.py:740 +#: company/models.py:694 msgid "Pack units must be compatible with the base part units" msgstr "Packeinheiten müssen mit den Basisteileinheiten kompatibel sein" -#: company/models.py:747 +#: company/models.py:701 msgid "Pack units must be greater than zero" msgstr "Packeinheiten müssen größer als Null sein" -#: company/models.py:761 +#: company/models.py:715 msgid "Linked manufacturer part must reference the same base part" msgstr "Verlinktes Herstellerteil muss dasselbe Basisteil referenzieren" -#: company/models.py:810 company/serializers.py:449 company/serializers.py:467 -#: order/models.py:639 part/serializers.py:550 +#: company/models.py:764 company/serializers.py:494 company/serializers.py:512 +#: order/models.py:640 part/serializers.py:461 #: plugin/builtin/suppliers/digikey.py:26 plugin/builtin/suppliers/lcsc.py:27 #: plugin/builtin/suppliers/mouser.py:25 plugin/builtin/suppliers/tme.py:27 #: stock/api.py:567 templates/email/overdue_purchase_order.html:16 msgid "Supplier" msgstr "Zulieferer" -#: company/models.py:811 +#: company/models.py:765 msgid "Select supplier" msgstr "Zulieferer auswählen" -#: company/models.py:817 part/serializers.py:561 +#: company/models.py:771 part/serializers.py:472 msgid "Supplier stock keeping unit" msgstr "Lagerbestandseinheit (SKU) des Zulieferers" -#: company/models.py:823 +#: company/models.py:777 msgid "Is this supplier part active?" msgstr "Ist dieser Lieferantenteil aktiv?" -#: company/models.py:833 +#: company/models.py:787 msgid "Select manufacturer part" msgstr "Herstellerteil auswählen" -#: company/models.py:840 +#: company/models.py:794 msgid "URL for external supplier part link" msgstr "Teil-URL des Zulieferers" -#: company/models.py:849 +#: company/models.py:803 msgid "Supplier part description" msgstr "Zuliefererbeschreibung des Teils" -#: company/models.py:856 order/serializers.py:883 order/serializers.py:2047 -#: part/models.py:4070 part/models.py:4450 part/models.py:4819 -#: report/templates/report/inventree_bill_of_materials_report.html:140 -#: report/templates/report/inventree_purchase_order_report.html:39 -#: report/templates/report/inventree_return_order_report.html:27 -#: report/templates/report/inventree_sales_order_report.html:32 -#: report/templates/report/inventree_stock_location_report.html:105 -#: stock/serializers.py:813 -msgid "Note" -msgstr "Notiz" - -#: company/models.py:865 part/models.py:2250 +#: company/models.py:819 part/models.py:2338 msgid "base cost" msgstr "Basiskosten" -#: company/models.py:866 part/models.py:2251 +#: company/models.py:820 part/models.py:2339 msgid "Minimum charge (e.g. stocking fee)" msgstr "Mindestpreis" -#: company/models.py:873 order/serializers.py:875 stock/models.py:1056 +#: company/models.py:827 order/serializers.py:886 stock/models.py:1056 #: stock/serializers.py:1606 msgid "Packaging" msgstr "Verpackungen" -#: company/models.py:874 +#: company/models.py:828 msgid "Part packaging" msgstr "Teile-Verpackungen" -#: company/models.py:879 +#: company/models.py:833 msgid "Pack Quantity" msgstr "Packmenge" -#: company/models.py:881 +#: company/models.py:835 msgid "Total quantity supplied in a single pack. Leave empty for single items." msgstr "Gesamtmenge, die in einer einzelnen Packung geliefert wird. Für Einzelstücke leer lassen." -#: company/models.py:900 part/models.py:2257 +#: company/models.py:854 part/models.py:2345 msgid "multiple" msgstr "Vielfache" -#: company/models.py:901 +#: company/models.py:855 msgid "Order multiple" msgstr "Mehrere bestellen" -#: company/models.py:913 +#: company/models.py:867 msgid "Quantity available from supplier" msgstr "Verfügbare Menge von Lieferanten" -#: company/models.py:919 +#: company/models.py:873 msgid "Availability Updated" msgstr "Verfügbarkeit aktualisiert" -#: company/models.py:920 +#: company/models.py:874 msgid "Date of last update of availability data" msgstr "Datum des letzten Updates der Verfügbarkeitsdaten" -#: company/models.py:1048 +#: company/models.py:1002 msgid "Supplier Price Break" msgstr "" -#: company/serializers.py:181 +#: company/serializers.py:184 +msgid "Primary Address" +msgstr "" + +#: company/serializers.py:186 msgid "Return the string representation for the primary address. This property exists for backwards compatibility." msgstr "" -#: company/serializers.py:212 +#: company/serializers.py:218 msgid "Default currency used for this supplier" msgstr "Standard-Währung für diesen Zulieferer" -#: company/serializers.py:248 +#: company/serializers.py:260 msgid "Company Name" msgstr "Firmenname" -#: company/serializers.py:433 part/serializers.py:955 stock/serializers.py:428 +#: company/serializers.py:460 part/serializers.py:840 stock/serializers.py:428 msgid "In Stock" msgstr "Auf Lager" +#: company/serializers.py:477 +msgid "Price Breaks" +msgstr "" + #: data_exporter/mixins.py:325 data_exporter/mixins.py:403 msgid "Error occurred during data export" msgstr "" @@ -4290,7 +4418,7 @@ msgstr "" msgid "Errors" msgstr "Fehler" -#: importer/models.py:550 part/serializers.py:1268 +#: importer/models.py:550 part/serializers.py:1133 msgid "Valid" msgstr "Gültig" @@ -4402,7 +4530,7 @@ msgstr "Anzahl der zu druckenden Kopien für jedes Label" msgid "Connected" msgstr "Verbunden" -#: machine/machine_types/label_printer.py:232 order/api.py:1795 +#: machine/machine_types/label_printer.py:232 order/api.py:1800 msgid "Unknown" msgstr "Unbekannt" @@ -4530,105 +4658,105 @@ msgstr "" msgid "Maximum value for progress type, required if type=progress" msgstr "" -#: order/api.py:125 +#: order/api.py:130 msgid "Order Reference" msgstr "Bestellreferenz" -#: order/api.py:153 order/api.py:1207 +#: order/api.py:158 order/api.py:1212 msgid "Outstanding" msgstr "Ausstehend" -#: order/api.py:169 +#: order/api.py:174 msgid "Has Project Code" msgstr "" -#: order/api.py:183 order/models.py:488 +#: order/api.py:188 order/models.py:489 msgid "Created By" msgstr "Erstellt von" -#: order/api.py:187 +#: order/api.py:192 msgid "Created Before" msgstr "" -#: order/api.py:191 +#: order/api.py:196 msgid "Created After" msgstr "" -#: order/api.py:195 +#: order/api.py:200 msgid "Has Start Date" msgstr "" -#: order/api.py:203 +#: order/api.py:208 msgid "Start Date Before" msgstr "" -#: order/api.py:207 +#: order/api.py:212 msgid "Start Date After" msgstr "" -#: order/api.py:211 +#: order/api.py:216 msgid "Has Target Date" msgstr "" -#: order/api.py:219 +#: order/api.py:224 msgid "Target Date Before" msgstr "" -#: order/api.py:223 +#: order/api.py:228 msgid "Target Date After" msgstr "" -#: order/api.py:274 +#: order/api.py:279 msgid "Has Pricing" msgstr "Hat Preise" -#: order/api.py:327 order/api.py:812 order/api.py:1490 +#: order/api.py:332 order/api.py:818 order/api.py:1495 msgid "Completed Before" msgstr "" -#: order/api.py:331 order/api.py:816 order/api.py:1494 +#: order/api.py:336 order/api.py:822 order/api.py:1499 msgid "Completed After" msgstr "" -#: order/api.py:337 order/api.py:341 +#: order/api.py:342 order/api.py:346 msgid "External Build Order" msgstr "" -#: order/api.py:526 order/api.py:914 order/api.py:1170 order/models.py:1922 -#: order/models.py:2049 order/models.py:2099 order/models.py:2279 -#: order/models.py:2477 order/models.py:2999 order/models.py:3065 +#: order/api.py:532 order/api.py:919 order/api.py:1175 order/models.py:1923 +#: order/models.py:2050 order/models.py:2100 order/models.py:2280 +#: order/models.py:2478 order/models.py:3000 order/models.py:3066 msgid "Order" msgstr "Bestellung" -#: order/api.py:530 order/api.py:982 +#: order/api.py:536 order/api.py:987 msgid "Order Complete" msgstr "Bestellung abgeschlossen" -#: order/api.py:562 order/api.py:566 order/serializers.py:745 +#: order/api.py:568 order/api.py:572 order/serializers.py:756 msgid "Internal Part" msgstr "Internes Teil" -#: order/api.py:584 +#: order/api.py:590 msgid "Order Pending" msgstr "Bestellung ausstehend" -#: order/api.py:967 +#: order/api.py:972 msgid "Completed" msgstr "Fertig" -#: order/api.py:1223 +#: order/api.py:1228 msgid "Has Shipment" msgstr "" -#: order/api.py:1789 order/models.py:552 order/models.py:1923 -#: order/models.py:2050 +#: order/api.py:1794 order/models.py:553 order/models.py:1924 +#: order/models.py:2051 #: report/templates/report/inventree_purchase_order_report.html:14 #: stock/serializers.py:129 templates/email/overdue_purchase_order.html:15 msgid "Purchase Order" msgstr "Bestellung" -#: order/api.py:1791 order/models.py:1251 order/models.py:2100 -#: order/models.py:2280 order/models.py:2478 +#: order/api.py:1796 order/models.py:1252 order/models.py:2101 +#: order/models.py:2281 order/models.py:2479 #: report/templates/report/inventree_build_order_report.html:135 #: report/templates/report/inventree_sales_order_report.html:14 #: report/templates/report/inventree_sales_order_shipment_report.html:15 @@ -4636,8 +4764,8 @@ msgstr "Bestellung" msgid "Sales Order" msgstr "Auftrag" -#: order/api.py:1793 order/models.py:2649 order/models.py:3000 -#: order/models.py:3066 +#: order/api.py:1798 order/models.py:2650 order/models.py:3001 +#: order/models.py:3067 #: report/templates/report/inventree_return_order_report.html:13 #: templates/email/overdue_return_order.html:15 msgid "Return Order" @@ -4653,722 +4781,722 @@ msgstr "Gesamtpreis" msgid "Total price for this order" msgstr "Gesamtpreis für diese Bestellung" -#: order/models.py:96 order/serializers.py:77 +#: order/models.py:96 order/serializers.py:78 msgid "Order Currency" msgstr "Auftragswährung" -#: order/models.py:99 order/serializers.py:78 +#: order/models.py:99 order/serializers.py:79 msgid "Currency for this order (leave blank to use company default)" msgstr "Währung für diesen Auftrag (leer lassen, um Firmenstandard zu verwenden)" -#: order/models.py:324 +#: order/models.py:325 msgid "This order is locked and cannot be modified" msgstr "" -#: order/models.py:376 +#: order/models.py:377 msgid "Contact does not match selected company" msgstr "Kontakt stimmt nicht mit der ausgewählten Firma überein" -#: order/models.py:383 +#: order/models.py:384 msgid "Start date must be before target date" msgstr "" -#: order/models.py:390 +#: order/models.py:391 msgid "Address does not match selected company" msgstr "" -#: order/models.py:443 +#: order/models.py:444 msgid "Order description (optional)" msgstr "Auftragsbeschreibung (optional)" -#: order/models.py:452 order/models.py:1806 +#: order/models.py:453 order/models.py:1807 msgid "Select project code for this order" msgstr "Projektcode für diesen Auftrag auswählen" -#: order/models.py:458 order/models.py:1787 order/models.py:2344 +#: order/models.py:459 order/models.py:1788 order/models.py:2345 msgid "Link to external page" msgstr "Link auf externe Seite" -#: order/models.py:465 +#: order/models.py:466 msgid "Start date" msgstr "" -#: order/models.py:466 +#: order/models.py:467 msgid "Scheduled start date for this order" msgstr "" -#: order/models.py:472 order/models.py:1794 order/serializers.py:309 +#: order/models.py:473 order/models.py:1795 order/serializers.py:317 #: report/templates/report/inventree_build_order_report.html:125 msgid "Target Date" msgstr "Zieldatum" -#: order/models.py:474 +#: order/models.py:475 msgid "Expected date for order delivery. Order will be overdue after this date." msgstr "Geplantes Lieferdatum für Auftrag." -#: order/models.py:494 +#: order/models.py:495 msgid "Issue Date" msgstr "Aufgabedatum" -#: order/models.py:495 +#: order/models.py:496 msgid "Date order was issued" msgstr "Datum an dem die Bestellung aufgegeben wurde" -#: order/models.py:503 +#: order/models.py:504 msgid "User or group responsible for this order" msgstr "Nutzer oder Gruppe der/die für diesen Auftrag zuständig ist/sind" -#: order/models.py:514 +#: order/models.py:515 msgid "Point of contact for this order" msgstr "Ansprechpartner für diesen Auftrag" -#: order/models.py:524 +#: order/models.py:525 msgid "Company address for this order" msgstr "Firmenadresse für diesen Auftrag" -#: order/models.py:615 order/models.py:1312 +#: order/models.py:616 order/models.py:1313 msgid "Order reference" msgstr "Bestell-Referenz" -#: order/models.py:624 order/models.py:1336 order/models.py:2737 +#: order/models.py:625 order/models.py:1337 order/models.py:2738 #: stock/serializers.py:559 stock/serializers.py:988 users/models.py:542 msgid "Status" msgstr "Status" -#: order/models.py:625 +#: order/models.py:626 msgid "Purchase order status" msgstr "Bestellungs-Status" -#: order/models.py:640 +#: order/models.py:641 msgid "Company from which the items are being ordered" msgstr "Firma bei der die Teile bestellt werden" -#: order/models.py:651 +#: order/models.py:652 msgid "Supplier Reference" msgstr "Zulieferer-Referenz" -#: order/models.py:652 +#: order/models.py:653 msgid "Supplier order reference code" msgstr "Zulieferer Bestellreferenz" -#: order/models.py:661 +#: order/models.py:662 msgid "received by" msgstr "Empfangen von" -#: order/models.py:668 order/models.py:2752 +#: order/models.py:669 order/models.py:2753 msgid "Date order was completed" msgstr "Datum an dem der Auftrag fertigstellt wurde" -#: order/models.py:677 order/models.py:1981 +#: order/models.py:678 order/models.py:1982 msgid "Destination" msgstr "Ziel-Lager" -#: order/models.py:678 order/models.py:1985 +#: order/models.py:679 order/models.py:1986 msgid "Destination for received items" msgstr "" -#: order/models.py:724 +#: order/models.py:725 msgid "Part supplier must match PO supplier" msgstr "Teile-Zulieferer muss dem Zulieferer der Bestellung entsprechen" -#: order/models.py:994 +#: order/models.py:995 msgid "Line item does not match purchase order" msgstr "Position stimmt nicht mit Kaufauftrag überein" -#: order/models.py:997 +#: order/models.py:998 msgid "Line item is missing a linked part" msgstr "" -#: order/models.py:1011 +#: order/models.py:1012 msgid "Quantity must be a positive number" msgstr "Anzahl muss eine positive Zahl sein" -#: order/models.py:1323 order/models.py:2724 stock/models.py:1078 +#: order/models.py:1324 order/models.py:2725 stock/models.py:1078 #: stock/models.py:1079 stock/serializers.py:1322 #: templates/email/overdue_return_order.html:16 #: templates/email/overdue_sales_order.html:16 msgid "Customer" msgstr "Kunde" -#: order/models.py:1324 +#: order/models.py:1325 msgid "Company to which the items are being sold" msgstr "Firma an die die Teile verkauft werden" -#: order/models.py:1337 +#: order/models.py:1338 msgid "Sales order status" msgstr "" -#: order/models.py:1348 order/models.py:2744 +#: order/models.py:1349 order/models.py:2745 msgid "Customer Reference " msgstr "Kundenreferenz" -#: order/models.py:1349 order/models.py:2745 +#: order/models.py:1350 order/models.py:2746 msgid "Customer order reference code" msgstr "Bestellreferenz" -#: order/models.py:1353 order/models.py:2296 +#: order/models.py:1354 order/models.py:2297 msgid "Shipment Date" msgstr "Versanddatum" -#: order/models.py:1362 +#: order/models.py:1363 msgid "shipped by" msgstr "Versand von" -#: order/models.py:1413 +#: order/models.py:1414 msgid "Order is already complete" msgstr "Bestellung ist bereits abgeschlossen" -#: order/models.py:1416 +#: order/models.py:1417 msgid "Order is already cancelled" msgstr "Bestellung ist bereits storniert" -#: order/models.py:1420 +#: order/models.py:1421 msgid "Only an open order can be marked as complete" msgstr "Nur ein offener Auftrag kann als abgeschlossen markiert werden" -#: order/models.py:1424 +#: order/models.py:1425 msgid "Order cannot be completed as there are incomplete shipments" msgstr "Auftrag kann nicht abgeschlossen werden, da unvollständige Sendungen vorhanden sind" -#: order/models.py:1429 +#: order/models.py:1430 msgid "Order cannot be completed as there are incomplete allocations" msgstr "" -#: order/models.py:1438 +#: order/models.py:1439 msgid "Order cannot be completed as there are incomplete line items" msgstr "Auftrag kann nicht abgeschlossen werden, da es unvollständige Positionen gibt" -#: order/models.py:1733 order/models.py:1749 +#: order/models.py:1734 order/models.py:1750 msgid "The order is locked and cannot be modified" msgstr "" -#: order/models.py:1757 +#: order/models.py:1758 msgid "Item quantity" msgstr "Anzahl" -#: order/models.py:1774 +#: order/models.py:1775 msgid "Line item reference" msgstr "Position - Referenz" -#: order/models.py:1781 +#: order/models.py:1782 msgid "Line item notes" msgstr "Position - Notizen" -#: order/models.py:1796 +#: order/models.py:1797 msgid "Target date for this line item (leave blank to use the target date from the order)" msgstr "Zieldatum für diesen Einzelposten (leer lassen, um das Zieldatum des Auftrags zu verwenden)" -#: order/models.py:1826 +#: order/models.py:1827 msgid "Line item description (optional)" msgstr "Positionsbeschreibung (optional)" -#: order/models.py:1833 +#: order/models.py:1834 msgid "Additional context for this line" msgstr "Zusätzlicher Kontext für diese Zeile" -#: order/models.py:1843 +#: order/models.py:1844 msgid "Unit price" msgstr "Stückpreis" -#: order/models.py:1862 +#: order/models.py:1863 msgid "Purchase Order Line Item" msgstr "" -#: order/models.py:1889 +#: order/models.py:1890 msgid "Supplier part must match supplier" msgstr "Lieferantenteil muss mit Lieferant übereinstimmen" -#: order/models.py:1894 +#: order/models.py:1895 msgid "Build order must be marked as external" msgstr "" -#: order/models.py:1901 +#: order/models.py:1902 msgid "Build orders can only be linked to assembly parts" msgstr "" -#: order/models.py:1907 +#: order/models.py:1908 msgid "Build order part must match line item part" msgstr "" -#: order/models.py:1942 +#: order/models.py:1943 msgid "Supplier part" msgstr "Zuliefererteil" -#: order/models.py:1949 +#: order/models.py:1950 msgid "Received" msgstr "Empfangen" -#: order/models.py:1950 +#: order/models.py:1951 msgid "Number of items received" msgstr "Empfangene Objekt-Anzahl" -#: order/models.py:1958 stock/models.py:1201 stock/serializers.py:637 +#: order/models.py:1959 stock/models.py:1201 stock/serializers.py:637 msgid "Purchase Price" msgstr "Preis" -#: order/models.py:1959 +#: order/models.py:1960 msgid "Unit purchase price" msgstr "Preis pro Einheit" -#: order/models.py:1975 +#: order/models.py:1976 msgid "External Build Order to be fulfilled by this line item" msgstr "" -#: order/models.py:2038 +#: order/models.py:2039 msgid "Purchase Order Extra Line" msgstr "" -#: order/models.py:2067 +#: order/models.py:2068 msgid "Sales Order Line Item" msgstr "" -#: order/models.py:2092 +#: order/models.py:2093 msgid "Only salable parts can be assigned to a sales order" msgstr "Nur verkaufbare Teile können einem Auftrag zugewiesen werden" -#: order/models.py:2118 +#: order/models.py:2119 msgid "Sale Price" msgstr "Verkaufspreis" -#: order/models.py:2119 +#: order/models.py:2120 msgid "Unit sale price" msgstr "Stückverkaufspreis" -#: order/models.py:2128 order/status_codes.py:50 +#: order/models.py:2129 order/status_codes.py:50 msgid "Shipped" msgstr "Versendet" -#: order/models.py:2129 +#: order/models.py:2130 msgid "Shipped quantity" msgstr "Versendete Menge" -#: order/models.py:2240 +#: order/models.py:2241 msgid "Sales Order Shipment" msgstr "" -#: order/models.py:2253 +#: order/models.py:2254 msgid "Shipment address must match the customer" msgstr "" -#: order/models.py:2289 +#: order/models.py:2290 msgid "Shipping address for this shipment" msgstr "" -#: order/models.py:2297 +#: order/models.py:2298 msgid "Date of shipment" msgstr "Versanddatum" -#: order/models.py:2303 +#: order/models.py:2304 msgid "Delivery Date" msgstr "Lieferdatum" -#: order/models.py:2304 +#: order/models.py:2305 msgid "Date of delivery of shipment" msgstr "Versanddatum" -#: order/models.py:2312 +#: order/models.py:2313 msgid "Checked By" msgstr "Kontrolliert von" -#: order/models.py:2313 +#: order/models.py:2314 msgid "User who checked this shipment" msgstr "Benutzer, der diese Sendung kontrolliert hat" -#: order/models.py:2320 order/models.py:2574 order/serializers.py:1711 -#: order/serializers.py:1835 +#: order/models.py:2321 order/models.py:2575 order/serializers.py:1725 +#: order/serializers.py:1849 #: report/templates/report/inventree_sales_order_shipment_report.html:14 msgid "Shipment" msgstr "Sendung" -#: order/models.py:2321 +#: order/models.py:2322 msgid "Shipment number" msgstr "Sendungsnummer" -#: order/models.py:2329 +#: order/models.py:2330 msgid "Tracking Number" msgstr "Sendungsverfolgungsnummer" -#: order/models.py:2330 +#: order/models.py:2331 msgid "Shipment tracking information" msgstr "Informationen zur Sendungsverfolgung" -#: order/models.py:2337 +#: order/models.py:2338 msgid "Invoice Number" msgstr "Rechnungsnummer" -#: order/models.py:2338 +#: order/models.py:2339 msgid "Reference number for associated invoice" msgstr "Referenznummer für zugehörige Rechnung" -#: order/models.py:2377 +#: order/models.py:2378 msgid "Shipment has already been sent" msgstr "Sendung wurde bereits versandt" -#: order/models.py:2380 +#: order/models.py:2381 msgid "Shipment has no allocated stock items" msgstr "Sendung hat keine zugewiesene Lagerartikel" -#: order/models.py:2387 +#: order/models.py:2388 msgid "Shipment must be checked before it can be completed" msgstr "" -#: order/models.py:2466 +#: order/models.py:2467 msgid "Sales Order Extra Line" msgstr "" -#: order/models.py:2495 +#: order/models.py:2496 msgid "Sales Order Allocation" msgstr "" -#: order/models.py:2518 order/models.py:2520 +#: order/models.py:2519 order/models.py:2521 msgid "Stock item has not been assigned" msgstr "Lagerartikel wurde nicht zugewiesen" -#: order/models.py:2527 +#: order/models.py:2528 msgid "Cannot allocate stock item to a line with a different part" msgstr "Kann Lagerartikel keiner Zeile mit einem anderen Teil hinzufügen" -#: order/models.py:2530 +#: order/models.py:2531 msgid "Cannot allocate stock to a line without a part" msgstr "Kann Lagerartikel keiner Zeile ohne Teil hinzufügen" -#: order/models.py:2533 +#: order/models.py:2534 msgid "Allocation quantity cannot exceed stock quantity" msgstr "Die zugeordnete Anzahl darf nicht die verfügbare Anzahl überschreiten" -#: order/models.py:2552 order/serializers.py:1581 +#: order/models.py:2553 order/serializers.py:1595 msgid "Quantity must be 1 for serialized stock item" msgstr "Anzahl für serialisierte Lagerartikel muss 1 sein" -#: order/models.py:2555 +#: order/models.py:2556 msgid "Sales order does not match shipment" msgstr "Auftrag gehört nicht zu Sendung" -#: order/models.py:2556 plugin/base/barcodes/api.py:642 +#: order/models.py:2557 plugin/base/barcodes/api.py:642 msgid "Shipment does not match sales order" msgstr "Sendung gehört nicht zu Auftrag" -#: order/models.py:2564 +#: order/models.py:2565 msgid "Line" msgstr "Position" -#: order/models.py:2575 +#: order/models.py:2576 msgid "Sales order shipment reference" msgstr "Sendungsnummer-Referenz" -#: order/models.py:2588 order/models.py:3007 +#: order/models.py:2589 order/models.py:3008 msgid "Item" msgstr "Position" -#: order/models.py:2589 +#: order/models.py:2590 msgid "Select stock item to allocate" msgstr "Lagerartikel für Zuordnung auswählen" -#: order/models.py:2598 +#: order/models.py:2599 msgid "Enter stock allocation quantity" msgstr "Anzahl für Bestandszuordnung eingeben" -#: order/models.py:2713 +#: order/models.py:2714 msgid "Return Order reference" msgstr "Rücksendungsreferenz" -#: order/models.py:2725 +#: order/models.py:2726 msgid "Company from which items are being returned" msgstr "Firma von der die Artikel zurückgeschickt werden" -#: order/models.py:2738 +#: order/models.py:2739 msgid "Return order status" msgstr "Status der Rücksendung" -#: order/models.py:2965 +#: order/models.py:2966 msgid "Return Order Line Item" msgstr "" -#: order/models.py:2978 +#: order/models.py:2979 msgid "Stock item must be specified" msgstr "" -#: order/models.py:2982 +#: order/models.py:2983 msgid "Return quantity exceeds stock quantity" msgstr "" -#: order/models.py:2987 +#: order/models.py:2988 msgid "Return quantity must be greater than zero" msgstr "" -#: order/models.py:2992 +#: order/models.py:2993 msgid "Invalid quantity for serialized stock item" msgstr "" -#: order/models.py:3008 +#: order/models.py:3009 msgid "Select item to return from customer" msgstr "Artikel zur Rücksendung auswählen" -#: order/models.py:3023 +#: order/models.py:3024 msgid "Received Date" msgstr "Empfangsdatum" -#: order/models.py:3024 +#: order/models.py:3025 msgid "The date this this return item was received" msgstr "Das Datum des Empfangs dieses Rücksendeartikels" -#: order/models.py:3036 +#: order/models.py:3037 msgid "Outcome" msgstr "Ergebnis" -#: order/models.py:3037 +#: order/models.py:3038 msgid "Outcome for this line item" msgstr "Ergebnis für dieses Zeilenelement" -#: order/models.py:3044 +#: order/models.py:3045 msgid "Cost associated with return or repair for this line item" msgstr "Kosten für die Rückgabe oder Reparatur dieses Objektes" -#: order/models.py:3054 +#: order/models.py:3055 msgid "Return Order Extra Line" msgstr "" -#: order/serializers.py:91 +#: order/serializers.py:92 msgid "Order ID" msgstr "" -#: order/serializers.py:91 +#: order/serializers.py:92 msgid "ID of the order to duplicate" msgstr "" -#: order/serializers.py:97 +#: order/serializers.py:98 msgid "Copy Lines" msgstr "" -#: order/serializers.py:98 +#: order/serializers.py:99 msgid "Copy line items from the original order" msgstr "" -#: order/serializers.py:104 +#: order/serializers.py:105 msgid "Copy Extra Lines" msgstr "" -#: order/serializers.py:105 +#: order/serializers.py:106 msgid "Copy extra line items from the original order" msgstr "" -#: order/serializers.py:120 +#: order/serializers.py:121 #: report/templates/report/inventree_purchase_order_report.html:29 #: report/templates/report/inventree_return_order_report.html:19 #: report/templates/report/inventree_sales_order_report.html:22 msgid "Line Items" msgstr "Positionen" -#: order/serializers.py:125 +#: order/serializers.py:126 msgid "Completed Lines" msgstr "Abgeschlossene Positionen" -#: order/serializers.py:192 +#: order/serializers.py:199 msgid "Duplicate Order" msgstr "" -#: order/serializers.py:193 +#: order/serializers.py:200 msgid "Specify options for duplicating this order" msgstr "" -#: order/serializers.py:270 +#: order/serializers.py:278 msgid "Invalid order ID" msgstr "" -#: order/serializers.py:466 +#: order/serializers.py:477 msgid "Supplier Name" msgstr "Lieferant" -#: order/serializers.py:510 +#: order/serializers.py:521 msgid "Order cannot be cancelled" msgstr "Bestellung kann nicht verworfen werden" -#: order/serializers.py:525 order/serializers.py:1602 +#: order/serializers.py:536 order/serializers.py:1616 msgid "Allow order to be closed with incomplete line items" msgstr "Erlaube das Schließen des Auftrags mit unvollständigen Positionen" -#: order/serializers.py:535 order/serializers.py:1612 +#: order/serializers.py:546 order/serializers.py:1626 msgid "Order has incomplete line items" msgstr "Auftrag hat unvollständige Positionen" -#: order/serializers.py:665 +#: order/serializers.py:676 msgid "Order is not open" msgstr "Der Auftrag ist nicht offen" -#: order/serializers.py:692 +#: order/serializers.py:703 msgid "Auto Pricing" msgstr "Automatische Preisgestaltung" -#: order/serializers.py:694 +#: order/serializers.py:705 msgid "Automatically calculate purchase price based on supplier part data" msgstr "Kaufpreis automatisch basierend auf Lieferantenbestandsdaten berechnen" -#: order/serializers.py:704 +#: order/serializers.py:715 msgid "Purchase price currency" msgstr "Kaufpreiswährung" -#: order/serializers.py:718 +#: order/serializers.py:729 msgid "Merge Items" msgstr "Elemente zusammenfügen" -#: order/serializers.py:720 +#: order/serializers.py:731 msgid "Merge items with the same part, destination and target date into one line item" msgstr "Zusammenführen von Elementen mit dem gleichen Teil, Ziel- und Zieldatum zu einem Zeilenelement" -#: order/serializers.py:727 part/serializers.py:560 +#: order/serializers.py:738 part/serializers.py:471 msgid "SKU" msgstr "Lieferanten-Teilenummer" -#: order/serializers.py:741 part/models.py:1089 part/serializers.py:372 +#: order/serializers.py:752 part/models.py:1177 part/serializers.py:337 msgid "Internal Part Number" msgstr "Interne Teilenummer" -#: order/serializers.py:749 +#: order/serializers.py:760 msgid "Internal Part Name" msgstr "" -#: order/serializers.py:765 +#: order/serializers.py:776 msgid "Supplier part must be specified" msgstr "Zuliefererteil muss ausgewählt werden" -#: order/serializers.py:768 +#: order/serializers.py:779 msgid "Purchase order must be specified" msgstr "Bestellung muss angegeben sein" -#: order/serializers.py:776 +#: order/serializers.py:787 msgid "Supplier must match purchase order" msgstr "Lieferant muss mit der Bestellung übereinstimmen" -#: order/serializers.py:777 +#: order/serializers.py:788 msgid "Purchase order must match supplier" msgstr "Die Bestellung muss mit dem Lieferant übereinstimmen" -#: order/serializers.py:825 order/serializers.py:1682 +#: order/serializers.py:836 order/serializers.py:1696 msgid "Line Item" msgstr "Position" -#: order/serializers.py:834 order/serializers.py:974 order/serializers.py:2043 +#: order/serializers.py:845 order/serializers.py:985 order/serializers.py:2060 msgid "Select destination location for received items" msgstr "Zielort für empfangene Teile auswählen" -#: order/serializers.py:850 +#: order/serializers.py:861 msgid "Enter batch code for incoming stock items" msgstr "Losnummer für eingehende Lagerartikel" -#: order/serializers.py:857 stock/models.py:1160 +#: order/serializers.py:868 stock/models.py:1160 #: templates/email/stale_stock_notification.html:22 users/models.py:137 msgid "Expiry Date" msgstr "Ablaufdatum" -#: order/serializers.py:858 +#: order/serializers.py:869 msgid "Enter expiry date for incoming stock items" msgstr "" -#: order/serializers.py:866 +#: order/serializers.py:877 msgid "Enter serial numbers for incoming stock items" msgstr "Seriennummern für eingehende Lagerartikel" -#: order/serializers.py:876 +#: order/serializers.py:887 msgid "Override packaging information for incoming stock items" msgstr "" -#: order/serializers.py:884 order/serializers.py:2048 +#: order/serializers.py:895 order/serializers.py:2065 msgid "Additional note for incoming stock items" msgstr "" -#: order/serializers.py:891 +#: order/serializers.py:902 msgid "Barcode" msgstr "Barcode" -#: order/serializers.py:892 +#: order/serializers.py:903 msgid "Scanned barcode" msgstr "Gescannter Barcode" -#: order/serializers.py:908 +#: order/serializers.py:919 msgid "Barcode is already in use" msgstr "Barcode ist bereits in Verwendung" -#: order/serializers.py:991 order/serializers.py:2067 +#: order/serializers.py:1002 order/serializers.py:2084 msgid "Line items must be provided" msgstr "Positionen müssen angegeben werden" -#: order/serializers.py:1010 +#: order/serializers.py:1021 msgid "Destination location must be specified" msgstr "Ziel-Lagerort muss angegeben werden" -#: order/serializers.py:1017 +#: order/serializers.py:1028 msgid "Supplied barcode values must be unique" msgstr "Barcode muss eindeutig sein" -#: order/serializers.py:1121 +#: order/serializers.py:1135 msgid "Shipments" msgstr "" -#: order/serializers.py:1125 +#: order/serializers.py:1139 msgid "Completed Shipments" msgstr "Abgeschlossene Sendungen" -#: order/serializers.py:1293 +#: order/serializers.py:1307 msgid "Sale price currency" msgstr "Verkaufspreis-Währung" -#: order/serializers.py:1339 +#: order/serializers.py:1353 msgid "Allocated Items" msgstr "" -#: order/serializers.py:1484 +#: order/serializers.py:1498 msgid "No shipment details provided" msgstr "Keine Sendungsdetails angegeben" -#: order/serializers.py:1545 order/serializers.py:1691 +#: order/serializers.py:1559 order/serializers.py:1705 msgid "Line item is not associated with this order" msgstr "Position ist nicht diesem Auftrag zugeordnet" -#: order/serializers.py:1564 +#: order/serializers.py:1578 msgid "Quantity must be positive" msgstr "Anzahl muss positiv sein" -#: order/serializers.py:1701 +#: order/serializers.py:1715 msgid "Enter serial numbers to allocate" msgstr "Seriennummern zum Zuweisen eingeben" -#: order/serializers.py:1723 order/serializers.py:1843 +#: order/serializers.py:1737 order/serializers.py:1857 msgid "Shipment has already been shipped" msgstr "Sendung wurde bereits versandt" -#: order/serializers.py:1726 order/serializers.py:1846 +#: order/serializers.py:1740 order/serializers.py:1860 msgid "Shipment is not associated with this order" msgstr "Sendung ist nicht diesem Auftrag zugeordnet" -#: order/serializers.py:1781 +#: order/serializers.py:1795 msgid "No match found for the following serial numbers" msgstr "Folgende Serienummern konnten nicht gefunden werden" -#: order/serializers.py:1788 +#: order/serializers.py:1802 msgid "The following serial numbers are unavailable" msgstr "" -#: order/serializers.py:2009 +#: order/serializers.py:2026 msgid "Return order line item" msgstr "Artikel der Bestellzeile zurücksenden" -#: order/serializers.py:2019 +#: order/serializers.py:2036 msgid "Line item does not match return order" msgstr "Artikel entspricht nicht der Rücksendeschrift" -#: order/serializers.py:2022 +#: order/serializers.py:2039 msgid "Line item has already been received" msgstr "Artikel wurde bereits erhalten" -#: order/serializers.py:2059 +#: order/serializers.py:2076 msgid "Items can only be received against orders which are in progress" msgstr "Artikel können nur bei laufenden Bestellungen empfangen werden" -#: order/serializers.py:2124 +#: order/serializers.py:2141 msgid "Quantity to return" msgstr "" -#: order/serializers.py:2140 +#: order/serializers.py:2157 msgid "Line price currency" msgstr "Verkaufspreis-Währung" @@ -5431,1190 +5559,1109 @@ msgstr "" msgid "Return order {ro} is now overdue" msgstr "" -#: part/api.py:108 +#: part/api.py:103 msgid "Starred" msgstr "Markiert" -#: part/api.py:110 +#: part/api.py:105 msgid "Filter by starred categories" msgstr "Nach markierten Kategorien filtern" -#: part/api.py:127 stock/api.py:288 +#: part/api.py:122 stock/api.py:288 msgid "Depth" msgstr "Ebenen" -#: part/api.py:127 +#: part/api.py:122 msgid "Filter by category depth" msgstr "Filter nach Kategorietiefe" -#: part/api.py:145 stock/api.py:306 +#: part/api.py:140 stock/api.py:306 msgid "Top Level" msgstr "Oberste Ebene" -#: part/api.py:147 +#: part/api.py:142 msgid "Filter by top-level categories" msgstr "" -#: part/api.py:160 stock/api.py:321 +#: part/api.py:155 stock/api.py:321 msgid "Cascade" msgstr "Mehrstufig" -#: part/api.py:162 +#: part/api.py:157 msgid "Include sub-categories in filtered results" msgstr "Unterkategorien in gefilterte Ergebnisse einbeziehen" -#: part/api.py:182 +#: part/api.py:177 msgid "Parent" msgstr "Übergeordnetes" -#: part/api.py:184 +#: part/api.py:179 msgid "Filter by parent category" msgstr "Nach übergeordneter Kategorie filtern" -#: part/api.py:219 +#: part/api.py:214 msgid "Exclude sub-categories under the specified category" msgstr "Unterkategorien in der angegebenen Kategorie ausschließen" -#: part/api.py:445 +#: part/api.py:440 msgid "Has Results" msgstr "Ergebnisse" -#: part/api.py:666 +#: part/api.py:661 msgid "Is Variant" msgstr "" -#: part/api.py:674 +#: part/api.py:669 msgid "Is Revision" msgstr "" -#: part/api.py:684 +#: part/api.py:679 msgid "Has Revisions" msgstr "" -#: part/api.py:865 +#: part/api.py:860 msgid "BOM Valid" msgstr "" -#: part/api.py:974 +#: part/api.py:969 msgid "Cascade Categories" msgstr "" -#: part/api.py:975 +#: part/api.py:970 msgid "If true, include items in child categories of the given category" msgstr "" -#: part/api.py:981 +#: part/api.py:976 msgid "Filter by numeric category ID or the literal 'null'" msgstr "" -#: part/api.py:1533 +#: part/api.py:1258 msgid "Assembly part is testable" msgstr "" -#: part/api.py:1542 +#: part/api.py:1267 msgid "Component part is testable" msgstr "" -#: part/api.py:1611 +#: part/api.py:1336 msgid "Uses" msgstr "Verwendet" -#: part/models.py:96 part/models.py:4163 +#: part/models.py:93 part/models.py:436 #: templates/email/part_event_notification.html:16 msgid "Part Category" msgstr "Teil-Kategorie" -#: part/models.py:97 users/ruleset.py:27 +#: part/models.py:94 users/ruleset.py:27 msgid "Part Categories" msgstr "Teil-Kategorien" -#: part/models.py:115 part/models.py:1125 +#: part/models.py:112 part/models.py:1213 msgid "Default Location" msgstr "Standard-Lagerort" -#: part/models.py:116 +#: part/models.py:113 msgid "Default location for parts in this category" msgstr "Standard-Lagerort für Teile dieser Kategorie" -#: part/models.py:121 stock/models.py:216 +#: part/models.py:118 stock/models.py:216 msgid "Structural" msgstr "Strukturell" -#: part/models.py:123 +#: part/models.py:120 msgid "Parts may not be directly assigned to a structural category, but may be assigned to child categories." msgstr "Teile können nicht direkt einer strukturellen Kategorie zugeordnet werden, können aber untergeordneten Kategorien zugeordnet werden." -#: part/models.py:132 +#: part/models.py:129 msgid "Default keywords" msgstr "Standard Stichwörter" -#: part/models.py:133 +#: part/models.py:130 msgid "Default keywords for parts in this category" msgstr "Standard-Stichworte für Teile dieser Kategorie" -#: part/models.py:140 stock/models.py:97 stock/models.py:198 +#: part/models.py:137 stock/models.py:97 stock/models.py:198 msgid "Icon" msgstr "Symbol" -#: part/models.py:141 part/serializers.py:148 part/serializers.py:167 +#: part/models.py:138 part/serializers.py:147 part/serializers.py:166 #: stock/models.py:199 msgid "Icon (optional)" msgstr "Symbol (optional)" -#: part/models.py:185 +#: part/models.py:182 msgid "You cannot make this part category structural because some parts are already assigned to it!" msgstr "Sie können diese Teilekategorie nicht als strukturell festlegen, da ihr bereits Teile zugewiesen sind!" -#: part/models.py:473 part/serializers.py:119 part/serializers.py:310 -#: users/ruleset.py:28 +#: part/models.py:392 +msgid "Part Category Parameter Template" +msgstr "" + +#: part/models.py:448 +msgid "Default Value" +msgstr "Standard-Wert" + +#: part/models.py:449 +msgid "Default Parameter Value" +msgstr "Standard Parameter Wert" + +#: part/models.py:551 part/serializers.py:118 users/ruleset.py:28 msgid "Parts" msgstr "Teile" -#: part/models.py:525 +#: part/models.py:597 +msgid "Cannot delete parameters of a locked part" +msgstr "" + +#: part/models.py:602 +msgid "Cannot modify parameters of a locked part" +msgstr "" + +#: part/models.py:613 msgid "Cannot delete this part as it is locked" msgstr "" -#: part/models.py:528 +#: part/models.py:616 msgid "Cannot delete this part as it is still active" msgstr "Dieses Teil kann nicht gelöscht werden, da es noch aktiv ist" -#: part/models.py:533 +#: part/models.py:621 msgid "Cannot delete this part as it is used in an assembly" msgstr "Dieses Teil kann nicht gelöscht werden, da es in einem Bauauftrag verwendet wird" -#: part/models.py:616 part/models.py:623 +#: part/models.py:704 part/models.py:711 #, python-brace-format msgid "Part '{self}' cannot be used in BOM for '{parent}' (recursive)" msgstr "Teil '{self}' kann in der Stückliste nicht für '{parent}' (rekursiv) verwendet werden" -#: part/models.py:635 +#: part/models.py:723 #, python-brace-format msgid "Part '{parent}' is used in BOM for '{self}' (recursive)" msgstr "Teil '{parent}' wird in der Stückliste für '{self}' (rekursiv) verwendet" -#: part/models.py:702 +#: part/models.py:790 #, python-brace-format msgid "IPN must match regex pattern {pattern}" msgstr "IPN muss mit Regex-Muster {pattern} übereinstimmen" -#: part/models.py:710 +#: part/models.py:798 msgid "Part cannot be a revision of itself" msgstr "" -#: part/models.py:717 +#: part/models.py:805 msgid "Cannot make a revision of a part which is already a revision" msgstr "" -#: part/models.py:724 +#: part/models.py:812 msgid "Revision code must be specified" msgstr "" -#: part/models.py:731 +#: part/models.py:819 msgid "Revisions are only allowed for assembly parts" msgstr "" -#: part/models.py:738 +#: part/models.py:826 msgid "Cannot make a revision of a template part" msgstr "" -#: part/models.py:744 +#: part/models.py:832 msgid "Parent part must point to the same template" msgstr "" -#: part/models.py:841 +#: part/models.py:929 msgid "Stock item with this serial number already exists" msgstr "Ein Lagerartikel mit dieser Seriennummer existiert bereits" -#: part/models.py:971 +#: part/models.py:1059 msgid "Duplicate IPN not allowed in part settings" msgstr "Doppelte IPN in den Teil-Einstellungen nicht erlaubt" -#: part/models.py:983 +#: part/models.py:1071 msgid "Duplicate part revision already exists." msgstr "" -#: part/models.py:992 +#: part/models.py:1080 msgid "Part with this Name, IPN and Revision already exists." msgstr "Teil mit diesem Namen, IPN und Revision existiert bereits." -#: part/models.py:1007 +#: part/models.py:1095 msgid "Parts cannot be assigned to structural part categories!" msgstr "Strukturellen Teilekategorien können keine Teile zugewiesen werden!" -#: part/models.py:1039 +#: part/models.py:1127 msgid "Part name" msgstr "Name des Teils" -#: part/models.py:1044 +#: part/models.py:1132 msgid "Is Template" msgstr "Ist eine Vorlage" -#: part/models.py:1045 +#: part/models.py:1133 msgid "Is this part a template part?" msgstr "Ist dieses Teil eine Vorlage?" -#: part/models.py:1055 +#: part/models.py:1143 msgid "Is this part a variant of another part?" msgstr "Ist dieses Teil eine Variante eines anderen Teils?" -#: part/models.py:1056 +#: part/models.py:1144 msgid "Variant Of" msgstr "Variante von" -#: part/models.py:1063 +#: part/models.py:1151 msgid "Part description (optional)" msgstr "Artikelbeschreibung (optional)" -#: part/models.py:1070 +#: part/models.py:1158 msgid "Keywords" msgstr "Schlüsselwörter" -#: part/models.py:1071 +#: part/models.py:1159 msgid "Part keywords to improve visibility in search results" msgstr "Schlüsselworte um die Sichtbarkeit in Suchergebnissen zu verbessern" -#: part/models.py:1081 +#: part/models.py:1169 msgid "Part category" msgstr "Teile-Kategorie" -#: part/models.py:1088 part/serializers.py:929 +#: part/models.py:1176 part/serializers.py:814 #: report/templates/report/inventree_stock_location_report.html:103 msgid "IPN" msgstr "IPN (Interne Produktnummer)" -#: part/models.py:1096 +#: part/models.py:1184 msgid "Part revision or version number" msgstr "Revisions- oder Versionsnummer" -#: part/models.py:1097 report/models.py:228 +#: part/models.py:1185 report/models.py:228 msgid "Revision" msgstr "Version" -#: part/models.py:1106 +#: part/models.py:1194 msgid "Is this part a revision of another part?" msgstr "" -#: part/models.py:1107 +#: part/models.py:1195 msgid "Revision Of" msgstr "" -#: part/models.py:1123 +#: part/models.py:1211 msgid "Where is this item normally stored?" msgstr "Wo wird dieses Teil normalerweise gelagert?" -#: part/models.py:1169 +#: part/models.py:1257 msgid "Default Supplier" msgstr "Standard Zulieferer" -#: part/models.py:1170 +#: part/models.py:1258 msgid "Default supplier part" msgstr "Standard Zuliefererteil" -#: part/models.py:1177 +#: part/models.py:1265 msgid "Default Expiry" msgstr "Standard Ablaufzeit" -#: part/models.py:1178 +#: part/models.py:1266 msgid "Expiry time (in days) for stock items of this part" msgstr "Ablauf-Zeit (in Tagen) für Bestand dieses Teils" -#: part/models.py:1186 part/serializers.py:1003 +#: part/models.py:1274 part/serializers.py:888 msgid "Minimum Stock" msgstr "Minimaler Bestand" -#: part/models.py:1187 +#: part/models.py:1275 msgid "Minimum allowed stock level" msgstr "Minimal zulässiger Bestand" -#: part/models.py:1196 +#: part/models.py:1284 msgid "Units of measure for this part" msgstr "Maßeinheit für diesen Teil" -#: part/models.py:1203 +#: part/models.py:1291 msgid "Can this part be built from other parts?" msgstr "Kann dieses Teil aus anderen Teilen angefertigt werden?" -#: part/models.py:1209 +#: part/models.py:1297 msgid "Can this part be used to build other parts?" msgstr "Kann dieses Teil zum Bauauftrag von anderen genutzt werden?" -#: part/models.py:1215 +#: part/models.py:1303 msgid "Does this part have tracking for unique items?" msgstr "Hat dieses Teil Tracking für einzelne Objekte?" -#: part/models.py:1221 +#: part/models.py:1309 msgid "Can this part have test results recorded against it?" msgstr "" -#: part/models.py:1227 +#: part/models.py:1315 msgid "Can this part be purchased from external suppliers?" msgstr "Kann dieses Teil von externen Zulieferern gekauft werden?" -#: part/models.py:1233 +#: part/models.py:1321 msgid "Can this part be sold to customers?" msgstr "Kann dieses Teil an Kunden verkauft werden?" -#: part/models.py:1237 +#: part/models.py:1325 msgid "Is this part active?" msgstr "Ist dieses Teil aktiv?" -#: part/models.py:1243 +#: part/models.py:1331 msgid "Locked parts cannot be edited" msgstr "" -#: part/models.py:1249 +#: part/models.py:1337 msgid "Is this a virtual part, such as a software product or license?" msgstr "Ist dieses Teil virtuell, wie zum Beispiel eine Software oder Lizenz?" -#: part/models.py:1254 +#: part/models.py:1342 msgid "BOM Validated" msgstr "" -#: part/models.py:1255 +#: part/models.py:1343 msgid "Is the BOM for this part valid?" msgstr "" -#: part/models.py:1261 +#: part/models.py:1349 msgid "BOM checksum" msgstr "Prüfsumme der Stückliste" -#: part/models.py:1262 +#: part/models.py:1350 msgid "Stored BOM checksum" msgstr "Prüfsumme der Stückliste gespeichert" -#: part/models.py:1270 +#: part/models.py:1358 msgid "BOM checked by" msgstr "Stückliste kontrolliert von" -#: part/models.py:1275 +#: part/models.py:1363 msgid "BOM checked date" msgstr "BOM Kontrolldatum" -#: part/models.py:1291 +#: part/models.py:1379 msgid "Creation User" msgstr "Erstellungs-Nutzer" -#: part/models.py:1301 +#: part/models.py:1389 msgid "Owner responsible for this part" msgstr "Verantwortlicher Besitzer für dieses Teil" -#: part/models.py:2258 +#: part/models.py:2346 msgid "Sell multiple" msgstr "Mehrere verkaufen" -#: part/models.py:3286 +#: part/models.py:3350 msgid "Currency used to cache pricing calculations" msgstr "Währung für die Berechnung der Preise im Cache" -#: part/models.py:3302 +#: part/models.py:3366 msgid "Minimum BOM Cost" msgstr "Minimale Stücklisten Kosten" -#: part/models.py:3303 +#: part/models.py:3367 msgid "Minimum cost of component parts" msgstr "Minimale Kosten für Teile" -#: part/models.py:3309 +#: part/models.py:3373 msgid "Maximum BOM Cost" msgstr "Maximale Stücklisten Kosten" -#: part/models.py:3310 +#: part/models.py:3374 msgid "Maximum cost of component parts" msgstr "Maximale Kosten für Teile" -#: part/models.py:3316 +#: part/models.py:3380 msgid "Minimum Purchase Cost" msgstr "Minimale Einkaufskosten" -#: part/models.py:3317 +#: part/models.py:3381 msgid "Minimum historical purchase cost" msgstr "Minimale historische Kaufkosten" -#: part/models.py:3323 +#: part/models.py:3387 msgid "Maximum Purchase Cost" msgstr "Maximale Einkaufskosten" -#: part/models.py:3324 +#: part/models.py:3388 msgid "Maximum historical purchase cost" msgstr "Maximale historische Einkaufskosten" -#: part/models.py:3330 +#: part/models.py:3394 msgid "Minimum Internal Price" msgstr "Minimaler interner Preis" -#: part/models.py:3331 +#: part/models.py:3395 msgid "Minimum cost based on internal price breaks" msgstr "Minimale Kosten basierend auf den internen Staffelpreisen" -#: part/models.py:3337 +#: part/models.py:3401 msgid "Maximum Internal Price" msgstr "Maximaler interner Preis" -#: part/models.py:3338 +#: part/models.py:3402 msgid "Maximum cost based on internal price breaks" msgstr "Maximale Kosten basierend auf internen Preisstaffeln" -#: part/models.py:3344 +#: part/models.py:3408 msgid "Minimum Supplier Price" msgstr "Minimaler Lieferantenpreis" -#: part/models.py:3345 +#: part/models.py:3409 msgid "Minimum price of part from external suppliers" msgstr "Mindestpreis für Teil von externen Lieferanten" -#: part/models.py:3351 +#: part/models.py:3415 msgid "Maximum Supplier Price" msgstr "Maximaler Lieferantenpreis" -#: part/models.py:3352 +#: part/models.py:3416 msgid "Maximum price of part from external suppliers" msgstr "Maximaler Preis für Teil von externen Lieferanten" -#: part/models.py:3358 +#: part/models.py:3422 msgid "Minimum Variant Cost" msgstr "Minimale Variantenkosten" -#: part/models.py:3359 +#: part/models.py:3423 msgid "Calculated minimum cost of variant parts" msgstr "Berechnete minimale Kosten für Variantenteile" -#: part/models.py:3365 +#: part/models.py:3429 msgid "Maximum Variant Cost" msgstr "Maximale Variantenkosten" -#: part/models.py:3366 +#: part/models.py:3430 msgid "Calculated maximum cost of variant parts" msgstr "Berechnete maximale Kosten für Variantenteile" -#: part/models.py:3372 part/models.py:3386 +#: part/models.py:3436 part/models.py:3450 msgid "Minimum Cost" msgstr "Minimale Kosten" -#: part/models.py:3373 +#: part/models.py:3437 msgid "Override minimum cost" msgstr "Mindestkosten überschreiben" -#: part/models.py:3379 part/models.py:3393 +#: part/models.py:3443 part/models.py:3457 msgid "Maximum Cost" msgstr "Maximale Kosten" -#: part/models.py:3380 +#: part/models.py:3444 msgid "Override maximum cost" msgstr "Maximale Kosten überschreiben" -#: part/models.py:3387 +#: part/models.py:3451 msgid "Calculated overall minimum cost" msgstr "Berechnete Mindestkosten" -#: part/models.py:3394 +#: part/models.py:3458 msgid "Calculated overall maximum cost" msgstr "Berechnete Maximalkosten" -#: part/models.py:3400 +#: part/models.py:3464 msgid "Minimum Sale Price" msgstr "Mindestverkaufspreis" -#: part/models.py:3401 +#: part/models.py:3465 msgid "Minimum sale price based on price breaks" msgstr "Mindestverkaufspreis basierend auf Staffelpreisen" -#: part/models.py:3407 +#: part/models.py:3471 msgid "Maximum Sale Price" msgstr "Maximaler Verkaufspreis" -#: part/models.py:3408 +#: part/models.py:3472 msgid "Maximum sale price based on price breaks" msgstr "Maximalverkaufspreis basierend auf Staffelpreisen" -#: part/models.py:3414 +#: part/models.py:3478 msgid "Minimum Sale Cost" msgstr "Mindestverkaufskosten" -#: part/models.py:3415 +#: part/models.py:3479 msgid "Minimum historical sale price" msgstr "Minimaler historischer Verkaufspreis" -#: part/models.py:3421 +#: part/models.py:3485 msgid "Maximum Sale Cost" msgstr "Maximale Verkaufskosten" -#: part/models.py:3422 +#: part/models.py:3486 msgid "Maximum historical sale price" msgstr "Maximaler historischer Verkaufspreis" -#: part/models.py:3440 +#: part/models.py:3504 msgid "Part for stocktake" msgstr "Teil für die Inventur" -#: part/models.py:3445 +#: part/models.py:3509 msgid "Item Count" msgstr "Stückzahl" -#: part/models.py:3446 +#: part/models.py:3510 msgid "Number of individual stock entries at time of stocktake" msgstr "Anzahl einzelner Bestandseinträge zum Zeitpunkt der Inventur" -#: part/models.py:3454 +#: part/models.py:3518 msgid "Total available stock at time of stocktake" msgstr "Insgesamt verfügbarer Lagerbestand zum Zeitpunkt der Inventur" -#: part/models.py:3458 report/templates/report/inventree_test_report.html:106 +#: part/models.py:3522 report/templates/report/inventree_test_report.html:106 msgid "Date" msgstr "Datum" -#: part/models.py:3459 +#: part/models.py:3523 msgid "Date stocktake was performed" msgstr "Datum der Inventur" -#: part/models.py:3466 +#: part/models.py:3530 msgid "Minimum Stock Cost" msgstr "Mindestbestandswert" -#: part/models.py:3467 +#: part/models.py:3531 msgid "Estimated minimum cost of stock on hand" msgstr "Geschätzter Mindestwert des vorhandenen Bestands" -#: part/models.py:3473 +#: part/models.py:3537 msgid "Maximum Stock Cost" msgstr "Maximaler Bestandswert" -#: part/models.py:3474 +#: part/models.py:3538 msgid "Estimated maximum cost of stock on hand" msgstr "Geschätzter Maximalwert des vorhandenen Bestands" -#: part/models.py:3484 +#: part/models.py:3548 msgid "Part Sale Price Break" msgstr "" -#: part/models.py:3596 +#: part/models.py:3660 msgid "Part Test Template" msgstr "" -#: part/models.py:3622 +#: part/models.py:3686 msgid "Invalid template name - must include at least one alphanumeric character" msgstr "Ungültiger Vorlagenname - es muss mindestens ein alphanumerisches Zeichen enthalten sein" -#: part/models.py:3643 part/models.py:3816 -msgid "Choices must be unique" -msgstr "Auswahl muss einzigartig sein" - -#: part/models.py:3654 +#: part/models.py:3718 msgid "Test templates can only be created for testable parts" msgstr "" -#: part/models.py:3668 +#: part/models.py:3732 msgid "Test template with the same key already exists for part" msgstr "Testvorlage mit demselben Schlüssel existiert bereits für Teil" -#: part/models.py:3685 +#: part/models.py:3749 msgid "Test Name" msgstr "Test-Name" -#: part/models.py:3686 +#: part/models.py:3750 msgid "Enter a name for the test" msgstr "Namen für diesen Test eingeben" -#: part/models.py:3692 +#: part/models.py:3756 msgid "Test Key" msgstr "Testschlüssel" -#: part/models.py:3693 +#: part/models.py:3757 msgid "Simplified key for the test" msgstr "Vereinfachter Schlüssel zum Test" -#: part/models.py:3700 +#: part/models.py:3764 msgid "Test Description" msgstr "Test-Beschreibung" -#: part/models.py:3701 +#: part/models.py:3765 msgid "Enter description for this test" msgstr "Beschreibung für diesen Test eingeben" -#: part/models.py:3705 report/models.py:287 -msgid "Enabled" -msgstr "Aktiviert" - -#: part/models.py:3705 +#: part/models.py:3769 msgid "Is this test enabled?" msgstr "Ist dieser Test aktiviert?" -#: part/models.py:3710 +#: part/models.py:3774 msgid "Required" msgstr "Benötigt" -#: part/models.py:3711 +#: part/models.py:3775 msgid "Is this test required to pass?" msgstr "Muss dieser Test erfolgreich sein?" -#: part/models.py:3716 +#: part/models.py:3780 msgid "Requires Value" msgstr "Erfordert Wert" -#: part/models.py:3717 +#: part/models.py:3781 msgid "Does this test require a value when adding a test result?" msgstr "Muss für diesen Test ein Wert für das Test-Ergebnis eingetragen werden?" -#: part/models.py:3722 +#: part/models.py:3786 msgid "Requires Attachment" msgstr "Anhang muss eingegeben werden" -#: part/models.py:3724 +#: part/models.py:3788 msgid "Does this test require a file attachment when adding a test result?" msgstr "Muss für diesen Test ein Anhang für das Test-Ergebnis hinzugefügt werden?" -#: part/models.py:3730 part/models.py:3878 -msgid "Choices" -msgstr "Auswahlmöglichkeiten" - -#: part/models.py:3731 +#: part/models.py:3795 msgid "Valid choices for this test (comma-separated)" msgstr "Gültige Optionen für diesen Test (durch Komma getrennt)" -#: part/models.py:3764 -msgid "Part Parameter Template" -msgstr "" - -#: part/models.py:3791 -msgid "Checkbox parameters cannot have units" -msgstr "Checkbox-Parameter können keine Einheiten haben" - -#: part/models.py:3796 -msgid "Checkbox parameters cannot have choices" -msgstr "Checkbox-Parameter können keine Auswahl haben" - -#: part/models.py:3833 -msgid "Parameter template name must be unique" -msgstr "Vorlagen-Name des Parameters muss eindeutig sein" - -#: part/models.py:3851 -msgid "Parameter Name" -msgstr "Name des Parameters" - -#: part/models.py:3858 -msgid "Physical units for this parameter" -msgstr "Physikalische Einheiten für diesen Parameter" - -#: part/models.py:3866 -msgid "Parameter description" -msgstr "Parameter-Beschreibung" - -#: part/models.py:3872 -msgid "Checkbox" -msgstr "Checkbox" - -#: part/models.py:3873 -msgid "Is this parameter a checkbox?" -msgstr "Ist dieser Parameter eine Checkbox?" - -#: part/models.py:3879 -msgid "Valid choices for this parameter (comma-separated)" -msgstr "Gültige Optionen für diesen Parameter (durch Kommas getrennt)" - -#: part/models.py:3890 -msgid "Selection list for this parameter" -msgstr "" - -#: part/models.py:3932 -msgid "Part Parameter" -msgstr "" - -#: part/models.py:3958 -msgid "Parameter cannot be modified - part is locked" -msgstr "" - -#: part/models.py:3996 -msgid "Invalid choice for parameter value" -msgstr "Ungültige Auswahl für Parameterwert" - -#: part/models.py:4047 -msgid "Parent Part" -msgstr "Ausgangsteil" - -#: part/models.py:4055 part/models.py:4170 part/models.py:4171 -msgid "Parameter Template" -msgstr "Parameter Vorlage" - -#: part/models.py:4061 -msgid "Parameter Value" -msgstr "Parameter Wert" - -#: part/models.py:4071 stock/serializers.py:718 -msgid "Optional note field" -msgstr "Optionales Notizfeld" - -#: part/models.py:4118 -msgid "Part Category Parameter Template" -msgstr "" - -#: part/models.py:4177 -msgid "Default Value" -msgstr "Standard-Wert" - -#: part/models.py:4178 -msgid "Default Parameter Value" -msgstr "Standard Parameter Wert" - -#: part/models.py:4352 +#: part/models.py:3977 msgid "BOM item cannot be modified - assembly is locked" msgstr "" -#: part/models.py:4359 +#: part/models.py:3984 msgid "BOM item cannot be modified - variant assembly is locked" msgstr "" -#: part/models.py:4369 +#: part/models.py:3994 msgid "Select parent part" msgstr "Ausgangsteil auswählen" -#: part/models.py:4379 +#: part/models.py:4004 msgid "Sub part" msgstr "Untergeordnetes Teil" -#: part/models.py:4380 +#: part/models.py:4005 msgid "Select part to be used in BOM" msgstr "Teil für die Nutzung in der Stückliste auswählen" -#: part/models.py:4391 +#: part/models.py:4016 msgid "BOM quantity for this BOM item" msgstr "Stücklisten-Anzahl für dieses Stücklisten-Teil" -#: part/models.py:4397 +#: part/models.py:4022 msgid "This BOM item is optional" msgstr "Diese Stücklisten-Position ist optional" -#: part/models.py:4403 +#: part/models.py:4028 msgid "This BOM item is consumable (it is not tracked in build orders)" msgstr "Diese Stücklisten-Position ist ein Verbrauchsartikel (sie wird nicht in Bauaufträgen verfolgt)" -#: part/models.py:4411 +#: part/models.py:4036 msgid "Setup Quantity" msgstr "" -#: part/models.py:4412 +#: part/models.py:4037 msgid "Extra required quantity for a build, to account for setup losses" msgstr "" -#: part/models.py:4420 +#: part/models.py:4045 msgid "Attrition" msgstr "" -#: part/models.py:4422 +#: part/models.py:4047 msgid "Estimated attrition for a build, expressed as a percentage (0-100)" msgstr "" -#: part/models.py:4433 +#: part/models.py:4058 msgid "Rounding Multiple" msgstr "" -#: part/models.py:4435 +#: part/models.py:4060 msgid "Round up required production quantity to nearest multiple of this value" msgstr "" -#: part/models.py:4443 +#: part/models.py:4068 msgid "BOM item reference" msgstr "Referenz der Postion auf der Stückliste" -#: part/models.py:4451 +#: part/models.py:4076 msgid "BOM item notes" msgstr "Notizen zur Stücklisten-Position" -#: part/models.py:4457 +#: part/models.py:4082 msgid "Checksum" msgstr "Prüfsumme" -#: part/models.py:4458 +#: part/models.py:4083 msgid "BOM line checksum" msgstr "Prüfsumme der Stückliste" -#: part/models.py:4463 +#: part/models.py:4088 msgid "Validated" msgstr "überprüft" -#: part/models.py:4464 +#: part/models.py:4089 msgid "This BOM item has been validated" msgstr "Diese Stücklistenposition wurde validiert" -#: part/models.py:4469 +#: part/models.py:4094 msgid "Gets inherited" msgstr "Wird vererbt" -#: part/models.py:4470 +#: part/models.py:4095 msgid "This BOM item is inherited by BOMs for variant parts" msgstr "Diese Stücklisten-Position wird in die Stücklisten von Teil-Varianten vererbt" -#: part/models.py:4476 +#: part/models.py:4101 msgid "Stock items for variant parts can be used for this BOM item" msgstr "Bestand von Varianten kann für diese Stücklisten-Position verwendet werden" -#: part/models.py:4583 stock/models.py:925 +#: part/models.py:4208 stock/models.py:925 msgid "Quantity must be integer value for trackable parts" msgstr "Menge muss eine Ganzzahl sein" -#: part/models.py:4593 part/models.py:4595 +#: part/models.py:4218 part/models.py:4220 msgid "Sub part must be specified" msgstr "Zuliefererteil muss festgelegt sein" -#: part/models.py:4746 +#: part/models.py:4371 msgid "BOM Item Substitute" msgstr "Stücklisten Ersatzteile" -#: part/models.py:4767 +#: part/models.py:4392 msgid "Substitute part cannot be the same as the master part" msgstr "Ersatzteil kann nicht identisch mit dem Hauptteil sein" -#: part/models.py:4780 +#: part/models.py:4405 msgid "Parent BOM item" msgstr "Übergeordnete Stücklisten Position" -#: part/models.py:4788 +#: part/models.py:4413 msgid "Substitute part" msgstr "Ersatzteil" -#: part/models.py:4804 +#: part/models.py:4429 msgid "Part 1" msgstr "Teil 1" -#: part/models.py:4812 +#: part/models.py:4437 msgid "Part 2" msgstr "Teil 2" -#: part/models.py:4813 +#: part/models.py:4438 msgid "Select Related Part" msgstr "verknüpftes Teil auswählen" -#: part/models.py:4820 +#: part/models.py:4445 msgid "Note for this relationship" msgstr "" -#: part/models.py:4839 +#: part/models.py:4464 msgid "Part relationship cannot be created between a part and itself" msgstr "Teil-Beziehung kann nicht zwischen einem Teil und sich selbst erstellt werden" -#: part/models.py:4844 +#: part/models.py:4469 msgid "Duplicate relationship already exists" msgstr "Doppelte Beziehung existiert bereits" -#: part/serializers.py:114 +#: part/serializers.py:113 msgid "Parent Category" msgstr "Übergeordnete Kategorie" -#: part/serializers.py:115 +#: part/serializers.py:114 msgid "Parent part category" msgstr "Übergeordnete Teilkategorie" -#: part/serializers.py:123 part/serializers.py:164 +#: part/serializers.py:122 part/serializers.py:163 msgid "Subcategories" msgstr "Unter-Kategorien" -#: part/serializers.py:203 +#: part/serializers.py:202 msgid "Results" msgstr "Ergebnisse" -#: part/serializers.py:204 +#: part/serializers.py:203 msgid "Number of results recorded against this template" msgstr "Anzahl der Ergebnisse, die in dieser Vorlage aufgezeichnet wurden" -#: part/serializers.py:235 part/serializers.py:253 stock/serializers.py:643 +#: part/serializers.py:234 part/serializers.py:252 stock/serializers.py:643 msgid "Purchase currency of this stock item" msgstr "Kaufwährung dieses Lagerartikels" -#: part/serializers.py:280 +#: part/serializers.py:279 msgid "File is not an image" msgstr "" -#: part/serializers.py:311 -msgid "Number of parts using this template" -msgstr "Anzahl der Teile, die diese Vorlage verwenden" - -#: part/serializers.py:471 +#: part/serializers.py:382 msgid "Original Part" msgstr "Originalteil" -#: part/serializers.py:472 +#: part/serializers.py:383 msgid "Select original part to duplicate" msgstr "Originalteil zum Duplizieren auswählen" -#: part/serializers.py:477 +#: part/serializers.py:388 msgid "Copy Image" msgstr "Bild kopieren" -#: part/serializers.py:478 +#: part/serializers.py:389 msgid "Copy image from original part" msgstr "Bild vom Originalteil kopieren" -#: part/serializers.py:484 +#: part/serializers.py:395 msgid "Copy BOM" msgstr "Stückliste kopieren" -#: part/serializers.py:485 +#: part/serializers.py:396 msgid "Copy bill of materials from original part" msgstr "Stückliste vom Originalteil kopieren" -#: part/serializers.py:491 +#: part/serializers.py:402 msgid "Copy Parameters" msgstr "Parameter kopieren" -#: part/serializers.py:492 +#: part/serializers.py:403 msgid "Copy parameter data from original part" msgstr "Parameterdaten vom Originalteil kopieren" -#: part/serializers.py:498 +#: part/serializers.py:409 msgid "Copy Notes" msgstr "Anmerkungen kopieren" -#: part/serializers.py:499 +#: part/serializers.py:410 msgid "Copy notes from original part" msgstr "Notizen aus Originalteil kopieren" -#: part/serializers.py:505 +#: part/serializers.py:416 msgid "Copy Tests" msgstr "" -#: part/serializers.py:506 +#: part/serializers.py:417 msgid "Copy test templates from original part" msgstr "" -#: part/serializers.py:524 +#: part/serializers.py:435 msgid "Initial Stock Quantity" msgstr "Start-Bestandsmenge" -#: part/serializers.py:526 +#: part/serializers.py:437 msgid "Specify initial stock quantity for this Part. If quantity is zero, no stock is added." msgstr "Initiale Lagermenge für dieses Teil. Wenn die Menge null ist, wird kein Lagerbestand hinzugefügt." -#: part/serializers.py:533 +#: part/serializers.py:444 msgid "Initial Stock Location" msgstr "Initialer Lagerort" -#: part/serializers.py:534 +#: part/serializers.py:445 msgid "Specify initial stock location for this Part" msgstr "Lagerstandort für dieses Teil angeben" -#: part/serializers.py:551 +#: part/serializers.py:462 msgid "Select supplier (or leave blank to skip)" msgstr "Lieferant auswählen (oder leer lassen, um zu überspringen)" -#: part/serializers.py:567 +#: part/serializers.py:478 msgid "Select manufacturer (or leave blank to skip)" msgstr "Hersteller auswählen (oder leer lassen, um zu überspringen)" -#: part/serializers.py:577 +#: part/serializers.py:488 msgid "Manufacturer part number" msgstr "Hersteller-Teilenummer" -#: part/serializers.py:584 +#: part/serializers.py:495 msgid "Selected company is not a valid supplier" msgstr "Ausgewählte Firma ist kein gültiger Lieferant" -#: part/serializers.py:593 +#: part/serializers.py:504 msgid "Selected company is not a valid manufacturer" msgstr "Ausgewählte Firma ist kein gültiger Hersteller" -#: part/serializers.py:604 +#: part/serializers.py:515 msgid "Manufacturer part matching this MPN already exists" msgstr "Herstellerteil mit dieser MPN existiert bereits" -#: part/serializers.py:611 +#: part/serializers.py:522 msgid "Supplier part matching this SKU already exists" msgstr "Lieferantenteil mit dieser SKU existiert bereits" -#: part/serializers.py:914 +#: part/serializers.py:799 msgid "Category Name" msgstr "Kategoriename" -#: part/serializers.py:943 +#: part/serializers.py:828 msgid "Building" msgstr "Im Bau" -#: part/serializers.py:944 +#: part/serializers.py:829 msgid "Quantity of this part currently being in production" msgstr "" -#: part/serializers.py:951 +#: part/serializers.py:836 msgid "Outstanding quantity of this part scheduled to be built" msgstr "" -#: part/serializers.py:971 stock/serializers.py:1019 stock/serializers.py:1189 +#: part/serializers.py:856 stock/serializers.py:1019 stock/serializers.py:1189 #: users/ruleset.py:30 msgid "Stock Items" msgstr "Lagerartikel" -#: part/serializers.py:975 +#: part/serializers.py:860 msgid "Revisions" msgstr "" -#: part/serializers.py:979 +#: part/serializers.py:864 msgid "Suppliers" msgstr "Zulieferer" -#: part/serializers.py:983 part/serializers.py:1297 +#: part/serializers.py:868 part/serializers.py:1162 #: templates/email/low_stock_notification.html:16 #: templates/email/part_event_notification.html:17 msgid "Total Stock" msgstr "Gesamtbestand" -#: part/serializers.py:991 +#: part/serializers.py:876 msgid "Unallocated Stock" msgstr "Nicht zugewiesenes Lager" -#: part/serializers.py:999 +#: part/serializers.py:884 msgid "Variant Stock" msgstr "Alternatives Lager" -#: part/serializers.py:1054 +#: part/serializers.py:943 msgid "Duplicate Part" msgstr "Teil duplizieren" -#: part/serializers.py:1055 +#: part/serializers.py:944 msgid "Copy initial data from another Part" msgstr "Initiale Daten von anderem Teil kopieren" -#: part/serializers.py:1061 +#: part/serializers.py:950 msgid "Initial Stock" msgstr "Initialer Lagerbestand" -#: part/serializers.py:1062 +#: part/serializers.py:951 msgid "Create Part with initial stock quantity" msgstr "Erstelle Teil mit Ausgangsbestand" -#: part/serializers.py:1068 +#: part/serializers.py:957 msgid "Supplier Information" msgstr "Lieferanteninformationen" -#: part/serializers.py:1069 +#: part/serializers.py:958 msgid "Add initial supplier information for this part" msgstr "Lieferanteninformationen zu diesem Teil hinzufügen" -#: part/serializers.py:1077 +#: part/serializers.py:966 msgid "Copy Category Parameters" msgstr "Kategorieparameter kopieren" -#: part/serializers.py:1078 +#: part/serializers.py:967 msgid "Copy parameter templates from selected part category" msgstr "Parametervorlagen aus der ausgewählten Teilkategorie kopieren" -#: part/serializers.py:1083 +#: part/serializers.py:972 msgid "Existing Image" msgstr "Vorhandenes Bild" -#: part/serializers.py:1084 +#: part/serializers.py:973 msgid "Filename of an existing part image" msgstr "Dateiname eines vorhandenen Teilbildes" -#: part/serializers.py:1101 +#: part/serializers.py:990 msgid "Image file does not exist" msgstr "Bilddatei existiert nicht" -#: part/serializers.py:1269 +#: part/serializers.py:1134 msgid "Validate entire Bill of Materials" msgstr "Gesamte Stückliste validieren" -#: part/serializers.py:1303 part/serializers.py:1769 +#: part/serializers.py:1168 part/serializers.py:1634 msgid "Can Build" msgstr "Herstellbar" -#: part/serializers.py:1320 +#: part/serializers.py:1185 msgid "Required for Build Orders" msgstr "" -#: part/serializers.py:1325 +#: part/serializers.py:1190 msgid "Allocated to Build Orders" msgstr "" -#: part/serializers.py:1332 +#: part/serializers.py:1197 msgid "Required for Sales Orders" msgstr "" -#: part/serializers.py:1336 +#: part/serializers.py:1201 msgid "Allocated to Sales Orders" msgstr "" -#: part/serializers.py:1475 +#: part/serializers.py:1340 msgid "Minimum Price" msgstr "Niedrigster Preis" -#: part/serializers.py:1476 +#: part/serializers.py:1341 msgid "Override calculated value for minimum price" msgstr "Berechneten Wert für Mindestpreis überschreiben" -#: part/serializers.py:1483 +#: part/serializers.py:1348 msgid "Minimum price currency" msgstr "Mindestpreis Währung" -#: part/serializers.py:1490 +#: part/serializers.py:1355 msgid "Maximum Price" msgstr "Höchster Preis" -#: part/serializers.py:1491 +#: part/serializers.py:1356 msgid "Override calculated value for maximum price" msgstr "Berechneten Wert für maximalen Preis überschreiben" -#: part/serializers.py:1498 +#: part/serializers.py:1363 msgid "Maximum price currency" msgstr "Maximalpreis Währung" -#: part/serializers.py:1527 +#: part/serializers.py:1392 msgid "Update" msgstr "Aktualisieren" -#: part/serializers.py:1528 +#: part/serializers.py:1393 msgid "Update pricing for this part" msgstr "Preis für dieses Teil aktualisieren" -#: part/serializers.py:1551 +#: part/serializers.py:1416 #, python-brace-format msgid "Could not convert from provided currencies to {default_currency}" msgstr "Konnte nicht von den angegebenen Währungen in {default_currency} umrechnen" -#: part/serializers.py:1558 +#: part/serializers.py:1423 msgid "Minimum price must not be greater than maximum price" msgstr "Mindestpreis darf nicht größer als der Maximalpreis sein" -#: part/serializers.py:1561 +#: part/serializers.py:1426 msgid "Maximum price must not be less than minimum price" msgstr "Der Maximalpreis darf nicht kleiner als der Mindestpreis sein" -#: part/serializers.py:1715 +#: part/serializers.py:1580 msgid "Select the parent assembly" msgstr "" -#: part/serializers.py:1735 +#: part/serializers.py:1600 msgid "Select the component part" msgstr "" -#: part/serializers.py:1929 +#: part/serializers.py:1802 msgid "Select part to copy BOM from" msgstr "Teil auswählen, von dem Stückliste kopiert wird" -#: part/serializers.py:1937 +#: part/serializers.py:1810 msgid "Remove Existing Data" msgstr "Bestehende Daten entfernen" -#: part/serializers.py:1938 +#: part/serializers.py:1811 msgid "Remove existing BOM items before copying" msgstr "Bestehende Stücklisten-Positionen vor dem Kopieren entfernen" -#: part/serializers.py:1943 +#: part/serializers.py:1816 msgid "Include Inherited" msgstr "Vererbtes einschließen" -#: part/serializers.py:1944 +#: part/serializers.py:1817 msgid "Include BOM items which are inherited from templated parts" msgstr "Stücklisten-Positionen einbeziehen, die von Vorlage-Teilen geerbt werden" -#: part/serializers.py:1949 +#: part/serializers.py:1822 msgid "Skip Invalid Rows" msgstr "Ungültige Zeilen überspringen" -#: part/serializers.py:1950 +#: part/serializers.py:1823 msgid "Enable this option to skip invalid rows" msgstr "Aktiviere diese Option, um ungültige Zeilen zu überspringen" -#: part/serializers.py:1955 +#: part/serializers.py:1828 msgid "Copy Substitute Parts" msgstr "Ersatzteile kopieren" -#: part/serializers.py:1956 +#: part/serializers.py:1829 msgid "Copy substitute parts when duplicate BOM items" msgstr "Ersatzteile beim Duplizieren von Stücklisten-Positionen kopieren" @@ -6927,7 +6974,7 @@ msgstr "Bietet native Unterstützung für Barcodes" #: plugin/builtin/events/auto_issue_orders.py:19 #: plugin/builtin/exporter/bom_exporter.py:73 #: plugin/builtin/exporter/inventree_exporter.py:17 -#: plugin/builtin/exporter/part_parameter_exporter.py:36 +#: plugin/builtin/exporter/parameter_exporter.py:32 #: plugin/builtin/exporter/stocktake_exporter.py:47 #: plugin/builtin/integration/core_notifications.py:25 #: plugin/builtin/integration/core_notifications.py:69 @@ -7041,23 +7088,19 @@ msgid "Include total quantity of each part in the BOM" msgstr "" #: plugin/builtin/exporter/bom_exporter.py:35 -#: plugin/builtin/exporter/part_parameter_exporter.py:17 msgid "Stock Data" msgstr "" #: plugin/builtin/exporter/bom_exporter.py:35 -#: plugin/builtin/exporter/part_parameter_exporter.py:17 msgid "Include part stock data" msgstr "" #: plugin/builtin/exporter/bom_exporter.py:39 -#: plugin/builtin/exporter/part_parameter_exporter.py:21 #: plugin/builtin/exporter/stocktake_exporter.py:20 msgid "Pricing Data" msgstr "" #: plugin/builtin/exporter/bom_exporter.py:39 -#: plugin/builtin/exporter/part_parameter_exporter.py:21 #: plugin/builtin/exporter/stocktake_exporter.py:20 msgid "Include part pricing data" msgstr "" @@ -7144,12 +7187,20 @@ msgstr "" msgid "Provides support for exporting data from InvenTree" msgstr "" -#: plugin/builtin/exporter/part_parameter_exporter.py:33 -msgid "Part Parameter Exporter" +#: plugin/builtin/exporter/parameter_exporter.py:16 +msgid "Exclude Inactive" msgstr "" -#: plugin/builtin/exporter/part_parameter_exporter.py:34 -msgid "Exporter for part parameter data" +#: plugin/builtin/exporter/parameter_exporter.py:17 +msgid "Exclude parameters which are inactive" +msgstr "" + +#: plugin/builtin/exporter/parameter_exporter.py:29 +msgid "Parameter Exporter" +msgstr "" + +#: plugin/builtin/exporter/parameter_exporter.py:30 +msgid "Exporter for model parameter data" msgstr "" #: plugin/builtin/exporter/stocktake_exporter.py:25 @@ -8079,19 +8130,19 @@ msgstr "Kein Ergebnis (erforderlich)" msgid "No result" msgstr "Kein Ergebnis" -#: report/templatetags/report.py:167 +#: report/templatetags/report.py:169 msgid "Asset file does not exist" msgstr "Die Bestandsdatei ist nicht vorhanden" -#: report/templatetags/report.py:224 report/templatetags/report.py:300 +#: report/templatetags/report.py:226 report/templatetags/report.py:302 msgid "Image file not found" msgstr "Bilddatei nicht gefunden" -#: report/templatetags/report.py:325 +#: report/templatetags/report.py:327 msgid "part_image tag requires a Part instance" msgstr "part_image tag benötigt eine Bauteilinstanz" -#: report/templatetags/report.py:362 +#: report/templatetags/report.py:383 msgid "company_image tag requires a Company instance" msgstr "company_image tag erfordert eine Firmeninstanz" @@ -8455,115 +8506,119 @@ msgstr "" msgid "Quantity does not match serial numbers" msgstr "Anzahl stimmt nicht mit den Seriennummern überein" -#: stock/models.py:2012 stock/models.py:2917 +#: stock/models.py:1912 +msgid "Cannot assign stock to structural location" +msgstr "" + +#: stock/models.py:2029 stock/models.py:2934 msgid "Test template does not exist" msgstr "Testvorlage existiert nicht" -#: stock/models.py:2030 +#: stock/models.py:2047 msgid "Stock item has been assigned to a sales order" msgstr "Artikel wurde einem Kundenauftrag zugewiesen" -#: stock/models.py:2034 +#: stock/models.py:2051 msgid "Stock item is installed in another item" msgstr "Lagerartikel ist in anderem Element verbaut" -#: stock/models.py:2037 +#: stock/models.py:2054 msgid "Stock item contains other items" msgstr "Lagerartikel enthält andere Artikel" -#: stock/models.py:2040 +#: stock/models.py:2057 msgid "Stock item has been assigned to a customer" msgstr "Artikel wurde einem Kunden zugewiesen" -#: stock/models.py:2043 stock/models.py:2226 +#: stock/models.py:2060 stock/models.py:2243 msgid "Stock item is currently in production" msgstr "Lagerartikel wird aktuell produziert" -#: stock/models.py:2046 +#: stock/models.py:2063 msgid "Serialized stock cannot be merged" msgstr "Nachverfolgbare Lagerartikel können nicht zusammengeführt werden" -#: stock/models.py:2053 stock/serializers.py:1462 +#: stock/models.py:2070 stock/serializers.py:1462 msgid "Duplicate stock items" msgstr "Artikel duplizeren" -#: stock/models.py:2057 +#: stock/models.py:2074 msgid "Stock items must refer to the same part" msgstr "Lagerartikel müssen auf dasselbe Teil verweisen" -#: stock/models.py:2065 +#: stock/models.py:2082 msgid "Stock items must refer to the same supplier part" msgstr "Lagerartikel müssen auf dasselbe Lieferantenteil verweisen" -#: stock/models.py:2070 +#: stock/models.py:2087 msgid "Stock status codes must match" msgstr "Status-Codes müssen zusammenpassen" -#: stock/models.py:2349 +#: stock/models.py:2366 msgid "StockItem cannot be moved as it is not in stock" msgstr "Lagerartikel kann nicht bewegt werden, da kein Bestand vorhanden ist" -#: stock/models.py:2818 +#: stock/models.py:2835 msgid "Stock Item Tracking" msgstr "" -#: stock/models.py:2849 +#: stock/models.py:2866 msgid "Entry notes" msgstr "Eintrags-Notizen" -#: stock/models.py:2889 +#: stock/models.py:2906 msgid "Stock Item Test Result" msgstr "" -#: stock/models.py:2920 +#: stock/models.py:2937 msgid "Value must be provided for this test" msgstr "Wert muss für diesen Test angegeben werden" -#: stock/models.py:2924 +#: stock/models.py:2941 msgid "Attachment must be uploaded for this test" msgstr "Anhang muss für diesen Test hochgeladen werden" -#: stock/models.py:2929 +#: stock/models.py:2946 msgid "Invalid value for this test" msgstr "" -#: stock/models.py:2953 +#: stock/models.py:2970 msgid "Test result" msgstr "Testergebnis" -#: stock/models.py:2960 +#: stock/models.py:2977 msgid "Test output value" msgstr "Test Ausgabe Wert" -#: stock/models.py:2968 stock/serializers.py:248 +#: stock/models.py:2985 stock/serializers.py:248 msgid "Test result attachment" msgstr "Test Ergebnis Anhang" -#: stock/models.py:2972 +#: stock/models.py:2989 msgid "Test notes" msgstr "Test Notizen" -#: stock/models.py:2980 +#: stock/models.py:2997 msgid "Test station" msgstr "Teststation" -#: stock/models.py:2981 +#: stock/models.py:2998 msgid "The identifier of the test station where the test was performed" msgstr "Der Bezeichner der Teststation, in der der Test durchgeführt wurde" -#: stock/models.py:2987 +#: stock/models.py:3004 msgid "Started" msgstr "Gestartet" -#: stock/models.py:2988 +#: stock/models.py:3005 msgid "The timestamp of the test start" msgstr "Der Zeitstempel des Teststarts" -#: stock/models.py:2994 +#: stock/models.py:3011 msgid "Finished" msgstr "Fertiggestellt" -#: stock/models.py:2995 +#: stock/models.py:3012 msgid "The timestamp of the test finish" msgstr "Der Zeitstempel der Test-Beendigung" @@ -8677,8 +8732,8 @@ msgstr "" msgid "Quantity must not exceed available stock quantity ({q})" msgstr "Anzahl darf nicht die verfügbare Menge überschreiten ({q})" -#: stock/serializers.py:711 stock/serializers.py:1419 stock/serializers.py:1732 -#: stock/serializers.py:1781 +#: stock/serializers.py:711 stock/serializers.py:1419 stock/serializers.py:1740 +#: stock/serializers.py:1789 msgid "Destination stock location" msgstr "Ziel-Bestand" @@ -8834,19 +8889,19 @@ msgstr "" msgid "Stock transaction notes" msgstr "Bestandsbewegungsnotizen" -#: stock/serializers.py:1787 +#: stock/serializers.py:1795 msgid "Merge into existing stock" msgstr "" -#: stock/serializers.py:1788 +#: stock/serializers.py:1796 msgid "Merge returned items into existing stock items if possible" msgstr "" -#: stock/serializers.py:1831 +#: stock/serializers.py:1839 msgid "Next Serial Number" msgstr "Nächste Seriennummer" -#: stock/serializers.py:1837 +#: stock/serializers.py:1845 msgid "Previous Serial Number" msgstr "Vorherige Seriennummer" @@ -8902,83 +8957,87 @@ msgstr "Bestand manuell hinzugefügt" msgid "Stock manually removed" msgstr "Bestand manuell entfernt" -#: stock/status_codes.py:57 +#: stock/status_codes.py:56 +msgid "Serialized stock items" +msgstr "" + +#: stock/status_codes.py:58 msgid "Returned to stock" msgstr "" -#: stock/status_codes.py:60 +#: stock/status_codes.py:61 msgid "Location changed" msgstr "Standort geändert" -#: stock/status_codes.py:61 +#: stock/status_codes.py:62 msgid "Stock updated" msgstr "Lagerbestand aktualisiert" -#: stock/status_codes.py:64 +#: stock/status_codes.py:65 msgid "Installed into assembly" msgstr "In Baugruppe installiert" -#: stock/status_codes.py:65 +#: stock/status_codes.py:66 msgid "Removed from assembly" msgstr "Aus Baugruppe entfernt" -#: stock/status_codes.py:67 +#: stock/status_codes.py:68 msgid "Installed component item" msgstr "Komponente installiert" -#: stock/status_codes.py:68 +#: stock/status_codes.py:69 msgid "Removed component item" msgstr "Komponente entfernt" -#: stock/status_codes.py:71 +#: stock/status_codes.py:72 msgid "Split from parent item" msgstr "Vom übergeordneten Element geteilt" -#: stock/status_codes.py:72 +#: stock/status_codes.py:73 msgid "Split child item" msgstr "Unterobjekt geteilt" -#: stock/status_codes.py:75 +#: stock/status_codes.py:76 msgid "Merged stock items" msgstr "Lagerartikel zusammengeführt" -#: stock/status_codes.py:78 +#: stock/status_codes.py:79 msgid "Converted to variant" msgstr "In Variante umgewandelt" -#: stock/status_codes.py:81 +#: stock/status_codes.py:82 msgid "Build order output created" msgstr "Endprodukt erstellt" -#: stock/status_codes.py:82 +#: stock/status_codes.py:83 msgid "Build order output completed" msgstr "Endprodukt fertiggestellt" -#: stock/status_codes.py:83 +#: stock/status_codes.py:84 msgid "Build order output rejected" msgstr "Endprodukt abgelehnt" -#: stock/status_codes.py:84 +#: stock/status_codes.py:85 msgid "Consumed by build order" msgstr "Durch Bauauftrag verbraucht" -#: stock/status_codes.py:87 +#: stock/status_codes.py:88 msgid "Shipped against Sales Order" msgstr "Versandt gegen Verkaufsauftrag" -#: stock/status_codes.py:90 +#: stock/status_codes.py:91 msgid "Received against Purchase Order" msgstr "Gegen Bestellung empfangen" -#: stock/status_codes.py:93 +#: stock/status_codes.py:94 msgid "Returned against Return Order" msgstr "Zurückgeschickt gegen Rücksendeauftrag" -#: stock/status_codes.py:96 +#: stock/status_codes.py:97 msgid "Sent to customer" msgstr "Zum Kunden geschickt" -#: stock/status_codes.py:97 +#: stock/status_codes.py:98 msgid "Returned from customer" msgstr "Rücksendung vom Kunden" diff --git a/src/backend/InvenTree/locale/el/LC_MESSAGES/django.po b/src/backend/InvenTree/locale/el/LC_MESSAGES/django.po index 22613bdd90..4504cc029b 100644 --- a/src/backend/InvenTree/locale/el/LC_MESSAGES/django.po +++ b/src/backend/InvenTree/locale/el/LC_MESSAGES/django.po @@ -2,8 +2,8 @@ msgid "" msgstr "" "Project-Id-Version: inventree\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-11-19 04:55+0000\n" -"PO-Revision-Date: 2025-11-19 19:39\n" +"POT-Creation-Date: 2025-12-07 07:33+0000\n" +"PO-Revision-Date: 2025-12-07 07:36\n" "Last-Translator: \n" "Language-Team: Greek\n" "Language: el_GR\n" @@ -47,7 +47,7 @@ msgstr "Το φίλτρο all πρέπει να χρησιμοποιείται #: InvenTree/api.py:473 msgid "No items match the provided criteria" -msgstr "Κανένα Aντικειμένου δεν ταιριάζει στα κριτήρια που δόθηκαν" +msgstr "Κανένα Aντικείμενο δεν ταιριάζει στα κριτήρια που δόθηκαν" #: InvenTree/api.py:497 msgid "No data provided" @@ -57,7 +57,7 @@ msgstr "Δεν δόθηκαν δεδομένα" msgid "This field must be unique." msgstr "Αυτό το πεδίο πρέπει να είναι μοναδικό." -#: InvenTree/api.py:775 +#: InvenTree/api.py:803 msgid "User does not have permission to view this model" msgstr "Δεν έχετε δικαιώματα να το δείτε αυτό" @@ -81,22 +81,22 @@ msgstr "Η παρεχόμενη κύρια διεύθυνση ηλεκτρονι msgid "The provided email domain is not approved." msgstr "Ο παρεχόμενος τομέας ηλεκτρονικού ταχυδρομείου δεν έχει εγκριθεί." -#: InvenTree/conversion.py:166 +#: InvenTree/conversion.py:240 #, python-brace-format msgid "Invalid unit provided ({unit})" msgstr "Η μονάδα μέτρησης δεν είναι έγκυρη ({unit})" -#: InvenTree/conversion.py:183 +#: InvenTree/conversion.py:257 msgid "No value provided" msgstr "Δεν εισήχθη τιμή" -#: InvenTree/conversion.py:210 +#: InvenTree/conversion.py:284 #, python-brace-format msgid "Could not convert {original} to {unit}" msgstr "Δεν ήταν δυνατή η μετατροπή από {original} σε {unit}" -#: InvenTree/conversion.py:212 InvenTree/conversion.py:226 -#: InvenTree/helpers.py:597 order/models.py:720 order/models.py:1015 +#: InvenTree/conversion.py:286 InvenTree/conversion.py:300 +#: InvenTree/helpers.py:597 order/models.py:721 order/models.py:1016 msgid "Invalid quantity provided" msgstr "Μη έγκυρη ποσότητα" @@ -112,11 +112,11 @@ msgstr "Εισάγετε ημερομηνία" msgid "Invalid decimal value" msgstr "Μη έγκυρη δεκαδική τιμή" -#: InvenTree/fields.py:218 InvenTree/models.py:1067 build/serializers.py:509 -#: build/serializers.py:580 build/serializers.py:1788 company/models.py:857 -#: order/models.py:1780 +#: InvenTree/fields.py:218 InvenTree/models.py:1228 build/serializers.py:517 +#: build/serializers.py:588 build/serializers.py:1796 company/models.py:811 +#: order/models.py:1781 #: report/templates/report/inventree_build_order_report.html:172 -#: stock/models.py:2848 stock/models.py:2972 stock/serializers.py:717 +#: stock/models.py:2865 stock/models.py:2989 stock/serializers.py:717 #: stock/serializers.py:893 stock/serializers.py:1035 stock/serializers.py:1336 #: stock/serializers.py:1425 stock/serializers.py:1624 msgid "Notes" @@ -141,7 +141,7 @@ msgstr "Κενό σειριακό αριθμό συμβολοσειράς" #: InvenTree/helpers.py:636 msgid "Duplicate serial" -msgstr "Διπλότυπο serial number" +msgstr "Διπλότυπο ArialTTumblr" #: InvenTree/helpers.py:668 InvenTree/helpers.py:711 InvenTree/helpers.py:729 #: InvenTree/helpers.py:736 InvenTree/helpers.py:755 @@ -171,35 +171,35 @@ msgstr "Αφαιρέστε τα HTML tags από την τιμή που εισά msgid "Data contains prohibited markdown content" msgstr "Τα δεδομένα περιέχουν απαγορευμένο περιεχόμενο markdown" -#: InvenTree/helpers_model.py:133 +#: InvenTree/helpers_model.py:134 msgid "Connection error" msgstr "Σφάλμα σύνδεσης" -#: InvenTree/helpers_model.py:138 InvenTree/helpers_model.py:145 +#: InvenTree/helpers_model.py:139 InvenTree/helpers_model.py:146 msgid "Server responded with invalid status code" msgstr "Ο διακομιστής απάντησε με μη έγκυρο κωδικό κατάστασης" -#: InvenTree/helpers_model.py:141 +#: InvenTree/helpers_model.py:142 msgid "Exception occurred" msgstr "Προέκυψε σφάλμα" -#: InvenTree/helpers_model.py:151 +#: InvenTree/helpers_model.py:152 msgid "Server responded with invalid Content-Length value" msgstr "Ο διακομιστής ανταποκρίθηκε με \"Invalid Content-Length value\"" -#: InvenTree/helpers_model.py:154 +#: InvenTree/helpers_model.py:155 msgid "Image size is too large" msgstr "Η εικόνα είναι πολύ μεγάλη σε μέγεθος" -#: InvenTree/helpers_model.py:166 +#: InvenTree/helpers_model.py:167 msgid "Image download exceeded maximum size" msgstr "Η λήψη εικόνας ξεπέρασε το μέγιστο μέγεθος" -#: InvenTree/helpers_model.py:171 +#: InvenTree/helpers_model.py:172 msgid "Remote server returned empty response" msgstr "Ο διακομιστής επέστρεψε σφάλμα %1$d %2$s" -#: InvenTree/helpers_model.py:179 +#: InvenTree/helpers_model.py:180 msgid "Supplied URL is not a valid image file" msgstr "Το URL δεν είναι έγκυρο αρχείο εικόνας" @@ -207,7 +207,7 @@ msgstr "Το URL δεν είναι έγκυρο αρχείο εικόνας" msgid "Log in to the app" msgstr "Σύνδεση στην εφαρμογή" -#: InvenTree/magic_login.py:41 company/models.py:172 users/serializers.py:198 +#: InvenTree/magic_login.py:41 company/models.py:173 users/serializers.py:198 msgid "Email" msgstr "Email" @@ -215,160 +215,176 @@ msgstr "Email" msgid "You must enable two-factor authentication before doing anything else." msgstr "Πρέπει να ενεργοποιήσετε τον έλεγχο ταυτότητας δύο παραγόντων πριν κάνετε οτιδήποτε άλλο." -#: InvenTree/models.py:111 +#: InvenTree/models.py:114 msgid "Error running plugin validation" msgstr "Σφάλμα κατά την εκτέλεση επικύρωσης προσθέτου" -#: InvenTree/models.py:192 +#: InvenTree/models.py:195 msgid "Metadata must be a python dict object" msgstr "Τα μεταδεδομένα πρέπει να είναι ένα αντικείμενο dict python" -#: InvenTree/models.py:198 +#: InvenTree/models.py:201 msgid "Plugin Metadata" msgstr "Μεταδεδομένα Πρόσθετου" -#: InvenTree/models.py:199 +#: InvenTree/models.py:202 msgid "JSON metadata field, for use by external plugins" msgstr "JSON πεδίο μεταδεδομένων, για χρήση από εξωτερικά πρόσθετα" -#: InvenTree/models.py:382 +#: InvenTree/models.py:385 msgid "Improperly formatted pattern" msgstr "Λανθασμένο μοτίβο" -#: InvenTree/models.py:389 +#: InvenTree/models.py:392 msgid "Unknown format key specified" msgstr "Δώσατε λάθος μορφή κλειδιού" -#: InvenTree/models.py:395 +#: InvenTree/models.py:398 msgid "Missing required format key" msgstr "Λείπει το απαραίτητο κλειδί" -#: InvenTree/models.py:406 +#: InvenTree/models.py:409 msgid "Reference field cannot be empty" msgstr "Το πεδίο δεν μπορεί να είναι άδειο" -#: InvenTree/models.py:414 +#: InvenTree/models.py:417 msgid "Reference must match required pattern" msgstr "Η αναφορά πρέπει να ταιριάζει με το απαιτούμενο μοτίβο" -#: InvenTree/models.py:445 +#: InvenTree/models.py:448 msgid "Reference number is too large" msgstr "Ο αριθμός αναφοράς είναι πολύ μεγάλος" -#: InvenTree/models.py:743 +#: InvenTree/models.py:896 msgid "Invalid choice" msgstr "Μη έγκυρη επιλογή" -#: InvenTree/models.py:856 common/models.py:1410 common/models.py:1837 -#: common/models.py:2096 common/models.py:2221 common/serializers.py:535 -#: company/models.py:615 generic/states/serializers.py:20 machine/models.py:25 -#: part/models.py:1039 part/models.py:3850 plugin/models.py:54 +#: InvenTree/models.py:1017 common/models.py:1414 common/models.py:1841 +#: common/models.py:2102 common/models.py:2227 common/models.py:2494 +#: common/serializers.py:539 generic/states/serializers.py:20 +#: machine/models.py:25 part/models.py:1127 plugin/models.py:54 #: report/models.py:216 stock/models.py:84 msgid "Name" msgstr "Όνομα" -#: InvenTree/models.py:862 build/models.py:252 common/models.py:171 -#: common/models.py:2228 common/models.py:2341 company/models.py:543 -#: company/models.py:848 order/models.py:442 order/models.py:1825 -#: part/models.py:1062 part/models.py:3865 report/models.py:222 +#: InvenTree/models.py:1023 build/models.py:253 common/models.py:175 +#: common/models.py:2234 common/models.py:2347 common/models.py:2509 +#: company/models.py:545 company/models.py:802 order/models.py:443 +#: order/models.py:1826 part/models.py:1150 report/models.py:222 #: report/models.py:815 report/models.py:841 #: report/templates/report/inventree_build_order_report.html:117 #: stock/models.py:90 msgid "Description" msgstr "Περιγραφή" -#: InvenTree/models.py:863 stock/models.py:91 +#: InvenTree/models.py:1024 stock/models.py:91 msgid "Description (optional)" msgstr "Περιγραφή (προαιρετική)" -#: InvenTree/models.py:878 common/models.py:2394 +#: InvenTree/models.py:1039 common/models.py:2815 msgid "Path" msgstr "Μονοπάτι" -#: InvenTree/models.py:983 +#: InvenTree/models.py:1144 msgid "Duplicate names cannot exist under the same parent" msgstr "Διπλότυπα ονόματα δεν μπορούν να υπάρχουν στον ίδιο γονέα" -#: InvenTree/models.py:1067 +#: InvenTree/models.py:1228 msgid "Markdown notes (optional)" msgstr "Σημειώσεις Markdown (προαιρετικό)" -#: InvenTree/models.py:1098 +#: InvenTree/models.py:1259 msgid "Barcode Data" msgstr "Στοιχεία Barcode" -#: InvenTree/models.py:1099 +#: InvenTree/models.py:1260 msgid "Third party barcode data" msgstr "Δεδομένα barcode τρίτων" -#: InvenTree/models.py:1105 +#: InvenTree/models.py:1266 msgid "Barcode Hash" msgstr "Hash barcode" -#: InvenTree/models.py:1106 +#: InvenTree/models.py:1267 msgid "Unique hash of barcode data" msgstr "Μοναδικό hash δεδομένων barcode" -#: InvenTree/models.py:1187 +#: InvenTree/models.py:1348 msgid "Existing barcode found" msgstr "Βρέθηκε υπάρχων barcode" -#: InvenTree/models.py:1269 +#: InvenTree/models.py:1430 msgid "Task Failure" msgstr "Αποτυχία εργασίας" -#: InvenTree/models.py:1270 +#: InvenTree/models.py:1431 #, python-brace-format msgid "Background worker task '{f}' failed after {n} attempts" msgstr "Η εργασία background worker '{f}' απέτυχε μετά από {n} προσπάθειες" -#: InvenTree/models.py:1297 +#: InvenTree/models.py:1458 msgid "Server Error" msgstr "Σφάλμα διακομιστή" -#: InvenTree/models.py:1298 +#: InvenTree/models.py:1459 msgid "An error has been logged by the server." msgstr "Ένα σφάλμα έχει καταγραφεί από το διακομιστή." -#: InvenTree/models.py:1340 common/models.py:1748 +#: InvenTree/models.py:1501 common/models.py:1752 #: report/templates/report/inventree_bill_of_materials_report.html:126 #: report/templates/report/inventree_bill_of_materials_report.html:148 #: report/templates/report/inventree_return_order_report.html:35 msgid "Image" msgstr "Εικόνα" -#: InvenTree/serializers.py:253 part/models.py:4571 +#: InvenTree/serializers.py:255 part/models.py:4196 msgid "Must be a valid number" msgstr "Πρέπει να είναι αριθμός" -#: InvenTree/serializers.py:295 company/models.py:214 part/models.py:3285 +#: InvenTree/serializers.py:297 company/models.py:215 part/models.py:3349 msgid "Currency" msgstr "Νόμισμα" -#: InvenTree/serializers.py:298 part/serializers.py:1385 +#: InvenTree/serializers.py:300 part/serializers.py:1250 msgid "Select currency from available options" msgstr "Επιλέξτε νόμισμα από τις διαθέσιμες επιλογές" -#: InvenTree/serializers.py:653 +#: InvenTree/serializers.py:654 +msgid "This field may not be null." +msgstr "" + +#: InvenTree/serializers.py:660 msgid "Invalid value" msgstr "Μη έγκυρη τιμή" -#: InvenTree/serializers.py:690 +#: InvenTree/serializers.py:697 msgid "Remote Image" msgstr "Απομακρυσμένες Εικόνες" -#: InvenTree/serializers.py:691 +#: InvenTree/serializers.py:698 msgid "URL of remote image file" msgstr "Διεύθυνση URL του αρχείου απομακρυσμένης εικόνας" -#: InvenTree/serializers.py:709 +#: InvenTree/serializers.py:716 msgid "Downloading images from remote URL is not enabled" msgstr "Η λήψη εικόνων από απομακρυσμένο URL δεν είναι ενεργοποιημένη" -#: InvenTree/serializers.py:716 +#: InvenTree/serializers.py:723 msgid "Failed to download image from remote URL" msgstr "Αποτυχία λήψης εικόνας από απομακρυσμένο URL" +#: InvenTree/serializers.py:806 +msgid "Invalid content type format" +msgstr "" + +#: InvenTree/serializers.py:809 +msgid "Content type not found" +msgstr "" + +#: InvenTree/serializers.py:815 +msgid "Content type does not match required mixin class" +msgstr "" + #: InvenTree/setting/locales.py:20 msgid "Arabic" msgstr "Αραβικά" @@ -537,30 +553,30 @@ msgstr "Μη έγκυρη φυσική μονάδα" msgid "Not a valid currency code" msgstr "Μη έγκυρος κωδικός συναλλάγματος" -#: build/api.py:54 order/api.py:111 order/api.py:270 order/api.py:1373 -#: order/serializers.py:132 +#: build/api.py:54 order/api.py:116 order/api.py:275 order/api.py:1378 +#: order/serializers.py:133 msgid "Order Status" msgstr "Κατάσταση παραγγελίας" -#: build/api.py:80 build/models.py:264 +#: build/api.py:80 build/models.py:265 msgid "Parent Build" msgstr "Γονική Κατασκευή" -#: build/api.py:84 build/api.py:831 order/api.py:547 order/api.py:770 -#: order/api.py:1174 order/api.py:1449 stock/api.py:573 +#: build/api.py:84 build/api.py:837 order/api.py:553 order/api.py:776 +#: order/api.py:1179 order/api.py:1454 stock/api.py:573 msgid "Include Variants" msgstr "Συμπερίληψη παραλλαγών" -#: build/api.py:100 build/api.py:466 build/api.py:845 build/models.py:270 -#: build/serializers.py:1225 build/serializers.py:1356 -#: build/serializers.py:1427 company/models.py:1067 company/serializers.py:445 -#: order/api.py:298 order/api.py:302 order/api.py:929 order/api.py:1187 -#: order/api.py:1190 order/models.py:1941 order/models.py:2108 -#: order/models.py:2109 part/api.py:1233 part/api.py:1236 part/api.py:1302 -#: part/api.py:1589 part/models.py:472 part/models.py:3296 part/models.py:3439 -#: part/models.py:3497 part/models.py:3518 part/models.py:3540 -#: part/models.py:3679 part/models.py:4046 part/models.py:4368 -#: part/models.py:4787 part/serializers.py:1928 +#: build/api.py:100 build/api.py:472 build/api.py:851 build/models.py:271 +#: build/serializers.py:1233 build/serializers.py:1364 +#: build/serializers.py:1435 company/models.py:1021 company/serializers.py:490 +#: order/api.py:303 order/api.py:307 order/api.py:934 order/api.py:1192 +#: order/api.py:1195 order/models.py:1942 order/models.py:2109 +#: order/models.py:2110 part/api.py:1160 part/api.py:1163 part/api.py:1314 +#: part/models.py:550 part/models.py:3360 part/models.py:3503 +#: part/models.py:3561 part/models.py:3582 part/models.py:3604 +#: part/models.py:3743 part/models.py:3993 part/models.py:4412 +#: part/serializers.py:1801 #: report/templates/report/inventree_bill_of_materials_report.html:110 #: report/templates/report/inventree_bill_of_materials_report.html:137 #: report/templates/report/inventree_build_order_report.html:109 @@ -580,9 +596,9 @@ msgstr "Συμπερίληψη παραλλαγών" msgid "Part" msgstr "Εξάρτημα" -#: build/api.py:120 build/api.py:123 build/serializers.py:1438 part/api.py:980 -#: part/api.py:1316 part/api.py:1600 part/models.py:1080 part/models.py:3568 -#: part/models.py:4162 part/serializers.py:1752 stock/api.py:869 +#: build/api.py:120 build/api.py:123 build/serializers.py:1446 part/api.py:975 +#: part/api.py:1325 part/models.py:435 part/models.py:1168 part/models.py:3632 +#: part/serializers.py:1617 stock/api.py:869 msgid "Category" msgstr "Κατηγορία" @@ -590,7 +606,7 @@ msgstr "Κατηγορία" msgid "Ancestor Build" msgstr "Πρόγονος κατασκευής" -#: build/api.py:152 order/api.py:129 +#: build/api.py:152 order/api.py:134 msgid "Assigned to me" msgstr "Ανατεθειμένες σε εμένα" @@ -638,134 +654,134 @@ msgstr "Ολοκληρώθηκε πριν από" msgid "Completed after" msgstr "Ολοκληρώθηκε μετά από" -#: build/api.py:249 order/api.py:226 +#: build/api.py:249 order/api.py:231 msgid "Min Date" msgstr "Ελάχιστη ημερομηνία" -#: build/api.py:272 order/api.py:245 +#: build/api.py:272 order/api.py:250 msgid "Max Date" msgstr "Μέγιστη ημερομηνία" -#: build/api.py:297 build/api.py:300 part/api.py:217 stock/api.py:961 +#: build/api.py:297 build/api.py:300 part/api.py:212 stock/api.py:961 msgid "Exclude Tree" msgstr "Εξαίρεση δέντρου" -#: build/api.py:405 +#: build/api.py:411 msgid "Build must be cancelled before it can be deleted" msgstr "Η έκδοση πρέπει να ακυρωθεί πριν διαγραφεί" -#: build/api.py:449 build/serializers.py:1374 part/models.py:4402 +#: build/api.py:455 build/serializers.py:1382 part/models.py:4027 msgid "Consumable" msgstr "Αναλώσιμο" -#: build/api.py:452 build/serializers.py:1377 part/models.py:4396 +#: build/api.py:458 build/serializers.py:1385 part/models.py:4021 msgid "Optional" msgstr "Προαιρετικό" -#: build/api.py:455 build/serializers.py:1415 common/setting/system.py:456 -#: part/models.py:1202 part/serializers.py:1714 part/serializers.py:1725 +#: build/api.py:461 build/serializers.py:1423 common/setting/system.py:456 +#: part/models.py:1290 part/serializers.py:1579 part/serializers.py:1590 #: stock/api.py:639 msgid "Assembly" msgstr "Συναρμολόγηση" -#: build/api.py:458 +#: build/api.py:464 msgid "Tracked" msgstr "Υπό παρακολούθηση" -#: build/api.py:461 build/serializers.py:1380 part/models.py:1220 +#: build/api.py:467 build/serializers.py:1388 part/models.py:1308 msgid "Testable" msgstr "Υπό δοκιμή" -#: build/api.py:471 order/api.py:993 order/api.py:1363 +#: build/api.py:477 order/api.py:998 order/api.py:1368 msgid "Order Outstanding" msgstr "Εκκρεμής παραγγελία" -#: build/api.py:481 build/serializers.py:1464 order/api.py:952 +#: build/api.py:487 build/serializers.py:1472 order/api.py:957 msgid "Allocated" msgstr "Κατανεμημένο" -#: build/api.py:490 build/models.py:1672 build/serializers.py:1393 +#: build/api.py:496 build/models.py:1673 build/serializers.py:1401 msgid "Consumed" msgstr "Καταναλωμένο" -#: build/api.py:499 company/models.py:912 company/serializers.py:440 +#: build/api.py:505 company/models.py:866 company/serializers.py:467 #: templates/email/build_order_required_stock.html:19 #: templates/email/low_stock_notification.html:17 #: templates/email/part_event_notification.html:18 msgid "Available" msgstr "Διαθέσιμο" -#: build/api.py:523 build/serializers.py:1466 company/serializers.py:437 -#: order/serializers.py:1281 part/serializers.py:959 part/serializers.py:1306 -#: part/serializers.py:1761 +#: build/api.py:529 build/serializers.py:1474 company/serializers.py:464 +#: order/serializers.py:1295 part/serializers.py:844 part/serializers.py:1171 +#: part/serializers.py:1626 msgid "On Order" msgstr "Σε παραγγελία" -#: build/api.py:868 build/models.py:117 order/models.py:1974 +#: build/api.py:874 build/models.py:118 order/models.py:1975 #: report/templates/report/inventree_build_order_report.html:105 #: stock/serializers.py:93 templates/email/build_order_completed.html:16 #: templates/email/overdue_build_order.html:15 msgid "Build Order" msgstr "Σειρά Κατασκευής" -#: build/api.py:882 build/api.py:886 build/serializers.py:372 -#: build/serializers.py:497 build/serializers.py:567 build/serializers.py:1251 -#: build/serializers.py:1256 order/api.py:1234 order/api.py:1239 -#: order/serializers.py:833 order/serializers.py:973 order/serializers.py:2042 +#: build/api.py:888 build/api.py:892 build/serializers.py:380 +#: build/serializers.py:505 build/serializers.py:575 build/serializers.py:1259 +#: build/serializers.py:1264 order/api.py:1239 order/api.py:1244 +#: order/serializers.py:844 order/serializers.py:984 order/serializers.py:2059 #: stock/api.py:987 stock/serializers.py:111 stock/serializers.py:601 #: stock/serializers.py:710 stock/serializers.py:888 stock/serializers.py:1418 -#: stock/serializers.py:1731 stock/serializers.py:1780 +#: stock/serializers.py:1739 stock/serializers.py:1788 #: templates/email/stale_stock_notification.html:18 users/models.py:549 msgid "Location" msgstr "Τοποθεσία" -#: build/api.py:894 +#: build/api.py:900 msgid "Output" msgstr "Έξοδος" -#: build/api.py:896 +#: build/api.py:902 msgid "Filter by output stock item ID. Use 'null' to find uninstalled build items." msgstr "Φιλτράρισμα με βάση το ID του αποθέματος εξόδου. Χρησιμοποιήστε 'null' για να βρείτε μη εγκατεστημένα στοιχεία κατασκευής" -#: build/models.py:118 users/ruleset.py:31 +#: build/models.py:119 users/ruleset.py:31 msgid "Build Orders" msgstr "Δημιουργία Παραγγελιών" -#: build/models.py:168 +#: build/models.py:169 msgid "Assembly BOM has not been validated" msgstr "Το BOM της συναρμολόγησης δεν έχει επικυρωθεί" -#: build/models.py:175 +#: build/models.py:176 msgid "Build order cannot be created for an inactive part" msgstr "Δεν μπορεί να δημιουργηθεί εντολή κατασκευής για ανενεργό Aντικειμένου" -#: build/models.py:182 +#: build/models.py:183 msgid "Build order cannot be created for an unlocked part" msgstr "Δεν μπορεί να δημιουργηθεί εντολή κατασκευής για μη κλειδωμένο Aντικειμένου" -#: build/models.py:200 +#: build/models.py:201 msgid "Build orders can only be externally fulfilled for purchaseable parts" msgstr "Οι εντολές κατασκευής μπορούν να εκτελεστούν εξωτερικά μόνο για Προϊόντα που μπορούν να αγοραστούν" -#: build/models.py:207 order/models.py:369 +#: build/models.py:208 order/models.py:370 msgid "Responsible user or group must be specified" msgstr "Πρέπει να οριστεί υπεύθυνος χρήστης ή ομάδα" -#: build/models.py:212 +#: build/models.py:213 msgid "Build order part cannot be changed" msgstr "Εξάρτημα από εντολή κατασκευής δεν μπορεί να αλλάξει" -#: build/models.py:217 order/models.py:382 +#: build/models.py:218 order/models.py:383 msgid "Target date must be after start date" msgstr "Η ημερομηνία στόχος πρέπει να είναι μετά την ημερομηνία έναρξης" -#: build/models.py:245 +#: build/models.py:246 msgid "Build Order Reference" msgstr "Αναφορά Παραγγελίας Κατασκευής" -#: build/models.py:246 build/serializers.py:1371 order/models.py:614 -#: order/models.py:1311 order/models.py:1773 order/models.py:2712 -#: part/models.py:4442 +#: build/models.py:247 build/serializers.py:1379 order/models.py:615 +#: order/models.py:1312 order/models.py:1774 order/models.py:2713 +#: part/models.py:4067 #: report/templates/report/inventree_bill_of_materials_report.html:139 #: report/templates/report/inventree_purchase_order_report.html:35 #: report/templates/report/inventree_return_order_report.html:26 @@ -773,230 +789,230 @@ msgstr "Αναφορά Παραγγελίας Κατασκευής" msgid "Reference" msgstr "Αναφορά" -#: build/models.py:255 +#: build/models.py:256 msgid "Brief description of the build (optional)" msgstr "Σύντομη περιγραφή της κατασκευής (προαιρετικό)" -#: build/models.py:265 +#: build/models.py:266 msgid "BuildOrder to which this build is allocated" msgstr "BuildOrder στην οποία έχει δοθεί αυτή η κατασκευή" -#: build/models.py:274 +#: build/models.py:275 msgid "Select part to build" msgstr "Επιλέξτε τμήμα για κατασκευή" -#: build/models.py:279 +#: build/models.py:280 msgid "Sales Order Reference" msgstr "Κωδικός Παραγγελίας Πωλήσεων" -#: build/models.py:284 +#: build/models.py:285 msgid "SalesOrder to which this build is allocated" msgstr "SalesOrder στην οποία έχει διατεθεί αυτό το build" -#: build/models.py:289 build/serializers.py:1097 +#: build/models.py:290 build/serializers.py:1105 msgid "Source Location" msgstr "Τοποθεσία Προέλευσης" -#: build/models.py:295 +#: build/models.py:296 msgid "Select location to take stock from for this build (leave blank to take from any stock location)" msgstr "Επιλέξτε τοποθεσία από την οποία θα γίνει απόθεμα, για αυτή την κατασκευή (αφήστε κενό για να πάρετε από οποιαδήποτε θέση αποθήκευσης)" -#: build/models.py:301 +#: build/models.py:302 msgid "External Build" msgstr "Εξωτερική κατασκευή" -#: build/models.py:302 +#: build/models.py:303 msgid "This build order is fulfilled externally" msgstr "Αυτή η εντολή κατασκευής εκτελείται εξωτερικά" -#: build/models.py:307 +#: build/models.py:308 msgid "Destination Location" msgstr "Τοποθεσία Προορισμού" -#: build/models.py:312 +#: build/models.py:313 msgid "Select location where the completed items will be stored" msgstr "Επιλέξτε την τοποθεσία όπου θα αποθηκευτούν τα ολοκληρωμένα στοιχεία" -#: build/models.py:316 +#: build/models.py:317 msgid "Build Quantity" msgstr "Ποσότητα Κατασκευής" -#: build/models.py:319 +#: build/models.py:320 msgid "Number of stock items to build" msgstr "Αριθμός αντικειμένων για κατασκευή" -#: build/models.py:323 +#: build/models.py:324 msgid "Completed items" msgstr "Ολοκληρωμένα αντικείμενα" -#: build/models.py:325 +#: build/models.py:326 msgid "Number of stock items which have been completed" msgstr "Αριθμός αντικειμένων αποθέματος που έχουν ολοκληρωθεί" -#: build/models.py:329 +#: build/models.py:330 msgid "Build Status" msgstr "Κατάσταση Κατασκευής" -#: build/models.py:334 +#: build/models.py:335 msgid "Build status code" msgstr "Κωδικός κατάστασης κατασκευής" -#: build/models.py:343 build/serializers.py:359 order/serializers.py:849 +#: build/models.py:344 build/serializers.py:367 order/serializers.py:860 #: stock/models.py:1100 stock/serializers.py:85 stock/serializers.py:1591 msgid "Batch Code" msgstr "Κωδικός Παρτίδας" -#: build/models.py:347 build/serializers.py:360 +#: build/models.py:348 build/serializers.py:368 msgid "Batch code for this build output" msgstr "Κωδικός παρτίδας για αυτήν την κατασκευή" -#: build/models.py:351 order/models.py:479 order/serializers.py:186 -#: part/models.py:1283 +#: build/models.py:352 order/models.py:480 order/serializers.py:193 +#: part/models.py:1371 msgid "Creation Date" msgstr "Ημερομηνία Δημιουργίας" -#: build/models.py:357 +#: build/models.py:358 msgid "Build start date" msgstr "Ημερομηνία έναρξης κατασκευής" -#: build/models.py:358 +#: build/models.py:359 msgid "Scheduled start date for this build order" msgstr "Προγραμματισμένη ημερομηνία έναρξης για αυτή την εντολή κατασκευής" -#: build/models.py:364 +#: build/models.py:365 msgid "Target completion date" msgstr "Ημερομηνία ολοκλήρωσης στόχου" -#: build/models.py:366 +#: build/models.py:367 msgid "Target date for build completion. Build will be overdue after this date." msgstr "Ημερομηνία ολοκλήρωσης της κατασκευής. Η κατασκευή θα καθυστερήσει μετά από αυτή την ημερομηνία." -#: build/models.py:371 order/models.py:667 order/models.py:2751 +#: build/models.py:372 order/models.py:668 order/models.py:2752 msgid "Completion Date" msgstr "Ημερομηνία ολοκλήρωσης" -#: build/models.py:379 +#: build/models.py:380 msgid "completed by" msgstr "ολοκληρώθηκε από" -#: build/models.py:388 +#: build/models.py:389 msgid "Issued by" msgstr "Εκδόθηκε από" -#: build/models.py:389 +#: build/models.py:390 msgid "User who issued this build order" msgstr "Χρήστης που εξέδωσε αυτήν την παραγγελία κατασκευής" -#: build/models.py:398 common/models.py:180 order/api.py:179 -#: order/models.py:504 part/models.py:1300 +#: build/models.py:399 common/models.py:184 order/api.py:184 +#: order/models.py:505 part/models.py:1388 #: report/templates/report/inventree_build_order_report.html:158 msgid "Responsible" msgstr "Υπεύθυνος" -#: build/models.py:399 +#: build/models.py:400 msgid "User or group responsible for this build order" msgstr "Χρήστης ή ομάδα υπεύθυνη για αυτή την εντολή κατασκευής" -#: build/models.py:404 stock/models.py:1093 +#: build/models.py:405 stock/models.py:1093 msgid "External Link" msgstr "Εξωτερικοί σύνδεσμοι" -#: build/models.py:406 common/models.py:1984 part/models.py:1114 +#: build/models.py:407 common/models.py:1990 part/models.py:1202 #: stock/models.py:1095 msgid "Link to external URL" msgstr "Σύνδεσμος προς εξωτερική διεύθυνση URL" -#: build/models.py:411 +#: build/models.py:412 msgid "Build Priority" msgstr "Προτεραιότητα Κατασκευής" -#: build/models.py:414 +#: build/models.py:415 msgid "Priority of this build order" msgstr "Προτεραιότητα αυτής της εντολής κατασκευής" -#: build/models.py:422 common/models.py:150 common/models.py:164 -#: order/api.py:165 order/models.py:451 order/models.py:1805 +#: build/models.py:423 common/models.py:154 common/models.py:168 +#: order/api.py:170 order/models.py:452 order/models.py:1806 msgid "Project Code" msgstr "Κωδικός Έργου" -#: build/models.py:423 +#: build/models.py:424 msgid "Project code for this build order" msgstr "Κωδικός έργου για αυτήν την εντολή κατασκευής" -#: build/models.py:676 +#: build/models.py:677 msgid "Cannot complete build order with open child builds" msgstr "Δεν είναι δυνατή η ολοκλήρωση της εντολής κατασκευής με ανοιχτές θυγατρικές κατασκευές" -#: build/models.py:681 +#: build/models.py:682 msgid "Cannot complete build order with incomplete outputs" msgstr "Δεν είναι δυνατή η ολοκλήρωση της εντολής κατασκευής με μη ολοκληρωμένα προϊόντα" -#: build/models.py:700 build/models.py:830 +#: build/models.py:701 build/models.py:831 msgid "Failed to offload task to complete build allocations" msgstr "Αποτυχία εκχώρησης εργασίας για την ολοκλήρωση των κατανομών κατασκευής" -#: build/models.py:723 +#: build/models.py:724 #, python-brace-format msgid "Build order {build} has been completed" msgstr "Η παραγγελία κατασκευής {build} έχει ολοκληρωθεί" -#: build/models.py:729 +#: build/models.py:730 msgid "A build order has been completed" msgstr "Η παραγγελία κατασκευής έχει ολοκληρωθεί" -#: build/models.py:911 build/serializers.py:407 +#: build/models.py:912 build/serializers.py:415 msgid "Serial numbers must be provided for trackable parts" msgstr "Πρέπει να δοθούν σειριακοί αριθμοί για τα ανιχνεύσιμα Προϊόντα" -#: build/models.py:1042 build/models.py:1129 +#: build/models.py:1043 build/models.py:1130 msgid "No build output specified" msgstr "Δεν καθορίστηκε έξοδος κατασκευής" -#: build/models.py:1045 +#: build/models.py:1046 msgid "Build output is already completed" msgstr "Η παραγγελία κατασκευής έχει ολοκληρωθεί" -#: build/models.py:1048 +#: build/models.py:1049 msgid "Build output does not match Build Order" msgstr "Η έξοδος κατασκευής δεν ταιριάζει με την παραγγελία κατασκευής" -#: build/models.py:1136 build/models.py:1234 build/serializers.py:285 -#: build/serializers.py:335 build/serializers.py:965 build/serializers.py:1739 -#: order/models.py:717 order/serializers.py:658 order/serializers.py:844 -#: part/serializers.py:1708 stock/models.py:940 stock/models.py:1430 +#: build/models.py:1137 build/models.py:1235 build/serializers.py:293 +#: build/serializers.py:343 build/serializers.py:973 build/serializers.py:1747 +#: order/models.py:718 order/serializers.py:669 order/serializers.py:855 +#: part/serializers.py:1573 stock/models.py:940 stock/models.py:1430 #: stock/models.py:1878 stock/serializers.py:688 stock/serializers.py:1580 msgid "Quantity must be greater than zero" msgstr "Η ποσότητα πρέπει να είναι μεγαλύτερη από 0" -#: build/models.py:1140 build/models.py:1239 build/serializers.py:290 +#: build/models.py:1141 build/models.py:1240 build/serializers.py:298 msgid "Quantity cannot be greater than the output quantity" msgstr "Η ποσότητα δεν μπορεί να είναι μεγαλύτερη από την παραγόμενη ποσότητα" -#: build/models.py:1214 build/serializers.py:606 +#: build/models.py:1215 build/serializers.py:614 msgid "Build output has not passed all required tests" msgstr "Η έξοδος κατασκευής δεν έχει περάσει όλες τις απαιτούμενες δοκιμές" -#: build/models.py:1217 build/serializers.py:601 +#: build/models.py:1218 build/serializers.py:609 #, python-brace-format msgid "Build output {serial} has not passed all required tests" msgstr "Το προϊόν κατασκευής {serial} δεν έχει περάσει όλες τις απαιτούμενες δοκιμές" -#: build/models.py:1229 +#: build/models.py:1230 msgid "Cannot partially complete a build output with allocated items" msgstr "Δεν είναι δυνατή η μερική ολοκλήρωση προϊόντος κατασκευής με δεσμευμένα στοιχεία" -#: build/models.py:1627 +#: build/models.py:1628 msgid "Build Order Line Item" msgstr "Γραμμή εντολής κατασκευής" -#: build/models.py:1651 +#: build/models.py:1652 msgid "Build object" msgstr "Αντικείμενο κατασκευής" -#: build/models.py:1663 build/models.py:1974 build/serializers.py:271 -#: build/serializers.py:320 build/serializers.py:1392 common/models.py:1340 -#: order/models.py:1756 order/models.py:2597 order/serializers.py:1696 -#: order/serializers.py:2124 part/models.py:3453 part/models.py:4390 +#: build/models.py:1664 build/models.py:1975 build/serializers.py:279 +#: build/serializers.py:328 build/serializers.py:1400 common/models.py:1344 +#: order/models.py:1757 order/models.py:2598 order/serializers.py:1710 +#: order/serializers.py:2141 part/models.py:3517 part/models.py:4015 #: report/templates/report/inventree_bill_of_materials_report.html:138 #: report/templates/report/inventree_build_order_report.html:113 #: report/templates/report/inventree_purchase_order_report.html:36 @@ -1014,427 +1030,427 @@ msgstr "Αντικείμενο κατασκευής" msgid "Quantity" msgstr "Ποσότητα" -#: build/models.py:1664 +#: build/models.py:1665 msgid "Required quantity for build order" msgstr "Απαιτούμενη ποσότητα για την εντολή κατασκευής" -#: build/models.py:1673 +#: build/models.py:1674 msgid "Quantity of consumed stock" msgstr "Ποσότητα καταναλωμένου αποθέματος" -#: build/models.py:1772 +#: build/models.py:1773 msgid "Build item must specify a build output, as master part is marked as trackable" msgstr "Το στοιχείο κατασκευής πρέπει να ορίζει μια έξοδο κατασκευής, καθώς το κύριο τμήμα επισημαίνεται ως ανιχνεύσιμο" -#: build/models.py:1783 +#: build/models.py:1784 #, python-brace-format msgid "Allocated quantity ({q}) must not exceed available stock quantity ({a})" msgstr "Η καταχωρημένη ποσότητα ({q}) δεν πρέπει να υπερβαίνει τη διαθέσιμη ποσότητα αποθέματος ({a})" -#: build/models.py:1804 order/models.py:2546 +#: build/models.py:1805 order/models.py:2547 msgid "Stock item is over-allocated" msgstr "Στοιχείο αποθέματος είναι υπερ-κατανεμημένο" -#: build/models.py:1809 order/models.py:2549 +#: build/models.py:1810 order/models.py:2550 msgid "Allocation quantity must be greater than zero" msgstr "Η ποσότητα πρέπει να είναι μεγαλύτερη από 0" -#: build/models.py:1815 +#: build/models.py:1816 msgid "Quantity must be 1 for serialized stock" msgstr "Η ποσότητα πρέπει να είναι 1 για σειριακό απόθεμα" -#: build/models.py:1875 +#: build/models.py:1876 msgid "Selected stock item does not match BOM line" msgstr "Το επιλεγμένο στοιχείο αποθέματος δεν ταιριάζει με τη γραμμή ΤΥ" -#: build/models.py:1913 +#: build/models.py:1914 msgid "Allocated quantity exceeds available stock quantity" msgstr "Η δεσμευμένη ποσότητα υπερβαίνει τη διαθέσιμη ποσότητα αποθέματος" -#: build/models.py:1964 build/serializers.py:948 build/serializers.py:1240 -#: order/serializers.py:1533 order/serializers.py:1554 +#: build/models.py:1965 build/serializers.py:956 build/serializers.py:1248 +#: order/serializers.py:1547 order/serializers.py:1568 #: report/templates/report/inventree_sales_order_shipment_report.html:29 #: stock/api.py:1404 stock/models.py:456 stock/serializers.py:102 #: stock/serializers.py:800 stock/serializers.py:1274 stock/serializers.py:1386 msgid "Stock Item" msgstr "Στοιχείο Αποθέματος" -#: build/models.py:1965 +#: build/models.py:1966 msgid "Source stock item" msgstr "Στοιχείο πηγαίου αποθέματος" -#: build/models.py:1975 +#: build/models.py:1976 msgid "Stock quantity to allocate to build" msgstr "Ποσότητα αποθέματος για διάθεση για κατασκευή" -#: build/models.py:1984 +#: build/models.py:1985 msgid "Install into" msgstr "Εγκατάσταση σε" -#: build/models.py:1985 +#: build/models.py:1986 msgid "Destination stock item" msgstr "Αποθήκη προορισμού" -#: build/serializers.py:118 +#: build/serializers.py:120 msgid "Build Level" msgstr "Επίπεδο κατασκευής" -#: build/serializers.py:128 +#: build/serializers.py:136 msgid "Part Name" msgstr "Όνομα Προϊόντος" -#: build/serializers.py:153 +#: build/serializers.py:161 msgid "Project Code Label" msgstr "Ετικέτα κωδικού έργου" -#: build/serializers.py:219 build/serializers.py:974 +#: build/serializers.py:227 build/serializers.py:982 msgid "Build Output" msgstr "Κατασκευή Εξόδου" -#: build/serializers.py:231 +#: build/serializers.py:239 msgid "Build output does not match the parent build" msgstr "Η έξοδος κατασκευής δεν ταιριάζει με την παραγγελία κατασκευής" -#: build/serializers.py:235 +#: build/serializers.py:243 msgid "Output part does not match BuildOrder part" msgstr "Το εξερχόμενο μέρος δεν ταιριάζει με το μέρος BuildOrder" -#: build/serializers.py:239 +#: build/serializers.py:247 msgid "This build output has already been completed" msgstr "Η παραγγελία κατασκευής έχει ολοκληρωθεί" -#: build/serializers.py:253 +#: build/serializers.py:261 msgid "This build output is not fully allocated" msgstr "Αυτή η έξοδος κατασκευής δεν έχει εκχωρηθεί πλήρως" -#: build/serializers.py:272 build/serializers.py:321 +#: build/serializers.py:280 build/serializers.py:329 msgid "Enter quantity for build output" msgstr "Εισάγετε ποσότητα για την έξοδο κατασκευής" -#: build/serializers.py:343 +#: build/serializers.py:351 msgid "Integer quantity required for trackable parts" msgstr "Ακέραιη ποσότητα που απαιτείται για ανιχνεύσιμα μέρη" -#: build/serializers.py:349 +#: build/serializers.py:357 msgid "Integer quantity required, as the bill of materials contains trackable parts" msgstr "Ακέραιη ποσότητα που απαιτείται, καθώς ο λογαριασμός των υλικών περιέχει ανιχνεύσιμα μέρη" -#: build/serializers.py:366 order/serializers.py:865 order/serializers.py:1700 +#: build/serializers.py:374 order/serializers.py:876 order/serializers.py:1714 #: stock/serializers.py:699 msgid "Serial Numbers" msgstr "Σειριακοί αριθμοί" -#: build/serializers.py:367 +#: build/serializers.py:375 msgid "Enter serial numbers for build outputs" msgstr "Εισάγετε ποσότητα για την έξοδο κατασκευής" -#: build/serializers.py:373 +#: build/serializers.py:381 msgid "Stock location for build output" msgstr "Τοποθεσία αποθέματος για την έξοδο κατασκευής" -#: build/serializers.py:388 +#: build/serializers.py:396 msgid "Auto Allocate Serial Numbers" msgstr "Αυτόματη Κατανομή Σειριακών Αριθμών" -#: build/serializers.py:390 +#: build/serializers.py:398 msgid "Automatically allocate required items with matching serial numbers" msgstr "Αυτόματη κατανομή των απαιτούμενων στοιχείων με τους αντίστοιχους σειριακούς αριθμούς" -#: build/serializers.py:423 order/serializers.py:951 stock/api.py:1183 +#: build/serializers.py:431 order/serializers.py:962 stock/api.py:1183 #: stock/models.py:1901 msgid "The following serial numbers already exist or are invalid" msgstr "Οι παρακάτω σειριακοί αριθμοί υπάρχουν ήδη ή δεν είναι έγκυροι" -#: build/serializers.py:465 build/serializers.py:521 build/serializers.py:613 +#: build/serializers.py:473 build/serializers.py:529 build/serializers.py:621 msgid "A list of build outputs must be provided" msgstr "Πρέπει να παρέχεται μια λίστα με τα αποτελέσματα κατασκευής" -#: build/serializers.py:498 +#: build/serializers.py:506 msgid "Stock location for scrapped outputs" msgstr "Θέση αποθέματος για απορριφθείσες παραγωγές" -#: build/serializers.py:504 +#: build/serializers.py:512 msgid "Discard Allocations" msgstr "Απόρριψη Κατανομών" -#: build/serializers.py:505 +#: build/serializers.py:513 msgid "Discard any stock allocations for scrapped outputs" msgstr "Απορρίψτε τυχόν κατανομές αποθέματος για παραγωγές που έχουν απορριφθεί" -#: build/serializers.py:510 +#: build/serializers.py:518 msgid "Reason for scrapping build output(s)" msgstr "Αιτία απόρριψης προϊόντων κατασκευής" -#: build/serializers.py:568 +#: build/serializers.py:576 msgid "Location for completed build outputs" msgstr "Τοποθεσία για ολοκληρωμένα προϊόντα κατασκευής" -#: build/serializers.py:576 +#: build/serializers.py:584 msgid "Accept Incomplete Allocation" msgstr "Αποδοχή Ελλιπούς Δέσμευσης" -#: build/serializers.py:577 +#: build/serializers.py:585 msgid "Complete outputs if stock has not been fully allocated" msgstr "Ολοκλήρωσε τα προϊόντα εάν το απόθεμα δεν έχει δεσμευτεί πλήρως" -#: build/serializers.py:702 +#: build/serializers.py:710 msgid "Consume Allocated Stock" msgstr "Κατανάλωση δεσμευμένου αποθέματος" -#: build/serializers.py:703 +#: build/serializers.py:711 msgid "Consume any stock which has already been allocated to this build" msgstr "Κατανάλωση οποιουδήποτε αποθέματος έχει ήδη δεσμευτεί για αυτή την κατασκευή" -#: build/serializers.py:709 +#: build/serializers.py:717 msgid "Remove Incomplete Outputs" msgstr "Αφαίρεση Ατελείωτων Προϊόντων" -#: build/serializers.py:710 +#: build/serializers.py:718 msgid "Delete any build outputs which have not been completed" msgstr "Διαγράψτε τυχόν προϊόντα κατασκευής που δεν έχουν ολοκληρωθεί" -#: build/serializers.py:737 +#: build/serializers.py:745 msgid "Not permitted" msgstr "Δεν επιτρέπεται" -#: build/serializers.py:738 +#: build/serializers.py:746 msgid "Accept as consumed by this build order" msgstr "Αποδοχή ως κατανάλωση για αυτή την παραγγελία κατασκευής" -#: build/serializers.py:739 +#: build/serializers.py:747 msgid "Deallocate before completing this build order" msgstr "Αποδέσμευση πριν από την ολοκλήρωση αυτής της παραγγελίας κατασκευής" -#: build/serializers.py:766 +#: build/serializers.py:774 msgid "Overallocated Stock" msgstr "Υπερ-δεσμευμένο Απόθεμα" -#: build/serializers.py:769 +#: build/serializers.py:777 msgid "How do you want to handle extra stock items assigned to the build order" msgstr "Πώς θέλετε να χειριστείτε το επιπλέον απόθεμα που έχει δεσμευτεί στην παραγγελία κατασκευής" -#: build/serializers.py:780 +#: build/serializers.py:788 msgid "Some stock items have been overallocated" msgstr "Μερικά στοιχεία αποθέματος έχουν υπερ-δεσμευτεί" -#: build/serializers.py:785 +#: build/serializers.py:793 msgid "Accept Unallocated" msgstr "Αποδοχή Μη Δεσμευμένων" -#: build/serializers.py:787 +#: build/serializers.py:795 msgid "Accept that stock items have not been fully allocated to this build order" msgstr "Αποδεχτείτε ότι αντικείμενα αποθέματος δεν έχουν δεσμευτεί πλήρως σε αυτή την παραγγελία κατασκευής" -#: build/serializers.py:798 +#: build/serializers.py:806 msgid "Required stock has not been fully allocated" msgstr "Το απαιτούμενο απόθεμα δεν έχει δεσμευτεί πλήρως" -#: build/serializers.py:803 order/serializers.py:524 order/serializers.py:1601 +#: build/serializers.py:811 order/serializers.py:535 order/serializers.py:1615 msgid "Accept Incomplete" msgstr "Αποδοχή Μη Ολοκληρωμένων" -#: build/serializers.py:805 +#: build/serializers.py:813 msgid "Accept that the required number of build outputs have not been completed" msgstr "Αποδεχτείτε ότι ο απαιτούμενος αριθμός προϊόντων κατασκευής δεν έχει ολοκληρωθεί" -#: build/serializers.py:816 +#: build/serializers.py:824 msgid "Required build quantity has not been completed" msgstr "Ο απαιτούμενος αριθμός προϊόντων δεν έχει ολοκληρωθεί" -#: build/serializers.py:828 +#: build/serializers.py:836 msgid "Build order has open child build orders" msgstr "Η εντολή κατασκευής έχει ανοιχτές θυγατρικές εντολές κατασκευής" -#: build/serializers.py:831 +#: build/serializers.py:839 msgid "Build order must be in production state" msgstr "Η εντολή κατασκευής πρέπει να βρίσκεται σε κατάσταση παραγωγής" -#: build/serializers.py:834 +#: build/serializers.py:842 msgid "Build order has incomplete outputs" msgstr "Η παραγγελία κατασκευής έχει ελλιπή προϊόντα" -#: build/serializers.py:873 +#: build/serializers.py:881 msgid "Build Line" msgstr "Γραμμή Κατασκευής" -#: build/serializers.py:881 +#: build/serializers.py:889 msgid "Build output" msgstr "Προϊόν Κατασκευής" -#: build/serializers.py:889 +#: build/serializers.py:897 msgid "Build output must point to the same build" msgstr "Το προϊόν κατασκευής πρέπει να δείχνει στην ίδια κατασκευή" -#: build/serializers.py:920 +#: build/serializers.py:928 msgid "Build Line Item" msgstr "Αντικείμενο Γραμμής Κατασκευής" -#: build/serializers.py:938 +#: build/serializers.py:946 msgid "bom_item.part must point to the same part as the build order" msgstr "bom_item.part πρέπει να δείχνει στο ίδιο εξάρτημα με τη εντολή κατασκευής" -#: build/serializers.py:954 stock/serializers.py:1287 +#: build/serializers.py:962 stock/serializers.py:1287 msgid "Item must be in stock" msgstr "Το στοιχείο πρέπει να υπάρχει στο απόθεμα" -#: build/serializers.py:997 order/serializers.py:1587 +#: build/serializers.py:1005 order/serializers.py:1601 #, python-brace-format msgid "Available quantity ({q}) exceeded" msgstr "Η διαθέσιμη ποσότητα ({q}) έχει ξεπεραστεί" -#: build/serializers.py:1003 +#: build/serializers.py:1011 msgid "Build output must be specified for allocation of tracked parts" msgstr "Πρέπει να καθοριστεί έξοδος κατασκευής για την κατανομή ανιχνεύσιμων Προϊόντων" -#: build/serializers.py:1011 +#: build/serializers.py:1019 msgid "Build output cannot be specified for allocation of untracked parts" msgstr "Δεν μπορεί να καθοριστεί έξοδος κατασκευής για την κατανομή μη ανιχνεύσιμων Προϊόντων" -#: build/serializers.py:1035 order/serializers.py:1860 +#: build/serializers.py:1043 order/serializers.py:1874 msgid "Allocation items must be provided" msgstr "Πρέπει να δοθούν στοιχεία κατανομής" -#: build/serializers.py:1099 +#: build/serializers.py:1107 msgid "Stock location where parts are to be sourced (leave blank to take from any location)" msgstr "Τοποθεσία αποθέματος από την οποία θα ληφθούν τα Προϊόντα (αφήστε κενό για λήψη από οποιαδήποτε τοποθεσία)" -#: build/serializers.py:1108 +#: build/serializers.py:1116 msgid "Exclude Location" msgstr "Εξαίρεση τοποθεσίας" -#: build/serializers.py:1109 +#: build/serializers.py:1117 msgid "Exclude stock items from this selected location" msgstr "Εξαιρέστε στοιχεία αποθέματος από αυτή την επιλεγμένη τοποθεσία" -#: build/serializers.py:1114 +#: build/serializers.py:1122 msgid "Interchangeable Stock" msgstr "Εναλλάξιμο απόθεμα" -#: build/serializers.py:1115 +#: build/serializers.py:1123 msgid "Stock items in multiple locations can be used interchangeably" msgstr "Στοιχεία αποθέματος σε πολλές τοποθεσίες μπορούν να χρησιμοποιηθούν εναλλάξ" -#: build/serializers.py:1120 +#: build/serializers.py:1128 msgid "Substitute Stock" msgstr "Εναλλακτικό απόθεμα" -#: build/serializers.py:1121 +#: build/serializers.py:1129 msgid "Allow allocation of substitute parts" msgstr "Να επιτρέπεται η κατανομή εναλλακτικών Προϊόντων" -#: build/serializers.py:1126 +#: build/serializers.py:1134 msgid "Optional Items" msgstr "Προαιρετικά στοιχεία" -#: build/serializers.py:1127 +#: build/serializers.py:1135 msgid "Allocate optional BOM items to build order" msgstr "Κατανομή προαιρετικών στοιχείων BOM στην εντολή κατασκευής" -#: build/serializers.py:1148 +#: build/serializers.py:1156 msgid "Failed to start auto-allocation task" msgstr "Αποτυχία εκκίνησης εργασίας αυτόματης κατανομής" -#: build/serializers.py:1200 +#: build/serializers.py:1208 msgid "BOM Reference" msgstr "Αναφορά BOM" -#: build/serializers.py:1206 +#: build/serializers.py:1214 msgid "BOM Part ID" msgstr "ID Προϊόντος BOM" -#: build/serializers.py:1213 +#: build/serializers.py:1221 msgid "BOM Part Name" msgstr "Όνομα Προϊόντος BOM" -#: build/serializers.py:1266 build/serializers.py:1449 +#: build/serializers.py:1274 build/serializers.py:1457 msgid "Build" msgstr "Κατασκευή" -#: build/serializers.py:1276 company/models.py:685 order/api.py:311 -#: order/api.py:316 order/api.py:543 order/serializers.py:650 +#: build/serializers.py:1284 company/models.py:639 order/api.py:316 +#: order/api.py:321 order/api.py:549 order/serializers.py:661 #: stock/models.py:1036 stock/serializers.py:579 msgid "Supplier Part" msgstr "Aντικειμένου προμηθευτή" -#: build/serializers.py:1284 stock/serializers.py:620 +#: build/serializers.py:1292 stock/serializers.py:620 msgid "Allocated Quantity" msgstr "Δεσμευμένη ποσότητα" -#: build/serializers.py:1351 +#: build/serializers.py:1359 msgid "Build Reference" msgstr "Αναφορά κατασκευής" -#: build/serializers.py:1361 +#: build/serializers.py:1369 msgid "Part Category Name" msgstr "Όνομα κατηγορίας Προϊόντος" -#: build/serializers.py:1383 common/setting/system.py:480 part/models.py:1214 +#: build/serializers.py:1391 common/setting/system.py:480 part/models.py:1302 msgid "Trackable" msgstr "Ανιχνεύσιμο" -#: build/serializers.py:1386 +#: build/serializers.py:1394 msgid "Inherited" msgstr "Κληρονομημένο" -#: build/serializers.py:1389 part/models.py:4475 +#: build/serializers.py:1397 part/models.py:4100 msgid "Allow Variants" msgstr "Να επιτρέπονται παραλλαγές" -#: build/serializers.py:1395 build/serializers.py:1400 part/models.py:4208 -#: part/models.py:4779 stock/api.py:882 +#: build/serializers.py:1403 build/serializers.py:1408 part/models.py:3833 +#: part/models.py:4404 stock/api.py:882 msgid "BOM Item" msgstr "Στοιχείο BOM" -#: build/serializers.py:1467 order/serializers.py:1282 part/serializers.py:1310 -#: part/serializers.py:1765 +#: build/serializers.py:1475 order/serializers.py:1296 part/serializers.py:1175 +#: part/serializers.py:1630 msgid "In Production" msgstr "Σε παραγωγή" -#: build/serializers.py:1469 part/serializers.py:950 part/serializers.py:1314 +#: build/serializers.py:1477 part/serializers.py:835 part/serializers.py:1179 msgid "Scheduled to Build" msgstr "Προγραμματισμένο για κατασκευή" -#: build/serializers.py:1472 part/serializers.py:987 +#: build/serializers.py:1480 part/serializers.py:872 msgid "External Stock" msgstr "Εξωτερικό απόθεμα" -#: build/serializers.py:1473 part/serializers.py:1300 part/serializers.py:1808 +#: build/serializers.py:1481 part/serializers.py:1165 part/serializers.py:1673 msgid "Available Stock" msgstr "Διαθέσιμο απόθεμα" -#: build/serializers.py:1475 +#: build/serializers.py:1483 msgid "Available Substitute Stock" msgstr "Διαθέσιμο εναλλακτικό απόθεμα" -#: build/serializers.py:1478 +#: build/serializers.py:1486 msgid "Available Variant Stock" msgstr "Διαθέσιμο απόθεμα παραλλαγών" -#: build/serializers.py:1752 +#: build/serializers.py:1760 msgid "Consumed quantity exceeds allocated quantity" msgstr "Η καταναλωμένη ποσότητα υπερβαίνει τη δεσμευμένη ποσότητα" -#: build/serializers.py:1789 +#: build/serializers.py:1797 msgid "Optional notes for the stock consumption" msgstr "Προαιρετικές σημειώσεις για την κατανάλωση αποθέματος" -#: build/serializers.py:1806 +#: build/serializers.py:1814 msgid "Build item must point to the correct build order" msgstr "Το στοιχείο κατασκευής πρέπει να αντιστοιχεί στη σωστή εντολή κατασκευής" -#: build/serializers.py:1811 +#: build/serializers.py:1819 msgid "Duplicate build item allocation" msgstr "Διπλή κατανομή στοιχείου κατασκευής" -#: build/serializers.py:1829 +#: build/serializers.py:1837 msgid "Build line must point to the correct build order" msgstr "Η γραμμή κατασκευής πρέπει να αντιστοιχεί στη σωστή εντολή κατασκευής" -#: build/serializers.py:1834 +#: build/serializers.py:1842 msgid "Duplicate build line allocation" msgstr "Διπλή κατανομή γραμμής κατασκευής" -#: build/serializers.py:1846 +#: build/serializers.py:1854 msgid "At least one item or line must be provided" msgstr "Πρέπει να δοθεί τουλάχιστον ένα στοιχείο ή μία γραμμή" @@ -1482,702 +1498,826 @@ msgstr "Εκπρόθεσμη εντολή κατασκευής" msgid "Build order {bo} is now overdue" msgstr "Η εντολή κατασκευής {bo} είναι πλέον εκπρόθεσμη" -#: common/api.py:694 +#: common/api.py:701 msgid "Is Link" msgstr "Είναι σύνδεσμος" -#: common/api.py:702 +#: common/api.py:709 msgid "Is File" msgstr "Είναι αρχείο" -#: common/api.py:745 +#: common/api.py:756 msgid "User does not have permission to delete these attachments" msgstr "Ο χρήστης δεν έχει δικαίωμα να διαγράψει αυτά τα συνημμένα" -#: common/api.py:762 +#: common/api.py:769 msgid "User does not have permission to delete this attachment" msgstr "Ο χρήστης δεν έχει δικαίωμα να διαγράψει αυτό το συνημμένο" -#: common/currency.py:122 +#: common/currency.py:130 msgid "Invalid currency code" msgstr "Μη έγκυρος κωδικός συναλλάγματος" -#: common/currency.py:124 +#: common/currency.py:132 msgid "Duplicate currency code" msgstr "Διπλός κωδικός συναλλάγματος" -#: common/currency.py:129 +#: common/currency.py:137 msgid "No valid currency codes provided" msgstr "Δεν δόθηκαν έγκυροι κωδικοί συναλλάγματος" -#: common/currency.py:146 +#: common/currency.py:154 msgid "No plugin" msgstr "Χωρίς πρόσθετο" -#: common/models.py:101 common/models.py:126 common/models.py:2729 +#: common/models.py:105 common/models.py:130 common/models.py:3150 msgid "Updated" msgstr "Ενημερώθηκε" -#: common/models.py:102 common/models.py:127 +#: common/models.py:106 common/models.py:131 msgid "Timestamp of last update" msgstr "Χρονική σήμανση τελευταίας ενημέρωσης" -#: common/models.py:139 +#: common/models.py:143 msgid "Update By" msgstr "Ενημερώθηκε από" -#: common/models.py:140 +#: common/models.py:144 msgid "User who last updated this object" msgstr "Χρήστης που ενημέρωσε τελευταίος αυτό το Aντικειμένου" -#: common/models.py:165 +#: common/models.py:169 msgid "Unique project code" msgstr "Μοναδικός κωδικός έργου" -#: common/models.py:172 +#: common/models.py:176 msgid "Project description" msgstr "Περιγραφή έργου" -#: common/models.py:181 +#: common/models.py:185 msgid "User or group responsible for this project" msgstr "Χρήστης ή ομάδα υπεύθυνη για αυτό το έργο" -#: common/models.py:771 common/models.py:1272 common/models.py:1310 +#: common/models.py:775 common/models.py:1276 common/models.py:1314 msgid "Settings key" msgstr "Κλειδί ρυθμίσεων" -#: common/models.py:775 +#: common/models.py:779 msgid "Settings value" msgstr "Τιμή ρυθμίσεων" -#: common/models.py:830 +#: common/models.py:834 msgid "Chosen value is not a valid option" msgstr "Η επιλεγμένη τιμή δεν είναι έγκυρη επιλογή" -#: common/models.py:846 +#: common/models.py:850 msgid "Value must be a boolean value" msgstr "Η τιμή πρέπει να είναι boolean" -#: common/models.py:854 +#: common/models.py:858 msgid "Value must be an integer value" msgstr "Η τιμή πρέπει να είναι ακέραιος αριθμός" -#: common/models.py:862 +#: common/models.py:866 msgid "Value must be a valid number" msgstr "Η τιμή πρέπει να είναι έγκυρος αριθμός" -#: common/models.py:887 +#: common/models.py:891 msgid "Value does not pass validation checks" msgstr "Η τιμή δεν περνά τους ελέγχους εγκυρότητας" -#: common/models.py:909 +#: common/models.py:913 msgid "Key string must be unique" msgstr "Η συμβολοσειρά κλειδιού πρέπει να είναι μοναδική" -#: common/models.py:1318 common/models.py:1319 common/models.py:1423 -#: common/models.py:1424 common/models.py:1669 common/models.py:1670 -#: common/models.py:2000 common/models.py:2001 common/models.py:2382 -#: importer/models.py:100 part/models.py:3547 part/models.py:3575 +#: common/models.py:1322 common/models.py:1323 common/models.py:1427 +#: common/models.py:1428 common/models.py:1673 common/models.py:1674 +#: common/models.py:2006 common/models.py:2007 common/models.py:2803 +#: importer/models.py:100 part/models.py:3611 part/models.py:3639 #: plugin/models.py:355 plugin/models.py:356 #: report/templates/report/inventree_test_report.html:105 users/models.py:124 #: users/models.py:501 msgid "User" msgstr "Χρήστης" -#: common/models.py:1341 +#: common/models.py:1345 msgid "Price break quantity" msgstr "Ποσότητα κλιμακωτής τιμής" -#: common/models.py:1348 company/serializers.py:564 order/models.py:1842 -#: order/models.py:3043 +#: common/models.py:1352 company/serializers.py:349 order/models.py:1843 +#: order/models.py:3044 msgid "Price" msgstr "Τιμή" -#: common/models.py:1349 +#: common/models.py:1353 msgid "Unit price at specified quantity" msgstr "Τιμή μονάδας στη συγκεκριμένη ποσότητα" -#: common/models.py:1400 common/models.py:1585 +#: common/models.py:1404 common/models.py:1589 msgid "Endpoint" msgstr "Endpoint" -#: common/models.py:1401 +#: common/models.py:1405 msgid "Endpoint at which this webhook is received" msgstr "Το endpoint στο οποίο λαμβάνεται αυτό το webhook" -#: common/models.py:1411 +#: common/models.py:1415 msgid "Name for this webhook" msgstr "Όνομα για αυτό το webhook" -#: common/models.py:1415 common/models.py:2241 common/models.py:2348 -#: company/models.py:191 company/models.py:822 machine/models.py:40 -#: part/models.py:1237 plugin/models.py:69 stock/api.py:642 users/models.py:195 +#: common/models.py:1419 common/models.py:2247 common/models.py:2354 +#: company/models.py:192 company/models.py:776 machine/models.py:40 +#: part/models.py:1325 plugin/models.py:69 stock/api.py:642 users/models.py:195 #: users/models.py:554 users/serializers.py:314 msgid "Active" msgstr "Ενεργό" -#: common/models.py:1415 +#: common/models.py:1419 msgid "Is this webhook active" msgstr "Είναι αυτό το webhook ενεργό" -#: common/models.py:1431 users/models.py:172 +#: common/models.py:1435 users/models.py:172 msgid "Token" msgstr "Token" -#: common/models.py:1432 +#: common/models.py:1436 msgid "Token for access" msgstr "Token πρόσβασης" -#: common/models.py:1440 +#: common/models.py:1444 msgid "Secret" msgstr "Μυστικό" -#: common/models.py:1441 +#: common/models.py:1445 msgid "Shared secret for HMAC" msgstr "Κοινόχρηστο μυστικό για HMAC" -#: common/models.py:1549 common/models.py:2619 +#: common/models.py:1553 common/models.py:3040 msgid "Message ID" msgstr "ID μηνύματος" -#: common/models.py:1550 common/models.py:2609 +#: common/models.py:1554 common/models.py:3030 msgid "Unique identifier for this message" msgstr "Μοναδικό αναγνωριστικό για αυτό το μήνυμα" -#: common/models.py:1558 +#: common/models.py:1562 msgid "Host" msgstr "Host" -#: common/models.py:1559 +#: common/models.py:1563 msgid "Host from which this message was received" msgstr "Host από τον οποίο παραλήφθηκε αυτό το μήνυμα" -#: common/models.py:1567 +#: common/models.py:1571 msgid "Header" msgstr "Κεφαλίδα" -#: common/models.py:1568 +#: common/models.py:1572 msgid "Header of this message" msgstr "Κεφαλίδα αυτού του μηνύματος" -#: common/models.py:1575 +#: common/models.py:1579 msgid "Body" msgstr "Κείμενο" -#: common/models.py:1576 +#: common/models.py:1580 msgid "Body of this message" msgstr "Κείμενο αυτού του μηνύματος" -#: common/models.py:1586 +#: common/models.py:1590 msgid "Endpoint on which this message was received" msgstr "Endpoint στο οποίο παραλήφθηκε αυτό το μήνυμα" -#: common/models.py:1591 +#: common/models.py:1595 msgid "Worked on" msgstr "Επεξεργάστηκε" -#: common/models.py:1592 +#: common/models.py:1596 msgid "Was the work on this message finished?" msgstr "Ολοκληρώθηκε η εργασία σε αυτό το μήνυμα;" -#: common/models.py:1718 +#: common/models.py:1722 msgid "Id" msgstr "ID" -#: common/models.py:1720 +#: common/models.py:1724 msgid "Title" msgstr "Τίτλος" -#: common/models.py:1722 common/models.py:1983 company/models.py:185 -#: company/models.py:467 company/models.py:534 company/models.py:839 -#: order/models.py:457 order/models.py:1786 order/models.py:2343 -#: part/models.py:1113 +#: common/models.py:1726 common/models.py:1989 company/models.py:186 +#: company/models.py:468 company/models.py:536 company/models.py:793 +#: order/models.py:458 order/models.py:1787 order/models.py:2344 +#: part/models.py:1201 #: report/templates/report/inventree_build_order_report.html:164 msgid "Link" msgstr "Σύνδεσμος" -#: common/models.py:1724 +#: common/models.py:1728 msgid "Published" msgstr "Δημοσιεύθηκε" -#: common/models.py:1726 +#: common/models.py:1730 msgid "Author" msgstr "Συντάκτης" -#: common/models.py:1728 +#: common/models.py:1732 msgid "Summary" msgstr "Περίληψη" -#: common/models.py:1731 common/models.py:2586 +#: common/models.py:1735 common/models.py:3007 msgid "Read" msgstr "Αναγνωσμένο" -#: common/models.py:1731 +#: common/models.py:1735 msgid "Was this news item read?" msgstr "Διαβάστηκε αυτό το νέο;" -#: common/models.py:1748 +#: common/models.py:1752 msgid "Image file" msgstr "Αρχείο εικόνας" -#: common/models.py:1760 +#: common/models.py:1764 msgid "Target model type for this image" msgstr "Τύπος μοντέλου-στόχου για αυτή την εικόνα" -#: common/models.py:1764 +#: common/models.py:1768 msgid "Target model ID for this image" msgstr "ID μοντέλου-στόχου για αυτή την εικόνα" -#: common/models.py:1786 +#: common/models.py:1790 msgid "Custom Unit" msgstr "Προσαρμοσμένη μονάδα" -#: common/models.py:1804 +#: common/models.py:1808 msgid "Unit symbol must be unique" msgstr "Το σύμβολο μονάδας πρέπει να είναι μοναδικό" -#: common/models.py:1819 +#: common/models.py:1823 msgid "Unit name must be a valid identifier" msgstr "Το όνομα μονάδας πρέπει να είναι έγκυρο αναγνωριστικό" -#: common/models.py:1838 +#: common/models.py:1842 msgid "Unit name" msgstr "Όνομα μονάδας" -#: common/models.py:1845 +#: common/models.py:1849 msgid "Symbol" msgstr "Σύμβολο" -#: common/models.py:1846 +#: common/models.py:1850 msgid "Optional unit symbol" msgstr "Προαιρετικό σύμβολο μονάδας" -#: common/models.py:1852 +#: common/models.py:1856 msgid "Definition" msgstr "Ορισμός" -#: common/models.py:1853 +#: common/models.py:1857 msgid "Unit definition" msgstr "Ορισμός μονάδας" -#: common/models.py:1911 common/models.py:1974 stock/models.py:2967 +#: common/models.py:1917 common/models.py:1980 stock/models.py:2984 #: stock/serializers.py:247 msgid "Attachment" msgstr "Συνημμένο" -#: common/models.py:1928 +#: common/models.py:1934 msgid "Missing file" msgstr "Το αρχείο λείπει" -#: common/models.py:1929 +#: common/models.py:1935 msgid "Missing external link" msgstr "Λείπει ο εξωτερικός σύνδεσμος" -#: common/models.py:1966 +#: common/models.py:1972 common/models.py:2488 msgid "Model type" msgstr "Τύπος μοντέλου" -#: common/models.py:1967 +#: common/models.py:1973 msgid "Target model type for image" msgstr "Τύπος μοντέλου-στόχου για την εικόνα" -#: common/models.py:1975 +#: common/models.py:1981 msgid "Select file to attach" msgstr "Επιλέξτε αρχείο για επισύναψη" -#: common/models.py:1991 +#: common/models.py:1997 msgid "Comment" msgstr "Σχόλιο" -#: common/models.py:1992 +#: common/models.py:1998 msgid "Attachment comment" msgstr "Σχόλιο συνημμένου" -#: common/models.py:2008 +#: common/models.py:2014 msgid "Upload date" msgstr "Ημερομηνία μεταφόρτωσης" -#: common/models.py:2009 +#: common/models.py:2015 msgid "Date the file was uploaded" msgstr "Ημερομηνία μεταφόρτωσης του αρχείου" -#: common/models.py:2013 +#: common/models.py:2019 msgid "File size" msgstr "Μέγεθος αρχείου" -#: common/models.py:2013 +#: common/models.py:2019 msgid "File size in bytes" msgstr "Μέγεθος αρχείου σε bytes" -#: common/models.py:2051 common/serializers.py:684 +#: common/models.py:2057 common/serializers.py:688 msgid "Invalid model type specified for attachment" msgstr "Μη έγκυρος τύπος μοντέλου που ορίστηκε για το συνημμένο" -#: common/models.py:2072 +#: common/models.py:2078 msgid "Custom State" msgstr "Προσαρμοσμένη κατάσταση" -#: common/models.py:2073 +#: common/models.py:2079 msgid "Custom States" msgstr "Προσαρμοσμένες καταστάσεις" -#: common/models.py:2078 +#: common/models.py:2084 msgid "Reference Status Set" msgstr "Σετ κατάστασης αναφοράς" -#: common/models.py:2079 +#: common/models.py:2085 msgid "Status set that is extended with this custom state" msgstr "Σετ καταστάσεων που επεκτείνεται με αυτή την προσαρμοσμένη κατάσταση" -#: common/models.py:2083 generic/states/serializers.py:18 +#: common/models.py:2089 generic/states/serializers.py:18 msgid "Logical Key" msgstr "Λογικό κλειδί" -#: common/models.py:2085 +#: common/models.py:2091 msgid "State logical key that is equal to this custom state in business logic" msgstr "Λογικό κλειδί κατάστασης που είναι ισοδύναμο με αυτή την προσαρμοσμένη κατάσταση στη λογική της εφαρμογής" -#: common/models.py:2090 common/models.py:2329 company/models.py:622 -#: machine/serializers.py:27 -#: report/templates/report/inventree_test_report.html:104 stock/models.py:2959 +#: common/models.py:2096 common/models.py:2335 machine/serializers.py:27 +#: report/templates/report/inventree_test_report.html:104 stock/models.py:2976 msgid "Value" msgstr "Τιμή" -#: common/models.py:2091 +#: common/models.py:2097 msgid "Numerical value that will be saved in the models database" msgstr "Αριθμητική τιμή που θα αποθηκευτεί στη βάση δεδομένων των μοντέλων" -#: common/models.py:2097 +#: common/models.py:2103 msgid "Name of the state" msgstr "Όνομα της κατάστασης" -#: common/models.py:2106 common/models.py:2335 generic/states/serializers.py:22 +#: common/models.py:2112 common/models.py:2341 generic/states/serializers.py:22 msgid "Label" msgstr "Ετικέτα" -#: common/models.py:2107 +#: common/models.py:2113 msgid "Label that will be displayed in the frontend" msgstr "Ετικέτα που θα εμφανίζεται στο frontend" -#: common/models.py:2114 generic/states/serializers.py:24 +#: common/models.py:2120 generic/states/serializers.py:24 msgid "Color" msgstr "Χρώμα" -#: common/models.py:2115 +#: common/models.py:2121 msgid "Color that will be displayed in the frontend" msgstr "Χρώμα που θα εμφανίζεται στο frontend" -#: common/models.py:2123 +#: common/models.py:2129 msgid "Model" msgstr "Μοντέλο" -#: common/models.py:2124 +#: common/models.py:2130 msgid "Model this state is associated with" msgstr "Μοντέλο με το οποίο συσχετίζεται αυτή η κατάσταση" -#: common/models.py:2139 +#: common/models.py:2145 msgid "Model must be selected" msgstr "Πρέπει να επιλεγεί μοντέλο" -#: common/models.py:2142 +#: common/models.py:2148 msgid "Key must be selected" msgstr "Πρέπει να επιλεγεί κλειδί" -#: common/models.py:2145 +#: common/models.py:2151 msgid "Logical key must be selected" msgstr "Πρέπει να επιλεγεί λογικό κλειδί" -#: common/models.py:2149 +#: common/models.py:2155 msgid "Key must be different from logical key" msgstr "Το κλειδί πρέπει να είναι διαφορετικό από το λογικό κλειδί" -#: common/models.py:2156 +#: common/models.py:2162 msgid "Valid reference status class must be provided" msgstr "Πρέπει να δοθεί έγκυρη κλάση κατάστασης αναφοράς" -#: common/models.py:2162 +#: common/models.py:2168 msgid "Key must be different from the logical keys of the reference status" msgstr "Το κλειδί πρέπει να είναι διαφορετικό από τα λογικά κλειδιά της κατάστασης αναφοράς" -#: common/models.py:2169 +#: common/models.py:2175 msgid "Logical key must be in the logical keys of the reference status" msgstr "Το λογικό κλειδί πρέπει να ανήκει στα λογικά κλειδιά της κατάστασης αναφοράς" -#: common/models.py:2176 +#: common/models.py:2182 msgid "Name must be different from the names of the reference status" msgstr "Το όνομα πρέπει να είναι διαφορετικό από τα ονόματα της κατάστασης αναφοράς" -#: common/models.py:2216 common/models.py:2323 part/models.py:3889 +#: common/models.py:2222 common/models.py:2329 common/models.py:2533 msgid "Selection List" msgstr "Λίστα επιλογών" -#: common/models.py:2217 +#: common/models.py:2223 msgid "Selection Lists" msgstr "Λίστες επιλογών" -#: common/models.py:2222 +#: common/models.py:2228 msgid "Name of the selection list" msgstr "Όνομα της λίστας επιλογών" -#: common/models.py:2229 +#: common/models.py:2235 msgid "Description of the selection list" msgstr "Περιγραφή της λίστας επιλογών" -#: common/models.py:2235 part/models.py:1242 +#: common/models.py:2241 part/models.py:1330 msgid "Locked" msgstr "Κλειδωμένο" -#: common/models.py:2236 +#: common/models.py:2242 msgid "Is this selection list locked?" msgstr "Είναι αυτή η λίστα επιλογών κλειδωμένη;" -#: common/models.py:2242 +#: common/models.py:2248 msgid "Can this selection list be used?" msgstr "Μπορεί να χρησιμοποιηθεί αυτή η λίστα επιλογών;" -#: common/models.py:2250 +#: common/models.py:2256 msgid "Source Plugin" msgstr "Πρόσθετο πηγής" -#: common/models.py:2251 +#: common/models.py:2257 msgid "Plugin which provides the selection list" msgstr "Πρόσθετο που παρέχει τη λίστα επιλογών" -#: common/models.py:2256 +#: common/models.py:2262 msgid "Source String" msgstr "Συμβολοσειρά πηγής" -#: common/models.py:2257 +#: common/models.py:2263 msgid "Optional string identifying the source used for this list" msgstr "Προαιρετική συμβολοσειρά που ταυτοποιεί την πηγή που χρησιμοποιείται για αυτή τη λίστα" -#: common/models.py:2266 +#: common/models.py:2272 msgid "Default Entry" msgstr "Προεπιλεγμένη καταχώρηση" -#: common/models.py:2267 +#: common/models.py:2273 msgid "Default entry for this selection list" msgstr "Προεπιλεγμένη καταχώρηση για αυτή τη λίστα επιλογών" -#: common/models.py:2272 common/models.py:2724 +#: common/models.py:2278 common/models.py:3145 msgid "Created" msgstr "Δημιουργήθηκε" -#: common/models.py:2273 +#: common/models.py:2279 msgid "Date and time that the selection list was created" msgstr "Ημερομηνία και ώρα δημιουργίας της λίστας επιλογών" -#: common/models.py:2278 +#: common/models.py:2284 msgid "Last Updated" msgstr "Τελευταία ενημέρωση" -#: common/models.py:2279 +#: common/models.py:2285 msgid "Date and time that the selection list was last updated" msgstr "Ημερομηνία και ώρα της τελευταίας ενημέρωσης της λίστας επιλογών" -#: common/models.py:2313 +#: common/models.py:2319 msgid "Selection List Entry" msgstr "Καταχώρηση λίστας επιλογών" -#: common/models.py:2314 +#: common/models.py:2320 msgid "Selection List Entries" msgstr "Καταχωρήσεις λίστας επιλογών" -#: common/models.py:2324 +#: common/models.py:2330 msgid "Selection list to which this entry belongs" msgstr "Λίστα επιλογών στην οποία ανήκει αυτή η καταχώρηση" -#: common/models.py:2330 +#: common/models.py:2336 msgid "Value of the selection list entry" msgstr "Τιμή της καταχώρησης λίστας επιλογών" -#: common/models.py:2336 +#: common/models.py:2342 msgid "Label for the selection list entry" msgstr "Ετικέτα για την καταχώρηση λίστας επιλογών" -#: common/models.py:2342 +#: common/models.py:2348 msgid "Description of the selection list entry" msgstr "Περιγραφή της καταχώρησης λίστας επιλογών" -#: common/models.py:2349 +#: common/models.py:2355 msgid "Is this selection list entry active?" msgstr "Είναι ενεργή αυτή η καταχώρηση λίστας επιλογών;" -#: common/models.py:2367 -msgid "Barcode Scan" -msgstr "Σάρωση barcode" +#: common/models.py:2387 +msgid "Parameter Template" +msgstr "Πρότυπο παραμέτρου" -#: common/models.py:2371 importer/models.py:546 part/models.py:4060 +#: common/models.py:2388 +msgid "Parameter Templates" +msgstr "" + +#: common/models.py:2425 +msgid "Checkbox parameters cannot have units" +msgstr "Οι παράμετροι τύπου checkbox δεν μπορούν να έχουν μονάδες" + +#: common/models.py:2430 +msgid "Checkbox parameters cannot have choices" +msgstr "Οι παράμετροι τύπου checkbox δεν μπορούν να έχουν επιλογές" + +#: common/models.py:2450 part/models.py:3707 +msgid "Choices must be unique" +msgstr "Οι επιλογές πρέπει να είναι μοναδικές" + +#: common/models.py:2467 +msgid "Parameter template name must be unique" +msgstr "Το όνομα προτύπου παραμέτρου πρέπει να είναι μοναδικό" + +#: common/models.py:2489 +msgid "Target model type for this parameter template" +msgstr "" + +#: common/models.py:2495 +msgid "Parameter Name" +msgstr "Όνομα παραμέτρου" + +#: common/models.py:2501 part/models.py:1283 +msgid "Units" +msgstr "Μονάδες" + +#: common/models.py:2502 +msgid "Physical units for this parameter" +msgstr "Φυσικές μονάδες για αυτή την παράμετρο" + +#: common/models.py:2510 +msgid "Parameter description" +msgstr "Περιγραφή παραμέτρου" + +#: common/models.py:2516 +msgid "Checkbox" +msgstr "Checkbox" + +#: common/models.py:2517 +msgid "Is this parameter a checkbox?" +msgstr "Είναι αυτή η παράμετρος τύπου checkbox;" + +#: common/models.py:2522 part/models.py:3794 +msgid "Choices" +msgstr "Επιλογές" + +#: common/models.py:2523 +msgid "Valid choices for this parameter (comma-separated)" +msgstr "Έγκυρες επιλογές για αυτή την παράμετρο (διαχωρισμένες με κόμμα)" + +#: common/models.py:2534 +msgid "Selection list for this parameter" +msgstr "Λίστα επιλογών για αυτή την παράμετρο" + +#: common/models.py:2539 part/models.py:3769 report/models.py:287 +msgid "Enabled" +msgstr "Ενεργό" + +#: common/models.py:2540 +msgid "Is this parameter template enabled?" +msgstr "" + +#: common/models.py:2581 +msgid "Parameter" +msgstr "" + +#: common/models.py:2582 +msgid "Parameters" +msgstr "" + +#: common/models.py:2628 +msgid "Invalid choice for parameter value" +msgstr "Μη έγκυρη επιλογή για την τιμή παραμέτρου" + +#: common/models.py:2698 common/serializers.py:783 +msgid "Invalid model type specified for parameter" +msgstr "" + +#: common/models.py:2734 +msgid "Model ID" +msgstr "" + +#: common/models.py:2735 +msgid "ID of the target model for this parameter" +msgstr "" + +#: common/models.py:2744 common/setting/system.py:450 report/models.py:373 +#: report/models.py:669 report/serializers.py:94 report/serializers.py:135 +#: stock/serializers.py:234 +msgid "Template" +msgstr "Πρότυπο" + +#: common/models.py:2745 +msgid "Parameter template" +msgstr "" + +#: common/models.py:2750 common/models.py:2792 importer/models.py:546 msgid "Data" msgstr "Δεδομένα" -#: common/models.py:2372 +#: common/models.py:2751 +msgid "Parameter Value" +msgstr "Τιμή παραμέτρου" + +#: common/models.py:2760 company/models.py:810 order/serializers.py:894 +#: order/serializers.py:2064 part/models.py:4075 part/models.py:4444 +#: report/templates/report/inventree_bill_of_materials_report.html:140 +#: report/templates/report/inventree_purchase_order_report.html:39 +#: report/templates/report/inventree_return_order_report.html:27 +#: report/templates/report/inventree_sales_order_report.html:32 +#: report/templates/report/inventree_stock_location_report.html:105 +#: stock/serializers.py:813 +msgid "Note" +msgstr "Σημείωση" + +#: common/models.py:2761 stock/serializers.py:718 +msgid "Optional note field" +msgstr "Προαιρετικό πεδίο σημείωσης" + +#: common/models.py:2788 +msgid "Barcode Scan" +msgstr "Σάρωση barcode" + +#: common/models.py:2793 msgid "Barcode data" msgstr "Δεδομένα barcode" -#: common/models.py:2383 +#: common/models.py:2804 msgid "User who scanned the barcode" msgstr "Χρήστης που σάρωσε το barcode" -#: common/models.py:2388 importer/models.py:69 +#: common/models.py:2809 importer/models.py:69 msgid "Timestamp" msgstr "Χρονική σήμανση" -#: common/models.py:2389 +#: common/models.py:2810 msgid "Date and time of the barcode scan" msgstr "Ημερομηνία και ώρα της σάρωσης barcode" -#: common/models.py:2395 +#: common/models.py:2816 msgid "URL endpoint which processed the barcode" msgstr "URL endpoint που επεξεργάστηκε το barcode" -#: common/models.py:2402 order/models.py:1832 plugin/serializers.py:93 +#: common/models.py:2823 order/models.py:1833 plugin/serializers.py:93 msgid "Context" msgstr "Πλαίσιο" -#: common/models.py:2403 +#: common/models.py:2824 msgid "Context data for the barcode scan" msgstr "Δεδομένα πλαισίου για τη σάρωση barcode" -#: common/models.py:2410 +#: common/models.py:2831 msgid "Response" msgstr "Απόκριση" -#: common/models.py:2411 +#: common/models.py:2832 msgid "Response data from the barcode scan" msgstr "Δεδομένα απόκρισης από τη σάρωση barcode" -#: common/models.py:2417 report/templates/report/inventree_test_report.html:103 -#: stock/models.py:2953 +#: common/models.py:2838 report/templates/report/inventree_test_report.html:103 +#: stock/models.py:2970 msgid "Result" msgstr "Αποτέλεσμα" -#: common/models.py:2418 +#: common/models.py:2839 msgid "Was the barcode scan successful?" msgstr "Ήταν επιτυχημένη η σάρωση barcode;" -#: common/models.py:2500 +#: common/models.py:2921 msgid "An error occurred" msgstr "Παρουσιάστηκε σφάλμα" -#: common/models.py:2521 +#: common/models.py:2942 msgid "INVE-E8: Email log deletion is protected. Set INVENTREE_PROTECT_EMAIL_LOG to False to allow deletion." msgstr "INVE-E8: Η διαγραφή του log email προστατεύεται. Ορίστε το INVENTREE_PROTECT_EMAIL_LOG σε False για να επιτραπεί η διαγραφή." -#: common/models.py:2568 +#: common/models.py:2989 msgid "Email Message" msgstr "Μήνυμα email" -#: common/models.py:2569 +#: common/models.py:2990 msgid "Email Messages" msgstr "Μηνύματα email" -#: common/models.py:2576 +#: common/models.py:2997 msgid "Announced" msgstr "Ανακοινώθηκε" -#: common/models.py:2578 +#: common/models.py:2999 msgid "Sent" msgstr "Εστάλη" -#: common/models.py:2579 +#: common/models.py:3000 msgid "Failed" msgstr "Απέτυχε" -#: common/models.py:2582 +#: common/models.py:3003 msgid "Delivered" msgstr "Παραδόθηκε" -#: common/models.py:2590 +#: common/models.py:3011 msgid "Confirmed" msgstr "Επιβεβαιώθηκε" -#: common/models.py:2596 +#: common/models.py:3017 msgid "Inbound" msgstr "Εισερχόμενο" -#: common/models.py:2597 +#: common/models.py:3018 msgid "Outbound" msgstr "Εξερχόμενο" -#: common/models.py:2602 +#: common/models.py:3023 msgid "No Reply" msgstr "Χωρίς απάντηση" -#: common/models.py:2603 +#: common/models.py:3024 msgid "Track Delivery" msgstr "Παρακολούθηση παράδοσης" -#: common/models.py:2604 +#: common/models.py:3025 msgid "Track Read" msgstr "Παρακολούθηση ανάγνωσης" -#: common/models.py:2605 +#: common/models.py:3026 msgid "Track Click" msgstr "Παρακολούθηση κλικ" -#: common/models.py:2608 common/models.py:2711 +#: common/models.py:3029 common/models.py:3132 msgid "Global ID" msgstr "Global ID" -#: common/models.py:2621 +#: common/models.py:3042 msgid "Identifier for this message (might be supplied by external system)" msgstr "Αναγνωριστικό για αυτό το μήνυμα (ενδέχεται να παρέχεται από εξωτερικό σύστημα)" -#: common/models.py:2628 +#: common/models.py:3049 msgid "Thread ID" msgstr "ID νήματος" -#: common/models.py:2630 +#: common/models.py:3051 msgid "Identifier for this message thread (might be supplied by external system)" msgstr "Αναγνωριστικό για αυτό το νήμα μηνυμάτων (ενδέχεται να παρέχεται από εξωτερικό σύστημα)" -#: common/models.py:2639 +#: common/models.py:3060 msgid "Thread" msgstr "Νήμα" -#: common/models.py:2640 +#: common/models.py:3061 msgid "Linked thread for this message" msgstr "Συνδεδεμένο νήμα για αυτό το μήνυμα" -#: common/models.py:2656 -msgid "Prioriy" -msgstr "Προτεραιότητα" +#: common/models.py:3077 +msgid "Priority" +msgstr "" -#: common/models.py:2698 +#: common/models.py:3119 msgid "Email Thread" msgstr "Νήμα email" -#: common/models.py:2699 +#: common/models.py:3120 msgid "Email Threads" msgstr "Νήματα email" -#: common/models.py:2705 generic/states/serializers.py:16 +#: common/models.py:3126 generic/states/serializers.py:16 #: machine/serializers.py:24 plugin/models.py:46 users/models.py:113 msgid "Key" msgstr "Κλειδί" -#: common/models.py:2708 +#: common/models.py:3129 msgid "Unique key for this thread (used to identify the thread)" msgstr "Μοναδικό κλειδί για αυτό το νήμα (χρησιμοποιείται για την ταυτοποίησή του)" -#: common/models.py:2712 +#: common/models.py:3133 msgid "Unique identifier for this thread" msgstr "Μοναδικό αναγνωριστικό για αυτό το νήμα" -#: common/models.py:2719 +#: common/models.py:3140 msgid "Started Internal" msgstr "Ξεκίνησε εσωτερικά" -#: common/models.py:2720 +#: common/models.py:3141 msgid "Was this thread started internally?" msgstr "Ξεκίνησε αυτό το νήμα εσωτερικά;" -#: common/models.py:2725 +#: common/models.py:3146 msgid "Date and time that the thread was created" msgstr "Ημερομηνία και ώρα δημιουργίας του νήματος" -#: common/models.py:2730 +#: common/models.py:3151 msgid "Date and time that the thread was last updated" msgstr "Ημερομηνία και ώρα της τελευταίας ενημέρωσης του νήματος" @@ -2199,7 +2339,7 @@ msgstr "{verbose_name} ακυρώθηκε" msgid "A order that is assigned to you was canceled" msgstr "Μια παραγγελία που σας είχε ανατεθεί ακυρώθηκε" -#: common/notifications.py:73 common/notifications.py:80 order/api.py:594 +#: common/notifications.py:73 common/notifications.py:80 order/api.py:600 msgid "Items Received" msgstr "Είδη που παραλήφθηκαν" @@ -2211,88 +2351,93 @@ msgstr "Είδη έχουν παραληφθεί έναντι εντολής α msgid "Items have been received against a return order" msgstr "Είδη έχουν παραληφθεί έναντι εντολής επιστροφής" -#: common/serializers.py:145 +#: common/serializers.py:149 msgid "Indicates if the setting is overridden by an environment variable" msgstr "Δείχνει αν η ρύθμιση παρακάμπτεται από μεταβλητή περιβάλλοντος" -#: common/serializers.py:147 +#: common/serializers.py:151 msgid "Override" msgstr "Παράκαμψη" -#: common/serializers.py:498 +#: common/serializers.py:502 msgid "Is Running" msgstr "Εκτελείται" -#: common/serializers.py:504 +#: common/serializers.py:508 msgid "Pending Tasks" msgstr "Εργασίες σε αναμονή" -#: common/serializers.py:510 +#: common/serializers.py:514 msgid "Scheduled Tasks" msgstr "Προγραμματισμένες εργασίες" -#: common/serializers.py:516 +#: common/serializers.py:520 msgid "Failed Tasks" msgstr "Αποτυχημένες εργασίες" -#: common/serializers.py:531 +#: common/serializers.py:535 msgid "Task ID" msgstr "ID εργασίας" -#: common/serializers.py:531 +#: common/serializers.py:535 msgid "Unique task ID" msgstr "Μοναδικό ID εργασίας" -#: common/serializers.py:533 +#: common/serializers.py:537 msgid "Lock" msgstr "Κλείδωμα" -#: common/serializers.py:533 +#: common/serializers.py:537 msgid "Lock time" msgstr "Χρόνος κλειδώματος" -#: common/serializers.py:535 +#: common/serializers.py:539 msgid "Task name" msgstr "Όνομα εργασίας" -#: common/serializers.py:537 +#: common/serializers.py:541 msgid "Function" msgstr "Συνάρτηση" -#: common/serializers.py:537 +#: common/serializers.py:541 msgid "Function name" msgstr "Όνομα συνάρτησης" -#: common/serializers.py:539 +#: common/serializers.py:543 msgid "Arguments" msgstr "Ορίσματα" -#: common/serializers.py:539 +#: common/serializers.py:543 msgid "Task arguments" msgstr "Ορίσματα εργασίας" -#: common/serializers.py:542 +#: common/serializers.py:546 msgid "Keyword Arguments" msgstr "Ορίσματα λέξεων-κλειδιών" -#: common/serializers.py:542 +#: common/serializers.py:546 msgid "Task keyword arguments" msgstr "Ορίσματα λέξεων-κλειδιών της εργασίας" -#: common/serializers.py:652 +#: common/serializers.py:656 msgid "Filename" msgstr "Όνομα αρχείου" -#: common/serializers.py:659 importer/models.py:89 report/api.py:41 +#: common/serializers.py:663 common/serializers.py:730 +#: common/serializers.py:805 importer/models.py:89 report/api.py:41 #: report/models.py:293 report/serializers.py:52 msgid "Model Type" msgstr "Τύπος μοντέλου" -#: common/serializers.py:687 +#: common/serializers.py:691 msgid "User does not have permission to create or edit attachments for this model" msgstr "Ο χρήστης δεν έχει δικαίωμα να δημιουργήσει ή να επεξεργαστεί συνημμένα για αυτό το μοντέλο" -#: common/serializers.py:731 common/serializers.py:834 +#: common/serializers.py:786 +msgid "User does not have permission to create or edit parameters for this model" +msgstr "" + +#: common/serializers.py:850 common/serializers.py:953 msgid "Selection list is locked" msgstr "Η λίστα επιλογών είναι κλειδωμένη" @@ -2362,13 +2507,13 @@ msgstr "Χρήση του ονόματος instance στη γραμμή τίτλ #: common/setting/system.py:218 msgid "Restrict showing `about`" -msgstr "" +msgstr "Περιορισμός εμφάνισης `about`" #: common/setting/system.py:219 msgid "Show the `about` modal only to superusers" -msgstr "" +msgstr "Εμφάνιση της λειτουργίας `about` μόνο σε superusers" -#: common/setting/system.py:224 company/models.py:144 company/models.py:145 +#: common/setting/system.py:224 company/models.py:145 company/models.py:146 msgid "Company name" msgstr "Επωνυμία εταιρείας" @@ -2411,8 +2556,8 @@ msgstr "Κάθε πότε θα ενημερώνονται οι συναλλαγ #: common/setting/system.py:253 common/setting/system.py:293 #: common/setting/system.py:306 common/setting/system.py:314 #: common/setting/system.py:321 common/setting/system.py:330 -#: common/setting/system.py:339 common/setting/system.py:588 -#: common/setting/system.py:616 common/setting/system.py:707 +#: common/setting/system.py:339 common/setting/system.py:580 +#: common/setting/system.py:608 common/setting/system.py:707 #: common/setting/system.py:1103 common/setting/system.py:1119 msgid "days" msgstr "ημέρες" @@ -2657,12 +2802,6 @@ msgstr "Αντιγραφή προτύπων παραμέτρων κατηγορ msgid "Copy category parameter templates when creating a part" msgstr "Αντιγραφή προτύπων παραμέτρων κατηγορίας κατά τη δημιουργία Προϊόντος" -#: common/setting/system.py:450 part/models.py:4054 report/models.py:373 -#: report/models.py:669 report/serializers.py:94 report/serializers.py:135 -#: stock/serializers.py:234 -msgid "Template" -msgstr "Πρότυπο" - #: common/setting/system.py:451 msgid "Parts are templates by default" msgstr "Τα Προϊόντα είναι πρότυπα από προεπιλογή" @@ -2671,8 +2810,8 @@ msgstr "Τα Προϊόντα είναι πρότυπα από προεπιλο msgid "Parts can be assembled from other components by default" msgstr "Τα Προϊόντα μπορούν να συναρμολογούνται από άλλα συστατικά από προεπιλογή" -#: common/setting/system.py:462 part/models.py:1208 part/serializers.py:1734 -#: part/serializers.py:1741 +#: common/setting/system.py:462 part/models.py:1296 part/serializers.py:1599 +#: part/serializers.py:1606 msgid "Component" msgstr "Συστατικό" @@ -2680,7 +2819,7 @@ msgstr "Συστατικό" msgid "Parts can be used as sub-components by default" msgstr "Τα Προϊόντα μπορούν να χρησιμοποιούνται ως υποσυστατικά από προεπιλογή" -#: common/setting/system.py:468 part/models.py:1226 +#: common/setting/system.py:468 part/models.py:1314 msgid "Purchaseable" msgstr "Αγοράσιμο" @@ -2688,7 +2827,7 @@ msgstr "Αγοράσιμο" msgid "Parts are purchaseable by default" msgstr "Τα Προϊόντα είναι αγοράσιμα από προεπιλογή" -#: common/setting/system.py:474 part/models.py:1232 stock/api.py:643 +#: common/setting/system.py:474 part/models.py:1320 stock/api.py:643 msgid "Salable" msgstr "Πωλήσιμο" @@ -2700,7 +2839,7 @@ msgstr "Τα Προϊόντα είναι πωλήσιμα από προεπιλ msgid "Parts are trackable by default" msgstr "Τα Προϊόντα είναι ανιχνεύσιμα από προεπιλογή" -#: common/setting/system.py:486 part/models.py:1248 +#: common/setting/system.py:486 part/models.py:1336 msgid "Virtual" msgstr "Εικονικό" @@ -2749,158 +2888,158 @@ msgid "Part category default icon (empty means no icon)" msgstr "Προεπιλεγμένο εικονίδιο κατηγορίας Προϊόντος (κενό σημαίνει χωρίς εικονίδιο)" #: common/setting/system.py:525 -msgid "Enforce Parameter Units" -msgstr "Επιβολή μονάδων παραμέτρων" - -#: common/setting/system.py:527 -msgid "If units are provided, parameter values must match the specified units" -msgstr "Αν δοθούν μονάδες, οι τιμές των παραμέτρων πρέπει να αντιστοιχούν στις καθορισμένες μονάδες" - -#: common/setting/system.py:533 msgid "Minimum Pricing Decimal Places" msgstr "Ελάχιστα δεκαδικά ψηφία τιμολόγησης" -#: common/setting/system.py:535 +#: common/setting/system.py:527 msgid "Minimum number of decimal places to display when rendering pricing data" msgstr "Ελάχιστος αριθμός δεκαδικών ψηφίων που θα εμφανίζονται στα δεδομένα τιμολόγησης" -#: common/setting/system.py:546 +#: common/setting/system.py:538 msgid "Maximum Pricing Decimal Places" msgstr "Μέγιστα δεκαδικά ψηφία τιμολόγησης" -#: common/setting/system.py:548 +#: common/setting/system.py:540 msgid "Maximum number of decimal places to display when rendering pricing data" msgstr "Μέγιστος αριθμός δεκαδικών ψηφίων που θα εμφανίζονται στα δεδομένα τιμολόγησης" -#: common/setting/system.py:559 +#: common/setting/system.py:551 msgid "Use Supplier Pricing" msgstr "Χρήση τιμών προμηθευτή" -#: common/setting/system.py:561 +#: common/setting/system.py:553 msgid "Include supplier price breaks in overall pricing calculations" msgstr "Συμπερίληψη κλιμακωτών τιμών προμηθευτή στους συνολικούς υπολογισμούς τιμών" -#: common/setting/system.py:567 +#: common/setting/system.py:559 msgid "Purchase History Override" msgstr "Υπέρβαση μέσω ιστορικού αγορών" -#: common/setting/system.py:569 +#: common/setting/system.py:561 msgid "Historical purchase order pricing overrides supplier price breaks" msgstr "Οι ιστορικές τιμές εντολών αγοράς υπερισχύουν των κλιμακωτών τιμών προμηθευτή" -#: common/setting/system.py:575 +#: common/setting/system.py:567 msgid "Use Stock Item Pricing" msgstr "Χρήση τιμολόγησης στοιχείου αποθέματος" -#: common/setting/system.py:577 +#: common/setting/system.py:569 msgid "Use pricing from manually entered stock data for pricing calculations" msgstr "Χρήση τιμών από χειροκίνητα καταχωρημένα δεδομένα αποθέματος για τους υπολογισμούς τιμών" -#: common/setting/system.py:583 +#: common/setting/system.py:575 msgid "Stock Item Pricing Age" msgstr "Ηλικία τιμολόγησης στοιχείου αποθέματος" -#: common/setting/system.py:585 +#: common/setting/system.py:577 msgid "Exclude stock items older than this number of days from pricing calculations" msgstr "Εξαίρεση στοιχείων αποθέματος παλαιότερων από αυτόν τον αριθμό ημερών από τους υπολογισμούς τιμών" -#: common/setting/system.py:592 +#: common/setting/system.py:584 msgid "Use Variant Pricing" msgstr "Χρήση τιμολόγησης παραλλαγών" -#: common/setting/system.py:593 +#: common/setting/system.py:585 msgid "Include variant pricing in overall pricing calculations" msgstr "Συμπερίληψη τιμών παραλλαγών στους συνολικούς υπολογισμούς τιμών" -#: common/setting/system.py:598 +#: common/setting/system.py:590 msgid "Active Variants Only" msgstr "Μόνο ενεργές παραλλαγές" -#: common/setting/system.py:600 +#: common/setting/system.py:592 msgid "Only use active variant parts for calculating variant pricing" msgstr "Χρήση μόνο ενεργών Προϊόντων παραλλαγών για τον υπολογισμό τιμών παραλλαγών" -#: common/setting/system.py:606 +#: common/setting/system.py:598 msgid "Auto Update Pricing" msgstr "Αυτόματη ενημέρωση τιμών" -#: common/setting/system.py:608 +#: common/setting/system.py:600 msgid "Automatically update part pricing when internal data changes" msgstr "Αυτόματη ενημέρωση τιμών Προϊόντων όταν αλλάζουν τα εσωτερικά δεδομένα" -#: common/setting/system.py:614 +#: common/setting/system.py:606 msgid "Pricing Rebuild Interval" msgstr "Διάστημα επαναυπολογισμού τιμών" -#: common/setting/system.py:615 +#: common/setting/system.py:607 msgid "Number of days before part pricing is automatically updated" msgstr "Αριθμός ημερών πριν ενημερωθούν αυτόματα οι τιμές των Προϊόντων" -#: common/setting/system.py:621 +#: common/setting/system.py:613 msgid "Internal Prices" msgstr "Εσωτερικές τιμές" -#: common/setting/system.py:622 +#: common/setting/system.py:614 msgid "Enable internal prices for parts" msgstr "Ενεργοποίηση εσωτερικών τιμών για Προϊόντα" -#: common/setting/system.py:627 +#: common/setting/system.py:619 msgid "Internal Price Override" msgstr "Υπέρβαση μέσω εσωτερικής τιμής" -#: common/setting/system.py:629 +#: common/setting/system.py:621 msgid "If available, internal prices override price range calculations" msgstr "Όταν υπάρχουν, οι εσωτερικές τιμές υπερισχύουν των υπολογισμών εύρους τιμών" -#: common/setting/system.py:635 +#: common/setting/system.py:627 msgid "Enable label printing" msgstr "Ενεργοποίηση εκτύπωσης ετικετών" -#: common/setting/system.py:636 +#: common/setting/system.py:628 msgid "Enable label printing from the web interface" msgstr "Ενεργοποίηση εκτύπωσης ετικετών από το web interface" -#: common/setting/system.py:641 +#: common/setting/system.py:633 msgid "Label Image DPI" msgstr "DPI εικόνας ετικέτας" -#: common/setting/system.py:643 +#: common/setting/system.py:635 msgid "DPI resolution when generating image files to supply to label printing plugins" msgstr "Ανάλυση DPI κατά τη δημιουργία αρχείων εικόνας για πρόσθετα εκτύπωσης ετικετών" -#: common/setting/system.py:649 +#: common/setting/system.py:641 msgid "Enable Reports" msgstr "Ενεργοποίηση αναφορών" -#: common/setting/system.py:650 +#: common/setting/system.py:642 msgid "Enable generation of reports" msgstr "Ενεργοποίηση δημιουργίας αναφορών" -#: common/setting/system.py:655 +#: common/setting/system.py:647 msgid "Debug Mode" msgstr "Λειτουργία αποσφαλμάτωσης" -#: common/setting/system.py:656 +#: common/setting/system.py:648 msgid "Generate reports in debug mode (HTML output)" msgstr "Δημιουργία αναφορών σε λειτουργία αποσφαλμάτωσης (έξοδος HTML)" -#: common/setting/system.py:661 +#: common/setting/system.py:653 msgid "Log Report Errors" msgstr "Καταγραφή σφαλμάτων αναφορών" -#: common/setting/system.py:662 +#: common/setting/system.py:654 msgid "Log errors which occur when generating reports" msgstr "Καταγραφή σφαλμάτων που προκύπτουν κατά τη δημιουργία αναφορών" -#: common/setting/system.py:667 plugin/builtin/labels/label_sheet.py:29 +#: common/setting/system.py:659 plugin/builtin/labels/label_sheet.py:29 #: report/models.py:381 msgid "Page Size" msgstr "Μέγεθος σελίδας" -#: common/setting/system.py:668 +#: common/setting/system.py:660 msgid "Default page size for PDF reports" msgstr "Προεπιλεγμένο μέγεθος σελίδας για PDF αναφορές" +#: common/setting/system.py:665 +msgid "Enforce Parameter Units" +msgstr "Επιβολή μονάδων παραμέτρων" + +#: common/setting/system.py:667 +msgid "If units are provided, parameter values must match the specified units" +msgstr "Αν δοθούν μονάδες, οι τιμές των παραμέτρων πρέπει να αντιστοιχούν στις καθορισμένες μονάδες" + #: common/setting/system.py:673 msgid "Globally Unique Serials" msgstr "Καθολικά μοναδικοί σειριακοί αριθμοί" @@ -3456,688 +3595,677 @@ msgid "Display PDF reports in the browser, instead of downloading as a file" msgstr "Εμφάνιση αναφορών PDF στον browser αντί για λήψη ως αρχείο" #: common/setting/user.py:45 +msgid "Barcode Scanner in Form Fields" +msgstr "" + +#: common/setting/user.py:46 +msgid "Allow barcode scanner input in form fields" +msgstr "" + +#: common/setting/user.py:51 msgid "Search Parts" msgstr "Αναζήτηση προϊόντων" -#: common/setting/user.py:46 +#: common/setting/user.py:52 msgid "Display parts in search preview window" msgstr "Εμφάνιση προϊόντων στο παράθυρο προεπισκόπησης αναζήτησης" -#: common/setting/user.py:51 +#: common/setting/user.py:57 msgid "Search Supplier Parts" msgstr "Αναζήτηση προϊόντων προμηθευτή" -#: common/setting/user.py:52 +#: common/setting/user.py:58 msgid "Display supplier parts in search preview window" msgstr "Εμφάνιση προϊόντων προμηθευτή στο παράθυρο προεπισκόπησης αναζήτησης" -#: common/setting/user.py:57 +#: common/setting/user.py:63 msgid "Search Manufacturer Parts" msgstr "Αναζήτηση προϊόντων κατασκευαστή" -#: common/setting/user.py:58 +#: common/setting/user.py:64 msgid "Display manufacturer parts in search preview window" msgstr "Εμφάνιση προϊόντων κατασκευαστή στο παράθυρο προεπισκόπησης αναζήτησης" -#: common/setting/user.py:63 +#: common/setting/user.py:69 msgid "Hide Inactive Parts" msgstr "Απόκρυψη ανενεργών προϊόντων" -#: common/setting/user.py:64 +#: common/setting/user.py:70 msgid "Excluded inactive parts from search preview window" msgstr "Εξαίρεση ανενεργών προϊόντων από το παράθυρο προεπισκόπησης αναζήτησης" -#: common/setting/user.py:69 +#: common/setting/user.py:75 msgid "Search Categories" msgstr "Αναζήτηση κατηγοριών" -#: common/setting/user.py:70 +#: common/setting/user.py:76 msgid "Display part categories in search preview window" msgstr "Εμφάνιση κατηγοριών προϊόντων στο παράθυρο προεπισκόπησης αναζήτησης" -#: common/setting/user.py:75 +#: common/setting/user.py:81 msgid "Search Stock" msgstr "Αναζήτηση αποθέματος" -#: common/setting/user.py:76 +#: common/setting/user.py:82 msgid "Display stock items in search preview window" msgstr "Εμφάνιση ειδών αποθέματος στο παράθυρο προεπισκόπησης αναζήτησης" -#: common/setting/user.py:81 +#: common/setting/user.py:87 msgid "Hide Unavailable Stock Items" msgstr "Απόκρυψη μη διαθέσιμων ειδών αποθέματος" -#: common/setting/user.py:83 +#: common/setting/user.py:89 msgid "Exclude stock items which are not available from the search preview window" msgstr "Εξαίρεση μη διαθέσιμων ειδών αποθέματος από το παράθυρο προεπισκόπησης αναζήτησης" -#: common/setting/user.py:89 +#: common/setting/user.py:95 msgid "Search Locations" msgstr "Αναζήτηση τοποθεσιών" -#: common/setting/user.py:90 +#: common/setting/user.py:96 msgid "Display stock locations in search preview window" msgstr "Εμφάνιση τοποθεσιών αποθέματος στο παράθυρο προεπισκόπησης αναζήτησης" -#: common/setting/user.py:95 +#: common/setting/user.py:101 msgid "Search Companies" msgstr "Αναζήτηση εταιρειών" -#: common/setting/user.py:96 +#: common/setting/user.py:102 msgid "Display companies in search preview window" msgstr "Εμφάνιση εταιρειών στο παράθυρο προεπισκόπησης αναζήτησης" -#: common/setting/user.py:101 +#: common/setting/user.py:107 msgid "Search Build Orders" msgstr "Αναζήτηση εντολών παραγωγής" -#: common/setting/user.py:102 +#: common/setting/user.py:108 msgid "Display build orders in search preview window" msgstr "Εμφάνιση εντολών παραγωγής στο παράθυρο προεπισκόπησης αναζήτησης" -#: common/setting/user.py:107 +#: common/setting/user.py:113 msgid "Search Purchase Orders" msgstr "Αναζήτηση εντολών αγοράς" -#: common/setting/user.py:108 +#: common/setting/user.py:114 msgid "Display purchase orders in search preview window" msgstr "Εμφάνιση εντολών αγοράς στο παράθυρο προεπισκόπησης αναζήτησης" -#: common/setting/user.py:113 +#: common/setting/user.py:119 msgid "Exclude Inactive Purchase Orders" msgstr "Εξαίρεση ανενεργών εντολών αγοράς" -#: common/setting/user.py:114 +#: common/setting/user.py:120 msgid "Exclude inactive purchase orders from search preview window" msgstr "Εξαίρεση ανενεργών εντολών αγοράς από το παράθυρο προεπισκόπησης αναζήτησης" -#: common/setting/user.py:119 +#: common/setting/user.py:125 msgid "Search Sales Orders" msgstr "Αναζήτηση εντολών πώλησης" -#: common/setting/user.py:120 +#: common/setting/user.py:126 msgid "Display sales orders in search preview window" msgstr "Εμφάνιση εντολών πώλησης στο παράθυρο προεπισκόπησης αναζήτησης" -#: common/setting/user.py:125 +#: common/setting/user.py:131 msgid "Exclude Inactive Sales Orders" msgstr "Εξαίρεση ανενεργών εντολών πώλησης" -#: common/setting/user.py:126 +#: common/setting/user.py:132 msgid "Exclude inactive sales orders from search preview window" msgstr "Εξαίρεση ανενεργών εντολών πώλησης από το παράθυρο προεπισκόπησης αναζήτησης" -#: common/setting/user.py:131 +#: common/setting/user.py:137 msgid "Search Sales Order Shipments" msgstr "Αναζήτηση αποστολών εντολών πώλησης" -#: common/setting/user.py:132 +#: common/setting/user.py:138 msgid "Display sales order shipments in search preview window" msgstr "Εμφάνιση αποστολών εντολών πώλησης στο παράθυρο προεπισκόπησης αναζήτησης" -#: common/setting/user.py:137 +#: common/setting/user.py:143 msgid "Search Return Orders" msgstr "Αναζήτηση εντολών επιστροφής" -#: common/setting/user.py:138 +#: common/setting/user.py:144 msgid "Display return orders in search preview window" msgstr "Εμφάνιση εντολών επιστροφής στο παράθυρο προεπισκόπησης αναζήτησης" -#: common/setting/user.py:143 +#: common/setting/user.py:149 msgid "Exclude Inactive Return Orders" msgstr "Εξαίρεση ανενεργών εντολών επιστροφής" -#: common/setting/user.py:144 +#: common/setting/user.py:150 msgid "Exclude inactive return orders from search preview window" msgstr "Εξαίρεση ανενεργών εντολών επιστροφής από το παράθυρο προεπισκόπησης αναζήτησης" -#: common/setting/user.py:149 +#: common/setting/user.py:155 msgid "Search Preview Results" msgstr "Αποτελέσματα προεπισκόπησης αναζήτησης" -#: common/setting/user.py:151 +#: common/setting/user.py:157 msgid "Number of results to show in each section of the search preview window" msgstr "Αριθμός αποτελεσμάτων που εμφανίζονται σε κάθε ενότητα του παραθύρου προεπισκόπησης αναζήτησης" -#: common/setting/user.py:157 +#: common/setting/user.py:163 msgid "Regex Search" msgstr "Αναζήτηση με regex" -#: common/setting/user.py:158 +#: common/setting/user.py:164 msgid "Enable regular expressions in search queries" msgstr "Ενεργοποίηση κανονικών εκφράσεων (regex) στα ερωτήματα αναζήτησης" -#: common/setting/user.py:163 +#: common/setting/user.py:169 msgid "Whole Word Search" msgstr "Αναζήτηση ολόκληρης λέξης" -#: common/setting/user.py:164 +#: common/setting/user.py:170 msgid "Search queries return results for whole word matches" msgstr "Τα ερωτήματα αναζήτησης επιστρέφουν αποτελέσματα μόνο για πλήρη ταίριασμα λέξης" -#: common/setting/user.py:169 +#: common/setting/user.py:175 msgid "Search Notes" msgstr "Αναζήτηση σημειώσεων" -#: common/setting/user.py:171 +#: common/setting/user.py:177 msgid "Search queries return results for matches from the item's notes" msgstr "Τα ερωτήματα αναζήτησης επιστρέφουν αποτελέσματα που ταιριάζουν με τις σημειώσεις του είδους" -#: common/setting/user.py:177 +#: common/setting/user.py:183 msgid "Escape Key Closes Forms" msgstr "Το πλήκτρο Escape κλείνει φόρμες" -#: common/setting/user.py:178 +#: common/setting/user.py:184 msgid "Use the escape key to close modal forms" msgstr "Χρήση του πλήκτρου Escape για κλείσιμο αναδυόμενων φορμών" -#: common/setting/user.py:183 +#: common/setting/user.py:189 msgid "Fixed Navbar" msgstr "Σταθερή γραμμή πλοήγησης" -#: common/setting/user.py:184 +#: common/setting/user.py:190 msgid "The navbar position is fixed to the top of the screen" msgstr "Η γραμμή πλοήγησης παραμένει σταθερή στο επάνω μέρος της οθόνης" -#: common/setting/user.py:189 +#: common/setting/user.py:195 msgid "Fixed Table Headers" msgstr "Σταθερές κεφαλίδες πινάκων" -#: common/setting/user.py:190 +#: common/setting/user.py:196 msgid "Table headers are fixed to the top of the table" msgstr "Οι κεφαλίδες πινάκων παραμένουν σταθερές στο επάνω μέρος του πίνακα" -#: common/setting/user.py:195 +#: common/setting/user.py:201 msgid "Show Spotlight" msgstr "Εμφάνιση Spotlight" -#: common/setting/user.py:196 +#: common/setting/user.py:202 msgid "Enable spotlight navigation functionality" msgstr "Ενεργοποίηση λειτουργίας πλοήγησης Spotlight" -#: common/setting/user.py:201 +#: common/setting/user.py:207 msgid "Navigation Icons" msgstr "Εικονίδια πλοήγησης" -#: common/setting/user.py:202 +#: common/setting/user.py:208 msgid "Display icons in the navigation bar" msgstr "Εμφάνιση εικονιδίων στη γραμμή πλοήγησης" -#: common/setting/user.py:207 +#: common/setting/user.py:213 msgid "Date Format" msgstr "Μορφή ημερομηνίας" -#: common/setting/user.py:208 +#: common/setting/user.py:214 msgid "Preferred format for displaying dates" msgstr "Προτιμώμενη μορφή εμφάνισης ημερομηνιών" -#: common/setting/user.py:221 +#: common/setting/user.py:227 msgid "Show Stock History" msgstr "Εμφάνιση ιστορικού αποθέματος" -#: common/setting/user.py:222 +#: common/setting/user.py:228 msgid "Display stock history information in the part detail page" msgstr "Εμφάνιση πληροφοριών ιστορικού αποθέματος στη σελίδα λεπτομερειών προϊόντος" -#: common/setting/user.py:227 +#: common/setting/user.py:233 msgid "Show Last Breadcrumb" msgstr "Εμφάνιση τελευταίου breadcrumb" -#: common/setting/user.py:228 +#: common/setting/user.py:234 msgid "Show the current page in breadcrumbs" msgstr "Εμφάνιση της τρέχουσας σελίδας στα breadcrumbs" -#: common/setting/user.py:233 +#: common/setting/user.py:239 msgid "Show full stock location in tables" msgstr "Εμφάνιση πλήρους τοποθεσίας αποθέματος σε πίνακες" -#: common/setting/user.py:235 +#: common/setting/user.py:241 msgid "Disabled: The full location path is displayed as a hover tooltip. Enabled: The full location path is displayed as plain text." msgstr "Ανενεργό: Η πλήρης διαδρομή τοποθεσίας εμφανίζεται ως tooltip κατά το πέρασμα του δείκτη. Ενεργό: Η πλήρης διαδρομή τοποθεσίας εμφανίζεται ως απλό κείμενο" -#: common/setting/user.py:241 +#: common/setting/user.py:247 msgid "Show full part categories in tables" msgstr "Εμφάνιση πλήρους κατηγορίας προϊόντων σε πίνακες" -#: common/setting/user.py:243 +#: common/setting/user.py:249 msgid "Disabled: The full category path is displayed as a hover tooltip. Enabled: The full category path is displayed as plain text." msgstr "Ανενεργό: Η πλήρης διαδρομή κατηγορίας εμφανίζεται ως tooltip κατά το πέρασμα του δείκτη. Ενεργό: Η πλήρης διαδρομή κατηγορίας εμφανίζεται ως απλό κείμενο" -#: common/setting/user.py:249 +#: common/setting/user.py:255 msgid "Receive error reports" msgstr "Λήψη αναφορών σφαλμάτων" -#: common/setting/user.py:250 +#: common/setting/user.py:256 msgid "Receive notifications for system errors" msgstr "Λήψη ειδοποιήσεων για σφάλματα συστήματος" -#: common/setting/user.py:255 +#: common/setting/user.py:261 msgid "Last used printing machines" msgstr "Τελευταίες χρησιμοποιημένες εκτυπωτικές μηχανές" -#: common/setting/user.py:256 +#: common/setting/user.py:262 msgid "Save the last used printing machines for a user" msgstr "Αποθήκευση των τελευταίων εκτυπωτικών μηχανών που χρησιμοποίησε ο χρήστης" -#: common/validators.py:34 +#: common/validators.py:38 +msgid "All models" +msgstr "" + +#: common/validators.py:63 msgid "No attachment model type provided" msgstr "Δεν δόθηκε τύπος μοντέλου συνημμένου" -#: common/validators.py:40 +#: common/validators.py:69 msgid "Invalid attachment model type" msgstr "Μη έγκυρος τύπος μοντέλου συνημμένου" -#: common/validators.py:81 +#: common/validators.py:110 msgid "Minimum places cannot be greater than maximum places" msgstr "Οι ελάχιστες θέσεις δεν μπορούν να είναι περισσότερες από τις μέγιστες" -#: common/validators.py:93 +#: common/validators.py:122 msgid "Maximum places cannot be less than minimum places" msgstr "Οι μέγιστες θέσεις δεν μπορούν να είναι λιγότερες από τις ελάχιστες" -#: common/validators.py:104 +#: common/validators.py:133 msgid "An empty domain is not allowed." msgstr "Δεν επιτρέπεται κενός τομέας." -#: common/validators.py:106 +#: common/validators.py:135 #, python-brace-format msgid "Invalid domain name: {domain}" msgstr "Μη έγκυρο όνομα τομέα: {domain}" -#: common/validators.py:122 +#: common/validators.py:151 msgid "Value must be uppercase" msgstr "Η τιμή πρέπει να είναι με κεφαλαία" -#: common/validators.py:128 +#: common/validators.py:157 msgid "Value must be a valid variable identifier" msgstr "Η τιμή πρέπει να είναι έγκυρο όνομα μεταβλητής" -#: company/api.py:147 +#: company/api.py:141 msgid "Part is Active" msgstr "Το προϊόν είναι ενεργό" -#: company/api.py:151 +#: company/api.py:145 msgid "Manufacturer is Active" msgstr "Ο κατασκευαστής είναι ενεργός" -#: company/api.py:286 +#: company/api.py:246 msgid "Supplier Part is Active" msgstr "Το προϊόν προμηθευτή είναι ενεργό" -#: company/api.py:290 +#: company/api.py:250 msgid "Internal Part is Active" msgstr "Το εσωτερικό προϊόν είναι ενεργό" -#: company/api.py:295 +#: company/api.py:255 msgid "Supplier is Active" msgstr "Ο προμηθευτής είναι ενεργός" -#: company/api.py:307 company/models.py:520 company/serializers.py:457 -#: part/serializers.py:566 +#: company/api.py:267 company/models.py:522 company/serializers.py:502 +#: part/serializers.py:477 msgid "Manufacturer" msgstr "Κατασκευαστής" -#: company/api.py:314 company/models.py:121 company/models.py:392 +#: company/api.py:274 company/models.py:122 company/models.py:393 #: stock/api.py:900 msgid "Company" msgstr "Εταιρεία" -#: company/api.py:324 +#: company/api.py:284 msgid "Has Stock" msgstr "Διαθέτει απόθεμα" -#: company/models.py:122 +#: company/models.py:123 msgid "Companies" msgstr "Εταιρείες" -#: company/models.py:150 +#: company/models.py:151 msgid "Company description" msgstr "Περιγραφή εταιρείας" -#: company/models.py:151 +#: company/models.py:152 msgid "Description of the company" msgstr "Περιγραφή της εταιρείας" -#: company/models.py:157 +#: company/models.py:158 msgid "Website" msgstr "Ιστότοπος" -#: company/models.py:158 +#: company/models.py:159 msgid "Company website URL" msgstr "URL ιστοτόπου εταιρείας" -#: company/models.py:164 +#: company/models.py:165 msgid "Phone number" msgstr "Τηλέφωνο" -#: company/models.py:166 +#: company/models.py:167 msgid "Contact phone number" msgstr "Τηλέφωνο επικοινωνίας" -#: company/models.py:173 +#: company/models.py:174 msgid "Contact email address" msgstr "Email επικοινωνίας" -#: company/models.py:178 company/models.py:296 order/models.py:513 +#: company/models.py:179 company/models.py:297 order/models.py:514 #: users/models.py:561 msgid "Contact" msgstr "Επαφή" -#: company/models.py:180 +#: company/models.py:181 msgid "Point of contact" msgstr "Σημείο επαφής" -#: company/models.py:186 +#: company/models.py:187 msgid "Link to external company information" msgstr "Σύνδεσμος σε εξωτερικές πληροφορίες εταιρείας" -#: company/models.py:191 +#: company/models.py:192 msgid "Is this company active?" msgstr "Είναι αυτή η εταιρεία ενεργή;" -#: company/models.py:196 +#: company/models.py:197 msgid "Is customer" msgstr "Είναι πελάτης" -#: company/models.py:197 +#: company/models.py:198 msgid "Do you sell items to this company?" msgstr "Πουλάτε είδη σε αυτή την εταιρεία;" -#: company/models.py:202 +#: company/models.py:203 msgid "Is supplier" msgstr "Είναι προμηθευτής" -#: company/models.py:203 +#: company/models.py:204 msgid "Do you purchase items from this company?" msgstr "Αγοράζετε είδη από αυτή την εταιρεία;" -#: company/models.py:208 +#: company/models.py:209 msgid "Is manufacturer" msgstr "Είναι κατασκευαστής" -#: company/models.py:209 +#: company/models.py:210 msgid "Does this company manufacture parts?" msgstr "Κατασκευάζει αυτή η εταιρεία προϊόντα;" -#: company/models.py:217 +#: company/models.py:218 msgid "Default currency used for this company" msgstr "Προεπιλεγμένο νόμισμα που χρησιμοποιείται για αυτή την εταιρεία" -#: company/models.py:224 +#: company/models.py:225 msgid "Tax ID" msgstr "ΑΦΜ" -#: company/models.py:225 +#: company/models.py:226 msgid "Company Tax ID" msgstr "ΑΦΜ εταιρείας" -#: company/models.py:335 order/models.py:523 order/models.py:2288 +#: company/models.py:336 order/models.py:524 order/models.py:2289 msgid "Address" msgstr "Διεύθυνση" -#: company/models.py:336 +#: company/models.py:337 msgid "Addresses" msgstr "Διευθύνσεις" -#: company/models.py:393 +#: company/models.py:394 msgid "Select company" msgstr "Επιλογή εταιρείας" -#: company/models.py:398 +#: company/models.py:399 msgid "Address title" msgstr "Τίτλος διεύθυνσης" -#: company/models.py:399 +#: company/models.py:400 msgid "Title describing the address entry" msgstr "Τίτλος που περιγράφει την εγγραφή διεύθυνσης" -#: company/models.py:405 +#: company/models.py:406 msgid "Primary address" msgstr "Κύρια διεύθυνση" -#: company/models.py:406 +#: company/models.py:407 msgid "Set as primary address" msgstr "Ορισμός ως κύριας διεύθυνσης" -#: company/models.py:411 +#: company/models.py:412 msgid "Line 1" msgstr "Γραμμή 1" -#: company/models.py:412 +#: company/models.py:413 msgid "Address line 1" msgstr "Γραμμή διεύθυνσης 1" -#: company/models.py:418 +#: company/models.py:419 msgid "Line 2" msgstr "Γραμμή 2" -#: company/models.py:419 +#: company/models.py:420 msgid "Address line 2" msgstr "Γραμμή διεύθυνσης 2" -#: company/models.py:425 company/models.py:426 +#: company/models.py:426 company/models.py:427 msgid "Postal code" msgstr "Ταχυδρομικός κώδικας" -#: company/models.py:432 +#: company/models.py:433 msgid "City/Region" msgstr "Πόλη/Περιοχή" -#: company/models.py:433 +#: company/models.py:434 msgid "Postal code city/region" msgstr "Πόλη/περιοχή ταχυδρομικού κώδικα" -#: company/models.py:439 +#: company/models.py:440 msgid "State/Province" msgstr "Πολιτεία/Επαρχία" -#: company/models.py:440 +#: company/models.py:441 msgid "State or province" msgstr "Πολιτεία ή επαρχία" -#: company/models.py:446 +#: company/models.py:447 msgid "Country" msgstr "Χώρα" -#: company/models.py:447 +#: company/models.py:448 msgid "Address country" msgstr "Χώρα διεύθυνσης" -#: company/models.py:453 +#: company/models.py:454 msgid "Courier shipping notes" msgstr "Σημειώσεις αποστολής για courier" -#: company/models.py:454 +#: company/models.py:455 msgid "Notes for shipping courier" msgstr "Σημειώσεις για την αποστολή με courier" -#: company/models.py:460 +#: company/models.py:461 msgid "Internal shipping notes" msgstr "Εσωτερικές σημειώσεις αποστολής" -#: company/models.py:461 +#: company/models.py:462 msgid "Shipping notes for internal use" msgstr "Σημειώσεις αποστολής για εσωτερική χρήση" -#: company/models.py:468 +#: company/models.py:469 msgid "Link to address information (external)" msgstr "Σύνδεσμος σε πληροφορίες διεύθυνσης (εξωτερικό)" -#: company/models.py:492 company/models.py:609 company/models.py:832 -#: company/serializers.py:471 stock/api.py:561 +#: company/models.py:494 company/models.py:786 company/serializers.py:516 +#: stock/api.py:561 msgid "Manufacturer Part" msgstr "Προϊόν κατασκευαστή" -#: company/models.py:509 company/models.py:800 stock/models.py:1025 +#: company/models.py:511 company/models.py:754 stock/models.py:1025 #: stock/serializers.py:407 msgid "Base Part" msgstr "Βασικό προϊόν" -#: company/models.py:511 company/models.py:802 +#: company/models.py:513 company/models.py:756 msgid "Select part" msgstr "Επιλογή προϊόντος" -#: company/models.py:521 +#: company/models.py:523 msgid "Select manufacturer" msgstr "Επιλογή κατασκευαστή" -#: company/models.py:527 company/serializers.py:479 order/serializers.py:734 -#: part/serializers.py:576 +#: company/models.py:529 company/serializers.py:524 order/serializers.py:745 +#: part/serializers.py:487 msgid "MPN" msgstr "MPN" -#: company/models.py:528 stock/serializers.py:572 +#: company/models.py:530 stock/serializers.py:572 msgid "Manufacturer Part Number" msgstr "Κωδικός προϊόντος κατασκευαστή" -#: company/models.py:535 +#: company/models.py:537 msgid "URL for external manufacturer part link" msgstr "URL εξωτερικού συνδέσμου προϊόντος κατασκευαστή" -#: company/models.py:544 +#: company/models.py:546 msgid "Manufacturer part description" msgstr "Περιγραφή προϊόντος κατασκευαστή" -#: company/models.py:597 -msgid "Manufacturer Part Parameter" -msgstr "Παράμετρος προϊόντος κατασκευαστή" - -#: company/models.py:616 -msgid "Parameter name" -msgstr "Όνομα παραμέτρου" - -#: company/models.py:623 -msgid "Parameter value" -msgstr "Τιμή παραμέτρου" - -#: company/models.py:630 part/models.py:1195 part/models.py:3857 -msgid "Units" -msgstr "Μονάδες" - -#: company/models.py:631 -msgid "Parameter units" -msgstr "Μονάδες παραμέτρου" - -#: company/models.py:740 +#: company/models.py:694 msgid "Pack units must be compatible with the base part units" msgstr "Οι μονάδες συσκευασίας πρέπει να είναι συμβατές με τις μονάδες του βασικού προϊόντος" -#: company/models.py:747 +#: company/models.py:701 msgid "Pack units must be greater than zero" msgstr "Οι μονάδες συσκευασίας πρέπει να είναι μεγαλύτερες από το μηδέν" -#: company/models.py:761 +#: company/models.py:715 msgid "Linked manufacturer part must reference the same base part" msgstr "Το συνδεδεμένο προϊόν κατασκευαστή πρέπει να αναφέρεται στο ίδιο βασικό προϊόν" -#: company/models.py:810 company/serializers.py:449 company/serializers.py:467 -#: order/models.py:639 part/serializers.py:550 +#: company/models.py:764 company/serializers.py:494 company/serializers.py:512 +#: order/models.py:640 part/serializers.py:461 #: plugin/builtin/suppliers/digikey.py:26 plugin/builtin/suppliers/lcsc.py:27 #: plugin/builtin/suppliers/mouser.py:25 plugin/builtin/suppliers/tme.py:27 #: stock/api.py:567 templates/email/overdue_purchase_order.html:16 msgid "Supplier" msgstr "Προμηθευτής" -#: company/models.py:811 +#: company/models.py:765 msgid "Select supplier" msgstr "Επιλογή προμηθευτή" -#: company/models.py:817 part/serializers.py:561 +#: company/models.py:771 part/serializers.py:472 msgid "Supplier stock keeping unit" msgstr "Κωδικός αποθέματος προμηθευτή" -#: company/models.py:823 +#: company/models.py:777 msgid "Is this supplier part active?" msgstr "Είναι αυτό το προϊόν προμηθευτή ενεργό;" -#: company/models.py:833 +#: company/models.py:787 msgid "Select manufacturer part" msgstr "Επιλογή προϊόντος κατασκευαστή" -#: company/models.py:840 +#: company/models.py:794 msgid "URL for external supplier part link" msgstr "URL εξωτερικού συνδέσμου προϊόντος προμηθευτή" -#: company/models.py:849 +#: company/models.py:803 msgid "Supplier part description" msgstr "Περιγραφή προϊόντος προμηθευτή" -#: company/models.py:856 order/serializers.py:883 order/serializers.py:2047 -#: part/models.py:4070 part/models.py:4450 part/models.py:4819 -#: report/templates/report/inventree_bill_of_materials_report.html:140 -#: report/templates/report/inventree_purchase_order_report.html:39 -#: report/templates/report/inventree_return_order_report.html:27 -#: report/templates/report/inventree_sales_order_report.html:32 -#: report/templates/report/inventree_stock_location_report.html:105 -#: stock/serializers.py:813 -msgid "Note" -msgstr "Σημείωση" - -#: company/models.py:865 part/models.py:2250 +#: company/models.py:819 part/models.py:2338 msgid "base cost" msgstr "βασικό κόστος" -#: company/models.py:866 part/models.py:2251 +#: company/models.py:820 part/models.py:2339 msgid "Minimum charge (e.g. stocking fee)" msgstr "Ελάχιστη χρέωση (π.χ. χρέωση αποθήκευσης)" -#: company/models.py:873 order/serializers.py:875 stock/models.py:1056 +#: company/models.py:827 order/serializers.py:886 stock/models.py:1056 #: stock/serializers.py:1606 msgid "Packaging" msgstr "Συσκευασία" -#: company/models.py:874 +#: company/models.py:828 msgid "Part packaging" msgstr "Συσκευασία προϊόντος" -#: company/models.py:879 +#: company/models.py:833 msgid "Pack Quantity" msgstr "Ποσότητα ανά συσκευασία" -#: company/models.py:881 +#: company/models.py:835 msgid "Total quantity supplied in a single pack. Leave empty for single items." msgstr "Συνολική ποσότητα που παρέχεται σε μία συσκευασία. Αφήστε κενό για μεμονωμένα είδη." -#: company/models.py:900 part/models.py:2257 +#: company/models.py:854 part/models.py:2345 msgid "multiple" msgstr "πολλαπλάσιο" -#: company/models.py:901 +#: company/models.py:855 msgid "Order multiple" msgstr "Πολλαπλάσιο παραγγελίας" -#: company/models.py:913 +#: company/models.py:867 msgid "Quantity available from supplier" msgstr "Ποσότητα διαθέσιμη από τον προμηθευτή" -#: company/models.py:919 +#: company/models.py:873 msgid "Availability Updated" msgstr "Η διαθεσιμότητα ενημερώθηκε" -#: company/models.py:920 +#: company/models.py:874 msgid "Date of last update of availability data" msgstr "Ημερομηνία τελευταίας ενημέρωσης δεδομένων διαθεσιμότητας" -#: company/models.py:1048 +#: company/models.py:1002 msgid "Supplier Price Break" msgstr "Κλιμακωτή τιμή προμηθευτή" -#: company/serializers.py:181 +#: company/serializers.py:184 +msgid "Primary Address" +msgstr "" + +#: company/serializers.py:186 msgid "Return the string representation for the primary address. This property exists for backwards compatibility." msgstr "Επιστρέφει την συμβολοσειρά αναπαράστασης της κύριας διεύθυνσης. Αυτή η ιδιότητα υπάρχει για λόγους συμβατότητας προς τα πίσω." -#: company/serializers.py:212 +#: company/serializers.py:218 msgid "Default currency used for this supplier" msgstr "Προεπιλεγμένο νόμισμα που χρησιμοποιείται για αυτόν τον προμηθευτή" -#: company/serializers.py:248 +#: company/serializers.py:260 msgid "Company Name" msgstr "Όνομα εταιρείας" -#: company/serializers.py:433 part/serializers.py:955 stock/serializers.py:428 +#: company/serializers.py:460 part/serializers.py:840 stock/serializers.py:428 msgid "In Stock" msgstr "Σε απόθεμα" +#: company/serializers.py:477 +msgid "Price Breaks" +msgstr "Κλιμακωτές τιμές" + #: data_exporter/mixins.py:325 data_exporter/mixins.py:403 msgid "Error occurred during data export" msgstr "Προέκυψε σφάλμα κατά την εξαγωγή δεδομένων" @@ -4290,7 +4418,7 @@ msgstr "Αρχικά δεδομένα γραμμής" msgid "Errors" msgstr "Σφάλματα" -#: importer/models.py:550 part/serializers.py:1268 +#: importer/models.py:550 part/serializers.py:1133 msgid "Valid" msgstr "Έγκυρο" @@ -4402,7 +4530,7 @@ msgstr "Αριθμός αντιτύπων προς εκτύπωση για κά msgid "Connected" msgstr "Συνδεδεμένος" -#: machine/machine_types/label_printer.py:232 order/api.py:1795 +#: machine/machine_types/label_printer.py:232 order/api.py:1800 msgid "Unknown" msgstr "Άγνωστο" @@ -4530,105 +4658,105 @@ msgstr "Μέγιστη πρόοδος" msgid "Maximum value for progress type, required if type=progress" msgstr "Μέγιστη τιμή για τύπο προόδου, απαιτείται αν type=progress" -#: order/api.py:125 +#: order/api.py:130 msgid "Order Reference" msgstr "Αναφορά παραγγελίας" -#: order/api.py:153 order/api.py:1207 +#: order/api.py:158 order/api.py:1212 msgid "Outstanding" msgstr "Σε εκκρεμότητα" -#: order/api.py:169 +#: order/api.py:174 msgid "Has Project Code" msgstr "Έχει κωδικό έργου" -#: order/api.py:183 order/models.py:488 +#: order/api.py:188 order/models.py:489 msgid "Created By" msgstr "Δημιουργήθηκε από" -#: order/api.py:187 +#: order/api.py:192 msgid "Created Before" msgstr "Δημιουργήθηκε πριν" -#: order/api.py:191 +#: order/api.py:196 msgid "Created After" msgstr "Δημιουργήθηκε μετά" -#: order/api.py:195 +#: order/api.py:200 msgid "Has Start Date" msgstr "Έχει ημερομηνία έναρξης" -#: order/api.py:203 +#: order/api.py:208 msgid "Start Date Before" msgstr "Ημερομηνία έναρξης πριν" -#: order/api.py:207 +#: order/api.py:212 msgid "Start Date After" msgstr "Ημερομηνία έναρξης μετά" -#: order/api.py:211 +#: order/api.py:216 msgid "Has Target Date" msgstr "Έχει ημερομηνία στόχο" -#: order/api.py:219 +#: order/api.py:224 msgid "Target Date Before" msgstr "Ημερομηνία στόχος πριν" -#: order/api.py:223 +#: order/api.py:228 msgid "Target Date After" msgstr "Ημερομηνία στόχος μετά" -#: order/api.py:274 +#: order/api.py:279 msgid "Has Pricing" msgstr "Έχει τιμολόγηση" -#: order/api.py:327 order/api.py:812 order/api.py:1490 +#: order/api.py:332 order/api.py:818 order/api.py:1495 msgid "Completed Before" msgstr "Ολοκληρώθηκε πριν" -#: order/api.py:331 order/api.py:816 order/api.py:1494 +#: order/api.py:336 order/api.py:822 order/api.py:1499 msgid "Completed After" msgstr "Ολοκληρώθηκε μετά" -#: order/api.py:337 order/api.py:341 +#: order/api.py:342 order/api.py:346 msgid "External Build Order" msgstr "Εξωτερική εντολή παραγωγής" -#: order/api.py:526 order/api.py:914 order/api.py:1170 order/models.py:1922 -#: order/models.py:2049 order/models.py:2099 order/models.py:2279 -#: order/models.py:2477 order/models.py:2999 order/models.py:3065 +#: order/api.py:532 order/api.py:919 order/api.py:1175 order/models.py:1923 +#: order/models.py:2050 order/models.py:2100 order/models.py:2280 +#: order/models.py:2478 order/models.py:3000 order/models.py:3066 msgid "Order" msgstr "Παραγγελία" -#: order/api.py:530 order/api.py:982 +#: order/api.py:536 order/api.py:987 msgid "Order Complete" msgstr "Η παραγγελία ολοκληρώθηκε" -#: order/api.py:562 order/api.py:566 order/serializers.py:745 +#: order/api.py:568 order/api.py:572 order/serializers.py:756 msgid "Internal Part" msgstr "Εσωτερικό προϊόν" -#: order/api.py:584 +#: order/api.py:590 msgid "Order Pending" msgstr "Η παραγγελία είναι σε εκκρεμότητα" -#: order/api.py:967 +#: order/api.py:972 msgid "Completed" msgstr "Ολοκληρώθηκε" -#: order/api.py:1223 +#: order/api.py:1228 msgid "Has Shipment" msgstr "Έχει αποστολή" -#: order/api.py:1789 order/models.py:552 order/models.py:1923 -#: order/models.py:2050 +#: order/api.py:1794 order/models.py:553 order/models.py:1924 +#: order/models.py:2051 #: report/templates/report/inventree_purchase_order_report.html:14 #: stock/serializers.py:129 templates/email/overdue_purchase_order.html:15 msgid "Purchase Order" msgstr "Εντολή αγοράς" -#: order/api.py:1791 order/models.py:1251 order/models.py:2100 -#: order/models.py:2280 order/models.py:2478 +#: order/api.py:1796 order/models.py:1252 order/models.py:2101 +#: order/models.py:2281 order/models.py:2479 #: report/templates/report/inventree_build_order_report.html:135 #: report/templates/report/inventree_sales_order_report.html:14 #: report/templates/report/inventree_sales_order_shipment_report.html:15 @@ -4636,8 +4764,8 @@ msgstr "Εντολή αγοράς" msgid "Sales Order" msgstr "Εντολές Πώλησης" -#: order/api.py:1793 order/models.py:2649 order/models.py:3000 -#: order/models.py:3066 +#: order/api.py:1798 order/models.py:2650 order/models.py:3001 +#: order/models.py:3067 #: report/templates/report/inventree_return_order_report.html:13 #: templates/email/overdue_return_order.html:15 msgid "Return Order" @@ -4653,722 +4781,722 @@ msgstr "Συνολική τιμή" msgid "Total price for this order" msgstr "Συνολική τιμή για αυτή την παραγγελία" -#: order/models.py:96 order/serializers.py:77 +#: order/models.py:96 order/serializers.py:78 msgid "Order Currency" msgstr "Νόμισμα παραγγελίας" -#: order/models.py:99 order/serializers.py:78 +#: order/models.py:99 order/serializers.py:79 msgid "Currency for this order (leave blank to use company default)" msgstr "Νόμισμα για αυτή την παραγγελία (αφήστε κενό για χρήση της προεπιλογής εταιρείας)" -#: order/models.py:324 +#: order/models.py:325 msgid "This order is locked and cannot be modified" msgstr "Αυτή η παραγγελία είναι κλειδωμένη και δεν μπορεί να τροποποιηθεί" -#: order/models.py:376 +#: order/models.py:377 msgid "Contact does not match selected company" msgstr "Η επαφή δεν αντιστοιχεί στην επιλεγμένη εταιρεία" -#: order/models.py:383 +#: order/models.py:384 msgid "Start date must be before target date" msgstr "Η ημερομηνία έναρξης πρέπει να είναι πριν από την ημερομηνία στόχο" -#: order/models.py:390 +#: order/models.py:391 msgid "Address does not match selected company" msgstr "Η διεύθυνση δεν αντιστοιχεί στην επιλεγμένη εταιρεία" -#: order/models.py:443 +#: order/models.py:444 msgid "Order description (optional)" msgstr "Περιγραφή παραγγελίας (προαιρετικά)" -#: order/models.py:452 order/models.py:1806 +#: order/models.py:453 order/models.py:1807 msgid "Select project code for this order" msgstr "Επιλογή κωδικού έργου για αυτή την παραγγελία" -#: order/models.py:458 order/models.py:1787 order/models.py:2344 +#: order/models.py:459 order/models.py:1788 order/models.py:2345 msgid "Link to external page" msgstr "Σύνδεσμος σε εξωτερική σελίδα" -#: order/models.py:465 +#: order/models.py:466 msgid "Start date" msgstr "Ημερομηνία έναρξης" -#: order/models.py:466 +#: order/models.py:467 msgid "Scheduled start date for this order" msgstr "Προγραμματισμένη ημερομηνία έναρξης για αυτή την παραγγελία" -#: order/models.py:472 order/models.py:1794 order/serializers.py:309 +#: order/models.py:473 order/models.py:1795 order/serializers.py:317 #: report/templates/report/inventree_build_order_report.html:125 msgid "Target Date" msgstr "Επιθυμητή Προθεσμία" -#: order/models.py:474 +#: order/models.py:475 msgid "Expected date for order delivery. Order will be overdue after this date." msgstr "Αναμενόμενη ημερομηνία παράδοσης παραγγελίας. Η παραγγελία θα θεωρείται εκπρόθεσμη μετά από αυτή την ημερομηνία." -#: order/models.py:494 +#: order/models.py:495 msgid "Issue Date" msgstr "Ημερομηνία έκδοσης" -#: order/models.py:495 +#: order/models.py:496 msgid "Date order was issued" msgstr "Ημερομηνία έκδοσης της παραγγελίας" -#: order/models.py:503 +#: order/models.py:504 msgid "User or group responsible for this order" msgstr "Χρήστης ή ομάδα υπεύθυνη για αυτή την παραγγελία" -#: order/models.py:514 +#: order/models.py:515 msgid "Point of contact for this order" msgstr "Σημείο επαφής για αυτή την παραγγελία" -#: order/models.py:524 +#: order/models.py:525 msgid "Company address for this order" msgstr "Διεύθυνση εταιρείας για αυτή την παραγγελία" -#: order/models.py:615 order/models.py:1312 +#: order/models.py:616 order/models.py:1313 msgid "Order reference" msgstr "Αναφορά παραγγελίας" -#: order/models.py:624 order/models.py:1336 order/models.py:2737 +#: order/models.py:625 order/models.py:1337 order/models.py:2738 #: stock/serializers.py:559 stock/serializers.py:988 users/models.py:542 msgid "Status" msgstr "Κατάσταση" -#: order/models.py:625 +#: order/models.py:626 msgid "Purchase order status" msgstr "Κατάσταση εντολής αγοράς" -#: order/models.py:640 +#: order/models.py:641 msgid "Company from which the items are being ordered" msgstr "Εταιρεία από την οποία παραγγέλνονται τα είδη" -#: order/models.py:651 +#: order/models.py:652 msgid "Supplier Reference" msgstr "Αναφορά προμηθευτή" -#: order/models.py:652 +#: order/models.py:653 msgid "Supplier order reference code" msgstr "Κωδικός αναφοράς παραγγελίας προμηθευτή" -#: order/models.py:661 +#: order/models.py:662 msgid "received by" msgstr "παραλήφθηκε από" -#: order/models.py:668 order/models.py:2752 +#: order/models.py:669 order/models.py:2753 msgid "Date order was completed" msgstr "Ημερομηνία ολοκλήρωσης της παραγγελίας" -#: order/models.py:677 order/models.py:1981 +#: order/models.py:678 order/models.py:1982 msgid "Destination" msgstr "Προορισμός" -#: order/models.py:678 order/models.py:1985 +#: order/models.py:679 order/models.py:1986 msgid "Destination for received items" msgstr "Προορισμός για τα παραληφθέντα είδη" -#: order/models.py:724 +#: order/models.py:725 msgid "Part supplier must match PO supplier" msgstr "Ο προμηθευτής προϊόντος πρέπει να ταιριάζει με τον προμηθευτή της εντολής αγοράς" -#: order/models.py:994 +#: order/models.py:995 msgid "Line item does not match purchase order" msgstr "Η γραμμή δεν αντιστοιχεί στην εντολή αγοράς" -#: order/models.py:997 +#: order/models.py:998 msgid "Line item is missing a linked part" msgstr "Στη γραμμή λείπει συνδεδεμένο προϊόν" -#: order/models.py:1011 +#: order/models.py:1012 msgid "Quantity must be a positive number" msgstr "Η ποσότητα πρέπει να είναι θετικός αριθμός" -#: order/models.py:1323 order/models.py:2724 stock/models.py:1078 +#: order/models.py:1324 order/models.py:2725 stock/models.py:1078 #: stock/models.py:1079 stock/serializers.py:1322 #: templates/email/overdue_return_order.html:16 #: templates/email/overdue_sales_order.html:16 msgid "Customer" msgstr "Πελάτης" -#: order/models.py:1324 +#: order/models.py:1325 msgid "Company to which the items are being sold" msgstr "Εταιρεία στην οποία πωλούνται τα είδη" -#: order/models.py:1337 +#: order/models.py:1338 msgid "Sales order status" msgstr "Κατάσταση εντολής πώλησης" -#: order/models.py:1348 order/models.py:2744 +#: order/models.py:1349 order/models.py:2745 msgid "Customer Reference " msgstr "Αναφορά πελάτη " -#: order/models.py:1349 order/models.py:2745 +#: order/models.py:1350 order/models.py:2746 msgid "Customer order reference code" msgstr "Κωδικός αναφοράς παραγγελίας πελάτη" -#: order/models.py:1353 order/models.py:2296 +#: order/models.py:1354 order/models.py:2297 msgid "Shipment Date" msgstr "Ημερομηνία αποστολής" -#: order/models.py:1362 +#: order/models.py:1363 msgid "shipped by" msgstr "απεστάλη από" -#: order/models.py:1413 +#: order/models.py:1414 msgid "Order is already complete" msgstr "Η παραγγελία είναι ήδη ολοκληρωμένη" -#: order/models.py:1416 +#: order/models.py:1417 msgid "Order is already cancelled" msgstr "Η παραγγελία είναι ήδη ακυρωμένη" -#: order/models.py:1420 +#: order/models.py:1421 msgid "Only an open order can be marked as complete" msgstr "Μόνο μια ανοικτή παραγγελία μπορεί να σημειωθεί ως ολοκληρωμένη" -#: order/models.py:1424 +#: order/models.py:1425 msgid "Order cannot be completed as there are incomplete shipments" msgstr "Η παραγγελία δεν μπορεί να ολοκληρωθεί καθώς υπάρχουν μη ολοκληρωμένες αποστολές" -#: order/models.py:1429 +#: order/models.py:1430 msgid "Order cannot be completed as there are incomplete allocations" msgstr "Η παραγγελία δεν μπορεί να ολοκληρωθεί καθώς υπάρχουν μη ολοκληρωμένες δεσμεύσεις αποθέματος" -#: order/models.py:1438 +#: order/models.py:1439 msgid "Order cannot be completed as there are incomplete line items" msgstr "Η παραγγελία δεν μπορεί να ολοκληρωθεί καθώς υπάρχουν μη ολοκληρωμένες γραμμές" -#: order/models.py:1733 order/models.py:1749 +#: order/models.py:1734 order/models.py:1750 msgid "The order is locked and cannot be modified" msgstr "Η παραγγελία είναι κλειδωμένη και δεν μπορεί να τροποποιηθεί" -#: order/models.py:1757 +#: order/models.py:1758 msgid "Item quantity" msgstr "Ποσότητα είδους" -#: order/models.py:1774 +#: order/models.py:1775 msgid "Line item reference" msgstr "Αναφορά γραμμής" -#: order/models.py:1781 +#: order/models.py:1782 msgid "Line item notes" msgstr "Σημειώσεις γραμμής" -#: order/models.py:1796 +#: order/models.py:1797 msgid "Target date for this line item (leave blank to use the target date from the order)" msgstr "Ημερομηνία στόχος για αυτή τη γραμμή (αφήστε κενό για χρήση της ημερομηνίας στόχου από την παραγγελία)" -#: order/models.py:1826 +#: order/models.py:1827 msgid "Line item description (optional)" msgstr "Περιγραφή γραμμής (προαιρετικά)" -#: order/models.py:1833 +#: order/models.py:1834 msgid "Additional context for this line" msgstr "Πρόσθετο πλαίσιο για αυτή τη γραμμή" -#: order/models.py:1843 +#: order/models.py:1844 msgid "Unit price" msgstr "Τιμή μονάδας" -#: order/models.py:1862 +#: order/models.py:1863 msgid "Purchase Order Line Item" msgstr "Γραμμή εντολής αγοράς" -#: order/models.py:1889 +#: order/models.py:1890 msgid "Supplier part must match supplier" msgstr "Το προϊόν προμηθευτή πρέπει να ταιριάζει με τον προμηθευτή" -#: order/models.py:1894 +#: order/models.py:1895 msgid "Build order must be marked as external" msgstr "Η εντολή παραγωγής πρέπει να έχει σημειωθεί ως εξωτερική" -#: order/models.py:1901 +#: order/models.py:1902 msgid "Build orders can only be linked to assembly parts" msgstr "Οι εντολές παραγωγής μπορούν να συνδεθούν μόνο με προϊόντα συναρμολόγησης" -#: order/models.py:1907 +#: order/models.py:1908 msgid "Build order part must match line item part" msgstr "Το προϊόν της εντολής παραγωγής πρέπει να ταιριάζει με το προϊόν της γραμμής" -#: order/models.py:1942 +#: order/models.py:1943 msgid "Supplier part" msgstr "Προϊόν προμηθευτή" -#: order/models.py:1949 +#: order/models.py:1950 msgid "Received" msgstr "Παραλήφθηκε" -#: order/models.py:1950 +#: order/models.py:1951 msgid "Number of items received" msgstr "Αριθμός ειδών που παραλήφθηκαν" -#: order/models.py:1958 stock/models.py:1201 stock/serializers.py:637 +#: order/models.py:1959 stock/models.py:1201 stock/serializers.py:637 msgid "Purchase Price" msgstr "Τιμή αγοράς" -#: order/models.py:1959 +#: order/models.py:1960 msgid "Unit purchase price" msgstr "Τιμή μονάδας αγοράς" -#: order/models.py:1975 +#: order/models.py:1976 msgid "External Build Order to be fulfilled by this line item" msgstr "Εξωτερική εντολή παραγωγής που θα καλυφθεί από αυτή τη γραμμή" -#: order/models.py:2038 +#: order/models.py:2039 msgid "Purchase Order Extra Line" msgstr "Επιπλέον γραμμή εντολής αγοράς" -#: order/models.py:2067 +#: order/models.py:2068 msgid "Sales Order Line Item" msgstr "Γραμμή εντολής πώλησης" -#: order/models.py:2092 +#: order/models.py:2093 msgid "Only salable parts can be assigned to a sales order" msgstr "Μόνο πωλήσιμα προϊόντα μπορούν να αντιστοιχιστούν σε εντολή πώλησης" -#: order/models.py:2118 +#: order/models.py:2119 msgid "Sale Price" msgstr "Τιμή πώλησης" -#: order/models.py:2119 +#: order/models.py:2120 msgid "Unit sale price" msgstr "Τιμή μονάδας πώλησης" -#: order/models.py:2128 order/status_codes.py:50 +#: order/models.py:2129 order/status_codes.py:50 msgid "Shipped" msgstr "Αποστάλθηκε" -#: order/models.py:2129 +#: order/models.py:2130 msgid "Shipped quantity" msgstr "Ποσότητα που αποστάλθηκε" -#: order/models.py:2240 +#: order/models.py:2241 msgid "Sales Order Shipment" msgstr "Αποστολή εντολής πώλησης" -#: order/models.py:2253 +#: order/models.py:2254 msgid "Shipment address must match the customer" msgstr "Η διεύθυνση αποστολής πρέπει να αντιστοιχεί στον πελάτη" -#: order/models.py:2289 +#: order/models.py:2290 msgid "Shipping address for this shipment" msgstr "Διεύθυνση αποστολής για αυτή την αποστολή" -#: order/models.py:2297 +#: order/models.py:2298 msgid "Date of shipment" msgstr "Ημερομηνία αποστολής" -#: order/models.py:2303 +#: order/models.py:2304 msgid "Delivery Date" msgstr "Ημερομηνία παράδοσης" -#: order/models.py:2304 +#: order/models.py:2305 msgid "Date of delivery of shipment" msgstr "Ημερομηνία παράδοσης της αποστολής" -#: order/models.py:2312 +#: order/models.py:2313 msgid "Checked By" msgstr "Έλεγχος από" -#: order/models.py:2313 +#: order/models.py:2314 msgid "User who checked this shipment" msgstr "Χρήστης που έλεγξε αυτή την αποστολή" -#: order/models.py:2320 order/models.py:2574 order/serializers.py:1711 -#: order/serializers.py:1835 +#: order/models.py:2321 order/models.py:2575 order/serializers.py:1725 +#: order/serializers.py:1849 #: report/templates/report/inventree_sales_order_shipment_report.html:14 msgid "Shipment" msgstr "Αποστολή" -#: order/models.py:2321 +#: order/models.py:2322 msgid "Shipment number" msgstr "Αριθμός αποστολής" -#: order/models.py:2329 +#: order/models.py:2330 msgid "Tracking Number" msgstr "Αριθμός παρακολούθησης" -#: order/models.py:2330 +#: order/models.py:2331 msgid "Shipment tracking information" msgstr "Πληροφορίες παρακολούθησης αποστολής" -#: order/models.py:2337 +#: order/models.py:2338 msgid "Invoice Number" msgstr "Αριθμός τιμολογίου" -#: order/models.py:2338 +#: order/models.py:2339 msgid "Reference number for associated invoice" msgstr "Αριθμός αναφοράς του σχετικού τιμολογίου" -#: order/models.py:2377 +#: order/models.py:2378 msgid "Shipment has already been sent" msgstr "Η αποστολή έχει ήδη σταλεί" -#: order/models.py:2380 +#: order/models.py:2381 msgid "Shipment has no allocated stock items" msgstr "Η αποστολή δεν έχει δεσμευμένα είδη αποθέματος" -#: order/models.py:2387 +#: order/models.py:2388 msgid "Shipment must be checked before it can be completed" msgstr "Η αποστολή πρέπει να ελεγχθεί πριν μπορέσει να ολοκληρωθεί" -#: order/models.py:2466 +#: order/models.py:2467 msgid "Sales Order Extra Line" msgstr "Επιπλέον γραμμή εντολής πώλησης" -#: order/models.py:2495 +#: order/models.py:2496 msgid "Sales Order Allocation" msgstr "Δέσμευση αποθέματος εντολής πώλησης" -#: order/models.py:2518 order/models.py:2520 +#: order/models.py:2519 order/models.py:2521 msgid "Stock item has not been assigned" msgstr "Δεν έχει αντιστοιχιστεί είδος αποθέματος" -#: order/models.py:2527 +#: order/models.py:2528 msgid "Cannot allocate stock item to a line with a different part" msgstr "Δεν είναι δυνατή η δέσμευση είδους αποθέματος σε γραμμή με διαφορετικό προϊόν" -#: order/models.py:2530 +#: order/models.py:2531 msgid "Cannot allocate stock to a line without a part" msgstr "Δεν είναι δυνατή η δέσμευση αποθέματος σε γραμμή χωρίς προϊόν" -#: order/models.py:2533 +#: order/models.py:2534 msgid "Allocation quantity cannot exceed stock quantity" msgstr "Η ποσότητα δέσμευσης δεν μπορεί να υπερβαίνει την ποσότητα αποθέματος" -#: order/models.py:2552 order/serializers.py:1581 +#: order/models.py:2553 order/serializers.py:1595 msgid "Quantity must be 1 for serialized stock item" msgstr "Η ποσότητα πρέπει να είναι 1 για σειριοποιημένο είδος αποθέματος" -#: order/models.py:2555 +#: order/models.py:2556 msgid "Sales order does not match shipment" msgstr "Η εντολή πώλησης δεν αντιστοιχεί στην αποστολή" -#: order/models.py:2556 plugin/base/barcodes/api.py:642 +#: order/models.py:2557 plugin/base/barcodes/api.py:642 msgid "Shipment does not match sales order" msgstr "Η αποστολή δεν αντιστοιχεί στην εντολή πώλησης" -#: order/models.py:2564 +#: order/models.py:2565 msgid "Line" msgstr "Γραμμή" -#: order/models.py:2575 +#: order/models.py:2576 msgid "Sales order shipment reference" msgstr "Αναφορά αποστολής εντολής πώλησης" -#: order/models.py:2588 order/models.py:3007 +#: order/models.py:2589 order/models.py:3008 msgid "Item" msgstr "Είδος" -#: order/models.py:2589 +#: order/models.py:2590 msgid "Select stock item to allocate" msgstr "Επιλογή είδους αποθέματος προς δέσμευση" -#: order/models.py:2598 +#: order/models.py:2599 msgid "Enter stock allocation quantity" msgstr "Εισαγωγή ποσότητας δέσμευσης αποθέματος" -#: order/models.py:2713 +#: order/models.py:2714 msgid "Return Order reference" msgstr "Αναφορά εντολής επιστροφής" -#: order/models.py:2725 +#: order/models.py:2726 msgid "Company from which items are being returned" msgstr "Εταιρεία από την οποία επιστρέφονται τα είδη" -#: order/models.py:2738 +#: order/models.py:2739 msgid "Return order status" msgstr "Κατάσταση εντολής επιστροφής" -#: order/models.py:2965 +#: order/models.py:2966 msgid "Return Order Line Item" msgstr "Γραμμή εντολής επιστροφής" -#: order/models.py:2978 +#: order/models.py:2979 msgid "Stock item must be specified" msgstr "Πρέπει να καθοριστεί είδος αποθέματος" -#: order/models.py:2982 +#: order/models.py:2983 msgid "Return quantity exceeds stock quantity" msgstr "Η ποσότητα επιστροφής υπερβαίνει την ποσότητα αποθέματος" -#: order/models.py:2987 +#: order/models.py:2988 msgid "Return quantity must be greater than zero" msgstr "Η ποσότητα επιστροφής πρέπει να είναι μεγαλύτερη από το μηδέν" -#: order/models.py:2992 +#: order/models.py:2993 msgid "Invalid quantity for serialized stock item" msgstr "Μη έγκυρη ποσότητα για σειριοποιημένο είδος αποθέματος" -#: order/models.py:3008 +#: order/models.py:3009 msgid "Select item to return from customer" msgstr "Επιλογή είδους προς επιστροφή από τον πελάτη" -#: order/models.py:3023 +#: order/models.py:3024 msgid "Received Date" msgstr "Ημερομηνία παραλαβής" -#: order/models.py:3024 +#: order/models.py:3025 msgid "The date this this return item was received" msgstr "Η ημερομηνία κατά την οποία παραλήφθηκε αυτό το επιστρεφόμενο είδος" -#: order/models.py:3036 +#: order/models.py:3037 msgid "Outcome" msgstr "Έκβαση" -#: order/models.py:3037 +#: order/models.py:3038 msgid "Outcome for this line item" msgstr "Έκβαση για αυτή τη γραμμή" -#: order/models.py:3044 +#: order/models.py:3045 msgid "Cost associated with return or repair for this line item" msgstr "Κόστος που σχετίζεται με την επιστροφή ή επισκευή για αυτή τη γραμμή" -#: order/models.py:3054 +#: order/models.py:3055 msgid "Return Order Extra Line" msgstr "Επιπλέον γραμμή εντολής επιστροφής" -#: order/serializers.py:91 +#: order/serializers.py:92 msgid "Order ID" msgstr "ID παραγγελίας" -#: order/serializers.py:91 +#: order/serializers.py:92 msgid "ID of the order to duplicate" msgstr "ID της παραγγελίας προς αντιγραφή" -#: order/serializers.py:97 +#: order/serializers.py:98 msgid "Copy Lines" msgstr "Αντιγραφή γραμμών" -#: order/serializers.py:98 +#: order/serializers.py:99 msgid "Copy line items from the original order" msgstr "Αντιγραφή γραμμών από την αρχική παραγγελία" -#: order/serializers.py:104 +#: order/serializers.py:105 msgid "Copy Extra Lines" msgstr "Αντιγραφή επιπλέον γραμμών" -#: order/serializers.py:105 +#: order/serializers.py:106 msgid "Copy extra line items from the original order" msgstr "Αντιγραφή επιπλέον γραμμών από την αρχική παραγγελία" -#: order/serializers.py:120 +#: order/serializers.py:121 #: report/templates/report/inventree_purchase_order_report.html:29 #: report/templates/report/inventree_return_order_report.html:19 #: report/templates/report/inventree_sales_order_report.html:22 msgid "Line Items" msgstr "Γραμμές" -#: order/serializers.py:125 +#: order/serializers.py:126 msgid "Completed Lines" msgstr "Ολοκληρωμένες γραμμές" -#: order/serializers.py:192 +#: order/serializers.py:199 msgid "Duplicate Order" msgstr "Αντιγραφή παραγγελίας" -#: order/serializers.py:193 +#: order/serializers.py:200 msgid "Specify options for duplicating this order" msgstr "Καθορίστε επιλογές για την αντιγραφή αυτής της παραγγελίας" -#: order/serializers.py:270 +#: order/serializers.py:278 msgid "Invalid order ID" msgstr "Μη έγκυρο ID παραγγελίας" -#: order/serializers.py:466 +#: order/serializers.py:477 msgid "Supplier Name" msgstr "Όνομα προμηθευτή" -#: order/serializers.py:510 +#: order/serializers.py:521 msgid "Order cannot be cancelled" msgstr "Η παραγγελία δεν μπορεί να ακυρωθεί" -#: order/serializers.py:525 order/serializers.py:1602 +#: order/serializers.py:536 order/serializers.py:1616 msgid "Allow order to be closed with incomplete line items" msgstr "Να επιτρέπεται το κλείσιμο της παραγγελίας με μη ολοκληρωμένες γραμμές" -#: order/serializers.py:535 order/serializers.py:1612 +#: order/serializers.py:546 order/serializers.py:1626 msgid "Order has incomplete line items" msgstr "Η παραγγελία έχει μη ολοκληρωμένες γραμμές" -#: order/serializers.py:665 +#: order/serializers.py:676 msgid "Order is not open" msgstr "Η παραγγελία δεν είναι ανοικτή" -#: order/serializers.py:692 +#: order/serializers.py:703 msgid "Auto Pricing" msgstr "Αυτόματη τιμολόγηση" -#: order/serializers.py:694 +#: order/serializers.py:705 msgid "Automatically calculate purchase price based on supplier part data" msgstr "Αυτόματος υπολογισμός τιμής αγοράς βάσει των δεδομένων προϊόντος προμηθευτή" -#: order/serializers.py:704 +#: order/serializers.py:715 msgid "Purchase price currency" msgstr "Νόμισμα τιμής αγοράς" -#: order/serializers.py:718 +#: order/serializers.py:729 msgid "Merge Items" msgstr "Συγχώνευση ειδών" -#: order/serializers.py:720 +#: order/serializers.py:731 msgid "Merge items with the same part, destination and target date into one line item" msgstr "Συγχώνευση ειδών με το ίδιο προϊόν, προορισμό και ημερομηνία στόχο σε μία γραμμή" -#: order/serializers.py:727 part/serializers.py:560 +#: order/serializers.py:738 part/serializers.py:471 msgid "SKU" msgstr "SKU" -#: order/serializers.py:741 part/models.py:1089 part/serializers.py:372 +#: order/serializers.py:752 part/models.py:1177 part/serializers.py:337 msgid "Internal Part Number" msgstr "Εσωτερικός κωδικός προϊόντος" -#: order/serializers.py:749 +#: order/serializers.py:760 msgid "Internal Part Name" msgstr "Εσωτερική ονομασία προϊόντος" -#: order/serializers.py:765 +#: order/serializers.py:776 msgid "Supplier part must be specified" msgstr "Πρέπει να καθοριστεί προϊόν προμηθευτή" -#: order/serializers.py:768 +#: order/serializers.py:779 msgid "Purchase order must be specified" msgstr "Πρέπει να καθοριστεί εντολή αγοράς" -#: order/serializers.py:776 +#: order/serializers.py:787 msgid "Supplier must match purchase order" msgstr "Ο προμηθευτής πρέπει να ταιριάζει με την εντολή αγοράς" -#: order/serializers.py:777 +#: order/serializers.py:788 msgid "Purchase order must match supplier" msgstr "Η εντολή αγοράς πρέπει να ταιριάζει με τον προμηθευτή" -#: order/serializers.py:825 order/serializers.py:1682 +#: order/serializers.py:836 order/serializers.py:1696 msgid "Line Item" msgstr "Γραμμή" -#: order/serializers.py:834 order/serializers.py:974 order/serializers.py:2043 +#: order/serializers.py:845 order/serializers.py:985 order/serializers.py:2060 msgid "Select destination location for received items" msgstr "Επιλογή τοποθεσίας προορισμού για τα παραληφθέντα είδη" -#: order/serializers.py:850 +#: order/serializers.py:861 msgid "Enter batch code for incoming stock items" msgstr "Εισαγάγετε κωδικό παρτίδας για τα εισερχόμενα είδη αποθέματος" -#: order/serializers.py:857 stock/models.py:1160 +#: order/serializers.py:868 stock/models.py:1160 #: templates/email/stale_stock_notification.html:22 users/models.py:137 msgid "Expiry Date" msgstr "Ημερομηνία λήξης" -#: order/serializers.py:858 +#: order/serializers.py:869 msgid "Enter expiry date for incoming stock items" msgstr "Εισαγάγετε ημερομηνία λήξης για τα εισερχόμενα είδη αποθέματος" -#: order/serializers.py:866 +#: order/serializers.py:877 msgid "Enter serial numbers for incoming stock items" msgstr "Εισαγάγετε σειριακούς αριθμούς για τα εισερχόμενα είδη αποθέματος" -#: order/serializers.py:876 +#: order/serializers.py:887 msgid "Override packaging information for incoming stock items" msgstr "Παράκαμψη πληροφοριών συσκευασίας για τα εισερχόμενα είδη αποθέματος" -#: order/serializers.py:884 order/serializers.py:2048 +#: order/serializers.py:895 order/serializers.py:2065 msgid "Additional note for incoming stock items" msgstr "Πρόσθετη σημείωση για τα εισερχόμενα είδη αποθέματος" -#: order/serializers.py:891 +#: order/serializers.py:902 msgid "Barcode" msgstr "Barcode" -#: order/serializers.py:892 +#: order/serializers.py:903 msgid "Scanned barcode" msgstr "Σαρωμένο barcode" -#: order/serializers.py:908 +#: order/serializers.py:919 msgid "Barcode is already in use" msgstr "Το barcode χρησιμοποιείται ήδη" -#: order/serializers.py:991 order/serializers.py:2067 +#: order/serializers.py:1002 order/serializers.py:2084 msgid "Line items must be provided" msgstr "Πρέπει να δοθούν γραμμές" -#: order/serializers.py:1010 +#: order/serializers.py:1021 msgid "Destination location must be specified" msgstr "Πρέπει να καθοριστεί τοποθεσία προορισμού" -#: order/serializers.py:1017 +#: order/serializers.py:1028 msgid "Supplied barcode values must be unique" msgstr "Οι δοθείσες τιμές barcode πρέπει να είναι μοναδικές" -#: order/serializers.py:1121 +#: order/serializers.py:1135 msgid "Shipments" msgstr "Αποστολές" -#: order/serializers.py:1125 +#: order/serializers.py:1139 msgid "Completed Shipments" msgstr "Ολοκληρωμένες αποστολές" -#: order/serializers.py:1293 +#: order/serializers.py:1307 msgid "Sale price currency" msgstr "Νόμισμα τιμής πώλησης" -#: order/serializers.py:1339 +#: order/serializers.py:1353 msgid "Allocated Items" msgstr "Δεσμευμένα είδη" -#: order/serializers.py:1484 +#: order/serializers.py:1498 msgid "No shipment details provided" msgstr "Δεν δόθηκαν λεπτομέρειες αποστολής" -#: order/serializers.py:1545 order/serializers.py:1691 +#: order/serializers.py:1559 order/serializers.py:1705 msgid "Line item is not associated with this order" msgstr "Η γραμμή δεν συνδέεται με αυτή την παραγγελία" -#: order/serializers.py:1564 +#: order/serializers.py:1578 msgid "Quantity must be positive" msgstr "Η ποσότητα πρέπει να είναι θετική" -#: order/serializers.py:1701 +#: order/serializers.py:1715 msgid "Enter serial numbers to allocate" msgstr "Εισαγάγετε σειριακούς αριθμούς προς δέσμευση" -#: order/serializers.py:1723 order/serializers.py:1843 +#: order/serializers.py:1737 order/serializers.py:1857 msgid "Shipment has already been shipped" msgstr "Η αποστολή έχει ήδη σταλεί" -#: order/serializers.py:1726 order/serializers.py:1846 +#: order/serializers.py:1740 order/serializers.py:1860 msgid "Shipment is not associated with this order" msgstr "Η αποστολή δεν συνδέεται με αυτή την παραγγελία" -#: order/serializers.py:1781 +#: order/serializers.py:1795 msgid "No match found for the following serial numbers" msgstr "Δεν βρέθηκε αντιστοίχιση για τους παρακάτω σειριακούς αριθμούς" -#: order/serializers.py:1788 +#: order/serializers.py:1802 msgid "The following serial numbers are unavailable" msgstr "Οι παρακάτω σειριακοί αριθμοί δεν είναι διαθέσιμοι" -#: order/serializers.py:2009 +#: order/serializers.py:2026 msgid "Return order line item" msgstr "Γραμμή εντολής επιστροφής" -#: order/serializers.py:2019 +#: order/serializers.py:2036 msgid "Line item does not match return order" msgstr "Η γραμμή δεν αντιστοιχεί στην εντολή επιστροφής" -#: order/serializers.py:2022 +#: order/serializers.py:2039 msgid "Line item has already been received" msgstr "Η γραμμή έχει ήδη παραληφθεί" -#: order/serializers.py:2059 +#: order/serializers.py:2076 msgid "Items can only be received against orders which are in progress" msgstr "Είδη μπορούν να παραληφθούν μόνο για παραγγελίες που είναι σε εξέλιξη" -#: order/serializers.py:2124 +#: order/serializers.py:2141 msgid "Quantity to return" msgstr "Ποσότητα προς επιστροφή" -#: order/serializers.py:2140 +#: order/serializers.py:2157 msgid "Line price currency" msgstr "Νόμισμα τιμής γραμμής" @@ -5431,1190 +5559,1109 @@ msgstr "Εκπρόθεσμη εντολή επιστροφής" msgid "Return order {ro} is now overdue" msgstr "Η εντολή επιστροφής {ro} είναι πλέον εκπρόθεσμη" -#: part/api.py:108 +#: part/api.py:103 msgid "Starred" msgstr "Με αστέρι" -#: part/api.py:110 +#: part/api.py:105 msgid "Filter by starred categories" msgstr "Φιλτράρισμα κατά κατηγορίες με αστέρι" -#: part/api.py:127 stock/api.py:288 +#: part/api.py:122 stock/api.py:288 msgid "Depth" msgstr "Βάθος" -#: part/api.py:127 +#: part/api.py:122 msgid "Filter by category depth" msgstr "Φιλτράρισμα κατά βάθος κατηγορίας" -#: part/api.py:145 stock/api.py:306 +#: part/api.py:140 stock/api.py:306 msgid "Top Level" msgstr "Ανώτατο επίπεδο" -#: part/api.py:147 +#: part/api.py:142 msgid "Filter by top-level categories" msgstr "Φιλτράρισμα κατά κατηγορίες ανώτατου επιπέδου" -#: part/api.py:160 stock/api.py:321 +#: part/api.py:155 stock/api.py:321 msgid "Cascade" msgstr "Κατά κληρονομικότητα" -#: part/api.py:162 +#: part/api.py:157 msgid "Include sub-categories in filtered results" msgstr "Συμπερίληψη υποκατηγοριών στα φιλτραρισμένα αποτελέσματα" -#: part/api.py:182 +#: part/api.py:177 msgid "Parent" msgstr "Γονική" -#: part/api.py:184 +#: part/api.py:179 msgid "Filter by parent category" msgstr "Φιλτράρισμα κατά γονική κατηγορία" -#: part/api.py:219 +#: part/api.py:214 msgid "Exclude sub-categories under the specified category" msgstr "Εξαίρεση υποκατηγοριών κάτω από την καθορισμένη κατηγορία" -#: part/api.py:445 +#: part/api.py:440 msgid "Has Results" msgstr "Έχει αποτελέσματα" -#: part/api.py:666 +#: part/api.py:661 msgid "Is Variant" msgstr "Είναι παραλλαγή" -#: part/api.py:674 +#: part/api.py:669 msgid "Is Revision" msgstr "Είναι αναθεώρηση" -#: part/api.py:684 +#: part/api.py:679 msgid "Has Revisions" msgstr "Έχει αναθεωρήσεις" -#: part/api.py:865 +#: part/api.py:860 msgid "BOM Valid" msgstr "Έγκυρο BOM" -#: part/api.py:974 +#: part/api.py:969 msgid "Cascade Categories" msgstr "Κατηγορίες κατά κληρονομικότητα" -#: part/api.py:975 +#: part/api.py:970 msgid "If true, include items in child categories of the given category" msgstr "Αν είναι αληθές, συμπεριλαμβάνονται είδη σε θυγατρικές κατηγορίες της δοσμένης κατηγορίας" -#: part/api.py:981 +#: part/api.py:976 msgid "Filter by numeric category ID or the literal 'null'" msgstr "Φιλτράρισμα κατά αριθμητικό ID κατηγορίας ή τη λέξη 'null'" -#: part/api.py:1533 +#: part/api.py:1258 msgid "Assembly part is testable" msgstr "Το προϊόν συναρμολόγησης είναι υπό δοκιμή" -#: part/api.py:1542 +#: part/api.py:1267 msgid "Component part is testable" msgstr "Το προϊόν Προϊόντος είναι υπό δοκιμή" -#: part/api.py:1611 +#: part/api.py:1336 msgid "Uses" msgstr "Χρήσεις" -#: part/models.py:96 part/models.py:4163 +#: part/models.py:93 part/models.py:436 #: templates/email/part_event_notification.html:16 msgid "Part Category" msgstr "Κατηγορία προϊόντος" -#: part/models.py:97 users/ruleset.py:27 +#: part/models.py:94 users/ruleset.py:27 msgid "Part Categories" msgstr "Κατηγορίες προϊόντων" -#: part/models.py:115 part/models.py:1125 +#: part/models.py:112 part/models.py:1213 msgid "Default Location" msgstr "Προεπιλεγμένη τοποθεσία" -#: part/models.py:116 +#: part/models.py:113 msgid "Default location for parts in this category" msgstr "Προεπιλεγμένη τοποθεσία για προϊόντα σε αυτή την κατηγορία" -#: part/models.py:121 stock/models.py:216 +#: part/models.py:118 stock/models.py:216 msgid "Structural" msgstr "Δομική" -#: part/models.py:123 +#: part/models.py:120 msgid "Parts may not be directly assigned to a structural category, but may be assigned to child categories." msgstr "Τα προϊόντα δεν μπορούν να αντιστοιχιστούν απευθείας σε δομική κατηγορία, αλλά μπορούν να αντιστοιχιστούν σε θυγατρικές κατηγορίες." -#: part/models.py:132 +#: part/models.py:129 msgid "Default keywords" msgstr "Προεπιλεγμένες λέξεις-κλειδιά" -#: part/models.py:133 +#: part/models.py:130 msgid "Default keywords for parts in this category" msgstr "Προεπιλεγμένες λέξεις-κλειδιά για προϊόντα σε αυτή την κατηγορία" -#: part/models.py:140 stock/models.py:97 stock/models.py:198 +#: part/models.py:137 stock/models.py:97 stock/models.py:198 msgid "Icon" msgstr "Εικονίδιο" -#: part/models.py:141 part/serializers.py:148 part/serializers.py:167 +#: part/models.py:138 part/serializers.py:147 part/serializers.py:166 #: stock/models.py:199 msgid "Icon (optional)" msgstr "Εικονίδιο (προαιρετικό)" -#: part/models.py:185 +#: part/models.py:182 msgid "You cannot make this part category structural because some parts are already assigned to it!" msgstr "Δεν μπορείτε να κάνετε αυτή την κατηγορία προϊόντων δομική επειδή κάποια προϊόντα έχουν ήδη αντιστοιχιστεί σε αυτή!" -#: part/models.py:473 part/serializers.py:119 part/serializers.py:310 -#: users/ruleset.py:28 +#: part/models.py:392 +msgid "Part Category Parameter Template" +msgstr "Πρότυπο παραμέτρου κατηγορίας προϊόντος" + +#: part/models.py:448 +msgid "Default Value" +msgstr "Προεπιλεγμένη τιμή" + +#: part/models.py:449 +msgid "Default Parameter Value" +msgstr "Προεπιλεγμένη τιμή παραμέτρου" + +#: part/models.py:551 part/serializers.py:118 users/ruleset.py:28 msgid "Parts" msgstr "Προϊόντα" -#: part/models.py:525 +#: part/models.py:597 +msgid "Cannot delete parameters of a locked part" +msgstr "" + +#: part/models.py:602 +msgid "Cannot modify parameters of a locked part" +msgstr "" + +#: part/models.py:613 msgid "Cannot delete this part as it is locked" msgstr "Δεν είναι δυνατή η διαγραφή αυτού του προϊόντος επειδή είναι κλειδωμένο" -#: part/models.py:528 +#: part/models.py:616 msgid "Cannot delete this part as it is still active" msgstr "Δεν είναι δυνατή η διαγραφή αυτού του προϊόντος επειδή είναι ακόμη ενεργό" -#: part/models.py:533 +#: part/models.py:621 msgid "Cannot delete this part as it is used in an assembly" msgstr "Δεν είναι δυνατή η διαγραφή αυτού του προϊόντος επειδή χρησιμοποιείται σε συναρμολόγηση" -#: part/models.py:616 part/models.py:623 +#: part/models.py:704 part/models.py:711 #, python-brace-format msgid "Part '{self}' cannot be used in BOM for '{parent}' (recursive)" msgstr "Το προϊόν '{self}' δεν μπορεί να χρησιμοποιηθεί στο BOM για '{parent}' (αναδρομικά)" -#: part/models.py:635 +#: part/models.py:723 #, python-brace-format msgid "Part '{parent}' is used in BOM for '{self}' (recursive)" msgstr "Το προϊόν '{parent}' χρησιμοποιείται στο BOM για '{self}' (αναδρομικά)" -#: part/models.py:702 +#: part/models.py:790 #, python-brace-format msgid "IPN must match regex pattern {pattern}" msgstr "Το IPN πρέπει να ταιριάζει με το πρότυπο regex {pattern}" -#: part/models.py:710 +#: part/models.py:798 msgid "Part cannot be a revision of itself" msgstr "Το προϊόν δεν μπορεί να είναι αναθεώρηση του εαυτού του" -#: part/models.py:717 +#: part/models.py:805 msgid "Cannot make a revision of a part which is already a revision" msgstr "Δεν μπορεί να γίνει αναθεώρηση προϊόντος που είναι ήδη αναθεώρηση" -#: part/models.py:724 +#: part/models.py:812 msgid "Revision code must be specified" msgstr "Πρέπει να καθοριστεί κωδικός αναθεώρησης" -#: part/models.py:731 +#: part/models.py:819 msgid "Revisions are only allowed for assembly parts" msgstr "Οι αναθεωρήσεις επιτρέπονται μόνο για προϊόντα συναρμολόγησης" -#: part/models.py:738 +#: part/models.py:826 msgid "Cannot make a revision of a template part" msgstr "Δεν μπορεί να γίνει αναθεώρηση προϊόντος προτύπου" -#: part/models.py:744 +#: part/models.py:832 msgid "Parent part must point to the same template" msgstr "Το γονικό προϊόν πρέπει να αντιστοιχεί στο ίδιο πρότυπο" -#: part/models.py:841 +#: part/models.py:929 msgid "Stock item with this serial number already exists" msgstr "Υπάρχει ήδη είδος αποθέματος με αυτόν τον σειριακό αριθμό" -#: part/models.py:971 +#: part/models.py:1059 msgid "Duplicate IPN not allowed in part settings" msgstr "Δεν επιτρέπεται διπλό IPN στις ρυθμίσεις προϊόντος" -#: part/models.py:983 +#: part/models.py:1071 msgid "Duplicate part revision already exists." msgstr "Υπάρχει ήδη διπλή αναθεώρηση προϊόντος." -#: part/models.py:992 +#: part/models.py:1080 msgid "Part with this Name, IPN and Revision already exists." msgstr "Υπάρχει ήδη προϊόν με αυτό το όνομα, IPN και αναθεώρηση." -#: part/models.py:1007 +#: part/models.py:1095 msgid "Parts cannot be assigned to structural part categories!" msgstr "Τα προϊόντα δεν μπορούν να αντιστοιχιστούν σε δομικές κατηγορίες προϊόντων!" -#: part/models.py:1039 +#: part/models.py:1127 msgid "Part name" msgstr "Όνομα προϊόντος" -#: part/models.py:1044 +#: part/models.py:1132 msgid "Is Template" msgstr "Είναι πρότυπο" -#: part/models.py:1045 +#: part/models.py:1133 msgid "Is this part a template part?" msgstr "Είναι αυτό το προϊόν προϊόν προτύπου;" -#: part/models.py:1055 +#: part/models.py:1143 msgid "Is this part a variant of another part?" msgstr "Είναι αυτό το προϊόν παραλλαγή άλλου προϊόντος;" -#: part/models.py:1056 +#: part/models.py:1144 msgid "Variant Of" msgstr "Παραλλαγή του" -#: part/models.py:1063 +#: part/models.py:1151 msgid "Part description (optional)" msgstr "Περιγραφή προϊόντος (προαιρετικά)" -#: part/models.py:1070 +#: part/models.py:1158 msgid "Keywords" msgstr "Λέξεις-κλειδιά" -#: part/models.py:1071 +#: part/models.py:1159 msgid "Part keywords to improve visibility in search results" msgstr "Λέξεις-κλειδιά προϊόντος για βελτίωση της ορατότητας στα αποτελέσματα αναζήτησης" -#: part/models.py:1081 +#: part/models.py:1169 msgid "Part category" msgstr "Κατηγορία προϊόντος" -#: part/models.py:1088 part/serializers.py:929 +#: part/models.py:1176 part/serializers.py:814 #: report/templates/report/inventree_stock_location_report.html:103 msgid "IPN" msgstr "IPN" -#: part/models.py:1096 +#: part/models.py:1184 msgid "Part revision or version number" msgstr "Αριθμός αναθεώρησης ή έκδοσης προϊόντος" -#: part/models.py:1097 report/models.py:228 +#: part/models.py:1185 report/models.py:228 msgid "Revision" msgstr "Αναθεώρηση" -#: part/models.py:1106 +#: part/models.py:1194 msgid "Is this part a revision of another part?" msgstr "Είναι αυτό το προϊόν αναθεώρηση άλλου προϊόντος;" -#: part/models.py:1107 +#: part/models.py:1195 msgid "Revision Of" msgstr "Αναθεώρηση του" -#: part/models.py:1123 +#: part/models.py:1211 msgid "Where is this item normally stored?" msgstr "Πού αποθηκεύεται συνήθως αυτό το είδος;" -#: part/models.py:1169 +#: part/models.py:1257 msgid "Default Supplier" msgstr "Προεπιλεγμένος προμηθευτής" -#: part/models.py:1170 +#: part/models.py:1258 msgid "Default supplier part" msgstr "Προεπιλεγμένο προϊόν προμηθευτή" -#: part/models.py:1177 +#: part/models.py:1265 msgid "Default Expiry" msgstr "Προεπιλεγμένη λήξη" -#: part/models.py:1178 +#: part/models.py:1266 msgid "Expiry time (in days) for stock items of this part" msgstr "Χρόνος λήξης (σε ημέρες) για είδη αποθέματος αυτού του προϊόντος" -#: part/models.py:1186 part/serializers.py:1003 +#: part/models.py:1274 part/serializers.py:888 msgid "Minimum Stock" msgstr "Ελάχιστο απόθεμα" -#: part/models.py:1187 +#: part/models.py:1275 msgid "Minimum allowed stock level" msgstr "Ελάχιστο επιτρεπτό επίπεδο αποθέματος" -#: part/models.py:1196 +#: part/models.py:1284 msgid "Units of measure for this part" msgstr "Μονάδες μέτρησης για αυτό το προϊόν" -#: part/models.py:1203 +#: part/models.py:1291 msgid "Can this part be built from other parts?" msgstr "Μπορεί αυτό το προϊόν να κατασκευαστεί από άλλα προϊόντα;" -#: part/models.py:1209 +#: part/models.py:1297 msgid "Can this part be used to build other parts?" msgstr "Μπορεί αυτό το προϊόν να χρησιμοποιηθεί για την κατασκευή άλλων προϊόντων;" -#: part/models.py:1215 +#: part/models.py:1303 msgid "Does this part have tracking for unique items?" msgstr "Έχει αυτό το προϊόν ιχνηλάτηση για μοναδικά είδη;" -#: part/models.py:1221 +#: part/models.py:1309 msgid "Can this part have test results recorded against it?" msgstr "Μπορούν να καταχωρηθούν αποτελέσματα δοκιμών για αυτό το προϊόν;" -#: part/models.py:1227 +#: part/models.py:1315 msgid "Can this part be purchased from external suppliers?" msgstr "Μπορεί αυτό το προϊόν να αγοραστεί από εξωτερικούς προμηθευτές;" -#: part/models.py:1233 +#: part/models.py:1321 msgid "Can this part be sold to customers?" msgstr "Μπορεί αυτό το προϊόν να πωληθεί σε πελάτες;" -#: part/models.py:1237 +#: part/models.py:1325 msgid "Is this part active?" msgstr "Είναι αυτό το προϊόν ενεργό;" -#: part/models.py:1243 +#: part/models.py:1331 msgid "Locked parts cannot be edited" msgstr "Κλειδωμένα προϊόντα δεν μπορούν να τροποποιηθούν" -#: part/models.py:1249 +#: part/models.py:1337 msgid "Is this a virtual part, such as a software product or license?" msgstr "Είναι αυτό ένα εικονικό προϊόν, όπως προϊόν λογισμικού ή άδεια;" -#: part/models.py:1254 +#: part/models.py:1342 msgid "BOM Validated" msgstr "Το BOM έχει επικυρωθεί" -#: part/models.py:1255 +#: part/models.py:1343 msgid "Is the BOM for this part valid?" msgstr "Είναι το BOM για αυτό το προϊόν έγκυρο;" -#: part/models.py:1261 +#: part/models.py:1349 msgid "BOM checksum" msgstr "Άθροισμα ελέγχου BOM" -#: part/models.py:1262 +#: part/models.py:1350 msgid "Stored BOM checksum" msgstr "Αποθηκευμένο άθροισμα ελέγχου BOM" -#: part/models.py:1270 +#: part/models.py:1358 msgid "BOM checked by" msgstr "Έλεγχος BOM από" -#: part/models.py:1275 +#: part/models.py:1363 msgid "BOM checked date" msgstr "Ημερομηνία ελέγχου BOM" -#: part/models.py:1291 +#: part/models.py:1379 msgid "Creation User" msgstr "Χρήστης δημιουργίας" -#: part/models.py:1301 +#: part/models.py:1389 msgid "Owner responsible for this part" msgstr "Ιδιοκτήτης υπεύθυνος για αυτό το προϊόν" -#: part/models.py:2258 +#: part/models.py:2346 msgid "Sell multiple" msgstr "Πώληση πολλαπλάσιων" -#: part/models.py:3286 +#: part/models.py:3350 msgid "Currency used to cache pricing calculations" msgstr "Νόμισμα που χρησιμοποιείται για την προσωρινή αποθήκευση υπολογισμών τιμολόγησης" -#: part/models.py:3302 +#: part/models.py:3366 msgid "Minimum BOM Cost" msgstr "Ελάχιστο κόστος BOM" -#: part/models.py:3303 +#: part/models.py:3367 msgid "Minimum cost of component parts" msgstr "Ελάχιστο κόστος προϊόντων Προϊόντων" -#: part/models.py:3309 +#: part/models.py:3373 msgid "Maximum BOM Cost" msgstr "Μέγιστο κόστος BOM" -#: part/models.py:3310 +#: part/models.py:3374 msgid "Maximum cost of component parts" msgstr "Μέγιστο κόστος προϊόντων Προϊόντων" -#: part/models.py:3316 +#: part/models.py:3380 msgid "Minimum Purchase Cost" msgstr "Ελάχιστο κόστος αγοράς" -#: part/models.py:3317 +#: part/models.py:3381 msgid "Minimum historical purchase cost" msgstr "Ελάχιστο ιστορικό κόστος αγοράς" -#: part/models.py:3323 +#: part/models.py:3387 msgid "Maximum Purchase Cost" msgstr "Μέγιστο κόστος αγοράς" -#: part/models.py:3324 +#: part/models.py:3388 msgid "Maximum historical purchase cost" msgstr "Μέγιστο ιστορικό κόστος αγοράς" -#: part/models.py:3330 +#: part/models.py:3394 msgid "Minimum Internal Price" msgstr "Ελάχιστη εσωτερική τιμή" -#: part/models.py:3331 +#: part/models.py:3395 msgid "Minimum cost based on internal price breaks" msgstr "Ελάχιστο κόστος βάσει εσωτερικών κλιμακωτών τιμών" -#: part/models.py:3337 +#: part/models.py:3401 msgid "Maximum Internal Price" msgstr "Μέγιστη εσωτερική τιμή" -#: part/models.py:3338 +#: part/models.py:3402 msgid "Maximum cost based on internal price breaks" msgstr "Μέγιστο κόστος βάσει εσωτερικών κλιμακωτών τιμών" -#: part/models.py:3344 +#: part/models.py:3408 msgid "Minimum Supplier Price" msgstr "Ελάχιστη τιμή προμηθευτή" -#: part/models.py:3345 +#: part/models.py:3409 msgid "Minimum price of part from external suppliers" msgstr "Ελάχιστη τιμή προϊόντος από εξωτερικούς προμηθευτές" -#: part/models.py:3351 +#: part/models.py:3415 msgid "Maximum Supplier Price" msgstr "Μέγιστη τιμή προμηθευτή" -#: part/models.py:3352 +#: part/models.py:3416 msgid "Maximum price of part from external suppliers" msgstr "Μέγιστη τιμή προϊόντος από εξωτερικούς προμηθευτές" -#: part/models.py:3358 +#: part/models.py:3422 msgid "Minimum Variant Cost" msgstr "Ελάχιστο κόστος παραλλαγής" -#: part/models.py:3359 +#: part/models.py:3423 msgid "Calculated minimum cost of variant parts" msgstr "Υπολογισμένο ελάχιστο κόστος προϊόντων παραλλαγών" -#: part/models.py:3365 +#: part/models.py:3429 msgid "Maximum Variant Cost" msgstr "Μέγιστο κόστος παραλλαγής" -#: part/models.py:3366 +#: part/models.py:3430 msgid "Calculated maximum cost of variant parts" msgstr "Υπολογισμένο μέγιστο κόστος προϊόντων παραλλαγών" -#: part/models.py:3372 part/models.py:3386 +#: part/models.py:3436 part/models.py:3450 msgid "Minimum Cost" msgstr "Ελάχιστο κόστος" -#: part/models.py:3373 +#: part/models.py:3437 msgid "Override minimum cost" msgstr "Παράκαμψη ελάχιστου κόστους" -#: part/models.py:3379 part/models.py:3393 +#: part/models.py:3443 part/models.py:3457 msgid "Maximum Cost" msgstr "Μέγιστο κόστος" -#: part/models.py:3380 +#: part/models.py:3444 msgid "Override maximum cost" msgstr "Παράκαμψη μέγιστου κόστους" -#: part/models.py:3387 +#: part/models.py:3451 msgid "Calculated overall minimum cost" msgstr "Υπολογισμένο συνολικό ελάχιστο κόστος" -#: part/models.py:3394 +#: part/models.py:3458 msgid "Calculated overall maximum cost" msgstr "Υπολογισμένο συνολικό μέγιστο κόστος" -#: part/models.py:3400 +#: part/models.py:3464 msgid "Minimum Sale Price" msgstr "Ελάχιστη τιμή πώλησης" -#: part/models.py:3401 +#: part/models.py:3465 msgid "Minimum sale price based on price breaks" msgstr "Ελάχιστη τιμή πώλησης βάσει κλιμακωτών τιμών" -#: part/models.py:3407 +#: part/models.py:3471 msgid "Maximum Sale Price" msgstr "Μέγιστη τιμή πώλησης" -#: part/models.py:3408 +#: part/models.py:3472 msgid "Maximum sale price based on price breaks" msgstr "Μέγιστη τιμή πώλησης βάσει κλιμακωτών τιμών" -#: part/models.py:3414 +#: part/models.py:3478 msgid "Minimum Sale Cost" msgstr "Ελάχιστο κόστος πώλησης" -#: part/models.py:3415 +#: part/models.py:3479 msgid "Minimum historical sale price" msgstr "Ελάχιστη ιστορική τιμή πώλησης" -#: part/models.py:3421 +#: part/models.py:3485 msgid "Maximum Sale Cost" msgstr "Μέγιστο κόστος πώλησης" -#: part/models.py:3422 +#: part/models.py:3486 msgid "Maximum historical sale price" msgstr "Μέγιστη ιστορική τιμή πώλησης" -#: part/models.py:3440 +#: part/models.py:3504 msgid "Part for stocktake" msgstr "Προϊόν για απογραφή" -#: part/models.py:3445 +#: part/models.py:3509 msgid "Item Count" msgstr "Αριθμός ειδών" -#: part/models.py:3446 +#: part/models.py:3510 msgid "Number of individual stock entries at time of stocktake" msgstr "Αριθμός μεμονωμένων εγγραφών αποθέματος κατά τον χρόνο απογραφής" -#: part/models.py:3454 +#: part/models.py:3518 msgid "Total available stock at time of stocktake" msgstr "Συνολικό διαθέσιμο απόθεμα κατά τον χρόνο απογραφής" -#: part/models.py:3458 report/templates/report/inventree_test_report.html:106 +#: part/models.py:3522 report/templates/report/inventree_test_report.html:106 msgid "Date" msgstr "Ημερομηνία" -#: part/models.py:3459 +#: part/models.py:3523 msgid "Date stocktake was performed" msgstr "Ημερομηνία που πραγματοποιήθηκε η απογραφή" -#: part/models.py:3466 +#: part/models.py:3530 msgid "Minimum Stock Cost" msgstr "Ελάχιστο κόστος αποθέματος" -#: part/models.py:3467 +#: part/models.py:3531 msgid "Estimated minimum cost of stock on hand" msgstr "Εκτιμώμενο ελάχιστο κόστος αποθέματος σε διαθεσιμότητα" -#: part/models.py:3473 +#: part/models.py:3537 msgid "Maximum Stock Cost" msgstr "Μέγιστο κόστος αποθέματος" -#: part/models.py:3474 +#: part/models.py:3538 msgid "Estimated maximum cost of stock on hand" msgstr "Εκτιμώμενο μέγιστο κόστος αποθέματος σε διαθεσιμότητα" -#: part/models.py:3484 +#: part/models.py:3548 msgid "Part Sale Price Break" msgstr "Κλιμακωτή τιμή πώλησης προϊόντος" -#: part/models.py:3596 +#: part/models.py:3660 msgid "Part Test Template" msgstr "Πρότυπο δοκιμής προϊόντος" -#: part/models.py:3622 +#: part/models.py:3686 msgid "Invalid template name - must include at least one alphanumeric character" msgstr "Μη έγκυρο όνομα προτύπου - πρέπει να περιλαμβάνει τουλάχιστον έναν αλφαριθμητικό χαρακτήρα" -#: part/models.py:3643 part/models.py:3816 -msgid "Choices must be unique" -msgstr "Οι επιλογές πρέπει να είναι μοναδικές" - -#: part/models.py:3654 +#: part/models.py:3718 msgid "Test templates can only be created for testable parts" msgstr "Πρότυπα δοκιμών μπορούν να δημιουργηθούν μόνο για προϊόντα που είναι υπό δοκιμή" -#: part/models.py:3668 +#: part/models.py:3732 msgid "Test template with the same key already exists for part" msgstr "Υπάρχει ήδη πρότυπο δοκιμής με το ίδιο κλειδί για το προϊόν" -#: part/models.py:3685 +#: part/models.py:3749 msgid "Test Name" msgstr "Όνομα δοκιμής" -#: part/models.py:3686 +#: part/models.py:3750 msgid "Enter a name for the test" msgstr "Εισαγάγετε όνομα για τη δοκιμή" -#: part/models.py:3692 +#: part/models.py:3756 msgid "Test Key" msgstr "Κλειδί δοκιμής" -#: part/models.py:3693 +#: part/models.py:3757 msgid "Simplified key for the test" msgstr "Απλοποιημένο κλειδί για τη δοκιμή" -#: part/models.py:3700 +#: part/models.py:3764 msgid "Test Description" msgstr "Περιγραφή δοκιμής" -#: part/models.py:3701 +#: part/models.py:3765 msgid "Enter description for this test" msgstr "Εισαγάγετε περιγραφή για αυτή τη δοκιμή" -#: part/models.py:3705 report/models.py:287 -msgid "Enabled" -msgstr "Ενεργό" - -#: part/models.py:3705 +#: part/models.py:3769 msgid "Is this test enabled?" msgstr "Είναι αυτή η δοκιμή ενεργή;" -#: part/models.py:3710 +#: part/models.py:3774 msgid "Required" msgstr "Απαραίτητη" -#: part/models.py:3711 +#: part/models.py:3775 msgid "Is this test required to pass?" msgstr "Απαιτείται η επιτυχής ολοκλήρωση αυτής της δοκιμής;" -#: part/models.py:3716 +#: part/models.py:3780 msgid "Requires Value" msgstr "Απαιτεί τιμή" -#: part/models.py:3717 +#: part/models.py:3781 msgid "Does this test require a value when adding a test result?" msgstr "Απαιτεί αυτή η δοκιμή τιμή κατά την προσθήκη αποτελέσματος δοκιμής;" -#: part/models.py:3722 +#: part/models.py:3786 msgid "Requires Attachment" msgstr "Απαιτεί συνημμένο" -#: part/models.py:3724 +#: part/models.py:3788 msgid "Does this test require a file attachment when adding a test result?" msgstr "Απαιτεί αυτή η δοκιμή συνημμένο αρχείο κατά την προσθήκη αποτελέσματος δοκιμής;" -#: part/models.py:3730 part/models.py:3878 -msgid "Choices" -msgstr "Επιλογές" - -#: part/models.py:3731 +#: part/models.py:3795 msgid "Valid choices for this test (comma-separated)" msgstr "Έγκυρες επιλογές για αυτή τη δοκιμή (διαχωρισμένες με κόμμα)" -#: part/models.py:3764 -msgid "Part Parameter Template" -msgstr "Πρότυπο παραμέτρου προϊόντος" - -#: part/models.py:3791 -msgid "Checkbox parameters cannot have units" -msgstr "Οι παράμετροι τύπου checkbox δεν μπορούν να έχουν μονάδες" - -#: part/models.py:3796 -msgid "Checkbox parameters cannot have choices" -msgstr "Οι παράμετροι τύπου checkbox δεν μπορούν να έχουν επιλογές" - -#: part/models.py:3833 -msgid "Parameter template name must be unique" -msgstr "Το όνομα προτύπου παραμέτρου πρέπει να είναι μοναδικό" - -#: part/models.py:3851 -msgid "Parameter Name" -msgstr "Όνομα παραμέτρου" - -#: part/models.py:3858 -msgid "Physical units for this parameter" -msgstr "Φυσικές μονάδες για αυτή την παράμετρο" - -#: part/models.py:3866 -msgid "Parameter description" -msgstr "Περιγραφή παραμέτρου" - -#: part/models.py:3872 -msgid "Checkbox" -msgstr "Checkbox" - -#: part/models.py:3873 -msgid "Is this parameter a checkbox?" -msgstr "Είναι αυτή η παράμετρος τύπου checkbox;" - -#: part/models.py:3879 -msgid "Valid choices for this parameter (comma-separated)" -msgstr "Έγκυρες επιλογές για αυτή την παράμετρο (διαχωρισμένες με κόμμα)" - -#: part/models.py:3890 -msgid "Selection list for this parameter" -msgstr "Λίστα επιλογών για αυτή την παράμετρο" - -#: part/models.py:3932 -msgid "Part Parameter" -msgstr "Παράμετρος προϊόντος" - -#: part/models.py:3958 -msgid "Parameter cannot be modified - part is locked" -msgstr "Η παράμετρος δεν μπορεί να τροποποιηθεί - το προϊόν είναι κλειδωμένο" - -#: part/models.py:3996 -msgid "Invalid choice for parameter value" -msgstr "Μη έγκυρη επιλογή για την τιμή παραμέτρου" - -#: part/models.py:4047 -msgid "Parent Part" -msgstr "Γονικό προϊόν" - -#: part/models.py:4055 part/models.py:4170 part/models.py:4171 -msgid "Parameter Template" -msgstr "Πρότυπο παραμέτρου" - -#: part/models.py:4061 -msgid "Parameter Value" -msgstr "Τιμή παραμέτρου" - -#: part/models.py:4071 stock/serializers.py:718 -msgid "Optional note field" -msgstr "Προαιρετικό πεδίο σημείωσης" - -#: part/models.py:4118 -msgid "Part Category Parameter Template" -msgstr "Πρότυπο παραμέτρου κατηγορίας προϊόντος" - -#: part/models.py:4177 -msgid "Default Value" -msgstr "Προεπιλεγμένη τιμή" - -#: part/models.py:4178 -msgid "Default Parameter Value" -msgstr "Προεπιλεγμένη τιμή παραμέτρου" - -#: part/models.py:4352 +#: part/models.py:3977 msgid "BOM item cannot be modified - assembly is locked" msgstr "Το στοιχείο BOM δεν μπορεί να τροποποιηθεί - η συναρμολόγηση είναι κλειδωμένη" -#: part/models.py:4359 +#: part/models.py:3984 msgid "BOM item cannot be modified - variant assembly is locked" msgstr "Το στοιχείο BOM δεν μπορεί να τροποποιηθεί - η συναρμολόγηση παραλλαγής είναι κλειδωμένη" -#: part/models.py:4369 +#: part/models.py:3994 msgid "Select parent part" msgstr "Επιλέξτε γονικό προϊόν" -#: part/models.py:4379 +#: part/models.py:4004 msgid "Sub part" msgstr "Υποπροϊόν" -#: part/models.py:4380 +#: part/models.py:4005 msgid "Select part to be used in BOM" msgstr "Επιλέξτε προϊόν που θα χρησιμοποιηθεί στο BOM" -#: part/models.py:4391 +#: part/models.py:4016 msgid "BOM quantity for this BOM item" msgstr "Ποσότητα BOM για αυτό το στοιχείο BOM" -#: part/models.py:4397 +#: part/models.py:4022 msgid "This BOM item is optional" msgstr "Αυτό το στοιχείο BOM είναι προαιρετικό" -#: part/models.py:4403 +#: part/models.py:4028 msgid "This BOM item is consumable (it is not tracked in build orders)" msgstr "Αυτό το στοιχείο BOM είναι αναλώσιμο (δεν παρακολουθείται στις εντολές παραγωγής)" -#: part/models.py:4411 +#: part/models.py:4036 msgid "Setup Quantity" msgstr "Ποσότητα ρύθμισης" -#: part/models.py:4412 +#: part/models.py:4037 msgid "Extra required quantity for a build, to account for setup losses" msgstr "Επιπλέον απαιτούμενη ποσότητα για μια παραγωγή, για να ληφθούν υπόψη οι απώλειες ρύθμισης" -#: part/models.py:4420 +#: part/models.py:4045 msgid "Attrition" msgstr "Φθορά" -#: part/models.py:4422 +#: part/models.py:4047 msgid "Estimated attrition for a build, expressed as a percentage (0-100)" msgstr "Εκτιμώμενη φθορά για μια παραγωγή, εκφρασμένη ως ποσοστό (0-100)" -#: part/models.py:4433 +#: part/models.py:4058 msgid "Rounding Multiple" msgstr "Πολλαπλάσιο στρογγυλοποίησης" -#: part/models.py:4435 +#: part/models.py:4060 msgid "Round up required production quantity to nearest multiple of this value" msgstr "Στρογγυλοποίηση προς τα πάνω της απαιτούμενης ποσότητας παραγωγής στο πλησιέστερο πολλαπλάσιο αυτής της τιμής" -#: part/models.py:4443 +#: part/models.py:4068 msgid "BOM item reference" msgstr "Αναφορά στοιχείου BOM" -#: part/models.py:4451 +#: part/models.py:4076 msgid "BOM item notes" msgstr "Σημειώσεις στοιχείου BOM" -#: part/models.py:4457 +#: part/models.py:4082 msgid "Checksum" msgstr "Άθροισμα ελέγχου" -#: part/models.py:4458 +#: part/models.py:4083 msgid "BOM line checksum" msgstr "Άθροισμα ελέγχου γραμμής BOM" -#: part/models.py:4463 +#: part/models.py:4088 msgid "Validated" msgstr "Επικυρωμένο" -#: part/models.py:4464 +#: part/models.py:4089 msgid "This BOM item has been validated" msgstr "Αυτό το στοιχείο BOM έχει επικυρωθεί" -#: part/models.py:4469 +#: part/models.py:4094 msgid "Gets inherited" msgstr "Κληρονομείται" -#: part/models.py:4470 +#: part/models.py:4095 msgid "This BOM item is inherited by BOMs for variant parts" msgstr "Αυτό το στοιχείο BOM κληρονομείται από τα BOM για προϊόντα παραλλαγών" -#: part/models.py:4476 +#: part/models.py:4101 msgid "Stock items for variant parts can be used for this BOM item" msgstr "Είδη αποθέματος για προϊόντα παραλλαγών μπορούν να χρησιμοποιηθούν για αυτό το στοιχείο BOM" -#: part/models.py:4583 stock/models.py:925 +#: part/models.py:4208 stock/models.py:925 msgid "Quantity must be integer value for trackable parts" msgstr "Η ποσότητα πρέπει να είναι ακέραια τιμή για προϊόντα με ιχνηλάτηση" -#: part/models.py:4593 part/models.py:4595 +#: part/models.py:4218 part/models.py:4220 msgid "Sub part must be specified" msgstr "Πρέπει να καθοριστεί υποπροϊόν" -#: part/models.py:4746 +#: part/models.py:4371 msgid "BOM Item Substitute" msgstr "Εναλλακτικό στοιχείο BOM" -#: part/models.py:4767 +#: part/models.py:4392 msgid "Substitute part cannot be the same as the master part" msgstr "Το εναλλακτικό προϊόν δεν μπορεί να είναι το ίδιο με το κύριο προϊόν" -#: part/models.py:4780 +#: part/models.py:4405 msgid "Parent BOM item" msgstr "Γονικό στοιχείο BOM" -#: part/models.py:4788 +#: part/models.py:4413 msgid "Substitute part" msgstr "Εναλλακτικό προϊόν" -#: part/models.py:4804 +#: part/models.py:4429 msgid "Part 1" msgstr "Προϊόν 1" -#: part/models.py:4812 +#: part/models.py:4437 msgid "Part 2" msgstr "Προϊόν 2" -#: part/models.py:4813 +#: part/models.py:4438 msgid "Select Related Part" msgstr "Επιλέξτε σχετικό προϊόν" -#: part/models.py:4820 +#: part/models.py:4445 msgid "Note for this relationship" msgstr "Σημείωση για αυτή τη σχέση" -#: part/models.py:4839 +#: part/models.py:4464 msgid "Part relationship cannot be created between a part and itself" msgstr "Δεν μπορεί να δημιουργηθεί σχέση προϊόντος μεταξύ ενός προϊόντος και του εαυτού του" -#: part/models.py:4844 +#: part/models.py:4469 msgid "Duplicate relationship already exists" msgstr "Υπάρχει ήδη διπλή σχέση" -#: part/serializers.py:114 +#: part/serializers.py:113 msgid "Parent Category" msgstr "Γονική κατηγορία" -#: part/serializers.py:115 +#: part/serializers.py:114 msgid "Parent part category" msgstr "Γονική κατηγορία προϊόντος" -#: part/serializers.py:123 part/serializers.py:164 +#: part/serializers.py:122 part/serializers.py:163 msgid "Subcategories" msgstr "Υποκατηγορίες" -#: part/serializers.py:203 +#: part/serializers.py:202 msgid "Results" msgstr "Αποτελέσματα" -#: part/serializers.py:204 +#: part/serializers.py:203 msgid "Number of results recorded against this template" msgstr "Αριθμός αποτελεσμάτων που έχουν καταγραφεί για αυτό το πρότυπο" -#: part/serializers.py:235 part/serializers.py:253 stock/serializers.py:643 +#: part/serializers.py:234 part/serializers.py:252 stock/serializers.py:643 msgid "Purchase currency of this stock item" msgstr "Νόμισμα αγοράς για αυτό το είδος αποθέματος" -#: part/serializers.py:280 +#: part/serializers.py:279 msgid "File is not an image" msgstr "Το αρχείο δεν είναι εικόνα" -#: part/serializers.py:311 -msgid "Number of parts using this template" -msgstr "Αριθμός προϊόντων που χρησιμοποιούν αυτό το πρότυπο" - -#: part/serializers.py:471 +#: part/serializers.py:382 msgid "Original Part" msgstr "Αρχικό προϊόν" -#: part/serializers.py:472 +#: part/serializers.py:383 msgid "Select original part to duplicate" msgstr "Επιλέξτε αρχικό προϊόν για αντιγραφή" -#: part/serializers.py:477 +#: part/serializers.py:388 msgid "Copy Image" msgstr "Αντιγραφή εικόνας" -#: part/serializers.py:478 +#: part/serializers.py:389 msgid "Copy image from original part" msgstr "Αντιγραφή εικόνας από το αρχικό προϊόν" -#: part/serializers.py:484 +#: part/serializers.py:395 msgid "Copy BOM" msgstr "Αντιγραφή BOM" -#: part/serializers.py:485 +#: part/serializers.py:396 msgid "Copy bill of materials from original part" msgstr "Αντιγραφή λίστας υλικών (BOM) από το αρχικό προϊόν" -#: part/serializers.py:491 +#: part/serializers.py:402 msgid "Copy Parameters" msgstr "Αντιγραφή παραμέτρων" -#: part/serializers.py:492 +#: part/serializers.py:403 msgid "Copy parameter data from original part" msgstr "Αντιγραφή δεδομένων παραμέτρων από το αρχικό προϊόν" -#: part/serializers.py:498 +#: part/serializers.py:409 msgid "Copy Notes" msgstr "Αντιγραφή σημειώσεων" -#: part/serializers.py:499 +#: part/serializers.py:410 msgid "Copy notes from original part" msgstr "Αντιγραφή σημειώσεων από το αρχικό προϊόν" -#: part/serializers.py:505 +#: part/serializers.py:416 msgid "Copy Tests" msgstr "Αντιγραφή δοκιμών" -#: part/serializers.py:506 +#: part/serializers.py:417 msgid "Copy test templates from original part" msgstr "Αντιγραφή προτύπων δοκιμών από το αρχικό προϊόν" -#: part/serializers.py:524 +#: part/serializers.py:435 msgid "Initial Stock Quantity" msgstr "Αρχική ποσότητα αποθέματος" -#: part/serializers.py:526 +#: part/serializers.py:437 msgid "Specify initial stock quantity for this Part. If quantity is zero, no stock is added." msgstr "Καθορίστε αρχική ποσότητα αποθέματος για αυτό το προϊόν. Αν η ποσότητα είναι μηδέν, δεν προστίθεται απόθεμα" -#: part/serializers.py:533 +#: part/serializers.py:444 msgid "Initial Stock Location" msgstr "Αρχική τοποθεσία αποθέματος" -#: part/serializers.py:534 +#: part/serializers.py:445 msgid "Specify initial stock location for this Part" msgstr "Καθορίστε αρχική τοποθεσία αποθέματος για αυτό το προϊόν" -#: part/serializers.py:551 +#: part/serializers.py:462 msgid "Select supplier (or leave blank to skip)" msgstr "Επιλέξτε προμηθευτή (ή αφήστε κενό για παράλειψη)" -#: part/serializers.py:567 +#: part/serializers.py:478 msgid "Select manufacturer (or leave blank to skip)" msgstr "Επιλέξτε κατασκευαστή (ή αφήστε κενό για παράλειψη)" -#: part/serializers.py:577 +#: part/serializers.py:488 msgid "Manufacturer part number" msgstr "Κωδικός προϊόντος κατασκευαστή" -#: part/serializers.py:584 +#: part/serializers.py:495 msgid "Selected company is not a valid supplier" msgstr "Η επιλεγμένη εταιρεία δεν είναι έγκυρος προμηθευτής" -#: part/serializers.py:593 +#: part/serializers.py:504 msgid "Selected company is not a valid manufacturer" msgstr "Η επιλεγμένη εταιρεία δεν είναι έγκυρος κατασκευαστής" -#: part/serializers.py:604 +#: part/serializers.py:515 msgid "Manufacturer part matching this MPN already exists" msgstr "Υπάρχει ήδη προϊόν κατασκευαστή με αυτό το MPN" -#: part/serializers.py:611 +#: part/serializers.py:522 msgid "Supplier part matching this SKU already exists" msgstr "Υπάρχει ήδη προϊόν προμηθευτή με αυτό το SKU" -#: part/serializers.py:914 +#: part/serializers.py:799 msgid "Category Name" msgstr "Όνομα κατηγορίας" -#: part/serializers.py:943 +#: part/serializers.py:828 msgid "Building" msgstr "Σε παραγωγή" -#: part/serializers.py:944 +#: part/serializers.py:829 msgid "Quantity of this part currently being in production" msgstr "Ποσότητα αυτού του προϊόντος που βρίσκεται αυτή τη στιγμή σε παραγωγή" -#: part/serializers.py:951 +#: part/serializers.py:836 msgid "Outstanding quantity of this part scheduled to be built" msgstr "Εκκρεμής ποσότητα αυτού του προϊόντος που έχει προγραμματιστεί για παραγωγή" -#: part/serializers.py:971 stock/serializers.py:1019 stock/serializers.py:1189 +#: part/serializers.py:856 stock/serializers.py:1019 stock/serializers.py:1189 #: users/ruleset.py:30 msgid "Stock Items" msgstr "Είδη αποθέματος" -#: part/serializers.py:975 +#: part/serializers.py:860 msgid "Revisions" msgstr "Αναθεωρήσεις" -#: part/serializers.py:979 +#: part/serializers.py:864 msgid "Suppliers" msgstr "Προμηθευτές" -#: part/serializers.py:983 part/serializers.py:1297 +#: part/serializers.py:868 part/serializers.py:1162 #: templates/email/low_stock_notification.html:16 #: templates/email/part_event_notification.html:17 msgid "Total Stock" msgstr "Συνολικό απόθεμα" -#: part/serializers.py:991 +#: part/serializers.py:876 msgid "Unallocated Stock" msgstr "Μη δεσμευμένο απόθεμα" -#: part/serializers.py:999 +#: part/serializers.py:884 msgid "Variant Stock" msgstr "Απόθεμα παραλλαγών" -#: part/serializers.py:1054 +#: part/serializers.py:943 msgid "Duplicate Part" msgstr "Αντιγραφή προϊόντος" -#: part/serializers.py:1055 +#: part/serializers.py:944 msgid "Copy initial data from another Part" msgstr "Αντιγραφή αρχικών δεδομένων από άλλο προϊόν" -#: part/serializers.py:1061 +#: part/serializers.py:950 msgid "Initial Stock" msgstr "Αρχικό απόθεμα" -#: part/serializers.py:1062 +#: part/serializers.py:951 msgid "Create Part with initial stock quantity" msgstr "Δημιουργία προϊόντος με αρχική ποσότητα αποθέματος" -#: part/serializers.py:1068 +#: part/serializers.py:957 msgid "Supplier Information" msgstr "Πληροφορίες προμηθευτή" -#: part/serializers.py:1069 +#: part/serializers.py:958 msgid "Add initial supplier information for this part" msgstr "Προσθήκη αρχικών πληροφοριών προμηθευτή για αυτό το προϊόν" -#: part/serializers.py:1077 +#: part/serializers.py:966 msgid "Copy Category Parameters" msgstr "Αντιγραφή παραμέτρων κατηγορίας" -#: part/serializers.py:1078 +#: part/serializers.py:967 msgid "Copy parameter templates from selected part category" msgstr "Αντιγραφή προτύπων παραμέτρων από την επιλεγμένη κατηγορία προϊόντος" -#: part/serializers.py:1083 +#: part/serializers.py:972 msgid "Existing Image" msgstr "Υπάρχουσα εικόνα" -#: part/serializers.py:1084 +#: part/serializers.py:973 msgid "Filename of an existing part image" msgstr "Όνομα αρχείου υπάρχουσας εικόνας προϊόντος" -#: part/serializers.py:1101 +#: part/serializers.py:990 msgid "Image file does not exist" msgstr "Το αρχείο εικόνας δεν υπάρχει" -#: part/serializers.py:1269 +#: part/serializers.py:1134 msgid "Validate entire Bill of Materials" msgstr "Επικύρωση ολόκληρης της λίστας υλικών (BOM)" -#: part/serializers.py:1303 part/serializers.py:1769 +#: part/serializers.py:1168 part/serializers.py:1634 msgid "Can Build" msgstr "Μπορεί να παραχθεί" -#: part/serializers.py:1320 +#: part/serializers.py:1185 msgid "Required for Build Orders" msgstr "Απαιτείται για εντολές παραγωγής" -#: part/serializers.py:1325 +#: part/serializers.py:1190 msgid "Allocated to Build Orders" msgstr "Δεσμευμένο σε εντολές παραγωγής" -#: part/serializers.py:1332 +#: part/serializers.py:1197 msgid "Required for Sales Orders" msgstr "Απαιτείται για εντολές πώλησης" -#: part/serializers.py:1336 +#: part/serializers.py:1201 msgid "Allocated to Sales Orders" msgstr "Δεσμευμένο σε εντολές πώλησης" -#: part/serializers.py:1475 +#: part/serializers.py:1340 msgid "Minimum Price" msgstr "Ελάχιστη τιμή" -#: part/serializers.py:1476 +#: part/serializers.py:1341 msgid "Override calculated value for minimum price" msgstr "Παράκαμψη υπολογισμένης τιμής για την ελάχιστη τιμή" -#: part/serializers.py:1483 +#: part/serializers.py:1348 msgid "Minimum price currency" msgstr "Νόμισμα ελάχιστης τιμής" -#: part/serializers.py:1490 +#: part/serializers.py:1355 msgid "Maximum Price" msgstr "Μέγιστη τιμή" -#: part/serializers.py:1491 +#: part/serializers.py:1356 msgid "Override calculated value for maximum price" msgstr "Παράκαμψη υπολογισμένης τιμής για τη μέγιστη τιμή" -#: part/serializers.py:1498 +#: part/serializers.py:1363 msgid "Maximum price currency" msgstr "Νόμισμα μέγιστης τιμής" -#: part/serializers.py:1527 +#: part/serializers.py:1392 msgid "Update" msgstr "Ενημέρωση" -#: part/serializers.py:1528 +#: part/serializers.py:1393 msgid "Update pricing for this part" msgstr "Ενημέρωση τιμολόγησης για αυτό το προϊόν" -#: part/serializers.py:1551 +#: part/serializers.py:1416 #, python-brace-format msgid "Could not convert from provided currencies to {default_currency}" msgstr "Δεν ήταν δυνατή η μετατροπή από τα δοθέντα νομίσματα σε {default_currency}" -#: part/serializers.py:1558 +#: part/serializers.py:1423 msgid "Minimum price must not be greater than maximum price" msgstr "Η ελάχιστη τιμή δεν πρέπει να είναι μεγαλύτερη από τη μέγιστη τιμή" -#: part/serializers.py:1561 +#: part/serializers.py:1426 msgid "Maximum price must not be less than minimum price" msgstr "Η μέγιστη τιμή δεν πρέπει να είναι μικρότερη από την ελάχιστη τιμή" -#: part/serializers.py:1715 +#: part/serializers.py:1580 msgid "Select the parent assembly" msgstr "Επιλέξτε τη γονική συναρμολόγηση" -#: part/serializers.py:1735 +#: part/serializers.py:1600 msgid "Select the component part" msgstr "Επιλέξτε το προϊόν Προϊόντος" -#: part/serializers.py:1929 +#: part/serializers.py:1802 msgid "Select part to copy BOM from" msgstr "Επιλέξτε προϊόν από το οποίο θα αντιγραφεί το BOM" -#: part/serializers.py:1937 +#: part/serializers.py:1810 msgid "Remove Existing Data" msgstr "Αφαίρεση υπαρχόντων δεδομένων" -#: part/serializers.py:1938 +#: part/serializers.py:1811 msgid "Remove existing BOM items before copying" msgstr "Αφαίρεση υπαρχόντων στοιχείων BOM πριν την αντιγραφή" -#: part/serializers.py:1943 +#: part/serializers.py:1816 msgid "Include Inherited" msgstr "Συμπερίληψη κληρονομημένων" -#: part/serializers.py:1944 +#: part/serializers.py:1817 msgid "Include BOM items which are inherited from templated parts" msgstr "Συμπερίληψη στοιχείων BOM που κληρονομούνται από προϊόντα προτύπων" -#: part/serializers.py:1949 +#: part/serializers.py:1822 msgid "Skip Invalid Rows" msgstr "Παράλειψη μη έγκυρων γραμμών" -#: part/serializers.py:1950 +#: part/serializers.py:1823 msgid "Enable this option to skip invalid rows" msgstr "Ενεργοποιήστε αυτή την επιλογή για να παραλείπονται οι μη έγκυρες γραμμές" -#: part/serializers.py:1955 +#: part/serializers.py:1828 msgid "Copy Substitute Parts" msgstr "Αντιγραφή εναλλακτικών προϊόντων" -#: part/serializers.py:1956 +#: part/serializers.py:1829 msgid "Copy substitute parts when duplicate BOM items" msgstr "Αντιγραφή εναλλακτικών προϊόντων κατά την αντιγραφή στοιχείων BOM" @@ -6927,7 +6974,7 @@ msgstr "Παρέχει εγγενή υποστήριξη για barcodes" #: plugin/builtin/events/auto_issue_orders.py:19 #: plugin/builtin/exporter/bom_exporter.py:73 #: plugin/builtin/exporter/inventree_exporter.py:17 -#: plugin/builtin/exporter/part_parameter_exporter.py:36 +#: plugin/builtin/exporter/parameter_exporter.py:32 #: plugin/builtin/exporter/stocktake_exporter.py:47 #: plugin/builtin/integration/core_notifications.py:25 #: plugin/builtin/integration/core_notifications.py:69 @@ -7041,23 +7088,19 @@ msgid "Include total quantity of each part in the BOM" msgstr "Συμπερίληψη συνολικής ποσότητας κάθε προϊόντος στο BOM" #: plugin/builtin/exporter/bom_exporter.py:35 -#: plugin/builtin/exporter/part_parameter_exporter.py:17 msgid "Stock Data" msgstr "Δεδομένα αποθέματος" #: plugin/builtin/exporter/bom_exporter.py:35 -#: plugin/builtin/exporter/part_parameter_exporter.py:17 msgid "Include part stock data" msgstr "Συμπερίληψη δεδομένων αποθέματος προϊόντος" #: plugin/builtin/exporter/bom_exporter.py:39 -#: plugin/builtin/exporter/part_parameter_exporter.py:21 #: plugin/builtin/exporter/stocktake_exporter.py:20 msgid "Pricing Data" msgstr "Δεδομένα τιμολόγησης" #: plugin/builtin/exporter/bom_exporter.py:39 -#: plugin/builtin/exporter/part_parameter_exporter.py:21 #: plugin/builtin/exporter/stocktake_exporter.py:20 msgid "Include part pricing data" msgstr "Συμπερίληψη δεδομένων τιμολόγησης προϊόντος" @@ -7144,13 +7187,21 @@ msgstr "Γενικός εξαγωγέας InvenTree" msgid "Provides support for exporting data from InvenTree" msgstr "Παρέχει υποστήριξη για εξαγωγή δεδομένων από το InvenTree" -#: plugin/builtin/exporter/part_parameter_exporter.py:33 -msgid "Part Parameter Exporter" -msgstr "Εξαγωγέας παραμέτρων προϊόντος" +#: plugin/builtin/exporter/parameter_exporter.py:16 +msgid "Exclude Inactive" +msgstr "" -#: plugin/builtin/exporter/part_parameter_exporter.py:34 -msgid "Exporter for part parameter data" -msgstr "Εξαγωγέας για δεδομένα παραμέτρων προϊόντος" +#: plugin/builtin/exporter/parameter_exporter.py:17 +msgid "Exclude parameters which are inactive" +msgstr "" + +#: plugin/builtin/exporter/parameter_exporter.py:29 +msgid "Parameter Exporter" +msgstr "" + +#: plugin/builtin/exporter/parameter_exporter.py:30 +msgid "Exporter for model parameter data" +msgstr "" #: plugin/builtin/exporter/stocktake_exporter.py:25 msgid "Include External Stock" @@ -8079,19 +8130,19 @@ msgstr "Χωρίς αποτέλεσμα (υποχρεωτικό)" msgid "No result" msgstr "Χωρίς αποτέλεσμα" -#: report/templatetags/report.py:167 +#: report/templatetags/report.py:169 msgid "Asset file does not exist" msgstr "Το αρχείο πόρου δεν υπάρχει" -#: report/templatetags/report.py:224 report/templatetags/report.py:300 +#: report/templatetags/report.py:226 report/templatetags/report.py:302 msgid "Image file not found" msgstr "Το αρχείο εικόνας δεν βρέθηκε" -#: report/templatetags/report.py:325 +#: report/templatetags/report.py:327 msgid "part_image tag requires a Part instance" msgstr "Το tag part_image απαιτεί μία παρουσία Aντικειμένου" -#: report/templatetags/report.py:362 +#: report/templatetags/report.py:383 msgid "company_image tag requires a Company instance" msgstr "Το tag company_image απαιτεί ένα Aντικειμένου Company" @@ -8455,115 +8506,119 @@ msgstr "Οι σειριακοί αριθμοί πρέπει να δοθούν ω msgid "Quantity does not match serial numbers" msgstr "Η ποσότητα δεν αντιστοιχεί στους σειριακούς αριθμούς" -#: stock/models.py:2012 stock/models.py:2917 +#: stock/models.py:1912 +msgid "Cannot assign stock to structural location" +msgstr "" + +#: stock/models.py:2029 stock/models.py:2934 msgid "Test template does not exist" msgstr "Το πρότυπο δοκιμής δεν υπάρχει" -#: stock/models.py:2030 +#: stock/models.py:2047 msgid "Stock item has been assigned to a sales order" msgstr "Το είδος αποθέματος έχει αντιστοιχιστεί σε εντολή πώλησης" -#: stock/models.py:2034 +#: stock/models.py:2051 msgid "Stock item is installed in another item" msgstr "Το είδος αποθέματος είναι εγκατεστημένο σε άλλο είδος" -#: stock/models.py:2037 +#: stock/models.py:2054 msgid "Stock item contains other items" msgstr "Το είδος αποθέματος περιέχει άλλα είδη" -#: stock/models.py:2040 +#: stock/models.py:2057 msgid "Stock item has been assigned to a customer" msgstr "Το είδος αποθέματος έχει αντιστοιχιστεί σε πελάτη" -#: stock/models.py:2043 stock/models.py:2226 +#: stock/models.py:2060 stock/models.py:2243 msgid "Stock item is currently in production" msgstr "Το είδος αποθέματος βρίσκεται αυτή τη στιγμή σε παραγωγή" -#: stock/models.py:2046 +#: stock/models.py:2063 msgid "Serialized stock cannot be merged" msgstr "Σειριακό απόθεμα δεν μπορεί να συγχωνευθεί" -#: stock/models.py:2053 stock/serializers.py:1462 +#: stock/models.py:2070 stock/serializers.py:1462 msgid "Duplicate stock items" msgstr "Διπλότυπα είδη αποθέματος" -#: stock/models.py:2057 +#: stock/models.py:2074 msgid "Stock items must refer to the same part" msgstr "Τα είδη αποθέματος πρέπει να αναφέρονται στο ίδιο προϊόν" -#: stock/models.py:2065 +#: stock/models.py:2082 msgid "Stock items must refer to the same supplier part" msgstr "Τα είδη αποθέματος πρέπει να αναφέρονται στο ίδιο προϊόν προμηθευτή" -#: stock/models.py:2070 +#: stock/models.py:2087 msgid "Stock status codes must match" msgstr "Οι κωδικοί κατάστασης αποθέματος πρέπει να ταιριάζουν" -#: stock/models.py:2349 +#: stock/models.py:2366 msgid "StockItem cannot be moved as it is not in stock" msgstr "Το StockItem δεν μπορεί να μετακινηθεί καθώς δεν βρίσκεται σε απόθεμα" -#: stock/models.py:2818 +#: stock/models.py:2835 msgid "Stock Item Tracking" msgstr "Ιχνηλάτηση είδους αποθέματος" -#: stock/models.py:2849 +#: stock/models.py:2866 msgid "Entry notes" msgstr "Σημειώσεις καταχώρησης" -#: stock/models.py:2889 +#: stock/models.py:2906 msgid "Stock Item Test Result" msgstr "Αποτέλεσμα δοκιμής είδους αποθέματος" -#: stock/models.py:2920 +#: stock/models.py:2937 msgid "Value must be provided for this test" msgstr "Πρέπει να δοθεί τιμή για αυτή τη δοκιμή" -#: stock/models.py:2924 +#: stock/models.py:2941 msgid "Attachment must be uploaded for this test" msgstr "Πρέπει να μεταφορτωθεί συνημμένο για αυτή τη δοκιμή" -#: stock/models.py:2929 +#: stock/models.py:2946 msgid "Invalid value for this test" msgstr "Μη έγκυρη τιμή για αυτή τη δοκιμή" -#: stock/models.py:2953 +#: stock/models.py:2970 msgid "Test result" msgstr "Αποτέλεσμα δοκιμής" -#: stock/models.py:2960 +#: stock/models.py:2977 msgid "Test output value" msgstr "Τιμή αποτελέσματος δοκιμής" -#: stock/models.py:2968 stock/serializers.py:248 +#: stock/models.py:2985 stock/serializers.py:248 msgid "Test result attachment" msgstr "Συνημμένο αποτελέσματος δοκιμής" -#: stock/models.py:2972 +#: stock/models.py:2989 msgid "Test notes" msgstr "Σημειώσεις δοκιμής" -#: stock/models.py:2980 +#: stock/models.py:2997 msgid "Test station" msgstr "Σταθμός δοκιμής" -#: stock/models.py:2981 +#: stock/models.py:2998 msgid "The identifier of the test station where the test was performed" msgstr "Ο αναγνωριστικός κωδικός του σταθμού δοκιμής όπου πραγματοποιήθηκε η δοκιμή" -#: stock/models.py:2987 +#: stock/models.py:3004 msgid "Started" msgstr "Έναρξη" -#: stock/models.py:2988 +#: stock/models.py:3005 msgid "The timestamp of the test start" msgstr "Χρονική σήμανση έναρξης της δοκιμής" -#: stock/models.py:2994 +#: stock/models.py:3011 msgid "Finished" msgstr "Ολοκλήρωση" -#: stock/models.py:2995 +#: stock/models.py:3012 msgid "The timestamp of the test finish" msgstr "Χρονική σήμανση λήξης της δοκιμής" @@ -8677,8 +8732,8 @@ msgstr "Δεν δόθηκε είδος αποθέματος" msgid "Quantity must not exceed available stock quantity ({q})" msgstr "Η ποσότητα δεν πρέπει να υπερβαίνει το διαθέσιμο απόθεμα ({q})" -#: stock/serializers.py:711 stock/serializers.py:1419 stock/serializers.py:1732 -#: stock/serializers.py:1781 +#: stock/serializers.py:711 stock/serializers.py:1419 stock/serializers.py:1740 +#: stock/serializers.py:1789 msgid "Destination stock location" msgstr "Τοποθεσία προορισμού αποθέματος" @@ -8834,19 +8889,19 @@ msgstr "Η ποσότητα δεν πρέπει να είναι αρνητική msgid "Stock transaction notes" msgstr "Σημειώσεις συναλλαγής αποθέματος" -#: stock/serializers.py:1787 +#: stock/serializers.py:1795 msgid "Merge into existing stock" msgstr "Συγχώνευση με υπάρχον απόθεμα" -#: stock/serializers.py:1788 +#: stock/serializers.py:1796 msgid "Merge returned items into existing stock items if possible" msgstr "Συγχώνευση επιστρεφόμενων ειδών με υπάρχοντα είδη αποθέματος, όπου είναι δυνατό" -#: stock/serializers.py:1831 +#: stock/serializers.py:1839 msgid "Next Serial Number" msgstr "Επόμενος σειριακός αριθμός" -#: stock/serializers.py:1837 +#: stock/serializers.py:1845 msgid "Previous Serial Number" msgstr "Προηγούμενος σειριακός αριθμός" @@ -8902,83 +8957,87 @@ msgstr "Προστέθηκε απόθεμα χειροκίνητα" msgid "Stock manually removed" msgstr "Αφαιρέθηκε απόθεμα χειροκίνητα" -#: stock/status_codes.py:57 +#: stock/status_codes.py:56 +msgid "Serialized stock items" +msgstr "" + +#: stock/status_codes.py:58 msgid "Returned to stock" msgstr "Επιστροφή στο απόθεμα" -#: stock/status_codes.py:60 +#: stock/status_codes.py:61 msgid "Location changed" msgstr "Η τοποθεσία τροποποιήθηκε" -#: stock/status_codes.py:61 +#: stock/status_codes.py:62 msgid "Stock updated" msgstr "Το απόθεμα ενημερώθηκε" -#: stock/status_codes.py:64 +#: stock/status_codes.py:65 msgid "Installed into assembly" msgstr "Εγκαταστάθηκε στη συναρμολόγηση" -#: stock/status_codes.py:65 +#: stock/status_codes.py:66 msgid "Removed from assembly" msgstr "Αφαιρέθηκε από τη συναρμολόγηση" -#: stock/status_codes.py:67 +#: stock/status_codes.py:68 msgid "Installed component item" msgstr "Εγκαταστάθηκε αντικείμενο" -#: stock/status_codes.py:68 +#: stock/status_codes.py:69 msgid "Removed component item" msgstr "Αφαιρέθηκε αντικείμενο" -#: stock/status_codes.py:71 +#: stock/status_codes.py:72 msgid "Split from parent item" msgstr "Έγινε διαχωρισμός από το γονεϊκό αρχείο" -#: stock/status_codes.py:72 +#: stock/status_codes.py:73 msgid "Split child item" msgstr "Διαχωρίστηκε θυγατρικό στοιχείο" -#: stock/status_codes.py:75 +#: stock/status_codes.py:76 msgid "Merged stock items" msgstr "Έγινε συγχώνευση αποθεμάτων" -#: stock/status_codes.py:78 +#: stock/status_codes.py:79 msgid "Converted to variant" msgstr "Μετατράπηκε σε παραλλαγή" -#: stock/status_codes.py:81 +#: stock/status_codes.py:82 msgid "Build order output created" msgstr "Δημιουργήθηκε η έξοδος παραγγελίας" -#: stock/status_codes.py:82 +#: stock/status_codes.py:83 msgid "Build order output completed" msgstr "Η έξοδος της σειράς κατασκευής ολοκληρώθηκε" -#: stock/status_codes.py:83 +#: stock/status_codes.py:84 msgid "Build order output rejected" msgstr "Η εντολή κατασκευής απορρίφθηκε" -#: stock/status_codes.py:84 +#: stock/status_codes.py:85 msgid "Consumed by build order" msgstr "Κατανάλωση με εντολή κατασκευής" -#: stock/status_codes.py:87 +#: stock/status_codes.py:88 msgid "Shipped against Sales Order" msgstr "Αποστολή έναντι Εντολής Πώλησης" -#: stock/status_codes.py:90 +#: stock/status_codes.py:91 msgid "Received against Purchase Order" msgstr "Λήφθηκε έναντι Εντολής Αγοράς" -#: stock/status_codes.py:93 +#: stock/status_codes.py:94 msgid "Returned against Return Order" msgstr "Επιστράφηκε έναντι Εντολής Αγοράς" -#: stock/status_codes.py:96 +#: stock/status_codes.py:97 msgid "Sent to customer" msgstr "Απεστάλη στον πελάτη" -#: stock/status_codes.py:97 +#: stock/status_codes.py:98 msgid "Returned from customer" msgstr "Επιστράφηκε από πελάτη" diff --git a/src/backend/InvenTree/locale/en/LC_MESSAGES/django.po b/src/backend/InvenTree/locale/en/LC_MESSAGES/django.po index f7d9f62550..911d3ac23c 100644 --- a/src/backend/InvenTree/locale/en/LC_MESSAGES/django.po +++ b/src/backend/InvenTree/locale/en/LC_MESSAGES/django.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-11-19 19:35+0000\n" +"POT-Creation-Date: 2025-12-07 07:33+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -58,7 +58,7 @@ msgstr "" msgid "This field must be unique." msgstr "" -#: InvenTree/api.py:775 +#: InvenTree/api.py:803 msgid "User does not have permission to view this model" msgstr "" @@ -82,22 +82,22 @@ msgstr "" msgid "The provided email domain is not approved." msgstr "" -#: InvenTree/conversion.py:166 +#: InvenTree/conversion.py:240 #, python-brace-format msgid "Invalid unit provided ({unit})" msgstr "" -#: InvenTree/conversion.py:183 +#: InvenTree/conversion.py:257 msgid "No value provided" msgstr "" -#: InvenTree/conversion.py:210 +#: InvenTree/conversion.py:284 #, python-brace-format msgid "Could not convert {original} to {unit}" msgstr "" -#: InvenTree/conversion.py:212 InvenTree/conversion.py:226 -#: InvenTree/helpers.py:597 order/models.py:720 order/models.py:1015 +#: InvenTree/conversion.py:286 InvenTree/conversion.py:300 +#: InvenTree/helpers.py:597 order/models.py:721 order/models.py:1016 msgid "Invalid quantity provided" msgstr "" @@ -113,11 +113,11 @@ msgstr "" msgid "Invalid decimal value" msgstr "" -#: InvenTree/fields.py:218 InvenTree/models.py:1067 build/serializers.py:509 -#: build/serializers.py:580 build/serializers.py:1788 company/models.py:857 -#: order/models.py:1780 +#: InvenTree/fields.py:218 InvenTree/models.py:1228 build/serializers.py:517 +#: build/serializers.py:588 build/serializers.py:1796 company/models.py:811 +#: order/models.py:1781 #: report/templates/report/inventree_build_order_report.html:172 -#: stock/models.py:2848 stock/models.py:2972 stock/serializers.py:717 +#: stock/models.py:2865 stock/models.py:2989 stock/serializers.py:717 #: stock/serializers.py:893 stock/serializers.py:1035 stock/serializers.py:1336 #: stock/serializers.py:1425 stock/serializers.py:1624 msgid "Notes" @@ -172,35 +172,35 @@ msgstr "" msgid "Data contains prohibited markdown content" msgstr "" -#: InvenTree/helpers_model.py:133 +#: InvenTree/helpers_model.py:134 msgid "Connection error" msgstr "" -#: InvenTree/helpers_model.py:138 InvenTree/helpers_model.py:145 +#: InvenTree/helpers_model.py:139 InvenTree/helpers_model.py:146 msgid "Server responded with invalid status code" msgstr "" -#: InvenTree/helpers_model.py:141 +#: InvenTree/helpers_model.py:142 msgid "Exception occurred" msgstr "" -#: InvenTree/helpers_model.py:151 +#: InvenTree/helpers_model.py:152 msgid "Server responded with invalid Content-Length value" msgstr "" -#: InvenTree/helpers_model.py:154 +#: InvenTree/helpers_model.py:155 msgid "Image size is too large" msgstr "" -#: InvenTree/helpers_model.py:166 +#: InvenTree/helpers_model.py:167 msgid "Image download exceeded maximum size" msgstr "" -#: InvenTree/helpers_model.py:171 +#: InvenTree/helpers_model.py:172 msgid "Remote server returned empty response" msgstr "" -#: InvenTree/helpers_model.py:179 +#: InvenTree/helpers_model.py:180 msgid "Supplied URL is not a valid image file" msgstr "" @@ -208,7 +208,7 @@ msgstr "" msgid "Log in to the app" msgstr "" -#: InvenTree/magic_login.py:41 company/models.py:172 users/serializers.py:198 +#: InvenTree/magic_login.py:41 company/models.py:173 users/serializers.py:198 msgid "Email" msgstr "" @@ -216,160 +216,176 @@ msgstr "" msgid "You must enable two-factor authentication before doing anything else." msgstr "" -#: InvenTree/models.py:111 +#: InvenTree/models.py:114 msgid "Error running plugin validation" msgstr "" -#: InvenTree/models.py:192 +#: InvenTree/models.py:195 msgid "Metadata must be a python dict object" msgstr "" -#: InvenTree/models.py:198 +#: InvenTree/models.py:201 msgid "Plugin Metadata" msgstr "" -#: InvenTree/models.py:199 +#: InvenTree/models.py:202 msgid "JSON metadata field, for use by external plugins" msgstr "" -#: InvenTree/models.py:382 +#: InvenTree/models.py:385 msgid "Improperly formatted pattern" msgstr "" -#: InvenTree/models.py:389 +#: InvenTree/models.py:392 msgid "Unknown format key specified" msgstr "" -#: InvenTree/models.py:395 +#: InvenTree/models.py:398 msgid "Missing required format key" msgstr "" -#: InvenTree/models.py:406 +#: InvenTree/models.py:409 msgid "Reference field cannot be empty" msgstr "" -#: InvenTree/models.py:414 +#: InvenTree/models.py:417 msgid "Reference must match required pattern" msgstr "" -#: InvenTree/models.py:445 +#: InvenTree/models.py:448 msgid "Reference number is too large" msgstr "" -#: InvenTree/models.py:743 +#: InvenTree/models.py:896 msgid "Invalid choice" msgstr "" -#: InvenTree/models.py:856 common/models.py:1410 common/models.py:1837 -#: common/models.py:2096 common/models.py:2221 common/serializers.py:535 -#: company/models.py:615 generic/states/serializers.py:20 machine/models.py:25 -#: part/models.py:1039 part/models.py:3850 plugin/models.py:54 +#: InvenTree/models.py:1017 common/models.py:1414 common/models.py:1841 +#: common/models.py:2102 common/models.py:2227 common/models.py:2494 +#: common/serializers.py:539 generic/states/serializers.py:20 +#: machine/models.py:25 part/models.py:1127 plugin/models.py:54 #: report/models.py:216 stock/models.py:84 msgid "Name" msgstr "" -#: InvenTree/models.py:862 build/models.py:252 common/models.py:171 -#: common/models.py:2228 common/models.py:2341 company/models.py:543 -#: company/models.py:848 order/models.py:442 order/models.py:1825 -#: part/models.py:1062 part/models.py:3865 report/models.py:222 +#: InvenTree/models.py:1023 build/models.py:253 common/models.py:175 +#: common/models.py:2234 common/models.py:2347 common/models.py:2509 +#: company/models.py:545 company/models.py:802 order/models.py:443 +#: order/models.py:1826 part/models.py:1150 report/models.py:222 #: report/models.py:815 report/models.py:841 #: report/templates/report/inventree_build_order_report.html:117 #: stock/models.py:90 msgid "Description" msgstr "" -#: InvenTree/models.py:863 stock/models.py:91 +#: InvenTree/models.py:1024 stock/models.py:91 msgid "Description (optional)" msgstr "" -#: InvenTree/models.py:878 common/models.py:2394 +#: InvenTree/models.py:1039 common/models.py:2815 msgid "Path" msgstr "" -#: InvenTree/models.py:983 +#: InvenTree/models.py:1144 msgid "Duplicate names cannot exist under the same parent" msgstr "" -#: InvenTree/models.py:1067 +#: InvenTree/models.py:1228 msgid "Markdown notes (optional)" msgstr "" -#: InvenTree/models.py:1098 +#: InvenTree/models.py:1259 msgid "Barcode Data" msgstr "" -#: InvenTree/models.py:1099 +#: InvenTree/models.py:1260 msgid "Third party barcode data" msgstr "" -#: InvenTree/models.py:1105 +#: InvenTree/models.py:1266 msgid "Barcode Hash" msgstr "" -#: InvenTree/models.py:1106 +#: InvenTree/models.py:1267 msgid "Unique hash of barcode data" msgstr "" -#: InvenTree/models.py:1187 +#: InvenTree/models.py:1348 msgid "Existing barcode found" msgstr "" -#: InvenTree/models.py:1269 +#: InvenTree/models.py:1430 msgid "Task Failure" msgstr "" -#: InvenTree/models.py:1270 +#: InvenTree/models.py:1431 #, python-brace-format msgid "Background worker task '{f}' failed after {n} attempts" msgstr "" -#: InvenTree/models.py:1297 +#: InvenTree/models.py:1458 msgid "Server Error" msgstr "" -#: InvenTree/models.py:1298 +#: InvenTree/models.py:1459 msgid "An error has been logged by the server." msgstr "" -#: InvenTree/models.py:1340 common/models.py:1748 +#: InvenTree/models.py:1501 common/models.py:1752 #: report/templates/report/inventree_bill_of_materials_report.html:126 #: report/templates/report/inventree_bill_of_materials_report.html:148 #: report/templates/report/inventree_return_order_report.html:35 msgid "Image" msgstr "" -#: InvenTree/serializers.py:253 part/models.py:4571 +#: InvenTree/serializers.py:255 part/models.py:4196 msgid "Must be a valid number" msgstr "" -#: InvenTree/serializers.py:295 company/models.py:214 part/models.py:3285 +#: InvenTree/serializers.py:297 company/models.py:215 part/models.py:3349 msgid "Currency" msgstr "" -#: InvenTree/serializers.py:298 part/serializers.py:1385 +#: InvenTree/serializers.py:300 part/serializers.py:1250 msgid "Select currency from available options" msgstr "" -#: InvenTree/serializers.py:653 +#: InvenTree/serializers.py:654 +msgid "This field may not be null." +msgstr "" + +#: InvenTree/serializers.py:660 msgid "Invalid value" msgstr "" -#: InvenTree/serializers.py:690 +#: InvenTree/serializers.py:697 msgid "Remote Image" msgstr "" -#: InvenTree/serializers.py:691 +#: InvenTree/serializers.py:698 msgid "URL of remote image file" msgstr "" -#: InvenTree/serializers.py:709 +#: InvenTree/serializers.py:716 msgid "Downloading images from remote URL is not enabled" msgstr "" -#: InvenTree/serializers.py:716 +#: InvenTree/serializers.py:723 msgid "Failed to download image from remote URL" msgstr "" +#: InvenTree/serializers.py:806 +msgid "Invalid content type format" +msgstr "" + +#: InvenTree/serializers.py:809 +msgid "Content type not found" +msgstr "" + +#: InvenTree/serializers.py:815 +msgid "Content type does not match required mixin class" +msgstr "" + #: InvenTree/setting/locales.py:20 msgid "Arabic" msgstr "" @@ -538,30 +554,30 @@ msgstr "" msgid "Not a valid currency code" msgstr "" -#: build/api.py:54 order/api.py:111 order/api.py:270 order/api.py:1373 -#: order/serializers.py:132 +#: build/api.py:54 order/api.py:116 order/api.py:275 order/api.py:1378 +#: order/serializers.py:133 msgid "Order Status" msgstr "" -#: build/api.py:80 build/models.py:264 +#: build/api.py:80 build/models.py:265 msgid "Parent Build" msgstr "" -#: build/api.py:84 build/api.py:831 order/api.py:547 order/api.py:770 -#: order/api.py:1174 order/api.py:1449 stock/api.py:573 +#: build/api.py:84 build/api.py:837 order/api.py:553 order/api.py:776 +#: order/api.py:1179 order/api.py:1454 stock/api.py:573 msgid "Include Variants" msgstr "" -#: build/api.py:100 build/api.py:466 build/api.py:845 build/models.py:270 -#: build/serializers.py:1225 build/serializers.py:1356 -#: build/serializers.py:1427 company/models.py:1067 company/serializers.py:445 -#: order/api.py:298 order/api.py:302 order/api.py:929 order/api.py:1187 -#: order/api.py:1190 order/models.py:1941 order/models.py:2108 -#: order/models.py:2109 part/api.py:1233 part/api.py:1236 part/api.py:1302 -#: part/api.py:1589 part/models.py:472 part/models.py:3296 part/models.py:3439 -#: part/models.py:3497 part/models.py:3518 part/models.py:3540 -#: part/models.py:3679 part/models.py:4046 part/models.py:4368 -#: part/models.py:4787 part/serializers.py:1928 +#: build/api.py:100 build/api.py:472 build/api.py:851 build/models.py:271 +#: build/serializers.py:1233 build/serializers.py:1364 +#: build/serializers.py:1435 company/models.py:1021 company/serializers.py:490 +#: order/api.py:303 order/api.py:307 order/api.py:934 order/api.py:1192 +#: order/api.py:1195 order/models.py:1942 order/models.py:2109 +#: order/models.py:2110 part/api.py:1160 part/api.py:1163 part/api.py:1314 +#: part/models.py:550 part/models.py:3360 part/models.py:3503 +#: part/models.py:3561 part/models.py:3582 part/models.py:3604 +#: part/models.py:3743 part/models.py:3993 part/models.py:4412 +#: part/serializers.py:1801 #: report/templates/report/inventree_bill_of_materials_report.html:110 #: report/templates/report/inventree_bill_of_materials_report.html:137 #: report/templates/report/inventree_build_order_report.html:109 @@ -581,9 +597,9 @@ msgstr "" msgid "Part" msgstr "" -#: build/api.py:120 build/api.py:123 build/serializers.py:1438 part/api.py:980 -#: part/api.py:1316 part/api.py:1600 part/models.py:1080 part/models.py:3568 -#: part/models.py:4162 part/serializers.py:1752 stock/api.py:869 +#: build/api.py:120 build/api.py:123 build/serializers.py:1446 part/api.py:975 +#: part/api.py:1325 part/models.py:435 part/models.py:1168 part/models.py:3632 +#: part/serializers.py:1617 stock/api.py:869 msgid "Category" msgstr "" @@ -591,7 +607,7 @@ msgstr "" msgid "Ancestor Build" msgstr "" -#: build/api.py:152 order/api.py:129 +#: build/api.py:152 order/api.py:134 msgid "Assigned to me" msgstr "" @@ -639,134 +655,134 @@ msgstr "" msgid "Completed after" msgstr "" -#: build/api.py:249 order/api.py:226 +#: build/api.py:249 order/api.py:231 msgid "Min Date" msgstr "" -#: build/api.py:272 order/api.py:245 +#: build/api.py:272 order/api.py:250 msgid "Max Date" msgstr "" -#: build/api.py:297 build/api.py:300 part/api.py:217 stock/api.py:961 +#: build/api.py:297 build/api.py:300 part/api.py:212 stock/api.py:961 msgid "Exclude Tree" msgstr "" -#: build/api.py:405 +#: build/api.py:411 msgid "Build must be cancelled before it can be deleted" msgstr "" -#: build/api.py:449 build/serializers.py:1374 part/models.py:4402 +#: build/api.py:455 build/serializers.py:1382 part/models.py:4027 msgid "Consumable" msgstr "" -#: build/api.py:452 build/serializers.py:1377 part/models.py:4396 +#: build/api.py:458 build/serializers.py:1385 part/models.py:4021 msgid "Optional" msgstr "" -#: build/api.py:455 build/serializers.py:1415 common/setting/system.py:456 -#: part/models.py:1202 part/serializers.py:1714 part/serializers.py:1725 +#: build/api.py:461 build/serializers.py:1423 common/setting/system.py:456 +#: part/models.py:1290 part/serializers.py:1579 part/serializers.py:1590 #: stock/api.py:639 msgid "Assembly" msgstr "" -#: build/api.py:458 +#: build/api.py:464 msgid "Tracked" msgstr "" -#: build/api.py:461 build/serializers.py:1380 part/models.py:1220 +#: build/api.py:467 build/serializers.py:1388 part/models.py:1308 msgid "Testable" msgstr "" -#: build/api.py:471 order/api.py:993 order/api.py:1363 +#: build/api.py:477 order/api.py:998 order/api.py:1368 msgid "Order Outstanding" msgstr "" -#: build/api.py:481 build/serializers.py:1464 order/api.py:952 +#: build/api.py:487 build/serializers.py:1472 order/api.py:957 msgid "Allocated" msgstr "" -#: build/api.py:490 build/models.py:1672 build/serializers.py:1393 +#: build/api.py:496 build/models.py:1673 build/serializers.py:1401 msgid "Consumed" msgstr "" -#: build/api.py:499 company/models.py:912 company/serializers.py:440 +#: build/api.py:505 company/models.py:866 company/serializers.py:467 #: templates/email/build_order_required_stock.html:19 #: templates/email/low_stock_notification.html:17 #: templates/email/part_event_notification.html:18 msgid "Available" msgstr "" -#: build/api.py:523 build/serializers.py:1466 company/serializers.py:437 -#: order/serializers.py:1281 part/serializers.py:959 part/serializers.py:1306 -#: part/serializers.py:1761 +#: build/api.py:529 build/serializers.py:1474 company/serializers.py:464 +#: order/serializers.py:1295 part/serializers.py:844 part/serializers.py:1171 +#: part/serializers.py:1626 msgid "On Order" msgstr "" -#: build/api.py:868 build/models.py:117 order/models.py:1974 +#: build/api.py:874 build/models.py:118 order/models.py:1975 #: report/templates/report/inventree_build_order_report.html:105 #: stock/serializers.py:93 templates/email/build_order_completed.html:16 #: templates/email/overdue_build_order.html:15 msgid "Build Order" msgstr "" -#: build/api.py:882 build/api.py:886 build/serializers.py:372 -#: build/serializers.py:497 build/serializers.py:567 build/serializers.py:1251 -#: build/serializers.py:1256 order/api.py:1234 order/api.py:1239 -#: order/serializers.py:833 order/serializers.py:973 order/serializers.py:2042 +#: build/api.py:888 build/api.py:892 build/serializers.py:380 +#: build/serializers.py:505 build/serializers.py:575 build/serializers.py:1259 +#: build/serializers.py:1264 order/api.py:1239 order/api.py:1244 +#: order/serializers.py:844 order/serializers.py:984 order/serializers.py:2059 #: stock/api.py:987 stock/serializers.py:111 stock/serializers.py:601 #: stock/serializers.py:710 stock/serializers.py:888 stock/serializers.py:1418 -#: stock/serializers.py:1731 stock/serializers.py:1780 +#: stock/serializers.py:1739 stock/serializers.py:1788 #: templates/email/stale_stock_notification.html:18 users/models.py:549 msgid "Location" msgstr "" -#: build/api.py:894 +#: build/api.py:900 msgid "Output" msgstr "" -#: build/api.py:896 +#: build/api.py:902 msgid "Filter by output stock item ID. Use 'null' to find uninstalled build items." msgstr "" -#: build/models.py:118 users/ruleset.py:31 +#: build/models.py:119 users/ruleset.py:31 msgid "Build Orders" msgstr "" -#: build/models.py:168 +#: build/models.py:169 msgid "Assembly BOM has not been validated" msgstr "" -#: build/models.py:175 +#: build/models.py:176 msgid "Build order cannot be created for an inactive part" msgstr "" -#: build/models.py:182 +#: build/models.py:183 msgid "Build order cannot be created for an unlocked part" msgstr "" -#: build/models.py:200 +#: build/models.py:201 msgid "Build orders can only be externally fulfilled for purchaseable parts" msgstr "" -#: build/models.py:207 order/models.py:369 +#: build/models.py:208 order/models.py:370 msgid "Responsible user or group must be specified" msgstr "" -#: build/models.py:212 +#: build/models.py:213 msgid "Build order part cannot be changed" msgstr "" -#: build/models.py:217 order/models.py:382 +#: build/models.py:218 order/models.py:383 msgid "Target date must be after start date" msgstr "" -#: build/models.py:245 +#: build/models.py:246 msgid "Build Order Reference" msgstr "" -#: build/models.py:246 build/serializers.py:1371 order/models.py:614 -#: order/models.py:1311 order/models.py:1773 order/models.py:2712 -#: part/models.py:4442 +#: build/models.py:247 build/serializers.py:1379 order/models.py:615 +#: order/models.py:1312 order/models.py:1774 order/models.py:2713 +#: part/models.py:4067 #: report/templates/report/inventree_bill_of_materials_report.html:139 #: report/templates/report/inventree_purchase_order_report.html:35 #: report/templates/report/inventree_return_order_report.html:26 @@ -774,230 +790,230 @@ msgstr "" msgid "Reference" msgstr "" -#: build/models.py:255 +#: build/models.py:256 msgid "Brief description of the build (optional)" msgstr "" -#: build/models.py:265 +#: build/models.py:266 msgid "BuildOrder to which this build is allocated" msgstr "" -#: build/models.py:274 +#: build/models.py:275 msgid "Select part to build" msgstr "" -#: build/models.py:279 +#: build/models.py:280 msgid "Sales Order Reference" msgstr "" -#: build/models.py:284 +#: build/models.py:285 msgid "SalesOrder to which this build is allocated" msgstr "" -#: build/models.py:289 build/serializers.py:1097 +#: build/models.py:290 build/serializers.py:1105 msgid "Source Location" msgstr "" -#: build/models.py:295 +#: build/models.py:296 msgid "Select location to take stock from for this build (leave blank to take from any stock location)" msgstr "" -#: build/models.py:301 +#: build/models.py:302 msgid "External Build" msgstr "" -#: build/models.py:302 +#: build/models.py:303 msgid "This build order is fulfilled externally" msgstr "" -#: build/models.py:307 +#: build/models.py:308 msgid "Destination Location" msgstr "" -#: build/models.py:312 +#: build/models.py:313 msgid "Select location where the completed items will be stored" msgstr "" -#: build/models.py:316 +#: build/models.py:317 msgid "Build Quantity" msgstr "" -#: build/models.py:319 +#: build/models.py:320 msgid "Number of stock items to build" msgstr "" -#: build/models.py:323 +#: build/models.py:324 msgid "Completed items" msgstr "" -#: build/models.py:325 +#: build/models.py:326 msgid "Number of stock items which have been completed" msgstr "" -#: build/models.py:329 +#: build/models.py:330 msgid "Build Status" msgstr "" -#: build/models.py:334 +#: build/models.py:335 msgid "Build status code" msgstr "" -#: build/models.py:343 build/serializers.py:359 order/serializers.py:849 +#: build/models.py:344 build/serializers.py:367 order/serializers.py:860 #: stock/models.py:1100 stock/serializers.py:85 stock/serializers.py:1591 msgid "Batch Code" msgstr "" -#: build/models.py:347 build/serializers.py:360 +#: build/models.py:348 build/serializers.py:368 msgid "Batch code for this build output" msgstr "" -#: build/models.py:351 order/models.py:479 order/serializers.py:186 -#: part/models.py:1283 +#: build/models.py:352 order/models.py:480 order/serializers.py:193 +#: part/models.py:1371 msgid "Creation Date" msgstr "" -#: build/models.py:357 +#: build/models.py:358 msgid "Build start date" msgstr "" -#: build/models.py:358 +#: build/models.py:359 msgid "Scheduled start date for this build order" msgstr "" -#: build/models.py:364 +#: build/models.py:365 msgid "Target completion date" msgstr "" -#: build/models.py:366 +#: build/models.py:367 msgid "Target date for build completion. Build will be overdue after this date." msgstr "" -#: build/models.py:371 order/models.py:667 order/models.py:2751 +#: build/models.py:372 order/models.py:668 order/models.py:2752 msgid "Completion Date" msgstr "" -#: build/models.py:379 +#: build/models.py:380 msgid "completed by" msgstr "" -#: build/models.py:388 +#: build/models.py:389 msgid "Issued by" msgstr "" -#: build/models.py:389 +#: build/models.py:390 msgid "User who issued this build order" msgstr "" -#: build/models.py:398 common/models.py:180 order/api.py:179 -#: order/models.py:504 part/models.py:1300 +#: build/models.py:399 common/models.py:184 order/api.py:184 +#: order/models.py:505 part/models.py:1388 #: report/templates/report/inventree_build_order_report.html:158 msgid "Responsible" msgstr "" -#: build/models.py:399 +#: build/models.py:400 msgid "User or group responsible for this build order" msgstr "" -#: build/models.py:404 stock/models.py:1093 +#: build/models.py:405 stock/models.py:1093 msgid "External Link" msgstr "" -#: build/models.py:406 common/models.py:1984 part/models.py:1114 +#: build/models.py:407 common/models.py:1990 part/models.py:1202 #: stock/models.py:1095 msgid "Link to external URL" msgstr "" -#: build/models.py:411 +#: build/models.py:412 msgid "Build Priority" msgstr "" -#: build/models.py:414 +#: build/models.py:415 msgid "Priority of this build order" msgstr "" -#: build/models.py:422 common/models.py:150 common/models.py:164 -#: order/api.py:165 order/models.py:451 order/models.py:1805 +#: build/models.py:423 common/models.py:154 common/models.py:168 +#: order/api.py:170 order/models.py:452 order/models.py:1806 msgid "Project Code" msgstr "" -#: build/models.py:423 +#: build/models.py:424 msgid "Project code for this build order" msgstr "" -#: build/models.py:676 +#: build/models.py:677 msgid "Cannot complete build order with open child builds" msgstr "" -#: build/models.py:681 +#: build/models.py:682 msgid "Cannot complete build order with incomplete outputs" msgstr "" -#: build/models.py:700 build/models.py:830 +#: build/models.py:701 build/models.py:831 msgid "Failed to offload task to complete build allocations" msgstr "" -#: build/models.py:723 +#: build/models.py:724 #, python-brace-format msgid "Build order {build} has been completed" msgstr "" -#: build/models.py:729 +#: build/models.py:730 msgid "A build order has been completed" msgstr "" -#: build/models.py:911 build/serializers.py:407 +#: build/models.py:912 build/serializers.py:415 msgid "Serial numbers must be provided for trackable parts" msgstr "" -#: build/models.py:1042 build/models.py:1129 +#: build/models.py:1043 build/models.py:1130 msgid "No build output specified" msgstr "" -#: build/models.py:1045 +#: build/models.py:1046 msgid "Build output is already completed" msgstr "" -#: build/models.py:1048 +#: build/models.py:1049 msgid "Build output does not match Build Order" msgstr "" -#: build/models.py:1136 build/models.py:1234 build/serializers.py:285 -#: build/serializers.py:335 build/serializers.py:965 build/serializers.py:1739 -#: order/models.py:717 order/serializers.py:658 order/serializers.py:844 -#: part/serializers.py:1708 stock/models.py:940 stock/models.py:1430 +#: build/models.py:1137 build/models.py:1235 build/serializers.py:293 +#: build/serializers.py:343 build/serializers.py:973 build/serializers.py:1747 +#: order/models.py:718 order/serializers.py:669 order/serializers.py:855 +#: part/serializers.py:1573 stock/models.py:940 stock/models.py:1430 #: stock/models.py:1878 stock/serializers.py:688 stock/serializers.py:1580 msgid "Quantity must be greater than zero" msgstr "" -#: build/models.py:1140 build/models.py:1239 build/serializers.py:290 +#: build/models.py:1141 build/models.py:1240 build/serializers.py:298 msgid "Quantity cannot be greater than the output quantity" msgstr "" -#: build/models.py:1214 build/serializers.py:606 +#: build/models.py:1215 build/serializers.py:614 msgid "Build output has not passed all required tests" msgstr "" -#: build/models.py:1217 build/serializers.py:601 +#: build/models.py:1218 build/serializers.py:609 #, python-brace-format msgid "Build output {serial} has not passed all required tests" msgstr "" -#: build/models.py:1229 +#: build/models.py:1230 msgid "Cannot partially complete a build output with allocated items" msgstr "" -#: build/models.py:1627 +#: build/models.py:1628 msgid "Build Order Line Item" msgstr "" -#: build/models.py:1651 +#: build/models.py:1652 msgid "Build object" msgstr "" -#: build/models.py:1663 build/models.py:1974 build/serializers.py:271 -#: build/serializers.py:320 build/serializers.py:1392 common/models.py:1340 -#: order/models.py:1756 order/models.py:2597 order/serializers.py:1696 -#: order/serializers.py:2124 part/models.py:3453 part/models.py:4390 +#: build/models.py:1664 build/models.py:1975 build/serializers.py:279 +#: build/serializers.py:328 build/serializers.py:1400 common/models.py:1344 +#: order/models.py:1757 order/models.py:2598 order/serializers.py:1710 +#: order/serializers.py:2141 part/models.py:3517 part/models.py:4015 #: report/templates/report/inventree_bill_of_materials_report.html:138 #: report/templates/report/inventree_build_order_report.html:113 #: report/templates/report/inventree_purchase_order_report.html:36 @@ -1015,427 +1031,427 @@ msgstr "" msgid "Quantity" msgstr "" -#: build/models.py:1664 +#: build/models.py:1665 msgid "Required quantity for build order" msgstr "" -#: build/models.py:1673 +#: build/models.py:1674 msgid "Quantity of consumed stock" msgstr "" -#: build/models.py:1772 +#: build/models.py:1773 msgid "Build item must specify a build output, as master part is marked as trackable" msgstr "" -#: build/models.py:1783 +#: build/models.py:1784 #, python-brace-format msgid "Allocated quantity ({q}) must not exceed available stock quantity ({a})" msgstr "" -#: build/models.py:1804 order/models.py:2546 +#: build/models.py:1805 order/models.py:2547 msgid "Stock item is over-allocated" msgstr "" -#: build/models.py:1809 order/models.py:2549 +#: build/models.py:1810 order/models.py:2550 msgid "Allocation quantity must be greater than zero" msgstr "" -#: build/models.py:1815 +#: build/models.py:1816 msgid "Quantity must be 1 for serialized stock" msgstr "" -#: build/models.py:1875 +#: build/models.py:1876 msgid "Selected stock item does not match BOM line" msgstr "" -#: build/models.py:1913 +#: build/models.py:1914 msgid "Allocated quantity exceeds available stock quantity" msgstr "" -#: build/models.py:1964 build/serializers.py:948 build/serializers.py:1240 -#: order/serializers.py:1533 order/serializers.py:1554 +#: build/models.py:1965 build/serializers.py:956 build/serializers.py:1248 +#: order/serializers.py:1547 order/serializers.py:1568 #: report/templates/report/inventree_sales_order_shipment_report.html:29 #: stock/api.py:1404 stock/models.py:456 stock/serializers.py:102 #: stock/serializers.py:800 stock/serializers.py:1274 stock/serializers.py:1386 msgid "Stock Item" msgstr "" -#: build/models.py:1965 +#: build/models.py:1966 msgid "Source stock item" msgstr "" -#: build/models.py:1975 +#: build/models.py:1976 msgid "Stock quantity to allocate to build" msgstr "" -#: build/models.py:1984 +#: build/models.py:1985 msgid "Install into" msgstr "" -#: build/models.py:1985 +#: build/models.py:1986 msgid "Destination stock item" msgstr "" -#: build/serializers.py:118 +#: build/serializers.py:120 msgid "Build Level" msgstr "" -#: build/serializers.py:128 +#: build/serializers.py:136 msgid "Part Name" msgstr "" -#: build/serializers.py:153 +#: build/serializers.py:161 msgid "Project Code Label" msgstr "" -#: build/serializers.py:219 build/serializers.py:974 +#: build/serializers.py:227 build/serializers.py:982 msgid "Build Output" msgstr "" -#: build/serializers.py:231 +#: build/serializers.py:239 msgid "Build output does not match the parent build" msgstr "" -#: build/serializers.py:235 +#: build/serializers.py:243 msgid "Output part does not match BuildOrder part" msgstr "" -#: build/serializers.py:239 +#: build/serializers.py:247 msgid "This build output has already been completed" msgstr "" -#: build/serializers.py:253 +#: build/serializers.py:261 msgid "This build output is not fully allocated" msgstr "" -#: build/serializers.py:272 build/serializers.py:321 +#: build/serializers.py:280 build/serializers.py:329 msgid "Enter quantity for build output" msgstr "" -#: build/serializers.py:343 +#: build/serializers.py:351 msgid "Integer quantity required for trackable parts" msgstr "" -#: build/serializers.py:349 +#: build/serializers.py:357 msgid "Integer quantity required, as the bill of materials contains trackable parts" msgstr "" -#: build/serializers.py:366 order/serializers.py:865 order/serializers.py:1700 +#: build/serializers.py:374 order/serializers.py:876 order/serializers.py:1714 #: stock/serializers.py:699 msgid "Serial Numbers" msgstr "" -#: build/serializers.py:367 +#: build/serializers.py:375 msgid "Enter serial numbers for build outputs" msgstr "" -#: build/serializers.py:373 +#: build/serializers.py:381 msgid "Stock location for build output" msgstr "" -#: build/serializers.py:388 +#: build/serializers.py:396 msgid "Auto Allocate Serial Numbers" msgstr "" -#: build/serializers.py:390 +#: build/serializers.py:398 msgid "Automatically allocate required items with matching serial numbers" msgstr "" -#: build/serializers.py:423 order/serializers.py:951 stock/api.py:1183 +#: build/serializers.py:431 order/serializers.py:962 stock/api.py:1183 #: stock/models.py:1901 msgid "The following serial numbers already exist or are invalid" msgstr "" -#: build/serializers.py:465 build/serializers.py:521 build/serializers.py:613 +#: build/serializers.py:473 build/serializers.py:529 build/serializers.py:621 msgid "A list of build outputs must be provided" msgstr "" -#: build/serializers.py:498 +#: build/serializers.py:506 msgid "Stock location for scrapped outputs" msgstr "" -#: build/serializers.py:504 +#: build/serializers.py:512 msgid "Discard Allocations" msgstr "" -#: build/serializers.py:505 +#: build/serializers.py:513 msgid "Discard any stock allocations for scrapped outputs" msgstr "" -#: build/serializers.py:510 +#: build/serializers.py:518 msgid "Reason for scrapping build output(s)" msgstr "" -#: build/serializers.py:568 +#: build/serializers.py:576 msgid "Location for completed build outputs" msgstr "" -#: build/serializers.py:576 +#: build/serializers.py:584 msgid "Accept Incomplete Allocation" msgstr "" -#: build/serializers.py:577 +#: build/serializers.py:585 msgid "Complete outputs if stock has not been fully allocated" msgstr "" -#: build/serializers.py:702 +#: build/serializers.py:710 msgid "Consume Allocated Stock" msgstr "" -#: build/serializers.py:703 +#: build/serializers.py:711 msgid "Consume any stock which has already been allocated to this build" msgstr "" -#: build/serializers.py:709 +#: build/serializers.py:717 msgid "Remove Incomplete Outputs" msgstr "" -#: build/serializers.py:710 +#: build/serializers.py:718 msgid "Delete any build outputs which have not been completed" msgstr "" -#: build/serializers.py:737 +#: build/serializers.py:745 msgid "Not permitted" msgstr "" -#: build/serializers.py:738 +#: build/serializers.py:746 msgid "Accept as consumed by this build order" msgstr "" -#: build/serializers.py:739 +#: build/serializers.py:747 msgid "Deallocate before completing this build order" msgstr "" -#: build/serializers.py:766 +#: build/serializers.py:774 msgid "Overallocated Stock" msgstr "" -#: build/serializers.py:769 +#: build/serializers.py:777 msgid "How do you want to handle extra stock items assigned to the build order" msgstr "" -#: build/serializers.py:780 +#: build/serializers.py:788 msgid "Some stock items have been overallocated" msgstr "" -#: build/serializers.py:785 +#: build/serializers.py:793 msgid "Accept Unallocated" msgstr "" -#: build/serializers.py:787 +#: build/serializers.py:795 msgid "Accept that stock items have not been fully allocated to this build order" msgstr "" -#: build/serializers.py:798 +#: build/serializers.py:806 msgid "Required stock has not been fully allocated" msgstr "" -#: build/serializers.py:803 order/serializers.py:524 order/serializers.py:1601 +#: build/serializers.py:811 order/serializers.py:535 order/serializers.py:1615 msgid "Accept Incomplete" msgstr "" -#: build/serializers.py:805 +#: build/serializers.py:813 msgid "Accept that the required number of build outputs have not been completed" msgstr "" -#: build/serializers.py:816 +#: build/serializers.py:824 msgid "Required build quantity has not been completed" msgstr "" -#: build/serializers.py:828 +#: build/serializers.py:836 msgid "Build order has open child build orders" msgstr "" -#: build/serializers.py:831 +#: build/serializers.py:839 msgid "Build order must be in production state" msgstr "" -#: build/serializers.py:834 +#: build/serializers.py:842 msgid "Build order has incomplete outputs" msgstr "" -#: build/serializers.py:873 +#: build/serializers.py:881 msgid "Build Line" msgstr "" -#: build/serializers.py:881 +#: build/serializers.py:889 msgid "Build output" msgstr "" -#: build/serializers.py:889 +#: build/serializers.py:897 msgid "Build output must point to the same build" msgstr "" -#: build/serializers.py:920 +#: build/serializers.py:928 msgid "Build Line Item" msgstr "" -#: build/serializers.py:938 +#: build/serializers.py:946 msgid "bom_item.part must point to the same part as the build order" msgstr "" -#: build/serializers.py:954 stock/serializers.py:1287 +#: build/serializers.py:962 stock/serializers.py:1287 msgid "Item must be in stock" msgstr "" -#: build/serializers.py:997 order/serializers.py:1587 +#: build/serializers.py:1005 order/serializers.py:1601 #, python-brace-format msgid "Available quantity ({q}) exceeded" msgstr "" -#: build/serializers.py:1003 +#: build/serializers.py:1011 msgid "Build output must be specified for allocation of tracked parts" msgstr "" -#: build/serializers.py:1011 +#: build/serializers.py:1019 msgid "Build output cannot be specified for allocation of untracked parts" msgstr "" -#: build/serializers.py:1035 order/serializers.py:1860 +#: build/serializers.py:1043 order/serializers.py:1874 msgid "Allocation items must be provided" msgstr "" -#: build/serializers.py:1099 +#: build/serializers.py:1107 msgid "Stock location where parts are to be sourced (leave blank to take from any location)" msgstr "" -#: build/serializers.py:1108 +#: build/serializers.py:1116 msgid "Exclude Location" msgstr "" -#: build/serializers.py:1109 +#: build/serializers.py:1117 msgid "Exclude stock items from this selected location" msgstr "" -#: build/serializers.py:1114 +#: build/serializers.py:1122 msgid "Interchangeable Stock" msgstr "" -#: build/serializers.py:1115 +#: build/serializers.py:1123 msgid "Stock items in multiple locations can be used interchangeably" msgstr "" -#: build/serializers.py:1120 +#: build/serializers.py:1128 msgid "Substitute Stock" msgstr "" -#: build/serializers.py:1121 +#: build/serializers.py:1129 msgid "Allow allocation of substitute parts" msgstr "" -#: build/serializers.py:1126 +#: build/serializers.py:1134 msgid "Optional Items" msgstr "" -#: build/serializers.py:1127 +#: build/serializers.py:1135 msgid "Allocate optional BOM items to build order" msgstr "" -#: build/serializers.py:1148 +#: build/serializers.py:1156 msgid "Failed to start auto-allocation task" msgstr "" -#: build/serializers.py:1200 +#: build/serializers.py:1208 msgid "BOM Reference" msgstr "" -#: build/serializers.py:1206 +#: build/serializers.py:1214 msgid "BOM Part ID" msgstr "" -#: build/serializers.py:1213 +#: build/serializers.py:1221 msgid "BOM Part Name" msgstr "" -#: build/serializers.py:1266 build/serializers.py:1449 +#: build/serializers.py:1274 build/serializers.py:1457 msgid "Build" msgstr "" -#: build/serializers.py:1276 company/models.py:685 order/api.py:311 -#: order/api.py:316 order/api.py:543 order/serializers.py:650 +#: build/serializers.py:1284 company/models.py:639 order/api.py:316 +#: order/api.py:321 order/api.py:549 order/serializers.py:661 #: stock/models.py:1036 stock/serializers.py:579 msgid "Supplier Part" msgstr "" -#: build/serializers.py:1284 stock/serializers.py:620 +#: build/serializers.py:1292 stock/serializers.py:620 msgid "Allocated Quantity" msgstr "" -#: build/serializers.py:1351 +#: build/serializers.py:1359 msgid "Build Reference" msgstr "" -#: build/serializers.py:1361 +#: build/serializers.py:1369 msgid "Part Category Name" msgstr "" -#: build/serializers.py:1383 common/setting/system.py:480 part/models.py:1214 +#: build/serializers.py:1391 common/setting/system.py:480 part/models.py:1302 msgid "Trackable" msgstr "" -#: build/serializers.py:1386 +#: build/serializers.py:1394 msgid "Inherited" msgstr "" -#: build/serializers.py:1389 part/models.py:4475 +#: build/serializers.py:1397 part/models.py:4100 msgid "Allow Variants" msgstr "" -#: build/serializers.py:1395 build/serializers.py:1400 part/models.py:4208 -#: part/models.py:4779 stock/api.py:882 +#: build/serializers.py:1403 build/serializers.py:1408 part/models.py:3833 +#: part/models.py:4404 stock/api.py:882 msgid "BOM Item" msgstr "" -#: build/serializers.py:1467 order/serializers.py:1282 part/serializers.py:1310 -#: part/serializers.py:1765 +#: build/serializers.py:1475 order/serializers.py:1296 part/serializers.py:1175 +#: part/serializers.py:1630 msgid "In Production" msgstr "" -#: build/serializers.py:1469 part/serializers.py:950 part/serializers.py:1314 +#: build/serializers.py:1477 part/serializers.py:835 part/serializers.py:1179 msgid "Scheduled to Build" msgstr "" -#: build/serializers.py:1472 part/serializers.py:987 +#: build/serializers.py:1480 part/serializers.py:872 msgid "External Stock" msgstr "" -#: build/serializers.py:1473 part/serializers.py:1300 part/serializers.py:1808 +#: build/serializers.py:1481 part/serializers.py:1165 part/serializers.py:1673 msgid "Available Stock" msgstr "" -#: build/serializers.py:1475 +#: build/serializers.py:1483 msgid "Available Substitute Stock" msgstr "" -#: build/serializers.py:1478 +#: build/serializers.py:1486 msgid "Available Variant Stock" msgstr "" -#: build/serializers.py:1752 +#: build/serializers.py:1760 msgid "Consumed quantity exceeds allocated quantity" msgstr "" -#: build/serializers.py:1789 +#: build/serializers.py:1797 msgid "Optional notes for the stock consumption" msgstr "" -#: build/serializers.py:1806 +#: build/serializers.py:1814 msgid "Build item must point to the correct build order" msgstr "" -#: build/serializers.py:1811 +#: build/serializers.py:1819 msgid "Duplicate build item allocation" msgstr "" -#: build/serializers.py:1829 +#: build/serializers.py:1837 msgid "Build line must point to the correct build order" msgstr "" -#: build/serializers.py:1834 +#: build/serializers.py:1842 msgid "Duplicate build line allocation" msgstr "" -#: build/serializers.py:1846 +#: build/serializers.py:1854 msgid "At least one item or line must be provided" msgstr "" @@ -1483,702 +1499,826 @@ msgstr "" msgid "Build order {bo} is now overdue" msgstr "" -#: common/api.py:694 +#: common/api.py:701 msgid "Is Link" msgstr "" -#: common/api.py:702 +#: common/api.py:709 msgid "Is File" msgstr "" -#: common/api.py:745 +#: common/api.py:756 msgid "User does not have permission to delete these attachments" msgstr "" -#: common/api.py:762 +#: common/api.py:769 msgid "User does not have permission to delete this attachment" msgstr "" -#: common/currency.py:122 +#: common/currency.py:130 msgid "Invalid currency code" msgstr "" -#: common/currency.py:124 +#: common/currency.py:132 msgid "Duplicate currency code" msgstr "" -#: common/currency.py:129 +#: common/currency.py:137 msgid "No valid currency codes provided" msgstr "" -#: common/currency.py:146 +#: common/currency.py:154 msgid "No plugin" msgstr "" -#: common/models.py:101 common/models.py:126 common/models.py:2729 +#: common/models.py:105 common/models.py:130 common/models.py:3150 msgid "Updated" msgstr "" -#: common/models.py:102 common/models.py:127 +#: common/models.py:106 common/models.py:131 msgid "Timestamp of last update" msgstr "" -#: common/models.py:139 +#: common/models.py:143 msgid "Update By" msgstr "" -#: common/models.py:140 +#: common/models.py:144 msgid "User who last updated this object" msgstr "" -#: common/models.py:165 +#: common/models.py:169 msgid "Unique project code" msgstr "" -#: common/models.py:172 +#: common/models.py:176 msgid "Project description" msgstr "" -#: common/models.py:181 +#: common/models.py:185 msgid "User or group responsible for this project" msgstr "" -#: common/models.py:771 common/models.py:1272 common/models.py:1310 +#: common/models.py:775 common/models.py:1276 common/models.py:1314 msgid "Settings key" msgstr "" -#: common/models.py:775 +#: common/models.py:779 msgid "Settings value" msgstr "" -#: common/models.py:830 +#: common/models.py:834 msgid "Chosen value is not a valid option" msgstr "" -#: common/models.py:846 +#: common/models.py:850 msgid "Value must be a boolean value" msgstr "" -#: common/models.py:854 +#: common/models.py:858 msgid "Value must be an integer value" msgstr "" -#: common/models.py:862 +#: common/models.py:866 msgid "Value must be a valid number" msgstr "" -#: common/models.py:887 +#: common/models.py:891 msgid "Value does not pass validation checks" msgstr "" -#: common/models.py:909 +#: common/models.py:913 msgid "Key string must be unique" msgstr "" -#: common/models.py:1318 common/models.py:1319 common/models.py:1423 -#: common/models.py:1424 common/models.py:1669 common/models.py:1670 -#: common/models.py:2000 common/models.py:2001 common/models.py:2382 -#: importer/models.py:100 part/models.py:3547 part/models.py:3575 +#: common/models.py:1322 common/models.py:1323 common/models.py:1427 +#: common/models.py:1428 common/models.py:1673 common/models.py:1674 +#: common/models.py:2006 common/models.py:2007 common/models.py:2803 +#: importer/models.py:100 part/models.py:3611 part/models.py:3639 #: plugin/models.py:355 plugin/models.py:356 #: report/templates/report/inventree_test_report.html:105 users/models.py:124 #: users/models.py:501 msgid "User" msgstr "" -#: common/models.py:1341 +#: common/models.py:1345 msgid "Price break quantity" msgstr "" -#: common/models.py:1348 company/serializers.py:564 order/models.py:1842 -#: order/models.py:3043 +#: common/models.py:1352 company/serializers.py:349 order/models.py:1843 +#: order/models.py:3044 msgid "Price" msgstr "" -#: common/models.py:1349 +#: common/models.py:1353 msgid "Unit price at specified quantity" msgstr "" -#: common/models.py:1400 common/models.py:1585 +#: common/models.py:1404 common/models.py:1589 msgid "Endpoint" msgstr "" -#: common/models.py:1401 +#: common/models.py:1405 msgid "Endpoint at which this webhook is received" msgstr "" -#: common/models.py:1411 +#: common/models.py:1415 msgid "Name for this webhook" msgstr "" -#: common/models.py:1415 common/models.py:2241 common/models.py:2348 -#: company/models.py:191 company/models.py:822 machine/models.py:40 -#: part/models.py:1237 plugin/models.py:69 stock/api.py:642 users/models.py:195 +#: common/models.py:1419 common/models.py:2247 common/models.py:2354 +#: company/models.py:192 company/models.py:776 machine/models.py:40 +#: part/models.py:1325 plugin/models.py:69 stock/api.py:642 users/models.py:195 #: users/models.py:554 users/serializers.py:314 msgid "Active" msgstr "" -#: common/models.py:1415 +#: common/models.py:1419 msgid "Is this webhook active" msgstr "" -#: common/models.py:1431 users/models.py:172 +#: common/models.py:1435 users/models.py:172 msgid "Token" msgstr "" -#: common/models.py:1432 +#: common/models.py:1436 msgid "Token for access" msgstr "" -#: common/models.py:1440 +#: common/models.py:1444 msgid "Secret" msgstr "" -#: common/models.py:1441 +#: common/models.py:1445 msgid "Shared secret for HMAC" msgstr "" -#: common/models.py:1549 common/models.py:2619 +#: common/models.py:1553 common/models.py:3040 msgid "Message ID" msgstr "" -#: common/models.py:1550 common/models.py:2609 +#: common/models.py:1554 common/models.py:3030 msgid "Unique identifier for this message" msgstr "" -#: common/models.py:1558 +#: common/models.py:1562 msgid "Host" msgstr "" -#: common/models.py:1559 +#: common/models.py:1563 msgid "Host from which this message was received" msgstr "" -#: common/models.py:1567 +#: common/models.py:1571 msgid "Header" msgstr "" -#: common/models.py:1568 +#: common/models.py:1572 msgid "Header of this message" msgstr "" -#: common/models.py:1575 +#: common/models.py:1579 msgid "Body" msgstr "" -#: common/models.py:1576 +#: common/models.py:1580 msgid "Body of this message" msgstr "" -#: common/models.py:1586 +#: common/models.py:1590 msgid "Endpoint on which this message was received" msgstr "" -#: common/models.py:1591 +#: common/models.py:1595 msgid "Worked on" msgstr "" -#: common/models.py:1592 +#: common/models.py:1596 msgid "Was the work on this message finished?" msgstr "" -#: common/models.py:1718 +#: common/models.py:1722 msgid "Id" msgstr "" -#: common/models.py:1720 +#: common/models.py:1724 msgid "Title" msgstr "" -#: common/models.py:1722 common/models.py:1983 company/models.py:185 -#: company/models.py:467 company/models.py:534 company/models.py:839 -#: order/models.py:457 order/models.py:1786 order/models.py:2343 -#: part/models.py:1113 +#: common/models.py:1726 common/models.py:1989 company/models.py:186 +#: company/models.py:468 company/models.py:536 company/models.py:793 +#: order/models.py:458 order/models.py:1787 order/models.py:2344 +#: part/models.py:1201 #: report/templates/report/inventree_build_order_report.html:164 msgid "Link" msgstr "" -#: common/models.py:1724 +#: common/models.py:1728 msgid "Published" msgstr "" -#: common/models.py:1726 +#: common/models.py:1730 msgid "Author" msgstr "" -#: common/models.py:1728 +#: common/models.py:1732 msgid "Summary" msgstr "" -#: common/models.py:1731 common/models.py:2586 +#: common/models.py:1735 common/models.py:3007 msgid "Read" msgstr "" -#: common/models.py:1731 +#: common/models.py:1735 msgid "Was this news item read?" msgstr "" -#: common/models.py:1748 +#: common/models.py:1752 msgid "Image file" msgstr "" -#: common/models.py:1760 +#: common/models.py:1764 msgid "Target model type for this image" msgstr "" -#: common/models.py:1764 +#: common/models.py:1768 msgid "Target model ID for this image" msgstr "" -#: common/models.py:1786 +#: common/models.py:1790 msgid "Custom Unit" msgstr "" -#: common/models.py:1804 +#: common/models.py:1808 msgid "Unit symbol must be unique" msgstr "" -#: common/models.py:1819 +#: common/models.py:1823 msgid "Unit name must be a valid identifier" msgstr "" -#: common/models.py:1838 +#: common/models.py:1842 msgid "Unit name" msgstr "" -#: common/models.py:1845 +#: common/models.py:1849 msgid "Symbol" msgstr "" -#: common/models.py:1846 +#: common/models.py:1850 msgid "Optional unit symbol" msgstr "" -#: common/models.py:1852 +#: common/models.py:1856 msgid "Definition" msgstr "" -#: common/models.py:1853 +#: common/models.py:1857 msgid "Unit definition" msgstr "" -#: common/models.py:1911 common/models.py:1974 stock/models.py:2967 +#: common/models.py:1917 common/models.py:1980 stock/models.py:2984 #: stock/serializers.py:247 msgid "Attachment" msgstr "" -#: common/models.py:1928 +#: common/models.py:1934 msgid "Missing file" msgstr "" -#: common/models.py:1929 +#: common/models.py:1935 msgid "Missing external link" msgstr "" -#: common/models.py:1966 +#: common/models.py:1972 common/models.py:2488 msgid "Model type" msgstr "" -#: common/models.py:1967 +#: common/models.py:1973 msgid "Target model type for image" msgstr "" -#: common/models.py:1975 +#: common/models.py:1981 msgid "Select file to attach" msgstr "" -#: common/models.py:1991 +#: common/models.py:1997 msgid "Comment" msgstr "" -#: common/models.py:1992 +#: common/models.py:1998 msgid "Attachment comment" msgstr "" -#: common/models.py:2008 +#: common/models.py:2014 msgid "Upload date" msgstr "" -#: common/models.py:2009 +#: common/models.py:2015 msgid "Date the file was uploaded" msgstr "" -#: common/models.py:2013 +#: common/models.py:2019 msgid "File size" msgstr "" -#: common/models.py:2013 +#: common/models.py:2019 msgid "File size in bytes" msgstr "" -#: common/models.py:2051 common/serializers.py:684 +#: common/models.py:2057 common/serializers.py:688 msgid "Invalid model type specified for attachment" msgstr "" -#: common/models.py:2072 +#: common/models.py:2078 msgid "Custom State" msgstr "" -#: common/models.py:2073 +#: common/models.py:2079 msgid "Custom States" msgstr "" -#: common/models.py:2078 +#: common/models.py:2084 msgid "Reference Status Set" msgstr "" -#: common/models.py:2079 +#: common/models.py:2085 msgid "Status set that is extended with this custom state" msgstr "" -#: common/models.py:2083 generic/states/serializers.py:18 +#: common/models.py:2089 generic/states/serializers.py:18 msgid "Logical Key" msgstr "" -#: common/models.py:2085 +#: common/models.py:2091 msgid "State logical key that is equal to this custom state in business logic" msgstr "" -#: common/models.py:2090 common/models.py:2329 company/models.py:622 -#: machine/serializers.py:27 -#: report/templates/report/inventree_test_report.html:104 stock/models.py:2959 +#: common/models.py:2096 common/models.py:2335 machine/serializers.py:27 +#: report/templates/report/inventree_test_report.html:104 stock/models.py:2976 msgid "Value" msgstr "" -#: common/models.py:2091 +#: common/models.py:2097 msgid "Numerical value that will be saved in the models database" msgstr "" -#: common/models.py:2097 +#: common/models.py:2103 msgid "Name of the state" msgstr "" -#: common/models.py:2106 common/models.py:2335 generic/states/serializers.py:22 +#: common/models.py:2112 common/models.py:2341 generic/states/serializers.py:22 msgid "Label" msgstr "" -#: common/models.py:2107 +#: common/models.py:2113 msgid "Label that will be displayed in the frontend" msgstr "" -#: common/models.py:2114 generic/states/serializers.py:24 +#: common/models.py:2120 generic/states/serializers.py:24 msgid "Color" msgstr "" -#: common/models.py:2115 +#: common/models.py:2121 msgid "Color that will be displayed in the frontend" msgstr "" -#: common/models.py:2123 +#: common/models.py:2129 msgid "Model" msgstr "" -#: common/models.py:2124 +#: common/models.py:2130 msgid "Model this state is associated with" msgstr "" -#: common/models.py:2139 +#: common/models.py:2145 msgid "Model must be selected" msgstr "" -#: common/models.py:2142 +#: common/models.py:2148 msgid "Key must be selected" msgstr "" -#: common/models.py:2145 +#: common/models.py:2151 msgid "Logical key must be selected" msgstr "" -#: common/models.py:2149 +#: common/models.py:2155 msgid "Key must be different from logical key" msgstr "" -#: common/models.py:2156 +#: common/models.py:2162 msgid "Valid reference status class must be provided" msgstr "" -#: common/models.py:2162 +#: common/models.py:2168 msgid "Key must be different from the logical keys of the reference status" msgstr "" -#: common/models.py:2169 +#: common/models.py:2175 msgid "Logical key must be in the logical keys of the reference status" msgstr "" -#: common/models.py:2176 +#: common/models.py:2182 msgid "Name must be different from the names of the reference status" msgstr "" -#: common/models.py:2216 common/models.py:2323 part/models.py:3889 +#: common/models.py:2222 common/models.py:2329 common/models.py:2533 msgid "Selection List" msgstr "" -#: common/models.py:2217 +#: common/models.py:2223 msgid "Selection Lists" msgstr "" -#: common/models.py:2222 +#: common/models.py:2228 msgid "Name of the selection list" msgstr "" -#: common/models.py:2229 +#: common/models.py:2235 msgid "Description of the selection list" msgstr "" -#: common/models.py:2235 part/models.py:1242 +#: common/models.py:2241 part/models.py:1330 msgid "Locked" msgstr "" -#: common/models.py:2236 +#: common/models.py:2242 msgid "Is this selection list locked?" msgstr "" -#: common/models.py:2242 +#: common/models.py:2248 msgid "Can this selection list be used?" msgstr "" -#: common/models.py:2250 +#: common/models.py:2256 msgid "Source Plugin" msgstr "" -#: common/models.py:2251 +#: common/models.py:2257 msgid "Plugin which provides the selection list" msgstr "" -#: common/models.py:2256 +#: common/models.py:2262 msgid "Source String" msgstr "" -#: common/models.py:2257 +#: common/models.py:2263 msgid "Optional string identifying the source used for this list" msgstr "" -#: common/models.py:2266 +#: common/models.py:2272 msgid "Default Entry" msgstr "" -#: common/models.py:2267 +#: common/models.py:2273 msgid "Default entry for this selection list" msgstr "" -#: common/models.py:2272 common/models.py:2724 +#: common/models.py:2278 common/models.py:3145 msgid "Created" msgstr "" -#: common/models.py:2273 +#: common/models.py:2279 msgid "Date and time that the selection list was created" msgstr "" -#: common/models.py:2278 +#: common/models.py:2284 msgid "Last Updated" msgstr "" -#: common/models.py:2279 +#: common/models.py:2285 msgid "Date and time that the selection list was last updated" msgstr "" -#: common/models.py:2313 +#: common/models.py:2319 msgid "Selection List Entry" msgstr "" -#: common/models.py:2314 +#: common/models.py:2320 msgid "Selection List Entries" msgstr "" -#: common/models.py:2324 +#: common/models.py:2330 msgid "Selection list to which this entry belongs" msgstr "" -#: common/models.py:2330 +#: common/models.py:2336 msgid "Value of the selection list entry" msgstr "" -#: common/models.py:2336 +#: common/models.py:2342 msgid "Label for the selection list entry" msgstr "" -#: common/models.py:2342 +#: common/models.py:2348 msgid "Description of the selection list entry" msgstr "" -#: common/models.py:2349 +#: common/models.py:2355 msgid "Is this selection list entry active?" msgstr "" -#: common/models.py:2367 -msgid "Barcode Scan" +#: common/models.py:2387 +msgid "Parameter Template" msgstr "" -#: common/models.py:2371 importer/models.py:546 part/models.py:4060 -msgid "Data" +#: common/models.py:2388 +msgid "Parameter Templates" msgstr "" -#: common/models.py:2372 -msgid "Barcode data" +#: common/models.py:2425 +msgid "Checkbox parameters cannot have units" msgstr "" -#: common/models.py:2383 -msgid "User who scanned the barcode" +#: common/models.py:2430 +msgid "Checkbox parameters cannot have choices" msgstr "" -#: common/models.py:2388 importer/models.py:69 -msgid "Timestamp" +#: common/models.py:2450 part/models.py:3707 +msgid "Choices must be unique" msgstr "" -#: common/models.py:2389 -msgid "Date and time of the barcode scan" +#: common/models.py:2467 +msgid "Parameter template name must be unique" msgstr "" -#: common/models.py:2395 -msgid "URL endpoint which processed the barcode" +#: common/models.py:2489 +msgid "Target model type for this parameter template" msgstr "" -#: common/models.py:2402 order/models.py:1832 plugin/serializers.py:93 -msgid "Context" +#: common/models.py:2495 +msgid "Parameter Name" msgstr "" -#: common/models.py:2403 -msgid "Context data for the barcode scan" +#: common/models.py:2501 part/models.py:1283 +msgid "Units" msgstr "" -#: common/models.py:2410 -msgid "Response" +#: common/models.py:2502 +msgid "Physical units for this parameter" msgstr "" -#: common/models.py:2411 -msgid "Response data from the barcode scan" +#: common/models.py:2510 +msgid "Parameter description" msgstr "" -#: common/models.py:2417 report/templates/report/inventree_test_report.html:103 -#: stock/models.py:2953 -msgid "Result" +#: common/models.py:2516 +msgid "Checkbox" msgstr "" -#: common/models.py:2418 -msgid "Was the barcode scan successful?" +#: common/models.py:2517 +msgid "Is this parameter a checkbox?" msgstr "" -#: common/models.py:2500 -msgid "An error occurred" +#: common/models.py:2522 part/models.py:3794 +msgid "Choices" msgstr "" -#: common/models.py:2521 -msgid "INVE-E8: Email log deletion is protected. Set INVENTREE_PROTECT_EMAIL_LOG to False to allow deletion." +#: common/models.py:2523 +msgid "Valid choices for this parameter (comma-separated)" msgstr "" -#: common/models.py:2568 -msgid "Email Message" +#: common/models.py:2534 +msgid "Selection list for this parameter" msgstr "" -#: common/models.py:2569 -msgid "Email Messages" +#: common/models.py:2539 part/models.py:3769 report/models.py:287 +msgid "Enabled" msgstr "" -#: common/models.py:2576 -msgid "Announced" +#: common/models.py:2540 +msgid "Is this parameter template enabled?" msgstr "" -#: common/models.py:2578 -msgid "Sent" -msgstr "" - -#: common/models.py:2579 -msgid "Failed" +#: common/models.py:2581 +msgid "Parameter" msgstr "" #: common/models.py:2582 -msgid "Delivered" -msgstr "" - -#: common/models.py:2590 -msgid "Confirmed" -msgstr "" - -#: common/models.py:2596 -msgid "Inbound" -msgstr "" - -#: common/models.py:2597 -msgid "Outbound" -msgstr "" - -#: common/models.py:2602 -msgid "No Reply" -msgstr "" - -#: common/models.py:2603 -msgid "Track Delivery" -msgstr "" - -#: common/models.py:2604 -msgid "Track Read" -msgstr "" - -#: common/models.py:2605 -msgid "Track Click" -msgstr "" - -#: common/models.py:2608 common/models.py:2711 -msgid "Global ID" -msgstr "" - -#: common/models.py:2621 -msgid "Identifier for this message (might be supplied by external system)" +msgid "Parameters" msgstr "" #: common/models.py:2628 +msgid "Invalid choice for parameter value" +msgstr "" + +#: common/models.py:2698 common/serializers.py:783 +msgid "Invalid model type specified for parameter" +msgstr "" + +#: common/models.py:2734 +msgid "Model ID" +msgstr "" + +#: common/models.py:2735 +msgid "ID of the target model for this parameter" +msgstr "" + +#: common/models.py:2744 common/setting/system.py:450 report/models.py:373 +#: report/models.py:669 report/serializers.py:94 report/serializers.py:135 +#: stock/serializers.py:234 +msgid "Template" +msgstr "" + +#: common/models.py:2745 +msgid "Parameter template" +msgstr "" + +#: common/models.py:2750 common/models.py:2792 importer/models.py:546 +msgid "Data" +msgstr "" + +#: common/models.py:2751 +msgid "Parameter Value" +msgstr "" + +#: common/models.py:2760 company/models.py:810 order/serializers.py:894 +#: order/serializers.py:2064 part/models.py:4075 part/models.py:4444 +#: report/templates/report/inventree_bill_of_materials_report.html:140 +#: report/templates/report/inventree_purchase_order_report.html:39 +#: report/templates/report/inventree_return_order_report.html:27 +#: report/templates/report/inventree_sales_order_report.html:32 +#: report/templates/report/inventree_stock_location_report.html:105 +#: stock/serializers.py:813 +msgid "Note" +msgstr "" + +#: common/models.py:2761 stock/serializers.py:718 +msgid "Optional note field" +msgstr "" + +#: common/models.py:2788 +msgid "Barcode Scan" +msgstr "" + +#: common/models.py:2793 +msgid "Barcode data" +msgstr "" + +#: common/models.py:2804 +msgid "User who scanned the barcode" +msgstr "" + +#: common/models.py:2809 importer/models.py:69 +msgid "Timestamp" +msgstr "" + +#: common/models.py:2810 +msgid "Date and time of the barcode scan" +msgstr "" + +#: common/models.py:2816 +msgid "URL endpoint which processed the barcode" +msgstr "" + +#: common/models.py:2823 order/models.py:1833 plugin/serializers.py:93 +msgid "Context" +msgstr "" + +#: common/models.py:2824 +msgid "Context data for the barcode scan" +msgstr "" + +#: common/models.py:2831 +msgid "Response" +msgstr "" + +#: common/models.py:2832 +msgid "Response data from the barcode scan" +msgstr "" + +#: common/models.py:2838 report/templates/report/inventree_test_report.html:103 +#: stock/models.py:2970 +msgid "Result" +msgstr "" + +#: common/models.py:2839 +msgid "Was the barcode scan successful?" +msgstr "" + +#: common/models.py:2921 +msgid "An error occurred" +msgstr "" + +#: common/models.py:2942 +msgid "INVE-E8: Email log deletion is protected. Set INVENTREE_PROTECT_EMAIL_LOG to False to allow deletion." +msgstr "" + +#: common/models.py:2989 +msgid "Email Message" +msgstr "" + +#: common/models.py:2990 +msgid "Email Messages" +msgstr "" + +#: common/models.py:2997 +msgid "Announced" +msgstr "" + +#: common/models.py:2999 +msgid "Sent" +msgstr "" + +#: common/models.py:3000 +msgid "Failed" +msgstr "" + +#: common/models.py:3003 +msgid "Delivered" +msgstr "" + +#: common/models.py:3011 +msgid "Confirmed" +msgstr "" + +#: common/models.py:3017 +msgid "Inbound" +msgstr "" + +#: common/models.py:3018 +msgid "Outbound" +msgstr "" + +#: common/models.py:3023 +msgid "No Reply" +msgstr "" + +#: common/models.py:3024 +msgid "Track Delivery" +msgstr "" + +#: common/models.py:3025 +msgid "Track Read" +msgstr "" + +#: common/models.py:3026 +msgid "Track Click" +msgstr "" + +#: common/models.py:3029 common/models.py:3132 +msgid "Global ID" +msgstr "" + +#: common/models.py:3042 +msgid "Identifier for this message (might be supplied by external system)" +msgstr "" + +#: common/models.py:3049 msgid "Thread ID" msgstr "" -#: common/models.py:2630 +#: common/models.py:3051 msgid "Identifier for this message thread (might be supplied by external system)" msgstr "" -#: common/models.py:2639 +#: common/models.py:3060 msgid "Thread" msgstr "" -#: common/models.py:2640 +#: common/models.py:3061 msgid "Linked thread for this message" msgstr "" -#: common/models.py:2656 -msgid "Prioriy" +#: common/models.py:3077 +msgid "Priority" msgstr "" -#: common/models.py:2698 +#: common/models.py:3119 msgid "Email Thread" msgstr "" -#: common/models.py:2699 +#: common/models.py:3120 msgid "Email Threads" msgstr "" -#: common/models.py:2705 generic/states/serializers.py:16 +#: common/models.py:3126 generic/states/serializers.py:16 #: machine/serializers.py:24 plugin/models.py:46 users/models.py:113 msgid "Key" msgstr "" -#: common/models.py:2708 +#: common/models.py:3129 msgid "Unique key for this thread (used to identify the thread)" msgstr "" -#: common/models.py:2712 +#: common/models.py:3133 msgid "Unique identifier for this thread" msgstr "" -#: common/models.py:2719 +#: common/models.py:3140 msgid "Started Internal" msgstr "" -#: common/models.py:2720 +#: common/models.py:3141 msgid "Was this thread started internally?" msgstr "" -#: common/models.py:2725 +#: common/models.py:3146 msgid "Date and time that the thread was created" msgstr "" -#: common/models.py:2730 +#: common/models.py:3151 msgid "Date and time that the thread was last updated" msgstr "" @@ -2200,7 +2340,7 @@ msgstr "" msgid "A order that is assigned to you was canceled" msgstr "" -#: common/notifications.py:73 common/notifications.py:80 order/api.py:594 +#: common/notifications.py:73 common/notifications.py:80 order/api.py:600 msgid "Items Received" msgstr "" @@ -2212,88 +2352,93 @@ msgstr "" msgid "Items have been received against a return order" msgstr "" -#: common/serializers.py:145 +#: common/serializers.py:149 msgid "Indicates if the setting is overridden by an environment variable" msgstr "" -#: common/serializers.py:147 +#: common/serializers.py:151 msgid "Override" msgstr "" -#: common/serializers.py:498 +#: common/serializers.py:502 msgid "Is Running" msgstr "" -#: common/serializers.py:504 +#: common/serializers.py:508 msgid "Pending Tasks" msgstr "" -#: common/serializers.py:510 +#: common/serializers.py:514 msgid "Scheduled Tasks" msgstr "" -#: common/serializers.py:516 +#: common/serializers.py:520 msgid "Failed Tasks" msgstr "" -#: common/serializers.py:531 +#: common/serializers.py:535 msgid "Task ID" msgstr "" -#: common/serializers.py:531 +#: common/serializers.py:535 msgid "Unique task ID" msgstr "" -#: common/serializers.py:533 +#: common/serializers.py:537 msgid "Lock" msgstr "" -#: common/serializers.py:533 +#: common/serializers.py:537 msgid "Lock time" msgstr "" -#: common/serializers.py:535 +#: common/serializers.py:539 msgid "Task name" msgstr "" -#: common/serializers.py:537 +#: common/serializers.py:541 msgid "Function" msgstr "" -#: common/serializers.py:537 +#: common/serializers.py:541 msgid "Function name" msgstr "" -#: common/serializers.py:539 +#: common/serializers.py:543 msgid "Arguments" msgstr "" -#: common/serializers.py:539 +#: common/serializers.py:543 msgid "Task arguments" msgstr "" -#: common/serializers.py:542 +#: common/serializers.py:546 msgid "Keyword Arguments" msgstr "" -#: common/serializers.py:542 +#: common/serializers.py:546 msgid "Task keyword arguments" msgstr "" -#: common/serializers.py:652 +#: common/serializers.py:656 msgid "Filename" msgstr "" -#: common/serializers.py:659 importer/models.py:89 report/api.py:41 +#: common/serializers.py:663 common/serializers.py:730 +#: common/serializers.py:805 importer/models.py:89 report/api.py:41 #: report/models.py:293 report/serializers.py:52 msgid "Model Type" msgstr "" -#: common/serializers.py:687 +#: common/serializers.py:691 msgid "User does not have permission to create or edit attachments for this model" msgstr "" -#: common/serializers.py:731 common/serializers.py:834 +#: common/serializers.py:786 +msgid "User does not have permission to create or edit parameters for this model" +msgstr "" + +#: common/serializers.py:850 common/serializers.py:953 msgid "Selection list is locked" msgstr "" @@ -2369,7 +2514,7 @@ msgstr "" msgid "Show the `about` modal only to superusers" msgstr "" -#: common/setting/system.py:224 company/models.py:144 company/models.py:145 +#: common/setting/system.py:224 company/models.py:145 company/models.py:146 msgid "Company name" msgstr "" @@ -2412,8 +2557,8 @@ msgstr "" #: common/setting/system.py:253 common/setting/system.py:293 #: common/setting/system.py:306 common/setting/system.py:314 #: common/setting/system.py:321 common/setting/system.py:330 -#: common/setting/system.py:339 common/setting/system.py:588 -#: common/setting/system.py:616 common/setting/system.py:707 +#: common/setting/system.py:339 common/setting/system.py:580 +#: common/setting/system.py:608 common/setting/system.py:707 #: common/setting/system.py:1103 common/setting/system.py:1119 msgid "days" msgstr "" @@ -2658,12 +2803,6 @@ msgstr "" msgid "Copy category parameter templates when creating a part" msgstr "" -#: common/setting/system.py:450 part/models.py:4054 report/models.py:373 -#: report/models.py:669 report/serializers.py:94 report/serializers.py:135 -#: stock/serializers.py:234 -msgid "Template" -msgstr "" - #: common/setting/system.py:451 msgid "Parts are templates by default" msgstr "" @@ -2672,8 +2811,8 @@ msgstr "" msgid "Parts can be assembled from other components by default" msgstr "" -#: common/setting/system.py:462 part/models.py:1208 part/serializers.py:1734 -#: part/serializers.py:1741 +#: common/setting/system.py:462 part/models.py:1296 part/serializers.py:1599 +#: part/serializers.py:1606 msgid "Component" msgstr "" @@ -2681,7 +2820,7 @@ msgstr "" msgid "Parts can be used as sub-components by default" msgstr "" -#: common/setting/system.py:468 part/models.py:1226 +#: common/setting/system.py:468 part/models.py:1314 msgid "Purchaseable" msgstr "" @@ -2689,7 +2828,7 @@ msgstr "" msgid "Parts are purchaseable by default" msgstr "" -#: common/setting/system.py:474 part/models.py:1232 stock/api.py:643 +#: common/setting/system.py:474 part/models.py:1320 stock/api.py:643 msgid "Salable" msgstr "" @@ -2701,7 +2840,7 @@ msgstr "" msgid "Parts are trackable by default" msgstr "" -#: common/setting/system.py:486 part/models.py:1248 +#: common/setting/system.py:486 part/models.py:1336 msgid "Virtual" msgstr "" @@ -2750,158 +2889,158 @@ msgid "Part category default icon (empty means no icon)" msgstr "" #: common/setting/system.py:525 -msgid "Enforce Parameter Units" -msgstr "" - -#: common/setting/system.py:527 -msgid "If units are provided, parameter values must match the specified units" -msgstr "" - -#: common/setting/system.py:533 msgid "Minimum Pricing Decimal Places" msgstr "" -#: common/setting/system.py:535 +#: common/setting/system.py:527 msgid "Minimum number of decimal places to display when rendering pricing data" msgstr "" -#: common/setting/system.py:546 +#: common/setting/system.py:538 msgid "Maximum Pricing Decimal Places" msgstr "" -#: common/setting/system.py:548 +#: common/setting/system.py:540 msgid "Maximum number of decimal places to display when rendering pricing data" msgstr "" -#: common/setting/system.py:559 +#: common/setting/system.py:551 msgid "Use Supplier Pricing" msgstr "" -#: common/setting/system.py:561 +#: common/setting/system.py:553 msgid "Include supplier price breaks in overall pricing calculations" msgstr "" -#: common/setting/system.py:567 +#: common/setting/system.py:559 msgid "Purchase History Override" msgstr "" -#: common/setting/system.py:569 +#: common/setting/system.py:561 msgid "Historical purchase order pricing overrides supplier price breaks" msgstr "" -#: common/setting/system.py:575 +#: common/setting/system.py:567 msgid "Use Stock Item Pricing" msgstr "" -#: common/setting/system.py:577 +#: common/setting/system.py:569 msgid "Use pricing from manually entered stock data for pricing calculations" msgstr "" -#: common/setting/system.py:583 +#: common/setting/system.py:575 msgid "Stock Item Pricing Age" msgstr "" -#: common/setting/system.py:585 +#: common/setting/system.py:577 msgid "Exclude stock items older than this number of days from pricing calculations" msgstr "" -#: common/setting/system.py:592 +#: common/setting/system.py:584 msgid "Use Variant Pricing" msgstr "" -#: common/setting/system.py:593 +#: common/setting/system.py:585 msgid "Include variant pricing in overall pricing calculations" msgstr "" -#: common/setting/system.py:598 +#: common/setting/system.py:590 msgid "Active Variants Only" msgstr "" -#: common/setting/system.py:600 +#: common/setting/system.py:592 msgid "Only use active variant parts for calculating variant pricing" msgstr "" -#: common/setting/system.py:606 +#: common/setting/system.py:598 msgid "Auto Update Pricing" msgstr "" -#: common/setting/system.py:608 +#: common/setting/system.py:600 msgid "Automatically update part pricing when internal data changes" msgstr "" -#: common/setting/system.py:614 +#: common/setting/system.py:606 msgid "Pricing Rebuild Interval" msgstr "" -#: common/setting/system.py:615 +#: common/setting/system.py:607 msgid "Number of days before part pricing is automatically updated" msgstr "" -#: common/setting/system.py:621 +#: common/setting/system.py:613 msgid "Internal Prices" msgstr "" -#: common/setting/system.py:622 +#: common/setting/system.py:614 msgid "Enable internal prices for parts" msgstr "" -#: common/setting/system.py:627 +#: common/setting/system.py:619 msgid "Internal Price Override" msgstr "" -#: common/setting/system.py:629 +#: common/setting/system.py:621 msgid "If available, internal prices override price range calculations" msgstr "" -#: common/setting/system.py:635 +#: common/setting/system.py:627 msgid "Enable label printing" msgstr "" -#: common/setting/system.py:636 +#: common/setting/system.py:628 msgid "Enable label printing from the web interface" msgstr "" -#: common/setting/system.py:641 +#: common/setting/system.py:633 msgid "Label Image DPI" msgstr "" -#: common/setting/system.py:643 +#: common/setting/system.py:635 msgid "DPI resolution when generating image files to supply to label printing plugins" msgstr "" -#: common/setting/system.py:649 +#: common/setting/system.py:641 msgid "Enable Reports" msgstr "" -#: common/setting/system.py:650 +#: common/setting/system.py:642 msgid "Enable generation of reports" msgstr "" -#: common/setting/system.py:655 +#: common/setting/system.py:647 msgid "Debug Mode" msgstr "" -#: common/setting/system.py:656 +#: common/setting/system.py:648 msgid "Generate reports in debug mode (HTML output)" msgstr "" -#: common/setting/system.py:661 +#: common/setting/system.py:653 msgid "Log Report Errors" msgstr "" -#: common/setting/system.py:662 +#: common/setting/system.py:654 msgid "Log errors which occur when generating reports" msgstr "" -#: common/setting/system.py:667 plugin/builtin/labels/label_sheet.py:29 +#: common/setting/system.py:659 plugin/builtin/labels/label_sheet.py:29 #: report/models.py:381 msgid "Page Size" msgstr "" -#: common/setting/system.py:668 +#: common/setting/system.py:660 msgid "Default page size for PDF reports" msgstr "" +#: common/setting/system.py:665 +msgid "Enforce Parameter Units" +msgstr "" + +#: common/setting/system.py:667 +msgid "If units are provided, parameter values must match the specified units" +msgstr "" + #: common/setting/system.py:673 msgid "Globally Unique Serials" msgstr "" @@ -3457,688 +3596,677 @@ msgid "Display PDF reports in the browser, instead of downloading as a file" msgstr "" #: common/setting/user.py:45 -msgid "Search Parts" +msgid "Barcode Scanner in Form Fields" msgstr "" #: common/setting/user.py:46 -msgid "Display parts in search preview window" +msgid "Allow barcode scanner input in form fields" msgstr "" #: common/setting/user.py:51 -msgid "Search Supplier Parts" +msgid "Search Parts" msgstr "" #: common/setting/user.py:52 -msgid "Display supplier parts in search preview window" +msgid "Display parts in search preview window" msgstr "" #: common/setting/user.py:57 -msgid "Search Manufacturer Parts" +msgid "Search Supplier Parts" msgstr "" #: common/setting/user.py:58 -msgid "Display manufacturer parts in search preview window" +msgid "Display supplier parts in search preview window" msgstr "" #: common/setting/user.py:63 -msgid "Hide Inactive Parts" +msgid "Search Manufacturer Parts" msgstr "" #: common/setting/user.py:64 -msgid "Excluded inactive parts from search preview window" +msgid "Display manufacturer parts in search preview window" msgstr "" #: common/setting/user.py:69 -msgid "Search Categories" +msgid "Hide Inactive Parts" msgstr "" #: common/setting/user.py:70 -msgid "Display part categories in search preview window" +msgid "Excluded inactive parts from search preview window" msgstr "" #: common/setting/user.py:75 -msgid "Search Stock" +msgid "Search Categories" msgstr "" #: common/setting/user.py:76 -msgid "Display stock items in search preview window" +msgid "Display part categories in search preview window" msgstr "" #: common/setting/user.py:81 +msgid "Search Stock" +msgstr "" + +#: common/setting/user.py:82 +msgid "Display stock items in search preview window" +msgstr "" + +#: common/setting/user.py:87 msgid "Hide Unavailable Stock Items" msgstr "" -#: common/setting/user.py:83 +#: common/setting/user.py:89 msgid "Exclude stock items which are not available from the search preview window" msgstr "" -#: common/setting/user.py:89 +#: common/setting/user.py:95 msgid "Search Locations" msgstr "" -#: common/setting/user.py:90 +#: common/setting/user.py:96 msgid "Display stock locations in search preview window" msgstr "" -#: common/setting/user.py:95 +#: common/setting/user.py:101 msgid "Search Companies" msgstr "" -#: common/setting/user.py:96 +#: common/setting/user.py:102 msgid "Display companies in search preview window" msgstr "" -#: common/setting/user.py:101 +#: common/setting/user.py:107 msgid "Search Build Orders" msgstr "" -#: common/setting/user.py:102 +#: common/setting/user.py:108 msgid "Display build orders in search preview window" msgstr "" -#: common/setting/user.py:107 +#: common/setting/user.py:113 msgid "Search Purchase Orders" msgstr "" -#: common/setting/user.py:108 +#: common/setting/user.py:114 msgid "Display purchase orders in search preview window" msgstr "" -#: common/setting/user.py:113 +#: common/setting/user.py:119 msgid "Exclude Inactive Purchase Orders" msgstr "" -#: common/setting/user.py:114 +#: common/setting/user.py:120 msgid "Exclude inactive purchase orders from search preview window" msgstr "" -#: common/setting/user.py:119 +#: common/setting/user.py:125 msgid "Search Sales Orders" msgstr "" -#: common/setting/user.py:120 +#: common/setting/user.py:126 msgid "Display sales orders in search preview window" msgstr "" -#: common/setting/user.py:125 +#: common/setting/user.py:131 msgid "Exclude Inactive Sales Orders" msgstr "" -#: common/setting/user.py:126 +#: common/setting/user.py:132 msgid "Exclude inactive sales orders from search preview window" msgstr "" -#: common/setting/user.py:131 +#: common/setting/user.py:137 msgid "Search Sales Order Shipments" msgstr "" -#: common/setting/user.py:132 +#: common/setting/user.py:138 msgid "Display sales order shipments in search preview window" msgstr "" -#: common/setting/user.py:137 +#: common/setting/user.py:143 msgid "Search Return Orders" msgstr "" -#: common/setting/user.py:138 +#: common/setting/user.py:144 msgid "Display return orders in search preview window" msgstr "" -#: common/setting/user.py:143 +#: common/setting/user.py:149 msgid "Exclude Inactive Return Orders" msgstr "" -#: common/setting/user.py:144 +#: common/setting/user.py:150 msgid "Exclude inactive return orders from search preview window" msgstr "" -#: common/setting/user.py:149 +#: common/setting/user.py:155 msgid "Search Preview Results" msgstr "" -#: common/setting/user.py:151 +#: common/setting/user.py:157 msgid "Number of results to show in each section of the search preview window" msgstr "" -#: common/setting/user.py:157 +#: common/setting/user.py:163 msgid "Regex Search" msgstr "" -#: common/setting/user.py:158 +#: common/setting/user.py:164 msgid "Enable regular expressions in search queries" msgstr "" -#: common/setting/user.py:163 +#: common/setting/user.py:169 msgid "Whole Word Search" msgstr "" -#: common/setting/user.py:164 +#: common/setting/user.py:170 msgid "Search queries return results for whole word matches" msgstr "" -#: common/setting/user.py:169 +#: common/setting/user.py:175 msgid "Search Notes" msgstr "" -#: common/setting/user.py:171 +#: common/setting/user.py:177 msgid "Search queries return results for matches from the item's notes" msgstr "" -#: common/setting/user.py:177 +#: common/setting/user.py:183 msgid "Escape Key Closes Forms" msgstr "" -#: common/setting/user.py:178 +#: common/setting/user.py:184 msgid "Use the escape key to close modal forms" msgstr "" -#: common/setting/user.py:183 +#: common/setting/user.py:189 msgid "Fixed Navbar" msgstr "" -#: common/setting/user.py:184 +#: common/setting/user.py:190 msgid "The navbar position is fixed to the top of the screen" msgstr "" -#: common/setting/user.py:189 +#: common/setting/user.py:195 msgid "Fixed Table Headers" msgstr "" -#: common/setting/user.py:190 +#: common/setting/user.py:196 msgid "Table headers are fixed to the top of the table" msgstr "" -#: common/setting/user.py:195 +#: common/setting/user.py:201 msgid "Show Spotlight" msgstr "" -#: common/setting/user.py:196 +#: common/setting/user.py:202 msgid "Enable spotlight navigation functionality" msgstr "" -#: common/setting/user.py:201 +#: common/setting/user.py:207 msgid "Navigation Icons" msgstr "" -#: common/setting/user.py:202 +#: common/setting/user.py:208 msgid "Display icons in the navigation bar" msgstr "" -#: common/setting/user.py:207 +#: common/setting/user.py:213 msgid "Date Format" msgstr "" -#: common/setting/user.py:208 +#: common/setting/user.py:214 msgid "Preferred format for displaying dates" msgstr "" -#: common/setting/user.py:221 +#: common/setting/user.py:227 msgid "Show Stock History" msgstr "" -#: common/setting/user.py:222 +#: common/setting/user.py:228 msgid "Display stock history information in the part detail page" msgstr "" -#: common/setting/user.py:227 +#: common/setting/user.py:233 msgid "Show Last Breadcrumb" msgstr "" -#: common/setting/user.py:228 +#: common/setting/user.py:234 msgid "Show the current page in breadcrumbs" msgstr "" -#: common/setting/user.py:233 +#: common/setting/user.py:239 msgid "Show full stock location in tables" msgstr "" -#: common/setting/user.py:235 +#: common/setting/user.py:241 msgid "Disabled: The full location path is displayed as a hover tooltip. Enabled: The full location path is displayed as plain text." msgstr "" -#: common/setting/user.py:241 +#: common/setting/user.py:247 msgid "Show full part categories in tables" msgstr "" -#: common/setting/user.py:243 +#: common/setting/user.py:249 msgid "Disabled: The full category path is displayed as a hover tooltip. Enabled: The full category path is displayed as plain text." msgstr "" -#: common/setting/user.py:249 +#: common/setting/user.py:255 msgid "Receive error reports" msgstr "" -#: common/setting/user.py:250 +#: common/setting/user.py:256 msgid "Receive notifications for system errors" msgstr "" -#: common/setting/user.py:255 +#: common/setting/user.py:261 msgid "Last used printing machines" msgstr "" -#: common/setting/user.py:256 +#: common/setting/user.py:262 msgid "Save the last used printing machines for a user" msgstr "" -#: common/validators.py:34 +#: common/validators.py:38 +msgid "All models" +msgstr "" + +#: common/validators.py:63 msgid "No attachment model type provided" msgstr "" -#: common/validators.py:40 +#: common/validators.py:69 msgid "Invalid attachment model type" msgstr "" -#: common/validators.py:81 +#: common/validators.py:110 msgid "Minimum places cannot be greater than maximum places" msgstr "" -#: common/validators.py:93 +#: common/validators.py:122 msgid "Maximum places cannot be less than minimum places" msgstr "" -#: common/validators.py:104 +#: common/validators.py:133 msgid "An empty domain is not allowed." msgstr "" -#: common/validators.py:106 +#: common/validators.py:135 #, python-brace-format msgid "Invalid domain name: {domain}" msgstr "" -#: common/validators.py:122 +#: common/validators.py:151 msgid "Value must be uppercase" msgstr "" -#: common/validators.py:128 +#: common/validators.py:157 msgid "Value must be a valid variable identifier" msgstr "" -#: company/api.py:147 +#: company/api.py:141 msgid "Part is Active" msgstr "" -#: company/api.py:151 +#: company/api.py:145 msgid "Manufacturer is Active" msgstr "" -#: company/api.py:286 +#: company/api.py:246 msgid "Supplier Part is Active" msgstr "" -#: company/api.py:290 +#: company/api.py:250 msgid "Internal Part is Active" msgstr "" -#: company/api.py:295 +#: company/api.py:255 msgid "Supplier is Active" msgstr "" -#: company/api.py:307 company/models.py:520 company/serializers.py:457 -#: part/serializers.py:566 +#: company/api.py:267 company/models.py:522 company/serializers.py:502 +#: part/serializers.py:477 msgid "Manufacturer" msgstr "" -#: company/api.py:314 company/models.py:121 company/models.py:392 +#: company/api.py:274 company/models.py:122 company/models.py:393 #: stock/api.py:900 msgid "Company" msgstr "" -#: company/api.py:324 +#: company/api.py:284 msgid "Has Stock" msgstr "" -#: company/models.py:122 +#: company/models.py:123 msgid "Companies" msgstr "" -#: company/models.py:150 +#: company/models.py:151 msgid "Company description" msgstr "" -#: company/models.py:151 +#: company/models.py:152 msgid "Description of the company" msgstr "" -#: company/models.py:157 +#: company/models.py:158 msgid "Website" msgstr "" -#: company/models.py:158 +#: company/models.py:159 msgid "Company website URL" msgstr "" -#: company/models.py:164 +#: company/models.py:165 msgid "Phone number" msgstr "" -#: company/models.py:166 +#: company/models.py:167 msgid "Contact phone number" msgstr "" -#: company/models.py:173 +#: company/models.py:174 msgid "Contact email address" msgstr "" -#: company/models.py:178 company/models.py:296 order/models.py:513 +#: company/models.py:179 company/models.py:297 order/models.py:514 #: users/models.py:561 msgid "Contact" msgstr "" -#: company/models.py:180 +#: company/models.py:181 msgid "Point of contact" msgstr "" -#: company/models.py:186 +#: company/models.py:187 msgid "Link to external company information" msgstr "" -#: company/models.py:191 +#: company/models.py:192 msgid "Is this company active?" msgstr "" -#: company/models.py:196 +#: company/models.py:197 msgid "Is customer" msgstr "" -#: company/models.py:197 +#: company/models.py:198 msgid "Do you sell items to this company?" msgstr "" -#: company/models.py:202 +#: company/models.py:203 msgid "Is supplier" msgstr "" -#: company/models.py:203 +#: company/models.py:204 msgid "Do you purchase items from this company?" msgstr "" -#: company/models.py:208 +#: company/models.py:209 msgid "Is manufacturer" msgstr "" -#: company/models.py:209 +#: company/models.py:210 msgid "Does this company manufacture parts?" msgstr "" -#: company/models.py:217 +#: company/models.py:218 msgid "Default currency used for this company" msgstr "" -#: company/models.py:224 +#: company/models.py:225 msgid "Tax ID" msgstr "" -#: company/models.py:225 +#: company/models.py:226 msgid "Company Tax ID" msgstr "" -#: company/models.py:335 order/models.py:523 order/models.py:2288 +#: company/models.py:336 order/models.py:524 order/models.py:2289 msgid "Address" msgstr "" -#: company/models.py:336 +#: company/models.py:337 msgid "Addresses" msgstr "" -#: company/models.py:393 +#: company/models.py:394 msgid "Select company" msgstr "" -#: company/models.py:398 +#: company/models.py:399 msgid "Address title" msgstr "" -#: company/models.py:399 +#: company/models.py:400 msgid "Title describing the address entry" msgstr "" -#: company/models.py:405 +#: company/models.py:406 msgid "Primary address" msgstr "" -#: company/models.py:406 +#: company/models.py:407 msgid "Set as primary address" msgstr "" -#: company/models.py:411 +#: company/models.py:412 msgid "Line 1" msgstr "" -#: company/models.py:412 +#: company/models.py:413 msgid "Address line 1" msgstr "" -#: company/models.py:418 +#: company/models.py:419 msgid "Line 2" msgstr "" -#: company/models.py:419 +#: company/models.py:420 msgid "Address line 2" msgstr "" -#: company/models.py:425 company/models.py:426 +#: company/models.py:426 company/models.py:427 msgid "Postal code" msgstr "" -#: company/models.py:432 +#: company/models.py:433 msgid "City/Region" msgstr "" -#: company/models.py:433 +#: company/models.py:434 msgid "Postal code city/region" msgstr "" -#: company/models.py:439 +#: company/models.py:440 msgid "State/Province" msgstr "" -#: company/models.py:440 +#: company/models.py:441 msgid "State or province" msgstr "" -#: company/models.py:446 +#: company/models.py:447 msgid "Country" msgstr "" -#: company/models.py:447 +#: company/models.py:448 msgid "Address country" msgstr "" -#: company/models.py:453 +#: company/models.py:454 msgid "Courier shipping notes" msgstr "" -#: company/models.py:454 +#: company/models.py:455 msgid "Notes for shipping courier" msgstr "" -#: company/models.py:460 +#: company/models.py:461 msgid "Internal shipping notes" msgstr "" -#: company/models.py:461 +#: company/models.py:462 msgid "Shipping notes for internal use" msgstr "" -#: company/models.py:468 +#: company/models.py:469 msgid "Link to address information (external)" msgstr "" -#: company/models.py:492 company/models.py:609 company/models.py:832 -#: company/serializers.py:471 stock/api.py:561 +#: company/models.py:494 company/models.py:786 company/serializers.py:516 +#: stock/api.py:561 msgid "Manufacturer Part" msgstr "" -#: company/models.py:509 company/models.py:800 stock/models.py:1025 +#: company/models.py:511 company/models.py:754 stock/models.py:1025 #: stock/serializers.py:407 msgid "Base Part" msgstr "" -#: company/models.py:511 company/models.py:802 +#: company/models.py:513 company/models.py:756 msgid "Select part" msgstr "" -#: company/models.py:521 +#: company/models.py:523 msgid "Select manufacturer" msgstr "" -#: company/models.py:527 company/serializers.py:479 order/serializers.py:734 -#: part/serializers.py:576 +#: company/models.py:529 company/serializers.py:524 order/serializers.py:745 +#: part/serializers.py:487 msgid "MPN" msgstr "" -#: company/models.py:528 stock/serializers.py:572 +#: company/models.py:530 stock/serializers.py:572 msgid "Manufacturer Part Number" msgstr "" -#: company/models.py:535 +#: company/models.py:537 msgid "URL for external manufacturer part link" msgstr "" -#: company/models.py:544 +#: company/models.py:546 msgid "Manufacturer part description" msgstr "" -#: company/models.py:597 -msgid "Manufacturer Part Parameter" -msgstr "" - -#: company/models.py:616 -msgid "Parameter name" -msgstr "" - -#: company/models.py:623 -msgid "Parameter value" -msgstr "" - -#: company/models.py:630 part/models.py:1195 part/models.py:3857 -msgid "Units" -msgstr "" - -#: company/models.py:631 -msgid "Parameter units" -msgstr "" - -#: company/models.py:740 +#: company/models.py:694 msgid "Pack units must be compatible with the base part units" msgstr "" -#: company/models.py:747 +#: company/models.py:701 msgid "Pack units must be greater than zero" msgstr "" -#: company/models.py:761 +#: company/models.py:715 msgid "Linked manufacturer part must reference the same base part" msgstr "" -#: company/models.py:810 company/serializers.py:449 company/serializers.py:467 -#: order/models.py:639 part/serializers.py:550 +#: company/models.py:764 company/serializers.py:494 company/serializers.py:512 +#: order/models.py:640 part/serializers.py:461 #: plugin/builtin/suppliers/digikey.py:26 plugin/builtin/suppliers/lcsc.py:27 #: plugin/builtin/suppliers/mouser.py:25 plugin/builtin/suppliers/tme.py:27 #: stock/api.py:567 templates/email/overdue_purchase_order.html:16 msgid "Supplier" msgstr "" -#: company/models.py:811 +#: company/models.py:765 msgid "Select supplier" msgstr "" -#: company/models.py:817 part/serializers.py:561 +#: company/models.py:771 part/serializers.py:472 msgid "Supplier stock keeping unit" msgstr "" -#: company/models.py:823 +#: company/models.py:777 msgid "Is this supplier part active?" msgstr "" -#: company/models.py:833 +#: company/models.py:787 msgid "Select manufacturer part" msgstr "" -#: company/models.py:840 +#: company/models.py:794 msgid "URL for external supplier part link" msgstr "" -#: company/models.py:849 +#: company/models.py:803 msgid "Supplier part description" msgstr "" -#: company/models.py:856 order/serializers.py:883 order/serializers.py:2047 -#: part/models.py:4070 part/models.py:4450 part/models.py:4819 -#: report/templates/report/inventree_bill_of_materials_report.html:140 -#: report/templates/report/inventree_purchase_order_report.html:39 -#: report/templates/report/inventree_return_order_report.html:27 -#: report/templates/report/inventree_sales_order_report.html:32 -#: report/templates/report/inventree_stock_location_report.html:105 -#: stock/serializers.py:813 -msgid "Note" -msgstr "" - -#: company/models.py:865 part/models.py:2250 +#: company/models.py:819 part/models.py:2338 msgid "base cost" msgstr "" -#: company/models.py:866 part/models.py:2251 +#: company/models.py:820 part/models.py:2339 msgid "Minimum charge (e.g. stocking fee)" msgstr "" -#: company/models.py:873 order/serializers.py:875 stock/models.py:1056 +#: company/models.py:827 order/serializers.py:886 stock/models.py:1056 #: stock/serializers.py:1606 msgid "Packaging" msgstr "" -#: company/models.py:874 +#: company/models.py:828 msgid "Part packaging" msgstr "" -#: company/models.py:879 +#: company/models.py:833 msgid "Pack Quantity" msgstr "" -#: company/models.py:881 +#: company/models.py:835 msgid "Total quantity supplied in a single pack. Leave empty for single items." msgstr "" -#: company/models.py:900 part/models.py:2257 +#: company/models.py:854 part/models.py:2345 msgid "multiple" msgstr "" -#: company/models.py:901 +#: company/models.py:855 msgid "Order multiple" msgstr "" -#: company/models.py:913 +#: company/models.py:867 msgid "Quantity available from supplier" msgstr "" -#: company/models.py:919 +#: company/models.py:873 msgid "Availability Updated" msgstr "" -#: company/models.py:920 +#: company/models.py:874 msgid "Date of last update of availability data" msgstr "" -#: company/models.py:1048 +#: company/models.py:1002 msgid "Supplier Price Break" msgstr "" -#: company/serializers.py:181 +#: company/serializers.py:184 +msgid "Primary Address" +msgstr "" + +#: company/serializers.py:186 msgid "Return the string representation for the primary address. This property exists for backwards compatibility." msgstr "" -#: company/serializers.py:212 +#: company/serializers.py:218 msgid "Default currency used for this supplier" msgstr "" -#: company/serializers.py:248 +#: company/serializers.py:260 msgid "Company Name" msgstr "" -#: company/serializers.py:433 part/serializers.py:955 stock/serializers.py:428 +#: company/serializers.py:460 part/serializers.py:840 stock/serializers.py:428 msgid "In Stock" msgstr "" +#: company/serializers.py:477 +msgid "Price Breaks" +msgstr "" + #: data_exporter/mixins.py:325 data_exporter/mixins.py:403 msgid "Error occurred during data export" msgstr "" @@ -4291,7 +4419,7 @@ msgstr "" msgid "Errors" msgstr "" -#: importer/models.py:550 part/serializers.py:1268 +#: importer/models.py:550 part/serializers.py:1133 msgid "Valid" msgstr "" @@ -4403,7 +4531,7 @@ msgstr "" msgid "Connected" msgstr "" -#: machine/machine_types/label_printer.py:232 order/api.py:1795 +#: machine/machine_types/label_printer.py:232 order/api.py:1800 msgid "Unknown" msgstr "" @@ -4531,105 +4659,105 @@ msgstr "" msgid "Maximum value for progress type, required if type=progress" msgstr "" -#: order/api.py:125 +#: order/api.py:130 msgid "Order Reference" msgstr "" -#: order/api.py:153 order/api.py:1207 +#: order/api.py:158 order/api.py:1212 msgid "Outstanding" msgstr "" -#: order/api.py:169 +#: order/api.py:174 msgid "Has Project Code" msgstr "" -#: order/api.py:183 order/models.py:488 +#: order/api.py:188 order/models.py:489 msgid "Created By" msgstr "" -#: order/api.py:187 +#: order/api.py:192 msgid "Created Before" msgstr "" -#: order/api.py:191 +#: order/api.py:196 msgid "Created After" msgstr "" -#: order/api.py:195 +#: order/api.py:200 msgid "Has Start Date" msgstr "" -#: order/api.py:203 +#: order/api.py:208 msgid "Start Date Before" msgstr "" -#: order/api.py:207 +#: order/api.py:212 msgid "Start Date After" msgstr "" -#: order/api.py:211 +#: order/api.py:216 msgid "Has Target Date" msgstr "" -#: order/api.py:219 +#: order/api.py:224 msgid "Target Date Before" msgstr "" -#: order/api.py:223 +#: order/api.py:228 msgid "Target Date After" msgstr "" -#: order/api.py:274 +#: order/api.py:279 msgid "Has Pricing" msgstr "" -#: order/api.py:327 order/api.py:812 order/api.py:1490 +#: order/api.py:332 order/api.py:818 order/api.py:1495 msgid "Completed Before" msgstr "" -#: order/api.py:331 order/api.py:816 order/api.py:1494 +#: order/api.py:336 order/api.py:822 order/api.py:1499 msgid "Completed After" msgstr "" -#: order/api.py:337 order/api.py:341 +#: order/api.py:342 order/api.py:346 msgid "External Build Order" msgstr "" -#: order/api.py:526 order/api.py:914 order/api.py:1170 order/models.py:1922 -#: order/models.py:2049 order/models.py:2099 order/models.py:2279 -#: order/models.py:2477 order/models.py:2999 order/models.py:3065 +#: order/api.py:532 order/api.py:919 order/api.py:1175 order/models.py:1923 +#: order/models.py:2050 order/models.py:2100 order/models.py:2280 +#: order/models.py:2478 order/models.py:3000 order/models.py:3066 msgid "Order" msgstr "" -#: order/api.py:530 order/api.py:982 +#: order/api.py:536 order/api.py:987 msgid "Order Complete" msgstr "" -#: order/api.py:562 order/api.py:566 order/serializers.py:745 +#: order/api.py:568 order/api.py:572 order/serializers.py:756 msgid "Internal Part" msgstr "" -#: order/api.py:584 +#: order/api.py:590 msgid "Order Pending" msgstr "" -#: order/api.py:967 +#: order/api.py:972 msgid "Completed" msgstr "" -#: order/api.py:1223 +#: order/api.py:1228 msgid "Has Shipment" msgstr "" -#: order/api.py:1789 order/models.py:552 order/models.py:1923 -#: order/models.py:2050 +#: order/api.py:1794 order/models.py:553 order/models.py:1924 +#: order/models.py:2051 #: report/templates/report/inventree_purchase_order_report.html:14 #: stock/serializers.py:129 templates/email/overdue_purchase_order.html:15 msgid "Purchase Order" msgstr "" -#: order/api.py:1791 order/models.py:1251 order/models.py:2100 -#: order/models.py:2280 order/models.py:2478 +#: order/api.py:1796 order/models.py:1252 order/models.py:2101 +#: order/models.py:2281 order/models.py:2479 #: report/templates/report/inventree_build_order_report.html:135 #: report/templates/report/inventree_sales_order_report.html:14 #: report/templates/report/inventree_sales_order_shipment_report.html:15 @@ -4637,8 +4765,8 @@ msgstr "" msgid "Sales Order" msgstr "" -#: order/api.py:1793 order/models.py:2649 order/models.py:3000 -#: order/models.py:3066 +#: order/api.py:1798 order/models.py:2650 order/models.py:3001 +#: order/models.py:3067 #: report/templates/report/inventree_return_order_report.html:13 #: templates/email/overdue_return_order.html:15 msgid "Return Order" @@ -4654,722 +4782,722 @@ msgstr "" msgid "Total price for this order" msgstr "" -#: order/models.py:96 order/serializers.py:77 +#: order/models.py:96 order/serializers.py:78 msgid "Order Currency" msgstr "" -#: order/models.py:99 order/serializers.py:78 +#: order/models.py:99 order/serializers.py:79 msgid "Currency for this order (leave blank to use company default)" msgstr "" -#: order/models.py:324 +#: order/models.py:325 msgid "This order is locked and cannot be modified" msgstr "" -#: order/models.py:376 +#: order/models.py:377 msgid "Contact does not match selected company" msgstr "" -#: order/models.py:383 +#: order/models.py:384 msgid "Start date must be before target date" msgstr "" -#: order/models.py:390 +#: order/models.py:391 msgid "Address does not match selected company" msgstr "" -#: order/models.py:443 +#: order/models.py:444 msgid "Order description (optional)" msgstr "" -#: order/models.py:452 order/models.py:1806 +#: order/models.py:453 order/models.py:1807 msgid "Select project code for this order" msgstr "" -#: order/models.py:458 order/models.py:1787 order/models.py:2344 +#: order/models.py:459 order/models.py:1788 order/models.py:2345 msgid "Link to external page" msgstr "" -#: order/models.py:465 +#: order/models.py:466 msgid "Start date" msgstr "" -#: order/models.py:466 +#: order/models.py:467 msgid "Scheduled start date for this order" msgstr "" -#: order/models.py:472 order/models.py:1794 order/serializers.py:309 +#: order/models.py:473 order/models.py:1795 order/serializers.py:317 #: report/templates/report/inventree_build_order_report.html:125 msgid "Target Date" msgstr "" -#: order/models.py:474 +#: order/models.py:475 msgid "Expected date for order delivery. Order will be overdue after this date." msgstr "" -#: order/models.py:494 +#: order/models.py:495 msgid "Issue Date" msgstr "" -#: order/models.py:495 +#: order/models.py:496 msgid "Date order was issued" msgstr "" -#: order/models.py:503 +#: order/models.py:504 msgid "User or group responsible for this order" msgstr "" -#: order/models.py:514 +#: order/models.py:515 msgid "Point of contact for this order" msgstr "" -#: order/models.py:524 +#: order/models.py:525 msgid "Company address for this order" msgstr "" -#: order/models.py:615 order/models.py:1312 +#: order/models.py:616 order/models.py:1313 msgid "Order reference" msgstr "" -#: order/models.py:624 order/models.py:1336 order/models.py:2737 +#: order/models.py:625 order/models.py:1337 order/models.py:2738 #: stock/serializers.py:559 stock/serializers.py:988 users/models.py:542 msgid "Status" msgstr "" -#: order/models.py:625 +#: order/models.py:626 msgid "Purchase order status" msgstr "" -#: order/models.py:640 +#: order/models.py:641 msgid "Company from which the items are being ordered" msgstr "" -#: order/models.py:651 +#: order/models.py:652 msgid "Supplier Reference" msgstr "" -#: order/models.py:652 +#: order/models.py:653 msgid "Supplier order reference code" msgstr "" -#: order/models.py:661 +#: order/models.py:662 msgid "received by" msgstr "" -#: order/models.py:668 order/models.py:2752 +#: order/models.py:669 order/models.py:2753 msgid "Date order was completed" msgstr "" -#: order/models.py:677 order/models.py:1981 +#: order/models.py:678 order/models.py:1982 msgid "Destination" msgstr "" -#: order/models.py:678 order/models.py:1985 +#: order/models.py:679 order/models.py:1986 msgid "Destination for received items" msgstr "" -#: order/models.py:724 +#: order/models.py:725 msgid "Part supplier must match PO supplier" msgstr "" -#: order/models.py:994 +#: order/models.py:995 msgid "Line item does not match purchase order" msgstr "" -#: order/models.py:997 +#: order/models.py:998 msgid "Line item is missing a linked part" msgstr "" -#: order/models.py:1011 +#: order/models.py:1012 msgid "Quantity must be a positive number" msgstr "" -#: order/models.py:1323 order/models.py:2724 stock/models.py:1078 +#: order/models.py:1324 order/models.py:2725 stock/models.py:1078 #: stock/models.py:1079 stock/serializers.py:1322 #: templates/email/overdue_return_order.html:16 #: templates/email/overdue_sales_order.html:16 msgid "Customer" msgstr "" -#: order/models.py:1324 +#: order/models.py:1325 msgid "Company to which the items are being sold" msgstr "" -#: order/models.py:1337 +#: order/models.py:1338 msgid "Sales order status" msgstr "" -#: order/models.py:1348 order/models.py:2744 +#: order/models.py:1349 order/models.py:2745 msgid "Customer Reference " msgstr "" -#: order/models.py:1349 order/models.py:2745 +#: order/models.py:1350 order/models.py:2746 msgid "Customer order reference code" msgstr "" -#: order/models.py:1353 order/models.py:2296 +#: order/models.py:1354 order/models.py:2297 msgid "Shipment Date" msgstr "" -#: order/models.py:1362 +#: order/models.py:1363 msgid "shipped by" msgstr "" -#: order/models.py:1413 +#: order/models.py:1414 msgid "Order is already complete" msgstr "" -#: order/models.py:1416 +#: order/models.py:1417 msgid "Order is already cancelled" msgstr "" -#: order/models.py:1420 +#: order/models.py:1421 msgid "Only an open order can be marked as complete" msgstr "" -#: order/models.py:1424 +#: order/models.py:1425 msgid "Order cannot be completed as there are incomplete shipments" msgstr "" -#: order/models.py:1429 +#: order/models.py:1430 msgid "Order cannot be completed as there are incomplete allocations" msgstr "" -#: order/models.py:1438 +#: order/models.py:1439 msgid "Order cannot be completed as there are incomplete line items" msgstr "" -#: order/models.py:1733 order/models.py:1749 +#: order/models.py:1734 order/models.py:1750 msgid "The order is locked and cannot be modified" msgstr "" -#: order/models.py:1757 +#: order/models.py:1758 msgid "Item quantity" msgstr "" -#: order/models.py:1774 +#: order/models.py:1775 msgid "Line item reference" msgstr "" -#: order/models.py:1781 +#: order/models.py:1782 msgid "Line item notes" msgstr "" -#: order/models.py:1796 +#: order/models.py:1797 msgid "Target date for this line item (leave blank to use the target date from the order)" msgstr "" -#: order/models.py:1826 +#: order/models.py:1827 msgid "Line item description (optional)" msgstr "" -#: order/models.py:1833 +#: order/models.py:1834 msgid "Additional context for this line" msgstr "" -#: order/models.py:1843 +#: order/models.py:1844 msgid "Unit price" msgstr "" -#: order/models.py:1862 +#: order/models.py:1863 msgid "Purchase Order Line Item" msgstr "" -#: order/models.py:1889 +#: order/models.py:1890 msgid "Supplier part must match supplier" msgstr "" -#: order/models.py:1894 +#: order/models.py:1895 msgid "Build order must be marked as external" msgstr "" -#: order/models.py:1901 +#: order/models.py:1902 msgid "Build orders can only be linked to assembly parts" msgstr "" -#: order/models.py:1907 +#: order/models.py:1908 msgid "Build order part must match line item part" msgstr "" -#: order/models.py:1942 +#: order/models.py:1943 msgid "Supplier part" msgstr "" -#: order/models.py:1949 +#: order/models.py:1950 msgid "Received" msgstr "" -#: order/models.py:1950 +#: order/models.py:1951 msgid "Number of items received" msgstr "" -#: order/models.py:1958 stock/models.py:1201 stock/serializers.py:637 +#: order/models.py:1959 stock/models.py:1201 stock/serializers.py:637 msgid "Purchase Price" msgstr "" -#: order/models.py:1959 +#: order/models.py:1960 msgid "Unit purchase price" msgstr "" -#: order/models.py:1975 +#: order/models.py:1976 msgid "External Build Order to be fulfilled by this line item" msgstr "" -#: order/models.py:2038 +#: order/models.py:2039 msgid "Purchase Order Extra Line" msgstr "" -#: order/models.py:2067 +#: order/models.py:2068 msgid "Sales Order Line Item" msgstr "" -#: order/models.py:2092 +#: order/models.py:2093 msgid "Only salable parts can be assigned to a sales order" msgstr "" -#: order/models.py:2118 +#: order/models.py:2119 msgid "Sale Price" msgstr "" -#: order/models.py:2119 +#: order/models.py:2120 msgid "Unit sale price" msgstr "" -#: order/models.py:2128 order/status_codes.py:50 +#: order/models.py:2129 order/status_codes.py:50 msgid "Shipped" msgstr "" -#: order/models.py:2129 +#: order/models.py:2130 msgid "Shipped quantity" msgstr "" -#: order/models.py:2240 +#: order/models.py:2241 msgid "Sales Order Shipment" msgstr "" -#: order/models.py:2253 +#: order/models.py:2254 msgid "Shipment address must match the customer" msgstr "" -#: order/models.py:2289 +#: order/models.py:2290 msgid "Shipping address for this shipment" msgstr "" -#: order/models.py:2297 +#: order/models.py:2298 msgid "Date of shipment" msgstr "" -#: order/models.py:2303 +#: order/models.py:2304 msgid "Delivery Date" msgstr "" -#: order/models.py:2304 +#: order/models.py:2305 msgid "Date of delivery of shipment" msgstr "" -#: order/models.py:2312 +#: order/models.py:2313 msgid "Checked By" msgstr "" -#: order/models.py:2313 +#: order/models.py:2314 msgid "User who checked this shipment" msgstr "" -#: order/models.py:2320 order/models.py:2574 order/serializers.py:1711 -#: order/serializers.py:1835 +#: order/models.py:2321 order/models.py:2575 order/serializers.py:1725 +#: order/serializers.py:1849 #: report/templates/report/inventree_sales_order_shipment_report.html:14 msgid "Shipment" msgstr "" -#: order/models.py:2321 +#: order/models.py:2322 msgid "Shipment number" msgstr "" -#: order/models.py:2329 +#: order/models.py:2330 msgid "Tracking Number" msgstr "" -#: order/models.py:2330 +#: order/models.py:2331 msgid "Shipment tracking information" msgstr "" -#: order/models.py:2337 +#: order/models.py:2338 msgid "Invoice Number" msgstr "" -#: order/models.py:2338 +#: order/models.py:2339 msgid "Reference number for associated invoice" msgstr "" -#: order/models.py:2377 +#: order/models.py:2378 msgid "Shipment has already been sent" msgstr "" -#: order/models.py:2380 +#: order/models.py:2381 msgid "Shipment has no allocated stock items" msgstr "" -#: order/models.py:2387 +#: order/models.py:2388 msgid "Shipment must be checked before it can be completed" msgstr "" -#: order/models.py:2466 +#: order/models.py:2467 msgid "Sales Order Extra Line" msgstr "" -#: order/models.py:2495 +#: order/models.py:2496 msgid "Sales Order Allocation" msgstr "" -#: order/models.py:2518 order/models.py:2520 +#: order/models.py:2519 order/models.py:2521 msgid "Stock item has not been assigned" msgstr "" -#: order/models.py:2527 +#: order/models.py:2528 msgid "Cannot allocate stock item to a line with a different part" msgstr "" -#: order/models.py:2530 +#: order/models.py:2531 msgid "Cannot allocate stock to a line without a part" msgstr "" -#: order/models.py:2533 +#: order/models.py:2534 msgid "Allocation quantity cannot exceed stock quantity" msgstr "" -#: order/models.py:2552 order/serializers.py:1581 +#: order/models.py:2553 order/serializers.py:1595 msgid "Quantity must be 1 for serialized stock item" msgstr "" -#: order/models.py:2555 +#: order/models.py:2556 msgid "Sales order does not match shipment" msgstr "" -#: order/models.py:2556 plugin/base/barcodes/api.py:642 +#: order/models.py:2557 plugin/base/barcodes/api.py:642 msgid "Shipment does not match sales order" msgstr "" -#: order/models.py:2564 +#: order/models.py:2565 msgid "Line" msgstr "" -#: order/models.py:2575 +#: order/models.py:2576 msgid "Sales order shipment reference" msgstr "" -#: order/models.py:2588 order/models.py:3007 +#: order/models.py:2589 order/models.py:3008 msgid "Item" msgstr "" -#: order/models.py:2589 +#: order/models.py:2590 msgid "Select stock item to allocate" msgstr "" -#: order/models.py:2598 +#: order/models.py:2599 msgid "Enter stock allocation quantity" msgstr "" -#: order/models.py:2713 +#: order/models.py:2714 msgid "Return Order reference" msgstr "" -#: order/models.py:2725 +#: order/models.py:2726 msgid "Company from which items are being returned" msgstr "" -#: order/models.py:2738 +#: order/models.py:2739 msgid "Return order status" msgstr "" -#: order/models.py:2965 +#: order/models.py:2966 msgid "Return Order Line Item" msgstr "" -#: order/models.py:2978 +#: order/models.py:2979 msgid "Stock item must be specified" msgstr "" -#: order/models.py:2982 +#: order/models.py:2983 msgid "Return quantity exceeds stock quantity" msgstr "" -#: order/models.py:2987 +#: order/models.py:2988 msgid "Return quantity must be greater than zero" msgstr "" -#: order/models.py:2992 +#: order/models.py:2993 msgid "Invalid quantity for serialized stock item" msgstr "" -#: order/models.py:3008 +#: order/models.py:3009 msgid "Select item to return from customer" msgstr "" -#: order/models.py:3023 +#: order/models.py:3024 msgid "Received Date" msgstr "" -#: order/models.py:3024 +#: order/models.py:3025 msgid "The date this this return item was received" msgstr "" -#: order/models.py:3036 +#: order/models.py:3037 msgid "Outcome" msgstr "" -#: order/models.py:3037 +#: order/models.py:3038 msgid "Outcome for this line item" msgstr "" -#: order/models.py:3044 +#: order/models.py:3045 msgid "Cost associated with return or repair for this line item" msgstr "" -#: order/models.py:3054 +#: order/models.py:3055 msgid "Return Order Extra Line" msgstr "" -#: order/serializers.py:91 +#: order/serializers.py:92 msgid "Order ID" msgstr "" -#: order/serializers.py:91 +#: order/serializers.py:92 msgid "ID of the order to duplicate" msgstr "" -#: order/serializers.py:97 +#: order/serializers.py:98 msgid "Copy Lines" msgstr "" -#: order/serializers.py:98 +#: order/serializers.py:99 msgid "Copy line items from the original order" msgstr "" -#: order/serializers.py:104 +#: order/serializers.py:105 msgid "Copy Extra Lines" msgstr "" -#: order/serializers.py:105 +#: order/serializers.py:106 msgid "Copy extra line items from the original order" msgstr "" -#: order/serializers.py:120 +#: order/serializers.py:121 #: report/templates/report/inventree_purchase_order_report.html:29 #: report/templates/report/inventree_return_order_report.html:19 #: report/templates/report/inventree_sales_order_report.html:22 msgid "Line Items" msgstr "" -#: order/serializers.py:125 +#: order/serializers.py:126 msgid "Completed Lines" msgstr "" -#: order/serializers.py:192 +#: order/serializers.py:199 msgid "Duplicate Order" msgstr "" -#: order/serializers.py:193 +#: order/serializers.py:200 msgid "Specify options for duplicating this order" msgstr "" -#: order/serializers.py:270 +#: order/serializers.py:278 msgid "Invalid order ID" msgstr "" -#: order/serializers.py:466 +#: order/serializers.py:477 msgid "Supplier Name" msgstr "" -#: order/serializers.py:510 +#: order/serializers.py:521 msgid "Order cannot be cancelled" msgstr "" -#: order/serializers.py:525 order/serializers.py:1602 +#: order/serializers.py:536 order/serializers.py:1616 msgid "Allow order to be closed with incomplete line items" msgstr "" -#: order/serializers.py:535 order/serializers.py:1612 +#: order/serializers.py:546 order/serializers.py:1626 msgid "Order has incomplete line items" msgstr "" -#: order/serializers.py:665 +#: order/serializers.py:676 msgid "Order is not open" msgstr "" -#: order/serializers.py:692 +#: order/serializers.py:703 msgid "Auto Pricing" msgstr "" -#: order/serializers.py:694 +#: order/serializers.py:705 msgid "Automatically calculate purchase price based on supplier part data" msgstr "" -#: order/serializers.py:704 +#: order/serializers.py:715 msgid "Purchase price currency" msgstr "" -#: order/serializers.py:718 +#: order/serializers.py:729 msgid "Merge Items" msgstr "" -#: order/serializers.py:720 +#: order/serializers.py:731 msgid "Merge items with the same part, destination and target date into one line item" msgstr "" -#: order/serializers.py:727 part/serializers.py:560 +#: order/serializers.py:738 part/serializers.py:471 msgid "SKU" msgstr "" -#: order/serializers.py:741 part/models.py:1089 part/serializers.py:372 +#: order/serializers.py:752 part/models.py:1177 part/serializers.py:337 msgid "Internal Part Number" msgstr "" -#: order/serializers.py:749 +#: order/serializers.py:760 msgid "Internal Part Name" msgstr "" -#: order/serializers.py:765 +#: order/serializers.py:776 msgid "Supplier part must be specified" msgstr "" -#: order/serializers.py:768 +#: order/serializers.py:779 msgid "Purchase order must be specified" msgstr "" -#: order/serializers.py:776 +#: order/serializers.py:787 msgid "Supplier must match purchase order" msgstr "" -#: order/serializers.py:777 +#: order/serializers.py:788 msgid "Purchase order must match supplier" msgstr "" -#: order/serializers.py:825 order/serializers.py:1682 +#: order/serializers.py:836 order/serializers.py:1696 msgid "Line Item" msgstr "" -#: order/serializers.py:834 order/serializers.py:974 order/serializers.py:2043 +#: order/serializers.py:845 order/serializers.py:985 order/serializers.py:2060 msgid "Select destination location for received items" msgstr "" -#: order/serializers.py:850 +#: order/serializers.py:861 msgid "Enter batch code for incoming stock items" msgstr "" -#: order/serializers.py:857 stock/models.py:1160 +#: order/serializers.py:868 stock/models.py:1160 #: templates/email/stale_stock_notification.html:22 users/models.py:137 msgid "Expiry Date" msgstr "" -#: order/serializers.py:858 +#: order/serializers.py:869 msgid "Enter expiry date for incoming stock items" msgstr "" -#: order/serializers.py:866 +#: order/serializers.py:877 msgid "Enter serial numbers for incoming stock items" msgstr "" -#: order/serializers.py:876 +#: order/serializers.py:887 msgid "Override packaging information for incoming stock items" msgstr "" -#: order/serializers.py:884 order/serializers.py:2048 +#: order/serializers.py:895 order/serializers.py:2065 msgid "Additional note for incoming stock items" msgstr "" -#: order/serializers.py:891 +#: order/serializers.py:902 msgid "Barcode" msgstr "" -#: order/serializers.py:892 +#: order/serializers.py:903 msgid "Scanned barcode" msgstr "" -#: order/serializers.py:908 +#: order/serializers.py:919 msgid "Barcode is already in use" msgstr "" -#: order/serializers.py:991 order/serializers.py:2067 +#: order/serializers.py:1002 order/serializers.py:2084 msgid "Line items must be provided" msgstr "" -#: order/serializers.py:1010 +#: order/serializers.py:1021 msgid "Destination location must be specified" msgstr "" -#: order/serializers.py:1017 +#: order/serializers.py:1028 msgid "Supplied barcode values must be unique" msgstr "" -#: order/serializers.py:1121 +#: order/serializers.py:1135 msgid "Shipments" msgstr "" -#: order/serializers.py:1125 +#: order/serializers.py:1139 msgid "Completed Shipments" msgstr "" -#: order/serializers.py:1293 +#: order/serializers.py:1307 msgid "Sale price currency" msgstr "" -#: order/serializers.py:1339 +#: order/serializers.py:1353 msgid "Allocated Items" msgstr "" -#: order/serializers.py:1484 +#: order/serializers.py:1498 msgid "No shipment details provided" msgstr "" -#: order/serializers.py:1545 order/serializers.py:1691 +#: order/serializers.py:1559 order/serializers.py:1705 msgid "Line item is not associated with this order" msgstr "" -#: order/serializers.py:1564 +#: order/serializers.py:1578 msgid "Quantity must be positive" msgstr "" -#: order/serializers.py:1701 +#: order/serializers.py:1715 msgid "Enter serial numbers to allocate" msgstr "" -#: order/serializers.py:1723 order/serializers.py:1843 +#: order/serializers.py:1737 order/serializers.py:1857 msgid "Shipment has already been shipped" msgstr "" -#: order/serializers.py:1726 order/serializers.py:1846 +#: order/serializers.py:1740 order/serializers.py:1860 msgid "Shipment is not associated with this order" msgstr "" -#: order/serializers.py:1781 +#: order/serializers.py:1795 msgid "No match found for the following serial numbers" msgstr "" -#: order/serializers.py:1788 +#: order/serializers.py:1802 msgid "The following serial numbers are unavailable" msgstr "" -#: order/serializers.py:2009 +#: order/serializers.py:2026 msgid "Return order line item" msgstr "" -#: order/serializers.py:2019 +#: order/serializers.py:2036 msgid "Line item does not match return order" msgstr "" -#: order/serializers.py:2022 +#: order/serializers.py:2039 msgid "Line item has already been received" msgstr "" -#: order/serializers.py:2059 +#: order/serializers.py:2076 msgid "Items can only be received against orders which are in progress" msgstr "" -#: order/serializers.py:2124 +#: order/serializers.py:2141 msgid "Quantity to return" msgstr "" -#: order/serializers.py:2140 +#: order/serializers.py:2157 msgid "Line price currency" msgstr "" @@ -5432,1190 +5560,1109 @@ msgstr "" msgid "Return order {ro} is now overdue" msgstr "" -#: part/api.py:108 +#: part/api.py:103 msgid "Starred" msgstr "" -#: part/api.py:110 +#: part/api.py:105 msgid "Filter by starred categories" msgstr "" -#: part/api.py:127 stock/api.py:288 +#: part/api.py:122 stock/api.py:288 msgid "Depth" msgstr "" -#: part/api.py:127 +#: part/api.py:122 msgid "Filter by category depth" msgstr "" -#: part/api.py:145 stock/api.py:306 +#: part/api.py:140 stock/api.py:306 msgid "Top Level" msgstr "" -#: part/api.py:147 +#: part/api.py:142 msgid "Filter by top-level categories" msgstr "" -#: part/api.py:160 stock/api.py:321 +#: part/api.py:155 stock/api.py:321 msgid "Cascade" msgstr "" -#: part/api.py:162 +#: part/api.py:157 msgid "Include sub-categories in filtered results" msgstr "" -#: part/api.py:182 +#: part/api.py:177 msgid "Parent" msgstr "" -#: part/api.py:184 +#: part/api.py:179 msgid "Filter by parent category" msgstr "" -#: part/api.py:219 +#: part/api.py:214 msgid "Exclude sub-categories under the specified category" msgstr "" -#: part/api.py:445 +#: part/api.py:440 msgid "Has Results" msgstr "" -#: part/api.py:666 +#: part/api.py:661 msgid "Is Variant" msgstr "" -#: part/api.py:674 +#: part/api.py:669 msgid "Is Revision" msgstr "" -#: part/api.py:684 +#: part/api.py:679 msgid "Has Revisions" msgstr "" -#: part/api.py:865 +#: part/api.py:860 msgid "BOM Valid" msgstr "" -#: part/api.py:974 +#: part/api.py:969 msgid "Cascade Categories" msgstr "" -#: part/api.py:975 +#: part/api.py:970 msgid "If true, include items in child categories of the given category" msgstr "" -#: part/api.py:981 +#: part/api.py:976 msgid "Filter by numeric category ID or the literal 'null'" msgstr "" -#: part/api.py:1533 +#: part/api.py:1258 msgid "Assembly part is testable" msgstr "" -#: part/api.py:1542 +#: part/api.py:1267 msgid "Component part is testable" msgstr "" -#: part/api.py:1611 +#: part/api.py:1336 msgid "Uses" msgstr "" -#: part/models.py:96 part/models.py:4163 +#: part/models.py:93 part/models.py:436 #: templates/email/part_event_notification.html:16 msgid "Part Category" msgstr "" -#: part/models.py:97 users/ruleset.py:27 +#: part/models.py:94 users/ruleset.py:27 msgid "Part Categories" msgstr "" -#: part/models.py:115 part/models.py:1125 +#: part/models.py:112 part/models.py:1213 msgid "Default Location" msgstr "" -#: part/models.py:116 +#: part/models.py:113 msgid "Default location for parts in this category" msgstr "" -#: part/models.py:121 stock/models.py:216 +#: part/models.py:118 stock/models.py:216 msgid "Structural" msgstr "" -#: part/models.py:123 +#: part/models.py:120 msgid "Parts may not be directly assigned to a structural category, but may be assigned to child categories." msgstr "" -#: part/models.py:132 +#: part/models.py:129 msgid "Default keywords" msgstr "" -#: part/models.py:133 +#: part/models.py:130 msgid "Default keywords for parts in this category" msgstr "" -#: part/models.py:140 stock/models.py:97 stock/models.py:198 +#: part/models.py:137 stock/models.py:97 stock/models.py:198 msgid "Icon" msgstr "" -#: part/models.py:141 part/serializers.py:148 part/serializers.py:167 +#: part/models.py:138 part/serializers.py:147 part/serializers.py:166 #: stock/models.py:199 msgid "Icon (optional)" msgstr "" -#: part/models.py:185 +#: part/models.py:182 msgid "You cannot make this part category structural because some parts are already assigned to it!" msgstr "" -#: part/models.py:473 part/serializers.py:119 part/serializers.py:310 -#: users/ruleset.py:28 +#: part/models.py:392 +msgid "Part Category Parameter Template" +msgstr "" + +#: part/models.py:448 +msgid "Default Value" +msgstr "" + +#: part/models.py:449 +msgid "Default Parameter Value" +msgstr "" + +#: part/models.py:551 part/serializers.py:118 users/ruleset.py:28 msgid "Parts" msgstr "" -#: part/models.py:525 +#: part/models.py:597 +msgid "Cannot delete parameters of a locked part" +msgstr "" + +#: part/models.py:602 +msgid "Cannot modify parameters of a locked part" +msgstr "" + +#: part/models.py:613 msgid "Cannot delete this part as it is locked" msgstr "" -#: part/models.py:528 +#: part/models.py:616 msgid "Cannot delete this part as it is still active" msgstr "" -#: part/models.py:533 +#: part/models.py:621 msgid "Cannot delete this part as it is used in an assembly" msgstr "" -#: part/models.py:616 part/models.py:623 +#: part/models.py:704 part/models.py:711 #, python-brace-format msgid "Part '{self}' cannot be used in BOM for '{parent}' (recursive)" msgstr "" -#: part/models.py:635 +#: part/models.py:723 #, python-brace-format msgid "Part '{parent}' is used in BOM for '{self}' (recursive)" msgstr "" -#: part/models.py:702 +#: part/models.py:790 #, python-brace-format msgid "IPN must match regex pattern {pattern}" msgstr "" -#: part/models.py:710 +#: part/models.py:798 msgid "Part cannot be a revision of itself" msgstr "" -#: part/models.py:717 +#: part/models.py:805 msgid "Cannot make a revision of a part which is already a revision" msgstr "" -#: part/models.py:724 +#: part/models.py:812 msgid "Revision code must be specified" msgstr "" -#: part/models.py:731 +#: part/models.py:819 msgid "Revisions are only allowed for assembly parts" msgstr "" -#: part/models.py:738 +#: part/models.py:826 msgid "Cannot make a revision of a template part" msgstr "" -#: part/models.py:744 +#: part/models.py:832 msgid "Parent part must point to the same template" msgstr "" -#: part/models.py:841 +#: part/models.py:929 msgid "Stock item with this serial number already exists" msgstr "" -#: part/models.py:971 +#: part/models.py:1059 msgid "Duplicate IPN not allowed in part settings" msgstr "" -#: part/models.py:983 +#: part/models.py:1071 msgid "Duplicate part revision already exists." msgstr "" -#: part/models.py:992 +#: part/models.py:1080 msgid "Part with this Name, IPN and Revision already exists." msgstr "" -#: part/models.py:1007 +#: part/models.py:1095 msgid "Parts cannot be assigned to structural part categories!" msgstr "" -#: part/models.py:1039 +#: part/models.py:1127 msgid "Part name" msgstr "" -#: part/models.py:1044 +#: part/models.py:1132 msgid "Is Template" msgstr "" -#: part/models.py:1045 +#: part/models.py:1133 msgid "Is this part a template part?" msgstr "" -#: part/models.py:1055 +#: part/models.py:1143 msgid "Is this part a variant of another part?" msgstr "" -#: part/models.py:1056 +#: part/models.py:1144 msgid "Variant Of" msgstr "" -#: part/models.py:1063 +#: part/models.py:1151 msgid "Part description (optional)" msgstr "" -#: part/models.py:1070 +#: part/models.py:1158 msgid "Keywords" msgstr "" -#: part/models.py:1071 +#: part/models.py:1159 msgid "Part keywords to improve visibility in search results" msgstr "" -#: part/models.py:1081 +#: part/models.py:1169 msgid "Part category" msgstr "" -#: part/models.py:1088 part/serializers.py:929 +#: part/models.py:1176 part/serializers.py:814 #: report/templates/report/inventree_stock_location_report.html:103 msgid "IPN" msgstr "" -#: part/models.py:1096 +#: part/models.py:1184 msgid "Part revision or version number" msgstr "" -#: part/models.py:1097 report/models.py:228 +#: part/models.py:1185 report/models.py:228 msgid "Revision" msgstr "" -#: part/models.py:1106 +#: part/models.py:1194 msgid "Is this part a revision of another part?" msgstr "" -#: part/models.py:1107 +#: part/models.py:1195 msgid "Revision Of" msgstr "" -#: part/models.py:1123 +#: part/models.py:1211 msgid "Where is this item normally stored?" msgstr "" -#: part/models.py:1169 +#: part/models.py:1257 msgid "Default Supplier" msgstr "" -#: part/models.py:1170 +#: part/models.py:1258 msgid "Default supplier part" msgstr "" -#: part/models.py:1177 +#: part/models.py:1265 msgid "Default Expiry" msgstr "" -#: part/models.py:1178 +#: part/models.py:1266 msgid "Expiry time (in days) for stock items of this part" msgstr "" -#: part/models.py:1186 part/serializers.py:1003 +#: part/models.py:1274 part/serializers.py:888 msgid "Minimum Stock" msgstr "" -#: part/models.py:1187 +#: part/models.py:1275 msgid "Minimum allowed stock level" msgstr "" -#: part/models.py:1196 +#: part/models.py:1284 msgid "Units of measure for this part" msgstr "" -#: part/models.py:1203 +#: part/models.py:1291 msgid "Can this part be built from other parts?" msgstr "" -#: part/models.py:1209 +#: part/models.py:1297 msgid "Can this part be used to build other parts?" msgstr "" -#: part/models.py:1215 +#: part/models.py:1303 msgid "Does this part have tracking for unique items?" msgstr "" -#: part/models.py:1221 +#: part/models.py:1309 msgid "Can this part have test results recorded against it?" msgstr "" -#: part/models.py:1227 +#: part/models.py:1315 msgid "Can this part be purchased from external suppliers?" msgstr "" -#: part/models.py:1233 +#: part/models.py:1321 msgid "Can this part be sold to customers?" msgstr "" -#: part/models.py:1237 +#: part/models.py:1325 msgid "Is this part active?" msgstr "" -#: part/models.py:1243 +#: part/models.py:1331 msgid "Locked parts cannot be edited" msgstr "" -#: part/models.py:1249 +#: part/models.py:1337 msgid "Is this a virtual part, such as a software product or license?" msgstr "" -#: part/models.py:1254 +#: part/models.py:1342 msgid "BOM Validated" msgstr "" -#: part/models.py:1255 +#: part/models.py:1343 msgid "Is the BOM for this part valid?" msgstr "" -#: part/models.py:1261 +#: part/models.py:1349 msgid "BOM checksum" msgstr "" -#: part/models.py:1262 +#: part/models.py:1350 msgid "Stored BOM checksum" msgstr "" -#: part/models.py:1270 +#: part/models.py:1358 msgid "BOM checked by" msgstr "" -#: part/models.py:1275 +#: part/models.py:1363 msgid "BOM checked date" msgstr "" -#: part/models.py:1291 +#: part/models.py:1379 msgid "Creation User" msgstr "" -#: part/models.py:1301 +#: part/models.py:1389 msgid "Owner responsible for this part" msgstr "" -#: part/models.py:2258 +#: part/models.py:2346 msgid "Sell multiple" msgstr "" -#: part/models.py:3286 +#: part/models.py:3350 msgid "Currency used to cache pricing calculations" msgstr "" -#: part/models.py:3302 +#: part/models.py:3366 msgid "Minimum BOM Cost" msgstr "" -#: part/models.py:3303 +#: part/models.py:3367 msgid "Minimum cost of component parts" msgstr "" -#: part/models.py:3309 +#: part/models.py:3373 msgid "Maximum BOM Cost" msgstr "" -#: part/models.py:3310 +#: part/models.py:3374 msgid "Maximum cost of component parts" msgstr "" -#: part/models.py:3316 +#: part/models.py:3380 msgid "Minimum Purchase Cost" msgstr "" -#: part/models.py:3317 +#: part/models.py:3381 msgid "Minimum historical purchase cost" msgstr "" -#: part/models.py:3323 +#: part/models.py:3387 msgid "Maximum Purchase Cost" msgstr "" -#: part/models.py:3324 +#: part/models.py:3388 msgid "Maximum historical purchase cost" msgstr "" -#: part/models.py:3330 +#: part/models.py:3394 msgid "Minimum Internal Price" msgstr "" -#: part/models.py:3331 +#: part/models.py:3395 msgid "Minimum cost based on internal price breaks" msgstr "" -#: part/models.py:3337 +#: part/models.py:3401 msgid "Maximum Internal Price" msgstr "" -#: part/models.py:3338 +#: part/models.py:3402 msgid "Maximum cost based on internal price breaks" msgstr "" -#: part/models.py:3344 +#: part/models.py:3408 msgid "Minimum Supplier Price" msgstr "" -#: part/models.py:3345 +#: part/models.py:3409 msgid "Minimum price of part from external suppliers" msgstr "" -#: part/models.py:3351 +#: part/models.py:3415 msgid "Maximum Supplier Price" msgstr "" -#: part/models.py:3352 +#: part/models.py:3416 msgid "Maximum price of part from external suppliers" msgstr "" -#: part/models.py:3358 +#: part/models.py:3422 msgid "Minimum Variant Cost" msgstr "" -#: part/models.py:3359 +#: part/models.py:3423 msgid "Calculated minimum cost of variant parts" msgstr "" -#: part/models.py:3365 +#: part/models.py:3429 msgid "Maximum Variant Cost" msgstr "" -#: part/models.py:3366 +#: part/models.py:3430 msgid "Calculated maximum cost of variant parts" msgstr "" -#: part/models.py:3372 part/models.py:3386 +#: part/models.py:3436 part/models.py:3450 msgid "Minimum Cost" msgstr "" -#: part/models.py:3373 +#: part/models.py:3437 msgid "Override minimum cost" msgstr "" -#: part/models.py:3379 part/models.py:3393 +#: part/models.py:3443 part/models.py:3457 msgid "Maximum Cost" msgstr "" -#: part/models.py:3380 +#: part/models.py:3444 msgid "Override maximum cost" msgstr "" -#: part/models.py:3387 +#: part/models.py:3451 msgid "Calculated overall minimum cost" msgstr "" -#: part/models.py:3394 +#: part/models.py:3458 msgid "Calculated overall maximum cost" msgstr "" -#: part/models.py:3400 +#: part/models.py:3464 msgid "Minimum Sale Price" msgstr "" -#: part/models.py:3401 +#: part/models.py:3465 msgid "Minimum sale price based on price breaks" msgstr "" -#: part/models.py:3407 +#: part/models.py:3471 msgid "Maximum Sale Price" msgstr "" -#: part/models.py:3408 +#: part/models.py:3472 msgid "Maximum sale price based on price breaks" msgstr "" -#: part/models.py:3414 +#: part/models.py:3478 msgid "Minimum Sale Cost" msgstr "" -#: part/models.py:3415 +#: part/models.py:3479 msgid "Minimum historical sale price" msgstr "" -#: part/models.py:3421 +#: part/models.py:3485 msgid "Maximum Sale Cost" msgstr "" -#: part/models.py:3422 +#: part/models.py:3486 msgid "Maximum historical sale price" msgstr "" -#: part/models.py:3440 +#: part/models.py:3504 msgid "Part for stocktake" msgstr "" -#: part/models.py:3445 +#: part/models.py:3509 msgid "Item Count" msgstr "" -#: part/models.py:3446 +#: part/models.py:3510 msgid "Number of individual stock entries at time of stocktake" msgstr "" -#: part/models.py:3454 +#: part/models.py:3518 msgid "Total available stock at time of stocktake" msgstr "" -#: part/models.py:3458 report/templates/report/inventree_test_report.html:106 +#: part/models.py:3522 report/templates/report/inventree_test_report.html:106 msgid "Date" msgstr "" -#: part/models.py:3459 +#: part/models.py:3523 msgid "Date stocktake was performed" msgstr "" -#: part/models.py:3466 +#: part/models.py:3530 msgid "Minimum Stock Cost" msgstr "" -#: part/models.py:3467 +#: part/models.py:3531 msgid "Estimated minimum cost of stock on hand" msgstr "" -#: part/models.py:3473 +#: part/models.py:3537 msgid "Maximum Stock Cost" msgstr "" -#: part/models.py:3474 +#: part/models.py:3538 msgid "Estimated maximum cost of stock on hand" msgstr "" -#: part/models.py:3484 +#: part/models.py:3548 msgid "Part Sale Price Break" msgstr "" -#: part/models.py:3596 +#: part/models.py:3660 msgid "Part Test Template" msgstr "" -#: part/models.py:3622 +#: part/models.py:3686 msgid "Invalid template name - must include at least one alphanumeric character" msgstr "" -#: part/models.py:3643 part/models.py:3816 -msgid "Choices must be unique" -msgstr "" - -#: part/models.py:3654 +#: part/models.py:3718 msgid "Test templates can only be created for testable parts" msgstr "" -#: part/models.py:3668 +#: part/models.py:3732 msgid "Test template with the same key already exists for part" msgstr "" -#: part/models.py:3685 +#: part/models.py:3749 msgid "Test Name" msgstr "" -#: part/models.py:3686 +#: part/models.py:3750 msgid "Enter a name for the test" msgstr "" -#: part/models.py:3692 +#: part/models.py:3756 msgid "Test Key" msgstr "" -#: part/models.py:3693 +#: part/models.py:3757 msgid "Simplified key for the test" msgstr "" -#: part/models.py:3700 +#: part/models.py:3764 msgid "Test Description" msgstr "" -#: part/models.py:3701 +#: part/models.py:3765 msgid "Enter description for this test" msgstr "" -#: part/models.py:3705 report/models.py:287 -msgid "Enabled" -msgstr "" - -#: part/models.py:3705 +#: part/models.py:3769 msgid "Is this test enabled?" msgstr "" -#: part/models.py:3710 +#: part/models.py:3774 msgid "Required" msgstr "" -#: part/models.py:3711 +#: part/models.py:3775 msgid "Is this test required to pass?" msgstr "" -#: part/models.py:3716 +#: part/models.py:3780 msgid "Requires Value" msgstr "" -#: part/models.py:3717 +#: part/models.py:3781 msgid "Does this test require a value when adding a test result?" msgstr "" -#: part/models.py:3722 +#: part/models.py:3786 msgid "Requires Attachment" msgstr "" -#: part/models.py:3724 +#: part/models.py:3788 msgid "Does this test require a file attachment when adding a test result?" msgstr "" -#: part/models.py:3730 part/models.py:3878 -msgid "Choices" -msgstr "" - -#: part/models.py:3731 +#: part/models.py:3795 msgid "Valid choices for this test (comma-separated)" msgstr "" -#: part/models.py:3764 -msgid "Part Parameter Template" -msgstr "" - -#: part/models.py:3791 -msgid "Checkbox parameters cannot have units" -msgstr "" - -#: part/models.py:3796 -msgid "Checkbox parameters cannot have choices" -msgstr "" - -#: part/models.py:3833 -msgid "Parameter template name must be unique" -msgstr "" - -#: part/models.py:3851 -msgid "Parameter Name" -msgstr "" - -#: part/models.py:3858 -msgid "Physical units for this parameter" -msgstr "" - -#: part/models.py:3866 -msgid "Parameter description" -msgstr "" - -#: part/models.py:3872 -msgid "Checkbox" -msgstr "" - -#: part/models.py:3873 -msgid "Is this parameter a checkbox?" -msgstr "" - -#: part/models.py:3879 -msgid "Valid choices for this parameter (comma-separated)" -msgstr "" - -#: part/models.py:3890 -msgid "Selection list for this parameter" -msgstr "" - -#: part/models.py:3932 -msgid "Part Parameter" -msgstr "" - -#: part/models.py:3958 -msgid "Parameter cannot be modified - part is locked" -msgstr "" - -#: part/models.py:3996 -msgid "Invalid choice for parameter value" -msgstr "" - -#: part/models.py:4047 -msgid "Parent Part" -msgstr "" - -#: part/models.py:4055 part/models.py:4170 part/models.py:4171 -msgid "Parameter Template" -msgstr "" - -#: part/models.py:4061 -msgid "Parameter Value" -msgstr "" - -#: part/models.py:4071 stock/serializers.py:718 -msgid "Optional note field" -msgstr "" - -#: part/models.py:4118 -msgid "Part Category Parameter Template" -msgstr "" - -#: part/models.py:4177 -msgid "Default Value" -msgstr "" - -#: part/models.py:4178 -msgid "Default Parameter Value" -msgstr "" - -#: part/models.py:4352 +#: part/models.py:3977 msgid "BOM item cannot be modified - assembly is locked" msgstr "" -#: part/models.py:4359 +#: part/models.py:3984 msgid "BOM item cannot be modified - variant assembly is locked" msgstr "" -#: part/models.py:4369 +#: part/models.py:3994 msgid "Select parent part" msgstr "" -#: part/models.py:4379 +#: part/models.py:4004 msgid "Sub part" msgstr "" -#: part/models.py:4380 +#: part/models.py:4005 msgid "Select part to be used in BOM" msgstr "" -#: part/models.py:4391 +#: part/models.py:4016 msgid "BOM quantity for this BOM item" msgstr "" -#: part/models.py:4397 +#: part/models.py:4022 msgid "This BOM item is optional" msgstr "" -#: part/models.py:4403 +#: part/models.py:4028 msgid "This BOM item is consumable (it is not tracked in build orders)" msgstr "" -#: part/models.py:4411 +#: part/models.py:4036 msgid "Setup Quantity" msgstr "" -#: part/models.py:4412 +#: part/models.py:4037 msgid "Extra required quantity for a build, to account for setup losses" msgstr "" -#: part/models.py:4420 +#: part/models.py:4045 msgid "Attrition" msgstr "" -#: part/models.py:4422 +#: part/models.py:4047 msgid "Estimated attrition for a build, expressed as a percentage (0-100)" msgstr "" -#: part/models.py:4433 +#: part/models.py:4058 msgid "Rounding Multiple" msgstr "" -#: part/models.py:4435 +#: part/models.py:4060 msgid "Round up required production quantity to nearest multiple of this value" msgstr "" -#: part/models.py:4443 +#: part/models.py:4068 msgid "BOM item reference" msgstr "" -#: part/models.py:4451 +#: part/models.py:4076 msgid "BOM item notes" msgstr "" -#: part/models.py:4457 +#: part/models.py:4082 msgid "Checksum" msgstr "" -#: part/models.py:4458 +#: part/models.py:4083 msgid "BOM line checksum" msgstr "" -#: part/models.py:4463 +#: part/models.py:4088 msgid "Validated" msgstr "" -#: part/models.py:4464 +#: part/models.py:4089 msgid "This BOM item has been validated" msgstr "" -#: part/models.py:4469 +#: part/models.py:4094 msgid "Gets inherited" msgstr "" -#: part/models.py:4470 +#: part/models.py:4095 msgid "This BOM item is inherited by BOMs for variant parts" msgstr "" -#: part/models.py:4476 +#: part/models.py:4101 msgid "Stock items for variant parts can be used for this BOM item" msgstr "" -#: part/models.py:4583 stock/models.py:925 +#: part/models.py:4208 stock/models.py:925 msgid "Quantity must be integer value for trackable parts" msgstr "" -#: part/models.py:4593 part/models.py:4595 +#: part/models.py:4218 part/models.py:4220 msgid "Sub part must be specified" msgstr "" -#: part/models.py:4746 +#: part/models.py:4371 msgid "BOM Item Substitute" msgstr "" -#: part/models.py:4767 +#: part/models.py:4392 msgid "Substitute part cannot be the same as the master part" msgstr "" -#: part/models.py:4780 +#: part/models.py:4405 msgid "Parent BOM item" msgstr "" -#: part/models.py:4788 +#: part/models.py:4413 msgid "Substitute part" msgstr "" -#: part/models.py:4804 +#: part/models.py:4429 msgid "Part 1" msgstr "" -#: part/models.py:4812 +#: part/models.py:4437 msgid "Part 2" msgstr "" -#: part/models.py:4813 +#: part/models.py:4438 msgid "Select Related Part" msgstr "" -#: part/models.py:4820 +#: part/models.py:4445 msgid "Note for this relationship" msgstr "" -#: part/models.py:4839 +#: part/models.py:4464 msgid "Part relationship cannot be created between a part and itself" msgstr "" -#: part/models.py:4844 +#: part/models.py:4469 msgid "Duplicate relationship already exists" msgstr "" -#: part/serializers.py:114 +#: part/serializers.py:113 msgid "Parent Category" msgstr "" -#: part/serializers.py:115 +#: part/serializers.py:114 msgid "Parent part category" msgstr "" -#: part/serializers.py:123 part/serializers.py:164 +#: part/serializers.py:122 part/serializers.py:163 msgid "Subcategories" msgstr "" -#: part/serializers.py:203 +#: part/serializers.py:202 msgid "Results" msgstr "" -#: part/serializers.py:204 +#: part/serializers.py:203 msgid "Number of results recorded against this template" msgstr "" -#: part/serializers.py:235 part/serializers.py:253 stock/serializers.py:643 +#: part/serializers.py:234 part/serializers.py:252 stock/serializers.py:643 msgid "Purchase currency of this stock item" msgstr "" -#: part/serializers.py:280 +#: part/serializers.py:279 msgid "File is not an image" msgstr "" -#: part/serializers.py:311 -msgid "Number of parts using this template" -msgstr "" - -#: part/serializers.py:471 +#: part/serializers.py:382 msgid "Original Part" msgstr "" -#: part/serializers.py:472 +#: part/serializers.py:383 msgid "Select original part to duplicate" msgstr "" -#: part/serializers.py:477 +#: part/serializers.py:388 msgid "Copy Image" msgstr "" -#: part/serializers.py:478 +#: part/serializers.py:389 msgid "Copy image from original part" msgstr "" -#: part/serializers.py:484 +#: part/serializers.py:395 msgid "Copy BOM" msgstr "" -#: part/serializers.py:485 +#: part/serializers.py:396 msgid "Copy bill of materials from original part" msgstr "" -#: part/serializers.py:491 +#: part/serializers.py:402 msgid "Copy Parameters" msgstr "" -#: part/serializers.py:492 +#: part/serializers.py:403 msgid "Copy parameter data from original part" msgstr "" -#: part/serializers.py:498 +#: part/serializers.py:409 msgid "Copy Notes" msgstr "" -#: part/serializers.py:499 +#: part/serializers.py:410 msgid "Copy notes from original part" msgstr "" -#: part/serializers.py:505 +#: part/serializers.py:416 msgid "Copy Tests" msgstr "" -#: part/serializers.py:506 +#: part/serializers.py:417 msgid "Copy test templates from original part" msgstr "" -#: part/serializers.py:524 +#: part/serializers.py:435 msgid "Initial Stock Quantity" msgstr "" -#: part/serializers.py:526 +#: part/serializers.py:437 msgid "Specify initial stock quantity for this Part. If quantity is zero, no stock is added." msgstr "" -#: part/serializers.py:533 +#: part/serializers.py:444 msgid "Initial Stock Location" msgstr "" -#: part/serializers.py:534 +#: part/serializers.py:445 msgid "Specify initial stock location for this Part" msgstr "" -#: part/serializers.py:551 +#: part/serializers.py:462 msgid "Select supplier (or leave blank to skip)" msgstr "" -#: part/serializers.py:567 +#: part/serializers.py:478 msgid "Select manufacturer (or leave blank to skip)" msgstr "" -#: part/serializers.py:577 +#: part/serializers.py:488 msgid "Manufacturer part number" msgstr "" -#: part/serializers.py:584 +#: part/serializers.py:495 msgid "Selected company is not a valid supplier" msgstr "" -#: part/serializers.py:593 +#: part/serializers.py:504 msgid "Selected company is not a valid manufacturer" msgstr "" -#: part/serializers.py:604 +#: part/serializers.py:515 msgid "Manufacturer part matching this MPN already exists" msgstr "" -#: part/serializers.py:611 +#: part/serializers.py:522 msgid "Supplier part matching this SKU already exists" msgstr "" -#: part/serializers.py:914 +#: part/serializers.py:799 msgid "Category Name" msgstr "" -#: part/serializers.py:943 +#: part/serializers.py:828 msgid "Building" msgstr "" -#: part/serializers.py:944 +#: part/serializers.py:829 msgid "Quantity of this part currently being in production" msgstr "" -#: part/serializers.py:951 +#: part/serializers.py:836 msgid "Outstanding quantity of this part scheduled to be built" msgstr "" -#: part/serializers.py:971 stock/serializers.py:1019 stock/serializers.py:1189 +#: part/serializers.py:856 stock/serializers.py:1019 stock/serializers.py:1189 #: users/ruleset.py:30 msgid "Stock Items" msgstr "" -#: part/serializers.py:975 +#: part/serializers.py:860 msgid "Revisions" msgstr "" -#: part/serializers.py:979 +#: part/serializers.py:864 msgid "Suppliers" msgstr "" -#: part/serializers.py:983 part/serializers.py:1297 +#: part/serializers.py:868 part/serializers.py:1162 #: templates/email/low_stock_notification.html:16 #: templates/email/part_event_notification.html:17 msgid "Total Stock" msgstr "" -#: part/serializers.py:991 +#: part/serializers.py:876 msgid "Unallocated Stock" msgstr "" -#: part/serializers.py:999 +#: part/serializers.py:884 msgid "Variant Stock" msgstr "" -#: part/serializers.py:1054 +#: part/serializers.py:943 msgid "Duplicate Part" msgstr "" -#: part/serializers.py:1055 +#: part/serializers.py:944 msgid "Copy initial data from another Part" msgstr "" -#: part/serializers.py:1061 +#: part/serializers.py:950 msgid "Initial Stock" msgstr "" -#: part/serializers.py:1062 +#: part/serializers.py:951 msgid "Create Part with initial stock quantity" msgstr "" -#: part/serializers.py:1068 +#: part/serializers.py:957 msgid "Supplier Information" msgstr "" -#: part/serializers.py:1069 +#: part/serializers.py:958 msgid "Add initial supplier information for this part" msgstr "" -#: part/serializers.py:1077 +#: part/serializers.py:966 msgid "Copy Category Parameters" msgstr "" -#: part/serializers.py:1078 +#: part/serializers.py:967 msgid "Copy parameter templates from selected part category" msgstr "" -#: part/serializers.py:1083 +#: part/serializers.py:972 msgid "Existing Image" msgstr "" -#: part/serializers.py:1084 +#: part/serializers.py:973 msgid "Filename of an existing part image" msgstr "" -#: part/serializers.py:1101 +#: part/serializers.py:990 msgid "Image file does not exist" msgstr "" -#: part/serializers.py:1269 +#: part/serializers.py:1134 msgid "Validate entire Bill of Materials" msgstr "" -#: part/serializers.py:1303 part/serializers.py:1769 +#: part/serializers.py:1168 part/serializers.py:1634 msgid "Can Build" msgstr "" -#: part/serializers.py:1320 +#: part/serializers.py:1185 msgid "Required for Build Orders" msgstr "" -#: part/serializers.py:1325 +#: part/serializers.py:1190 msgid "Allocated to Build Orders" msgstr "" -#: part/serializers.py:1332 +#: part/serializers.py:1197 msgid "Required for Sales Orders" msgstr "" -#: part/serializers.py:1336 +#: part/serializers.py:1201 msgid "Allocated to Sales Orders" msgstr "" -#: part/serializers.py:1475 +#: part/serializers.py:1340 msgid "Minimum Price" msgstr "" -#: part/serializers.py:1476 +#: part/serializers.py:1341 msgid "Override calculated value for minimum price" msgstr "" -#: part/serializers.py:1483 +#: part/serializers.py:1348 msgid "Minimum price currency" msgstr "" -#: part/serializers.py:1490 +#: part/serializers.py:1355 msgid "Maximum Price" msgstr "" -#: part/serializers.py:1491 +#: part/serializers.py:1356 msgid "Override calculated value for maximum price" msgstr "" -#: part/serializers.py:1498 +#: part/serializers.py:1363 msgid "Maximum price currency" msgstr "" -#: part/serializers.py:1527 +#: part/serializers.py:1392 msgid "Update" msgstr "" -#: part/serializers.py:1528 +#: part/serializers.py:1393 msgid "Update pricing for this part" msgstr "" -#: part/serializers.py:1551 +#: part/serializers.py:1416 #, python-brace-format msgid "Could not convert from provided currencies to {default_currency}" msgstr "" -#: part/serializers.py:1558 +#: part/serializers.py:1423 msgid "Minimum price must not be greater than maximum price" msgstr "" -#: part/serializers.py:1561 +#: part/serializers.py:1426 msgid "Maximum price must not be less than minimum price" msgstr "" -#: part/serializers.py:1715 +#: part/serializers.py:1580 msgid "Select the parent assembly" msgstr "" -#: part/serializers.py:1735 +#: part/serializers.py:1600 msgid "Select the component part" msgstr "" -#: part/serializers.py:1929 +#: part/serializers.py:1802 msgid "Select part to copy BOM from" msgstr "" -#: part/serializers.py:1937 +#: part/serializers.py:1810 msgid "Remove Existing Data" msgstr "" -#: part/serializers.py:1938 +#: part/serializers.py:1811 msgid "Remove existing BOM items before copying" msgstr "" -#: part/serializers.py:1943 +#: part/serializers.py:1816 msgid "Include Inherited" msgstr "" -#: part/serializers.py:1944 +#: part/serializers.py:1817 msgid "Include BOM items which are inherited from templated parts" msgstr "" -#: part/serializers.py:1949 +#: part/serializers.py:1822 msgid "Skip Invalid Rows" msgstr "" -#: part/serializers.py:1950 +#: part/serializers.py:1823 msgid "Enable this option to skip invalid rows" msgstr "" -#: part/serializers.py:1955 +#: part/serializers.py:1828 msgid "Copy Substitute Parts" msgstr "" -#: part/serializers.py:1956 +#: part/serializers.py:1829 msgid "Copy substitute parts when duplicate BOM items" msgstr "" @@ -6928,7 +6975,7 @@ msgstr "" #: plugin/builtin/events/auto_issue_orders.py:19 #: plugin/builtin/exporter/bom_exporter.py:73 #: plugin/builtin/exporter/inventree_exporter.py:17 -#: plugin/builtin/exporter/part_parameter_exporter.py:36 +#: plugin/builtin/exporter/parameter_exporter.py:32 #: plugin/builtin/exporter/stocktake_exporter.py:47 #: plugin/builtin/integration/core_notifications.py:25 #: plugin/builtin/integration/core_notifications.py:69 @@ -7042,23 +7089,19 @@ msgid "Include total quantity of each part in the BOM" msgstr "" #: plugin/builtin/exporter/bom_exporter.py:35 -#: plugin/builtin/exporter/part_parameter_exporter.py:17 msgid "Stock Data" msgstr "" #: plugin/builtin/exporter/bom_exporter.py:35 -#: plugin/builtin/exporter/part_parameter_exporter.py:17 msgid "Include part stock data" msgstr "" #: plugin/builtin/exporter/bom_exporter.py:39 -#: plugin/builtin/exporter/part_parameter_exporter.py:21 #: plugin/builtin/exporter/stocktake_exporter.py:20 msgid "Pricing Data" msgstr "" #: plugin/builtin/exporter/bom_exporter.py:39 -#: plugin/builtin/exporter/part_parameter_exporter.py:21 #: plugin/builtin/exporter/stocktake_exporter.py:20 msgid "Include part pricing data" msgstr "" @@ -7145,12 +7188,20 @@ msgstr "" msgid "Provides support for exporting data from InvenTree" msgstr "" -#: plugin/builtin/exporter/part_parameter_exporter.py:33 -msgid "Part Parameter Exporter" +#: plugin/builtin/exporter/parameter_exporter.py:16 +msgid "Exclude Inactive" msgstr "" -#: plugin/builtin/exporter/part_parameter_exporter.py:34 -msgid "Exporter for part parameter data" +#: plugin/builtin/exporter/parameter_exporter.py:17 +msgid "Exclude parameters which are inactive" +msgstr "" + +#: plugin/builtin/exporter/parameter_exporter.py:29 +msgid "Parameter Exporter" +msgstr "" + +#: plugin/builtin/exporter/parameter_exporter.py:30 +msgid "Exporter for model parameter data" msgstr "" #: plugin/builtin/exporter/stocktake_exporter.py:25 @@ -8080,19 +8131,19 @@ msgstr "" msgid "No result" msgstr "" -#: report/templatetags/report.py:167 +#: report/templatetags/report.py:169 msgid "Asset file does not exist" msgstr "" -#: report/templatetags/report.py:224 report/templatetags/report.py:300 +#: report/templatetags/report.py:226 report/templatetags/report.py:302 msgid "Image file not found" msgstr "" -#: report/templatetags/report.py:325 +#: report/templatetags/report.py:327 msgid "part_image tag requires a Part instance" msgstr "" -#: report/templatetags/report.py:362 +#: report/templatetags/report.py:383 msgid "company_image tag requires a Company instance" msgstr "" @@ -8456,115 +8507,119 @@ msgstr "" msgid "Quantity does not match serial numbers" msgstr "" -#: stock/models.py:2012 stock/models.py:2917 +#: stock/models.py:1912 +msgid "Cannot assign stock to structural location" +msgstr "" + +#: stock/models.py:2029 stock/models.py:2934 msgid "Test template does not exist" msgstr "" -#: stock/models.py:2030 +#: stock/models.py:2047 msgid "Stock item has been assigned to a sales order" msgstr "" -#: stock/models.py:2034 +#: stock/models.py:2051 msgid "Stock item is installed in another item" msgstr "" -#: stock/models.py:2037 +#: stock/models.py:2054 msgid "Stock item contains other items" msgstr "" -#: stock/models.py:2040 +#: stock/models.py:2057 msgid "Stock item has been assigned to a customer" msgstr "" -#: stock/models.py:2043 stock/models.py:2226 +#: stock/models.py:2060 stock/models.py:2243 msgid "Stock item is currently in production" msgstr "" -#: stock/models.py:2046 +#: stock/models.py:2063 msgid "Serialized stock cannot be merged" msgstr "" -#: stock/models.py:2053 stock/serializers.py:1462 +#: stock/models.py:2070 stock/serializers.py:1462 msgid "Duplicate stock items" msgstr "" -#: stock/models.py:2057 +#: stock/models.py:2074 msgid "Stock items must refer to the same part" msgstr "" -#: stock/models.py:2065 +#: stock/models.py:2082 msgid "Stock items must refer to the same supplier part" msgstr "" -#: stock/models.py:2070 +#: stock/models.py:2087 msgid "Stock status codes must match" msgstr "" -#: stock/models.py:2349 +#: stock/models.py:2366 msgid "StockItem cannot be moved as it is not in stock" msgstr "" -#: stock/models.py:2818 +#: stock/models.py:2835 msgid "Stock Item Tracking" msgstr "" -#: stock/models.py:2849 +#: stock/models.py:2866 msgid "Entry notes" msgstr "" -#: stock/models.py:2889 +#: stock/models.py:2906 msgid "Stock Item Test Result" msgstr "" -#: stock/models.py:2920 +#: stock/models.py:2937 msgid "Value must be provided for this test" msgstr "" -#: stock/models.py:2924 +#: stock/models.py:2941 msgid "Attachment must be uploaded for this test" msgstr "" -#: stock/models.py:2929 +#: stock/models.py:2946 msgid "Invalid value for this test" msgstr "" -#: stock/models.py:2953 +#: stock/models.py:2970 msgid "Test result" msgstr "" -#: stock/models.py:2960 +#: stock/models.py:2977 msgid "Test output value" msgstr "" -#: stock/models.py:2968 stock/serializers.py:248 +#: stock/models.py:2985 stock/serializers.py:248 msgid "Test result attachment" msgstr "" -#: stock/models.py:2972 +#: stock/models.py:2989 msgid "Test notes" msgstr "" -#: stock/models.py:2980 +#: stock/models.py:2997 msgid "Test station" msgstr "" -#: stock/models.py:2981 +#: stock/models.py:2998 msgid "The identifier of the test station where the test was performed" msgstr "" -#: stock/models.py:2987 +#: stock/models.py:3004 msgid "Started" msgstr "" -#: stock/models.py:2988 +#: stock/models.py:3005 msgid "The timestamp of the test start" msgstr "" -#: stock/models.py:2994 +#: stock/models.py:3011 msgid "Finished" msgstr "" -#: stock/models.py:2995 +#: stock/models.py:3012 msgid "The timestamp of the test finish" msgstr "" @@ -8678,8 +8733,8 @@ msgstr "" msgid "Quantity must not exceed available stock quantity ({q})" msgstr "" -#: stock/serializers.py:711 stock/serializers.py:1419 stock/serializers.py:1732 -#: stock/serializers.py:1781 +#: stock/serializers.py:711 stock/serializers.py:1419 stock/serializers.py:1740 +#: stock/serializers.py:1789 msgid "Destination stock location" msgstr "" @@ -8835,19 +8890,19 @@ msgstr "" msgid "Stock transaction notes" msgstr "" -#: stock/serializers.py:1787 +#: stock/serializers.py:1795 msgid "Merge into existing stock" msgstr "" -#: stock/serializers.py:1788 +#: stock/serializers.py:1796 msgid "Merge returned items into existing stock items if possible" msgstr "" -#: stock/serializers.py:1831 +#: stock/serializers.py:1839 msgid "Next Serial Number" msgstr "" -#: stock/serializers.py:1837 +#: stock/serializers.py:1845 msgid "Previous Serial Number" msgstr "" @@ -8903,83 +8958,87 @@ msgstr "" msgid "Stock manually removed" msgstr "" -#: stock/status_codes.py:57 +#: stock/status_codes.py:56 +msgid "Serialized stock items" +msgstr "" + +#: stock/status_codes.py:58 msgid "Returned to stock" msgstr "" -#: stock/status_codes.py:60 +#: stock/status_codes.py:61 msgid "Location changed" msgstr "" -#: stock/status_codes.py:61 +#: stock/status_codes.py:62 msgid "Stock updated" msgstr "" -#: stock/status_codes.py:64 +#: stock/status_codes.py:65 msgid "Installed into assembly" msgstr "" -#: stock/status_codes.py:65 +#: stock/status_codes.py:66 msgid "Removed from assembly" msgstr "" -#: stock/status_codes.py:67 +#: stock/status_codes.py:68 msgid "Installed component item" msgstr "" -#: stock/status_codes.py:68 +#: stock/status_codes.py:69 msgid "Removed component item" msgstr "" -#: stock/status_codes.py:71 +#: stock/status_codes.py:72 msgid "Split from parent item" msgstr "" -#: stock/status_codes.py:72 +#: stock/status_codes.py:73 msgid "Split child item" msgstr "" -#: stock/status_codes.py:75 +#: stock/status_codes.py:76 msgid "Merged stock items" msgstr "" -#: stock/status_codes.py:78 +#: stock/status_codes.py:79 msgid "Converted to variant" msgstr "" -#: stock/status_codes.py:81 +#: stock/status_codes.py:82 msgid "Build order output created" msgstr "" -#: stock/status_codes.py:82 +#: stock/status_codes.py:83 msgid "Build order output completed" msgstr "" -#: stock/status_codes.py:83 +#: stock/status_codes.py:84 msgid "Build order output rejected" msgstr "" -#: stock/status_codes.py:84 +#: stock/status_codes.py:85 msgid "Consumed by build order" msgstr "" -#: stock/status_codes.py:87 +#: stock/status_codes.py:88 msgid "Shipped against Sales Order" msgstr "" -#: stock/status_codes.py:90 +#: stock/status_codes.py:91 msgid "Received against Purchase Order" msgstr "" -#: stock/status_codes.py:93 +#: stock/status_codes.py:94 msgid "Returned against Return Order" msgstr "" -#: stock/status_codes.py:96 +#: stock/status_codes.py:97 msgid "Sent to customer" msgstr "" -#: stock/status_codes.py:97 +#: stock/status_codes.py:98 msgid "Returned from customer" msgstr "" diff --git a/src/backend/InvenTree/locale/es/LC_MESSAGES/django.po b/src/backend/InvenTree/locale/es/LC_MESSAGES/django.po index 9f5ee05ca1..0ed49b83a3 100644 --- a/src/backend/InvenTree/locale/es/LC_MESSAGES/django.po +++ b/src/backend/InvenTree/locale/es/LC_MESSAGES/django.po @@ -2,8 +2,8 @@ msgid "" msgstr "" "Project-Id-Version: inventree\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-11-19 04:55+0000\n" -"PO-Revision-Date: 2025-11-19 04:59\n" +"POT-Creation-Date: 2025-12-07 07:33+0000\n" +"PO-Revision-Date: 2025-12-07 07:36\n" "Last-Translator: \n" "Language-Team: Spanish\n" "Language: es_ES\n" @@ -57,7 +57,7 @@ msgstr "Sin datos proporcionados" msgid "This field must be unique." msgstr "" -#: InvenTree/api.py:775 +#: InvenTree/api.py:803 msgid "User does not have permission to view this model" msgstr "El usuario no tiene permiso para ver este modelo" @@ -81,22 +81,22 @@ msgstr "La dirección de correo electrónico principal proporcionada no es váli msgid "The provided email domain is not approved." msgstr "El dominio de correo electrónico proporcionado no está aprobado." -#: InvenTree/conversion.py:166 +#: InvenTree/conversion.py:240 #, python-brace-format msgid "Invalid unit provided ({unit})" msgstr "Unidad proporcionada no válida ({unit})" -#: InvenTree/conversion.py:183 +#: InvenTree/conversion.py:257 msgid "No value provided" msgstr "Ningún valor proporcionado" -#: InvenTree/conversion.py:210 +#: InvenTree/conversion.py:284 #, python-brace-format msgid "Could not convert {original} to {unit}" msgstr "No se pudo convertir {original} a {unit}" -#: InvenTree/conversion.py:212 InvenTree/conversion.py:226 -#: InvenTree/helpers.py:597 order/models.py:720 order/models.py:1015 +#: InvenTree/conversion.py:286 InvenTree/conversion.py:300 +#: InvenTree/helpers.py:597 order/models.py:721 order/models.py:1016 msgid "Invalid quantity provided" msgstr "Cantidad proporcionada no válida" @@ -112,11 +112,11 @@ msgstr "Ingrese la fecha" msgid "Invalid decimal value" msgstr "Número decimal no válido" -#: InvenTree/fields.py:218 InvenTree/models.py:1067 build/serializers.py:509 -#: build/serializers.py:580 build/serializers.py:1788 company/models.py:857 -#: order/models.py:1780 +#: InvenTree/fields.py:218 InvenTree/models.py:1228 build/serializers.py:517 +#: build/serializers.py:588 build/serializers.py:1796 company/models.py:811 +#: order/models.py:1781 #: report/templates/report/inventree_build_order_report.html:172 -#: stock/models.py:2848 stock/models.py:2972 stock/serializers.py:717 +#: stock/models.py:2865 stock/models.py:2989 stock/serializers.py:717 #: stock/serializers.py:893 stock/serializers.py:1035 stock/serializers.py:1336 #: stock/serializers.py:1425 stock/serializers.py:1624 msgid "Notes" @@ -171,35 +171,35 @@ msgstr "Eliminar etiquetas HTML de este valor" msgid "Data contains prohibited markdown content" msgstr "Los datos contienen contenido de marcado prohibido" -#: InvenTree/helpers_model.py:133 +#: InvenTree/helpers_model.py:134 msgid "Connection error" msgstr "Error de conexión" -#: InvenTree/helpers_model.py:138 InvenTree/helpers_model.py:145 +#: InvenTree/helpers_model.py:139 InvenTree/helpers_model.py:146 msgid "Server responded with invalid status code" msgstr "El servidor respondió con código de estado no válido" -#: InvenTree/helpers_model.py:141 +#: InvenTree/helpers_model.py:142 msgid "Exception occurred" msgstr "Se ha producido una excepción" -#: InvenTree/helpers_model.py:151 +#: InvenTree/helpers_model.py:152 msgid "Server responded with invalid Content-Length value" msgstr "El servidor respondió con un valor de longitud de contenido inválido" -#: InvenTree/helpers_model.py:154 +#: InvenTree/helpers_model.py:155 msgid "Image size is too large" msgstr "El tamaño de la imagen es demasiado grande" -#: InvenTree/helpers_model.py:166 +#: InvenTree/helpers_model.py:167 msgid "Image download exceeded maximum size" msgstr "La descarga de imagen excedió el tamaño máximo" -#: InvenTree/helpers_model.py:171 +#: InvenTree/helpers_model.py:172 msgid "Remote server returned empty response" msgstr "El servidor remoto devolvió una respuesta vacía" -#: InvenTree/helpers_model.py:179 +#: InvenTree/helpers_model.py:180 msgid "Supplied URL is not a valid image file" msgstr "La URL proporcionada no es un archivo de imagen válido" @@ -207,7 +207,7 @@ msgstr "La URL proporcionada no es un archivo de imagen válido" msgid "Log in to the app" msgstr "Iniciar sesión en la aplicación" -#: InvenTree/magic_login.py:41 company/models.py:172 users/serializers.py:198 +#: InvenTree/magic_login.py:41 company/models.py:173 users/serializers.py:198 msgid "Email" msgstr "Correo electrónico" @@ -215,160 +215,176 @@ msgstr "Correo electrónico" msgid "You must enable two-factor authentication before doing anything else." msgstr "Debe habilitar la autenticación de doble factor antes de continuar." -#: InvenTree/models.py:111 +#: InvenTree/models.py:114 msgid "Error running plugin validation" msgstr "Error al ejecutar la validación del plug-in" -#: InvenTree/models.py:192 +#: InvenTree/models.py:195 msgid "Metadata must be a python dict object" msgstr "Los metadatos deben ser un objeto diccionario de python" -#: InvenTree/models.py:198 +#: InvenTree/models.py:201 msgid "Plugin Metadata" msgstr "Metadatos del complemento" -#: InvenTree/models.py:199 +#: InvenTree/models.py:202 msgid "JSON metadata field, for use by external plugins" msgstr "Campo de metadatos JSON, para uso por complementos externos" -#: InvenTree/models.py:382 +#: InvenTree/models.py:385 msgid "Improperly formatted pattern" msgstr "Patrón con formato incorrecto" -#: InvenTree/models.py:389 +#: InvenTree/models.py:392 msgid "Unknown format key specified" msgstr "Clave de formato especificado desconocida" -#: InvenTree/models.py:395 +#: InvenTree/models.py:398 msgid "Missing required format key" msgstr "Falta la clave de formato necesaria" -#: InvenTree/models.py:406 +#: InvenTree/models.py:409 msgid "Reference field cannot be empty" msgstr "El campo de servidor no puede estar vacío" -#: InvenTree/models.py:414 +#: InvenTree/models.py:417 msgid "Reference must match required pattern" msgstr "La referencia debe coincidir con la expresión regular {pattern}" -#: InvenTree/models.py:445 +#: InvenTree/models.py:448 msgid "Reference number is too large" msgstr "El número de referencia es demasiado grande" -#: InvenTree/models.py:743 +#: InvenTree/models.py:896 msgid "Invalid choice" msgstr "Selección no válida" -#: InvenTree/models.py:856 common/models.py:1410 common/models.py:1837 -#: common/models.py:2096 common/models.py:2221 common/serializers.py:535 -#: company/models.py:615 generic/states/serializers.py:20 machine/models.py:25 -#: part/models.py:1039 part/models.py:3850 plugin/models.py:54 +#: InvenTree/models.py:1017 common/models.py:1414 common/models.py:1841 +#: common/models.py:2102 common/models.py:2227 common/models.py:2494 +#: common/serializers.py:539 generic/states/serializers.py:20 +#: machine/models.py:25 part/models.py:1127 plugin/models.py:54 #: report/models.py:216 stock/models.py:84 msgid "Name" msgstr "Nombre" -#: InvenTree/models.py:862 build/models.py:252 common/models.py:171 -#: common/models.py:2228 common/models.py:2341 company/models.py:543 -#: company/models.py:848 order/models.py:442 order/models.py:1825 -#: part/models.py:1062 part/models.py:3865 report/models.py:222 +#: InvenTree/models.py:1023 build/models.py:253 common/models.py:175 +#: common/models.py:2234 common/models.py:2347 common/models.py:2509 +#: company/models.py:545 company/models.py:802 order/models.py:443 +#: order/models.py:1826 part/models.py:1150 report/models.py:222 #: report/models.py:815 report/models.py:841 #: report/templates/report/inventree_build_order_report.html:117 #: stock/models.py:90 msgid "Description" msgstr "Descripción" -#: InvenTree/models.py:863 stock/models.py:91 +#: InvenTree/models.py:1024 stock/models.py:91 msgid "Description (optional)" msgstr "Descripción (opcional)" -#: InvenTree/models.py:878 common/models.py:2394 +#: InvenTree/models.py:1039 common/models.py:2815 msgid "Path" msgstr "Ruta" -#: InvenTree/models.py:983 +#: InvenTree/models.py:1144 msgid "Duplicate names cannot exist under the same parent" msgstr "Los nombres duplicados no pueden existir bajo el mismo padre" -#: InvenTree/models.py:1067 +#: InvenTree/models.py:1228 msgid "Markdown notes (optional)" msgstr "Notas de Markdown (opcional)" -#: InvenTree/models.py:1098 +#: InvenTree/models.py:1259 msgid "Barcode Data" msgstr "Datos de código de barras" -#: InvenTree/models.py:1099 +#: InvenTree/models.py:1260 msgid "Third party barcode data" msgstr "Datos de código de barras de terceros" -#: InvenTree/models.py:1105 +#: InvenTree/models.py:1266 msgid "Barcode Hash" msgstr "Hash del Código de barras" -#: InvenTree/models.py:1106 +#: InvenTree/models.py:1267 msgid "Unique hash of barcode data" msgstr "Hash único de datos de código de barras" -#: InvenTree/models.py:1187 +#: InvenTree/models.py:1348 msgid "Existing barcode found" msgstr "Código de barras existente encontrado" -#: InvenTree/models.py:1269 +#: InvenTree/models.py:1430 msgid "Task Failure" msgstr "Fallo en la tarea" -#: InvenTree/models.py:1270 +#: InvenTree/models.py:1431 #, python-brace-format msgid "Background worker task '{f}' failed after {n} attempts" msgstr "La tarea en segundo plano '{f}' falló después de {n} intentos" -#: InvenTree/models.py:1297 +#: InvenTree/models.py:1458 msgid "Server Error" msgstr "Error de servidor" -#: InvenTree/models.py:1298 +#: InvenTree/models.py:1459 msgid "An error has been logged by the server." msgstr "Se ha registrado un error por el servidor." -#: InvenTree/models.py:1340 common/models.py:1748 +#: InvenTree/models.py:1501 common/models.py:1752 #: report/templates/report/inventree_bill_of_materials_report.html:126 #: report/templates/report/inventree_bill_of_materials_report.html:148 #: report/templates/report/inventree_return_order_report.html:35 msgid "Image" msgstr "Imágen" -#: InvenTree/serializers.py:253 part/models.py:4571 +#: InvenTree/serializers.py:255 part/models.py:4196 msgid "Must be a valid number" msgstr "Debe ser un número válido" -#: InvenTree/serializers.py:295 company/models.py:214 part/models.py:3285 +#: InvenTree/serializers.py:297 company/models.py:215 part/models.py:3349 msgid "Currency" msgstr "Moneda" -#: InvenTree/serializers.py:298 part/serializers.py:1385 +#: InvenTree/serializers.py:300 part/serializers.py:1250 msgid "Select currency from available options" msgstr "Seleccionar moneda de las opciones disponibles" -#: InvenTree/serializers.py:653 +#: InvenTree/serializers.py:654 +msgid "This field may not be null." +msgstr "" + +#: InvenTree/serializers.py:660 msgid "Invalid value" msgstr "Valor inválido" -#: InvenTree/serializers.py:690 +#: InvenTree/serializers.py:697 msgid "Remote Image" msgstr "Imagen remota" -#: InvenTree/serializers.py:691 +#: InvenTree/serializers.py:698 msgid "URL of remote image file" msgstr "URL de imagen remota" -#: InvenTree/serializers.py:709 +#: InvenTree/serializers.py:716 msgid "Downloading images from remote URL is not enabled" msgstr "La descarga de imágenes desde la URL remota no está habilitada" -#: InvenTree/serializers.py:716 +#: InvenTree/serializers.py:723 msgid "Failed to download image from remote URL" msgstr "Error al descargar la imagen desde la URL remota" +#: InvenTree/serializers.py:806 +msgid "Invalid content type format" +msgstr "" + +#: InvenTree/serializers.py:809 +msgid "Content type not found" +msgstr "" + +#: InvenTree/serializers.py:815 +msgid "Content type does not match required mixin class" +msgstr "" + #: InvenTree/setting/locales.py:20 msgid "Arabic" msgstr "Árabe" @@ -537,30 +553,30 @@ msgstr "Unidad física inválida" msgid "Not a valid currency code" msgstr "No es un código de moneda válido" -#: build/api.py:54 order/api.py:111 order/api.py:270 order/api.py:1373 -#: order/serializers.py:132 +#: build/api.py:54 order/api.py:116 order/api.py:275 order/api.py:1378 +#: order/serializers.py:133 msgid "Order Status" msgstr "Estado del pedido" -#: build/api.py:80 build/models.py:264 +#: build/api.py:80 build/models.py:265 msgid "Parent Build" msgstr "Construcción o Armado Superior" -#: build/api.py:84 build/api.py:831 order/api.py:547 order/api.py:770 -#: order/api.py:1174 order/api.py:1449 stock/api.py:573 +#: build/api.py:84 build/api.py:837 order/api.py:553 order/api.py:776 +#: order/api.py:1179 order/api.py:1454 stock/api.py:573 msgid "Include Variants" msgstr "Incluye Variantes" -#: build/api.py:100 build/api.py:466 build/api.py:845 build/models.py:270 -#: build/serializers.py:1225 build/serializers.py:1356 -#: build/serializers.py:1427 company/models.py:1067 company/serializers.py:445 -#: order/api.py:298 order/api.py:302 order/api.py:929 order/api.py:1187 -#: order/api.py:1190 order/models.py:1941 order/models.py:2108 -#: order/models.py:2109 part/api.py:1233 part/api.py:1236 part/api.py:1302 -#: part/api.py:1589 part/models.py:472 part/models.py:3296 part/models.py:3439 -#: part/models.py:3497 part/models.py:3518 part/models.py:3540 -#: part/models.py:3679 part/models.py:4046 part/models.py:4368 -#: part/models.py:4787 part/serializers.py:1928 +#: build/api.py:100 build/api.py:472 build/api.py:851 build/models.py:271 +#: build/serializers.py:1233 build/serializers.py:1364 +#: build/serializers.py:1435 company/models.py:1021 company/serializers.py:490 +#: order/api.py:303 order/api.py:307 order/api.py:934 order/api.py:1192 +#: order/api.py:1195 order/models.py:1942 order/models.py:2109 +#: order/models.py:2110 part/api.py:1160 part/api.py:1163 part/api.py:1314 +#: part/models.py:550 part/models.py:3360 part/models.py:3503 +#: part/models.py:3561 part/models.py:3582 part/models.py:3604 +#: part/models.py:3743 part/models.py:3993 part/models.py:4412 +#: part/serializers.py:1801 #: report/templates/report/inventree_bill_of_materials_report.html:110 #: report/templates/report/inventree_bill_of_materials_report.html:137 #: report/templates/report/inventree_build_order_report.html:109 @@ -580,9 +596,9 @@ msgstr "Incluye Variantes" msgid "Part" msgstr "Parte" -#: build/api.py:120 build/api.py:123 build/serializers.py:1438 part/api.py:980 -#: part/api.py:1316 part/api.py:1600 part/models.py:1080 part/models.py:3568 -#: part/models.py:4162 part/serializers.py:1752 stock/api.py:869 +#: build/api.py:120 build/api.py:123 build/serializers.py:1446 part/api.py:975 +#: part/api.py:1325 part/models.py:435 part/models.py:1168 part/models.py:3632 +#: part/serializers.py:1617 stock/api.py:869 msgid "Category" msgstr "Categoría" @@ -590,7 +606,7 @@ msgstr "Categoría" msgid "Ancestor Build" msgstr "" -#: build/api.py:152 order/api.py:129 +#: build/api.py:152 order/api.py:134 msgid "Assigned to me" msgstr "Asignado a mí" @@ -638,134 +654,134 @@ msgstr "Completado antes" msgid "Completed after" msgstr "Completado después" -#: build/api.py:249 order/api.py:226 +#: build/api.py:249 order/api.py:231 msgid "Min Date" msgstr "Fecha Mínima" -#: build/api.py:272 order/api.py:245 +#: build/api.py:272 order/api.py:250 msgid "Max Date" msgstr "Fecha Máxima" -#: build/api.py:297 build/api.py:300 part/api.py:217 stock/api.py:961 +#: build/api.py:297 build/api.py:300 part/api.py:212 stock/api.py:961 msgid "Exclude Tree" msgstr "Excluir Árbol" -#: build/api.py:405 +#: build/api.py:411 msgid "Build must be cancelled before it can be deleted" msgstr "La compilación debe cancelarse antes de poder ser eliminada" -#: build/api.py:449 build/serializers.py:1374 part/models.py:4402 +#: build/api.py:455 build/serializers.py:1382 part/models.py:4027 msgid "Consumable" msgstr "Consumible" -#: build/api.py:452 build/serializers.py:1377 part/models.py:4396 +#: build/api.py:458 build/serializers.py:1385 part/models.py:4021 msgid "Optional" msgstr "Opcional" -#: build/api.py:455 build/serializers.py:1415 common/setting/system.py:456 -#: part/models.py:1202 part/serializers.py:1714 part/serializers.py:1725 +#: build/api.py:461 build/serializers.py:1423 common/setting/system.py:456 +#: part/models.py:1290 part/serializers.py:1579 part/serializers.py:1590 #: stock/api.py:639 msgid "Assembly" msgstr "Montaje" -#: build/api.py:458 +#: build/api.py:464 msgid "Tracked" msgstr "Rastreado" -#: build/api.py:461 build/serializers.py:1380 part/models.py:1220 +#: build/api.py:467 build/serializers.py:1388 part/models.py:1308 msgid "Testable" msgstr "Comprobable" -#: build/api.py:471 order/api.py:993 order/api.py:1363 +#: build/api.py:477 order/api.py:998 order/api.py:1368 msgid "Order Outstanding" msgstr "Pedido pendiente" -#: build/api.py:481 build/serializers.py:1464 order/api.py:952 +#: build/api.py:487 build/serializers.py:1472 order/api.py:957 msgid "Allocated" msgstr "Asignadas" -#: build/api.py:490 build/models.py:1672 build/serializers.py:1393 +#: build/api.py:496 build/models.py:1673 build/serializers.py:1401 msgid "Consumed" msgstr "Agotado" -#: build/api.py:499 company/models.py:912 company/serializers.py:440 +#: build/api.py:505 company/models.py:866 company/serializers.py:467 #: templates/email/build_order_required_stock.html:19 #: templates/email/low_stock_notification.html:17 #: templates/email/part_event_notification.html:18 msgid "Available" msgstr "Disponible" -#: build/api.py:523 build/serializers.py:1466 company/serializers.py:437 -#: order/serializers.py:1281 part/serializers.py:959 part/serializers.py:1306 -#: part/serializers.py:1761 +#: build/api.py:529 build/serializers.py:1474 company/serializers.py:464 +#: order/serializers.py:1295 part/serializers.py:844 part/serializers.py:1171 +#: part/serializers.py:1626 msgid "On Order" msgstr "En pedido" -#: build/api.py:868 build/models.py:117 order/models.py:1974 +#: build/api.py:874 build/models.py:118 order/models.py:1975 #: report/templates/report/inventree_build_order_report.html:105 #: stock/serializers.py:93 templates/email/build_order_completed.html:16 #: templates/email/overdue_build_order.html:15 msgid "Build Order" msgstr "Construir órden" -#: build/api.py:882 build/api.py:886 build/serializers.py:372 -#: build/serializers.py:497 build/serializers.py:567 build/serializers.py:1251 -#: build/serializers.py:1256 order/api.py:1234 order/api.py:1239 -#: order/serializers.py:833 order/serializers.py:973 order/serializers.py:2042 +#: build/api.py:888 build/api.py:892 build/serializers.py:380 +#: build/serializers.py:505 build/serializers.py:575 build/serializers.py:1259 +#: build/serializers.py:1264 order/api.py:1239 order/api.py:1244 +#: order/serializers.py:844 order/serializers.py:984 order/serializers.py:2059 #: stock/api.py:987 stock/serializers.py:111 stock/serializers.py:601 #: stock/serializers.py:710 stock/serializers.py:888 stock/serializers.py:1418 -#: stock/serializers.py:1731 stock/serializers.py:1780 +#: stock/serializers.py:1739 stock/serializers.py:1788 #: templates/email/stale_stock_notification.html:18 users/models.py:549 msgid "Location" msgstr "Ubicación" -#: build/api.py:894 +#: build/api.py:900 msgid "Output" msgstr "Salida" -#: build/api.py:896 +#: build/api.py:902 msgid "Filter by output stock item ID. Use 'null' to find uninstalled build items." msgstr "" -#: build/models.py:118 users/ruleset.py:31 +#: build/models.py:119 users/ruleset.py:31 msgid "Build Orders" msgstr "Construir órdenes" -#: build/models.py:168 +#: build/models.py:169 msgid "Assembly BOM has not been validated" msgstr "BOM de ensamblado no ha sido validado" -#: build/models.py:175 +#: build/models.py:176 msgid "Build order cannot be created for an inactive part" msgstr "La orden de construcción no puede ser creado para una parte inactiva" -#: build/models.py:182 +#: build/models.py:183 msgid "Build order cannot be created for an unlocked part" msgstr "La orden de construcción no puede ser creada para una parte desbloqueada" -#: build/models.py:200 +#: build/models.py:201 msgid "Build orders can only be externally fulfilled for purchaseable parts" msgstr "" -#: build/models.py:207 order/models.py:369 +#: build/models.py:208 order/models.py:370 msgid "Responsible user or group must be specified" msgstr "Se debe especificar un usuario o grupo responsable" -#: build/models.py:212 +#: build/models.py:213 msgid "Build order part cannot be changed" msgstr "La parte del pedido de construcción no puede ser modificada" -#: build/models.py:217 order/models.py:382 +#: build/models.py:218 order/models.py:383 msgid "Target date must be after start date" msgstr "La fecha límite debe ser posterior a la fecha de inicio" -#: build/models.py:245 +#: build/models.py:246 msgid "Build Order Reference" msgstr "Número de orden de construcción o armado" -#: build/models.py:246 build/serializers.py:1371 order/models.py:614 -#: order/models.py:1311 order/models.py:1773 order/models.py:2712 -#: part/models.py:4442 +#: build/models.py:247 build/serializers.py:1379 order/models.py:615 +#: order/models.py:1312 order/models.py:1774 order/models.py:2713 +#: part/models.py:4067 #: report/templates/report/inventree_bill_of_materials_report.html:139 #: report/templates/report/inventree_purchase_order_report.html:35 #: report/templates/report/inventree_return_order_report.html:26 @@ -773,230 +789,230 @@ msgstr "Número de orden de construcción o armado" msgid "Reference" msgstr "Referencia" -#: build/models.py:255 +#: build/models.py:256 msgid "Brief description of the build (optional)" msgstr "Breve descripción de la construcción (opcional)" -#: build/models.py:265 +#: build/models.py:266 msgid "BuildOrder to which this build is allocated" msgstr "Orden de Construcción o Armado a la que se asigna" -#: build/models.py:274 +#: build/models.py:275 msgid "Select part to build" msgstr "Seleccionar parte a construir o armar" -#: build/models.py:279 +#: build/models.py:280 msgid "Sales Order Reference" msgstr "Referencia de orden de venta" -#: build/models.py:284 +#: build/models.py:285 msgid "SalesOrder to which this build is allocated" msgstr "Orden de Venta a la que se asigna" -#: build/models.py:289 build/serializers.py:1097 +#: build/models.py:290 build/serializers.py:1105 msgid "Source Location" msgstr "Ubicación de la fuente" -#: build/models.py:295 +#: build/models.py:296 msgid "Select location to take stock from for this build (leave blank to take from any stock location)" msgstr "Seleccione la ubicación de donde tomar stock para esta construcción o armado (deje en blanco para tomar desde cualquier ubicación)" -#: build/models.py:301 +#: build/models.py:302 msgid "External Build" msgstr "" -#: build/models.py:302 +#: build/models.py:303 msgid "This build order is fulfilled externally" msgstr "" -#: build/models.py:307 +#: build/models.py:308 msgid "Destination Location" msgstr "Ubicación de destino" -#: build/models.py:312 +#: build/models.py:313 msgid "Select location where the completed items will be stored" msgstr "Seleccione la ubicación donde se almacenarán los artículos completados" -#: build/models.py:316 +#: build/models.py:317 msgid "Build Quantity" msgstr "Cantidad a crear" -#: build/models.py:319 +#: build/models.py:320 msgid "Number of stock items to build" msgstr "Número de objetos existentes a construir" -#: build/models.py:323 +#: build/models.py:324 msgid "Completed items" msgstr "Elementos completados" -#: build/models.py:325 +#: build/models.py:326 msgid "Number of stock items which have been completed" msgstr "Número de productos en stock que se han completado" -#: build/models.py:329 +#: build/models.py:330 msgid "Build Status" msgstr "Estado de la construcción" -#: build/models.py:334 +#: build/models.py:335 msgid "Build status code" msgstr "Código de estado de construcción" -#: build/models.py:343 build/serializers.py:359 order/serializers.py:849 +#: build/models.py:344 build/serializers.py:367 order/serializers.py:860 #: stock/models.py:1100 stock/serializers.py:85 stock/serializers.py:1591 msgid "Batch Code" msgstr "Numero de lote" -#: build/models.py:347 build/serializers.py:360 +#: build/models.py:348 build/serializers.py:368 msgid "Batch code for this build output" msgstr "Número de lote de este producto final" -#: build/models.py:351 order/models.py:479 order/serializers.py:186 -#: part/models.py:1283 +#: build/models.py:352 order/models.py:480 order/serializers.py:193 +#: part/models.py:1371 msgid "Creation Date" msgstr "Fecha de Creación" -#: build/models.py:357 +#: build/models.py:358 msgid "Build start date" msgstr "Crear fecha de inicio" -#: build/models.py:358 +#: build/models.py:359 msgid "Scheduled start date for this build order" msgstr "Fecha de inicio programada para este pedido" -#: build/models.py:364 +#: build/models.py:365 msgid "Target completion date" msgstr "Fecha límite de finalización" -#: build/models.py:366 +#: build/models.py:367 msgid "Target date for build completion. Build will be overdue after this date." msgstr "Fecha límite para la finalización de la construcción. La construcción estará vencida después de esta fecha." -#: build/models.py:371 order/models.py:667 order/models.py:2751 +#: build/models.py:372 order/models.py:668 order/models.py:2752 msgid "Completion Date" msgstr "Fecha de finalización" -#: build/models.py:379 +#: build/models.py:380 msgid "completed by" msgstr "terminado por" -#: build/models.py:388 +#: build/models.py:389 msgid "Issued by" msgstr "Emitido por" -#: build/models.py:389 +#: build/models.py:390 msgid "User who issued this build order" msgstr "El usuario que emitió esta orden" -#: build/models.py:398 common/models.py:180 order/api.py:179 -#: order/models.py:504 part/models.py:1300 +#: build/models.py:399 common/models.py:184 order/api.py:184 +#: order/models.py:505 part/models.py:1388 #: report/templates/report/inventree_build_order_report.html:158 msgid "Responsible" msgstr "Responsable" -#: build/models.py:399 +#: build/models.py:400 msgid "User or group responsible for this build order" msgstr "Usuario o grupo responsable de esta orden de construcción" -#: build/models.py:404 stock/models.py:1093 +#: build/models.py:405 stock/models.py:1093 msgid "External Link" msgstr "Link externo" -#: build/models.py:406 common/models.py:1984 part/models.py:1114 +#: build/models.py:407 common/models.py:1990 part/models.py:1202 #: stock/models.py:1095 msgid "Link to external URL" msgstr "Enlace a URL externa" -#: build/models.py:411 +#: build/models.py:412 msgid "Build Priority" msgstr "Prioridad de construcción" -#: build/models.py:414 +#: build/models.py:415 msgid "Priority of this build order" msgstr "Prioridad de esta orden de construcción" -#: build/models.py:422 common/models.py:150 common/models.py:164 -#: order/api.py:165 order/models.py:451 order/models.py:1805 +#: build/models.py:423 common/models.py:154 common/models.py:168 +#: order/api.py:170 order/models.py:452 order/models.py:1806 msgid "Project Code" msgstr "Código del proyecto" -#: build/models.py:423 +#: build/models.py:424 msgid "Project code for this build order" msgstr "Código de proyecto para esta orden de ensamble" -#: build/models.py:676 +#: build/models.py:677 msgid "Cannot complete build order with open child builds" msgstr "" -#: build/models.py:681 +#: build/models.py:682 msgid "Cannot complete build order with incomplete outputs" msgstr "" -#: build/models.py:700 build/models.py:830 +#: build/models.py:701 build/models.py:831 msgid "Failed to offload task to complete build allocations" msgstr "No se pudo descargar la tarea para completar las asignaciones de construcción" -#: build/models.py:723 +#: build/models.py:724 #, python-brace-format msgid "Build order {build} has been completed" msgstr "El pedido {build} ha sido procesado" -#: build/models.py:729 +#: build/models.py:730 msgid "A build order has been completed" msgstr "Pedido #[order] ha sido procesado" -#: build/models.py:911 build/serializers.py:407 +#: build/models.py:912 build/serializers.py:415 msgid "Serial numbers must be provided for trackable parts" msgstr "Los números de serie deben ser proporcionados para las partes rastreables" -#: build/models.py:1042 build/models.py:1129 +#: build/models.py:1043 build/models.py:1130 msgid "No build output specified" msgstr "No se ha especificado salida de construcción" -#: build/models.py:1045 +#: build/models.py:1046 msgid "Build output is already completed" msgstr "La construcción de la salida ya está completa" -#: build/models.py:1048 +#: build/models.py:1049 msgid "Build output does not match Build Order" msgstr "La salida de la construcción no coincide con el orden de construcción" -#: build/models.py:1136 build/models.py:1234 build/serializers.py:285 -#: build/serializers.py:335 build/serializers.py:965 build/serializers.py:1739 -#: order/models.py:717 order/serializers.py:658 order/serializers.py:844 -#: part/serializers.py:1708 stock/models.py:940 stock/models.py:1430 +#: build/models.py:1137 build/models.py:1235 build/serializers.py:293 +#: build/serializers.py:343 build/serializers.py:973 build/serializers.py:1747 +#: order/models.py:718 order/serializers.py:669 order/serializers.py:855 +#: part/serializers.py:1573 stock/models.py:940 stock/models.py:1430 #: stock/models.py:1878 stock/serializers.py:688 stock/serializers.py:1580 msgid "Quantity must be greater than zero" msgstr "La cantidad debe ser mayor que cero" -#: build/models.py:1140 build/models.py:1239 build/serializers.py:290 +#: build/models.py:1141 build/models.py:1240 build/serializers.py:298 msgid "Quantity cannot be greater than the output quantity" msgstr "La cantidad no puede ser mayor que la cantidad de salida" -#: build/models.py:1214 build/serializers.py:606 +#: build/models.py:1215 build/serializers.py:614 msgid "Build output has not passed all required tests" msgstr "" -#: build/models.py:1217 build/serializers.py:601 +#: build/models.py:1218 build/serializers.py:609 #, python-brace-format msgid "Build output {serial} has not passed all required tests" msgstr "La construcción {serial} no ha pasado todas las pruebas requeridas" -#: build/models.py:1229 +#: build/models.py:1230 msgid "Cannot partially complete a build output with allocated items" msgstr "" -#: build/models.py:1627 +#: build/models.py:1628 msgid "Build Order Line Item" msgstr "Construir línea de pedido" -#: build/models.py:1651 +#: build/models.py:1652 msgid "Build object" msgstr "Ensamblar equipo" -#: build/models.py:1663 build/models.py:1974 build/serializers.py:271 -#: build/serializers.py:320 build/serializers.py:1392 common/models.py:1340 -#: order/models.py:1756 order/models.py:2597 order/serializers.py:1696 -#: order/serializers.py:2124 part/models.py:3453 part/models.py:4390 +#: build/models.py:1664 build/models.py:1975 build/serializers.py:279 +#: build/serializers.py:328 build/serializers.py:1400 common/models.py:1344 +#: order/models.py:1757 order/models.py:2598 order/serializers.py:1710 +#: order/serializers.py:2141 part/models.py:3517 part/models.py:4015 #: report/templates/report/inventree_bill_of_materials_report.html:138 #: report/templates/report/inventree_build_order_report.html:113 #: report/templates/report/inventree_purchase_order_report.html:36 @@ -1014,427 +1030,427 @@ msgstr "Ensamblar equipo" msgid "Quantity" msgstr "Cantidad" -#: build/models.py:1664 +#: build/models.py:1665 msgid "Required quantity for build order" msgstr "Cantidad requerida para orden de ensamble" -#: build/models.py:1673 +#: build/models.py:1674 msgid "Quantity of consumed stock" msgstr "" -#: build/models.py:1772 +#: build/models.py:1773 msgid "Build item must specify a build output, as master part is marked as trackable" msgstr "Item de construcción o armado debe especificar un resultado o salida, ya que la parte maestra está marcada como rastreable" -#: build/models.py:1783 +#: build/models.py:1784 #, python-brace-format msgid "Allocated quantity ({q}) must not exceed available stock quantity ({a})" msgstr "Cantidad asignada ({q}) no debe exceder la cantidad disponible de stock ({a})" -#: build/models.py:1804 order/models.py:2546 +#: build/models.py:1805 order/models.py:2547 msgid "Stock item is over-allocated" msgstr "Artículo de stock sobreasignado" -#: build/models.py:1809 order/models.py:2549 +#: build/models.py:1810 order/models.py:2550 msgid "Allocation quantity must be greater than zero" msgstr "Cantidad asignada debe ser mayor que cero" -#: build/models.py:1815 +#: build/models.py:1816 msgid "Quantity must be 1 for serialized stock" msgstr "La cantidad debe ser 1 para el stock serializado" -#: build/models.py:1875 +#: build/models.py:1876 msgid "Selected stock item does not match BOM line" msgstr "El artículo de almacén selelccionado no coincide con la línea BOM" -#: build/models.py:1913 +#: build/models.py:1914 msgid "Allocated quantity exceeds available stock quantity" msgstr "" -#: build/models.py:1964 build/serializers.py:948 build/serializers.py:1240 -#: order/serializers.py:1533 order/serializers.py:1554 +#: build/models.py:1965 build/serializers.py:956 build/serializers.py:1248 +#: order/serializers.py:1547 order/serializers.py:1568 #: report/templates/report/inventree_sales_order_shipment_report.html:29 #: stock/api.py:1404 stock/models.py:456 stock/serializers.py:102 #: stock/serializers.py:800 stock/serializers.py:1274 stock/serializers.py:1386 msgid "Stock Item" msgstr "Artículo de stock" -#: build/models.py:1965 +#: build/models.py:1966 msgid "Source stock item" msgstr "Producto original de stock" -#: build/models.py:1975 +#: build/models.py:1976 msgid "Stock quantity to allocate to build" msgstr "Cantidad de stock a asignar para construir" -#: build/models.py:1984 +#: build/models.py:1985 msgid "Install into" msgstr "Instalar en" -#: build/models.py:1985 +#: build/models.py:1986 msgid "Destination stock item" msgstr "Artículo de stock de destino" -#: build/serializers.py:118 +#: build/serializers.py:120 msgid "Build Level" msgstr "Nivel de construcción" -#: build/serializers.py:128 +#: build/serializers.py:136 msgid "Part Name" msgstr "Nombre de parte" -#: build/serializers.py:153 +#: build/serializers.py:161 msgid "Project Code Label" msgstr "Etiqueta del código del proyecto" -#: build/serializers.py:219 build/serializers.py:974 +#: build/serializers.py:227 build/serializers.py:982 msgid "Build Output" msgstr "Resultado de la construcción o armado" -#: build/serializers.py:231 +#: build/serializers.py:239 msgid "Build output does not match the parent build" msgstr "La salida de construcción no coincide con la construcción padre" -#: build/serializers.py:235 +#: build/serializers.py:243 msgid "Output part does not match BuildOrder part" msgstr "La parte de salida no coincide con la parte de la Orden de Construcción" -#: build/serializers.py:239 +#: build/serializers.py:247 msgid "This build output has already been completed" msgstr "Esta salida de construcción ya ha sido completada" -#: build/serializers.py:253 +#: build/serializers.py:261 msgid "This build output is not fully allocated" msgstr "Esta salida de construcción no está completamente asignada" -#: build/serializers.py:272 build/serializers.py:321 +#: build/serializers.py:280 build/serializers.py:329 msgid "Enter quantity for build output" msgstr "Ingrese la cantidad para la producción de la construcción" -#: build/serializers.py:343 +#: build/serializers.py:351 msgid "Integer quantity required for trackable parts" msgstr "Cantidad entera requerida para partes rastreables" -#: build/serializers.py:349 +#: build/serializers.py:357 msgid "Integer quantity required, as the bill of materials contains trackable parts" msgstr "Cantidad entera requerida, ya que la factura de materiales contiene partes rastreables" -#: build/serializers.py:366 order/serializers.py:865 order/serializers.py:1700 +#: build/serializers.py:374 order/serializers.py:876 order/serializers.py:1714 #: stock/serializers.py:699 msgid "Serial Numbers" msgstr "Números de serie" -#: build/serializers.py:367 +#: build/serializers.py:375 msgid "Enter serial numbers for build outputs" msgstr "Introduzca los números de serie de salidas de construcción" -#: build/serializers.py:373 +#: build/serializers.py:381 msgid "Stock location for build output" msgstr "Ubicación de stock para objetos construidos" -#: build/serializers.py:388 +#: build/serializers.py:396 msgid "Auto Allocate Serial Numbers" msgstr "Autoasignar Números de Serie" -#: build/serializers.py:390 +#: build/serializers.py:398 msgid "Automatically allocate required items with matching serial numbers" msgstr "Asignar automáticamente los artículos requeridos con números de serie coincidentes" -#: build/serializers.py:423 order/serializers.py:951 stock/api.py:1183 +#: build/serializers.py:431 order/serializers.py:962 stock/api.py:1183 #: stock/models.py:1901 msgid "The following serial numbers already exist or are invalid" msgstr "Los siguientes números seriales ya existen o son inválidos" -#: build/serializers.py:465 build/serializers.py:521 build/serializers.py:613 +#: build/serializers.py:473 build/serializers.py:529 build/serializers.py:621 msgid "A list of build outputs must be provided" msgstr "Debe proporcionarse una lista de salidas de construcción" -#: build/serializers.py:498 +#: build/serializers.py:506 msgid "Stock location for scrapped outputs" msgstr "Ubicación de almacén para salidas descartadas" -#: build/serializers.py:504 +#: build/serializers.py:512 msgid "Discard Allocations" msgstr "Descartar asignaciones" -#: build/serializers.py:505 +#: build/serializers.py:513 msgid "Discard any stock allocations for scrapped outputs" msgstr "Descartar cualquier asignación de existencias para las salidas descartadas" -#: build/serializers.py:510 +#: build/serializers.py:518 msgid "Reason for scrapping build output(s)" msgstr "Razón para descartar la salida de ensamble(s)" -#: build/serializers.py:568 +#: build/serializers.py:576 msgid "Location for completed build outputs" msgstr "Ubicación para las salidas de construcción completadas" -#: build/serializers.py:576 +#: build/serializers.py:584 msgid "Accept Incomplete Allocation" msgstr "Aceptar Asignación Incompleta" -#: build/serializers.py:577 +#: build/serializers.py:585 msgid "Complete outputs if stock has not been fully allocated" msgstr "Completar salidas si el inventario no se ha asignado completamente" -#: build/serializers.py:702 +#: build/serializers.py:710 msgid "Consume Allocated Stock" msgstr "Consumir Stock Asignado" -#: build/serializers.py:703 +#: build/serializers.py:711 msgid "Consume any stock which has already been allocated to this build" msgstr "Consume cualquier stock que ya ha sido asignado a esta construcción" -#: build/serializers.py:709 +#: build/serializers.py:717 msgid "Remove Incomplete Outputs" msgstr "Eliminar salidas incompletas" -#: build/serializers.py:710 +#: build/serializers.py:718 msgid "Delete any build outputs which have not been completed" msgstr "Eliminar cualquier salida de construcción que no se haya completado" -#: build/serializers.py:737 +#: build/serializers.py:745 msgid "Not permitted" msgstr "No permitido" -#: build/serializers.py:738 +#: build/serializers.py:746 msgid "Accept as consumed by this build order" msgstr "Aceptar como consumido por este pedido de construcción" -#: build/serializers.py:739 +#: build/serializers.py:747 msgid "Deallocate before completing this build order" msgstr "Liberar antes de completar esta orden de construcción" -#: build/serializers.py:766 +#: build/serializers.py:774 msgid "Overallocated Stock" msgstr "Stock sobreasignado" -#: build/serializers.py:769 +#: build/serializers.py:777 msgid "How do you want to handle extra stock items assigned to the build order" msgstr "Cómo quieres manejar los artículos extra de inventario asignados a la orden de construcción" -#: build/serializers.py:780 +#: build/serializers.py:788 msgid "Some stock items have been overallocated" msgstr "Algunos artículos de inventario han sido sobreasignados" -#: build/serializers.py:785 +#: build/serializers.py:793 msgid "Accept Unallocated" msgstr "Aceptar no asignado" -#: build/serializers.py:787 +#: build/serializers.py:795 msgid "Accept that stock items have not been fully allocated to this build order" msgstr "Aceptar que los artículos de stock no se han asignado completamente a este pedido de construcción" -#: build/serializers.py:798 +#: build/serializers.py:806 msgid "Required stock has not been fully allocated" msgstr "El stock requerido no ha sido completamente asignado" -#: build/serializers.py:803 order/serializers.py:524 order/serializers.py:1601 +#: build/serializers.py:811 order/serializers.py:535 order/serializers.py:1615 msgid "Accept Incomplete" msgstr "Aceptar incompleto" -#: build/serializers.py:805 +#: build/serializers.py:813 msgid "Accept that the required number of build outputs have not been completed" msgstr "Aceptar que el número requerido de salidas de construcción no se han completado" -#: build/serializers.py:816 +#: build/serializers.py:824 msgid "Required build quantity has not been completed" msgstr "La cantidad de construcción requerida aún no se ha completado" -#: build/serializers.py:828 +#: build/serializers.py:836 msgid "Build order has open child build orders" msgstr "La orden de construcción tiene órdenes hijas de construcción abiertas" -#: build/serializers.py:831 +#: build/serializers.py:839 msgid "Build order must be in production state" msgstr "Orden de construcción debe estar en estado de producción" -#: build/serializers.py:834 +#: build/serializers.py:842 msgid "Build order has incomplete outputs" msgstr "El orden de construcción tiene salidas incompletas" -#: build/serializers.py:873 +#: build/serializers.py:881 msgid "Build Line" msgstr "Linea de ensamble" -#: build/serializers.py:881 +#: build/serializers.py:889 msgid "Build output" msgstr "Resultado de la construcción o armado" -#: build/serializers.py:889 +#: build/serializers.py:897 msgid "Build output must point to the same build" msgstr "La salida de la construcción debe apuntar a la misma construcción" -#: build/serializers.py:920 +#: build/serializers.py:928 msgid "Build Line Item" msgstr "Crear partida" -#: build/serializers.py:938 +#: build/serializers.py:946 msgid "bom_item.part must point to the same part as the build order" msgstr "bom_item.part debe apuntar a la misma parte que la orden de construcción" -#: build/serializers.py:954 stock/serializers.py:1287 +#: build/serializers.py:962 stock/serializers.py:1287 msgid "Item must be in stock" msgstr "El artículo debe estar en stock" -#: build/serializers.py:997 order/serializers.py:1587 +#: build/serializers.py:1005 order/serializers.py:1601 #, python-brace-format msgid "Available quantity ({q}) exceeded" msgstr "Cantidad disponible ({q}) excedida" -#: build/serializers.py:1003 +#: build/serializers.py:1011 msgid "Build output must be specified for allocation of tracked parts" msgstr "La salida de la construcción debe especificarse para la asignación de partes rastreadas" -#: build/serializers.py:1011 +#: build/serializers.py:1019 msgid "Build output cannot be specified for allocation of untracked parts" msgstr "La salida de construcción no se puede especificar para la asignación de partes no rastreadas" -#: build/serializers.py:1035 order/serializers.py:1860 +#: build/serializers.py:1043 order/serializers.py:1874 msgid "Allocation items must be provided" msgstr "Debe proporcionarse la adjudicación de artículos" -#: build/serializers.py:1099 +#: build/serializers.py:1107 msgid "Stock location where parts are to be sourced (leave blank to take from any location)" msgstr "Ubicación de inventario donde las partes deben ser obtenidas (dejar en blanco para tomar de cualquier ubicación)" -#: build/serializers.py:1108 +#: build/serializers.py:1116 msgid "Exclude Location" msgstr "Excluir ubicación" -#: build/serializers.py:1109 +#: build/serializers.py:1117 msgid "Exclude stock items from this selected location" msgstr "Excluir artículos de stock de esta ubicación seleccionada" -#: build/serializers.py:1114 +#: build/serializers.py:1122 msgid "Interchangeable Stock" msgstr "Stock intercambiable" -#: build/serializers.py:1115 +#: build/serializers.py:1123 msgid "Stock items in multiple locations can be used interchangeably" msgstr "Los artículos de inventario en múltiples ubicaciones se pueden utilizar de forma intercambiable" -#: build/serializers.py:1120 +#: build/serializers.py:1128 msgid "Substitute Stock" msgstr "Sustituir stock" -#: build/serializers.py:1121 +#: build/serializers.py:1129 msgid "Allow allocation of substitute parts" msgstr "Permitir la asignación de partes sustitutas" -#: build/serializers.py:1126 +#: build/serializers.py:1134 msgid "Optional Items" msgstr "Elementos opcionales" -#: build/serializers.py:1127 +#: build/serializers.py:1135 msgid "Allocate optional BOM items to build order" msgstr "Asignar artículos de la BOM opcionales para construir la orden" -#: build/serializers.py:1148 +#: build/serializers.py:1156 msgid "Failed to start auto-allocation task" msgstr "Error al iniciar la tarea de asignación automática" -#: build/serializers.py:1200 +#: build/serializers.py:1208 msgid "BOM Reference" msgstr "Referencia BOM" -#: build/serializers.py:1206 +#: build/serializers.py:1214 msgid "BOM Part ID" msgstr "ID de la parte BOM" -#: build/serializers.py:1213 +#: build/serializers.py:1221 msgid "BOM Part Name" msgstr "Nombre de parte la BOM" -#: build/serializers.py:1266 build/serializers.py:1449 +#: build/serializers.py:1274 build/serializers.py:1457 msgid "Build" msgstr "" -#: build/serializers.py:1276 company/models.py:685 order/api.py:311 -#: order/api.py:316 order/api.py:543 order/serializers.py:650 +#: build/serializers.py:1284 company/models.py:639 order/api.py:316 +#: order/api.py:321 order/api.py:549 order/serializers.py:661 #: stock/models.py:1036 stock/serializers.py:579 msgid "Supplier Part" msgstr "Parte del proveedor" -#: build/serializers.py:1284 stock/serializers.py:620 +#: build/serializers.py:1292 stock/serializers.py:620 msgid "Allocated Quantity" msgstr "Cantidad Asignada" -#: build/serializers.py:1351 +#: build/serializers.py:1359 msgid "Build Reference" msgstr "Referencia de orden de Ensamblado" -#: build/serializers.py:1361 +#: build/serializers.py:1369 msgid "Part Category Name" msgstr "Nombre de la categoría por pieza" -#: build/serializers.py:1383 common/setting/system.py:480 part/models.py:1214 +#: build/serializers.py:1391 common/setting/system.py:480 part/models.py:1302 msgid "Trackable" msgstr "Rastreable" -#: build/serializers.py:1386 +#: build/serializers.py:1394 msgid "Inherited" msgstr "Heredado" -#: build/serializers.py:1389 part/models.py:4475 +#: build/serializers.py:1397 part/models.py:4100 msgid "Allow Variants" msgstr "Permitir variantes" -#: build/serializers.py:1395 build/serializers.py:1400 part/models.py:4208 -#: part/models.py:4779 stock/api.py:882 +#: build/serializers.py:1403 build/serializers.py:1408 part/models.py:3833 +#: part/models.py:4404 stock/api.py:882 msgid "BOM Item" msgstr "Item de Lista de Materiales" -#: build/serializers.py:1467 order/serializers.py:1282 part/serializers.py:1310 -#: part/serializers.py:1765 +#: build/serializers.py:1475 order/serializers.py:1296 part/serializers.py:1175 +#: part/serializers.py:1630 msgid "In Production" msgstr "En producción" -#: build/serializers.py:1469 part/serializers.py:950 part/serializers.py:1314 +#: build/serializers.py:1477 part/serializers.py:835 part/serializers.py:1179 msgid "Scheduled to Build" msgstr "" -#: build/serializers.py:1472 part/serializers.py:987 +#: build/serializers.py:1480 part/serializers.py:872 msgid "External Stock" msgstr "Stock externo" -#: build/serializers.py:1473 part/serializers.py:1300 part/serializers.py:1808 +#: build/serializers.py:1481 part/serializers.py:1165 part/serializers.py:1673 msgid "Available Stock" msgstr "Stock Disponible" -#: build/serializers.py:1475 +#: build/serializers.py:1483 msgid "Available Substitute Stock" msgstr "Stock sustituto disponible" -#: build/serializers.py:1478 +#: build/serializers.py:1486 msgid "Available Variant Stock" msgstr "Stock variable disponible" -#: build/serializers.py:1752 +#: build/serializers.py:1760 msgid "Consumed quantity exceeds allocated quantity" msgstr "" -#: build/serializers.py:1789 +#: build/serializers.py:1797 msgid "Optional notes for the stock consumption" msgstr "" -#: build/serializers.py:1806 +#: build/serializers.py:1814 msgid "Build item must point to the correct build order" msgstr "" -#: build/serializers.py:1811 +#: build/serializers.py:1819 msgid "Duplicate build item allocation" msgstr "" -#: build/serializers.py:1829 +#: build/serializers.py:1837 msgid "Build line must point to the correct build order" msgstr "" -#: build/serializers.py:1834 +#: build/serializers.py:1842 msgid "Duplicate build line allocation" msgstr "" -#: build/serializers.py:1846 +#: build/serializers.py:1854 msgid "At least one item or line must be provided" msgstr "" @@ -1482,702 +1498,826 @@ msgstr "Orden de construcción atrasada" msgid "Build order {bo} is now overdue" msgstr "El pedido de construcción {bo} está atrasado" -#: common/api.py:694 +#: common/api.py:701 msgid "Is Link" msgstr "¿Es enlace?" -#: common/api.py:702 +#: common/api.py:709 msgid "Is File" msgstr "¿Es archivo?" -#: common/api.py:745 +#: common/api.py:756 msgid "User does not have permission to delete these attachments" msgstr "El usuario no tiene permiso para eliminar estos adjuntos" -#: common/api.py:762 +#: common/api.py:769 msgid "User does not have permission to delete this attachment" msgstr "El usuario no tiene permiso para eliminar este adjunto" -#: common/currency.py:122 +#: common/currency.py:130 msgid "Invalid currency code" msgstr "Código de divisa inválido" -#: common/currency.py:124 +#: common/currency.py:132 msgid "Duplicate currency code" msgstr "Código de divisa duplicado" -#: common/currency.py:129 +#: common/currency.py:137 msgid "No valid currency codes provided" msgstr "No se han proporcionado códigos de divisa válidos" -#: common/currency.py:146 +#: common/currency.py:154 msgid "No plugin" msgstr "Sin plugin" -#: common/models.py:101 common/models.py:126 common/models.py:2729 +#: common/models.py:105 common/models.py:130 common/models.py:3150 msgid "Updated" msgstr "Actualizado" -#: common/models.py:102 common/models.py:127 +#: common/models.py:106 common/models.py:131 msgid "Timestamp of last update" msgstr "Fecha y hora de la última actualización" -#: common/models.py:139 +#: common/models.py:143 msgid "Update By" msgstr "" -#: common/models.py:140 +#: common/models.py:144 msgid "User who last updated this object" msgstr "" -#: common/models.py:165 +#: common/models.py:169 msgid "Unique project code" msgstr "Código único del proyecto" -#: common/models.py:172 +#: common/models.py:176 msgid "Project description" msgstr "Descripción del proyecto" -#: common/models.py:181 +#: common/models.py:185 msgid "User or group responsible for this project" msgstr "Usuario o grupo responsable de este projecto" -#: common/models.py:771 common/models.py:1272 common/models.py:1310 +#: common/models.py:775 common/models.py:1276 common/models.py:1314 msgid "Settings key" msgstr "Tecla de ajustes" -#: common/models.py:775 +#: common/models.py:779 msgid "Settings value" msgstr "Valor de ajuste" -#: common/models.py:830 +#: common/models.py:834 msgid "Chosen value is not a valid option" msgstr "El valor elegido no es una opción válida" -#: common/models.py:846 +#: common/models.py:850 msgid "Value must be a boolean value" msgstr "El valor debe ser un valor booleano" -#: common/models.py:854 +#: common/models.py:858 msgid "Value must be an integer value" msgstr "El valor debe ser un entero" -#: common/models.py:862 +#: common/models.py:866 msgid "Value must be a valid number" msgstr "El valor debe ser un número válido" -#: common/models.py:887 +#: common/models.py:891 msgid "Value does not pass validation checks" msgstr "El valor no pasa las comprobaciones de validación" -#: common/models.py:909 +#: common/models.py:913 msgid "Key string must be unique" msgstr "Cadena de clave debe ser única" -#: common/models.py:1318 common/models.py:1319 common/models.py:1423 -#: common/models.py:1424 common/models.py:1669 common/models.py:1670 -#: common/models.py:2000 common/models.py:2001 common/models.py:2382 -#: importer/models.py:100 part/models.py:3547 part/models.py:3575 +#: common/models.py:1322 common/models.py:1323 common/models.py:1427 +#: common/models.py:1428 common/models.py:1673 common/models.py:1674 +#: common/models.py:2006 common/models.py:2007 common/models.py:2803 +#: importer/models.py:100 part/models.py:3611 part/models.py:3639 #: plugin/models.py:355 plugin/models.py:356 #: report/templates/report/inventree_test_report.html:105 users/models.py:124 #: users/models.py:501 msgid "User" msgstr "Usuario" -#: common/models.py:1341 +#: common/models.py:1345 msgid "Price break quantity" msgstr "Cantidad de salto de precio" -#: common/models.py:1348 company/serializers.py:564 order/models.py:1842 -#: order/models.py:3043 +#: common/models.py:1352 company/serializers.py:349 order/models.py:1843 +#: order/models.py:3044 msgid "Price" msgstr "Precio" -#: common/models.py:1349 +#: common/models.py:1353 msgid "Unit price at specified quantity" msgstr "Precio unitario a la cantidad especificada" -#: common/models.py:1400 common/models.py:1585 +#: common/models.py:1404 common/models.py:1589 msgid "Endpoint" msgstr "Endpoint" -#: common/models.py:1401 +#: common/models.py:1405 msgid "Endpoint at which this webhook is received" msgstr "Punto final en el que se recibe este webhook" -#: common/models.py:1411 +#: common/models.py:1415 msgid "Name for this webhook" msgstr "Nombre para este webhook" -#: common/models.py:1415 common/models.py:2241 common/models.py:2348 -#: company/models.py:191 company/models.py:822 machine/models.py:40 -#: part/models.py:1237 plugin/models.py:69 stock/api.py:642 users/models.py:195 +#: common/models.py:1419 common/models.py:2247 common/models.py:2354 +#: company/models.py:192 company/models.py:776 machine/models.py:40 +#: part/models.py:1325 plugin/models.py:69 stock/api.py:642 users/models.py:195 #: users/models.py:554 users/serializers.py:314 msgid "Active" msgstr "Activo" -#: common/models.py:1415 +#: common/models.py:1419 msgid "Is this webhook active" msgstr "Está activo este webhook" -#: common/models.py:1431 users/models.py:172 +#: common/models.py:1435 users/models.py:172 msgid "Token" msgstr "Token" -#: common/models.py:1432 +#: common/models.py:1436 msgid "Token for access" msgstr "Token para el acceso" -#: common/models.py:1440 +#: common/models.py:1444 msgid "Secret" msgstr "Clave" -#: common/models.py:1441 +#: common/models.py:1445 msgid "Shared secret for HMAC" msgstr "Secreto compartido para HMAC" -#: common/models.py:1549 common/models.py:2619 +#: common/models.py:1553 common/models.py:3040 msgid "Message ID" msgstr "ID de mensaje" -#: common/models.py:1550 common/models.py:2609 +#: common/models.py:1554 common/models.py:3030 msgid "Unique identifier for this message" msgstr "Identificador único para este mensaje" -#: common/models.py:1558 +#: common/models.py:1562 msgid "Host" msgstr "Servidor" -#: common/models.py:1559 +#: common/models.py:1563 msgid "Host from which this message was received" msgstr "Servidor desde el cual se recibió este mensaje" -#: common/models.py:1567 +#: common/models.py:1571 msgid "Header" msgstr "Encabezado" -#: common/models.py:1568 +#: common/models.py:1572 msgid "Header of this message" msgstr "Encabezado del mensaje" -#: common/models.py:1575 +#: common/models.py:1579 msgid "Body" msgstr "Cuerpo" -#: common/models.py:1576 +#: common/models.py:1580 msgid "Body of this message" msgstr "Cuerpo de este mensaje" -#: common/models.py:1586 +#: common/models.py:1590 msgid "Endpoint on which this message was received" msgstr "Endpoint en el que se recibió este mensaje" -#: common/models.py:1591 +#: common/models.py:1595 msgid "Worked on" msgstr "Trabajado en" -#: common/models.py:1592 +#: common/models.py:1596 msgid "Was the work on this message finished?" msgstr "¿El trabajo en este mensaje ha terminado?" -#: common/models.py:1718 +#: common/models.py:1722 msgid "Id" msgstr "Id" -#: common/models.py:1720 +#: common/models.py:1724 msgid "Title" msgstr "Título" -#: common/models.py:1722 common/models.py:1983 company/models.py:185 -#: company/models.py:467 company/models.py:534 company/models.py:839 -#: order/models.py:457 order/models.py:1786 order/models.py:2343 -#: part/models.py:1113 +#: common/models.py:1726 common/models.py:1989 company/models.py:186 +#: company/models.py:468 company/models.py:536 company/models.py:793 +#: order/models.py:458 order/models.py:1787 order/models.py:2344 +#: part/models.py:1201 #: report/templates/report/inventree_build_order_report.html:164 msgid "Link" msgstr "Enlace" -#: common/models.py:1724 +#: common/models.py:1728 msgid "Published" msgstr "Publicado" -#: common/models.py:1726 +#: common/models.py:1730 msgid "Author" msgstr "Autor" -#: common/models.py:1728 +#: common/models.py:1732 msgid "Summary" msgstr "Resumen" -#: common/models.py:1731 common/models.py:2586 +#: common/models.py:1735 common/models.py:3007 msgid "Read" msgstr "Leer" -#: common/models.py:1731 +#: common/models.py:1735 msgid "Was this news item read?" msgstr "¿Esta noticia ya fue leída?" -#: common/models.py:1748 +#: common/models.py:1752 msgid "Image file" msgstr "Archivo de imagen" -#: common/models.py:1760 +#: common/models.py:1764 msgid "Target model type for this image" msgstr "" -#: common/models.py:1764 +#: common/models.py:1768 msgid "Target model ID for this image" msgstr "" -#: common/models.py:1786 +#: common/models.py:1790 msgid "Custom Unit" msgstr "Unidad personalizada" -#: common/models.py:1804 +#: common/models.py:1808 msgid "Unit symbol must be unique" msgstr "El símbolo de la unidad debe ser único" -#: common/models.py:1819 +#: common/models.py:1823 msgid "Unit name must be a valid identifier" msgstr "Nombre de unidad debe ser un identificador válido" -#: common/models.py:1838 +#: common/models.py:1842 msgid "Unit name" msgstr "Nombre de unidad" -#: common/models.py:1845 +#: common/models.py:1849 msgid "Symbol" msgstr "Símbolo" -#: common/models.py:1846 +#: common/models.py:1850 msgid "Optional unit symbol" msgstr "Símbolo de unidad opcional" -#: common/models.py:1852 +#: common/models.py:1856 msgid "Definition" msgstr "Definición" -#: common/models.py:1853 +#: common/models.py:1857 msgid "Unit definition" msgstr "Definición de unidad" -#: common/models.py:1911 common/models.py:1974 stock/models.py:2967 +#: common/models.py:1917 common/models.py:1980 stock/models.py:2984 #: stock/serializers.py:247 msgid "Attachment" msgstr "Archivo adjunto" -#: common/models.py:1928 +#: common/models.py:1934 msgid "Missing file" msgstr "Archivo no encontrado" -#: common/models.py:1929 +#: common/models.py:1935 msgid "Missing external link" msgstr "Falta enlace externo" -#: common/models.py:1966 +#: common/models.py:1972 common/models.py:2488 msgid "Model type" msgstr "" -#: common/models.py:1967 +#: common/models.py:1973 msgid "Target model type for image" msgstr "" -#: common/models.py:1975 +#: common/models.py:1981 msgid "Select file to attach" msgstr "Seleccionar archivo para adjuntar" -#: common/models.py:1991 +#: common/models.py:1997 msgid "Comment" msgstr "Comentario" -#: common/models.py:1992 +#: common/models.py:1998 msgid "Attachment comment" msgstr "Comentario de archivo adjunto" -#: common/models.py:2008 +#: common/models.py:2014 msgid "Upload date" msgstr "Fecha de carga" -#: common/models.py:2009 +#: common/models.py:2015 msgid "Date the file was uploaded" msgstr "Fecha de carga del archivo" -#: common/models.py:2013 +#: common/models.py:2019 msgid "File size" msgstr "Tamaño del archivo" -#: common/models.py:2013 +#: common/models.py:2019 msgid "File size in bytes" msgstr "Tamaño del archivo en bytes" -#: common/models.py:2051 common/serializers.py:684 +#: common/models.py:2057 common/serializers.py:688 msgid "Invalid model type specified for attachment" msgstr "Tipo de modelo no válido especificado para el archivo adjunto" -#: common/models.py:2072 +#: common/models.py:2078 msgid "Custom State" msgstr "Estado personalizado" -#: common/models.py:2073 +#: common/models.py:2079 msgid "Custom States" msgstr "Estados personalizados" -#: common/models.py:2078 +#: common/models.py:2084 msgid "Reference Status Set" msgstr "" -#: common/models.py:2079 +#: common/models.py:2085 msgid "Status set that is extended with this custom state" msgstr "" -#: common/models.py:2083 generic/states/serializers.py:18 +#: common/models.py:2089 generic/states/serializers.py:18 msgid "Logical Key" msgstr "Llave lógica" -#: common/models.py:2085 +#: common/models.py:2091 msgid "State logical key that is equal to this custom state in business logic" msgstr "" -#: common/models.py:2090 common/models.py:2329 company/models.py:622 -#: machine/serializers.py:27 -#: report/templates/report/inventree_test_report.html:104 stock/models.py:2959 +#: common/models.py:2096 common/models.py:2335 machine/serializers.py:27 +#: report/templates/report/inventree_test_report.html:104 stock/models.py:2976 msgid "Value" msgstr "Valor" -#: common/models.py:2091 +#: common/models.py:2097 msgid "Numerical value that will be saved in the models database" msgstr "" -#: common/models.py:2097 +#: common/models.py:2103 msgid "Name of the state" msgstr "Nombre del estado" -#: common/models.py:2106 common/models.py:2335 generic/states/serializers.py:22 +#: common/models.py:2112 common/models.py:2341 generic/states/serializers.py:22 msgid "Label" msgstr "Etiqueta" -#: common/models.py:2107 +#: common/models.py:2113 msgid "Label that will be displayed in the frontend" msgstr "Etiqueta que se mostrará en el frontend" -#: common/models.py:2114 generic/states/serializers.py:24 +#: common/models.py:2120 generic/states/serializers.py:24 msgid "Color" msgstr "Color" -#: common/models.py:2115 +#: common/models.py:2121 msgid "Color that will be displayed in the frontend" msgstr "Color que se mostrará en el frontend" -#: common/models.py:2123 +#: common/models.py:2129 msgid "Model" msgstr "Modelo" -#: common/models.py:2124 +#: common/models.py:2130 msgid "Model this state is associated with" msgstr "" -#: common/models.py:2139 +#: common/models.py:2145 msgid "Model must be selected" msgstr "El modelo debe ser seleccionado" -#: common/models.py:2142 +#: common/models.py:2148 msgid "Key must be selected" msgstr "La clave debe ser seleccionada" -#: common/models.py:2145 +#: common/models.py:2151 msgid "Logical key must be selected" msgstr "La clave lógica debe ser seleccionada" -#: common/models.py:2149 +#: common/models.py:2155 msgid "Key must be different from logical key" msgstr "" -#: common/models.py:2156 +#: common/models.py:2162 msgid "Valid reference status class must be provided" msgstr "" -#: common/models.py:2162 +#: common/models.py:2168 msgid "Key must be different from the logical keys of the reference status" msgstr "" -#: common/models.py:2169 +#: common/models.py:2175 msgid "Logical key must be in the logical keys of the reference status" msgstr "" -#: common/models.py:2176 +#: common/models.py:2182 msgid "Name must be different from the names of the reference status" msgstr "" -#: common/models.py:2216 common/models.py:2323 part/models.py:3889 +#: common/models.py:2222 common/models.py:2329 common/models.py:2533 msgid "Selection List" msgstr "Lista de selección" -#: common/models.py:2217 +#: common/models.py:2223 msgid "Selection Lists" msgstr "Listas de Selección" -#: common/models.py:2222 +#: common/models.py:2228 msgid "Name of the selection list" msgstr "Nombre de la lista de selección" -#: common/models.py:2229 +#: common/models.py:2235 msgid "Description of the selection list" msgstr "Descripción de la lista de selección" -#: common/models.py:2235 part/models.py:1242 +#: common/models.py:2241 part/models.py:1330 msgid "Locked" msgstr "Bloqueado" -#: common/models.py:2236 +#: common/models.py:2242 msgid "Is this selection list locked?" msgstr "¿Está bloqueada esta lista de selección?" -#: common/models.py:2242 +#: common/models.py:2248 msgid "Can this selection list be used?" msgstr "¿Se puede utilizar esta lista de selección?" -#: common/models.py:2250 +#: common/models.py:2256 msgid "Source Plugin" msgstr "Complemento de origen" -#: common/models.py:2251 +#: common/models.py:2257 msgid "Plugin which provides the selection list" msgstr "Complemento que proporciona la lista de selección" -#: common/models.py:2256 +#: common/models.py:2262 msgid "Source String" msgstr "Cadena de origen" -#: common/models.py:2257 +#: common/models.py:2263 msgid "Optional string identifying the source used for this list" msgstr "Cadena opcional que identifica la fuente usada para esta lista" -#: common/models.py:2266 +#: common/models.py:2272 msgid "Default Entry" msgstr "Entrada por defecto" -#: common/models.py:2267 +#: common/models.py:2273 msgid "Default entry for this selection list" msgstr "Entrada predeterminada para esta lista de selección" -#: common/models.py:2272 common/models.py:2724 +#: common/models.py:2278 common/models.py:3145 msgid "Created" msgstr "Creado" -#: common/models.py:2273 +#: common/models.py:2279 msgid "Date and time that the selection list was created" msgstr "Fecha y hora en la que se creó la lista de selección" -#: common/models.py:2278 +#: common/models.py:2284 msgid "Last Updated" msgstr "Última actualización" -#: common/models.py:2279 +#: common/models.py:2285 msgid "Date and time that the selection list was last updated" msgstr "Fecha y hora en que la lista de selección fue actualizada por última vez" -#: common/models.py:2313 +#: common/models.py:2319 msgid "Selection List Entry" msgstr "Entrada de lista de selección" -#: common/models.py:2314 +#: common/models.py:2320 msgid "Selection List Entries" msgstr "Entradas de la lista de selección" -#: common/models.py:2324 +#: common/models.py:2330 msgid "Selection list to which this entry belongs" msgstr "Lista de selección a la que pertenece esta entrada" -#: common/models.py:2330 +#: common/models.py:2336 msgid "Value of the selection list entry" msgstr "Valor del elemento de la lista de selección" -#: common/models.py:2336 +#: common/models.py:2342 msgid "Label for the selection list entry" msgstr "Etiqueta para la entrada de lista de selección" -#: common/models.py:2342 +#: common/models.py:2348 msgid "Description of the selection list entry" msgstr "Descripción de la entrada de lista de selección" -#: common/models.py:2349 +#: common/models.py:2355 msgid "Is this selection list entry active?" msgstr "¿Está activa esta entrada de la lista de selección?" -#: common/models.py:2367 -msgid "Barcode Scan" -msgstr "Escanear código de barras" +#: common/models.py:2387 +msgid "Parameter Template" +msgstr "Plantilla de parámetro" -#: common/models.py:2371 importer/models.py:546 part/models.py:4060 -msgid "Data" -msgstr "Datos" - -#: common/models.py:2372 -msgid "Barcode data" -msgstr "Datos de código de barras" - -#: common/models.py:2383 -msgid "User who scanned the barcode" -msgstr "Usuario que escaneó el código de barras" - -#: common/models.py:2388 importer/models.py:69 -msgid "Timestamp" +#: common/models.py:2388 +msgid "Parameter Templates" msgstr "" -#: common/models.py:2389 -msgid "Date and time of the barcode scan" -msgstr "Fecha y hora del escaneo de código de barras" - -#: common/models.py:2395 -msgid "URL endpoint which processed the barcode" -msgstr "Dispositivo URL que procesó el código de barras" - -#: common/models.py:2402 order/models.py:1832 plugin/serializers.py:93 -msgid "Context" -msgstr "Contexto" - -#: common/models.py:2403 -msgid "Context data for the barcode scan" -msgstr "Datos de contexto para el escaneo de código de barras" - -#: common/models.py:2410 -msgid "Response" -msgstr "Respuesta" - -#: common/models.py:2411 -msgid "Response data from the barcode scan" -msgstr "Respuesta de datos del escaneo de código de barras" - -#: common/models.py:2417 report/templates/report/inventree_test_report.html:103 -#: stock/models.py:2953 -msgid "Result" -msgstr "Resultado" - -#: common/models.py:2418 -msgid "Was the barcode scan successful?" -msgstr "¿El escaneo de código de barras fue exitoso?" - -#: common/models.py:2500 -msgid "An error occurred" +#: common/models.py:2425 +msgid "Checkbox parameters cannot have units" msgstr "" -#: common/models.py:2521 -msgid "INVE-E8: Email log deletion is protected. Set INVENTREE_PROTECT_EMAIL_LOG to False to allow deletion." +#: common/models.py:2430 +msgid "Checkbox parameters cannot have choices" msgstr "" -#: common/models.py:2568 -msgid "Email Message" +#: common/models.py:2450 part/models.py:3707 +msgid "Choices must be unique" msgstr "" -#: common/models.py:2569 -msgid "Email Messages" +#: common/models.py:2467 +msgid "Parameter template name must be unique" +msgstr "El nombre de parámetro en la plantilla tiene que ser único" + +#: common/models.py:2489 +msgid "Target model type for this parameter template" msgstr "" -#: common/models.py:2576 -msgid "Announced" +#: common/models.py:2495 +msgid "Parameter Name" +msgstr "Nombre de Parámetro" + +#: common/models.py:2501 part/models.py:1283 +msgid "Units" +msgstr "Unidades" + +#: common/models.py:2502 +msgid "Physical units for this parameter" msgstr "" -#: common/models.py:2578 -msgid "Sent" +#: common/models.py:2510 +msgid "Parameter description" msgstr "" -#: common/models.py:2579 -msgid "Failed" +#: common/models.py:2516 +msgid "Checkbox" +msgstr "Casilla de verificación" + +#: common/models.py:2517 +msgid "Is this parameter a checkbox?" +msgstr "¿Es este parámetro una casilla de verificación?" + +#: common/models.py:2522 part/models.py:3794 +msgid "Choices" +msgstr "Opciones" + +#: common/models.py:2523 +msgid "Valid choices for this parameter (comma-separated)" +msgstr "Opciones válidas para este parámetro (separados por comas)" + +#: common/models.py:2534 +msgid "Selection list for this parameter" +msgstr "Lista de selección para este parámetro" + +#: common/models.py:2539 part/models.py:3769 report/models.py:287 +msgid "Enabled" +msgstr "Habilitado" + +#: common/models.py:2540 +msgid "Is this parameter template enabled?" +msgstr "" + +#: common/models.py:2581 +msgid "Parameter" msgstr "" #: common/models.py:2582 -msgid "Delivered" -msgstr "" - -#: common/models.py:2590 -msgid "Confirmed" -msgstr "" - -#: common/models.py:2596 -msgid "Inbound" -msgstr "" - -#: common/models.py:2597 -msgid "Outbound" -msgstr "" - -#: common/models.py:2602 -msgid "No Reply" -msgstr "" - -#: common/models.py:2603 -msgid "Track Delivery" -msgstr "" - -#: common/models.py:2604 -msgid "Track Read" -msgstr "" - -#: common/models.py:2605 -msgid "Track Click" -msgstr "" - -#: common/models.py:2608 common/models.py:2711 -msgid "Global ID" -msgstr "" - -#: common/models.py:2621 -msgid "Identifier for this message (might be supplied by external system)" +msgid "Parameters" msgstr "" #: common/models.py:2628 +msgid "Invalid choice for parameter value" +msgstr "Opción inválida para el valor del parámetro" + +#: common/models.py:2698 common/serializers.py:783 +msgid "Invalid model type specified for parameter" +msgstr "" + +#: common/models.py:2734 +msgid "Model ID" +msgstr "" + +#: common/models.py:2735 +msgid "ID of the target model for this parameter" +msgstr "" + +#: common/models.py:2744 common/setting/system.py:450 report/models.py:373 +#: report/models.py:669 report/serializers.py:94 report/serializers.py:135 +#: stock/serializers.py:234 +msgid "Template" +msgstr "Plantilla" + +#: common/models.py:2745 +msgid "Parameter template" +msgstr "" + +#: common/models.py:2750 common/models.py:2792 importer/models.py:546 +msgid "Data" +msgstr "Datos" + +#: common/models.py:2751 +msgid "Parameter Value" +msgstr "Valor del parámetro" + +#: common/models.py:2760 company/models.py:810 order/serializers.py:894 +#: order/serializers.py:2064 part/models.py:4075 part/models.py:4444 +#: report/templates/report/inventree_bill_of_materials_report.html:140 +#: report/templates/report/inventree_purchase_order_report.html:39 +#: report/templates/report/inventree_return_order_report.html:27 +#: report/templates/report/inventree_sales_order_report.html:32 +#: report/templates/report/inventree_stock_location_report.html:105 +#: stock/serializers.py:813 +msgid "Note" +msgstr "Nota" + +#: common/models.py:2761 stock/serializers.py:718 +msgid "Optional note field" +msgstr "Campo de nota opcional" + +#: common/models.py:2788 +msgid "Barcode Scan" +msgstr "Escanear código de barras" + +#: common/models.py:2793 +msgid "Barcode data" +msgstr "Datos de código de barras" + +#: common/models.py:2804 +msgid "User who scanned the barcode" +msgstr "Usuario que escaneó el código de barras" + +#: common/models.py:2809 importer/models.py:69 +msgid "Timestamp" +msgstr "" + +#: common/models.py:2810 +msgid "Date and time of the barcode scan" +msgstr "Fecha y hora del escaneo de código de barras" + +#: common/models.py:2816 +msgid "URL endpoint which processed the barcode" +msgstr "Dispositivo URL que procesó el código de barras" + +#: common/models.py:2823 order/models.py:1833 plugin/serializers.py:93 +msgid "Context" +msgstr "Contexto" + +#: common/models.py:2824 +msgid "Context data for the barcode scan" +msgstr "Datos de contexto para el escaneo de código de barras" + +#: common/models.py:2831 +msgid "Response" +msgstr "Respuesta" + +#: common/models.py:2832 +msgid "Response data from the barcode scan" +msgstr "Respuesta de datos del escaneo de código de barras" + +#: common/models.py:2838 report/templates/report/inventree_test_report.html:103 +#: stock/models.py:2970 +msgid "Result" +msgstr "Resultado" + +#: common/models.py:2839 +msgid "Was the barcode scan successful?" +msgstr "¿El escaneo de código de barras fue exitoso?" + +#: common/models.py:2921 +msgid "An error occurred" +msgstr "" + +#: common/models.py:2942 +msgid "INVE-E8: Email log deletion is protected. Set INVENTREE_PROTECT_EMAIL_LOG to False to allow deletion." +msgstr "" + +#: common/models.py:2989 +msgid "Email Message" +msgstr "" + +#: common/models.py:2990 +msgid "Email Messages" +msgstr "" + +#: common/models.py:2997 +msgid "Announced" +msgstr "" + +#: common/models.py:2999 +msgid "Sent" +msgstr "" + +#: common/models.py:3000 +msgid "Failed" +msgstr "" + +#: common/models.py:3003 +msgid "Delivered" +msgstr "" + +#: common/models.py:3011 +msgid "Confirmed" +msgstr "" + +#: common/models.py:3017 +msgid "Inbound" +msgstr "" + +#: common/models.py:3018 +msgid "Outbound" +msgstr "" + +#: common/models.py:3023 +msgid "No Reply" +msgstr "" + +#: common/models.py:3024 +msgid "Track Delivery" +msgstr "" + +#: common/models.py:3025 +msgid "Track Read" +msgstr "" + +#: common/models.py:3026 +msgid "Track Click" +msgstr "" + +#: common/models.py:3029 common/models.py:3132 +msgid "Global ID" +msgstr "" + +#: common/models.py:3042 +msgid "Identifier for this message (might be supplied by external system)" +msgstr "" + +#: common/models.py:3049 msgid "Thread ID" msgstr "" -#: common/models.py:2630 +#: common/models.py:3051 msgid "Identifier for this message thread (might be supplied by external system)" msgstr "" -#: common/models.py:2639 +#: common/models.py:3060 msgid "Thread" msgstr "" -#: common/models.py:2640 +#: common/models.py:3061 msgid "Linked thread for this message" msgstr "" -#: common/models.py:2656 -msgid "Prioriy" +#: common/models.py:3077 +msgid "Priority" msgstr "" -#: common/models.py:2698 +#: common/models.py:3119 msgid "Email Thread" msgstr "" -#: common/models.py:2699 +#: common/models.py:3120 msgid "Email Threads" msgstr "" -#: common/models.py:2705 generic/states/serializers.py:16 +#: common/models.py:3126 generic/states/serializers.py:16 #: machine/serializers.py:24 plugin/models.py:46 users/models.py:113 msgid "Key" msgstr "Clave" -#: common/models.py:2708 +#: common/models.py:3129 msgid "Unique key for this thread (used to identify the thread)" msgstr "" -#: common/models.py:2712 +#: common/models.py:3133 msgid "Unique identifier for this thread" msgstr "" -#: common/models.py:2719 +#: common/models.py:3140 msgid "Started Internal" msgstr "" -#: common/models.py:2720 +#: common/models.py:3141 msgid "Was this thread started internally?" msgstr "" -#: common/models.py:2725 +#: common/models.py:3146 msgid "Date and time that the thread was created" msgstr "" -#: common/models.py:2730 +#: common/models.py:3151 msgid "Date and time that the thread was last updated" msgstr "" @@ -2199,7 +2339,7 @@ msgstr "{verbose_name} cancelado" msgid "A order that is assigned to you was canceled" msgstr "" -#: common/notifications.py:73 common/notifications.py:80 order/api.py:594 +#: common/notifications.py:73 common/notifications.py:80 order/api.py:600 msgid "Items Received" msgstr "Artículos Recibidos" @@ -2211,88 +2351,93 @@ msgstr "Los artículos han sido recibidos contra una orden de compra" msgid "Items have been received against a return order" msgstr "Los artículos han sido recibidos contra una orden de devolución" -#: common/serializers.py:145 +#: common/serializers.py:149 msgid "Indicates if the setting is overridden by an environment variable" msgstr "" -#: common/serializers.py:147 +#: common/serializers.py:151 msgid "Override" msgstr "" -#: common/serializers.py:498 +#: common/serializers.py:502 msgid "Is Running" msgstr "Está en ejecución" -#: common/serializers.py:504 +#: common/serializers.py:508 msgid "Pending Tasks" msgstr "Tareas pendientes" -#: common/serializers.py:510 +#: common/serializers.py:514 msgid "Scheduled Tasks" msgstr "Tareas Programadas" -#: common/serializers.py:516 +#: common/serializers.py:520 msgid "Failed Tasks" msgstr "Tareas fallidas" -#: common/serializers.py:531 +#: common/serializers.py:535 msgid "Task ID" msgstr "Identificación de Tarea" -#: common/serializers.py:531 +#: common/serializers.py:535 msgid "Unique task ID" msgstr "Identificación de tarea única" -#: common/serializers.py:533 +#: common/serializers.py:537 msgid "Lock" msgstr "Bloquear" -#: common/serializers.py:533 +#: common/serializers.py:537 msgid "Lock time" msgstr "Bloquear hora" -#: common/serializers.py:535 +#: common/serializers.py:539 msgid "Task name" msgstr "Nombre de la tarea" -#: common/serializers.py:537 +#: common/serializers.py:541 msgid "Function" msgstr "Función" -#: common/serializers.py:537 +#: common/serializers.py:541 msgid "Function name" msgstr "Nombre de la Función" -#: common/serializers.py:539 +#: common/serializers.py:543 msgid "Arguments" msgstr "Argumentos" -#: common/serializers.py:539 +#: common/serializers.py:543 msgid "Task arguments" msgstr "Argumentos de la tarea" -#: common/serializers.py:542 +#: common/serializers.py:546 msgid "Keyword Arguments" msgstr "Argumentos de palabra clave" -#: common/serializers.py:542 +#: common/serializers.py:546 msgid "Task keyword arguments" msgstr "Argumentos de palabra clave de tarea" -#: common/serializers.py:652 +#: common/serializers.py:656 msgid "Filename" msgstr "Nombre de Archivo" -#: common/serializers.py:659 importer/models.py:89 report/api.py:41 +#: common/serializers.py:663 common/serializers.py:730 +#: common/serializers.py:805 importer/models.py:89 report/api.py:41 #: report/models.py:293 report/serializers.py:52 msgid "Model Type" msgstr "" -#: common/serializers.py:687 +#: common/serializers.py:691 msgid "User does not have permission to create or edit attachments for this model" msgstr "El usuario no tiene permiso para crear o editar archivos adjuntos para este modelo" -#: common/serializers.py:731 common/serializers.py:834 +#: common/serializers.py:786 +msgid "User does not have permission to create or edit parameters for this model" +msgstr "" + +#: common/serializers.py:850 common/serializers.py:953 msgid "Selection list is locked" msgstr "Lista de selección bloqueada" @@ -2368,7 +2513,7 @@ msgstr "Restringir mostrar 'acerca de'" msgid "Show the `about` modal only to superusers" msgstr "Mostrar la modal `about` solo para superusuarios" -#: common/setting/system.py:224 company/models.py:144 company/models.py:145 +#: common/setting/system.py:224 company/models.py:145 company/models.py:146 msgid "Company name" msgstr "Nombre de empresa" @@ -2411,8 +2556,8 @@ msgstr "Con qué frecuencia actualizar los tipos de cambio (establecer a cero pa #: common/setting/system.py:253 common/setting/system.py:293 #: common/setting/system.py:306 common/setting/system.py:314 #: common/setting/system.py:321 common/setting/system.py:330 -#: common/setting/system.py:339 common/setting/system.py:588 -#: common/setting/system.py:616 common/setting/system.py:707 +#: common/setting/system.py:339 common/setting/system.py:580 +#: common/setting/system.py:608 common/setting/system.py:707 #: common/setting/system.py:1103 common/setting/system.py:1119 msgid "days" msgstr "días" @@ -2657,12 +2802,6 @@ msgstr "Copiar plantillas de parámetros de categoría" msgid "Copy category parameter templates when creating a part" msgstr "Copiar plantillas de parámetros de categoría al crear una parte" -#: common/setting/system.py:450 part/models.py:4054 report/models.py:373 -#: report/models.py:669 report/serializers.py:94 report/serializers.py:135 -#: stock/serializers.py:234 -msgid "Template" -msgstr "Plantilla" - #: common/setting/system.py:451 msgid "Parts are templates by default" msgstr "Las partes son plantillas por defecto" @@ -2671,8 +2810,8 @@ msgstr "Las partes son plantillas por defecto" msgid "Parts can be assembled from other components by default" msgstr "Las partes pueden ser ensambladas desde otros componentes por defecto" -#: common/setting/system.py:462 part/models.py:1208 part/serializers.py:1734 -#: part/serializers.py:1741 +#: common/setting/system.py:462 part/models.py:1296 part/serializers.py:1599 +#: part/serializers.py:1606 msgid "Component" msgstr "Componente" @@ -2680,7 +2819,7 @@ msgstr "Componente" msgid "Parts can be used as sub-components by default" msgstr "Las partes pueden ser usadas como subcomponentes por defecto" -#: common/setting/system.py:468 part/models.py:1226 +#: common/setting/system.py:468 part/models.py:1314 msgid "Purchaseable" msgstr "Comprable" @@ -2688,7 +2827,7 @@ msgstr "Comprable" msgid "Parts are purchaseable by default" msgstr "Las partes son comprables por defecto" -#: common/setting/system.py:474 part/models.py:1232 stock/api.py:643 +#: common/setting/system.py:474 part/models.py:1320 stock/api.py:643 msgid "Salable" msgstr "Vendible" @@ -2700,7 +2839,7 @@ msgstr "Las partes se pueden vender por defecto" msgid "Parts are trackable by default" msgstr "Las partes son rastreables por defecto" -#: common/setting/system.py:486 part/models.py:1248 +#: common/setting/system.py:486 part/models.py:1336 msgid "Virtual" msgstr "Virtual" @@ -2749,158 +2888,158 @@ msgid "Part category default icon (empty means no icon)" msgstr "Icono por defecto de la categoría de parte (vacío significa que no hay icono)" #: common/setting/system.py:525 -msgid "Enforce Parameter Units" -msgstr "Forzar unidades de parámetro" - -#: common/setting/system.py:527 -msgid "If units are provided, parameter values must match the specified units" -msgstr "Si se proporcionan unidades, los valores de parámetro deben coincidir con las unidades especificadas" - -#: common/setting/system.py:533 msgid "Minimum Pricing Decimal Places" msgstr "Mínimo de lugares decimales en el precio" -#: common/setting/system.py:535 +#: common/setting/system.py:527 msgid "Minimum number of decimal places to display when rendering pricing data" msgstr "Número mínimo de decimales a mostrar al procesar los datos de precios" -#: common/setting/system.py:546 +#: common/setting/system.py:538 msgid "Maximum Pricing Decimal Places" msgstr "Máximo de lugares decimales en el precio" -#: common/setting/system.py:548 +#: common/setting/system.py:540 msgid "Maximum number of decimal places to display when rendering pricing data" msgstr "Número máximo de decimales a mostrar al procesar los datos de precios" -#: common/setting/system.py:559 +#: common/setting/system.py:551 msgid "Use Supplier Pricing" msgstr "Usar precios de proveedor" -#: common/setting/system.py:561 +#: common/setting/system.py:553 msgid "Include supplier price breaks in overall pricing calculations" msgstr "Incluir descuentos de precios del proveedor en los cálculos generales de precios" -#: common/setting/system.py:567 +#: common/setting/system.py:559 msgid "Purchase History Override" msgstr "Anulación del historial de compra" -#: common/setting/system.py:569 +#: common/setting/system.py:561 msgid "Historical purchase order pricing overrides supplier price breaks" msgstr "El precio histórico de compra anula los descuentos de precios del proveedor" -#: common/setting/system.py:575 +#: common/setting/system.py:567 msgid "Use Stock Item Pricing" msgstr "Usar precio del artículo de almacén" -#: common/setting/system.py:577 +#: common/setting/system.py:569 msgid "Use pricing from manually entered stock data for pricing calculations" msgstr "Usar los precios de los datos de inventario introducidos manualmente para los cálculos de precios" -#: common/setting/system.py:583 +#: common/setting/system.py:575 msgid "Stock Item Pricing Age" msgstr "Edad del precio del artículo de almacén" -#: common/setting/system.py:585 +#: common/setting/system.py:577 msgid "Exclude stock items older than this number of days from pricing calculations" msgstr "Excluir artículos de almacén anteriores a este número de días de los cálculos de precios" -#: common/setting/system.py:592 +#: common/setting/system.py:584 msgid "Use Variant Pricing" msgstr "Usar precios variantes" -#: common/setting/system.py:593 +#: common/setting/system.py:585 msgid "Include variant pricing in overall pricing calculations" msgstr "Incluir variantes de precios en los cálculos generales de precios" -#: common/setting/system.py:598 +#: common/setting/system.py:590 msgid "Active Variants Only" msgstr "Solo variantes activas" -#: common/setting/system.py:600 +#: common/setting/system.py:592 msgid "Only use active variant parts for calculating variant pricing" msgstr "Usar solo partes de variantes activas para calcular los precios de variantes" -#: common/setting/system.py:606 +#: common/setting/system.py:598 msgid "Auto Update Pricing" msgstr "" -#: common/setting/system.py:608 +#: common/setting/system.py:600 msgid "Automatically update part pricing when internal data changes" msgstr "" -#: common/setting/system.py:614 +#: common/setting/system.py:606 msgid "Pricing Rebuild Interval" msgstr "Intervalo de reconstrucción de precios" -#: common/setting/system.py:615 +#: common/setting/system.py:607 msgid "Number of days before part pricing is automatically updated" msgstr "Número de días antes de que el precio de la parte se actualice automáticamente" -#: common/setting/system.py:621 +#: common/setting/system.py:613 msgid "Internal Prices" msgstr "Precios internos" -#: common/setting/system.py:622 +#: common/setting/system.py:614 msgid "Enable internal prices for parts" msgstr "Habilitar precios internos para partes" -#: common/setting/system.py:627 +#: common/setting/system.py:619 msgid "Internal Price Override" msgstr "Anulación del precio interno" -#: common/setting/system.py:629 +#: common/setting/system.py:621 msgid "If available, internal prices override price range calculations" msgstr "Si está disponible, los precios internos anulan los cálculos del rango de precios" -#: common/setting/system.py:635 +#: common/setting/system.py:627 msgid "Enable label printing" msgstr "Habilitar impresión de etiquetas" -#: common/setting/system.py:636 +#: common/setting/system.py:628 msgid "Enable label printing from the web interface" msgstr "Habilitar impresión de etiquetas desde la interfaz web" -#: common/setting/system.py:641 +#: common/setting/system.py:633 msgid "Label Image DPI" msgstr "PPP de la imagen de etiqueta" -#: common/setting/system.py:643 +#: common/setting/system.py:635 msgid "DPI resolution when generating image files to supply to label printing plugins" msgstr "Resolución DPI al generar archivos de imagen que suministrar para etiquetar complementos de impresión" -#: common/setting/system.py:649 +#: common/setting/system.py:641 msgid "Enable Reports" msgstr "Habilitar informes" -#: common/setting/system.py:650 +#: common/setting/system.py:642 msgid "Enable generation of reports" msgstr "Habilitar generación de informes" -#: common/setting/system.py:655 +#: common/setting/system.py:647 msgid "Debug Mode" msgstr "Modo de depuración" -#: common/setting/system.py:656 +#: common/setting/system.py:648 msgid "Generate reports in debug mode (HTML output)" msgstr "Generar informes en modo de depuración (salida HTML)" -#: common/setting/system.py:661 +#: common/setting/system.py:653 msgid "Log Report Errors" msgstr "Registrar errores de reportes" -#: common/setting/system.py:662 +#: common/setting/system.py:654 msgid "Log errors which occur when generating reports" msgstr "Registrar errores ocurridos al generar reportes" -#: common/setting/system.py:667 plugin/builtin/labels/label_sheet.py:29 +#: common/setting/system.py:659 plugin/builtin/labels/label_sheet.py:29 #: report/models.py:381 msgid "Page Size" msgstr "Tamaño de página" -#: common/setting/system.py:668 +#: common/setting/system.py:660 msgid "Default page size for PDF reports" msgstr "Tamaño de página predeterminado para informes PDF" +#: common/setting/system.py:665 +msgid "Enforce Parameter Units" +msgstr "Forzar unidades de parámetro" + +#: common/setting/system.py:667 +msgid "If units are provided, parameter values must match the specified units" +msgstr "Si se proporcionan unidades, los valores de parámetro deben coincidir con las unidades especificadas" + #: common/setting/system.py:673 msgid "Globally Unique Serials" msgstr "Seriales únicos globalmente" @@ -3456,688 +3595,677 @@ msgid "Display PDF reports in the browser, instead of downloading as a file" msgstr "Mostrar informes PDF en el navegador, en lugar de descargar como un archivo" #: common/setting/user.py:45 +msgid "Barcode Scanner in Form Fields" +msgstr "" + +#: common/setting/user.py:46 +msgid "Allow barcode scanner input in form fields" +msgstr "" + +#: common/setting/user.py:51 msgid "Search Parts" msgstr "Buscar partes" -#: common/setting/user.py:46 +#: common/setting/user.py:52 msgid "Display parts in search preview window" msgstr "Mostrar partes en la ventana de vista previa de búsqueda" -#: common/setting/user.py:51 +#: common/setting/user.py:57 msgid "Search Supplier Parts" msgstr "Buscar partes de proveedor" -#: common/setting/user.py:52 +#: common/setting/user.py:58 msgid "Display supplier parts in search preview window" msgstr "Mostrar partes de proveedores en la ventana de vista previa de búsqueda" -#: common/setting/user.py:57 +#: common/setting/user.py:63 msgid "Search Manufacturer Parts" msgstr "Buscar Partes del Fabricante" -#: common/setting/user.py:58 +#: common/setting/user.py:64 msgid "Display manufacturer parts in search preview window" msgstr "Mostrar partes de productores en la ventana de vista previa de búsqueda" -#: common/setting/user.py:63 +#: common/setting/user.py:69 msgid "Hide Inactive Parts" msgstr "Ocultar Partes Inactivas" -#: common/setting/user.py:64 +#: common/setting/user.py:70 msgid "Excluded inactive parts from search preview window" msgstr "Excluir las partes inactivas de la ventana de previsualización de búsqueda" -#: common/setting/user.py:69 +#: common/setting/user.py:75 msgid "Search Categories" msgstr "Buscar categorías" -#: common/setting/user.py:70 +#: common/setting/user.py:76 msgid "Display part categories in search preview window" msgstr "Mostrar categorias de la parte en la ventana de previsualización de búsqueda" -#: common/setting/user.py:75 +#: common/setting/user.py:81 msgid "Search Stock" msgstr "Buscar inventario" -#: common/setting/user.py:76 +#: common/setting/user.py:82 msgid "Display stock items in search preview window" msgstr "Mostrar artículos del stock en la ventana de previsualización de búsqueda" -#: common/setting/user.py:81 +#: common/setting/user.py:87 msgid "Hide Unavailable Stock Items" msgstr "Ocultar Artículos del Stock Agotados" -#: common/setting/user.py:83 +#: common/setting/user.py:89 msgid "Exclude stock items which are not available from the search preview window" msgstr "Excluir artículos de stock que no están disponibles en la ventana de previsualización de búsqueda" -#: common/setting/user.py:89 +#: common/setting/user.py:95 msgid "Search Locations" msgstr "Buscar ubicaciones" -#: common/setting/user.py:90 +#: common/setting/user.py:96 msgid "Display stock locations in search preview window" msgstr "Mostrar ubicaciones de almacén en la ventana de vista previa de búsqueda" -#: common/setting/user.py:95 +#: common/setting/user.py:101 msgid "Search Companies" msgstr "Buscar empresas" -#: common/setting/user.py:96 +#: common/setting/user.py:102 msgid "Display companies in search preview window" msgstr "Mostrar empresas en la ventana de vista previa de búsqueda" -#: common/setting/user.py:101 +#: common/setting/user.py:107 msgid "Search Build Orders" msgstr "Buscar Pedidos de Construcción" -#: common/setting/user.py:102 +#: common/setting/user.py:108 msgid "Display build orders in search preview window" msgstr "Mostrar órdenes de fabricación en la ventana de vista previa de búsqueda" -#: common/setting/user.py:107 +#: common/setting/user.py:113 msgid "Search Purchase Orders" msgstr "Buscar órdenes de compra" -#: common/setting/user.py:108 +#: common/setting/user.py:114 msgid "Display purchase orders in search preview window" msgstr "Mostrar órdenes de compra en la ventana de vista previa de búsqueda" -#: common/setting/user.py:113 +#: common/setting/user.py:119 msgid "Exclude Inactive Purchase Orders" msgstr "Excluir pedidos de compra inactivos" -#: common/setting/user.py:114 +#: common/setting/user.py:120 msgid "Exclude inactive purchase orders from search preview window" msgstr "Excluir órdenes de compra inactivas de la ventana de vista previa de búsqueda" -#: common/setting/user.py:119 +#: common/setting/user.py:125 msgid "Search Sales Orders" msgstr "Buscar órdenes de venta" -#: common/setting/user.py:120 +#: common/setting/user.py:126 msgid "Display sales orders in search preview window" msgstr "Mostrar órdenes de venta en la ventana de vista previa de búsqueda" -#: common/setting/user.py:125 +#: common/setting/user.py:131 msgid "Exclude Inactive Sales Orders" msgstr "Excluir órdenes de venta inactivas" -#: common/setting/user.py:126 +#: common/setting/user.py:132 msgid "Exclude inactive sales orders from search preview window" msgstr "Excluir órdenes de venta inactivas de la ventana de vista previa de búsqueda" -#: common/setting/user.py:131 +#: common/setting/user.py:137 msgid "Search Sales Order Shipments" msgstr "" -#: common/setting/user.py:132 +#: common/setting/user.py:138 msgid "Display sales order shipments in search preview window" msgstr "" -#: common/setting/user.py:137 +#: common/setting/user.py:143 msgid "Search Return Orders" msgstr "Buscar órdenes de devolución" -#: common/setting/user.py:138 +#: common/setting/user.py:144 msgid "Display return orders in search preview window" msgstr "Mostrar órdenes de devolución en la ventana de vista previa de búsqueda" -#: common/setting/user.py:143 +#: common/setting/user.py:149 msgid "Exclude Inactive Return Orders" msgstr "" -#: common/setting/user.py:144 +#: common/setting/user.py:150 msgid "Exclude inactive return orders from search preview window" msgstr "" -#: common/setting/user.py:149 +#: common/setting/user.py:155 msgid "Search Preview Results" msgstr "Resultados de la vista previa" -#: common/setting/user.py:151 +#: common/setting/user.py:157 msgid "Number of results to show in each section of the search preview window" msgstr "Número de resultados a mostrar en cada sección de la ventana de vista previa" -#: common/setting/user.py:157 +#: common/setting/user.py:163 msgid "Regex Search" msgstr "Búsqueda usando una expresión regular" -#: common/setting/user.py:158 +#: common/setting/user.py:164 msgid "Enable regular expressions in search queries" msgstr "Habilitar expresiones regulares en las consultas de búsqueda" -#: common/setting/user.py:163 +#: common/setting/user.py:169 msgid "Whole Word Search" msgstr "Búsqueda por palabra completa" -#: common/setting/user.py:164 +#: common/setting/user.py:170 msgid "Search queries return results for whole word matches" msgstr "Las consultas de búsqueda devuelven resultados para palabras enteras coincidentes" -#: common/setting/user.py:169 +#: common/setting/user.py:175 msgid "Search Notes" msgstr "" -#: common/setting/user.py:171 +#: common/setting/user.py:177 msgid "Search queries return results for matches from the item's notes" msgstr "" -#: common/setting/user.py:177 +#: common/setting/user.py:183 msgid "Escape Key Closes Forms" msgstr "Formularios de cierre de teclas de escape" -#: common/setting/user.py:178 +#: common/setting/user.py:184 msgid "Use the escape key to close modal forms" msgstr "Usa la clave de escape para cerrar formularios modales" -#: common/setting/user.py:183 +#: common/setting/user.py:189 msgid "Fixed Navbar" msgstr "Barra de navegación fija" -#: common/setting/user.py:184 +#: common/setting/user.py:190 msgid "The navbar position is fixed to the top of the screen" msgstr "La posición de la barra de navegación se fija en la parte superior de la pantalla" -#: common/setting/user.py:189 +#: common/setting/user.py:195 msgid "Fixed Table Headers" msgstr "" -#: common/setting/user.py:190 +#: common/setting/user.py:196 msgid "Table headers are fixed to the top of the table" msgstr "" -#: common/setting/user.py:195 +#: common/setting/user.py:201 msgid "Show Spotlight" msgstr "" -#: common/setting/user.py:196 +#: common/setting/user.py:202 msgid "Enable spotlight navigation functionality" msgstr "" -#: common/setting/user.py:201 +#: common/setting/user.py:207 msgid "Navigation Icons" msgstr "" -#: common/setting/user.py:202 +#: common/setting/user.py:208 msgid "Display icons in the navigation bar" msgstr "" -#: common/setting/user.py:207 +#: common/setting/user.py:213 msgid "Date Format" msgstr "Formato de Fecha" -#: common/setting/user.py:208 +#: common/setting/user.py:214 msgid "Preferred format for displaying dates" msgstr "Formato preferido para mostrar fechas" -#: common/setting/user.py:221 +#: common/setting/user.py:227 msgid "Show Stock History" msgstr "" -#: common/setting/user.py:222 +#: common/setting/user.py:228 msgid "Display stock history information in the part detail page" msgstr "" -#: common/setting/user.py:227 +#: common/setting/user.py:233 msgid "Show Last Breadcrumb" msgstr "" -#: common/setting/user.py:228 +#: common/setting/user.py:234 msgid "Show the current page in breadcrumbs" msgstr "" -#: common/setting/user.py:233 +#: common/setting/user.py:239 msgid "Show full stock location in tables" msgstr "" -#: common/setting/user.py:235 +#: common/setting/user.py:241 msgid "Disabled: The full location path is displayed as a hover tooltip. Enabled: The full location path is displayed as plain text." msgstr "" -#: common/setting/user.py:241 +#: common/setting/user.py:247 msgid "Show full part categories in tables" msgstr "" -#: common/setting/user.py:243 +#: common/setting/user.py:249 msgid "Disabled: The full category path is displayed as a hover tooltip. Enabled: The full category path is displayed as plain text." msgstr "" -#: common/setting/user.py:249 +#: common/setting/user.py:255 msgid "Receive error reports" msgstr "Recibir reportes de error" -#: common/setting/user.py:250 +#: common/setting/user.py:256 msgid "Receive notifications for system errors" msgstr "Recibir notificación de errores del sistema" -#: common/setting/user.py:255 +#: common/setting/user.py:261 msgid "Last used printing machines" msgstr "Últimas impresoras usadas" -#: common/setting/user.py:256 +#: common/setting/user.py:262 msgid "Save the last used printing machines for a user" msgstr "" -#: common/validators.py:34 +#: common/validators.py:38 +msgid "All models" +msgstr "" + +#: common/validators.py:63 msgid "No attachment model type provided" msgstr "" -#: common/validators.py:40 +#: common/validators.py:69 msgid "Invalid attachment model type" msgstr "" -#: common/validators.py:81 +#: common/validators.py:110 msgid "Minimum places cannot be greater than maximum places" msgstr "" -#: common/validators.py:93 +#: common/validators.py:122 msgid "Maximum places cannot be less than minimum places" msgstr "" -#: common/validators.py:104 +#: common/validators.py:133 msgid "An empty domain is not allowed." msgstr "Un dominio vacío no está permitido." -#: common/validators.py:106 +#: common/validators.py:135 #, python-brace-format msgid "Invalid domain name: {domain}" msgstr "Nombre de dominio inválido: {domain}" -#: common/validators.py:122 +#: common/validators.py:151 msgid "Value must be uppercase" msgstr "" -#: common/validators.py:128 +#: common/validators.py:157 msgid "Value must be a valid variable identifier" msgstr "" -#: company/api.py:147 +#: company/api.py:141 msgid "Part is Active" msgstr "La parte está activa" -#: company/api.py:151 +#: company/api.py:145 msgid "Manufacturer is Active" msgstr "El fabricante está activo" -#: company/api.py:286 +#: company/api.py:246 msgid "Supplier Part is Active" msgstr "" -#: company/api.py:290 +#: company/api.py:250 msgid "Internal Part is Active" msgstr "" -#: company/api.py:295 +#: company/api.py:255 msgid "Supplier is Active" msgstr "" -#: company/api.py:307 company/models.py:520 company/serializers.py:457 -#: part/serializers.py:566 +#: company/api.py:267 company/models.py:522 company/serializers.py:502 +#: part/serializers.py:477 msgid "Manufacturer" msgstr "Fabricante" -#: company/api.py:314 company/models.py:121 company/models.py:392 +#: company/api.py:274 company/models.py:122 company/models.py:393 #: stock/api.py:900 msgid "Company" msgstr "Empresa" -#: company/api.py:324 +#: company/api.py:284 msgid "Has Stock" msgstr "Tiene Stock" -#: company/models.py:122 +#: company/models.py:123 msgid "Companies" msgstr "Empresas" -#: company/models.py:150 +#: company/models.py:151 msgid "Company description" msgstr "Descripción de la empresa" -#: company/models.py:151 +#: company/models.py:152 msgid "Description of the company" msgstr "Descripción de la empresa" -#: company/models.py:157 +#: company/models.py:158 msgid "Website" msgstr "Página web" -#: company/models.py:158 +#: company/models.py:159 msgid "Company website URL" msgstr "URL del sitio web de la empresa" -#: company/models.py:164 +#: company/models.py:165 msgid "Phone number" msgstr "Teléfono" -#: company/models.py:166 +#: company/models.py:167 msgid "Contact phone number" msgstr "Teléfono de contacto" -#: company/models.py:173 +#: company/models.py:174 msgid "Contact email address" msgstr "Correo electrónico de contacto" -#: company/models.py:178 company/models.py:296 order/models.py:513 +#: company/models.py:179 company/models.py:297 order/models.py:514 #: users/models.py:561 msgid "Contact" msgstr "Contacto" -#: company/models.py:180 +#: company/models.py:181 msgid "Point of contact" msgstr "Punto de contacto" -#: company/models.py:186 +#: company/models.py:187 msgid "Link to external company information" msgstr "Enlace a información externa de la empresa" -#: company/models.py:191 +#: company/models.py:192 msgid "Is this company active?" msgstr "¿Esta empresa está activa?" -#: company/models.py:196 +#: company/models.py:197 msgid "Is customer" msgstr "¿Es cliente?" -#: company/models.py:197 +#: company/models.py:198 msgid "Do you sell items to this company?" msgstr "¿Vendes artículos a esta empresa?" -#: company/models.py:202 +#: company/models.py:203 msgid "Is supplier" msgstr "¿Es proveedor?" -#: company/models.py:203 +#: company/models.py:204 msgid "Do you purchase items from this company?" msgstr "¿Compras artículos de esta empresa?" -#: company/models.py:208 +#: company/models.py:209 msgid "Is manufacturer" msgstr "¿Es productor?" -#: company/models.py:209 +#: company/models.py:210 msgid "Does this company manufacture parts?" msgstr "¿Esta empresa fabrica partes?" -#: company/models.py:217 +#: company/models.py:218 msgid "Default currency used for this company" msgstr "Moneda predeterminada utilizada para esta empresa" -#: company/models.py:224 +#: company/models.py:225 msgid "Tax ID" msgstr "" -#: company/models.py:225 +#: company/models.py:226 msgid "Company Tax ID" msgstr "" -#: company/models.py:335 order/models.py:523 order/models.py:2288 +#: company/models.py:336 order/models.py:524 order/models.py:2289 msgid "Address" msgstr "Dirección" -#: company/models.py:336 +#: company/models.py:337 msgid "Addresses" msgstr "Direcciones" -#: company/models.py:393 +#: company/models.py:394 msgid "Select company" msgstr "Seleccionar empresa" -#: company/models.py:398 +#: company/models.py:399 msgid "Address title" msgstr "Título de dirección" -#: company/models.py:399 +#: company/models.py:400 msgid "Title describing the address entry" msgstr "Título que describe la entrada de dirección" -#: company/models.py:405 +#: company/models.py:406 msgid "Primary address" msgstr "Dirección principal" -#: company/models.py:406 +#: company/models.py:407 msgid "Set as primary address" msgstr "Establecer como dirección principal" -#: company/models.py:411 +#: company/models.py:412 msgid "Line 1" msgstr "Línea 1" -#: company/models.py:412 +#: company/models.py:413 msgid "Address line 1" msgstr "Dirección línea 1" -#: company/models.py:418 +#: company/models.py:419 msgid "Line 2" msgstr "Línea 2" -#: company/models.py:419 +#: company/models.py:420 msgid "Address line 2" msgstr "Dirección línea 2" -#: company/models.py:425 company/models.py:426 +#: company/models.py:426 company/models.py:427 msgid "Postal code" msgstr "Código postal" -#: company/models.py:432 +#: company/models.py:433 msgid "City/Region" msgstr "Ciudad/región" -#: company/models.py:433 +#: company/models.py:434 msgid "Postal code city/region" msgstr "Código postal de ciudad/región" -#: company/models.py:439 +#: company/models.py:440 msgid "State/Province" msgstr "Estado/provincia" -#: company/models.py:440 +#: company/models.py:441 msgid "State or province" msgstr "Estado o provincia" -#: company/models.py:446 +#: company/models.py:447 msgid "Country" msgstr "País" -#: company/models.py:447 +#: company/models.py:448 msgid "Address country" msgstr "Dirección de país" -#: company/models.py:453 +#: company/models.py:454 msgid "Courier shipping notes" msgstr "Notas de envío de mensajería" -#: company/models.py:454 +#: company/models.py:455 msgid "Notes for shipping courier" msgstr "Notas para el mensajero de envío" -#: company/models.py:460 +#: company/models.py:461 msgid "Internal shipping notes" msgstr "Notas de envío internas" -#: company/models.py:461 +#: company/models.py:462 msgid "Shipping notes for internal use" msgstr "Notas de envío para uso interno" -#: company/models.py:468 +#: company/models.py:469 msgid "Link to address information (external)" msgstr "Enlace a información de dirección (externa)" -#: company/models.py:492 company/models.py:609 company/models.py:832 -#: company/serializers.py:471 stock/api.py:561 +#: company/models.py:494 company/models.py:786 company/serializers.py:516 +#: stock/api.py:561 msgid "Manufacturer Part" msgstr "Parte del fabricante" -#: company/models.py:509 company/models.py:800 stock/models.py:1025 +#: company/models.py:511 company/models.py:754 stock/models.py:1025 #: stock/serializers.py:407 msgid "Base Part" msgstr "Parte base" -#: company/models.py:511 company/models.py:802 +#: company/models.py:513 company/models.py:756 msgid "Select part" msgstr "Seleccionar parte" -#: company/models.py:521 +#: company/models.py:523 msgid "Select manufacturer" msgstr "Seleccionar fabricante" -#: company/models.py:527 company/serializers.py:479 order/serializers.py:734 -#: part/serializers.py:576 +#: company/models.py:529 company/serializers.py:524 order/serializers.py:745 +#: part/serializers.py:487 msgid "MPN" msgstr "" -#: company/models.py:528 stock/serializers.py:572 +#: company/models.py:530 stock/serializers.py:572 msgid "Manufacturer Part Number" msgstr "Número de parte de fabricante" -#: company/models.py:535 +#: company/models.py:537 msgid "URL for external manufacturer part link" msgstr "URL para el enlace de parte del fabricante externo" -#: company/models.py:544 +#: company/models.py:546 msgid "Manufacturer part description" msgstr "Descripción de la parte del fabricante" -#: company/models.py:597 -msgid "Manufacturer Part Parameter" -msgstr "" - -#: company/models.py:616 -msgid "Parameter name" -msgstr "Nombre del parámetro" - -#: company/models.py:623 -msgid "Parameter value" -msgstr "Valor del parámetro" - -#: company/models.py:630 part/models.py:1195 part/models.py:3857 -msgid "Units" -msgstr "Unidades" - -#: company/models.py:631 -msgid "Parameter units" -msgstr "Unidades de parámetro" - -#: company/models.py:740 +#: company/models.py:694 msgid "Pack units must be compatible with the base part units" msgstr "Las unidades de paquete deben ser compatibles con las unidades de partes de base" -#: company/models.py:747 +#: company/models.py:701 msgid "Pack units must be greater than zero" msgstr "Las unidades de paquete deben ser mayor que cero" -#: company/models.py:761 +#: company/models.py:715 msgid "Linked manufacturer part must reference the same base part" msgstr "La parte vinculada del fabricante debe hacer referencia a la misma parte base" -#: company/models.py:810 company/serializers.py:449 company/serializers.py:467 -#: order/models.py:639 part/serializers.py:550 +#: company/models.py:764 company/serializers.py:494 company/serializers.py:512 +#: order/models.py:640 part/serializers.py:461 #: plugin/builtin/suppliers/digikey.py:26 plugin/builtin/suppliers/lcsc.py:27 #: plugin/builtin/suppliers/mouser.py:25 plugin/builtin/suppliers/tme.py:27 #: stock/api.py:567 templates/email/overdue_purchase_order.html:16 msgid "Supplier" msgstr "Proveedor" -#: company/models.py:811 +#: company/models.py:765 msgid "Select supplier" msgstr "Seleccionar proveedor" -#: company/models.py:817 part/serializers.py:561 +#: company/models.py:771 part/serializers.py:472 msgid "Supplier stock keeping unit" msgstr "Unidad de mantenimiento de stock de proveedores" -#: company/models.py:823 +#: company/models.py:777 msgid "Is this supplier part active?" msgstr "" -#: company/models.py:833 +#: company/models.py:787 msgid "Select manufacturer part" msgstr "Seleccionar parte del fabricante" -#: company/models.py:840 +#: company/models.py:794 msgid "URL for external supplier part link" msgstr "URL del enlace de parte del proveedor externo" -#: company/models.py:849 +#: company/models.py:803 msgid "Supplier part description" msgstr "Descripción de la parte del proveedor" -#: company/models.py:856 order/serializers.py:883 order/serializers.py:2047 -#: part/models.py:4070 part/models.py:4450 part/models.py:4819 -#: report/templates/report/inventree_bill_of_materials_report.html:140 -#: report/templates/report/inventree_purchase_order_report.html:39 -#: report/templates/report/inventree_return_order_report.html:27 -#: report/templates/report/inventree_sales_order_report.html:32 -#: report/templates/report/inventree_stock_location_report.html:105 -#: stock/serializers.py:813 -msgid "Note" -msgstr "Nota" - -#: company/models.py:865 part/models.py:2250 +#: company/models.py:819 part/models.py:2338 msgid "base cost" msgstr "costo base" -#: company/models.py:866 part/models.py:2251 +#: company/models.py:820 part/models.py:2339 msgid "Minimum charge (e.g. stocking fee)" msgstr "Cargo mínimo (p. ej., cuota de almacenamiento)" -#: company/models.py:873 order/serializers.py:875 stock/models.py:1056 +#: company/models.py:827 order/serializers.py:886 stock/models.py:1056 #: stock/serializers.py:1606 msgid "Packaging" msgstr "Paquetes" -#: company/models.py:874 +#: company/models.py:828 msgid "Part packaging" msgstr "Embalaje de partes" -#: company/models.py:879 +#: company/models.py:833 msgid "Pack Quantity" msgstr "Cantidad de paquete" -#: company/models.py:881 +#: company/models.py:835 msgid "Total quantity supplied in a single pack. Leave empty for single items." msgstr "Cantidad total suministrada en un solo paquete. Dejar vacío para artículos individuales." -#: company/models.py:900 part/models.py:2257 +#: company/models.py:854 part/models.py:2345 msgid "multiple" msgstr "múltiple" -#: company/models.py:901 +#: company/models.py:855 msgid "Order multiple" msgstr "Pedido múltiple" -#: company/models.py:913 +#: company/models.py:867 msgid "Quantity available from supplier" msgstr "Cantidad disponible del proveedor" -#: company/models.py:919 +#: company/models.py:873 msgid "Availability Updated" msgstr "Disponibilidad actualizada" -#: company/models.py:920 +#: company/models.py:874 msgid "Date of last update of availability data" msgstr "Fecha de última actualización de los datos de disponibilidad" -#: company/models.py:1048 +#: company/models.py:1002 msgid "Supplier Price Break" msgstr "" -#: company/serializers.py:181 +#: company/serializers.py:184 +msgid "Primary Address" +msgstr "" + +#: company/serializers.py:186 msgid "Return the string representation for the primary address. This property exists for backwards compatibility." msgstr "" -#: company/serializers.py:212 +#: company/serializers.py:218 msgid "Default currency used for this supplier" msgstr "Moneda predeterminada utilizada para este proveedor" -#: company/serializers.py:248 +#: company/serializers.py:260 msgid "Company Name" msgstr "Nombre de la empresa" -#: company/serializers.py:433 part/serializers.py:955 stock/serializers.py:428 +#: company/serializers.py:460 part/serializers.py:840 stock/serializers.py:428 msgid "In Stock" msgstr "En Stock" +#: company/serializers.py:477 +msgid "Price Breaks" +msgstr "" + #: data_exporter/mixins.py:325 data_exporter/mixins.py:403 msgid "Error occurred during data export" msgstr "" @@ -4290,7 +4418,7 @@ msgstr "Datos de la fila original" msgid "Errors" msgstr "Errores" -#: importer/models.py:550 part/serializers.py:1268 +#: importer/models.py:550 part/serializers.py:1133 msgid "Valid" msgstr "Válido" @@ -4402,7 +4530,7 @@ msgstr "Número de copias a imprimir para cada etiqueta" msgid "Connected" msgstr "Conectado" -#: machine/machine_types/label_printer.py:232 order/api.py:1795 +#: machine/machine_types/label_printer.py:232 order/api.py:1800 msgid "Unknown" msgstr "Desconocido" @@ -4530,105 +4658,105 @@ msgstr "" msgid "Maximum value for progress type, required if type=progress" msgstr "" -#: order/api.py:125 +#: order/api.py:130 msgid "Order Reference" msgstr "Referencia del pedido" -#: order/api.py:153 order/api.py:1207 +#: order/api.py:158 order/api.py:1212 msgid "Outstanding" msgstr "Destacado" -#: order/api.py:169 +#: order/api.py:174 msgid "Has Project Code" msgstr "Tiene Código de Proyecto" -#: order/api.py:183 order/models.py:488 +#: order/api.py:188 order/models.py:489 msgid "Created By" msgstr "Creado por" -#: order/api.py:187 +#: order/api.py:192 msgid "Created Before" msgstr "Creado antes de" -#: order/api.py:191 +#: order/api.py:196 msgid "Created After" msgstr "Creado después de" -#: order/api.py:195 +#: order/api.py:200 msgid "Has Start Date" msgstr "Tiene fecha inicial" -#: order/api.py:203 +#: order/api.py:208 msgid "Start Date Before" msgstr "Fecha de inicio anterior" -#: order/api.py:207 +#: order/api.py:212 msgid "Start Date After" msgstr "Fecha de inicio después" -#: order/api.py:211 +#: order/api.py:216 msgid "Has Target Date" msgstr "Tiene fecha límite" -#: order/api.py:219 +#: order/api.py:224 msgid "Target Date Before" msgstr "Fecha objetivo antes" -#: order/api.py:223 +#: order/api.py:228 msgid "Target Date After" msgstr "Fecha objetivo después" -#: order/api.py:274 +#: order/api.py:279 msgid "Has Pricing" msgstr "Tiene Precio" -#: order/api.py:327 order/api.py:812 order/api.py:1490 +#: order/api.py:332 order/api.py:818 order/api.py:1495 msgid "Completed Before" msgstr "Completado antes de" -#: order/api.py:331 order/api.py:816 order/api.py:1494 +#: order/api.py:336 order/api.py:822 order/api.py:1499 msgid "Completed After" msgstr "Completado después de" -#: order/api.py:337 order/api.py:341 +#: order/api.py:342 order/api.py:346 msgid "External Build Order" msgstr "" -#: order/api.py:526 order/api.py:914 order/api.py:1170 order/models.py:1922 -#: order/models.py:2049 order/models.py:2099 order/models.py:2279 -#: order/models.py:2477 order/models.py:2999 order/models.py:3065 +#: order/api.py:532 order/api.py:919 order/api.py:1175 order/models.py:1923 +#: order/models.py:2050 order/models.py:2100 order/models.py:2280 +#: order/models.py:2478 order/models.py:3000 order/models.py:3066 msgid "Order" msgstr "Orden" -#: order/api.py:530 order/api.py:982 +#: order/api.py:536 order/api.py:987 msgid "Order Complete" msgstr "Orden completada" -#: order/api.py:562 order/api.py:566 order/serializers.py:745 +#: order/api.py:568 order/api.py:572 order/serializers.py:756 msgid "Internal Part" msgstr "Componente interno" -#: order/api.py:584 +#: order/api.py:590 msgid "Order Pending" msgstr "Orden pendiente" -#: order/api.py:967 +#: order/api.py:972 msgid "Completed" msgstr "Completados" -#: order/api.py:1223 +#: order/api.py:1228 msgid "Has Shipment" msgstr "Tiene envío" -#: order/api.py:1789 order/models.py:552 order/models.py:1923 -#: order/models.py:2050 +#: order/api.py:1794 order/models.py:553 order/models.py:1924 +#: order/models.py:2051 #: report/templates/report/inventree_purchase_order_report.html:14 #: stock/serializers.py:129 templates/email/overdue_purchase_order.html:15 msgid "Purchase Order" msgstr "Orden de compra" -#: order/api.py:1791 order/models.py:1251 order/models.py:2100 -#: order/models.py:2280 order/models.py:2478 +#: order/api.py:1796 order/models.py:1252 order/models.py:2101 +#: order/models.py:2281 order/models.py:2479 #: report/templates/report/inventree_build_order_report.html:135 #: report/templates/report/inventree_sales_order_report.html:14 #: report/templates/report/inventree_sales_order_shipment_report.html:15 @@ -4636,8 +4764,8 @@ msgstr "Orden de compra" msgid "Sales Order" msgstr "Orden de Venta" -#: order/api.py:1793 order/models.py:2649 order/models.py:3000 -#: order/models.py:3066 +#: order/api.py:1798 order/models.py:2650 order/models.py:3001 +#: order/models.py:3067 #: report/templates/report/inventree_return_order_report.html:13 #: templates/email/overdue_return_order.html:15 msgid "Return Order" @@ -4653,722 +4781,722 @@ msgstr "Precio Total" msgid "Total price for this order" msgstr "Precio total para este pedido" -#: order/models.py:96 order/serializers.py:77 +#: order/models.py:96 order/serializers.py:78 msgid "Order Currency" msgstr "Moneda de pedido" -#: order/models.py:99 order/serializers.py:78 +#: order/models.py:99 order/serializers.py:79 msgid "Currency for this order (leave blank to use company default)" msgstr "Moneda para este pedido (dejar en blanco para utilizar el valor predeterminado de la empresa)" -#: order/models.py:324 +#: order/models.py:325 msgid "This order is locked and cannot be modified" msgstr "Este pedido está bloqueado y no puede ser modificado" -#: order/models.py:376 +#: order/models.py:377 msgid "Contact does not match selected company" msgstr "El contacto no coincide con la empresa seleccionada" -#: order/models.py:383 +#: order/models.py:384 msgid "Start date must be before target date" msgstr "La fecha de inicio debe ser anterior a la fecha de límite" -#: order/models.py:390 +#: order/models.py:391 msgid "Address does not match selected company" msgstr "" -#: order/models.py:443 +#: order/models.py:444 msgid "Order description (optional)" msgstr "Descripción del pedido (opcional)" -#: order/models.py:452 order/models.py:1806 +#: order/models.py:453 order/models.py:1807 msgid "Select project code for this order" msgstr "Seleccione el código del proyecto para este pedido" -#: order/models.py:458 order/models.py:1787 order/models.py:2344 +#: order/models.py:459 order/models.py:1788 order/models.py:2345 msgid "Link to external page" msgstr "Enlace a Url externa" -#: order/models.py:465 +#: order/models.py:466 msgid "Start date" msgstr "Fecha de inicio" -#: order/models.py:466 +#: order/models.py:467 msgid "Scheduled start date for this order" msgstr "Fecha de inicio programada para este pedido" -#: order/models.py:472 order/models.py:1794 order/serializers.py:309 +#: order/models.py:473 order/models.py:1795 order/serializers.py:317 #: report/templates/report/inventree_build_order_report.html:125 msgid "Target Date" msgstr "Fecha objetivo" -#: order/models.py:474 +#: order/models.py:475 msgid "Expected date for order delivery. Order will be overdue after this date." msgstr "Fecha esperada para la entrega del pedido. El pedido se retrasará después de esta fecha." -#: order/models.py:494 +#: order/models.py:495 msgid "Issue Date" msgstr "Fecha de emisión" -#: order/models.py:495 +#: order/models.py:496 msgid "Date order was issued" msgstr "Fecha de expedición del pedido" -#: order/models.py:503 +#: order/models.py:504 msgid "User or group responsible for this order" msgstr "Usuario o grupo responsable de este pedido" -#: order/models.py:514 +#: order/models.py:515 msgid "Point of contact for this order" msgstr "Punto de contacto para este pedido" -#: order/models.py:524 +#: order/models.py:525 msgid "Company address for this order" msgstr "Dirección de la empresa para este pedido" -#: order/models.py:615 order/models.py:1312 +#: order/models.py:616 order/models.py:1313 msgid "Order reference" msgstr "Referencia del pedido" -#: order/models.py:624 order/models.py:1336 order/models.py:2737 +#: order/models.py:625 order/models.py:1337 order/models.py:2738 #: stock/serializers.py:559 stock/serializers.py:988 users/models.py:542 msgid "Status" msgstr "Estado" -#: order/models.py:625 +#: order/models.py:626 msgid "Purchase order status" msgstr "Estado de la orden de compra" -#: order/models.py:640 +#: order/models.py:641 msgid "Company from which the items are being ordered" msgstr "Empresa de la cual se están encargando los artículos" -#: order/models.py:651 +#: order/models.py:652 msgid "Supplier Reference" msgstr "Referencia del proveedor" -#: order/models.py:652 +#: order/models.py:653 msgid "Supplier order reference code" msgstr "Código de referencia de pedido del proveedor" -#: order/models.py:661 +#: order/models.py:662 msgid "received by" msgstr "recibido por" -#: order/models.py:668 order/models.py:2752 +#: order/models.py:669 order/models.py:2753 msgid "Date order was completed" msgstr "La fecha de pedido fue completada" -#: order/models.py:677 order/models.py:1981 +#: order/models.py:678 order/models.py:1982 msgid "Destination" msgstr "Destinación" -#: order/models.py:678 order/models.py:1985 +#: order/models.py:679 order/models.py:1986 msgid "Destination for received items" msgstr "Destino para los artículos recibidos" -#: order/models.py:724 +#: order/models.py:725 msgid "Part supplier must match PO supplier" msgstr "El proveedor de la parte debe coincidir con el proveedor de PO" -#: order/models.py:994 +#: order/models.py:995 msgid "Line item does not match purchase order" msgstr "La partida no coincide con la orden de compra" -#: order/models.py:997 +#: order/models.py:998 msgid "Line item is missing a linked part" msgstr "" -#: order/models.py:1011 +#: order/models.py:1012 msgid "Quantity must be a positive number" msgstr "La cantidad debe ser un número positivo" -#: order/models.py:1323 order/models.py:2724 stock/models.py:1078 +#: order/models.py:1324 order/models.py:2725 stock/models.py:1078 #: stock/models.py:1079 stock/serializers.py:1322 #: templates/email/overdue_return_order.html:16 #: templates/email/overdue_sales_order.html:16 msgid "Customer" msgstr "Cliente" -#: order/models.py:1324 +#: order/models.py:1325 msgid "Company to which the items are being sold" msgstr "Empresa a la que se venden los artículos" -#: order/models.py:1337 +#: order/models.py:1338 msgid "Sales order status" msgstr "Estado de la orden de venta" -#: order/models.py:1348 order/models.py:2744 +#: order/models.py:1349 order/models.py:2745 msgid "Customer Reference " msgstr "Referencia del cliente " -#: order/models.py:1349 order/models.py:2745 +#: order/models.py:1350 order/models.py:2746 msgid "Customer order reference code" msgstr "Código de referencia de pedido del cliente" -#: order/models.py:1353 order/models.py:2296 +#: order/models.py:1354 order/models.py:2297 msgid "Shipment Date" msgstr "Fecha de envío" -#: order/models.py:1362 +#: order/models.py:1363 msgid "shipped by" msgstr "enviado por" -#: order/models.py:1413 +#: order/models.py:1414 msgid "Order is already complete" msgstr "La orden ya fue completada" -#: order/models.py:1416 +#: order/models.py:1417 msgid "Order is already cancelled" msgstr "La orden ya fue cancelada" -#: order/models.py:1420 +#: order/models.py:1421 msgid "Only an open order can be marked as complete" msgstr "Sólo una orden abierta puede ser marcada como completa" -#: order/models.py:1424 +#: order/models.py:1425 msgid "Order cannot be completed as there are incomplete shipments" msgstr "El pedido no se puede completar porque hay envíos incompletos" -#: order/models.py:1429 +#: order/models.py:1430 msgid "Order cannot be completed as there are incomplete allocations" msgstr "El pedido no se puede completar ya que hay asignaciones incompletas" -#: order/models.py:1438 +#: order/models.py:1439 msgid "Order cannot be completed as there are incomplete line items" msgstr "El pedido no se puede completar porque hay partidas incompletas" -#: order/models.py:1733 order/models.py:1749 +#: order/models.py:1734 order/models.py:1750 msgid "The order is locked and cannot be modified" msgstr "Este pedido está bloqueado y no puede ser modificado" -#: order/models.py:1757 +#: order/models.py:1758 msgid "Item quantity" msgstr "Cantidad del artículo" -#: order/models.py:1774 +#: order/models.py:1775 msgid "Line item reference" msgstr "Referencia de partida" -#: order/models.py:1781 +#: order/models.py:1782 msgid "Line item notes" msgstr "Notas de partida" -#: order/models.py:1796 +#: order/models.py:1797 msgid "Target date for this line item (leave blank to use the target date from the order)" msgstr "Fecha objetivo para esta partida (dejar en blanco para usar la fecha de destino de la orden)" -#: order/models.py:1826 +#: order/models.py:1827 msgid "Line item description (optional)" msgstr "Descripción de partida (opcional)" -#: order/models.py:1833 +#: order/models.py:1834 msgid "Additional context for this line" msgstr "Contexto adicional para esta línea" -#: order/models.py:1843 +#: order/models.py:1844 msgid "Unit price" msgstr "Precio unitario" -#: order/models.py:1862 +#: order/models.py:1863 msgid "Purchase Order Line Item" msgstr "" -#: order/models.py:1889 +#: order/models.py:1890 msgid "Supplier part must match supplier" msgstr "La parte del proveedor debe coincidir con el proveedor" -#: order/models.py:1894 +#: order/models.py:1895 msgid "Build order must be marked as external" msgstr "" -#: order/models.py:1901 +#: order/models.py:1902 msgid "Build orders can only be linked to assembly parts" msgstr "" -#: order/models.py:1907 +#: order/models.py:1908 msgid "Build order part must match line item part" msgstr "" -#: order/models.py:1942 +#: order/models.py:1943 msgid "Supplier part" msgstr "Parte del proveedor" -#: order/models.py:1949 +#: order/models.py:1950 msgid "Received" msgstr "Recibido" -#: order/models.py:1950 +#: order/models.py:1951 msgid "Number of items received" msgstr "Número de artículos recibidos" -#: order/models.py:1958 stock/models.py:1201 stock/serializers.py:637 +#: order/models.py:1959 stock/models.py:1201 stock/serializers.py:637 msgid "Purchase Price" msgstr "Precio de Compra" -#: order/models.py:1959 +#: order/models.py:1960 msgid "Unit purchase price" msgstr "Precio de compra unitario" -#: order/models.py:1975 +#: order/models.py:1976 msgid "External Build Order to be fulfilled by this line item" msgstr "" -#: order/models.py:2038 +#: order/models.py:2039 msgid "Purchase Order Extra Line" msgstr "" -#: order/models.py:2067 +#: order/models.py:2068 msgid "Sales Order Line Item" msgstr "" -#: order/models.py:2092 +#: order/models.py:2093 msgid "Only salable parts can be assigned to a sales order" msgstr "Sólo las partes vendibles pueden ser asignadas a un pedido de venta" -#: order/models.py:2118 +#: order/models.py:2119 msgid "Sale Price" msgstr "Precio de Venta" -#: order/models.py:2119 +#: order/models.py:2120 msgid "Unit sale price" msgstr "Precio de venta unitario" -#: order/models.py:2128 order/status_codes.py:50 +#: order/models.py:2129 order/status_codes.py:50 msgid "Shipped" msgstr "Enviado" -#: order/models.py:2129 +#: order/models.py:2130 msgid "Shipped quantity" msgstr "Cantidad enviada" -#: order/models.py:2240 +#: order/models.py:2241 msgid "Sales Order Shipment" msgstr "" -#: order/models.py:2253 +#: order/models.py:2254 msgid "Shipment address must match the customer" msgstr "" -#: order/models.py:2289 +#: order/models.py:2290 msgid "Shipping address for this shipment" msgstr "" -#: order/models.py:2297 +#: order/models.py:2298 msgid "Date of shipment" msgstr "Fecha del envío" -#: order/models.py:2303 +#: order/models.py:2304 msgid "Delivery Date" msgstr "Fecha de entrega" -#: order/models.py:2304 +#: order/models.py:2305 msgid "Date of delivery of shipment" msgstr "Fecha de entrega del envío" -#: order/models.py:2312 +#: order/models.py:2313 msgid "Checked By" msgstr "Revisado por" -#: order/models.py:2313 +#: order/models.py:2314 msgid "User who checked this shipment" msgstr "Usuario que revisó este envío" -#: order/models.py:2320 order/models.py:2574 order/serializers.py:1711 -#: order/serializers.py:1835 +#: order/models.py:2321 order/models.py:2575 order/serializers.py:1725 +#: order/serializers.py:1849 #: report/templates/report/inventree_sales_order_shipment_report.html:14 msgid "Shipment" msgstr "Envío" -#: order/models.py:2321 +#: order/models.py:2322 msgid "Shipment number" msgstr "Número de envío" -#: order/models.py:2329 +#: order/models.py:2330 msgid "Tracking Number" msgstr "Número de Seguimiento" -#: order/models.py:2330 +#: order/models.py:2331 msgid "Shipment tracking information" msgstr "Información de seguimiento del envío" -#: order/models.py:2337 +#: order/models.py:2338 msgid "Invoice Number" msgstr "Número de factura" -#: order/models.py:2338 +#: order/models.py:2339 msgid "Reference number for associated invoice" msgstr "Número de referencia para la factura asociada" -#: order/models.py:2377 +#: order/models.py:2378 msgid "Shipment has already been sent" msgstr "El envío ya ha sido enviado" -#: order/models.py:2380 +#: order/models.py:2381 msgid "Shipment has no allocated stock items" msgstr "El envío no tiene artículos de stock asignados" -#: order/models.py:2387 +#: order/models.py:2388 msgid "Shipment must be checked before it can be completed" msgstr "" -#: order/models.py:2466 +#: order/models.py:2467 msgid "Sales Order Extra Line" msgstr "" -#: order/models.py:2495 +#: order/models.py:2496 msgid "Sales Order Allocation" msgstr "" -#: order/models.py:2518 order/models.py:2520 +#: order/models.py:2519 order/models.py:2521 msgid "Stock item has not been assigned" msgstr "El artículo de stock no ha sido asignado" -#: order/models.py:2527 +#: order/models.py:2528 msgid "Cannot allocate stock item to a line with a different part" msgstr "No se puede asignar el artículo de stock a una línea con una parte diferente" -#: order/models.py:2530 +#: order/models.py:2531 msgid "Cannot allocate stock to a line without a part" msgstr "No se puede asignar stock a una línea sin una parte" -#: order/models.py:2533 +#: order/models.py:2534 msgid "Allocation quantity cannot exceed stock quantity" msgstr "La cantidad de asignación no puede exceder la cantidad de stock" -#: order/models.py:2552 order/serializers.py:1581 +#: order/models.py:2553 order/serializers.py:1595 msgid "Quantity must be 1 for serialized stock item" msgstr "La cantidad debe ser 1 para el stock serializado" -#: order/models.py:2555 +#: order/models.py:2556 msgid "Sales order does not match shipment" msgstr "La orden de venta no coincide con el envío" -#: order/models.py:2556 plugin/base/barcodes/api.py:642 +#: order/models.py:2557 plugin/base/barcodes/api.py:642 msgid "Shipment does not match sales order" msgstr "El envío no coincide con el pedido de venta" -#: order/models.py:2564 +#: order/models.py:2565 msgid "Line" msgstr "Línea" -#: order/models.py:2575 +#: order/models.py:2576 msgid "Sales order shipment reference" msgstr "Referencia del envío del pedido de venta" -#: order/models.py:2588 order/models.py:3007 +#: order/models.py:2589 order/models.py:3008 msgid "Item" msgstr "Ítem" -#: order/models.py:2589 +#: order/models.py:2590 msgid "Select stock item to allocate" msgstr "Seleccionar artículo de stock para asignar" -#: order/models.py:2598 +#: order/models.py:2599 msgid "Enter stock allocation quantity" msgstr "Especificar la cantidad de asignación de stock" -#: order/models.py:2713 +#: order/models.py:2714 msgid "Return Order reference" msgstr "Referencia de la orden de devolución" -#: order/models.py:2725 +#: order/models.py:2726 msgid "Company from which items are being returned" msgstr "Empresa de la cual se están devolviendo los artículos" -#: order/models.py:2738 +#: order/models.py:2739 msgid "Return order status" msgstr "Estado de la orden de devolución" -#: order/models.py:2965 +#: order/models.py:2966 msgid "Return Order Line Item" msgstr "" -#: order/models.py:2978 +#: order/models.py:2979 msgid "Stock item must be specified" msgstr "" -#: order/models.py:2982 +#: order/models.py:2983 msgid "Return quantity exceeds stock quantity" msgstr "" -#: order/models.py:2987 +#: order/models.py:2988 msgid "Return quantity must be greater than zero" msgstr "" -#: order/models.py:2992 +#: order/models.py:2993 msgid "Invalid quantity for serialized stock item" msgstr "" -#: order/models.py:3008 +#: order/models.py:3009 msgid "Select item to return from customer" msgstr "Seleccionar el artículo a devolver del cliente" -#: order/models.py:3023 +#: order/models.py:3024 msgid "Received Date" msgstr "Fecha de recepción" -#: order/models.py:3024 +#: order/models.py:3025 msgid "The date this this return item was received" msgstr "La fecha en la que se recibió este artículo de devolución" -#: order/models.py:3036 +#: order/models.py:3037 msgid "Outcome" msgstr "Resultado" -#: order/models.py:3037 +#: order/models.py:3038 msgid "Outcome for this line item" msgstr "Salida para esta partida" -#: order/models.py:3044 +#: order/models.py:3045 msgid "Cost associated with return or repair for this line item" msgstr "Costo asociado con la devolución o reparación para esta partida" -#: order/models.py:3054 +#: order/models.py:3055 msgid "Return Order Extra Line" msgstr "" -#: order/serializers.py:91 +#: order/serializers.py:92 msgid "Order ID" msgstr "ID del Pedido" -#: order/serializers.py:91 +#: order/serializers.py:92 msgid "ID of the order to duplicate" msgstr "ID del pedido a duplicar" -#: order/serializers.py:97 +#: order/serializers.py:98 msgid "Copy Lines" msgstr "Copiar líneas" -#: order/serializers.py:98 +#: order/serializers.py:99 msgid "Copy line items from the original order" msgstr "Copiar elementos de línea del pedido original" -#: order/serializers.py:104 +#: order/serializers.py:105 msgid "Copy Extra Lines" msgstr "Copiar líneas adicionales" -#: order/serializers.py:105 +#: order/serializers.py:106 msgid "Copy extra line items from the original order" msgstr "Copiar elementos extra de la línea del pedido original" -#: order/serializers.py:120 +#: order/serializers.py:121 #: report/templates/report/inventree_purchase_order_report.html:29 #: report/templates/report/inventree_return_order_report.html:19 #: report/templates/report/inventree_sales_order_report.html:22 msgid "Line Items" msgstr "Partidas" -#: order/serializers.py:125 +#: order/serializers.py:126 msgid "Completed Lines" msgstr "Líneas completadas" -#: order/serializers.py:192 +#: order/serializers.py:199 msgid "Duplicate Order" msgstr "Duplicar pedido" -#: order/serializers.py:193 +#: order/serializers.py:200 msgid "Specify options for duplicating this order" msgstr "Especificar opciones para duplicar este pedido" -#: order/serializers.py:270 +#: order/serializers.py:278 msgid "Invalid order ID" msgstr "ID de pedido no válido" -#: order/serializers.py:466 +#: order/serializers.py:477 msgid "Supplier Name" msgstr "Nombre del proveedor" -#: order/serializers.py:510 +#: order/serializers.py:521 msgid "Order cannot be cancelled" msgstr "El pedido no puede ser cancelado" -#: order/serializers.py:525 order/serializers.py:1602 +#: order/serializers.py:536 order/serializers.py:1616 msgid "Allow order to be closed with incomplete line items" msgstr "Permitir cerrar el pedido con partidas incompletas" -#: order/serializers.py:535 order/serializers.py:1612 +#: order/serializers.py:546 order/serializers.py:1626 msgid "Order has incomplete line items" msgstr "El pedido tiene partidas incompletas" -#: order/serializers.py:665 +#: order/serializers.py:676 msgid "Order is not open" msgstr "El pedido no está abierto" -#: order/serializers.py:692 +#: order/serializers.py:703 msgid "Auto Pricing" msgstr "Precio automático" -#: order/serializers.py:694 +#: order/serializers.py:705 msgid "Automatically calculate purchase price based on supplier part data" msgstr "Calcular precio de compra automáticamente con base en los datos del proveedor" -#: order/serializers.py:704 +#: order/serializers.py:715 msgid "Purchase price currency" msgstr "Moneda del precio de compra" -#: order/serializers.py:718 +#: order/serializers.py:729 msgid "Merge Items" msgstr "Combinar artículos" -#: order/serializers.py:720 +#: order/serializers.py:731 msgid "Merge items with the same part, destination and target date into one line item" msgstr "" -#: order/serializers.py:727 part/serializers.py:560 +#: order/serializers.py:738 part/serializers.py:471 msgid "SKU" msgstr "SKU" -#: order/serializers.py:741 part/models.py:1089 part/serializers.py:372 +#: order/serializers.py:752 part/models.py:1177 part/serializers.py:337 msgid "Internal Part Number" msgstr "Número de parte interna" -#: order/serializers.py:749 +#: order/serializers.py:760 msgid "Internal Part Name" msgstr "Nombre interno de parte" -#: order/serializers.py:765 +#: order/serializers.py:776 msgid "Supplier part must be specified" msgstr "Debe especificar la parte del proveedor" -#: order/serializers.py:768 +#: order/serializers.py:779 msgid "Purchase order must be specified" msgstr "La orden de compra debe especificarse" -#: order/serializers.py:776 +#: order/serializers.py:787 msgid "Supplier must match purchase order" msgstr "El proveedor debe coincidir con la orden de compra" -#: order/serializers.py:777 +#: order/serializers.py:788 msgid "Purchase order must match supplier" msgstr "La orden de compra debe coincidir con el proveedor" -#: order/serializers.py:825 order/serializers.py:1682 +#: order/serializers.py:836 order/serializers.py:1696 msgid "Line Item" msgstr "Partida" -#: order/serializers.py:834 order/serializers.py:974 order/serializers.py:2043 +#: order/serializers.py:845 order/serializers.py:985 order/serializers.py:2060 msgid "Select destination location for received items" msgstr "Seleccione la ubicación de destino para los artículos recibidos" -#: order/serializers.py:850 +#: order/serializers.py:861 msgid "Enter batch code for incoming stock items" msgstr "Introduzca el código de lote para los artículos de almacén entrantes" -#: order/serializers.py:857 stock/models.py:1160 +#: order/serializers.py:868 stock/models.py:1160 #: templates/email/stale_stock_notification.html:22 users/models.py:137 msgid "Expiry Date" msgstr "Fecha de Expiración" -#: order/serializers.py:858 +#: order/serializers.py:869 msgid "Enter expiry date for incoming stock items" msgstr "" -#: order/serializers.py:866 +#: order/serializers.py:877 msgid "Enter serial numbers for incoming stock items" msgstr "Introduzca números de serie para artículos de almacén entrantes" -#: order/serializers.py:876 +#: order/serializers.py:887 msgid "Override packaging information for incoming stock items" msgstr "" -#: order/serializers.py:884 order/serializers.py:2048 +#: order/serializers.py:895 order/serializers.py:2065 msgid "Additional note for incoming stock items" msgstr "" -#: order/serializers.py:891 +#: order/serializers.py:902 msgid "Barcode" msgstr "Código de barras" -#: order/serializers.py:892 +#: order/serializers.py:903 msgid "Scanned barcode" msgstr "Código de barras escaneado" -#: order/serializers.py:908 +#: order/serializers.py:919 msgid "Barcode is already in use" msgstr "Código de barras en uso" -#: order/serializers.py:991 order/serializers.py:2067 +#: order/serializers.py:1002 order/serializers.py:2084 msgid "Line items must be provided" msgstr "Se deben proporcionar las partidas" -#: order/serializers.py:1010 +#: order/serializers.py:1021 msgid "Destination location must be specified" msgstr "Se requiere ubicación de destino" -#: order/serializers.py:1017 +#: order/serializers.py:1028 msgid "Supplied barcode values must be unique" msgstr "Los valores del código de barras deben ser únicos" -#: order/serializers.py:1121 +#: order/serializers.py:1135 msgid "Shipments" msgstr "Envíos" -#: order/serializers.py:1125 +#: order/serializers.py:1139 msgid "Completed Shipments" msgstr "Envíos completados" -#: order/serializers.py:1293 +#: order/serializers.py:1307 msgid "Sale price currency" msgstr "Moneda del precio de venta" -#: order/serializers.py:1339 +#: order/serializers.py:1353 msgid "Allocated Items" msgstr "Elementos asignados" -#: order/serializers.py:1484 +#: order/serializers.py:1498 msgid "No shipment details provided" msgstr "No se proporcionaron detalles de envío" -#: order/serializers.py:1545 order/serializers.py:1691 +#: order/serializers.py:1559 order/serializers.py:1705 msgid "Line item is not associated with this order" msgstr "La partida no está asociada con este pedido" -#: order/serializers.py:1564 +#: order/serializers.py:1578 msgid "Quantity must be positive" msgstr "La cantidad debe ser positiva" -#: order/serializers.py:1701 +#: order/serializers.py:1715 msgid "Enter serial numbers to allocate" msgstr "Introduzca números de serie para asignar" -#: order/serializers.py:1723 order/serializers.py:1843 +#: order/serializers.py:1737 order/serializers.py:1857 msgid "Shipment has already been shipped" msgstr "El envío ya ha sido enviado" -#: order/serializers.py:1726 order/serializers.py:1846 +#: order/serializers.py:1740 order/serializers.py:1860 msgid "Shipment is not associated with this order" msgstr "El envío no está asociado con este pedido" -#: order/serializers.py:1781 +#: order/serializers.py:1795 msgid "No match found for the following serial numbers" msgstr "No se han encontrado coincidencias para los siguientes números de serie" -#: order/serializers.py:1788 +#: order/serializers.py:1802 msgid "The following serial numbers are unavailable" msgstr "Los siguientes números de serie no están disponibles" -#: order/serializers.py:2009 +#: order/serializers.py:2026 msgid "Return order line item" msgstr "Partida de orden de devolución" -#: order/serializers.py:2019 +#: order/serializers.py:2036 msgid "Line item does not match return order" msgstr "La partida no coincide con la orden de devolución" -#: order/serializers.py:2022 +#: order/serializers.py:2039 msgid "Line item has already been received" msgstr "La partida ya ha sido recibida" -#: order/serializers.py:2059 +#: order/serializers.py:2076 msgid "Items can only be received against orders which are in progress" msgstr "Los artículos sólo pueden ser recibidos contra pedidos en curso" -#: order/serializers.py:2124 +#: order/serializers.py:2141 msgid "Quantity to return" msgstr "Cantidad a devolver" -#: order/serializers.py:2140 +#: order/serializers.py:2157 msgid "Line price currency" msgstr "Moneda de precio de línea" @@ -5431,1190 +5559,1109 @@ msgstr "" msgid "Return order {ro} is now overdue" msgstr "" -#: part/api.py:108 +#: part/api.py:103 msgid "Starred" msgstr "Favoritos" -#: part/api.py:110 +#: part/api.py:105 msgid "Filter by starred categories" msgstr "" -#: part/api.py:127 stock/api.py:288 +#: part/api.py:122 stock/api.py:288 msgid "Depth" msgstr "Profundidad" -#: part/api.py:127 +#: part/api.py:122 msgid "Filter by category depth" msgstr "Filtrar por profundidad de categoría" -#: part/api.py:145 stock/api.py:306 +#: part/api.py:140 stock/api.py:306 msgid "Top Level" msgstr "Nivel superior" -#: part/api.py:147 +#: part/api.py:142 msgid "Filter by top-level categories" msgstr "Filtrar por categorías de nivel superior" -#: part/api.py:160 stock/api.py:321 +#: part/api.py:155 stock/api.py:321 msgid "Cascade" msgstr "En cascada" -#: part/api.py:162 +#: part/api.py:157 msgid "Include sub-categories in filtered results" msgstr "" -#: part/api.py:182 +#: part/api.py:177 msgid "Parent" msgstr "" -#: part/api.py:184 +#: part/api.py:179 msgid "Filter by parent category" msgstr "" -#: part/api.py:219 +#: part/api.py:214 msgid "Exclude sub-categories under the specified category" msgstr "" -#: part/api.py:445 +#: part/api.py:440 msgid "Has Results" msgstr "Tiene resultados" -#: part/api.py:666 +#: part/api.py:661 msgid "Is Variant" msgstr "" -#: part/api.py:674 +#: part/api.py:669 msgid "Is Revision" msgstr "" -#: part/api.py:684 +#: part/api.py:679 msgid "Has Revisions" msgstr "" -#: part/api.py:865 +#: part/api.py:860 msgid "BOM Valid" msgstr "" -#: part/api.py:974 +#: part/api.py:969 msgid "Cascade Categories" msgstr "" -#: part/api.py:975 +#: part/api.py:970 msgid "If true, include items in child categories of the given category" msgstr "" -#: part/api.py:981 +#: part/api.py:976 msgid "Filter by numeric category ID or the literal 'null'" msgstr "" -#: part/api.py:1533 +#: part/api.py:1258 msgid "Assembly part is testable" msgstr "" -#: part/api.py:1542 +#: part/api.py:1267 msgid "Component part is testable" msgstr "" -#: part/api.py:1611 +#: part/api.py:1336 msgid "Uses" msgstr "" -#: part/models.py:96 part/models.py:4163 +#: part/models.py:93 part/models.py:436 #: templates/email/part_event_notification.html:16 msgid "Part Category" msgstr "Categoría de parte" -#: part/models.py:97 users/ruleset.py:27 +#: part/models.py:94 users/ruleset.py:27 msgid "Part Categories" msgstr "Categorías de parte" -#: part/models.py:115 part/models.py:1125 +#: part/models.py:112 part/models.py:1213 msgid "Default Location" msgstr "Ubicación Predeterminada" -#: part/models.py:116 +#: part/models.py:113 msgid "Default location for parts in this category" msgstr "Ubicación predeterminada para partes de esta categoría" -#: part/models.py:121 stock/models.py:216 +#: part/models.py:118 stock/models.py:216 msgid "Structural" msgstr "Estructural" -#: part/models.py:123 +#: part/models.py:120 msgid "Parts may not be directly assigned to a structural category, but may be assigned to child categories." msgstr "Las partes no pueden asignarse directamente a una categoría estructural, pero pueden asignarse a categorías hijas." -#: part/models.py:132 +#: part/models.py:129 msgid "Default keywords" msgstr "Palabras clave predeterminadas" -#: part/models.py:133 +#: part/models.py:130 msgid "Default keywords for parts in this category" msgstr "Palabras clave por defecto para partes en esta categoría" -#: part/models.py:140 stock/models.py:97 stock/models.py:198 +#: part/models.py:137 stock/models.py:97 stock/models.py:198 msgid "Icon" msgstr "Icono" -#: part/models.py:141 part/serializers.py:148 part/serializers.py:167 +#: part/models.py:138 part/serializers.py:147 part/serializers.py:166 #: stock/models.py:199 msgid "Icon (optional)" msgstr "Icono (opcional)" -#: part/models.py:185 +#: part/models.py:182 msgid "You cannot make this part category structural because some parts are already assigned to it!" msgstr "¡No puedes hacer que esta categoría de partes sea estructural porque algunas partes ya están asignadas!" -#: part/models.py:473 part/serializers.py:119 part/serializers.py:310 -#: users/ruleset.py:28 +#: part/models.py:392 +msgid "Part Category Parameter Template" +msgstr "" + +#: part/models.py:448 +msgid "Default Value" +msgstr "Valor predeterminado" + +#: part/models.py:449 +msgid "Default Parameter Value" +msgstr "Valor de parámetro por defecto" + +#: part/models.py:551 part/serializers.py:118 users/ruleset.py:28 msgid "Parts" msgstr "Partes" -#: part/models.py:525 +#: part/models.py:597 +msgid "Cannot delete parameters of a locked part" +msgstr "" + +#: part/models.py:602 +msgid "Cannot modify parameters of a locked part" +msgstr "" + +#: part/models.py:613 msgid "Cannot delete this part as it is locked" msgstr "" -#: part/models.py:528 +#: part/models.py:616 msgid "Cannot delete this part as it is still active" msgstr "" -#: part/models.py:533 +#: part/models.py:621 msgid "Cannot delete this part as it is used in an assembly" msgstr "" -#: part/models.py:616 part/models.py:623 +#: part/models.py:704 part/models.py:711 #, python-brace-format msgid "Part '{self}' cannot be used in BOM for '{parent}' (recursive)" msgstr "" -#: part/models.py:635 +#: part/models.py:723 #, python-brace-format msgid "Part '{parent}' is used in BOM for '{self}' (recursive)" msgstr "" -#: part/models.py:702 +#: part/models.py:790 #, python-brace-format msgid "IPN must match regex pattern {pattern}" msgstr "" -#: part/models.py:710 +#: part/models.py:798 msgid "Part cannot be a revision of itself" msgstr "" -#: part/models.py:717 +#: part/models.py:805 msgid "Cannot make a revision of a part which is already a revision" msgstr "" -#: part/models.py:724 +#: part/models.py:812 msgid "Revision code must be specified" msgstr "" -#: part/models.py:731 +#: part/models.py:819 msgid "Revisions are only allowed for assembly parts" msgstr "" -#: part/models.py:738 +#: part/models.py:826 msgid "Cannot make a revision of a template part" msgstr "" -#: part/models.py:744 +#: part/models.py:832 msgid "Parent part must point to the same template" msgstr "" -#: part/models.py:841 +#: part/models.py:929 msgid "Stock item with this serial number already exists" msgstr "Ya existe un artículo de almacén con este número de serie" -#: part/models.py:971 +#: part/models.py:1059 msgid "Duplicate IPN not allowed in part settings" msgstr "IPN duplicado no permitido en la configuración de partes" -#: part/models.py:983 +#: part/models.py:1071 msgid "Duplicate part revision already exists." msgstr "La revisión de parte duplicada ya existe." -#: part/models.py:992 +#: part/models.py:1080 msgid "Part with this Name, IPN and Revision already exists." msgstr "Parte con este nombre, IPN y revisión ya existe." -#: part/models.py:1007 +#: part/models.py:1095 msgid "Parts cannot be assigned to structural part categories!" msgstr "¡No se pueden asignar partes a las categorías de partes estructurales!" -#: part/models.py:1039 +#: part/models.py:1127 msgid "Part name" msgstr "Nombre de la parte" -#: part/models.py:1044 +#: part/models.py:1132 msgid "Is Template" msgstr "Es plantilla" -#: part/models.py:1045 +#: part/models.py:1133 msgid "Is this part a template part?" msgstr "¿Es esta parte una parte de la plantilla?" -#: part/models.py:1055 +#: part/models.py:1143 msgid "Is this part a variant of another part?" msgstr "¿Es esta parte una variante de otra parte?" -#: part/models.py:1056 +#: part/models.py:1144 msgid "Variant Of" msgstr "Variante de" -#: part/models.py:1063 +#: part/models.py:1151 msgid "Part description (optional)" msgstr "Descripción de parte (opcional)" -#: part/models.py:1070 +#: part/models.py:1158 msgid "Keywords" msgstr "Palabras claves" -#: part/models.py:1071 +#: part/models.py:1159 msgid "Part keywords to improve visibility in search results" msgstr "Palabras clave para mejorar la visibilidad en los resultados de búsqueda" -#: part/models.py:1081 +#: part/models.py:1169 msgid "Part category" msgstr "Categoría de parte" -#: part/models.py:1088 part/serializers.py:929 +#: part/models.py:1176 part/serializers.py:814 #: report/templates/report/inventree_stock_location_report.html:103 msgid "IPN" msgstr "IPN" -#: part/models.py:1096 +#: part/models.py:1184 msgid "Part revision or version number" msgstr "Revisión de parte o número de versión" -#: part/models.py:1097 report/models.py:228 +#: part/models.py:1185 report/models.py:228 msgid "Revision" msgstr "Revisión" -#: part/models.py:1106 +#: part/models.py:1194 msgid "Is this part a revision of another part?" msgstr "¿Es esta parte una variante de otra parte?" -#: part/models.py:1107 +#: part/models.py:1195 msgid "Revision Of" msgstr "Variante de" -#: part/models.py:1123 +#: part/models.py:1211 msgid "Where is this item normally stored?" msgstr "¿Dónde se almacena este artículo normalmente?" -#: part/models.py:1169 +#: part/models.py:1257 msgid "Default Supplier" msgstr "Proveedor por defecto" -#: part/models.py:1170 +#: part/models.py:1258 msgid "Default supplier part" msgstr "Parte de proveedor predeterminada" -#: part/models.py:1177 +#: part/models.py:1265 msgid "Default Expiry" msgstr "Expiración por defecto" -#: part/models.py:1178 +#: part/models.py:1266 msgid "Expiry time (in days) for stock items of this part" msgstr "Tiempo de expiración (en días) para los artículos de stock de esta parte" -#: part/models.py:1186 part/serializers.py:1003 +#: part/models.py:1274 part/serializers.py:888 msgid "Minimum Stock" msgstr "Stock mínimo" -#: part/models.py:1187 +#: part/models.py:1275 msgid "Minimum allowed stock level" msgstr "Nivel mínimo de stock permitido" -#: part/models.py:1196 +#: part/models.py:1284 msgid "Units of measure for this part" msgstr "Unidades de medida para esta parte" -#: part/models.py:1203 +#: part/models.py:1291 msgid "Can this part be built from other parts?" msgstr "¿Se puede construir esta parte a partir de otras partes?" -#: part/models.py:1209 +#: part/models.py:1297 msgid "Can this part be used to build other parts?" msgstr "¿Se puede utilizar esta parte para construir otras partes?" -#: part/models.py:1215 +#: part/models.py:1303 msgid "Does this part have tracking for unique items?" msgstr "¿Esta parte tiene seguimiento de objetos únicos?" -#: part/models.py:1221 +#: part/models.py:1309 msgid "Can this part have test results recorded against it?" msgstr "" -#: part/models.py:1227 +#: part/models.py:1315 msgid "Can this part be purchased from external suppliers?" msgstr "¿Se puede comprar esta parte a proveedores externos?" -#: part/models.py:1233 +#: part/models.py:1321 msgid "Can this part be sold to customers?" msgstr "¿Se puede vender esta parte a los clientes?" -#: part/models.py:1237 +#: part/models.py:1325 msgid "Is this part active?" msgstr "¿Está activa esta parte?" -#: part/models.py:1243 +#: part/models.py:1331 msgid "Locked parts cannot be edited" msgstr "Las partes bloqueadas no pueden ser editadas" -#: part/models.py:1249 +#: part/models.py:1337 msgid "Is this a virtual part, such as a software product or license?" msgstr "¿Es ésta una parte virtual, como un producto de software o una licencia?" -#: part/models.py:1254 +#: part/models.py:1342 msgid "BOM Validated" msgstr "" -#: part/models.py:1255 +#: part/models.py:1343 msgid "Is the BOM for this part valid?" msgstr "" -#: part/models.py:1261 +#: part/models.py:1349 msgid "BOM checksum" msgstr "Suma de verificación de BOM" -#: part/models.py:1262 +#: part/models.py:1350 msgid "Stored BOM checksum" msgstr "Suma de verificación de BOM almacenada" -#: part/models.py:1270 +#: part/models.py:1358 msgid "BOM checked by" msgstr "BOM comprobado por" -#: part/models.py:1275 +#: part/models.py:1363 msgid "BOM checked date" msgstr "Fecha BOM comprobada" -#: part/models.py:1291 +#: part/models.py:1379 msgid "Creation User" msgstr "Creación de Usuario" -#: part/models.py:1301 +#: part/models.py:1389 msgid "Owner responsible for this part" msgstr "Dueño responsable de esta parte" -#: part/models.py:2258 +#: part/models.py:2346 msgid "Sell multiple" msgstr "Vender múltiples" -#: part/models.py:3286 +#: part/models.py:3350 msgid "Currency used to cache pricing calculations" msgstr "Moneda utilizada para almacenar en caché los cálculos de precios" -#: part/models.py:3302 +#: part/models.py:3366 msgid "Minimum BOM Cost" msgstr "Costo mínimo de BOM" -#: part/models.py:3303 +#: part/models.py:3367 msgid "Minimum cost of component parts" msgstr "Costo mínimo de partes de componentes" -#: part/models.py:3309 +#: part/models.py:3373 msgid "Maximum BOM Cost" msgstr "Costo máximo de BOM" -#: part/models.py:3310 +#: part/models.py:3374 msgid "Maximum cost of component parts" msgstr "Costo máximo de partes de componentes" -#: part/models.py:3316 +#: part/models.py:3380 msgid "Minimum Purchase Cost" msgstr "Costo mínimo de compra" -#: part/models.py:3317 +#: part/models.py:3381 msgid "Minimum historical purchase cost" msgstr "Costo histórico mínimo de compra" -#: part/models.py:3323 +#: part/models.py:3387 msgid "Maximum Purchase Cost" msgstr "Costo máximo de compra" -#: part/models.py:3324 +#: part/models.py:3388 msgid "Maximum historical purchase cost" msgstr "Costo histórico máximo de compra" -#: part/models.py:3330 +#: part/models.py:3394 msgid "Minimum Internal Price" msgstr "Precio interno mínimo" -#: part/models.py:3331 +#: part/models.py:3395 msgid "Minimum cost based on internal price breaks" msgstr "Costo mínimo basado en precios reducidos internos" -#: part/models.py:3337 +#: part/models.py:3401 msgid "Maximum Internal Price" msgstr "Precio interno máximo" -#: part/models.py:3338 +#: part/models.py:3402 msgid "Maximum cost based on internal price breaks" msgstr "Costo máximo basado en precios reducidos internos" -#: part/models.py:3344 +#: part/models.py:3408 msgid "Minimum Supplier Price" msgstr "Precio mínimo de proveedor" -#: part/models.py:3345 +#: part/models.py:3409 msgid "Minimum price of part from external suppliers" msgstr "Precio mínimo de la parte de proveedores externos" -#: part/models.py:3351 +#: part/models.py:3415 msgid "Maximum Supplier Price" msgstr "Precio máximo de proveedor" -#: part/models.py:3352 +#: part/models.py:3416 msgid "Maximum price of part from external suppliers" msgstr "Precio máximo de la parte de proveedores externos" -#: part/models.py:3358 +#: part/models.py:3422 msgid "Minimum Variant Cost" msgstr "Costo mínimo de variante" -#: part/models.py:3359 +#: part/models.py:3423 msgid "Calculated minimum cost of variant parts" msgstr "Costo mínimo calculado de las partes variantes" -#: part/models.py:3365 +#: part/models.py:3429 msgid "Maximum Variant Cost" msgstr "Costo máximo de variante" -#: part/models.py:3366 +#: part/models.py:3430 msgid "Calculated maximum cost of variant parts" msgstr "Costo máximo calculado de las partes variantes" -#: part/models.py:3372 part/models.py:3386 +#: part/models.py:3436 part/models.py:3450 msgid "Minimum Cost" msgstr "Costo mínimo" -#: part/models.py:3373 +#: part/models.py:3437 msgid "Override minimum cost" msgstr "Anular el costo mínimo" -#: part/models.py:3379 part/models.py:3393 +#: part/models.py:3443 part/models.py:3457 msgid "Maximum Cost" msgstr "Costo máximo" -#: part/models.py:3380 +#: part/models.py:3444 msgid "Override maximum cost" msgstr "Reemplazar coste máximo" -#: part/models.py:3387 +#: part/models.py:3451 msgid "Calculated overall minimum cost" msgstr "Costo mínimo general calculado" -#: part/models.py:3394 +#: part/models.py:3458 msgid "Calculated overall maximum cost" msgstr "" -#: part/models.py:3400 +#: part/models.py:3464 msgid "Minimum Sale Price" msgstr "Precio de venta mínimo" -#: part/models.py:3401 +#: part/models.py:3465 msgid "Minimum sale price based on price breaks" msgstr "Precio de venta mínimo basado en precios reducidos" -#: part/models.py:3407 +#: part/models.py:3471 msgid "Maximum Sale Price" msgstr "Precio de venta máximo" -#: part/models.py:3408 +#: part/models.py:3472 msgid "Maximum sale price based on price breaks" msgstr "Precio de venta máximo basado en precios reducidos" -#: part/models.py:3414 +#: part/models.py:3478 msgid "Minimum Sale Cost" msgstr "Costo de venta mínimo" -#: part/models.py:3415 +#: part/models.py:3479 msgid "Minimum historical sale price" msgstr "Precio de venta mínimo histórico" -#: part/models.py:3421 +#: part/models.py:3485 msgid "Maximum Sale Cost" msgstr "Costo de Venta Máximo" -#: part/models.py:3422 +#: part/models.py:3486 msgid "Maximum historical sale price" msgstr "Precio de venta máximo histórico" -#: part/models.py:3440 +#: part/models.py:3504 msgid "Part for stocktake" msgstr "" -#: part/models.py:3445 +#: part/models.py:3509 msgid "Item Count" msgstr "Número de artículos" -#: part/models.py:3446 +#: part/models.py:3510 msgid "Number of individual stock entries at time of stocktake" msgstr "" -#: part/models.py:3454 +#: part/models.py:3518 msgid "Total available stock at time of stocktake" msgstr "" -#: part/models.py:3458 report/templates/report/inventree_test_report.html:106 +#: part/models.py:3522 report/templates/report/inventree_test_report.html:106 msgid "Date" msgstr "Fecha" -#: part/models.py:3459 +#: part/models.py:3523 msgid "Date stocktake was performed" msgstr "" -#: part/models.py:3466 +#: part/models.py:3530 msgid "Minimum Stock Cost" msgstr "Costo de Stock Mínimo" -#: part/models.py:3467 +#: part/models.py:3531 msgid "Estimated minimum cost of stock on hand" msgstr "Costo mínimo estimado del stock disponible" -#: part/models.py:3473 +#: part/models.py:3537 msgid "Maximum Stock Cost" msgstr "" -#: part/models.py:3474 +#: part/models.py:3538 msgid "Estimated maximum cost of stock on hand" msgstr "" -#: part/models.py:3484 +#: part/models.py:3548 msgid "Part Sale Price Break" msgstr "" -#: part/models.py:3596 +#: part/models.py:3660 msgid "Part Test Template" msgstr "" -#: part/models.py:3622 +#: part/models.py:3686 msgid "Invalid template name - must include at least one alphanumeric character" msgstr "" -#: part/models.py:3643 part/models.py:3816 -msgid "Choices must be unique" -msgstr "" - -#: part/models.py:3654 +#: part/models.py:3718 msgid "Test templates can only be created for testable parts" msgstr "Las plantillas de prueba solo pueden ser creadas para partes de prueba" -#: part/models.py:3668 +#: part/models.py:3732 msgid "Test template with the same key already exists for part" msgstr "" -#: part/models.py:3685 +#: part/models.py:3749 msgid "Test Name" msgstr "Nombre de prueba" -#: part/models.py:3686 +#: part/models.py:3750 msgid "Enter a name for the test" msgstr "Introduzca un nombre para la prueba" -#: part/models.py:3692 +#: part/models.py:3756 msgid "Test Key" msgstr "" -#: part/models.py:3693 +#: part/models.py:3757 msgid "Simplified key for the test" msgstr "" -#: part/models.py:3700 +#: part/models.py:3764 msgid "Test Description" msgstr "Descripción de prueba" -#: part/models.py:3701 +#: part/models.py:3765 msgid "Enter description for this test" msgstr "Introduce la descripción para esta prueba" -#: part/models.py:3705 report/models.py:287 -msgid "Enabled" -msgstr "Habilitado" - -#: part/models.py:3705 +#: part/models.py:3769 msgid "Is this test enabled?" msgstr "" -#: part/models.py:3710 +#: part/models.py:3774 msgid "Required" msgstr "Requerido" -#: part/models.py:3711 +#: part/models.py:3775 msgid "Is this test required to pass?" msgstr "¿Es necesario pasar esta prueba?" -#: part/models.py:3716 +#: part/models.py:3780 msgid "Requires Value" msgstr "Requiere valor" -#: part/models.py:3717 +#: part/models.py:3781 msgid "Does this test require a value when adding a test result?" msgstr "¿Esta prueba requiere un valor al agregar un resultado de la prueba?" -#: part/models.py:3722 +#: part/models.py:3786 msgid "Requires Attachment" msgstr "Adjunto obligatorio" -#: part/models.py:3724 +#: part/models.py:3788 msgid "Does this test require a file attachment when adding a test result?" msgstr "¿Esta prueba requiere un archivo adjunto al agregar un resultado de la prueba?" -#: part/models.py:3730 part/models.py:3878 -msgid "Choices" -msgstr "Opciones" - -#: part/models.py:3731 +#: part/models.py:3795 msgid "Valid choices for this test (comma-separated)" msgstr "" -#: part/models.py:3764 -msgid "Part Parameter Template" -msgstr "" - -#: part/models.py:3791 -msgid "Checkbox parameters cannot have units" -msgstr "" - -#: part/models.py:3796 -msgid "Checkbox parameters cannot have choices" -msgstr "" - -#: part/models.py:3833 -msgid "Parameter template name must be unique" -msgstr "El nombre de parámetro en la plantilla tiene que ser único" - -#: part/models.py:3851 -msgid "Parameter Name" -msgstr "Nombre de Parámetro" - -#: part/models.py:3858 -msgid "Physical units for this parameter" -msgstr "" - -#: part/models.py:3866 -msgid "Parameter description" -msgstr "" - -#: part/models.py:3872 -msgid "Checkbox" -msgstr "Casilla de verificación" - -#: part/models.py:3873 -msgid "Is this parameter a checkbox?" -msgstr "¿Es este parámetro una casilla de verificación?" - -#: part/models.py:3879 -msgid "Valid choices for this parameter (comma-separated)" -msgstr "Opciones válidas para este parámetro (separados por comas)" - -#: part/models.py:3890 -msgid "Selection list for this parameter" -msgstr "Lista de selección para este parámetro" - -#: part/models.py:3932 -msgid "Part Parameter" -msgstr "" - -#: part/models.py:3958 -msgid "Parameter cannot be modified - part is locked" -msgstr "" - -#: part/models.py:3996 -msgid "Invalid choice for parameter value" -msgstr "Opción inválida para el valor del parámetro" - -#: part/models.py:4047 -msgid "Parent Part" -msgstr "Parte principal" - -#: part/models.py:4055 part/models.py:4170 part/models.py:4171 -msgid "Parameter Template" -msgstr "Plantilla de parámetro" - -#: part/models.py:4061 -msgid "Parameter Value" -msgstr "Valor del parámetro" - -#: part/models.py:4071 stock/serializers.py:718 -msgid "Optional note field" -msgstr "Campo de nota opcional" - -#: part/models.py:4118 -msgid "Part Category Parameter Template" -msgstr "" - -#: part/models.py:4177 -msgid "Default Value" -msgstr "Valor predeterminado" - -#: part/models.py:4178 -msgid "Default Parameter Value" -msgstr "Valor de parámetro por defecto" - -#: part/models.py:4352 +#: part/models.py:3977 msgid "BOM item cannot be modified - assembly is locked" msgstr "" -#: part/models.py:4359 +#: part/models.py:3984 msgid "BOM item cannot be modified - variant assembly is locked" msgstr "" -#: part/models.py:4369 +#: part/models.py:3994 msgid "Select parent part" msgstr "Seleccionar parte principal" -#: part/models.py:4379 +#: part/models.py:4004 msgid "Sub part" msgstr "Sub parte" -#: part/models.py:4380 +#: part/models.py:4005 msgid "Select part to be used in BOM" msgstr "Seleccionar parte a utilizar en BOM" -#: part/models.py:4391 +#: part/models.py:4016 msgid "BOM quantity for this BOM item" msgstr "Cantidad del artículo en BOM" -#: part/models.py:4397 +#: part/models.py:4022 msgid "This BOM item is optional" msgstr "Este artículo BOM es opcional" -#: part/models.py:4403 +#: part/models.py:4028 msgid "This BOM item is consumable (it is not tracked in build orders)" msgstr "Este artículo de BOM es consumible (no está rastreado en órdenes de construcción)" -#: part/models.py:4411 +#: part/models.py:4036 msgid "Setup Quantity" msgstr "" -#: part/models.py:4412 +#: part/models.py:4037 msgid "Extra required quantity for a build, to account for setup losses" msgstr "" -#: part/models.py:4420 +#: part/models.py:4045 msgid "Attrition" msgstr "" -#: part/models.py:4422 +#: part/models.py:4047 msgid "Estimated attrition for a build, expressed as a percentage (0-100)" msgstr "" -#: part/models.py:4433 +#: part/models.py:4058 msgid "Rounding Multiple" msgstr "" -#: part/models.py:4435 +#: part/models.py:4060 msgid "Round up required production quantity to nearest multiple of this value" msgstr "" -#: part/models.py:4443 +#: part/models.py:4068 msgid "BOM item reference" msgstr "Referencia de artículo de BOM" -#: part/models.py:4451 +#: part/models.py:4076 msgid "BOM item notes" msgstr "Notas del artículo de BOM" -#: part/models.py:4457 +#: part/models.py:4082 msgid "Checksum" msgstr "Suma de verificación" -#: part/models.py:4458 +#: part/models.py:4083 msgid "BOM line checksum" msgstr "Suma de verificación de línea de BOM" -#: part/models.py:4463 +#: part/models.py:4088 msgid "Validated" msgstr "Validado" -#: part/models.py:4464 +#: part/models.py:4089 msgid "This BOM item has been validated" msgstr "Este artículo de BOM ha sido validado" -#: part/models.py:4469 +#: part/models.py:4094 msgid "Gets inherited" msgstr "" -#: part/models.py:4470 +#: part/models.py:4095 msgid "This BOM item is inherited by BOMs for variant parts" msgstr "Este artículo BOM es heredado por BOMs para partes variantes" -#: part/models.py:4476 +#: part/models.py:4101 msgid "Stock items for variant parts can be used for this BOM item" msgstr "Artículos de stock para partes variantes pueden ser usados para este artículo BOM" -#: part/models.py:4583 stock/models.py:925 +#: part/models.py:4208 stock/models.py:925 msgid "Quantity must be integer value for trackable parts" msgstr "La cantidad debe ser un valor entero para las partes rastreables" -#: part/models.py:4593 part/models.py:4595 +#: part/models.py:4218 part/models.py:4220 msgid "Sub part must be specified" msgstr "Debe especificar la subparte" -#: part/models.py:4746 +#: part/models.py:4371 msgid "BOM Item Substitute" msgstr "Ítem de BOM sustituto" -#: part/models.py:4767 +#: part/models.py:4392 msgid "Substitute part cannot be the same as the master part" msgstr "La parte sustituta no puede ser la misma que la parte principal" -#: part/models.py:4780 +#: part/models.py:4405 msgid "Parent BOM item" msgstr "Artículo BOM superior" -#: part/models.py:4788 +#: part/models.py:4413 msgid "Substitute part" msgstr "Sustituir parte" -#: part/models.py:4804 +#: part/models.py:4429 msgid "Part 1" msgstr "Parte 1" -#: part/models.py:4812 +#: part/models.py:4437 msgid "Part 2" msgstr "Parte 2" -#: part/models.py:4813 +#: part/models.py:4438 msgid "Select Related Part" msgstr "Seleccionar parte relacionada" -#: part/models.py:4820 +#: part/models.py:4445 msgid "Note for this relationship" msgstr "Nota para esta relación" -#: part/models.py:4839 +#: part/models.py:4464 msgid "Part relationship cannot be created between a part and itself" msgstr "" -#: part/models.py:4844 +#: part/models.py:4469 msgid "Duplicate relationship already exists" msgstr "" -#: part/serializers.py:114 +#: part/serializers.py:113 msgid "Parent Category" msgstr "" -#: part/serializers.py:115 +#: part/serializers.py:114 msgid "Parent part category" msgstr "Categoría principal de parte" -#: part/serializers.py:123 part/serializers.py:164 +#: part/serializers.py:122 part/serializers.py:163 msgid "Subcategories" msgstr "Subcategorías" -#: part/serializers.py:203 +#: part/serializers.py:202 msgid "Results" msgstr "" -#: part/serializers.py:204 +#: part/serializers.py:203 msgid "Number of results recorded against this template" msgstr "" -#: part/serializers.py:235 part/serializers.py:253 stock/serializers.py:643 +#: part/serializers.py:234 part/serializers.py:252 stock/serializers.py:643 msgid "Purchase currency of this stock item" msgstr "Moneda de compra de ítem de stock" -#: part/serializers.py:280 +#: part/serializers.py:279 msgid "File is not an image" msgstr "" -#: part/serializers.py:311 -msgid "Number of parts using this template" -msgstr "" - -#: part/serializers.py:471 +#: part/serializers.py:382 msgid "Original Part" msgstr "Parte original" -#: part/serializers.py:472 +#: part/serializers.py:383 msgid "Select original part to duplicate" msgstr "Seleccione la parte original a duplicar" -#: part/serializers.py:477 +#: part/serializers.py:388 msgid "Copy Image" msgstr "Copiar Imagen" -#: part/serializers.py:478 +#: part/serializers.py:389 msgid "Copy image from original part" msgstr "Copiar imagen desde la parte original" -#: part/serializers.py:484 +#: part/serializers.py:395 msgid "Copy BOM" msgstr "Copiar BOM" -#: part/serializers.py:485 +#: part/serializers.py:396 msgid "Copy bill of materials from original part" msgstr "Copiar la factura de materiales de la parte original" -#: part/serializers.py:491 +#: part/serializers.py:402 msgid "Copy Parameters" msgstr "Copiar Parámetros" -#: part/serializers.py:492 +#: part/serializers.py:403 msgid "Copy parameter data from original part" msgstr "Copiar datos del parámetro de la parte original" -#: part/serializers.py:498 +#: part/serializers.py:409 msgid "Copy Notes" msgstr "Copiar Notas" -#: part/serializers.py:499 +#: part/serializers.py:410 msgid "Copy notes from original part" msgstr "" -#: part/serializers.py:505 +#: part/serializers.py:416 msgid "Copy Tests" msgstr "" -#: part/serializers.py:506 +#: part/serializers.py:417 msgid "Copy test templates from original part" msgstr "" -#: part/serializers.py:524 +#: part/serializers.py:435 msgid "Initial Stock Quantity" msgstr "Cantidad Inicial de Stock" -#: part/serializers.py:526 +#: part/serializers.py:437 msgid "Specify initial stock quantity for this Part. If quantity is zero, no stock is added." msgstr "" -#: part/serializers.py:533 +#: part/serializers.py:444 msgid "Initial Stock Location" msgstr "" -#: part/serializers.py:534 +#: part/serializers.py:445 msgid "Specify initial stock location for this Part" msgstr "" -#: part/serializers.py:551 +#: part/serializers.py:462 msgid "Select supplier (or leave blank to skip)" msgstr "Seleccione proveedor (o déjelo en blanco para saltar)" -#: part/serializers.py:567 +#: part/serializers.py:478 msgid "Select manufacturer (or leave blank to skip)" msgstr "Seleccionar fabricante (o dejar en blanco para saltar)" -#: part/serializers.py:577 +#: part/serializers.py:488 msgid "Manufacturer part number" msgstr "Número de parte del fabricante" -#: part/serializers.py:584 +#: part/serializers.py:495 msgid "Selected company is not a valid supplier" msgstr "La empresa seleccionada no es un proveedor válido" -#: part/serializers.py:593 +#: part/serializers.py:504 msgid "Selected company is not a valid manufacturer" msgstr "La empresa seleccionada no es un fabricante válido" -#: part/serializers.py:604 +#: part/serializers.py:515 msgid "Manufacturer part matching this MPN already exists" msgstr "" -#: part/serializers.py:611 +#: part/serializers.py:522 msgid "Supplier part matching this SKU already exists" msgstr "" -#: part/serializers.py:914 +#: part/serializers.py:799 msgid "Category Name" msgstr "Nombre de categoría" -#: part/serializers.py:943 +#: part/serializers.py:828 msgid "Building" msgstr "En construcción" -#: part/serializers.py:944 +#: part/serializers.py:829 msgid "Quantity of this part currently being in production" msgstr "" -#: part/serializers.py:951 +#: part/serializers.py:836 msgid "Outstanding quantity of this part scheduled to be built" msgstr "" -#: part/serializers.py:971 stock/serializers.py:1019 stock/serializers.py:1189 +#: part/serializers.py:856 stock/serializers.py:1019 stock/serializers.py:1189 #: users/ruleset.py:30 msgid "Stock Items" msgstr "Elementos de stock" -#: part/serializers.py:975 +#: part/serializers.py:860 msgid "Revisions" msgstr "" -#: part/serializers.py:979 +#: part/serializers.py:864 msgid "Suppliers" msgstr "Proveedores" -#: part/serializers.py:983 part/serializers.py:1297 +#: part/serializers.py:868 part/serializers.py:1162 #: templates/email/low_stock_notification.html:16 #: templates/email/part_event_notification.html:17 msgid "Total Stock" msgstr "Inventario Total" -#: part/serializers.py:991 +#: part/serializers.py:876 msgid "Unallocated Stock" msgstr "" -#: part/serializers.py:999 +#: part/serializers.py:884 msgid "Variant Stock" msgstr "" -#: part/serializers.py:1054 +#: part/serializers.py:943 msgid "Duplicate Part" msgstr "Duplicar Parte" -#: part/serializers.py:1055 +#: part/serializers.py:944 msgid "Copy initial data from another Part" msgstr "" -#: part/serializers.py:1061 +#: part/serializers.py:950 msgid "Initial Stock" msgstr "Stock Inicial" -#: part/serializers.py:1062 +#: part/serializers.py:951 msgid "Create Part with initial stock quantity" msgstr "Crear Parte con cantidad inicial de stock" -#: part/serializers.py:1068 +#: part/serializers.py:957 msgid "Supplier Information" msgstr "Información del proveedor" -#: part/serializers.py:1069 +#: part/serializers.py:958 msgid "Add initial supplier information for this part" msgstr "Añadir información inicial del proveedor para esta parte" -#: part/serializers.py:1077 +#: part/serializers.py:966 msgid "Copy Category Parameters" msgstr "Copiar Parámetros de Categoría" -#: part/serializers.py:1078 +#: part/serializers.py:967 msgid "Copy parameter templates from selected part category" msgstr "Copiar plantillas de parámetro de la categoría de partes seleccionada" -#: part/serializers.py:1083 +#: part/serializers.py:972 msgid "Existing Image" msgstr "Imagen Existente" -#: part/serializers.py:1084 +#: part/serializers.py:973 msgid "Filename of an existing part image" msgstr "" -#: part/serializers.py:1101 +#: part/serializers.py:990 msgid "Image file does not exist" msgstr "El archivo de imagen no existe" -#: part/serializers.py:1269 +#: part/serializers.py:1134 msgid "Validate entire Bill of Materials" msgstr "Validación de Lista de Materiales" -#: part/serializers.py:1303 part/serializers.py:1769 +#: part/serializers.py:1168 part/serializers.py:1634 msgid "Can Build" msgstr "Puede construir" -#: part/serializers.py:1320 +#: part/serializers.py:1185 msgid "Required for Build Orders" msgstr "" -#: part/serializers.py:1325 +#: part/serializers.py:1190 msgid "Allocated to Build Orders" msgstr "" -#: part/serializers.py:1332 +#: part/serializers.py:1197 msgid "Required for Sales Orders" msgstr "" -#: part/serializers.py:1336 +#: part/serializers.py:1201 msgid "Allocated to Sales Orders" msgstr "" -#: part/serializers.py:1475 +#: part/serializers.py:1340 msgid "Minimum Price" msgstr "Precio mínimo" -#: part/serializers.py:1476 +#: part/serializers.py:1341 msgid "Override calculated value for minimum price" msgstr "Anular el valor calculado para precio mínimo" -#: part/serializers.py:1483 +#: part/serializers.py:1348 msgid "Minimum price currency" msgstr "Precio mínimo de moneda" -#: part/serializers.py:1490 +#: part/serializers.py:1355 msgid "Maximum Price" msgstr "Precio máximo" -#: part/serializers.py:1491 +#: part/serializers.py:1356 msgid "Override calculated value for maximum price" msgstr "" -#: part/serializers.py:1498 +#: part/serializers.py:1363 msgid "Maximum price currency" msgstr "Precio máximo de moneda" -#: part/serializers.py:1527 +#: part/serializers.py:1392 msgid "Update" msgstr "Actualizar" -#: part/serializers.py:1528 +#: part/serializers.py:1393 msgid "Update pricing for this part" msgstr "" -#: part/serializers.py:1551 +#: part/serializers.py:1416 #, python-brace-format msgid "Could not convert from provided currencies to {default_currency}" msgstr "" -#: part/serializers.py:1558 +#: part/serializers.py:1423 msgid "Minimum price must not be greater than maximum price" msgstr "El precio mínimo no debe ser mayor que el precio máximo" -#: part/serializers.py:1561 +#: part/serializers.py:1426 msgid "Maximum price must not be less than minimum price" msgstr "El precio máximo no debe ser inferior al precio mínimo" -#: part/serializers.py:1715 +#: part/serializers.py:1580 msgid "Select the parent assembly" msgstr "" -#: part/serializers.py:1735 +#: part/serializers.py:1600 msgid "Select the component part" msgstr "" -#: part/serializers.py:1929 +#: part/serializers.py:1802 msgid "Select part to copy BOM from" msgstr "Seleccionar parte de la que copiar BOM" -#: part/serializers.py:1937 +#: part/serializers.py:1810 msgid "Remove Existing Data" msgstr "Eliminar Datos Existentes" -#: part/serializers.py:1938 +#: part/serializers.py:1811 msgid "Remove existing BOM items before copying" msgstr "Eliminar artículos BOM existentes antes de copiar" -#: part/serializers.py:1943 +#: part/serializers.py:1816 msgid "Include Inherited" msgstr "Incluye Heredado" -#: part/serializers.py:1944 +#: part/serializers.py:1817 msgid "Include BOM items which are inherited from templated parts" msgstr "Incluye artículos BOM que son heredados de partes con plantillas" -#: part/serializers.py:1949 +#: part/serializers.py:1822 msgid "Skip Invalid Rows" msgstr "Omitir filas no válidas" -#: part/serializers.py:1950 +#: part/serializers.py:1823 msgid "Enable this option to skip invalid rows" msgstr "Activar esta opción para omitir filas inválidas" -#: part/serializers.py:1955 +#: part/serializers.py:1828 msgid "Copy Substitute Parts" msgstr "Copiar partes sustitutas" -#: part/serializers.py:1956 +#: part/serializers.py:1829 msgid "Copy substitute parts when duplicate BOM items" msgstr "" @@ -6927,7 +6974,7 @@ msgstr "Proporciona soporte nativo para códigos de barras" #: plugin/builtin/events/auto_issue_orders.py:19 #: plugin/builtin/exporter/bom_exporter.py:73 #: plugin/builtin/exporter/inventree_exporter.py:17 -#: plugin/builtin/exporter/part_parameter_exporter.py:36 +#: plugin/builtin/exporter/parameter_exporter.py:32 #: plugin/builtin/exporter/stocktake_exporter.py:47 #: plugin/builtin/integration/core_notifications.py:25 #: plugin/builtin/integration/core_notifications.py:69 @@ -7041,23 +7088,19 @@ msgid "Include total quantity of each part in the BOM" msgstr "" #: plugin/builtin/exporter/bom_exporter.py:35 -#: plugin/builtin/exporter/part_parameter_exporter.py:17 msgid "Stock Data" msgstr "" #: plugin/builtin/exporter/bom_exporter.py:35 -#: plugin/builtin/exporter/part_parameter_exporter.py:17 msgid "Include part stock data" msgstr "" #: plugin/builtin/exporter/bom_exporter.py:39 -#: plugin/builtin/exporter/part_parameter_exporter.py:21 #: plugin/builtin/exporter/stocktake_exporter.py:20 msgid "Pricing Data" msgstr "" #: plugin/builtin/exporter/bom_exporter.py:39 -#: plugin/builtin/exporter/part_parameter_exporter.py:21 #: plugin/builtin/exporter/stocktake_exporter.py:20 msgid "Include part pricing data" msgstr "" @@ -7144,12 +7187,20 @@ msgstr "" msgid "Provides support for exporting data from InvenTree" msgstr "" -#: plugin/builtin/exporter/part_parameter_exporter.py:33 -msgid "Part Parameter Exporter" +#: plugin/builtin/exporter/parameter_exporter.py:16 +msgid "Exclude Inactive" msgstr "" -#: plugin/builtin/exporter/part_parameter_exporter.py:34 -msgid "Exporter for part parameter data" +#: plugin/builtin/exporter/parameter_exporter.py:17 +msgid "Exclude parameters which are inactive" +msgstr "" + +#: plugin/builtin/exporter/parameter_exporter.py:29 +msgid "Parameter Exporter" +msgstr "" + +#: plugin/builtin/exporter/parameter_exporter.py:30 +msgid "Exporter for model parameter data" msgstr "" #: plugin/builtin/exporter/stocktake_exporter.py:25 @@ -8079,19 +8130,19 @@ msgstr "Ningún resultado (requerido)" msgid "No result" msgstr "Sin resultados" -#: report/templatetags/report.py:167 +#: report/templatetags/report.py:169 msgid "Asset file does not exist" msgstr "" -#: report/templatetags/report.py:224 report/templatetags/report.py:300 +#: report/templatetags/report.py:226 report/templatetags/report.py:302 msgid "Image file not found" msgstr "" -#: report/templatetags/report.py:325 +#: report/templatetags/report.py:327 msgid "part_image tag requires a Part instance" msgstr "" -#: report/templatetags/report.py:362 +#: report/templatetags/report.py:383 msgid "company_image tag requires a Company instance" msgstr "" @@ -8455,115 +8506,119 @@ msgstr "Los números de serie deben ser proporcionados como una lista" msgid "Quantity does not match serial numbers" msgstr "La cantidad no coincide con los números de serie" -#: stock/models.py:2012 stock/models.py:2917 +#: stock/models.py:1912 +msgid "Cannot assign stock to structural location" +msgstr "" + +#: stock/models.py:2029 stock/models.py:2934 msgid "Test template does not exist" msgstr "" -#: stock/models.py:2030 +#: stock/models.py:2047 msgid "Stock item has been assigned to a sales order" msgstr "Artículo de stock ha sido asignado a un pedido de venta" -#: stock/models.py:2034 +#: stock/models.py:2051 msgid "Stock item is installed in another item" msgstr "Artículo de stock está instalado en otro artículo" -#: stock/models.py:2037 +#: stock/models.py:2054 msgid "Stock item contains other items" msgstr "Artículo de stock contiene otros artículos" -#: stock/models.py:2040 +#: stock/models.py:2057 msgid "Stock item has been assigned to a customer" msgstr "Artículo de stock ha sido asignado a un cliente" -#: stock/models.py:2043 stock/models.py:2226 +#: stock/models.py:2060 stock/models.py:2243 msgid "Stock item is currently in production" msgstr "El artículo de stock está en producción" -#: stock/models.py:2046 +#: stock/models.py:2063 msgid "Serialized stock cannot be merged" msgstr "Stock serializado no puede ser combinado" -#: stock/models.py:2053 stock/serializers.py:1462 +#: stock/models.py:2070 stock/serializers.py:1462 msgid "Duplicate stock items" msgstr "Artículos de Stock Duplicados" -#: stock/models.py:2057 +#: stock/models.py:2074 msgid "Stock items must refer to the same part" msgstr "Los artículos de stock deben referirse a la misma parte" -#: stock/models.py:2065 +#: stock/models.py:2082 msgid "Stock items must refer to the same supplier part" msgstr "Los artículos de stock deben referirse a la misma parte del proveedor" -#: stock/models.py:2070 +#: stock/models.py:2087 msgid "Stock status codes must match" msgstr "Los códigos de estado del stock deben coincidir" -#: stock/models.py:2349 +#: stock/models.py:2366 msgid "StockItem cannot be moved as it is not in stock" msgstr "Stock no se puede mover porque no está en stock" -#: stock/models.py:2818 +#: stock/models.py:2835 msgid "Stock Item Tracking" msgstr "" -#: stock/models.py:2849 +#: stock/models.py:2866 msgid "Entry notes" msgstr "Notas de entrada" -#: stock/models.py:2889 +#: stock/models.py:2906 msgid "Stock Item Test Result" msgstr "" -#: stock/models.py:2920 +#: stock/models.py:2937 msgid "Value must be provided for this test" msgstr "Debe proporcionarse un valor para esta prueba" -#: stock/models.py:2924 +#: stock/models.py:2941 msgid "Attachment must be uploaded for this test" msgstr "El archivo adjunto debe ser subido para esta prueba" -#: stock/models.py:2929 +#: stock/models.py:2946 msgid "Invalid value for this test" msgstr "" -#: stock/models.py:2953 +#: stock/models.py:2970 msgid "Test result" msgstr "Resultado de la prueba" -#: stock/models.py:2960 +#: stock/models.py:2977 msgid "Test output value" msgstr "Valor de salida de prueba" -#: stock/models.py:2968 stock/serializers.py:248 +#: stock/models.py:2985 stock/serializers.py:248 msgid "Test result attachment" msgstr "Adjunto de resultados de prueba" -#: stock/models.py:2972 +#: stock/models.py:2989 msgid "Test notes" msgstr "Notas de prueba" -#: stock/models.py:2980 +#: stock/models.py:2997 msgid "Test station" msgstr "" -#: stock/models.py:2981 +#: stock/models.py:2998 msgid "The identifier of the test station where the test was performed" msgstr "" -#: stock/models.py:2987 +#: stock/models.py:3004 msgid "Started" msgstr "" -#: stock/models.py:2988 +#: stock/models.py:3005 msgid "The timestamp of the test start" msgstr "" -#: stock/models.py:2994 +#: stock/models.py:3011 msgid "Finished" msgstr "Finalizó" -#: stock/models.py:2995 +#: stock/models.py:3012 msgid "The timestamp of the test finish" msgstr "" @@ -8677,8 +8732,8 @@ msgstr "" msgid "Quantity must not exceed available stock quantity ({q})" msgstr "La cantidad no debe exceder la cantidad disponible de stock ({q})" -#: stock/serializers.py:711 stock/serializers.py:1419 stock/serializers.py:1732 -#: stock/serializers.py:1781 +#: stock/serializers.py:711 stock/serializers.py:1419 stock/serializers.py:1740 +#: stock/serializers.py:1789 msgid "Destination stock location" msgstr "Ubicación de stock de destino" @@ -8834,19 +8889,19 @@ msgstr "" msgid "Stock transaction notes" msgstr "Notas de transacción de stock" -#: stock/serializers.py:1787 +#: stock/serializers.py:1795 msgid "Merge into existing stock" msgstr "" -#: stock/serializers.py:1788 +#: stock/serializers.py:1796 msgid "Merge returned items into existing stock items if possible" msgstr "" -#: stock/serializers.py:1831 +#: stock/serializers.py:1839 msgid "Next Serial Number" msgstr "" -#: stock/serializers.py:1837 +#: stock/serializers.py:1845 msgid "Previous Serial Number" msgstr "" @@ -8902,83 +8957,87 @@ msgstr "Stock añadido manualmente" msgid "Stock manually removed" msgstr "Stock eliminado manualmente" -#: stock/status_codes.py:57 +#: stock/status_codes.py:56 +msgid "Serialized stock items" +msgstr "" + +#: stock/status_codes.py:58 msgid "Returned to stock" msgstr "" -#: stock/status_codes.py:60 +#: stock/status_codes.py:61 msgid "Location changed" msgstr "Ubicación cambiada" -#: stock/status_codes.py:61 +#: stock/status_codes.py:62 msgid "Stock updated" msgstr "Existencia actualizada" -#: stock/status_codes.py:64 +#: stock/status_codes.py:65 msgid "Installed into assembly" msgstr "Instalado en el ensamblaje" -#: stock/status_codes.py:65 +#: stock/status_codes.py:66 msgid "Removed from assembly" msgstr "Retirado del ensamblaje" -#: stock/status_codes.py:67 +#: stock/status_codes.py:68 msgid "Installed component item" msgstr "Artículo del componente instalado" -#: stock/status_codes.py:68 +#: stock/status_codes.py:69 msgid "Removed component item" msgstr "Elemento de componente eliminado" -#: stock/status_codes.py:71 +#: stock/status_codes.py:72 msgid "Split from parent item" msgstr "Separar del artículo principal" -#: stock/status_codes.py:72 +#: stock/status_codes.py:73 msgid "Split child item" msgstr "Dividir artículo secundario" -#: stock/status_codes.py:75 +#: stock/status_codes.py:76 msgid "Merged stock items" msgstr "Artículos de stock combinados" -#: stock/status_codes.py:78 +#: stock/status_codes.py:79 msgid "Converted to variant" msgstr "Convertir a variante" -#: stock/status_codes.py:81 +#: stock/status_codes.py:82 msgid "Build order output created" msgstr "Trabajo de ensamblaje creado" -#: stock/status_codes.py:82 +#: stock/status_codes.py:83 msgid "Build order output completed" msgstr "Construir orden de salida completado" -#: stock/status_codes.py:83 +#: stock/status_codes.py:84 msgid "Build order output rejected" msgstr "Orden de ensamble rechazada" -#: stock/status_codes.py:84 +#: stock/status_codes.py:85 msgid "Consumed by build order" msgstr "Consumido por orden de construcción" -#: stock/status_codes.py:87 +#: stock/status_codes.py:88 msgid "Shipped against Sales Order" msgstr "Enviado contra orden de venta" -#: stock/status_codes.py:90 +#: stock/status_codes.py:91 msgid "Received against Purchase Order" msgstr "Recibido contra la orden de compra" -#: stock/status_codes.py:93 +#: stock/status_codes.py:94 msgid "Returned against Return Order" msgstr "Devuelto contra orden de devolución" -#: stock/status_codes.py:96 +#: stock/status_codes.py:97 msgid "Sent to customer" msgstr "Enviar al cliente" -#: stock/status_codes.py:97 +#: stock/status_codes.py:98 msgid "Returned from customer" msgstr "Devolución del cliente" diff --git a/src/backend/InvenTree/locale/es_MX/LC_MESSAGES/django.po b/src/backend/InvenTree/locale/es_MX/LC_MESSAGES/django.po index 0356f020a9..b4e7e7be7c 100644 --- a/src/backend/InvenTree/locale/es_MX/LC_MESSAGES/django.po +++ b/src/backend/InvenTree/locale/es_MX/LC_MESSAGES/django.po @@ -2,8 +2,8 @@ msgid "" msgstr "" "Project-Id-Version: inventree\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-11-19 04:55+0000\n" -"PO-Revision-Date: 2025-11-19 04:59\n" +"POT-Creation-Date: 2025-12-07 07:33+0000\n" +"PO-Revision-Date: 2025-12-07 07:36\n" "Last-Translator: \n" "Language-Team: Spanish, Mexico\n" "Language: es_MX\n" @@ -57,7 +57,7 @@ msgstr "" msgid "This field must be unique." msgstr "" -#: InvenTree/api.py:775 +#: InvenTree/api.py:803 msgid "User does not have permission to view this model" msgstr "El usuario no tiene permiso para ver este modelo" @@ -81,22 +81,22 @@ msgstr "La dirección de correo electrónico principal proporcionada no es váli msgid "The provided email domain is not approved." msgstr "El dominio de correo electrónico proporcionado no está aprobado." -#: InvenTree/conversion.py:166 +#: InvenTree/conversion.py:240 #, python-brace-format msgid "Invalid unit provided ({unit})" msgstr "Unidad proporcionada no válida ({unit})" -#: InvenTree/conversion.py:183 +#: InvenTree/conversion.py:257 msgid "No value provided" msgstr "Ningún valor proporcionado" -#: InvenTree/conversion.py:210 +#: InvenTree/conversion.py:284 #, python-brace-format msgid "Could not convert {original} to {unit}" msgstr "No se pudo convertir {original} a {unit}" -#: InvenTree/conversion.py:212 InvenTree/conversion.py:226 -#: InvenTree/helpers.py:597 order/models.py:720 order/models.py:1015 +#: InvenTree/conversion.py:286 InvenTree/conversion.py:300 +#: InvenTree/helpers.py:597 order/models.py:721 order/models.py:1016 msgid "Invalid quantity provided" msgstr "Cantidad proporcionada no válida" @@ -112,11 +112,11 @@ msgstr "Ingrese la fecha" msgid "Invalid decimal value" msgstr "Número decimal inválido" -#: InvenTree/fields.py:218 InvenTree/models.py:1067 build/serializers.py:509 -#: build/serializers.py:580 build/serializers.py:1788 company/models.py:857 -#: order/models.py:1780 +#: InvenTree/fields.py:218 InvenTree/models.py:1228 build/serializers.py:517 +#: build/serializers.py:588 build/serializers.py:1796 company/models.py:811 +#: order/models.py:1781 #: report/templates/report/inventree_build_order_report.html:172 -#: stock/models.py:2848 stock/models.py:2972 stock/serializers.py:717 +#: stock/models.py:2865 stock/models.py:2989 stock/serializers.py:717 #: stock/serializers.py:893 stock/serializers.py:1035 stock/serializers.py:1336 #: stock/serializers.py:1425 stock/serializers.py:1624 msgid "Notes" @@ -171,35 +171,35 @@ msgstr "Eliminar etiquetas HTML de este valor" msgid "Data contains prohibited markdown content" msgstr "Los datos contienen contenido de markdown prohibido" -#: InvenTree/helpers_model.py:133 +#: InvenTree/helpers_model.py:134 msgid "Connection error" msgstr "Error de conexión" -#: InvenTree/helpers_model.py:138 InvenTree/helpers_model.py:145 +#: InvenTree/helpers_model.py:139 InvenTree/helpers_model.py:146 msgid "Server responded with invalid status code" msgstr "El servidor respondió con código de estado no válido" -#: InvenTree/helpers_model.py:141 +#: InvenTree/helpers_model.py:142 msgid "Exception occurred" msgstr "Se ha producido una excepción" -#: InvenTree/helpers_model.py:151 +#: InvenTree/helpers_model.py:152 msgid "Server responded with invalid Content-Length value" msgstr "El servidor respondió con un valor de longitud de contenido inválido" -#: InvenTree/helpers_model.py:154 +#: InvenTree/helpers_model.py:155 msgid "Image size is too large" msgstr "El tamaño de la imagen es demasiado grande" -#: InvenTree/helpers_model.py:166 +#: InvenTree/helpers_model.py:167 msgid "Image download exceeded maximum size" msgstr "La descarga de imagen excedió el tamaño máximo" -#: InvenTree/helpers_model.py:171 +#: InvenTree/helpers_model.py:172 msgid "Remote server returned empty response" msgstr "El servidor remoto devolvió una respuesta vacía" -#: InvenTree/helpers_model.py:179 +#: InvenTree/helpers_model.py:180 msgid "Supplied URL is not a valid image file" msgstr "La URL proporcionada no es un archivo de imagen válido" @@ -207,7 +207,7 @@ msgstr "La URL proporcionada no es un archivo de imagen válido" msgid "Log in to the app" msgstr "Iniciar sesión en la aplicación" -#: InvenTree/magic_login.py:41 company/models.py:172 users/serializers.py:198 +#: InvenTree/magic_login.py:41 company/models.py:173 users/serializers.py:198 msgid "Email" msgstr "Correo electrónico" @@ -215,160 +215,176 @@ msgstr "Correo electrónico" msgid "You must enable two-factor authentication before doing anything else." msgstr "Debe habilitar la autenticación de doble factor antes de hacer cualquier otra cosa." -#: InvenTree/models.py:111 +#: InvenTree/models.py:114 msgid "Error running plugin validation" msgstr "Error al ejecutar la validación del plug-in" -#: InvenTree/models.py:192 +#: InvenTree/models.py:195 msgid "Metadata must be a python dict object" msgstr "Los metadatos deben ser un objeto diccionario de python" -#: InvenTree/models.py:198 +#: InvenTree/models.py:201 msgid "Plugin Metadata" msgstr "Metadatos del complemento" -#: InvenTree/models.py:199 +#: InvenTree/models.py:202 msgid "JSON metadata field, for use by external plugins" msgstr "Campo de metadatos JSON, para uso por complementos externos" -#: InvenTree/models.py:382 +#: InvenTree/models.py:385 msgid "Improperly formatted pattern" msgstr "Patrón con formato incorrecto" -#: InvenTree/models.py:389 +#: InvenTree/models.py:392 msgid "Unknown format key specified" msgstr "Clave de formato especificado desconocida" -#: InvenTree/models.py:395 +#: InvenTree/models.py:398 msgid "Missing required format key" msgstr "Falta la clave de formato necesaria" -#: InvenTree/models.py:406 +#: InvenTree/models.py:409 msgid "Reference field cannot be empty" msgstr "El campo de servidor no puede estar vacío" -#: InvenTree/models.py:414 +#: InvenTree/models.py:417 msgid "Reference must match required pattern" msgstr "La referencia debe coincidir con la expresión regular {pattern}" -#: InvenTree/models.py:445 +#: InvenTree/models.py:448 msgid "Reference number is too large" msgstr "El número de referencia es demasiado grande" -#: InvenTree/models.py:743 +#: InvenTree/models.py:896 msgid "Invalid choice" msgstr "Selección no válida" -#: InvenTree/models.py:856 common/models.py:1410 common/models.py:1837 -#: common/models.py:2096 common/models.py:2221 common/serializers.py:535 -#: company/models.py:615 generic/states/serializers.py:20 machine/models.py:25 -#: part/models.py:1039 part/models.py:3850 plugin/models.py:54 +#: InvenTree/models.py:1017 common/models.py:1414 common/models.py:1841 +#: common/models.py:2102 common/models.py:2227 common/models.py:2494 +#: common/serializers.py:539 generic/states/serializers.py:20 +#: machine/models.py:25 part/models.py:1127 plugin/models.py:54 #: report/models.py:216 stock/models.py:84 msgid "Name" msgstr "Nombre" -#: InvenTree/models.py:862 build/models.py:252 common/models.py:171 -#: common/models.py:2228 common/models.py:2341 company/models.py:543 -#: company/models.py:848 order/models.py:442 order/models.py:1825 -#: part/models.py:1062 part/models.py:3865 report/models.py:222 +#: InvenTree/models.py:1023 build/models.py:253 common/models.py:175 +#: common/models.py:2234 common/models.py:2347 common/models.py:2509 +#: company/models.py:545 company/models.py:802 order/models.py:443 +#: order/models.py:1826 part/models.py:1150 report/models.py:222 #: report/models.py:815 report/models.py:841 #: report/templates/report/inventree_build_order_report.html:117 #: stock/models.py:90 msgid "Description" msgstr "Descripción" -#: InvenTree/models.py:863 stock/models.py:91 +#: InvenTree/models.py:1024 stock/models.py:91 msgid "Description (optional)" msgstr "Descripción (opcional)" -#: InvenTree/models.py:878 common/models.py:2394 +#: InvenTree/models.py:1039 common/models.py:2815 msgid "Path" msgstr "Ruta" -#: InvenTree/models.py:983 +#: InvenTree/models.py:1144 msgid "Duplicate names cannot exist under the same parent" msgstr "Los nombres duplicados no pueden existir bajo el mismo padre" -#: InvenTree/models.py:1067 +#: InvenTree/models.py:1228 msgid "Markdown notes (optional)" msgstr "Notas de Markdown (opcional)" -#: InvenTree/models.py:1098 +#: InvenTree/models.py:1259 msgid "Barcode Data" msgstr "Datos de código de barras" -#: InvenTree/models.py:1099 +#: InvenTree/models.py:1260 msgid "Third party barcode data" msgstr "Datos de código de barras de terceros" -#: InvenTree/models.py:1105 +#: InvenTree/models.py:1266 msgid "Barcode Hash" msgstr "Hash del Código de barras" -#: InvenTree/models.py:1106 +#: InvenTree/models.py:1267 msgid "Unique hash of barcode data" msgstr "Hash único de datos de código de barras" -#: InvenTree/models.py:1187 +#: InvenTree/models.py:1348 msgid "Existing barcode found" msgstr "Código de barras existente encontrado" -#: InvenTree/models.py:1269 +#: InvenTree/models.py:1430 msgid "Task Failure" msgstr "Fallo en la tarea" -#: InvenTree/models.py:1270 +#: InvenTree/models.py:1431 #, python-brace-format msgid "Background worker task '{f}' failed after {n} attempts" msgstr "La tarea en segundo plano '{f}' falló después de {n} intentos" -#: InvenTree/models.py:1297 +#: InvenTree/models.py:1458 msgid "Server Error" msgstr "Error de servidor" -#: InvenTree/models.py:1298 +#: InvenTree/models.py:1459 msgid "An error has been logged by the server." msgstr "Se ha registrado un error por el servidor." -#: InvenTree/models.py:1340 common/models.py:1748 +#: InvenTree/models.py:1501 common/models.py:1752 #: report/templates/report/inventree_bill_of_materials_report.html:126 #: report/templates/report/inventree_bill_of_materials_report.html:148 #: report/templates/report/inventree_return_order_report.html:35 msgid "Image" msgstr "Imágen" -#: InvenTree/serializers.py:253 part/models.py:4571 +#: InvenTree/serializers.py:255 part/models.py:4196 msgid "Must be a valid number" msgstr "Debe ser un número válido" -#: InvenTree/serializers.py:295 company/models.py:214 part/models.py:3285 +#: InvenTree/serializers.py:297 company/models.py:215 part/models.py:3349 msgid "Currency" msgstr "Moneda" -#: InvenTree/serializers.py:298 part/serializers.py:1385 +#: InvenTree/serializers.py:300 part/serializers.py:1250 msgid "Select currency from available options" msgstr "Seleccionar moneda de las opciones disponibles" -#: InvenTree/serializers.py:653 +#: InvenTree/serializers.py:654 +msgid "This field may not be null." +msgstr "" + +#: InvenTree/serializers.py:660 msgid "Invalid value" msgstr "Valor inválido" -#: InvenTree/serializers.py:690 +#: InvenTree/serializers.py:697 msgid "Remote Image" msgstr "Imagen remota" -#: InvenTree/serializers.py:691 +#: InvenTree/serializers.py:698 msgid "URL of remote image file" msgstr "URL de imagen remota" -#: InvenTree/serializers.py:709 +#: InvenTree/serializers.py:716 msgid "Downloading images from remote URL is not enabled" msgstr "La descarga de imágenes desde la URL remota no está habilitada" -#: InvenTree/serializers.py:716 +#: InvenTree/serializers.py:723 msgid "Failed to download image from remote URL" msgstr "Error al descargar la imagen desde la URL remota" +#: InvenTree/serializers.py:806 +msgid "Invalid content type format" +msgstr "" + +#: InvenTree/serializers.py:809 +msgid "Content type not found" +msgstr "" + +#: InvenTree/serializers.py:815 +msgid "Content type does not match required mixin class" +msgstr "" + #: InvenTree/setting/locales.py:20 msgid "Arabic" msgstr "Árabe" @@ -537,30 +553,30 @@ msgstr "Unidad física inválida" msgid "Not a valid currency code" msgstr "No es un código de moneda válido" -#: build/api.py:54 order/api.py:111 order/api.py:270 order/api.py:1373 -#: order/serializers.py:132 +#: build/api.py:54 order/api.py:116 order/api.py:275 order/api.py:1378 +#: order/serializers.py:133 msgid "Order Status" msgstr "Estado del pedido" -#: build/api.py:80 build/models.py:264 +#: build/api.py:80 build/models.py:265 msgid "Parent Build" msgstr "Construcción o Armado Superior" -#: build/api.py:84 build/api.py:831 order/api.py:547 order/api.py:770 -#: order/api.py:1174 order/api.py:1449 stock/api.py:573 +#: build/api.py:84 build/api.py:837 order/api.py:553 order/api.py:776 +#: order/api.py:1179 order/api.py:1454 stock/api.py:573 msgid "Include Variants" msgstr "Incluye Variantes" -#: build/api.py:100 build/api.py:466 build/api.py:845 build/models.py:270 -#: build/serializers.py:1225 build/serializers.py:1356 -#: build/serializers.py:1427 company/models.py:1067 company/serializers.py:445 -#: order/api.py:298 order/api.py:302 order/api.py:929 order/api.py:1187 -#: order/api.py:1190 order/models.py:1941 order/models.py:2108 -#: order/models.py:2109 part/api.py:1233 part/api.py:1236 part/api.py:1302 -#: part/api.py:1589 part/models.py:472 part/models.py:3296 part/models.py:3439 -#: part/models.py:3497 part/models.py:3518 part/models.py:3540 -#: part/models.py:3679 part/models.py:4046 part/models.py:4368 -#: part/models.py:4787 part/serializers.py:1928 +#: build/api.py:100 build/api.py:472 build/api.py:851 build/models.py:271 +#: build/serializers.py:1233 build/serializers.py:1364 +#: build/serializers.py:1435 company/models.py:1021 company/serializers.py:490 +#: order/api.py:303 order/api.py:307 order/api.py:934 order/api.py:1192 +#: order/api.py:1195 order/models.py:1942 order/models.py:2109 +#: order/models.py:2110 part/api.py:1160 part/api.py:1163 part/api.py:1314 +#: part/models.py:550 part/models.py:3360 part/models.py:3503 +#: part/models.py:3561 part/models.py:3582 part/models.py:3604 +#: part/models.py:3743 part/models.py:3993 part/models.py:4412 +#: part/serializers.py:1801 #: report/templates/report/inventree_bill_of_materials_report.html:110 #: report/templates/report/inventree_bill_of_materials_report.html:137 #: report/templates/report/inventree_build_order_report.html:109 @@ -580,9 +596,9 @@ msgstr "Incluye Variantes" msgid "Part" msgstr "Parte" -#: build/api.py:120 build/api.py:123 build/serializers.py:1438 part/api.py:980 -#: part/api.py:1316 part/api.py:1600 part/models.py:1080 part/models.py:3568 -#: part/models.py:4162 part/serializers.py:1752 stock/api.py:869 +#: build/api.py:120 build/api.py:123 build/serializers.py:1446 part/api.py:975 +#: part/api.py:1325 part/models.py:435 part/models.py:1168 part/models.py:3632 +#: part/serializers.py:1617 stock/api.py:869 msgid "Category" msgstr "Categoría" @@ -590,7 +606,7 @@ msgstr "Categoría" msgid "Ancestor Build" msgstr "Construir antepasado" -#: build/api.py:152 order/api.py:129 +#: build/api.py:152 order/api.py:134 msgid "Assigned to me" msgstr "Asignado a mí" @@ -638,134 +654,134 @@ msgstr "Completado antes de" msgid "Completed after" msgstr "Completado después de" -#: build/api.py:249 order/api.py:226 +#: build/api.py:249 order/api.py:231 msgid "Min Date" msgstr "" -#: build/api.py:272 order/api.py:245 +#: build/api.py:272 order/api.py:250 msgid "Max Date" msgstr "" -#: build/api.py:297 build/api.py:300 part/api.py:217 stock/api.py:961 +#: build/api.py:297 build/api.py:300 part/api.py:212 stock/api.py:961 msgid "Exclude Tree" msgstr "" -#: build/api.py:405 +#: build/api.py:411 msgid "Build must be cancelled before it can be deleted" msgstr "La compilación debe cancelarse antes de poder ser eliminada" -#: build/api.py:449 build/serializers.py:1374 part/models.py:4402 +#: build/api.py:455 build/serializers.py:1382 part/models.py:4027 msgid "Consumable" msgstr "Consumible" -#: build/api.py:452 build/serializers.py:1377 part/models.py:4396 +#: build/api.py:458 build/serializers.py:1385 part/models.py:4021 msgid "Optional" msgstr "Opcional" -#: build/api.py:455 build/serializers.py:1415 common/setting/system.py:456 -#: part/models.py:1202 part/serializers.py:1714 part/serializers.py:1725 +#: build/api.py:461 build/serializers.py:1423 common/setting/system.py:456 +#: part/models.py:1290 part/serializers.py:1579 part/serializers.py:1590 #: stock/api.py:639 msgid "Assembly" msgstr "Montaje" -#: build/api.py:458 +#: build/api.py:464 msgid "Tracked" msgstr "Rastreado" -#: build/api.py:461 build/serializers.py:1380 part/models.py:1220 +#: build/api.py:467 build/serializers.py:1388 part/models.py:1308 msgid "Testable" msgstr "Comprobable" -#: build/api.py:471 order/api.py:993 order/api.py:1363 +#: build/api.py:477 order/api.py:998 order/api.py:1368 msgid "Order Outstanding" msgstr "Pedido pendiente" -#: build/api.py:481 build/serializers.py:1464 order/api.py:952 +#: build/api.py:487 build/serializers.py:1472 order/api.py:957 msgid "Allocated" msgstr "Asignadas" -#: build/api.py:490 build/models.py:1672 build/serializers.py:1393 +#: build/api.py:496 build/models.py:1673 build/serializers.py:1401 msgid "Consumed" msgstr "" -#: build/api.py:499 company/models.py:912 company/serializers.py:440 +#: build/api.py:505 company/models.py:866 company/serializers.py:467 #: templates/email/build_order_required_stock.html:19 #: templates/email/low_stock_notification.html:17 #: templates/email/part_event_notification.html:18 msgid "Available" msgstr "Disponible" -#: build/api.py:523 build/serializers.py:1466 company/serializers.py:437 -#: order/serializers.py:1281 part/serializers.py:959 part/serializers.py:1306 -#: part/serializers.py:1761 +#: build/api.py:529 build/serializers.py:1474 company/serializers.py:464 +#: order/serializers.py:1295 part/serializers.py:844 part/serializers.py:1171 +#: part/serializers.py:1626 msgid "On Order" msgstr "En pedido" -#: build/api.py:868 build/models.py:117 order/models.py:1974 +#: build/api.py:874 build/models.py:118 order/models.py:1975 #: report/templates/report/inventree_build_order_report.html:105 #: stock/serializers.py:93 templates/email/build_order_completed.html:16 #: templates/email/overdue_build_order.html:15 msgid "Build Order" msgstr "Construir órden" -#: build/api.py:882 build/api.py:886 build/serializers.py:372 -#: build/serializers.py:497 build/serializers.py:567 build/serializers.py:1251 -#: build/serializers.py:1256 order/api.py:1234 order/api.py:1239 -#: order/serializers.py:833 order/serializers.py:973 order/serializers.py:2042 +#: build/api.py:888 build/api.py:892 build/serializers.py:380 +#: build/serializers.py:505 build/serializers.py:575 build/serializers.py:1259 +#: build/serializers.py:1264 order/api.py:1239 order/api.py:1244 +#: order/serializers.py:844 order/serializers.py:984 order/serializers.py:2059 #: stock/api.py:987 stock/serializers.py:111 stock/serializers.py:601 #: stock/serializers.py:710 stock/serializers.py:888 stock/serializers.py:1418 -#: stock/serializers.py:1731 stock/serializers.py:1780 +#: stock/serializers.py:1739 stock/serializers.py:1788 #: templates/email/stale_stock_notification.html:18 users/models.py:549 msgid "Location" msgstr "Ubicación" -#: build/api.py:894 +#: build/api.py:900 msgid "Output" msgstr "" -#: build/api.py:896 +#: build/api.py:902 msgid "Filter by output stock item ID. Use 'null' to find uninstalled build items." msgstr "" -#: build/models.py:118 users/ruleset.py:31 +#: build/models.py:119 users/ruleset.py:31 msgid "Build Orders" msgstr "Construir órdenes" -#: build/models.py:168 +#: build/models.py:169 msgid "Assembly BOM has not been validated" msgstr "BOM de ensamblado no ha sido validado" -#: build/models.py:175 +#: build/models.py:176 msgid "Build order cannot be created for an inactive part" msgstr "La orden de construcción no puede ser creado para una parte inactiva" -#: build/models.py:182 +#: build/models.py:183 msgid "Build order cannot be created for an unlocked part" msgstr "La orden de construcción no puede ser creada para una parte desbloqueada" -#: build/models.py:200 +#: build/models.py:201 msgid "Build orders can only be externally fulfilled for purchaseable parts" msgstr "" -#: build/models.py:207 order/models.py:369 +#: build/models.py:208 order/models.py:370 msgid "Responsible user or group must be specified" msgstr "Se debe especificar un usuario o grupo responsable" -#: build/models.py:212 +#: build/models.py:213 msgid "Build order part cannot be changed" msgstr "La parte del pedido de construcción no puede ser modificada" -#: build/models.py:217 order/models.py:382 +#: build/models.py:218 order/models.py:383 msgid "Target date must be after start date" msgstr "" -#: build/models.py:245 +#: build/models.py:246 msgid "Build Order Reference" msgstr "Número de orden de construcción o armado" -#: build/models.py:246 build/serializers.py:1371 order/models.py:614 -#: order/models.py:1311 order/models.py:1773 order/models.py:2712 -#: part/models.py:4442 +#: build/models.py:247 build/serializers.py:1379 order/models.py:615 +#: order/models.py:1312 order/models.py:1774 order/models.py:2713 +#: part/models.py:4067 #: report/templates/report/inventree_bill_of_materials_report.html:139 #: report/templates/report/inventree_purchase_order_report.html:35 #: report/templates/report/inventree_return_order_report.html:26 @@ -773,230 +789,230 @@ msgstr "Número de orden de construcción o armado" msgid "Reference" msgstr "Referencia" -#: build/models.py:255 +#: build/models.py:256 msgid "Brief description of the build (optional)" msgstr "Breve descripción de la construcción (opcional)" -#: build/models.py:265 +#: build/models.py:266 msgid "BuildOrder to which this build is allocated" msgstr "Orden de Construcción o Armado a la que se asigna" -#: build/models.py:274 +#: build/models.py:275 msgid "Select part to build" msgstr "Seleccionar parte a construir o armar" -#: build/models.py:279 +#: build/models.py:280 msgid "Sales Order Reference" msgstr "Referencia de orden de venta" -#: build/models.py:284 +#: build/models.py:285 msgid "SalesOrder to which this build is allocated" msgstr "Orden de Venta a la que se asigna" -#: build/models.py:289 build/serializers.py:1097 +#: build/models.py:290 build/serializers.py:1105 msgid "Source Location" msgstr "Ubicación de la fuente" -#: build/models.py:295 +#: build/models.py:296 msgid "Select location to take stock from for this build (leave blank to take from any stock location)" msgstr "Seleccione la ubicación de donde tomar stock para esta construcción o armado (deje en blanco para tomar desde cualquier ubicación)" -#: build/models.py:301 +#: build/models.py:302 msgid "External Build" msgstr "" -#: build/models.py:302 +#: build/models.py:303 msgid "This build order is fulfilled externally" msgstr "" -#: build/models.py:307 +#: build/models.py:308 msgid "Destination Location" msgstr "Ubicación de destino" -#: build/models.py:312 +#: build/models.py:313 msgid "Select location where the completed items will be stored" msgstr "Seleccione la ubicación donde se almacenarán los artículos completados" -#: build/models.py:316 +#: build/models.py:317 msgid "Build Quantity" msgstr "Cantidad a crear" -#: build/models.py:319 +#: build/models.py:320 msgid "Number of stock items to build" msgstr "Número de objetos existentes a construir" -#: build/models.py:323 +#: build/models.py:324 msgid "Completed items" msgstr "Elementos completados" -#: build/models.py:325 +#: build/models.py:326 msgid "Number of stock items which have been completed" msgstr "Número de productos en stock que se han completado" -#: build/models.py:329 +#: build/models.py:330 msgid "Build Status" msgstr "Estado de la construcción" -#: build/models.py:334 +#: build/models.py:335 msgid "Build status code" msgstr "Código de estado de construcción" -#: build/models.py:343 build/serializers.py:359 order/serializers.py:849 +#: build/models.py:344 build/serializers.py:367 order/serializers.py:860 #: stock/models.py:1100 stock/serializers.py:85 stock/serializers.py:1591 msgid "Batch Code" msgstr "Numero de lote" -#: build/models.py:347 build/serializers.py:360 +#: build/models.py:348 build/serializers.py:368 msgid "Batch code for this build output" msgstr "Número de lote de este producto final" -#: build/models.py:351 order/models.py:479 order/serializers.py:186 -#: part/models.py:1283 +#: build/models.py:352 order/models.py:480 order/serializers.py:193 +#: part/models.py:1371 msgid "Creation Date" msgstr "Fecha de Creación" -#: build/models.py:357 +#: build/models.py:358 msgid "Build start date" msgstr "" -#: build/models.py:358 +#: build/models.py:359 msgid "Scheduled start date for this build order" msgstr "" -#: build/models.py:364 +#: build/models.py:365 msgid "Target completion date" msgstr "Fecha límite de finalización" -#: build/models.py:366 +#: build/models.py:367 msgid "Target date for build completion. Build will be overdue after this date." msgstr "Fecha límite para la finalización de la construcción. La construcción estará vencida después de esta fecha." -#: build/models.py:371 order/models.py:667 order/models.py:2751 +#: build/models.py:372 order/models.py:668 order/models.py:2752 msgid "Completion Date" msgstr "Fecha de finalización" -#: build/models.py:379 +#: build/models.py:380 msgid "completed by" msgstr "terminado por" -#: build/models.py:388 +#: build/models.py:389 msgid "Issued by" msgstr "Emitido por" -#: build/models.py:389 +#: build/models.py:390 msgid "User who issued this build order" msgstr "El usuario que emitió esta orden" -#: build/models.py:398 common/models.py:180 order/api.py:179 -#: order/models.py:504 part/models.py:1300 +#: build/models.py:399 common/models.py:184 order/api.py:184 +#: order/models.py:505 part/models.py:1388 #: report/templates/report/inventree_build_order_report.html:158 msgid "Responsible" msgstr "Responsable" -#: build/models.py:399 +#: build/models.py:400 msgid "User or group responsible for this build order" msgstr "Usuario o grupo responsable de esta orden de construcción" -#: build/models.py:404 stock/models.py:1093 +#: build/models.py:405 stock/models.py:1093 msgid "External Link" msgstr "Link externo" -#: build/models.py:406 common/models.py:1984 part/models.py:1114 +#: build/models.py:407 common/models.py:1990 part/models.py:1202 #: stock/models.py:1095 msgid "Link to external URL" msgstr "Enlace a URL externa" -#: build/models.py:411 +#: build/models.py:412 msgid "Build Priority" msgstr "Prioridad de construcción" -#: build/models.py:414 +#: build/models.py:415 msgid "Priority of this build order" msgstr "Prioridad de esta orden de construcción" -#: build/models.py:422 common/models.py:150 common/models.py:164 -#: order/api.py:165 order/models.py:451 order/models.py:1805 +#: build/models.py:423 common/models.py:154 common/models.py:168 +#: order/api.py:170 order/models.py:452 order/models.py:1806 msgid "Project Code" msgstr "Código del proyecto" -#: build/models.py:423 +#: build/models.py:424 msgid "Project code for this build order" msgstr "Código de proyecto para esta orden de ensamble" -#: build/models.py:676 +#: build/models.py:677 msgid "Cannot complete build order with open child builds" msgstr "" -#: build/models.py:681 +#: build/models.py:682 msgid "Cannot complete build order with incomplete outputs" msgstr "" -#: build/models.py:700 build/models.py:830 +#: build/models.py:701 build/models.py:831 msgid "Failed to offload task to complete build allocations" msgstr "No se pudo descargar la tarea para completar las asignaciones de construcción" -#: build/models.py:723 +#: build/models.py:724 #, python-brace-format msgid "Build order {build} has been completed" msgstr "El pedido {build} ha sido procesado" -#: build/models.py:729 +#: build/models.py:730 msgid "A build order has been completed" msgstr "Pedido #[order] ha sido procesado" -#: build/models.py:911 build/serializers.py:407 +#: build/models.py:912 build/serializers.py:415 msgid "Serial numbers must be provided for trackable parts" msgstr "Los números de serie deben ser proporcionados para las partes rastreables" -#: build/models.py:1042 build/models.py:1129 +#: build/models.py:1043 build/models.py:1130 msgid "No build output specified" msgstr "No se ha especificado salida de construcción" -#: build/models.py:1045 +#: build/models.py:1046 msgid "Build output is already completed" msgstr "La construcción de la salida ya está completa" -#: build/models.py:1048 +#: build/models.py:1049 msgid "Build output does not match Build Order" msgstr "La salida de la construcción no coincide con el orden de construcción" -#: build/models.py:1136 build/models.py:1234 build/serializers.py:285 -#: build/serializers.py:335 build/serializers.py:965 build/serializers.py:1739 -#: order/models.py:717 order/serializers.py:658 order/serializers.py:844 -#: part/serializers.py:1708 stock/models.py:940 stock/models.py:1430 +#: build/models.py:1137 build/models.py:1235 build/serializers.py:293 +#: build/serializers.py:343 build/serializers.py:973 build/serializers.py:1747 +#: order/models.py:718 order/serializers.py:669 order/serializers.py:855 +#: part/serializers.py:1573 stock/models.py:940 stock/models.py:1430 #: stock/models.py:1878 stock/serializers.py:688 stock/serializers.py:1580 msgid "Quantity must be greater than zero" msgstr "La cantidad debe ser mayor que cero" -#: build/models.py:1140 build/models.py:1239 build/serializers.py:290 +#: build/models.py:1141 build/models.py:1240 build/serializers.py:298 msgid "Quantity cannot be greater than the output quantity" msgstr "La cantidad no puede ser mayor que la cantidad de salida" -#: build/models.py:1214 build/serializers.py:606 +#: build/models.py:1215 build/serializers.py:614 msgid "Build output has not passed all required tests" msgstr "" -#: build/models.py:1217 build/serializers.py:601 +#: build/models.py:1218 build/serializers.py:609 #, python-brace-format msgid "Build output {serial} has not passed all required tests" msgstr "La construcción {serial} no ha pasado todas las pruebas requeridas" -#: build/models.py:1229 +#: build/models.py:1230 msgid "Cannot partially complete a build output with allocated items" msgstr "" -#: build/models.py:1627 +#: build/models.py:1628 msgid "Build Order Line Item" msgstr "Construir línea de pedido" -#: build/models.py:1651 +#: build/models.py:1652 msgid "Build object" msgstr "Ensamblar equipo" -#: build/models.py:1663 build/models.py:1974 build/serializers.py:271 -#: build/serializers.py:320 build/serializers.py:1392 common/models.py:1340 -#: order/models.py:1756 order/models.py:2597 order/serializers.py:1696 -#: order/serializers.py:2124 part/models.py:3453 part/models.py:4390 +#: build/models.py:1664 build/models.py:1975 build/serializers.py:279 +#: build/serializers.py:328 build/serializers.py:1400 common/models.py:1344 +#: order/models.py:1757 order/models.py:2598 order/serializers.py:1710 +#: order/serializers.py:2141 part/models.py:3517 part/models.py:4015 #: report/templates/report/inventree_bill_of_materials_report.html:138 #: report/templates/report/inventree_build_order_report.html:113 #: report/templates/report/inventree_purchase_order_report.html:36 @@ -1014,427 +1030,427 @@ msgstr "Ensamblar equipo" msgid "Quantity" msgstr "Cantidad" -#: build/models.py:1664 +#: build/models.py:1665 msgid "Required quantity for build order" msgstr "Cantidad requerida para orden de ensamble" -#: build/models.py:1673 +#: build/models.py:1674 msgid "Quantity of consumed stock" msgstr "" -#: build/models.py:1772 +#: build/models.py:1773 msgid "Build item must specify a build output, as master part is marked as trackable" msgstr "Item de construcción o armado debe especificar un resultado o salida, ya que la parte maestra está marcada como rastreable" -#: build/models.py:1783 +#: build/models.py:1784 #, python-brace-format msgid "Allocated quantity ({q}) must not exceed available stock quantity ({a})" msgstr "Cantidad asignada ({q}) no debe exceder la cantidad disponible de stock ({a})" -#: build/models.py:1804 order/models.py:2546 +#: build/models.py:1805 order/models.py:2547 msgid "Stock item is over-allocated" msgstr "Artículo de stock sobreasignado" -#: build/models.py:1809 order/models.py:2549 +#: build/models.py:1810 order/models.py:2550 msgid "Allocation quantity must be greater than zero" msgstr "Cantidad asignada debe ser mayor que cero" -#: build/models.py:1815 +#: build/models.py:1816 msgid "Quantity must be 1 for serialized stock" msgstr "La cantidad debe ser 1 para el stock serializado" -#: build/models.py:1875 +#: build/models.py:1876 msgid "Selected stock item does not match BOM line" msgstr "El artículo de almacén selelccionado no coincide con la línea BOM" -#: build/models.py:1913 +#: build/models.py:1914 msgid "Allocated quantity exceeds available stock quantity" msgstr "" -#: build/models.py:1964 build/serializers.py:948 build/serializers.py:1240 -#: order/serializers.py:1533 order/serializers.py:1554 +#: build/models.py:1965 build/serializers.py:956 build/serializers.py:1248 +#: order/serializers.py:1547 order/serializers.py:1568 #: report/templates/report/inventree_sales_order_shipment_report.html:29 #: stock/api.py:1404 stock/models.py:456 stock/serializers.py:102 #: stock/serializers.py:800 stock/serializers.py:1274 stock/serializers.py:1386 msgid "Stock Item" msgstr "Artículo de stock" -#: build/models.py:1965 +#: build/models.py:1966 msgid "Source stock item" msgstr "Producto original de stock" -#: build/models.py:1975 +#: build/models.py:1976 msgid "Stock quantity to allocate to build" msgstr "Cantidad de stock a asignar para construir" -#: build/models.py:1984 +#: build/models.py:1985 msgid "Install into" msgstr "Instalar en" -#: build/models.py:1985 +#: build/models.py:1986 msgid "Destination stock item" msgstr "Artículo de stock de destino" -#: build/serializers.py:118 +#: build/serializers.py:120 msgid "Build Level" msgstr "Nivel de construcción" -#: build/serializers.py:128 +#: build/serializers.py:136 msgid "Part Name" msgstr "Nombre de parte" -#: build/serializers.py:153 +#: build/serializers.py:161 msgid "Project Code Label" msgstr "Etiqueta del código del proyecto" -#: build/serializers.py:219 build/serializers.py:974 +#: build/serializers.py:227 build/serializers.py:982 msgid "Build Output" msgstr "Resultado de la construcción o armado" -#: build/serializers.py:231 +#: build/serializers.py:239 msgid "Build output does not match the parent build" msgstr "La salida de construcción no coincide con la construcción padre" -#: build/serializers.py:235 +#: build/serializers.py:243 msgid "Output part does not match BuildOrder part" msgstr "La parte de salida no coincide con la parte de la Orden de Construcción" -#: build/serializers.py:239 +#: build/serializers.py:247 msgid "This build output has already been completed" msgstr "Esta salida de construcción ya ha sido completada" -#: build/serializers.py:253 +#: build/serializers.py:261 msgid "This build output is not fully allocated" msgstr "Esta salida de construcción no está completamente asignada" -#: build/serializers.py:272 build/serializers.py:321 +#: build/serializers.py:280 build/serializers.py:329 msgid "Enter quantity for build output" msgstr "Ingrese la cantidad para la producción de la construcción" -#: build/serializers.py:343 +#: build/serializers.py:351 msgid "Integer quantity required for trackable parts" msgstr "Cantidad entera requerida para partes rastreables" -#: build/serializers.py:349 +#: build/serializers.py:357 msgid "Integer quantity required, as the bill of materials contains trackable parts" msgstr "Cantidad entera requerida, ya que la factura de materiales contiene partes rastreables" -#: build/serializers.py:366 order/serializers.py:865 order/serializers.py:1700 +#: build/serializers.py:374 order/serializers.py:876 order/serializers.py:1714 #: stock/serializers.py:699 msgid "Serial Numbers" msgstr "Números de serie" -#: build/serializers.py:367 +#: build/serializers.py:375 msgid "Enter serial numbers for build outputs" msgstr "Introduzca los números de serie de salidas de construcción" -#: build/serializers.py:373 +#: build/serializers.py:381 msgid "Stock location for build output" msgstr "Ubicación de stock para objetos construidos" -#: build/serializers.py:388 +#: build/serializers.py:396 msgid "Auto Allocate Serial Numbers" msgstr "Autoasignar Números de Serie" -#: build/serializers.py:390 +#: build/serializers.py:398 msgid "Automatically allocate required items with matching serial numbers" msgstr "Asignar automáticamente los artículos requeridos con números de serie coincidentes" -#: build/serializers.py:423 order/serializers.py:951 stock/api.py:1183 +#: build/serializers.py:431 order/serializers.py:962 stock/api.py:1183 #: stock/models.py:1901 msgid "The following serial numbers already exist or are invalid" msgstr "Los siguientes números seriales ya existen o son inválidos" -#: build/serializers.py:465 build/serializers.py:521 build/serializers.py:613 +#: build/serializers.py:473 build/serializers.py:529 build/serializers.py:621 msgid "A list of build outputs must be provided" msgstr "Debe proporcionarse una lista de salidas de construcción" -#: build/serializers.py:498 +#: build/serializers.py:506 msgid "Stock location for scrapped outputs" msgstr "Ubicación de almacén para salidas descartadas" -#: build/serializers.py:504 +#: build/serializers.py:512 msgid "Discard Allocations" msgstr "Descartar asignaciones" -#: build/serializers.py:505 +#: build/serializers.py:513 msgid "Discard any stock allocations for scrapped outputs" msgstr "Descartar cualquier asignación de existencias para las salidas descartadas" -#: build/serializers.py:510 +#: build/serializers.py:518 msgid "Reason for scrapping build output(s)" msgstr "Razón para descartar la salida de ensamble(s)" -#: build/serializers.py:568 +#: build/serializers.py:576 msgid "Location for completed build outputs" msgstr "Ubicación para las salidas de construcción completadas" -#: build/serializers.py:576 +#: build/serializers.py:584 msgid "Accept Incomplete Allocation" msgstr "Aceptar Asignación Incompleta" -#: build/serializers.py:577 +#: build/serializers.py:585 msgid "Complete outputs if stock has not been fully allocated" msgstr "Completar salidas si el inventario no se ha asignado completamente" -#: build/serializers.py:702 +#: build/serializers.py:710 msgid "Consume Allocated Stock" msgstr "Consumir Stock Asignado" -#: build/serializers.py:703 +#: build/serializers.py:711 msgid "Consume any stock which has already been allocated to this build" msgstr "Consume cualquier stock que ya ha sido asignado a esta construcción" -#: build/serializers.py:709 +#: build/serializers.py:717 msgid "Remove Incomplete Outputs" msgstr "Eliminar salidas incompletas" -#: build/serializers.py:710 +#: build/serializers.py:718 msgid "Delete any build outputs which have not been completed" msgstr "Eliminar cualquier salida de construcción que no se haya completado" -#: build/serializers.py:737 +#: build/serializers.py:745 msgid "Not permitted" msgstr "No permitido" -#: build/serializers.py:738 +#: build/serializers.py:746 msgid "Accept as consumed by this build order" msgstr "Aceptar como consumido por este pedido de construcción" -#: build/serializers.py:739 +#: build/serializers.py:747 msgid "Deallocate before completing this build order" msgstr "Liberar antes de completar esta orden de construcción" -#: build/serializers.py:766 +#: build/serializers.py:774 msgid "Overallocated Stock" msgstr "Stock sobreasignado" -#: build/serializers.py:769 +#: build/serializers.py:777 msgid "How do you want to handle extra stock items assigned to the build order" msgstr "Cómo quieres manejar los artículos extra de inventario asignados a la orden de construcción" -#: build/serializers.py:780 +#: build/serializers.py:788 msgid "Some stock items have been overallocated" msgstr "Algunos artículos de inventario han sido sobreasignados" -#: build/serializers.py:785 +#: build/serializers.py:793 msgid "Accept Unallocated" msgstr "Aceptar no asignado" -#: build/serializers.py:787 +#: build/serializers.py:795 msgid "Accept that stock items have not been fully allocated to this build order" msgstr "Aceptar que los artículos de stock no se han asignado completamente a este pedido de construcción" -#: build/serializers.py:798 +#: build/serializers.py:806 msgid "Required stock has not been fully allocated" msgstr "El stock requerido no ha sido completamente asignado" -#: build/serializers.py:803 order/serializers.py:524 order/serializers.py:1601 +#: build/serializers.py:811 order/serializers.py:535 order/serializers.py:1615 msgid "Accept Incomplete" msgstr "Aceptar incompleto" -#: build/serializers.py:805 +#: build/serializers.py:813 msgid "Accept that the required number of build outputs have not been completed" msgstr "Aceptar que el número requerido de salidas de construcción no se han completado" -#: build/serializers.py:816 +#: build/serializers.py:824 msgid "Required build quantity has not been completed" msgstr "La cantidad de construcción requerida aún no se ha completado" -#: build/serializers.py:828 +#: build/serializers.py:836 msgid "Build order has open child build orders" msgstr "La orden de construcción tiene órdenes hijas de construcción abiertas" -#: build/serializers.py:831 +#: build/serializers.py:839 msgid "Build order must be in production state" msgstr "Orden de construcción debe estar en estado de producción" -#: build/serializers.py:834 +#: build/serializers.py:842 msgid "Build order has incomplete outputs" msgstr "El orden de construcción tiene salidas incompletas" -#: build/serializers.py:873 +#: build/serializers.py:881 msgid "Build Line" msgstr "Linea de ensamble" -#: build/serializers.py:881 +#: build/serializers.py:889 msgid "Build output" msgstr "Resultado de la construcción o armado" -#: build/serializers.py:889 +#: build/serializers.py:897 msgid "Build output must point to the same build" msgstr "La salida de la construcción debe apuntar a la misma construcción" -#: build/serializers.py:920 +#: build/serializers.py:928 msgid "Build Line Item" msgstr "Crear partida" -#: build/serializers.py:938 +#: build/serializers.py:946 msgid "bom_item.part must point to the same part as the build order" msgstr "bom_item.part debe apuntar a la misma parte que la orden de construcción" -#: build/serializers.py:954 stock/serializers.py:1287 +#: build/serializers.py:962 stock/serializers.py:1287 msgid "Item must be in stock" msgstr "El artículo debe estar en stock" -#: build/serializers.py:997 order/serializers.py:1587 +#: build/serializers.py:1005 order/serializers.py:1601 #, python-brace-format msgid "Available quantity ({q}) exceeded" msgstr "Cantidad disponible ({q}) excedida" -#: build/serializers.py:1003 +#: build/serializers.py:1011 msgid "Build output must be specified for allocation of tracked parts" msgstr "La salida de la construcción debe especificarse para la asignación de partes rastreadas" -#: build/serializers.py:1011 +#: build/serializers.py:1019 msgid "Build output cannot be specified for allocation of untracked parts" msgstr "La salida de construcción no se puede especificar para la asignación de partes no rastreadas" -#: build/serializers.py:1035 order/serializers.py:1860 +#: build/serializers.py:1043 order/serializers.py:1874 msgid "Allocation items must be provided" msgstr "Debe proporcionarse la adjudicación de artículos" -#: build/serializers.py:1099 +#: build/serializers.py:1107 msgid "Stock location where parts are to be sourced (leave blank to take from any location)" msgstr "Ubicación de inventario donde las partes deben ser obtenidas (dejar en blanco para tomar de cualquier ubicación)" -#: build/serializers.py:1108 +#: build/serializers.py:1116 msgid "Exclude Location" msgstr "Excluir ubicación" -#: build/serializers.py:1109 +#: build/serializers.py:1117 msgid "Exclude stock items from this selected location" msgstr "Excluir artículos de stock de esta ubicación seleccionada" -#: build/serializers.py:1114 +#: build/serializers.py:1122 msgid "Interchangeable Stock" msgstr "Stock intercambiable" -#: build/serializers.py:1115 +#: build/serializers.py:1123 msgid "Stock items in multiple locations can be used interchangeably" msgstr "Los artículos de inventario en múltiples ubicaciones se pueden utilizar de forma intercambiable" -#: build/serializers.py:1120 +#: build/serializers.py:1128 msgid "Substitute Stock" msgstr "Sustituir stock" -#: build/serializers.py:1121 +#: build/serializers.py:1129 msgid "Allow allocation of substitute parts" msgstr "Permitir la asignación de partes sustitutas" -#: build/serializers.py:1126 +#: build/serializers.py:1134 msgid "Optional Items" msgstr "Elementos opcionales" -#: build/serializers.py:1127 +#: build/serializers.py:1135 msgid "Allocate optional BOM items to build order" msgstr "Asignar artículos de la BOM opcionales para construir la orden" -#: build/serializers.py:1148 +#: build/serializers.py:1156 msgid "Failed to start auto-allocation task" msgstr "Error al iniciar la tarea de asignación automática" -#: build/serializers.py:1200 +#: build/serializers.py:1208 msgid "BOM Reference" msgstr "Referencia BOM" -#: build/serializers.py:1206 +#: build/serializers.py:1214 msgid "BOM Part ID" msgstr "ID de la parte BOM" -#: build/serializers.py:1213 +#: build/serializers.py:1221 msgid "BOM Part Name" msgstr "Nombre de parte la BOM" -#: build/serializers.py:1266 build/serializers.py:1449 +#: build/serializers.py:1274 build/serializers.py:1457 msgid "Build" msgstr "" -#: build/serializers.py:1276 company/models.py:685 order/api.py:311 -#: order/api.py:316 order/api.py:543 order/serializers.py:650 +#: build/serializers.py:1284 company/models.py:639 order/api.py:316 +#: order/api.py:321 order/api.py:549 order/serializers.py:661 #: stock/models.py:1036 stock/serializers.py:579 msgid "Supplier Part" msgstr "Parte del proveedor" -#: build/serializers.py:1284 stock/serializers.py:620 +#: build/serializers.py:1292 stock/serializers.py:620 msgid "Allocated Quantity" msgstr "Cantidad Asignada" -#: build/serializers.py:1351 +#: build/serializers.py:1359 msgid "Build Reference" msgstr "Referencia de orden de Ensamblado" -#: build/serializers.py:1361 +#: build/serializers.py:1369 msgid "Part Category Name" msgstr "Nombre de la categoría por pieza" -#: build/serializers.py:1383 common/setting/system.py:480 part/models.py:1214 +#: build/serializers.py:1391 common/setting/system.py:480 part/models.py:1302 msgid "Trackable" msgstr "Rastreable" -#: build/serializers.py:1386 +#: build/serializers.py:1394 msgid "Inherited" msgstr "Heredado" -#: build/serializers.py:1389 part/models.py:4475 +#: build/serializers.py:1397 part/models.py:4100 msgid "Allow Variants" msgstr "Permitir variantes" -#: build/serializers.py:1395 build/serializers.py:1400 part/models.py:4208 -#: part/models.py:4779 stock/api.py:882 +#: build/serializers.py:1403 build/serializers.py:1408 part/models.py:3833 +#: part/models.py:4404 stock/api.py:882 msgid "BOM Item" msgstr "Item de Lista de Materiales" -#: build/serializers.py:1467 order/serializers.py:1282 part/serializers.py:1310 -#: part/serializers.py:1765 +#: build/serializers.py:1475 order/serializers.py:1296 part/serializers.py:1175 +#: part/serializers.py:1630 msgid "In Production" msgstr "En producción" -#: build/serializers.py:1469 part/serializers.py:950 part/serializers.py:1314 +#: build/serializers.py:1477 part/serializers.py:835 part/serializers.py:1179 msgid "Scheduled to Build" msgstr "" -#: build/serializers.py:1472 part/serializers.py:987 +#: build/serializers.py:1480 part/serializers.py:872 msgid "External Stock" msgstr "Stock externo" -#: build/serializers.py:1473 part/serializers.py:1300 part/serializers.py:1808 +#: build/serializers.py:1481 part/serializers.py:1165 part/serializers.py:1673 msgid "Available Stock" msgstr "Stock Disponible" -#: build/serializers.py:1475 +#: build/serializers.py:1483 msgid "Available Substitute Stock" msgstr "Stock sustituto disponible" -#: build/serializers.py:1478 +#: build/serializers.py:1486 msgid "Available Variant Stock" msgstr "Stock variable disponible" -#: build/serializers.py:1752 +#: build/serializers.py:1760 msgid "Consumed quantity exceeds allocated quantity" msgstr "" -#: build/serializers.py:1789 +#: build/serializers.py:1797 msgid "Optional notes for the stock consumption" msgstr "" -#: build/serializers.py:1806 +#: build/serializers.py:1814 msgid "Build item must point to the correct build order" msgstr "" -#: build/serializers.py:1811 +#: build/serializers.py:1819 msgid "Duplicate build item allocation" msgstr "" -#: build/serializers.py:1829 +#: build/serializers.py:1837 msgid "Build line must point to the correct build order" msgstr "" -#: build/serializers.py:1834 +#: build/serializers.py:1842 msgid "Duplicate build line allocation" msgstr "" -#: build/serializers.py:1846 +#: build/serializers.py:1854 msgid "At least one item or line must be provided" msgstr "" @@ -1482,702 +1498,826 @@ msgstr "Orden de construcción atrasada" msgid "Build order {bo} is now overdue" msgstr "El pedido de construcción {bo} está atrasado" -#: common/api.py:694 +#: common/api.py:701 msgid "Is Link" msgstr "¿Es enlace?" -#: common/api.py:702 +#: common/api.py:709 msgid "Is File" msgstr "¿Es archivo?" -#: common/api.py:745 +#: common/api.py:756 msgid "User does not have permission to delete these attachments" msgstr "El usuario no tiene permiso para eliminar estos adjuntos" -#: common/api.py:762 +#: common/api.py:769 msgid "User does not have permission to delete this attachment" msgstr "El usuario no tiene permiso para eliminar este adjunto" -#: common/currency.py:122 +#: common/currency.py:130 msgid "Invalid currency code" msgstr "Código de divisa inválido" -#: common/currency.py:124 +#: common/currency.py:132 msgid "Duplicate currency code" msgstr "Código de divisa duplicado" -#: common/currency.py:129 +#: common/currency.py:137 msgid "No valid currency codes provided" msgstr "No se han proporcionado códigos de divisa válidos" -#: common/currency.py:146 +#: common/currency.py:154 msgid "No plugin" msgstr "Sin plugin" -#: common/models.py:101 common/models.py:126 common/models.py:2729 +#: common/models.py:105 common/models.py:130 common/models.py:3150 msgid "Updated" msgstr "Actualizado" -#: common/models.py:102 common/models.py:127 +#: common/models.py:106 common/models.py:131 msgid "Timestamp of last update" msgstr "Fecha y hora de la última actualización" -#: common/models.py:139 +#: common/models.py:143 msgid "Update By" msgstr "" -#: common/models.py:140 +#: common/models.py:144 msgid "User who last updated this object" msgstr "" -#: common/models.py:165 +#: common/models.py:169 msgid "Unique project code" msgstr "Código único del proyecto" -#: common/models.py:172 +#: common/models.py:176 msgid "Project description" msgstr "Descripción del proyecto" -#: common/models.py:181 +#: common/models.py:185 msgid "User or group responsible for this project" msgstr "Usuario o grupo responsable de este projecto" -#: common/models.py:771 common/models.py:1272 common/models.py:1310 +#: common/models.py:775 common/models.py:1276 common/models.py:1314 msgid "Settings key" msgstr "Tecla de ajustes" -#: common/models.py:775 +#: common/models.py:779 msgid "Settings value" msgstr "Valor de ajuste" -#: common/models.py:830 +#: common/models.py:834 msgid "Chosen value is not a valid option" msgstr "El valor elegido no es una opción válida" -#: common/models.py:846 +#: common/models.py:850 msgid "Value must be a boolean value" msgstr "El valor debe ser un valor booleano" -#: common/models.py:854 +#: common/models.py:858 msgid "Value must be an integer value" msgstr "El valor debe ser un entero" -#: common/models.py:862 +#: common/models.py:866 msgid "Value must be a valid number" msgstr "El valor debe ser un número válido" -#: common/models.py:887 +#: common/models.py:891 msgid "Value does not pass validation checks" msgstr "El valor no pasa las comprobaciones de validación" -#: common/models.py:909 +#: common/models.py:913 msgid "Key string must be unique" msgstr "Cadena de clave debe ser única" -#: common/models.py:1318 common/models.py:1319 common/models.py:1423 -#: common/models.py:1424 common/models.py:1669 common/models.py:1670 -#: common/models.py:2000 common/models.py:2001 common/models.py:2382 -#: importer/models.py:100 part/models.py:3547 part/models.py:3575 +#: common/models.py:1322 common/models.py:1323 common/models.py:1427 +#: common/models.py:1428 common/models.py:1673 common/models.py:1674 +#: common/models.py:2006 common/models.py:2007 common/models.py:2803 +#: importer/models.py:100 part/models.py:3611 part/models.py:3639 #: plugin/models.py:355 plugin/models.py:356 #: report/templates/report/inventree_test_report.html:105 users/models.py:124 #: users/models.py:501 msgid "User" msgstr "Usuario" -#: common/models.py:1341 +#: common/models.py:1345 msgid "Price break quantity" msgstr "Cantidad de salto de precio" -#: common/models.py:1348 company/serializers.py:564 order/models.py:1842 -#: order/models.py:3043 +#: common/models.py:1352 company/serializers.py:349 order/models.py:1843 +#: order/models.py:3044 msgid "Price" msgstr "Precio" -#: common/models.py:1349 +#: common/models.py:1353 msgid "Unit price at specified quantity" msgstr "Precio unitario a la cantidad especificada" -#: common/models.py:1400 common/models.py:1585 +#: common/models.py:1404 common/models.py:1589 msgid "Endpoint" msgstr "Endpoint" -#: common/models.py:1401 +#: common/models.py:1405 msgid "Endpoint at which this webhook is received" msgstr "Punto final en el que se recibe este webhook" -#: common/models.py:1411 +#: common/models.py:1415 msgid "Name for this webhook" msgstr "Nombre para este webhook" -#: common/models.py:1415 common/models.py:2241 common/models.py:2348 -#: company/models.py:191 company/models.py:822 machine/models.py:40 -#: part/models.py:1237 plugin/models.py:69 stock/api.py:642 users/models.py:195 +#: common/models.py:1419 common/models.py:2247 common/models.py:2354 +#: company/models.py:192 company/models.py:776 machine/models.py:40 +#: part/models.py:1325 plugin/models.py:69 stock/api.py:642 users/models.py:195 #: users/models.py:554 users/serializers.py:314 msgid "Active" msgstr "Activo" -#: common/models.py:1415 +#: common/models.py:1419 msgid "Is this webhook active" msgstr "Está activo este webhook" -#: common/models.py:1431 users/models.py:172 +#: common/models.py:1435 users/models.py:172 msgid "Token" msgstr "Token" -#: common/models.py:1432 +#: common/models.py:1436 msgid "Token for access" msgstr "Token para el acceso" -#: common/models.py:1440 +#: common/models.py:1444 msgid "Secret" msgstr "Clave" -#: common/models.py:1441 +#: common/models.py:1445 msgid "Shared secret for HMAC" msgstr "Secreto compartido para HMAC" -#: common/models.py:1549 common/models.py:2619 +#: common/models.py:1553 common/models.py:3040 msgid "Message ID" msgstr "ID de mensaje" -#: common/models.py:1550 common/models.py:2609 +#: common/models.py:1554 common/models.py:3030 msgid "Unique identifier for this message" msgstr "Identificador único para este mensaje" -#: common/models.py:1558 +#: common/models.py:1562 msgid "Host" msgstr "" -#: common/models.py:1559 +#: common/models.py:1563 msgid "Host from which this message was received" msgstr "Servidor desde el cual se recibió este mensaje" -#: common/models.py:1567 +#: common/models.py:1571 msgid "Header" msgstr "Encabezado" -#: common/models.py:1568 +#: common/models.py:1572 msgid "Header of this message" msgstr "Encabezado del mensaje" -#: common/models.py:1575 +#: common/models.py:1579 msgid "Body" msgstr "Cuerpo" -#: common/models.py:1576 +#: common/models.py:1580 msgid "Body of this message" msgstr "Cuerpo de este mensaje" -#: common/models.py:1586 +#: common/models.py:1590 msgid "Endpoint on which this message was received" msgstr "Endpoint en el que se recibió este mensaje" -#: common/models.py:1591 +#: common/models.py:1595 msgid "Worked on" msgstr "Trabajado en" -#: common/models.py:1592 +#: common/models.py:1596 msgid "Was the work on this message finished?" msgstr "¿El trabajo en este mensaje ha terminado?" -#: common/models.py:1718 +#: common/models.py:1722 msgid "Id" msgstr "" -#: common/models.py:1720 +#: common/models.py:1724 msgid "Title" msgstr "Título" -#: common/models.py:1722 common/models.py:1983 company/models.py:185 -#: company/models.py:467 company/models.py:534 company/models.py:839 -#: order/models.py:457 order/models.py:1786 order/models.py:2343 -#: part/models.py:1113 +#: common/models.py:1726 common/models.py:1989 company/models.py:186 +#: company/models.py:468 company/models.py:536 company/models.py:793 +#: order/models.py:458 order/models.py:1787 order/models.py:2344 +#: part/models.py:1201 #: report/templates/report/inventree_build_order_report.html:164 msgid "Link" msgstr "Enlace" -#: common/models.py:1724 +#: common/models.py:1728 msgid "Published" msgstr "Publicado" -#: common/models.py:1726 +#: common/models.py:1730 msgid "Author" msgstr "Autor" -#: common/models.py:1728 +#: common/models.py:1732 msgid "Summary" msgstr "Resumen" -#: common/models.py:1731 common/models.py:2586 +#: common/models.py:1735 common/models.py:3007 msgid "Read" msgstr "Leer" -#: common/models.py:1731 +#: common/models.py:1735 msgid "Was this news item read?" msgstr "¿Esta noticia ya fue leída?" -#: common/models.py:1748 +#: common/models.py:1752 msgid "Image file" msgstr "Archivo de imagen" -#: common/models.py:1760 +#: common/models.py:1764 msgid "Target model type for this image" msgstr "Tipo de modelo destino para esta imagen" -#: common/models.py:1764 +#: common/models.py:1768 msgid "Target model ID for this image" msgstr "" -#: common/models.py:1786 +#: common/models.py:1790 msgid "Custom Unit" msgstr "Unidad personalizada" -#: common/models.py:1804 +#: common/models.py:1808 msgid "Unit symbol must be unique" msgstr "El símbolo de la unidad debe ser único" -#: common/models.py:1819 +#: common/models.py:1823 msgid "Unit name must be a valid identifier" msgstr "Nombre de unidad debe ser un identificador válido" -#: common/models.py:1838 +#: common/models.py:1842 msgid "Unit name" msgstr "Nombre de unidad" -#: common/models.py:1845 +#: common/models.py:1849 msgid "Symbol" msgstr "Símbolo" -#: common/models.py:1846 +#: common/models.py:1850 msgid "Optional unit symbol" msgstr "Símbolo de unidad opcional" -#: common/models.py:1852 +#: common/models.py:1856 msgid "Definition" msgstr "Definición" -#: common/models.py:1853 +#: common/models.py:1857 msgid "Unit definition" msgstr "Definición de unidad" -#: common/models.py:1911 common/models.py:1974 stock/models.py:2967 +#: common/models.py:1917 common/models.py:1980 stock/models.py:2984 #: stock/serializers.py:247 msgid "Attachment" msgstr "Archivo adjunto" -#: common/models.py:1928 +#: common/models.py:1934 msgid "Missing file" msgstr "Archivo no encontrado" -#: common/models.py:1929 +#: common/models.py:1935 msgid "Missing external link" msgstr "Falta enlace externo" -#: common/models.py:1966 +#: common/models.py:1972 common/models.py:2488 msgid "Model type" msgstr "" -#: common/models.py:1967 +#: common/models.py:1973 msgid "Target model type for image" msgstr "" -#: common/models.py:1975 +#: common/models.py:1981 msgid "Select file to attach" msgstr "Seleccionar archivo para adjuntar" -#: common/models.py:1991 +#: common/models.py:1997 msgid "Comment" msgstr "Comentario" -#: common/models.py:1992 +#: common/models.py:1998 msgid "Attachment comment" msgstr "Comentario de archivo adjunto" -#: common/models.py:2008 +#: common/models.py:2014 msgid "Upload date" msgstr "Fecha de carga" -#: common/models.py:2009 +#: common/models.py:2015 msgid "Date the file was uploaded" msgstr "Fecha de carga del archivo" -#: common/models.py:2013 +#: common/models.py:2019 msgid "File size" msgstr "Tamaño del archivo" -#: common/models.py:2013 +#: common/models.py:2019 msgid "File size in bytes" msgstr "Tamaño del archivo en bytes" -#: common/models.py:2051 common/serializers.py:684 +#: common/models.py:2057 common/serializers.py:688 msgid "Invalid model type specified for attachment" msgstr "Tipo de modelo no válido especificado para el archivo adjunto" -#: common/models.py:2072 +#: common/models.py:2078 msgid "Custom State" msgstr "Estado personalizado" -#: common/models.py:2073 +#: common/models.py:2079 msgid "Custom States" msgstr "Estados personalizados" -#: common/models.py:2078 +#: common/models.py:2084 msgid "Reference Status Set" msgstr "Conjunto de estado de referencia" -#: common/models.py:2079 +#: common/models.py:2085 msgid "Status set that is extended with this custom state" msgstr "Conjunto de estado extendido con este estado personalizado" -#: common/models.py:2083 generic/states/serializers.py:18 +#: common/models.py:2089 generic/states/serializers.py:18 msgid "Logical Key" msgstr "Llave lógica" -#: common/models.py:2085 +#: common/models.py:2091 msgid "State logical key that is equal to this custom state in business logic" msgstr "Clave lógica del estado que es igual a este estado personalizado en la lógica de negocios" -#: common/models.py:2090 common/models.py:2329 company/models.py:622 -#: machine/serializers.py:27 -#: report/templates/report/inventree_test_report.html:104 stock/models.py:2959 +#: common/models.py:2096 common/models.py:2335 machine/serializers.py:27 +#: report/templates/report/inventree_test_report.html:104 stock/models.py:2976 msgid "Value" msgstr "Valor" -#: common/models.py:2091 +#: common/models.py:2097 msgid "Numerical value that will be saved in the models database" msgstr "Valor numérico que se guardará en la base de datos de modelos" -#: common/models.py:2097 +#: common/models.py:2103 msgid "Name of the state" msgstr "Nombre del estado" -#: common/models.py:2106 common/models.py:2335 generic/states/serializers.py:22 +#: common/models.py:2112 common/models.py:2341 generic/states/serializers.py:22 msgid "Label" msgstr "Etiqueta" -#: common/models.py:2107 +#: common/models.py:2113 msgid "Label that will be displayed in the frontend" msgstr "Etiqueta que se mostrará en el frontend" -#: common/models.py:2114 generic/states/serializers.py:24 +#: common/models.py:2120 generic/states/serializers.py:24 msgid "Color" msgstr "Color" -#: common/models.py:2115 +#: common/models.py:2121 msgid "Color that will be displayed in the frontend" msgstr "Color que se mostrará en el frontend" -#: common/models.py:2123 +#: common/models.py:2129 msgid "Model" msgstr "Modelo" -#: common/models.py:2124 +#: common/models.py:2130 msgid "Model this state is associated with" msgstr "Modelo con el que este estado está asociado" -#: common/models.py:2139 +#: common/models.py:2145 msgid "Model must be selected" msgstr "El modelo debe ser seleccionado" -#: common/models.py:2142 +#: common/models.py:2148 msgid "Key must be selected" msgstr "La clave debe ser seleccionada" -#: common/models.py:2145 +#: common/models.py:2151 msgid "Logical key must be selected" msgstr "La clave lógica debe ser seleccionada" -#: common/models.py:2149 +#: common/models.py:2155 msgid "Key must be different from logical key" msgstr "La clave debe ser distinta de la clave lógica" -#: common/models.py:2156 +#: common/models.py:2162 msgid "Valid reference status class must be provided" msgstr "Debe proporcionarse una clase de estado de referencia válida" -#: common/models.py:2162 +#: common/models.py:2168 msgid "Key must be different from the logical keys of the reference status" msgstr "La clave debe ser distinta de las claves lógicas del estado de referencia" -#: common/models.py:2169 +#: common/models.py:2175 msgid "Logical key must be in the logical keys of the reference status" msgstr "" -#: common/models.py:2176 +#: common/models.py:2182 msgid "Name must be different from the names of the reference status" msgstr "" -#: common/models.py:2216 common/models.py:2323 part/models.py:3889 +#: common/models.py:2222 common/models.py:2329 common/models.py:2533 msgid "Selection List" msgstr "Lista de selección" -#: common/models.py:2217 +#: common/models.py:2223 msgid "Selection Lists" msgstr "Listas de Selección" -#: common/models.py:2222 +#: common/models.py:2228 msgid "Name of the selection list" msgstr "Nombre de la lista de selección" -#: common/models.py:2229 +#: common/models.py:2235 msgid "Description of the selection list" msgstr "Descripción de la lista de selección" -#: common/models.py:2235 part/models.py:1242 +#: common/models.py:2241 part/models.py:1330 msgid "Locked" msgstr "Bloqueado" -#: common/models.py:2236 +#: common/models.py:2242 msgid "Is this selection list locked?" msgstr "¿Está bloqueada esta lista de selección?" -#: common/models.py:2242 +#: common/models.py:2248 msgid "Can this selection list be used?" msgstr "¿Se puede utilizar esta lista de selección?" -#: common/models.py:2250 +#: common/models.py:2256 msgid "Source Plugin" msgstr "Complemento de origen" -#: common/models.py:2251 +#: common/models.py:2257 msgid "Plugin which provides the selection list" msgstr "Complemento que proporciona la lista de selección" -#: common/models.py:2256 +#: common/models.py:2262 msgid "Source String" msgstr "Cadena de origen" -#: common/models.py:2257 +#: common/models.py:2263 msgid "Optional string identifying the source used for this list" msgstr "Cadena opcional que identifica la fuente usada para esta lista" -#: common/models.py:2266 +#: common/models.py:2272 msgid "Default Entry" msgstr "Entrada por defecto" -#: common/models.py:2267 +#: common/models.py:2273 msgid "Default entry for this selection list" msgstr "Entrada predeterminada para esta lista de selección" -#: common/models.py:2272 common/models.py:2724 +#: common/models.py:2278 common/models.py:3145 msgid "Created" msgstr "Creado" -#: common/models.py:2273 +#: common/models.py:2279 msgid "Date and time that the selection list was created" msgstr "Fecha y hora en la que se creó la lista de selección" -#: common/models.py:2278 +#: common/models.py:2284 msgid "Last Updated" msgstr "Última actualización" -#: common/models.py:2279 +#: common/models.py:2285 msgid "Date and time that the selection list was last updated" msgstr "Fecha y hora en que la lista de selección fue actualizada por última vez" -#: common/models.py:2313 +#: common/models.py:2319 msgid "Selection List Entry" msgstr "Entrada de lista de selección" -#: common/models.py:2314 +#: common/models.py:2320 msgid "Selection List Entries" msgstr "Entradas de la lista de selección" -#: common/models.py:2324 +#: common/models.py:2330 msgid "Selection list to which this entry belongs" msgstr "Lista de selección a la que pertenece esta entrada" -#: common/models.py:2330 +#: common/models.py:2336 msgid "Value of the selection list entry" msgstr "Valor del elemento de la lista de selección" -#: common/models.py:2336 +#: common/models.py:2342 msgid "Label for the selection list entry" msgstr "Etiqueta para la entrada de lista de selección" -#: common/models.py:2342 +#: common/models.py:2348 msgid "Description of the selection list entry" msgstr "Descripción de la entrada de lista de selección" -#: common/models.py:2349 +#: common/models.py:2355 msgid "Is this selection list entry active?" msgstr "¿Está activa esta entrada de la lista de selección?" -#: common/models.py:2367 -msgid "Barcode Scan" -msgstr "Escanear código de barras" +#: common/models.py:2387 +msgid "Parameter Template" +msgstr "Plantilla de parámetro" -#: common/models.py:2371 importer/models.py:546 part/models.py:4060 -msgid "Data" -msgstr "Datos" - -#: common/models.py:2372 -msgid "Barcode data" -msgstr "Datos de código de barras" - -#: common/models.py:2383 -msgid "User who scanned the barcode" -msgstr "Usuario que escaneó el código de barras" - -#: common/models.py:2388 importer/models.py:69 -msgid "Timestamp" +#: common/models.py:2388 +msgid "Parameter Templates" msgstr "" -#: common/models.py:2389 -msgid "Date and time of the barcode scan" -msgstr "Fecha y hora del escaneo de código de barras" - -#: common/models.py:2395 -msgid "URL endpoint which processed the barcode" -msgstr "Dispositivo URL que procesó el código de barras" - -#: common/models.py:2402 order/models.py:1832 plugin/serializers.py:93 -msgid "Context" -msgstr "Contexto" - -#: common/models.py:2403 -msgid "Context data for the barcode scan" -msgstr "Datos de contexto para el escaneo de código de barras" - -#: common/models.py:2410 -msgid "Response" -msgstr "Respuesta" - -#: common/models.py:2411 -msgid "Response data from the barcode scan" -msgstr "Respuesta de datos del escaneo de código de barras" - -#: common/models.py:2417 report/templates/report/inventree_test_report.html:103 -#: stock/models.py:2953 -msgid "Result" -msgstr "Resultado" - -#: common/models.py:2418 -msgid "Was the barcode scan successful?" -msgstr "¿El escaneo de código de barras fue exitoso?" - -#: common/models.py:2500 -msgid "An error occurred" +#: common/models.py:2425 +msgid "Checkbox parameters cannot have units" msgstr "" -#: common/models.py:2521 -msgid "INVE-E8: Email log deletion is protected. Set INVENTREE_PROTECT_EMAIL_LOG to False to allow deletion." +#: common/models.py:2430 +msgid "Checkbox parameters cannot have choices" msgstr "" -#: common/models.py:2568 -msgid "Email Message" +#: common/models.py:2450 part/models.py:3707 +msgid "Choices must be unique" msgstr "" -#: common/models.py:2569 -msgid "Email Messages" +#: common/models.py:2467 +msgid "Parameter template name must be unique" +msgstr "El nombre de parámetro en la plantilla tiene que ser único" + +#: common/models.py:2489 +msgid "Target model type for this parameter template" msgstr "" -#: common/models.py:2576 -msgid "Announced" +#: common/models.py:2495 +msgid "Parameter Name" +msgstr "Nombre de Parámetro" + +#: common/models.py:2501 part/models.py:1283 +msgid "Units" +msgstr "Unidades" + +#: common/models.py:2502 +msgid "Physical units for this parameter" msgstr "" -#: common/models.py:2578 -msgid "Sent" +#: common/models.py:2510 +msgid "Parameter description" msgstr "" -#: common/models.py:2579 -msgid "Failed" +#: common/models.py:2516 +msgid "Checkbox" +msgstr "Casilla de verificación" + +#: common/models.py:2517 +msgid "Is this parameter a checkbox?" +msgstr "¿Es este parámetro una casilla de verificación?" + +#: common/models.py:2522 part/models.py:3794 +msgid "Choices" +msgstr "Opciones" + +#: common/models.py:2523 +msgid "Valid choices for this parameter (comma-separated)" +msgstr "Opciones válidas para este parámetro (separados por comas)" + +#: common/models.py:2534 +msgid "Selection list for this parameter" +msgstr "Lista de selección para este parámetro" + +#: common/models.py:2539 part/models.py:3769 report/models.py:287 +msgid "Enabled" +msgstr "Habilitado" + +#: common/models.py:2540 +msgid "Is this parameter template enabled?" +msgstr "" + +#: common/models.py:2581 +msgid "Parameter" msgstr "" #: common/models.py:2582 -msgid "Delivered" -msgstr "" - -#: common/models.py:2590 -msgid "Confirmed" -msgstr "" - -#: common/models.py:2596 -msgid "Inbound" -msgstr "" - -#: common/models.py:2597 -msgid "Outbound" -msgstr "" - -#: common/models.py:2602 -msgid "No Reply" -msgstr "" - -#: common/models.py:2603 -msgid "Track Delivery" -msgstr "" - -#: common/models.py:2604 -msgid "Track Read" -msgstr "" - -#: common/models.py:2605 -msgid "Track Click" -msgstr "" - -#: common/models.py:2608 common/models.py:2711 -msgid "Global ID" -msgstr "" - -#: common/models.py:2621 -msgid "Identifier for this message (might be supplied by external system)" +msgid "Parameters" msgstr "" #: common/models.py:2628 +msgid "Invalid choice for parameter value" +msgstr "Opción inválida para el valor del parámetro" + +#: common/models.py:2698 common/serializers.py:783 +msgid "Invalid model type specified for parameter" +msgstr "" + +#: common/models.py:2734 +msgid "Model ID" +msgstr "" + +#: common/models.py:2735 +msgid "ID of the target model for this parameter" +msgstr "" + +#: common/models.py:2744 common/setting/system.py:450 report/models.py:373 +#: report/models.py:669 report/serializers.py:94 report/serializers.py:135 +#: stock/serializers.py:234 +msgid "Template" +msgstr "Plantilla" + +#: common/models.py:2745 +msgid "Parameter template" +msgstr "" + +#: common/models.py:2750 common/models.py:2792 importer/models.py:546 +msgid "Data" +msgstr "Datos" + +#: common/models.py:2751 +msgid "Parameter Value" +msgstr "Valor del parámetro" + +#: common/models.py:2760 company/models.py:810 order/serializers.py:894 +#: order/serializers.py:2064 part/models.py:4075 part/models.py:4444 +#: report/templates/report/inventree_bill_of_materials_report.html:140 +#: report/templates/report/inventree_purchase_order_report.html:39 +#: report/templates/report/inventree_return_order_report.html:27 +#: report/templates/report/inventree_sales_order_report.html:32 +#: report/templates/report/inventree_stock_location_report.html:105 +#: stock/serializers.py:813 +msgid "Note" +msgstr "Nota" + +#: common/models.py:2761 stock/serializers.py:718 +msgid "Optional note field" +msgstr "Campo de nota opcional" + +#: common/models.py:2788 +msgid "Barcode Scan" +msgstr "Escanear código de barras" + +#: common/models.py:2793 +msgid "Barcode data" +msgstr "Datos de código de barras" + +#: common/models.py:2804 +msgid "User who scanned the barcode" +msgstr "Usuario que escaneó el código de barras" + +#: common/models.py:2809 importer/models.py:69 +msgid "Timestamp" +msgstr "" + +#: common/models.py:2810 +msgid "Date and time of the barcode scan" +msgstr "Fecha y hora del escaneo de código de barras" + +#: common/models.py:2816 +msgid "URL endpoint which processed the barcode" +msgstr "Dispositivo URL que procesó el código de barras" + +#: common/models.py:2823 order/models.py:1833 plugin/serializers.py:93 +msgid "Context" +msgstr "Contexto" + +#: common/models.py:2824 +msgid "Context data for the barcode scan" +msgstr "Datos de contexto para el escaneo de código de barras" + +#: common/models.py:2831 +msgid "Response" +msgstr "Respuesta" + +#: common/models.py:2832 +msgid "Response data from the barcode scan" +msgstr "Respuesta de datos del escaneo de código de barras" + +#: common/models.py:2838 report/templates/report/inventree_test_report.html:103 +#: stock/models.py:2970 +msgid "Result" +msgstr "Resultado" + +#: common/models.py:2839 +msgid "Was the barcode scan successful?" +msgstr "¿El escaneo de código de barras fue exitoso?" + +#: common/models.py:2921 +msgid "An error occurred" +msgstr "" + +#: common/models.py:2942 +msgid "INVE-E8: Email log deletion is protected. Set INVENTREE_PROTECT_EMAIL_LOG to False to allow deletion." +msgstr "" + +#: common/models.py:2989 +msgid "Email Message" +msgstr "" + +#: common/models.py:2990 +msgid "Email Messages" +msgstr "" + +#: common/models.py:2997 +msgid "Announced" +msgstr "" + +#: common/models.py:2999 +msgid "Sent" +msgstr "" + +#: common/models.py:3000 +msgid "Failed" +msgstr "" + +#: common/models.py:3003 +msgid "Delivered" +msgstr "" + +#: common/models.py:3011 +msgid "Confirmed" +msgstr "" + +#: common/models.py:3017 +msgid "Inbound" +msgstr "" + +#: common/models.py:3018 +msgid "Outbound" +msgstr "" + +#: common/models.py:3023 +msgid "No Reply" +msgstr "" + +#: common/models.py:3024 +msgid "Track Delivery" +msgstr "" + +#: common/models.py:3025 +msgid "Track Read" +msgstr "" + +#: common/models.py:3026 +msgid "Track Click" +msgstr "" + +#: common/models.py:3029 common/models.py:3132 +msgid "Global ID" +msgstr "" + +#: common/models.py:3042 +msgid "Identifier for this message (might be supplied by external system)" +msgstr "" + +#: common/models.py:3049 msgid "Thread ID" msgstr "" -#: common/models.py:2630 +#: common/models.py:3051 msgid "Identifier for this message thread (might be supplied by external system)" msgstr "" -#: common/models.py:2639 +#: common/models.py:3060 msgid "Thread" msgstr "" -#: common/models.py:2640 +#: common/models.py:3061 msgid "Linked thread for this message" msgstr "" -#: common/models.py:2656 -msgid "Prioriy" +#: common/models.py:3077 +msgid "Priority" msgstr "" -#: common/models.py:2698 +#: common/models.py:3119 msgid "Email Thread" msgstr "" -#: common/models.py:2699 +#: common/models.py:3120 msgid "Email Threads" msgstr "" -#: common/models.py:2705 generic/states/serializers.py:16 +#: common/models.py:3126 generic/states/serializers.py:16 #: machine/serializers.py:24 plugin/models.py:46 users/models.py:113 msgid "Key" msgstr "Clave" -#: common/models.py:2708 +#: common/models.py:3129 msgid "Unique key for this thread (used to identify the thread)" msgstr "" -#: common/models.py:2712 +#: common/models.py:3133 msgid "Unique identifier for this thread" msgstr "" -#: common/models.py:2719 +#: common/models.py:3140 msgid "Started Internal" msgstr "" -#: common/models.py:2720 +#: common/models.py:3141 msgid "Was this thread started internally?" msgstr "" -#: common/models.py:2725 +#: common/models.py:3146 msgid "Date and time that the thread was created" msgstr "" -#: common/models.py:2730 +#: common/models.py:3151 msgid "Date and time that the thread was last updated" msgstr "" @@ -2199,7 +2339,7 @@ msgstr "{verbose_name} cancelado" msgid "A order that is assigned to you was canceled" msgstr "" -#: common/notifications.py:73 common/notifications.py:80 order/api.py:594 +#: common/notifications.py:73 common/notifications.py:80 order/api.py:600 msgid "Items Received" msgstr "Artículos Recibidos" @@ -2211,88 +2351,93 @@ msgstr "Los artículos han sido recibidos contra una orden de compra" msgid "Items have been received against a return order" msgstr "Los artículos han sido recibidos contra una orden de devolución" -#: common/serializers.py:145 +#: common/serializers.py:149 msgid "Indicates if the setting is overridden by an environment variable" msgstr "" -#: common/serializers.py:147 +#: common/serializers.py:151 msgid "Override" msgstr "" -#: common/serializers.py:498 +#: common/serializers.py:502 msgid "Is Running" msgstr "Está en ejecución" -#: common/serializers.py:504 +#: common/serializers.py:508 msgid "Pending Tasks" msgstr "Tareas pendientes" -#: common/serializers.py:510 +#: common/serializers.py:514 msgid "Scheduled Tasks" msgstr "Tareas Programadas" -#: common/serializers.py:516 +#: common/serializers.py:520 msgid "Failed Tasks" msgstr "Tareas fallidas" -#: common/serializers.py:531 +#: common/serializers.py:535 msgid "Task ID" msgstr "Identificación de Tarea" -#: common/serializers.py:531 +#: common/serializers.py:535 msgid "Unique task ID" msgstr "Identificación de tarea única" -#: common/serializers.py:533 +#: common/serializers.py:537 msgid "Lock" msgstr "Bloquear" -#: common/serializers.py:533 +#: common/serializers.py:537 msgid "Lock time" msgstr "Bloquear hora" -#: common/serializers.py:535 +#: common/serializers.py:539 msgid "Task name" msgstr "Nombre de la tarea" -#: common/serializers.py:537 +#: common/serializers.py:541 msgid "Function" msgstr "Función" -#: common/serializers.py:537 +#: common/serializers.py:541 msgid "Function name" msgstr "Nombre de la Función" -#: common/serializers.py:539 +#: common/serializers.py:543 msgid "Arguments" msgstr "Argumentos" -#: common/serializers.py:539 +#: common/serializers.py:543 msgid "Task arguments" msgstr "Argumentos de la tarea" -#: common/serializers.py:542 +#: common/serializers.py:546 msgid "Keyword Arguments" msgstr "Argumentos de palabra clave" -#: common/serializers.py:542 +#: common/serializers.py:546 msgid "Task keyword arguments" msgstr "Argumentos de palabra clave de tarea" -#: common/serializers.py:652 +#: common/serializers.py:656 msgid "Filename" msgstr "Nombre de Archivo" -#: common/serializers.py:659 importer/models.py:89 report/api.py:41 +#: common/serializers.py:663 common/serializers.py:730 +#: common/serializers.py:805 importer/models.py:89 report/api.py:41 #: report/models.py:293 report/serializers.py:52 msgid "Model Type" msgstr "" -#: common/serializers.py:687 +#: common/serializers.py:691 msgid "User does not have permission to create or edit attachments for this model" msgstr "" -#: common/serializers.py:731 common/serializers.py:834 +#: common/serializers.py:786 +msgid "User does not have permission to create or edit parameters for this model" +msgstr "" + +#: common/serializers.py:850 common/serializers.py:953 msgid "Selection list is locked" msgstr "Lista de selección bloqueada" @@ -2368,7 +2513,7 @@ msgstr "Restringir mostrar 'acerca de'" msgid "Show the `about` modal only to superusers" msgstr "Mostrar la modal `about` solo para superusuarios" -#: common/setting/system.py:224 company/models.py:144 company/models.py:145 +#: common/setting/system.py:224 company/models.py:145 company/models.py:146 msgid "Company name" msgstr "Nombre de empresa" @@ -2411,8 +2556,8 @@ msgstr "Con qué frecuencia actualizar los tipos de cambio (establecer a cero pa #: common/setting/system.py:253 common/setting/system.py:293 #: common/setting/system.py:306 common/setting/system.py:314 #: common/setting/system.py:321 common/setting/system.py:330 -#: common/setting/system.py:339 common/setting/system.py:588 -#: common/setting/system.py:616 common/setting/system.py:707 +#: common/setting/system.py:339 common/setting/system.py:580 +#: common/setting/system.py:608 common/setting/system.py:707 #: common/setting/system.py:1103 common/setting/system.py:1119 msgid "days" msgstr "días" @@ -2657,12 +2802,6 @@ msgstr "Copiar plantillas de parámetros de categoría" msgid "Copy category parameter templates when creating a part" msgstr "Copiar plantillas de parámetros de categoría al crear una parte" -#: common/setting/system.py:450 part/models.py:4054 report/models.py:373 -#: report/models.py:669 report/serializers.py:94 report/serializers.py:135 -#: stock/serializers.py:234 -msgid "Template" -msgstr "Plantilla" - #: common/setting/system.py:451 msgid "Parts are templates by default" msgstr "Las partes son plantillas por defecto" @@ -2671,8 +2810,8 @@ msgstr "Las partes son plantillas por defecto" msgid "Parts can be assembled from other components by default" msgstr "Las partes pueden ser ensambladas desde otros componentes por defecto" -#: common/setting/system.py:462 part/models.py:1208 part/serializers.py:1734 -#: part/serializers.py:1741 +#: common/setting/system.py:462 part/models.py:1296 part/serializers.py:1599 +#: part/serializers.py:1606 msgid "Component" msgstr "Componente" @@ -2680,7 +2819,7 @@ msgstr "Componente" msgid "Parts can be used as sub-components by default" msgstr "Las partes pueden ser usadas como subcomponentes por defecto" -#: common/setting/system.py:468 part/models.py:1226 +#: common/setting/system.py:468 part/models.py:1314 msgid "Purchaseable" msgstr "Comprable" @@ -2688,7 +2827,7 @@ msgstr "Comprable" msgid "Parts are purchaseable by default" msgstr "Las partes son comprables por defecto" -#: common/setting/system.py:474 part/models.py:1232 stock/api.py:643 +#: common/setting/system.py:474 part/models.py:1320 stock/api.py:643 msgid "Salable" msgstr "Vendible" @@ -2700,7 +2839,7 @@ msgstr "Las partes se pueden vender por defecto" msgid "Parts are trackable by default" msgstr "Las partes son rastreables por defecto" -#: common/setting/system.py:486 part/models.py:1248 +#: common/setting/system.py:486 part/models.py:1336 msgid "Virtual" msgstr "Virtual" @@ -2749,158 +2888,158 @@ msgid "Part category default icon (empty means no icon)" msgstr "Icono por defecto de la categoría de parte (vacío significa que no hay icono)" #: common/setting/system.py:525 -msgid "Enforce Parameter Units" -msgstr "Forzar unidades de parámetro" - -#: common/setting/system.py:527 -msgid "If units are provided, parameter values must match the specified units" -msgstr "Si se proporcionan unidades, los valores de parámetro deben coincidir con las unidades especificadas" - -#: common/setting/system.py:533 msgid "Minimum Pricing Decimal Places" msgstr "Mínimo de lugares decimales en el precio" -#: common/setting/system.py:535 +#: common/setting/system.py:527 msgid "Minimum number of decimal places to display when rendering pricing data" msgstr "Número mínimo de decimales a mostrar al procesar los datos de precios" -#: common/setting/system.py:546 +#: common/setting/system.py:538 msgid "Maximum Pricing Decimal Places" msgstr "Máximo de lugares decimales en el precio" -#: common/setting/system.py:548 +#: common/setting/system.py:540 msgid "Maximum number of decimal places to display when rendering pricing data" msgstr "Número máximo de decimales a mostrar al procesar los datos de precios" -#: common/setting/system.py:559 +#: common/setting/system.py:551 msgid "Use Supplier Pricing" msgstr "Usar precios de proveedor" -#: common/setting/system.py:561 +#: common/setting/system.py:553 msgid "Include supplier price breaks in overall pricing calculations" msgstr "Incluir descuentos de precios del proveedor en los cálculos generales de precios" -#: common/setting/system.py:567 +#: common/setting/system.py:559 msgid "Purchase History Override" msgstr "Anulación del historial de compra" -#: common/setting/system.py:569 +#: common/setting/system.py:561 msgid "Historical purchase order pricing overrides supplier price breaks" msgstr "El precio histórico de compra anula los descuentos de precios del proveedor" -#: common/setting/system.py:575 +#: common/setting/system.py:567 msgid "Use Stock Item Pricing" msgstr "Usar precio del artículo de almacén" -#: common/setting/system.py:577 +#: common/setting/system.py:569 msgid "Use pricing from manually entered stock data for pricing calculations" msgstr "Usar los precios de los datos de inventario introducidos manualmente para los cálculos de precios" -#: common/setting/system.py:583 +#: common/setting/system.py:575 msgid "Stock Item Pricing Age" msgstr "Edad del precio del artículo de almacén" -#: common/setting/system.py:585 +#: common/setting/system.py:577 msgid "Exclude stock items older than this number of days from pricing calculations" msgstr "Excluir artículos de almacén anteriores a este número de días de los cálculos de precios" -#: common/setting/system.py:592 +#: common/setting/system.py:584 msgid "Use Variant Pricing" msgstr "Usar precios variantes" -#: common/setting/system.py:593 +#: common/setting/system.py:585 msgid "Include variant pricing in overall pricing calculations" msgstr "Incluir variantes de precios en los cálculos generales de precios" -#: common/setting/system.py:598 +#: common/setting/system.py:590 msgid "Active Variants Only" msgstr "Solo variantes activas" -#: common/setting/system.py:600 +#: common/setting/system.py:592 msgid "Only use active variant parts for calculating variant pricing" msgstr "Usar solo partes de variantes activas para calcular los precios de variantes" -#: common/setting/system.py:606 +#: common/setting/system.py:598 msgid "Auto Update Pricing" msgstr "" -#: common/setting/system.py:608 +#: common/setting/system.py:600 msgid "Automatically update part pricing when internal data changes" msgstr "" -#: common/setting/system.py:614 +#: common/setting/system.py:606 msgid "Pricing Rebuild Interval" msgstr "Intervalo de reconstrucción de precios" -#: common/setting/system.py:615 +#: common/setting/system.py:607 msgid "Number of days before part pricing is automatically updated" msgstr "Número de días antes de que el precio de la parte se actualice automáticamente" -#: common/setting/system.py:621 +#: common/setting/system.py:613 msgid "Internal Prices" msgstr "Precios internos" -#: common/setting/system.py:622 +#: common/setting/system.py:614 msgid "Enable internal prices for parts" msgstr "Habilitar precios internos para partes" -#: common/setting/system.py:627 +#: common/setting/system.py:619 msgid "Internal Price Override" msgstr "Anulación del precio interno" -#: common/setting/system.py:629 +#: common/setting/system.py:621 msgid "If available, internal prices override price range calculations" msgstr "Si está disponible, los precios internos anulan los cálculos del rango de precios" -#: common/setting/system.py:635 +#: common/setting/system.py:627 msgid "Enable label printing" msgstr "Habilitar impresión de etiquetas" -#: common/setting/system.py:636 +#: common/setting/system.py:628 msgid "Enable label printing from the web interface" msgstr "Habilitar impresión de etiquetas desde la interfaz web" -#: common/setting/system.py:641 +#: common/setting/system.py:633 msgid "Label Image DPI" msgstr "PPP de la imagen de etiqueta" -#: common/setting/system.py:643 +#: common/setting/system.py:635 msgid "DPI resolution when generating image files to supply to label printing plugins" msgstr "Resolución DPI al generar archivos de imagen que suministrar para etiquetar complementos de impresión" -#: common/setting/system.py:649 +#: common/setting/system.py:641 msgid "Enable Reports" msgstr "Habilitar informes" -#: common/setting/system.py:650 +#: common/setting/system.py:642 msgid "Enable generation of reports" msgstr "Habilitar generación de informes" -#: common/setting/system.py:655 +#: common/setting/system.py:647 msgid "Debug Mode" msgstr "Modo de depuración" -#: common/setting/system.py:656 +#: common/setting/system.py:648 msgid "Generate reports in debug mode (HTML output)" msgstr "Generar informes en modo de depuración (salida HTML)" -#: common/setting/system.py:661 +#: common/setting/system.py:653 msgid "Log Report Errors" msgstr "Registrar errores de reportes" -#: common/setting/system.py:662 +#: common/setting/system.py:654 msgid "Log errors which occur when generating reports" msgstr "Registrar errores ocurridos al generar reportes" -#: common/setting/system.py:667 plugin/builtin/labels/label_sheet.py:29 +#: common/setting/system.py:659 plugin/builtin/labels/label_sheet.py:29 #: report/models.py:381 msgid "Page Size" msgstr "Tamaño de página" -#: common/setting/system.py:668 +#: common/setting/system.py:660 msgid "Default page size for PDF reports" msgstr "Tamaño de página predeterminado para informes PDF" +#: common/setting/system.py:665 +msgid "Enforce Parameter Units" +msgstr "Forzar unidades de parámetro" + +#: common/setting/system.py:667 +msgid "If units are provided, parameter values must match the specified units" +msgstr "Si se proporcionan unidades, los valores de parámetro deben coincidir con las unidades especificadas" + #: common/setting/system.py:673 msgid "Globally Unique Serials" msgstr "Seriales únicos globalmente" @@ -3456,688 +3595,677 @@ msgid "Display PDF reports in the browser, instead of downloading as a file" msgstr "Mostrar informes PDF en el navegador, en lugar de descargar como un archivo" #: common/setting/user.py:45 +msgid "Barcode Scanner in Form Fields" +msgstr "" + +#: common/setting/user.py:46 +msgid "Allow barcode scanner input in form fields" +msgstr "" + +#: common/setting/user.py:51 msgid "Search Parts" msgstr "Buscar partes" -#: common/setting/user.py:46 +#: common/setting/user.py:52 msgid "Display parts in search preview window" msgstr "Mostrar partes en la ventana de vista previa de búsqueda" -#: common/setting/user.py:51 +#: common/setting/user.py:57 msgid "Search Supplier Parts" msgstr "Buscar partes de proveedor" -#: common/setting/user.py:52 +#: common/setting/user.py:58 msgid "Display supplier parts in search preview window" msgstr "Mostrar partes de proveedores en la ventana de vista previa de búsqueda" -#: common/setting/user.py:57 +#: common/setting/user.py:63 msgid "Search Manufacturer Parts" msgstr "Buscar Partes del Fabricante" -#: common/setting/user.py:58 +#: common/setting/user.py:64 msgid "Display manufacturer parts in search preview window" msgstr "Mostrar partes de productores en la ventana de vista previa de búsqueda" -#: common/setting/user.py:63 +#: common/setting/user.py:69 msgid "Hide Inactive Parts" msgstr "Ocultar Partes Inactivas" -#: common/setting/user.py:64 +#: common/setting/user.py:70 msgid "Excluded inactive parts from search preview window" msgstr "Excluir las partes inactivas de la ventana de previsualización de búsqueda" -#: common/setting/user.py:69 +#: common/setting/user.py:75 msgid "Search Categories" msgstr "Buscar categorías" -#: common/setting/user.py:70 +#: common/setting/user.py:76 msgid "Display part categories in search preview window" msgstr "Mostrar categorias de la parte en la ventana de previsualización de búsqueda" -#: common/setting/user.py:75 +#: common/setting/user.py:81 msgid "Search Stock" msgstr "Buscar inventario" -#: common/setting/user.py:76 +#: common/setting/user.py:82 msgid "Display stock items in search preview window" msgstr "Mostrar artículos del stock en la ventana de previsualización de búsqueda" -#: common/setting/user.py:81 +#: common/setting/user.py:87 msgid "Hide Unavailable Stock Items" msgstr "Ocultar Artículos del Stock Agotados" -#: common/setting/user.py:83 +#: common/setting/user.py:89 msgid "Exclude stock items which are not available from the search preview window" msgstr "Excluir artículos de stock que no están disponibles en la ventana de previsualización de búsqueda" -#: common/setting/user.py:89 +#: common/setting/user.py:95 msgid "Search Locations" msgstr "Buscar ubicaciones" -#: common/setting/user.py:90 +#: common/setting/user.py:96 msgid "Display stock locations in search preview window" msgstr "Mostrar ubicaciones de almacén en la ventana de vista previa de búsqueda" -#: common/setting/user.py:95 +#: common/setting/user.py:101 msgid "Search Companies" msgstr "Buscar empresas" -#: common/setting/user.py:96 +#: common/setting/user.py:102 msgid "Display companies in search preview window" msgstr "Mostrar empresas en la ventana de vista previa de búsqueda" -#: common/setting/user.py:101 +#: common/setting/user.py:107 msgid "Search Build Orders" msgstr "Buscar Pedidos de Construcción" -#: common/setting/user.py:102 +#: common/setting/user.py:108 msgid "Display build orders in search preview window" msgstr "Mostrar órdenes de fabricación en la ventana de vista previa de búsqueda" -#: common/setting/user.py:107 +#: common/setting/user.py:113 msgid "Search Purchase Orders" msgstr "Buscar órdenes de compra" -#: common/setting/user.py:108 +#: common/setting/user.py:114 msgid "Display purchase orders in search preview window" msgstr "Mostrar órdenes de compra en la ventana de vista previa de búsqueda" -#: common/setting/user.py:113 +#: common/setting/user.py:119 msgid "Exclude Inactive Purchase Orders" msgstr "Excluir pedidos de compra inactivos" -#: common/setting/user.py:114 +#: common/setting/user.py:120 msgid "Exclude inactive purchase orders from search preview window" msgstr "Excluir órdenes de compra inactivas de la ventana de vista previa de búsqueda" -#: common/setting/user.py:119 +#: common/setting/user.py:125 msgid "Search Sales Orders" msgstr "Buscar órdenes de venta" -#: common/setting/user.py:120 +#: common/setting/user.py:126 msgid "Display sales orders in search preview window" msgstr "Mostrar órdenes de venta en la ventana de vista previa de búsqueda" -#: common/setting/user.py:125 +#: common/setting/user.py:131 msgid "Exclude Inactive Sales Orders" msgstr "Excluir órdenes de venta inactivas" -#: common/setting/user.py:126 +#: common/setting/user.py:132 msgid "Exclude inactive sales orders from search preview window" msgstr "Excluir órdenes de venta inactivas de la ventana de vista previa de búsqueda" -#: common/setting/user.py:131 +#: common/setting/user.py:137 msgid "Search Sales Order Shipments" msgstr "" -#: common/setting/user.py:132 +#: common/setting/user.py:138 msgid "Display sales order shipments in search preview window" msgstr "" -#: common/setting/user.py:137 +#: common/setting/user.py:143 msgid "Search Return Orders" msgstr "Buscar órdenes de devolución" -#: common/setting/user.py:138 +#: common/setting/user.py:144 msgid "Display return orders in search preview window" msgstr "Mostrar órdenes de devolución en la ventana de vista previa de búsqueda" -#: common/setting/user.py:143 +#: common/setting/user.py:149 msgid "Exclude Inactive Return Orders" msgstr "" -#: common/setting/user.py:144 +#: common/setting/user.py:150 msgid "Exclude inactive return orders from search preview window" msgstr "" -#: common/setting/user.py:149 +#: common/setting/user.py:155 msgid "Search Preview Results" msgstr "Resultados de la vista previa" -#: common/setting/user.py:151 +#: common/setting/user.py:157 msgid "Number of results to show in each section of the search preview window" msgstr "" -#: common/setting/user.py:157 +#: common/setting/user.py:163 msgid "Regex Search" msgstr "Búsqueda usando una expresión regular" -#: common/setting/user.py:158 +#: common/setting/user.py:164 msgid "Enable regular expressions in search queries" msgstr "Habilitar expresiones regulares en las consultas de búsqueda" -#: common/setting/user.py:163 +#: common/setting/user.py:169 msgid "Whole Word Search" msgstr "Búsqueda por palabra completa" -#: common/setting/user.py:164 +#: common/setting/user.py:170 msgid "Search queries return results for whole word matches" msgstr "Las consultas de búsqueda devuelven resultados para palabras enteras coincidentes" -#: common/setting/user.py:169 +#: common/setting/user.py:175 msgid "Search Notes" msgstr "" -#: common/setting/user.py:171 +#: common/setting/user.py:177 msgid "Search queries return results for matches from the item's notes" msgstr "" -#: common/setting/user.py:177 +#: common/setting/user.py:183 msgid "Escape Key Closes Forms" msgstr "Formularios de cierre de teclas de escape" -#: common/setting/user.py:178 +#: common/setting/user.py:184 msgid "Use the escape key to close modal forms" msgstr "Usa la clave de escape para cerrar formularios modales" -#: common/setting/user.py:183 +#: common/setting/user.py:189 msgid "Fixed Navbar" msgstr "Barra de navegación fija" -#: common/setting/user.py:184 +#: common/setting/user.py:190 msgid "The navbar position is fixed to the top of the screen" msgstr "La posición de la barra de navegación se fija en la parte superior de la pantalla" -#: common/setting/user.py:189 +#: common/setting/user.py:195 msgid "Fixed Table Headers" msgstr "" -#: common/setting/user.py:190 +#: common/setting/user.py:196 msgid "Table headers are fixed to the top of the table" msgstr "" -#: common/setting/user.py:195 +#: common/setting/user.py:201 msgid "Show Spotlight" msgstr "" -#: common/setting/user.py:196 +#: common/setting/user.py:202 msgid "Enable spotlight navigation functionality" msgstr "" -#: common/setting/user.py:201 +#: common/setting/user.py:207 msgid "Navigation Icons" msgstr "Iconos de navegación" -#: common/setting/user.py:202 +#: common/setting/user.py:208 msgid "Display icons in the navigation bar" msgstr "" -#: common/setting/user.py:207 +#: common/setting/user.py:213 msgid "Date Format" msgstr "Formato de Fecha" -#: common/setting/user.py:208 +#: common/setting/user.py:214 msgid "Preferred format for displaying dates" msgstr "Formato preferido para mostrar fechas" -#: common/setting/user.py:221 +#: common/setting/user.py:227 msgid "Show Stock History" msgstr "" -#: common/setting/user.py:222 +#: common/setting/user.py:228 msgid "Display stock history information in the part detail page" msgstr "" -#: common/setting/user.py:227 +#: common/setting/user.py:233 msgid "Show Last Breadcrumb" msgstr "" -#: common/setting/user.py:228 +#: common/setting/user.py:234 msgid "Show the current page in breadcrumbs" msgstr "" -#: common/setting/user.py:233 +#: common/setting/user.py:239 msgid "Show full stock location in tables" msgstr "" -#: common/setting/user.py:235 +#: common/setting/user.py:241 msgid "Disabled: The full location path is displayed as a hover tooltip. Enabled: The full location path is displayed as plain text." msgstr "" -#: common/setting/user.py:241 +#: common/setting/user.py:247 msgid "Show full part categories in tables" msgstr "" -#: common/setting/user.py:243 +#: common/setting/user.py:249 msgid "Disabled: The full category path is displayed as a hover tooltip. Enabled: The full category path is displayed as plain text." msgstr "" -#: common/setting/user.py:249 +#: common/setting/user.py:255 msgid "Receive error reports" msgstr "Recibir reportes de error" -#: common/setting/user.py:250 +#: common/setting/user.py:256 msgid "Receive notifications for system errors" msgstr "Recibir notificación de errores del sistema" -#: common/setting/user.py:255 +#: common/setting/user.py:261 msgid "Last used printing machines" msgstr "Últimas impresoras usadas" -#: common/setting/user.py:256 +#: common/setting/user.py:262 msgid "Save the last used printing machines for a user" msgstr "" -#: common/validators.py:34 +#: common/validators.py:38 +msgid "All models" +msgstr "" + +#: common/validators.py:63 msgid "No attachment model type provided" msgstr "" -#: common/validators.py:40 +#: common/validators.py:69 msgid "Invalid attachment model type" msgstr "" -#: common/validators.py:81 +#: common/validators.py:110 msgid "Minimum places cannot be greater than maximum places" msgstr "" -#: common/validators.py:93 +#: common/validators.py:122 msgid "Maximum places cannot be less than minimum places" msgstr "" -#: common/validators.py:104 +#: common/validators.py:133 msgid "An empty domain is not allowed." msgstr "Un dominio vacío no está permitido." -#: common/validators.py:106 +#: common/validators.py:135 #, python-brace-format msgid "Invalid domain name: {domain}" msgstr "Nombre de dominio inválido: {domain}" -#: common/validators.py:122 +#: common/validators.py:151 msgid "Value must be uppercase" msgstr "" -#: common/validators.py:128 +#: common/validators.py:157 msgid "Value must be a valid variable identifier" msgstr "" -#: company/api.py:147 +#: company/api.py:141 msgid "Part is Active" msgstr "" -#: company/api.py:151 +#: company/api.py:145 msgid "Manufacturer is Active" msgstr "" -#: company/api.py:286 +#: company/api.py:246 msgid "Supplier Part is Active" msgstr "" -#: company/api.py:290 +#: company/api.py:250 msgid "Internal Part is Active" msgstr "" -#: company/api.py:295 +#: company/api.py:255 msgid "Supplier is Active" msgstr "" -#: company/api.py:307 company/models.py:520 company/serializers.py:457 -#: part/serializers.py:566 +#: company/api.py:267 company/models.py:522 company/serializers.py:502 +#: part/serializers.py:477 msgid "Manufacturer" msgstr "Fabricante" -#: company/api.py:314 company/models.py:121 company/models.py:392 +#: company/api.py:274 company/models.py:122 company/models.py:393 #: stock/api.py:900 msgid "Company" msgstr "Empresa" -#: company/api.py:324 +#: company/api.py:284 msgid "Has Stock" msgstr "Tiene existencias" -#: company/models.py:122 +#: company/models.py:123 msgid "Companies" msgstr "Empresas" -#: company/models.py:150 +#: company/models.py:151 msgid "Company description" msgstr "Descripción de la empresa" -#: company/models.py:151 +#: company/models.py:152 msgid "Description of the company" msgstr "Descripción de la empresa" -#: company/models.py:157 +#: company/models.py:158 msgid "Website" msgstr "Página web" -#: company/models.py:158 +#: company/models.py:159 msgid "Company website URL" msgstr "URL del sitio web de la empresa" -#: company/models.py:164 +#: company/models.py:165 msgid "Phone number" msgstr "Teléfono" -#: company/models.py:166 +#: company/models.py:167 msgid "Contact phone number" msgstr "Teléfono de contacto" -#: company/models.py:173 +#: company/models.py:174 msgid "Contact email address" msgstr "Correo electrónico de contacto" -#: company/models.py:178 company/models.py:296 order/models.py:513 +#: company/models.py:179 company/models.py:297 order/models.py:514 #: users/models.py:561 msgid "Contact" msgstr "Contacto" -#: company/models.py:180 +#: company/models.py:181 msgid "Point of contact" msgstr "Punto de contacto" -#: company/models.py:186 +#: company/models.py:187 msgid "Link to external company information" msgstr "Enlace a información externa de la empresa" -#: company/models.py:191 +#: company/models.py:192 msgid "Is this company active?" msgstr "¿Esta empresa está activa?" -#: company/models.py:196 +#: company/models.py:197 msgid "Is customer" msgstr "¿Es cliente?" -#: company/models.py:197 +#: company/models.py:198 msgid "Do you sell items to this company?" msgstr "¿Vendes artículos a esta empresa?" -#: company/models.py:202 +#: company/models.py:203 msgid "Is supplier" msgstr "¿Es proveedor?" -#: company/models.py:203 +#: company/models.py:204 msgid "Do you purchase items from this company?" msgstr "¿Compras artículos de esta empresa?" -#: company/models.py:208 +#: company/models.py:209 msgid "Is manufacturer" msgstr "¿Es productor?" -#: company/models.py:209 +#: company/models.py:210 msgid "Does this company manufacture parts?" msgstr "¿Esta empresa fabrica partes?" -#: company/models.py:217 +#: company/models.py:218 msgid "Default currency used for this company" msgstr "Moneda predeterminada utilizada para esta empresa" -#: company/models.py:224 +#: company/models.py:225 msgid "Tax ID" msgstr "" -#: company/models.py:225 +#: company/models.py:226 msgid "Company Tax ID" msgstr "" -#: company/models.py:335 order/models.py:523 order/models.py:2288 +#: company/models.py:336 order/models.py:524 order/models.py:2289 msgid "Address" msgstr "Dirección" -#: company/models.py:336 +#: company/models.py:337 msgid "Addresses" msgstr "Direcciones" -#: company/models.py:393 +#: company/models.py:394 msgid "Select company" msgstr "Seleccionar empresa" -#: company/models.py:398 +#: company/models.py:399 msgid "Address title" msgstr "Título de dirección" -#: company/models.py:399 +#: company/models.py:400 msgid "Title describing the address entry" msgstr "Título que describe la entrada de dirección" -#: company/models.py:405 +#: company/models.py:406 msgid "Primary address" msgstr "Dirección principal" -#: company/models.py:406 +#: company/models.py:407 msgid "Set as primary address" msgstr "Establecer como dirección principal" -#: company/models.py:411 +#: company/models.py:412 msgid "Line 1" msgstr "Línea 1" -#: company/models.py:412 +#: company/models.py:413 msgid "Address line 1" msgstr "Dirección línea 1" -#: company/models.py:418 +#: company/models.py:419 msgid "Line 2" msgstr "Línea 2" -#: company/models.py:419 +#: company/models.py:420 msgid "Address line 2" msgstr "Dirección línea 2" -#: company/models.py:425 company/models.py:426 +#: company/models.py:426 company/models.py:427 msgid "Postal code" msgstr "Código postal" -#: company/models.py:432 +#: company/models.py:433 msgid "City/Region" msgstr "Ciudad/región" -#: company/models.py:433 +#: company/models.py:434 msgid "Postal code city/region" msgstr "Código postal de ciudad/región" -#: company/models.py:439 +#: company/models.py:440 msgid "State/Province" msgstr "Estado/provincia" -#: company/models.py:440 +#: company/models.py:441 msgid "State or province" msgstr "Estado o provincia" -#: company/models.py:446 +#: company/models.py:447 msgid "Country" msgstr "País" -#: company/models.py:447 +#: company/models.py:448 msgid "Address country" msgstr "Dirección de país" -#: company/models.py:453 +#: company/models.py:454 msgid "Courier shipping notes" msgstr "Notas de envío de mensajería" -#: company/models.py:454 +#: company/models.py:455 msgid "Notes for shipping courier" msgstr "Notas para el mensajero de envío" -#: company/models.py:460 +#: company/models.py:461 msgid "Internal shipping notes" msgstr "Notas de envío internas" -#: company/models.py:461 +#: company/models.py:462 msgid "Shipping notes for internal use" msgstr "Notas de envío para uso interno" -#: company/models.py:468 +#: company/models.py:469 msgid "Link to address information (external)" msgstr "Enlace a información de dirección (externa)" -#: company/models.py:492 company/models.py:609 company/models.py:832 -#: company/serializers.py:471 stock/api.py:561 +#: company/models.py:494 company/models.py:786 company/serializers.py:516 +#: stock/api.py:561 msgid "Manufacturer Part" msgstr "Parte del fabricante" -#: company/models.py:509 company/models.py:800 stock/models.py:1025 +#: company/models.py:511 company/models.py:754 stock/models.py:1025 #: stock/serializers.py:407 msgid "Base Part" msgstr "Parte base" -#: company/models.py:511 company/models.py:802 +#: company/models.py:513 company/models.py:756 msgid "Select part" msgstr "Seleccionar parte" -#: company/models.py:521 +#: company/models.py:523 msgid "Select manufacturer" msgstr "Seleccionar fabricante" -#: company/models.py:527 company/serializers.py:479 order/serializers.py:734 -#: part/serializers.py:576 +#: company/models.py:529 company/serializers.py:524 order/serializers.py:745 +#: part/serializers.py:487 msgid "MPN" msgstr "" -#: company/models.py:528 stock/serializers.py:572 +#: company/models.py:530 stock/serializers.py:572 msgid "Manufacturer Part Number" msgstr "Número de parte de fabricante" -#: company/models.py:535 +#: company/models.py:537 msgid "URL for external manufacturer part link" msgstr "URL para el enlace de parte del fabricante externo" -#: company/models.py:544 +#: company/models.py:546 msgid "Manufacturer part description" msgstr "Descripción de la parte del fabricante" -#: company/models.py:597 -msgid "Manufacturer Part Parameter" -msgstr "" - -#: company/models.py:616 -msgid "Parameter name" -msgstr "Nombre del parámetro" - -#: company/models.py:623 -msgid "Parameter value" -msgstr "Valor del parámetro" - -#: company/models.py:630 part/models.py:1195 part/models.py:3857 -msgid "Units" -msgstr "Unidades" - -#: company/models.py:631 -msgid "Parameter units" -msgstr "Unidades de parámetro" - -#: company/models.py:740 +#: company/models.py:694 msgid "Pack units must be compatible with the base part units" msgstr "Las unidades de paquete deben ser compatibles con las unidades de partes de base" -#: company/models.py:747 +#: company/models.py:701 msgid "Pack units must be greater than zero" msgstr "Las unidades de paquete deben ser mayor que cero" -#: company/models.py:761 +#: company/models.py:715 msgid "Linked manufacturer part must reference the same base part" msgstr "La parte vinculada del fabricante debe hacer referencia a la misma parte base" -#: company/models.py:810 company/serializers.py:449 company/serializers.py:467 -#: order/models.py:639 part/serializers.py:550 +#: company/models.py:764 company/serializers.py:494 company/serializers.py:512 +#: order/models.py:640 part/serializers.py:461 #: plugin/builtin/suppliers/digikey.py:26 plugin/builtin/suppliers/lcsc.py:27 #: plugin/builtin/suppliers/mouser.py:25 plugin/builtin/suppliers/tme.py:27 #: stock/api.py:567 templates/email/overdue_purchase_order.html:16 msgid "Supplier" msgstr "Proveedor" -#: company/models.py:811 +#: company/models.py:765 msgid "Select supplier" msgstr "Seleccionar proveedor" -#: company/models.py:817 part/serializers.py:561 +#: company/models.py:771 part/serializers.py:472 msgid "Supplier stock keeping unit" msgstr "Unidad de mantenimiento de stock de proveedores" -#: company/models.py:823 +#: company/models.py:777 msgid "Is this supplier part active?" msgstr "" -#: company/models.py:833 +#: company/models.py:787 msgid "Select manufacturer part" msgstr "Seleccionar parte del fabricante" -#: company/models.py:840 +#: company/models.py:794 msgid "URL for external supplier part link" msgstr "URL del enlace de parte del proveedor externo" -#: company/models.py:849 +#: company/models.py:803 msgid "Supplier part description" msgstr "Descripción de la parte del proveedor" -#: company/models.py:856 order/serializers.py:883 order/serializers.py:2047 -#: part/models.py:4070 part/models.py:4450 part/models.py:4819 -#: report/templates/report/inventree_bill_of_materials_report.html:140 -#: report/templates/report/inventree_purchase_order_report.html:39 -#: report/templates/report/inventree_return_order_report.html:27 -#: report/templates/report/inventree_sales_order_report.html:32 -#: report/templates/report/inventree_stock_location_report.html:105 -#: stock/serializers.py:813 -msgid "Note" -msgstr "Nota" - -#: company/models.py:865 part/models.py:2250 +#: company/models.py:819 part/models.py:2338 msgid "base cost" msgstr "costo base" -#: company/models.py:866 part/models.py:2251 +#: company/models.py:820 part/models.py:2339 msgid "Minimum charge (e.g. stocking fee)" msgstr "Cargo mínimo (p. ej., cuota de almacenamiento)" -#: company/models.py:873 order/serializers.py:875 stock/models.py:1056 +#: company/models.py:827 order/serializers.py:886 stock/models.py:1056 #: stock/serializers.py:1606 msgid "Packaging" msgstr "Paquetes" -#: company/models.py:874 +#: company/models.py:828 msgid "Part packaging" msgstr "Embalaje de partes" -#: company/models.py:879 +#: company/models.py:833 msgid "Pack Quantity" msgstr "Cantidad de paquete" -#: company/models.py:881 +#: company/models.py:835 msgid "Total quantity supplied in a single pack. Leave empty for single items." msgstr "Cantidad total suministrada en un solo paquete. Dejar vacío para artículos individuales." -#: company/models.py:900 part/models.py:2257 +#: company/models.py:854 part/models.py:2345 msgid "multiple" msgstr "múltiple" -#: company/models.py:901 +#: company/models.py:855 msgid "Order multiple" msgstr "Pedido múltiple" -#: company/models.py:913 +#: company/models.py:867 msgid "Quantity available from supplier" msgstr "Cantidad disponible del proveedor" -#: company/models.py:919 +#: company/models.py:873 msgid "Availability Updated" msgstr "Disponibilidad actualizada" -#: company/models.py:920 +#: company/models.py:874 msgid "Date of last update of availability data" msgstr "Fecha de última actualización de los datos de disponibilidad" -#: company/models.py:1048 +#: company/models.py:1002 msgid "Supplier Price Break" msgstr "" -#: company/serializers.py:181 +#: company/serializers.py:184 +msgid "Primary Address" +msgstr "" + +#: company/serializers.py:186 msgid "Return the string representation for the primary address. This property exists for backwards compatibility." msgstr "" -#: company/serializers.py:212 +#: company/serializers.py:218 msgid "Default currency used for this supplier" msgstr "Moneda predeterminada utilizada para este proveedor" -#: company/serializers.py:248 +#: company/serializers.py:260 msgid "Company Name" msgstr "Nombre de la empresa" -#: company/serializers.py:433 part/serializers.py:955 stock/serializers.py:428 +#: company/serializers.py:460 part/serializers.py:840 stock/serializers.py:428 msgid "In Stock" msgstr "En Stock" +#: company/serializers.py:477 +msgid "Price Breaks" +msgstr "" + #: data_exporter/mixins.py:325 data_exporter/mixins.py:403 msgid "Error occurred during data export" msgstr "" @@ -4290,7 +4418,7 @@ msgstr "Datos de la fila original" msgid "Errors" msgstr "Errores" -#: importer/models.py:550 part/serializers.py:1268 +#: importer/models.py:550 part/serializers.py:1133 msgid "Valid" msgstr "Válido" @@ -4402,7 +4530,7 @@ msgstr "Número de copias a imprimir para cada etiqueta" msgid "Connected" msgstr "Conectado" -#: machine/machine_types/label_printer.py:232 order/api.py:1795 +#: machine/machine_types/label_printer.py:232 order/api.py:1800 msgid "Unknown" msgstr "Desconocido" @@ -4530,105 +4658,105 @@ msgstr "" msgid "Maximum value for progress type, required if type=progress" msgstr "" -#: order/api.py:125 +#: order/api.py:130 msgid "Order Reference" msgstr "Referencia del pedido" -#: order/api.py:153 order/api.py:1207 +#: order/api.py:158 order/api.py:1212 msgid "Outstanding" msgstr "Destacado" -#: order/api.py:169 +#: order/api.py:174 msgid "Has Project Code" msgstr "Tiene Código de Proyecto" -#: order/api.py:183 order/models.py:488 +#: order/api.py:188 order/models.py:489 msgid "Created By" msgstr "Creado por" -#: order/api.py:187 +#: order/api.py:192 msgid "Created Before" msgstr "Creado antes de" -#: order/api.py:191 +#: order/api.py:196 msgid "Created After" msgstr "Creado después de" -#: order/api.py:195 +#: order/api.py:200 msgid "Has Start Date" msgstr "" -#: order/api.py:203 +#: order/api.py:208 msgid "Start Date Before" msgstr "" -#: order/api.py:207 +#: order/api.py:212 msgid "Start Date After" msgstr "" -#: order/api.py:211 +#: order/api.py:216 msgid "Has Target Date" msgstr "" -#: order/api.py:219 +#: order/api.py:224 msgid "Target Date Before" msgstr "Fecha objetivo antes de" -#: order/api.py:223 +#: order/api.py:228 msgid "Target Date After" msgstr "Fecha objetivo después de" -#: order/api.py:274 +#: order/api.py:279 msgid "Has Pricing" msgstr "Tiene Precio" -#: order/api.py:327 order/api.py:812 order/api.py:1490 +#: order/api.py:332 order/api.py:818 order/api.py:1495 msgid "Completed Before" msgstr "Completado antes de" -#: order/api.py:331 order/api.py:816 order/api.py:1494 +#: order/api.py:336 order/api.py:822 order/api.py:1499 msgid "Completed After" msgstr "Completado después de" -#: order/api.py:337 order/api.py:341 +#: order/api.py:342 order/api.py:346 msgid "External Build Order" msgstr "" -#: order/api.py:526 order/api.py:914 order/api.py:1170 order/models.py:1922 -#: order/models.py:2049 order/models.py:2099 order/models.py:2279 -#: order/models.py:2477 order/models.py:2999 order/models.py:3065 +#: order/api.py:532 order/api.py:919 order/api.py:1175 order/models.py:1923 +#: order/models.py:2050 order/models.py:2100 order/models.py:2280 +#: order/models.py:2478 order/models.py:3000 order/models.py:3066 msgid "Order" msgstr "Orden" -#: order/api.py:530 order/api.py:982 +#: order/api.py:536 order/api.py:987 msgid "Order Complete" msgstr "Orden completada" -#: order/api.py:562 order/api.py:566 order/serializers.py:745 +#: order/api.py:568 order/api.py:572 order/serializers.py:756 msgid "Internal Part" msgstr "Componente interno" -#: order/api.py:584 +#: order/api.py:590 msgid "Order Pending" msgstr "Orden pendiente" -#: order/api.py:967 +#: order/api.py:972 msgid "Completed" msgstr "Completados" -#: order/api.py:1223 +#: order/api.py:1228 msgid "Has Shipment" msgstr "Tiene envío" -#: order/api.py:1789 order/models.py:552 order/models.py:1923 -#: order/models.py:2050 +#: order/api.py:1794 order/models.py:553 order/models.py:1924 +#: order/models.py:2051 #: report/templates/report/inventree_purchase_order_report.html:14 #: stock/serializers.py:129 templates/email/overdue_purchase_order.html:15 msgid "Purchase Order" msgstr "Orden de compra" -#: order/api.py:1791 order/models.py:1251 order/models.py:2100 -#: order/models.py:2280 order/models.py:2478 +#: order/api.py:1796 order/models.py:1252 order/models.py:2101 +#: order/models.py:2281 order/models.py:2479 #: report/templates/report/inventree_build_order_report.html:135 #: report/templates/report/inventree_sales_order_report.html:14 #: report/templates/report/inventree_sales_order_shipment_report.html:15 @@ -4636,8 +4764,8 @@ msgstr "Orden de compra" msgid "Sales Order" msgstr "Orden de Venta" -#: order/api.py:1793 order/models.py:2649 order/models.py:3000 -#: order/models.py:3066 +#: order/api.py:1798 order/models.py:2650 order/models.py:3001 +#: order/models.py:3067 #: report/templates/report/inventree_return_order_report.html:13 #: templates/email/overdue_return_order.html:15 msgid "Return Order" @@ -4653,722 +4781,722 @@ msgstr "Precio Total" msgid "Total price for this order" msgstr "Precio total para este pedido" -#: order/models.py:96 order/serializers.py:77 +#: order/models.py:96 order/serializers.py:78 msgid "Order Currency" msgstr "Moneda de pedido" -#: order/models.py:99 order/serializers.py:78 +#: order/models.py:99 order/serializers.py:79 msgid "Currency for this order (leave blank to use company default)" msgstr "Moneda para este pedido (dejar en blanco para utilizar el valor predeterminado de la empresa)" -#: order/models.py:324 +#: order/models.py:325 msgid "This order is locked and cannot be modified" msgstr "" -#: order/models.py:376 +#: order/models.py:377 msgid "Contact does not match selected company" msgstr "El contacto no coincide con la empresa seleccionada" -#: order/models.py:383 +#: order/models.py:384 msgid "Start date must be before target date" msgstr "" -#: order/models.py:390 +#: order/models.py:391 msgid "Address does not match selected company" msgstr "" -#: order/models.py:443 +#: order/models.py:444 msgid "Order description (optional)" msgstr "Descripción del pedido (opcional)" -#: order/models.py:452 order/models.py:1806 +#: order/models.py:453 order/models.py:1807 msgid "Select project code for this order" msgstr "Seleccione el código del proyecto para este pedido" -#: order/models.py:458 order/models.py:1787 order/models.py:2344 +#: order/models.py:459 order/models.py:1788 order/models.py:2345 msgid "Link to external page" msgstr "Enlace a Url externa" -#: order/models.py:465 +#: order/models.py:466 msgid "Start date" msgstr "" -#: order/models.py:466 +#: order/models.py:467 msgid "Scheduled start date for this order" msgstr "" -#: order/models.py:472 order/models.py:1794 order/serializers.py:309 +#: order/models.py:473 order/models.py:1795 order/serializers.py:317 #: report/templates/report/inventree_build_order_report.html:125 msgid "Target Date" msgstr "Fecha objetivo" -#: order/models.py:474 +#: order/models.py:475 msgid "Expected date for order delivery. Order will be overdue after this date." msgstr "Fecha esperada para la entrega del pedido. El pedido se retrasará después de esta fecha." -#: order/models.py:494 +#: order/models.py:495 msgid "Issue Date" msgstr "Fecha de emisión" -#: order/models.py:495 +#: order/models.py:496 msgid "Date order was issued" msgstr "Fecha de expedición del pedido" -#: order/models.py:503 +#: order/models.py:504 msgid "User or group responsible for this order" msgstr "Usuario o grupo responsable de este pedido" -#: order/models.py:514 +#: order/models.py:515 msgid "Point of contact for this order" msgstr "Punto de contacto para este pedido" -#: order/models.py:524 +#: order/models.py:525 msgid "Company address for this order" msgstr "Dirección de la empresa para este pedido" -#: order/models.py:615 order/models.py:1312 +#: order/models.py:616 order/models.py:1313 msgid "Order reference" msgstr "Referencia del pedido" -#: order/models.py:624 order/models.py:1336 order/models.py:2737 +#: order/models.py:625 order/models.py:1337 order/models.py:2738 #: stock/serializers.py:559 stock/serializers.py:988 users/models.py:542 msgid "Status" msgstr "Estado" -#: order/models.py:625 +#: order/models.py:626 msgid "Purchase order status" msgstr "Estado de la orden de compra" -#: order/models.py:640 +#: order/models.py:641 msgid "Company from which the items are being ordered" msgstr "Empresa de la cual se están encargando los artículos" -#: order/models.py:651 +#: order/models.py:652 msgid "Supplier Reference" msgstr "Referencia del proveedor" -#: order/models.py:652 +#: order/models.py:653 msgid "Supplier order reference code" msgstr "Código de referencia de pedido del proveedor" -#: order/models.py:661 +#: order/models.py:662 msgid "received by" msgstr "recibido por" -#: order/models.py:668 order/models.py:2752 +#: order/models.py:669 order/models.py:2753 msgid "Date order was completed" msgstr "La fecha de pedido fue completada" -#: order/models.py:677 order/models.py:1981 +#: order/models.py:678 order/models.py:1982 msgid "Destination" msgstr "Destinación" -#: order/models.py:678 order/models.py:1985 +#: order/models.py:679 order/models.py:1986 msgid "Destination for received items" msgstr "Destino para los artículos recibidos" -#: order/models.py:724 +#: order/models.py:725 msgid "Part supplier must match PO supplier" msgstr "El proveedor de la parte debe coincidir con el proveedor de PO" -#: order/models.py:994 +#: order/models.py:995 msgid "Line item does not match purchase order" msgstr "La partida no coincide con la orden de compra" -#: order/models.py:997 +#: order/models.py:998 msgid "Line item is missing a linked part" msgstr "" -#: order/models.py:1011 +#: order/models.py:1012 msgid "Quantity must be a positive number" msgstr "La cantidad debe ser un número positivo" -#: order/models.py:1323 order/models.py:2724 stock/models.py:1078 +#: order/models.py:1324 order/models.py:2725 stock/models.py:1078 #: stock/models.py:1079 stock/serializers.py:1322 #: templates/email/overdue_return_order.html:16 #: templates/email/overdue_sales_order.html:16 msgid "Customer" msgstr "Cliente" -#: order/models.py:1324 +#: order/models.py:1325 msgid "Company to which the items are being sold" msgstr "Empresa a la que se venden los artículos" -#: order/models.py:1337 +#: order/models.py:1338 msgid "Sales order status" msgstr "Estado de la orden de venta" -#: order/models.py:1348 order/models.py:2744 +#: order/models.py:1349 order/models.py:2745 msgid "Customer Reference " msgstr "Referencia del cliente " -#: order/models.py:1349 order/models.py:2745 +#: order/models.py:1350 order/models.py:2746 msgid "Customer order reference code" msgstr "Código de referencia de pedido del cliente" -#: order/models.py:1353 order/models.py:2296 +#: order/models.py:1354 order/models.py:2297 msgid "Shipment Date" msgstr "Fecha de envío" -#: order/models.py:1362 +#: order/models.py:1363 msgid "shipped by" msgstr "enviado por" -#: order/models.py:1413 +#: order/models.py:1414 msgid "Order is already complete" msgstr "La orden ya fue completada" -#: order/models.py:1416 +#: order/models.py:1417 msgid "Order is already cancelled" msgstr "La orden ya fue cancelada" -#: order/models.py:1420 +#: order/models.py:1421 msgid "Only an open order can be marked as complete" msgstr "Sólo una orden abierta puede ser marcada como completa" -#: order/models.py:1424 +#: order/models.py:1425 msgid "Order cannot be completed as there are incomplete shipments" msgstr "El pedido no se puede completar porque hay envíos incompletos" -#: order/models.py:1429 +#: order/models.py:1430 msgid "Order cannot be completed as there are incomplete allocations" msgstr "El pedido no se puede completar ya que hay asignaciones incompletas" -#: order/models.py:1438 +#: order/models.py:1439 msgid "Order cannot be completed as there are incomplete line items" msgstr "El pedido no se puede completar porque hay partidas incompletas" -#: order/models.py:1733 order/models.py:1749 +#: order/models.py:1734 order/models.py:1750 msgid "The order is locked and cannot be modified" msgstr "" -#: order/models.py:1757 +#: order/models.py:1758 msgid "Item quantity" msgstr "Cantidad del artículo" -#: order/models.py:1774 +#: order/models.py:1775 msgid "Line item reference" msgstr "Referencia de partida" -#: order/models.py:1781 +#: order/models.py:1782 msgid "Line item notes" msgstr "Notas de partida" -#: order/models.py:1796 +#: order/models.py:1797 msgid "Target date for this line item (leave blank to use the target date from the order)" msgstr "Fecha objetivo para esta partida (dejar en blanco para usar la fecha de destino de la orden)" -#: order/models.py:1826 +#: order/models.py:1827 msgid "Line item description (optional)" msgstr "Descripción de partida (opcional)" -#: order/models.py:1833 +#: order/models.py:1834 msgid "Additional context for this line" msgstr "Contexto adicional para esta línea" -#: order/models.py:1843 +#: order/models.py:1844 msgid "Unit price" msgstr "Precio unitario" -#: order/models.py:1862 +#: order/models.py:1863 msgid "Purchase Order Line Item" msgstr "" -#: order/models.py:1889 +#: order/models.py:1890 msgid "Supplier part must match supplier" msgstr "La parte del proveedor debe coincidir con el proveedor" -#: order/models.py:1894 +#: order/models.py:1895 msgid "Build order must be marked as external" msgstr "" -#: order/models.py:1901 +#: order/models.py:1902 msgid "Build orders can only be linked to assembly parts" msgstr "" -#: order/models.py:1907 +#: order/models.py:1908 msgid "Build order part must match line item part" msgstr "" -#: order/models.py:1942 +#: order/models.py:1943 msgid "Supplier part" msgstr "Parte del proveedor" -#: order/models.py:1949 +#: order/models.py:1950 msgid "Received" msgstr "Recibido" -#: order/models.py:1950 +#: order/models.py:1951 msgid "Number of items received" msgstr "Número de artículos recibidos" -#: order/models.py:1958 stock/models.py:1201 stock/serializers.py:637 +#: order/models.py:1959 stock/models.py:1201 stock/serializers.py:637 msgid "Purchase Price" msgstr "Precio de Compra" -#: order/models.py:1959 +#: order/models.py:1960 msgid "Unit purchase price" msgstr "Precio de compra unitario" -#: order/models.py:1975 +#: order/models.py:1976 msgid "External Build Order to be fulfilled by this line item" msgstr "" -#: order/models.py:2038 +#: order/models.py:2039 msgid "Purchase Order Extra Line" msgstr "" -#: order/models.py:2067 +#: order/models.py:2068 msgid "Sales Order Line Item" msgstr "" -#: order/models.py:2092 +#: order/models.py:2093 msgid "Only salable parts can be assigned to a sales order" msgstr "Sólo las partes vendibles pueden ser asignadas a un pedido de venta" -#: order/models.py:2118 +#: order/models.py:2119 msgid "Sale Price" msgstr "Precio de Venta" -#: order/models.py:2119 +#: order/models.py:2120 msgid "Unit sale price" msgstr "Precio de venta unitario" -#: order/models.py:2128 order/status_codes.py:50 +#: order/models.py:2129 order/status_codes.py:50 msgid "Shipped" msgstr "Enviado" -#: order/models.py:2129 +#: order/models.py:2130 msgid "Shipped quantity" msgstr "Cantidad enviada" -#: order/models.py:2240 +#: order/models.py:2241 msgid "Sales Order Shipment" msgstr "" -#: order/models.py:2253 +#: order/models.py:2254 msgid "Shipment address must match the customer" msgstr "" -#: order/models.py:2289 +#: order/models.py:2290 msgid "Shipping address for this shipment" msgstr "" -#: order/models.py:2297 +#: order/models.py:2298 msgid "Date of shipment" msgstr "Fecha del envío" -#: order/models.py:2303 +#: order/models.py:2304 msgid "Delivery Date" msgstr "Fecha de entrega" -#: order/models.py:2304 +#: order/models.py:2305 msgid "Date of delivery of shipment" msgstr "Fecha de entrega del envío" -#: order/models.py:2312 +#: order/models.py:2313 msgid "Checked By" msgstr "Revisado por" -#: order/models.py:2313 +#: order/models.py:2314 msgid "User who checked this shipment" msgstr "Usuario que revisó este envío" -#: order/models.py:2320 order/models.py:2574 order/serializers.py:1711 -#: order/serializers.py:1835 +#: order/models.py:2321 order/models.py:2575 order/serializers.py:1725 +#: order/serializers.py:1849 #: report/templates/report/inventree_sales_order_shipment_report.html:14 msgid "Shipment" msgstr "Envío" -#: order/models.py:2321 +#: order/models.py:2322 msgid "Shipment number" msgstr "Número de envío" -#: order/models.py:2329 +#: order/models.py:2330 msgid "Tracking Number" msgstr "Número de Seguimiento" -#: order/models.py:2330 +#: order/models.py:2331 msgid "Shipment tracking information" msgstr "Información de seguimiento del envío" -#: order/models.py:2337 +#: order/models.py:2338 msgid "Invoice Number" msgstr "Número de factura" -#: order/models.py:2338 +#: order/models.py:2339 msgid "Reference number for associated invoice" msgstr "Número de referencia para la factura asociada" -#: order/models.py:2377 +#: order/models.py:2378 msgid "Shipment has already been sent" msgstr "El envío ya ha sido enviado" -#: order/models.py:2380 +#: order/models.py:2381 msgid "Shipment has no allocated stock items" msgstr "El envío no tiene artículos de stock asignados" -#: order/models.py:2387 +#: order/models.py:2388 msgid "Shipment must be checked before it can be completed" msgstr "" -#: order/models.py:2466 +#: order/models.py:2467 msgid "Sales Order Extra Line" msgstr "" -#: order/models.py:2495 +#: order/models.py:2496 msgid "Sales Order Allocation" msgstr "" -#: order/models.py:2518 order/models.py:2520 +#: order/models.py:2519 order/models.py:2521 msgid "Stock item has not been assigned" msgstr "El artículo de stock no ha sido asignado" -#: order/models.py:2527 +#: order/models.py:2528 msgid "Cannot allocate stock item to a line with a different part" msgstr "No se puede asignar el artículo de stock a una línea con una parte diferente" -#: order/models.py:2530 +#: order/models.py:2531 msgid "Cannot allocate stock to a line without a part" msgstr "No se puede asignar stock a una línea sin una parte" -#: order/models.py:2533 +#: order/models.py:2534 msgid "Allocation quantity cannot exceed stock quantity" msgstr "La cantidad de asignación no puede exceder la cantidad de stock" -#: order/models.py:2552 order/serializers.py:1581 +#: order/models.py:2553 order/serializers.py:1595 msgid "Quantity must be 1 for serialized stock item" msgstr "La cantidad debe ser 1 para el stock serializado" -#: order/models.py:2555 +#: order/models.py:2556 msgid "Sales order does not match shipment" msgstr "La orden de venta no coincide con el envío" -#: order/models.py:2556 plugin/base/barcodes/api.py:642 +#: order/models.py:2557 plugin/base/barcodes/api.py:642 msgid "Shipment does not match sales order" msgstr "El envío no coincide con el pedido de venta" -#: order/models.py:2564 +#: order/models.py:2565 msgid "Line" msgstr "Línea" -#: order/models.py:2575 +#: order/models.py:2576 msgid "Sales order shipment reference" msgstr "Referencia del envío del pedido de venta" -#: order/models.py:2588 order/models.py:3007 +#: order/models.py:2589 order/models.py:3008 msgid "Item" msgstr "Ítem" -#: order/models.py:2589 +#: order/models.py:2590 msgid "Select stock item to allocate" msgstr "Seleccionar artículo de stock para asignar" -#: order/models.py:2598 +#: order/models.py:2599 msgid "Enter stock allocation quantity" msgstr "Especificar la cantidad de asignación de stock" -#: order/models.py:2713 +#: order/models.py:2714 msgid "Return Order reference" msgstr "Referencia de la orden de devolución" -#: order/models.py:2725 +#: order/models.py:2726 msgid "Company from which items are being returned" msgstr "Empresa de la cual se están devolviendo los artículos" -#: order/models.py:2738 +#: order/models.py:2739 msgid "Return order status" msgstr "Estado de la orden de devolución" -#: order/models.py:2965 +#: order/models.py:2966 msgid "Return Order Line Item" msgstr "" -#: order/models.py:2978 +#: order/models.py:2979 msgid "Stock item must be specified" msgstr "El artículo de almacén debe ser especificado" -#: order/models.py:2982 +#: order/models.py:2983 msgid "Return quantity exceeds stock quantity" msgstr "La cantidad de retorno excede la cantidad de existencias" -#: order/models.py:2987 +#: order/models.py:2988 msgid "Return quantity must be greater than zero" msgstr "La cantidad de retorno debe ser mayor que cero" -#: order/models.py:2992 +#: order/models.py:2993 msgid "Invalid quantity for serialized stock item" msgstr "Cantidad inválida para el artículo de stock serializado" -#: order/models.py:3008 +#: order/models.py:3009 msgid "Select item to return from customer" msgstr "Seleccionar el artículo a devolver del cliente" -#: order/models.py:3023 +#: order/models.py:3024 msgid "Received Date" msgstr "Fecha de recepción" -#: order/models.py:3024 +#: order/models.py:3025 msgid "The date this this return item was received" msgstr "La fecha en la que se recibió este artículo de devolución" -#: order/models.py:3036 +#: order/models.py:3037 msgid "Outcome" msgstr "Resultado" -#: order/models.py:3037 +#: order/models.py:3038 msgid "Outcome for this line item" msgstr "Salida para esta partida" -#: order/models.py:3044 +#: order/models.py:3045 msgid "Cost associated with return or repair for this line item" msgstr "Costo asociado con la devolución o reparación para esta partida" -#: order/models.py:3054 +#: order/models.py:3055 msgid "Return Order Extra Line" msgstr "" -#: order/serializers.py:91 +#: order/serializers.py:92 msgid "Order ID" msgstr "ID del Pedido" -#: order/serializers.py:91 +#: order/serializers.py:92 msgid "ID of the order to duplicate" msgstr "ID del pedido a duplicar" -#: order/serializers.py:97 +#: order/serializers.py:98 msgid "Copy Lines" msgstr "Copiar líneas" -#: order/serializers.py:98 +#: order/serializers.py:99 msgid "Copy line items from the original order" msgstr "Copiar partida del pedido original" -#: order/serializers.py:104 +#: order/serializers.py:105 msgid "Copy Extra Lines" msgstr "Copiar líneas adicionales" -#: order/serializers.py:105 +#: order/serializers.py:106 msgid "Copy extra line items from the original order" msgstr "Copiar partidas extra del pedido original" -#: order/serializers.py:120 +#: order/serializers.py:121 #: report/templates/report/inventree_purchase_order_report.html:29 #: report/templates/report/inventree_return_order_report.html:19 #: report/templates/report/inventree_sales_order_report.html:22 msgid "Line Items" msgstr "Partidas" -#: order/serializers.py:125 +#: order/serializers.py:126 msgid "Completed Lines" msgstr "Líneas completadas" -#: order/serializers.py:192 +#: order/serializers.py:199 msgid "Duplicate Order" msgstr "Duplicar pedido" -#: order/serializers.py:193 +#: order/serializers.py:200 msgid "Specify options for duplicating this order" msgstr "Especificar opciones para duplicar este pedido" -#: order/serializers.py:270 +#: order/serializers.py:278 msgid "Invalid order ID" msgstr "ID de pedido inválido" -#: order/serializers.py:466 +#: order/serializers.py:477 msgid "Supplier Name" msgstr "Nombre del proveedor" -#: order/serializers.py:510 +#: order/serializers.py:521 msgid "Order cannot be cancelled" msgstr "El pedido no puede ser cancelado" -#: order/serializers.py:525 order/serializers.py:1602 +#: order/serializers.py:536 order/serializers.py:1616 msgid "Allow order to be closed with incomplete line items" msgstr "Permitir cerrar el pedido con partidas incompletas" -#: order/serializers.py:535 order/serializers.py:1612 +#: order/serializers.py:546 order/serializers.py:1626 msgid "Order has incomplete line items" msgstr "El pedido tiene partidas incompletas" -#: order/serializers.py:665 +#: order/serializers.py:676 msgid "Order is not open" msgstr "El pedido no está abierto" -#: order/serializers.py:692 +#: order/serializers.py:703 msgid "Auto Pricing" msgstr "Precio automático" -#: order/serializers.py:694 +#: order/serializers.py:705 msgid "Automatically calculate purchase price based on supplier part data" msgstr "Calcular precio de compra automáticamente con base en los datos del proveedor" -#: order/serializers.py:704 +#: order/serializers.py:715 msgid "Purchase price currency" msgstr "Moneda del precio de compra" -#: order/serializers.py:718 +#: order/serializers.py:729 msgid "Merge Items" msgstr "Combinar artículos" -#: order/serializers.py:720 +#: order/serializers.py:731 msgid "Merge items with the same part, destination and target date into one line item" msgstr "" -#: order/serializers.py:727 part/serializers.py:560 +#: order/serializers.py:738 part/serializers.py:471 msgid "SKU" msgstr "SKU" -#: order/serializers.py:741 part/models.py:1089 part/serializers.py:372 +#: order/serializers.py:752 part/models.py:1177 part/serializers.py:337 msgid "Internal Part Number" msgstr "Número de parte interna" -#: order/serializers.py:749 +#: order/serializers.py:760 msgid "Internal Part Name" msgstr "Nombre interno de parte" -#: order/serializers.py:765 +#: order/serializers.py:776 msgid "Supplier part must be specified" msgstr "Debe especificar la parte del proveedor" -#: order/serializers.py:768 +#: order/serializers.py:779 msgid "Purchase order must be specified" msgstr "La orden de compra debe especificarse" -#: order/serializers.py:776 +#: order/serializers.py:787 msgid "Supplier must match purchase order" msgstr "El proveedor debe coincidir con la orden de compra" -#: order/serializers.py:777 +#: order/serializers.py:788 msgid "Purchase order must match supplier" msgstr "La orden de compra debe coincidir con el proveedor" -#: order/serializers.py:825 order/serializers.py:1682 +#: order/serializers.py:836 order/serializers.py:1696 msgid "Line Item" msgstr "Partida" -#: order/serializers.py:834 order/serializers.py:974 order/serializers.py:2043 +#: order/serializers.py:845 order/serializers.py:985 order/serializers.py:2060 msgid "Select destination location for received items" msgstr "Seleccione la ubicación de destino para los artículos recibidos" -#: order/serializers.py:850 +#: order/serializers.py:861 msgid "Enter batch code for incoming stock items" msgstr "Introduzca el código de lote para los artículos de almacén entrantes" -#: order/serializers.py:857 stock/models.py:1160 +#: order/serializers.py:868 stock/models.py:1160 #: templates/email/stale_stock_notification.html:22 users/models.py:137 msgid "Expiry Date" msgstr "Fecha de Expiración" -#: order/serializers.py:858 +#: order/serializers.py:869 msgid "Enter expiry date for incoming stock items" msgstr "" -#: order/serializers.py:866 +#: order/serializers.py:877 msgid "Enter serial numbers for incoming stock items" msgstr "Introduzca números de serie para artículos de almacén entrantes" -#: order/serializers.py:876 +#: order/serializers.py:887 msgid "Override packaging information for incoming stock items" msgstr "" -#: order/serializers.py:884 order/serializers.py:2048 +#: order/serializers.py:895 order/serializers.py:2065 msgid "Additional note for incoming stock items" msgstr "" -#: order/serializers.py:891 +#: order/serializers.py:902 msgid "Barcode" msgstr "Código de barras" -#: order/serializers.py:892 +#: order/serializers.py:903 msgid "Scanned barcode" msgstr "Código de barras escaneado" -#: order/serializers.py:908 +#: order/serializers.py:919 msgid "Barcode is already in use" msgstr "Código de barras en uso" -#: order/serializers.py:991 order/serializers.py:2067 +#: order/serializers.py:1002 order/serializers.py:2084 msgid "Line items must be provided" msgstr "Se deben proporcionar las partidas" -#: order/serializers.py:1010 +#: order/serializers.py:1021 msgid "Destination location must be specified" msgstr "Se requiere ubicación de destino" -#: order/serializers.py:1017 +#: order/serializers.py:1028 msgid "Supplied barcode values must be unique" msgstr "Los valores del código de barras deben ser únicos" -#: order/serializers.py:1121 +#: order/serializers.py:1135 msgid "Shipments" msgstr "Envíos" -#: order/serializers.py:1125 +#: order/serializers.py:1139 msgid "Completed Shipments" msgstr "Envíos completados" -#: order/serializers.py:1293 +#: order/serializers.py:1307 msgid "Sale price currency" msgstr "Moneda del precio de venta" -#: order/serializers.py:1339 +#: order/serializers.py:1353 msgid "Allocated Items" msgstr "Elementos asignados" -#: order/serializers.py:1484 +#: order/serializers.py:1498 msgid "No shipment details provided" msgstr "No se proporcionaron detalles de envío" -#: order/serializers.py:1545 order/serializers.py:1691 +#: order/serializers.py:1559 order/serializers.py:1705 msgid "Line item is not associated with this order" msgstr "La partida no está asociada con este pedido" -#: order/serializers.py:1564 +#: order/serializers.py:1578 msgid "Quantity must be positive" msgstr "La cantidad debe ser positiva" -#: order/serializers.py:1701 +#: order/serializers.py:1715 msgid "Enter serial numbers to allocate" msgstr "Introduzca números de serie para asignar" -#: order/serializers.py:1723 order/serializers.py:1843 +#: order/serializers.py:1737 order/serializers.py:1857 msgid "Shipment has already been shipped" msgstr "El envío ya ha sido enviado" -#: order/serializers.py:1726 order/serializers.py:1846 +#: order/serializers.py:1740 order/serializers.py:1860 msgid "Shipment is not associated with this order" msgstr "El envío no está asociado con este pedido" -#: order/serializers.py:1781 +#: order/serializers.py:1795 msgid "No match found for the following serial numbers" msgstr "No se han encontrado coincidencias para los siguientes números de serie" -#: order/serializers.py:1788 +#: order/serializers.py:1802 msgid "The following serial numbers are unavailable" msgstr "Los siguientes números de serie no están disponibles" -#: order/serializers.py:2009 +#: order/serializers.py:2026 msgid "Return order line item" msgstr "Partida de orden de devolución" -#: order/serializers.py:2019 +#: order/serializers.py:2036 msgid "Line item does not match return order" msgstr "La partida no coincide con la orden de devolución" -#: order/serializers.py:2022 +#: order/serializers.py:2039 msgid "Line item has already been received" msgstr "La partida ya ha sido recibida" -#: order/serializers.py:2059 +#: order/serializers.py:2076 msgid "Items can only be received against orders which are in progress" msgstr "Los artículos sólo pueden ser recibidos contra pedidos en curso" -#: order/serializers.py:2124 +#: order/serializers.py:2141 msgid "Quantity to return" msgstr "Cantidad a devolver" -#: order/serializers.py:2140 +#: order/serializers.py:2157 msgid "Line price currency" msgstr "Moneda de precio de línea" @@ -5431,1190 +5559,1109 @@ msgstr "" msgid "Return order {ro} is now overdue" msgstr "" -#: part/api.py:108 +#: part/api.py:103 msgid "Starred" msgstr "Favoritos" -#: part/api.py:110 +#: part/api.py:105 msgid "Filter by starred categories" msgstr "" -#: part/api.py:127 stock/api.py:288 +#: part/api.py:122 stock/api.py:288 msgid "Depth" msgstr "Profundidad" -#: part/api.py:127 +#: part/api.py:122 msgid "Filter by category depth" msgstr "Filtrar por profundidad de categoría" -#: part/api.py:145 stock/api.py:306 +#: part/api.py:140 stock/api.py:306 msgid "Top Level" msgstr "Nivel superior" -#: part/api.py:147 +#: part/api.py:142 msgid "Filter by top-level categories" msgstr "Filtrar por categorías de nivel superior" -#: part/api.py:160 stock/api.py:321 +#: part/api.py:155 stock/api.py:321 msgid "Cascade" msgstr "En cascada" -#: part/api.py:162 +#: part/api.py:157 msgid "Include sub-categories in filtered results" msgstr "" -#: part/api.py:182 +#: part/api.py:177 msgid "Parent" msgstr "" -#: part/api.py:184 +#: part/api.py:179 msgid "Filter by parent category" msgstr "" -#: part/api.py:219 +#: part/api.py:214 msgid "Exclude sub-categories under the specified category" msgstr "" -#: part/api.py:445 +#: part/api.py:440 msgid "Has Results" msgstr "Tiene resultados" -#: part/api.py:666 +#: part/api.py:661 msgid "Is Variant" msgstr "" -#: part/api.py:674 +#: part/api.py:669 msgid "Is Revision" msgstr "" -#: part/api.py:684 +#: part/api.py:679 msgid "Has Revisions" msgstr "" -#: part/api.py:865 +#: part/api.py:860 msgid "BOM Valid" msgstr "" -#: part/api.py:974 +#: part/api.py:969 msgid "Cascade Categories" msgstr "" -#: part/api.py:975 +#: part/api.py:970 msgid "If true, include items in child categories of the given category" msgstr "" -#: part/api.py:981 +#: part/api.py:976 msgid "Filter by numeric category ID or the literal 'null'" msgstr "" -#: part/api.py:1533 +#: part/api.py:1258 msgid "Assembly part is testable" msgstr "" -#: part/api.py:1542 +#: part/api.py:1267 msgid "Component part is testable" msgstr "" -#: part/api.py:1611 +#: part/api.py:1336 msgid "Uses" msgstr "" -#: part/models.py:96 part/models.py:4163 +#: part/models.py:93 part/models.py:436 #: templates/email/part_event_notification.html:16 msgid "Part Category" msgstr "Categoría de parte" -#: part/models.py:97 users/ruleset.py:27 +#: part/models.py:94 users/ruleset.py:27 msgid "Part Categories" msgstr "Categorías de parte" -#: part/models.py:115 part/models.py:1125 +#: part/models.py:112 part/models.py:1213 msgid "Default Location" msgstr "Ubicación Predeterminada" -#: part/models.py:116 +#: part/models.py:113 msgid "Default location for parts in this category" msgstr "Ubicación predeterminada para partes de esta categoría" -#: part/models.py:121 stock/models.py:216 +#: part/models.py:118 stock/models.py:216 msgid "Structural" msgstr "Estructural" -#: part/models.py:123 +#: part/models.py:120 msgid "Parts may not be directly assigned to a structural category, but may be assigned to child categories." msgstr "Las partes no pueden asignarse directamente a una categoría estructural, pero pueden asignarse a categorías hijas." -#: part/models.py:132 +#: part/models.py:129 msgid "Default keywords" msgstr "Palabras clave predeterminadas" -#: part/models.py:133 +#: part/models.py:130 msgid "Default keywords for parts in this category" msgstr "Palabras clave por defecto para partes en esta categoría" -#: part/models.py:140 stock/models.py:97 stock/models.py:198 +#: part/models.py:137 stock/models.py:97 stock/models.py:198 msgid "Icon" msgstr "Icono" -#: part/models.py:141 part/serializers.py:148 part/serializers.py:167 +#: part/models.py:138 part/serializers.py:147 part/serializers.py:166 #: stock/models.py:199 msgid "Icon (optional)" msgstr "Icono (opcional)" -#: part/models.py:185 +#: part/models.py:182 msgid "You cannot make this part category structural because some parts are already assigned to it!" msgstr "¡No puedes hacer que esta categoría de partes sea estructural porque algunas partes ya están asignadas!" -#: part/models.py:473 part/serializers.py:119 part/serializers.py:310 -#: users/ruleset.py:28 +#: part/models.py:392 +msgid "Part Category Parameter Template" +msgstr "" + +#: part/models.py:448 +msgid "Default Value" +msgstr "Valor predeterminado" + +#: part/models.py:449 +msgid "Default Parameter Value" +msgstr "Valor de parámetro por defecto" + +#: part/models.py:551 part/serializers.py:118 users/ruleset.py:28 msgid "Parts" msgstr "Partes" -#: part/models.py:525 +#: part/models.py:597 +msgid "Cannot delete parameters of a locked part" +msgstr "" + +#: part/models.py:602 +msgid "Cannot modify parameters of a locked part" +msgstr "" + +#: part/models.py:613 msgid "Cannot delete this part as it is locked" msgstr "" -#: part/models.py:528 +#: part/models.py:616 msgid "Cannot delete this part as it is still active" msgstr "" -#: part/models.py:533 +#: part/models.py:621 msgid "Cannot delete this part as it is used in an assembly" msgstr "" -#: part/models.py:616 part/models.py:623 +#: part/models.py:704 part/models.py:711 #, python-brace-format msgid "Part '{self}' cannot be used in BOM for '{parent}' (recursive)" msgstr "" -#: part/models.py:635 +#: part/models.py:723 #, python-brace-format msgid "Part '{parent}' is used in BOM for '{self}' (recursive)" msgstr "" -#: part/models.py:702 +#: part/models.py:790 #, python-brace-format msgid "IPN must match regex pattern {pattern}" msgstr "" -#: part/models.py:710 +#: part/models.py:798 msgid "Part cannot be a revision of itself" msgstr "" -#: part/models.py:717 +#: part/models.py:805 msgid "Cannot make a revision of a part which is already a revision" msgstr "" -#: part/models.py:724 +#: part/models.py:812 msgid "Revision code must be specified" msgstr "" -#: part/models.py:731 +#: part/models.py:819 msgid "Revisions are only allowed for assembly parts" msgstr "" -#: part/models.py:738 +#: part/models.py:826 msgid "Cannot make a revision of a template part" msgstr "" -#: part/models.py:744 +#: part/models.py:832 msgid "Parent part must point to the same template" msgstr "" -#: part/models.py:841 +#: part/models.py:929 msgid "Stock item with this serial number already exists" msgstr "Ya existe un artículo de almacén con este número de serie" -#: part/models.py:971 +#: part/models.py:1059 msgid "Duplicate IPN not allowed in part settings" msgstr "IPN duplicado no permitido en la configuración de partes" -#: part/models.py:983 +#: part/models.py:1071 msgid "Duplicate part revision already exists." msgstr "La revisión de parte duplicada ya existe." -#: part/models.py:992 +#: part/models.py:1080 msgid "Part with this Name, IPN and Revision already exists." msgstr "Parte con este nombre, IPN y revisión ya existe." -#: part/models.py:1007 +#: part/models.py:1095 msgid "Parts cannot be assigned to structural part categories!" msgstr "¡No se pueden asignar partes a las categorías de partes estructurales!" -#: part/models.py:1039 +#: part/models.py:1127 msgid "Part name" msgstr "Nombre de la parte" -#: part/models.py:1044 +#: part/models.py:1132 msgid "Is Template" msgstr "Es plantilla" -#: part/models.py:1045 +#: part/models.py:1133 msgid "Is this part a template part?" msgstr "¿Es esta parte una parte de la plantilla?" -#: part/models.py:1055 +#: part/models.py:1143 msgid "Is this part a variant of another part?" msgstr "¿Es esta parte una variante de otra parte?" -#: part/models.py:1056 +#: part/models.py:1144 msgid "Variant Of" msgstr "Variante de" -#: part/models.py:1063 +#: part/models.py:1151 msgid "Part description (optional)" msgstr "Descripción de parte (opcional)" -#: part/models.py:1070 +#: part/models.py:1158 msgid "Keywords" msgstr "Palabras claves" -#: part/models.py:1071 +#: part/models.py:1159 msgid "Part keywords to improve visibility in search results" msgstr "Palabras clave para mejorar la visibilidad en los resultados de búsqueda" -#: part/models.py:1081 +#: part/models.py:1169 msgid "Part category" msgstr "Categoría de parte" -#: part/models.py:1088 part/serializers.py:929 +#: part/models.py:1176 part/serializers.py:814 #: report/templates/report/inventree_stock_location_report.html:103 msgid "IPN" msgstr "IPN" -#: part/models.py:1096 +#: part/models.py:1184 msgid "Part revision or version number" msgstr "Revisión de parte o número de versión" -#: part/models.py:1097 report/models.py:228 +#: part/models.py:1185 report/models.py:228 msgid "Revision" msgstr "Revisión" -#: part/models.py:1106 +#: part/models.py:1194 msgid "Is this part a revision of another part?" msgstr "¿Es esta parte una variante de otra parte?" -#: part/models.py:1107 +#: part/models.py:1195 msgid "Revision Of" msgstr "Variante de" -#: part/models.py:1123 +#: part/models.py:1211 msgid "Where is this item normally stored?" msgstr "¿Dónde se almacena este artículo normalmente?" -#: part/models.py:1169 +#: part/models.py:1257 msgid "Default Supplier" msgstr "Proveedor por defecto" -#: part/models.py:1170 +#: part/models.py:1258 msgid "Default supplier part" msgstr "Parte de proveedor predeterminada" -#: part/models.py:1177 +#: part/models.py:1265 msgid "Default Expiry" msgstr "Expiración por defecto" -#: part/models.py:1178 +#: part/models.py:1266 msgid "Expiry time (in days) for stock items of this part" msgstr "Tiempo de expiración (en días) para los artículos de stock de esta parte" -#: part/models.py:1186 part/serializers.py:1003 +#: part/models.py:1274 part/serializers.py:888 msgid "Minimum Stock" msgstr "Stock mínimo" -#: part/models.py:1187 +#: part/models.py:1275 msgid "Minimum allowed stock level" msgstr "Nivel mínimo de stock permitido" -#: part/models.py:1196 +#: part/models.py:1284 msgid "Units of measure for this part" msgstr "Unidades de medida para esta parte" -#: part/models.py:1203 +#: part/models.py:1291 msgid "Can this part be built from other parts?" msgstr "¿Se puede construir esta parte a partir de otras partes?" -#: part/models.py:1209 +#: part/models.py:1297 msgid "Can this part be used to build other parts?" msgstr "¿Se puede utilizar esta parte para construir otras partes?" -#: part/models.py:1215 +#: part/models.py:1303 msgid "Does this part have tracking for unique items?" msgstr "¿Esta parte tiene seguimiento de objetos únicos?" -#: part/models.py:1221 +#: part/models.py:1309 msgid "Can this part have test results recorded against it?" msgstr "" -#: part/models.py:1227 +#: part/models.py:1315 msgid "Can this part be purchased from external suppliers?" msgstr "¿Se puede comprar esta parte a proveedores externos?" -#: part/models.py:1233 +#: part/models.py:1321 msgid "Can this part be sold to customers?" msgstr "¿Se puede vender esta parte a los clientes?" -#: part/models.py:1237 +#: part/models.py:1325 msgid "Is this part active?" msgstr "¿Está activa esta parte?" -#: part/models.py:1243 +#: part/models.py:1331 msgid "Locked parts cannot be edited" msgstr "Las partes bloqueadas no pueden ser editadas" -#: part/models.py:1249 +#: part/models.py:1337 msgid "Is this a virtual part, such as a software product or license?" msgstr "¿Es ésta una parte virtual, como un producto de software o una licencia?" -#: part/models.py:1254 +#: part/models.py:1342 msgid "BOM Validated" msgstr "" -#: part/models.py:1255 +#: part/models.py:1343 msgid "Is the BOM for this part valid?" msgstr "" -#: part/models.py:1261 +#: part/models.py:1349 msgid "BOM checksum" msgstr "Suma de verificación de BOM" -#: part/models.py:1262 +#: part/models.py:1350 msgid "Stored BOM checksum" msgstr "Suma de verificación de BOM almacenada" -#: part/models.py:1270 +#: part/models.py:1358 msgid "BOM checked by" msgstr "BOM comprobado por" -#: part/models.py:1275 +#: part/models.py:1363 msgid "BOM checked date" msgstr "Fecha BOM comprobada" -#: part/models.py:1291 +#: part/models.py:1379 msgid "Creation User" msgstr "Creación de Usuario" -#: part/models.py:1301 +#: part/models.py:1389 msgid "Owner responsible for this part" msgstr "Dueño responsable de esta parte" -#: part/models.py:2258 +#: part/models.py:2346 msgid "Sell multiple" msgstr "Vender múltiples" -#: part/models.py:3286 +#: part/models.py:3350 msgid "Currency used to cache pricing calculations" msgstr "Moneda utilizada para almacenar en caché los cálculos de precios" -#: part/models.py:3302 +#: part/models.py:3366 msgid "Minimum BOM Cost" msgstr "Costo mínimo de BOM" -#: part/models.py:3303 +#: part/models.py:3367 msgid "Minimum cost of component parts" msgstr "Costo mínimo de partes de componentes" -#: part/models.py:3309 +#: part/models.py:3373 msgid "Maximum BOM Cost" msgstr "Costo máximo de BOM" -#: part/models.py:3310 +#: part/models.py:3374 msgid "Maximum cost of component parts" msgstr "Costo máximo de partes de componentes" -#: part/models.py:3316 +#: part/models.py:3380 msgid "Minimum Purchase Cost" msgstr "Costo mínimo de compra" -#: part/models.py:3317 +#: part/models.py:3381 msgid "Minimum historical purchase cost" msgstr "Costo histórico mínimo de compra" -#: part/models.py:3323 +#: part/models.py:3387 msgid "Maximum Purchase Cost" msgstr "Costo máximo de compra" -#: part/models.py:3324 +#: part/models.py:3388 msgid "Maximum historical purchase cost" msgstr "Costo histórico máximo de compra" -#: part/models.py:3330 +#: part/models.py:3394 msgid "Minimum Internal Price" msgstr "Precio interno mínimo" -#: part/models.py:3331 +#: part/models.py:3395 msgid "Minimum cost based on internal price breaks" msgstr "Costo mínimo basado en precios reducidos internos" -#: part/models.py:3337 +#: part/models.py:3401 msgid "Maximum Internal Price" msgstr "Precio interno máximo" -#: part/models.py:3338 +#: part/models.py:3402 msgid "Maximum cost based on internal price breaks" msgstr "Costo máximo basado en precios reducidos internos" -#: part/models.py:3344 +#: part/models.py:3408 msgid "Minimum Supplier Price" msgstr "Precio mínimo de proveedor" -#: part/models.py:3345 +#: part/models.py:3409 msgid "Minimum price of part from external suppliers" msgstr "Precio mínimo de la parte de proveedores externos" -#: part/models.py:3351 +#: part/models.py:3415 msgid "Maximum Supplier Price" msgstr "Precio máximo de proveedor" -#: part/models.py:3352 +#: part/models.py:3416 msgid "Maximum price of part from external suppliers" msgstr "Precio máximo de la parte de proveedores externos" -#: part/models.py:3358 +#: part/models.py:3422 msgid "Minimum Variant Cost" msgstr "Costo mínimo de variante" -#: part/models.py:3359 +#: part/models.py:3423 msgid "Calculated minimum cost of variant parts" msgstr "Costo mínimo calculado de las partes variantes" -#: part/models.py:3365 +#: part/models.py:3429 msgid "Maximum Variant Cost" msgstr "Costo máximo de variante" -#: part/models.py:3366 +#: part/models.py:3430 msgid "Calculated maximum cost of variant parts" msgstr "Costo máximo calculado de las partes variantes" -#: part/models.py:3372 part/models.py:3386 +#: part/models.py:3436 part/models.py:3450 msgid "Minimum Cost" msgstr "Costo mínimo" -#: part/models.py:3373 +#: part/models.py:3437 msgid "Override minimum cost" msgstr "Anular el costo mínimo" -#: part/models.py:3379 part/models.py:3393 +#: part/models.py:3443 part/models.py:3457 msgid "Maximum Cost" msgstr "Costo máximo" -#: part/models.py:3380 +#: part/models.py:3444 msgid "Override maximum cost" msgstr "Reemplazar coste máximo" -#: part/models.py:3387 +#: part/models.py:3451 msgid "Calculated overall minimum cost" msgstr "Costo mínimo general calculado" -#: part/models.py:3394 +#: part/models.py:3458 msgid "Calculated overall maximum cost" msgstr "" -#: part/models.py:3400 +#: part/models.py:3464 msgid "Minimum Sale Price" msgstr "Precio de venta mínimo" -#: part/models.py:3401 +#: part/models.py:3465 msgid "Minimum sale price based on price breaks" msgstr "Precio de venta mínimo basado en precios reducidos" -#: part/models.py:3407 +#: part/models.py:3471 msgid "Maximum Sale Price" msgstr "Precio de venta máximo" -#: part/models.py:3408 +#: part/models.py:3472 msgid "Maximum sale price based on price breaks" msgstr "Precio de venta máximo basado en precios reducidos" -#: part/models.py:3414 +#: part/models.py:3478 msgid "Minimum Sale Cost" msgstr "Costo de venta mínimo" -#: part/models.py:3415 +#: part/models.py:3479 msgid "Minimum historical sale price" msgstr "Precio de venta mínimo histórico" -#: part/models.py:3421 +#: part/models.py:3485 msgid "Maximum Sale Cost" msgstr "Costo de Venta Máximo" -#: part/models.py:3422 +#: part/models.py:3486 msgid "Maximum historical sale price" msgstr "Precio de venta máximo histórico" -#: part/models.py:3440 +#: part/models.py:3504 msgid "Part for stocktake" msgstr "" -#: part/models.py:3445 +#: part/models.py:3509 msgid "Item Count" msgstr "Número de artículos" -#: part/models.py:3446 +#: part/models.py:3510 msgid "Number of individual stock entries at time of stocktake" msgstr "" -#: part/models.py:3454 +#: part/models.py:3518 msgid "Total available stock at time of stocktake" msgstr "" -#: part/models.py:3458 report/templates/report/inventree_test_report.html:106 +#: part/models.py:3522 report/templates/report/inventree_test_report.html:106 msgid "Date" msgstr "Fecha" -#: part/models.py:3459 +#: part/models.py:3523 msgid "Date stocktake was performed" msgstr "" -#: part/models.py:3466 +#: part/models.py:3530 msgid "Minimum Stock Cost" msgstr "Costo de Stock Mínimo" -#: part/models.py:3467 +#: part/models.py:3531 msgid "Estimated minimum cost of stock on hand" msgstr "Costo mínimo estimado del stock disponible" -#: part/models.py:3473 +#: part/models.py:3537 msgid "Maximum Stock Cost" msgstr "" -#: part/models.py:3474 +#: part/models.py:3538 msgid "Estimated maximum cost of stock on hand" msgstr "" -#: part/models.py:3484 +#: part/models.py:3548 msgid "Part Sale Price Break" msgstr "" -#: part/models.py:3596 +#: part/models.py:3660 msgid "Part Test Template" msgstr "" -#: part/models.py:3622 +#: part/models.py:3686 msgid "Invalid template name - must include at least one alphanumeric character" msgstr "" -#: part/models.py:3643 part/models.py:3816 -msgid "Choices must be unique" -msgstr "" - -#: part/models.py:3654 +#: part/models.py:3718 msgid "Test templates can only be created for testable parts" msgstr "Las plantillas de prueba solo pueden ser creadas para partes de prueba" -#: part/models.py:3668 +#: part/models.py:3732 msgid "Test template with the same key already exists for part" msgstr "" -#: part/models.py:3685 +#: part/models.py:3749 msgid "Test Name" msgstr "Nombre de prueba" -#: part/models.py:3686 +#: part/models.py:3750 msgid "Enter a name for the test" msgstr "Introduzca un nombre para la prueba" -#: part/models.py:3692 +#: part/models.py:3756 msgid "Test Key" msgstr "" -#: part/models.py:3693 +#: part/models.py:3757 msgid "Simplified key for the test" msgstr "" -#: part/models.py:3700 +#: part/models.py:3764 msgid "Test Description" msgstr "Descripción de prueba" -#: part/models.py:3701 +#: part/models.py:3765 msgid "Enter description for this test" msgstr "Introduce la descripción para esta prueba" -#: part/models.py:3705 report/models.py:287 -msgid "Enabled" -msgstr "Habilitado" - -#: part/models.py:3705 +#: part/models.py:3769 msgid "Is this test enabled?" msgstr "" -#: part/models.py:3710 +#: part/models.py:3774 msgid "Required" msgstr "Requerido" -#: part/models.py:3711 +#: part/models.py:3775 msgid "Is this test required to pass?" msgstr "¿Es necesario pasar esta prueba?" -#: part/models.py:3716 +#: part/models.py:3780 msgid "Requires Value" msgstr "Requiere valor" -#: part/models.py:3717 +#: part/models.py:3781 msgid "Does this test require a value when adding a test result?" msgstr "¿Esta prueba requiere un valor al agregar un resultado de la prueba?" -#: part/models.py:3722 +#: part/models.py:3786 msgid "Requires Attachment" msgstr "Adjunto obligatorio" -#: part/models.py:3724 +#: part/models.py:3788 msgid "Does this test require a file attachment when adding a test result?" msgstr "¿Esta prueba requiere un archivo adjunto al agregar un resultado de la prueba?" -#: part/models.py:3730 part/models.py:3878 -msgid "Choices" -msgstr "Opciones" - -#: part/models.py:3731 +#: part/models.py:3795 msgid "Valid choices for this test (comma-separated)" msgstr "" -#: part/models.py:3764 -msgid "Part Parameter Template" -msgstr "" - -#: part/models.py:3791 -msgid "Checkbox parameters cannot have units" -msgstr "" - -#: part/models.py:3796 -msgid "Checkbox parameters cannot have choices" -msgstr "" - -#: part/models.py:3833 -msgid "Parameter template name must be unique" -msgstr "El nombre de parámetro en la plantilla tiene que ser único" - -#: part/models.py:3851 -msgid "Parameter Name" -msgstr "Nombre de Parámetro" - -#: part/models.py:3858 -msgid "Physical units for this parameter" -msgstr "" - -#: part/models.py:3866 -msgid "Parameter description" -msgstr "" - -#: part/models.py:3872 -msgid "Checkbox" -msgstr "Casilla de verificación" - -#: part/models.py:3873 -msgid "Is this parameter a checkbox?" -msgstr "¿Es este parámetro una casilla de verificación?" - -#: part/models.py:3879 -msgid "Valid choices for this parameter (comma-separated)" -msgstr "Opciones válidas para este parámetro (separados por comas)" - -#: part/models.py:3890 -msgid "Selection list for this parameter" -msgstr "Lista de selección para este parámetro" - -#: part/models.py:3932 -msgid "Part Parameter" -msgstr "" - -#: part/models.py:3958 -msgid "Parameter cannot be modified - part is locked" -msgstr "" - -#: part/models.py:3996 -msgid "Invalid choice for parameter value" -msgstr "Opción inválida para el valor del parámetro" - -#: part/models.py:4047 -msgid "Parent Part" -msgstr "Parte principal" - -#: part/models.py:4055 part/models.py:4170 part/models.py:4171 -msgid "Parameter Template" -msgstr "Plantilla de parámetro" - -#: part/models.py:4061 -msgid "Parameter Value" -msgstr "Valor del parámetro" - -#: part/models.py:4071 stock/serializers.py:718 -msgid "Optional note field" -msgstr "Campo de nota opcional" - -#: part/models.py:4118 -msgid "Part Category Parameter Template" -msgstr "" - -#: part/models.py:4177 -msgid "Default Value" -msgstr "Valor predeterminado" - -#: part/models.py:4178 -msgid "Default Parameter Value" -msgstr "Valor de parámetro por defecto" - -#: part/models.py:4352 +#: part/models.py:3977 msgid "BOM item cannot be modified - assembly is locked" msgstr "" -#: part/models.py:4359 +#: part/models.py:3984 msgid "BOM item cannot be modified - variant assembly is locked" msgstr "" -#: part/models.py:4369 +#: part/models.py:3994 msgid "Select parent part" msgstr "Seleccionar parte principal" -#: part/models.py:4379 +#: part/models.py:4004 msgid "Sub part" msgstr "Sub parte" -#: part/models.py:4380 +#: part/models.py:4005 msgid "Select part to be used in BOM" msgstr "Seleccionar parte a utilizar en BOM" -#: part/models.py:4391 +#: part/models.py:4016 msgid "BOM quantity for this BOM item" msgstr "Cantidad del artículo en BOM" -#: part/models.py:4397 +#: part/models.py:4022 msgid "This BOM item is optional" msgstr "Este artículo BOM es opcional" -#: part/models.py:4403 +#: part/models.py:4028 msgid "This BOM item is consumable (it is not tracked in build orders)" msgstr "Este artículo de BOM es consumible (no está rastreado en órdenes de construcción)" -#: part/models.py:4411 +#: part/models.py:4036 msgid "Setup Quantity" msgstr "" -#: part/models.py:4412 +#: part/models.py:4037 msgid "Extra required quantity for a build, to account for setup losses" msgstr "" -#: part/models.py:4420 +#: part/models.py:4045 msgid "Attrition" msgstr "" -#: part/models.py:4422 +#: part/models.py:4047 msgid "Estimated attrition for a build, expressed as a percentage (0-100)" msgstr "" -#: part/models.py:4433 +#: part/models.py:4058 msgid "Rounding Multiple" msgstr "" -#: part/models.py:4435 +#: part/models.py:4060 msgid "Round up required production quantity to nearest multiple of this value" msgstr "" -#: part/models.py:4443 +#: part/models.py:4068 msgid "BOM item reference" msgstr "Referencia de artículo de BOM" -#: part/models.py:4451 +#: part/models.py:4076 msgid "BOM item notes" msgstr "Notas del artículo de BOM" -#: part/models.py:4457 +#: part/models.py:4082 msgid "Checksum" msgstr "Suma de verificación" -#: part/models.py:4458 +#: part/models.py:4083 msgid "BOM line checksum" msgstr "Suma de verificación de línea de BOM" -#: part/models.py:4463 +#: part/models.py:4088 msgid "Validated" msgstr "Validado" -#: part/models.py:4464 +#: part/models.py:4089 msgid "This BOM item has been validated" msgstr "Este artículo de BOM ha sido validado" -#: part/models.py:4469 +#: part/models.py:4094 msgid "Gets inherited" msgstr "" -#: part/models.py:4470 +#: part/models.py:4095 msgid "This BOM item is inherited by BOMs for variant parts" msgstr "Este artículo BOM es heredado por BOMs para partes variantes" -#: part/models.py:4476 +#: part/models.py:4101 msgid "Stock items for variant parts can be used for this BOM item" msgstr "Artículos de stock para partes variantes pueden ser usados para este artículo BOM" -#: part/models.py:4583 stock/models.py:925 +#: part/models.py:4208 stock/models.py:925 msgid "Quantity must be integer value for trackable parts" msgstr "La cantidad debe ser un valor entero para las partes rastreables" -#: part/models.py:4593 part/models.py:4595 +#: part/models.py:4218 part/models.py:4220 msgid "Sub part must be specified" msgstr "Debe especificar la subparte" -#: part/models.py:4746 +#: part/models.py:4371 msgid "BOM Item Substitute" msgstr "Ítem de BOM sustituto" -#: part/models.py:4767 +#: part/models.py:4392 msgid "Substitute part cannot be the same as the master part" msgstr "La parte sustituta no puede ser la misma que la parte principal" -#: part/models.py:4780 +#: part/models.py:4405 msgid "Parent BOM item" msgstr "Artículo BOM superior" -#: part/models.py:4788 +#: part/models.py:4413 msgid "Substitute part" msgstr "Sustituir parte" -#: part/models.py:4804 +#: part/models.py:4429 msgid "Part 1" msgstr "Parte 1" -#: part/models.py:4812 +#: part/models.py:4437 msgid "Part 2" msgstr "Parte 2" -#: part/models.py:4813 +#: part/models.py:4438 msgid "Select Related Part" msgstr "Seleccionar parte relacionada" -#: part/models.py:4820 +#: part/models.py:4445 msgid "Note for this relationship" msgstr "Nota para esta relación" -#: part/models.py:4839 +#: part/models.py:4464 msgid "Part relationship cannot be created between a part and itself" msgstr "" -#: part/models.py:4844 +#: part/models.py:4469 msgid "Duplicate relationship already exists" msgstr "" -#: part/serializers.py:114 +#: part/serializers.py:113 msgid "Parent Category" msgstr "" -#: part/serializers.py:115 +#: part/serializers.py:114 msgid "Parent part category" msgstr "Categoría principal de parte" -#: part/serializers.py:123 part/serializers.py:164 +#: part/serializers.py:122 part/serializers.py:163 msgid "Subcategories" msgstr "Subcategorías" -#: part/serializers.py:203 +#: part/serializers.py:202 msgid "Results" msgstr "" -#: part/serializers.py:204 +#: part/serializers.py:203 msgid "Number of results recorded against this template" msgstr "" -#: part/serializers.py:235 part/serializers.py:253 stock/serializers.py:643 +#: part/serializers.py:234 part/serializers.py:252 stock/serializers.py:643 msgid "Purchase currency of this stock item" msgstr "Moneda de compra de ítem de stock" -#: part/serializers.py:280 +#: part/serializers.py:279 msgid "File is not an image" msgstr "" -#: part/serializers.py:311 -msgid "Number of parts using this template" -msgstr "" - -#: part/serializers.py:471 +#: part/serializers.py:382 msgid "Original Part" msgstr "Parte original" -#: part/serializers.py:472 +#: part/serializers.py:383 msgid "Select original part to duplicate" msgstr "Seleccione la parte original a duplicar" -#: part/serializers.py:477 +#: part/serializers.py:388 msgid "Copy Image" msgstr "Copiar Imagen" -#: part/serializers.py:478 +#: part/serializers.py:389 msgid "Copy image from original part" msgstr "Copiar imagen desde la parte original" -#: part/serializers.py:484 +#: part/serializers.py:395 msgid "Copy BOM" msgstr "Copiar BOM" -#: part/serializers.py:485 +#: part/serializers.py:396 msgid "Copy bill of materials from original part" msgstr "Copiar la factura de materiales de la parte original" -#: part/serializers.py:491 +#: part/serializers.py:402 msgid "Copy Parameters" msgstr "Copiar Parámetros" -#: part/serializers.py:492 +#: part/serializers.py:403 msgid "Copy parameter data from original part" msgstr "Copiar datos del parámetro de la parte original" -#: part/serializers.py:498 +#: part/serializers.py:409 msgid "Copy Notes" msgstr "Copiar Notas" -#: part/serializers.py:499 +#: part/serializers.py:410 msgid "Copy notes from original part" msgstr "" -#: part/serializers.py:505 +#: part/serializers.py:416 msgid "Copy Tests" msgstr "" -#: part/serializers.py:506 +#: part/serializers.py:417 msgid "Copy test templates from original part" msgstr "" -#: part/serializers.py:524 +#: part/serializers.py:435 msgid "Initial Stock Quantity" msgstr "Cantidad Inicial de Stock" -#: part/serializers.py:526 +#: part/serializers.py:437 msgid "Specify initial stock quantity for this Part. If quantity is zero, no stock is added." msgstr "" -#: part/serializers.py:533 +#: part/serializers.py:444 msgid "Initial Stock Location" msgstr "" -#: part/serializers.py:534 +#: part/serializers.py:445 msgid "Specify initial stock location for this Part" msgstr "" -#: part/serializers.py:551 +#: part/serializers.py:462 msgid "Select supplier (or leave blank to skip)" msgstr "Seleccione proveedor (o déjelo en blanco para saltar)" -#: part/serializers.py:567 +#: part/serializers.py:478 msgid "Select manufacturer (or leave blank to skip)" msgstr "Seleccionar fabricante (o dejar en blanco para saltar)" -#: part/serializers.py:577 +#: part/serializers.py:488 msgid "Manufacturer part number" msgstr "Número de parte del fabricante" -#: part/serializers.py:584 +#: part/serializers.py:495 msgid "Selected company is not a valid supplier" msgstr "La empresa seleccionada no es un proveedor válido" -#: part/serializers.py:593 +#: part/serializers.py:504 msgid "Selected company is not a valid manufacturer" msgstr "La empresa seleccionada no es un fabricante válido" -#: part/serializers.py:604 +#: part/serializers.py:515 msgid "Manufacturer part matching this MPN already exists" msgstr "" -#: part/serializers.py:611 +#: part/serializers.py:522 msgid "Supplier part matching this SKU already exists" msgstr "" -#: part/serializers.py:914 +#: part/serializers.py:799 msgid "Category Name" msgstr "Nombre de categoría" -#: part/serializers.py:943 +#: part/serializers.py:828 msgid "Building" msgstr "En construcción" -#: part/serializers.py:944 +#: part/serializers.py:829 msgid "Quantity of this part currently being in production" msgstr "" -#: part/serializers.py:951 +#: part/serializers.py:836 msgid "Outstanding quantity of this part scheduled to be built" msgstr "" -#: part/serializers.py:971 stock/serializers.py:1019 stock/serializers.py:1189 +#: part/serializers.py:856 stock/serializers.py:1019 stock/serializers.py:1189 #: users/ruleset.py:30 msgid "Stock Items" msgstr "Elementos de stock" -#: part/serializers.py:975 +#: part/serializers.py:860 msgid "Revisions" msgstr "" -#: part/serializers.py:979 +#: part/serializers.py:864 msgid "Suppliers" msgstr "Proveedores" -#: part/serializers.py:983 part/serializers.py:1297 +#: part/serializers.py:868 part/serializers.py:1162 #: templates/email/low_stock_notification.html:16 #: templates/email/part_event_notification.html:17 msgid "Total Stock" msgstr "Inventario Total" -#: part/serializers.py:991 +#: part/serializers.py:876 msgid "Unallocated Stock" msgstr "" -#: part/serializers.py:999 +#: part/serializers.py:884 msgid "Variant Stock" msgstr "" -#: part/serializers.py:1054 +#: part/serializers.py:943 msgid "Duplicate Part" msgstr "Duplicar Parte" -#: part/serializers.py:1055 +#: part/serializers.py:944 msgid "Copy initial data from another Part" msgstr "" -#: part/serializers.py:1061 +#: part/serializers.py:950 msgid "Initial Stock" msgstr "Stock Inicial" -#: part/serializers.py:1062 +#: part/serializers.py:951 msgid "Create Part with initial stock quantity" msgstr "Crear Parte con cantidad inicial de stock" -#: part/serializers.py:1068 +#: part/serializers.py:957 msgid "Supplier Information" msgstr "Información del proveedor" -#: part/serializers.py:1069 +#: part/serializers.py:958 msgid "Add initial supplier information for this part" msgstr "Añadir información inicial del proveedor para esta parte" -#: part/serializers.py:1077 +#: part/serializers.py:966 msgid "Copy Category Parameters" msgstr "Copiar Parámetros de Categoría" -#: part/serializers.py:1078 +#: part/serializers.py:967 msgid "Copy parameter templates from selected part category" msgstr "Copiar plantillas de parámetro de la categoría de partes seleccionada" -#: part/serializers.py:1083 +#: part/serializers.py:972 msgid "Existing Image" msgstr "Imagen Existente" -#: part/serializers.py:1084 +#: part/serializers.py:973 msgid "Filename of an existing part image" msgstr "" -#: part/serializers.py:1101 +#: part/serializers.py:990 msgid "Image file does not exist" msgstr "El archivo de imagen no existe" -#: part/serializers.py:1269 +#: part/serializers.py:1134 msgid "Validate entire Bill of Materials" msgstr "Validación de Lista de Materiales" -#: part/serializers.py:1303 part/serializers.py:1769 +#: part/serializers.py:1168 part/serializers.py:1634 msgid "Can Build" msgstr "Puede construir" -#: part/serializers.py:1320 +#: part/serializers.py:1185 msgid "Required for Build Orders" msgstr "" -#: part/serializers.py:1325 +#: part/serializers.py:1190 msgid "Allocated to Build Orders" msgstr "" -#: part/serializers.py:1332 +#: part/serializers.py:1197 msgid "Required for Sales Orders" msgstr "" -#: part/serializers.py:1336 +#: part/serializers.py:1201 msgid "Allocated to Sales Orders" msgstr "" -#: part/serializers.py:1475 +#: part/serializers.py:1340 msgid "Minimum Price" msgstr "Precio mínimo" -#: part/serializers.py:1476 +#: part/serializers.py:1341 msgid "Override calculated value for minimum price" msgstr "Anular el valor calculado para precio mínimo" -#: part/serializers.py:1483 +#: part/serializers.py:1348 msgid "Minimum price currency" msgstr "Precio mínimo de moneda" -#: part/serializers.py:1490 +#: part/serializers.py:1355 msgid "Maximum Price" msgstr "Precio máximo" -#: part/serializers.py:1491 +#: part/serializers.py:1356 msgid "Override calculated value for maximum price" msgstr "" -#: part/serializers.py:1498 +#: part/serializers.py:1363 msgid "Maximum price currency" msgstr "Precio máximo de moneda" -#: part/serializers.py:1527 +#: part/serializers.py:1392 msgid "Update" msgstr "Actualizar" -#: part/serializers.py:1528 +#: part/serializers.py:1393 msgid "Update pricing for this part" msgstr "" -#: part/serializers.py:1551 +#: part/serializers.py:1416 #, python-brace-format msgid "Could not convert from provided currencies to {default_currency}" msgstr "" -#: part/serializers.py:1558 +#: part/serializers.py:1423 msgid "Minimum price must not be greater than maximum price" msgstr "El precio mínimo no debe ser mayor que el precio máximo" -#: part/serializers.py:1561 +#: part/serializers.py:1426 msgid "Maximum price must not be less than minimum price" msgstr "El precio máximo no debe ser inferior al precio mínimo" -#: part/serializers.py:1715 +#: part/serializers.py:1580 msgid "Select the parent assembly" msgstr "" -#: part/serializers.py:1735 +#: part/serializers.py:1600 msgid "Select the component part" msgstr "" -#: part/serializers.py:1929 +#: part/serializers.py:1802 msgid "Select part to copy BOM from" msgstr "Seleccionar parte de la que copiar BOM" -#: part/serializers.py:1937 +#: part/serializers.py:1810 msgid "Remove Existing Data" msgstr "Eliminar Datos Existentes" -#: part/serializers.py:1938 +#: part/serializers.py:1811 msgid "Remove existing BOM items before copying" msgstr "Eliminar artículos BOM existentes antes de copiar" -#: part/serializers.py:1943 +#: part/serializers.py:1816 msgid "Include Inherited" msgstr "Incluye Heredado" -#: part/serializers.py:1944 +#: part/serializers.py:1817 msgid "Include BOM items which are inherited from templated parts" msgstr "Incluye artículos BOM que son heredados de partes con plantillas" -#: part/serializers.py:1949 +#: part/serializers.py:1822 msgid "Skip Invalid Rows" msgstr "Omitir filas no válidas" -#: part/serializers.py:1950 +#: part/serializers.py:1823 msgid "Enable this option to skip invalid rows" msgstr "Activar esta opción para omitir filas inválidas" -#: part/serializers.py:1955 +#: part/serializers.py:1828 msgid "Copy Substitute Parts" msgstr "Copiar partes sustitutas" -#: part/serializers.py:1956 +#: part/serializers.py:1829 msgid "Copy substitute parts when duplicate BOM items" msgstr "" @@ -6927,7 +6974,7 @@ msgstr "Proporciona soporte nativo para códigos de barras" #: plugin/builtin/events/auto_issue_orders.py:19 #: plugin/builtin/exporter/bom_exporter.py:73 #: plugin/builtin/exporter/inventree_exporter.py:17 -#: plugin/builtin/exporter/part_parameter_exporter.py:36 +#: plugin/builtin/exporter/parameter_exporter.py:32 #: plugin/builtin/exporter/stocktake_exporter.py:47 #: plugin/builtin/integration/core_notifications.py:25 #: plugin/builtin/integration/core_notifications.py:69 @@ -7041,23 +7088,19 @@ msgid "Include total quantity of each part in the BOM" msgstr "" #: plugin/builtin/exporter/bom_exporter.py:35 -#: plugin/builtin/exporter/part_parameter_exporter.py:17 msgid "Stock Data" msgstr "" #: plugin/builtin/exporter/bom_exporter.py:35 -#: plugin/builtin/exporter/part_parameter_exporter.py:17 msgid "Include part stock data" msgstr "" #: plugin/builtin/exporter/bom_exporter.py:39 -#: plugin/builtin/exporter/part_parameter_exporter.py:21 #: plugin/builtin/exporter/stocktake_exporter.py:20 msgid "Pricing Data" msgstr "" #: plugin/builtin/exporter/bom_exporter.py:39 -#: plugin/builtin/exporter/part_parameter_exporter.py:21 #: plugin/builtin/exporter/stocktake_exporter.py:20 msgid "Include part pricing data" msgstr "" @@ -7144,12 +7187,20 @@ msgstr "" msgid "Provides support for exporting data from InvenTree" msgstr "" -#: plugin/builtin/exporter/part_parameter_exporter.py:33 -msgid "Part Parameter Exporter" +#: plugin/builtin/exporter/parameter_exporter.py:16 +msgid "Exclude Inactive" msgstr "" -#: plugin/builtin/exporter/part_parameter_exporter.py:34 -msgid "Exporter for part parameter data" +#: plugin/builtin/exporter/parameter_exporter.py:17 +msgid "Exclude parameters which are inactive" +msgstr "" + +#: plugin/builtin/exporter/parameter_exporter.py:29 +msgid "Parameter Exporter" +msgstr "" + +#: plugin/builtin/exporter/parameter_exporter.py:30 +msgid "Exporter for model parameter data" msgstr "" #: plugin/builtin/exporter/stocktake_exporter.py:25 @@ -8079,19 +8130,19 @@ msgstr "Ningún resultado (requerido)" msgid "No result" msgstr "Sin resultados" -#: report/templatetags/report.py:167 +#: report/templatetags/report.py:169 msgid "Asset file does not exist" msgstr "" -#: report/templatetags/report.py:224 report/templatetags/report.py:300 +#: report/templatetags/report.py:226 report/templatetags/report.py:302 msgid "Image file not found" msgstr "" -#: report/templatetags/report.py:325 +#: report/templatetags/report.py:327 msgid "part_image tag requires a Part instance" msgstr "" -#: report/templatetags/report.py:362 +#: report/templatetags/report.py:383 msgid "company_image tag requires a Company instance" msgstr "" @@ -8455,115 +8506,119 @@ msgstr "Los números de serie deben ser proporcionados como una lista" msgid "Quantity does not match serial numbers" msgstr "La cantidad no coincide con los números de serie" -#: stock/models.py:2012 stock/models.py:2917 +#: stock/models.py:1912 +msgid "Cannot assign stock to structural location" +msgstr "" + +#: stock/models.py:2029 stock/models.py:2934 msgid "Test template does not exist" msgstr "" -#: stock/models.py:2030 +#: stock/models.py:2047 msgid "Stock item has been assigned to a sales order" msgstr "Artículo de stock ha sido asignado a un pedido de venta" -#: stock/models.py:2034 +#: stock/models.py:2051 msgid "Stock item is installed in another item" msgstr "Artículo de stock está instalado en otro artículo" -#: stock/models.py:2037 +#: stock/models.py:2054 msgid "Stock item contains other items" msgstr "Artículo de stock contiene otros artículos" -#: stock/models.py:2040 +#: stock/models.py:2057 msgid "Stock item has been assigned to a customer" msgstr "Artículo de stock ha sido asignado a un cliente" -#: stock/models.py:2043 stock/models.py:2226 +#: stock/models.py:2060 stock/models.py:2243 msgid "Stock item is currently in production" msgstr "El artículo de stock está en producción" -#: stock/models.py:2046 +#: stock/models.py:2063 msgid "Serialized stock cannot be merged" msgstr "Stock serializado no puede ser combinado" -#: stock/models.py:2053 stock/serializers.py:1462 +#: stock/models.py:2070 stock/serializers.py:1462 msgid "Duplicate stock items" msgstr "Artículos de Stock Duplicados" -#: stock/models.py:2057 +#: stock/models.py:2074 msgid "Stock items must refer to the same part" msgstr "Los artículos de stock deben referirse a la misma parte" -#: stock/models.py:2065 +#: stock/models.py:2082 msgid "Stock items must refer to the same supplier part" msgstr "Los artículos de stock deben referirse a la misma parte del proveedor" -#: stock/models.py:2070 +#: stock/models.py:2087 msgid "Stock status codes must match" msgstr "Los códigos de estado del stock deben coincidir" -#: stock/models.py:2349 +#: stock/models.py:2366 msgid "StockItem cannot be moved as it is not in stock" msgstr "Stock no se puede mover porque no está en stock" -#: stock/models.py:2818 +#: stock/models.py:2835 msgid "Stock Item Tracking" msgstr "" -#: stock/models.py:2849 +#: stock/models.py:2866 msgid "Entry notes" msgstr "Notas de entrada" -#: stock/models.py:2889 +#: stock/models.py:2906 msgid "Stock Item Test Result" msgstr "" -#: stock/models.py:2920 +#: stock/models.py:2937 msgid "Value must be provided for this test" msgstr "Debe proporcionarse un valor para esta prueba" -#: stock/models.py:2924 +#: stock/models.py:2941 msgid "Attachment must be uploaded for this test" msgstr "El archivo adjunto debe ser subido para esta prueba" -#: stock/models.py:2929 +#: stock/models.py:2946 msgid "Invalid value for this test" msgstr "" -#: stock/models.py:2953 +#: stock/models.py:2970 msgid "Test result" msgstr "Resultado de la prueba" -#: stock/models.py:2960 +#: stock/models.py:2977 msgid "Test output value" msgstr "Valor de salida de prueba" -#: stock/models.py:2968 stock/serializers.py:248 +#: stock/models.py:2985 stock/serializers.py:248 msgid "Test result attachment" msgstr "Adjunto de resultados de prueba" -#: stock/models.py:2972 +#: stock/models.py:2989 msgid "Test notes" msgstr "Notas de prueba" -#: stock/models.py:2980 +#: stock/models.py:2997 msgid "Test station" msgstr "" -#: stock/models.py:2981 +#: stock/models.py:2998 msgid "The identifier of the test station where the test was performed" msgstr "" -#: stock/models.py:2987 +#: stock/models.py:3004 msgid "Started" msgstr "" -#: stock/models.py:2988 +#: stock/models.py:3005 msgid "The timestamp of the test start" msgstr "" -#: stock/models.py:2994 +#: stock/models.py:3011 msgid "Finished" msgstr "Finalizó" -#: stock/models.py:2995 +#: stock/models.py:3012 msgid "The timestamp of the test finish" msgstr "" @@ -8677,8 +8732,8 @@ msgstr "" msgid "Quantity must not exceed available stock quantity ({q})" msgstr "La cantidad no debe exceder la cantidad disponible de stock ({q})" -#: stock/serializers.py:711 stock/serializers.py:1419 stock/serializers.py:1732 -#: stock/serializers.py:1781 +#: stock/serializers.py:711 stock/serializers.py:1419 stock/serializers.py:1740 +#: stock/serializers.py:1789 msgid "Destination stock location" msgstr "Ubicación de stock de destino" @@ -8834,19 +8889,19 @@ msgstr "" msgid "Stock transaction notes" msgstr "Notas de transacción de stock" -#: stock/serializers.py:1787 +#: stock/serializers.py:1795 msgid "Merge into existing stock" msgstr "" -#: stock/serializers.py:1788 +#: stock/serializers.py:1796 msgid "Merge returned items into existing stock items if possible" msgstr "" -#: stock/serializers.py:1831 +#: stock/serializers.py:1839 msgid "Next Serial Number" msgstr "" -#: stock/serializers.py:1837 +#: stock/serializers.py:1845 msgid "Previous Serial Number" msgstr "" @@ -8902,83 +8957,87 @@ msgstr "Stock añadido manualmente" msgid "Stock manually removed" msgstr "Stock eliminado manualmente" -#: stock/status_codes.py:57 +#: stock/status_codes.py:56 +msgid "Serialized stock items" +msgstr "" + +#: stock/status_codes.py:58 msgid "Returned to stock" msgstr "" -#: stock/status_codes.py:60 +#: stock/status_codes.py:61 msgid "Location changed" msgstr "Ubicación cambiada" -#: stock/status_codes.py:61 +#: stock/status_codes.py:62 msgid "Stock updated" msgstr "Existencia actualizada" -#: stock/status_codes.py:64 +#: stock/status_codes.py:65 msgid "Installed into assembly" msgstr "Instalado en el ensamblaje" -#: stock/status_codes.py:65 +#: stock/status_codes.py:66 msgid "Removed from assembly" msgstr "Retirado del ensamblaje" -#: stock/status_codes.py:67 +#: stock/status_codes.py:68 msgid "Installed component item" msgstr "Artículo del componente instalado" -#: stock/status_codes.py:68 +#: stock/status_codes.py:69 msgid "Removed component item" msgstr "Elemento de componente eliminado" -#: stock/status_codes.py:71 +#: stock/status_codes.py:72 msgid "Split from parent item" msgstr "Separar del artículo principal" -#: stock/status_codes.py:72 +#: stock/status_codes.py:73 msgid "Split child item" msgstr "Dividir artículo secundario" -#: stock/status_codes.py:75 +#: stock/status_codes.py:76 msgid "Merged stock items" msgstr "Artículos de stock combinados" -#: stock/status_codes.py:78 +#: stock/status_codes.py:79 msgid "Converted to variant" msgstr "Convertir a variante" -#: stock/status_codes.py:81 +#: stock/status_codes.py:82 msgid "Build order output created" msgstr "Trabajo de ensamblaje creado" -#: stock/status_codes.py:82 +#: stock/status_codes.py:83 msgid "Build order output completed" msgstr "Construir orden de salida completado" -#: stock/status_codes.py:83 +#: stock/status_codes.py:84 msgid "Build order output rejected" msgstr "Orden de ensamble rechazada" -#: stock/status_codes.py:84 +#: stock/status_codes.py:85 msgid "Consumed by build order" msgstr "Consumido por orden de construcción" -#: stock/status_codes.py:87 +#: stock/status_codes.py:88 msgid "Shipped against Sales Order" msgstr "Enviado contra orden de venta" -#: stock/status_codes.py:90 +#: stock/status_codes.py:91 msgid "Received against Purchase Order" msgstr "Recibido contra la orden de compra" -#: stock/status_codes.py:93 +#: stock/status_codes.py:94 msgid "Returned against Return Order" msgstr "Devuelto contra orden de devolución" -#: stock/status_codes.py:96 +#: stock/status_codes.py:97 msgid "Sent to customer" msgstr "Enviar al cliente" -#: stock/status_codes.py:97 +#: stock/status_codes.py:98 msgid "Returned from customer" msgstr "Devolución del cliente" diff --git a/src/backend/InvenTree/locale/et/LC_MESSAGES/django.po b/src/backend/InvenTree/locale/et/LC_MESSAGES/django.po index eb634aed55..043c90256e 100644 --- a/src/backend/InvenTree/locale/et/LC_MESSAGES/django.po +++ b/src/backend/InvenTree/locale/et/LC_MESSAGES/django.po @@ -2,8 +2,8 @@ msgid "" msgstr "" "Project-Id-Version: inventree\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-11-19 04:55+0000\n" -"PO-Revision-Date: 2025-11-19 04:59\n" +"POT-Creation-Date: 2025-12-07 07:33+0000\n" +"PO-Revision-Date: 2025-12-07 07:36\n" "Last-Translator: \n" "Language-Team: Estonian\n" "Language: et_EE\n" @@ -57,7 +57,7 @@ msgstr "" msgid "This field must be unique." msgstr "" -#: InvenTree/api.py:775 +#: InvenTree/api.py:803 msgid "User does not have permission to view this model" msgstr "Teil ei ole selle lehe vaatamiseks luba" @@ -81,22 +81,22 @@ msgstr "" msgid "The provided email domain is not approved." msgstr "" -#: InvenTree/conversion.py:166 +#: InvenTree/conversion.py:240 #, python-brace-format msgid "Invalid unit provided ({unit})" msgstr "" -#: InvenTree/conversion.py:183 +#: InvenTree/conversion.py:257 msgid "No value provided" msgstr "Ei tohi tühi olla" -#: InvenTree/conversion.py:210 +#: InvenTree/conversion.py:284 #, python-brace-format msgid "Could not convert {original} to {unit}" msgstr "" -#: InvenTree/conversion.py:212 InvenTree/conversion.py:226 -#: InvenTree/helpers.py:597 order/models.py:720 order/models.py:1015 +#: InvenTree/conversion.py:286 InvenTree/conversion.py:300 +#: InvenTree/helpers.py:597 order/models.py:721 order/models.py:1016 msgid "Invalid quantity provided" msgstr "" @@ -112,11 +112,11 @@ msgstr "Pane kuupäev" msgid "Invalid decimal value" msgstr "" -#: InvenTree/fields.py:218 InvenTree/models.py:1067 build/serializers.py:509 -#: build/serializers.py:580 build/serializers.py:1788 company/models.py:857 -#: order/models.py:1780 +#: InvenTree/fields.py:218 InvenTree/models.py:1228 build/serializers.py:517 +#: build/serializers.py:588 build/serializers.py:1796 company/models.py:811 +#: order/models.py:1781 #: report/templates/report/inventree_build_order_report.html:172 -#: stock/models.py:2848 stock/models.py:2972 stock/serializers.py:717 +#: stock/models.py:2865 stock/models.py:2989 stock/serializers.py:717 #: stock/serializers.py:893 stock/serializers.py:1035 stock/serializers.py:1336 #: stock/serializers.py:1425 stock/serializers.py:1624 msgid "Notes" @@ -171,35 +171,35 @@ msgstr "" msgid "Data contains prohibited markdown content" msgstr "" -#: InvenTree/helpers_model.py:133 +#: InvenTree/helpers_model.py:134 msgid "Connection error" msgstr "Ühenduse viga" -#: InvenTree/helpers_model.py:138 InvenTree/helpers_model.py:145 +#: InvenTree/helpers_model.py:139 InvenTree/helpers_model.py:146 msgid "Server responded with invalid status code" msgstr "" -#: InvenTree/helpers_model.py:141 +#: InvenTree/helpers_model.py:142 msgid "Exception occurred" msgstr "Esines tõrge" -#: InvenTree/helpers_model.py:151 +#: InvenTree/helpers_model.py:152 msgid "Server responded with invalid Content-Length value" msgstr "" -#: InvenTree/helpers_model.py:154 +#: InvenTree/helpers_model.py:155 msgid "Image size is too large" msgstr "" -#: InvenTree/helpers_model.py:166 +#: InvenTree/helpers_model.py:167 msgid "Image download exceeded maximum size" msgstr "" -#: InvenTree/helpers_model.py:171 +#: InvenTree/helpers_model.py:172 msgid "Remote server returned empty response" msgstr "" -#: InvenTree/helpers_model.py:179 +#: InvenTree/helpers_model.py:180 msgid "Supplied URL is not a valid image file" msgstr "" @@ -207,7 +207,7 @@ msgstr "" msgid "Log in to the app" msgstr "" -#: InvenTree/magic_login.py:41 company/models.py:172 users/serializers.py:198 +#: InvenTree/magic_login.py:41 company/models.py:173 users/serializers.py:198 msgid "Email" msgstr "E-post" @@ -215,160 +215,176 @@ msgstr "E-post" msgid "You must enable two-factor authentication before doing anything else." msgstr "" -#: InvenTree/models.py:111 +#: InvenTree/models.py:114 msgid "Error running plugin validation" msgstr "" -#: InvenTree/models.py:192 +#: InvenTree/models.py:195 msgid "Metadata must be a python dict object" msgstr "" -#: InvenTree/models.py:198 +#: InvenTree/models.py:201 msgid "Plugin Metadata" msgstr "" -#: InvenTree/models.py:199 +#: InvenTree/models.py:202 msgid "JSON metadata field, for use by external plugins" msgstr "" -#: InvenTree/models.py:382 +#: InvenTree/models.py:385 msgid "Improperly formatted pattern" msgstr "" -#: InvenTree/models.py:389 +#: InvenTree/models.py:392 msgid "Unknown format key specified" msgstr "" -#: InvenTree/models.py:395 +#: InvenTree/models.py:398 msgid "Missing required format key" msgstr "" -#: InvenTree/models.py:406 +#: InvenTree/models.py:409 msgid "Reference field cannot be empty" msgstr "" -#: InvenTree/models.py:414 +#: InvenTree/models.py:417 msgid "Reference must match required pattern" msgstr "" -#: InvenTree/models.py:445 +#: InvenTree/models.py:448 msgid "Reference number is too large" msgstr "" -#: InvenTree/models.py:743 +#: InvenTree/models.py:896 msgid "Invalid choice" msgstr "Vigane valik" -#: InvenTree/models.py:856 common/models.py:1410 common/models.py:1837 -#: common/models.py:2096 common/models.py:2221 common/serializers.py:535 -#: company/models.py:615 generic/states/serializers.py:20 machine/models.py:25 -#: part/models.py:1039 part/models.py:3850 plugin/models.py:54 +#: InvenTree/models.py:1017 common/models.py:1414 common/models.py:1841 +#: common/models.py:2102 common/models.py:2227 common/models.py:2494 +#: common/serializers.py:539 generic/states/serializers.py:20 +#: machine/models.py:25 part/models.py:1127 plugin/models.py:54 #: report/models.py:216 stock/models.py:84 msgid "Name" msgstr "Nimi" -#: InvenTree/models.py:862 build/models.py:252 common/models.py:171 -#: common/models.py:2228 common/models.py:2341 company/models.py:543 -#: company/models.py:848 order/models.py:442 order/models.py:1825 -#: part/models.py:1062 part/models.py:3865 report/models.py:222 +#: InvenTree/models.py:1023 build/models.py:253 common/models.py:175 +#: common/models.py:2234 common/models.py:2347 common/models.py:2509 +#: company/models.py:545 company/models.py:802 order/models.py:443 +#: order/models.py:1826 part/models.py:1150 report/models.py:222 #: report/models.py:815 report/models.py:841 #: report/templates/report/inventree_build_order_report.html:117 #: stock/models.py:90 msgid "Description" msgstr "Kirjeldus" -#: InvenTree/models.py:863 stock/models.py:91 +#: InvenTree/models.py:1024 stock/models.py:91 msgid "Description (optional)" msgstr "Kirjeldus (valikuline)" -#: InvenTree/models.py:878 common/models.py:2394 +#: InvenTree/models.py:1039 common/models.py:2815 msgid "Path" msgstr "Tee" -#: InvenTree/models.py:983 +#: InvenTree/models.py:1144 msgid "Duplicate names cannot exist under the same parent" msgstr "" -#: InvenTree/models.py:1067 +#: InvenTree/models.py:1228 msgid "Markdown notes (optional)" msgstr "" -#: InvenTree/models.py:1098 +#: InvenTree/models.py:1259 msgid "Barcode Data" msgstr "" -#: InvenTree/models.py:1099 +#: InvenTree/models.py:1260 msgid "Third party barcode data" msgstr "" -#: InvenTree/models.py:1105 +#: InvenTree/models.py:1266 msgid "Barcode Hash" msgstr "" -#: InvenTree/models.py:1106 +#: InvenTree/models.py:1267 msgid "Unique hash of barcode data" msgstr "" -#: InvenTree/models.py:1187 +#: InvenTree/models.py:1348 msgid "Existing barcode found" msgstr "" -#: InvenTree/models.py:1269 +#: InvenTree/models.py:1430 msgid "Task Failure" msgstr "" -#: InvenTree/models.py:1270 +#: InvenTree/models.py:1431 #, python-brace-format msgid "Background worker task '{f}' failed after {n} attempts" msgstr "" -#: InvenTree/models.py:1297 +#: InvenTree/models.py:1458 msgid "Server Error" msgstr "Serveri viga" -#: InvenTree/models.py:1298 +#: InvenTree/models.py:1459 msgid "An error has been logged by the server." msgstr "" -#: InvenTree/models.py:1340 common/models.py:1748 +#: InvenTree/models.py:1501 common/models.py:1752 #: report/templates/report/inventree_bill_of_materials_report.html:126 #: report/templates/report/inventree_bill_of_materials_report.html:148 #: report/templates/report/inventree_return_order_report.html:35 msgid "Image" msgstr "Pilt" -#: InvenTree/serializers.py:253 part/models.py:4571 +#: InvenTree/serializers.py:255 part/models.py:4196 msgid "Must be a valid number" msgstr "" -#: InvenTree/serializers.py:295 company/models.py:214 part/models.py:3285 +#: InvenTree/serializers.py:297 company/models.py:215 part/models.py:3349 msgid "Currency" msgstr "Valuuta" -#: InvenTree/serializers.py:298 part/serializers.py:1385 +#: InvenTree/serializers.py:300 part/serializers.py:1250 msgid "Select currency from available options" msgstr "" -#: InvenTree/serializers.py:653 +#: InvenTree/serializers.py:654 +msgid "This field may not be null." +msgstr "" + +#: InvenTree/serializers.py:660 msgid "Invalid value" msgstr "" -#: InvenTree/serializers.py:690 +#: InvenTree/serializers.py:697 msgid "Remote Image" msgstr "" -#: InvenTree/serializers.py:691 +#: InvenTree/serializers.py:698 msgid "URL of remote image file" msgstr "" -#: InvenTree/serializers.py:709 +#: InvenTree/serializers.py:716 msgid "Downloading images from remote URL is not enabled" msgstr "" -#: InvenTree/serializers.py:716 +#: InvenTree/serializers.py:723 msgid "Failed to download image from remote URL" msgstr "" +#: InvenTree/serializers.py:806 +msgid "Invalid content type format" +msgstr "" + +#: InvenTree/serializers.py:809 +msgid "Content type not found" +msgstr "" + +#: InvenTree/serializers.py:815 +msgid "Content type does not match required mixin class" +msgstr "" + #: InvenTree/setting/locales.py:20 msgid "Arabic" msgstr "Araabia" @@ -537,30 +553,30 @@ msgstr "" msgid "Not a valid currency code" msgstr "" -#: build/api.py:54 order/api.py:111 order/api.py:270 order/api.py:1373 -#: order/serializers.py:132 +#: build/api.py:54 order/api.py:116 order/api.py:275 order/api.py:1378 +#: order/serializers.py:133 msgid "Order Status" msgstr "" -#: build/api.py:80 build/models.py:264 +#: build/api.py:80 build/models.py:265 msgid "Parent Build" msgstr "" -#: build/api.py:84 build/api.py:831 order/api.py:547 order/api.py:770 -#: order/api.py:1174 order/api.py:1449 stock/api.py:573 +#: build/api.py:84 build/api.py:837 order/api.py:553 order/api.py:776 +#: order/api.py:1179 order/api.py:1454 stock/api.py:573 msgid "Include Variants" msgstr "" -#: build/api.py:100 build/api.py:466 build/api.py:845 build/models.py:270 -#: build/serializers.py:1225 build/serializers.py:1356 -#: build/serializers.py:1427 company/models.py:1067 company/serializers.py:445 -#: order/api.py:298 order/api.py:302 order/api.py:929 order/api.py:1187 -#: order/api.py:1190 order/models.py:1941 order/models.py:2108 -#: order/models.py:2109 part/api.py:1233 part/api.py:1236 part/api.py:1302 -#: part/api.py:1589 part/models.py:472 part/models.py:3296 part/models.py:3439 -#: part/models.py:3497 part/models.py:3518 part/models.py:3540 -#: part/models.py:3679 part/models.py:4046 part/models.py:4368 -#: part/models.py:4787 part/serializers.py:1928 +#: build/api.py:100 build/api.py:472 build/api.py:851 build/models.py:271 +#: build/serializers.py:1233 build/serializers.py:1364 +#: build/serializers.py:1435 company/models.py:1021 company/serializers.py:490 +#: order/api.py:303 order/api.py:307 order/api.py:934 order/api.py:1192 +#: order/api.py:1195 order/models.py:1942 order/models.py:2109 +#: order/models.py:2110 part/api.py:1160 part/api.py:1163 part/api.py:1314 +#: part/models.py:550 part/models.py:3360 part/models.py:3503 +#: part/models.py:3561 part/models.py:3582 part/models.py:3604 +#: part/models.py:3743 part/models.py:3993 part/models.py:4412 +#: part/serializers.py:1801 #: report/templates/report/inventree_bill_of_materials_report.html:110 #: report/templates/report/inventree_bill_of_materials_report.html:137 #: report/templates/report/inventree_build_order_report.html:109 @@ -580,9 +596,9 @@ msgstr "" msgid "Part" msgstr "Osa" -#: build/api.py:120 build/api.py:123 build/serializers.py:1438 part/api.py:980 -#: part/api.py:1316 part/api.py:1600 part/models.py:1080 part/models.py:3568 -#: part/models.py:4162 part/serializers.py:1752 stock/api.py:869 +#: build/api.py:120 build/api.py:123 build/serializers.py:1446 part/api.py:975 +#: part/api.py:1325 part/models.py:435 part/models.py:1168 part/models.py:3632 +#: part/serializers.py:1617 stock/api.py:869 msgid "Category" msgstr "" @@ -590,7 +606,7 @@ msgstr "" msgid "Ancestor Build" msgstr "" -#: build/api.py:152 order/api.py:129 +#: build/api.py:152 order/api.py:134 msgid "Assigned to me" msgstr "" @@ -638,134 +654,134 @@ msgstr "" msgid "Completed after" msgstr "" -#: build/api.py:249 order/api.py:226 +#: build/api.py:249 order/api.py:231 msgid "Min Date" msgstr "" -#: build/api.py:272 order/api.py:245 +#: build/api.py:272 order/api.py:250 msgid "Max Date" msgstr "" -#: build/api.py:297 build/api.py:300 part/api.py:217 stock/api.py:961 +#: build/api.py:297 build/api.py:300 part/api.py:212 stock/api.py:961 msgid "Exclude Tree" msgstr "" -#: build/api.py:405 +#: build/api.py:411 msgid "Build must be cancelled before it can be deleted" msgstr "" -#: build/api.py:449 build/serializers.py:1374 part/models.py:4402 +#: build/api.py:455 build/serializers.py:1382 part/models.py:4027 msgid "Consumable" msgstr "" -#: build/api.py:452 build/serializers.py:1377 part/models.py:4396 +#: build/api.py:458 build/serializers.py:1385 part/models.py:4021 msgid "Optional" msgstr "Valikuline" -#: build/api.py:455 build/serializers.py:1415 common/setting/system.py:456 -#: part/models.py:1202 part/serializers.py:1714 part/serializers.py:1725 +#: build/api.py:461 build/serializers.py:1423 common/setting/system.py:456 +#: part/models.py:1290 part/serializers.py:1579 part/serializers.py:1590 #: stock/api.py:639 msgid "Assembly" msgstr "" -#: build/api.py:458 +#: build/api.py:464 msgid "Tracked" msgstr "Jälgitud" -#: build/api.py:461 build/serializers.py:1380 part/models.py:1220 +#: build/api.py:467 build/serializers.py:1388 part/models.py:1308 msgid "Testable" msgstr "" -#: build/api.py:471 order/api.py:993 order/api.py:1363 +#: build/api.py:477 order/api.py:998 order/api.py:1368 msgid "Order Outstanding" msgstr "" -#: build/api.py:481 build/serializers.py:1464 order/api.py:952 +#: build/api.py:487 build/serializers.py:1472 order/api.py:957 msgid "Allocated" msgstr "" -#: build/api.py:490 build/models.py:1672 build/serializers.py:1393 +#: build/api.py:496 build/models.py:1673 build/serializers.py:1401 msgid "Consumed" msgstr "" -#: build/api.py:499 company/models.py:912 company/serializers.py:440 +#: build/api.py:505 company/models.py:866 company/serializers.py:467 #: templates/email/build_order_required_stock.html:19 #: templates/email/low_stock_notification.html:17 #: templates/email/part_event_notification.html:18 msgid "Available" msgstr "Saadaval" -#: build/api.py:523 build/serializers.py:1466 company/serializers.py:437 -#: order/serializers.py:1281 part/serializers.py:959 part/serializers.py:1306 -#: part/serializers.py:1761 +#: build/api.py:529 build/serializers.py:1474 company/serializers.py:464 +#: order/serializers.py:1295 part/serializers.py:844 part/serializers.py:1171 +#: part/serializers.py:1626 msgid "On Order" msgstr "" -#: build/api.py:868 build/models.py:117 order/models.py:1974 +#: build/api.py:874 build/models.py:118 order/models.py:1975 #: report/templates/report/inventree_build_order_report.html:105 #: stock/serializers.py:93 templates/email/build_order_completed.html:16 #: templates/email/overdue_build_order.html:15 msgid "Build Order" msgstr "" -#: build/api.py:882 build/api.py:886 build/serializers.py:372 -#: build/serializers.py:497 build/serializers.py:567 build/serializers.py:1251 -#: build/serializers.py:1256 order/api.py:1234 order/api.py:1239 -#: order/serializers.py:833 order/serializers.py:973 order/serializers.py:2042 +#: build/api.py:888 build/api.py:892 build/serializers.py:380 +#: build/serializers.py:505 build/serializers.py:575 build/serializers.py:1259 +#: build/serializers.py:1264 order/api.py:1239 order/api.py:1244 +#: order/serializers.py:844 order/serializers.py:984 order/serializers.py:2059 #: stock/api.py:987 stock/serializers.py:111 stock/serializers.py:601 #: stock/serializers.py:710 stock/serializers.py:888 stock/serializers.py:1418 -#: stock/serializers.py:1731 stock/serializers.py:1780 +#: stock/serializers.py:1739 stock/serializers.py:1788 #: templates/email/stale_stock_notification.html:18 users/models.py:549 msgid "Location" msgstr "Asukoht" -#: build/api.py:894 +#: build/api.py:900 msgid "Output" msgstr "" -#: build/api.py:896 +#: build/api.py:902 msgid "Filter by output stock item ID. Use 'null' to find uninstalled build items." msgstr "" -#: build/models.py:118 users/ruleset.py:31 +#: build/models.py:119 users/ruleset.py:31 msgid "Build Orders" msgstr "" -#: build/models.py:168 +#: build/models.py:169 msgid "Assembly BOM has not been validated" msgstr "" -#: build/models.py:175 +#: build/models.py:176 msgid "Build order cannot be created for an inactive part" msgstr "" -#: build/models.py:182 +#: build/models.py:183 msgid "Build order cannot be created for an unlocked part" msgstr "" -#: build/models.py:200 +#: build/models.py:201 msgid "Build orders can only be externally fulfilled for purchaseable parts" msgstr "" -#: build/models.py:207 order/models.py:369 +#: build/models.py:208 order/models.py:370 msgid "Responsible user or group must be specified" msgstr "" -#: build/models.py:212 +#: build/models.py:213 msgid "Build order part cannot be changed" msgstr "" -#: build/models.py:217 order/models.py:382 +#: build/models.py:218 order/models.py:383 msgid "Target date must be after start date" msgstr "" -#: build/models.py:245 +#: build/models.py:246 msgid "Build Order Reference" msgstr "" -#: build/models.py:246 build/serializers.py:1371 order/models.py:614 -#: order/models.py:1311 order/models.py:1773 order/models.py:2712 -#: part/models.py:4442 +#: build/models.py:247 build/serializers.py:1379 order/models.py:615 +#: order/models.py:1312 order/models.py:1774 order/models.py:2713 +#: part/models.py:4067 #: report/templates/report/inventree_bill_of_materials_report.html:139 #: report/templates/report/inventree_purchase_order_report.html:35 #: report/templates/report/inventree_return_order_report.html:26 @@ -773,230 +789,230 @@ msgstr "" msgid "Reference" msgstr "Tootekood" -#: build/models.py:255 +#: build/models.py:256 msgid "Brief description of the build (optional)" msgstr "" -#: build/models.py:265 +#: build/models.py:266 msgid "BuildOrder to which this build is allocated" msgstr "" -#: build/models.py:274 +#: build/models.py:275 msgid "Select part to build" msgstr "" -#: build/models.py:279 +#: build/models.py:280 msgid "Sales Order Reference" msgstr "" -#: build/models.py:284 +#: build/models.py:285 msgid "SalesOrder to which this build is allocated" msgstr "" -#: build/models.py:289 build/serializers.py:1097 +#: build/models.py:290 build/serializers.py:1105 msgid "Source Location" msgstr "" -#: build/models.py:295 +#: build/models.py:296 msgid "Select location to take stock from for this build (leave blank to take from any stock location)" msgstr "" -#: build/models.py:301 +#: build/models.py:302 msgid "External Build" msgstr "" -#: build/models.py:302 +#: build/models.py:303 msgid "This build order is fulfilled externally" msgstr "" -#: build/models.py:307 +#: build/models.py:308 msgid "Destination Location" msgstr "" -#: build/models.py:312 +#: build/models.py:313 msgid "Select location where the completed items will be stored" msgstr "" -#: build/models.py:316 +#: build/models.py:317 msgid "Build Quantity" msgstr "" -#: build/models.py:319 +#: build/models.py:320 msgid "Number of stock items to build" msgstr "" -#: build/models.py:323 +#: build/models.py:324 msgid "Completed items" msgstr "" -#: build/models.py:325 +#: build/models.py:326 msgid "Number of stock items which have been completed" msgstr "" -#: build/models.py:329 +#: build/models.py:330 msgid "Build Status" msgstr "Koostamise olek" -#: build/models.py:334 +#: build/models.py:335 msgid "Build status code" msgstr "" -#: build/models.py:343 build/serializers.py:359 order/serializers.py:849 +#: build/models.py:344 build/serializers.py:367 order/serializers.py:860 #: stock/models.py:1100 stock/serializers.py:85 stock/serializers.py:1591 msgid "Batch Code" msgstr "" -#: build/models.py:347 build/serializers.py:360 +#: build/models.py:348 build/serializers.py:368 msgid "Batch code for this build output" msgstr "" -#: build/models.py:351 order/models.py:479 order/serializers.py:186 -#: part/models.py:1283 +#: build/models.py:352 order/models.py:480 order/serializers.py:193 +#: part/models.py:1371 msgid "Creation Date" msgstr "Loomise kuupäev" -#: build/models.py:357 +#: build/models.py:358 msgid "Build start date" msgstr "" -#: build/models.py:358 +#: build/models.py:359 msgid "Scheduled start date for this build order" msgstr "" -#: build/models.py:364 +#: build/models.py:365 msgid "Target completion date" msgstr "" -#: build/models.py:366 +#: build/models.py:367 msgid "Target date for build completion. Build will be overdue after this date." msgstr "" -#: build/models.py:371 order/models.py:667 order/models.py:2751 +#: build/models.py:372 order/models.py:668 order/models.py:2752 msgid "Completion Date" msgstr "" -#: build/models.py:379 +#: build/models.py:380 msgid "completed by" msgstr "" -#: build/models.py:388 +#: build/models.py:389 msgid "Issued by" msgstr "" -#: build/models.py:389 +#: build/models.py:390 msgid "User who issued this build order" msgstr "" -#: build/models.py:398 common/models.py:180 order/api.py:179 -#: order/models.py:504 part/models.py:1300 +#: build/models.py:399 common/models.py:184 order/api.py:184 +#: order/models.py:505 part/models.py:1388 #: report/templates/report/inventree_build_order_report.html:158 msgid "Responsible" msgstr "" -#: build/models.py:399 +#: build/models.py:400 msgid "User or group responsible for this build order" msgstr "" -#: build/models.py:404 stock/models.py:1093 +#: build/models.py:405 stock/models.py:1093 msgid "External Link" msgstr "" -#: build/models.py:406 common/models.py:1984 part/models.py:1114 +#: build/models.py:407 common/models.py:1990 part/models.py:1202 #: stock/models.py:1095 msgid "Link to external URL" msgstr "" -#: build/models.py:411 +#: build/models.py:412 msgid "Build Priority" msgstr "" -#: build/models.py:414 +#: build/models.py:415 msgid "Priority of this build order" msgstr "" -#: build/models.py:422 common/models.py:150 common/models.py:164 -#: order/api.py:165 order/models.py:451 order/models.py:1805 +#: build/models.py:423 common/models.py:154 common/models.py:168 +#: order/api.py:170 order/models.py:452 order/models.py:1806 msgid "Project Code" msgstr "" -#: build/models.py:423 +#: build/models.py:424 msgid "Project code for this build order" msgstr "" -#: build/models.py:676 +#: build/models.py:677 msgid "Cannot complete build order with open child builds" msgstr "" -#: build/models.py:681 +#: build/models.py:682 msgid "Cannot complete build order with incomplete outputs" msgstr "" -#: build/models.py:700 build/models.py:830 +#: build/models.py:701 build/models.py:831 msgid "Failed to offload task to complete build allocations" msgstr "" -#: build/models.py:723 +#: build/models.py:724 #, python-brace-format msgid "Build order {build} has been completed" msgstr "" -#: build/models.py:729 +#: build/models.py:730 msgid "A build order has been completed" msgstr "" -#: build/models.py:911 build/serializers.py:407 +#: build/models.py:912 build/serializers.py:415 msgid "Serial numbers must be provided for trackable parts" msgstr "" -#: build/models.py:1042 build/models.py:1129 +#: build/models.py:1043 build/models.py:1130 msgid "No build output specified" msgstr "" -#: build/models.py:1045 +#: build/models.py:1046 msgid "Build output is already completed" msgstr "" -#: build/models.py:1048 +#: build/models.py:1049 msgid "Build output does not match Build Order" msgstr "" -#: build/models.py:1136 build/models.py:1234 build/serializers.py:285 -#: build/serializers.py:335 build/serializers.py:965 build/serializers.py:1739 -#: order/models.py:717 order/serializers.py:658 order/serializers.py:844 -#: part/serializers.py:1708 stock/models.py:940 stock/models.py:1430 +#: build/models.py:1137 build/models.py:1235 build/serializers.py:293 +#: build/serializers.py:343 build/serializers.py:973 build/serializers.py:1747 +#: order/models.py:718 order/serializers.py:669 order/serializers.py:855 +#: part/serializers.py:1573 stock/models.py:940 stock/models.py:1430 #: stock/models.py:1878 stock/serializers.py:688 stock/serializers.py:1580 msgid "Quantity must be greater than zero" msgstr "" -#: build/models.py:1140 build/models.py:1239 build/serializers.py:290 +#: build/models.py:1141 build/models.py:1240 build/serializers.py:298 msgid "Quantity cannot be greater than the output quantity" msgstr "" -#: build/models.py:1214 build/serializers.py:606 +#: build/models.py:1215 build/serializers.py:614 msgid "Build output has not passed all required tests" msgstr "" -#: build/models.py:1217 build/serializers.py:601 +#: build/models.py:1218 build/serializers.py:609 #, python-brace-format msgid "Build output {serial} has not passed all required tests" msgstr "" -#: build/models.py:1229 +#: build/models.py:1230 msgid "Cannot partially complete a build output with allocated items" msgstr "" -#: build/models.py:1627 +#: build/models.py:1628 msgid "Build Order Line Item" msgstr "" -#: build/models.py:1651 +#: build/models.py:1652 msgid "Build object" msgstr "" -#: build/models.py:1663 build/models.py:1974 build/serializers.py:271 -#: build/serializers.py:320 build/serializers.py:1392 common/models.py:1340 -#: order/models.py:1756 order/models.py:2597 order/serializers.py:1696 -#: order/serializers.py:2124 part/models.py:3453 part/models.py:4390 +#: build/models.py:1664 build/models.py:1975 build/serializers.py:279 +#: build/serializers.py:328 build/serializers.py:1400 common/models.py:1344 +#: order/models.py:1757 order/models.py:2598 order/serializers.py:1710 +#: order/serializers.py:2141 part/models.py:3517 part/models.py:4015 #: report/templates/report/inventree_bill_of_materials_report.html:138 #: report/templates/report/inventree_build_order_report.html:113 #: report/templates/report/inventree_purchase_order_report.html:36 @@ -1014,427 +1030,427 @@ msgstr "" msgid "Quantity" msgstr "Kogus" -#: build/models.py:1664 +#: build/models.py:1665 msgid "Required quantity for build order" msgstr "" -#: build/models.py:1673 +#: build/models.py:1674 msgid "Quantity of consumed stock" msgstr "" -#: build/models.py:1772 +#: build/models.py:1773 msgid "Build item must specify a build output, as master part is marked as trackable" msgstr "" -#: build/models.py:1783 +#: build/models.py:1784 #, python-brace-format msgid "Allocated quantity ({q}) must not exceed available stock quantity ({a})" msgstr "" -#: build/models.py:1804 order/models.py:2546 +#: build/models.py:1805 order/models.py:2547 msgid "Stock item is over-allocated" msgstr "" -#: build/models.py:1809 order/models.py:2549 +#: build/models.py:1810 order/models.py:2550 msgid "Allocation quantity must be greater than zero" msgstr "" -#: build/models.py:1815 +#: build/models.py:1816 msgid "Quantity must be 1 for serialized stock" msgstr "" -#: build/models.py:1875 +#: build/models.py:1876 msgid "Selected stock item does not match BOM line" msgstr "" -#: build/models.py:1913 +#: build/models.py:1914 msgid "Allocated quantity exceeds available stock quantity" msgstr "" -#: build/models.py:1964 build/serializers.py:948 build/serializers.py:1240 -#: order/serializers.py:1533 order/serializers.py:1554 +#: build/models.py:1965 build/serializers.py:956 build/serializers.py:1248 +#: order/serializers.py:1547 order/serializers.py:1568 #: report/templates/report/inventree_sales_order_shipment_report.html:29 #: stock/api.py:1404 stock/models.py:456 stock/serializers.py:102 #: stock/serializers.py:800 stock/serializers.py:1274 stock/serializers.py:1386 msgid "Stock Item" msgstr "" -#: build/models.py:1965 +#: build/models.py:1966 msgid "Source stock item" msgstr "" -#: build/models.py:1975 +#: build/models.py:1976 msgid "Stock quantity to allocate to build" msgstr "" -#: build/models.py:1984 +#: build/models.py:1985 msgid "Install into" msgstr "" -#: build/models.py:1985 +#: build/models.py:1986 msgid "Destination stock item" msgstr "" -#: build/serializers.py:118 +#: build/serializers.py:120 msgid "Build Level" msgstr "" -#: build/serializers.py:128 +#: build/serializers.py:136 msgid "Part Name" msgstr "Osa nimi" -#: build/serializers.py:153 +#: build/serializers.py:161 msgid "Project Code Label" msgstr "" -#: build/serializers.py:219 build/serializers.py:974 +#: build/serializers.py:227 build/serializers.py:982 msgid "Build Output" msgstr "" -#: build/serializers.py:231 +#: build/serializers.py:239 msgid "Build output does not match the parent build" msgstr "" -#: build/serializers.py:235 +#: build/serializers.py:243 msgid "Output part does not match BuildOrder part" msgstr "" -#: build/serializers.py:239 +#: build/serializers.py:247 msgid "This build output has already been completed" msgstr "" -#: build/serializers.py:253 +#: build/serializers.py:261 msgid "This build output is not fully allocated" msgstr "" -#: build/serializers.py:272 build/serializers.py:321 +#: build/serializers.py:280 build/serializers.py:329 msgid "Enter quantity for build output" msgstr "" -#: build/serializers.py:343 +#: build/serializers.py:351 msgid "Integer quantity required for trackable parts" msgstr "" -#: build/serializers.py:349 +#: build/serializers.py:357 msgid "Integer quantity required, as the bill of materials contains trackable parts" msgstr "" -#: build/serializers.py:366 order/serializers.py:865 order/serializers.py:1700 +#: build/serializers.py:374 order/serializers.py:876 order/serializers.py:1714 #: stock/serializers.py:699 msgid "Serial Numbers" msgstr "" -#: build/serializers.py:367 +#: build/serializers.py:375 msgid "Enter serial numbers for build outputs" msgstr "" -#: build/serializers.py:373 +#: build/serializers.py:381 msgid "Stock location for build output" msgstr "" -#: build/serializers.py:388 +#: build/serializers.py:396 msgid "Auto Allocate Serial Numbers" msgstr "" -#: build/serializers.py:390 +#: build/serializers.py:398 msgid "Automatically allocate required items with matching serial numbers" msgstr "" -#: build/serializers.py:423 order/serializers.py:951 stock/api.py:1183 +#: build/serializers.py:431 order/serializers.py:962 stock/api.py:1183 #: stock/models.py:1901 msgid "The following serial numbers already exist or are invalid" msgstr "" -#: build/serializers.py:465 build/serializers.py:521 build/serializers.py:613 +#: build/serializers.py:473 build/serializers.py:529 build/serializers.py:621 msgid "A list of build outputs must be provided" msgstr "" -#: build/serializers.py:498 +#: build/serializers.py:506 msgid "Stock location for scrapped outputs" msgstr "" -#: build/serializers.py:504 +#: build/serializers.py:512 msgid "Discard Allocations" msgstr "" -#: build/serializers.py:505 +#: build/serializers.py:513 msgid "Discard any stock allocations for scrapped outputs" msgstr "Tühista kõik laoseisu eraldised mahakantud väljundite jaoks" -#: build/serializers.py:510 +#: build/serializers.py:518 msgid "Reason for scrapping build output(s)" msgstr "" -#: build/serializers.py:568 +#: build/serializers.py:576 msgid "Location for completed build outputs" msgstr "" -#: build/serializers.py:576 +#: build/serializers.py:584 msgid "Accept Incomplete Allocation" msgstr "" -#: build/serializers.py:577 +#: build/serializers.py:585 msgid "Complete outputs if stock has not been fully allocated" msgstr "" -#: build/serializers.py:702 +#: build/serializers.py:710 msgid "Consume Allocated Stock" msgstr "" -#: build/serializers.py:703 +#: build/serializers.py:711 msgid "Consume any stock which has already been allocated to this build" msgstr "" -#: build/serializers.py:709 +#: build/serializers.py:717 msgid "Remove Incomplete Outputs" msgstr "" -#: build/serializers.py:710 +#: build/serializers.py:718 msgid "Delete any build outputs which have not been completed" msgstr "" -#: build/serializers.py:737 +#: build/serializers.py:745 msgid "Not permitted" msgstr "" -#: build/serializers.py:738 +#: build/serializers.py:746 msgid "Accept as consumed by this build order" msgstr "" -#: build/serializers.py:739 +#: build/serializers.py:747 msgid "Deallocate before completing this build order" msgstr "" -#: build/serializers.py:766 +#: build/serializers.py:774 msgid "Overallocated Stock" msgstr "" -#: build/serializers.py:769 +#: build/serializers.py:777 msgid "How do you want to handle extra stock items assigned to the build order" msgstr "" -#: build/serializers.py:780 +#: build/serializers.py:788 msgid "Some stock items have been overallocated" msgstr "" -#: build/serializers.py:785 +#: build/serializers.py:793 msgid "Accept Unallocated" msgstr "" -#: build/serializers.py:787 +#: build/serializers.py:795 msgid "Accept that stock items have not been fully allocated to this build order" msgstr "" -#: build/serializers.py:798 +#: build/serializers.py:806 msgid "Required stock has not been fully allocated" msgstr "" -#: build/serializers.py:803 order/serializers.py:524 order/serializers.py:1601 +#: build/serializers.py:811 order/serializers.py:535 order/serializers.py:1615 msgid "Accept Incomplete" msgstr "" -#: build/serializers.py:805 +#: build/serializers.py:813 msgid "Accept that the required number of build outputs have not been completed" msgstr "" -#: build/serializers.py:816 +#: build/serializers.py:824 msgid "Required build quantity has not been completed" msgstr "" -#: build/serializers.py:828 +#: build/serializers.py:836 msgid "Build order has open child build orders" msgstr "" -#: build/serializers.py:831 +#: build/serializers.py:839 msgid "Build order must be in production state" msgstr "" -#: build/serializers.py:834 +#: build/serializers.py:842 msgid "Build order has incomplete outputs" msgstr "" -#: build/serializers.py:873 +#: build/serializers.py:881 msgid "Build Line" msgstr "" -#: build/serializers.py:881 +#: build/serializers.py:889 msgid "Build output" msgstr "" -#: build/serializers.py:889 +#: build/serializers.py:897 msgid "Build output must point to the same build" msgstr "" -#: build/serializers.py:920 +#: build/serializers.py:928 msgid "Build Line Item" msgstr "" -#: build/serializers.py:938 +#: build/serializers.py:946 msgid "bom_item.part must point to the same part as the build order" msgstr "" -#: build/serializers.py:954 stock/serializers.py:1287 +#: build/serializers.py:962 stock/serializers.py:1287 msgid "Item must be in stock" msgstr "" -#: build/serializers.py:997 order/serializers.py:1587 +#: build/serializers.py:1005 order/serializers.py:1601 #, python-brace-format msgid "Available quantity ({q}) exceeded" msgstr "" -#: build/serializers.py:1003 +#: build/serializers.py:1011 msgid "Build output must be specified for allocation of tracked parts" msgstr "" -#: build/serializers.py:1011 +#: build/serializers.py:1019 msgid "Build output cannot be specified for allocation of untracked parts" msgstr "" -#: build/serializers.py:1035 order/serializers.py:1860 +#: build/serializers.py:1043 order/serializers.py:1874 msgid "Allocation items must be provided" msgstr "" -#: build/serializers.py:1099 +#: build/serializers.py:1107 msgid "Stock location where parts are to be sourced (leave blank to take from any location)" msgstr "" -#: build/serializers.py:1108 +#: build/serializers.py:1116 msgid "Exclude Location" msgstr "" -#: build/serializers.py:1109 +#: build/serializers.py:1117 msgid "Exclude stock items from this selected location" msgstr "" -#: build/serializers.py:1114 +#: build/serializers.py:1122 msgid "Interchangeable Stock" msgstr "" -#: build/serializers.py:1115 +#: build/serializers.py:1123 msgid "Stock items in multiple locations can be used interchangeably" msgstr "" -#: build/serializers.py:1120 +#: build/serializers.py:1128 msgid "Substitute Stock" msgstr "" -#: build/serializers.py:1121 +#: build/serializers.py:1129 msgid "Allow allocation of substitute parts" msgstr "" -#: build/serializers.py:1126 +#: build/serializers.py:1134 msgid "Optional Items" msgstr "Valikained" -#: build/serializers.py:1127 +#: build/serializers.py:1135 msgid "Allocate optional BOM items to build order" msgstr "" -#: build/serializers.py:1148 +#: build/serializers.py:1156 msgid "Failed to start auto-allocation task" msgstr "" -#: build/serializers.py:1200 +#: build/serializers.py:1208 msgid "BOM Reference" msgstr "" -#: build/serializers.py:1206 +#: build/serializers.py:1214 msgid "BOM Part ID" msgstr "" -#: build/serializers.py:1213 +#: build/serializers.py:1221 msgid "BOM Part Name" msgstr "" -#: build/serializers.py:1266 build/serializers.py:1449 +#: build/serializers.py:1274 build/serializers.py:1457 msgid "Build" msgstr "" -#: build/serializers.py:1276 company/models.py:685 order/api.py:311 -#: order/api.py:316 order/api.py:543 order/serializers.py:650 +#: build/serializers.py:1284 company/models.py:639 order/api.py:316 +#: order/api.py:321 order/api.py:549 order/serializers.py:661 #: stock/models.py:1036 stock/serializers.py:579 msgid "Supplier Part" msgstr "" -#: build/serializers.py:1284 stock/serializers.py:620 +#: build/serializers.py:1292 stock/serializers.py:620 msgid "Allocated Quantity" msgstr "" -#: build/serializers.py:1351 +#: build/serializers.py:1359 msgid "Build Reference" msgstr "" -#: build/serializers.py:1361 +#: build/serializers.py:1369 msgid "Part Category Name" msgstr "" -#: build/serializers.py:1383 common/setting/system.py:480 part/models.py:1214 +#: build/serializers.py:1391 common/setting/system.py:480 part/models.py:1302 msgid "Trackable" msgstr "Jälgitav" -#: build/serializers.py:1386 +#: build/serializers.py:1394 msgid "Inherited" msgstr "" -#: build/serializers.py:1389 part/models.py:4475 +#: build/serializers.py:1397 part/models.py:4100 msgid "Allow Variants" msgstr "" -#: build/serializers.py:1395 build/serializers.py:1400 part/models.py:4208 -#: part/models.py:4779 stock/api.py:882 +#: build/serializers.py:1403 build/serializers.py:1408 part/models.py:3833 +#: part/models.py:4404 stock/api.py:882 msgid "BOM Item" msgstr "" -#: build/serializers.py:1467 order/serializers.py:1282 part/serializers.py:1310 -#: part/serializers.py:1765 +#: build/serializers.py:1475 order/serializers.py:1296 part/serializers.py:1175 +#: part/serializers.py:1630 msgid "In Production" msgstr "" -#: build/serializers.py:1469 part/serializers.py:950 part/serializers.py:1314 +#: build/serializers.py:1477 part/serializers.py:835 part/serializers.py:1179 msgid "Scheduled to Build" msgstr "" -#: build/serializers.py:1472 part/serializers.py:987 +#: build/serializers.py:1480 part/serializers.py:872 msgid "External Stock" msgstr "" -#: build/serializers.py:1473 part/serializers.py:1300 part/serializers.py:1808 +#: build/serializers.py:1481 part/serializers.py:1165 part/serializers.py:1673 msgid "Available Stock" msgstr "Saadaval laos" -#: build/serializers.py:1475 +#: build/serializers.py:1483 msgid "Available Substitute Stock" msgstr "" -#: build/serializers.py:1478 +#: build/serializers.py:1486 msgid "Available Variant Stock" msgstr "" -#: build/serializers.py:1752 +#: build/serializers.py:1760 msgid "Consumed quantity exceeds allocated quantity" msgstr "" -#: build/serializers.py:1789 +#: build/serializers.py:1797 msgid "Optional notes for the stock consumption" msgstr "" -#: build/serializers.py:1806 +#: build/serializers.py:1814 msgid "Build item must point to the correct build order" msgstr "" -#: build/serializers.py:1811 +#: build/serializers.py:1819 msgid "Duplicate build item allocation" msgstr "" -#: build/serializers.py:1829 +#: build/serializers.py:1837 msgid "Build line must point to the correct build order" msgstr "" -#: build/serializers.py:1834 +#: build/serializers.py:1842 msgid "Duplicate build line allocation" msgstr "" -#: build/serializers.py:1846 +#: build/serializers.py:1854 msgid "At least one item or line must be provided" msgstr "" @@ -1482,702 +1498,826 @@ msgstr "" msgid "Build order {bo} is now overdue" msgstr "" -#: common/api.py:694 +#: common/api.py:701 msgid "Is Link" msgstr "On link" -#: common/api.py:702 +#: common/api.py:709 msgid "Is File" msgstr "On fail" -#: common/api.py:745 +#: common/api.py:756 msgid "User does not have permission to delete these attachments" msgstr "" -#: common/api.py:762 +#: common/api.py:769 msgid "User does not have permission to delete this attachment" msgstr "" -#: common/currency.py:122 +#: common/currency.py:130 msgid "Invalid currency code" msgstr "" -#: common/currency.py:124 +#: common/currency.py:132 msgid "Duplicate currency code" msgstr "" -#: common/currency.py:129 +#: common/currency.py:137 msgid "No valid currency codes provided" msgstr "" -#: common/currency.py:146 +#: common/currency.py:154 msgid "No plugin" msgstr "Pluginat pole" -#: common/models.py:101 common/models.py:126 common/models.py:2729 +#: common/models.py:105 common/models.py:130 common/models.py:3150 msgid "Updated" msgstr "Uuendatud" -#: common/models.py:102 common/models.py:127 +#: common/models.py:106 common/models.py:131 msgid "Timestamp of last update" msgstr "" -#: common/models.py:139 +#: common/models.py:143 msgid "Update By" msgstr "" -#: common/models.py:140 +#: common/models.py:144 msgid "User who last updated this object" msgstr "" -#: common/models.py:165 +#: common/models.py:169 msgid "Unique project code" msgstr "" -#: common/models.py:172 +#: common/models.py:176 msgid "Project description" msgstr "" -#: common/models.py:181 +#: common/models.py:185 msgid "User or group responsible for this project" msgstr "" -#: common/models.py:771 common/models.py:1272 common/models.py:1310 +#: common/models.py:775 common/models.py:1276 common/models.py:1314 msgid "Settings key" msgstr "Seade võti" -#: common/models.py:775 +#: common/models.py:779 msgid "Settings value" msgstr "Seade väärtus" -#: common/models.py:830 +#: common/models.py:834 msgid "Chosen value is not a valid option" msgstr "" -#: common/models.py:846 +#: common/models.py:850 msgid "Value must be a boolean value" msgstr "" -#: common/models.py:854 +#: common/models.py:858 msgid "Value must be an integer value" msgstr "" -#: common/models.py:862 +#: common/models.py:866 msgid "Value must be a valid number" msgstr "" -#: common/models.py:887 +#: common/models.py:891 msgid "Value does not pass validation checks" msgstr "" -#: common/models.py:909 +#: common/models.py:913 msgid "Key string must be unique" msgstr "" -#: common/models.py:1318 common/models.py:1319 common/models.py:1423 -#: common/models.py:1424 common/models.py:1669 common/models.py:1670 -#: common/models.py:2000 common/models.py:2001 common/models.py:2382 -#: importer/models.py:100 part/models.py:3547 part/models.py:3575 +#: common/models.py:1322 common/models.py:1323 common/models.py:1427 +#: common/models.py:1428 common/models.py:1673 common/models.py:1674 +#: common/models.py:2006 common/models.py:2007 common/models.py:2803 +#: importer/models.py:100 part/models.py:3611 part/models.py:3639 #: plugin/models.py:355 plugin/models.py:356 #: report/templates/report/inventree_test_report.html:105 users/models.py:124 #: users/models.py:501 msgid "User" msgstr "" -#: common/models.py:1341 +#: common/models.py:1345 msgid "Price break quantity" msgstr "" -#: common/models.py:1348 company/serializers.py:564 order/models.py:1842 -#: order/models.py:3043 +#: common/models.py:1352 company/serializers.py:349 order/models.py:1843 +#: order/models.py:3044 msgid "Price" msgstr "" -#: common/models.py:1349 +#: common/models.py:1353 msgid "Unit price at specified quantity" msgstr "" -#: common/models.py:1400 common/models.py:1585 +#: common/models.py:1404 common/models.py:1589 msgid "Endpoint" msgstr "" -#: common/models.py:1401 +#: common/models.py:1405 msgid "Endpoint at which this webhook is received" msgstr "" -#: common/models.py:1411 +#: common/models.py:1415 msgid "Name for this webhook" msgstr "" -#: common/models.py:1415 common/models.py:2241 common/models.py:2348 -#: company/models.py:191 company/models.py:822 machine/models.py:40 -#: part/models.py:1237 plugin/models.py:69 stock/api.py:642 users/models.py:195 +#: common/models.py:1419 common/models.py:2247 common/models.py:2354 +#: company/models.py:192 company/models.py:776 machine/models.py:40 +#: part/models.py:1325 plugin/models.py:69 stock/api.py:642 users/models.py:195 #: users/models.py:554 users/serializers.py:314 msgid "Active" msgstr "" -#: common/models.py:1415 +#: common/models.py:1419 msgid "Is this webhook active" msgstr "" -#: common/models.py:1431 users/models.py:172 +#: common/models.py:1435 users/models.py:172 msgid "Token" msgstr "" -#: common/models.py:1432 +#: common/models.py:1436 msgid "Token for access" msgstr "" -#: common/models.py:1440 +#: common/models.py:1444 msgid "Secret" msgstr "" -#: common/models.py:1441 +#: common/models.py:1445 msgid "Shared secret for HMAC" msgstr "" -#: common/models.py:1549 common/models.py:2619 +#: common/models.py:1553 common/models.py:3040 msgid "Message ID" msgstr "" -#: common/models.py:1550 common/models.py:2609 +#: common/models.py:1554 common/models.py:3030 msgid "Unique identifier for this message" msgstr "" -#: common/models.py:1558 +#: common/models.py:1562 msgid "Host" msgstr "" -#: common/models.py:1559 +#: common/models.py:1563 msgid "Host from which this message was received" msgstr "" -#: common/models.py:1567 +#: common/models.py:1571 msgid "Header" msgstr "" -#: common/models.py:1568 +#: common/models.py:1572 msgid "Header of this message" msgstr "" -#: common/models.py:1575 +#: common/models.py:1579 msgid "Body" msgstr "" -#: common/models.py:1576 +#: common/models.py:1580 msgid "Body of this message" msgstr "" -#: common/models.py:1586 +#: common/models.py:1590 msgid "Endpoint on which this message was received" msgstr "" -#: common/models.py:1591 +#: common/models.py:1595 msgid "Worked on" msgstr "" -#: common/models.py:1592 +#: common/models.py:1596 msgid "Was the work on this message finished?" msgstr "" -#: common/models.py:1718 +#: common/models.py:1722 msgid "Id" msgstr "ID" -#: common/models.py:1720 +#: common/models.py:1724 msgid "Title" msgstr "Pealkiri" -#: common/models.py:1722 common/models.py:1983 company/models.py:185 -#: company/models.py:467 company/models.py:534 company/models.py:839 -#: order/models.py:457 order/models.py:1786 order/models.py:2343 -#: part/models.py:1113 +#: common/models.py:1726 common/models.py:1989 company/models.py:186 +#: company/models.py:468 company/models.py:536 company/models.py:793 +#: order/models.py:458 order/models.py:1787 order/models.py:2344 +#: part/models.py:1201 #: report/templates/report/inventree_build_order_report.html:164 msgid "Link" msgstr "Link" -#: common/models.py:1724 +#: common/models.py:1728 msgid "Published" msgstr "Avaldatud" -#: common/models.py:1726 +#: common/models.py:1730 msgid "Author" msgstr "Autor" -#: common/models.py:1728 +#: common/models.py:1732 msgid "Summary" msgstr "Kokkuvõte" -#: common/models.py:1731 common/models.py:2586 +#: common/models.py:1735 common/models.py:3007 msgid "Read" msgstr "Loetud" -#: common/models.py:1731 +#: common/models.py:1735 msgid "Was this news item read?" msgstr "" -#: common/models.py:1748 +#: common/models.py:1752 msgid "Image file" msgstr "Pildifail" -#: common/models.py:1760 +#: common/models.py:1764 msgid "Target model type for this image" msgstr "" -#: common/models.py:1764 +#: common/models.py:1768 msgid "Target model ID for this image" msgstr "" -#: common/models.py:1786 +#: common/models.py:1790 msgid "Custom Unit" msgstr "" -#: common/models.py:1804 +#: common/models.py:1808 msgid "Unit symbol must be unique" msgstr "" -#: common/models.py:1819 +#: common/models.py:1823 msgid "Unit name must be a valid identifier" msgstr "" -#: common/models.py:1838 +#: common/models.py:1842 msgid "Unit name" msgstr "Ühiku nimi" -#: common/models.py:1845 +#: common/models.py:1849 msgid "Symbol" msgstr "Sümbol" -#: common/models.py:1846 +#: common/models.py:1850 msgid "Optional unit symbol" msgstr "" -#: common/models.py:1852 +#: common/models.py:1856 msgid "Definition" msgstr "Definitsioon" -#: common/models.py:1853 +#: common/models.py:1857 msgid "Unit definition" msgstr "Ühiku definitsioon" -#: common/models.py:1911 common/models.py:1974 stock/models.py:2967 +#: common/models.py:1917 common/models.py:1980 stock/models.py:2984 #: stock/serializers.py:247 msgid "Attachment" msgstr "Manus" -#: common/models.py:1928 +#: common/models.py:1934 msgid "Missing file" msgstr "Puuduv fail" -#: common/models.py:1929 +#: common/models.py:1935 msgid "Missing external link" msgstr "Puuduv väline link" -#: common/models.py:1966 +#: common/models.py:1972 common/models.py:2488 msgid "Model type" msgstr "" -#: common/models.py:1967 +#: common/models.py:1973 msgid "Target model type for image" msgstr "" -#: common/models.py:1975 +#: common/models.py:1981 msgid "Select file to attach" msgstr "Vali fail, mida lisada" -#: common/models.py:1991 +#: common/models.py:1997 msgid "Comment" msgstr "Kommentaar" -#: common/models.py:1992 +#: common/models.py:1998 msgid "Attachment comment" msgstr "" -#: common/models.py:2008 +#: common/models.py:2014 msgid "Upload date" msgstr "" -#: common/models.py:2009 +#: common/models.py:2015 msgid "Date the file was uploaded" msgstr "" -#: common/models.py:2013 +#: common/models.py:2019 msgid "File size" msgstr "Faili suurus" -#: common/models.py:2013 +#: common/models.py:2019 msgid "File size in bytes" msgstr "" -#: common/models.py:2051 common/serializers.py:684 +#: common/models.py:2057 common/serializers.py:688 msgid "Invalid model type specified for attachment" msgstr "" -#: common/models.py:2072 +#: common/models.py:2078 msgid "Custom State" msgstr "" -#: common/models.py:2073 +#: common/models.py:2079 msgid "Custom States" msgstr "" -#: common/models.py:2078 +#: common/models.py:2084 msgid "Reference Status Set" msgstr "" -#: common/models.py:2079 +#: common/models.py:2085 msgid "Status set that is extended with this custom state" msgstr "" -#: common/models.py:2083 generic/states/serializers.py:18 +#: common/models.py:2089 generic/states/serializers.py:18 msgid "Logical Key" msgstr "" -#: common/models.py:2085 +#: common/models.py:2091 msgid "State logical key that is equal to this custom state in business logic" msgstr "" -#: common/models.py:2090 common/models.py:2329 company/models.py:622 -#: machine/serializers.py:27 -#: report/templates/report/inventree_test_report.html:104 stock/models.py:2959 +#: common/models.py:2096 common/models.py:2335 machine/serializers.py:27 +#: report/templates/report/inventree_test_report.html:104 stock/models.py:2976 msgid "Value" msgstr "" -#: common/models.py:2091 +#: common/models.py:2097 msgid "Numerical value that will be saved in the models database" msgstr "" -#: common/models.py:2097 +#: common/models.py:2103 msgid "Name of the state" msgstr "" -#: common/models.py:2106 common/models.py:2335 generic/states/serializers.py:22 +#: common/models.py:2112 common/models.py:2341 generic/states/serializers.py:22 msgid "Label" msgstr "Silt" -#: common/models.py:2107 +#: common/models.py:2113 msgid "Label that will be displayed in the frontend" msgstr "" -#: common/models.py:2114 generic/states/serializers.py:24 +#: common/models.py:2120 generic/states/serializers.py:24 msgid "Color" msgstr "" -#: common/models.py:2115 +#: common/models.py:2121 msgid "Color that will be displayed in the frontend" msgstr "" -#: common/models.py:2123 +#: common/models.py:2129 msgid "Model" msgstr "" -#: common/models.py:2124 +#: common/models.py:2130 msgid "Model this state is associated with" msgstr "" -#: common/models.py:2139 +#: common/models.py:2145 msgid "Model must be selected" msgstr "" -#: common/models.py:2142 +#: common/models.py:2148 msgid "Key must be selected" msgstr "" -#: common/models.py:2145 +#: common/models.py:2151 msgid "Logical key must be selected" msgstr "" -#: common/models.py:2149 +#: common/models.py:2155 msgid "Key must be different from logical key" msgstr "" -#: common/models.py:2156 +#: common/models.py:2162 msgid "Valid reference status class must be provided" msgstr "" -#: common/models.py:2162 +#: common/models.py:2168 msgid "Key must be different from the logical keys of the reference status" msgstr "" -#: common/models.py:2169 +#: common/models.py:2175 msgid "Logical key must be in the logical keys of the reference status" msgstr "" -#: common/models.py:2176 +#: common/models.py:2182 msgid "Name must be different from the names of the reference status" msgstr "" -#: common/models.py:2216 common/models.py:2323 part/models.py:3889 +#: common/models.py:2222 common/models.py:2329 common/models.py:2533 msgid "Selection List" msgstr "" -#: common/models.py:2217 +#: common/models.py:2223 msgid "Selection Lists" msgstr "" -#: common/models.py:2222 +#: common/models.py:2228 msgid "Name of the selection list" msgstr "" -#: common/models.py:2229 +#: common/models.py:2235 msgid "Description of the selection list" msgstr "" -#: common/models.py:2235 part/models.py:1242 +#: common/models.py:2241 part/models.py:1330 msgid "Locked" msgstr "" -#: common/models.py:2236 +#: common/models.py:2242 msgid "Is this selection list locked?" msgstr "" -#: common/models.py:2242 +#: common/models.py:2248 msgid "Can this selection list be used?" msgstr "" -#: common/models.py:2250 +#: common/models.py:2256 msgid "Source Plugin" msgstr "" -#: common/models.py:2251 +#: common/models.py:2257 msgid "Plugin which provides the selection list" msgstr "" -#: common/models.py:2256 +#: common/models.py:2262 msgid "Source String" msgstr "" -#: common/models.py:2257 +#: common/models.py:2263 msgid "Optional string identifying the source used for this list" msgstr "" -#: common/models.py:2266 +#: common/models.py:2272 msgid "Default Entry" msgstr "" -#: common/models.py:2267 +#: common/models.py:2273 msgid "Default entry for this selection list" msgstr "" -#: common/models.py:2272 common/models.py:2724 +#: common/models.py:2278 common/models.py:3145 msgid "Created" msgstr "Loodud" -#: common/models.py:2273 +#: common/models.py:2279 msgid "Date and time that the selection list was created" msgstr "" -#: common/models.py:2278 +#: common/models.py:2284 msgid "Last Updated" msgstr "" -#: common/models.py:2279 +#: common/models.py:2285 msgid "Date and time that the selection list was last updated" msgstr "" -#: common/models.py:2313 +#: common/models.py:2319 msgid "Selection List Entry" msgstr "" -#: common/models.py:2314 +#: common/models.py:2320 msgid "Selection List Entries" msgstr "" -#: common/models.py:2324 +#: common/models.py:2330 msgid "Selection list to which this entry belongs" msgstr "" -#: common/models.py:2330 +#: common/models.py:2336 msgid "Value of the selection list entry" msgstr "" -#: common/models.py:2336 +#: common/models.py:2342 msgid "Label for the selection list entry" msgstr "" -#: common/models.py:2342 +#: common/models.py:2348 msgid "Description of the selection list entry" msgstr "" -#: common/models.py:2349 +#: common/models.py:2355 msgid "Is this selection list entry active?" msgstr "" -#: common/models.py:2367 -msgid "Barcode Scan" +#: common/models.py:2387 +msgid "Parameter Template" msgstr "" -#: common/models.py:2371 importer/models.py:546 part/models.py:4060 -msgid "Data" -msgstr "Andmed" - -#: common/models.py:2372 -msgid "Barcode data" -msgstr "Vöötkoodi andmed" - -#: common/models.py:2383 -msgid "User who scanned the barcode" +#: common/models.py:2388 +msgid "Parameter Templates" msgstr "" -#: common/models.py:2388 importer/models.py:69 -msgid "Timestamp" +#: common/models.py:2425 +msgid "Checkbox parameters cannot have units" msgstr "" -#: common/models.py:2389 -msgid "Date and time of the barcode scan" +#: common/models.py:2430 +msgid "Checkbox parameters cannot have choices" msgstr "" -#: common/models.py:2395 -msgid "URL endpoint which processed the barcode" +#: common/models.py:2450 part/models.py:3707 +msgid "Choices must be unique" msgstr "" -#: common/models.py:2402 order/models.py:1832 plugin/serializers.py:93 -msgid "Context" -msgstr "Kontekst" - -#: common/models.py:2403 -msgid "Context data for the barcode scan" +#: common/models.py:2467 +msgid "Parameter template name must be unique" msgstr "" -#: common/models.py:2410 -msgid "Response" -msgstr "Vastus" - -#: common/models.py:2411 -msgid "Response data from the barcode scan" +#: common/models.py:2489 +msgid "Target model type for this parameter template" msgstr "" -#: common/models.py:2417 report/templates/report/inventree_test_report.html:103 -#: stock/models.py:2953 -msgid "Result" -msgstr "Tulemus" - -#: common/models.py:2418 -msgid "Was the barcode scan successful?" +#: common/models.py:2495 +msgid "Parameter Name" msgstr "" -#: common/models.py:2500 -msgid "An error occurred" +#: common/models.py:2501 part/models.py:1283 +msgid "Units" msgstr "" -#: common/models.py:2521 -msgid "INVE-E8: Email log deletion is protected. Set INVENTREE_PROTECT_EMAIL_LOG to False to allow deletion." +#: common/models.py:2502 +msgid "Physical units for this parameter" msgstr "" -#: common/models.py:2568 -msgid "Email Message" +#: common/models.py:2510 +msgid "Parameter description" msgstr "" -#: common/models.py:2569 -msgid "Email Messages" +#: common/models.py:2516 +msgid "Checkbox" msgstr "" -#: common/models.py:2576 -msgid "Announced" +#: common/models.py:2517 +msgid "Is this parameter a checkbox?" msgstr "" -#: common/models.py:2578 -msgid "Sent" +#: common/models.py:2522 part/models.py:3794 +msgid "Choices" msgstr "" -#: common/models.py:2579 -msgid "Failed" +#: common/models.py:2523 +msgid "Valid choices for this parameter (comma-separated)" +msgstr "" + +#: common/models.py:2534 +msgid "Selection list for this parameter" +msgstr "" + +#: common/models.py:2539 part/models.py:3769 report/models.py:287 +msgid "Enabled" +msgstr "" + +#: common/models.py:2540 +msgid "Is this parameter template enabled?" +msgstr "" + +#: common/models.py:2581 +msgid "Parameter" msgstr "" #: common/models.py:2582 -msgid "Delivered" -msgstr "" - -#: common/models.py:2590 -msgid "Confirmed" -msgstr "" - -#: common/models.py:2596 -msgid "Inbound" -msgstr "" - -#: common/models.py:2597 -msgid "Outbound" -msgstr "" - -#: common/models.py:2602 -msgid "No Reply" -msgstr "" - -#: common/models.py:2603 -msgid "Track Delivery" -msgstr "" - -#: common/models.py:2604 -msgid "Track Read" -msgstr "" - -#: common/models.py:2605 -msgid "Track Click" -msgstr "" - -#: common/models.py:2608 common/models.py:2711 -msgid "Global ID" -msgstr "" - -#: common/models.py:2621 -msgid "Identifier for this message (might be supplied by external system)" +msgid "Parameters" msgstr "" #: common/models.py:2628 +msgid "Invalid choice for parameter value" +msgstr "" + +#: common/models.py:2698 common/serializers.py:783 +msgid "Invalid model type specified for parameter" +msgstr "" + +#: common/models.py:2734 +msgid "Model ID" +msgstr "" + +#: common/models.py:2735 +msgid "ID of the target model for this parameter" +msgstr "" + +#: common/models.py:2744 common/setting/system.py:450 report/models.py:373 +#: report/models.py:669 report/serializers.py:94 report/serializers.py:135 +#: stock/serializers.py:234 +msgid "Template" +msgstr "Mall" + +#: common/models.py:2745 +msgid "Parameter template" +msgstr "" + +#: common/models.py:2750 common/models.py:2792 importer/models.py:546 +msgid "Data" +msgstr "Andmed" + +#: common/models.py:2751 +msgid "Parameter Value" +msgstr "" + +#: common/models.py:2760 company/models.py:810 order/serializers.py:894 +#: order/serializers.py:2064 part/models.py:4075 part/models.py:4444 +#: report/templates/report/inventree_bill_of_materials_report.html:140 +#: report/templates/report/inventree_purchase_order_report.html:39 +#: report/templates/report/inventree_return_order_report.html:27 +#: report/templates/report/inventree_sales_order_report.html:32 +#: report/templates/report/inventree_stock_location_report.html:105 +#: stock/serializers.py:813 +msgid "Note" +msgstr "Märkus" + +#: common/models.py:2761 stock/serializers.py:718 +msgid "Optional note field" +msgstr "" + +#: common/models.py:2788 +msgid "Barcode Scan" +msgstr "" + +#: common/models.py:2793 +msgid "Barcode data" +msgstr "Vöötkoodi andmed" + +#: common/models.py:2804 +msgid "User who scanned the barcode" +msgstr "" + +#: common/models.py:2809 importer/models.py:69 +msgid "Timestamp" +msgstr "" + +#: common/models.py:2810 +msgid "Date and time of the barcode scan" +msgstr "" + +#: common/models.py:2816 +msgid "URL endpoint which processed the barcode" +msgstr "" + +#: common/models.py:2823 order/models.py:1833 plugin/serializers.py:93 +msgid "Context" +msgstr "Kontekst" + +#: common/models.py:2824 +msgid "Context data for the barcode scan" +msgstr "" + +#: common/models.py:2831 +msgid "Response" +msgstr "Vastus" + +#: common/models.py:2832 +msgid "Response data from the barcode scan" +msgstr "" + +#: common/models.py:2838 report/templates/report/inventree_test_report.html:103 +#: stock/models.py:2970 +msgid "Result" +msgstr "Tulemus" + +#: common/models.py:2839 +msgid "Was the barcode scan successful?" +msgstr "" + +#: common/models.py:2921 +msgid "An error occurred" +msgstr "" + +#: common/models.py:2942 +msgid "INVE-E8: Email log deletion is protected. Set INVENTREE_PROTECT_EMAIL_LOG to False to allow deletion." +msgstr "" + +#: common/models.py:2989 +msgid "Email Message" +msgstr "" + +#: common/models.py:2990 +msgid "Email Messages" +msgstr "" + +#: common/models.py:2997 +msgid "Announced" +msgstr "" + +#: common/models.py:2999 +msgid "Sent" +msgstr "" + +#: common/models.py:3000 +msgid "Failed" +msgstr "" + +#: common/models.py:3003 +msgid "Delivered" +msgstr "" + +#: common/models.py:3011 +msgid "Confirmed" +msgstr "" + +#: common/models.py:3017 +msgid "Inbound" +msgstr "" + +#: common/models.py:3018 +msgid "Outbound" +msgstr "" + +#: common/models.py:3023 +msgid "No Reply" +msgstr "" + +#: common/models.py:3024 +msgid "Track Delivery" +msgstr "" + +#: common/models.py:3025 +msgid "Track Read" +msgstr "" + +#: common/models.py:3026 +msgid "Track Click" +msgstr "" + +#: common/models.py:3029 common/models.py:3132 +msgid "Global ID" +msgstr "" + +#: common/models.py:3042 +msgid "Identifier for this message (might be supplied by external system)" +msgstr "" + +#: common/models.py:3049 msgid "Thread ID" msgstr "" -#: common/models.py:2630 +#: common/models.py:3051 msgid "Identifier for this message thread (might be supplied by external system)" msgstr "" -#: common/models.py:2639 +#: common/models.py:3060 msgid "Thread" msgstr "" -#: common/models.py:2640 +#: common/models.py:3061 msgid "Linked thread for this message" msgstr "" -#: common/models.py:2656 -msgid "Prioriy" +#: common/models.py:3077 +msgid "Priority" msgstr "" -#: common/models.py:2698 +#: common/models.py:3119 msgid "Email Thread" msgstr "" -#: common/models.py:2699 +#: common/models.py:3120 msgid "Email Threads" msgstr "" -#: common/models.py:2705 generic/states/serializers.py:16 +#: common/models.py:3126 generic/states/serializers.py:16 #: machine/serializers.py:24 plugin/models.py:46 users/models.py:113 msgid "Key" msgstr "Võti" -#: common/models.py:2708 +#: common/models.py:3129 msgid "Unique key for this thread (used to identify the thread)" msgstr "" -#: common/models.py:2712 +#: common/models.py:3133 msgid "Unique identifier for this thread" msgstr "" -#: common/models.py:2719 +#: common/models.py:3140 msgid "Started Internal" msgstr "" -#: common/models.py:2720 +#: common/models.py:3141 msgid "Was this thread started internally?" msgstr "" -#: common/models.py:2725 +#: common/models.py:3146 msgid "Date and time that the thread was created" msgstr "" -#: common/models.py:2730 +#: common/models.py:3151 msgid "Date and time that the thread was last updated" msgstr "" @@ -2199,7 +2339,7 @@ msgstr "" msgid "A order that is assigned to you was canceled" msgstr "" -#: common/notifications.py:73 common/notifications.py:80 order/api.py:594 +#: common/notifications.py:73 common/notifications.py:80 order/api.py:600 msgid "Items Received" msgstr "" @@ -2211,88 +2351,93 @@ msgstr "" msgid "Items have been received against a return order" msgstr "" -#: common/serializers.py:145 +#: common/serializers.py:149 msgid "Indicates if the setting is overridden by an environment variable" msgstr "" -#: common/serializers.py:147 +#: common/serializers.py:151 msgid "Override" msgstr "" -#: common/serializers.py:498 +#: common/serializers.py:502 msgid "Is Running" msgstr "" -#: common/serializers.py:504 +#: common/serializers.py:508 msgid "Pending Tasks" msgstr "" -#: common/serializers.py:510 +#: common/serializers.py:514 msgid "Scheduled Tasks" msgstr "" -#: common/serializers.py:516 +#: common/serializers.py:520 msgid "Failed Tasks" msgstr "" -#: common/serializers.py:531 +#: common/serializers.py:535 msgid "Task ID" msgstr "" -#: common/serializers.py:531 +#: common/serializers.py:535 msgid "Unique task ID" msgstr "" -#: common/serializers.py:533 +#: common/serializers.py:537 msgid "Lock" msgstr "" -#: common/serializers.py:533 +#: common/serializers.py:537 msgid "Lock time" msgstr "" -#: common/serializers.py:535 +#: common/serializers.py:539 msgid "Task name" msgstr "Ülesande nimi" -#: common/serializers.py:537 +#: common/serializers.py:541 msgid "Function" msgstr "Funktsioon" -#: common/serializers.py:537 +#: common/serializers.py:541 msgid "Function name" msgstr "Funktsiooni nimi" -#: common/serializers.py:539 +#: common/serializers.py:543 msgid "Arguments" msgstr "Argumendid" -#: common/serializers.py:539 +#: common/serializers.py:543 msgid "Task arguments" msgstr "Ülesande argumendid" -#: common/serializers.py:542 +#: common/serializers.py:546 msgid "Keyword Arguments" msgstr "" -#: common/serializers.py:542 +#: common/serializers.py:546 msgid "Task keyword arguments" msgstr "" -#: common/serializers.py:652 +#: common/serializers.py:656 msgid "Filename" msgstr "Failinimi" -#: common/serializers.py:659 importer/models.py:89 report/api.py:41 +#: common/serializers.py:663 common/serializers.py:730 +#: common/serializers.py:805 importer/models.py:89 report/api.py:41 #: report/models.py:293 report/serializers.py:52 msgid "Model Type" msgstr "Mudeli liik" -#: common/serializers.py:687 +#: common/serializers.py:691 msgid "User does not have permission to create or edit attachments for this model" msgstr "" -#: common/serializers.py:731 common/serializers.py:834 +#: common/serializers.py:786 +msgid "User does not have permission to create or edit parameters for this model" +msgstr "" + +#: common/serializers.py:850 common/serializers.py:953 msgid "Selection list is locked" msgstr "" @@ -2368,7 +2513,7 @@ msgstr "" msgid "Show the `about` modal only to superusers" msgstr "" -#: common/setting/system.py:224 company/models.py:144 company/models.py:145 +#: common/setting/system.py:224 company/models.py:145 company/models.py:146 msgid "Company name" msgstr "Ettevõtte nimi" @@ -2411,8 +2556,8 @@ msgstr "" #: common/setting/system.py:253 common/setting/system.py:293 #: common/setting/system.py:306 common/setting/system.py:314 #: common/setting/system.py:321 common/setting/system.py:330 -#: common/setting/system.py:339 common/setting/system.py:588 -#: common/setting/system.py:616 common/setting/system.py:707 +#: common/setting/system.py:339 common/setting/system.py:580 +#: common/setting/system.py:608 common/setting/system.py:707 #: common/setting/system.py:1103 common/setting/system.py:1119 msgid "days" msgstr "päeva" @@ -2657,12 +2802,6 @@ msgstr "" msgid "Copy category parameter templates when creating a part" msgstr "" -#: common/setting/system.py:450 part/models.py:4054 report/models.py:373 -#: report/models.py:669 report/serializers.py:94 report/serializers.py:135 -#: stock/serializers.py:234 -msgid "Template" -msgstr "Mall" - #: common/setting/system.py:451 msgid "Parts are templates by default" msgstr "" @@ -2671,8 +2810,8 @@ msgstr "" msgid "Parts can be assembled from other components by default" msgstr "" -#: common/setting/system.py:462 part/models.py:1208 part/serializers.py:1734 -#: part/serializers.py:1741 +#: common/setting/system.py:462 part/models.py:1296 part/serializers.py:1599 +#: part/serializers.py:1606 msgid "Component" msgstr "Komponent" @@ -2680,7 +2819,7 @@ msgstr "Komponent" msgid "Parts can be used as sub-components by default" msgstr "" -#: common/setting/system.py:468 part/models.py:1226 +#: common/setting/system.py:468 part/models.py:1314 msgid "Purchaseable" msgstr "Ostetav" @@ -2688,7 +2827,7 @@ msgstr "Ostetav" msgid "Parts are purchaseable by default" msgstr "" -#: common/setting/system.py:474 part/models.py:1232 stock/api.py:643 +#: common/setting/system.py:474 part/models.py:1320 stock/api.py:643 msgid "Salable" msgstr "" @@ -2700,7 +2839,7 @@ msgstr "" msgid "Parts are trackable by default" msgstr "" -#: common/setting/system.py:486 part/models.py:1248 +#: common/setting/system.py:486 part/models.py:1336 msgid "Virtual" msgstr "Virtuaalne" @@ -2749,158 +2888,158 @@ msgid "Part category default icon (empty means no icon)" msgstr "" #: common/setting/system.py:525 -msgid "Enforce Parameter Units" -msgstr "" - -#: common/setting/system.py:527 -msgid "If units are provided, parameter values must match the specified units" -msgstr "" - -#: common/setting/system.py:533 msgid "Minimum Pricing Decimal Places" msgstr "" -#: common/setting/system.py:535 +#: common/setting/system.py:527 msgid "Minimum number of decimal places to display when rendering pricing data" msgstr "" -#: common/setting/system.py:546 +#: common/setting/system.py:538 msgid "Maximum Pricing Decimal Places" msgstr "" -#: common/setting/system.py:548 +#: common/setting/system.py:540 msgid "Maximum number of decimal places to display when rendering pricing data" msgstr "" -#: common/setting/system.py:559 +#: common/setting/system.py:551 msgid "Use Supplier Pricing" msgstr "" -#: common/setting/system.py:561 +#: common/setting/system.py:553 msgid "Include supplier price breaks in overall pricing calculations" msgstr "" -#: common/setting/system.py:567 +#: common/setting/system.py:559 msgid "Purchase History Override" msgstr "" -#: common/setting/system.py:569 +#: common/setting/system.py:561 msgid "Historical purchase order pricing overrides supplier price breaks" msgstr "" -#: common/setting/system.py:575 +#: common/setting/system.py:567 msgid "Use Stock Item Pricing" msgstr "" -#: common/setting/system.py:577 +#: common/setting/system.py:569 msgid "Use pricing from manually entered stock data for pricing calculations" msgstr "" -#: common/setting/system.py:583 +#: common/setting/system.py:575 msgid "Stock Item Pricing Age" msgstr "" -#: common/setting/system.py:585 +#: common/setting/system.py:577 msgid "Exclude stock items older than this number of days from pricing calculations" msgstr "" -#: common/setting/system.py:592 +#: common/setting/system.py:584 msgid "Use Variant Pricing" msgstr "" -#: common/setting/system.py:593 +#: common/setting/system.py:585 msgid "Include variant pricing in overall pricing calculations" msgstr "" -#: common/setting/system.py:598 +#: common/setting/system.py:590 msgid "Active Variants Only" msgstr "" -#: common/setting/system.py:600 +#: common/setting/system.py:592 msgid "Only use active variant parts for calculating variant pricing" msgstr "" -#: common/setting/system.py:606 +#: common/setting/system.py:598 msgid "Auto Update Pricing" msgstr "" -#: common/setting/system.py:608 +#: common/setting/system.py:600 msgid "Automatically update part pricing when internal data changes" msgstr "" -#: common/setting/system.py:614 +#: common/setting/system.py:606 msgid "Pricing Rebuild Interval" msgstr "" -#: common/setting/system.py:615 +#: common/setting/system.py:607 msgid "Number of days before part pricing is automatically updated" msgstr "" -#: common/setting/system.py:621 +#: common/setting/system.py:613 msgid "Internal Prices" msgstr "" -#: common/setting/system.py:622 +#: common/setting/system.py:614 msgid "Enable internal prices for parts" msgstr "" -#: common/setting/system.py:627 +#: common/setting/system.py:619 msgid "Internal Price Override" msgstr "" -#: common/setting/system.py:629 +#: common/setting/system.py:621 msgid "If available, internal prices override price range calculations" msgstr "" -#: common/setting/system.py:635 +#: common/setting/system.py:627 msgid "Enable label printing" msgstr "" -#: common/setting/system.py:636 +#: common/setting/system.py:628 msgid "Enable label printing from the web interface" msgstr "" -#: common/setting/system.py:641 +#: common/setting/system.py:633 msgid "Label Image DPI" msgstr "" -#: common/setting/system.py:643 +#: common/setting/system.py:635 msgid "DPI resolution when generating image files to supply to label printing plugins" msgstr "" -#: common/setting/system.py:649 +#: common/setting/system.py:641 msgid "Enable Reports" msgstr "" -#: common/setting/system.py:650 +#: common/setting/system.py:642 msgid "Enable generation of reports" msgstr "" -#: common/setting/system.py:655 +#: common/setting/system.py:647 msgid "Debug Mode" msgstr "" -#: common/setting/system.py:656 +#: common/setting/system.py:648 msgid "Generate reports in debug mode (HTML output)" msgstr "" -#: common/setting/system.py:661 +#: common/setting/system.py:653 msgid "Log Report Errors" msgstr "" -#: common/setting/system.py:662 +#: common/setting/system.py:654 msgid "Log errors which occur when generating reports" msgstr "" -#: common/setting/system.py:667 plugin/builtin/labels/label_sheet.py:29 +#: common/setting/system.py:659 plugin/builtin/labels/label_sheet.py:29 #: report/models.py:381 msgid "Page Size" msgstr "Lehe suurus" -#: common/setting/system.py:668 +#: common/setting/system.py:660 msgid "Default page size for PDF reports" msgstr "" +#: common/setting/system.py:665 +msgid "Enforce Parameter Units" +msgstr "" + +#: common/setting/system.py:667 +msgid "If units are provided, parameter values must match the specified units" +msgstr "" + #: common/setting/system.py:673 msgid "Globally Unique Serials" msgstr "" @@ -3456,688 +3595,677 @@ msgid "Display PDF reports in the browser, instead of downloading as a file" msgstr "" #: common/setting/user.py:45 -msgid "Search Parts" +msgid "Barcode Scanner in Form Fields" msgstr "" #: common/setting/user.py:46 -msgid "Display parts in search preview window" +msgid "Allow barcode scanner input in form fields" msgstr "" #: common/setting/user.py:51 -msgid "Search Supplier Parts" +msgid "Search Parts" msgstr "" #: common/setting/user.py:52 -msgid "Display supplier parts in search preview window" +msgid "Display parts in search preview window" msgstr "" #: common/setting/user.py:57 -msgid "Search Manufacturer Parts" +msgid "Search Supplier Parts" msgstr "" #: common/setting/user.py:58 -msgid "Display manufacturer parts in search preview window" +msgid "Display supplier parts in search preview window" msgstr "" #: common/setting/user.py:63 -msgid "Hide Inactive Parts" +msgid "Search Manufacturer Parts" msgstr "" #: common/setting/user.py:64 -msgid "Excluded inactive parts from search preview window" +msgid "Display manufacturer parts in search preview window" msgstr "" #: common/setting/user.py:69 -msgid "Search Categories" +msgid "Hide Inactive Parts" msgstr "" #: common/setting/user.py:70 -msgid "Display part categories in search preview window" +msgid "Excluded inactive parts from search preview window" msgstr "" #: common/setting/user.py:75 -msgid "Search Stock" +msgid "Search Categories" msgstr "" #: common/setting/user.py:76 -msgid "Display stock items in search preview window" +msgid "Display part categories in search preview window" msgstr "" #: common/setting/user.py:81 +msgid "Search Stock" +msgstr "" + +#: common/setting/user.py:82 +msgid "Display stock items in search preview window" +msgstr "" + +#: common/setting/user.py:87 msgid "Hide Unavailable Stock Items" msgstr "" -#: common/setting/user.py:83 +#: common/setting/user.py:89 msgid "Exclude stock items which are not available from the search preview window" msgstr "" -#: common/setting/user.py:89 +#: common/setting/user.py:95 msgid "Search Locations" msgstr "" -#: common/setting/user.py:90 +#: common/setting/user.py:96 msgid "Display stock locations in search preview window" msgstr "" -#: common/setting/user.py:95 +#: common/setting/user.py:101 msgid "Search Companies" msgstr "" -#: common/setting/user.py:96 +#: common/setting/user.py:102 msgid "Display companies in search preview window" msgstr "" -#: common/setting/user.py:101 +#: common/setting/user.py:107 msgid "Search Build Orders" msgstr "" -#: common/setting/user.py:102 +#: common/setting/user.py:108 msgid "Display build orders in search preview window" msgstr "" -#: common/setting/user.py:107 +#: common/setting/user.py:113 msgid "Search Purchase Orders" msgstr "" -#: common/setting/user.py:108 +#: common/setting/user.py:114 msgid "Display purchase orders in search preview window" msgstr "" -#: common/setting/user.py:113 +#: common/setting/user.py:119 msgid "Exclude Inactive Purchase Orders" msgstr "" -#: common/setting/user.py:114 +#: common/setting/user.py:120 msgid "Exclude inactive purchase orders from search preview window" msgstr "" -#: common/setting/user.py:119 +#: common/setting/user.py:125 msgid "Search Sales Orders" msgstr "" -#: common/setting/user.py:120 +#: common/setting/user.py:126 msgid "Display sales orders in search preview window" msgstr "" -#: common/setting/user.py:125 +#: common/setting/user.py:131 msgid "Exclude Inactive Sales Orders" msgstr "" -#: common/setting/user.py:126 +#: common/setting/user.py:132 msgid "Exclude inactive sales orders from search preview window" msgstr "" -#: common/setting/user.py:131 +#: common/setting/user.py:137 msgid "Search Sales Order Shipments" msgstr "" -#: common/setting/user.py:132 +#: common/setting/user.py:138 msgid "Display sales order shipments in search preview window" msgstr "" -#: common/setting/user.py:137 +#: common/setting/user.py:143 msgid "Search Return Orders" msgstr "" -#: common/setting/user.py:138 +#: common/setting/user.py:144 msgid "Display return orders in search preview window" msgstr "" -#: common/setting/user.py:143 +#: common/setting/user.py:149 msgid "Exclude Inactive Return Orders" msgstr "" -#: common/setting/user.py:144 +#: common/setting/user.py:150 msgid "Exclude inactive return orders from search preview window" msgstr "" -#: common/setting/user.py:149 +#: common/setting/user.py:155 msgid "Search Preview Results" msgstr "" -#: common/setting/user.py:151 +#: common/setting/user.py:157 msgid "Number of results to show in each section of the search preview window" msgstr "" -#: common/setting/user.py:157 +#: common/setting/user.py:163 msgid "Regex Search" msgstr "" -#: common/setting/user.py:158 +#: common/setting/user.py:164 msgid "Enable regular expressions in search queries" msgstr "" -#: common/setting/user.py:163 +#: common/setting/user.py:169 msgid "Whole Word Search" msgstr "" -#: common/setting/user.py:164 +#: common/setting/user.py:170 msgid "Search queries return results for whole word matches" msgstr "" -#: common/setting/user.py:169 +#: common/setting/user.py:175 msgid "Search Notes" msgstr "" -#: common/setting/user.py:171 +#: common/setting/user.py:177 msgid "Search queries return results for matches from the item's notes" msgstr "" -#: common/setting/user.py:177 +#: common/setting/user.py:183 msgid "Escape Key Closes Forms" msgstr "" -#: common/setting/user.py:178 +#: common/setting/user.py:184 msgid "Use the escape key to close modal forms" msgstr "" -#: common/setting/user.py:183 +#: common/setting/user.py:189 msgid "Fixed Navbar" msgstr "" -#: common/setting/user.py:184 +#: common/setting/user.py:190 msgid "The navbar position is fixed to the top of the screen" msgstr "" -#: common/setting/user.py:189 +#: common/setting/user.py:195 msgid "Fixed Table Headers" msgstr "" -#: common/setting/user.py:190 +#: common/setting/user.py:196 msgid "Table headers are fixed to the top of the table" msgstr "" -#: common/setting/user.py:195 +#: common/setting/user.py:201 msgid "Show Spotlight" msgstr "" -#: common/setting/user.py:196 +#: common/setting/user.py:202 msgid "Enable spotlight navigation functionality" msgstr "" -#: common/setting/user.py:201 +#: common/setting/user.py:207 msgid "Navigation Icons" msgstr "" -#: common/setting/user.py:202 +#: common/setting/user.py:208 msgid "Display icons in the navigation bar" msgstr "" -#: common/setting/user.py:207 +#: common/setting/user.py:213 msgid "Date Format" msgstr "" -#: common/setting/user.py:208 +#: common/setting/user.py:214 msgid "Preferred format for displaying dates" msgstr "" -#: common/setting/user.py:221 +#: common/setting/user.py:227 msgid "Show Stock History" msgstr "" -#: common/setting/user.py:222 +#: common/setting/user.py:228 msgid "Display stock history information in the part detail page" msgstr "" -#: common/setting/user.py:227 +#: common/setting/user.py:233 msgid "Show Last Breadcrumb" msgstr "" -#: common/setting/user.py:228 +#: common/setting/user.py:234 msgid "Show the current page in breadcrumbs" msgstr "" -#: common/setting/user.py:233 +#: common/setting/user.py:239 msgid "Show full stock location in tables" msgstr "" -#: common/setting/user.py:235 +#: common/setting/user.py:241 msgid "Disabled: The full location path is displayed as a hover tooltip. Enabled: The full location path is displayed as plain text." msgstr "" -#: common/setting/user.py:241 +#: common/setting/user.py:247 msgid "Show full part categories in tables" msgstr "" -#: common/setting/user.py:243 +#: common/setting/user.py:249 msgid "Disabled: The full category path is displayed as a hover tooltip. Enabled: The full category path is displayed as plain text." msgstr "" -#: common/setting/user.py:249 +#: common/setting/user.py:255 msgid "Receive error reports" msgstr "" -#: common/setting/user.py:250 +#: common/setting/user.py:256 msgid "Receive notifications for system errors" msgstr "" -#: common/setting/user.py:255 +#: common/setting/user.py:261 msgid "Last used printing machines" msgstr "" -#: common/setting/user.py:256 +#: common/setting/user.py:262 msgid "Save the last used printing machines for a user" msgstr "" -#: common/validators.py:34 +#: common/validators.py:38 +msgid "All models" +msgstr "" + +#: common/validators.py:63 msgid "No attachment model type provided" msgstr "" -#: common/validators.py:40 +#: common/validators.py:69 msgid "Invalid attachment model type" msgstr "" -#: common/validators.py:81 +#: common/validators.py:110 msgid "Minimum places cannot be greater than maximum places" msgstr "" -#: common/validators.py:93 +#: common/validators.py:122 msgid "Maximum places cannot be less than minimum places" msgstr "" -#: common/validators.py:104 +#: common/validators.py:133 msgid "An empty domain is not allowed." msgstr "" -#: common/validators.py:106 +#: common/validators.py:135 #, python-brace-format msgid "Invalid domain name: {domain}" msgstr "" -#: common/validators.py:122 +#: common/validators.py:151 msgid "Value must be uppercase" msgstr "" -#: common/validators.py:128 +#: common/validators.py:157 msgid "Value must be a valid variable identifier" msgstr "" -#: company/api.py:147 +#: company/api.py:141 msgid "Part is Active" msgstr "" -#: company/api.py:151 +#: company/api.py:145 msgid "Manufacturer is Active" msgstr "" -#: company/api.py:286 +#: company/api.py:246 msgid "Supplier Part is Active" msgstr "" -#: company/api.py:290 +#: company/api.py:250 msgid "Internal Part is Active" msgstr "" -#: company/api.py:295 +#: company/api.py:255 msgid "Supplier is Active" msgstr "" -#: company/api.py:307 company/models.py:520 company/serializers.py:457 -#: part/serializers.py:566 +#: company/api.py:267 company/models.py:522 company/serializers.py:502 +#: part/serializers.py:477 msgid "Manufacturer" msgstr "Tootja" -#: company/api.py:314 company/models.py:121 company/models.py:392 +#: company/api.py:274 company/models.py:122 company/models.py:393 #: stock/api.py:900 msgid "Company" msgstr "Ettevõte" -#: company/api.py:324 +#: company/api.py:284 msgid "Has Stock" msgstr "Laos" -#: company/models.py:122 +#: company/models.py:123 msgid "Companies" msgstr "Ettevõtted" -#: company/models.py:150 +#: company/models.py:151 msgid "Company description" msgstr "Ettevõtte kirjeldus" -#: company/models.py:151 +#: company/models.py:152 msgid "Description of the company" msgstr "Ettevõtte kirjeldus" -#: company/models.py:157 +#: company/models.py:158 msgid "Website" msgstr "Veebileht" -#: company/models.py:158 +#: company/models.py:159 msgid "Company website URL" msgstr "Ettevõtte veebilehe aadress" -#: company/models.py:164 +#: company/models.py:165 msgid "Phone number" msgstr "Telefoninumber" -#: company/models.py:166 +#: company/models.py:167 msgid "Contact phone number" msgstr "Kontakttelefoni number" -#: company/models.py:173 +#: company/models.py:174 msgid "Contact email address" msgstr "Kontakt e-postiaadress" -#: company/models.py:178 company/models.py:296 order/models.py:513 +#: company/models.py:179 company/models.py:297 order/models.py:514 #: users/models.py:561 msgid "Contact" msgstr "" -#: company/models.py:180 +#: company/models.py:181 msgid "Point of contact" msgstr "" -#: company/models.py:186 +#: company/models.py:187 msgid "Link to external company information" msgstr "" -#: company/models.py:191 +#: company/models.py:192 msgid "Is this company active?" msgstr "" -#: company/models.py:196 +#: company/models.py:197 msgid "Is customer" msgstr "" -#: company/models.py:197 +#: company/models.py:198 msgid "Do you sell items to this company?" msgstr "" -#: company/models.py:202 +#: company/models.py:203 msgid "Is supplier" msgstr "" -#: company/models.py:203 +#: company/models.py:204 msgid "Do you purchase items from this company?" msgstr "" -#: company/models.py:208 +#: company/models.py:209 msgid "Is manufacturer" msgstr "" -#: company/models.py:209 +#: company/models.py:210 msgid "Does this company manufacture parts?" msgstr "" -#: company/models.py:217 +#: company/models.py:218 msgid "Default currency used for this company" msgstr "" -#: company/models.py:224 +#: company/models.py:225 msgid "Tax ID" msgstr "" -#: company/models.py:225 +#: company/models.py:226 msgid "Company Tax ID" msgstr "" -#: company/models.py:335 order/models.py:523 order/models.py:2288 +#: company/models.py:336 order/models.py:524 order/models.py:2289 msgid "Address" msgstr "Aadress" -#: company/models.py:336 +#: company/models.py:337 msgid "Addresses" msgstr "Aadressid" -#: company/models.py:393 +#: company/models.py:394 msgid "Select company" msgstr "Vali ettevõte" -#: company/models.py:398 +#: company/models.py:399 msgid "Address title" msgstr "" -#: company/models.py:399 +#: company/models.py:400 msgid "Title describing the address entry" msgstr "" -#: company/models.py:405 +#: company/models.py:406 msgid "Primary address" msgstr "Peamine aadress" -#: company/models.py:406 +#: company/models.py:407 msgid "Set as primary address" msgstr "Määra peamine aadress" -#: company/models.py:411 +#: company/models.py:412 msgid "Line 1" msgstr "Rida 1" -#: company/models.py:412 +#: company/models.py:413 msgid "Address line 1" msgstr "Aadressi rida 1" -#: company/models.py:418 +#: company/models.py:419 msgid "Line 2" msgstr "Rida 2" -#: company/models.py:419 +#: company/models.py:420 msgid "Address line 2" msgstr "Aadressi rida 2" -#: company/models.py:425 company/models.py:426 +#: company/models.py:426 company/models.py:427 msgid "Postal code" msgstr "Postiindeks" -#: company/models.py:432 +#: company/models.py:433 msgid "City/Region" msgstr "Linn/Piirkond" -#: company/models.py:433 +#: company/models.py:434 msgid "Postal code city/region" msgstr "" -#: company/models.py:439 +#: company/models.py:440 msgid "State/Province" msgstr "" -#: company/models.py:440 +#: company/models.py:441 msgid "State or province" msgstr "" -#: company/models.py:446 +#: company/models.py:447 msgid "Country" msgstr "Riik" -#: company/models.py:447 +#: company/models.py:448 msgid "Address country" msgstr "" -#: company/models.py:453 +#: company/models.py:454 msgid "Courier shipping notes" msgstr "" -#: company/models.py:454 +#: company/models.py:455 msgid "Notes for shipping courier" msgstr "" -#: company/models.py:460 +#: company/models.py:461 msgid "Internal shipping notes" msgstr "" -#: company/models.py:461 +#: company/models.py:462 msgid "Shipping notes for internal use" msgstr "" -#: company/models.py:468 +#: company/models.py:469 msgid "Link to address information (external)" msgstr "" -#: company/models.py:492 company/models.py:609 company/models.py:832 -#: company/serializers.py:471 stock/api.py:561 +#: company/models.py:494 company/models.py:786 company/serializers.py:516 +#: stock/api.py:561 msgid "Manufacturer Part" msgstr "" -#: company/models.py:509 company/models.py:800 stock/models.py:1025 +#: company/models.py:511 company/models.py:754 stock/models.py:1025 #: stock/serializers.py:407 msgid "Base Part" msgstr "" -#: company/models.py:511 company/models.py:802 +#: company/models.py:513 company/models.py:756 msgid "Select part" msgstr "" -#: company/models.py:521 +#: company/models.py:523 msgid "Select manufacturer" msgstr "" -#: company/models.py:527 company/serializers.py:479 order/serializers.py:734 -#: part/serializers.py:576 +#: company/models.py:529 company/serializers.py:524 order/serializers.py:745 +#: part/serializers.py:487 msgid "MPN" msgstr "" -#: company/models.py:528 stock/serializers.py:572 +#: company/models.py:530 stock/serializers.py:572 msgid "Manufacturer Part Number" msgstr "" -#: company/models.py:535 +#: company/models.py:537 msgid "URL for external manufacturer part link" msgstr "" -#: company/models.py:544 +#: company/models.py:546 msgid "Manufacturer part description" msgstr "" -#: company/models.py:597 -msgid "Manufacturer Part Parameter" -msgstr "" - -#: company/models.py:616 -msgid "Parameter name" -msgstr "" - -#: company/models.py:623 -msgid "Parameter value" -msgstr "" - -#: company/models.py:630 part/models.py:1195 part/models.py:3857 -msgid "Units" -msgstr "" - -#: company/models.py:631 -msgid "Parameter units" -msgstr "" - -#: company/models.py:740 +#: company/models.py:694 msgid "Pack units must be compatible with the base part units" msgstr "" -#: company/models.py:747 +#: company/models.py:701 msgid "Pack units must be greater than zero" msgstr "" -#: company/models.py:761 +#: company/models.py:715 msgid "Linked manufacturer part must reference the same base part" msgstr "" -#: company/models.py:810 company/serializers.py:449 company/serializers.py:467 -#: order/models.py:639 part/serializers.py:550 +#: company/models.py:764 company/serializers.py:494 company/serializers.py:512 +#: order/models.py:640 part/serializers.py:461 #: plugin/builtin/suppliers/digikey.py:26 plugin/builtin/suppliers/lcsc.py:27 #: plugin/builtin/suppliers/mouser.py:25 plugin/builtin/suppliers/tme.py:27 #: stock/api.py:567 templates/email/overdue_purchase_order.html:16 msgid "Supplier" msgstr "Tarnija" -#: company/models.py:811 +#: company/models.py:765 msgid "Select supplier" msgstr "Vali tarnija" -#: company/models.py:817 part/serializers.py:561 +#: company/models.py:771 part/serializers.py:472 msgid "Supplier stock keeping unit" msgstr "" -#: company/models.py:823 +#: company/models.py:777 msgid "Is this supplier part active?" msgstr "" -#: company/models.py:833 +#: company/models.py:787 msgid "Select manufacturer part" msgstr "" -#: company/models.py:840 +#: company/models.py:794 msgid "URL for external supplier part link" msgstr "" -#: company/models.py:849 +#: company/models.py:803 msgid "Supplier part description" msgstr "" -#: company/models.py:856 order/serializers.py:883 order/serializers.py:2047 -#: part/models.py:4070 part/models.py:4450 part/models.py:4819 -#: report/templates/report/inventree_bill_of_materials_report.html:140 -#: report/templates/report/inventree_purchase_order_report.html:39 -#: report/templates/report/inventree_return_order_report.html:27 -#: report/templates/report/inventree_sales_order_report.html:32 -#: report/templates/report/inventree_stock_location_report.html:105 -#: stock/serializers.py:813 -msgid "Note" -msgstr "Märkus" - -#: company/models.py:865 part/models.py:2250 +#: company/models.py:819 part/models.py:2338 msgid "base cost" msgstr "" -#: company/models.py:866 part/models.py:2251 +#: company/models.py:820 part/models.py:2339 msgid "Minimum charge (e.g. stocking fee)" msgstr "" -#: company/models.py:873 order/serializers.py:875 stock/models.py:1056 +#: company/models.py:827 order/serializers.py:886 stock/models.py:1056 #: stock/serializers.py:1606 msgid "Packaging" msgstr "" -#: company/models.py:874 +#: company/models.py:828 msgid "Part packaging" msgstr "" -#: company/models.py:879 +#: company/models.py:833 msgid "Pack Quantity" msgstr "" -#: company/models.py:881 +#: company/models.py:835 msgid "Total quantity supplied in a single pack. Leave empty for single items." msgstr "" -#: company/models.py:900 part/models.py:2257 +#: company/models.py:854 part/models.py:2345 msgid "multiple" msgstr "" -#: company/models.py:901 +#: company/models.py:855 msgid "Order multiple" msgstr "" -#: company/models.py:913 +#: company/models.py:867 msgid "Quantity available from supplier" msgstr "" -#: company/models.py:919 +#: company/models.py:873 msgid "Availability Updated" msgstr "" -#: company/models.py:920 +#: company/models.py:874 msgid "Date of last update of availability data" msgstr "" -#: company/models.py:1048 +#: company/models.py:1002 msgid "Supplier Price Break" msgstr "" -#: company/serializers.py:181 +#: company/serializers.py:184 +msgid "Primary Address" +msgstr "" + +#: company/serializers.py:186 msgid "Return the string representation for the primary address. This property exists for backwards compatibility." msgstr "" -#: company/serializers.py:212 +#: company/serializers.py:218 msgid "Default currency used for this supplier" msgstr "" -#: company/serializers.py:248 +#: company/serializers.py:260 msgid "Company Name" msgstr "" -#: company/serializers.py:433 part/serializers.py:955 stock/serializers.py:428 +#: company/serializers.py:460 part/serializers.py:840 stock/serializers.py:428 msgid "In Stock" msgstr "" +#: company/serializers.py:477 +msgid "Price Breaks" +msgstr "" + #: data_exporter/mixins.py:325 data_exporter/mixins.py:403 msgid "Error occurred during data export" msgstr "" @@ -4290,7 +4418,7 @@ msgstr "" msgid "Errors" msgstr "" -#: importer/models.py:550 part/serializers.py:1268 +#: importer/models.py:550 part/serializers.py:1133 msgid "Valid" msgstr "" @@ -4402,7 +4530,7 @@ msgstr "" msgid "Connected" msgstr "" -#: machine/machine_types/label_printer.py:232 order/api.py:1795 +#: machine/machine_types/label_printer.py:232 order/api.py:1800 msgid "Unknown" msgstr "" @@ -4530,105 +4658,105 @@ msgstr "" msgid "Maximum value for progress type, required if type=progress" msgstr "" -#: order/api.py:125 +#: order/api.py:130 msgid "Order Reference" msgstr "" -#: order/api.py:153 order/api.py:1207 +#: order/api.py:158 order/api.py:1212 msgid "Outstanding" msgstr "" -#: order/api.py:169 +#: order/api.py:174 msgid "Has Project Code" msgstr "" -#: order/api.py:183 order/models.py:488 +#: order/api.py:188 order/models.py:489 msgid "Created By" msgstr "" -#: order/api.py:187 +#: order/api.py:192 msgid "Created Before" msgstr "" -#: order/api.py:191 +#: order/api.py:196 msgid "Created After" msgstr "" -#: order/api.py:195 +#: order/api.py:200 msgid "Has Start Date" msgstr "" -#: order/api.py:203 +#: order/api.py:208 msgid "Start Date Before" msgstr "" -#: order/api.py:207 +#: order/api.py:212 msgid "Start Date After" msgstr "" -#: order/api.py:211 +#: order/api.py:216 msgid "Has Target Date" msgstr "" -#: order/api.py:219 +#: order/api.py:224 msgid "Target Date Before" msgstr "" -#: order/api.py:223 +#: order/api.py:228 msgid "Target Date After" msgstr "" -#: order/api.py:274 +#: order/api.py:279 msgid "Has Pricing" msgstr "" -#: order/api.py:327 order/api.py:812 order/api.py:1490 +#: order/api.py:332 order/api.py:818 order/api.py:1495 msgid "Completed Before" msgstr "" -#: order/api.py:331 order/api.py:816 order/api.py:1494 +#: order/api.py:336 order/api.py:822 order/api.py:1499 msgid "Completed After" msgstr "" -#: order/api.py:337 order/api.py:341 +#: order/api.py:342 order/api.py:346 msgid "External Build Order" msgstr "" -#: order/api.py:526 order/api.py:914 order/api.py:1170 order/models.py:1922 -#: order/models.py:2049 order/models.py:2099 order/models.py:2279 -#: order/models.py:2477 order/models.py:2999 order/models.py:3065 +#: order/api.py:532 order/api.py:919 order/api.py:1175 order/models.py:1923 +#: order/models.py:2050 order/models.py:2100 order/models.py:2280 +#: order/models.py:2478 order/models.py:3000 order/models.py:3066 msgid "Order" msgstr "" -#: order/api.py:530 order/api.py:982 +#: order/api.py:536 order/api.py:987 msgid "Order Complete" msgstr "" -#: order/api.py:562 order/api.py:566 order/serializers.py:745 +#: order/api.py:568 order/api.py:572 order/serializers.py:756 msgid "Internal Part" msgstr "" -#: order/api.py:584 +#: order/api.py:590 msgid "Order Pending" msgstr "" -#: order/api.py:967 +#: order/api.py:972 msgid "Completed" msgstr "" -#: order/api.py:1223 +#: order/api.py:1228 msgid "Has Shipment" msgstr "" -#: order/api.py:1789 order/models.py:552 order/models.py:1923 -#: order/models.py:2050 +#: order/api.py:1794 order/models.py:553 order/models.py:1924 +#: order/models.py:2051 #: report/templates/report/inventree_purchase_order_report.html:14 #: stock/serializers.py:129 templates/email/overdue_purchase_order.html:15 msgid "Purchase Order" msgstr "" -#: order/api.py:1791 order/models.py:1251 order/models.py:2100 -#: order/models.py:2280 order/models.py:2478 +#: order/api.py:1796 order/models.py:1252 order/models.py:2101 +#: order/models.py:2281 order/models.py:2479 #: report/templates/report/inventree_build_order_report.html:135 #: report/templates/report/inventree_sales_order_report.html:14 #: report/templates/report/inventree_sales_order_shipment_report.html:15 @@ -4636,8 +4764,8 @@ msgstr "" msgid "Sales Order" msgstr "" -#: order/api.py:1793 order/models.py:2649 order/models.py:3000 -#: order/models.py:3066 +#: order/api.py:1798 order/models.py:2650 order/models.py:3001 +#: order/models.py:3067 #: report/templates/report/inventree_return_order_report.html:13 #: templates/email/overdue_return_order.html:15 msgid "Return Order" @@ -4653,722 +4781,722 @@ msgstr "" msgid "Total price for this order" msgstr "" -#: order/models.py:96 order/serializers.py:77 +#: order/models.py:96 order/serializers.py:78 msgid "Order Currency" msgstr "" -#: order/models.py:99 order/serializers.py:78 +#: order/models.py:99 order/serializers.py:79 msgid "Currency for this order (leave blank to use company default)" msgstr "" -#: order/models.py:324 +#: order/models.py:325 msgid "This order is locked and cannot be modified" msgstr "" -#: order/models.py:376 +#: order/models.py:377 msgid "Contact does not match selected company" msgstr "" -#: order/models.py:383 +#: order/models.py:384 msgid "Start date must be before target date" msgstr "" -#: order/models.py:390 +#: order/models.py:391 msgid "Address does not match selected company" msgstr "" -#: order/models.py:443 +#: order/models.py:444 msgid "Order description (optional)" msgstr "" -#: order/models.py:452 order/models.py:1806 +#: order/models.py:453 order/models.py:1807 msgid "Select project code for this order" msgstr "" -#: order/models.py:458 order/models.py:1787 order/models.py:2344 +#: order/models.py:459 order/models.py:1788 order/models.py:2345 msgid "Link to external page" msgstr "" -#: order/models.py:465 +#: order/models.py:466 msgid "Start date" msgstr "" -#: order/models.py:466 +#: order/models.py:467 msgid "Scheduled start date for this order" msgstr "" -#: order/models.py:472 order/models.py:1794 order/serializers.py:309 +#: order/models.py:473 order/models.py:1795 order/serializers.py:317 #: report/templates/report/inventree_build_order_report.html:125 msgid "Target Date" msgstr "" -#: order/models.py:474 +#: order/models.py:475 msgid "Expected date for order delivery. Order will be overdue after this date." msgstr "" -#: order/models.py:494 +#: order/models.py:495 msgid "Issue Date" msgstr "" -#: order/models.py:495 +#: order/models.py:496 msgid "Date order was issued" msgstr "" -#: order/models.py:503 +#: order/models.py:504 msgid "User or group responsible for this order" msgstr "" -#: order/models.py:514 +#: order/models.py:515 msgid "Point of contact for this order" msgstr "" -#: order/models.py:524 +#: order/models.py:525 msgid "Company address for this order" msgstr "" -#: order/models.py:615 order/models.py:1312 +#: order/models.py:616 order/models.py:1313 msgid "Order reference" msgstr "" -#: order/models.py:624 order/models.py:1336 order/models.py:2737 +#: order/models.py:625 order/models.py:1337 order/models.py:2738 #: stock/serializers.py:559 stock/serializers.py:988 users/models.py:542 msgid "Status" msgstr "Staatus" -#: order/models.py:625 +#: order/models.py:626 msgid "Purchase order status" msgstr "" -#: order/models.py:640 +#: order/models.py:641 msgid "Company from which the items are being ordered" msgstr "" -#: order/models.py:651 +#: order/models.py:652 msgid "Supplier Reference" msgstr "" -#: order/models.py:652 +#: order/models.py:653 msgid "Supplier order reference code" msgstr "" -#: order/models.py:661 +#: order/models.py:662 msgid "received by" msgstr "" -#: order/models.py:668 order/models.py:2752 +#: order/models.py:669 order/models.py:2753 msgid "Date order was completed" msgstr "" -#: order/models.py:677 order/models.py:1981 +#: order/models.py:678 order/models.py:1982 msgid "Destination" msgstr "" -#: order/models.py:678 order/models.py:1985 +#: order/models.py:679 order/models.py:1986 msgid "Destination for received items" msgstr "" -#: order/models.py:724 +#: order/models.py:725 msgid "Part supplier must match PO supplier" msgstr "" -#: order/models.py:994 +#: order/models.py:995 msgid "Line item does not match purchase order" msgstr "" -#: order/models.py:997 +#: order/models.py:998 msgid "Line item is missing a linked part" msgstr "" -#: order/models.py:1011 +#: order/models.py:1012 msgid "Quantity must be a positive number" msgstr "" -#: order/models.py:1323 order/models.py:2724 stock/models.py:1078 +#: order/models.py:1324 order/models.py:2725 stock/models.py:1078 #: stock/models.py:1079 stock/serializers.py:1322 #: templates/email/overdue_return_order.html:16 #: templates/email/overdue_sales_order.html:16 msgid "Customer" msgstr "" -#: order/models.py:1324 +#: order/models.py:1325 msgid "Company to which the items are being sold" msgstr "" -#: order/models.py:1337 +#: order/models.py:1338 msgid "Sales order status" msgstr "" -#: order/models.py:1348 order/models.py:2744 +#: order/models.py:1349 order/models.py:2745 msgid "Customer Reference " msgstr "" -#: order/models.py:1349 order/models.py:2745 +#: order/models.py:1350 order/models.py:2746 msgid "Customer order reference code" msgstr "" -#: order/models.py:1353 order/models.py:2296 +#: order/models.py:1354 order/models.py:2297 msgid "Shipment Date" msgstr "" -#: order/models.py:1362 +#: order/models.py:1363 msgid "shipped by" msgstr "" -#: order/models.py:1413 +#: order/models.py:1414 msgid "Order is already complete" msgstr "" -#: order/models.py:1416 +#: order/models.py:1417 msgid "Order is already cancelled" msgstr "" -#: order/models.py:1420 +#: order/models.py:1421 msgid "Only an open order can be marked as complete" msgstr "" -#: order/models.py:1424 +#: order/models.py:1425 msgid "Order cannot be completed as there are incomplete shipments" msgstr "" -#: order/models.py:1429 +#: order/models.py:1430 msgid "Order cannot be completed as there are incomplete allocations" msgstr "" -#: order/models.py:1438 +#: order/models.py:1439 msgid "Order cannot be completed as there are incomplete line items" msgstr "" -#: order/models.py:1733 order/models.py:1749 +#: order/models.py:1734 order/models.py:1750 msgid "The order is locked and cannot be modified" msgstr "" -#: order/models.py:1757 +#: order/models.py:1758 msgid "Item quantity" msgstr "" -#: order/models.py:1774 +#: order/models.py:1775 msgid "Line item reference" msgstr "" -#: order/models.py:1781 +#: order/models.py:1782 msgid "Line item notes" msgstr "" -#: order/models.py:1796 +#: order/models.py:1797 msgid "Target date for this line item (leave blank to use the target date from the order)" msgstr "" -#: order/models.py:1826 +#: order/models.py:1827 msgid "Line item description (optional)" msgstr "" -#: order/models.py:1833 +#: order/models.py:1834 msgid "Additional context for this line" msgstr "" -#: order/models.py:1843 +#: order/models.py:1844 msgid "Unit price" msgstr "" -#: order/models.py:1862 +#: order/models.py:1863 msgid "Purchase Order Line Item" msgstr "" -#: order/models.py:1889 +#: order/models.py:1890 msgid "Supplier part must match supplier" msgstr "" -#: order/models.py:1894 +#: order/models.py:1895 msgid "Build order must be marked as external" msgstr "" -#: order/models.py:1901 +#: order/models.py:1902 msgid "Build orders can only be linked to assembly parts" msgstr "" -#: order/models.py:1907 +#: order/models.py:1908 msgid "Build order part must match line item part" msgstr "" -#: order/models.py:1942 +#: order/models.py:1943 msgid "Supplier part" msgstr "" -#: order/models.py:1949 +#: order/models.py:1950 msgid "Received" msgstr "" -#: order/models.py:1950 +#: order/models.py:1951 msgid "Number of items received" msgstr "" -#: order/models.py:1958 stock/models.py:1201 stock/serializers.py:637 +#: order/models.py:1959 stock/models.py:1201 stock/serializers.py:637 msgid "Purchase Price" msgstr "" -#: order/models.py:1959 +#: order/models.py:1960 msgid "Unit purchase price" msgstr "" -#: order/models.py:1975 +#: order/models.py:1976 msgid "External Build Order to be fulfilled by this line item" msgstr "" -#: order/models.py:2038 +#: order/models.py:2039 msgid "Purchase Order Extra Line" msgstr "" -#: order/models.py:2067 +#: order/models.py:2068 msgid "Sales Order Line Item" msgstr "" -#: order/models.py:2092 +#: order/models.py:2093 msgid "Only salable parts can be assigned to a sales order" msgstr "" -#: order/models.py:2118 +#: order/models.py:2119 msgid "Sale Price" msgstr "Müügihind" -#: order/models.py:2119 +#: order/models.py:2120 msgid "Unit sale price" msgstr "" -#: order/models.py:2128 order/status_codes.py:50 +#: order/models.py:2129 order/status_codes.py:50 msgid "Shipped" msgstr "Saadetud" -#: order/models.py:2129 +#: order/models.py:2130 msgid "Shipped quantity" msgstr "" -#: order/models.py:2240 +#: order/models.py:2241 msgid "Sales Order Shipment" msgstr "" -#: order/models.py:2253 +#: order/models.py:2254 msgid "Shipment address must match the customer" msgstr "" -#: order/models.py:2289 +#: order/models.py:2290 msgid "Shipping address for this shipment" msgstr "" -#: order/models.py:2297 +#: order/models.py:2298 msgid "Date of shipment" msgstr "" -#: order/models.py:2303 +#: order/models.py:2304 msgid "Delivery Date" msgstr "" -#: order/models.py:2304 +#: order/models.py:2305 msgid "Date of delivery of shipment" msgstr "" -#: order/models.py:2312 +#: order/models.py:2313 msgid "Checked By" msgstr "" -#: order/models.py:2313 +#: order/models.py:2314 msgid "User who checked this shipment" msgstr "" -#: order/models.py:2320 order/models.py:2574 order/serializers.py:1711 -#: order/serializers.py:1835 +#: order/models.py:2321 order/models.py:2575 order/serializers.py:1725 +#: order/serializers.py:1849 #: report/templates/report/inventree_sales_order_shipment_report.html:14 msgid "Shipment" msgstr "Saadetis" -#: order/models.py:2321 +#: order/models.py:2322 msgid "Shipment number" msgstr "" -#: order/models.py:2329 +#: order/models.py:2330 msgid "Tracking Number" msgstr "" -#: order/models.py:2330 +#: order/models.py:2331 msgid "Shipment tracking information" msgstr "" -#: order/models.py:2337 +#: order/models.py:2338 msgid "Invoice Number" msgstr "" -#: order/models.py:2338 +#: order/models.py:2339 msgid "Reference number for associated invoice" msgstr "" -#: order/models.py:2377 +#: order/models.py:2378 msgid "Shipment has already been sent" msgstr "" -#: order/models.py:2380 +#: order/models.py:2381 msgid "Shipment has no allocated stock items" msgstr "" -#: order/models.py:2387 +#: order/models.py:2388 msgid "Shipment must be checked before it can be completed" msgstr "" -#: order/models.py:2466 +#: order/models.py:2467 msgid "Sales Order Extra Line" msgstr "" -#: order/models.py:2495 +#: order/models.py:2496 msgid "Sales Order Allocation" msgstr "" -#: order/models.py:2518 order/models.py:2520 +#: order/models.py:2519 order/models.py:2521 msgid "Stock item has not been assigned" msgstr "" -#: order/models.py:2527 +#: order/models.py:2528 msgid "Cannot allocate stock item to a line with a different part" msgstr "" -#: order/models.py:2530 +#: order/models.py:2531 msgid "Cannot allocate stock to a line without a part" msgstr "" -#: order/models.py:2533 +#: order/models.py:2534 msgid "Allocation quantity cannot exceed stock quantity" msgstr "" -#: order/models.py:2552 order/serializers.py:1581 +#: order/models.py:2553 order/serializers.py:1595 msgid "Quantity must be 1 for serialized stock item" msgstr "" -#: order/models.py:2555 +#: order/models.py:2556 msgid "Sales order does not match shipment" msgstr "" -#: order/models.py:2556 plugin/base/barcodes/api.py:642 +#: order/models.py:2557 plugin/base/barcodes/api.py:642 msgid "Shipment does not match sales order" msgstr "" -#: order/models.py:2564 +#: order/models.py:2565 msgid "Line" msgstr "Rida" -#: order/models.py:2575 +#: order/models.py:2576 msgid "Sales order shipment reference" msgstr "" -#: order/models.py:2588 order/models.py:3007 +#: order/models.py:2589 order/models.py:3008 msgid "Item" msgstr "" -#: order/models.py:2589 +#: order/models.py:2590 msgid "Select stock item to allocate" msgstr "" -#: order/models.py:2598 +#: order/models.py:2599 msgid "Enter stock allocation quantity" msgstr "" -#: order/models.py:2713 +#: order/models.py:2714 msgid "Return Order reference" msgstr "" -#: order/models.py:2725 +#: order/models.py:2726 msgid "Company from which items are being returned" msgstr "" -#: order/models.py:2738 +#: order/models.py:2739 msgid "Return order status" msgstr "" -#: order/models.py:2965 +#: order/models.py:2966 msgid "Return Order Line Item" msgstr "" -#: order/models.py:2978 +#: order/models.py:2979 msgid "Stock item must be specified" msgstr "" -#: order/models.py:2982 +#: order/models.py:2983 msgid "Return quantity exceeds stock quantity" msgstr "" -#: order/models.py:2987 +#: order/models.py:2988 msgid "Return quantity must be greater than zero" msgstr "" -#: order/models.py:2992 +#: order/models.py:2993 msgid "Invalid quantity for serialized stock item" msgstr "" -#: order/models.py:3008 +#: order/models.py:3009 msgid "Select item to return from customer" msgstr "" -#: order/models.py:3023 +#: order/models.py:3024 msgid "Received Date" msgstr "" -#: order/models.py:3024 +#: order/models.py:3025 msgid "The date this this return item was received" msgstr "" -#: order/models.py:3036 +#: order/models.py:3037 msgid "Outcome" msgstr "" -#: order/models.py:3037 +#: order/models.py:3038 msgid "Outcome for this line item" msgstr "" -#: order/models.py:3044 +#: order/models.py:3045 msgid "Cost associated with return or repair for this line item" msgstr "" -#: order/models.py:3054 +#: order/models.py:3055 msgid "Return Order Extra Line" msgstr "" -#: order/serializers.py:91 +#: order/serializers.py:92 msgid "Order ID" msgstr "Tellimuse ID" -#: order/serializers.py:91 +#: order/serializers.py:92 msgid "ID of the order to duplicate" msgstr "Kopeeritava tellimuse ID" -#: order/serializers.py:97 +#: order/serializers.py:98 msgid "Copy Lines" msgstr "Kopeeri read" -#: order/serializers.py:98 +#: order/serializers.py:99 msgid "Copy line items from the original order" msgstr "Kopeeri reaüksused algsest tellimusest" -#: order/serializers.py:104 +#: order/serializers.py:105 msgid "Copy Extra Lines" msgstr "" -#: order/serializers.py:105 +#: order/serializers.py:106 msgid "Copy extra line items from the original order" msgstr "Kopeeri lisareaüksused algsest tellimusest" -#: order/serializers.py:120 +#: order/serializers.py:121 #: report/templates/report/inventree_purchase_order_report.html:29 #: report/templates/report/inventree_return_order_report.html:19 #: report/templates/report/inventree_sales_order_report.html:22 msgid "Line Items" msgstr "" -#: order/serializers.py:125 +#: order/serializers.py:126 msgid "Completed Lines" msgstr "" -#: order/serializers.py:192 +#: order/serializers.py:199 msgid "Duplicate Order" msgstr "" -#: order/serializers.py:193 +#: order/serializers.py:200 msgid "Specify options for duplicating this order" msgstr "Määrake selle tellimuse dubleerimise valikud" -#: order/serializers.py:270 +#: order/serializers.py:278 msgid "Invalid order ID" msgstr "Vale tellimuse ID" -#: order/serializers.py:466 +#: order/serializers.py:477 msgid "Supplier Name" msgstr "" -#: order/serializers.py:510 +#: order/serializers.py:521 msgid "Order cannot be cancelled" msgstr "" -#: order/serializers.py:525 order/serializers.py:1602 +#: order/serializers.py:536 order/serializers.py:1616 msgid "Allow order to be closed with incomplete line items" msgstr "" -#: order/serializers.py:535 order/serializers.py:1612 +#: order/serializers.py:546 order/serializers.py:1626 msgid "Order has incomplete line items" msgstr "" -#: order/serializers.py:665 +#: order/serializers.py:676 msgid "Order is not open" msgstr "" -#: order/serializers.py:692 +#: order/serializers.py:703 msgid "Auto Pricing" msgstr "" -#: order/serializers.py:694 +#: order/serializers.py:705 msgid "Automatically calculate purchase price based on supplier part data" msgstr "" -#: order/serializers.py:704 +#: order/serializers.py:715 msgid "Purchase price currency" msgstr "" -#: order/serializers.py:718 +#: order/serializers.py:729 msgid "Merge Items" msgstr "" -#: order/serializers.py:720 +#: order/serializers.py:731 msgid "Merge items with the same part, destination and target date into one line item" msgstr "" -#: order/serializers.py:727 part/serializers.py:560 +#: order/serializers.py:738 part/serializers.py:471 msgid "SKU" msgstr "Tootekood" -#: order/serializers.py:741 part/models.py:1089 part/serializers.py:372 +#: order/serializers.py:752 part/models.py:1177 part/serializers.py:337 msgid "Internal Part Number" msgstr "" -#: order/serializers.py:749 +#: order/serializers.py:760 msgid "Internal Part Name" msgstr "" -#: order/serializers.py:765 +#: order/serializers.py:776 msgid "Supplier part must be specified" msgstr "" -#: order/serializers.py:768 +#: order/serializers.py:779 msgid "Purchase order must be specified" msgstr "" -#: order/serializers.py:776 +#: order/serializers.py:787 msgid "Supplier must match purchase order" msgstr "" -#: order/serializers.py:777 +#: order/serializers.py:788 msgid "Purchase order must match supplier" msgstr "" -#: order/serializers.py:825 order/serializers.py:1682 +#: order/serializers.py:836 order/serializers.py:1696 msgid "Line Item" msgstr "" -#: order/serializers.py:834 order/serializers.py:974 order/serializers.py:2043 +#: order/serializers.py:845 order/serializers.py:985 order/serializers.py:2060 msgid "Select destination location for received items" msgstr "" -#: order/serializers.py:850 +#: order/serializers.py:861 msgid "Enter batch code for incoming stock items" msgstr "" -#: order/serializers.py:857 stock/models.py:1160 +#: order/serializers.py:868 stock/models.py:1160 #: templates/email/stale_stock_notification.html:22 users/models.py:137 msgid "Expiry Date" msgstr "" -#: order/serializers.py:858 +#: order/serializers.py:869 msgid "Enter expiry date for incoming stock items" msgstr "" -#: order/serializers.py:866 +#: order/serializers.py:877 msgid "Enter serial numbers for incoming stock items" msgstr "" -#: order/serializers.py:876 +#: order/serializers.py:887 msgid "Override packaging information for incoming stock items" msgstr "" -#: order/serializers.py:884 order/serializers.py:2048 +#: order/serializers.py:895 order/serializers.py:2065 msgid "Additional note for incoming stock items" msgstr "" -#: order/serializers.py:891 +#: order/serializers.py:902 msgid "Barcode" msgstr "Vöötkood" -#: order/serializers.py:892 +#: order/serializers.py:903 msgid "Scanned barcode" msgstr "Skännitud ribakood" -#: order/serializers.py:908 +#: order/serializers.py:919 msgid "Barcode is already in use" msgstr "" -#: order/serializers.py:991 order/serializers.py:2067 +#: order/serializers.py:1002 order/serializers.py:2084 msgid "Line items must be provided" msgstr "" -#: order/serializers.py:1010 +#: order/serializers.py:1021 msgid "Destination location must be specified" msgstr "" -#: order/serializers.py:1017 +#: order/serializers.py:1028 msgid "Supplied barcode values must be unique" msgstr "" -#: order/serializers.py:1121 +#: order/serializers.py:1135 msgid "Shipments" msgstr "Saadetised" -#: order/serializers.py:1125 +#: order/serializers.py:1139 msgid "Completed Shipments" msgstr "" -#: order/serializers.py:1293 +#: order/serializers.py:1307 msgid "Sale price currency" msgstr "" -#: order/serializers.py:1339 +#: order/serializers.py:1353 msgid "Allocated Items" msgstr "" -#: order/serializers.py:1484 +#: order/serializers.py:1498 msgid "No shipment details provided" msgstr "" -#: order/serializers.py:1545 order/serializers.py:1691 +#: order/serializers.py:1559 order/serializers.py:1705 msgid "Line item is not associated with this order" msgstr "" -#: order/serializers.py:1564 +#: order/serializers.py:1578 msgid "Quantity must be positive" msgstr "" -#: order/serializers.py:1701 +#: order/serializers.py:1715 msgid "Enter serial numbers to allocate" msgstr "" -#: order/serializers.py:1723 order/serializers.py:1843 +#: order/serializers.py:1737 order/serializers.py:1857 msgid "Shipment has already been shipped" msgstr "" -#: order/serializers.py:1726 order/serializers.py:1846 +#: order/serializers.py:1740 order/serializers.py:1860 msgid "Shipment is not associated with this order" msgstr "" -#: order/serializers.py:1781 +#: order/serializers.py:1795 msgid "No match found for the following serial numbers" msgstr "" -#: order/serializers.py:1788 +#: order/serializers.py:1802 msgid "The following serial numbers are unavailable" msgstr "Järgmised seerianumbrid ei ole saadaval" -#: order/serializers.py:2009 +#: order/serializers.py:2026 msgid "Return order line item" msgstr "" -#: order/serializers.py:2019 +#: order/serializers.py:2036 msgid "Line item does not match return order" msgstr "" -#: order/serializers.py:2022 +#: order/serializers.py:2039 msgid "Line item has already been received" msgstr "" -#: order/serializers.py:2059 +#: order/serializers.py:2076 msgid "Items can only be received against orders which are in progress" msgstr "" -#: order/serializers.py:2124 +#: order/serializers.py:2141 msgid "Quantity to return" msgstr "" -#: order/serializers.py:2140 +#: order/serializers.py:2157 msgid "Line price currency" msgstr "" @@ -5431,1190 +5559,1109 @@ msgstr "" msgid "Return order {ro} is now overdue" msgstr "" -#: part/api.py:108 +#: part/api.py:103 msgid "Starred" msgstr "" -#: part/api.py:110 +#: part/api.py:105 msgid "Filter by starred categories" msgstr "" -#: part/api.py:127 stock/api.py:288 +#: part/api.py:122 stock/api.py:288 msgid "Depth" msgstr "Sügavus" -#: part/api.py:127 +#: part/api.py:122 msgid "Filter by category depth" msgstr "" -#: part/api.py:145 stock/api.py:306 +#: part/api.py:140 stock/api.py:306 msgid "Top Level" msgstr "" -#: part/api.py:147 +#: part/api.py:142 msgid "Filter by top-level categories" msgstr "" -#: part/api.py:160 stock/api.py:321 +#: part/api.py:155 stock/api.py:321 msgid "Cascade" msgstr "" -#: part/api.py:162 +#: part/api.py:157 msgid "Include sub-categories in filtered results" msgstr "" -#: part/api.py:182 +#: part/api.py:177 msgid "Parent" msgstr "" -#: part/api.py:184 +#: part/api.py:179 msgid "Filter by parent category" msgstr "" -#: part/api.py:219 +#: part/api.py:214 msgid "Exclude sub-categories under the specified category" msgstr "" -#: part/api.py:445 +#: part/api.py:440 msgid "Has Results" msgstr "" -#: part/api.py:666 +#: part/api.py:661 msgid "Is Variant" msgstr "" -#: part/api.py:674 +#: part/api.py:669 msgid "Is Revision" msgstr "" -#: part/api.py:684 +#: part/api.py:679 msgid "Has Revisions" msgstr "" -#: part/api.py:865 +#: part/api.py:860 msgid "BOM Valid" msgstr "" -#: part/api.py:974 +#: part/api.py:969 msgid "Cascade Categories" msgstr "" -#: part/api.py:975 +#: part/api.py:970 msgid "If true, include items in child categories of the given category" msgstr "" -#: part/api.py:981 +#: part/api.py:976 msgid "Filter by numeric category ID or the literal 'null'" msgstr "" -#: part/api.py:1533 +#: part/api.py:1258 msgid "Assembly part is testable" msgstr "" -#: part/api.py:1542 +#: part/api.py:1267 msgid "Component part is testable" msgstr "" -#: part/api.py:1611 +#: part/api.py:1336 msgid "Uses" msgstr "" -#: part/models.py:96 part/models.py:4163 +#: part/models.py:93 part/models.py:436 #: templates/email/part_event_notification.html:16 msgid "Part Category" msgstr "Osa kategooria" -#: part/models.py:97 users/ruleset.py:27 +#: part/models.py:94 users/ruleset.py:27 msgid "Part Categories" msgstr "Osa kategooriad" -#: part/models.py:115 part/models.py:1125 +#: part/models.py:112 part/models.py:1213 msgid "Default Location" msgstr "" -#: part/models.py:116 +#: part/models.py:113 msgid "Default location for parts in this category" msgstr "" -#: part/models.py:121 stock/models.py:216 +#: part/models.py:118 stock/models.py:216 msgid "Structural" msgstr "" -#: part/models.py:123 +#: part/models.py:120 msgid "Parts may not be directly assigned to a structural category, but may be assigned to child categories." msgstr "" -#: part/models.py:132 +#: part/models.py:129 msgid "Default keywords" msgstr "" -#: part/models.py:133 +#: part/models.py:130 msgid "Default keywords for parts in this category" msgstr "" -#: part/models.py:140 stock/models.py:97 stock/models.py:198 +#: part/models.py:137 stock/models.py:97 stock/models.py:198 msgid "Icon" msgstr "Ikoon" -#: part/models.py:141 part/serializers.py:148 part/serializers.py:167 +#: part/models.py:138 part/serializers.py:147 part/serializers.py:166 #: stock/models.py:199 msgid "Icon (optional)" msgstr "Ikoon (valikuline)" -#: part/models.py:185 +#: part/models.py:182 msgid "You cannot make this part category structural because some parts are already assigned to it!" msgstr "" -#: part/models.py:473 part/serializers.py:119 part/serializers.py:310 -#: users/ruleset.py:28 +#: part/models.py:392 +msgid "Part Category Parameter Template" +msgstr "" + +#: part/models.py:448 +msgid "Default Value" +msgstr "" + +#: part/models.py:449 +msgid "Default Parameter Value" +msgstr "" + +#: part/models.py:551 part/serializers.py:118 users/ruleset.py:28 msgid "Parts" msgstr "Osad" -#: part/models.py:525 +#: part/models.py:597 +msgid "Cannot delete parameters of a locked part" +msgstr "" + +#: part/models.py:602 +msgid "Cannot modify parameters of a locked part" +msgstr "" + +#: part/models.py:613 msgid "Cannot delete this part as it is locked" msgstr "" -#: part/models.py:528 +#: part/models.py:616 msgid "Cannot delete this part as it is still active" msgstr "" -#: part/models.py:533 +#: part/models.py:621 msgid "Cannot delete this part as it is used in an assembly" msgstr "" -#: part/models.py:616 part/models.py:623 +#: part/models.py:704 part/models.py:711 #, python-brace-format msgid "Part '{self}' cannot be used in BOM for '{parent}' (recursive)" msgstr "" -#: part/models.py:635 +#: part/models.py:723 #, python-brace-format msgid "Part '{parent}' is used in BOM for '{self}' (recursive)" msgstr "" -#: part/models.py:702 +#: part/models.py:790 #, python-brace-format msgid "IPN must match regex pattern {pattern}" msgstr "" -#: part/models.py:710 +#: part/models.py:798 msgid "Part cannot be a revision of itself" msgstr "" -#: part/models.py:717 +#: part/models.py:805 msgid "Cannot make a revision of a part which is already a revision" msgstr "" -#: part/models.py:724 +#: part/models.py:812 msgid "Revision code must be specified" msgstr "" -#: part/models.py:731 +#: part/models.py:819 msgid "Revisions are only allowed for assembly parts" msgstr "" -#: part/models.py:738 +#: part/models.py:826 msgid "Cannot make a revision of a template part" msgstr "" -#: part/models.py:744 +#: part/models.py:832 msgid "Parent part must point to the same template" msgstr "" -#: part/models.py:841 +#: part/models.py:929 msgid "Stock item with this serial number already exists" msgstr "" -#: part/models.py:971 +#: part/models.py:1059 msgid "Duplicate IPN not allowed in part settings" msgstr "" -#: part/models.py:983 +#: part/models.py:1071 msgid "Duplicate part revision already exists." msgstr "" -#: part/models.py:992 +#: part/models.py:1080 msgid "Part with this Name, IPN and Revision already exists." msgstr "" -#: part/models.py:1007 +#: part/models.py:1095 msgid "Parts cannot be assigned to structural part categories!" msgstr "" -#: part/models.py:1039 +#: part/models.py:1127 msgid "Part name" msgstr "Osa nimi" -#: part/models.py:1044 +#: part/models.py:1132 msgid "Is Template" msgstr "On mall" -#: part/models.py:1045 +#: part/models.py:1133 msgid "Is this part a template part?" msgstr "" -#: part/models.py:1055 +#: part/models.py:1143 msgid "Is this part a variant of another part?" msgstr "" -#: part/models.py:1056 +#: part/models.py:1144 msgid "Variant Of" msgstr "" -#: part/models.py:1063 +#: part/models.py:1151 msgid "Part description (optional)" msgstr "" -#: part/models.py:1070 +#: part/models.py:1158 msgid "Keywords" msgstr "Märksõnad" -#: part/models.py:1071 +#: part/models.py:1159 msgid "Part keywords to improve visibility in search results" msgstr "" -#: part/models.py:1081 +#: part/models.py:1169 msgid "Part category" msgstr "Osa kategooria" -#: part/models.py:1088 part/serializers.py:929 +#: part/models.py:1176 part/serializers.py:814 #: report/templates/report/inventree_stock_location_report.html:103 msgid "IPN" msgstr "" -#: part/models.py:1096 +#: part/models.py:1184 msgid "Part revision or version number" msgstr "" -#: part/models.py:1097 report/models.py:228 +#: part/models.py:1185 report/models.py:228 msgid "Revision" msgstr "" -#: part/models.py:1106 +#: part/models.py:1194 msgid "Is this part a revision of another part?" msgstr "" -#: part/models.py:1107 +#: part/models.py:1195 msgid "Revision Of" msgstr "" -#: part/models.py:1123 +#: part/models.py:1211 msgid "Where is this item normally stored?" msgstr "" -#: part/models.py:1169 +#: part/models.py:1257 msgid "Default Supplier" msgstr "" -#: part/models.py:1170 +#: part/models.py:1258 msgid "Default supplier part" msgstr "" -#: part/models.py:1177 +#: part/models.py:1265 msgid "Default Expiry" msgstr "" -#: part/models.py:1178 +#: part/models.py:1266 msgid "Expiry time (in days) for stock items of this part" msgstr "" -#: part/models.py:1186 part/serializers.py:1003 +#: part/models.py:1274 part/serializers.py:888 msgid "Minimum Stock" msgstr "Minimaalne laoseis" -#: part/models.py:1187 +#: part/models.py:1275 msgid "Minimum allowed stock level" msgstr "" -#: part/models.py:1196 +#: part/models.py:1284 msgid "Units of measure for this part" msgstr "" -#: part/models.py:1203 +#: part/models.py:1291 msgid "Can this part be built from other parts?" msgstr "" -#: part/models.py:1209 +#: part/models.py:1297 msgid "Can this part be used to build other parts?" msgstr "" -#: part/models.py:1215 +#: part/models.py:1303 msgid "Does this part have tracking for unique items?" msgstr "" -#: part/models.py:1221 +#: part/models.py:1309 msgid "Can this part have test results recorded against it?" msgstr "" -#: part/models.py:1227 +#: part/models.py:1315 msgid "Can this part be purchased from external suppliers?" msgstr "" -#: part/models.py:1233 +#: part/models.py:1321 msgid "Can this part be sold to customers?" msgstr "" -#: part/models.py:1237 +#: part/models.py:1325 msgid "Is this part active?" msgstr "" -#: part/models.py:1243 +#: part/models.py:1331 msgid "Locked parts cannot be edited" msgstr "" -#: part/models.py:1249 +#: part/models.py:1337 msgid "Is this a virtual part, such as a software product or license?" msgstr "" -#: part/models.py:1254 +#: part/models.py:1342 msgid "BOM Validated" msgstr "" -#: part/models.py:1255 +#: part/models.py:1343 msgid "Is the BOM for this part valid?" msgstr "" -#: part/models.py:1261 +#: part/models.py:1349 msgid "BOM checksum" msgstr "" -#: part/models.py:1262 +#: part/models.py:1350 msgid "Stored BOM checksum" msgstr "" -#: part/models.py:1270 +#: part/models.py:1358 msgid "BOM checked by" msgstr "" -#: part/models.py:1275 +#: part/models.py:1363 msgid "BOM checked date" msgstr "" -#: part/models.py:1291 +#: part/models.py:1379 msgid "Creation User" msgstr "" -#: part/models.py:1301 +#: part/models.py:1389 msgid "Owner responsible for this part" msgstr "" -#: part/models.py:2258 +#: part/models.py:2346 msgid "Sell multiple" msgstr "" -#: part/models.py:3286 +#: part/models.py:3350 msgid "Currency used to cache pricing calculations" msgstr "" -#: part/models.py:3302 +#: part/models.py:3366 msgid "Minimum BOM Cost" msgstr "" -#: part/models.py:3303 +#: part/models.py:3367 msgid "Minimum cost of component parts" msgstr "" -#: part/models.py:3309 +#: part/models.py:3373 msgid "Maximum BOM Cost" msgstr "" -#: part/models.py:3310 +#: part/models.py:3374 msgid "Maximum cost of component parts" msgstr "" -#: part/models.py:3316 +#: part/models.py:3380 msgid "Minimum Purchase Cost" msgstr "" -#: part/models.py:3317 +#: part/models.py:3381 msgid "Minimum historical purchase cost" msgstr "" -#: part/models.py:3323 +#: part/models.py:3387 msgid "Maximum Purchase Cost" msgstr "" -#: part/models.py:3324 +#: part/models.py:3388 msgid "Maximum historical purchase cost" msgstr "" -#: part/models.py:3330 +#: part/models.py:3394 msgid "Minimum Internal Price" msgstr "" -#: part/models.py:3331 +#: part/models.py:3395 msgid "Minimum cost based on internal price breaks" msgstr "" -#: part/models.py:3337 +#: part/models.py:3401 msgid "Maximum Internal Price" msgstr "" -#: part/models.py:3338 +#: part/models.py:3402 msgid "Maximum cost based on internal price breaks" msgstr "" -#: part/models.py:3344 +#: part/models.py:3408 msgid "Minimum Supplier Price" msgstr "" -#: part/models.py:3345 +#: part/models.py:3409 msgid "Minimum price of part from external suppliers" msgstr "" -#: part/models.py:3351 +#: part/models.py:3415 msgid "Maximum Supplier Price" msgstr "" -#: part/models.py:3352 +#: part/models.py:3416 msgid "Maximum price of part from external suppliers" msgstr "" -#: part/models.py:3358 +#: part/models.py:3422 msgid "Minimum Variant Cost" msgstr "" -#: part/models.py:3359 +#: part/models.py:3423 msgid "Calculated minimum cost of variant parts" msgstr "" -#: part/models.py:3365 +#: part/models.py:3429 msgid "Maximum Variant Cost" msgstr "" -#: part/models.py:3366 +#: part/models.py:3430 msgid "Calculated maximum cost of variant parts" msgstr "" -#: part/models.py:3372 part/models.py:3386 +#: part/models.py:3436 part/models.py:3450 msgid "Minimum Cost" msgstr "" -#: part/models.py:3373 +#: part/models.py:3437 msgid "Override minimum cost" msgstr "" -#: part/models.py:3379 part/models.py:3393 +#: part/models.py:3443 part/models.py:3457 msgid "Maximum Cost" msgstr "" -#: part/models.py:3380 +#: part/models.py:3444 msgid "Override maximum cost" msgstr "" -#: part/models.py:3387 +#: part/models.py:3451 msgid "Calculated overall minimum cost" msgstr "" -#: part/models.py:3394 +#: part/models.py:3458 msgid "Calculated overall maximum cost" msgstr "" -#: part/models.py:3400 +#: part/models.py:3464 msgid "Minimum Sale Price" msgstr "" -#: part/models.py:3401 +#: part/models.py:3465 msgid "Minimum sale price based on price breaks" msgstr "" -#: part/models.py:3407 +#: part/models.py:3471 msgid "Maximum Sale Price" msgstr "" -#: part/models.py:3408 +#: part/models.py:3472 msgid "Maximum sale price based on price breaks" msgstr "" -#: part/models.py:3414 +#: part/models.py:3478 msgid "Minimum Sale Cost" msgstr "" -#: part/models.py:3415 +#: part/models.py:3479 msgid "Minimum historical sale price" msgstr "" -#: part/models.py:3421 +#: part/models.py:3485 msgid "Maximum Sale Cost" msgstr "" -#: part/models.py:3422 +#: part/models.py:3486 msgid "Maximum historical sale price" msgstr "" -#: part/models.py:3440 +#: part/models.py:3504 msgid "Part for stocktake" msgstr "" -#: part/models.py:3445 +#: part/models.py:3509 msgid "Item Count" msgstr "" -#: part/models.py:3446 +#: part/models.py:3510 msgid "Number of individual stock entries at time of stocktake" msgstr "" -#: part/models.py:3454 +#: part/models.py:3518 msgid "Total available stock at time of stocktake" msgstr "" -#: part/models.py:3458 report/templates/report/inventree_test_report.html:106 +#: part/models.py:3522 report/templates/report/inventree_test_report.html:106 msgid "Date" msgstr "" -#: part/models.py:3459 +#: part/models.py:3523 msgid "Date stocktake was performed" msgstr "" -#: part/models.py:3466 +#: part/models.py:3530 msgid "Minimum Stock Cost" msgstr "" -#: part/models.py:3467 +#: part/models.py:3531 msgid "Estimated minimum cost of stock on hand" msgstr "" -#: part/models.py:3473 +#: part/models.py:3537 msgid "Maximum Stock Cost" msgstr "" -#: part/models.py:3474 +#: part/models.py:3538 msgid "Estimated maximum cost of stock on hand" msgstr "" -#: part/models.py:3484 +#: part/models.py:3548 msgid "Part Sale Price Break" msgstr "" -#: part/models.py:3596 +#: part/models.py:3660 msgid "Part Test Template" msgstr "" -#: part/models.py:3622 +#: part/models.py:3686 msgid "Invalid template name - must include at least one alphanumeric character" msgstr "" -#: part/models.py:3643 part/models.py:3816 -msgid "Choices must be unique" -msgstr "" - -#: part/models.py:3654 +#: part/models.py:3718 msgid "Test templates can only be created for testable parts" msgstr "Testimalle saab luua ainult testitavate osade jaoks" -#: part/models.py:3668 +#: part/models.py:3732 msgid "Test template with the same key already exists for part" msgstr "" -#: part/models.py:3685 +#: part/models.py:3749 msgid "Test Name" msgstr "" -#: part/models.py:3686 +#: part/models.py:3750 msgid "Enter a name for the test" msgstr "" -#: part/models.py:3692 +#: part/models.py:3756 msgid "Test Key" msgstr "" -#: part/models.py:3693 +#: part/models.py:3757 msgid "Simplified key for the test" msgstr "" -#: part/models.py:3700 +#: part/models.py:3764 msgid "Test Description" msgstr "" -#: part/models.py:3701 +#: part/models.py:3765 msgid "Enter description for this test" msgstr "" -#: part/models.py:3705 report/models.py:287 -msgid "Enabled" -msgstr "" - -#: part/models.py:3705 +#: part/models.py:3769 msgid "Is this test enabled?" msgstr "" -#: part/models.py:3710 +#: part/models.py:3774 msgid "Required" msgstr "" -#: part/models.py:3711 +#: part/models.py:3775 msgid "Is this test required to pass?" msgstr "" -#: part/models.py:3716 +#: part/models.py:3780 msgid "Requires Value" msgstr "" -#: part/models.py:3717 +#: part/models.py:3781 msgid "Does this test require a value when adding a test result?" msgstr "" -#: part/models.py:3722 +#: part/models.py:3786 msgid "Requires Attachment" msgstr "" -#: part/models.py:3724 +#: part/models.py:3788 msgid "Does this test require a file attachment when adding a test result?" msgstr "" -#: part/models.py:3730 part/models.py:3878 -msgid "Choices" -msgstr "" - -#: part/models.py:3731 +#: part/models.py:3795 msgid "Valid choices for this test (comma-separated)" msgstr "" -#: part/models.py:3764 -msgid "Part Parameter Template" -msgstr "" - -#: part/models.py:3791 -msgid "Checkbox parameters cannot have units" -msgstr "" - -#: part/models.py:3796 -msgid "Checkbox parameters cannot have choices" -msgstr "" - -#: part/models.py:3833 -msgid "Parameter template name must be unique" -msgstr "" - -#: part/models.py:3851 -msgid "Parameter Name" -msgstr "" - -#: part/models.py:3858 -msgid "Physical units for this parameter" -msgstr "" - -#: part/models.py:3866 -msgid "Parameter description" -msgstr "" - -#: part/models.py:3872 -msgid "Checkbox" -msgstr "" - -#: part/models.py:3873 -msgid "Is this parameter a checkbox?" -msgstr "" - -#: part/models.py:3879 -msgid "Valid choices for this parameter (comma-separated)" -msgstr "" - -#: part/models.py:3890 -msgid "Selection list for this parameter" -msgstr "" - -#: part/models.py:3932 -msgid "Part Parameter" -msgstr "" - -#: part/models.py:3958 -msgid "Parameter cannot be modified - part is locked" -msgstr "" - -#: part/models.py:3996 -msgid "Invalid choice for parameter value" -msgstr "" - -#: part/models.py:4047 -msgid "Parent Part" -msgstr "" - -#: part/models.py:4055 part/models.py:4170 part/models.py:4171 -msgid "Parameter Template" -msgstr "" - -#: part/models.py:4061 -msgid "Parameter Value" -msgstr "" - -#: part/models.py:4071 stock/serializers.py:718 -msgid "Optional note field" -msgstr "" - -#: part/models.py:4118 -msgid "Part Category Parameter Template" -msgstr "" - -#: part/models.py:4177 -msgid "Default Value" -msgstr "" - -#: part/models.py:4178 -msgid "Default Parameter Value" -msgstr "" - -#: part/models.py:4352 +#: part/models.py:3977 msgid "BOM item cannot be modified - assembly is locked" msgstr "" -#: part/models.py:4359 +#: part/models.py:3984 msgid "BOM item cannot be modified - variant assembly is locked" msgstr "" -#: part/models.py:4369 +#: part/models.py:3994 msgid "Select parent part" msgstr "" -#: part/models.py:4379 +#: part/models.py:4004 msgid "Sub part" msgstr "" -#: part/models.py:4380 +#: part/models.py:4005 msgid "Select part to be used in BOM" msgstr "" -#: part/models.py:4391 +#: part/models.py:4016 msgid "BOM quantity for this BOM item" msgstr "" -#: part/models.py:4397 +#: part/models.py:4022 msgid "This BOM item is optional" msgstr "" -#: part/models.py:4403 +#: part/models.py:4028 msgid "This BOM item is consumable (it is not tracked in build orders)" msgstr "" -#: part/models.py:4411 +#: part/models.py:4036 msgid "Setup Quantity" msgstr "" -#: part/models.py:4412 +#: part/models.py:4037 msgid "Extra required quantity for a build, to account for setup losses" msgstr "" -#: part/models.py:4420 +#: part/models.py:4045 msgid "Attrition" msgstr "" -#: part/models.py:4422 +#: part/models.py:4047 msgid "Estimated attrition for a build, expressed as a percentage (0-100)" msgstr "" -#: part/models.py:4433 +#: part/models.py:4058 msgid "Rounding Multiple" msgstr "" -#: part/models.py:4435 +#: part/models.py:4060 msgid "Round up required production quantity to nearest multiple of this value" msgstr "" -#: part/models.py:4443 +#: part/models.py:4068 msgid "BOM item reference" msgstr "" -#: part/models.py:4451 +#: part/models.py:4076 msgid "BOM item notes" msgstr "" -#: part/models.py:4457 +#: part/models.py:4082 msgid "Checksum" msgstr "" -#: part/models.py:4458 +#: part/models.py:4083 msgid "BOM line checksum" msgstr "" -#: part/models.py:4463 +#: part/models.py:4088 msgid "Validated" msgstr "" -#: part/models.py:4464 +#: part/models.py:4089 msgid "This BOM item has been validated" msgstr "" -#: part/models.py:4469 +#: part/models.py:4094 msgid "Gets inherited" msgstr "" -#: part/models.py:4470 +#: part/models.py:4095 msgid "This BOM item is inherited by BOMs for variant parts" msgstr "" -#: part/models.py:4476 +#: part/models.py:4101 msgid "Stock items for variant parts can be used for this BOM item" msgstr "" -#: part/models.py:4583 stock/models.py:925 +#: part/models.py:4208 stock/models.py:925 msgid "Quantity must be integer value for trackable parts" msgstr "" -#: part/models.py:4593 part/models.py:4595 +#: part/models.py:4218 part/models.py:4220 msgid "Sub part must be specified" msgstr "" -#: part/models.py:4746 +#: part/models.py:4371 msgid "BOM Item Substitute" msgstr "" -#: part/models.py:4767 +#: part/models.py:4392 msgid "Substitute part cannot be the same as the master part" msgstr "" -#: part/models.py:4780 +#: part/models.py:4405 msgid "Parent BOM item" msgstr "" -#: part/models.py:4788 +#: part/models.py:4413 msgid "Substitute part" msgstr "" -#: part/models.py:4804 +#: part/models.py:4429 msgid "Part 1" msgstr "" -#: part/models.py:4812 +#: part/models.py:4437 msgid "Part 2" msgstr "" -#: part/models.py:4813 +#: part/models.py:4438 msgid "Select Related Part" msgstr "" -#: part/models.py:4820 +#: part/models.py:4445 msgid "Note for this relationship" msgstr "" -#: part/models.py:4839 +#: part/models.py:4464 msgid "Part relationship cannot be created between a part and itself" msgstr "" -#: part/models.py:4844 +#: part/models.py:4469 msgid "Duplicate relationship already exists" msgstr "" -#: part/serializers.py:114 +#: part/serializers.py:113 msgid "Parent Category" msgstr "" -#: part/serializers.py:115 +#: part/serializers.py:114 msgid "Parent part category" msgstr "" -#: part/serializers.py:123 part/serializers.py:164 +#: part/serializers.py:122 part/serializers.py:163 msgid "Subcategories" msgstr "" -#: part/serializers.py:203 +#: part/serializers.py:202 msgid "Results" msgstr "" -#: part/serializers.py:204 +#: part/serializers.py:203 msgid "Number of results recorded against this template" msgstr "" -#: part/serializers.py:235 part/serializers.py:253 stock/serializers.py:643 +#: part/serializers.py:234 part/serializers.py:252 stock/serializers.py:643 msgid "Purchase currency of this stock item" msgstr "" -#: part/serializers.py:280 +#: part/serializers.py:279 msgid "File is not an image" msgstr "" -#: part/serializers.py:311 -msgid "Number of parts using this template" -msgstr "" - -#: part/serializers.py:471 +#: part/serializers.py:382 msgid "Original Part" msgstr "Originaalosa" -#: part/serializers.py:472 +#: part/serializers.py:383 msgid "Select original part to duplicate" msgstr "" -#: part/serializers.py:477 +#: part/serializers.py:388 msgid "Copy Image" msgstr "Kopeeri pilt" -#: part/serializers.py:478 +#: part/serializers.py:389 msgid "Copy image from original part" msgstr "" -#: part/serializers.py:484 +#: part/serializers.py:395 msgid "Copy BOM" msgstr "" -#: part/serializers.py:485 +#: part/serializers.py:396 msgid "Copy bill of materials from original part" msgstr "" -#: part/serializers.py:491 +#: part/serializers.py:402 msgid "Copy Parameters" msgstr "Kopeeri parameetrid" -#: part/serializers.py:492 +#: part/serializers.py:403 msgid "Copy parameter data from original part" msgstr "" -#: part/serializers.py:498 +#: part/serializers.py:409 msgid "Copy Notes" msgstr "" -#: part/serializers.py:499 +#: part/serializers.py:410 msgid "Copy notes from original part" msgstr "" -#: part/serializers.py:505 +#: part/serializers.py:416 msgid "Copy Tests" msgstr "" -#: part/serializers.py:506 +#: part/serializers.py:417 msgid "Copy test templates from original part" msgstr "" -#: part/serializers.py:524 +#: part/serializers.py:435 msgid "Initial Stock Quantity" msgstr "" -#: part/serializers.py:526 +#: part/serializers.py:437 msgid "Specify initial stock quantity for this Part. If quantity is zero, no stock is added." msgstr "" -#: part/serializers.py:533 +#: part/serializers.py:444 msgid "Initial Stock Location" msgstr "" -#: part/serializers.py:534 +#: part/serializers.py:445 msgid "Specify initial stock location for this Part" msgstr "" -#: part/serializers.py:551 +#: part/serializers.py:462 msgid "Select supplier (or leave blank to skip)" msgstr "" -#: part/serializers.py:567 +#: part/serializers.py:478 msgid "Select manufacturer (or leave blank to skip)" msgstr "" -#: part/serializers.py:577 +#: part/serializers.py:488 msgid "Manufacturer part number" msgstr "" -#: part/serializers.py:584 +#: part/serializers.py:495 msgid "Selected company is not a valid supplier" msgstr "" -#: part/serializers.py:593 +#: part/serializers.py:504 msgid "Selected company is not a valid manufacturer" msgstr "" -#: part/serializers.py:604 +#: part/serializers.py:515 msgid "Manufacturer part matching this MPN already exists" msgstr "" -#: part/serializers.py:611 +#: part/serializers.py:522 msgid "Supplier part matching this SKU already exists" msgstr "" -#: part/serializers.py:914 +#: part/serializers.py:799 msgid "Category Name" msgstr "Kategooria nimi" -#: part/serializers.py:943 +#: part/serializers.py:828 msgid "Building" msgstr "Ehitamine" -#: part/serializers.py:944 +#: part/serializers.py:829 msgid "Quantity of this part currently being in production" msgstr "" -#: part/serializers.py:951 +#: part/serializers.py:836 msgid "Outstanding quantity of this part scheduled to be built" msgstr "" -#: part/serializers.py:971 stock/serializers.py:1019 stock/serializers.py:1189 +#: part/serializers.py:856 stock/serializers.py:1019 stock/serializers.py:1189 #: users/ruleset.py:30 msgid "Stock Items" msgstr "" -#: part/serializers.py:975 +#: part/serializers.py:860 msgid "Revisions" msgstr "" -#: part/serializers.py:979 +#: part/serializers.py:864 msgid "Suppliers" msgstr "Tarnijad" -#: part/serializers.py:983 part/serializers.py:1297 +#: part/serializers.py:868 part/serializers.py:1162 #: templates/email/low_stock_notification.html:16 #: templates/email/part_event_notification.html:17 msgid "Total Stock" msgstr "" -#: part/serializers.py:991 +#: part/serializers.py:876 msgid "Unallocated Stock" msgstr "" -#: part/serializers.py:999 +#: part/serializers.py:884 msgid "Variant Stock" msgstr "" -#: part/serializers.py:1054 +#: part/serializers.py:943 msgid "Duplicate Part" msgstr "" -#: part/serializers.py:1055 +#: part/serializers.py:944 msgid "Copy initial data from another Part" msgstr "" -#: part/serializers.py:1061 +#: part/serializers.py:950 msgid "Initial Stock" msgstr "" -#: part/serializers.py:1062 +#: part/serializers.py:951 msgid "Create Part with initial stock quantity" msgstr "" -#: part/serializers.py:1068 +#: part/serializers.py:957 msgid "Supplier Information" msgstr "Tarnija info" -#: part/serializers.py:1069 +#: part/serializers.py:958 msgid "Add initial supplier information for this part" msgstr "" -#: part/serializers.py:1077 +#: part/serializers.py:966 msgid "Copy Category Parameters" msgstr "" -#: part/serializers.py:1078 +#: part/serializers.py:967 msgid "Copy parameter templates from selected part category" msgstr "" -#: part/serializers.py:1083 +#: part/serializers.py:972 msgid "Existing Image" msgstr "" -#: part/serializers.py:1084 +#: part/serializers.py:973 msgid "Filename of an existing part image" msgstr "" -#: part/serializers.py:1101 +#: part/serializers.py:990 msgid "Image file does not exist" msgstr "" -#: part/serializers.py:1269 +#: part/serializers.py:1134 msgid "Validate entire Bill of Materials" msgstr "" -#: part/serializers.py:1303 part/serializers.py:1769 +#: part/serializers.py:1168 part/serializers.py:1634 msgid "Can Build" msgstr "" -#: part/serializers.py:1320 +#: part/serializers.py:1185 msgid "Required for Build Orders" msgstr "" -#: part/serializers.py:1325 +#: part/serializers.py:1190 msgid "Allocated to Build Orders" msgstr "" -#: part/serializers.py:1332 +#: part/serializers.py:1197 msgid "Required for Sales Orders" msgstr "" -#: part/serializers.py:1336 +#: part/serializers.py:1201 msgid "Allocated to Sales Orders" msgstr "" -#: part/serializers.py:1475 +#: part/serializers.py:1340 msgid "Minimum Price" msgstr "Minimaalne hind" -#: part/serializers.py:1476 +#: part/serializers.py:1341 msgid "Override calculated value for minimum price" msgstr "" -#: part/serializers.py:1483 +#: part/serializers.py:1348 msgid "Minimum price currency" msgstr "" -#: part/serializers.py:1490 +#: part/serializers.py:1355 msgid "Maximum Price" msgstr "Maksimaalne hind" -#: part/serializers.py:1491 +#: part/serializers.py:1356 msgid "Override calculated value for maximum price" msgstr "" -#: part/serializers.py:1498 +#: part/serializers.py:1363 msgid "Maximum price currency" msgstr "" -#: part/serializers.py:1527 +#: part/serializers.py:1392 msgid "Update" msgstr "Uuenda" -#: part/serializers.py:1528 +#: part/serializers.py:1393 msgid "Update pricing for this part" msgstr "" -#: part/serializers.py:1551 +#: part/serializers.py:1416 #, python-brace-format msgid "Could not convert from provided currencies to {default_currency}" msgstr "" -#: part/serializers.py:1558 +#: part/serializers.py:1423 msgid "Minimum price must not be greater than maximum price" msgstr "" -#: part/serializers.py:1561 +#: part/serializers.py:1426 msgid "Maximum price must not be less than minimum price" msgstr "" -#: part/serializers.py:1715 +#: part/serializers.py:1580 msgid "Select the parent assembly" msgstr "" -#: part/serializers.py:1735 +#: part/serializers.py:1600 msgid "Select the component part" msgstr "" -#: part/serializers.py:1929 +#: part/serializers.py:1802 msgid "Select part to copy BOM from" msgstr "" -#: part/serializers.py:1937 +#: part/serializers.py:1810 msgid "Remove Existing Data" msgstr "" -#: part/serializers.py:1938 +#: part/serializers.py:1811 msgid "Remove existing BOM items before copying" msgstr "" -#: part/serializers.py:1943 +#: part/serializers.py:1816 msgid "Include Inherited" msgstr "" -#: part/serializers.py:1944 +#: part/serializers.py:1817 msgid "Include BOM items which are inherited from templated parts" msgstr "" -#: part/serializers.py:1949 +#: part/serializers.py:1822 msgid "Skip Invalid Rows" msgstr "" -#: part/serializers.py:1950 +#: part/serializers.py:1823 msgid "Enable this option to skip invalid rows" msgstr "" -#: part/serializers.py:1955 +#: part/serializers.py:1828 msgid "Copy Substitute Parts" msgstr "" -#: part/serializers.py:1956 +#: part/serializers.py:1829 msgid "Copy substitute parts when duplicate BOM items" msgstr "" @@ -6927,7 +6974,7 @@ msgstr "" #: plugin/builtin/events/auto_issue_orders.py:19 #: plugin/builtin/exporter/bom_exporter.py:73 #: plugin/builtin/exporter/inventree_exporter.py:17 -#: plugin/builtin/exporter/part_parameter_exporter.py:36 +#: plugin/builtin/exporter/parameter_exporter.py:32 #: plugin/builtin/exporter/stocktake_exporter.py:47 #: plugin/builtin/integration/core_notifications.py:25 #: plugin/builtin/integration/core_notifications.py:69 @@ -7041,23 +7088,19 @@ msgid "Include total quantity of each part in the BOM" msgstr "" #: plugin/builtin/exporter/bom_exporter.py:35 -#: plugin/builtin/exporter/part_parameter_exporter.py:17 msgid "Stock Data" msgstr "" #: plugin/builtin/exporter/bom_exporter.py:35 -#: plugin/builtin/exporter/part_parameter_exporter.py:17 msgid "Include part stock data" msgstr "" #: plugin/builtin/exporter/bom_exporter.py:39 -#: plugin/builtin/exporter/part_parameter_exporter.py:21 #: plugin/builtin/exporter/stocktake_exporter.py:20 msgid "Pricing Data" msgstr "" #: plugin/builtin/exporter/bom_exporter.py:39 -#: plugin/builtin/exporter/part_parameter_exporter.py:21 #: plugin/builtin/exporter/stocktake_exporter.py:20 msgid "Include part pricing data" msgstr "" @@ -7144,12 +7187,20 @@ msgstr "" msgid "Provides support for exporting data from InvenTree" msgstr "" -#: plugin/builtin/exporter/part_parameter_exporter.py:33 -msgid "Part Parameter Exporter" +#: plugin/builtin/exporter/parameter_exporter.py:16 +msgid "Exclude Inactive" msgstr "" -#: plugin/builtin/exporter/part_parameter_exporter.py:34 -msgid "Exporter for part parameter data" +#: plugin/builtin/exporter/parameter_exporter.py:17 +msgid "Exclude parameters which are inactive" +msgstr "" + +#: plugin/builtin/exporter/parameter_exporter.py:29 +msgid "Parameter Exporter" +msgstr "" + +#: plugin/builtin/exporter/parameter_exporter.py:30 +msgid "Exporter for model parameter data" msgstr "" #: plugin/builtin/exporter/stocktake_exporter.py:25 @@ -8079,19 +8130,19 @@ msgstr "" msgid "No result" msgstr "" -#: report/templatetags/report.py:167 +#: report/templatetags/report.py:169 msgid "Asset file does not exist" msgstr "" -#: report/templatetags/report.py:224 report/templatetags/report.py:300 +#: report/templatetags/report.py:226 report/templatetags/report.py:302 msgid "Image file not found" msgstr "" -#: report/templatetags/report.py:325 +#: report/templatetags/report.py:327 msgid "part_image tag requires a Part instance" msgstr "" -#: report/templatetags/report.py:362 +#: report/templatetags/report.py:383 msgid "company_image tag requires a Company instance" msgstr "" @@ -8455,115 +8506,119 @@ msgstr "" msgid "Quantity does not match serial numbers" msgstr "" -#: stock/models.py:2012 stock/models.py:2917 +#: stock/models.py:1912 +msgid "Cannot assign stock to structural location" +msgstr "" + +#: stock/models.py:2029 stock/models.py:2934 msgid "Test template does not exist" msgstr "" -#: stock/models.py:2030 +#: stock/models.py:2047 msgid "Stock item has been assigned to a sales order" msgstr "" -#: stock/models.py:2034 +#: stock/models.py:2051 msgid "Stock item is installed in another item" msgstr "" -#: stock/models.py:2037 +#: stock/models.py:2054 msgid "Stock item contains other items" msgstr "" -#: stock/models.py:2040 +#: stock/models.py:2057 msgid "Stock item has been assigned to a customer" msgstr "" -#: stock/models.py:2043 stock/models.py:2226 +#: stock/models.py:2060 stock/models.py:2243 msgid "Stock item is currently in production" msgstr "" -#: stock/models.py:2046 +#: stock/models.py:2063 msgid "Serialized stock cannot be merged" msgstr "" -#: stock/models.py:2053 stock/serializers.py:1462 +#: stock/models.py:2070 stock/serializers.py:1462 msgid "Duplicate stock items" msgstr "" -#: stock/models.py:2057 +#: stock/models.py:2074 msgid "Stock items must refer to the same part" msgstr "" -#: stock/models.py:2065 +#: stock/models.py:2082 msgid "Stock items must refer to the same supplier part" msgstr "" -#: stock/models.py:2070 +#: stock/models.py:2087 msgid "Stock status codes must match" msgstr "" -#: stock/models.py:2349 +#: stock/models.py:2366 msgid "StockItem cannot be moved as it is not in stock" msgstr "" -#: stock/models.py:2818 +#: stock/models.py:2835 msgid "Stock Item Tracking" msgstr "" -#: stock/models.py:2849 +#: stock/models.py:2866 msgid "Entry notes" msgstr "" -#: stock/models.py:2889 +#: stock/models.py:2906 msgid "Stock Item Test Result" msgstr "" -#: stock/models.py:2920 +#: stock/models.py:2937 msgid "Value must be provided for this test" msgstr "" -#: stock/models.py:2924 +#: stock/models.py:2941 msgid "Attachment must be uploaded for this test" msgstr "" -#: stock/models.py:2929 +#: stock/models.py:2946 msgid "Invalid value for this test" msgstr "" -#: stock/models.py:2953 +#: stock/models.py:2970 msgid "Test result" msgstr "Testitulemused" -#: stock/models.py:2960 +#: stock/models.py:2977 msgid "Test output value" msgstr "" -#: stock/models.py:2968 stock/serializers.py:248 +#: stock/models.py:2985 stock/serializers.py:248 msgid "Test result attachment" msgstr "" -#: stock/models.py:2972 +#: stock/models.py:2989 msgid "Test notes" msgstr "" -#: stock/models.py:2980 +#: stock/models.py:2997 msgid "Test station" msgstr "" -#: stock/models.py:2981 +#: stock/models.py:2998 msgid "The identifier of the test station where the test was performed" msgstr "" -#: stock/models.py:2987 +#: stock/models.py:3004 msgid "Started" msgstr "" -#: stock/models.py:2988 +#: stock/models.py:3005 msgid "The timestamp of the test start" msgstr "" -#: stock/models.py:2994 +#: stock/models.py:3011 msgid "Finished" msgstr "" -#: stock/models.py:2995 +#: stock/models.py:3012 msgid "The timestamp of the test finish" msgstr "" @@ -8677,8 +8732,8 @@ msgstr "" msgid "Quantity must not exceed available stock quantity ({q})" msgstr "" -#: stock/serializers.py:711 stock/serializers.py:1419 stock/serializers.py:1732 -#: stock/serializers.py:1781 +#: stock/serializers.py:711 stock/serializers.py:1419 stock/serializers.py:1740 +#: stock/serializers.py:1789 msgid "Destination stock location" msgstr "" @@ -8834,19 +8889,19 @@ msgstr "" msgid "Stock transaction notes" msgstr "" -#: stock/serializers.py:1787 +#: stock/serializers.py:1795 msgid "Merge into existing stock" msgstr "" -#: stock/serializers.py:1788 +#: stock/serializers.py:1796 msgid "Merge returned items into existing stock items if possible" msgstr "" -#: stock/serializers.py:1831 +#: stock/serializers.py:1839 msgid "Next Serial Number" msgstr "" -#: stock/serializers.py:1837 +#: stock/serializers.py:1845 msgid "Previous Serial Number" msgstr "" @@ -8902,83 +8957,87 @@ msgstr "" msgid "Stock manually removed" msgstr "" -#: stock/status_codes.py:57 +#: stock/status_codes.py:56 +msgid "Serialized stock items" +msgstr "" + +#: stock/status_codes.py:58 msgid "Returned to stock" msgstr "" -#: stock/status_codes.py:60 +#: stock/status_codes.py:61 msgid "Location changed" msgstr "" -#: stock/status_codes.py:61 +#: stock/status_codes.py:62 msgid "Stock updated" msgstr "" -#: stock/status_codes.py:64 +#: stock/status_codes.py:65 msgid "Installed into assembly" msgstr "" -#: stock/status_codes.py:65 +#: stock/status_codes.py:66 msgid "Removed from assembly" msgstr "" -#: stock/status_codes.py:67 +#: stock/status_codes.py:68 msgid "Installed component item" msgstr "" -#: stock/status_codes.py:68 +#: stock/status_codes.py:69 msgid "Removed component item" msgstr "" -#: stock/status_codes.py:71 +#: stock/status_codes.py:72 msgid "Split from parent item" msgstr "" -#: stock/status_codes.py:72 +#: stock/status_codes.py:73 msgid "Split child item" msgstr "" -#: stock/status_codes.py:75 +#: stock/status_codes.py:76 msgid "Merged stock items" msgstr "" -#: stock/status_codes.py:78 +#: stock/status_codes.py:79 msgid "Converted to variant" msgstr "" -#: stock/status_codes.py:81 +#: stock/status_codes.py:82 msgid "Build order output created" msgstr "" -#: stock/status_codes.py:82 +#: stock/status_codes.py:83 msgid "Build order output completed" msgstr "" -#: stock/status_codes.py:83 +#: stock/status_codes.py:84 msgid "Build order output rejected" msgstr "" -#: stock/status_codes.py:84 +#: stock/status_codes.py:85 msgid "Consumed by build order" msgstr "" -#: stock/status_codes.py:87 +#: stock/status_codes.py:88 msgid "Shipped against Sales Order" msgstr "" -#: stock/status_codes.py:90 +#: stock/status_codes.py:91 msgid "Received against Purchase Order" msgstr "" -#: stock/status_codes.py:93 +#: stock/status_codes.py:94 msgid "Returned against Return Order" msgstr "" -#: stock/status_codes.py:96 +#: stock/status_codes.py:97 msgid "Sent to customer" msgstr "" -#: stock/status_codes.py:97 +#: stock/status_codes.py:98 msgid "Returned from customer" msgstr "" diff --git a/src/backend/InvenTree/locale/fa/LC_MESSAGES/django.po b/src/backend/InvenTree/locale/fa/LC_MESSAGES/django.po index 970e0aa61b..3c7bed40bc 100644 --- a/src/backend/InvenTree/locale/fa/LC_MESSAGES/django.po +++ b/src/backend/InvenTree/locale/fa/LC_MESSAGES/django.po @@ -2,8 +2,8 @@ msgid "" msgstr "" "Project-Id-Version: inventree\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-11-19 04:55+0000\n" -"PO-Revision-Date: 2025-11-19 04:59\n" +"POT-Creation-Date: 2025-12-07 07:33+0000\n" +"PO-Revision-Date: 2025-12-07 07:36\n" "Last-Translator: \n" "Language-Team: Persian\n" "Language: fa_IR\n" @@ -57,7 +57,7 @@ msgstr "" msgid "This field must be unique." msgstr "" -#: InvenTree/api.py:775 +#: InvenTree/api.py:803 msgid "User does not have permission to view this model" msgstr "کاربر سطح دسترسی نمایش این مدل را ندارد" @@ -81,22 +81,22 @@ msgstr "آدرس ایمیل اصلی ارائه شده معتبر نیست." msgid "The provided email domain is not approved." msgstr "دامنه ایمیل ارائه شده تایید نشده است." -#: InvenTree/conversion.py:166 +#: InvenTree/conversion.py:240 #, python-brace-format msgid "Invalid unit provided ({unit})" msgstr "واحد نامعتبر ارائه شده ({unit})" -#: InvenTree/conversion.py:183 +#: InvenTree/conversion.py:257 msgid "No value provided" msgstr "مقداری افزوده نشده" -#: InvenTree/conversion.py:210 +#: InvenTree/conversion.py:284 #, python-brace-format msgid "Could not convert {original} to {unit}" msgstr "نمی‌توان {original} را به {unit} تبدیل کرد" -#: InvenTree/conversion.py:212 InvenTree/conversion.py:226 -#: InvenTree/helpers.py:597 order/models.py:720 order/models.py:1015 +#: InvenTree/conversion.py:286 InvenTree/conversion.py:300 +#: InvenTree/helpers.py:597 order/models.py:721 order/models.py:1016 msgid "Invalid quantity provided" msgstr "مقدار ارائه شده نامعتبر است" @@ -112,11 +112,11 @@ msgstr "تاریخ را وارد کنید" msgid "Invalid decimal value" msgstr "مقدار اعشاری نامعتبر است" -#: InvenTree/fields.py:218 InvenTree/models.py:1067 build/serializers.py:509 -#: build/serializers.py:580 build/serializers.py:1788 company/models.py:857 -#: order/models.py:1780 +#: InvenTree/fields.py:218 InvenTree/models.py:1228 build/serializers.py:517 +#: build/serializers.py:588 build/serializers.py:1796 company/models.py:811 +#: order/models.py:1781 #: report/templates/report/inventree_build_order_report.html:172 -#: stock/models.py:2848 stock/models.py:2972 stock/serializers.py:717 +#: stock/models.py:2865 stock/models.py:2989 stock/serializers.py:717 #: stock/serializers.py:893 stock/serializers.py:1035 stock/serializers.py:1336 #: stock/serializers.py:1425 stock/serializers.py:1624 msgid "Notes" @@ -171,35 +171,35 @@ msgstr "برچسب های HTML را از این مقدار حذف کنید" msgid "Data contains prohibited markdown content" msgstr "داده ها حاوی محتوای علامت گذاری ممنوع است" -#: InvenTree/helpers_model.py:133 +#: InvenTree/helpers_model.py:134 msgid "Connection error" msgstr "خطا در اتصال" -#: InvenTree/helpers_model.py:138 InvenTree/helpers_model.py:145 +#: InvenTree/helpers_model.py:139 InvenTree/helpers_model.py:146 msgid "Server responded with invalid status code" msgstr "سرور با کد وضعیت نامعتبر پاسخ داد" -#: InvenTree/helpers_model.py:141 +#: InvenTree/helpers_model.py:142 msgid "Exception occurred" msgstr "یک استثنا رخ داده است" -#: InvenTree/helpers_model.py:151 +#: InvenTree/helpers_model.py:152 msgid "Server responded with invalid Content-Length value" msgstr "سرور با مقدار طول محتوا نامعتبر پاسخ داد" -#: InvenTree/helpers_model.py:154 +#: InvenTree/helpers_model.py:155 msgid "Image size is too large" msgstr "اندازه عکس بسیار بزرگ است" -#: InvenTree/helpers_model.py:166 +#: InvenTree/helpers_model.py:167 msgid "Image download exceeded maximum size" msgstr "حجم دانلود تصویر از حداکثر اندازه بیشتر شده است" -#: InvenTree/helpers_model.py:171 +#: InvenTree/helpers_model.py:172 msgid "Remote server returned empty response" msgstr "سرور ریموت پاسخ خالی را برگرداند" -#: InvenTree/helpers_model.py:179 +#: InvenTree/helpers_model.py:180 msgid "Supplied URL is not a valid image file" msgstr "URL ارائه شده یک فایل تصویری معتبر نیست" @@ -207,7 +207,7 @@ msgstr "URL ارائه شده یک فایل تصویری معتبر نیست" msgid "Log in to the app" msgstr "وارد برنامه شوید" -#: InvenTree/magic_login.py:41 company/models.py:172 users/serializers.py:198 +#: InvenTree/magic_login.py:41 company/models.py:173 users/serializers.py:198 msgid "Email" msgstr "ایمیل" @@ -215,160 +215,176 @@ msgstr "ایمیل" msgid "You must enable two-factor authentication before doing anything else." msgstr "قبل از انجام هر کار دیگری باید احراز هویت دو مرحله ای را فعال کنید." -#: InvenTree/models.py:111 +#: InvenTree/models.py:114 msgid "Error running plugin validation" msgstr "خطا در اجرای تأیید اعتبار افزونه" -#: InvenTree/models.py:192 +#: InvenTree/models.py:195 msgid "Metadata must be a python dict object" msgstr "فراداده باید یک شیء دیکت پایتون باشد" -#: InvenTree/models.py:198 +#: InvenTree/models.py:201 msgid "Plugin Metadata" msgstr "فراداده افزونه" -#: InvenTree/models.py:199 +#: InvenTree/models.py:202 msgid "JSON metadata field, for use by external plugins" msgstr "فیلد فراداده JSON، برای استفاده توسط افزونه های خارجی" -#: InvenTree/models.py:382 +#: InvenTree/models.py:385 msgid "Improperly formatted pattern" msgstr "الگوی فرمت نامناسب" -#: InvenTree/models.py:389 +#: InvenTree/models.py:392 msgid "Unknown format key specified" msgstr "کلید قالب ناشناخته مشخص شده است" -#: InvenTree/models.py:395 +#: InvenTree/models.py:398 msgid "Missing required format key" msgstr "کلید قالب مورد نیاز وجود ندارد" -#: InvenTree/models.py:406 +#: InvenTree/models.py:409 msgid "Reference field cannot be empty" msgstr "فیلد مرجع نمی تواند خالی باشد" -#: InvenTree/models.py:414 +#: InvenTree/models.py:417 msgid "Reference must match required pattern" msgstr "مرجع باید با الگوی مورد نیاز مطابقت داشته باشد" -#: InvenTree/models.py:445 +#: InvenTree/models.py:448 msgid "Reference number is too large" msgstr "شماره مرجع خیلی بزرگ است" -#: InvenTree/models.py:743 +#: InvenTree/models.py:896 msgid "Invalid choice" msgstr "انتخاب نامعتبر" -#: InvenTree/models.py:856 common/models.py:1410 common/models.py:1837 -#: common/models.py:2096 common/models.py:2221 common/serializers.py:535 -#: company/models.py:615 generic/states/serializers.py:20 machine/models.py:25 -#: part/models.py:1039 part/models.py:3850 plugin/models.py:54 +#: InvenTree/models.py:1017 common/models.py:1414 common/models.py:1841 +#: common/models.py:2102 common/models.py:2227 common/models.py:2494 +#: common/serializers.py:539 generic/states/serializers.py:20 +#: machine/models.py:25 part/models.py:1127 plugin/models.py:54 #: report/models.py:216 stock/models.py:84 msgid "Name" msgstr "نام" -#: InvenTree/models.py:862 build/models.py:252 common/models.py:171 -#: common/models.py:2228 common/models.py:2341 company/models.py:543 -#: company/models.py:848 order/models.py:442 order/models.py:1825 -#: part/models.py:1062 part/models.py:3865 report/models.py:222 +#: InvenTree/models.py:1023 build/models.py:253 common/models.py:175 +#: common/models.py:2234 common/models.py:2347 common/models.py:2509 +#: company/models.py:545 company/models.py:802 order/models.py:443 +#: order/models.py:1826 part/models.py:1150 report/models.py:222 #: report/models.py:815 report/models.py:841 #: report/templates/report/inventree_build_order_report.html:117 #: stock/models.py:90 msgid "Description" msgstr "توضیحات" -#: InvenTree/models.py:863 stock/models.py:91 +#: InvenTree/models.py:1024 stock/models.py:91 msgid "Description (optional)" msgstr "توضیحات (اختیاری)" -#: InvenTree/models.py:878 common/models.py:2394 +#: InvenTree/models.py:1039 common/models.py:2815 msgid "Path" msgstr "مسیر" -#: InvenTree/models.py:983 +#: InvenTree/models.py:1144 msgid "Duplicate names cannot exist under the same parent" msgstr "نام‌های تکراری نمی‌توانند تحت یک والد وجود داشته باشند" -#: InvenTree/models.py:1067 +#: InvenTree/models.py:1228 msgid "Markdown notes (optional)" msgstr "یادداشت های علامت گذاری (اختیاری)" -#: InvenTree/models.py:1098 +#: InvenTree/models.py:1259 msgid "Barcode Data" msgstr "داده های بارکد" -#: InvenTree/models.py:1099 +#: InvenTree/models.py:1260 msgid "Third party barcode data" msgstr "داده های بارکد شخص ثالث" -#: InvenTree/models.py:1105 +#: InvenTree/models.py:1266 msgid "Barcode Hash" msgstr "هش بارکد" -#: InvenTree/models.py:1106 +#: InvenTree/models.py:1267 msgid "Unique hash of barcode data" msgstr "هش منحصر به فرد داده های بارکد" -#: InvenTree/models.py:1187 +#: InvenTree/models.py:1348 msgid "Existing barcode found" msgstr "بارکد موجود پیدا شد" -#: InvenTree/models.py:1269 +#: InvenTree/models.py:1430 msgid "Task Failure" msgstr "شکست کار" -#: InvenTree/models.py:1270 +#: InvenTree/models.py:1431 #, python-brace-format msgid "Background worker task '{f}' failed after {n} attempts" msgstr "پس از {n} تلاش، کار پس زمینه '{f}' ناموفق بود" -#: InvenTree/models.py:1297 +#: InvenTree/models.py:1458 msgid "Server Error" msgstr "خطای سرور" -#: InvenTree/models.py:1298 +#: InvenTree/models.py:1459 msgid "An error has been logged by the server." msgstr "یک خطا توسط سرور ثبت شده است." -#: InvenTree/models.py:1340 common/models.py:1748 +#: InvenTree/models.py:1501 common/models.py:1752 #: report/templates/report/inventree_bill_of_materials_report.html:126 #: report/templates/report/inventree_bill_of_materials_report.html:148 #: report/templates/report/inventree_return_order_report.html:35 msgid "Image" msgstr "" -#: InvenTree/serializers.py:253 part/models.py:4571 +#: InvenTree/serializers.py:255 part/models.py:4196 msgid "Must be a valid number" msgstr "باید یک عدد معتبر باشد" -#: InvenTree/serializers.py:295 company/models.py:214 part/models.py:3285 +#: InvenTree/serializers.py:297 company/models.py:215 part/models.py:3349 msgid "Currency" msgstr "ارز" -#: InvenTree/serializers.py:298 part/serializers.py:1385 +#: InvenTree/serializers.py:300 part/serializers.py:1250 msgid "Select currency from available options" msgstr "ارز را از گزینه های موجود انتخاب کنید" -#: InvenTree/serializers.py:653 +#: InvenTree/serializers.py:654 +msgid "This field may not be null." +msgstr "" + +#: InvenTree/serializers.py:660 msgid "Invalid value" msgstr "مقدار نامعتبر" -#: InvenTree/serializers.py:690 +#: InvenTree/serializers.py:697 msgid "Remote Image" msgstr "تصویر ریموت" -#: InvenTree/serializers.py:691 +#: InvenTree/serializers.py:698 msgid "URL of remote image file" msgstr "آدرس فایل تصویری از راه دور" -#: InvenTree/serializers.py:709 +#: InvenTree/serializers.py:716 msgid "Downloading images from remote URL is not enabled" msgstr "دانلود تصاویر از URL ریموت فعال نیست" -#: InvenTree/serializers.py:716 +#: InvenTree/serializers.py:723 msgid "Failed to download image from remote URL" msgstr "دانلود تصویر از URL ریموت انجام نشد" +#: InvenTree/serializers.py:806 +msgid "Invalid content type format" +msgstr "" + +#: InvenTree/serializers.py:809 +msgid "Content type not found" +msgstr "" + +#: InvenTree/serializers.py:815 +msgid "Content type does not match required mixin class" +msgstr "" + #: InvenTree/setting/locales.py:20 msgid "Arabic" msgstr "عربی" @@ -537,30 +553,30 @@ msgstr "واحد فیزیکی نامعتبر" msgid "Not a valid currency code" msgstr "کد ارز معتبر" -#: build/api.py:54 order/api.py:111 order/api.py:270 order/api.py:1373 -#: order/serializers.py:132 +#: build/api.py:54 order/api.py:116 order/api.py:275 order/api.py:1378 +#: order/serializers.py:133 msgid "Order Status" msgstr "وضعیت سفارش" -#: build/api.py:80 build/models.py:264 +#: build/api.py:80 build/models.py:265 msgid "Parent Build" msgstr "" -#: build/api.py:84 build/api.py:831 order/api.py:547 order/api.py:770 -#: order/api.py:1174 order/api.py:1449 stock/api.py:573 +#: build/api.py:84 build/api.py:837 order/api.py:553 order/api.py:776 +#: order/api.py:1179 order/api.py:1454 stock/api.py:573 msgid "Include Variants" msgstr "" -#: build/api.py:100 build/api.py:466 build/api.py:845 build/models.py:270 -#: build/serializers.py:1225 build/serializers.py:1356 -#: build/serializers.py:1427 company/models.py:1067 company/serializers.py:445 -#: order/api.py:298 order/api.py:302 order/api.py:929 order/api.py:1187 -#: order/api.py:1190 order/models.py:1941 order/models.py:2108 -#: order/models.py:2109 part/api.py:1233 part/api.py:1236 part/api.py:1302 -#: part/api.py:1589 part/models.py:472 part/models.py:3296 part/models.py:3439 -#: part/models.py:3497 part/models.py:3518 part/models.py:3540 -#: part/models.py:3679 part/models.py:4046 part/models.py:4368 -#: part/models.py:4787 part/serializers.py:1928 +#: build/api.py:100 build/api.py:472 build/api.py:851 build/models.py:271 +#: build/serializers.py:1233 build/serializers.py:1364 +#: build/serializers.py:1435 company/models.py:1021 company/serializers.py:490 +#: order/api.py:303 order/api.py:307 order/api.py:934 order/api.py:1192 +#: order/api.py:1195 order/models.py:1942 order/models.py:2109 +#: order/models.py:2110 part/api.py:1160 part/api.py:1163 part/api.py:1314 +#: part/models.py:550 part/models.py:3360 part/models.py:3503 +#: part/models.py:3561 part/models.py:3582 part/models.py:3604 +#: part/models.py:3743 part/models.py:3993 part/models.py:4412 +#: part/serializers.py:1801 #: report/templates/report/inventree_bill_of_materials_report.html:110 #: report/templates/report/inventree_bill_of_materials_report.html:137 #: report/templates/report/inventree_build_order_report.html:109 @@ -580,9 +596,9 @@ msgstr "" msgid "Part" msgstr "قطعه" -#: build/api.py:120 build/api.py:123 build/serializers.py:1438 part/api.py:980 -#: part/api.py:1316 part/api.py:1600 part/models.py:1080 part/models.py:3568 -#: part/models.py:4162 part/serializers.py:1752 stock/api.py:869 +#: build/api.py:120 build/api.py:123 build/serializers.py:1446 part/api.py:975 +#: part/api.py:1325 part/models.py:435 part/models.py:1168 part/models.py:3632 +#: part/serializers.py:1617 stock/api.py:869 msgid "Category" msgstr "دسته" @@ -590,7 +606,7 @@ msgstr "دسته" msgid "Ancestor Build" msgstr "" -#: build/api.py:152 order/api.py:129 +#: build/api.py:152 order/api.py:134 msgid "Assigned to me" msgstr "واگذار شده به من" @@ -638,134 +654,134 @@ msgstr "تکمیل شده قبل از" msgid "Completed after" msgstr "تکمیل شده بعد از" -#: build/api.py:249 order/api.py:226 +#: build/api.py:249 order/api.py:231 msgid "Min Date" msgstr "" -#: build/api.py:272 order/api.py:245 +#: build/api.py:272 order/api.py:250 msgid "Max Date" msgstr "" -#: build/api.py:297 build/api.py:300 part/api.py:217 stock/api.py:961 +#: build/api.py:297 build/api.py:300 part/api.py:212 stock/api.py:961 msgid "Exclude Tree" msgstr "" -#: build/api.py:405 +#: build/api.py:411 msgid "Build must be cancelled before it can be deleted" msgstr "" -#: build/api.py:449 build/serializers.py:1374 part/models.py:4402 +#: build/api.py:455 build/serializers.py:1382 part/models.py:4027 msgid "Consumable" msgstr "مصرفی" -#: build/api.py:452 build/serializers.py:1377 part/models.py:4396 +#: build/api.py:458 build/serializers.py:1385 part/models.py:4021 msgid "Optional" msgstr "اختیاری" -#: build/api.py:455 build/serializers.py:1415 common/setting/system.py:456 -#: part/models.py:1202 part/serializers.py:1714 part/serializers.py:1725 +#: build/api.py:461 build/serializers.py:1423 common/setting/system.py:456 +#: part/models.py:1290 part/serializers.py:1579 part/serializers.py:1590 #: stock/api.py:639 msgid "Assembly" msgstr "مونتاژ" -#: build/api.py:458 +#: build/api.py:464 msgid "Tracked" msgstr "" -#: build/api.py:461 build/serializers.py:1380 part/models.py:1220 +#: build/api.py:467 build/serializers.py:1388 part/models.py:1308 msgid "Testable" msgstr "" -#: build/api.py:471 order/api.py:993 order/api.py:1363 +#: build/api.py:477 order/api.py:998 order/api.py:1368 msgid "Order Outstanding" msgstr "سفارش معوق" -#: build/api.py:481 build/serializers.py:1464 order/api.py:952 +#: build/api.py:487 build/serializers.py:1472 order/api.py:957 msgid "Allocated" msgstr "اختصاص داده شده" -#: build/api.py:490 build/models.py:1672 build/serializers.py:1393 +#: build/api.py:496 build/models.py:1673 build/serializers.py:1401 msgid "Consumed" msgstr "" -#: build/api.py:499 company/models.py:912 company/serializers.py:440 +#: build/api.py:505 company/models.py:866 company/serializers.py:467 #: templates/email/build_order_required_stock.html:19 #: templates/email/low_stock_notification.html:17 #: templates/email/part_event_notification.html:18 msgid "Available" msgstr "در دسترس" -#: build/api.py:523 build/serializers.py:1466 company/serializers.py:437 -#: order/serializers.py:1281 part/serializers.py:959 part/serializers.py:1306 -#: part/serializers.py:1761 +#: build/api.py:529 build/serializers.py:1474 company/serializers.py:464 +#: order/serializers.py:1295 part/serializers.py:844 part/serializers.py:1171 +#: part/serializers.py:1626 msgid "On Order" msgstr "" -#: build/api.py:868 build/models.py:117 order/models.py:1974 +#: build/api.py:874 build/models.py:118 order/models.py:1975 #: report/templates/report/inventree_build_order_report.html:105 #: stock/serializers.py:93 templates/email/build_order_completed.html:16 #: templates/email/overdue_build_order.html:15 msgid "Build Order" msgstr "سفارش ساخت" -#: build/api.py:882 build/api.py:886 build/serializers.py:372 -#: build/serializers.py:497 build/serializers.py:567 build/serializers.py:1251 -#: build/serializers.py:1256 order/api.py:1234 order/api.py:1239 -#: order/serializers.py:833 order/serializers.py:973 order/serializers.py:2042 +#: build/api.py:888 build/api.py:892 build/serializers.py:380 +#: build/serializers.py:505 build/serializers.py:575 build/serializers.py:1259 +#: build/serializers.py:1264 order/api.py:1239 order/api.py:1244 +#: order/serializers.py:844 order/serializers.py:984 order/serializers.py:2059 #: stock/api.py:987 stock/serializers.py:111 stock/serializers.py:601 #: stock/serializers.py:710 stock/serializers.py:888 stock/serializers.py:1418 -#: stock/serializers.py:1731 stock/serializers.py:1780 +#: stock/serializers.py:1739 stock/serializers.py:1788 #: templates/email/stale_stock_notification.html:18 users/models.py:549 msgid "Location" msgstr "مکان" -#: build/api.py:894 +#: build/api.py:900 msgid "Output" msgstr "" -#: build/api.py:896 +#: build/api.py:902 msgid "Filter by output stock item ID. Use 'null' to find uninstalled build items." msgstr "" -#: build/models.py:118 users/ruleset.py:31 +#: build/models.py:119 users/ruleset.py:31 msgid "Build Orders" msgstr "سفارش‌های ساخت" -#: build/models.py:168 +#: build/models.py:169 msgid "Assembly BOM has not been validated" msgstr "" -#: build/models.py:175 +#: build/models.py:176 msgid "Build order cannot be created for an inactive part" msgstr "" -#: build/models.py:182 +#: build/models.py:183 msgid "Build order cannot be created for an unlocked part" msgstr "" -#: build/models.py:200 +#: build/models.py:201 msgid "Build orders can only be externally fulfilled for purchaseable parts" msgstr "" -#: build/models.py:207 order/models.py:369 +#: build/models.py:208 order/models.py:370 msgid "Responsible user or group must be specified" msgstr "" -#: build/models.py:212 +#: build/models.py:213 msgid "Build order part cannot be changed" msgstr "" -#: build/models.py:217 order/models.py:382 +#: build/models.py:218 order/models.py:383 msgid "Target date must be after start date" msgstr "" -#: build/models.py:245 +#: build/models.py:246 msgid "Build Order Reference" msgstr "" -#: build/models.py:246 build/serializers.py:1371 order/models.py:614 -#: order/models.py:1311 order/models.py:1773 order/models.py:2712 -#: part/models.py:4442 +#: build/models.py:247 build/serializers.py:1379 order/models.py:615 +#: order/models.py:1312 order/models.py:1774 order/models.py:2713 +#: part/models.py:4067 #: report/templates/report/inventree_bill_of_materials_report.html:139 #: report/templates/report/inventree_purchase_order_report.html:35 #: report/templates/report/inventree_return_order_report.html:26 @@ -773,230 +789,230 @@ msgstr "" msgid "Reference" msgstr "" -#: build/models.py:255 +#: build/models.py:256 msgid "Brief description of the build (optional)" msgstr "" -#: build/models.py:265 +#: build/models.py:266 msgid "BuildOrder to which this build is allocated" msgstr "" -#: build/models.py:274 +#: build/models.py:275 msgid "Select part to build" msgstr "" -#: build/models.py:279 +#: build/models.py:280 msgid "Sales Order Reference" msgstr "مرجع سفارش فروش" -#: build/models.py:284 +#: build/models.py:285 msgid "SalesOrder to which this build is allocated" msgstr "" -#: build/models.py:289 build/serializers.py:1097 +#: build/models.py:290 build/serializers.py:1105 msgid "Source Location" msgstr "منبع محل" -#: build/models.py:295 +#: build/models.py:296 msgid "Select location to take stock from for this build (leave blank to take from any stock location)" msgstr "" -#: build/models.py:301 +#: build/models.py:302 msgid "External Build" msgstr "" -#: build/models.py:302 +#: build/models.py:303 msgid "This build order is fulfilled externally" msgstr "" -#: build/models.py:307 +#: build/models.py:308 msgid "Destination Location" msgstr "مقصد" -#: build/models.py:312 +#: build/models.py:313 msgid "Select location where the completed items will be stored" msgstr "" -#: build/models.py:316 +#: build/models.py:317 msgid "Build Quantity" msgstr "" -#: build/models.py:319 +#: build/models.py:320 msgid "Number of stock items to build" msgstr "" -#: build/models.py:323 +#: build/models.py:324 msgid "Completed items" msgstr "" -#: build/models.py:325 +#: build/models.py:326 msgid "Number of stock items which have been completed" msgstr "" -#: build/models.py:329 +#: build/models.py:330 msgid "Build Status" msgstr "" -#: build/models.py:334 +#: build/models.py:335 msgid "Build status code" msgstr "" -#: build/models.py:343 build/serializers.py:359 order/serializers.py:849 +#: build/models.py:344 build/serializers.py:367 order/serializers.py:860 #: stock/models.py:1100 stock/serializers.py:85 stock/serializers.py:1591 msgid "Batch Code" msgstr "" -#: build/models.py:347 build/serializers.py:360 +#: build/models.py:348 build/serializers.py:368 msgid "Batch code for this build output" msgstr "" -#: build/models.py:351 order/models.py:479 order/serializers.py:186 -#: part/models.py:1283 +#: build/models.py:352 order/models.py:480 order/serializers.py:193 +#: part/models.py:1371 msgid "Creation Date" msgstr "" -#: build/models.py:357 +#: build/models.py:358 msgid "Build start date" msgstr "" -#: build/models.py:358 +#: build/models.py:359 msgid "Scheduled start date for this build order" msgstr "" -#: build/models.py:364 +#: build/models.py:365 msgid "Target completion date" msgstr "" -#: build/models.py:366 +#: build/models.py:367 msgid "Target date for build completion. Build will be overdue after this date." msgstr "" -#: build/models.py:371 order/models.py:667 order/models.py:2751 +#: build/models.py:372 order/models.py:668 order/models.py:2752 msgid "Completion Date" msgstr "تاریخ تکمیل" -#: build/models.py:379 +#: build/models.py:380 msgid "completed by" msgstr "تکمیل شده توسط" -#: build/models.py:388 +#: build/models.py:389 msgid "Issued by" msgstr "صادر شده توسط" -#: build/models.py:389 +#: build/models.py:390 msgid "User who issued this build order" msgstr "کاربری که این سفارش ساخت را صادر کرده است" -#: build/models.py:398 common/models.py:180 order/api.py:179 -#: order/models.py:504 part/models.py:1300 +#: build/models.py:399 common/models.py:184 order/api.py:184 +#: order/models.py:505 part/models.py:1388 #: report/templates/report/inventree_build_order_report.html:158 msgid "Responsible" msgstr "" -#: build/models.py:399 +#: build/models.py:400 msgid "User or group responsible for this build order" msgstr "" -#: build/models.py:404 stock/models.py:1093 +#: build/models.py:405 stock/models.py:1093 msgid "External Link" msgstr "پیوند خارجی" -#: build/models.py:406 common/models.py:1984 part/models.py:1114 +#: build/models.py:407 common/models.py:1990 part/models.py:1202 #: stock/models.py:1095 msgid "Link to external URL" msgstr "" -#: build/models.py:411 +#: build/models.py:412 msgid "Build Priority" msgstr "" -#: build/models.py:414 +#: build/models.py:415 msgid "Priority of this build order" msgstr "" -#: build/models.py:422 common/models.py:150 common/models.py:164 -#: order/api.py:165 order/models.py:451 order/models.py:1805 +#: build/models.py:423 common/models.py:154 common/models.py:168 +#: order/api.py:170 order/models.py:452 order/models.py:1806 msgid "Project Code" msgstr "" -#: build/models.py:423 +#: build/models.py:424 msgid "Project code for this build order" msgstr "" -#: build/models.py:676 +#: build/models.py:677 msgid "Cannot complete build order with open child builds" msgstr "" -#: build/models.py:681 +#: build/models.py:682 msgid "Cannot complete build order with incomplete outputs" msgstr "" -#: build/models.py:700 build/models.py:830 +#: build/models.py:701 build/models.py:831 msgid "Failed to offload task to complete build allocations" msgstr "" -#: build/models.py:723 +#: build/models.py:724 #, python-brace-format msgid "Build order {build} has been completed" msgstr "" -#: build/models.py:729 +#: build/models.py:730 msgid "A build order has been completed" msgstr "" -#: build/models.py:911 build/serializers.py:407 +#: build/models.py:912 build/serializers.py:415 msgid "Serial numbers must be provided for trackable parts" msgstr "" -#: build/models.py:1042 build/models.py:1129 +#: build/models.py:1043 build/models.py:1130 msgid "No build output specified" msgstr "" -#: build/models.py:1045 +#: build/models.py:1046 msgid "Build output is already completed" msgstr "" -#: build/models.py:1048 +#: build/models.py:1049 msgid "Build output does not match Build Order" msgstr "" -#: build/models.py:1136 build/models.py:1234 build/serializers.py:285 -#: build/serializers.py:335 build/serializers.py:965 build/serializers.py:1739 -#: order/models.py:717 order/serializers.py:658 order/serializers.py:844 -#: part/serializers.py:1708 stock/models.py:940 stock/models.py:1430 +#: build/models.py:1137 build/models.py:1235 build/serializers.py:293 +#: build/serializers.py:343 build/serializers.py:973 build/serializers.py:1747 +#: order/models.py:718 order/serializers.py:669 order/serializers.py:855 +#: part/serializers.py:1573 stock/models.py:940 stock/models.py:1430 #: stock/models.py:1878 stock/serializers.py:688 stock/serializers.py:1580 msgid "Quantity must be greater than zero" msgstr "" -#: build/models.py:1140 build/models.py:1239 build/serializers.py:290 +#: build/models.py:1141 build/models.py:1240 build/serializers.py:298 msgid "Quantity cannot be greater than the output quantity" msgstr "" -#: build/models.py:1214 build/serializers.py:606 +#: build/models.py:1215 build/serializers.py:614 msgid "Build output has not passed all required tests" msgstr "" -#: build/models.py:1217 build/serializers.py:601 +#: build/models.py:1218 build/serializers.py:609 #, python-brace-format msgid "Build output {serial} has not passed all required tests" msgstr "" -#: build/models.py:1229 +#: build/models.py:1230 msgid "Cannot partially complete a build output with allocated items" msgstr "" -#: build/models.py:1627 +#: build/models.py:1628 msgid "Build Order Line Item" msgstr "" -#: build/models.py:1651 +#: build/models.py:1652 msgid "Build object" msgstr "" -#: build/models.py:1663 build/models.py:1974 build/serializers.py:271 -#: build/serializers.py:320 build/serializers.py:1392 common/models.py:1340 -#: order/models.py:1756 order/models.py:2597 order/serializers.py:1696 -#: order/serializers.py:2124 part/models.py:3453 part/models.py:4390 +#: build/models.py:1664 build/models.py:1975 build/serializers.py:279 +#: build/serializers.py:328 build/serializers.py:1400 common/models.py:1344 +#: order/models.py:1757 order/models.py:2598 order/serializers.py:1710 +#: order/serializers.py:2141 part/models.py:3517 part/models.py:4015 #: report/templates/report/inventree_bill_of_materials_report.html:138 #: report/templates/report/inventree_build_order_report.html:113 #: report/templates/report/inventree_purchase_order_report.html:36 @@ -1014,427 +1030,427 @@ msgstr "" msgid "Quantity" msgstr "" -#: build/models.py:1664 +#: build/models.py:1665 msgid "Required quantity for build order" msgstr "" -#: build/models.py:1673 +#: build/models.py:1674 msgid "Quantity of consumed stock" msgstr "" -#: build/models.py:1772 +#: build/models.py:1773 msgid "Build item must specify a build output, as master part is marked as trackable" msgstr "" -#: build/models.py:1783 +#: build/models.py:1784 #, python-brace-format msgid "Allocated quantity ({q}) must not exceed available stock quantity ({a})" msgstr "" -#: build/models.py:1804 order/models.py:2546 +#: build/models.py:1805 order/models.py:2547 msgid "Stock item is over-allocated" msgstr "" -#: build/models.py:1809 order/models.py:2549 +#: build/models.py:1810 order/models.py:2550 msgid "Allocation quantity must be greater than zero" msgstr "" -#: build/models.py:1815 +#: build/models.py:1816 msgid "Quantity must be 1 for serialized stock" msgstr "" -#: build/models.py:1875 +#: build/models.py:1876 msgid "Selected stock item does not match BOM line" msgstr "" -#: build/models.py:1913 +#: build/models.py:1914 msgid "Allocated quantity exceeds available stock quantity" msgstr "" -#: build/models.py:1964 build/serializers.py:948 build/serializers.py:1240 -#: order/serializers.py:1533 order/serializers.py:1554 +#: build/models.py:1965 build/serializers.py:956 build/serializers.py:1248 +#: order/serializers.py:1547 order/serializers.py:1568 #: report/templates/report/inventree_sales_order_shipment_report.html:29 #: stock/api.py:1404 stock/models.py:456 stock/serializers.py:102 #: stock/serializers.py:800 stock/serializers.py:1274 stock/serializers.py:1386 msgid "Stock Item" msgstr "" -#: build/models.py:1965 +#: build/models.py:1966 msgid "Source stock item" msgstr "" -#: build/models.py:1975 +#: build/models.py:1976 msgid "Stock quantity to allocate to build" msgstr "" -#: build/models.py:1984 +#: build/models.py:1985 msgid "Install into" msgstr "" -#: build/models.py:1985 +#: build/models.py:1986 msgid "Destination stock item" msgstr "" -#: build/serializers.py:118 +#: build/serializers.py:120 msgid "Build Level" msgstr "" -#: build/serializers.py:128 +#: build/serializers.py:136 msgid "Part Name" msgstr "" -#: build/serializers.py:153 +#: build/serializers.py:161 msgid "Project Code Label" msgstr "" -#: build/serializers.py:219 build/serializers.py:974 +#: build/serializers.py:227 build/serializers.py:982 msgid "Build Output" msgstr "" -#: build/serializers.py:231 +#: build/serializers.py:239 msgid "Build output does not match the parent build" msgstr "" -#: build/serializers.py:235 +#: build/serializers.py:243 msgid "Output part does not match BuildOrder part" msgstr "" -#: build/serializers.py:239 +#: build/serializers.py:247 msgid "This build output has already been completed" msgstr "" -#: build/serializers.py:253 +#: build/serializers.py:261 msgid "This build output is not fully allocated" msgstr "" -#: build/serializers.py:272 build/serializers.py:321 +#: build/serializers.py:280 build/serializers.py:329 msgid "Enter quantity for build output" msgstr "" -#: build/serializers.py:343 +#: build/serializers.py:351 msgid "Integer quantity required for trackable parts" msgstr "" -#: build/serializers.py:349 +#: build/serializers.py:357 msgid "Integer quantity required, as the bill of materials contains trackable parts" msgstr "" -#: build/serializers.py:366 order/serializers.py:865 order/serializers.py:1700 +#: build/serializers.py:374 order/serializers.py:876 order/serializers.py:1714 #: stock/serializers.py:699 msgid "Serial Numbers" msgstr "" -#: build/serializers.py:367 +#: build/serializers.py:375 msgid "Enter serial numbers for build outputs" msgstr "" -#: build/serializers.py:373 +#: build/serializers.py:381 msgid "Stock location for build output" msgstr "" -#: build/serializers.py:388 +#: build/serializers.py:396 msgid "Auto Allocate Serial Numbers" msgstr "" -#: build/serializers.py:390 +#: build/serializers.py:398 msgid "Automatically allocate required items with matching serial numbers" msgstr "" -#: build/serializers.py:423 order/serializers.py:951 stock/api.py:1183 +#: build/serializers.py:431 order/serializers.py:962 stock/api.py:1183 #: stock/models.py:1901 msgid "The following serial numbers already exist or are invalid" msgstr "" -#: build/serializers.py:465 build/serializers.py:521 build/serializers.py:613 +#: build/serializers.py:473 build/serializers.py:529 build/serializers.py:621 msgid "A list of build outputs must be provided" msgstr "" -#: build/serializers.py:498 +#: build/serializers.py:506 msgid "Stock location for scrapped outputs" msgstr "" -#: build/serializers.py:504 +#: build/serializers.py:512 msgid "Discard Allocations" msgstr "" -#: build/serializers.py:505 +#: build/serializers.py:513 msgid "Discard any stock allocations for scrapped outputs" msgstr "" -#: build/serializers.py:510 +#: build/serializers.py:518 msgid "Reason for scrapping build output(s)" msgstr "" -#: build/serializers.py:568 +#: build/serializers.py:576 msgid "Location for completed build outputs" msgstr "" -#: build/serializers.py:576 +#: build/serializers.py:584 msgid "Accept Incomplete Allocation" msgstr "" -#: build/serializers.py:577 +#: build/serializers.py:585 msgid "Complete outputs if stock has not been fully allocated" msgstr "" -#: build/serializers.py:702 +#: build/serializers.py:710 msgid "Consume Allocated Stock" msgstr "" -#: build/serializers.py:703 +#: build/serializers.py:711 msgid "Consume any stock which has already been allocated to this build" msgstr "" -#: build/serializers.py:709 +#: build/serializers.py:717 msgid "Remove Incomplete Outputs" msgstr "" -#: build/serializers.py:710 +#: build/serializers.py:718 msgid "Delete any build outputs which have not been completed" msgstr "" -#: build/serializers.py:737 +#: build/serializers.py:745 msgid "Not permitted" msgstr "" -#: build/serializers.py:738 +#: build/serializers.py:746 msgid "Accept as consumed by this build order" msgstr "" -#: build/serializers.py:739 +#: build/serializers.py:747 msgid "Deallocate before completing this build order" msgstr "" -#: build/serializers.py:766 +#: build/serializers.py:774 msgid "Overallocated Stock" msgstr "" -#: build/serializers.py:769 +#: build/serializers.py:777 msgid "How do you want to handle extra stock items assigned to the build order" msgstr "" -#: build/serializers.py:780 +#: build/serializers.py:788 msgid "Some stock items have been overallocated" msgstr "" -#: build/serializers.py:785 +#: build/serializers.py:793 msgid "Accept Unallocated" msgstr "" -#: build/serializers.py:787 +#: build/serializers.py:795 msgid "Accept that stock items have not been fully allocated to this build order" msgstr "" -#: build/serializers.py:798 +#: build/serializers.py:806 msgid "Required stock has not been fully allocated" msgstr "" -#: build/serializers.py:803 order/serializers.py:524 order/serializers.py:1601 +#: build/serializers.py:811 order/serializers.py:535 order/serializers.py:1615 msgid "Accept Incomplete" msgstr "" -#: build/serializers.py:805 +#: build/serializers.py:813 msgid "Accept that the required number of build outputs have not been completed" msgstr "" -#: build/serializers.py:816 +#: build/serializers.py:824 msgid "Required build quantity has not been completed" msgstr "" -#: build/serializers.py:828 +#: build/serializers.py:836 msgid "Build order has open child build orders" msgstr "" -#: build/serializers.py:831 +#: build/serializers.py:839 msgid "Build order must be in production state" msgstr "" -#: build/serializers.py:834 +#: build/serializers.py:842 msgid "Build order has incomplete outputs" msgstr "" -#: build/serializers.py:873 +#: build/serializers.py:881 msgid "Build Line" msgstr "" -#: build/serializers.py:881 +#: build/serializers.py:889 msgid "Build output" msgstr "" -#: build/serializers.py:889 +#: build/serializers.py:897 msgid "Build output must point to the same build" msgstr "" -#: build/serializers.py:920 +#: build/serializers.py:928 msgid "Build Line Item" msgstr "" -#: build/serializers.py:938 +#: build/serializers.py:946 msgid "bom_item.part must point to the same part as the build order" msgstr "" -#: build/serializers.py:954 stock/serializers.py:1287 +#: build/serializers.py:962 stock/serializers.py:1287 msgid "Item must be in stock" msgstr "" -#: build/serializers.py:997 order/serializers.py:1587 +#: build/serializers.py:1005 order/serializers.py:1601 #, python-brace-format msgid "Available quantity ({q}) exceeded" msgstr "" -#: build/serializers.py:1003 +#: build/serializers.py:1011 msgid "Build output must be specified for allocation of tracked parts" msgstr "" -#: build/serializers.py:1011 +#: build/serializers.py:1019 msgid "Build output cannot be specified for allocation of untracked parts" msgstr "" -#: build/serializers.py:1035 order/serializers.py:1860 +#: build/serializers.py:1043 order/serializers.py:1874 msgid "Allocation items must be provided" msgstr "" -#: build/serializers.py:1099 +#: build/serializers.py:1107 msgid "Stock location where parts are to be sourced (leave blank to take from any location)" msgstr "" -#: build/serializers.py:1108 +#: build/serializers.py:1116 msgid "Exclude Location" msgstr "" -#: build/serializers.py:1109 +#: build/serializers.py:1117 msgid "Exclude stock items from this selected location" msgstr "" -#: build/serializers.py:1114 +#: build/serializers.py:1122 msgid "Interchangeable Stock" msgstr "" -#: build/serializers.py:1115 +#: build/serializers.py:1123 msgid "Stock items in multiple locations can be used interchangeably" msgstr "" -#: build/serializers.py:1120 +#: build/serializers.py:1128 msgid "Substitute Stock" msgstr "" -#: build/serializers.py:1121 +#: build/serializers.py:1129 msgid "Allow allocation of substitute parts" msgstr "" -#: build/serializers.py:1126 +#: build/serializers.py:1134 msgid "Optional Items" msgstr "" -#: build/serializers.py:1127 +#: build/serializers.py:1135 msgid "Allocate optional BOM items to build order" msgstr "" -#: build/serializers.py:1148 +#: build/serializers.py:1156 msgid "Failed to start auto-allocation task" msgstr "" -#: build/serializers.py:1200 +#: build/serializers.py:1208 msgid "BOM Reference" msgstr "" -#: build/serializers.py:1206 +#: build/serializers.py:1214 msgid "BOM Part ID" msgstr "" -#: build/serializers.py:1213 +#: build/serializers.py:1221 msgid "BOM Part Name" msgstr "" -#: build/serializers.py:1266 build/serializers.py:1449 +#: build/serializers.py:1274 build/serializers.py:1457 msgid "Build" msgstr "" -#: build/serializers.py:1276 company/models.py:685 order/api.py:311 -#: order/api.py:316 order/api.py:543 order/serializers.py:650 +#: build/serializers.py:1284 company/models.py:639 order/api.py:316 +#: order/api.py:321 order/api.py:549 order/serializers.py:661 #: stock/models.py:1036 stock/serializers.py:579 msgid "Supplier Part" msgstr "" -#: build/serializers.py:1284 stock/serializers.py:620 +#: build/serializers.py:1292 stock/serializers.py:620 msgid "Allocated Quantity" msgstr "" -#: build/serializers.py:1351 +#: build/serializers.py:1359 msgid "Build Reference" msgstr "" -#: build/serializers.py:1361 +#: build/serializers.py:1369 msgid "Part Category Name" msgstr "" -#: build/serializers.py:1383 common/setting/system.py:480 part/models.py:1214 +#: build/serializers.py:1391 common/setting/system.py:480 part/models.py:1302 msgid "Trackable" msgstr "" -#: build/serializers.py:1386 +#: build/serializers.py:1394 msgid "Inherited" msgstr "" -#: build/serializers.py:1389 part/models.py:4475 +#: build/serializers.py:1397 part/models.py:4100 msgid "Allow Variants" msgstr "" -#: build/serializers.py:1395 build/serializers.py:1400 part/models.py:4208 -#: part/models.py:4779 stock/api.py:882 +#: build/serializers.py:1403 build/serializers.py:1408 part/models.py:3833 +#: part/models.py:4404 stock/api.py:882 msgid "BOM Item" msgstr "" -#: build/serializers.py:1467 order/serializers.py:1282 part/serializers.py:1310 -#: part/serializers.py:1765 +#: build/serializers.py:1475 order/serializers.py:1296 part/serializers.py:1175 +#: part/serializers.py:1630 msgid "In Production" msgstr "" -#: build/serializers.py:1469 part/serializers.py:950 part/serializers.py:1314 +#: build/serializers.py:1477 part/serializers.py:835 part/serializers.py:1179 msgid "Scheduled to Build" msgstr "" -#: build/serializers.py:1472 part/serializers.py:987 +#: build/serializers.py:1480 part/serializers.py:872 msgid "External Stock" msgstr "" -#: build/serializers.py:1473 part/serializers.py:1300 part/serializers.py:1808 +#: build/serializers.py:1481 part/serializers.py:1165 part/serializers.py:1673 msgid "Available Stock" msgstr "" -#: build/serializers.py:1475 +#: build/serializers.py:1483 msgid "Available Substitute Stock" msgstr "" -#: build/serializers.py:1478 +#: build/serializers.py:1486 msgid "Available Variant Stock" msgstr "" -#: build/serializers.py:1752 +#: build/serializers.py:1760 msgid "Consumed quantity exceeds allocated quantity" msgstr "" -#: build/serializers.py:1789 +#: build/serializers.py:1797 msgid "Optional notes for the stock consumption" msgstr "" -#: build/serializers.py:1806 +#: build/serializers.py:1814 msgid "Build item must point to the correct build order" msgstr "" -#: build/serializers.py:1811 +#: build/serializers.py:1819 msgid "Duplicate build item allocation" msgstr "" -#: build/serializers.py:1829 +#: build/serializers.py:1837 msgid "Build line must point to the correct build order" msgstr "" -#: build/serializers.py:1834 +#: build/serializers.py:1842 msgid "Duplicate build line allocation" msgstr "" -#: build/serializers.py:1846 +#: build/serializers.py:1854 msgid "At least one item or line must be provided" msgstr "" @@ -1482,702 +1498,826 @@ msgstr "" msgid "Build order {bo} is now overdue" msgstr "" -#: common/api.py:694 +#: common/api.py:701 msgid "Is Link" msgstr "" -#: common/api.py:702 +#: common/api.py:709 msgid "Is File" msgstr "" -#: common/api.py:745 +#: common/api.py:756 msgid "User does not have permission to delete these attachments" msgstr "" -#: common/api.py:762 +#: common/api.py:769 msgid "User does not have permission to delete this attachment" msgstr "" -#: common/currency.py:122 +#: common/currency.py:130 msgid "Invalid currency code" msgstr "" -#: common/currency.py:124 +#: common/currency.py:132 msgid "Duplicate currency code" msgstr "" -#: common/currency.py:129 +#: common/currency.py:137 msgid "No valid currency codes provided" msgstr "" -#: common/currency.py:146 +#: common/currency.py:154 msgid "No plugin" msgstr "" -#: common/models.py:101 common/models.py:126 common/models.py:2729 +#: common/models.py:105 common/models.py:130 common/models.py:3150 msgid "Updated" msgstr "" -#: common/models.py:102 common/models.py:127 +#: common/models.py:106 common/models.py:131 msgid "Timestamp of last update" msgstr "" -#: common/models.py:139 +#: common/models.py:143 msgid "Update By" msgstr "" -#: common/models.py:140 +#: common/models.py:144 msgid "User who last updated this object" msgstr "" -#: common/models.py:165 +#: common/models.py:169 msgid "Unique project code" msgstr "" -#: common/models.py:172 +#: common/models.py:176 msgid "Project description" msgstr "" -#: common/models.py:181 +#: common/models.py:185 msgid "User or group responsible for this project" msgstr "" -#: common/models.py:771 common/models.py:1272 common/models.py:1310 +#: common/models.py:775 common/models.py:1276 common/models.py:1314 msgid "Settings key" msgstr "" -#: common/models.py:775 +#: common/models.py:779 msgid "Settings value" msgstr "" -#: common/models.py:830 +#: common/models.py:834 msgid "Chosen value is not a valid option" msgstr "" -#: common/models.py:846 +#: common/models.py:850 msgid "Value must be a boolean value" msgstr "" -#: common/models.py:854 +#: common/models.py:858 msgid "Value must be an integer value" msgstr "" -#: common/models.py:862 +#: common/models.py:866 msgid "Value must be a valid number" msgstr "" -#: common/models.py:887 +#: common/models.py:891 msgid "Value does not pass validation checks" msgstr "" -#: common/models.py:909 +#: common/models.py:913 msgid "Key string must be unique" msgstr "" -#: common/models.py:1318 common/models.py:1319 common/models.py:1423 -#: common/models.py:1424 common/models.py:1669 common/models.py:1670 -#: common/models.py:2000 common/models.py:2001 common/models.py:2382 -#: importer/models.py:100 part/models.py:3547 part/models.py:3575 +#: common/models.py:1322 common/models.py:1323 common/models.py:1427 +#: common/models.py:1428 common/models.py:1673 common/models.py:1674 +#: common/models.py:2006 common/models.py:2007 common/models.py:2803 +#: importer/models.py:100 part/models.py:3611 part/models.py:3639 #: plugin/models.py:355 plugin/models.py:356 #: report/templates/report/inventree_test_report.html:105 users/models.py:124 #: users/models.py:501 msgid "User" msgstr "" -#: common/models.py:1341 +#: common/models.py:1345 msgid "Price break quantity" msgstr "" -#: common/models.py:1348 company/serializers.py:564 order/models.py:1842 -#: order/models.py:3043 +#: common/models.py:1352 company/serializers.py:349 order/models.py:1843 +#: order/models.py:3044 msgid "Price" msgstr "" -#: common/models.py:1349 +#: common/models.py:1353 msgid "Unit price at specified quantity" msgstr "" -#: common/models.py:1400 common/models.py:1585 +#: common/models.py:1404 common/models.py:1589 msgid "Endpoint" msgstr "" -#: common/models.py:1401 +#: common/models.py:1405 msgid "Endpoint at which this webhook is received" msgstr "" -#: common/models.py:1411 +#: common/models.py:1415 msgid "Name for this webhook" msgstr "" -#: common/models.py:1415 common/models.py:2241 common/models.py:2348 -#: company/models.py:191 company/models.py:822 machine/models.py:40 -#: part/models.py:1237 plugin/models.py:69 stock/api.py:642 users/models.py:195 +#: common/models.py:1419 common/models.py:2247 common/models.py:2354 +#: company/models.py:192 company/models.py:776 machine/models.py:40 +#: part/models.py:1325 plugin/models.py:69 stock/api.py:642 users/models.py:195 #: users/models.py:554 users/serializers.py:314 msgid "Active" msgstr "" -#: common/models.py:1415 +#: common/models.py:1419 msgid "Is this webhook active" msgstr "" -#: common/models.py:1431 users/models.py:172 +#: common/models.py:1435 users/models.py:172 msgid "Token" msgstr "" -#: common/models.py:1432 +#: common/models.py:1436 msgid "Token for access" msgstr "" -#: common/models.py:1440 +#: common/models.py:1444 msgid "Secret" msgstr "" -#: common/models.py:1441 +#: common/models.py:1445 msgid "Shared secret for HMAC" msgstr "" -#: common/models.py:1549 common/models.py:2619 +#: common/models.py:1553 common/models.py:3040 msgid "Message ID" msgstr "" -#: common/models.py:1550 common/models.py:2609 +#: common/models.py:1554 common/models.py:3030 msgid "Unique identifier for this message" msgstr "" -#: common/models.py:1558 +#: common/models.py:1562 msgid "Host" msgstr "" -#: common/models.py:1559 +#: common/models.py:1563 msgid "Host from which this message was received" msgstr "" -#: common/models.py:1567 +#: common/models.py:1571 msgid "Header" msgstr "" -#: common/models.py:1568 +#: common/models.py:1572 msgid "Header of this message" msgstr "" -#: common/models.py:1575 +#: common/models.py:1579 msgid "Body" msgstr "" -#: common/models.py:1576 +#: common/models.py:1580 msgid "Body of this message" msgstr "" -#: common/models.py:1586 +#: common/models.py:1590 msgid "Endpoint on which this message was received" msgstr "" -#: common/models.py:1591 +#: common/models.py:1595 msgid "Worked on" msgstr "" -#: common/models.py:1592 +#: common/models.py:1596 msgid "Was the work on this message finished?" msgstr "" -#: common/models.py:1718 +#: common/models.py:1722 msgid "Id" msgstr "" -#: common/models.py:1720 +#: common/models.py:1724 msgid "Title" msgstr "" -#: common/models.py:1722 common/models.py:1983 company/models.py:185 -#: company/models.py:467 company/models.py:534 company/models.py:839 -#: order/models.py:457 order/models.py:1786 order/models.py:2343 -#: part/models.py:1113 +#: common/models.py:1726 common/models.py:1989 company/models.py:186 +#: company/models.py:468 company/models.py:536 company/models.py:793 +#: order/models.py:458 order/models.py:1787 order/models.py:2344 +#: part/models.py:1201 #: report/templates/report/inventree_build_order_report.html:164 msgid "Link" msgstr "" -#: common/models.py:1724 +#: common/models.py:1728 msgid "Published" msgstr "" -#: common/models.py:1726 +#: common/models.py:1730 msgid "Author" msgstr "" -#: common/models.py:1728 +#: common/models.py:1732 msgid "Summary" msgstr "" -#: common/models.py:1731 common/models.py:2586 +#: common/models.py:1735 common/models.py:3007 msgid "Read" msgstr "" -#: common/models.py:1731 +#: common/models.py:1735 msgid "Was this news item read?" msgstr "" -#: common/models.py:1748 +#: common/models.py:1752 msgid "Image file" msgstr "" -#: common/models.py:1760 +#: common/models.py:1764 msgid "Target model type for this image" msgstr "" -#: common/models.py:1764 +#: common/models.py:1768 msgid "Target model ID for this image" msgstr "" -#: common/models.py:1786 +#: common/models.py:1790 msgid "Custom Unit" msgstr "" -#: common/models.py:1804 +#: common/models.py:1808 msgid "Unit symbol must be unique" msgstr "" -#: common/models.py:1819 +#: common/models.py:1823 msgid "Unit name must be a valid identifier" msgstr "" -#: common/models.py:1838 +#: common/models.py:1842 msgid "Unit name" msgstr "" -#: common/models.py:1845 +#: common/models.py:1849 msgid "Symbol" msgstr "" -#: common/models.py:1846 +#: common/models.py:1850 msgid "Optional unit symbol" msgstr "" -#: common/models.py:1852 +#: common/models.py:1856 msgid "Definition" msgstr "" -#: common/models.py:1853 +#: common/models.py:1857 msgid "Unit definition" msgstr "" -#: common/models.py:1911 common/models.py:1974 stock/models.py:2967 +#: common/models.py:1917 common/models.py:1980 stock/models.py:2984 #: stock/serializers.py:247 msgid "Attachment" msgstr "" -#: common/models.py:1928 +#: common/models.py:1934 msgid "Missing file" msgstr "" -#: common/models.py:1929 +#: common/models.py:1935 msgid "Missing external link" msgstr "" -#: common/models.py:1966 +#: common/models.py:1972 common/models.py:2488 msgid "Model type" msgstr "" -#: common/models.py:1967 +#: common/models.py:1973 msgid "Target model type for image" msgstr "" -#: common/models.py:1975 +#: common/models.py:1981 msgid "Select file to attach" msgstr "" -#: common/models.py:1991 +#: common/models.py:1997 msgid "Comment" msgstr "" -#: common/models.py:1992 +#: common/models.py:1998 msgid "Attachment comment" msgstr "" -#: common/models.py:2008 +#: common/models.py:2014 msgid "Upload date" msgstr "" -#: common/models.py:2009 +#: common/models.py:2015 msgid "Date the file was uploaded" msgstr "" -#: common/models.py:2013 +#: common/models.py:2019 msgid "File size" msgstr "" -#: common/models.py:2013 +#: common/models.py:2019 msgid "File size in bytes" msgstr "" -#: common/models.py:2051 common/serializers.py:684 +#: common/models.py:2057 common/serializers.py:688 msgid "Invalid model type specified for attachment" msgstr "" -#: common/models.py:2072 +#: common/models.py:2078 msgid "Custom State" msgstr "" -#: common/models.py:2073 +#: common/models.py:2079 msgid "Custom States" msgstr "" -#: common/models.py:2078 +#: common/models.py:2084 msgid "Reference Status Set" msgstr "" -#: common/models.py:2079 +#: common/models.py:2085 msgid "Status set that is extended with this custom state" msgstr "" -#: common/models.py:2083 generic/states/serializers.py:18 +#: common/models.py:2089 generic/states/serializers.py:18 msgid "Logical Key" msgstr "" -#: common/models.py:2085 +#: common/models.py:2091 msgid "State logical key that is equal to this custom state in business logic" msgstr "" -#: common/models.py:2090 common/models.py:2329 company/models.py:622 -#: machine/serializers.py:27 -#: report/templates/report/inventree_test_report.html:104 stock/models.py:2959 +#: common/models.py:2096 common/models.py:2335 machine/serializers.py:27 +#: report/templates/report/inventree_test_report.html:104 stock/models.py:2976 msgid "Value" msgstr "" -#: common/models.py:2091 +#: common/models.py:2097 msgid "Numerical value that will be saved in the models database" msgstr "" -#: common/models.py:2097 +#: common/models.py:2103 msgid "Name of the state" msgstr "" -#: common/models.py:2106 common/models.py:2335 generic/states/serializers.py:22 +#: common/models.py:2112 common/models.py:2341 generic/states/serializers.py:22 msgid "Label" msgstr "" -#: common/models.py:2107 +#: common/models.py:2113 msgid "Label that will be displayed in the frontend" msgstr "" -#: common/models.py:2114 generic/states/serializers.py:24 +#: common/models.py:2120 generic/states/serializers.py:24 msgid "Color" msgstr "" -#: common/models.py:2115 +#: common/models.py:2121 msgid "Color that will be displayed in the frontend" msgstr "" -#: common/models.py:2123 +#: common/models.py:2129 msgid "Model" msgstr "" -#: common/models.py:2124 +#: common/models.py:2130 msgid "Model this state is associated with" msgstr "" -#: common/models.py:2139 +#: common/models.py:2145 msgid "Model must be selected" msgstr "" -#: common/models.py:2142 +#: common/models.py:2148 msgid "Key must be selected" msgstr "" -#: common/models.py:2145 +#: common/models.py:2151 msgid "Logical key must be selected" msgstr "" -#: common/models.py:2149 +#: common/models.py:2155 msgid "Key must be different from logical key" msgstr "" -#: common/models.py:2156 +#: common/models.py:2162 msgid "Valid reference status class must be provided" msgstr "" -#: common/models.py:2162 +#: common/models.py:2168 msgid "Key must be different from the logical keys of the reference status" msgstr "" -#: common/models.py:2169 +#: common/models.py:2175 msgid "Logical key must be in the logical keys of the reference status" msgstr "" -#: common/models.py:2176 +#: common/models.py:2182 msgid "Name must be different from the names of the reference status" msgstr "" -#: common/models.py:2216 common/models.py:2323 part/models.py:3889 +#: common/models.py:2222 common/models.py:2329 common/models.py:2533 msgid "Selection List" msgstr "" -#: common/models.py:2217 +#: common/models.py:2223 msgid "Selection Lists" msgstr "" -#: common/models.py:2222 +#: common/models.py:2228 msgid "Name of the selection list" msgstr "" -#: common/models.py:2229 +#: common/models.py:2235 msgid "Description of the selection list" msgstr "" -#: common/models.py:2235 part/models.py:1242 +#: common/models.py:2241 part/models.py:1330 msgid "Locked" msgstr "" -#: common/models.py:2236 +#: common/models.py:2242 msgid "Is this selection list locked?" msgstr "" -#: common/models.py:2242 +#: common/models.py:2248 msgid "Can this selection list be used?" msgstr "" -#: common/models.py:2250 +#: common/models.py:2256 msgid "Source Plugin" msgstr "" -#: common/models.py:2251 +#: common/models.py:2257 msgid "Plugin which provides the selection list" msgstr "" -#: common/models.py:2256 +#: common/models.py:2262 msgid "Source String" msgstr "" -#: common/models.py:2257 +#: common/models.py:2263 msgid "Optional string identifying the source used for this list" msgstr "" -#: common/models.py:2266 +#: common/models.py:2272 msgid "Default Entry" msgstr "" -#: common/models.py:2267 +#: common/models.py:2273 msgid "Default entry for this selection list" msgstr "" -#: common/models.py:2272 common/models.py:2724 +#: common/models.py:2278 common/models.py:3145 msgid "Created" msgstr "" -#: common/models.py:2273 +#: common/models.py:2279 msgid "Date and time that the selection list was created" msgstr "" -#: common/models.py:2278 +#: common/models.py:2284 msgid "Last Updated" msgstr "" -#: common/models.py:2279 +#: common/models.py:2285 msgid "Date and time that the selection list was last updated" msgstr "" -#: common/models.py:2313 +#: common/models.py:2319 msgid "Selection List Entry" msgstr "" -#: common/models.py:2314 +#: common/models.py:2320 msgid "Selection List Entries" msgstr "" -#: common/models.py:2324 +#: common/models.py:2330 msgid "Selection list to which this entry belongs" msgstr "" -#: common/models.py:2330 +#: common/models.py:2336 msgid "Value of the selection list entry" msgstr "" -#: common/models.py:2336 +#: common/models.py:2342 msgid "Label for the selection list entry" msgstr "" -#: common/models.py:2342 +#: common/models.py:2348 msgid "Description of the selection list entry" msgstr "" -#: common/models.py:2349 +#: common/models.py:2355 msgid "Is this selection list entry active?" msgstr "" -#: common/models.py:2367 -msgid "Barcode Scan" +#: common/models.py:2387 +msgid "Parameter Template" msgstr "" -#: common/models.py:2371 importer/models.py:546 part/models.py:4060 -msgid "Data" +#: common/models.py:2388 +msgid "Parameter Templates" msgstr "" -#: common/models.py:2372 -msgid "Barcode data" +#: common/models.py:2425 +msgid "Checkbox parameters cannot have units" msgstr "" -#: common/models.py:2383 -msgid "User who scanned the barcode" +#: common/models.py:2430 +msgid "Checkbox parameters cannot have choices" msgstr "" -#: common/models.py:2388 importer/models.py:69 -msgid "Timestamp" +#: common/models.py:2450 part/models.py:3707 +msgid "Choices must be unique" msgstr "" -#: common/models.py:2389 -msgid "Date and time of the barcode scan" +#: common/models.py:2467 +msgid "Parameter template name must be unique" msgstr "" -#: common/models.py:2395 -msgid "URL endpoint which processed the barcode" +#: common/models.py:2489 +msgid "Target model type for this parameter template" msgstr "" -#: common/models.py:2402 order/models.py:1832 plugin/serializers.py:93 -msgid "Context" +#: common/models.py:2495 +msgid "Parameter Name" msgstr "" -#: common/models.py:2403 -msgid "Context data for the barcode scan" +#: common/models.py:2501 part/models.py:1283 +msgid "Units" msgstr "" -#: common/models.py:2410 -msgid "Response" +#: common/models.py:2502 +msgid "Physical units for this parameter" msgstr "" -#: common/models.py:2411 -msgid "Response data from the barcode scan" +#: common/models.py:2510 +msgid "Parameter description" msgstr "" -#: common/models.py:2417 report/templates/report/inventree_test_report.html:103 -#: stock/models.py:2953 -msgid "Result" +#: common/models.py:2516 +msgid "Checkbox" msgstr "" -#: common/models.py:2418 -msgid "Was the barcode scan successful?" +#: common/models.py:2517 +msgid "Is this parameter a checkbox?" msgstr "" -#: common/models.py:2500 -msgid "An error occurred" +#: common/models.py:2522 part/models.py:3794 +msgid "Choices" msgstr "" -#: common/models.py:2521 -msgid "INVE-E8: Email log deletion is protected. Set INVENTREE_PROTECT_EMAIL_LOG to False to allow deletion." +#: common/models.py:2523 +msgid "Valid choices for this parameter (comma-separated)" msgstr "" -#: common/models.py:2568 -msgid "Email Message" +#: common/models.py:2534 +msgid "Selection list for this parameter" msgstr "" -#: common/models.py:2569 -msgid "Email Messages" +#: common/models.py:2539 part/models.py:3769 report/models.py:287 +msgid "Enabled" msgstr "" -#: common/models.py:2576 -msgid "Announced" +#: common/models.py:2540 +msgid "Is this parameter template enabled?" msgstr "" -#: common/models.py:2578 -msgid "Sent" -msgstr "" - -#: common/models.py:2579 -msgid "Failed" +#: common/models.py:2581 +msgid "Parameter" msgstr "" #: common/models.py:2582 -msgid "Delivered" -msgstr "" - -#: common/models.py:2590 -msgid "Confirmed" -msgstr "" - -#: common/models.py:2596 -msgid "Inbound" -msgstr "" - -#: common/models.py:2597 -msgid "Outbound" -msgstr "" - -#: common/models.py:2602 -msgid "No Reply" -msgstr "" - -#: common/models.py:2603 -msgid "Track Delivery" -msgstr "" - -#: common/models.py:2604 -msgid "Track Read" -msgstr "" - -#: common/models.py:2605 -msgid "Track Click" -msgstr "" - -#: common/models.py:2608 common/models.py:2711 -msgid "Global ID" -msgstr "" - -#: common/models.py:2621 -msgid "Identifier for this message (might be supplied by external system)" +msgid "Parameters" msgstr "" #: common/models.py:2628 +msgid "Invalid choice for parameter value" +msgstr "" + +#: common/models.py:2698 common/serializers.py:783 +msgid "Invalid model type specified for parameter" +msgstr "" + +#: common/models.py:2734 +msgid "Model ID" +msgstr "" + +#: common/models.py:2735 +msgid "ID of the target model for this parameter" +msgstr "" + +#: common/models.py:2744 common/setting/system.py:450 report/models.py:373 +#: report/models.py:669 report/serializers.py:94 report/serializers.py:135 +#: stock/serializers.py:234 +msgid "Template" +msgstr "" + +#: common/models.py:2745 +msgid "Parameter template" +msgstr "" + +#: common/models.py:2750 common/models.py:2792 importer/models.py:546 +msgid "Data" +msgstr "" + +#: common/models.py:2751 +msgid "Parameter Value" +msgstr "" + +#: common/models.py:2760 company/models.py:810 order/serializers.py:894 +#: order/serializers.py:2064 part/models.py:4075 part/models.py:4444 +#: report/templates/report/inventree_bill_of_materials_report.html:140 +#: report/templates/report/inventree_purchase_order_report.html:39 +#: report/templates/report/inventree_return_order_report.html:27 +#: report/templates/report/inventree_sales_order_report.html:32 +#: report/templates/report/inventree_stock_location_report.html:105 +#: stock/serializers.py:813 +msgid "Note" +msgstr "" + +#: common/models.py:2761 stock/serializers.py:718 +msgid "Optional note field" +msgstr "" + +#: common/models.py:2788 +msgid "Barcode Scan" +msgstr "" + +#: common/models.py:2793 +msgid "Barcode data" +msgstr "" + +#: common/models.py:2804 +msgid "User who scanned the barcode" +msgstr "" + +#: common/models.py:2809 importer/models.py:69 +msgid "Timestamp" +msgstr "" + +#: common/models.py:2810 +msgid "Date and time of the barcode scan" +msgstr "" + +#: common/models.py:2816 +msgid "URL endpoint which processed the barcode" +msgstr "" + +#: common/models.py:2823 order/models.py:1833 plugin/serializers.py:93 +msgid "Context" +msgstr "" + +#: common/models.py:2824 +msgid "Context data for the barcode scan" +msgstr "" + +#: common/models.py:2831 +msgid "Response" +msgstr "" + +#: common/models.py:2832 +msgid "Response data from the barcode scan" +msgstr "" + +#: common/models.py:2838 report/templates/report/inventree_test_report.html:103 +#: stock/models.py:2970 +msgid "Result" +msgstr "" + +#: common/models.py:2839 +msgid "Was the barcode scan successful?" +msgstr "" + +#: common/models.py:2921 +msgid "An error occurred" +msgstr "" + +#: common/models.py:2942 +msgid "INVE-E8: Email log deletion is protected. Set INVENTREE_PROTECT_EMAIL_LOG to False to allow deletion." +msgstr "" + +#: common/models.py:2989 +msgid "Email Message" +msgstr "" + +#: common/models.py:2990 +msgid "Email Messages" +msgstr "" + +#: common/models.py:2997 +msgid "Announced" +msgstr "" + +#: common/models.py:2999 +msgid "Sent" +msgstr "" + +#: common/models.py:3000 +msgid "Failed" +msgstr "" + +#: common/models.py:3003 +msgid "Delivered" +msgstr "" + +#: common/models.py:3011 +msgid "Confirmed" +msgstr "" + +#: common/models.py:3017 +msgid "Inbound" +msgstr "" + +#: common/models.py:3018 +msgid "Outbound" +msgstr "" + +#: common/models.py:3023 +msgid "No Reply" +msgstr "" + +#: common/models.py:3024 +msgid "Track Delivery" +msgstr "" + +#: common/models.py:3025 +msgid "Track Read" +msgstr "" + +#: common/models.py:3026 +msgid "Track Click" +msgstr "" + +#: common/models.py:3029 common/models.py:3132 +msgid "Global ID" +msgstr "" + +#: common/models.py:3042 +msgid "Identifier for this message (might be supplied by external system)" +msgstr "" + +#: common/models.py:3049 msgid "Thread ID" msgstr "" -#: common/models.py:2630 +#: common/models.py:3051 msgid "Identifier for this message thread (might be supplied by external system)" msgstr "" -#: common/models.py:2639 +#: common/models.py:3060 msgid "Thread" msgstr "" -#: common/models.py:2640 +#: common/models.py:3061 msgid "Linked thread for this message" msgstr "" -#: common/models.py:2656 -msgid "Prioriy" +#: common/models.py:3077 +msgid "Priority" msgstr "" -#: common/models.py:2698 +#: common/models.py:3119 msgid "Email Thread" msgstr "" -#: common/models.py:2699 +#: common/models.py:3120 msgid "Email Threads" msgstr "" -#: common/models.py:2705 generic/states/serializers.py:16 +#: common/models.py:3126 generic/states/serializers.py:16 #: machine/serializers.py:24 plugin/models.py:46 users/models.py:113 msgid "Key" msgstr "" -#: common/models.py:2708 +#: common/models.py:3129 msgid "Unique key for this thread (used to identify the thread)" msgstr "" -#: common/models.py:2712 +#: common/models.py:3133 msgid "Unique identifier for this thread" msgstr "" -#: common/models.py:2719 +#: common/models.py:3140 msgid "Started Internal" msgstr "" -#: common/models.py:2720 +#: common/models.py:3141 msgid "Was this thread started internally?" msgstr "" -#: common/models.py:2725 +#: common/models.py:3146 msgid "Date and time that the thread was created" msgstr "" -#: common/models.py:2730 +#: common/models.py:3151 msgid "Date and time that the thread was last updated" msgstr "" @@ -2199,7 +2339,7 @@ msgstr "" msgid "A order that is assigned to you was canceled" msgstr "" -#: common/notifications.py:73 common/notifications.py:80 order/api.py:594 +#: common/notifications.py:73 common/notifications.py:80 order/api.py:600 msgid "Items Received" msgstr "" @@ -2211,88 +2351,93 @@ msgstr "" msgid "Items have been received against a return order" msgstr "" -#: common/serializers.py:145 +#: common/serializers.py:149 msgid "Indicates if the setting is overridden by an environment variable" msgstr "" -#: common/serializers.py:147 +#: common/serializers.py:151 msgid "Override" msgstr "" -#: common/serializers.py:498 +#: common/serializers.py:502 msgid "Is Running" msgstr "" -#: common/serializers.py:504 +#: common/serializers.py:508 msgid "Pending Tasks" msgstr "" -#: common/serializers.py:510 +#: common/serializers.py:514 msgid "Scheduled Tasks" msgstr "" -#: common/serializers.py:516 +#: common/serializers.py:520 msgid "Failed Tasks" msgstr "" -#: common/serializers.py:531 +#: common/serializers.py:535 msgid "Task ID" msgstr "" -#: common/serializers.py:531 +#: common/serializers.py:535 msgid "Unique task ID" msgstr "" -#: common/serializers.py:533 +#: common/serializers.py:537 msgid "Lock" msgstr "" -#: common/serializers.py:533 +#: common/serializers.py:537 msgid "Lock time" msgstr "" -#: common/serializers.py:535 +#: common/serializers.py:539 msgid "Task name" msgstr "" -#: common/serializers.py:537 +#: common/serializers.py:541 msgid "Function" msgstr "" -#: common/serializers.py:537 +#: common/serializers.py:541 msgid "Function name" msgstr "" -#: common/serializers.py:539 +#: common/serializers.py:543 msgid "Arguments" msgstr "" -#: common/serializers.py:539 +#: common/serializers.py:543 msgid "Task arguments" msgstr "" -#: common/serializers.py:542 +#: common/serializers.py:546 msgid "Keyword Arguments" msgstr "" -#: common/serializers.py:542 +#: common/serializers.py:546 msgid "Task keyword arguments" msgstr "" -#: common/serializers.py:652 +#: common/serializers.py:656 msgid "Filename" msgstr "" -#: common/serializers.py:659 importer/models.py:89 report/api.py:41 +#: common/serializers.py:663 common/serializers.py:730 +#: common/serializers.py:805 importer/models.py:89 report/api.py:41 #: report/models.py:293 report/serializers.py:52 msgid "Model Type" msgstr "" -#: common/serializers.py:687 +#: common/serializers.py:691 msgid "User does not have permission to create or edit attachments for this model" msgstr "" -#: common/serializers.py:731 common/serializers.py:834 +#: common/serializers.py:786 +msgid "User does not have permission to create or edit parameters for this model" +msgstr "" + +#: common/serializers.py:850 common/serializers.py:953 msgid "Selection list is locked" msgstr "" @@ -2368,7 +2513,7 @@ msgstr "" msgid "Show the `about` modal only to superusers" msgstr "" -#: common/setting/system.py:224 company/models.py:144 company/models.py:145 +#: common/setting/system.py:224 company/models.py:145 company/models.py:146 msgid "Company name" msgstr "" @@ -2411,8 +2556,8 @@ msgstr "" #: common/setting/system.py:253 common/setting/system.py:293 #: common/setting/system.py:306 common/setting/system.py:314 #: common/setting/system.py:321 common/setting/system.py:330 -#: common/setting/system.py:339 common/setting/system.py:588 -#: common/setting/system.py:616 common/setting/system.py:707 +#: common/setting/system.py:339 common/setting/system.py:580 +#: common/setting/system.py:608 common/setting/system.py:707 #: common/setting/system.py:1103 common/setting/system.py:1119 msgid "days" msgstr "" @@ -2657,12 +2802,6 @@ msgstr "" msgid "Copy category parameter templates when creating a part" msgstr "" -#: common/setting/system.py:450 part/models.py:4054 report/models.py:373 -#: report/models.py:669 report/serializers.py:94 report/serializers.py:135 -#: stock/serializers.py:234 -msgid "Template" -msgstr "" - #: common/setting/system.py:451 msgid "Parts are templates by default" msgstr "" @@ -2671,8 +2810,8 @@ msgstr "" msgid "Parts can be assembled from other components by default" msgstr "" -#: common/setting/system.py:462 part/models.py:1208 part/serializers.py:1734 -#: part/serializers.py:1741 +#: common/setting/system.py:462 part/models.py:1296 part/serializers.py:1599 +#: part/serializers.py:1606 msgid "Component" msgstr "" @@ -2680,7 +2819,7 @@ msgstr "" msgid "Parts can be used as sub-components by default" msgstr "" -#: common/setting/system.py:468 part/models.py:1226 +#: common/setting/system.py:468 part/models.py:1314 msgid "Purchaseable" msgstr "" @@ -2688,7 +2827,7 @@ msgstr "" msgid "Parts are purchaseable by default" msgstr "" -#: common/setting/system.py:474 part/models.py:1232 stock/api.py:643 +#: common/setting/system.py:474 part/models.py:1320 stock/api.py:643 msgid "Salable" msgstr "" @@ -2700,7 +2839,7 @@ msgstr "" msgid "Parts are trackable by default" msgstr "" -#: common/setting/system.py:486 part/models.py:1248 +#: common/setting/system.py:486 part/models.py:1336 msgid "Virtual" msgstr "" @@ -2749,158 +2888,158 @@ msgid "Part category default icon (empty means no icon)" msgstr "" #: common/setting/system.py:525 -msgid "Enforce Parameter Units" -msgstr "" - -#: common/setting/system.py:527 -msgid "If units are provided, parameter values must match the specified units" -msgstr "" - -#: common/setting/system.py:533 msgid "Minimum Pricing Decimal Places" msgstr "" -#: common/setting/system.py:535 +#: common/setting/system.py:527 msgid "Minimum number of decimal places to display when rendering pricing data" msgstr "" -#: common/setting/system.py:546 +#: common/setting/system.py:538 msgid "Maximum Pricing Decimal Places" msgstr "" -#: common/setting/system.py:548 +#: common/setting/system.py:540 msgid "Maximum number of decimal places to display when rendering pricing data" msgstr "" -#: common/setting/system.py:559 +#: common/setting/system.py:551 msgid "Use Supplier Pricing" msgstr "" -#: common/setting/system.py:561 +#: common/setting/system.py:553 msgid "Include supplier price breaks in overall pricing calculations" msgstr "" -#: common/setting/system.py:567 +#: common/setting/system.py:559 msgid "Purchase History Override" msgstr "" -#: common/setting/system.py:569 +#: common/setting/system.py:561 msgid "Historical purchase order pricing overrides supplier price breaks" msgstr "" -#: common/setting/system.py:575 +#: common/setting/system.py:567 msgid "Use Stock Item Pricing" msgstr "" -#: common/setting/system.py:577 +#: common/setting/system.py:569 msgid "Use pricing from manually entered stock data for pricing calculations" msgstr "" -#: common/setting/system.py:583 +#: common/setting/system.py:575 msgid "Stock Item Pricing Age" msgstr "" -#: common/setting/system.py:585 +#: common/setting/system.py:577 msgid "Exclude stock items older than this number of days from pricing calculations" msgstr "" -#: common/setting/system.py:592 +#: common/setting/system.py:584 msgid "Use Variant Pricing" msgstr "" -#: common/setting/system.py:593 +#: common/setting/system.py:585 msgid "Include variant pricing in overall pricing calculations" msgstr "" -#: common/setting/system.py:598 +#: common/setting/system.py:590 msgid "Active Variants Only" msgstr "" -#: common/setting/system.py:600 +#: common/setting/system.py:592 msgid "Only use active variant parts for calculating variant pricing" msgstr "" -#: common/setting/system.py:606 +#: common/setting/system.py:598 msgid "Auto Update Pricing" msgstr "" -#: common/setting/system.py:608 +#: common/setting/system.py:600 msgid "Automatically update part pricing when internal data changes" msgstr "" -#: common/setting/system.py:614 +#: common/setting/system.py:606 msgid "Pricing Rebuild Interval" msgstr "" -#: common/setting/system.py:615 +#: common/setting/system.py:607 msgid "Number of days before part pricing is automatically updated" msgstr "" -#: common/setting/system.py:621 +#: common/setting/system.py:613 msgid "Internal Prices" msgstr "" -#: common/setting/system.py:622 +#: common/setting/system.py:614 msgid "Enable internal prices for parts" msgstr "" -#: common/setting/system.py:627 +#: common/setting/system.py:619 msgid "Internal Price Override" msgstr "" -#: common/setting/system.py:629 +#: common/setting/system.py:621 msgid "If available, internal prices override price range calculations" msgstr "" -#: common/setting/system.py:635 +#: common/setting/system.py:627 msgid "Enable label printing" msgstr "" -#: common/setting/system.py:636 +#: common/setting/system.py:628 msgid "Enable label printing from the web interface" msgstr "" -#: common/setting/system.py:641 +#: common/setting/system.py:633 msgid "Label Image DPI" msgstr "" -#: common/setting/system.py:643 +#: common/setting/system.py:635 msgid "DPI resolution when generating image files to supply to label printing plugins" msgstr "" -#: common/setting/system.py:649 +#: common/setting/system.py:641 msgid "Enable Reports" msgstr "" -#: common/setting/system.py:650 +#: common/setting/system.py:642 msgid "Enable generation of reports" msgstr "" -#: common/setting/system.py:655 +#: common/setting/system.py:647 msgid "Debug Mode" msgstr "" -#: common/setting/system.py:656 +#: common/setting/system.py:648 msgid "Generate reports in debug mode (HTML output)" msgstr "" -#: common/setting/system.py:661 +#: common/setting/system.py:653 msgid "Log Report Errors" msgstr "" -#: common/setting/system.py:662 +#: common/setting/system.py:654 msgid "Log errors which occur when generating reports" msgstr "" -#: common/setting/system.py:667 plugin/builtin/labels/label_sheet.py:29 +#: common/setting/system.py:659 plugin/builtin/labels/label_sheet.py:29 #: report/models.py:381 msgid "Page Size" msgstr "" -#: common/setting/system.py:668 +#: common/setting/system.py:660 msgid "Default page size for PDF reports" msgstr "" +#: common/setting/system.py:665 +msgid "Enforce Parameter Units" +msgstr "" + +#: common/setting/system.py:667 +msgid "If units are provided, parameter values must match the specified units" +msgstr "" + #: common/setting/system.py:673 msgid "Globally Unique Serials" msgstr "" @@ -3456,688 +3595,677 @@ msgid "Display PDF reports in the browser, instead of downloading as a file" msgstr "" #: common/setting/user.py:45 -msgid "Search Parts" +msgid "Barcode Scanner in Form Fields" msgstr "" #: common/setting/user.py:46 -msgid "Display parts in search preview window" +msgid "Allow barcode scanner input in form fields" msgstr "" #: common/setting/user.py:51 -msgid "Search Supplier Parts" +msgid "Search Parts" msgstr "" #: common/setting/user.py:52 -msgid "Display supplier parts in search preview window" +msgid "Display parts in search preview window" msgstr "" #: common/setting/user.py:57 -msgid "Search Manufacturer Parts" +msgid "Search Supplier Parts" msgstr "" #: common/setting/user.py:58 -msgid "Display manufacturer parts in search preview window" +msgid "Display supplier parts in search preview window" msgstr "" #: common/setting/user.py:63 -msgid "Hide Inactive Parts" +msgid "Search Manufacturer Parts" msgstr "" #: common/setting/user.py:64 -msgid "Excluded inactive parts from search preview window" +msgid "Display manufacturer parts in search preview window" msgstr "" #: common/setting/user.py:69 -msgid "Search Categories" +msgid "Hide Inactive Parts" msgstr "" #: common/setting/user.py:70 -msgid "Display part categories in search preview window" +msgid "Excluded inactive parts from search preview window" msgstr "" #: common/setting/user.py:75 -msgid "Search Stock" +msgid "Search Categories" msgstr "" #: common/setting/user.py:76 -msgid "Display stock items in search preview window" +msgid "Display part categories in search preview window" msgstr "" #: common/setting/user.py:81 +msgid "Search Stock" +msgstr "" + +#: common/setting/user.py:82 +msgid "Display stock items in search preview window" +msgstr "" + +#: common/setting/user.py:87 msgid "Hide Unavailable Stock Items" msgstr "" -#: common/setting/user.py:83 +#: common/setting/user.py:89 msgid "Exclude stock items which are not available from the search preview window" msgstr "" -#: common/setting/user.py:89 +#: common/setting/user.py:95 msgid "Search Locations" msgstr "" -#: common/setting/user.py:90 +#: common/setting/user.py:96 msgid "Display stock locations in search preview window" msgstr "" -#: common/setting/user.py:95 +#: common/setting/user.py:101 msgid "Search Companies" msgstr "" -#: common/setting/user.py:96 +#: common/setting/user.py:102 msgid "Display companies in search preview window" msgstr "" -#: common/setting/user.py:101 +#: common/setting/user.py:107 msgid "Search Build Orders" msgstr "" -#: common/setting/user.py:102 +#: common/setting/user.py:108 msgid "Display build orders in search preview window" msgstr "" -#: common/setting/user.py:107 +#: common/setting/user.py:113 msgid "Search Purchase Orders" msgstr "" -#: common/setting/user.py:108 +#: common/setting/user.py:114 msgid "Display purchase orders in search preview window" msgstr "" -#: common/setting/user.py:113 +#: common/setting/user.py:119 msgid "Exclude Inactive Purchase Orders" msgstr "" -#: common/setting/user.py:114 +#: common/setting/user.py:120 msgid "Exclude inactive purchase orders from search preview window" msgstr "" -#: common/setting/user.py:119 +#: common/setting/user.py:125 msgid "Search Sales Orders" msgstr "" -#: common/setting/user.py:120 +#: common/setting/user.py:126 msgid "Display sales orders in search preview window" msgstr "" -#: common/setting/user.py:125 +#: common/setting/user.py:131 msgid "Exclude Inactive Sales Orders" msgstr "" -#: common/setting/user.py:126 +#: common/setting/user.py:132 msgid "Exclude inactive sales orders from search preview window" msgstr "" -#: common/setting/user.py:131 +#: common/setting/user.py:137 msgid "Search Sales Order Shipments" msgstr "" -#: common/setting/user.py:132 +#: common/setting/user.py:138 msgid "Display sales order shipments in search preview window" msgstr "" -#: common/setting/user.py:137 +#: common/setting/user.py:143 msgid "Search Return Orders" msgstr "" -#: common/setting/user.py:138 +#: common/setting/user.py:144 msgid "Display return orders in search preview window" msgstr "" -#: common/setting/user.py:143 +#: common/setting/user.py:149 msgid "Exclude Inactive Return Orders" msgstr "" -#: common/setting/user.py:144 +#: common/setting/user.py:150 msgid "Exclude inactive return orders from search preview window" msgstr "" -#: common/setting/user.py:149 +#: common/setting/user.py:155 msgid "Search Preview Results" msgstr "" -#: common/setting/user.py:151 +#: common/setting/user.py:157 msgid "Number of results to show in each section of the search preview window" msgstr "" -#: common/setting/user.py:157 +#: common/setting/user.py:163 msgid "Regex Search" msgstr "" -#: common/setting/user.py:158 +#: common/setting/user.py:164 msgid "Enable regular expressions in search queries" msgstr "" -#: common/setting/user.py:163 +#: common/setting/user.py:169 msgid "Whole Word Search" msgstr "" -#: common/setting/user.py:164 +#: common/setting/user.py:170 msgid "Search queries return results for whole word matches" msgstr "" -#: common/setting/user.py:169 +#: common/setting/user.py:175 msgid "Search Notes" msgstr "" -#: common/setting/user.py:171 +#: common/setting/user.py:177 msgid "Search queries return results for matches from the item's notes" msgstr "" -#: common/setting/user.py:177 +#: common/setting/user.py:183 msgid "Escape Key Closes Forms" msgstr "" -#: common/setting/user.py:178 +#: common/setting/user.py:184 msgid "Use the escape key to close modal forms" msgstr "" -#: common/setting/user.py:183 +#: common/setting/user.py:189 msgid "Fixed Navbar" msgstr "" -#: common/setting/user.py:184 +#: common/setting/user.py:190 msgid "The navbar position is fixed to the top of the screen" msgstr "" -#: common/setting/user.py:189 +#: common/setting/user.py:195 msgid "Fixed Table Headers" msgstr "" -#: common/setting/user.py:190 +#: common/setting/user.py:196 msgid "Table headers are fixed to the top of the table" msgstr "" -#: common/setting/user.py:195 +#: common/setting/user.py:201 msgid "Show Spotlight" msgstr "" -#: common/setting/user.py:196 +#: common/setting/user.py:202 msgid "Enable spotlight navigation functionality" msgstr "" -#: common/setting/user.py:201 +#: common/setting/user.py:207 msgid "Navigation Icons" msgstr "" -#: common/setting/user.py:202 +#: common/setting/user.py:208 msgid "Display icons in the navigation bar" msgstr "" -#: common/setting/user.py:207 +#: common/setting/user.py:213 msgid "Date Format" msgstr "" -#: common/setting/user.py:208 +#: common/setting/user.py:214 msgid "Preferred format for displaying dates" msgstr "" -#: common/setting/user.py:221 +#: common/setting/user.py:227 msgid "Show Stock History" msgstr "" -#: common/setting/user.py:222 +#: common/setting/user.py:228 msgid "Display stock history information in the part detail page" msgstr "" -#: common/setting/user.py:227 +#: common/setting/user.py:233 msgid "Show Last Breadcrumb" msgstr "" -#: common/setting/user.py:228 +#: common/setting/user.py:234 msgid "Show the current page in breadcrumbs" msgstr "" -#: common/setting/user.py:233 +#: common/setting/user.py:239 msgid "Show full stock location in tables" msgstr "" -#: common/setting/user.py:235 +#: common/setting/user.py:241 msgid "Disabled: The full location path is displayed as a hover tooltip. Enabled: The full location path is displayed as plain text." msgstr "" -#: common/setting/user.py:241 +#: common/setting/user.py:247 msgid "Show full part categories in tables" msgstr "" -#: common/setting/user.py:243 +#: common/setting/user.py:249 msgid "Disabled: The full category path is displayed as a hover tooltip. Enabled: The full category path is displayed as plain text." msgstr "" -#: common/setting/user.py:249 +#: common/setting/user.py:255 msgid "Receive error reports" msgstr "" -#: common/setting/user.py:250 +#: common/setting/user.py:256 msgid "Receive notifications for system errors" msgstr "" -#: common/setting/user.py:255 +#: common/setting/user.py:261 msgid "Last used printing machines" msgstr "" -#: common/setting/user.py:256 +#: common/setting/user.py:262 msgid "Save the last used printing machines for a user" msgstr "" -#: common/validators.py:34 +#: common/validators.py:38 +msgid "All models" +msgstr "" + +#: common/validators.py:63 msgid "No attachment model type provided" msgstr "" -#: common/validators.py:40 +#: common/validators.py:69 msgid "Invalid attachment model type" msgstr "" -#: common/validators.py:81 +#: common/validators.py:110 msgid "Minimum places cannot be greater than maximum places" msgstr "" -#: common/validators.py:93 +#: common/validators.py:122 msgid "Maximum places cannot be less than minimum places" msgstr "" -#: common/validators.py:104 +#: common/validators.py:133 msgid "An empty domain is not allowed." msgstr "" -#: common/validators.py:106 +#: common/validators.py:135 #, python-brace-format msgid "Invalid domain name: {domain}" msgstr "" -#: common/validators.py:122 +#: common/validators.py:151 msgid "Value must be uppercase" msgstr "" -#: common/validators.py:128 +#: common/validators.py:157 msgid "Value must be a valid variable identifier" msgstr "" -#: company/api.py:147 +#: company/api.py:141 msgid "Part is Active" msgstr "" -#: company/api.py:151 +#: company/api.py:145 msgid "Manufacturer is Active" msgstr "" -#: company/api.py:286 +#: company/api.py:246 msgid "Supplier Part is Active" msgstr "" -#: company/api.py:290 +#: company/api.py:250 msgid "Internal Part is Active" msgstr "" -#: company/api.py:295 +#: company/api.py:255 msgid "Supplier is Active" msgstr "" -#: company/api.py:307 company/models.py:520 company/serializers.py:457 -#: part/serializers.py:566 +#: company/api.py:267 company/models.py:522 company/serializers.py:502 +#: part/serializers.py:477 msgid "Manufacturer" msgstr "" -#: company/api.py:314 company/models.py:121 company/models.py:392 +#: company/api.py:274 company/models.py:122 company/models.py:393 #: stock/api.py:900 msgid "Company" msgstr "" -#: company/api.py:324 +#: company/api.py:284 msgid "Has Stock" msgstr "" -#: company/models.py:122 +#: company/models.py:123 msgid "Companies" msgstr "" -#: company/models.py:150 +#: company/models.py:151 msgid "Company description" msgstr "" -#: company/models.py:151 +#: company/models.py:152 msgid "Description of the company" msgstr "" -#: company/models.py:157 +#: company/models.py:158 msgid "Website" msgstr "" -#: company/models.py:158 +#: company/models.py:159 msgid "Company website URL" msgstr "" -#: company/models.py:164 +#: company/models.py:165 msgid "Phone number" msgstr "" -#: company/models.py:166 +#: company/models.py:167 msgid "Contact phone number" msgstr "" -#: company/models.py:173 +#: company/models.py:174 msgid "Contact email address" msgstr "" -#: company/models.py:178 company/models.py:296 order/models.py:513 +#: company/models.py:179 company/models.py:297 order/models.py:514 #: users/models.py:561 msgid "Contact" msgstr "" -#: company/models.py:180 +#: company/models.py:181 msgid "Point of contact" msgstr "" -#: company/models.py:186 +#: company/models.py:187 msgid "Link to external company information" msgstr "" -#: company/models.py:191 +#: company/models.py:192 msgid "Is this company active?" msgstr "" -#: company/models.py:196 +#: company/models.py:197 msgid "Is customer" msgstr "" -#: company/models.py:197 +#: company/models.py:198 msgid "Do you sell items to this company?" msgstr "" -#: company/models.py:202 +#: company/models.py:203 msgid "Is supplier" msgstr "" -#: company/models.py:203 +#: company/models.py:204 msgid "Do you purchase items from this company?" msgstr "" -#: company/models.py:208 +#: company/models.py:209 msgid "Is manufacturer" msgstr "" -#: company/models.py:209 +#: company/models.py:210 msgid "Does this company manufacture parts?" msgstr "" -#: company/models.py:217 +#: company/models.py:218 msgid "Default currency used for this company" msgstr "" -#: company/models.py:224 +#: company/models.py:225 msgid "Tax ID" msgstr "" -#: company/models.py:225 +#: company/models.py:226 msgid "Company Tax ID" msgstr "" -#: company/models.py:335 order/models.py:523 order/models.py:2288 +#: company/models.py:336 order/models.py:524 order/models.py:2289 msgid "Address" msgstr "" -#: company/models.py:336 +#: company/models.py:337 msgid "Addresses" msgstr "" -#: company/models.py:393 +#: company/models.py:394 msgid "Select company" msgstr "" -#: company/models.py:398 +#: company/models.py:399 msgid "Address title" msgstr "" -#: company/models.py:399 +#: company/models.py:400 msgid "Title describing the address entry" msgstr "" -#: company/models.py:405 +#: company/models.py:406 msgid "Primary address" msgstr "" -#: company/models.py:406 +#: company/models.py:407 msgid "Set as primary address" msgstr "" -#: company/models.py:411 +#: company/models.py:412 msgid "Line 1" msgstr "" -#: company/models.py:412 +#: company/models.py:413 msgid "Address line 1" msgstr "" -#: company/models.py:418 +#: company/models.py:419 msgid "Line 2" msgstr "" -#: company/models.py:419 +#: company/models.py:420 msgid "Address line 2" msgstr "" -#: company/models.py:425 company/models.py:426 +#: company/models.py:426 company/models.py:427 msgid "Postal code" msgstr "" -#: company/models.py:432 +#: company/models.py:433 msgid "City/Region" msgstr "" -#: company/models.py:433 +#: company/models.py:434 msgid "Postal code city/region" msgstr "" -#: company/models.py:439 +#: company/models.py:440 msgid "State/Province" msgstr "" -#: company/models.py:440 +#: company/models.py:441 msgid "State or province" msgstr "" -#: company/models.py:446 +#: company/models.py:447 msgid "Country" msgstr "" -#: company/models.py:447 +#: company/models.py:448 msgid "Address country" msgstr "" -#: company/models.py:453 +#: company/models.py:454 msgid "Courier shipping notes" msgstr "" -#: company/models.py:454 +#: company/models.py:455 msgid "Notes for shipping courier" msgstr "" -#: company/models.py:460 +#: company/models.py:461 msgid "Internal shipping notes" msgstr "" -#: company/models.py:461 +#: company/models.py:462 msgid "Shipping notes for internal use" msgstr "" -#: company/models.py:468 +#: company/models.py:469 msgid "Link to address information (external)" msgstr "" -#: company/models.py:492 company/models.py:609 company/models.py:832 -#: company/serializers.py:471 stock/api.py:561 +#: company/models.py:494 company/models.py:786 company/serializers.py:516 +#: stock/api.py:561 msgid "Manufacturer Part" msgstr "" -#: company/models.py:509 company/models.py:800 stock/models.py:1025 +#: company/models.py:511 company/models.py:754 stock/models.py:1025 #: stock/serializers.py:407 msgid "Base Part" msgstr "" -#: company/models.py:511 company/models.py:802 +#: company/models.py:513 company/models.py:756 msgid "Select part" msgstr "" -#: company/models.py:521 +#: company/models.py:523 msgid "Select manufacturer" msgstr "" -#: company/models.py:527 company/serializers.py:479 order/serializers.py:734 -#: part/serializers.py:576 +#: company/models.py:529 company/serializers.py:524 order/serializers.py:745 +#: part/serializers.py:487 msgid "MPN" msgstr "" -#: company/models.py:528 stock/serializers.py:572 +#: company/models.py:530 stock/serializers.py:572 msgid "Manufacturer Part Number" msgstr "" -#: company/models.py:535 +#: company/models.py:537 msgid "URL for external manufacturer part link" msgstr "" -#: company/models.py:544 +#: company/models.py:546 msgid "Manufacturer part description" msgstr "" -#: company/models.py:597 -msgid "Manufacturer Part Parameter" -msgstr "" - -#: company/models.py:616 -msgid "Parameter name" -msgstr "" - -#: company/models.py:623 -msgid "Parameter value" -msgstr "" - -#: company/models.py:630 part/models.py:1195 part/models.py:3857 -msgid "Units" -msgstr "" - -#: company/models.py:631 -msgid "Parameter units" -msgstr "" - -#: company/models.py:740 +#: company/models.py:694 msgid "Pack units must be compatible with the base part units" msgstr "" -#: company/models.py:747 +#: company/models.py:701 msgid "Pack units must be greater than zero" msgstr "" -#: company/models.py:761 +#: company/models.py:715 msgid "Linked manufacturer part must reference the same base part" msgstr "" -#: company/models.py:810 company/serializers.py:449 company/serializers.py:467 -#: order/models.py:639 part/serializers.py:550 +#: company/models.py:764 company/serializers.py:494 company/serializers.py:512 +#: order/models.py:640 part/serializers.py:461 #: plugin/builtin/suppliers/digikey.py:26 plugin/builtin/suppliers/lcsc.py:27 #: plugin/builtin/suppliers/mouser.py:25 plugin/builtin/suppliers/tme.py:27 #: stock/api.py:567 templates/email/overdue_purchase_order.html:16 msgid "Supplier" msgstr "" -#: company/models.py:811 +#: company/models.py:765 msgid "Select supplier" msgstr "" -#: company/models.py:817 part/serializers.py:561 +#: company/models.py:771 part/serializers.py:472 msgid "Supplier stock keeping unit" msgstr "" -#: company/models.py:823 +#: company/models.py:777 msgid "Is this supplier part active?" msgstr "" -#: company/models.py:833 +#: company/models.py:787 msgid "Select manufacturer part" msgstr "" -#: company/models.py:840 +#: company/models.py:794 msgid "URL for external supplier part link" msgstr "" -#: company/models.py:849 +#: company/models.py:803 msgid "Supplier part description" msgstr "" -#: company/models.py:856 order/serializers.py:883 order/serializers.py:2047 -#: part/models.py:4070 part/models.py:4450 part/models.py:4819 -#: report/templates/report/inventree_bill_of_materials_report.html:140 -#: report/templates/report/inventree_purchase_order_report.html:39 -#: report/templates/report/inventree_return_order_report.html:27 -#: report/templates/report/inventree_sales_order_report.html:32 -#: report/templates/report/inventree_stock_location_report.html:105 -#: stock/serializers.py:813 -msgid "Note" -msgstr "" - -#: company/models.py:865 part/models.py:2250 +#: company/models.py:819 part/models.py:2338 msgid "base cost" msgstr "" -#: company/models.py:866 part/models.py:2251 +#: company/models.py:820 part/models.py:2339 msgid "Minimum charge (e.g. stocking fee)" msgstr "" -#: company/models.py:873 order/serializers.py:875 stock/models.py:1056 +#: company/models.py:827 order/serializers.py:886 stock/models.py:1056 #: stock/serializers.py:1606 msgid "Packaging" msgstr "" -#: company/models.py:874 +#: company/models.py:828 msgid "Part packaging" msgstr "" -#: company/models.py:879 +#: company/models.py:833 msgid "Pack Quantity" msgstr "" -#: company/models.py:881 +#: company/models.py:835 msgid "Total quantity supplied in a single pack. Leave empty for single items." msgstr "" -#: company/models.py:900 part/models.py:2257 +#: company/models.py:854 part/models.py:2345 msgid "multiple" msgstr "" -#: company/models.py:901 +#: company/models.py:855 msgid "Order multiple" msgstr "" -#: company/models.py:913 +#: company/models.py:867 msgid "Quantity available from supplier" msgstr "" -#: company/models.py:919 +#: company/models.py:873 msgid "Availability Updated" msgstr "" -#: company/models.py:920 +#: company/models.py:874 msgid "Date of last update of availability data" msgstr "" -#: company/models.py:1048 +#: company/models.py:1002 msgid "Supplier Price Break" msgstr "" -#: company/serializers.py:181 +#: company/serializers.py:184 +msgid "Primary Address" +msgstr "" + +#: company/serializers.py:186 msgid "Return the string representation for the primary address. This property exists for backwards compatibility." msgstr "" -#: company/serializers.py:212 +#: company/serializers.py:218 msgid "Default currency used for this supplier" msgstr "" -#: company/serializers.py:248 +#: company/serializers.py:260 msgid "Company Name" msgstr "" -#: company/serializers.py:433 part/serializers.py:955 stock/serializers.py:428 +#: company/serializers.py:460 part/serializers.py:840 stock/serializers.py:428 msgid "In Stock" msgstr "" +#: company/serializers.py:477 +msgid "Price Breaks" +msgstr "" + #: data_exporter/mixins.py:325 data_exporter/mixins.py:403 msgid "Error occurred during data export" msgstr "" @@ -4290,7 +4418,7 @@ msgstr "" msgid "Errors" msgstr "" -#: importer/models.py:550 part/serializers.py:1268 +#: importer/models.py:550 part/serializers.py:1133 msgid "Valid" msgstr "" @@ -4402,7 +4530,7 @@ msgstr "" msgid "Connected" msgstr "" -#: machine/machine_types/label_printer.py:232 order/api.py:1795 +#: machine/machine_types/label_printer.py:232 order/api.py:1800 msgid "Unknown" msgstr "" @@ -4530,105 +4658,105 @@ msgstr "" msgid "Maximum value for progress type, required if type=progress" msgstr "" -#: order/api.py:125 +#: order/api.py:130 msgid "Order Reference" msgstr "" -#: order/api.py:153 order/api.py:1207 +#: order/api.py:158 order/api.py:1212 msgid "Outstanding" msgstr "" -#: order/api.py:169 +#: order/api.py:174 msgid "Has Project Code" msgstr "" -#: order/api.py:183 order/models.py:488 +#: order/api.py:188 order/models.py:489 msgid "Created By" msgstr "" -#: order/api.py:187 +#: order/api.py:192 msgid "Created Before" msgstr "" -#: order/api.py:191 +#: order/api.py:196 msgid "Created After" msgstr "" -#: order/api.py:195 +#: order/api.py:200 msgid "Has Start Date" msgstr "" -#: order/api.py:203 +#: order/api.py:208 msgid "Start Date Before" msgstr "" -#: order/api.py:207 +#: order/api.py:212 msgid "Start Date After" msgstr "" -#: order/api.py:211 +#: order/api.py:216 msgid "Has Target Date" msgstr "" -#: order/api.py:219 +#: order/api.py:224 msgid "Target Date Before" msgstr "" -#: order/api.py:223 +#: order/api.py:228 msgid "Target Date After" msgstr "" -#: order/api.py:274 +#: order/api.py:279 msgid "Has Pricing" msgstr "" -#: order/api.py:327 order/api.py:812 order/api.py:1490 +#: order/api.py:332 order/api.py:818 order/api.py:1495 msgid "Completed Before" msgstr "" -#: order/api.py:331 order/api.py:816 order/api.py:1494 +#: order/api.py:336 order/api.py:822 order/api.py:1499 msgid "Completed After" msgstr "" -#: order/api.py:337 order/api.py:341 +#: order/api.py:342 order/api.py:346 msgid "External Build Order" msgstr "" -#: order/api.py:526 order/api.py:914 order/api.py:1170 order/models.py:1922 -#: order/models.py:2049 order/models.py:2099 order/models.py:2279 -#: order/models.py:2477 order/models.py:2999 order/models.py:3065 +#: order/api.py:532 order/api.py:919 order/api.py:1175 order/models.py:1923 +#: order/models.py:2050 order/models.py:2100 order/models.py:2280 +#: order/models.py:2478 order/models.py:3000 order/models.py:3066 msgid "Order" msgstr "" -#: order/api.py:530 order/api.py:982 +#: order/api.py:536 order/api.py:987 msgid "Order Complete" msgstr "" -#: order/api.py:562 order/api.py:566 order/serializers.py:745 +#: order/api.py:568 order/api.py:572 order/serializers.py:756 msgid "Internal Part" msgstr "" -#: order/api.py:584 +#: order/api.py:590 msgid "Order Pending" msgstr "" -#: order/api.py:967 +#: order/api.py:972 msgid "Completed" msgstr "" -#: order/api.py:1223 +#: order/api.py:1228 msgid "Has Shipment" msgstr "" -#: order/api.py:1789 order/models.py:552 order/models.py:1923 -#: order/models.py:2050 +#: order/api.py:1794 order/models.py:553 order/models.py:1924 +#: order/models.py:2051 #: report/templates/report/inventree_purchase_order_report.html:14 #: stock/serializers.py:129 templates/email/overdue_purchase_order.html:15 msgid "Purchase Order" msgstr "" -#: order/api.py:1791 order/models.py:1251 order/models.py:2100 -#: order/models.py:2280 order/models.py:2478 +#: order/api.py:1796 order/models.py:1252 order/models.py:2101 +#: order/models.py:2281 order/models.py:2479 #: report/templates/report/inventree_build_order_report.html:135 #: report/templates/report/inventree_sales_order_report.html:14 #: report/templates/report/inventree_sales_order_shipment_report.html:15 @@ -4636,8 +4764,8 @@ msgstr "" msgid "Sales Order" msgstr "" -#: order/api.py:1793 order/models.py:2649 order/models.py:3000 -#: order/models.py:3066 +#: order/api.py:1798 order/models.py:2650 order/models.py:3001 +#: order/models.py:3067 #: report/templates/report/inventree_return_order_report.html:13 #: templates/email/overdue_return_order.html:15 msgid "Return Order" @@ -4653,722 +4781,722 @@ msgstr "" msgid "Total price for this order" msgstr "" -#: order/models.py:96 order/serializers.py:77 +#: order/models.py:96 order/serializers.py:78 msgid "Order Currency" msgstr "" -#: order/models.py:99 order/serializers.py:78 +#: order/models.py:99 order/serializers.py:79 msgid "Currency for this order (leave blank to use company default)" msgstr "" -#: order/models.py:324 +#: order/models.py:325 msgid "This order is locked and cannot be modified" msgstr "" -#: order/models.py:376 +#: order/models.py:377 msgid "Contact does not match selected company" msgstr "" -#: order/models.py:383 +#: order/models.py:384 msgid "Start date must be before target date" msgstr "" -#: order/models.py:390 +#: order/models.py:391 msgid "Address does not match selected company" msgstr "" -#: order/models.py:443 +#: order/models.py:444 msgid "Order description (optional)" msgstr "" -#: order/models.py:452 order/models.py:1806 +#: order/models.py:453 order/models.py:1807 msgid "Select project code for this order" msgstr "" -#: order/models.py:458 order/models.py:1787 order/models.py:2344 +#: order/models.py:459 order/models.py:1788 order/models.py:2345 msgid "Link to external page" msgstr "" -#: order/models.py:465 +#: order/models.py:466 msgid "Start date" msgstr "" -#: order/models.py:466 +#: order/models.py:467 msgid "Scheduled start date for this order" msgstr "" -#: order/models.py:472 order/models.py:1794 order/serializers.py:309 +#: order/models.py:473 order/models.py:1795 order/serializers.py:317 #: report/templates/report/inventree_build_order_report.html:125 msgid "Target Date" msgstr "" -#: order/models.py:474 +#: order/models.py:475 msgid "Expected date for order delivery. Order will be overdue after this date." msgstr "" -#: order/models.py:494 +#: order/models.py:495 msgid "Issue Date" msgstr "" -#: order/models.py:495 +#: order/models.py:496 msgid "Date order was issued" msgstr "" -#: order/models.py:503 +#: order/models.py:504 msgid "User or group responsible for this order" msgstr "" -#: order/models.py:514 +#: order/models.py:515 msgid "Point of contact for this order" msgstr "" -#: order/models.py:524 +#: order/models.py:525 msgid "Company address for this order" msgstr "" -#: order/models.py:615 order/models.py:1312 +#: order/models.py:616 order/models.py:1313 msgid "Order reference" msgstr "" -#: order/models.py:624 order/models.py:1336 order/models.py:2737 +#: order/models.py:625 order/models.py:1337 order/models.py:2738 #: stock/serializers.py:559 stock/serializers.py:988 users/models.py:542 msgid "Status" msgstr "" -#: order/models.py:625 +#: order/models.py:626 msgid "Purchase order status" msgstr "" -#: order/models.py:640 +#: order/models.py:641 msgid "Company from which the items are being ordered" msgstr "" -#: order/models.py:651 +#: order/models.py:652 msgid "Supplier Reference" msgstr "" -#: order/models.py:652 +#: order/models.py:653 msgid "Supplier order reference code" msgstr "" -#: order/models.py:661 +#: order/models.py:662 msgid "received by" msgstr "" -#: order/models.py:668 order/models.py:2752 +#: order/models.py:669 order/models.py:2753 msgid "Date order was completed" msgstr "" -#: order/models.py:677 order/models.py:1981 +#: order/models.py:678 order/models.py:1982 msgid "Destination" msgstr "" -#: order/models.py:678 order/models.py:1985 +#: order/models.py:679 order/models.py:1986 msgid "Destination for received items" msgstr "" -#: order/models.py:724 +#: order/models.py:725 msgid "Part supplier must match PO supplier" msgstr "" -#: order/models.py:994 +#: order/models.py:995 msgid "Line item does not match purchase order" msgstr "" -#: order/models.py:997 +#: order/models.py:998 msgid "Line item is missing a linked part" msgstr "" -#: order/models.py:1011 +#: order/models.py:1012 msgid "Quantity must be a positive number" msgstr "" -#: order/models.py:1323 order/models.py:2724 stock/models.py:1078 +#: order/models.py:1324 order/models.py:2725 stock/models.py:1078 #: stock/models.py:1079 stock/serializers.py:1322 #: templates/email/overdue_return_order.html:16 #: templates/email/overdue_sales_order.html:16 msgid "Customer" msgstr "" -#: order/models.py:1324 +#: order/models.py:1325 msgid "Company to which the items are being sold" msgstr "" -#: order/models.py:1337 +#: order/models.py:1338 msgid "Sales order status" msgstr "" -#: order/models.py:1348 order/models.py:2744 +#: order/models.py:1349 order/models.py:2745 msgid "Customer Reference " msgstr "" -#: order/models.py:1349 order/models.py:2745 +#: order/models.py:1350 order/models.py:2746 msgid "Customer order reference code" msgstr "" -#: order/models.py:1353 order/models.py:2296 +#: order/models.py:1354 order/models.py:2297 msgid "Shipment Date" msgstr "" -#: order/models.py:1362 +#: order/models.py:1363 msgid "shipped by" msgstr "" -#: order/models.py:1413 +#: order/models.py:1414 msgid "Order is already complete" msgstr "" -#: order/models.py:1416 +#: order/models.py:1417 msgid "Order is already cancelled" msgstr "" -#: order/models.py:1420 +#: order/models.py:1421 msgid "Only an open order can be marked as complete" msgstr "" -#: order/models.py:1424 +#: order/models.py:1425 msgid "Order cannot be completed as there are incomplete shipments" msgstr "" -#: order/models.py:1429 +#: order/models.py:1430 msgid "Order cannot be completed as there are incomplete allocations" msgstr "" -#: order/models.py:1438 +#: order/models.py:1439 msgid "Order cannot be completed as there are incomplete line items" msgstr "" -#: order/models.py:1733 order/models.py:1749 +#: order/models.py:1734 order/models.py:1750 msgid "The order is locked and cannot be modified" msgstr "" -#: order/models.py:1757 +#: order/models.py:1758 msgid "Item quantity" msgstr "" -#: order/models.py:1774 +#: order/models.py:1775 msgid "Line item reference" msgstr "" -#: order/models.py:1781 +#: order/models.py:1782 msgid "Line item notes" msgstr "" -#: order/models.py:1796 +#: order/models.py:1797 msgid "Target date for this line item (leave blank to use the target date from the order)" msgstr "" -#: order/models.py:1826 +#: order/models.py:1827 msgid "Line item description (optional)" msgstr "" -#: order/models.py:1833 +#: order/models.py:1834 msgid "Additional context for this line" msgstr "" -#: order/models.py:1843 +#: order/models.py:1844 msgid "Unit price" msgstr "" -#: order/models.py:1862 +#: order/models.py:1863 msgid "Purchase Order Line Item" msgstr "" -#: order/models.py:1889 +#: order/models.py:1890 msgid "Supplier part must match supplier" msgstr "" -#: order/models.py:1894 +#: order/models.py:1895 msgid "Build order must be marked as external" msgstr "" -#: order/models.py:1901 +#: order/models.py:1902 msgid "Build orders can only be linked to assembly parts" msgstr "" -#: order/models.py:1907 +#: order/models.py:1908 msgid "Build order part must match line item part" msgstr "" -#: order/models.py:1942 +#: order/models.py:1943 msgid "Supplier part" msgstr "" -#: order/models.py:1949 +#: order/models.py:1950 msgid "Received" msgstr "" -#: order/models.py:1950 +#: order/models.py:1951 msgid "Number of items received" msgstr "" -#: order/models.py:1958 stock/models.py:1201 stock/serializers.py:637 +#: order/models.py:1959 stock/models.py:1201 stock/serializers.py:637 msgid "Purchase Price" msgstr "" -#: order/models.py:1959 +#: order/models.py:1960 msgid "Unit purchase price" msgstr "" -#: order/models.py:1975 +#: order/models.py:1976 msgid "External Build Order to be fulfilled by this line item" msgstr "" -#: order/models.py:2038 +#: order/models.py:2039 msgid "Purchase Order Extra Line" msgstr "" -#: order/models.py:2067 +#: order/models.py:2068 msgid "Sales Order Line Item" msgstr "" -#: order/models.py:2092 +#: order/models.py:2093 msgid "Only salable parts can be assigned to a sales order" msgstr "" -#: order/models.py:2118 +#: order/models.py:2119 msgid "Sale Price" msgstr "" -#: order/models.py:2119 +#: order/models.py:2120 msgid "Unit sale price" msgstr "" -#: order/models.py:2128 order/status_codes.py:50 +#: order/models.py:2129 order/status_codes.py:50 msgid "Shipped" msgstr "" -#: order/models.py:2129 +#: order/models.py:2130 msgid "Shipped quantity" msgstr "" -#: order/models.py:2240 +#: order/models.py:2241 msgid "Sales Order Shipment" msgstr "" -#: order/models.py:2253 +#: order/models.py:2254 msgid "Shipment address must match the customer" msgstr "" -#: order/models.py:2289 +#: order/models.py:2290 msgid "Shipping address for this shipment" msgstr "" -#: order/models.py:2297 +#: order/models.py:2298 msgid "Date of shipment" msgstr "" -#: order/models.py:2303 +#: order/models.py:2304 msgid "Delivery Date" msgstr "" -#: order/models.py:2304 +#: order/models.py:2305 msgid "Date of delivery of shipment" msgstr "" -#: order/models.py:2312 +#: order/models.py:2313 msgid "Checked By" msgstr "" -#: order/models.py:2313 +#: order/models.py:2314 msgid "User who checked this shipment" msgstr "" -#: order/models.py:2320 order/models.py:2574 order/serializers.py:1711 -#: order/serializers.py:1835 +#: order/models.py:2321 order/models.py:2575 order/serializers.py:1725 +#: order/serializers.py:1849 #: report/templates/report/inventree_sales_order_shipment_report.html:14 msgid "Shipment" msgstr "" -#: order/models.py:2321 +#: order/models.py:2322 msgid "Shipment number" msgstr "" -#: order/models.py:2329 +#: order/models.py:2330 msgid "Tracking Number" msgstr "" -#: order/models.py:2330 +#: order/models.py:2331 msgid "Shipment tracking information" msgstr "" -#: order/models.py:2337 +#: order/models.py:2338 msgid "Invoice Number" msgstr "" -#: order/models.py:2338 +#: order/models.py:2339 msgid "Reference number for associated invoice" msgstr "" -#: order/models.py:2377 +#: order/models.py:2378 msgid "Shipment has already been sent" msgstr "" -#: order/models.py:2380 +#: order/models.py:2381 msgid "Shipment has no allocated stock items" msgstr "" -#: order/models.py:2387 +#: order/models.py:2388 msgid "Shipment must be checked before it can be completed" msgstr "" -#: order/models.py:2466 +#: order/models.py:2467 msgid "Sales Order Extra Line" msgstr "" -#: order/models.py:2495 +#: order/models.py:2496 msgid "Sales Order Allocation" msgstr "" -#: order/models.py:2518 order/models.py:2520 +#: order/models.py:2519 order/models.py:2521 msgid "Stock item has not been assigned" msgstr "" -#: order/models.py:2527 +#: order/models.py:2528 msgid "Cannot allocate stock item to a line with a different part" msgstr "" -#: order/models.py:2530 +#: order/models.py:2531 msgid "Cannot allocate stock to a line without a part" msgstr "" -#: order/models.py:2533 +#: order/models.py:2534 msgid "Allocation quantity cannot exceed stock quantity" msgstr "" -#: order/models.py:2552 order/serializers.py:1581 +#: order/models.py:2553 order/serializers.py:1595 msgid "Quantity must be 1 for serialized stock item" msgstr "" -#: order/models.py:2555 +#: order/models.py:2556 msgid "Sales order does not match shipment" msgstr "" -#: order/models.py:2556 plugin/base/barcodes/api.py:642 +#: order/models.py:2557 plugin/base/barcodes/api.py:642 msgid "Shipment does not match sales order" msgstr "" -#: order/models.py:2564 +#: order/models.py:2565 msgid "Line" msgstr "" -#: order/models.py:2575 +#: order/models.py:2576 msgid "Sales order shipment reference" msgstr "" -#: order/models.py:2588 order/models.py:3007 +#: order/models.py:2589 order/models.py:3008 msgid "Item" msgstr "" -#: order/models.py:2589 +#: order/models.py:2590 msgid "Select stock item to allocate" msgstr "" -#: order/models.py:2598 +#: order/models.py:2599 msgid "Enter stock allocation quantity" msgstr "" -#: order/models.py:2713 +#: order/models.py:2714 msgid "Return Order reference" msgstr "" -#: order/models.py:2725 +#: order/models.py:2726 msgid "Company from which items are being returned" msgstr "" -#: order/models.py:2738 +#: order/models.py:2739 msgid "Return order status" msgstr "" -#: order/models.py:2965 +#: order/models.py:2966 msgid "Return Order Line Item" msgstr "" -#: order/models.py:2978 +#: order/models.py:2979 msgid "Stock item must be specified" msgstr "" -#: order/models.py:2982 +#: order/models.py:2983 msgid "Return quantity exceeds stock quantity" msgstr "" -#: order/models.py:2987 +#: order/models.py:2988 msgid "Return quantity must be greater than zero" msgstr "" -#: order/models.py:2992 +#: order/models.py:2993 msgid "Invalid quantity for serialized stock item" msgstr "" -#: order/models.py:3008 +#: order/models.py:3009 msgid "Select item to return from customer" msgstr "" -#: order/models.py:3023 +#: order/models.py:3024 msgid "Received Date" msgstr "" -#: order/models.py:3024 +#: order/models.py:3025 msgid "The date this this return item was received" msgstr "" -#: order/models.py:3036 +#: order/models.py:3037 msgid "Outcome" msgstr "" -#: order/models.py:3037 +#: order/models.py:3038 msgid "Outcome for this line item" msgstr "" -#: order/models.py:3044 +#: order/models.py:3045 msgid "Cost associated with return or repair for this line item" msgstr "" -#: order/models.py:3054 +#: order/models.py:3055 msgid "Return Order Extra Line" msgstr "" -#: order/serializers.py:91 +#: order/serializers.py:92 msgid "Order ID" msgstr "" -#: order/serializers.py:91 +#: order/serializers.py:92 msgid "ID of the order to duplicate" msgstr "" -#: order/serializers.py:97 +#: order/serializers.py:98 msgid "Copy Lines" msgstr "" -#: order/serializers.py:98 +#: order/serializers.py:99 msgid "Copy line items from the original order" msgstr "" -#: order/serializers.py:104 +#: order/serializers.py:105 msgid "Copy Extra Lines" msgstr "" -#: order/serializers.py:105 +#: order/serializers.py:106 msgid "Copy extra line items from the original order" msgstr "" -#: order/serializers.py:120 +#: order/serializers.py:121 #: report/templates/report/inventree_purchase_order_report.html:29 #: report/templates/report/inventree_return_order_report.html:19 #: report/templates/report/inventree_sales_order_report.html:22 msgid "Line Items" msgstr "" -#: order/serializers.py:125 +#: order/serializers.py:126 msgid "Completed Lines" msgstr "" -#: order/serializers.py:192 +#: order/serializers.py:199 msgid "Duplicate Order" msgstr "" -#: order/serializers.py:193 +#: order/serializers.py:200 msgid "Specify options for duplicating this order" msgstr "" -#: order/serializers.py:270 +#: order/serializers.py:278 msgid "Invalid order ID" msgstr "" -#: order/serializers.py:466 +#: order/serializers.py:477 msgid "Supplier Name" msgstr "" -#: order/serializers.py:510 +#: order/serializers.py:521 msgid "Order cannot be cancelled" msgstr "" -#: order/serializers.py:525 order/serializers.py:1602 +#: order/serializers.py:536 order/serializers.py:1616 msgid "Allow order to be closed with incomplete line items" msgstr "" -#: order/serializers.py:535 order/serializers.py:1612 +#: order/serializers.py:546 order/serializers.py:1626 msgid "Order has incomplete line items" msgstr "" -#: order/serializers.py:665 +#: order/serializers.py:676 msgid "Order is not open" msgstr "" -#: order/serializers.py:692 +#: order/serializers.py:703 msgid "Auto Pricing" msgstr "" -#: order/serializers.py:694 +#: order/serializers.py:705 msgid "Automatically calculate purchase price based on supplier part data" msgstr "" -#: order/serializers.py:704 +#: order/serializers.py:715 msgid "Purchase price currency" msgstr "" -#: order/serializers.py:718 +#: order/serializers.py:729 msgid "Merge Items" msgstr "" -#: order/serializers.py:720 +#: order/serializers.py:731 msgid "Merge items with the same part, destination and target date into one line item" msgstr "" -#: order/serializers.py:727 part/serializers.py:560 +#: order/serializers.py:738 part/serializers.py:471 msgid "SKU" msgstr "" -#: order/serializers.py:741 part/models.py:1089 part/serializers.py:372 +#: order/serializers.py:752 part/models.py:1177 part/serializers.py:337 msgid "Internal Part Number" msgstr "" -#: order/serializers.py:749 +#: order/serializers.py:760 msgid "Internal Part Name" msgstr "" -#: order/serializers.py:765 +#: order/serializers.py:776 msgid "Supplier part must be specified" msgstr "" -#: order/serializers.py:768 +#: order/serializers.py:779 msgid "Purchase order must be specified" msgstr "" -#: order/serializers.py:776 +#: order/serializers.py:787 msgid "Supplier must match purchase order" msgstr "" -#: order/serializers.py:777 +#: order/serializers.py:788 msgid "Purchase order must match supplier" msgstr "" -#: order/serializers.py:825 order/serializers.py:1682 +#: order/serializers.py:836 order/serializers.py:1696 msgid "Line Item" msgstr "" -#: order/serializers.py:834 order/serializers.py:974 order/serializers.py:2043 +#: order/serializers.py:845 order/serializers.py:985 order/serializers.py:2060 msgid "Select destination location for received items" msgstr "" -#: order/serializers.py:850 +#: order/serializers.py:861 msgid "Enter batch code for incoming stock items" msgstr "" -#: order/serializers.py:857 stock/models.py:1160 +#: order/serializers.py:868 stock/models.py:1160 #: templates/email/stale_stock_notification.html:22 users/models.py:137 msgid "Expiry Date" msgstr "" -#: order/serializers.py:858 +#: order/serializers.py:869 msgid "Enter expiry date for incoming stock items" msgstr "" -#: order/serializers.py:866 +#: order/serializers.py:877 msgid "Enter serial numbers for incoming stock items" msgstr "" -#: order/serializers.py:876 +#: order/serializers.py:887 msgid "Override packaging information for incoming stock items" msgstr "" -#: order/serializers.py:884 order/serializers.py:2048 +#: order/serializers.py:895 order/serializers.py:2065 msgid "Additional note for incoming stock items" msgstr "" -#: order/serializers.py:891 +#: order/serializers.py:902 msgid "Barcode" msgstr "" -#: order/serializers.py:892 +#: order/serializers.py:903 msgid "Scanned barcode" msgstr "" -#: order/serializers.py:908 +#: order/serializers.py:919 msgid "Barcode is already in use" msgstr "" -#: order/serializers.py:991 order/serializers.py:2067 +#: order/serializers.py:1002 order/serializers.py:2084 msgid "Line items must be provided" msgstr "" -#: order/serializers.py:1010 +#: order/serializers.py:1021 msgid "Destination location must be specified" msgstr "" -#: order/serializers.py:1017 +#: order/serializers.py:1028 msgid "Supplied barcode values must be unique" msgstr "" -#: order/serializers.py:1121 +#: order/serializers.py:1135 msgid "Shipments" msgstr "" -#: order/serializers.py:1125 +#: order/serializers.py:1139 msgid "Completed Shipments" msgstr "" -#: order/serializers.py:1293 +#: order/serializers.py:1307 msgid "Sale price currency" msgstr "" -#: order/serializers.py:1339 +#: order/serializers.py:1353 msgid "Allocated Items" msgstr "" -#: order/serializers.py:1484 +#: order/serializers.py:1498 msgid "No shipment details provided" msgstr "" -#: order/serializers.py:1545 order/serializers.py:1691 +#: order/serializers.py:1559 order/serializers.py:1705 msgid "Line item is not associated with this order" msgstr "" -#: order/serializers.py:1564 +#: order/serializers.py:1578 msgid "Quantity must be positive" msgstr "" -#: order/serializers.py:1701 +#: order/serializers.py:1715 msgid "Enter serial numbers to allocate" msgstr "" -#: order/serializers.py:1723 order/serializers.py:1843 +#: order/serializers.py:1737 order/serializers.py:1857 msgid "Shipment has already been shipped" msgstr "" -#: order/serializers.py:1726 order/serializers.py:1846 +#: order/serializers.py:1740 order/serializers.py:1860 msgid "Shipment is not associated with this order" msgstr "" -#: order/serializers.py:1781 +#: order/serializers.py:1795 msgid "No match found for the following serial numbers" msgstr "" -#: order/serializers.py:1788 +#: order/serializers.py:1802 msgid "The following serial numbers are unavailable" msgstr "" -#: order/serializers.py:2009 +#: order/serializers.py:2026 msgid "Return order line item" msgstr "" -#: order/serializers.py:2019 +#: order/serializers.py:2036 msgid "Line item does not match return order" msgstr "" -#: order/serializers.py:2022 +#: order/serializers.py:2039 msgid "Line item has already been received" msgstr "" -#: order/serializers.py:2059 +#: order/serializers.py:2076 msgid "Items can only be received against orders which are in progress" msgstr "" -#: order/serializers.py:2124 +#: order/serializers.py:2141 msgid "Quantity to return" msgstr "" -#: order/serializers.py:2140 +#: order/serializers.py:2157 msgid "Line price currency" msgstr "" @@ -5431,1190 +5559,1109 @@ msgstr "" msgid "Return order {ro} is now overdue" msgstr "" -#: part/api.py:108 +#: part/api.py:103 msgid "Starred" msgstr "" -#: part/api.py:110 +#: part/api.py:105 msgid "Filter by starred categories" msgstr "" -#: part/api.py:127 stock/api.py:288 +#: part/api.py:122 stock/api.py:288 msgid "Depth" msgstr "" -#: part/api.py:127 +#: part/api.py:122 msgid "Filter by category depth" msgstr "" -#: part/api.py:145 stock/api.py:306 +#: part/api.py:140 stock/api.py:306 msgid "Top Level" msgstr "" -#: part/api.py:147 +#: part/api.py:142 msgid "Filter by top-level categories" msgstr "" -#: part/api.py:160 stock/api.py:321 +#: part/api.py:155 stock/api.py:321 msgid "Cascade" msgstr "" -#: part/api.py:162 +#: part/api.py:157 msgid "Include sub-categories in filtered results" msgstr "" -#: part/api.py:182 +#: part/api.py:177 msgid "Parent" msgstr "" -#: part/api.py:184 +#: part/api.py:179 msgid "Filter by parent category" msgstr "" -#: part/api.py:219 +#: part/api.py:214 msgid "Exclude sub-categories under the specified category" msgstr "" -#: part/api.py:445 +#: part/api.py:440 msgid "Has Results" msgstr "" -#: part/api.py:666 +#: part/api.py:661 msgid "Is Variant" msgstr "" -#: part/api.py:674 +#: part/api.py:669 msgid "Is Revision" msgstr "" -#: part/api.py:684 +#: part/api.py:679 msgid "Has Revisions" msgstr "" -#: part/api.py:865 +#: part/api.py:860 msgid "BOM Valid" msgstr "" -#: part/api.py:974 +#: part/api.py:969 msgid "Cascade Categories" msgstr "" -#: part/api.py:975 +#: part/api.py:970 msgid "If true, include items in child categories of the given category" msgstr "" -#: part/api.py:981 +#: part/api.py:976 msgid "Filter by numeric category ID or the literal 'null'" msgstr "" -#: part/api.py:1533 +#: part/api.py:1258 msgid "Assembly part is testable" msgstr "" -#: part/api.py:1542 +#: part/api.py:1267 msgid "Component part is testable" msgstr "" -#: part/api.py:1611 +#: part/api.py:1336 msgid "Uses" msgstr "" -#: part/models.py:96 part/models.py:4163 +#: part/models.py:93 part/models.py:436 #: templates/email/part_event_notification.html:16 msgid "Part Category" msgstr "" -#: part/models.py:97 users/ruleset.py:27 +#: part/models.py:94 users/ruleset.py:27 msgid "Part Categories" msgstr "" -#: part/models.py:115 part/models.py:1125 +#: part/models.py:112 part/models.py:1213 msgid "Default Location" msgstr "" -#: part/models.py:116 +#: part/models.py:113 msgid "Default location for parts in this category" msgstr "" -#: part/models.py:121 stock/models.py:216 +#: part/models.py:118 stock/models.py:216 msgid "Structural" msgstr "" -#: part/models.py:123 +#: part/models.py:120 msgid "Parts may not be directly assigned to a structural category, but may be assigned to child categories." msgstr "" -#: part/models.py:132 +#: part/models.py:129 msgid "Default keywords" msgstr "" -#: part/models.py:133 +#: part/models.py:130 msgid "Default keywords for parts in this category" msgstr "" -#: part/models.py:140 stock/models.py:97 stock/models.py:198 +#: part/models.py:137 stock/models.py:97 stock/models.py:198 msgid "Icon" msgstr "" -#: part/models.py:141 part/serializers.py:148 part/serializers.py:167 +#: part/models.py:138 part/serializers.py:147 part/serializers.py:166 #: stock/models.py:199 msgid "Icon (optional)" msgstr "" -#: part/models.py:185 +#: part/models.py:182 msgid "You cannot make this part category structural because some parts are already assigned to it!" msgstr "" -#: part/models.py:473 part/serializers.py:119 part/serializers.py:310 -#: users/ruleset.py:28 +#: part/models.py:392 +msgid "Part Category Parameter Template" +msgstr "" + +#: part/models.py:448 +msgid "Default Value" +msgstr "" + +#: part/models.py:449 +msgid "Default Parameter Value" +msgstr "" + +#: part/models.py:551 part/serializers.py:118 users/ruleset.py:28 msgid "Parts" msgstr "" -#: part/models.py:525 +#: part/models.py:597 +msgid "Cannot delete parameters of a locked part" +msgstr "" + +#: part/models.py:602 +msgid "Cannot modify parameters of a locked part" +msgstr "" + +#: part/models.py:613 msgid "Cannot delete this part as it is locked" msgstr "" -#: part/models.py:528 +#: part/models.py:616 msgid "Cannot delete this part as it is still active" msgstr "" -#: part/models.py:533 +#: part/models.py:621 msgid "Cannot delete this part as it is used in an assembly" msgstr "" -#: part/models.py:616 part/models.py:623 +#: part/models.py:704 part/models.py:711 #, python-brace-format msgid "Part '{self}' cannot be used in BOM for '{parent}' (recursive)" msgstr "" -#: part/models.py:635 +#: part/models.py:723 #, python-brace-format msgid "Part '{parent}' is used in BOM for '{self}' (recursive)" msgstr "" -#: part/models.py:702 +#: part/models.py:790 #, python-brace-format msgid "IPN must match regex pattern {pattern}" msgstr "" -#: part/models.py:710 +#: part/models.py:798 msgid "Part cannot be a revision of itself" msgstr "" -#: part/models.py:717 +#: part/models.py:805 msgid "Cannot make a revision of a part which is already a revision" msgstr "" -#: part/models.py:724 +#: part/models.py:812 msgid "Revision code must be specified" msgstr "" -#: part/models.py:731 +#: part/models.py:819 msgid "Revisions are only allowed for assembly parts" msgstr "" -#: part/models.py:738 +#: part/models.py:826 msgid "Cannot make a revision of a template part" msgstr "" -#: part/models.py:744 +#: part/models.py:832 msgid "Parent part must point to the same template" msgstr "" -#: part/models.py:841 +#: part/models.py:929 msgid "Stock item with this serial number already exists" msgstr "" -#: part/models.py:971 +#: part/models.py:1059 msgid "Duplicate IPN not allowed in part settings" msgstr "" -#: part/models.py:983 +#: part/models.py:1071 msgid "Duplicate part revision already exists." msgstr "" -#: part/models.py:992 +#: part/models.py:1080 msgid "Part with this Name, IPN and Revision already exists." msgstr "" -#: part/models.py:1007 +#: part/models.py:1095 msgid "Parts cannot be assigned to structural part categories!" msgstr "" -#: part/models.py:1039 +#: part/models.py:1127 msgid "Part name" msgstr "" -#: part/models.py:1044 +#: part/models.py:1132 msgid "Is Template" msgstr "" -#: part/models.py:1045 +#: part/models.py:1133 msgid "Is this part a template part?" msgstr "" -#: part/models.py:1055 +#: part/models.py:1143 msgid "Is this part a variant of another part?" msgstr "" -#: part/models.py:1056 +#: part/models.py:1144 msgid "Variant Of" msgstr "" -#: part/models.py:1063 +#: part/models.py:1151 msgid "Part description (optional)" msgstr "" -#: part/models.py:1070 +#: part/models.py:1158 msgid "Keywords" msgstr "" -#: part/models.py:1071 +#: part/models.py:1159 msgid "Part keywords to improve visibility in search results" msgstr "" -#: part/models.py:1081 +#: part/models.py:1169 msgid "Part category" msgstr "" -#: part/models.py:1088 part/serializers.py:929 +#: part/models.py:1176 part/serializers.py:814 #: report/templates/report/inventree_stock_location_report.html:103 msgid "IPN" msgstr "" -#: part/models.py:1096 +#: part/models.py:1184 msgid "Part revision or version number" msgstr "" -#: part/models.py:1097 report/models.py:228 +#: part/models.py:1185 report/models.py:228 msgid "Revision" msgstr "" -#: part/models.py:1106 +#: part/models.py:1194 msgid "Is this part a revision of another part?" msgstr "" -#: part/models.py:1107 +#: part/models.py:1195 msgid "Revision Of" msgstr "" -#: part/models.py:1123 +#: part/models.py:1211 msgid "Where is this item normally stored?" msgstr "" -#: part/models.py:1169 +#: part/models.py:1257 msgid "Default Supplier" msgstr "" -#: part/models.py:1170 +#: part/models.py:1258 msgid "Default supplier part" msgstr "" -#: part/models.py:1177 +#: part/models.py:1265 msgid "Default Expiry" msgstr "" -#: part/models.py:1178 +#: part/models.py:1266 msgid "Expiry time (in days) for stock items of this part" msgstr "" -#: part/models.py:1186 part/serializers.py:1003 +#: part/models.py:1274 part/serializers.py:888 msgid "Minimum Stock" msgstr "" -#: part/models.py:1187 +#: part/models.py:1275 msgid "Minimum allowed stock level" msgstr "" -#: part/models.py:1196 +#: part/models.py:1284 msgid "Units of measure for this part" msgstr "" -#: part/models.py:1203 +#: part/models.py:1291 msgid "Can this part be built from other parts?" msgstr "" -#: part/models.py:1209 +#: part/models.py:1297 msgid "Can this part be used to build other parts?" msgstr "" -#: part/models.py:1215 +#: part/models.py:1303 msgid "Does this part have tracking for unique items?" msgstr "" -#: part/models.py:1221 +#: part/models.py:1309 msgid "Can this part have test results recorded against it?" msgstr "" -#: part/models.py:1227 +#: part/models.py:1315 msgid "Can this part be purchased from external suppliers?" msgstr "" -#: part/models.py:1233 +#: part/models.py:1321 msgid "Can this part be sold to customers?" msgstr "" -#: part/models.py:1237 +#: part/models.py:1325 msgid "Is this part active?" msgstr "" -#: part/models.py:1243 +#: part/models.py:1331 msgid "Locked parts cannot be edited" msgstr "" -#: part/models.py:1249 +#: part/models.py:1337 msgid "Is this a virtual part, such as a software product or license?" msgstr "" -#: part/models.py:1254 +#: part/models.py:1342 msgid "BOM Validated" msgstr "" -#: part/models.py:1255 +#: part/models.py:1343 msgid "Is the BOM for this part valid?" msgstr "" -#: part/models.py:1261 +#: part/models.py:1349 msgid "BOM checksum" msgstr "" -#: part/models.py:1262 +#: part/models.py:1350 msgid "Stored BOM checksum" msgstr "" -#: part/models.py:1270 +#: part/models.py:1358 msgid "BOM checked by" msgstr "" -#: part/models.py:1275 +#: part/models.py:1363 msgid "BOM checked date" msgstr "" -#: part/models.py:1291 +#: part/models.py:1379 msgid "Creation User" msgstr "" -#: part/models.py:1301 +#: part/models.py:1389 msgid "Owner responsible for this part" msgstr "" -#: part/models.py:2258 +#: part/models.py:2346 msgid "Sell multiple" msgstr "" -#: part/models.py:3286 +#: part/models.py:3350 msgid "Currency used to cache pricing calculations" msgstr "" -#: part/models.py:3302 +#: part/models.py:3366 msgid "Minimum BOM Cost" msgstr "" -#: part/models.py:3303 +#: part/models.py:3367 msgid "Minimum cost of component parts" msgstr "" -#: part/models.py:3309 +#: part/models.py:3373 msgid "Maximum BOM Cost" msgstr "" -#: part/models.py:3310 +#: part/models.py:3374 msgid "Maximum cost of component parts" msgstr "" -#: part/models.py:3316 +#: part/models.py:3380 msgid "Minimum Purchase Cost" msgstr "" -#: part/models.py:3317 +#: part/models.py:3381 msgid "Minimum historical purchase cost" msgstr "" -#: part/models.py:3323 +#: part/models.py:3387 msgid "Maximum Purchase Cost" msgstr "" -#: part/models.py:3324 +#: part/models.py:3388 msgid "Maximum historical purchase cost" msgstr "" -#: part/models.py:3330 +#: part/models.py:3394 msgid "Minimum Internal Price" msgstr "" -#: part/models.py:3331 +#: part/models.py:3395 msgid "Minimum cost based on internal price breaks" msgstr "" -#: part/models.py:3337 +#: part/models.py:3401 msgid "Maximum Internal Price" msgstr "" -#: part/models.py:3338 +#: part/models.py:3402 msgid "Maximum cost based on internal price breaks" msgstr "" -#: part/models.py:3344 +#: part/models.py:3408 msgid "Minimum Supplier Price" msgstr "" -#: part/models.py:3345 +#: part/models.py:3409 msgid "Minimum price of part from external suppliers" msgstr "" -#: part/models.py:3351 +#: part/models.py:3415 msgid "Maximum Supplier Price" msgstr "" -#: part/models.py:3352 +#: part/models.py:3416 msgid "Maximum price of part from external suppliers" msgstr "" -#: part/models.py:3358 +#: part/models.py:3422 msgid "Minimum Variant Cost" msgstr "" -#: part/models.py:3359 +#: part/models.py:3423 msgid "Calculated minimum cost of variant parts" msgstr "" -#: part/models.py:3365 +#: part/models.py:3429 msgid "Maximum Variant Cost" msgstr "" -#: part/models.py:3366 +#: part/models.py:3430 msgid "Calculated maximum cost of variant parts" msgstr "" -#: part/models.py:3372 part/models.py:3386 +#: part/models.py:3436 part/models.py:3450 msgid "Minimum Cost" msgstr "" -#: part/models.py:3373 +#: part/models.py:3437 msgid "Override minimum cost" msgstr "" -#: part/models.py:3379 part/models.py:3393 +#: part/models.py:3443 part/models.py:3457 msgid "Maximum Cost" msgstr "" -#: part/models.py:3380 +#: part/models.py:3444 msgid "Override maximum cost" msgstr "" -#: part/models.py:3387 +#: part/models.py:3451 msgid "Calculated overall minimum cost" msgstr "" -#: part/models.py:3394 +#: part/models.py:3458 msgid "Calculated overall maximum cost" msgstr "" -#: part/models.py:3400 +#: part/models.py:3464 msgid "Minimum Sale Price" msgstr "" -#: part/models.py:3401 +#: part/models.py:3465 msgid "Minimum sale price based on price breaks" msgstr "" -#: part/models.py:3407 +#: part/models.py:3471 msgid "Maximum Sale Price" msgstr "" -#: part/models.py:3408 +#: part/models.py:3472 msgid "Maximum sale price based on price breaks" msgstr "" -#: part/models.py:3414 +#: part/models.py:3478 msgid "Minimum Sale Cost" msgstr "" -#: part/models.py:3415 +#: part/models.py:3479 msgid "Minimum historical sale price" msgstr "" -#: part/models.py:3421 +#: part/models.py:3485 msgid "Maximum Sale Cost" msgstr "" -#: part/models.py:3422 +#: part/models.py:3486 msgid "Maximum historical sale price" msgstr "" -#: part/models.py:3440 +#: part/models.py:3504 msgid "Part for stocktake" msgstr "" -#: part/models.py:3445 +#: part/models.py:3509 msgid "Item Count" msgstr "" -#: part/models.py:3446 +#: part/models.py:3510 msgid "Number of individual stock entries at time of stocktake" msgstr "" -#: part/models.py:3454 +#: part/models.py:3518 msgid "Total available stock at time of stocktake" msgstr "" -#: part/models.py:3458 report/templates/report/inventree_test_report.html:106 +#: part/models.py:3522 report/templates/report/inventree_test_report.html:106 msgid "Date" msgstr "" -#: part/models.py:3459 +#: part/models.py:3523 msgid "Date stocktake was performed" msgstr "" -#: part/models.py:3466 +#: part/models.py:3530 msgid "Minimum Stock Cost" msgstr "" -#: part/models.py:3467 +#: part/models.py:3531 msgid "Estimated minimum cost of stock on hand" msgstr "" -#: part/models.py:3473 +#: part/models.py:3537 msgid "Maximum Stock Cost" msgstr "" -#: part/models.py:3474 +#: part/models.py:3538 msgid "Estimated maximum cost of stock on hand" msgstr "" -#: part/models.py:3484 +#: part/models.py:3548 msgid "Part Sale Price Break" msgstr "" -#: part/models.py:3596 +#: part/models.py:3660 msgid "Part Test Template" msgstr "" -#: part/models.py:3622 +#: part/models.py:3686 msgid "Invalid template name - must include at least one alphanumeric character" msgstr "" -#: part/models.py:3643 part/models.py:3816 -msgid "Choices must be unique" -msgstr "" - -#: part/models.py:3654 +#: part/models.py:3718 msgid "Test templates can only be created for testable parts" msgstr "" -#: part/models.py:3668 +#: part/models.py:3732 msgid "Test template with the same key already exists for part" msgstr "" -#: part/models.py:3685 +#: part/models.py:3749 msgid "Test Name" msgstr "" -#: part/models.py:3686 +#: part/models.py:3750 msgid "Enter a name for the test" msgstr "" -#: part/models.py:3692 +#: part/models.py:3756 msgid "Test Key" msgstr "" -#: part/models.py:3693 +#: part/models.py:3757 msgid "Simplified key for the test" msgstr "" -#: part/models.py:3700 +#: part/models.py:3764 msgid "Test Description" msgstr "" -#: part/models.py:3701 +#: part/models.py:3765 msgid "Enter description for this test" msgstr "" -#: part/models.py:3705 report/models.py:287 -msgid "Enabled" -msgstr "" - -#: part/models.py:3705 +#: part/models.py:3769 msgid "Is this test enabled?" msgstr "" -#: part/models.py:3710 +#: part/models.py:3774 msgid "Required" msgstr "" -#: part/models.py:3711 +#: part/models.py:3775 msgid "Is this test required to pass?" msgstr "" -#: part/models.py:3716 +#: part/models.py:3780 msgid "Requires Value" msgstr "" -#: part/models.py:3717 +#: part/models.py:3781 msgid "Does this test require a value when adding a test result?" msgstr "" -#: part/models.py:3722 +#: part/models.py:3786 msgid "Requires Attachment" msgstr "" -#: part/models.py:3724 +#: part/models.py:3788 msgid "Does this test require a file attachment when adding a test result?" msgstr "" -#: part/models.py:3730 part/models.py:3878 -msgid "Choices" -msgstr "" - -#: part/models.py:3731 +#: part/models.py:3795 msgid "Valid choices for this test (comma-separated)" msgstr "" -#: part/models.py:3764 -msgid "Part Parameter Template" -msgstr "" - -#: part/models.py:3791 -msgid "Checkbox parameters cannot have units" -msgstr "" - -#: part/models.py:3796 -msgid "Checkbox parameters cannot have choices" -msgstr "" - -#: part/models.py:3833 -msgid "Parameter template name must be unique" -msgstr "" - -#: part/models.py:3851 -msgid "Parameter Name" -msgstr "" - -#: part/models.py:3858 -msgid "Physical units for this parameter" -msgstr "" - -#: part/models.py:3866 -msgid "Parameter description" -msgstr "" - -#: part/models.py:3872 -msgid "Checkbox" -msgstr "" - -#: part/models.py:3873 -msgid "Is this parameter a checkbox?" -msgstr "" - -#: part/models.py:3879 -msgid "Valid choices for this parameter (comma-separated)" -msgstr "" - -#: part/models.py:3890 -msgid "Selection list for this parameter" -msgstr "" - -#: part/models.py:3932 -msgid "Part Parameter" -msgstr "" - -#: part/models.py:3958 -msgid "Parameter cannot be modified - part is locked" -msgstr "" - -#: part/models.py:3996 -msgid "Invalid choice for parameter value" -msgstr "" - -#: part/models.py:4047 -msgid "Parent Part" -msgstr "" - -#: part/models.py:4055 part/models.py:4170 part/models.py:4171 -msgid "Parameter Template" -msgstr "" - -#: part/models.py:4061 -msgid "Parameter Value" -msgstr "" - -#: part/models.py:4071 stock/serializers.py:718 -msgid "Optional note field" -msgstr "" - -#: part/models.py:4118 -msgid "Part Category Parameter Template" -msgstr "" - -#: part/models.py:4177 -msgid "Default Value" -msgstr "" - -#: part/models.py:4178 -msgid "Default Parameter Value" -msgstr "" - -#: part/models.py:4352 +#: part/models.py:3977 msgid "BOM item cannot be modified - assembly is locked" msgstr "" -#: part/models.py:4359 +#: part/models.py:3984 msgid "BOM item cannot be modified - variant assembly is locked" msgstr "" -#: part/models.py:4369 +#: part/models.py:3994 msgid "Select parent part" msgstr "" -#: part/models.py:4379 +#: part/models.py:4004 msgid "Sub part" msgstr "" -#: part/models.py:4380 +#: part/models.py:4005 msgid "Select part to be used in BOM" msgstr "" -#: part/models.py:4391 +#: part/models.py:4016 msgid "BOM quantity for this BOM item" msgstr "" -#: part/models.py:4397 +#: part/models.py:4022 msgid "This BOM item is optional" msgstr "" -#: part/models.py:4403 +#: part/models.py:4028 msgid "This BOM item is consumable (it is not tracked in build orders)" msgstr "" -#: part/models.py:4411 +#: part/models.py:4036 msgid "Setup Quantity" msgstr "" -#: part/models.py:4412 +#: part/models.py:4037 msgid "Extra required quantity for a build, to account for setup losses" msgstr "" -#: part/models.py:4420 +#: part/models.py:4045 msgid "Attrition" msgstr "" -#: part/models.py:4422 +#: part/models.py:4047 msgid "Estimated attrition for a build, expressed as a percentage (0-100)" msgstr "" -#: part/models.py:4433 +#: part/models.py:4058 msgid "Rounding Multiple" msgstr "" -#: part/models.py:4435 +#: part/models.py:4060 msgid "Round up required production quantity to nearest multiple of this value" msgstr "" -#: part/models.py:4443 +#: part/models.py:4068 msgid "BOM item reference" msgstr "" -#: part/models.py:4451 +#: part/models.py:4076 msgid "BOM item notes" msgstr "" -#: part/models.py:4457 +#: part/models.py:4082 msgid "Checksum" msgstr "" -#: part/models.py:4458 +#: part/models.py:4083 msgid "BOM line checksum" msgstr "" -#: part/models.py:4463 +#: part/models.py:4088 msgid "Validated" msgstr "" -#: part/models.py:4464 +#: part/models.py:4089 msgid "This BOM item has been validated" msgstr "" -#: part/models.py:4469 +#: part/models.py:4094 msgid "Gets inherited" msgstr "" -#: part/models.py:4470 +#: part/models.py:4095 msgid "This BOM item is inherited by BOMs for variant parts" msgstr "" -#: part/models.py:4476 +#: part/models.py:4101 msgid "Stock items for variant parts can be used for this BOM item" msgstr "" -#: part/models.py:4583 stock/models.py:925 +#: part/models.py:4208 stock/models.py:925 msgid "Quantity must be integer value for trackable parts" msgstr "" -#: part/models.py:4593 part/models.py:4595 +#: part/models.py:4218 part/models.py:4220 msgid "Sub part must be specified" msgstr "" -#: part/models.py:4746 +#: part/models.py:4371 msgid "BOM Item Substitute" msgstr "" -#: part/models.py:4767 +#: part/models.py:4392 msgid "Substitute part cannot be the same as the master part" msgstr "" -#: part/models.py:4780 +#: part/models.py:4405 msgid "Parent BOM item" msgstr "" -#: part/models.py:4788 +#: part/models.py:4413 msgid "Substitute part" msgstr "" -#: part/models.py:4804 +#: part/models.py:4429 msgid "Part 1" msgstr "" -#: part/models.py:4812 +#: part/models.py:4437 msgid "Part 2" msgstr "" -#: part/models.py:4813 +#: part/models.py:4438 msgid "Select Related Part" msgstr "" -#: part/models.py:4820 +#: part/models.py:4445 msgid "Note for this relationship" msgstr "" -#: part/models.py:4839 +#: part/models.py:4464 msgid "Part relationship cannot be created between a part and itself" msgstr "" -#: part/models.py:4844 +#: part/models.py:4469 msgid "Duplicate relationship already exists" msgstr "" -#: part/serializers.py:114 +#: part/serializers.py:113 msgid "Parent Category" msgstr "" -#: part/serializers.py:115 +#: part/serializers.py:114 msgid "Parent part category" msgstr "" -#: part/serializers.py:123 part/serializers.py:164 +#: part/serializers.py:122 part/serializers.py:163 msgid "Subcategories" msgstr "" -#: part/serializers.py:203 +#: part/serializers.py:202 msgid "Results" msgstr "" -#: part/serializers.py:204 +#: part/serializers.py:203 msgid "Number of results recorded against this template" msgstr "" -#: part/serializers.py:235 part/serializers.py:253 stock/serializers.py:643 +#: part/serializers.py:234 part/serializers.py:252 stock/serializers.py:643 msgid "Purchase currency of this stock item" msgstr "" -#: part/serializers.py:280 +#: part/serializers.py:279 msgid "File is not an image" msgstr "" -#: part/serializers.py:311 -msgid "Number of parts using this template" -msgstr "" - -#: part/serializers.py:471 +#: part/serializers.py:382 msgid "Original Part" msgstr "" -#: part/serializers.py:472 +#: part/serializers.py:383 msgid "Select original part to duplicate" msgstr "" -#: part/serializers.py:477 +#: part/serializers.py:388 msgid "Copy Image" msgstr "" -#: part/serializers.py:478 +#: part/serializers.py:389 msgid "Copy image from original part" msgstr "" -#: part/serializers.py:484 +#: part/serializers.py:395 msgid "Copy BOM" msgstr "" -#: part/serializers.py:485 +#: part/serializers.py:396 msgid "Copy bill of materials from original part" msgstr "" -#: part/serializers.py:491 +#: part/serializers.py:402 msgid "Copy Parameters" msgstr "" -#: part/serializers.py:492 +#: part/serializers.py:403 msgid "Copy parameter data from original part" msgstr "" -#: part/serializers.py:498 +#: part/serializers.py:409 msgid "Copy Notes" msgstr "" -#: part/serializers.py:499 +#: part/serializers.py:410 msgid "Copy notes from original part" msgstr "" -#: part/serializers.py:505 +#: part/serializers.py:416 msgid "Copy Tests" msgstr "" -#: part/serializers.py:506 +#: part/serializers.py:417 msgid "Copy test templates from original part" msgstr "" -#: part/serializers.py:524 +#: part/serializers.py:435 msgid "Initial Stock Quantity" msgstr "" -#: part/serializers.py:526 +#: part/serializers.py:437 msgid "Specify initial stock quantity for this Part. If quantity is zero, no stock is added." msgstr "" -#: part/serializers.py:533 +#: part/serializers.py:444 msgid "Initial Stock Location" msgstr "" -#: part/serializers.py:534 +#: part/serializers.py:445 msgid "Specify initial stock location for this Part" msgstr "" -#: part/serializers.py:551 +#: part/serializers.py:462 msgid "Select supplier (or leave blank to skip)" msgstr "" -#: part/serializers.py:567 +#: part/serializers.py:478 msgid "Select manufacturer (or leave blank to skip)" msgstr "" -#: part/serializers.py:577 +#: part/serializers.py:488 msgid "Manufacturer part number" msgstr "" -#: part/serializers.py:584 +#: part/serializers.py:495 msgid "Selected company is not a valid supplier" msgstr "" -#: part/serializers.py:593 +#: part/serializers.py:504 msgid "Selected company is not a valid manufacturer" msgstr "" -#: part/serializers.py:604 +#: part/serializers.py:515 msgid "Manufacturer part matching this MPN already exists" msgstr "" -#: part/serializers.py:611 +#: part/serializers.py:522 msgid "Supplier part matching this SKU already exists" msgstr "" -#: part/serializers.py:914 +#: part/serializers.py:799 msgid "Category Name" msgstr "" -#: part/serializers.py:943 +#: part/serializers.py:828 msgid "Building" msgstr "" -#: part/serializers.py:944 +#: part/serializers.py:829 msgid "Quantity of this part currently being in production" msgstr "" -#: part/serializers.py:951 +#: part/serializers.py:836 msgid "Outstanding quantity of this part scheduled to be built" msgstr "" -#: part/serializers.py:971 stock/serializers.py:1019 stock/serializers.py:1189 +#: part/serializers.py:856 stock/serializers.py:1019 stock/serializers.py:1189 #: users/ruleset.py:30 msgid "Stock Items" msgstr "" -#: part/serializers.py:975 +#: part/serializers.py:860 msgid "Revisions" msgstr "" -#: part/serializers.py:979 +#: part/serializers.py:864 msgid "Suppliers" msgstr "" -#: part/serializers.py:983 part/serializers.py:1297 +#: part/serializers.py:868 part/serializers.py:1162 #: templates/email/low_stock_notification.html:16 #: templates/email/part_event_notification.html:17 msgid "Total Stock" msgstr "" -#: part/serializers.py:991 +#: part/serializers.py:876 msgid "Unallocated Stock" msgstr "" -#: part/serializers.py:999 +#: part/serializers.py:884 msgid "Variant Stock" msgstr "" -#: part/serializers.py:1054 +#: part/serializers.py:943 msgid "Duplicate Part" msgstr "" -#: part/serializers.py:1055 +#: part/serializers.py:944 msgid "Copy initial data from another Part" msgstr "" -#: part/serializers.py:1061 +#: part/serializers.py:950 msgid "Initial Stock" msgstr "" -#: part/serializers.py:1062 +#: part/serializers.py:951 msgid "Create Part with initial stock quantity" msgstr "" -#: part/serializers.py:1068 +#: part/serializers.py:957 msgid "Supplier Information" msgstr "" -#: part/serializers.py:1069 +#: part/serializers.py:958 msgid "Add initial supplier information for this part" msgstr "" -#: part/serializers.py:1077 +#: part/serializers.py:966 msgid "Copy Category Parameters" msgstr "" -#: part/serializers.py:1078 +#: part/serializers.py:967 msgid "Copy parameter templates from selected part category" msgstr "" -#: part/serializers.py:1083 +#: part/serializers.py:972 msgid "Existing Image" msgstr "" -#: part/serializers.py:1084 +#: part/serializers.py:973 msgid "Filename of an existing part image" msgstr "" -#: part/serializers.py:1101 +#: part/serializers.py:990 msgid "Image file does not exist" msgstr "" -#: part/serializers.py:1269 +#: part/serializers.py:1134 msgid "Validate entire Bill of Materials" msgstr "" -#: part/serializers.py:1303 part/serializers.py:1769 +#: part/serializers.py:1168 part/serializers.py:1634 msgid "Can Build" msgstr "" -#: part/serializers.py:1320 +#: part/serializers.py:1185 msgid "Required for Build Orders" msgstr "" -#: part/serializers.py:1325 +#: part/serializers.py:1190 msgid "Allocated to Build Orders" msgstr "" -#: part/serializers.py:1332 +#: part/serializers.py:1197 msgid "Required for Sales Orders" msgstr "" -#: part/serializers.py:1336 +#: part/serializers.py:1201 msgid "Allocated to Sales Orders" msgstr "" -#: part/serializers.py:1475 +#: part/serializers.py:1340 msgid "Minimum Price" msgstr "" -#: part/serializers.py:1476 +#: part/serializers.py:1341 msgid "Override calculated value for minimum price" msgstr "" -#: part/serializers.py:1483 +#: part/serializers.py:1348 msgid "Minimum price currency" msgstr "" -#: part/serializers.py:1490 +#: part/serializers.py:1355 msgid "Maximum Price" msgstr "" -#: part/serializers.py:1491 +#: part/serializers.py:1356 msgid "Override calculated value for maximum price" msgstr "" -#: part/serializers.py:1498 +#: part/serializers.py:1363 msgid "Maximum price currency" msgstr "" -#: part/serializers.py:1527 +#: part/serializers.py:1392 msgid "Update" msgstr "" -#: part/serializers.py:1528 +#: part/serializers.py:1393 msgid "Update pricing for this part" msgstr "" -#: part/serializers.py:1551 +#: part/serializers.py:1416 #, python-brace-format msgid "Could not convert from provided currencies to {default_currency}" msgstr "" -#: part/serializers.py:1558 +#: part/serializers.py:1423 msgid "Minimum price must not be greater than maximum price" msgstr "" -#: part/serializers.py:1561 +#: part/serializers.py:1426 msgid "Maximum price must not be less than minimum price" msgstr "" -#: part/serializers.py:1715 +#: part/serializers.py:1580 msgid "Select the parent assembly" msgstr "" -#: part/serializers.py:1735 +#: part/serializers.py:1600 msgid "Select the component part" msgstr "" -#: part/serializers.py:1929 +#: part/serializers.py:1802 msgid "Select part to copy BOM from" msgstr "" -#: part/serializers.py:1937 +#: part/serializers.py:1810 msgid "Remove Existing Data" msgstr "" -#: part/serializers.py:1938 +#: part/serializers.py:1811 msgid "Remove existing BOM items before copying" msgstr "" -#: part/serializers.py:1943 +#: part/serializers.py:1816 msgid "Include Inherited" msgstr "" -#: part/serializers.py:1944 +#: part/serializers.py:1817 msgid "Include BOM items which are inherited from templated parts" msgstr "" -#: part/serializers.py:1949 +#: part/serializers.py:1822 msgid "Skip Invalid Rows" msgstr "" -#: part/serializers.py:1950 +#: part/serializers.py:1823 msgid "Enable this option to skip invalid rows" msgstr "" -#: part/serializers.py:1955 +#: part/serializers.py:1828 msgid "Copy Substitute Parts" msgstr "" -#: part/serializers.py:1956 +#: part/serializers.py:1829 msgid "Copy substitute parts when duplicate BOM items" msgstr "" @@ -6927,7 +6974,7 @@ msgstr "" #: plugin/builtin/events/auto_issue_orders.py:19 #: plugin/builtin/exporter/bom_exporter.py:73 #: plugin/builtin/exporter/inventree_exporter.py:17 -#: plugin/builtin/exporter/part_parameter_exporter.py:36 +#: plugin/builtin/exporter/parameter_exporter.py:32 #: plugin/builtin/exporter/stocktake_exporter.py:47 #: plugin/builtin/integration/core_notifications.py:25 #: plugin/builtin/integration/core_notifications.py:69 @@ -7041,23 +7088,19 @@ msgid "Include total quantity of each part in the BOM" msgstr "" #: plugin/builtin/exporter/bom_exporter.py:35 -#: plugin/builtin/exporter/part_parameter_exporter.py:17 msgid "Stock Data" msgstr "" #: plugin/builtin/exporter/bom_exporter.py:35 -#: plugin/builtin/exporter/part_parameter_exporter.py:17 msgid "Include part stock data" msgstr "" #: plugin/builtin/exporter/bom_exporter.py:39 -#: plugin/builtin/exporter/part_parameter_exporter.py:21 #: plugin/builtin/exporter/stocktake_exporter.py:20 msgid "Pricing Data" msgstr "" #: plugin/builtin/exporter/bom_exporter.py:39 -#: plugin/builtin/exporter/part_parameter_exporter.py:21 #: plugin/builtin/exporter/stocktake_exporter.py:20 msgid "Include part pricing data" msgstr "" @@ -7144,12 +7187,20 @@ msgstr "" msgid "Provides support for exporting data from InvenTree" msgstr "" -#: plugin/builtin/exporter/part_parameter_exporter.py:33 -msgid "Part Parameter Exporter" +#: plugin/builtin/exporter/parameter_exporter.py:16 +msgid "Exclude Inactive" msgstr "" -#: plugin/builtin/exporter/part_parameter_exporter.py:34 -msgid "Exporter for part parameter data" +#: plugin/builtin/exporter/parameter_exporter.py:17 +msgid "Exclude parameters which are inactive" +msgstr "" + +#: plugin/builtin/exporter/parameter_exporter.py:29 +msgid "Parameter Exporter" +msgstr "" + +#: plugin/builtin/exporter/parameter_exporter.py:30 +msgid "Exporter for model parameter data" msgstr "" #: plugin/builtin/exporter/stocktake_exporter.py:25 @@ -8079,19 +8130,19 @@ msgstr "" msgid "No result" msgstr "" -#: report/templatetags/report.py:167 +#: report/templatetags/report.py:169 msgid "Asset file does not exist" msgstr "" -#: report/templatetags/report.py:224 report/templatetags/report.py:300 +#: report/templatetags/report.py:226 report/templatetags/report.py:302 msgid "Image file not found" msgstr "" -#: report/templatetags/report.py:325 +#: report/templatetags/report.py:327 msgid "part_image tag requires a Part instance" msgstr "" -#: report/templatetags/report.py:362 +#: report/templatetags/report.py:383 msgid "company_image tag requires a Company instance" msgstr "" @@ -8455,115 +8506,119 @@ msgstr "" msgid "Quantity does not match serial numbers" msgstr "" -#: stock/models.py:2012 stock/models.py:2917 +#: stock/models.py:1912 +msgid "Cannot assign stock to structural location" +msgstr "" + +#: stock/models.py:2029 stock/models.py:2934 msgid "Test template does not exist" msgstr "" -#: stock/models.py:2030 +#: stock/models.py:2047 msgid "Stock item has been assigned to a sales order" msgstr "" -#: stock/models.py:2034 +#: stock/models.py:2051 msgid "Stock item is installed in another item" msgstr "" -#: stock/models.py:2037 +#: stock/models.py:2054 msgid "Stock item contains other items" msgstr "" -#: stock/models.py:2040 +#: stock/models.py:2057 msgid "Stock item has been assigned to a customer" msgstr "" -#: stock/models.py:2043 stock/models.py:2226 +#: stock/models.py:2060 stock/models.py:2243 msgid "Stock item is currently in production" msgstr "" -#: stock/models.py:2046 +#: stock/models.py:2063 msgid "Serialized stock cannot be merged" msgstr "" -#: stock/models.py:2053 stock/serializers.py:1462 +#: stock/models.py:2070 stock/serializers.py:1462 msgid "Duplicate stock items" msgstr "" -#: stock/models.py:2057 +#: stock/models.py:2074 msgid "Stock items must refer to the same part" msgstr "" -#: stock/models.py:2065 +#: stock/models.py:2082 msgid "Stock items must refer to the same supplier part" msgstr "" -#: stock/models.py:2070 +#: stock/models.py:2087 msgid "Stock status codes must match" msgstr "" -#: stock/models.py:2349 +#: stock/models.py:2366 msgid "StockItem cannot be moved as it is not in stock" msgstr "" -#: stock/models.py:2818 +#: stock/models.py:2835 msgid "Stock Item Tracking" msgstr "" -#: stock/models.py:2849 +#: stock/models.py:2866 msgid "Entry notes" msgstr "" -#: stock/models.py:2889 +#: stock/models.py:2906 msgid "Stock Item Test Result" msgstr "" -#: stock/models.py:2920 +#: stock/models.py:2937 msgid "Value must be provided for this test" msgstr "" -#: stock/models.py:2924 +#: stock/models.py:2941 msgid "Attachment must be uploaded for this test" msgstr "" -#: stock/models.py:2929 +#: stock/models.py:2946 msgid "Invalid value for this test" msgstr "" -#: stock/models.py:2953 +#: stock/models.py:2970 msgid "Test result" msgstr "" -#: stock/models.py:2960 +#: stock/models.py:2977 msgid "Test output value" msgstr "" -#: stock/models.py:2968 stock/serializers.py:248 +#: stock/models.py:2985 stock/serializers.py:248 msgid "Test result attachment" msgstr "" -#: stock/models.py:2972 +#: stock/models.py:2989 msgid "Test notes" msgstr "" -#: stock/models.py:2980 +#: stock/models.py:2997 msgid "Test station" msgstr "" -#: stock/models.py:2981 +#: stock/models.py:2998 msgid "The identifier of the test station where the test was performed" msgstr "" -#: stock/models.py:2987 +#: stock/models.py:3004 msgid "Started" msgstr "" -#: stock/models.py:2988 +#: stock/models.py:3005 msgid "The timestamp of the test start" msgstr "" -#: stock/models.py:2994 +#: stock/models.py:3011 msgid "Finished" msgstr "" -#: stock/models.py:2995 +#: stock/models.py:3012 msgid "The timestamp of the test finish" msgstr "" @@ -8677,8 +8732,8 @@ msgstr "" msgid "Quantity must not exceed available stock quantity ({q})" msgstr "" -#: stock/serializers.py:711 stock/serializers.py:1419 stock/serializers.py:1732 -#: stock/serializers.py:1781 +#: stock/serializers.py:711 stock/serializers.py:1419 stock/serializers.py:1740 +#: stock/serializers.py:1789 msgid "Destination stock location" msgstr "" @@ -8834,19 +8889,19 @@ msgstr "" msgid "Stock transaction notes" msgstr "" -#: stock/serializers.py:1787 +#: stock/serializers.py:1795 msgid "Merge into existing stock" msgstr "" -#: stock/serializers.py:1788 +#: stock/serializers.py:1796 msgid "Merge returned items into existing stock items if possible" msgstr "" -#: stock/serializers.py:1831 +#: stock/serializers.py:1839 msgid "Next Serial Number" msgstr "" -#: stock/serializers.py:1837 +#: stock/serializers.py:1845 msgid "Previous Serial Number" msgstr "" @@ -8902,83 +8957,87 @@ msgstr "" msgid "Stock manually removed" msgstr "" -#: stock/status_codes.py:57 +#: stock/status_codes.py:56 +msgid "Serialized stock items" +msgstr "" + +#: stock/status_codes.py:58 msgid "Returned to stock" msgstr "" -#: stock/status_codes.py:60 +#: stock/status_codes.py:61 msgid "Location changed" msgstr "" -#: stock/status_codes.py:61 +#: stock/status_codes.py:62 msgid "Stock updated" msgstr "" -#: stock/status_codes.py:64 +#: stock/status_codes.py:65 msgid "Installed into assembly" msgstr "" -#: stock/status_codes.py:65 +#: stock/status_codes.py:66 msgid "Removed from assembly" msgstr "" -#: stock/status_codes.py:67 +#: stock/status_codes.py:68 msgid "Installed component item" msgstr "" -#: stock/status_codes.py:68 +#: stock/status_codes.py:69 msgid "Removed component item" msgstr "" -#: stock/status_codes.py:71 +#: stock/status_codes.py:72 msgid "Split from parent item" msgstr "" -#: stock/status_codes.py:72 +#: stock/status_codes.py:73 msgid "Split child item" msgstr "" -#: stock/status_codes.py:75 +#: stock/status_codes.py:76 msgid "Merged stock items" msgstr "" -#: stock/status_codes.py:78 +#: stock/status_codes.py:79 msgid "Converted to variant" msgstr "" -#: stock/status_codes.py:81 +#: stock/status_codes.py:82 msgid "Build order output created" msgstr "" -#: stock/status_codes.py:82 +#: stock/status_codes.py:83 msgid "Build order output completed" msgstr "" -#: stock/status_codes.py:83 +#: stock/status_codes.py:84 msgid "Build order output rejected" msgstr "" -#: stock/status_codes.py:84 +#: stock/status_codes.py:85 msgid "Consumed by build order" msgstr "" -#: stock/status_codes.py:87 +#: stock/status_codes.py:88 msgid "Shipped against Sales Order" msgstr "" -#: stock/status_codes.py:90 +#: stock/status_codes.py:91 msgid "Received against Purchase Order" msgstr "" -#: stock/status_codes.py:93 +#: stock/status_codes.py:94 msgid "Returned against Return Order" msgstr "" -#: stock/status_codes.py:96 +#: stock/status_codes.py:97 msgid "Sent to customer" msgstr "" -#: stock/status_codes.py:97 +#: stock/status_codes.py:98 msgid "Returned from customer" msgstr "" diff --git a/src/backend/InvenTree/locale/fi/LC_MESSAGES/django.po b/src/backend/InvenTree/locale/fi/LC_MESSAGES/django.po index 009922ad84..86a703b70e 100644 --- a/src/backend/InvenTree/locale/fi/LC_MESSAGES/django.po +++ b/src/backend/InvenTree/locale/fi/LC_MESSAGES/django.po @@ -2,8 +2,8 @@ msgid "" msgstr "" "Project-Id-Version: inventree\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-11-19 04:55+0000\n" -"PO-Revision-Date: 2025-11-19 04:59\n" +"POT-Creation-Date: 2025-12-07 07:33+0000\n" +"PO-Revision-Date: 2025-12-07 07:36\n" "Last-Translator: \n" "Language-Team: Finnish\n" "Language: fi_FI\n" @@ -57,7 +57,7 @@ msgstr "" msgid "This field must be unique." msgstr "" -#: InvenTree/api.py:775 +#: InvenTree/api.py:803 msgid "User does not have permission to view this model" msgstr "Käyttäjän oikeudet eivät riitä kohteen tarkastelemiseen" @@ -81,22 +81,22 @@ msgstr "Annettu ensisijainen sähköpostiosoite ei kelpaa." msgid "The provided email domain is not approved." msgstr "Annetun sähköpostiosoitteen verkkotunnusta ei hyväksytä." -#: InvenTree/conversion.py:166 +#: InvenTree/conversion.py:240 #, python-brace-format msgid "Invalid unit provided ({unit})" msgstr "" -#: InvenTree/conversion.py:183 +#: InvenTree/conversion.py:257 msgid "No value provided" msgstr "Arvoa ei annettu" -#: InvenTree/conversion.py:210 +#: InvenTree/conversion.py:284 #, python-brace-format msgid "Could not convert {original} to {unit}" msgstr "" -#: InvenTree/conversion.py:212 InvenTree/conversion.py:226 -#: InvenTree/helpers.py:597 order/models.py:720 order/models.py:1015 +#: InvenTree/conversion.py:286 InvenTree/conversion.py:300 +#: InvenTree/helpers.py:597 order/models.py:721 order/models.py:1016 msgid "Invalid quantity provided" msgstr "Annettu määrä on virheellinen" @@ -112,11 +112,11 @@ msgstr "Anna päivämäärä" msgid "Invalid decimal value" msgstr "" -#: InvenTree/fields.py:218 InvenTree/models.py:1067 build/serializers.py:509 -#: build/serializers.py:580 build/serializers.py:1788 company/models.py:857 -#: order/models.py:1780 +#: InvenTree/fields.py:218 InvenTree/models.py:1228 build/serializers.py:517 +#: build/serializers.py:588 build/serializers.py:1796 company/models.py:811 +#: order/models.py:1781 #: report/templates/report/inventree_build_order_report.html:172 -#: stock/models.py:2848 stock/models.py:2972 stock/serializers.py:717 +#: stock/models.py:2865 stock/models.py:2989 stock/serializers.py:717 #: stock/serializers.py:893 stock/serializers.py:1035 stock/serializers.py:1336 #: stock/serializers.py:1425 stock/serializers.py:1624 msgid "Notes" @@ -171,35 +171,35 @@ msgstr "" msgid "Data contains prohibited markdown content" msgstr "" -#: InvenTree/helpers_model.py:133 +#: InvenTree/helpers_model.py:134 msgid "Connection error" msgstr "Yhteysvirhe" -#: InvenTree/helpers_model.py:138 InvenTree/helpers_model.py:145 +#: InvenTree/helpers_model.py:139 InvenTree/helpers_model.py:146 msgid "Server responded with invalid status code" msgstr "Palvelin vastasi virheellisellä tilakoodilla" -#: InvenTree/helpers_model.py:141 +#: InvenTree/helpers_model.py:142 msgid "Exception occurred" msgstr "" -#: InvenTree/helpers_model.py:151 +#: InvenTree/helpers_model.py:152 msgid "Server responded with invalid Content-Length value" msgstr "" -#: InvenTree/helpers_model.py:154 +#: InvenTree/helpers_model.py:155 msgid "Image size is too large" msgstr "Kuva on liian iso" -#: InvenTree/helpers_model.py:166 +#: InvenTree/helpers_model.py:167 msgid "Image download exceeded maximum size" msgstr "Kuvan lataus ylitti enimmäiskoon" -#: InvenTree/helpers_model.py:171 +#: InvenTree/helpers_model.py:172 msgid "Remote server returned empty response" msgstr "Etäpalvelin palautti tyhjän vastauksen" -#: InvenTree/helpers_model.py:179 +#: InvenTree/helpers_model.py:180 msgid "Supplied URL is not a valid image file" msgstr "Annettu URL ei ole kelvollinen kuvatiedosto" @@ -207,7 +207,7 @@ msgstr "Annettu URL ei ole kelvollinen kuvatiedosto" msgid "Log in to the app" msgstr "" -#: InvenTree/magic_login.py:41 company/models.py:172 users/serializers.py:198 +#: InvenTree/magic_login.py:41 company/models.py:173 users/serializers.py:198 msgid "Email" msgstr "Sähköposti" @@ -215,160 +215,176 @@ msgstr "Sähköposti" msgid "You must enable two-factor authentication before doing anything else." msgstr "" -#: InvenTree/models.py:111 +#: InvenTree/models.py:114 msgid "Error running plugin validation" msgstr "" -#: InvenTree/models.py:192 +#: InvenTree/models.py:195 msgid "Metadata must be a python dict object" msgstr "Metatietojen tulee olla python dict objekti" -#: InvenTree/models.py:198 +#: InvenTree/models.py:201 msgid "Plugin Metadata" msgstr "Liitännäisen metadata" -#: InvenTree/models.py:199 +#: InvenTree/models.py:202 msgid "JSON metadata field, for use by external plugins" msgstr "JSON metadatakenttä, ulkoisten liitännäisten käyttöön" -#: InvenTree/models.py:382 +#: InvenTree/models.py:385 msgid "Improperly formatted pattern" msgstr "Virheellisesti muotoiltu malli" -#: InvenTree/models.py:389 +#: InvenTree/models.py:392 msgid "Unknown format key specified" msgstr "" -#: InvenTree/models.py:395 +#: InvenTree/models.py:398 msgid "Missing required format key" msgstr "" -#: InvenTree/models.py:406 +#: InvenTree/models.py:409 msgid "Reference field cannot be empty" msgstr "Viitekenttä ei voi olla tyhjä" -#: InvenTree/models.py:414 +#: InvenTree/models.py:417 msgid "Reference must match required pattern" msgstr "" -#: InvenTree/models.py:445 +#: InvenTree/models.py:448 msgid "Reference number is too large" msgstr "Viitenumero on liian suuri" -#: InvenTree/models.py:743 +#: InvenTree/models.py:896 msgid "Invalid choice" msgstr "Virheellinen valinta" -#: InvenTree/models.py:856 common/models.py:1410 common/models.py:1837 -#: common/models.py:2096 common/models.py:2221 common/serializers.py:535 -#: company/models.py:615 generic/states/serializers.py:20 machine/models.py:25 -#: part/models.py:1039 part/models.py:3850 plugin/models.py:54 +#: InvenTree/models.py:1017 common/models.py:1414 common/models.py:1841 +#: common/models.py:2102 common/models.py:2227 common/models.py:2494 +#: common/serializers.py:539 generic/states/serializers.py:20 +#: machine/models.py:25 part/models.py:1127 plugin/models.py:54 #: report/models.py:216 stock/models.py:84 msgid "Name" msgstr "Nimi" -#: InvenTree/models.py:862 build/models.py:252 common/models.py:171 -#: common/models.py:2228 common/models.py:2341 company/models.py:543 -#: company/models.py:848 order/models.py:442 order/models.py:1825 -#: part/models.py:1062 part/models.py:3865 report/models.py:222 +#: InvenTree/models.py:1023 build/models.py:253 common/models.py:175 +#: common/models.py:2234 common/models.py:2347 common/models.py:2509 +#: company/models.py:545 company/models.py:802 order/models.py:443 +#: order/models.py:1826 part/models.py:1150 report/models.py:222 #: report/models.py:815 report/models.py:841 #: report/templates/report/inventree_build_order_report.html:117 #: stock/models.py:90 msgid "Description" msgstr "Kuvaus" -#: InvenTree/models.py:863 stock/models.py:91 +#: InvenTree/models.py:1024 stock/models.py:91 msgid "Description (optional)" msgstr "Kuvaus (valinnainen)" -#: InvenTree/models.py:878 common/models.py:2394 +#: InvenTree/models.py:1039 common/models.py:2815 msgid "Path" msgstr "Polku" -#: InvenTree/models.py:983 +#: InvenTree/models.py:1144 msgid "Duplicate names cannot exist under the same parent" msgstr "" -#: InvenTree/models.py:1067 +#: InvenTree/models.py:1228 msgid "Markdown notes (optional)" msgstr "" -#: InvenTree/models.py:1098 +#: InvenTree/models.py:1259 msgid "Barcode Data" msgstr "Viivakoodin Tiedot" -#: InvenTree/models.py:1099 +#: InvenTree/models.py:1260 msgid "Third party barcode data" msgstr "" -#: InvenTree/models.py:1105 +#: InvenTree/models.py:1266 msgid "Barcode Hash" msgstr "" -#: InvenTree/models.py:1106 +#: InvenTree/models.py:1267 msgid "Unique hash of barcode data" msgstr "" -#: InvenTree/models.py:1187 +#: InvenTree/models.py:1348 msgid "Existing barcode found" msgstr "" -#: InvenTree/models.py:1269 +#: InvenTree/models.py:1430 msgid "Task Failure" msgstr "" -#: InvenTree/models.py:1270 +#: InvenTree/models.py:1431 #, python-brace-format msgid "Background worker task '{f}' failed after {n} attempts" msgstr "" -#: InvenTree/models.py:1297 +#: InvenTree/models.py:1458 msgid "Server Error" msgstr "Palvelinvirhe" -#: InvenTree/models.py:1298 +#: InvenTree/models.py:1459 msgid "An error has been logged by the server." msgstr "" -#: InvenTree/models.py:1340 common/models.py:1748 +#: InvenTree/models.py:1501 common/models.py:1752 #: report/templates/report/inventree_bill_of_materials_report.html:126 #: report/templates/report/inventree_bill_of_materials_report.html:148 #: report/templates/report/inventree_return_order_report.html:35 msgid "Image" msgstr "Kuva" -#: InvenTree/serializers.py:253 part/models.py:4571 +#: InvenTree/serializers.py:255 part/models.py:4196 msgid "Must be a valid number" msgstr "Täytyy olla kelvollinen luku" -#: InvenTree/serializers.py:295 company/models.py:214 part/models.py:3285 +#: InvenTree/serializers.py:297 company/models.py:215 part/models.py:3349 msgid "Currency" msgstr "Valuutta" -#: InvenTree/serializers.py:298 part/serializers.py:1385 +#: InvenTree/serializers.py:300 part/serializers.py:1250 msgid "Select currency from available options" msgstr "Valitse valuutta käytettävissä olevista vaihtoehdoista" -#: InvenTree/serializers.py:653 +#: InvenTree/serializers.py:654 +msgid "This field may not be null." +msgstr "" + +#: InvenTree/serializers.py:660 msgid "Invalid value" msgstr "Virheellinen arvo" -#: InvenTree/serializers.py:690 +#: InvenTree/serializers.py:697 msgid "Remote Image" msgstr "" -#: InvenTree/serializers.py:691 +#: InvenTree/serializers.py:698 msgid "URL of remote image file" msgstr "Kuvatiedoston URL" -#: InvenTree/serializers.py:709 +#: InvenTree/serializers.py:716 msgid "Downloading images from remote URL is not enabled" msgstr "Kuvien lataaminen ei ole käytössä" -#: InvenTree/serializers.py:716 +#: InvenTree/serializers.py:723 msgid "Failed to download image from remote URL" msgstr "" +#: InvenTree/serializers.py:806 +msgid "Invalid content type format" +msgstr "" + +#: InvenTree/serializers.py:809 +msgid "Content type not found" +msgstr "" + +#: InvenTree/serializers.py:815 +msgid "Content type does not match required mixin class" +msgstr "" + #: InvenTree/setting/locales.py:20 msgid "Arabic" msgstr "" @@ -537,30 +553,30 @@ msgstr "" msgid "Not a valid currency code" msgstr "" -#: build/api.py:54 order/api.py:111 order/api.py:270 order/api.py:1373 -#: order/serializers.py:132 +#: build/api.py:54 order/api.py:116 order/api.py:275 order/api.py:1378 +#: order/serializers.py:133 msgid "Order Status" msgstr "" -#: build/api.py:80 build/models.py:264 +#: build/api.py:80 build/models.py:265 msgid "Parent Build" msgstr "" -#: build/api.py:84 build/api.py:831 order/api.py:547 order/api.py:770 -#: order/api.py:1174 order/api.py:1449 stock/api.py:573 +#: build/api.py:84 build/api.py:837 order/api.py:553 order/api.py:776 +#: order/api.py:1179 order/api.py:1454 stock/api.py:573 msgid "Include Variants" msgstr "" -#: build/api.py:100 build/api.py:466 build/api.py:845 build/models.py:270 -#: build/serializers.py:1225 build/serializers.py:1356 -#: build/serializers.py:1427 company/models.py:1067 company/serializers.py:445 -#: order/api.py:298 order/api.py:302 order/api.py:929 order/api.py:1187 -#: order/api.py:1190 order/models.py:1941 order/models.py:2108 -#: order/models.py:2109 part/api.py:1233 part/api.py:1236 part/api.py:1302 -#: part/api.py:1589 part/models.py:472 part/models.py:3296 part/models.py:3439 -#: part/models.py:3497 part/models.py:3518 part/models.py:3540 -#: part/models.py:3679 part/models.py:4046 part/models.py:4368 -#: part/models.py:4787 part/serializers.py:1928 +#: build/api.py:100 build/api.py:472 build/api.py:851 build/models.py:271 +#: build/serializers.py:1233 build/serializers.py:1364 +#: build/serializers.py:1435 company/models.py:1021 company/serializers.py:490 +#: order/api.py:303 order/api.py:307 order/api.py:934 order/api.py:1192 +#: order/api.py:1195 order/models.py:1942 order/models.py:2109 +#: order/models.py:2110 part/api.py:1160 part/api.py:1163 part/api.py:1314 +#: part/models.py:550 part/models.py:3360 part/models.py:3503 +#: part/models.py:3561 part/models.py:3582 part/models.py:3604 +#: part/models.py:3743 part/models.py:3993 part/models.py:4412 +#: part/serializers.py:1801 #: report/templates/report/inventree_bill_of_materials_report.html:110 #: report/templates/report/inventree_bill_of_materials_report.html:137 #: report/templates/report/inventree_build_order_report.html:109 @@ -580,9 +596,9 @@ msgstr "" msgid "Part" msgstr "Osa" -#: build/api.py:120 build/api.py:123 build/serializers.py:1438 part/api.py:980 -#: part/api.py:1316 part/api.py:1600 part/models.py:1080 part/models.py:3568 -#: part/models.py:4162 part/serializers.py:1752 stock/api.py:869 +#: build/api.py:120 build/api.py:123 build/serializers.py:1446 part/api.py:975 +#: part/api.py:1325 part/models.py:435 part/models.py:1168 part/models.py:3632 +#: part/serializers.py:1617 stock/api.py:869 msgid "Category" msgstr "Kategoria" @@ -590,7 +606,7 @@ msgstr "Kategoria" msgid "Ancestor Build" msgstr "" -#: build/api.py:152 order/api.py:129 +#: build/api.py:152 order/api.py:134 msgid "Assigned to me" msgstr "" @@ -638,134 +654,134 @@ msgstr "" msgid "Completed after" msgstr "" -#: build/api.py:249 order/api.py:226 +#: build/api.py:249 order/api.py:231 msgid "Min Date" msgstr "" -#: build/api.py:272 order/api.py:245 +#: build/api.py:272 order/api.py:250 msgid "Max Date" msgstr "" -#: build/api.py:297 build/api.py:300 part/api.py:217 stock/api.py:961 +#: build/api.py:297 build/api.py:300 part/api.py:212 stock/api.py:961 msgid "Exclude Tree" msgstr "" -#: build/api.py:405 +#: build/api.py:411 msgid "Build must be cancelled before it can be deleted" msgstr "" -#: build/api.py:449 build/serializers.py:1374 part/models.py:4402 +#: build/api.py:455 build/serializers.py:1382 part/models.py:4027 msgid "Consumable" msgstr "" -#: build/api.py:452 build/serializers.py:1377 part/models.py:4396 +#: build/api.py:458 build/serializers.py:1385 part/models.py:4021 msgid "Optional" msgstr "" -#: build/api.py:455 build/serializers.py:1415 common/setting/system.py:456 -#: part/models.py:1202 part/serializers.py:1714 part/serializers.py:1725 +#: build/api.py:461 build/serializers.py:1423 common/setting/system.py:456 +#: part/models.py:1290 part/serializers.py:1579 part/serializers.py:1590 #: stock/api.py:639 msgid "Assembly" msgstr "" -#: build/api.py:458 +#: build/api.py:464 msgid "Tracked" msgstr "" -#: build/api.py:461 build/serializers.py:1380 part/models.py:1220 +#: build/api.py:467 build/serializers.py:1388 part/models.py:1308 msgid "Testable" msgstr "" -#: build/api.py:471 order/api.py:993 order/api.py:1363 +#: build/api.py:477 order/api.py:998 order/api.py:1368 msgid "Order Outstanding" msgstr "" -#: build/api.py:481 build/serializers.py:1464 order/api.py:952 +#: build/api.py:487 build/serializers.py:1472 order/api.py:957 msgid "Allocated" msgstr "" -#: build/api.py:490 build/models.py:1672 build/serializers.py:1393 +#: build/api.py:496 build/models.py:1673 build/serializers.py:1401 msgid "Consumed" msgstr "" -#: build/api.py:499 company/models.py:912 company/serializers.py:440 +#: build/api.py:505 company/models.py:866 company/serializers.py:467 #: templates/email/build_order_required_stock.html:19 #: templates/email/low_stock_notification.html:17 #: templates/email/part_event_notification.html:18 msgid "Available" msgstr "Saatavilla" -#: build/api.py:523 build/serializers.py:1466 company/serializers.py:437 -#: order/serializers.py:1281 part/serializers.py:959 part/serializers.py:1306 -#: part/serializers.py:1761 +#: build/api.py:529 build/serializers.py:1474 company/serializers.py:464 +#: order/serializers.py:1295 part/serializers.py:844 part/serializers.py:1171 +#: part/serializers.py:1626 msgid "On Order" msgstr "" -#: build/api.py:868 build/models.py:117 order/models.py:1974 +#: build/api.py:874 build/models.py:118 order/models.py:1975 #: report/templates/report/inventree_build_order_report.html:105 #: stock/serializers.py:93 templates/email/build_order_completed.html:16 #: templates/email/overdue_build_order.html:15 msgid "Build Order" msgstr "" -#: build/api.py:882 build/api.py:886 build/serializers.py:372 -#: build/serializers.py:497 build/serializers.py:567 build/serializers.py:1251 -#: build/serializers.py:1256 order/api.py:1234 order/api.py:1239 -#: order/serializers.py:833 order/serializers.py:973 order/serializers.py:2042 +#: build/api.py:888 build/api.py:892 build/serializers.py:380 +#: build/serializers.py:505 build/serializers.py:575 build/serializers.py:1259 +#: build/serializers.py:1264 order/api.py:1239 order/api.py:1244 +#: order/serializers.py:844 order/serializers.py:984 order/serializers.py:2059 #: stock/api.py:987 stock/serializers.py:111 stock/serializers.py:601 #: stock/serializers.py:710 stock/serializers.py:888 stock/serializers.py:1418 -#: stock/serializers.py:1731 stock/serializers.py:1780 +#: stock/serializers.py:1739 stock/serializers.py:1788 #: templates/email/stale_stock_notification.html:18 users/models.py:549 msgid "Location" msgstr "Sijainti" -#: build/api.py:894 +#: build/api.py:900 msgid "Output" msgstr "" -#: build/api.py:896 +#: build/api.py:902 msgid "Filter by output stock item ID. Use 'null' to find uninstalled build items." msgstr "" -#: build/models.py:118 users/ruleset.py:31 +#: build/models.py:119 users/ruleset.py:31 msgid "Build Orders" msgstr "" -#: build/models.py:168 +#: build/models.py:169 msgid "Assembly BOM has not been validated" msgstr "" -#: build/models.py:175 +#: build/models.py:176 msgid "Build order cannot be created for an inactive part" msgstr "" -#: build/models.py:182 +#: build/models.py:183 msgid "Build order cannot be created for an unlocked part" msgstr "" -#: build/models.py:200 +#: build/models.py:201 msgid "Build orders can only be externally fulfilled for purchaseable parts" msgstr "" -#: build/models.py:207 order/models.py:369 +#: build/models.py:208 order/models.py:370 msgid "Responsible user or group must be specified" msgstr "" -#: build/models.py:212 +#: build/models.py:213 msgid "Build order part cannot be changed" msgstr "" -#: build/models.py:217 order/models.py:382 +#: build/models.py:218 order/models.py:383 msgid "Target date must be after start date" msgstr "" -#: build/models.py:245 +#: build/models.py:246 msgid "Build Order Reference" msgstr "" -#: build/models.py:246 build/serializers.py:1371 order/models.py:614 -#: order/models.py:1311 order/models.py:1773 order/models.py:2712 -#: part/models.py:4442 +#: build/models.py:247 build/serializers.py:1379 order/models.py:615 +#: order/models.py:1312 order/models.py:1774 order/models.py:2713 +#: part/models.py:4067 #: report/templates/report/inventree_bill_of_materials_report.html:139 #: report/templates/report/inventree_purchase_order_report.html:35 #: report/templates/report/inventree_return_order_report.html:26 @@ -773,230 +789,230 @@ msgstr "" msgid "Reference" msgstr "" -#: build/models.py:255 +#: build/models.py:256 msgid "Brief description of the build (optional)" msgstr "" -#: build/models.py:265 +#: build/models.py:266 msgid "BuildOrder to which this build is allocated" msgstr "" -#: build/models.py:274 +#: build/models.py:275 msgid "Select part to build" msgstr "" -#: build/models.py:279 +#: build/models.py:280 msgid "Sales Order Reference" msgstr "" -#: build/models.py:284 +#: build/models.py:285 msgid "SalesOrder to which this build is allocated" msgstr "" -#: build/models.py:289 build/serializers.py:1097 +#: build/models.py:290 build/serializers.py:1105 msgid "Source Location" msgstr "" -#: build/models.py:295 +#: build/models.py:296 msgid "Select location to take stock from for this build (leave blank to take from any stock location)" msgstr "" -#: build/models.py:301 +#: build/models.py:302 msgid "External Build" msgstr "" -#: build/models.py:302 +#: build/models.py:303 msgid "This build order is fulfilled externally" msgstr "" -#: build/models.py:307 +#: build/models.py:308 msgid "Destination Location" msgstr "" -#: build/models.py:312 +#: build/models.py:313 msgid "Select location where the completed items will be stored" msgstr "" -#: build/models.py:316 +#: build/models.py:317 msgid "Build Quantity" msgstr "" -#: build/models.py:319 +#: build/models.py:320 msgid "Number of stock items to build" msgstr "" -#: build/models.py:323 +#: build/models.py:324 msgid "Completed items" msgstr "" -#: build/models.py:325 +#: build/models.py:326 msgid "Number of stock items which have been completed" msgstr "" -#: build/models.py:329 +#: build/models.py:330 msgid "Build Status" msgstr "" -#: build/models.py:334 +#: build/models.py:335 msgid "Build status code" msgstr "" -#: build/models.py:343 build/serializers.py:359 order/serializers.py:849 +#: build/models.py:344 build/serializers.py:367 order/serializers.py:860 #: stock/models.py:1100 stock/serializers.py:85 stock/serializers.py:1591 msgid "Batch Code" msgstr "" -#: build/models.py:347 build/serializers.py:360 +#: build/models.py:348 build/serializers.py:368 msgid "Batch code for this build output" msgstr "" -#: build/models.py:351 order/models.py:479 order/serializers.py:186 -#: part/models.py:1283 +#: build/models.py:352 order/models.py:480 order/serializers.py:193 +#: part/models.py:1371 msgid "Creation Date" msgstr "" -#: build/models.py:357 +#: build/models.py:358 msgid "Build start date" msgstr "" -#: build/models.py:358 +#: build/models.py:359 msgid "Scheduled start date for this build order" msgstr "" -#: build/models.py:364 +#: build/models.py:365 msgid "Target completion date" msgstr "" -#: build/models.py:366 +#: build/models.py:367 msgid "Target date for build completion. Build will be overdue after this date." msgstr "" -#: build/models.py:371 order/models.py:667 order/models.py:2751 +#: build/models.py:372 order/models.py:668 order/models.py:2752 msgid "Completion Date" msgstr "" -#: build/models.py:379 +#: build/models.py:380 msgid "completed by" msgstr "" -#: build/models.py:388 +#: build/models.py:389 msgid "Issued by" msgstr "" -#: build/models.py:389 +#: build/models.py:390 msgid "User who issued this build order" msgstr "" -#: build/models.py:398 common/models.py:180 order/api.py:179 -#: order/models.py:504 part/models.py:1300 +#: build/models.py:399 common/models.py:184 order/api.py:184 +#: order/models.py:505 part/models.py:1388 #: report/templates/report/inventree_build_order_report.html:158 msgid "Responsible" msgstr "" -#: build/models.py:399 +#: build/models.py:400 msgid "User or group responsible for this build order" msgstr "" -#: build/models.py:404 stock/models.py:1093 +#: build/models.py:405 stock/models.py:1093 msgid "External Link" msgstr "Ulkoinen linkki" -#: build/models.py:406 common/models.py:1984 part/models.py:1114 +#: build/models.py:407 common/models.py:1990 part/models.py:1202 #: stock/models.py:1095 msgid "Link to external URL" msgstr "Linkki ulkoiseen URLiin" -#: build/models.py:411 +#: build/models.py:412 msgid "Build Priority" msgstr "" -#: build/models.py:414 +#: build/models.py:415 msgid "Priority of this build order" msgstr "" -#: build/models.py:422 common/models.py:150 common/models.py:164 -#: order/api.py:165 order/models.py:451 order/models.py:1805 +#: build/models.py:423 common/models.py:154 common/models.py:168 +#: order/api.py:170 order/models.py:452 order/models.py:1806 msgid "Project Code" msgstr "" -#: build/models.py:423 +#: build/models.py:424 msgid "Project code for this build order" msgstr "" -#: build/models.py:676 +#: build/models.py:677 msgid "Cannot complete build order with open child builds" msgstr "" -#: build/models.py:681 +#: build/models.py:682 msgid "Cannot complete build order with incomplete outputs" msgstr "" -#: build/models.py:700 build/models.py:830 +#: build/models.py:701 build/models.py:831 msgid "Failed to offload task to complete build allocations" msgstr "" -#: build/models.py:723 +#: build/models.py:724 #, python-brace-format msgid "Build order {build} has been completed" msgstr "" -#: build/models.py:729 +#: build/models.py:730 msgid "A build order has been completed" msgstr "" -#: build/models.py:911 build/serializers.py:407 +#: build/models.py:912 build/serializers.py:415 msgid "Serial numbers must be provided for trackable parts" msgstr "" -#: build/models.py:1042 build/models.py:1129 +#: build/models.py:1043 build/models.py:1130 msgid "No build output specified" msgstr "" -#: build/models.py:1045 +#: build/models.py:1046 msgid "Build output is already completed" msgstr "" -#: build/models.py:1048 +#: build/models.py:1049 msgid "Build output does not match Build Order" msgstr "" -#: build/models.py:1136 build/models.py:1234 build/serializers.py:285 -#: build/serializers.py:335 build/serializers.py:965 build/serializers.py:1739 -#: order/models.py:717 order/serializers.py:658 order/serializers.py:844 -#: part/serializers.py:1708 stock/models.py:940 stock/models.py:1430 +#: build/models.py:1137 build/models.py:1235 build/serializers.py:293 +#: build/serializers.py:343 build/serializers.py:973 build/serializers.py:1747 +#: order/models.py:718 order/serializers.py:669 order/serializers.py:855 +#: part/serializers.py:1573 stock/models.py:940 stock/models.py:1430 #: stock/models.py:1878 stock/serializers.py:688 stock/serializers.py:1580 msgid "Quantity must be greater than zero" msgstr "" -#: build/models.py:1140 build/models.py:1239 build/serializers.py:290 +#: build/models.py:1141 build/models.py:1240 build/serializers.py:298 msgid "Quantity cannot be greater than the output quantity" msgstr "" -#: build/models.py:1214 build/serializers.py:606 +#: build/models.py:1215 build/serializers.py:614 msgid "Build output has not passed all required tests" msgstr "" -#: build/models.py:1217 build/serializers.py:601 +#: build/models.py:1218 build/serializers.py:609 #, python-brace-format msgid "Build output {serial} has not passed all required tests" msgstr "" -#: build/models.py:1229 +#: build/models.py:1230 msgid "Cannot partially complete a build output with allocated items" msgstr "" -#: build/models.py:1627 +#: build/models.py:1628 msgid "Build Order Line Item" msgstr "" -#: build/models.py:1651 +#: build/models.py:1652 msgid "Build object" msgstr "" -#: build/models.py:1663 build/models.py:1974 build/serializers.py:271 -#: build/serializers.py:320 build/serializers.py:1392 common/models.py:1340 -#: order/models.py:1756 order/models.py:2597 order/serializers.py:1696 -#: order/serializers.py:2124 part/models.py:3453 part/models.py:4390 +#: build/models.py:1664 build/models.py:1975 build/serializers.py:279 +#: build/serializers.py:328 build/serializers.py:1400 common/models.py:1344 +#: order/models.py:1757 order/models.py:2598 order/serializers.py:1710 +#: order/serializers.py:2141 part/models.py:3517 part/models.py:4015 #: report/templates/report/inventree_bill_of_materials_report.html:138 #: report/templates/report/inventree_build_order_report.html:113 #: report/templates/report/inventree_purchase_order_report.html:36 @@ -1014,427 +1030,427 @@ msgstr "" msgid "Quantity" msgstr "Määrä" -#: build/models.py:1664 +#: build/models.py:1665 msgid "Required quantity for build order" msgstr "" -#: build/models.py:1673 +#: build/models.py:1674 msgid "Quantity of consumed stock" msgstr "" -#: build/models.py:1772 +#: build/models.py:1773 msgid "Build item must specify a build output, as master part is marked as trackable" msgstr "" -#: build/models.py:1783 +#: build/models.py:1784 #, python-brace-format msgid "Allocated quantity ({q}) must not exceed available stock quantity ({a})" msgstr "" -#: build/models.py:1804 order/models.py:2546 +#: build/models.py:1805 order/models.py:2547 msgid "Stock item is over-allocated" msgstr "" -#: build/models.py:1809 order/models.py:2549 +#: build/models.py:1810 order/models.py:2550 msgid "Allocation quantity must be greater than zero" msgstr "" -#: build/models.py:1815 +#: build/models.py:1816 msgid "Quantity must be 1 for serialized stock" msgstr "" -#: build/models.py:1875 +#: build/models.py:1876 msgid "Selected stock item does not match BOM line" msgstr "" -#: build/models.py:1913 +#: build/models.py:1914 msgid "Allocated quantity exceeds available stock quantity" msgstr "" -#: build/models.py:1964 build/serializers.py:948 build/serializers.py:1240 -#: order/serializers.py:1533 order/serializers.py:1554 +#: build/models.py:1965 build/serializers.py:956 build/serializers.py:1248 +#: order/serializers.py:1547 order/serializers.py:1568 #: report/templates/report/inventree_sales_order_shipment_report.html:29 #: stock/api.py:1404 stock/models.py:456 stock/serializers.py:102 #: stock/serializers.py:800 stock/serializers.py:1274 stock/serializers.py:1386 msgid "Stock Item" msgstr "Varastotuote" -#: build/models.py:1965 +#: build/models.py:1966 msgid "Source stock item" msgstr "" -#: build/models.py:1975 +#: build/models.py:1976 msgid "Stock quantity to allocate to build" msgstr "" -#: build/models.py:1984 +#: build/models.py:1985 msgid "Install into" msgstr "" -#: build/models.py:1985 +#: build/models.py:1986 msgid "Destination stock item" msgstr "" -#: build/serializers.py:118 +#: build/serializers.py:120 msgid "Build Level" msgstr "" -#: build/serializers.py:128 +#: build/serializers.py:136 msgid "Part Name" msgstr "" -#: build/serializers.py:153 +#: build/serializers.py:161 msgid "Project Code Label" msgstr "" -#: build/serializers.py:219 build/serializers.py:974 +#: build/serializers.py:227 build/serializers.py:982 msgid "Build Output" msgstr "" -#: build/serializers.py:231 +#: build/serializers.py:239 msgid "Build output does not match the parent build" msgstr "" -#: build/serializers.py:235 +#: build/serializers.py:243 msgid "Output part does not match BuildOrder part" msgstr "" -#: build/serializers.py:239 +#: build/serializers.py:247 msgid "This build output has already been completed" msgstr "" -#: build/serializers.py:253 +#: build/serializers.py:261 msgid "This build output is not fully allocated" msgstr "" -#: build/serializers.py:272 build/serializers.py:321 +#: build/serializers.py:280 build/serializers.py:329 msgid "Enter quantity for build output" msgstr "" -#: build/serializers.py:343 +#: build/serializers.py:351 msgid "Integer quantity required for trackable parts" msgstr "" -#: build/serializers.py:349 +#: build/serializers.py:357 msgid "Integer quantity required, as the bill of materials contains trackable parts" msgstr "" -#: build/serializers.py:366 order/serializers.py:865 order/serializers.py:1700 +#: build/serializers.py:374 order/serializers.py:876 order/serializers.py:1714 #: stock/serializers.py:699 msgid "Serial Numbers" msgstr "Sarjanumerot" -#: build/serializers.py:367 +#: build/serializers.py:375 msgid "Enter serial numbers for build outputs" msgstr "" -#: build/serializers.py:373 +#: build/serializers.py:381 msgid "Stock location for build output" msgstr "" -#: build/serializers.py:388 +#: build/serializers.py:396 msgid "Auto Allocate Serial Numbers" msgstr "" -#: build/serializers.py:390 +#: build/serializers.py:398 msgid "Automatically allocate required items with matching serial numbers" msgstr "" -#: build/serializers.py:423 order/serializers.py:951 stock/api.py:1183 +#: build/serializers.py:431 order/serializers.py:962 stock/api.py:1183 #: stock/models.py:1901 msgid "The following serial numbers already exist or are invalid" msgstr "" -#: build/serializers.py:465 build/serializers.py:521 build/serializers.py:613 +#: build/serializers.py:473 build/serializers.py:529 build/serializers.py:621 msgid "A list of build outputs must be provided" msgstr "" -#: build/serializers.py:498 +#: build/serializers.py:506 msgid "Stock location for scrapped outputs" msgstr "" -#: build/serializers.py:504 +#: build/serializers.py:512 msgid "Discard Allocations" msgstr "" -#: build/serializers.py:505 +#: build/serializers.py:513 msgid "Discard any stock allocations for scrapped outputs" msgstr "" -#: build/serializers.py:510 +#: build/serializers.py:518 msgid "Reason for scrapping build output(s)" msgstr "" -#: build/serializers.py:568 +#: build/serializers.py:576 msgid "Location for completed build outputs" msgstr "" -#: build/serializers.py:576 +#: build/serializers.py:584 msgid "Accept Incomplete Allocation" msgstr "" -#: build/serializers.py:577 +#: build/serializers.py:585 msgid "Complete outputs if stock has not been fully allocated" msgstr "" -#: build/serializers.py:702 +#: build/serializers.py:710 msgid "Consume Allocated Stock" msgstr "" -#: build/serializers.py:703 +#: build/serializers.py:711 msgid "Consume any stock which has already been allocated to this build" msgstr "" -#: build/serializers.py:709 +#: build/serializers.py:717 msgid "Remove Incomplete Outputs" msgstr "" -#: build/serializers.py:710 +#: build/serializers.py:718 msgid "Delete any build outputs which have not been completed" msgstr "" -#: build/serializers.py:737 +#: build/serializers.py:745 msgid "Not permitted" msgstr "Ei sallittu" -#: build/serializers.py:738 +#: build/serializers.py:746 msgid "Accept as consumed by this build order" msgstr "" -#: build/serializers.py:739 +#: build/serializers.py:747 msgid "Deallocate before completing this build order" msgstr "" -#: build/serializers.py:766 +#: build/serializers.py:774 msgid "Overallocated Stock" msgstr "" -#: build/serializers.py:769 +#: build/serializers.py:777 msgid "How do you want to handle extra stock items assigned to the build order" msgstr "" -#: build/serializers.py:780 +#: build/serializers.py:788 msgid "Some stock items have been overallocated" msgstr "" -#: build/serializers.py:785 +#: build/serializers.py:793 msgid "Accept Unallocated" msgstr "" -#: build/serializers.py:787 +#: build/serializers.py:795 msgid "Accept that stock items have not been fully allocated to this build order" msgstr "" -#: build/serializers.py:798 +#: build/serializers.py:806 msgid "Required stock has not been fully allocated" msgstr "" -#: build/serializers.py:803 order/serializers.py:524 order/serializers.py:1601 +#: build/serializers.py:811 order/serializers.py:535 order/serializers.py:1615 msgid "Accept Incomplete" msgstr "" -#: build/serializers.py:805 +#: build/serializers.py:813 msgid "Accept that the required number of build outputs have not been completed" msgstr "" -#: build/serializers.py:816 +#: build/serializers.py:824 msgid "Required build quantity has not been completed" msgstr "" -#: build/serializers.py:828 +#: build/serializers.py:836 msgid "Build order has open child build orders" msgstr "" -#: build/serializers.py:831 +#: build/serializers.py:839 msgid "Build order must be in production state" msgstr "" -#: build/serializers.py:834 +#: build/serializers.py:842 msgid "Build order has incomplete outputs" msgstr "" -#: build/serializers.py:873 +#: build/serializers.py:881 msgid "Build Line" msgstr "" -#: build/serializers.py:881 +#: build/serializers.py:889 msgid "Build output" msgstr "" -#: build/serializers.py:889 +#: build/serializers.py:897 msgid "Build output must point to the same build" msgstr "" -#: build/serializers.py:920 +#: build/serializers.py:928 msgid "Build Line Item" msgstr "" -#: build/serializers.py:938 +#: build/serializers.py:946 msgid "bom_item.part must point to the same part as the build order" msgstr "" -#: build/serializers.py:954 stock/serializers.py:1287 +#: build/serializers.py:962 stock/serializers.py:1287 msgid "Item must be in stock" msgstr "" -#: build/serializers.py:997 order/serializers.py:1587 +#: build/serializers.py:1005 order/serializers.py:1601 #, python-brace-format msgid "Available quantity ({q}) exceeded" msgstr "" -#: build/serializers.py:1003 +#: build/serializers.py:1011 msgid "Build output must be specified for allocation of tracked parts" msgstr "" -#: build/serializers.py:1011 +#: build/serializers.py:1019 msgid "Build output cannot be specified for allocation of untracked parts" msgstr "" -#: build/serializers.py:1035 order/serializers.py:1860 +#: build/serializers.py:1043 order/serializers.py:1874 msgid "Allocation items must be provided" msgstr "" -#: build/serializers.py:1099 +#: build/serializers.py:1107 msgid "Stock location where parts are to be sourced (leave blank to take from any location)" msgstr "" -#: build/serializers.py:1108 +#: build/serializers.py:1116 msgid "Exclude Location" msgstr "" -#: build/serializers.py:1109 +#: build/serializers.py:1117 msgid "Exclude stock items from this selected location" msgstr "" -#: build/serializers.py:1114 +#: build/serializers.py:1122 msgid "Interchangeable Stock" msgstr "" -#: build/serializers.py:1115 +#: build/serializers.py:1123 msgid "Stock items in multiple locations can be used interchangeably" msgstr "" -#: build/serializers.py:1120 +#: build/serializers.py:1128 msgid "Substitute Stock" msgstr "" -#: build/serializers.py:1121 +#: build/serializers.py:1129 msgid "Allow allocation of substitute parts" msgstr "" -#: build/serializers.py:1126 +#: build/serializers.py:1134 msgid "Optional Items" msgstr "" -#: build/serializers.py:1127 +#: build/serializers.py:1135 msgid "Allocate optional BOM items to build order" msgstr "" -#: build/serializers.py:1148 +#: build/serializers.py:1156 msgid "Failed to start auto-allocation task" msgstr "" -#: build/serializers.py:1200 +#: build/serializers.py:1208 msgid "BOM Reference" msgstr "" -#: build/serializers.py:1206 +#: build/serializers.py:1214 msgid "BOM Part ID" msgstr "" -#: build/serializers.py:1213 +#: build/serializers.py:1221 msgid "BOM Part Name" msgstr "" -#: build/serializers.py:1266 build/serializers.py:1449 +#: build/serializers.py:1274 build/serializers.py:1457 msgid "Build" msgstr "" -#: build/serializers.py:1276 company/models.py:685 order/api.py:311 -#: order/api.py:316 order/api.py:543 order/serializers.py:650 +#: build/serializers.py:1284 company/models.py:639 order/api.py:316 +#: order/api.py:321 order/api.py:549 order/serializers.py:661 #: stock/models.py:1036 stock/serializers.py:579 msgid "Supplier Part" msgstr "" -#: build/serializers.py:1284 stock/serializers.py:620 +#: build/serializers.py:1292 stock/serializers.py:620 msgid "Allocated Quantity" msgstr "" -#: build/serializers.py:1351 +#: build/serializers.py:1359 msgid "Build Reference" msgstr "" -#: build/serializers.py:1361 +#: build/serializers.py:1369 msgid "Part Category Name" msgstr "" -#: build/serializers.py:1383 common/setting/system.py:480 part/models.py:1214 +#: build/serializers.py:1391 common/setting/system.py:480 part/models.py:1302 msgid "Trackable" msgstr "Seurattavissa" -#: build/serializers.py:1386 +#: build/serializers.py:1394 msgid "Inherited" msgstr "" -#: build/serializers.py:1389 part/models.py:4475 +#: build/serializers.py:1397 part/models.py:4100 msgid "Allow Variants" msgstr "" -#: build/serializers.py:1395 build/serializers.py:1400 part/models.py:4208 -#: part/models.py:4779 stock/api.py:882 +#: build/serializers.py:1403 build/serializers.py:1408 part/models.py:3833 +#: part/models.py:4404 stock/api.py:882 msgid "BOM Item" msgstr "" -#: build/serializers.py:1467 order/serializers.py:1282 part/serializers.py:1310 -#: part/serializers.py:1765 +#: build/serializers.py:1475 order/serializers.py:1296 part/serializers.py:1175 +#: part/serializers.py:1630 msgid "In Production" msgstr "" -#: build/serializers.py:1469 part/serializers.py:950 part/serializers.py:1314 +#: build/serializers.py:1477 part/serializers.py:835 part/serializers.py:1179 msgid "Scheduled to Build" msgstr "" -#: build/serializers.py:1472 part/serializers.py:987 +#: build/serializers.py:1480 part/serializers.py:872 msgid "External Stock" msgstr "" -#: build/serializers.py:1473 part/serializers.py:1300 part/serializers.py:1808 +#: build/serializers.py:1481 part/serializers.py:1165 part/serializers.py:1673 msgid "Available Stock" msgstr "" -#: build/serializers.py:1475 +#: build/serializers.py:1483 msgid "Available Substitute Stock" msgstr "" -#: build/serializers.py:1478 +#: build/serializers.py:1486 msgid "Available Variant Stock" msgstr "" -#: build/serializers.py:1752 +#: build/serializers.py:1760 msgid "Consumed quantity exceeds allocated quantity" msgstr "" -#: build/serializers.py:1789 +#: build/serializers.py:1797 msgid "Optional notes for the stock consumption" msgstr "" -#: build/serializers.py:1806 +#: build/serializers.py:1814 msgid "Build item must point to the correct build order" msgstr "" -#: build/serializers.py:1811 +#: build/serializers.py:1819 msgid "Duplicate build item allocation" msgstr "" -#: build/serializers.py:1829 +#: build/serializers.py:1837 msgid "Build line must point to the correct build order" msgstr "" -#: build/serializers.py:1834 +#: build/serializers.py:1842 msgid "Duplicate build line allocation" msgstr "" -#: build/serializers.py:1846 +#: build/serializers.py:1854 msgid "At least one item or line must be provided" msgstr "" @@ -1482,702 +1498,826 @@ msgstr "" msgid "Build order {bo} is now overdue" msgstr "" -#: common/api.py:694 +#: common/api.py:701 msgid "Is Link" msgstr "" -#: common/api.py:702 +#: common/api.py:709 msgid "Is File" msgstr "" -#: common/api.py:745 +#: common/api.py:756 msgid "User does not have permission to delete these attachments" msgstr "" -#: common/api.py:762 +#: common/api.py:769 msgid "User does not have permission to delete this attachment" msgstr "" -#: common/currency.py:122 +#: common/currency.py:130 msgid "Invalid currency code" msgstr "" -#: common/currency.py:124 +#: common/currency.py:132 msgid "Duplicate currency code" msgstr "" -#: common/currency.py:129 +#: common/currency.py:137 msgid "No valid currency codes provided" msgstr "" -#: common/currency.py:146 +#: common/currency.py:154 msgid "No plugin" msgstr "" -#: common/models.py:101 common/models.py:126 common/models.py:2729 +#: common/models.py:105 common/models.py:130 common/models.py:3150 msgid "Updated" msgstr "Päivitetty" -#: common/models.py:102 common/models.py:127 +#: common/models.py:106 common/models.py:131 msgid "Timestamp of last update" msgstr "Viimeisimmän päivityksen aikaleima" -#: common/models.py:139 +#: common/models.py:143 msgid "Update By" msgstr "" -#: common/models.py:140 +#: common/models.py:144 msgid "User who last updated this object" msgstr "" -#: common/models.py:165 +#: common/models.py:169 msgid "Unique project code" msgstr "" -#: common/models.py:172 +#: common/models.py:176 msgid "Project description" msgstr "" -#: common/models.py:181 +#: common/models.py:185 msgid "User or group responsible for this project" msgstr "" -#: common/models.py:771 common/models.py:1272 common/models.py:1310 +#: common/models.py:775 common/models.py:1276 common/models.py:1314 msgid "Settings key" msgstr "" -#: common/models.py:775 +#: common/models.py:779 msgid "Settings value" msgstr "" -#: common/models.py:830 +#: common/models.py:834 msgid "Chosen value is not a valid option" msgstr "" -#: common/models.py:846 +#: common/models.py:850 msgid "Value must be a boolean value" msgstr "" -#: common/models.py:854 +#: common/models.py:858 msgid "Value must be an integer value" msgstr "" -#: common/models.py:862 +#: common/models.py:866 msgid "Value must be a valid number" msgstr "" -#: common/models.py:887 +#: common/models.py:891 msgid "Value does not pass validation checks" msgstr "" -#: common/models.py:909 +#: common/models.py:913 msgid "Key string must be unique" msgstr "" -#: common/models.py:1318 common/models.py:1319 common/models.py:1423 -#: common/models.py:1424 common/models.py:1669 common/models.py:1670 -#: common/models.py:2000 common/models.py:2001 common/models.py:2382 -#: importer/models.py:100 part/models.py:3547 part/models.py:3575 +#: common/models.py:1322 common/models.py:1323 common/models.py:1427 +#: common/models.py:1428 common/models.py:1673 common/models.py:1674 +#: common/models.py:2006 common/models.py:2007 common/models.py:2803 +#: importer/models.py:100 part/models.py:3611 part/models.py:3639 #: plugin/models.py:355 plugin/models.py:356 #: report/templates/report/inventree_test_report.html:105 users/models.py:124 #: users/models.py:501 msgid "User" msgstr "Käyttäjä" -#: common/models.py:1341 +#: common/models.py:1345 msgid "Price break quantity" msgstr "" -#: common/models.py:1348 company/serializers.py:564 order/models.py:1842 -#: order/models.py:3043 +#: common/models.py:1352 company/serializers.py:349 order/models.py:1843 +#: order/models.py:3044 msgid "Price" msgstr "Hinta" -#: common/models.py:1349 +#: common/models.py:1353 msgid "Unit price at specified quantity" msgstr "" -#: common/models.py:1400 common/models.py:1585 +#: common/models.py:1404 common/models.py:1589 msgid "Endpoint" msgstr "" -#: common/models.py:1401 +#: common/models.py:1405 msgid "Endpoint at which this webhook is received" msgstr "" -#: common/models.py:1411 +#: common/models.py:1415 msgid "Name for this webhook" msgstr "" -#: common/models.py:1415 common/models.py:2241 common/models.py:2348 -#: company/models.py:191 company/models.py:822 machine/models.py:40 -#: part/models.py:1237 plugin/models.py:69 stock/api.py:642 users/models.py:195 +#: common/models.py:1419 common/models.py:2247 common/models.py:2354 +#: company/models.py:192 company/models.py:776 machine/models.py:40 +#: part/models.py:1325 plugin/models.py:69 stock/api.py:642 users/models.py:195 #: users/models.py:554 users/serializers.py:314 msgid "Active" msgstr "Aktiivinen" -#: common/models.py:1415 +#: common/models.py:1419 msgid "Is this webhook active" msgstr "" -#: common/models.py:1431 users/models.py:172 +#: common/models.py:1435 users/models.py:172 msgid "Token" msgstr "" -#: common/models.py:1432 +#: common/models.py:1436 msgid "Token for access" msgstr "" -#: common/models.py:1440 +#: common/models.py:1444 msgid "Secret" msgstr "Salaisuus" -#: common/models.py:1441 +#: common/models.py:1445 msgid "Shared secret for HMAC" msgstr "" -#: common/models.py:1549 common/models.py:2619 +#: common/models.py:1553 common/models.py:3040 msgid "Message ID" msgstr "" -#: common/models.py:1550 common/models.py:2609 +#: common/models.py:1554 common/models.py:3030 msgid "Unique identifier for this message" msgstr "" -#: common/models.py:1558 +#: common/models.py:1562 msgid "Host" msgstr "Isäntä" -#: common/models.py:1559 +#: common/models.py:1563 msgid "Host from which this message was received" msgstr "" -#: common/models.py:1567 +#: common/models.py:1571 msgid "Header" msgstr "" -#: common/models.py:1568 +#: common/models.py:1572 msgid "Header of this message" msgstr "" -#: common/models.py:1575 +#: common/models.py:1579 msgid "Body" msgstr "" -#: common/models.py:1576 +#: common/models.py:1580 msgid "Body of this message" msgstr "" -#: common/models.py:1586 +#: common/models.py:1590 msgid "Endpoint on which this message was received" msgstr "" -#: common/models.py:1591 +#: common/models.py:1595 msgid "Worked on" msgstr "" -#: common/models.py:1592 +#: common/models.py:1596 msgid "Was the work on this message finished?" msgstr "" -#: common/models.py:1718 +#: common/models.py:1722 msgid "Id" msgstr "" -#: common/models.py:1720 +#: common/models.py:1724 msgid "Title" msgstr "Otsikko" -#: common/models.py:1722 common/models.py:1983 company/models.py:185 -#: company/models.py:467 company/models.py:534 company/models.py:839 -#: order/models.py:457 order/models.py:1786 order/models.py:2343 -#: part/models.py:1113 +#: common/models.py:1726 common/models.py:1989 company/models.py:186 +#: company/models.py:468 company/models.py:536 company/models.py:793 +#: order/models.py:458 order/models.py:1787 order/models.py:2344 +#: part/models.py:1201 #: report/templates/report/inventree_build_order_report.html:164 msgid "Link" msgstr "Linkki" -#: common/models.py:1724 +#: common/models.py:1728 msgid "Published" msgstr "Julkaistu" -#: common/models.py:1726 +#: common/models.py:1730 msgid "Author" msgstr "Julkaisija" -#: common/models.py:1728 +#: common/models.py:1732 msgid "Summary" msgstr "Yhteenveto" -#: common/models.py:1731 common/models.py:2586 +#: common/models.py:1735 common/models.py:3007 msgid "Read" msgstr "" -#: common/models.py:1731 +#: common/models.py:1735 msgid "Was this news item read?" msgstr "" -#: common/models.py:1748 +#: common/models.py:1752 msgid "Image file" msgstr "Kuvatiedosto" -#: common/models.py:1760 +#: common/models.py:1764 msgid "Target model type for this image" msgstr "" -#: common/models.py:1764 +#: common/models.py:1768 msgid "Target model ID for this image" msgstr "" -#: common/models.py:1786 +#: common/models.py:1790 msgid "Custom Unit" msgstr "" -#: common/models.py:1804 +#: common/models.py:1808 msgid "Unit symbol must be unique" msgstr "" -#: common/models.py:1819 +#: common/models.py:1823 msgid "Unit name must be a valid identifier" msgstr "" -#: common/models.py:1838 +#: common/models.py:1842 msgid "Unit name" msgstr "" -#: common/models.py:1845 +#: common/models.py:1849 msgid "Symbol" msgstr "" -#: common/models.py:1846 +#: common/models.py:1850 msgid "Optional unit symbol" msgstr "" -#: common/models.py:1852 +#: common/models.py:1856 msgid "Definition" msgstr "" -#: common/models.py:1853 +#: common/models.py:1857 msgid "Unit definition" msgstr "" -#: common/models.py:1911 common/models.py:1974 stock/models.py:2967 +#: common/models.py:1917 common/models.py:1980 stock/models.py:2984 #: stock/serializers.py:247 msgid "Attachment" msgstr "Liite" -#: common/models.py:1928 +#: common/models.py:1934 msgid "Missing file" msgstr "Puuttuva tiedosto" -#: common/models.py:1929 +#: common/models.py:1935 msgid "Missing external link" msgstr "Puuttuva ulkoinen linkki" -#: common/models.py:1966 +#: common/models.py:1972 common/models.py:2488 msgid "Model type" msgstr "" -#: common/models.py:1967 +#: common/models.py:1973 msgid "Target model type for image" msgstr "" -#: common/models.py:1975 +#: common/models.py:1981 msgid "Select file to attach" msgstr "Valitse liitettävä tiedosto" -#: common/models.py:1991 +#: common/models.py:1997 msgid "Comment" msgstr "Kommentti" -#: common/models.py:1992 +#: common/models.py:1998 msgid "Attachment comment" msgstr "" -#: common/models.py:2008 +#: common/models.py:2014 msgid "Upload date" msgstr "" -#: common/models.py:2009 +#: common/models.py:2015 msgid "Date the file was uploaded" msgstr "" -#: common/models.py:2013 +#: common/models.py:2019 msgid "File size" msgstr "" -#: common/models.py:2013 +#: common/models.py:2019 msgid "File size in bytes" msgstr "" -#: common/models.py:2051 common/serializers.py:684 +#: common/models.py:2057 common/serializers.py:688 msgid "Invalid model type specified for attachment" msgstr "" -#: common/models.py:2072 +#: common/models.py:2078 msgid "Custom State" msgstr "" -#: common/models.py:2073 +#: common/models.py:2079 msgid "Custom States" msgstr "" -#: common/models.py:2078 +#: common/models.py:2084 msgid "Reference Status Set" msgstr "" -#: common/models.py:2079 +#: common/models.py:2085 msgid "Status set that is extended with this custom state" msgstr "" -#: common/models.py:2083 generic/states/serializers.py:18 +#: common/models.py:2089 generic/states/serializers.py:18 msgid "Logical Key" msgstr "" -#: common/models.py:2085 +#: common/models.py:2091 msgid "State logical key that is equal to this custom state in business logic" msgstr "" -#: common/models.py:2090 common/models.py:2329 company/models.py:622 -#: machine/serializers.py:27 -#: report/templates/report/inventree_test_report.html:104 stock/models.py:2959 +#: common/models.py:2096 common/models.py:2335 machine/serializers.py:27 +#: report/templates/report/inventree_test_report.html:104 stock/models.py:2976 msgid "Value" msgstr "Arvo" -#: common/models.py:2091 +#: common/models.py:2097 msgid "Numerical value that will be saved in the models database" msgstr "" -#: common/models.py:2097 +#: common/models.py:2103 msgid "Name of the state" msgstr "" -#: common/models.py:2106 common/models.py:2335 generic/states/serializers.py:22 +#: common/models.py:2112 common/models.py:2341 generic/states/serializers.py:22 msgid "Label" msgstr "" -#: common/models.py:2107 +#: common/models.py:2113 msgid "Label that will be displayed in the frontend" msgstr "" -#: common/models.py:2114 generic/states/serializers.py:24 +#: common/models.py:2120 generic/states/serializers.py:24 msgid "Color" msgstr "" -#: common/models.py:2115 +#: common/models.py:2121 msgid "Color that will be displayed in the frontend" msgstr "" -#: common/models.py:2123 +#: common/models.py:2129 msgid "Model" msgstr "" -#: common/models.py:2124 +#: common/models.py:2130 msgid "Model this state is associated with" msgstr "" -#: common/models.py:2139 +#: common/models.py:2145 msgid "Model must be selected" msgstr "" -#: common/models.py:2142 +#: common/models.py:2148 msgid "Key must be selected" msgstr "" -#: common/models.py:2145 +#: common/models.py:2151 msgid "Logical key must be selected" msgstr "" -#: common/models.py:2149 +#: common/models.py:2155 msgid "Key must be different from logical key" msgstr "" -#: common/models.py:2156 +#: common/models.py:2162 msgid "Valid reference status class must be provided" msgstr "" -#: common/models.py:2162 +#: common/models.py:2168 msgid "Key must be different from the logical keys of the reference status" msgstr "" -#: common/models.py:2169 +#: common/models.py:2175 msgid "Logical key must be in the logical keys of the reference status" msgstr "" -#: common/models.py:2176 +#: common/models.py:2182 msgid "Name must be different from the names of the reference status" msgstr "" -#: common/models.py:2216 common/models.py:2323 part/models.py:3889 +#: common/models.py:2222 common/models.py:2329 common/models.py:2533 msgid "Selection List" msgstr "" -#: common/models.py:2217 +#: common/models.py:2223 msgid "Selection Lists" msgstr "" -#: common/models.py:2222 +#: common/models.py:2228 msgid "Name of the selection list" msgstr "" -#: common/models.py:2229 +#: common/models.py:2235 msgid "Description of the selection list" msgstr "" -#: common/models.py:2235 part/models.py:1242 +#: common/models.py:2241 part/models.py:1330 msgid "Locked" msgstr "" -#: common/models.py:2236 +#: common/models.py:2242 msgid "Is this selection list locked?" msgstr "" -#: common/models.py:2242 +#: common/models.py:2248 msgid "Can this selection list be used?" msgstr "" -#: common/models.py:2250 +#: common/models.py:2256 msgid "Source Plugin" msgstr "" -#: common/models.py:2251 +#: common/models.py:2257 msgid "Plugin which provides the selection list" msgstr "" -#: common/models.py:2256 +#: common/models.py:2262 msgid "Source String" msgstr "" -#: common/models.py:2257 +#: common/models.py:2263 msgid "Optional string identifying the source used for this list" msgstr "" -#: common/models.py:2266 +#: common/models.py:2272 msgid "Default Entry" msgstr "" -#: common/models.py:2267 +#: common/models.py:2273 msgid "Default entry for this selection list" msgstr "" -#: common/models.py:2272 common/models.py:2724 +#: common/models.py:2278 common/models.py:3145 msgid "Created" msgstr "" -#: common/models.py:2273 +#: common/models.py:2279 msgid "Date and time that the selection list was created" msgstr "" -#: common/models.py:2278 +#: common/models.py:2284 msgid "Last Updated" msgstr "" -#: common/models.py:2279 +#: common/models.py:2285 msgid "Date and time that the selection list was last updated" msgstr "" -#: common/models.py:2313 +#: common/models.py:2319 msgid "Selection List Entry" msgstr "" -#: common/models.py:2314 +#: common/models.py:2320 msgid "Selection List Entries" msgstr "" -#: common/models.py:2324 +#: common/models.py:2330 msgid "Selection list to which this entry belongs" msgstr "" -#: common/models.py:2330 +#: common/models.py:2336 msgid "Value of the selection list entry" msgstr "" -#: common/models.py:2336 +#: common/models.py:2342 msgid "Label for the selection list entry" msgstr "" -#: common/models.py:2342 +#: common/models.py:2348 msgid "Description of the selection list entry" msgstr "" -#: common/models.py:2349 +#: common/models.py:2355 msgid "Is this selection list entry active?" msgstr "" -#: common/models.py:2367 -msgid "Barcode Scan" +#: common/models.py:2387 +msgid "Parameter Template" msgstr "" -#: common/models.py:2371 importer/models.py:546 part/models.py:4060 -msgid "Data" +#: common/models.py:2388 +msgid "Parameter Templates" msgstr "" -#: common/models.py:2372 -msgid "Barcode data" +#: common/models.py:2425 +msgid "Checkbox parameters cannot have units" msgstr "" -#: common/models.py:2383 -msgid "User who scanned the barcode" +#: common/models.py:2430 +msgid "Checkbox parameters cannot have choices" msgstr "" -#: common/models.py:2388 importer/models.py:69 -msgid "Timestamp" +#: common/models.py:2450 part/models.py:3707 +msgid "Choices must be unique" msgstr "" -#: common/models.py:2389 -msgid "Date and time of the barcode scan" +#: common/models.py:2467 +msgid "Parameter template name must be unique" msgstr "" -#: common/models.py:2395 -msgid "URL endpoint which processed the barcode" +#: common/models.py:2489 +msgid "Target model type for this parameter template" msgstr "" -#: common/models.py:2402 order/models.py:1832 plugin/serializers.py:93 -msgid "Context" +#: common/models.py:2495 +msgid "Parameter Name" msgstr "" -#: common/models.py:2403 -msgid "Context data for the barcode scan" +#: common/models.py:2501 part/models.py:1283 +msgid "Units" msgstr "" -#: common/models.py:2410 -msgid "Response" +#: common/models.py:2502 +msgid "Physical units for this parameter" msgstr "" -#: common/models.py:2411 -msgid "Response data from the barcode scan" +#: common/models.py:2510 +msgid "Parameter description" msgstr "" -#: common/models.py:2417 report/templates/report/inventree_test_report.html:103 -#: stock/models.py:2953 -msgid "Result" +#: common/models.py:2516 +msgid "Checkbox" msgstr "" -#: common/models.py:2418 -msgid "Was the barcode scan successful?" +#: common/models.py:2517 +msgid "Is this parameter a checkbox?" msgstr "" -#: common/models.py:2500 -msgid "An error occurred" +#: common/models.py:2522 part/models.py:3794 +msgid "Choices" msgstr "" -#: common/models.py:2521 -msgid "INVE-E8: Email log deletion is protected. Set INVENTREE_PROTECT_EMAIL_LOG to False to allow deletion." +#: common/models.py:2523 +msgid "Valid choices for this parameter (comma-separated)" msgstr "" -#: common/models.py:2568 -msgid "Email Message" +#: common/models.py:2534 +msgid "Selection list for this parameter" msgstr "" -#: common/models.py:2569 -msgid "Email Messages" +#: common/models.py:2539 part/models.py:3769 report/models.py:287 +msgid "Enabled" +msgstr "Käytössä" + +#: common/models.py:2540 +msgid "Is this parameter template enabled?" msgstr "" -#: common/models.py:2576 -msgid "Announced" -msgstr "" - -#: common/models.py:2578 -msgid "Sent" -msgstr "" - -#: common/models.py:2579 -msgid "Failed" +#: common/models.py:2581 +msgid "Parameter" msgstr "" #: common/models.py:2582 -msgid "Delivered" -msgstr "" - -#: common/models.py:2590 -msgid "Confirmed" -msgstr "" - -#: common/models.py:2596 -msgid "Inbound" -msgstr "" - -#: common/models.py:2597 -msgid "Outbound" -msgstr "" - -#: common/models.py:2602 -msgid "No Reply" -msgstr "" - -#: common/models.py:2603 -msgid "Track Delivery" -msgstr "" - -#: common/models.py:2604 -msgid "Track Read" -msgstr "" - -#: common/models.py:2605 -msgid "Track Click" -msgstr "" - -#: common/models.py:2608 common/models.py:2711 -msgid "Global ID" -msgstr "" - -#: common/models.py:2621 -msgid "Identifier for this message (might be supplied by external system)" +msgid "Parameters" msgstr "" #: common/models.py:2628 +msgid "Invalid choice for parameter value" +msgstr "" + +#: common/models.py:2698 common/serializers.py:783 +msgid "Invalid model type specified for parameter" +msgstr "" + +#: common/models.py:2734 +msgid "Model ID" +msgstr "" + +#: common/models.py:2735 +msgid "ID of the target model for this parameter" +msgstr "" + +#: common/models.py:2744 common/setting/system.py:450 report/models.py:373 +#: report/models.py:669 report/serializers.py:94 report/serializers.py:135 +#: stock/serializers.py:234 +msgid "Template" +msgstr "" + +#: common/models.py:2745 +msgid "Parameter template" +msgstr "" + +#: common/models.py:2750 common/models.py:2792 importer/models.py:546 +msgid "Data" +msgstr "" + +#: common/models.py:2751 +msgid "Parameter Value" +msgstr "" + +#: common/models.py:2760 company/models.py:810 order/serializers.py:894 +#: order/serializers.py:2064 part/models.py:4075 part/models.py:4444 +#: report/templates/report/inventree_bill_of_materials_report.html:140 +#: report/templates/report/inventree_purchase_order_report.html:39 +#: report/templates/report/inventree_return_order_report.html:27 +#: report/templates/report/inventree_sales_order_report.html:32 +#: report/templates/report/inventree_stock_location_report.html:105 +#: stock/serializers.py:813 +msgid "Note" +msgstr "Muistiinpano" + +#: common/models.py:2761 stock/serializers.py:718 +msgid "Optional note field" +msgstr "" + +#: common/models.py:2788 +msgid "Barcode Scan" +msgstr "" + +#: common/models.py:2793 +msgid "Barcode data" +msgstr "" + +#: common/models.py:2804 +msgid "User who scanned the barcode" +msgstr "" + +#: common/models.py:2809 importer/models.py:69 +msgid "Timestamp" +msgstr "" + +#: common/models.py:2810 +msgid "Date and time of the barcode scan" +msgstr "" + +#: common/models.py:2816 +msgid "URL endpoint which processed the barcode" +msgstr "" + +#: common/models.py:2823 order/models.py:1833 plugin/serializers.py:93 +msgid "Context" +msgstr "" + +#: common/models.py:2824 +msgid "Context data for the barcode scan" +msgstr "" + +#: common/models.py:2831 +msgid "Response" +msgstr "" + +#: common/models.py:2832 +msgid "Response data from the barcode scan" +msgstr "" + +#: common/models.py:2838 report/templates/report/inventree_test_report.html:103 +#: stock/models.py:2970 +msgid "Result" +msgstr "" + +#: common/models.py:2839 +msgid "Was the barcode scan successful?" +msgstr "" + +#: common/models.py:2921 +msgid "An error occurred" +msgstr "" + +#: common/models.py:2942 +msgid "INVE-E8: Email log deletion is protected. Set INVENTREE_PROTECT_EMAIL_LOG to False to allow deletion." +msgstr "" + +#: common/models.py:2989 +msgid "Email Message" +msgstr "" + +#: common/models.py:2990 +msgid "Email Messages" +msgstr "" + +#: common/models.py:2997 +msgid "Announced" +msgstr "" + +#: common/models.py:2999 +msgid "Sent" +msgstr "" + +#: common/models.py:3000 +msgid "Failed" +msgstr "" + +#: common/models.py:3003 +msgid "Delivered" +msgstr "" + +#: common/models.py:3011 +msgid "Confirmed" +msgstr "" + +#: common/models.py:3017 +msgid "Inbound" +msgstr "" + +#: common/models.py:3018 +msgid "Outbound" +msgstr "" + +#: common/models.py:3023 +msgid "No Reply" +msgstr "" + +#: common/models.py:3024 +msgid "Track Delivery" +msgstr "" + +#: common/models.py:3025 +msgid "Track Read" +msgstr "" + +#: common/models.py:3026 +msgid "Track Click" +msgstr "" + +#: common/models.py:3029 common/models.py:3132 +msgid "Global ID" +msgstr "" + +#: common/models.py:3042 +msgid "Identifier for this message (might be supplied by external system)" +msgstr "" + +#: common/models.py:3049 msgid "Thread ID" msgstr "" -#: common/models.py:2630 +#: common/models.py:3051 msgid "Identifier for this message thread (might be supplied by external system)" msgstr "" -#: common/models.py:2639 +#: common/models.py:3060 msgid "Thread" msgstr "" -#: common/models.py:2640 +#: common/models.py:3061 msgid "Linked thread for this message" msgstr "" -#: common/models.py:2656 -msgid "Prioriy" +#: common/models.py:3077 +msgid "Priority" msgstr "" -#: common/models.py:2698 +#: common/models.py:3119 msgid "Email Thread" msgstr "" -#: common/models.py:2699 +#: common/models.py:3120 msgid "Email Threads" msgstr "" -#: common/models.py:2705 generic/states/serializers.py:16 +#: common/models.py:3126 generic/states/serializers.py:16 #: machine/serializers.py:24 plugin/models.py:46 users/models.py:113 msgid "Key" msgstr "Avain" -#: common/models.py:2708 +#: common/models.py:3129 msgid "Unique key for this thread (used to identify the thread)" msgstr "" -#: common/models.py:2712 +#: common/models.py:3133 msgid "Unique identifier for this thread" msgstr "" -#: common/models.py:2719 +#: common/models.py:3140 msgid "Started Internal" msgstr "" -#: common/models.py:2720 +#: common/models.py:3141 msgid "Was this thread started internally?" msgstr "" -#: common/models.py:2725 +#: common/models.py:3146 msgid "Date and time that the thread was created" msgstr "" -#: common/models.py:2730 +#: common/models.py:3151 msgid "Date and time that the thread was last updated" msgstr "" @@ -2199,7 +2339,7 @@ msgstr "" msgid "A order that is assigned to you was canceled" msgstr "" -#: common/notifications.py:73 common/notifications.py:80 order/api.py:594 +#: common/notifications.py:73 common/notifications.py:80 order/api.py:600 msgid "Items Received" msgstr "" @@ -2211,88 +2351,93 @@ msgstr "" msgid "Items have been received against a return order" msgstr "" -#: common/serializers.py:145 +#: common/serializers.py:149 msgid "Indicates if the setting is overridden by an environment variable" msgstr "" -#: common/serializers.py:147 +#: common/serializers.py:151 msgid "Override" msgstr "" -#: common/serializers.py:498 +#: common/serializers.py:502 msgid "Is Running" msgstr "" -#: common/serializers.py:504 +#: common/serializers.py:508 msgid "Pending Tasks" msgstr "" -#: common/serializers.py:510 +#: common/serializers.py:514 msgid "Scheduled Tasks" msgstr "" -#: common/serializers.py:516 +#: common/serializers.py:520 msgid "Failed Tasks" msgstr "" -#: common/serializers.py:531 +#: common/serializers.py:535 msgid "Task ID" msgstr "" -#: common/serializers.py:531 +#: common/serializers.py:535 msgid "Unique task ID" msgstr "" -#: common/serializers.py:533 +#: common/serializers.py:537 msgid "Lock" msgstr "" -#: common/serializers.py:533 +#: common/serializers.py:537 msgid "Lock time" msgstr "" -#: common/serializers.py:535 +#: common/serializers.py:539 msgid "Task name" msgstr "" -#: common/serializers.py:537 +#: common/serializers.py:541 msgid "Function" msgstr "" -#: common/serializers.py:537 +#: common/serializers.py:541 msgid "Function name" msgstr "" -#: common/serializers.py:539 +#: common/serializers.py:543 msgid "Arguments" msgstr "" -#: common/serializers.py:539 +#: common/serializers.py:543 msgid "Task arguments" msgstr "" -#: common/serializers.py:542 +#: common/serializers.py:546 msgid "Keyword Arguments" msgstr "" -#: common/serializers.py:542 +#: common/serializers.py:546 msgid "Task keyword arguments" msgstr "" -#: common/serializers.py:652 +#: common/serializers.py:656 msgid "Filename" msgstr "Tiedostonimi" -#: common/serializers.py:659 importer/models.py:89 report/api.py:41 +#: common/serializers.py:663 common/serializers.py:730 +#: common/serializers.py:805 importer/models.py:89 report/api.py:41 #: report/models.py:293 report/serializers.py:52 msgid "Model Type" msgstr "" -#: common/serializers.py:687 +#: common/serializers.py:691 msgid "User does not have permission to create or edit attachments for this model" msgstr "" -#: common/serializers.py:731 common/serializers.py:834 +#: common/serializers.py:786 +msgid "User does not have permission to create or edit parameters for this model" +msgstr "" + +#: common/serializers.py:850 common/serializers.py:953 msgid "Selection list is locked" msgstr "" @@ -2368,7 +2513,7 @@ msgstr "" msgid "Show the `about` modal only to superusers" msgstr "" -#: common/setting/system.py:224 company/models.py:144 company/models.py:145 +#: common/setting/system.py:224 company/models.py:145 company/models.py:146 msgid "Company name" msgstr "Yrityksen nimi" @@ -2411,8 +2556,8 @@ msgstr "" #: common/setting/system.py:253 common/setting/system.py:293 #: common/setting/system.py:306 common/setting/system.py:314 #: common/setting/system.py:321 common/setting/system.py:330 -#: common/setting/system.py:339 common/setting/system.py:588 -#: common/setting/system.py:616 common/setting/system.py:707 +#: common/setting/system.py:339 common/setting/system.py:580 +#: common/setting/system.py:608 common/setting/system.py:707 #: common/setting/system.py:1103 common/setting/system.py:1119 msgid "days" msgstr "päivää" @@ -2657,12 +2802,6 @@ msgstr "" msgid "Copy category parameter templates when creating a part" msgstr "" -#: common/setting/system.py:450 part/models.py:4054 report/models.py:373 -#: report/models.py:669 report/serializers.py:94 report/serializers.py:135 -#: stock/serializers.py:234 -msgid "Template" -msgstr "" - #: common/setting/system.py:451 msgid "Parts are templates by default" msgstr "" @@ -2671,8 +2810,8 @@ msgstr "" msgid "Parts can be assembled from other components by default" msgstr "" -#: common/setting/system.py:462 part/models.py:1208 part/serializers.py:1734 -#: part/serializers.py:1741 +#: common/setting/system.py:462 part/models.py:1296 part/serializers.py:1599 +#: part/serializers.py:1606 msgid "Component" msgstr "Komponentti" @@ -2680,7 +2819,7 @@ msgstr "Komponentti" msgid "Parts can be used as sub-components by default" msgstr "" -#: common/setting/system.py:468 part/models.py:1226 +#: common/setting/system.py:468 part/models.py:1314 msgid "Purchaseable" msgstr "Ostettavissa" @@ -2688,7 +2827,7 @@ msgstr "Ostettavissa" msgid "Parts are purchaseable by default" msgstr "" -#: common/setting/system.py:474 part/models.py:1232 stock/api.py:643 +#: common/setting/system.py:474 part/models.py:1320 stock/api.py:643 msgid "Salable" msgstr "" @@ -2700,7 +2839,7 @@ msgstr "" msgid "Parts are trackable by default" msgstr "" -#: common/setting/system.py:486 part/models.py:1248 +#: common/setting/system.py:486 part/models.py:1336 msgid "Virtual" msgstr "" @@ -2749,158 +2888,158 @@ msgid "Part category default icon (empty means no icon)" msgstr "" #: common/setting/system.py:525 -msgid "Enforce Parameter Units" -msgstr "" - -#: common/setting/system.py:527 -msgid "If units are provided, parameter values must match the specified units" -msgstr "" - -#: common/setting/system.py:533 msgid "Minimum Pricing Decimal Places" msgstr "" -#: common/setting/system.py:535 +#: common/setting/system.py:527 msgid "Minimum number of decimal places to display when rendering pricing data" msgstr "" -#: common/setting/system.py:546 +#: common/setting/system.py:538 msgid "Maximum Pricing Decimal Places" msgstr "" -#: common/setting/system.py:548 +#: common/setting/system.py:540 msgid "Maximum number of decimal places to display when rendering pricing data" msgstr "" -#: common/setting/system.py:559 +#: common/setting/system.py:551 msgid "Use Supplier Pricing" msgstr "" -#: common/setting/system.py:561 +#: common/setting/system.py:553 msgid "Include supplier price breaks in overall pricing calculations" msgstr "" -#: common/setting/system.py:567 +#: common/setting/system.py:559 msgid "Purchase History Override" msgstr "" -#: common/setting/system.py:569 +#: common/setting/system.py:561 msgid "Historical purchase order pricing overrides supplier price breaks" msgstr "" -#: common/setting/system.py:575 +#: common/setting/system.py:567 msgid "Use Stock Item Pricing" msgstr "" -#: common/setting/system.py:577 +#: common/setting/system.py:569 msgid "Use pricing from manually entered stock data for pricing calculations" msgstr "" -#: common/setting/system.py:583 +#: common/setting/system.py:575 msgid "Stock Item Pricing Age" msgstr "" -#: common/setting/system.py:585 +#: common/setting/system.py:577 msgid "Exclude stock items older than this number of days from pricing calculations" msgstr "" -#: common/setting/system.py:592 +#: common/setting/system.py:584 msgid "Use Variant Pricing" msgstr "" -#: common/setting/system.py:593 +#: common/setting/system.py:585 msgid "Include variant pricing in overall pricing calculations" msgstr "" -#: common/setting/system.py:598 +#: common/setting/system.py:590 msgid "Active Variants Only" msgstr "" -#: common/setting/system.py:600 +#: common/setting/system.py:592 msgid "Only use active variant parts for calculating variant pricing" msgstr "" -#: common/setting/system.py:606 +#: common/setting/system.py:598 msgid "Auto Update Pricing" msgstr "" -#: common/setting/system.py:608 +#: common/setting/system.py:600 msgid "Automatically update part pricing when internal data changes" msgstr "" -#: common/setting/system.py:614 +#: common/setting/system.py:606 msgid "Pricing Rebuild Interval" msgstr "" -#: common/setting/system.py:615 +#: common/setting/system.py:607 msgid "Number of days before part pricing is automatically updated" msgstr "" -#: common/setting/system.py:621 +#: common/setting/system.py:613 msgid "Internal Prices" msgstr "Sisäiset hinnat" -#: common/setting/system.py:622 +#: common/setting/system.py:614 msgid "Enable internal prices for parts" msgstr "" -#: common/setting/system.py:627 +#: common/setting/system.py:619 msgid "Internal Price Override" msgstr "Sisäisen hinnan ohitus" -#: common/setting/system.py:629 +#: common/setting/system.py:621 msgid "If available, internal prices override price range calculations" msgstr "" -#: common/setting/system.py:635 +#: common/setting/system.py:627 msgid "Enable label printing" msgstr "" -#: common/setting/system.py:636 +#: common/setting/system.py:628 msgid "Enable label printing from the web interface" msgstr "" -#: common/setting/system.py:641 +#: common/setting/system.py:633 msgid "Label Image DPI" msgstr "" -#: common/setting/system.py:643 +#: common/setting/system.py:635 msgid "DPI resolution when generating image files to supply to label printing plugins" msgstr "" -#: common/setting/system.py:649 +#: common/setting/system.py:641 msgid "Enable Reports" msgstr "" -#: common/setting/system.py:650 +#: common/setting/system.py:642 msgid "Enable generation of reports" msgstr "" -#: common/setting/system.py:655 +#: common/setting/system.py:647 msgid "Debug Mode" msgstr "" -#: common/setting/system.py:656 +#: common/setting/system.py:648 msgid "Generate reports in debug mode (HTML output)" msgstr "" -#: common/setting/system.py:661 +#: common/setting/system.py:653 msgid "Log Report Errors" msgstr "" -#: common/setting/system.py:662 +#: common/setting/system.py:654 msgid "Log errors which occur when generating reports" msgstr "" -#: common/setting/system.py:667 plugin/builtin/labels/label_sheet.py:29 +#: common/setting/system.py:659 plugin/builtin/labels/label_sheet.py:29 #: report/models.py:381 msgid "Page Size" msgstr "Sivun koko" -#: common/setting/system.py:668 +#: common/setting/system.py:660 msgid "Default page size for PDF reports" msgstr "" +#: common/setting/system.py:665 +msgid "Enforce Parameter Units" +msgstr "" + +#: common/setting/system.py:667 +msgid "If units are provided, parameter values must match the specified units" +msgstr "" + #: common/setting/system.py:673 msgid "Globally Unique Serials" msgstr "" @@ -3456,688 +3595,677 @@ msgid "Display PDF reports in the browser, instead of downloading as a file" msgstr "" #: common/setting/user.py:45 -msgid "Search Parts" +msgid "Barcode Scanner in Form Fields" msgstr "" #: common/setting/user.py:46 -msgid "Display parts in search preview window" +msgid "Allow barcode scanner input in form fields" msgstr "" #: common/setting/user.py:51 -msgid "Search Supplier Parts" +msgid "Search Parts" msgstr "" #: common/setting/user.py:52 -msgid "Display supplier parts in search preview window" +msgid "Display parts in search preview window" msgstr "" #: common/setting/user.py:57 -msgid "Search Manufacturer Parts" +msgid "Search Supplier Parts" msgstr "" #: common/setting/user.py:58 -msgid "Display manufacturer parts in search preview window" +msgid "Display supplier parts in search preview window" msgstr "" #: common/setting/user.py:63 -msgid "Hide Inactive Parts" +msgid "Search Manufacturer Parts" msgstr "" #: common/setting/user.py:64 -msgid "Excluded inactive parts from search preview window" +msgid "Display manufacturer parts in search preview window" msgstr "" #: common/setting/user.py:69 -msgid "Search Categories" +msgid "Hide Inactive Parts" msgstr "" #: common/setting/user.py:70 -msgid "Display part categories in search preview window" +msgid "Excluded inactive parts from search preview window" msgstr "" #: common/setting/user.py:75 -msgid "Search Stock" +msgid "Search Categories" msgstr "" #: common/setting/user.py:76 -msgid "Display stock items in search preview window" +msgid "Display part categories in search preview window" msgstr "" #: common/setting/user.py:81 +msgid "Search Stock" +msgstr "" + +#: common/setting/user.py:82 +msgid "Display stock items in search preview window" +msgstr "" + +#: common/setting/user.py:87 msgid "Hide Unavailable Stock Items" msgstr "" -#: common/setting/user.py:83 +#: common/setting/user.py:89 msgid "Exclude stock items which are not available from the search preview window" msgstr "" -#: common/setting/user.py:89 +#: common/setting/user.py:95 msgid "Search Locations" msgstr "" -#: common/setting/user.py:90 +#: common/setting/user.py:96 msgid "Display stock locations in search preview window" msgstr "" -#: common/setting/user.py:95 +#: common/setting/user.py:101 msgid "Search Companies" msgstr "" -#: common/setting/user.py:96 +#: common/setting/user.py:102 msgid "Display companies in search preview window" msgstr "" -#: common/setting/user.py:101 +#: common/setting/user.py:107 msgid "Search Build Orders" msgstr "" -#: common/setting/user.py:102 +#: common/setting/user.py:108 msgid "Display build orders in search preview window" msgstr "" -#: common/setting/user.py:107 +#: common/setting/user.py:113 msgid "Search Purchase Orders" msgstr "" -#: common/setting/user.py:108 +#: common/setting/user.py:114 msgid "Display purchase orders in search preview window" msgstr "" -#: common/setting/user.py:113 +#: common/setting/user.py:119 msgid "Exclude Inactive Purchase Orders" msgstr "" -#: common/setting/user.py:114 +#: common/setting/user.py:120 msgid "Exclude inactive purchase orders from search preview window" msgstr "" -#: common/setting/user.py:119 +#: common/setting/user.py:125 msgid "Search Sales Orders" msgstr "" -#: common/setting/user.py:120 +#: common/setting/user.py:126 msgid "Display sales orders in search preview window" msgstr "" -#: common/setting/user.py:125 +#: common/setting/user.py:131 msgid "Exclude Inactive Sales Orders" msgstr "" -#: common/setting/user.py:126 +#: common/setting/user.py:132 msgid "Exclude inactive sales orders from search preview window" msgstr "" -#: common/setting/user.py:131 +#: common/setting/user.py:137 msgid "Search Sales Order Shipments" msgstr "" -#: common/setting/user.py:132 +#: common/setting/user.py:138 msgid "Display sales order shipments in search preview window" msgstr "" -#: common/setting/user.py:137 +#: common/setting/user.py:143 msgid "Search Return Orders" msgstr "" -#: common/setting/user.py:138 +#: common/setting/user.py:144 msgid "Display return orders in search preview window" msgstr "" -#: common/setting/user.py:143 +#: common/setting/user.py:149 msgid "Exclude Inactive Return Orders" msgstr "" -#: common/setting/user.py:144 +#: common/setting/user.py:150 msgid "Exclude inactive return orders from search preview window" msgstr "" -#: common/setting/user.py:149 +#: common/setting/user.py:155 msgid "Search Preview Results" msgstr "" -#: common/setting/user.py:151 +#: common/setting/user.py:157 msgid "Number of results to show in each section of the search preview window" msgstr "" -#: common/setting/user.py:157 +#: common/setting/user.py:163 msgid "Regex Search" msgstr "" -#: common/setting/user.py:158 +#: common/setting/user.py:164 msgid "Enable regular expressions in search queries" msgstr "" -#: common/setting/user.py:163 +#: common/setting/user.py:169 msgid "Whole Word Search" msgstr "" -#: common/setting/user.py:164 +#: common/setting/user.py:170 msgid "Search queries return results for whole word matches" msgstr "" -#: common/setting/user.py:169 +#: common/setting/user.py:175 msgid "Search Notes" msgstr "" -#: common/setting/user.py:171 +#: common/setting/user.py:177 msgid "Search queries return results for matches from the item's notes" msgstr "" -#: common/setting/user.py:177 +#: common/setting/user.py:183 msgid "Escape Key Closes Forms" msgstr "" -#: common/setting/user.py:178 +#: common/setting/user.py:184 msgid "Use the escape key to close modal forms" msgstr "" -#: common/setting/user.py:183 +#: common/setting/user.py:189 msgid "Fixed Navbar" msgstr "" -#: common/setting/user.py:184 +#: common/setting/user.py:190 msgid "The navbar position is fixed to the top of the screen" msgstr "" -#: common/setting/user.py:189 +#: common/setting/user.py:195 msgid "Fixed Table Headers" msgstr "" -#: common/setting/user.py:190 +#: common/setting/user.py:196 msgid "Table headers are fixed to the top of the table" msgstr "" -#: common/setting/user.py:195 +#: common/setting/user.py:201 msgid "Show Spotlight" msgstr "" -#: common/setting/user.py:196 +#: common/setting/user.py:202 msgid "Enable spotlight navigation functionality" msgstr "" -#: common/setting/user.py:201 +#: common/setting/user.py:207 msgid "Navigation Icons" msgstr "" -#: common/setting/user.py:202 +#: common/setting/user.py:208 msgid "Display icons in the navigation bar" msgstr "" -#: common/setting/user.py:207 +#: common/setting/user.py:213 msgid "Date Format" msgstr "" -#: common/setting/user.py:208 +#: common/setting/user.py:214 msgid "Preferred format for displaying dates" msgstr "" -#: common/setting/user.py:221 +#: common/setting/user.py:227 msgid "Show Stock History" msgstr "" -#: common/setting/user.py:222 +#: common/setting/user.py:228 msgid "Display stock history information in the part detail page" msgstr "" -#: common/setting/user.py:227 +#: common/setting/user.py:233 msgid "Show Last Breadcrumb" msgstr "" -#: common/setting/user.py:228 +#: common/setting/user.py:234 msgid "Show the current page in breadcrumbs" msgstr "" -#: common/setting/user.py:233 +#: common/setting/user.py:239 msgid "Show full stock location in tables" msgstr "" -#: common/setting/user.py:235 +#: common/setting/user.py:241 msgid "Disabled: The full location path is displayed as a hover tooltip. Enabled: The full location path is displayed as plain text." msgstr "" -#: common/setting/user.py:241 +#: common/setting/user.py:247 msgid "Show full part categories in tables" msgstr "" -#: common/setting/user.py:243 +#: common/setting/user.py:249 msgid "Disabled: The full category path is displayed as a hover tooltip. Enabled: The full category path is displayed as plain text." msgstr "" -#: common/setting/user.py:249 +#: common/setting/user.py:255 msgid "Receive error reports" msgstr "" -#: common/setting/user.py:250 +#: common/setting/user.py:256 msgid "Receive notifications for system errors" msgstr "" -#: common/setting/user.py:255 +#: common/setting/user.py:261 msgid "Last used printing machines" msgstr "" -#: common/setting/user.py:256 +#: common/setting/user.py:262 msgid "Save the last used printing machines for a user" msgstr "" -#: common/validators.py:34 +#: common/validators.py:38 +msgid "All models" +msgstr "" + +#: common/validators.py:63 msgid "No attachment model type provided" msgstr "" -#: common/validators.py:40 +#: common/validators.py:69 msgid "Invalid attachment model type" msgstr "" -#: common/validators.py:81 +#: common/validators.py:110 msgid "Minimum places cannot be greater than maximum places" msgstr "" -#: common/validators.py:93 +#: common/validators.py:122 msgid "Maximum places cannot be less than minimum places" msgstr "" -#: common/validators.py:104 +#: common/validators.py:133 msgid "An empty domain is not allowed." msgstr "Verkkotunnus ei saa olla tyhjä." -#: common/validators.py:106 +#: common/validators.py:135 #, python-brace-format msgid "Invalid domain name: {domain}" msgstr "Virheellinen verkkotunnus: {domain}" -#: common/validators.py:122 +#: common/validators.py:151 msgid "Value must be uppercase" msgstr "" -#: common/validators.py:128 +#: common/validators.py:157 msgid "Value must be a valid variable identifier" msgstr "" -#: company/api.py:147 +#: company/api.py:141 msgid "Part is Active" msgstr "" -#: company/api.py:151 +#: company/api.py:145 msgid "Manufacturer is Active" msgstr "" -#: company/api.py:286 +#: company/api.py:246 msgid "Supplier Part is Active" msgstr "" -#: company/api.py:290 +#: company/api.py:250 msgid "Internal Part is Active" msgstr "" -#: company/api.py:295 +#: company/api.py:255 msgid "Supplier is Active" msgstr "" -#: company/api.py:307 company/models.py:520 company/serializers.py:457 -#: part/serializers.py:566 +#: company/api.py:267 company/models.py:522 company/serializers.py:502 +#: part/serializers.py:477 msgid "Manufacturer" msgstr "Valmistaja" -#: company/api.py:314 company/models.py:121 company/models.py:392 +#: company/api.py:274 company/models.py:122 company/models.py:393 #: stock/api.py:900 msgid "Company" msgstr "Yritys" -#: company/api.py:324 +#: company/api.py:284 msgid "Has Stock" msgstr "" -#: company/models.py:122 +#: company/models.py:123 msgid "Companies" msgstr "Yritykset" -#: company/models.py:150 +#: company/models.py:151 msgid "Company description" msgstr "Yrityksen kuvaus" -#: company/models.py:151 +#: company/models.py:152 msgid "Description of the company" msgstr "" -#: company/models.py:157 +#: company/models.py:158 msgid "Website" msgstr "Sivusto" -#: company/models.py:158 +#: company/models.py:159 msgid "Company website URL" msgstr "Yrityksen sivuston URL" -#: company/models.py:164 +#: company/models.py:165 msgid "Phone number" msgstr "Puhelinnumero" -#: company/models.py:166 +#: company/models.py:167 msgid "Contact phone number" msgstr "" -#: company/models.py:173 +#: company/models.py:174 msgid "Contact email address" msgstr "" -#: company/models.py:178 company/models.py:296 order/models.py:513 +#: company/models.py:179 company/models.py:297 order/models.py:514 #: users/models.py:561 msgid "Contact" msgstr "Kontakti" -#: company/models.py:180 +#: company/models.py:181 msgid "Point of contact" msgstr "" -#: company/models.py:186 +#: company/models.py:187 msgid "Link to external company information" msgstr "" -#: company/models.py:191 +#: company/models.py:192 msgid "Is this company active?" msgstr "" -#: company/models.py:196 +#: company/models.py:197 msgid "Is customer" msgstr "" -#: company/models.py:197 +#: company/models.py:198 msgid "Do you sell items to this company?" msgstr "" -#: company/models.py:202 +#: company/models.py:203 msgid "Is supplier" msgstr "" -#: company/models.py:203 +#: company/models.py:204 msgid "Do you purchase items from this company?" msgstr "" -#: company/models.py:208 +#: company/models.py:209 msgid "Is manufacturer" msgstr "" -#: company/models.py:209 +#: company/models.py:210 msgid "Does this company manufacture parts?" msgstr "" -#: company/models.py:217 +#: company/models.py:218 msgid "Default currency used for this company" msgstr "" -#: company/models.py:224 +#: company/models.py:225 msgid "Tax ID" msgstr "" -#: company/models.py:225 +#: company/models.py:226 msgid "Company Tax ID" msgstr "" -#: company/models.py:335 order/models.py:523 order/models.py:2288 +#: company/models.py:336 order/models.py:524 order/models.py:2289 msgid "Address" msgstr "Osoite" -#: company/models.py:336 +#: company/models.py:337 msgid "Addresses" msgstr "" -#: company/models.py:393 +#: company/models.py:394 msgid "Select company" msgstr "" -#: company/models.py:398 +#: company/models.py:399 msgid "Address title" msgstr "" -#: company/models.py:399 +#: company/models.py:400 msgid "Title describing the address entry" msgstr "" -#: company/models.py:405 +#: company/models.py:406 msgid "Primary address" msgstr "" -#: company/models.py:406 +#: company/models.py:407 msgid "Set as primary address" msgstr "" -#: company/models.py:411 +#: company/models.py:412 msgid "Line 1" msgstr "" -#: company/models.py:412 +#: company/models.py:413 msgid "Address line 1" msgstr "" -#: company/models.py:418 +#: company/models.py:419 msgid "Line 2" msgstr "" -#: company/models.py:419 +#: company/models.py:420 msgid "Address line 2" msgstr "" -#: company/models.py:425 company/models.py:426 +#: company/models.py:426 company/models.py:427 msgid "Postal code" msgstr "" -#: company/models.py:432 +#: company/models.py:433 msgid "City/Region" msgstr "" -#: company/models.py:433 +#: company/models.py:434 msgid "Postal code city/region" msgstr "" -#: company/models.py:439 +#: company/models.py:440 msgid "State/Province" msgstr "" -#: company/models.py:440 +#: company/models.py:441 msgid "State or province" msgstr "" -#: company/models.py:446 +#: company/models.py:447 msgid "Country" msgstr "" -#: company/models.py:447 +#: company/models.py:448 msgid "Address country" msgstr "" -#: company/models.py:453 +#: company/models.py:454 msgid "Courier shipping notes" msgstr "" -#: company/models.py:454 +#: company/models.py:455 msgid "Notes for shipping courier" msgstr "" -#: company/models.py:460 +#: company/models.py:461 msgid "Internal shipping notes" msgstr "" -#: company/models.py:461 +#: company/models.py:462 msgid "Shipping notes for internal use" msgstr "" -#: company/models.py:468 +#: company/models.py:469 msgid "Link to address information (external)" msgstr "" -#: company/models.py:492 company/models.py:609 company/models.py:832 -#: company/serializers.py:471 stock/api.py:561 +#: company/models.py:494 company/models.py:786 company/serializers.py:516 +#: stock/api.py:561 msgid "Manufacturer Part" msgstr "" -#: company/models.py:509 company/models.py:800 stock/models.py:1025 +#: company/models.py:511 company/models.py:754 stock/models.py:1025 #: stock/serializers.py:407 msgid "Base Part" msgstr "" -#: company/models.py:511 company/models.py:802 +#: company/models.py:513 company/models.py:756 msgid "Select part" msgstr "" -#: company/models.py:521 +#: company/models.py:523 msgid "Select manufacturer" msgstr "Valitse valmistaja" -#: company/models.py:527 company/serializers.py:479 order/serializers.py:734 -#: part/serializers.py:576 +#: company/models.py:529 company/serializers.py:524 order/serializers.py:745 +#: part/serializers.py:487 msgid "MPN" msgstr "" -#: company/models.py:528 stock/serializers.py:572 +#: company/models.py:530 stock/serializers.py:572 msgid "Manufacturer Part Number" msgstr "Valmistajan osanumero" -#: company/models.py:535 +#: company/models.py:537 msgid "URL for external manufacturer part link" msgstr "" -#: company/models.py:544 +#: company/models.py:546 msgid "Manufacturer part description" msgstr "" -#: company/models.py:597 -msgid "Manufacturer Part Parameter" -msgstr "" - -#: company/models.py:616 -msgid "Parameter name" -msgstr "" - -#: company/models.py:623 -msgid "Parameter value" -msgstr "" - -#: company/models.py:630 part/models.py:1195 part/models.py:3857 -msgid "Units" -msgstr "" - -#: company/models.py:631 -msgid "Parameter units" -msgstr "" - -#: company/models.py:740 +#: company/models.py:694 msgid "Pack units must be compatible with the base part units" msgstr "" -#: company/models.py:747 +#: company/models.py:701 msgid "Pack units must be greater than zero" msgstr "" -#: company/models.py:761 +#: company/models.py:715 msgid "Linked manufacturer part must reference the same base part" msgstr "" -#: company/models.py:810 company/serializers.py:449 company/serializers.py:467 -#: order/models.py:639 part/serializers.py:550 +#: company/models.py:764 company/serializers.py:494 company/serializers.py:512 +#: order/models.py:640 part/serializers.py:461 #: plugin/builtin/suppliers/digikey.py:26 plugin/builtin/suppliers/lcsc.py:27 #: plugin/builtin/suppliers/mouser.py:25 plugin/builtin/suppliers/tme.py:27 #: stock/api.py:567 templates/email/overdue_purchase_order.html:16 msgid "Supplier" msgstr "Toimittaja" -#: company/models.py:811 +#: company/models.py:765 msgid "Select supplier" msgstr "Valitse toimittaja" -#: company/models.py:817 part/serializers.py:561 +#: company/models.py:771 part/serializers.py:472 msgid "Supplier stock keeping unit" msgstr "Toimittajan varastonimike" -#: company/models.py:823 +#: company/models.py:777 msgid "Is this supplier part active?" msgstr "" -#: company/models.py:833 +#: company/models.py:787 msgid "Select manufacturer part" msgstr "Valitse valmistajan osa" -#: company/models.py:840 +#: company/models.py:794 msgid "URL for external supplier part link" msgstr "" -#: company/models.py:849 +#: company/models.py:803 msgid "Supplier part description" msgstr "" -#: company/models.py:856 order/serializers.py:883 order/serializers.py:2047 -#: part/models.py:4070 part/models.py:4450 part/models.py:4819 -#: report/templates/report/inventree_bill_of_materials_report.html:140 -#: report/templates/report/inventree_purchase_order_report.html:39 -#: report/templates/report/inventree_return_order_report.html:27 -#: report/templates/report/inventree_sales_order_report.html:32 -#: report/templates/report/inventree_stock_location_report.html:105 -#: stock/serializers.py:813 -msgid "Note" -msgstr "Muistiinpano" - -#: company/models.py:865 part/models.py:2250 +#: company/models.py:819 part/models.py:2338 msgid "base cost" msgstr "" -#: company/models.py:866 part/models.py:2251 +#: company/models.py:820 part/models.py:2339 msgid "Minimum charge (e.g. stocking fee)" msgstr "" -#: company/models.py:873 order/serializers.py:875 stock/models.py:1056 +#: company/models.py:827 order/serializers.py:886 stock/models.py:1056 #: stock/serializers.py:1606 msgid "Packaging" msgstr "" -#: company/models.py:874 +#: company/models.py:828 msgid "Part packaging" msgstr "" -#: company/models.py:879 +#: company/models.py:833 msgid "Pack Quantity" msgstr "" -#: company/models.py:881 +#: company/models.py:835 msgid "Total quantity supplied in a single pack. Leave empty for single items." msgstr "" -#: company/models.py:900 part/models.py:2257 +#: company/models.py:854 part/models.py:2345 msgid "multiple" msgstr "" -#: company/models.py:901 +#: company/models.py:855 msgid "Order multiple" msgstr "" -#: company/models.py:913 +#: company/models.py:867 msgid "Quantity available from supplier" msgstr "" -#: company/models.py:919 +#: company/models.py:873 msgid "Availability Updated" msgstr "" -#: company/models.py:920 +#: company/models.py:874 msgid "Date of last update of availability data" msgstr "" -#: company/models.py:1048 +#: company/models.py:1002 msgid "Supplier Price Break" msgstr "" -#: company/serializers.py:181 +#: company/serializers.py:184 +msgid "Primary Address" +msgstr "" + +#: company/serializers.py:186 msgid "Return the string representation for the primary address. This property exists for backwards compatibility." msgstr "" -#: company/serializers.py:212 +#: company/serializers.py:218 msgid "Default currency used for this supplier" msgstr "" -#: company/serializers.py:248 +#: company/serializers.py:260 msgid "Company Name" msgstr "" -#: company/serializers.py:433 part/serializers.py:955 stock/serializers.py:428 +#: company/serializers.py:460 part/serializers.py:840 stock/serializers.py:428 msgid "In Stock" msgstr "" +#: company/serializers.py:477 +msgid "Price Breaks" +msgstr "" + #: data_exporter/mixins.py:325 data_exporter/mixins.py:403 msgid "Error occurred during data export" msgstr "" @@ -4290,7 +4418,7 @@ msgstr "" msgid "Errors" msgstr "" -#: importer/models.py:550 part/serializers.py:1268 +#: importer/models.py:550 part/serializers.py:1133 msgid "Valid" msgstr "" @@ -4402,7 +4530,7 @@ msgstr "" msgid "Connected" msgstr "" -#: machine/machine_types/label_printer.py:232 order/api.py:1795 +#: machine/machine_types/label_printer.py:232 order/api.py:1800 msgid "Unknown" msgstr "" @@ -4530,105 +4658,105 @@ msgstr "" msgid "Maximum value for progress type, required if type=progress" msgstr "" -#: order/api.py:125 +#: order/api.py:130 msgid "Order Reference" msgstr "" -#: order/api.py:153 order/api.py:1207 +#: order/api.py:158 order/api.py:1212 msgid "Outstanding" msgstr "" -#: order/api.py:169 +#: order/api.py:174 msgid "Has Project Code" msgstr "" -#: order/api.py:183 order/models.py:488 +#: order/api.py:188 order/models.py:489 msgid "Created By" msgstr "" -#: order/api.py:187 +#: order/api.py:192 msgid "Created Before" msgstr "" -#: order/api.py:191 +#: order/api.py:196 msgid "Created After" msgstr "" -#: order/api.py:195 +#: order/api.py:200 msgid "Has Start Date" msgstr "" -#: order/api.py:203 +#: order/api.py:208 msgid "Start Date Before" msgstr "" -#: order/api.py:207 +#: order/api.py:212 msgid "Start Date After" msgstr "" -#: order/api.py:211 +#: order/api.py:216 msgid "Has Target Date" msgstr "" -#: order/api.py:219 +#: order/api.py:224 msgid "Target Date Before" msgstr "" -#: order/api.py:223 +#: order/api.py:228 msgid "Target Date After" msgstr "" -#: order/api.py:274 +#: order/api.py:279 msgid "Has Pricing" msgstr "" -#: order/api.py:327 order/api.py:812 order/api.py:1490 +#: order/api.py:332 order/api.py:818 order/api.py:1495 msgid "Completed Before" msgstr "" -#: order/api.py:331 order/api.py:816 order/api.py:1494 +#: order/api.py:336 order/api.py:822 order/api.py:1499 msgid "Completed After" msgstr "" -#: order/api.py:337 order/api.py:341 +#: order/api.py:342 order/api.py:346 msgid "External Build Order" msgstr "" -#: order/api.py:526 order/api.py:914 order/api.py:1170 order/models.py:1922 -#: order/models.py:2049 order/models.py:2099 order/models.py:2279 -#: order/models.py:2477 order/models.py:2999 order/models.py:3065 +#: order/api.py:532 order/api.py:919 order/api.py:1175 order/models.py:1923 +#: order/models.py:2050 order/models.py:2100 order/models.py:2280 +#: order/models.py:2478 order/models.py:3000 order/models.py:3066 msgid "Order" msgstr "" -#: order/api.py:530 order/api.py:982 +#: order/api.py:536 order/api.py:987 msgid "Order Complete" msgstr "" -#: order/api.py:562 order/api.py:566 order/serializers.py:745 +#: order/api.py:568 order/api.py:572 order/serializers.py:756 msgid "Internal Part" msgstr "" -#: order/api.py:584 +#: order/api.py:590 msgid "Order Pending" msgstr "" -#: order/api.py:967 +#: order/api.py:972 msgid "Completed" msgstr "Valmis" -#: order/api.py:1223 +#: order/api.py:1228 msgid "Has Shipment" msgstr "" -#: order/api.py:1789 order/models.py:552 order/models.py:1923 -#: order/models.py:2050 +#: order/api.py:1794 order/models.py:553 order/models.py:1924 +#: order/models.py:2051 #: report/templates/report/inventree_purchase_order_report.html:14 #: stock/serializers.py:129 templates/email/overdue_purchase_order.html:15 msgid "Purchase Order" msgstr "" -#: order/api.py:1791 order/models.py:1251 order/models.py:2100 -#: order/models.py:2280 order/models.py:2478 +#: order/api.py:1796 order/models.py:1252 order/models.py:2101 +#: order/models.py:2281 order/models.py:2479 #: report/templates/report/inventree_build_order_report.html:135 #: report/templates/report/inventree_sales_order_report.html:14 #: report/templates/report/inventree_sales_order_shipment_report.html:15 @@ -4636,8 +4764,8 @@ msgstr "" msgid "Sales Order" msgstr "" -#: order/api.py:1793 order/models.py:2649 order/models.py:3000 -#: order/models.py:3066 +#: order/api.py:1798 order/models.py:2650 order/models.py:3001 +#: order/models.py:3067 #: report/templates/report/inventree_return_order_report.html:13 #: templates/email/overdue_return_order.html:15 msgid "Return Order" @@ -4653,722 +4781,722 @@ msgstr "Hinta yhteensä" msgid "Total price for this order" msgstr "" -#: order/models.py:96 order/serializers.py:77 +#: order/models.py:96 order/serializers.py:78 msgid "Order Currency" msgstr "Tilauksen valuutta" -#: order/models.py:99 order/serializers.py:78 +#: order/models.py:99 order/serializers.py:79 msgid "Currency for this order (leave blank to use company default)" msgstr "" -#: order/models.py:324 +#: order/models.py:325 msgid "This order is locked and cannot be modified" msgstr "" -#: order/models.py:376 +#: order/models.py:377 msgid "Contact does not match selected company" msgstr "" -#: order/models.py:383 +#: order/models.py:384 msgid "Start date must be before target date" msgstr "" -#: order/models.py:390 +#: order/models.py:391 msgid "Address does not match selected company" msgstr "" -#: order/models.py:443 +#: order/models.py:444 msgid "Order description (optional)" msgstr "" -#: order/models.py:452 order/models.py:1806 +#: order/models.py:453 order/models.py:1807 msgid "Select project code for this order" msgstr "" -#: order/models.py:458 order/models.py:1787 order/models.py:2344 +#: order/models.py:459 order/models.py:1788 order/models.py:2345 msgid "Link to external page" msgstr "" -#: order/models.py:465 +#: order/models.py:466 msgid "Start date" msgstr "" -#: order/models.py:466 +#: order/models.py:467 msgid "Scheduled start date for this order" msgstr "" -#: order/models.py:472 order/models.py:1794 order/serializers.py:309 +#: order/models.py:473 order/models.py:1795 order/serializers.py:317 #: report/templates/report/inventree_build_order_report.html:125 msgid "Target Date" msgstr "" -#: order/models.py:474 +#: order/models.py:475 msgid "Expected date for order delivery. Order will be overdue after this date." msgstr "" -#: order/models.py:494 +#: order/models.py:495 msgid "Issue Date" msgstr "" -#: order/models.py:495 +#: order/models.py:496 msgid "Date order was issued" msgstr "" -#: order/models.py:503 +#: order/models.py:504 msgid "User or group responsible for this order" msgstr "" -#: order/models.py:514 +#: order/models.py:515 msgid "Point of contact for this order" msgstr "" -#: order/models.py:524 +#: order/models.py:525 msgid "Company address for this order" msgstr "" -#: order/models.py:615 order/models.py:1312 +#: order/models.py:616 order/models.py:1313 msgid "Order reference" msgstr "Tilauksen viite" -#: order/models.py:624 order/models.py:1336 order/models.py:2737 +#: order/models.py:625 order/models.py:1337 order/models.py:2738 #: stock/serializers.py:559 stock/serializers.py:988 users/models.py:542 msgid "Status" msgstr "Tila" -#: order/models.py:625 +#: order/models.py:626 msgid "Purchase order status" msgstr "" -#: order/models.py:640 +#: order/models.py:641 msgid "Company from which the items are being ordered" msgstr "" -#: order/models.py:651 +#: order/models.py:652 msgid "Supplier Reference" msgstr "" -#: order/models.py:652 +#: order/models.py:653 msgid "Supplier order reference code" msgstr "" -#: order/models.py:661 +#: order/models.py:662 msgid "received by" msgstr "" -#: order/models.py:668 order/models.py:2752 +#: order/models.py:669 order/models.py:2753 msgid "Date order was completed" msgstr "" -#: order/models.py:677 order/models.py:1981 +#: order/models.py:678 order/models.py:1982 msgid "Destination" msgstr "" -#: order/models.py:678 order/models.py:1985 +#: order/models.py:679 order/models.py:1986 msgid "Destination for received items" msgstr "" -#: order/models.py:724 +#: order/models.py:725 msgid "Part supplier must match PO supplier" msgstr "" -#: order/models.py:994 +#: order/models.py:995 msgid "Line item does not match purchase order" msgstr "" -#: order/models.py:997 +#: order/models.py:998 msgid "Line item is missing a linked part" msgstr "" -#: order/models.py:1011 +#: order/models.py:1012 msgid "Quantity must be a positive number" msgstr "" -#: order/models.py:1323 order/models.py:2724 stock/models.py:1078 +#: order/models.py:1324 order/models.py:2725 stock/models.py:1078 #: stock/models.py:1079 stock/serializers.py:1322 #: templates/email/overdue_return_order.html:16 #: templates/email/overdue_sales_order.html:16 msgid "Customer" msgstr "Asiakas" -#: order/models.py:1324 +#: order/models.py:1325 msgid "Company to which the items are being sold" msgstr "" -#: order/models.py:1337 +#: order/models.py:1338 msgid "Sales order status" msgstr "" -#: order/models.py:1348 order/models.py:2744 +#: order/models.py:1349 order/models.py:2745 msgid "Customer Reference " msgstr "Asiakkaan viite " -#: order/models.py:1349 order/models.py:2745 +#: order/models.py:1350 order/models.py:2746 msgid "Customer order reference code" msgstr "" -#: order/models.py:1353 order/models.py:2296 +#: order/models.py:1354 order/models.py:2297 msgid "Shipment Date" msgstr "" -#: order/models.py:1362 +#: order/models.py:1363 msgid "shipped by" msgstr "" -#: order/models.py:1413 +#: order/models.py:1414 msgid "Order is already complete" msgstr "" -#: order/models.py:1416 +#: order/models.py:1417 msgid "Order is already cancelled" msgstr "" -#: order/models.py:1420 +#: order/models.py:1421 msgid "Only an open order can be marked as complete" msgstr "" -#: order/models.py:1424 +#: order/models.py:1425 msgid "Order cannot be completed as there are incomplete shipments" msgstr "" -#: order/models.py:1429 +#: order/models.py:1430 msgid "Order cannot be completed as there are incomplete allocations" msgstr "" -#: order/models.py:1438 +#: order/models.py:1439 msgid "Order cannot be completed as there are incomplete line items" msgstr "" -#: order/models.py:1733 order/models.py:1749 +#: order/models.py:1734 order/models.py:1750 msgid "The order is locked and cannot be modified" msgstr "" -#: order/models.py:1757 +#: order/models.py:1758 msgid "Item quantity" msgstr "" -#: order/models.py:1774 +#: order/models.py:1775 msgid "Line item reference" msgstr "" -#: order/models.py:1781 +#: order/models.py:1782 msgid "Line item notes" msgstr "" -#: order/models.py:1796 +#: order/models.py:1797 msgid "Target date for this line item (leave blank to use the target date from the order)" msgstr "" -#: order/models.py:1826 +#: order/models.py:1827 msgid "Line item description (optional)" msgstr "" -#: order/models.py:1833 +#: order/models.py:1834 msgid "Additional context for this line" msgstr "" -#: order/models.py:1843 +#: order/models.py:1844 msgid "Unit price" msgstr "" -#: order/models.py:1862 +#: order/models.py:1863 msgid "Purchase Order Line Item" msgstr "" -#: order/models.py:1889 +#: order/models.py:1890 msgid "Supplier part must match supplier" msgstr "" -#: order/models.py:1894 +#: order/models.py:1895 msgid "Build order must be marked as external" msgstr "" -#: order/models.py:1901 +#: order/models.py:1902 msgid "Build orders can only be linked to assembly parts" msgstr "" -#: order/models.py:1907 +#: order/models.py:1908 msgid "Build order part must match line item part" msgstr "" -#: order/models.py:1942 +#: order/models.py:1943 msgid "Supplier part" msgstr "" -#: order/models.py:1949 +#: order/models.py:1950 msgid "Received" msgstr "Vastaanotettu" -#: order/models.py:1950 +#: order/models.py:1951 msgid "Number of items received" msgstr "" -#: order/models.py:1958 stock/models.py:1201 stock/serializers.py:637 +#: order/models.py:1959 stock/models.py:1201 stock/serializers.py:637 msgid "Purchase Price" msgstr "" -#: order/models.py:1959 +#: order/models.py:1960 msgid "Unit purchase price" msgstr "" -#: order/models.py:1975 +#: order/models.py:1976 msgid "External Build Order to be fulfilled by this line item" msgstr "" -#: order/models.py:2038 +#: order/models.py:2039 msgid "Purchase Order Extra Line" msgstr "" -#: order/models.py:2067 +#: order/models.py:2068 msgid "Sales Order Line Item" msgstr "" -#: order/models.py:2092 +#: order/models.py:2093 msgid "Only salable parts can be assigned to a sales order" msgstr "" -#: order/models.py:2118 +#: order/models.py:2119 msgid "Sale Price" msgstr "" -#: order/models.py:2119 +#: order/models.py:2120 msgid "Unit sale price" msgstr "" -#: order/models.py:2128 order/status_codes.py:50 +#: order/models.py:2129 order/status_codes.py:50 msgid "Shipped" msgstr "Lähetetty" -#: order/models.py:2129 +#: order/models.py:2130 msgid "Shipped quantity" msgstr "" -#: order/models.py:2240 +#: order/models.py:2241 msgid "Sales Order Shipment" msgstr "" -#: order/models.py:2253 +#: order/models.py:2254 msgid "Shipment address must match the customer" msgstr "" -#: order/models.py:2289 +#: order/models.py:2290 msgid "Shipping address for this shipment" msgstr "" -#: order/models.py:2297 +#: order/models.py:2298 msgid "Date of shipment" msgstr "" -#: order/models.py:2303 +#: order/models.py:2304 msgid "Delivery Date" msgstr "" -#: order/models.py:2304 +#: order/models.py:2305 msgid "Date of delivery of shipment" msgstr "" -#: order/models.py:2312 +#: order/models.py:2313 msgid "Checked By" msgstr "" -#: order/models.py:2313 +#: order/models.py:2314 msgid "User who checked this shipment" msgstr "" -#: order/models.py:2320 order/models.py:2574 order/serializers.py:1711 -#: order/serializers.py:1835 +#: order/models.py:2321 order/models.py:2575 order/serializers.py:1725 +#: order/serializers.py:1849 #: report/templates/report/inventree_sales_order_shipment_report.html:14 msgid "Shipment" msgstr "" -#: order/models.py:2321 +#: order/models.py:2322 msgid "Shipment number" msgstr "" -#: order/models.py:2329 +#: order/models.py:2330 msgid "Tracking Number" msgstr "Seurantakoodi" -#: order/models.py:2330 +#: order/models.py:2331 msgid "Shipment tracking information" msgstr "" -#: order/models.py:2337 +#: order/models.py:2338 msgid "Invoice Number" msgstr "Laskunumero" -#: order/models.py:2338 +#: order/models.py:2339 msgid "Reference number for associated invoice" msgstr "" -#: order/models.py:2377 +#: order/models.py:2378 msgid "Shipment has already been sent" msgstr "" -#: order/models.py:2380 +#: order/models.py:2381 msgid "Shipment has no allocated stock items" msgstr "" -#: order/models.py:2387 +#: order/models.py:2388 msgid "Shipment must be checked before it can be completed" msgstr "" -#: order/models.py:2466 +#: order/models.py:2467 msgid "Sales Order Extra Line" msgstr "" -#: order/models.py:2495 +#: order/models.py:2496 msgid "Sales Order Allocation" msgstr "" -#: order/models.py:2518 order/models.py:2520 +#: order/models.py:2519 order/models.py:2521 msgid "Stock item has not been assigned" msgstr "" -#: order/models.py:2527 +#: order/models.py:2528 msgid "Cannot allocate stock item to a line with a different part" msgstr "" -#: order/models.py:2530 +#: order/models.py:2531 msgid "Cannot allocate stock to a line without a part" msgstr "" -#: order/models.py:2533 +#: order/models.py:2534 msgid "Allocation quantity cannot exceed stock quantity" msgstr "" -#: order/models.py:2552 order/serializers.py:1581 +#: order/models.py:2553 order/serializers.py:1595 msgid "Quantity must be 1 for serialized stock item" msgstr "" -#: order/models.py:2555 +#: order/models.py:2556 msgid "Sales order does not match shipment" msgstr "" -#: order/models.py:2556 plugin/base/barcodes/api.py:642 +#: order/models.py:2557 plugin/base/barcodes/api.py:642 msgid "Shipment does not match sales order" msgstr "" -#: order/models.py:2564 +#: order/models.py:2565 msgid "Line" msgstr "" -#: order/models.py:2575 +#: order/models.py:2576 msgid "Sales order shipment reference" msgstr "" -#: order/models.py:2588 order/models.py:3007 +#: order/models.py:2589 order/models.py:3008 msgid "Item" msgstr "" -#: order/models.py:2589 +#: order/models.py:2590 msgid "Select stock item to allocate" msgstr "" -#: order/models.py:2598 +#: order/models.py:2599 msgid "Enter stock allocation quantity" msgstr "" -#: order/models.py:2713 +#: order/models.py:2714 msgid "Return Order reference" msgstr "" -#: order/models.py:2725 +#: order/models.py:2726 msgid "Company from which items are being returned" msgstr "" -#: order/models.py:2738 +#: order/models.py:2739 msgid "Return order status" msgstr "" -#: order/models.py:2965 +#: order/models.py:2966 msgid "Return Order Line Item" msgstr "" -#: order/models.py:2978 +#: order/models.py:2979 msgid "Stock item must be specified" msgstr "" -#: order/models.py:2982 +#: order/models.py:2983 msgid "Return quantity exceeds stock quantity" msgstr "" -#: order/models.py:2987 +#: order/models.py:2988 msgid "Return quantity must be greater than zero" msgstr "" -#: order/models.py:2992 +#: order/models.py:2993 msgid "Invalid quantity for serialized stock item" msgstr "" -#: order/models.py:3008 +#: order/models.py:3009 msgid "Select item to return from customer" msgstr "" -#: order/models.py:3023 +#: order/models.py:3024 msgid "Received Date" msgstr "" -#: order/models.py:3024 +#: order/models.py:3025 msgid "The date this this return item was received" msgstr "" -#: order/models.py:3036 +#: order/models.py:3037 msgid "Outcome" msgstr "" -#: order/models.py:3037 +#: order/models.py:3038 msgid "Outcome for this line item" msgstr "" -#: order/models.py:3044 +#: order/models.py:3045 msgid "Cost associated with return or repair for this line item" msgstr "" -#: order/models.py:3054 +#: order/models.py:3055 msgid "Return Order Extra Line" msgstr "" -#: order/serializers.py:91 +#: order/serializers.py:92 msgid "Order ID" msgstr "" -#: order/serializers.py:91 +#: order/serializers.py:92 msgid "ID of the order to duplicate" msgstr "" -#: order/serializers.py:97 +#: order/serializers.py:98 msgid "Copy Lines" msgstr "" -#: order/serializers.py:98 +#: order/serializers.py:99 msgid "Copy line items from the original order" msgstr "" -#: order/serializers.py:104 +#: order/serializers.py:105 msgid "Copy Extra Lines" msgstr "" -#: order/serializers.py:105 +#: order/serializers.py:106 msgid "Copy extra line items from the original order" msgstr "" -#: order/serializers.py:120 +#: order/serializers.py:121 #: report/templates/report/inventree_purchase_order_report.html:29 #: report/templates/report/inventree_return_order_report.html:19 #: report/templates/report/inventree_sales_order_report.html:22 msgid "Line Items" msgstr "" -#: order/serializers.py:125 +#: order/serializers.py:126 msgid "Completed Lines" msgstr "" -#: order/serializers.py:192 +#: order/serializers.py:199 msgid "Duplicate Order" msgstr "" -#: order/serializers.py:193 +#: order/serializers.py:200 msgid "Specify options for duplicating this order" msgstr "" -#: order/serializers.py:270 +#: order/serializers.py:278 msgid "Invalid order ID" msgstr "" -#: order/serializers.py:466 +#: order/serializers.py:477 msgid "Supplier Name" msgstr "" -#: order/serializers.py:510 +#: order/serializers.py:521 msgid "Order cannot be cancelled" msgstr "" -#: order/serializers.py:525 order/serializers.py:1602 +#: order/serializers.py:536 order/serializers.py:1616 msgid "Allow order to be closed with incomplete line items" msgstr "" -#: order/serializers.py:535 order/serializers.py:1612 +#: order/serializers.py:546 order/serializers.py:1626 msgid "Order has incomplete line items" msgstr "" -#: order/serializers.py:665 +#: order/serializers.py:676 msgid "Order is not open" msgstr "" -#: order/serializers.py:692 +#: order/serializers.py:703 msgid "Auto Pricing" msgstr "" -#: order/serializers.py:694 +#: order/serializers.py:705 msgid "Automatically calculate purchase price based on supplier part data" msgstr "" -#: order/serializers.py:704 +#: order/serializers.py:715 msgid "Purchase price currency" msgstr "" -#: order/serializers.py:718 +#: order/serializers.py:729 msgid "Merge Items" msgstr "" -#: order/serializers.py:720 +#: order/serializers.py:731 msgid "Merge items with the same part, destination and target date into one line item" msgstr "" -#: order/serializers.py:727 part/serializers.py:560 +#: order/serializers.py:738 part/serializers.py:471 msgid "SKU" msgstr "" -#: order/serializers.py:741 part/models.py:1089 part/serializers.py:372 +#: order/serializers.py:752 part/models.py:1177 part/serializers.py:337 msgid "Internal Part Number" msgstr "" -#: order/serializers.py:749 +#: order/serializers.py:760 msgid "Internal Part Name" msgstr "" -#: order/serializers.py:765 +#: order/serializers.py:776 msgid "Supplier part must be specified" msgstr "" -#: order/serializers.py:768 +#: order/serializers.py:779 msgid "Purchase order must be specified" msgstr "" -#: order/serializers.py:776 +#: order/serializers.py:787 msgid "Supplier must match purchase order" msgstr "" -#: order/serializers.py:777 +#: order/serializers.py:788 msgid "Purchase order must match supplier" msgstr "" -#: order/serializers.py:825 order/serializers.py:1682 +#: order/serializers.py:836 order/serializers.py:1696 msgid "Line Item" msgstr "" -#: order/serializers.py:834 order/serializers.py:974 order/serializers.py:2043 +#: order/serializers.py:845 order/serializers.py:985 order/serializers.py:2060 msgid "Select destination location for received items" msgstr "" -#: order/serializers.py:850 +#: order/serializers.py:861 msgid "Enter batch code for incoming stock items" msgstr "" -#: order/serializers.py:857 stock/models.py:1160 +#: order/serializers.py:868 stock/models.py:1160 #: templates/email/stale_stock_notification.html:22 users/models.py:137 msgid "Expiry Date" msgstr "" -#: order/serializers.py:858 +#: order/serializers.py:869 msgid "Enter expiry date for incoming stock items" msgstr "" -#: order/serializers.py:866 +#: order/serializers.py:877 msgid "Enter serial numbers for incoming stock items" msgstr "" -#: order/serializers.py:876 +#: order/serializers.py:887 msgid "Override packaging information for incoming stock items" msgstr "" -#: order/serializers.py:884 order/serializers.py:2048 +#: order/serializers.py:895 order/serializers.py:2065 msgid "Additional note for incoming stock items" msgstr "" -#: order/serializers.py:891 +#: order/serializers.py:902 msgid "Barcode" msgstr "Viivakoodi" -#: order/serializers.py:892 +#: order/serializers.py:903 msgid "Scanned barcode" msgstr "" -#: order/serializers.py:908 +#: order/serializers.py:919 msgid "Barcode is already in use" msgstr "" -#: order/serializers.py:991 order/serializers.py:2067 +#: order/serializers.py:1002 order/serializers.py:2084 msgid "Line items must be provided" msgstr "" -#: order/serializers.py:1010 +#: order/serializers.py:1021 msgid "Destination location must be specified" msgstr "" -#: order/serializers.py:1017 +#: order/serializers.py:1028 msgid "Supplied barcode values must be unique" msgstr "" -#: order/serializers.py:1121 +#: order/serializers.py:1135 msgid "Shipments" msgstr "" -#: order/serializers.py:1125 +#: order/serializers.py:1139 msgid "Completed Shipments" msgstr "" -#: order/serializers.py:1293 +#: order/serializers.py:1307 msgid "Sale price currency" msgstr "" -#: order/serializers.py:1339 +#: order/serializers.py:1353 msgid "Allocated Items" msgstr "" -#: order/serializers.py:1484 +#: order/serializers.py:1498 msgid "No shipment details provided" msgstr "" -#: order/serializers.py:1545 order/serializers.py:1691 +#: order/serializers.py:1559 order/serializers.py:1705 msgid "Line item is not associated with this order" msgstr "" -#: order/serializers.py:1564 +#: order/serializers.py:1578 msgid "Quantity must be positive" msgstr "" -#: order/serializers.py:1701 +#: order/serializers.py:1715 msgid "Enter serial numbers to allocate" msgstr "" -#: order/serializers.py:1723 order/serializers.py:1843 +#: order/serializers.py:1737 order/serializers.py:1857 msgid "Shipment has already been shipped" msgstr "" -#: order/serializers.py:1726 order/serializers.py:1846 +#: order/serializers.py:1740 order/serializers.py:1860 msgid "Shipment is not associated with this order" msgstr "" -#: order/serializers.py:1781 +#: order/serializers.py:1795 msgid "No match found for the following serial numbers" msgstr "" -#: order/serializers.py:1788 +#: order/serializers.py:1802 msgid "The following serial numbers are unavailable" msgstr "" -#: order/serializers.py:2009 +#: order/serializers.py:2026 msgid "Return order line item" msgstr "" -#: order/serializers.py:2019 +#: order/serializers.py:2036 msgid "Line item does not match return order" msgstr "" -#: order/serializers.py:2022 +#: order/serializers.py:2039 msgid "Line item has already been received" msgstr "" -#: order/serializers.py:2059 +#: order/serializers.py:2076 msgid "Items can only be received against orders which are in progress" msgstr "" -#: order/serializers.py:2124 +#: order/serializers.py:2141 msgid "Quantity to return" msgstr "" -#: order/serializers.py:2140 +#: order/serializers.py:2157 msgid "Line price currency" msgstr "" @@ -5431,1190 +5559,1109 @@ msgstr "" msgid "Return order {ro} is now overdue" msgstr "" -#: part/api.py:108 +#: part/api.py:103 msgid "Starred" msgstr "" -#: part/api.py:110 +#: part/api.py:105 msgid "Filter by starred categories" msgstr "" -#: part/api.py:127 stock/api.py:288 +#: part/api.py:122 stock/api.py:288 msgid "Depth" msgstr "" -#: part/api.py:127 +#: part/api.py:122 msgid "Filter by category depth" msgstr "" -#: part/api.py:145 stock/api.py:306 +#: part/api.py:140 stock/api.py:306 msgid "Top Level" msgstr "" -#: part/api.py:147 +#: part/api.py:142 msgid "Filter by top-level categories" msgstr "" -#: part/api.py:160 stock/api.py:321 +#: part/api.py:155 stock/api.py:321 msgid "Cascade" msgstr "" -#: part/api.py:162 +#: part/api.py:157 msgid "Include sub-categories in filtered results" msgstr "" -#: part/api.py:182 +#: part/api.py:177 msgid "Parent" msgstr "" -#: part/api.py:184 +#: part/api.py:179 msgid "Filter by parent category" msgstr "" -#: part/api.py:219 +#: part/api.py:214 msgid "Exclude sub-categories under the specified category" msgstr "" -#: part/api.py:445 +#: part/api.py:440 msgid "Has Results" msgstr "" -#: part/api.py:666 +#: part/api.py:661 msgid "Is Variant" msgstr "" -#: part/api.py:674 +#: part/api.py:669 msgid "Is Revision" msgstr "" -#: part/api.py:684 +#: part/api.py:679 msgid "Has Revisions" msgstr "" -#: part/api.py:865 +#: part/api.py:860 msgid "BOM Valid" msgstr "" -#: part/api.py:974 +#: part/api.py:969 msgid "Cascade Categories" msgstr "" -#: part/api.py:975 +#: part/api.py:970 msgid "If true, include items in child categories of the given category" msgstr "" -#: part/api.py:981 +#: part/api.py:976 msgid "Filter by numeric category ID or the literal 'null'" msgstr "" -#: part/api.py:1533 +#: part/api.py:1258 msgid "Assembly part is testable" msgstr "" -#: part/api.py:1542 +#: part/api.py:1267 msgid "Component part is testable" msgstr "" -#: part/api.py:1611 +#: part/api.py:1336 msgid "Uses" msgstr "" -#: part/models.py:96 part/models.py:4163 +#: part/models.py:93 part/models.py:436 #: templates/email/part_event_notification.html:16 msgid "Part Category" msgstr "" -#: part/models.py:97 users/ruleset.py:27 +#: part/models.py:94 users/ruleset.py:27 msgid "Part Categories" msgstr "" -#: part/models.py:115 part/models.py:1125 +#: part/models.py:112 part/models.py:1213 msgid "Default Location" msgstr "" -#: part/models.py:116 +#: part/models.py:113 msgid "Default location for parts in this category" msgstr "" -#: part/models.py:121 stock/models.py:216 +#: part/models.py:118 stock/models.py:216 msgid "Structural" msgstr "" -#: part/models.py:123 +#: part/models.py:120 msgid "Parts may not be directly assigned to a structural category, but may be assigned to child categories." msgstr "" -#: part/models.py:132 +#: part/models.py:129 msgid "Default keywords" msgstr "Oletus avainsanat" -#: part/models.py:133 +#: part/models.py:130 msgid "Default keywords for parts in this category" msgstr "" -#: part/models.py:140 stock/models.py:97 stock/models.py:198 +#: part/models.py:137 stock/models.py:97 stock/models.py:198 msgid "Icon" msgstr "Kuvake" -#: part/models.py:141 part/serializers.py:148 part/serializers.py:167 +#: part/models.py:138 part/serializers.py:147 part/serializers.py:166 #: stock/models.py:199 msgid "Icon (optional)" msgstr "Kuvake (valinnainen)" -#: part/models.py:185 +#: part/models.py:182 msgid "You cannot make this part category structural because some parts are already assigned to it!" msgstr "" -#: part/models.py:473 part/serializers.py:119 part/serializers.py:310 -#: users/ruleset.py:28 +#: part/models.py:392 +msgid "Part Category Parameter Template" +msgstr "" + +#: part/models.py:448 +msgid "Default Value" +msgstr "" + +#: part/models.py:449 +msgid "Default Parameter Value" +msgstr "" + +#: part/models.py:551 part/serializers.py:118 users/ruleset.py:28 msgid "Parts" msgstr "" -#: part/models.py:525 +#: part/models.py:597 +msgid "Cannot delete parameters of a locked part" +msgstr "" + +#: part/models.py:602 +msgid "Cannot modify parameters of a locked part" +msgstr "" + +#: part/models.py:613 msgid "Cannot delete this part as it is locked" msgstr "" -#: part/models.py:528 +#: part/models.py:616 msgid "Cannot delete this part as it is still active" msgstr "" -#: part/models.py:533 +#: part/models.py:621 msgid "Cannot delete this part as it is used in an assembly" msgstr "" -#: part/models.py:616 part/models.py:623 +#: part/models.py:704 part/models.py:711 #, python-brace-format msgid "Part '{self}' cannot be used in BOM for '{parent}' (recursive)" msgstr "" -#: part/models.py:635 +#: part/models.py:723 #, python-brace-format msgid "Part '{parent}' is used in BOM for '{self}' (recursive)" msgstr "" -#: part/models.py:702 +#: part/models.py:790 #, python-brace-format msgid "IPN must match regex pattern {pattern}" msgstr "" -#: part/models.py:710 +#: part/models.py:798 msgid "Part cannot be a revision of itself" msgstr "" -#: part/models.py:717 +#: part/models.py:805 msgid "Cannot make a revision of a part which is already a revision" msgstr "" -#: part/models.py:724 +#: part/models.py:812 msgid "Revision code must be specified" msgstr "" -#: part/models.py:731 +#: part/models.py:819 msgid "Revisions are only allowed for assembly parts" msgstr "" -#: part/models.py:738 +#: part/models.py:826 msgid "Cannot make a revision of a template part" msgstr "" -#: part/models.py:744 +#: part/models.py:832 msgid "Parent part must point to the same template" msgstr "" -#: part/models.py:841 +#: part/models.py:929 msgid "Stock item with this serial number already exists" msgstr "" -#: part/models.py:971 +#: part/models.py:1059 msgid "Duplicate IPN not allowed in part settings" msgstr "" -#: part/models.py:983 +#: part/models.py:1071 msgid "Duplicate part revision already exists." msgstr "" -#: part/models.py:992 +#: part/models.py:1080 msgid "Part with this Name, IPN and Revision already exists." msgstr "" -#: part/models.py:1007 +#: part/models.py:1095 msgid "Parts cannot be assigned to structural part categories!" msgstr "" -#: part/models.py:1039 +#: part/models.py:1127 msgid "Part name" msgstr "" -#: part/models.py:1044 +#: part/models.py:1132 msgid "Is Template" msgstr "" -#: part/models.py:1045 +#: part/models.py:1133 msgid "Is this part a template part?" msgstr "" -#: part/models.py:1055 +#: part/models.py:1143 msgid "Is this part a variant of another part?" msgstr "" -#: part/models.py:1056 +#: part/models.py:1144 msgid "Variant Of" msgstr "" -#: part/models.py:1063 +#: part/models.py:1151 msgid "Part description (optional)" msgstr "" -#: part/models.py:1070 +#: part/models.py:1158 msgid "Keywords" msgstr "Avainsanat" -#: part/models.py:1071 +#: part/models.py:1159 msgid "Part keywords to improve visibility in search results" msgstr "" -#: part/models.py:1081 +#: part/models.py:1169 msgid "Part category" msgstr "" -#: part/models.py:1088 part/serializers.py:929 +#: part/models.py:1176 part/serializers.py:814 #: report/templates/report/inventree_stock_location_report.html:103 msgid "IPN" msgstr "" -#: part/models.py:1096 +#: part/models.py:1184 msgid "Part revision or version number" msgstr "" -#: part/models.py:1097 report/models.py:228 +#: part/models.py:1185 report/models.py:228 msgid "Revision" msgstr "" -#: part/models.py:1106 +#: part/models.py:1194 msgid "Is this part a revision of another part?" msgstr "" -#: part/models.py:1107 +#: part/models.py:1195 msgid "Revision Of" msgstr "" -#: part/models.py:1123 +#: part/models.py:1211 msgid "Where is this item normally stored?" msgstr "" -#: part/models.py:1169 +#: part/models.py:1257 msgid "Default Supplier" msgstr "" -#: part/models.py:1170 +#: part/models.py:1258 msgid "Default supplier part" msgstr "" -#: part/models.py:1177 +#: part/models.py:1265 msgid "Default Expiry" msgstr "" -#: part/models.py:1178 +#: part/models.py:1266 msgid "Expiry time (in days) for stock items of this part" msgstr "" -#: part/models.py:1186 part/serializers.py:1003 +#: part/models.py:1274 part/serializers.py:888 msgid "Minimum Stock" msgstr "" -#: part/models.py:1187 +#: part/models.py:1275 msgid "Minimum allowed stock level" msgstr "" -#: part/models.py:1196 +#: part/models.py:1284 msgid "Units of measure for this part" msgstr "" -#: part/models.py:1203 +#: part/models.py:1291 msgid "Can this part be built from other parts?" msgstr "" -#: part/models.py:1209 +#: part/models.py:1297 msgid "Can this part be used to build other parts?" msgstr "" -#: part/models.py:1215 +#: part/models.py:1303 msgid "Does this part have tracking for unique items?" msgstr "" -#: part/models.py:1221 +#: part/models.py:1309 msgid "Can this part have test results recorded against it?" msgstr "" -#: part/models.py:1227 +#: part/models.py:1315 msgid "Can this part be purchased from external suppliers?" msgstr "" -#: part/models.py:1233 +#: part/models.py:1321 msgid "Can this part be sold to customers?" msgstr "" -#: part/models.py:1237 +#: part/models.py:1325 msgid "Is this part active?" msgstr "" -#: part/models.py:1243 +#: part/models.py:1331 msgid "Locked parts cannot be edited" msgstr "" -#: part/models.py:1249 +#: part/models.py:1337 msgid "Is this a virtual part, such as a software product or license?" msgstr "" -#: part/models.py:1254 +#: part/models.py:1342 msgid "BOM Validated" msgstr "" -#: part/models.py:1255 +#: part/models.py:1343 msgid "Is the BOM for this part valid?" msgstr "" -#: part/models.py:1261 +#: part/models.py:1349 msgid "BOM checksum" msgstr "" -#: part/models.py:1262 +#: part/models.py:1350 msgid "Stored BOM checksum" msgstr "" -#: part/models.py:1270 +#: part/models.py:1358 msgid "BOM checked by" msgstr "" -#: part/models.py:1275 +#: part/models.py:1363 msgid "BOM checked date" msgstr "" -#: part/models.py:1291 +#: part/models.py:1379 msgid "Creation User" msgstr "" -#: part/models.py:1301 +#: part/models.py:1389 msgid "Owner responsible for this part" msgstr "" -#: part/models.py:2258 +#: part/models.py:2346 msgid "Sell multiple" msgstr "" -#: part/models.py:3286 +#: part/models.py:3350 msgid "Currency used to cache pricing calculations" msgstr "" -#: part/models.py:3302 +#: part/models.py:3366 msgid "Minimum BOM Cost" msgstr "" -#: part/models.py:3303 +#: part/models.py:3367 msgid "Minimum cost of component parts" msgstr "" -#: part/models.py:3309 +#: part/models.py:3373 msgid "Maximum BOM Cost" msgstr "" -#: part/models.py:3310 +#: part/models.py:3374 msgid "Maximum cost of component parts" msgstr "" -#: part/models.py:3316 +#: part/models.py:3380 msgid "Minimum Purchase Cost" msgstr "" -#: part/models.py:3317 +#: part/models.py:3381 msgid "Minimum historical purchase cost" msgstr "" -#: part/models.py:3323 +#: part/models.py:3387 msgid "Maximum Purchase Cost" msgstr "" -#: part/models.py:3324 +#: part/models.py:3388 msgid "Maximum historical purchase cost" msgstr "" -#: part/models.py:3330 +#: part/models.py:3394 msgid "Minimum Internal Price" msgstr "" -#: part/models.py:3331 +#: part/models.py:3395 msgid "Minimum cost based on internal price breaks" msgstr "" -#: part/models.py:3337 +#: part/models.py:3401 msgid "Maximum Internal Price" msgstr "" -#: part/models.py:3338 +#: part/models.py:3402 msgid "Maximum cost based on internal price breaks" msgstr "" -#: part/models.py:3344 +#: part/models.py:3408 msgid "Minimum Supplier Price" msgstr "" -#: part/models.py:3345 +#: part/models.py:3409 msgid "Minimum price of part from external suppliers" msgstr "" -#: part/models.py:3351 +#: part/models.py:3415 msgid "Maximum Supplier Price" msgstr "" -#: part/models.py:3352 +#: part/models.py:3416 msgid "Maximum price of part from external suppliers" msgstr "" -#: part/models.py:3358 +#: part/models.py:3422 msgid "Minimum Variant Cost" msgstr "" -#: part/models.py:3359 +#: part/models.py:3423 msgid "Calculated minimum cost of variant parts" msgstr "" -#: part/models.py:3365 +#: part/models.py:3429 msgid "Maximum Variant Cost" msgstr "" -#: part/models.py:3366 +#: part/models.py:3430 msgid "Calculated maximum cost of variant parts" msgstr "" -#: part/models.py:3372 part/models.py:3386 +#: part/models.py:3436 part/models.py:3450 msgid "Minimum Cost" msgstr "" -#: part/models.py:3373 +#: part/models.py:3437 msgid "Override minimum cost" msgstr "" -#: part/models.py:3379 part/models.py:3393 +#: part/models.py:3443 part/models.py:3457 msgid "Maximum Cost" msgstr "" -#: part/models.py:3380 +#: part/models.py:3444 msgid "Override maximum cost" msgstr "" -#: part/models.py:3387 +#: part/models.py:3451 msgid "Calculated overall minimum cost" msgstr "" -#: part/models.py:3394 +#: part/models.py:3458 msgid "Calculated overall maximum cost" msgstr "" -#: part/models.py:3400 +#: part/models.py:3464 msgid "Minimum Sale Price" msgstr "" -#: part/models.py:3401 +#: part/models.py:3465 msgid "Minimum sale price based on price breaks" msgstr "" -#: part/models.py:3407 +#: part/models.py:3471 msgid "Maximum Sale Price" msgstr "" -#: part/models.py:3408 +#: part/models.py:3472 msgid "Maximum sale price based on price breaks" msgstr "" -#: part/models.py:3414 +#: part/models.py:3478 msgid "Minimum Sale Cost" msgstr "" -#: part/models.py:3415 +#: part/models.py:3479 msgid "Minimum historical sale price" msgstr "" -#: part/models.py:3421 +#: part/models.py:3485 msgid "Maximum Sale Cost" msgstr "" -#: part/models.py:3422 +#: part/models.py:3486 msgid "Maximum historical sale price" msgstr "" -#: part/models.py:3440 +#: part/models.py:3504 msgid "Part for stocktake" msgstr "" -#: part/models.py:3445 +#: part/models.py:3509 msgid "Item Count" msgstr "" -#: part/models.py:3446 +#: part/models.py:3510 msgid "Number of individual stock entries at time of stocktake" msgstr "" -#: part/models.py:3454 +#: part/models.py:3518 msgid "Total available stock at time of stocktake" msgstr "" -#: part/models.py:3458 report/templates/report/inventree_test_report.html:106 +#: part/models.py:3522 report/templates/report/inventree_test_report.html:106 msgid "Date" msgstr "Päivämäärä" -#: part/models.py:3459 +#: part/models.py:3523 msgid "Date stocktake was performed" msgstr "" -#: part/models.py:3466 +#: part/models.py:3530 msgid "Minimum Stock Cost" msgstr "" -#: part/models.py:3467 +#: part/models.py:3531 msgid "Estimated minimum cost of stock on hand" msgstr "" -#: part/models.py:3473 +#: part/models.py:3537 msgid "Maximum Stock Cost" msgstr "" -#: part/models.py:3474 +#: part/models.py:3538 msgid "Estimated maximum cost of stock on hand" msgstr "" -#: part/models.py:3484 +#: part/models.py:3548 msgid "Part Sale Price Break" msgstr "" -#: part/models.py:3596 +#: part/models.py:3660 msgid "Part Test Template" msgstr "" -#: part/models.py:3622 +#: part/models.py:3686 msgid "Invalid template name - must include at least one alphanumeric character" msgstr "" -#: part/models.py:3643 part/models.py:3816 -msgid "Choices must be unique" -msgstr "" - -#: part/models.py:3654 +#: part/models.py:3718 msgid "Test templates can only be created for testable parts" msgstr "" -#: part/models.py:3668 +#: part/models.py:3732 msgid "Test template with the same key already exists for part" msgstr "" -#: part/models.py:3685 +#: part/models.py:3749 msgid "Test Name" msgstr "" -#: part/models.py:3686 +#: part/models.py:3750 msgid "Enter a name for the test" msgstr "" -#: part/models.py:3692 +#: part/models.py:3756 msgid "Test Key" msgstr "" -#: part/models.py:3693 +#: part/models.py:3757 msgid "Simplified key for the test" msgstr "" -#: part/models.py:3700 +#: part/models.py:3764 msgid "Test Description" msgstr "" -#: part/models.py:3701 +#: part/models.py:3765 msgid "Enter description for this test" msgstr "" -#: part/models.py:3705 report/models.py:287 -msgid "Enabled" -msgstr "Käytössä" - -#: part/models.py:3705 +#: part/models.py:3769 msgid "Is this test enabled?" msgstr "" -#: part/models.py:3710 +#: part/models.py:3774 msgid "Required" msgstr "" -#: part/models.py:3711 +#: part/models.py:3775 msgid "Is this test required to pass?" msgstr "" -#: part/models.py:3716 +#: part/models.py:3780 msgid "Requires Value" msgstr "" -#: part/models.py:3717 +#: part/models.py:3781 msgid "Does this test require a value when adding a test result?" msgstr "" -#: part/models.py:3722 +#: part/models.py:3786 msgid "Requires Attachment" msgstr "" -#: part/models.py:3724 +#: part/models.py:3788 msgid "Does this test require a file attachment when adding a test result?" msgstr "" -#: part/models.py:3730 part/models.py:3878 -msgid "Choices" -msgstr "" - -#: part/models.py:3731 +#: part/models.py:3795 msgid "Valid choices for this test (comma-separated)" msgstr "" -#: part/models.py:3764 -msgid "Part Parameter Template" -msgstr "" - -#: part/models.py:3791 -msgid "Checkbox parameters cannot have units" -msgstr "" - -#: part/models.py:3796 -msgid "Checkbox parameters cannot have choices" -msgstr "" - -#: part/models.py:3833 -msgid "Parameter template name must be unique" -msgstr "" - -#: part/models.py:3851 -msgid "Parameter Name" -msgstr "" - -#: part/models.py:3858 -msgid "Physical units for this parameter" -msgstr "" - -#: part/models.py:3866 -msgid "Parameter description" -msgstr "" - -#: part/models.py:3872 -msgid "Checkbox" -msgstr "" - -#: part/models.py:3873 -msgid "Is this parameter a checkbox?" -msgstr "" - -#: part/models.py:3879 -msgid "Valid choices for this parameter (comma-separated)" -msgstr "" - -#: part/models.py:3890 -msgid "Selection list for this parameter" -msgstr "" - -#: part/models.py:3932 -msgid "Part Parameter" -msgstr "" - -#: part/models.py:3958 -msgid "Parameter cannot be modified - part is locked" -msgstr "" - -#: part/models.py:3996 -msgid "Invalid choice for parameter value" -msgstr "" - -#: part/models.py:4047 -msgid "Parent Part" -msgstr "" - -#: part/models.py:4055 part/models.py:4170 part/models.py:4171 -msgid "Parameter Template" -msgstr "" - -#: part/models.py:4061 -msgid "Parameter Value" -msgstr "" - -#: part/models.py:4071 stock/serializers.py:718 -msgid "Optional note field" -msgstr "" - -#: part/models.py:4118 -msgid "Part Category Parameter Template" -msgstr "" - -#: part/models.py:4177 -msgid "Default Value" -msgstr "" - -#: part/models.py:4178 -msgid "Default Parameter Value" -msgstr "" - -#: part/models.py:4352 +#: part/models.py:3977 msgid "BOM item cannot be modified - assembly is locked" msgstr "" -#: part/models.py:4359 +#: part/models.py:3984 msgid "BOM item cannot be modified - variant assembly is locked" msgstr "" -#: part/models.py:4369 +#: part/models.py:3994 msgid "Select parent part" msgstr "" -#: part/models.py:4379 +#: part/models.py:4004 msgid "Sub part" msgstr "" -#: part/models.py:4380 +#: part/models.py:4005 msgid "Select part to be used in BOM" msgstr "" -#: part/models.py:4391 +#: part/models.py:4016 msgid "BOM quantity for this BOM item" msgstr "" -#: part/models.py:4397 +#: part/models.py:4022 msgid "This BOM item is optional" msgstr "" -#: part/models.py:4403 +#: part/models.py:4028 msgid "This BOM item is consumable (it is not tracked in build orders)" msgstr "" -#: part/models.py:4411 +#: part/models.py:4036 msgid "Setup Quantity" msgstr "" -#: part/models.py:4412 +#: part/models.py:4037 msgid "Extra required quantity for a build, to account for setup losses" msgstr "" -#: part/models.py:4420 +#: part/models.py:4045 msgid "Attrition" msgstr "" -#: part/models.py:4422 +#: part/models.py:4047 msgid "Estimated attrition for a build, expressed as a percentage (0-100)" msgstr "" -#: part/models.py:4433 +#: part/models.py:4058 msgid "Rounding Multiple" msgstr "" -#: part/models.py:4435 +#: part/models.py:4060 msgid "Round up required production quantity to nearest multiple of this value" msgstr "" -#: part/models.py:4443 +#: part/models.py:4068 msgid "BOM item reference" msgstr "" -#: part/models.py:4451 +#: part/models.py:4076 msgid "BOM item notes" msgstr "" -#: part/models.py:4457 +#: part/models.py:4082 msgid "Checksum" msgstr "" -#: part/models.py:4458 +#: part/models.py:4083 msgid "BOM line checksum" msgstr "" -#: part/models.py:4463 +#: part/models.py:4088 msgid "Validated" msgstr "" -#: part/models.py:4464 +#: part/models.py:4089 msgid "This BOM item has been validated" msgstr "" -#: part/models.py:4469 +#: part/models.py:4094 msgid "Gets inherited" msgstr "" -#: part/models.py:4470 +#: part/models.py:4095 msgid "This BOM item is inherited by BOMs for variant parts" msgstr "" -#: part/models.py:4476 +#: part/models.py:4101 msgid "Stock items for variant parts can be used for this BOM item" msgstr "" -#: part/models.py:4583 stock/models.py:925 +#: part/models.py:4208 stock/models.py:925 msgid "Quantity must be integer value for trackable parts" msgstr "" -#: part/models.py:4593 part/models.py:4595 +#: part/models.py:4218 part/models.py:4220 msgid "Sub part must be specified" msgstr "" -#: part/models.py:4746 +#: part/models.py:4371 msgid "BOM Item Substitute" msgstr "" -#: part/models.py:4767 +#: part/models.py:4392 msgid "Substitute part cannot be the same as the master part" msgstr "" -#: part/models.py:4780 +#: part/models.py:4405 msgid "Parent BOM item" msgstr "" -#: part/models.py:4788 +#: part/models.py:4413 msgid "Substitute part" msgstr "" -#: part/models.py:4804 +#: part/models.py:4429 msgid "Part 1" msgstr "" -#: part/models.py:4812 +#: part/models.py:4437 msgid "Part 2" msgstr "" -#: part/models.py:4813 +#: part/models.py:4438 msgid "Select Related Part" msgstr "" -#: part/models.py:4820 +#: part/models.py:4445 msgid "Note for this relationship" msgstr "" -#: part/models.py:4839 +#: part/models.py:4464 msgid "Part relationship cannot be created between a part and itself" msgstr "" -#: part/models.py:4844 +#: part/models.py:4469 msgid "Duplicate relationship already exists" msgstr "" -#: part/serializers.py:114 +#: part/serializers.py:113 msgid "Parent Category" msgstr "" -#: part/serializers.py:115 +#: part/serializers.py:114 msgid "Parent part category" msgstr "" -#: part/serializers.py:123 part/serializers.py:164 +#: part/serializers.py:122 part/serializers.py:163 msgid "Subcategories" msgstr "" -#: part/serializers.py:203 +#: part/serializers.py:202 msgid "Results" msgstr "" -#: part/serializers.py:204 +#: part/serializers.py:203 msgid "Number of results recorded against this template" msgstr "" -#: part/serializers.py:235 part/serializers.py:253 stock/serializers.py:643 +#: part/serializers.py:234 part/serializers.py:252 stock/serializers.py:643 msgid "Purchase currency of this stock item" msgstr "" -#: part/serializers.py:280 +#: part/serializers.py:279 msgid "File is not an image" msgstr "" -#: part/serializers.py:311 -msgid "Number of parts using this template" -msgstr "" - -#: part/serializers.py:471 +#: part/serializers.py:382 msgid "Original Part" msgstr "" -#: part/serializers.py:472 +#: part/serializers.py:383 msgid "Select original part to duplicate" msgstr "" -#: part/serializers.py:477 +#: part/serializers.py:388 msgid "Copy Image" msgstr "" -#: part/serializers.py:478 +#: part/serializers.py:389 msgid "Copy image from original part" msgstr "" -#: part/serializers.py:484 +#: part/serializers.py:395 msgid "Copy BOM" msgstr "" -#: part/serializers.py:485 +#: part/serializers.py:396 msgid "Copy bill of materials from original part" msgstr "" -#: part/serializers.py:491 +#: part/serializers.py:402 msgid "Copy Parameters" msgstr "" -#: part/serializers.py:492 +#: part/serializers.py:403 msgid "Copy parameter data from original part" msgstr "" -#: part/serializers.py:498 +#: part/serializers.py:409 msgid "Copy Notes" msgstr "" -#: part/serializers.py:499 +#: part/serializers.py:410 msgid "Copy notes from original part" msgstr "" -#: part/serializers.py:505 +#: part/serializers.py:416 msgid "Copy Tests" msgstr "" -#: part/serializers.py:506 +#: part/serializers.py:417 msgid "Copy test templates from original part" msgstr "" -#: part/serializers.py:524 +#: part/serializers.py:435 msgid "Initial Stock Quantity" msgstr "" -#: part/serializers.py:526 +#: part/serializers.py:437 msgid "Specify initial stock quantity for this Part. If quantity is zero, no stock is added." msgstr "" -#: part/serializers.py:533 +#: part/serializers.py:444 msgid "Initial Stock Location" msgstr "" -#: part/serializers.py:534 +#: part/serializers.py:445 msgid "Specify initial stock location for this Part" msgstr "" -#: part/serializers.py:551 +#: part/serializers.py:462 msgid "Select supplier (or leave blank to skip)" msgstr "" -#: part/serializers.py:567 +#: part/serializers.py:478 msgid "Select manufacturer (or leave blank to skip)" msgstr "" -#: part/serializers.py:577 +#: part/serializers.py:488 msgid "Manufacturer part number" msgstr "Valmistajan osanumero" -#: part/serializers.py:584 +#: part/serializers.py:495 msgid "Selected company is not a valid supplier" msgstr "" -#: part/serializers.py:593 +#: part/serializers.py:504 msgid "Selected company is not a valid manufacturer" msgstr "" -#: part/serializers.py:604 +#: part/serializers.py:515 msgid "Manufacturer part matching this MPN already exists" msgstr "" -#: part/serializers.py:611 +#: part/serializers.py:522 msgid "Supplier part matching this SKU already exists" msgstr "" -#: part/serializers.py:914 +#: part/serializers.py:799 msgid "Category Name" msgstr "" -#: part/serializers.py:943 +#: part/serializers.py:828 msgid "Building" msgstr "" -#: part/serializers.py:944 +#: part/serializers.py:829 msgid "Quantity of this part currently being in production" msgstr "" -#: part/serializers.py:951 +#: part/serializers.py:836 msgid "Outstanding quantity of this part scheduled to be built" msgstr "" -#: part/serializers.py:971 stock/serializers.py:1019 stock/serializers.py:1189 +#: part/serializers.py:856 stock/serializers.py:1019 stock/serializers.py:1189 #: users/ruleset.py:30 msgid "Stock Items" msgstr "" -#: part/serializers.py:975 +#: part/serializers.py:860 msgid "Revisions" msgstr "" -#: part/serializers.py:979 +#: part/serializers.py:864 msgid "Suppliers" msgstr "" -#: part/serializers.py:983 part/serializers.py:1297 +#: part/serializers.py:868 part/serializers.py:1162 #: templates/email/low_stock_notification.html:16 #: templates/email/part_event_notification.html:17 msgid "Total Stock" msgstr "" -#: part/serializers.py:991 +#: part/serializers.py:876 msgid "Unallocated Stock" msgstr "" -#: part/serializers.py:999 +#: part/serializers.py:884 msgid "Variant Stock" msgstr "" -#: part/serializers.py:1054 +#: part/serializers.py:943 msgid "Duplicate Part" msgstr "" -#: part/serializers.py:1055 +#: part/serializers.py:944 msgid "Copy initial data from another Part" msgstr "" -#: part/serializers.py:1061 +#: part/serializers.py:950 msgid "Initial Stock" msgstr "" -#: part/serializers.py:1062 +#: part/serializers.py:951 msgid "Create Part with initial stock quantity" msgstr "" -#: part/serializers.py:1068 +#: part/serializers.py:957 msgid "Supplier Information" msgstr "" -#: part/serializers.py:1069 +#: part/serializers.py:958 msgid "Add initial supplier information for this part" msgstr "" -#: part/serializers.py:1077 +#: part/serializers.py:966 msgid "Copy Category Parameters" msgstr "" -#: part/serializers.py:1078 +#: part/serializers.py:967 msgid "Copy parameter templates from selected part category" msgstr "" -#: part/serializers.py:1083 +#: part/serializers.py:972 msgid "Existing Image" msgstr "" -#: part/serializers.py:1084 +#: part/serializers.py:973 msgid "Filename of an existing part image" msgstr "" -#: part/serializers.py:1101 +#: part/serializers.py:990 msgid "Image file does not exist" msgstr "" -#: part/serializers.py:1269 +#: part/serializers.py:1134 msgid "Validate entire Bill of Materials" msgstr "" -#: part/serializers.py:1303 part/serializers.py:1769 +#: part/serializers.py:1168 part/serializers.py:1634 msgid "Can Build" msgstr "" -#: part/serializers.py:1320 +#: part/serializers.py:1185 msgid "Required for Build Orders" msgstr "" -#: part/serializers.py:1325 +#: part/serializers.py:1190 msgid "Allocated to Build Orders" msgstr "" -#: part/serializers.py:1332 +#: part/serializers.py:1197 msgid "Required for Sales Orders" msgstr "" -#: part/serializers.py:1336 +#: part/serializers.py:1201 msgid "Allocated to Sales Orders" msgstr "" -#: part/serializers.py:1475 +#: part/serializers.py:1340 msgid "Minimum Price" msgstr "" -#: part/serializers.py:1476 +#: part/serializers.py:1341 msgid "Override calculated value for minimum price" msgstr "" -#: part/serializers.py:1483 +#: part/serializers.py:1348 msgid "Minimum price currency" msgstr "" -#: part/serializers.py:1490 +#: part/serializers.py:1355 msgid "Maximum Price" msgstr "" -#: part/serializers.py:1491 +#: part/serializers.py:1356 msgid "Override calculated value for maximum price" msgstr "" -#: part/serializers.py:1498 +#: part/serializers.py:1363 msgid "Maximum price currency" msgstr "" -#: part/serializers.py:1527 +#: part/serializers.py:1392 msgid "Update" msgstr "" -#: part/serializers.py:1528 +#: part/serializers.py:1393 msgid "Update pricing for this part" msgstr "" -#: part/serializers.py:1551 +#: part/serializers.py:1416 #, python-brace-format msgid "Could not convert from provided currencies to {default_currency}" msgstr "" -#: part/serializers.py:1558 +#: part/serializers.py:1423 msgid "Minimum price must not be greater than maximum price" msgstr "" -#: part/serializers.py:1561 +#: part/serializers.py:1426 msgid "Maximum price must not be less than minimum price" msgstr "" -#: part/serializers.py:1715 +#: part/serializers.py:1580 msgid "Select the parent assembly" msgstr "" -#: part/serializers.py:1735 +#: part/serializers.py:1600 msgid "Select the component part" msgstr "" -#: part/serializers.py:1929 +#: part/serializers.py:1802 msgid "Select part to copy BOM from" msgstr "" -#: part/serializers.py:1937 +#: part/serializers.py:1810 msgid "Remove Existing Data" msgstr "" -#: part/serializers.py:1938 +#: part/serializers.py:1811 msgid "Remove existing BOM items before copying" msgstr "" -#: part/serializers.py:1943 +#: part/serializers.py:1816 msgid "Include Inherited" msgstr "" -#: part/serializers.py:1944 +#: part/serializers.py:1817 msgid "Include BOM items which are inherited from templated parts" msgstr "" -#: part/serializers.py:1949 +#: part/serializers.py:1822 msgid "Skip Invalid Rows" msgstr "" -#: part/serializers.py:1950 +#: part/serializers.py:1823 msgid "Enable this option to skip invalid rows" msgstr "" -#: part/serializers.py:1955 +#: part/serializers.py:1828 msgid "Copy Substitute Parts" msgstr "" -#: part/serializers.py:1956 +#: part/serializers.py:1829 msgid "Copy substitute parts when duplicate BOM items" msgstr "" @@ -6927,7 +6974,7 @@ msgstr "" #: plugin/builtin/events/auto_issue_orders.py:19 #: plugin/builtin/exporter/bom_exporter.py:73 #: plugin/builtin/exporter/inventree_exporter.py:17 -#: plugin/builtin/exporter/part_parameter_exporter.py:36 +#: plugin/builtin/exporter/parameter_exporter.py:32 #: plugin/builtin/exporter/stocktake_exporter.py:47 #: plugin/builtin/integration/core_notifications.py:25 #: plugin/builtin/integration/core_notifications.py:69 @@ -7041,23 +7088,19 @@ msgid "Include total quantity of each part in the BOM" msgstr "" #: plugin/builtin/exporter/bom_exporter.py:35 -#: plugin/builtin/exporter/part_parameter_exporter.py:17 msgid "Stock Data" msgstr "" #: plugin/builtin/exporter/bom_exporter.py:35 -#: plugin/builtin/exporter/part_parameter_exporter.py:17 msgid "Include part stock data" msgstr "" #: plugin/builtin/exporter/bom_exporter.py:39 -#: plugin/builtin/exporter/part_parameter_exporter.py:21 #: plugin/builtin/exporter/stocktake_exporter.py:20 msgid "Pricing Data" msgstr "" #: plugin/builtin/exporter/bom_exporter.py:39 -#: plugin/builtin/exporter/part_parameter_exporter.py:21 #: plugin/builtin/exporter/stocktake_exporter.py:20 msgid "Include part pricing data" msgstr "" @@ -7144,12 +7187,20 @@ msgstr "" msgid "Provides support for exporting data from InvenTree" msgstr "" -#: plugin/builtin/exporter/part_parameter_exporter.py:33 -msgid "Part Parameter Exporter" +#: plugin/builtin/exporter/parameter_exporter.py:16 +msgid "Exclude Inactive" msgstr "" -#: plugin/builtin/exporter/part_parameter_exporter.py:34 -msgid "Exporter for part parameter data" +#: plugin/builtin/exporter/parameter_exporter.py:17 +msgid "Exclude parameters which are inactive" +msgstr "" + +#: plugin/builtin/exporter/parameter_exporter.py:29 +msgid "Parameter Exporter" +msgstr "" + +#: plugin/builtin/exporter/parameter_exporter.py:30 +msgid "Exporter for model parameter data" msgstr "" #: plugin/builtin/exporter/stocktake_exporter.py:25 @@ -8079,19 +8130,19 @@ msgstr "" msgid "No result" msgstr "" -#: report/templatetags/report.py:167 +#: report/templatetags/report.py:169 msgid "Asset file does not exist" msgstr "" -#: report/templatetags/report.py:224 report/templatetags/report.py:300 +#: report/templatetags/report.py:226 report/templatetags/report.py:302 msgid "Image file not found" msgstr "" -#: report/templatetags/report.py:325 +#: report/templatetags/report.py:327 msgid "part_image tag requires a Part instance" msgstr "" -#: report/templatetags/report.py:362 +#: report/templatetags/report.py:383 msgid "company_image tag requires a Company instance" msgstr "" @@ -8455,115 +8506,119 @@ msgstr "" msgid "Quantity does not match serial numbers" msgstr "" -#: stock/models.py:2012 stock/models.py:2917 +#: stock/models.py:1912 +msgid "Cannot assign stock to structural location" +msgstr "" + +#: stock/models.py:2029 stock/models.py:2934 msgid "Test template does not exist" msgstr "" -#: stock/models.py:2030 +#: stock/models.py:2047 msgid "Stock item has been assigned to a sales order" msgstr "" -#: stock/models.py:2034 +#: stock/models.py:2051 msgid "Stock item is installed in another item" msgstr "" -#: stock/models.py:2037 +#: stock/models.py:2054 msgid "Stock item contains other items" msgstr "" -#: stock/models.py:2040 +#: stock/models.py:2057 msgid "Stock item has been assigned to a customer" msgstr "" -#: stock/models.py:2043 stock/models.py:2226 +#: stock/models.py:2060 stock/models.py:2243 msgid "Stock item is currently in production" msgstr "" -#: stock/models.py:2046 +#: stock/models.py:2063 msgid "Serialized stock cannot be merged" msgstr "" -#: stock/models.py:2053 stock/serializers.py:1462 +#: stock/models.py:2070 stock/serializers.py:1462 msgid "Duplicate stock items" msgstr "" -#: stock/models.py:2057 +#: stock/models.py:2074 msgid "Stock items must refer to the same part" msgstr "" -#: stock/models.py:2065 +#: stock/models.py:2082 msgid "Stock items must refer to the same supplier part" msgstr "" -#: stock/models.py:2070 +#: stock/models.py:2087 msgid "Stock status codes must match" msgstr "" -#: stock/models.py:2349 +#: stock/models.py:2366 msgid "StockItem cannot be moved as it is not in stock" msgstr "" -#: stock/models.py:2818 +#: stock/models.py:2835 msgid "Stock Item Tracking" msgstr "" -#: stock/models.py:2849 +#: stock/models.py:2866 msgid "Entry notes" msgstr "" -#: stock/models.py:2889 +#: stock/models.py:2906 msgid "Stock Item Test Result" msgstr "" -#: stock/models.py:2920 +#: stock/models.py:2937 msgid "Value must be provided for this test" msgstr "" -#: stock/models.py:2924 +#: stock/models.py:2941 msgid "Attachment must be uploaded for this test" msgstr "" -#: stock/models.py:2929 +#: stock/models.py:2946 msgid "Invalid value for this test" msgstr "" -#: stock/models.py:2953 +#: stock/models.py:2970 msgid "Test result" msgstr "" -#: stock/models.py:2960 +#: stock/models.py:2977 msgid "Test output value" msgstr "" -#: stock/models.py:2968 stock/serializers.py:248 +#: stock/models.py:2985 stock/serializers.py:248 msgid "Test result attachment" msgstr "" -#: stock/models.py:2972 +#: stock/models.py:2989 msgid "Test notes" msgstr "" -#: stock/models.py:2980 +#: stock/models.py:2997 msgid "Test station" msgstr "" -#: stock/models.py:2981 +#: stock/models.py:2998 msgid "The identifier of the test station where the test was performed" msgstr "" -#: stock/models.py:2987 +#: stock/models.py:3004 msgid "Started" msgstr "" -#: stock/models.py:2988 +#: stock/models.py:3005 msgid "The timestamp of the test start" msgstr "" -#: stock/models.py:2994 +#: stock/models.py:3011 msgid "Finished" msgstr "" -#: stock/models.py:2995 +#: stock/models.py:3012 msgid "The timestamp of the test finish" msgstr "" @@ -8677,8 +8732,8 @@ msgstr "" msgid "Quantity must not exceed available stock quantity ({q})" msgstr "" -#: stock/serializers.py:711 stock/serializers.py:1419 stock/serializers.py:1732 -#: stock/serializers.py:1781 +#: stock/serializers.py:711 stock/serializers.py:1419 stock/serializers.py:1740 +#: stock/serializers.py:1789 msgid "Destination stock location" msgstr "" @@ -8834,19 +8889,19 @@ msgstr "" msgid "Stock transaction notes" msgstr "" -#: stock/serializers.py:1787 +#: stock/serializers.py:1795 msgid "Merge into existing stock" msgstr "" -#: stock/serializers.py:1788 +#: stock/serializers.py:1796 msgid "Merge returned items into existing stock items if possible" msgstr "" -#: stock/serializers.py:1831 +#: stock/serializers.py:1839 msgid "Next Serial Number" msgstr "" -#: stock/serializers.py:1837 +#: stock/serializers.py:1845 msgid "Previous Serial Number" msgstr "" @@ -8902,83 +8957,87 @@ msgstr "" msgid "Stock manually removed" msgstr "" -#: stock/status_codes.py:57 +#: stock/status_codes.py:56 +msgid "Serialized stock items" +msgstr "" + +#: stock/status_codes.py:58 msgid "Returned to stock" msgstr "" -#: stock/status_codes.py:60 +#: stock/status_codes.py:61 msgid "Location changed" msgstr "Sijainti muutettu" -#: stock/status_codes.py:61 +#: stock/status_codes.py:62 msgid "Stock updated" msgstr "Varasto päivitetty" -#: stock/status_codes.py:64 +#: stock/status_codes.py:65 msgid "Installed into assembly" msgstr "" -#: stock/status_codes.py:65 +#: stock/status_codes.py:66 msgid "Removed from assembly" msgstr "" -#: stock/status_codes.py:67 +#: stock/status_codes.py:68 msgid "Installed component item" msgstr "" -#: stock/status_codes.py:68 +#: stock/status_codes.py:69 msgid "Removed component item" msgstr "" -#: stock/status_codes.py:71 +#: stock/status_codes.py:72 msgid "Split from parent item" msgstr "" -#: stock/status_codes.py:72 +#: stock/status_codes.py:73 msgid "Split child item" msgstr "" -#: stock/status_codes.py:75 +#: stock/status_codes.py:76 msgid "Merged stock items" msgstr "" -#: stock/status_codes.py:78 +#: stock/status_codes.py:79 msgid "Converted to variant" msgstr "" -#: stock/status_codes.py:81 +#: stock/status_codes.py:82 msgid "Build order output created" msgstr "" -#: stock/status_codes.py:82 +#: stock/status_codes.py:83 msgid "Build order output completed" msgstr "" -#: stock/status_codes.py:83 +#: stock/status_codes.py:84 msgid "Build order output rejected" msgstr "" -#: stock/status_codes.py:84 +#: stock/status_codes.py:85 msgid "Consumed by build order" msgstr "" -#: stock/status_codes.py:87 +#: stock/status_codes.py:88 msgid "Shipped against Sales Order" msgstr "" -#: stock/status_codes.py:90 +#: stock/status_codes.py:91 msgid "Received against Purchase Order" msgstr "" -#: stock/status_codes.py:93 +#: stock/status_codes.py:94 msgid "Returned against Return Order" msgstr "" -#: stock/status_codes.py:96 +#: stock/status_codes.py:97 msgid "Sent to customer" msgstr "" -#: stock/status_codes.py:97 +#: stock/status_codes.py:98 msgid "Returned from customer" msgstr "" diff --git a/src/backend/InvenTree/locale/fr/LC_MESSAGES/django.po b/src/backend/InvenTree/locale/fr/LC_MESSAGES/django.po index 18294d64e7..4b7148c271 100644 --- a/src/backend/InvenTree/locale/fr/LC_MESSAGES/django.po +++ b/src/backend/InvenTree/locale/fr/LC_MESSAGES/django.po @@ -2,8 +2,8 @@ msgid "" msgstr "" "Project-Id-Version: inventree\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-11-19 04:55+0000\n" -"PO-Revision-Date: 2025-11-19 04:59\n" +"POT-Creation-Date: 2025-12-07 07:33+0000\n" +"PO-Revision-Date: 2025-12-07 07:36\n" "Last-Translator: \n" "Language-Team: French\n" "Language: fr_FR\n" @@ -57,7 +57,7 @@ msgstr "Aucune donnée disponible" msgid "This field must be unique." msgstr "" -#: InvenTree/api.py:775 +#: InvenTree/api.py:803 msgid "User does not have permission to view this model" msgstr "L'utilisateur n'a pas la permission de voir ce modèle" @@ -81,22 +81,22 @@ msgstr "L'adresse e-mail principale fournie n'est pas valide." msgid "The provided email domain is not approved." msgstr "Le domaine e-mail fourni n'est pas approuvé." -#: InvenTree/conversion.py:166 +#: InvenTree/conversion.py:240 #, python-brace-format msgid "Invalid unit provided ({unit})" msgstr "Unité fournie invalide ({unit})" -#: InvenTree/conversion.py:183 +#: InvenTree/conversion.py:257 msgid "No value provided" msgstr "Pas de valeur renseignée" -#: InvenTree/conversion.py:210 +#: InvenTree/conversion.py:284 #, python-brace-format msgid "Could not convert {original} to {unit}" msgstr "Impossible de convertir {original} en {unit}" -#: InvenTree/conversion.py:212 InvenTree/conversion.py:226 -#: InvenTree/helpers.py:597 order/models.py:720 order/models.py:1015 +#: InvenTree/conversion.py:286 InvenTree/conversion.py:300 +#: InvenTree/helpers.py:597 order/models.py:721 order/models.py:1016 msgid "Invalid quantity provided" msgstr "Quantité fournie invalide" @@ -112,11 +112,11 @@ msgstr "Entrer la date" msgid "Invalid decimal value" msgstr "Valeur décimale invalide" -#: InvenTree/fields.py:218 InvenTree/models.py:1067 build/serializers.py:509 -#: build/serializers.py:580 build/serializers.py:1788 company/models.py:857 -#: order/models.py:1780 +#: InvenTree/fields.py:218 InvenTree/models.py:1228 build/serializers.py:517 +#: build/serializers.py:588 build/serializers.py:1796 company/models.py:811 +#: order/models.py:1781 #: report/templates/report/inventree_build_order_report.html:172 -#: stock/models.py:2848 stock/models.py:2972 stock/serializers.py:717 +#: stock/models.py:2865 stock/models.py:2989 stock/serializers.py:717 #: stock/serializers.py:893 stock/serializers.py:1035 stock/serializers.py:1336 #: stock/serializers.py:1425 stock/serializers.py:1624 msgid "Notes" @@ -171,35 +171,35 @@ msgstr "Retirer les balises HTML de cette valeur" msgid "Data contains prohibited markdown content" msgstr "Les données contiennent du contenu markdown interdit" -#: InvenTree/helpers_model.py:133 +#: InvenTree/helpers_model.py:134 msgid "Connection error" msgstr "Erreur de connexion" -#: InvenTree/helpers_model.py:138 InvenTree/helpers_model.py:145 +#: InvenTree/helpers_model.py:139 InvenTree/helpers_model.py:146 msgid "Server responded with invalid status code" msgstr "Le serveur a répondu avec un code de statut invalide" -#: InvenTree/helpers_model.py:141 +#: InvenTree/helpers_model.py:142 msgid "Exception occurred" msgstr "Une erreur est survenue" -#: InvenTree/helpers_model.py:151 +#: InvenTree/helpers_model.py:152 msgid "Server responded with invalid Content-Length value" msgstr "Le serveur a répondu avec une valeur de longueur de contenu invalide" -#: InvenTree/helpers_model.py:154 +#: InvenTree/helpers_model.py:155 msgid "Image size is too large" msgstr "Image trop volumineuse" -#: InvenTree/helpers_model.py:166 +#: InvenTree/helpers_model.py:167 msgid "Image download exceeded maximum size" msgstr "La taille de l'image dépasse la taille maximale autorisée" -#: InvenTree/helpers_model.py:171 +#: InvenTree/helpers_model.py:172 msgid "Remote server returned empty response" msgstr "Le serveur distant a renvoyé une réponse vide" -#: InvenTree/helpers_model.py:179 +#: InvenTree/helpers_model.py:180 msgid "Supplied URL is not a valid image file" msgstr "L'URL fournie n'est pas un fichier image valide" @@ -207,7 +207,7 @@ msgstr "L'URL fournie n'est pas un fichier image valide" msgid "Log in to the app" msgstr "Se connecter à l'application" -#: InvenTree/magic_login.py:41 company/models.py:172 users/serializers.py:198 +#: InvenTree/magic_login.py:41 company/models.py:173 users/serializers.py:198 msgid "Email" msgstr "E-mail" @@ -215,160 +215,176 @@ msgstr "E-mail" msgid "You must enable two-factor authentication before doing anything else." msgstr "Vous devez activer l'authentification à deux facteurs avant toute autre chose." -#: InvenTree/models.py:111 +#: InvenTree/models.py:114 msgid "Error running plugin validation" msgstr "Erreur lors de l'exécution de la validation du plugin" -#: InvenTree/models.py:192 +#: InvenTree/models.py:195 msgid "Metadata must be a python dict object" msgstr "Les metadata doivent être un objet python de type \"dict\"" -#: InvenTree/models.py:198 +#: InvenTree/models.py:201 msgid "Plugin Metadata" msgstr "Métadonnées de l'Extension" -#: InvenTree/models.py:199 +#: InvenTree/models.py:202 msgid "JSON metadata field, for use by external plugins" msgstr "Champs metadata JSON, pour plugins tiers" -#: InvenTree/models.py:382 +#: InvenTree/models.py:385 msgid "Improperly formatted pattern" msgstr "Modèle mal formaté" -#: InvenTree/models.py:389 +#: InvenTree/models.py:392 msgid "Unknown format key specified" msgstr "Clé de format inconnu spécifiée" -#: InvenTree/models.py:395 +#: InvenTree/models.py:398 msgid "Missing required format key" msgstr "Clé de format requise manquante" -#: InvenTree/models.py:406 +#: InvenTree/models.py:409 msgid "Reference field cannot be empty" msgstr "Le champ de référence ne peut pas être vide" -#: InvenTree/models.py:414 +#: InvenTree/models.py:417 msgid "Reference must match required pattern" msgstr "La référence doit correspondre au modèle requis" -#: InvenTree/models.py:445 +#: InvenTree/models.py:448 msgid "Reference number is too large" msgstr "Le numéro de référence est trop grand" -#: InvenTree/models.py:743 +#: InvenTree/models.py:896 msgid "Invalid choice" msgstr "Choix invalide" -#: InvenTree/models.py:856 common/models.py:1410 common/models.py:1837 -#: common/models.py:2096 common/models.py:2221 common/serializers.py:535 -#: company/models.py:615 generic/states/serializers.py:20 machine/models.py:25 -#: part/models.py:1039 part/models.py:3850 plugin/models.py:54 +#: InvenTree/models.py:1017 common/models.py:1414 common/models.py:1841 +#: common/models.py:2102 common/models.py:2227 common/models.py:2494 +#: common/serializers.py:539 generic/states/serializers.py:20 +#: machine/models.py:25 part/models.py:1127 plugin/models.py:54 #: report/models.py:216 stock/models.py:84 msgid "Name" msgstr "Nom" -#: InvenTree/models.py:862 build/models.py:252 common/models.py:171 -#: common/models.py:2228 common/models.py:2341 company/models.py:543 -#: company/models.py:848 order/models.py:442 order/models.py:1825 -#: part/models.py:1062 part/models.py:3865 report/models.py:222 +#: InvenTree/models.py:1023 build/models.py:253 common/models.py:175 +#: common/models.py:2234 common/models.py:2347 common/models.py:2509 +#: company/models.py:545 company/models.py:802 order/models.py:443 +#: order/models.py:1826 part/models.py:1150 report/models.py:222 #: report/models.py:815 report/models.py:841 #: report/templates/report/inventree_build_order_report.html:117 #: stock/models.py:90 msgid "Description" msgstr "Description" -#: InvenTree/models.py:863 stock/models.py:91 +#: InvenTree/models.py:1024 stock/models.py:91 msgid "Description (optional)" msgstr "Description (facultative)" -#: InvenTree/models.py:878 common/models.py:2394 +#: InvenTree/models.py:1039 common/models.py:2815 msgid "Path" msgstr "Chemin d'accès" -#: InvenTree/models.py:983 +#: InvenTree/models.py:1144 msgid "Duplicate names cannot exist under the same parent" msgstr "Les noms dupliqués ne peuvent pas exister sous le même parent" -#: InvenTree/models.py:1067 +#: InvenTree/models.py:1228 msgid "Markdown notes (optional)" msgstr "Notes Markdown (option)" -#: InvenTree/models.py:1098 +#: InvenTree/models.py:1259 msgid "Barcode Data" msgstr "Données du code-barres" -#: InvenTree/models.py:1099 +#: InvenTree/models.py:1260 msgid "Third party barcode data" msgstr "Données de code-barres tierces" -#: InvenTree/models.py:1105 +#: InvenTree/models.py:1266 msgid "Barcode Hash" msgstr "Hash du code-barre" -#: InvenTree/models.py:1106 +#: InvenTree/models.py:1267 msgid "Unique hash of barcode data" msgstr "Hachage unique des données du code-barres" -#: InvenTree/models.py:1187 +#: InvenTree/models.py:1348 msgid "Existing barcode found" msgstr "Code-barres existant trouvé" -#: InvenTree/models.py:1269 +#: InvenTree/models.py:1430 msgid "Task Failure" msgstr "Échec de la tâche" -#: InvenTree/models.py:1270 +#: InvenTree/models.py:1431 #, python-brace-format msgid "Background worker task '{f}' failed after {n} attempts" msgstr "La tâche de travail en arrière-plan '{f}' a échoué après {n} tentatives" -#: InvenTree/models.py:1297 +#: InvenTree/models.py:1458 msgid "Server Error" msgstr "Erreur serveur" -#: InvenTree/models.py:1298 +#: InvenTree/models.py:1459 msgid "An error has been logged by the server." msgstr "Une erreur a été loguée par le serveur." -#: InvenTree/models.py:1340 common/models.py:1748 +#: InvenTree/models.py:1501 common/models.py:1752 #: report/templates/report/inventree_bill_of_materials_report.html:126 #: report/templates/report/inventree_bill_of_materials_report.html:148 #: report/templates/report/inventree_return_order_report.html:35 msgid "Image" msgstr "Image" -#: InvenTree/serializers.py:253 part/models.py:4571 +#: InvenTree/serializers.py:255 part/models.py:4196 msgid "Must be a valid number" msgstr "Doit être un nombre valide" -#: InvenTree/serializers.py:295 company/models.py:214 part/models.py:3285 +#: InvenTree/serializers.py:297 company/models.py:215 part/models.py:3349 msgid "Currency" msgstr "Devise" -#: InvenTree/serializers.py:298 part/serializers.py:1385 +#: InvenTree/serializers.py:300 part/serializers.py:1250 msgid "Select currency from available options" msgstr "Sélectionnez la devise à partir des options disponibles" -#: InvenTree/serializers.py:653 +#: InvenTree/serializers.py:654 +msgid "This field may not be null." +msgstr "" + +#: InvenTree/serializers.py:660 msgid "Invalid value" msgstr "Valeur non valide" -#: InvenTree/serializers.py:690 +#: InvenTree/serializers.py:697 msgid "Remote Image" msgstr "Images distantes" -#: InvenTree/serializers.py:691 +#: InvenTree/serializers.py:698 msgid "URL of remote image file" msgstr "URL du fichier image distant" -#: InvenTree/serializers.py:709 +#: InvenTree/serializers.py:716 msgid "Downloading images from remote URL is not enabled" msgstr "Le téléchargement des images depuis une URL distante n'est pas activé" -#: InvenTree/serializers.py:716 +#: InvenTree/serializers.py:723 msgid "Failed to download image from remote URL" msgstr "Échec du téléchargement de l'image à partir de l'URL distant" +#: InvenTree/serializers.py:806 +msgid "Invalid content type format" +msgstr "" + +#: InvenTree/serializers.py:809 +msgid "Content type not found" +msgstr "" + +#: InvenTree/serializers.py:815 +msgid "Content type does not match required mixin class" +msgstr "" + #: InvenTree/setting/locales.py:20 msgid "Arabic" msgstr "Arabe" @@ -537,30 +553,30 @@ msgstr "Unité invalide" msgid "Not a valid currency code" msgstr "Code de devise invalide" -#: build/api.py:54 order/api.py:111 order/api.py:270 order/api.py:1373 -#: order/serializers.py:132 +#: build/api.py:54 order/api.py:116 order/api.py:275 order/api.py:1378 +#: order/serializers.py:133 msgid "Order Status" msgstr "Statut de la commande" -#: build/api.py:80 build/models.py:264 +#: build/api.py:80 build/models.py:265 msgid "Parent Build" msgstr "Fabrication parente" -#: build/api.py:84 build/api.py:831 order/api.py:547 order/api.py:770 -#: order/api.py:1174 order/api.py:1449 stock/api.py:573 +#: build/api.py:84 build/api.py:837 order/api.py:553 order/api.py:776 +#: order/api.py:1179 order/api.py:1454 stock/api.py:573 msgid "Include Variants" msgstr "Inclure les variantes" -#: build/api.py:100 build/api.py:466 build/api.py:845 build/models.py:270 -#: build/serializers.py:1225 build/serializers.py:1356 -#: build/serializers.py:1427 company/models.py:1067 company/serializers.py:445 -#: order/api.py:298 order/api.py:302 order/api.py:929 order/api.py:1187 -#: order/api.py:1190 order/models.py:1941 order/models.py:2108 -#: order/models.py:2109 part/api.py:1233 part/api.py:1236 part/api.py:1302 -#: part/api.py:1589 part/models.py:472 part/models.py:3296 part/models.py:3439 -#: part/models.py:3497 part/models.py:3518 part/models.py:3540 -#: part/models.py:3679 part/models.py:4046 part/models.py:4368 -#: part/models.py:4787 part/serializers.py:1928 +#: build/api.py:100 build/api.py:472 build/api.py:851 build/models.py:271 +#: build/serializers.py:1233 build/serializers.py:1364 +#: build/serializers.py:1435 company/models.py:1021 company/serializers.py:490 +#: order/api.py:303 order/api.py:307 order/api.py:934 order/api.py:1192 +#: order/api.py:1195 order/models.py:1942 order/models.py:2109 +#: order/models.py:2110 part/api.py:1160 part/api.py:1163 part/api.py:1314 +#: part/models.py:550 part/models.py:3360 part/models.py:3503 +#: part/models.py:3561 part/models.py:3582 part/models.py:3604 +#: part/models.py:3743 part/models.py:3993 part/models.py:4412 +#: part/serializers.py:1801 #: report/templates/report/inventree_bill_of_materials_report.html:110 #: report/templates/report/inventree_bill_of_materials_report.html:137 #: report/templates/report/inventree_build_order_report.html:109 @@ -580,9 +596,9 @@ msgstr "Inclure les variantes" msgid "Part" msgstr "Pièce" -#: build/api.py:120 build/api.py:123 build/serializers.py:1438 part/api.py:980 -#: part/api.py:1316 part/api.py:1600 part/models.py:1080 part/models.py:3568 -#: part/models.py:4162 part/serializers.py:1752 stock/api.py:869 +#: build/api.py:120 build/api.py:123 build/serializers.py:1446 part/api.py:975 +#: part/api.py:1325 part/models.py:435 part/models.py:1168 part/models.py:3632 +#: part/serializers.py:1617 stock/api.py:869 msgid "Category" msgstr "Catégorie" @@ -590,7 +606,7 @@ msgstr "Catégorie" msgid "Ancestor Build" msgstr "Version Précédente" -#: build/api.py:152 order/api.py:129 +#: build/api.py:152 order/api.py:134 msgid "Assigned to me" msgstr "Attribué à moi" @@ -638,134 +654,134 @@ msgstr "Terminé avant" msgid "Completed after" msgstr "Terminé après" -#: build/api.py:249 order/api.py:226 +#: build/api.py:249 order/api.py:231 msgid "Min Date" msgstr "Date min" -#: build/api.py:272 order/api.py:245 +#: build/api.py:272 order/api.py:250 msgid "Max Date" msgstr "Date maximale" -#: build/api.py:297 build/api.py:300 part/api.py:217 stock/api.py:961 +#: build/api.py:297 build/api.py:300 part/api.py:212 stock/api.py:961 msgid "Exclude Tree" msgstr "Exclure l'arbre" -#: build/api.py:405 +#: build/api.py:411 msgid "Build must be cancelled before it can be deleted" msgstr "La construction doit être annulée avant de pouvoir être supprimée" -#: build/api.py:449 build/serializers.py:1374 part/models.py:4402 +#: build/api.py:455 build/serializers.py:1382 part/models.py:4027 msgid "Consumable" msgstr "Consommable" -#: build/api.py:452 build/serializers.py:1377 part/models.py:4396 +#: build/api.py:458 build/serializers.py:1385 part/models.py:4021 msgid "Optional" msgstr "Facultatif" -#: build/api.py:455 build/serializers.py:1415 common/setting/system.py:456 -#: part/models.py:1202 part/serializers.py:1714 part/serializers.py:1725 +#: build/api.py:461 build/serializers.py:1423 common/setting/system.py:456 +#: part/models.py:1290 part/serializers.py:1579 part/serializers.py:1590 #: stock/api.py:639 msgid "Assembly" msgstr "Assemblage" -#: build/api.py:458 +#: build/api.py:464 msgid "Tracked" msgstr "Suivi" -#: build/api.py:461 build/serializers.py:1380 part/models.py:1220 +#: build/api.py:467 build/serializers.py:1388 part/models.py:1308 msgid "Testable" msgstr "Testable" -#: build/api.py:471 order/api.py:993 order/api.py:1363 +#: build/api.py:477 order/api.py:998 order/api.py:1368 msgid "Order Outstanding" msgstr "Commande en cours" -#: build/api.py:481 build/serializers.py:1464 order/api.py:952 +#: build/api.py:487 build/serializers.py:1472 order/api.py:957 msgid "Allocated" msgstr "Allouée" -#: build/api.py:490 build/models.py:1672 build/serializers.py:1393 +#: build/api.py:496 build/models.py:1673 build/serializers.py:1401 msgid "Consumed" msgstr "Consommé" -#: build/api.py:499 company/models.py:912 company/serializers.py:440 +#: build/api.py:505 company/models.py:866 company/serializers.py:467 #: templates/email/build_order_required_stock.html:19 #: templates/email/low_stock_notification.html:17 #: templates/email/part_event_notification.html:18 msgid "Available" msgstr "Disponible" -#: build/api.py:523 build/serializers.py:1466 company/serializers.py:437 -#: order/serializers.py:1281 part/serializers.py:959 part/serializers.py:1306 -#: part/serializers.py:1761 +#: build/api.py:529 build/serializers.py:1474 company/serializers.py:464 +#: order/serializers.py:1295 part/serializers.py:844 part/serializers.py:1171 +#: part/serializers.py:1626 msgid "On Order" msgstr "En Commande" -#: build/api.py:868 build/models.py:117 order/models.py:1974 +#: build/api.py:874 build/models.py:118 order/models.py:1975 #: report/templates/report/inventree_build_order_report.html:105 #: stock/serializers.py:93 templates/email/build_order_completed.html:16 #: templates/email/overdue_build_order.html:15 msgid "Build Order" msgstr "Ordre de Fabrication" -#: build/api.py:882 build/api.py:886 build/serializers.py:372 -#: build/serializers.py:497 build/serializers.py:567 build/serializers.py:1251 -#: build/serializers.py:1256 order/api.py:1234 order/api.py:1239 -#: order/serializers.py:833 order/serializers.py:973 order/serializers.py:2042 +#: build/api.py:888 build/api.py:892 build/serializers.py:380 +#: build/serializers.py:505 build/serializers.py:575 build/serializers.py:1259 +#: build/serializers.py:1264 order/api.py:1239 order/api.py:1244 +#: order/serializers.py:844 order/serializers.py:984 order/serializers.py:2059 #: stock/api.py:987 stock/serializers.py:111 stock/serializers.py:601 #: stock/serializers.py:710 stock/serializers.py:888 stock/serializers.py:1418 -#: stock/serializers.py:1731 stock/serializers.py:1780 +#: stock/serializers.py:1739 stock/serializers.py:1788 #: templates/email/stale_stock_notification.html:18 users/models.py:549 msgid "Location" msgstr "Emplacement" -#: build/api.py:894 +#: build/api.py:900 msgid "Output" msgstr "Sortie" -#: build/api.py:896 +#: build/api.py:902 msgid "Filter by output stock item ID. Use 'null' to find uninstalled build items." msgstr "" -#: build/models.py:118 users/ruleset.py:31 +#: build/models.py:119 users/ruleset.py:31 msgid "Build Orders" msgstr "Ordres de Fabrication" -#: build/models.py:168 +#: build/models.py:169 msgid "Assembly BOM has not been validated" msgstr "La liste des composants de l'assemblage n'a pas été validée" -#: build/models.py:175 +#: build/models.py:176 msgid "Build order cannot be created for an inactive part" msgstr "Impossible de créer un ordre de fabrication pour une pièce inactive" -#: build/models.py:182 +#: build/models.py:183 msgid "Build order cannot be created for an unlocked part" msgstr "Impossible de créer un ordre de fabrication pour une pièce non verrouillée" -#: build/models.py:200 +#: build/models.py:201 msgid "Build orders can only be externally fulfilled for purchaseable parts" msgstr "Les ordres de fabrication ne peuvent être exécutées qu'en externe pour les pièces achetables" -#: build/models.py:207 order/models.py:369 +#: build/models.py:208 order/models.py:370 msgid "Responsible user or group must be specified" msgstr "Un utilisateur ou un groupe responsable doit être spécifié" -#: build/models.py:212 +#: build/models.py:213 msgid "Build order part cannot be changed" msgstr "La pièce de commande de construction ne peut pas être changée" -#: build/models.py:217 order/models.py:382 +#: build/models.py:218 order/models.py:383 msgid "Target date must be after start date" msgstr "La date cible doit être postérieure à la date de début" -#: build/models.py:245 +#: build/models.py:246 msgid "Build Order Reference" msgstr "Référence de l' Ordre de Fabrication" -#: build/models.py:246 build/serializers.py:1371 order/models.py:614 -#: order/models.py:1311 order/models.py:1773 order/models.py:2712 -#: part/models.py:4442 +#: build/models.py:247 build/serializers.py:1379 order/models.py:615 +#: order/models.py:1312 order/models.py:1774 order/models.py:2713 +#: part/models.py:4067 #: report/templates/report/inventree_bill_of_materials_report.html:139 #: report/templates/report/inventree_purchase_order_report.html:35 #: report/templates/report/inventree_return_order_report.html:26 @@ -773,230 +789,230 @@ msgstr "Référence de l' Ordre de Fabrication" msgid "Reference" msgstr "Référence" -#: build/models.py:255 +#: build/models.py:256 msgid "Brief description of the build (optional)" msgstr "Brève description de la fabrication (optionnel)" -#: build/models.py:265 +#: build/models.py:266 msgid "BuildOrder to which this build is allocated" msgstr "BuildOrder associé a cette fabrication" -#: build/models.py:274 +#: build/models.py:275 msgid "Select part to build" msgstr "Sélectionnez la pièce à construire" -#: build/models.py:279 +#: build/models.py:280 msgid "Sales Order Reference" msgstr "Bon de commande de référence" -#: build/models.py:284 +#: build/models.py:285 msgid "SalesOrder to which this build is allocated" msgstr "Commande de vente à laquelle cette construction est allouée" -#: build/models.py:289 build/serializers.py:1097 +#: build/models.py:290 build/serializers.py:1105 msgid "Source Location" msgstr "Emplacement d'origine" -#: build/models.py:295 +#: build/models.py:296 msgid "Select location to take stock from for this build (leave blank to take from any stock location)" msgstr "Sélectionner l'emplacement à partir duquel le stock doit être pris pour cette construction (laisser vide pour prendre à partir de n'importe quel emplacement de stock)" -#: build/models.py:301 +#: build/models.py:302 msgid "External Build" msgstr "Fabrication externe" -#: build/models.py:302 +#: build/models.py:303 msgid "This build order is fulfilled externally" msgstr "Cet ordre de fabrication est exécuté en externe" -#: build/models.py:307 +#: build/models.py:308 msgid "Destination Location" msgstr "Emplacement cible" -#: build/models.py:312 +#: build/models.py:313 msgid "Select location where the completed items will be stored" msgstr "Sélectionnez l'emplacement où les éléments complétés seront stockés" -#: build/models.py:316 +#: build/models.py:317 msgid "Build Quantity" msgstr "Quantité a fabriquer" -#: build/models.py:319 +#: build/models.py:320 msgid "Number of stock items to build" msgstr "Nombre de stock items à construire" -#: build/models.py:323 +#: build/models.py:324 msgid "Completed items" msgstr "Articles terminés" -#: build/models.py:325 +#: build/models.py:326 msgid "Number of stock items which have been completed" msgstr "Nombre d'articles de stock qui ont été terminés" -#: build/models.py:329 +#: build/models.py:330 msgid "Build Status" msgstr "État de la construction" -#: build/models.py:334 +#: build/models.py:335 msgid "Build status code" msgstr "Code de statut de construction" -#: build/models.py:343 build/serializers.py:359 order/serializers.py:849 +#: build/models.py:344 build/serializers.py:367 order/serializers.py:860 #: stock/models.py:1100 stock/serializers.py:85 stock/serializers.py:1591 msgid "Batch Code" msgstr "Code de lot" -#: build/models.py:347 build/serializers.py:360 +#: build/models.py:348 build/serializers.py:368 msgid "Batch code for this build output" msgstr "Code de lot pour ce build output" -#: build/models.py:351 order/models.py:479 order/serializers.py:186 -#: part/models.py:1283 +#: build/models.py:352 order/models.py:480 order/serializers.py:193 +#: part/models.py:1371 msgid "Creation Date" msgstr "Date de création" -#: build/models.py:357 +#: build/models.py:358 msgid "Build start date" msgstr "Début de la fabrication" -#: build/models.py:358 +#: build/models.py:359 msgid "Scheduled start date for this build order" msgstr "Date de début prévue pour cet ordre de construction" -#: build/models.py:364 +#: build/models.py:365 msgid "Target completion date" msgstr "Date d'achèvement cible" -#: build/models.py:366 +#: build/models.py:367 msgid "Target date for build completion. Build will be overdue after this date." msgstr "Date cible pour l'achèvement de la construction. La construction sera en retard après cette date." -#: build/models.py:371 order/models.py:667 order/models.py:2751 +#: build/models.py:372 order/models.py:668 order/models.py:2752 msgid "Completion Date" msgstr "Date d'achèvement" -#: build/models.py:379 +#: build/models.py:380 msgid "completed by" msgstr "achevé par" -#: build/models.py:388 +#: build/models.py:389 msgid "Issued by" msgstr "Émis par" -#: build/models.py:389 +#: build/models.py:390 msgid "User who issued this build order" msgstr "Utilisateur ayant émis cette commande de construction" -#: build/models.py:398 common/models.py:180 order/api.py:179 -#: order/models.py:504 part/models.py:1300 +#: build/models.py:399 common/models.py:184 order/api.py:184 +#: order/models.py:505 part/models.py:1388 #: report/templates/report/inventree_build_order_report.html:158 msgid "Responsible" msgstr "Responsable" -#: build/models.py:399 +#: build/models.py:400 msgid "User or group responsible for this build order" msgstr "Utilisateur ou groupe responsable de cet ordre de construction" -#: build/models.py:404 stock/models.py:1093 +#: build/models.py:405 stock/models.py:1093 msgid "External Link" msgstr "Lien Externe" -#: build/models.py:406 common/models.py:1984 part/models.py:1114 +#: build/models.py:407 common/models.py:1990 part/models.py:1202 #: stock/models.py:1095 msgid "Link to external URL" msgstr "Lien vers une url externe" -#: build/models.py:411 +#: build/models.py:412 msgid "Build Priority" msgstr "Priorité de fabrication" -#: build/models.py:414 +#: build/models.py:415 msgid "Priority of this build order" msgstr "Priorité de cet ordre de fabrication" -#: build/models.py:422 common/models.py:150 common/models.py:164 -#: order/api.py:165 order/models.py:451 order/models.py:1805 +#: build/models.py:423 common/models.py:154 common/models.py:168 +#: order/api.py:170 order/models.py:452 order/models.py:1806 msgid "Project Code" msgstr "Code du projet" -#: build/models.py:423 +#: build/models.py:424 msgid "Project code for this build order" msgstr "Code de projet pour cet ordre de construction" -#: build/models.py:676 +#: build/models.py:677 msgid "Cannot complete build order with open child builds" msgstr "Impossible de terminer l'ordre de fabrication avec des constructions enfant ouvertes" -#: build/models.py:681 +#: build/models.py:682 msgid "Cannot complete build order with incomplete outputs" msgstr "Impossible de terminer l'ordre de fabrication avec des sorties incomplètes" -#: build/models.py:700 build/models.py:830 +#: build/models.py:701 build/models.py:831 msgid "Failed to offload task to complete build allocations" msgstr "Échec du déchargement de la tâche pour terminer les allocations de construction" -#: build/models.py:723 +#: build/models.py:724 #, python-brace-format msgid "Build order {build} has been completed" msgstr "La commande de construction {build} a été effectuée" -#: build/models.py:729 +#: build/models.py:730 msgid "A build order has been completed" msgstr "Une commande de construction a été effectuée" -#: build/models.py:911 build/serializers.py:407 +#: build/models.py:912 build/serializers.py:415 msgid "Serial numbers must be provided for trackable parts" msgstr "Les numéros de série doivent être fournis pour les pièces traçables" -#: build/models.py:1042 build/models.py:1129 +#: build/models.py:1043 build/models.py:1130 msgid "No build output specified" msgstr "Pas d'ordre de production défini" -#: build/models.py:1045 +#: build/models.py:1046 msgid "Build output is already completed" msgstr "L'ordre de production a déjà été réalisé" -#: build/models.py:1048 +#: build/models.py:1049 msgid "Build output does not match Build Order" msgstr "L'ordre de production de correspond pas à l'ordre de commande" -#: build/models.py:1136 build/models.py:1234 build/serializers.py:285 -#: build/serializers.py:335 build/serializers.py:965 build/serializers.py:1739 -#: order/models.py:717 order/serializers.py:658 order/serializers.py:844 -#: part/serializers.py:1708 stock/models.py:940 stock/models.py:1430 +#: build/models.py:1137 build/models.py:1235 build/serializers.py:293 +#: build/serializers.py:343 build/serializers.py:973 build/serializers.py:1747 +#: order/models.py:718 order/serializers.py:669 order/serializers.py:855 +#: part/serializers.py:1573 stock/models.py:940 stock/models.py:1430 #: stock/models.py:1878 stock/serializers.py:688 stock/serializers.py:1580 msgid "Quantity must be greater than zero" msgstr "La quantité doit être supérieure à zéro" -#: build/models.py:1140 build/models.py:1239 build/serializers.py:290 +#: build/models.py:1141 build/models.py:1240 build/serializers.py:298 msgid "Quantity cannot be greater than the output quantity" msgstr "La quantité ne peut pas être supérieure à la quantité de sortie" -#: build/models.py:1214 build/serializers.py:606 +#: build/models.py:1215 build/serializers.py:614 msgid "Build output has not passed all required tests" msgstr "Les sorties de fabrication n'ont pas passé tous les tests requis" -#: build/models.py:1217 build/serializers.py:601 +#: build/models.py:1218 build/serializers.py:609 #, python-brace-format msgid "Build output {serial} has not passed all required tests" msgstr "La sortie de compilation {serial} n'a pas réussi tous les tests requis" -#: build/models.py:1229 +#: build/models.py:1230 msgid "Cannot partially complete a build output with allocated items" msgstr "" -#: build/models.py:1627 +#: build/models.py:1628 msgid "Build Order Line Item" msgstr "Poste de l'ordre de construction" -#: build/models.py:1651 +#: build/models.py:1652 msgid "Build object" msgstr "Création de l'objet" -#: build/models.py:1663 build/models.py:1974 build/serializers.py:271 -#: build/serializers.py:320 build/serializers.py:1392 common/models.py:1340 -#: order/models.py:1756 order/models.py:2597 order/serializers.py:1696 -#: order/serializers.py:2124 part/models.py:3453 part/models.py:4390 +#: build/models.py:1664 build/models.py:1975 build/serializers.py:279 +#: build/serializers.py:328 build/serializers.py:1400 common/models.py:1344 +#: order/models.py:1757 order/models.py:2598 order/serializers.py:1710 +#: order/serializers.py:2141 part/models.py:3517 part/models.py:4015 #: report/templates/report/inventree_bill_of_materials_report.html:138 #: report/templates/report/inventree_build_order_report.html:113 #: report/templates/report/inventree_purchase_order_report.html:36 @@ -1014,427 +1030,427 @@ msgstr "Création de l'objet" msgid "Quantity" msgstr "Quantité" -#: build/models.py:1664 +#: build/models.py:1665 msgid "Required quantity for build order" msgstr "Quantité requise pour la commande de construction" -#: build/models.py:1673 +#: build/models.py:1674 msgid "Quantity of consumed stock" msgstr "Quantité de stock consommé" -#: build/models.py:1772 +#: build/models.py:1773 msgid "Build item must specify a build output, as master part is marked as trackable" msgstr "L'élément de construction doit spécifier une sortie de construction, la pièce maîtresse étant marquée comme objet traçable" -#: build/models.py:1783 +#: build/models.py:1784 #, python-brace-format msgid "Allocated quantity ({q}) must not exceed available stock quantity ({a})" msgstr "La quantité allouée ({q}) ne doit pas excéder la quantité disponible ({a})" -#: build/models.py:1804 order/models.py:2546 +#: build/models.py:1805 order/models.py:2547 msgid "Stock item is over-allocated" msgstr "L'article de stock est suralloué" -#: build/models.py:1809 order/models.py:2549 +#: build/models.py:1810 order/models.py:2550 msgid "Allocation quantity must be greater than zero" msgstr "La quantité allouée doit être supérieure à zéro" -#: build/models.py:1815 +#: build/models.py:1816 msgid "Quantity must be 1 for serialized stock" msgstr "La quantité doit être de 1 pour stock sérialisé" -#: build/models.py:1875 +#: build/models.py:1876 msgid "Selected stock item does not match BOM line" msgstr "L'article de stock sélectionné ne correspond pas à la ligne BOM" -#: build/models.py:1913 +#: build/models.py:1914 msgid "Allocated quantity exceeds available stock quantity" msgstr "La quantité allouée dépasse la quantité disponible dans le stock" -#: build/models.py:1964 build/serializers.py:948 build/serializers.py:1240 -#: order/serializers.py:1533 order/serializers.py:1554 +#: build/models.py:1965 build/serializers.py:956 build/serializers.py:1248 +#: order/serializers.py:1547 order/serializers.py:1568 #: report/templates/report/inventree_sales_order_shipment_report.html:29 #: stock/api.py:1404 stock/models.py:456 stock/serializers.py:102 #: stock/serializers.py:800 stock/serializers.py:1274 stock/serializers.py:1386 msgid "Stock Item" msgstr "Article en stock" -#: build/models.py:1965 +#: build/models.py:1966 msgid "Source stock item" msgstr "Stock d'origine de l'article" -#: build/models.py:1975 +#: build/models.py:1976 msgid "Stock quantity to allocate to build" msgstr "Quantité de stock à allouer à la construction" -#: build/models.py:1984 +#: build/models.py:1985 msgid "Install into" msgstr "Installer dans" -#: build/models.py:1985 +#: build/models.py:1986 msgid "Destination stock item" msgstr "Stock de destination de l'article" -#: build/serializers.py:118 +#: build/serializers.py:120 msgid "Build Level" msgstr "Niveau de construction" -#: build/serializers.py:128 +#: build/serializers.py:136 msgid "Part Name" msgstr "Nom de l'article" -#: build/serializers.py:153 +#: build/serializers.py:161 msgid "Project Code Label" msgstr "Code du projet Étiquette" -#: build/serializers.py:219 build/serializers.py:974 +#: build/serializers.py:227 build/serializers.py:982 msgid "Build Output" msgstr "Sortie d'assemblage" -#: build/serializers.py:231 +#: build/serializers.py:239 msgid "Build output does not match the parent build" msgstr "L'ordre de production ne correspond pas à l'ordre parent" -#: build/serializers.py:235 +#: build/serializers.py:243 msgid "Output part does not match BuildOrder part" msgstr "La pièce en sortie ne correspond pas à la pièce de l'ordre de construction" -#: build/serializers.py:239 +#: build/serializers.py:247 msgid "This build output has already been completed" msgstr "Cet ordre de production a déjà été produit" -#: build/serializers.py:253 +#: build/serializers.py:261 msgid "This build output is not fully allocated" msgstr "Cet ordre de production n'est pas complètement attribué" -#: build/serializers.py:272 build/serializers.py:321 +#: build/serializers.py:280 build/serializers.py:329 msgid "Enter quantity for build output" msgstr "Entrer la quantité désiré pour la fabrication" -#: build/serializers.py:343 +#: build/serializers.py:351 msgid "Integer quantity required for trackable parts" msgstr "Quantité entière requise pour les pièces à suivre" -#: build/serializers.py:349 +#: build/serializers.py:357 msgid "Integer quantity required, as the bill of materials contains trackable parts" msgstr "Quantité entière requise, car la facture de matériaux contient des pièces à puce" -#: build/serializers.py:366 order/serializers.py:865 order/serializers.py:1700 +#: build/serializers.py:374 order/serializers.py:876 order/serializers.py:1714 #: stock/serializers.py:699 msgid "Serial Numbers" msgstr "Numéros de série" -#: build/serializers.py:367 +#: build/serializers.py:375 msgid "Enter serial numbers for build outputs" msgstr "Entrer les numéros de séries pour la fabrication" -#: build/serializers.py:373 +#: build/serializers.py:381 msgid "Stock location for build output" msgstr "Emplacement de stock pour la sortie de la fabrication" -#: build/serializers.py:388 +#: build/serializers.py:396 msgid "Auto Allocate Serial Numbers" msgstr "Allouer automatiquement les numéros de série" -#: build/serializers.py:390 +#: build/serializers.py:398 msgid "Automatically allocate required items with matching serial numbers" msgstr "Affecter automatiquement les éléments requis avec les numéros de série correspondants" -#: build/serializers.py:423 order/serializers.py:951 stock/api.py:1183 +#: build/serializers.py:431 order/serializers.py:962 stock/api.py:1183 #: stock/models.py:1901 msgid "The following serial numbers already exist or are invalid" msgstr "Les numéros de série suivants existent déjà, ou sont invalides" -#: build/serializers.py:465 build/serializers.py:521 build/serializers.py:613 +#: build/serializers.py:473 build/serializers.py:529 build/serializers.py:621 msgid "A list of build outputs must be provided" msgstr "Une liste d'ordre de production doit être fourni" -#: build/serializers.py:498 +#: build/serializers.py:506 msgid "Stock location for scrapped outputs" msgstr "Emplacement du stock pour les sorties épuisées" -#: build/serializers.py:504 +#: build/serializers.py:512 msgid "Discard Allocations" msgstr "Ignorer les allocations" -#: build/serializers.py:505 +#: build/serializers.py:513 msgid "Discard any stock allocations for scrapped outputs" msgstr "Abandonner les allocations de stock pour les sorties abandonnées" -#: build/serializers.py:510 +#: build/serializers.py:518 msgid "Reason for scrapping build output(s)" msgstr "Motif de l'élimination des produits de construction(s)" -#: build/serializers.py:568 +#: build/serializers.py:576 msgid "Location for completed build outputs" msgstr "Emplacement des ordres de production achevés" -#: build/serializers.py:576 +#: build/serializers.py:584 msgid "Accept Incomplete Allocation" msgstr "Accepter l'allocation incomplète" -#: build/serializers.py:577 +#: build/serializers.py:585 msgid "Complete outputs if stock has not been fully allocated" msgstr "Compléter les sorties si le stock n'a pas été entièrement alloué" -#: build/serializers.py:702 +#: build/serializers.py:710 msgid "Consume Allocated Stock" msgstr "Consommation du stock alloué" -#: build/serializers.py:703 +#: build/serializers.py:711 msgid "Consume any stock which has already been allocated to this build" msgstr "Consommer tout stock qui a déjà été alloué à cette construction" -#: build/serializers.py:709 +#: build/serializers.py:717 msgid "Remove Incomplete Outputs" msgstr "Retirer les sorties incomplètes" -#: build/serializers.py:710 +#: build/serializers.py:718 msgid "Delete any build outputs which have not been completed" msgstr "Supprimer toutes les sorties de construction qui n'ont pas été complétées" -#: build/serializers.py:737 +#: build/serializers.py:745 msgid "Not permitted" msgstr "Non permis" -#: build/serializers.py:738 +#: build/serializers.py:746 msgid "Accept as consumed by this build order" msgstr "Accepter comme consommé par cet ordre de construction" -#: build/serializers.py:739 +#: build/serializers.py:747 msgid "Deallocate before completing this build order" msgstr "Désaffecter avant de terminer cette commande de fabrication" -#: build/serializers.py:766 +#: build/serializers.py:774 msgid "Overallocated Stock" msgstr "Stock suralloué" -#: build/serializers.py:769 +#: build/serializers.py:777 msgid "How do you want to handle extra stock items assigned to the build order" msgstr "Comment voulez-vous gérer les articles en stock supplémentaires assignés à l'ordre de construction" -#: build/serializers.py:780 +#: build/serializers.py:788 msgid "Some stock items have been overallocated" msgstr "Certains articles de stock ont été suralloués" -#: build/serializers.py:785 +#: build/serializers.py:793 msgid "Accept Unallocated" msgstr "Accepter les non-alloués" -#: build/serializers.py:787 +#: build/serializers.py:795 msgid "Accept that stock items have not been fully allocated to this build order" msgstr "Accepter les articles de stock qui n'ont pas été complètement alloués à cette ordre de production" -#: build/serializers.py:798 +#: build/serializers.py:806 msgid "Required stock has not been fully allocated" msgstr "Le stock requis n'a pas encore été totalement alloué" -#: build/serializers.py:803 order/serializers.py:524 order/serializers.py:1601 +#: build/serializers.py:811 order/serializers.py:535 order/serializers.py:1615 msgid "Accept Incomplete" msgstr "Accepter les incomplèts" -#: build/serializers.py:805 +#: build/serializers.py:813 msgid "Accept that the required number of build outputs have not been completed" msgstr "Accepter que tous les ordres de production n'aient pas encore été achevés" -#: build/serializers.py:816 +#: build/serializers.py:824 msgid "Required build quantity has not been completed" msgstr "La quantité nécessaire n'a pas encore été complétée" -#: build/serializers.py:828 +#: build/serializers.py:836 msgid "Build order has open child build orders" msgstr "L'ordre de construction a des ordres de construction enfants ouverts" -#: build/serializers.py:831 +#: build/serializers.py:839 msgid "Build order must be in production state" msgstr "L'ordre de construction doit être en état de production" -#: build/serializers.py:834 +#: build/serializers.py:842 msgid "Build order has incomplete outputs" msgstr "L'ordre de production a des sorties incomplètes" -#: build/serializers.py:873 +#: build/serializers.py:881 msgid "Build Line" msgstr "Chaîne d'assemblage" -#: build/serializers.py:881 +#: build/serializers.py:889 msgid "Build output" msgstr "Sortie d'assemblage" -#: build/serializers.py:889 +#: build/serializers.py:897 msgid "Build output must point to the same build" msgstr "La sortie de la construction doit pointer vers la même construction" -#: build/serializers.py:920 +#: build/serializers.py:928 msgid "Build Line Item" msgstr "Élément de la ligne de construction" -#: build/serializers.py:938 +#: build/serializers.py:946 msgid "bom_item.part must point to the same part as the build order" msgstr "bom_item.part doit pointer sur la même pièce que l'ordre de construction" -#: build/serializers.py:954 stock/serializers.py:1287 +#: build/serializers.py:962 stock/serializers.py:1287 msgid "Item must be in stock" msgstr "L'article doit être en stock" -#: build/serializers.py:997 order/serializers.py:1587 +#: build/serializers.py:1005 order/serializers.py:1601 #, python-brace-format msgid "Available quantity ({q}) exceeded" msgstr "Quantité disponible ({q}) dépassée" -#: build/serializers.py:1003 +#: build/serializers.py:1011 msgid "Build output must be specified for allocation of tracked parts" msgstr "La sortie de construction doit être spécifiée pour l'allocation des pièces suivies" -#: build/serializers.py:1011 +#: build/serializers.py:1019 msgid "Build output cannot be specified for allocation of untracked parts" msgstr "La sortie de la construction ne peut pas être spécifiée pour l'allocation des pièces non suivies" -#: build/serializers.py:1035 order/serializers.py:1860 +#: build/serializers.py:1043 order/serializers.py:1874 msgid "Allocation items must be provided" msgstr "Les articles d'allocation doivent être fournis" -#: build/serializers.py:1099 +#: build/serializers.py:1107 msgid "Stock location where parts are to be sourced (leave blank to take from any location)" msgstr "Emplacement de stock où les pièces doivent être fournies (laissez vide pour les prendre à partir de n'importe quel emplacement)" -#: build/serializers.py:1108 +#: build/serializers.py:1116 msgid "Exclude Location" msgstr "Emplacements exclus" -#: build/serializers.py:1109 +#: build/serializers.py:1117 msgid "Exclude stock items from this selected location" msgstr "Exclure les articles de stock de cet emplacement sélectionné" -#: build/serializers.py:1114 +#: build/serializers.py:1122 msgid "Interchangeable Stock" msgstr "Stock interchangeable" -#: build/serializers.py:1115 +#: build/serializers.py:1123 msgid "Stock items in multiple locations can be used interchangeably" msgstr "Les articles de stock à plusieurs emplacements peuvent être utilisés de manière interchangeable" -#: build/serializers.py:1120 +#: build/serializers.py:1128 msgid "Substitute Stock" msgstr "Stock de substitution" -#: build/serializers.py:1121 +#: build/serializers.py:1129 msgid "Allow allocation of substitute parts" msgstr "Autoriser l'allocation de pièces de remplacement" -#: build/serializers.py:1126 +#: build/serializers.py:1134 msgid "Optional Items" msgstr "Objets Optionnels" -#: build/serializers.py:1127 +#: build/serializers.py:1135 msgid "Allocate optional BOM items to build order" msgstr "Affecter des éléments de nomenclature facultatifs à l'ordre de fabrication" -#: build/serializers.py:1148 +#: build/serializers.py:1156 msgid "Failed to start auto-allocation task" msgstr "Échec du démarrage de la tâche d'auto-allocation" -#: build/serializers.py:1200 +#: build/serializers.py:1208 msgid "BOM Reference" msgstr "Référence de la nomenclature" -#: build/serializers.py:1206 +#: build/serializers.py:1214 msgid "BOM Part ID" msgstr "ID de la pièce de la nomenclature" -#: build/serializers.py:1213 +#: build/serializers.py:1221 msgid "BOM Part Name" msgstr "Nomenclature Nom de la pièce" -#: build/serializers.py:1266 build/serializers.py:1449 +#: build/serializers.py:1274 build/serializers.py:1457 msgid "Build" msgstr "Construire" -#: build/serializers.py:1276 company/models.py:685 order/api.py:311 -#: order/api.py:316 order/api.py:543 order/serializers.py:650 +#: build/serializers.py:1284 company/models.py:639 order/api.py:316 +#: order/api.py:321 order/api.py:549 order/serializers.py:661 #: stock/models.py:1036 stock/serializers.py:579 msgid "Supplier Part" msgstr "Pièce fournisseur" -#: build/serializers.py:1284 stock/serializers.py:620 +#: build/serializers.py:1292 stock/serializers.py:620 msgid "Allocated Quantity" msgstr "Quantité allouée" -#: build/serializers.py:1351 +#: build/serializers.py:1359 msgid "Build Reference" msgstr "Référence de construction" -#: build/serializers.py:1361 +#: build/serializers.py:1369 msgid "Part Category Name" msgstr "Nom de la catégorie de pièces" -#: build/serializers.py:1383 common/setting/system.py:480 part/models.py:1214 +#: build/serializers.py:1391 common/setting/system.py:480 part/models.py:1302 msgid "Trackable" msgstr "Traçable" -#: build/serializers.py:1386 +#: build/serializers.py:1394 msgid "Inherited" msgstr "Reçu de quelqu'un" -#: build/serializers.py:1389 part/models.py:4475 +#: build/serializers.py:1397 part/models.py:4100 msgid "Allow Variants" msgstr "Autoriser les variantes" -#: build/serializers.py:1395 build/serializers.py:1400 part/models.py:4208 -#: part/models.py:4779 stock/api.py:882 +#: build/serializers.py:1403 build/serializers.py:1408 part/models.py:3833 +#: part/models.py:4404 stock/api.py:882 msgid "BOM Item" msgstr "Article du BOM" -#: build/serializers.py:1467 order/serializers.py:1282 part/serializers.py:1310 -#: part/serializers.py:1765 +#: build/serializers.py:1475 order/serializers.py:1296 part/serializers.py:1175 +#: part/serializers.py:1630 msgid "In Production" msgstr "En Production" -#: build/serializers.py:1469 part/serializers.py:950 part/serializers.py:1314 +#: build/serializers.py:1477 part/serializers.py:835 part/serializers.py:1179 msgid "Scheduled to Build" msgstr "Planifié pour fabrication" -#: build/serializers.py:1472 part/serializers.py:987 +#: build/serializers.py:1480 part/serializers.py:872 msgid "External Stock" msgstr "Stock externe" -#: build/serializers.py:1473 part/serializers.py:1300 part/serializers.py:1808 +#: build/serializers.py:1481 part/serializers.py:1165 part/serializers.py:1673 msgid "Available Stock" msgstr "Stock disponible" -#: build/serializers.py:1475 +#: build/serializers.py:1483 msgid "Available Substitute Stock" msgstr "Stock de substitution disponible" -#: build/serializers.py:1478 +#: build/serializers.py:1486 msgid "Available Variant Stock" msgstr "Stock de variantes disponibles" -#: build/serializers.py:1752 +#: build/serializers.py:1760 msgid "Consumed quantity exceeds allocated quantity" msgstr "La quantité consommée dépasse la quantité allouée" -#: build/serializers.py:1789 +#: build/serializers.py:1797 msgid "Optional notes for the stock consumption" msgstr "Note optionnelle pour la consommation du stock" -#: build/serializers.py:1806 +#: build/serializers.py:1814 msgid "Build item must point to the correct build order" msgstr "L'article fabriqué doit pointer vers l'ordre de fabrication correct" -#: build/serializers.py:1811 +#: build/serializers.py:1819 msgid "Duplicate build item allocation" msgstr "Dupliquer l'allocation de l'article de fabrication" -#: build/serializers.py:1829 +#: build/serializers.py:1837 msgid "Build line must point to the correct build order" msgstr "L'article fabriqué doit pointer vers l'ordre de fabrication correct" -#: build/serializers.py:1834 +#: build/serializers.py:1842 msgid "Duplicate build line allocation" msgstr "Dupliquer l'allocation de ligne de fabrication" -#: build/serializers.py:1846 +#: build/serializers.py:1854 msgid "At least one item or line must be provided" msgstr "Au moins un élément ou une ligne doit être fourni" @@ -1482,702 +1498,826 @@ msgstr "Ordre de commande en retard" msgid "Build order {bo} is now overdue" msgstr "L'ordre de commande {bo} est maintenant en retard" -#: common/api.py:694 +#: common/api.py:701 msgid "Is Link" msgstr "C'est un lien" -#: common/api.py:702 +#: common/api.py:709 msgid "Is File" msgstr "C'est un fichier" -#: common/api.py:745 +#: common/api.py:756 msgid "User does not have permission to delete these attachments" msgstr "" -#: common/api.py:762 +#: common/api.py:769 msgid "User does not have permission to delete this attachment" msgstr "L'utilisateur n'a pas les permissions de supprimer cette pièce jointe" -#: common/currency.py:122 +#: common/currency.py:130 msgid "Invalid currency code" msgstr "Code de devise invalide" -#: common/currency.py:124 +#: common/currency.py:132 msgid "Duplicate currency code" msgstr "Code de devise en double" -#: common/currency.py:129 +#: common/currency.py:137 msgid "No valid currency codes provided" msgstr "Aucun code de devise valide fourni" -#: common/currency.py:146 +#: common/currency.py:154 msgid "No plugin" msgstr "Pas de plugin" -#: common/models.py:101 common/models.py:126 common/models.py:2729 +#: common/models.py:105 common/models.py:130 common/models.py:3150 msgid "Updated" msgstr "Mise à jour" -#: common/models.py:102 common/models.py:127 +#: common/models.py:106 common/models.py:131 msgid "Timestamp of last update" msgstr "Date de la dernière mise à jour" -#: common/models.py:139 +#: common/models.py:143 msgid "Update By" msgstr "Mis à jour par" -#: common/models.py:140 +#: common/models.py:144 msgid "User who last updated this object" msgstr "Utilisateur qui a mis à jour cet objet en dernier" -#: common/models.py:165 +#: common/models.py:169 msgid "Unique project code" msgstr "Code projet unique" -#: common/models.py:172 +#: common/models.py:176 msgid "Project description" msgstr "Description du projet" -#: common/models.py:181 +#: common/models.py:185 msgid "User or group responsible for this project" msgstr "Utilisateur ou groupe responsable de ce projet" -#: common/models.py:771 common/models.py:1272 common/models.py:1310 +#: common/models.py:775 common/models.py:1276 common/models.py:1314 msgid "Settings key" msgstr "Paramétrés des touches" -#: common/models.py:775 +#: common/models.py:779 msgid "Settings value" msgstr "Valeur du paramètre" -#: common/models.py:830 +#: common/models.py:834 msgid "Chosen value is not a valid option" msgstr "La valeur choisie n'est pas une option valide" -#: common/models.py:846 +#: common/models.py:850 msgid "Value must be a boolean value" msgstr "La valeur doit être une valeur booléenne" -#: common/models.py:854 +#: common/models.py:858 msgid "Value must be an integer value" msgstr "La valeur doit être un nombre entier" -#: common/models.py:862 +#: common/models.py:866 msgid "Value must be a valid number" msgstr "Valeur doit être un nombre valide" -#: common/models.py:887 +#: common/models.py:891 msgid "Value does not pass validation checks" msgstr "La valeur ne passe pas les contrôles de validation" -#: common/models.py:909 +#: common/models.py:913 msgid "Key string must be unique" msgstr "La chaîne de caractères constituant la clé doit être unique" -#: common/models.py:1318 common/models.py:1319 common/models.py:1423 -#: common/models.py:1424 common/models.py:1669 common/models.py:1670 -#: common/models.py:2000 common/models.py:2001 common/models.py:2382 -#: importer/models.py:100 part/models.py:3547 part/models.py:3575 +#: common/models.py:1322 common/models.py:1323 common/models.py:1427 +#: common/models.py:1428 common/models.py:1673 common/models.py:1674 +#: common/models.py:2006 common/models.py:2007 common/models.py:2803 +#: importer/models.py:100 part/models.py:3611 part/models.py:3639 #: plugin/models.py:355 plugin/models.py:356 #: report/templates/report/inventree_test_report.html:105 users/models.py:124 #: users/models.py:501 msgid "User" msgstr "Utilisateur" -#: common/models.py:1341 +#: common/models.py:1345 msgid "Price break quantity" msgstr "Quantité de rupture de prix" -#: common/models.py:1348 company/serializers.py:564 order/models.py:1842 -#: order/models.py:3043 +#: common/models.py:1352 company/serializers.py:349 order/models.py:1843 +#: order/models.py:3044 msgid "Price" msgstr "Prix" -#: common/models.py:1349 +#: common/models.py:1353 msgid "Unit price at specified quantity" msgstr "Prix unitaire à la quantité spécifiée" -#: common/models.py:1400 common/models.py:1585 +#: common/models.py:1404 common/models.py:1589 msgid "Endpoint" msgstr "Point final" -#: common/models.py:1401 +#: common/models.py:1405 msgid "Endpoint at which this webhook is received" msgstr "Point de terminaison auquel ce webhook est reçu" -#: common/models.py:1411 +#: common/models.py:1415 msgid "Name for this webhook" msgstr "Nom de ce webhook" -#: common/models.py:1415 common/models.py:2241 common/models.py:2348 -#: company/models.py:191 company/models.py:822 machine/models.py:40 -#: part/models.py:1237 plugin/models.py:69 stock/api.py:642 users/models.py:195 +#: common/models.py:1419 common/models.py:2247 common/models.py:2354 +#: company/models.py:192 company/models.py:776 machine/models.py:40 +#: part/models.py:1325 plugin/models.py:69 stock/api.py:642 users/models.py:195 #: users/models.py:554 users/serializers.py:314 msgid "Active" msgstr "Actif" -#: common/models.py:1415 +#: common/models.py:1419 msgid "Is this webhook active" msgstr "Ce webhook (lien de rappel HTTP) est-il actif" -#: common/models.py:1431 users/models.py:172 +#: common/models.py:1435 users/models.py:172 msgid "Token" msgstr "Jeton" -#: common/models.py:1432 +#: common/models.py:1436 msgid "Token for access" msgstr "Jeton d'accès" -#: common/models.py:1440 +#: common/models.py:1444 msgid "Secret" msgstr "Confidentiel" -#: common/models.py:1441 +#: common/models.py:1445 msgid "Shared secret for HMAC" msgstr "Secret partagé pour HMAC" -#: common/models.py:1549 common/models.py:2619 +#: common/models.py:1553 common/models.py:3040 msgid "Message ID" msgstr "ID message" -#: common/models.py:1550 common/models.py:2609 +#: common/models.py:1554 common/models.py:3030 msgid "Unique identifier for this message" msgstr "Identifiant unique pour ce message" -#: common/models.py:1558 +#: common/models.py:1562 msgid "Host" msgstr "Hôte" -#: common/models.py:1559 +#: common/models.py:1563 msgid "Host from which this message was received" msgstr "Hôte à partir duquel ce message a été reçu" -#: common/models.py:1567 +#: common/models.py:1571 msgid "Header" msgstr "Entête" -#: common/models.py:1568 +#: common/models.py:1572 msgid "Header of this message" msgstr "En-tête de ce message" -#: common/models.py:1575 +#: common/models.py:1579 msgid "Body" msgstr "Corps" -#: common/models.py:1576 +#: common/models.py:1580 msgid "Body of this message" msgstr "Corps de ce message" -#: common/models.py:1586 +#: common/models.py:1590 msgid "Endpoint on which this message was received" msgstr "Endpoint à partir duquel ce message a été reçu" -#: common/models.py:1591 +#: common/models.py:1595 msgid "Worked on" msgstr "Travaillé sur" -#: common/models.py:1592 +#: common/models.py:1596 msgid "Was the work on this message finished?" msgstr "Le travail sur ce message est-il terminé ?" -#: common/models.py:1718 +#: common/models.py:1722 msgid "Id" msgstr "Id" -#: common/models.py:1720 +#: common/models.py:1724 msgid "Title" msgstr "Titre" -#: common/models.py:1722 common/models.py:1983 company/models.py:185 -#: company/models.py:467 company/models.py:534 company/models.py:839 -#: order/models.py:457 order/models.py:1786 order/models.py:2343 -#: part/models.py:1113 +#: common/models.py:1726 common/models.py:1989 company/models.py:186 +#: company/models.py:468 company/models.py:536 company/models.py:793 +#: order/models.py:458 order/models.py:1787 order/models.py:2344 +#: part/models.py:1201 #: report/templates/report/inventree_build_order_report.html:164 msgid "Link" msgstr "Lien" -#: common/models.py:1724 +#: common/models.py:1728 msgid "Published" msgstr "Publié" -#: common/models.py:1726 +#: common/models.py:1730 msgid "Author" msgstr "Auteur" -#: common/models.py:1728 +#: common/models.py:1732 msgid "Summary" msgstr "Résumé" -#: common/models.py:1731 common/models.py:2586 +#: common/models.py:1735 common/models.py:3007 msgid "Read" msgstr "Lu" -#: common/models.py:1731 +#: common/models.py:1735 msgid "Was this news item read?" msgstr "Cette nouvelle a-t-elle été lue ?" -#: common/models.py:1748 +#: common/models.py:1752 msgid "Image file" msgstr "Fichier image" -#: common/models.py:1760 +#: common/models.py:1764 msgid "Target model type for this image" msgstr "Type de modèle cible pour cette image" -#: common/models.py:1764 +#: common/models.py:1768 msgid "Target model ID for this image" msgstr "ID du modèle cible pour cette image" -#: common/models.py:1786 +#: common/models.py:1790 msgid "Custom Unit" msgstr "Unité personnalisée" -#: common/models.py:1804 +#: common/models.py:1808 msgid "Unit symbol must be unique" msgstr "Le symbole de l'unité doit être unique" -#: common/models.py:1819 +#: common/models.py:1823 msgid "Unit name must be a valid identifier" msgstr "Le nom de l'unité doit être un identifiant valide" -#: common/models.py:1838 +#: common/models.py:1842 msgid "Unit name" msgstr "Nom de l'unité" -#: common/models.py:1845 +#: common/models.py:1849 msgid "Symbol" msgstr "Symbole" -#: common/models.py:1846 +#: common/models.py:1850 msgid "Optional unit symbol" msgstr "Symbole d'unité facultatif" -#: common/models.py:1852 +#: common/models.py:1856 msgid "Definition" msgstr "Définition" -#: common/models.py:1853 +#: common/models.py:1857 msgid "Unit definition" msgstr "Définition de l'unité" -#: common/models.py:1911 common/models.py:1974 stock/models.py:2967 +#: common/models.py:1917 common/models.py:1980 stock/models.py:2984 #: stock/serializers.py:247 msgid "Attachment" msgstr "Pièce jointe" -#: common/models.py:1928 +#: common/models.py:1934 msgid "Missing file" msgstr "Fichier manquant" -#: common/models.py:1929 +#: common/models.py:1935 msgid "Missing external link" msgstr "Lien externe manquant" -#: common/models.py:1966 +#: common/models.py:1972 common/models.py:2488 msgid "Model type" msgstr "Type de modèle" -#: common/models.py:1967 +#: common/models.py:1973 msgid "Target model type for image" msgstr "Type de modèle cible pour l'image" -#: common/models.py:1975 +#: common/models.py:1981 msgid "Select file to attach" msgstr "Sélectionnez un fichier à joindre" -#: common/models.py:1991 +#: common/models.py:1997 msgid "Comment" msgstr "Commentaire" -#: common/models.py:1992 +#: common/models.py:1998 msgid "Attachment comment" msgstr "Commentaire sur la pièce jointe" -#: common/models.py:2008 +#: common/models.py:2014 msgid "Upload date" msgstr "Date de téléchargement" -#: common/models.py:2009 +#: common/models.py:2015 msgid "Date the file was uploaded" msgstr "Date de téléchargement du fichier" -#: common/models.py:2013 +#: common/models.py:2019 msgid "File size" msgstr "Taille du fichier" -#: common/models.py:2013 +#: common/models.py:2019 msgid "File size in bytes" msgstr "Taille du fichier en octets" -#: common/models.py:2051 common/serializers.py:684 +#: common/models.py:2057 common/serializers.py:688 msgid "Invalid model type specified for attachment" msgstr "Type de modèle non valide spécifié pour la pièce jointe" -#: common/models.py:2072 +#: common/models.py:2078 msgid "Custom State" msgstr "État personnalisé" -#: common/models.py:2073 +#: common/models.py:2079 msgid "Custom States" msgstr "États membres de l'Union européenne" -#: common/models.py:2078 +#: common/models.py:2084 msgid "Reference Status Set" msgstr "Ensemble d'états de référence" -#: common/models.py:2079 +#: common/models.py:2085 msgid "Status set that is extended with this custom state" msgstr "Ensemble d'états étendu à cet état personnalisé" -#: common/models.py:2083 generic/states/serializers.py:18 +#: common/models.py:2089 generic/states/serializers.py:18 msgid "Logical Key" msgstr "Clé logique" -#: common/models.py:2085 +#: common/models.py:2091 msgid "State logical key that is equal to this custom state in business logic" msgstr "Clé logique de l'état qui est égale à cet état personnalisé dans la logique métier" -#: common/models.py:2090 common/models.py:2329 company/models.py:622 -#: machine/serializers.py:27 -#: report/templates/report/inventree_test_report.html:104 stock/models.py:2959 +#: common/models.py:2096 common/models.py:2335 machine/serializers.py:27 +#: report/templates/report/inventree_test_report.html:104 stock/models.py:2976 msgid "Value" msgstr "Valeur" -#: common/models.py:2091 +#: common/models.py:2097 msgid "Numerical value that will be saved in the models database" msgstr "Valeur numérique qui sera enregistrée dans la base de données des modèles" -#: common/models.py:2097 +#: common/models.py:2103 msgid "Name of the state" msgstr "Nom de l'Etat" -#: common/models.py:2106 common/models.py:2335 generic/states/serializers.py:22 +#: common/models.py:2112 common/models.py:2341 generic/states/serializers.py:22 msgid "Label" msgstr "Étiquette" -#: common/models.py:2107 +#: common/models.py:2113 msgid "Label that will be displayed in the frontend" msgstr "Etiquette qui sera affichée dans le frontend" -#: common/models.py:2114 generic/states/serializers.py:24 +#: common/models.py:2120 generic/states/serializers.py:24 msgid "Color" msgstr "Couleur" -#: common/models.py:2115 +#: common/models.py:2121 msgid "Color that will be displayed in the frontend" msgstr "Couleur qui sera affichée dans le frontend" -#: common/models.py:2123 +#: common/models.py:2129 msgid "Model" msgstr "Modèle" -#: common/models.py:2124 +#: common/models.py:2130 msgid "Model this state is associated with" msgstr "Modèle cet état est associé à" -#: common/models.py:2139 +#: common/models.py:2145 msgid "Model must be selected" msgstr "Le modèle doit être sélectionné" -#: common/models.py:2142 +#: common/models.py:2148 msgid "Key must be selected" msgstr "La clé doit être sélectionnée" -#: common/models.py:2145 +#: common/models.py:2151 msgid "Logical key must be selected" msgstr "La clé logique doit être sélectionnée" -#: common/models.py:2149 +#: common/models.py:2155 msgid "Key must be different from logical key" msgstr "La clé doit être différente de la clé logique" -#: common/models.py:2156 +#: common/models.py:2162 msgid "Valid reference status class must be provided" msgstr "Une classe de statut de référence valide doit être fournie" -#: common/models.py:2162 +#: common/models.py:2168 msgid "Key must be different from the logical keys of the reference status" msgstr "La clé doit être différente des clés logiques de l'état de référence" -#: common/models.py:2169 +#: common/models.py:2175 msgid "Logical key must be in the logical keys of the reference status" msgstr "La clé logique doit se trouver dans les clés logiques de l'état de référence" -#: common/models.py:2176 +#: common/models.py:2182 msgid "Name must be different from the names of the reference status" msgstr "Le nom doit être différent des noms des statuts de référence" -#: common/models.py:2216 common/models.py:2323 part/models.py:3889 +#: common/models.py:2222 common/models.py:2329 common/models.py:2533 msgid "Selection List" msgstr "Liste de sélection" -#: common/models.py:2217 +#: common/models.py:2223 msgid "Selection Lists" msgstr "Listes de sélection" -#: common/models.py:2222 +#: common/models.py:2228 msgid "Name of the selection list" msgstr "Nom de la liste de sélection" -#: common/models.py:2229 +#: common/models.py:2235 msgid "Description of the selection list" msgstr "Description de la liste de sélection" -#: common/models.py:2235 part/models.py:1242 +#: common/models.py:2241 part/models.py:1330 msgid "Locked" msgstr "Verrouillé" -#: common/models.py:2236 +#: common/models.py:2242 msgid "Is this selection list locked?" msgstr "Cette liste de sélection est-elle verrouillée ?" -#: common/models.py:2242 +#: common/models.py:2248 msgid "Can this selection list be used?" msgstr "Cette liste de sélection peut-elle être utilisée ?" -#: common/models.py:2250 +#: common/models.py:2256 msgid "Source Plugin" msgstr "Plug-in source" -#: common/models.py:2251 +#: common/models.py:2257 msgid "Plugin which provides the selection list" msgstr "Plugin qui fournit la liste de sélection" -#: common/models.py:2256 +#: common/models.py:2262 msgid "Source String" msgstr "Chaîne source" -#: common/models.py:2257 +#: common/models.py:2263 msgid "Optional string identifying the source used for this list" msgstr "Chaîne facultative identifiant la source utilisée pour cette liste" -#: common/models.py:2266 +#: common/models.py:2272 msgid "Default Entry" msgstr "Entrée par défaut" -#: common/models.py:2267 +#: common/models.py:2273 msgid "Default entry for this selection list" msgstr "Entrée par défaut pour cette liste de sélection" -#: common/models.py:2272 common/models.py:2724 +#: common/models.py:2278 common/models.py:3145 msgid "Created" msgstr "Créé le" -#: common/models.py:2273 +#: common/models.py:2279 msgid "Date and time that the selection list was created" msgstr "Date et heure de création de la liste de sélection" -#: common/models.py:2278 +#: common/models.py:2284 msgid "Last Updated" msgstr "Dernière mise à jour" -#: common/models.py:2279 +#: common/models.py:2285 msgid "Date and time that the selection list was last updated" msgstr "Date et heure de la dernière mise à jour de la liste de sélection" -#: common/models.py:2313 +#: common/models.py:2319 msgid "Selection List Entry" msgstr "Entrée de la liste de sélection" -#: common/models.py:2314 +#: common/models.py:2320 msgid "Selection List Entries" msgstr "Entrées de la liste de sélection" -#: common/models.py:2324 +#: common/models.py:2330 msgid "Selection list to which this entry belongs" msgstr "Liste de sélection à laquelle appartient cette entrée" -#: common/models.py:2330 +#: common/models.py:2336 msgid "Value of the selection list entry" msgstr "Valeur de l'entrée de la liste de sélection" -#: common/models.py:2336 +#: common/models.py:2342 msgid "Label for the selection list entry" msgstr "Étiquette pour l'entrée de la liste de sélection" -#: common/models.py:2342 +#: common/models.py:2348 msgid "Description of the selection list entry" msgstr "Description de l'entrée de la liste de sélection" -#: common/models.py:2349 +#: common/models.py:2355 msgid "Is this selection list entry active?" msgstr "Cette entrée de la liste de sélection est-elle active ?" -#: common/models.py:2367 -msgid "Barcode Scan" -msgstr "Analyse du code-barres" +#: common/models.py:2387 +msgid "Parameter Template" +msgstr "Modèle de paramètre" -#: common/models.py:2371 importer/models.py:546 part/models.py:4060 +#: common/models.py:2388 +msgid "Parameter Templates" +msgstr "" + +#: common/models.py:2425 +msgid "Checkbox parameters cannot have units" +msgstr "Les paramètres des cases à cocher ne peuvent pas avoir d'unités" + +#: common/models.py:2430 +msgid "Checkbox parameters cannot have choices" +msgstr "Les paramètres des cases à cocher ne peuvent pas comporter de choix" + +#: common/models.py:2450 part/models.py:3707 +msgid "Choices must be unique" +msgstr "Les choix doivent être uniques" + +#: common/models.py:2467 +msgid "Parameter template name must be unique" +msgstr "Le nom du modèle de paramètre doit être unique" + +#: common/models.py:2489 +msgid "Target model type for this parameter template" +msgstr "" + +#: common/models.py:2495 +msgid "Parameter Name" +msgstr "Nom du paramètre" + +#: common/models.py:2501 part/models.py:1283 +msgid "Units" +msgstr "Unités" + +#: common/models.py:2502 +msgid "Physical units for this parameter" +msgstr "Unités physiques pour ce paramètre" + +#: common/models.py:2510 +msgid "Parameter description" +msgstr "Description des paramètres" + +#: common/models.py:2516 +msgid "Checkbox" +msgstr "Case à cocher" + +#: common/models.py:2517 +msgid "Is this parameter a checkbox?" +msgstr "Ce paramètre est-il une case à cocher ?" + +#: common/models.py:2522 part/models.py:3794 +msgid "Choices" +msgstr "Choix" + +#: common/models.py:2523 +msgid "Valid choices for this parameter (comma-separated)" +msgstr "Choix valables pour ce paramètre (séparés par des virgules)" + +#: common/models.py:2534 +msgid "Selection list for this parameter" +msgstr "Liste de sélection pour ce paramètre" + +#: common/models.py:2539 part/models.py:3769 report/models.py:287 +msgid "Enabled" +msgstr "Activé" + +#: common/models.py:2540 +msgid "Is this parameter template enabled?" +msgstr "" + +#: common/models.py:2581 +msgid "Parameter" +msgstr "" + +#: common/models.py:2582 +msgid "Parameters" +msgstr "" + +#: common/models.py:2628 +msgid "Invalid choice for parameter value" +msgstr "Choix incorrect pour la valeur du paramètre" + +#: common/models.py:2698 common/serializers.py:783 +msgid "Invalid model type specified for parameter" +msgstr "" + +#: common/models.py:2734 +msgid "Model ID" +msgstr "" + +#: common/models.py:2735 +msgid "ID of the target model for this parameter" +msgstr "" + +#: common/models.py:2744 common/setting/system.py:450 report/models.py:373 +#: report/models.py:669 report/serializers.py:94 report/serializers.py:135 +#: stock/serializers.py:234 +msgid "Template" +msgstr "Modèle" + +#: common/models.py:2745 +msgid "Parameter template" +msgstr "" + +#: common/models.py:2750 common/models.py:2792 importer/models.py:546 msgid "Data" msgstr "Données" -#: common/models.py:2372 +#: common/models.py:2751 +msgid "Parameter Value" +msgstr "Valeur du paramètre" + +#: common/models.py:2760 company/models.py:810 order/serializers.py:894 +#: order/serializers.py:2064 part/models.py:4075 part/models.py:4444 +#: report/templates/report/inventree_bill_of_materials_report.html:140 +#: report/templates/report/inventree_purchase_order_report.html:39 +#: report/templates/report/inventree_return_order_report.html:27 +#: report/templates/report/inventree_sales_order_report.html:32 +#: report/templates/report/inventree_stock_location_report.html:105 +#: stock/serializers.py:813 +msgid "Note" +msgstr "Note" + +#: common/models.py:2761 stock/serializers.py:718 +msgid "Optional note field" +msgstr "Champ de notes facultatif" + +#: common/models.py:2788 +msgid "Barcode Scan" +msgstr "Analyse du code-barres" + +#: common/models.py:2793 msgid "Barcode data" msgstr "Données du code-barres" -#: common/models.py:2383 +#: common/models.py:2804 msgid "User who scanned the barcode" msgstr "Utilisateur qui a scanné le code-barres" -#: common/models.py:2388 importer/models.py:69 +#: common/models.py:2809 importer/models.py:69 msgid "Timestamp" msgstr "Horodatage" -#: common/models.py:2389 +#: common/models.py:2810 msgid "Date and time of the barcode scan" msgstr "Date et heure du scan de code-barres" -#: common/models.py:2395 +#: common/models.py:2816 msgid "URL endpoint which processed the barcode" msgstr "Point d'accès à l'URL qui a traité le code-barres" -#: common/models.py:2402 order/models.py:1832 plugin/serializers.py:93 +#: common/models.py:2823 order/models.py:1833 plugin/serializers.py:93 msgid "Context" msgstr "Contexte" -#: common/models.py:2403 +#: common/models.py:2824 msgid "Context data for the barcode scan" msgstr "Données contextuelles pour la lecture du code-barres" -#: common/models.py:2410 +#: common/models.py:2831 msgid "Response" msgstr "Réponse" -#: common/models.py:2411 +#: common/models.py:2832 msgid "Response data from the barcode scan" msgstr "Données de réponse provenant de la lecture du code-barres" -#: common/models.py:2417 report/templates/report/inventree_test_report.html:103 -#: stock/models.py:2953 +#: common/models.py:2838 report/templates/report/inventree_test_report.html:103 +#: stock/models.py:2970 msgid "Result" msgstr "Résultat" -#: common/models.py:2418 +#: common/models.py:2839 msgid "Was the barcode scan successful?" msgstr "La lecture du code-barres a-t-elle réussi ?" -#: common/models.py:2500 +#: common/models.py:2921 msgid "An error occurred" msgstr "Une erreur s'est produite" -#: common/models.py:2521 +#: common/models.py:2942 msgid "INVE-E8: Email log deletion is protected. Set INVENTREE_PROTECT_EMAIL_LOG to False to allow deletion." msgstr "INVE-E8 : La suppression du journal d'e-mail est protégée. Définissez INVENTREE_PROTECT_EMAIL_LOG à False pour permettre la suppression." -#: common/models.py:2568 +#: common/models.py:2989 msgid "Email Message" msgstr "Message email" -#: common/models.py:2569 +#: common/models.py:2990 msgid "Email Messages" msgstr "Messages email" -#: common/models.py:2576 +#: common/models.py:2997 msgid "Announced" msgstr "Annoncé" -#: common/models.py:2578 +#: common/models.py:2999 msgid "Sent" msgstr "Envoyé" -#: common/models.py:2579 +#: common/models.py:3000 msgid "Failed" msgstr "Échec" -#: common/models.py:2582 +#: common/models.py:3003 msgid "Delivered" msgstr "Livré" -#: common/models.py:2590 +#: common/models.py:3011 msgid "Confirmed" msgstr "Confirmé" -#: common/models.py:2596 +#: common/models.py:3017 msgid "Inbound" msgstr "Entrant" -#: common/models.py:2597 +#: common/models.py:3018 msgid "Outbound" msgstr "Sortant" -#: common/models.py:2602 +#: common/models.py:3023 msgid "No Reply" msgstr "Sans réponse" -#: common/models.py:2603 +#: common/models.py:3024 msgid "Track Delivery" msgstr "Suivi de livraison" -#: common/models.py:2604 +#: common/models.py:3025 msgid "Track Read" msgstr "Suivi de la lecture" -#: common/models.py:2605 +#: common/models.py:3026 msgid "Track Click" msgstr "Suivi du clic" -#: common/models.py:2608 common/models.py:2711 +#: common/models.py:3029 common/models.py:3132 msgid "Global ID" msgstr "ID Global" -#: common/models.py:2621 +#: common/models.py:3042 msgid "Identifier for this message (might be supplied by external system)" msgstr "Identifiant pour ce message (peut être fourni par un système externe)" -#: common/models.py:2628 +#: common/models.py:3049 msgid "Thread ID" msgstr "ID du sujet de discussion" -#: common/models.py:2630 +#: common/models.py:3051 msgid "Identifier for this message thread (might be supplied by external system)" msgstr "Identifiant pour ce fil de message (peut être fourni par un système externe)" -#: common/models.py:2639 +#: common/models.py:3060 msgid "Thread" msgstr "Fil de discussion" -#: common/models.py:2640 +#: common/models.py:3061 msgid "Linked thread for this message" msgstr "Fil lié à ce message" -#: common/models.py:2656 -msgid "Prioriy" -msgstr "Priorité" +#: common/models.py:3077 +msgid "Priority" +msgstr "" -#: common/models.py:2698 +#: common/models.py:3119 msgid "Email Thread" msgstr "Fil d'Email" -#: common/models.py:2699 +#: common/models.py:3120 msgid "Email Threads" msgstr "Fils d'Emails" -#: common/models.py:2705 generic/states/serializers.py:16 +#: common/models.py:3126 generic/states/serializers.py:16 #: machine/serializers.py:24 plugin/models.py:46 users/models.py:113 msgid "Key" msgstr "Clé" -#: common/models.py:2708 +#: common/models.py:3129 msgid "Unique key for this thread (used to identify the thread)" msgstr "Clé unique pour ce fil (utilisée pour identifier le fil)" -#: common/models.py:2712 +#: common/models.py:3133 msgid "Unique identifier for this thread" msgstr "Identifiant unique pour ce fil" -#: common/models.py:2719 +#: common/models.py:3140 msgid "Started Internal" msgstr "Démarré en interne" -#: common/models.py:2720 +#: common/models.py:3141 msgid "Was this thread started internally?" msgstr "Est-ce que ce fil a été démarré en interne ?" -#: common/models.py:2725 +#: common/models.py:3146 msgid "Date and time that the thread was created" msgstr "Date et heure de création du fil" -#: common/models.py:2730 +#: common/models.py:3151 msgid "Date and time that the thread was last updated" msgstr "Date et heure de dernière mise à jour du fil" @@ -2199,7 +2339,7 @@ msgstr "{verbose_name} annulé" msgid "A order that is assigned to you was canceled" msgstr "Une commande qui vous est assignée a été annulée" -#: common/notifications.py:73 common/notifications.py:80 order/api.py:594 +#: common/notifications.py:73 common/notifications.py:80 order/api.py:600 msgid "Items Received" msgstr "Articles reçus" @@ -2211,88 +2351,93 @@ msgstr "Des articles d'un bon de commande ont été reçus" msgid "Items have been received against a return order" msgstr "Les articles ont été reçus dans le cadre d'un ordre de retour" -#: common/serializers.py:145 +#: common/serializers.py:149 msgid "Indicates if the setting is overridden by an environment variable" msgstr "Indique si le paramètre est écrasé par une variable d'environnement" -#: common/serializers.py:147 +#: common/serializers.py:151 msgid "Override" msgstr "Écraser" -#: common/serializers.py:498 +#: common/serializers.py:502 msgid "Is Running" msgstr "En cours d'exécution" -#: common/serializers.py:504 +#: common/serializers.py:508 msgid "Pending Tasks" msgstr "Tâches en attente" -#: common/serializers.py:510 +#: common/serializers.py:514 msgid "Scheduled Tasks" msgstr "Tâches planifiées" -#: common/serializers.py:516 +#: common/serializers.py:520 msgid "Failed Tasks" msgstr "Tâches échouées" -#: common/serializers.py:531 +#: common/serializers.py:535 msgid "Task ID" msgstr "ID de la tâche" -#: common/serializers.py:531 +#: common/serializers.py:535 msgid "Unique task ID" msgstr "ID unique de la tâche" -#: common/serializers.py:533 +#: common/serializers.py:537 msgid "Lock" msgstr "Verrouillé" -#: common/serializers.py:533 +#: common/serializers.py:537 msgid "Lock time" msgstr "Heure verrouillé" -#: common/serializers.py:535 +#: common/serializers.py:539 msgid "Task name" msgstr "Nom de la tâche" -#: common/serializers.py:537 +#: common/serializers.py:541 msgid "Function" msgstr "Fonction" -#: common/serializers.py:537 +#: common/serializers.py:541 msgid "Function name" msgstr "Nom de la fonction" -#: common/serializers.py:539 +#: common/serializers.py:543 msgid "Arguments" msgstr "Arguments" -#: common/serializers.py:539 +#: common/serializers.py:543 msgid "Task arguments" msgstr "Arguments tâche" -#: common/serializers.py:542 +#: common/serializers.py:546 msgid "Keyword Arguments" msgstr "Mots-clés Arguments" -#: common/serializers.py:542 +#: common/serializers.py:546 msgid "Task keyword arguments" msgstr "Mots-clés arguments tâche" -#: common/serializers.py:652 +#: common/serializers.py:656 msgid "Filename" msgstr "Nom du fichier" -#: common/serializers.py:659 importer/models.py:89 report/api.py:41 +#: common/serializers.py:663 common/serializers.py:730 +#: common/serializers.py:805 importer/models.py:89 report/api.py:41 #: report/models.py:293 report/serializers.py:52 msgid "Model Type" msgstr "Type de modèle" -#: common/serializers.py:687 +#: common/serializers.py:691 msgid "User does not have permission to create or edit attachments for this model" msgstr "L'utilisateur n'a pas le droit de créer ou de modifier des pièces jointes pour ce modèle" -#: common/serializers.py:731 common/serializers.py:834 +#: common/serializers.py:786 +msgid "User does not have permission to create or edit parameters for this model" +msgstr "" + +#: common/serializers.py:850 common/serializers.py:953 msgid "Selection list is locked" msgstr "La liste de sélection est verrouillée" @@ -2368,7 +2513,7 @@ msgstr "Limiter l'affichage de `about`" msgid "Show the `about` modal only to superusers" msgstr "Afficher la modale `about` uniquement aux super-utilisateurs" -#: common/setting/system.py:224 company/models.py:144 company/models.py:145 +#: common/setting/system.py:224 company/models.py:145 company/models.py:146 msgid "Company name" msgstr "Nom de la société" @@ -2411,8 +2556,8 @@ msgstr "Fréquence de mise à jour des taux de change (définir à zéro pour d #: common/setting/system.py:253 common/setting/system.py:293 #: common/setting/system.py:306 common/setting/system.py:314 #: common/setting/system.py:321 common/setting/system.py:330 -#: common/setting/system.py:339 common/setting/system.py:588 -#: common/setting/system.py:616 common/setting/system.py:707 +#: common/setting/system.py:339 common/setting/system.py:580 +#: common/setting/system.py:608 common/setting/system.py:707 #: common/setting/system.py:1103 common/setting/system.py:1119 msgid "days" msgstr "jours" @@ -2657,12 +2802,6 @@ msgstr "Copier les templates de paramètres de catégorie" msgid "Copy category parameter templates when creating a part" msgstr "Copier les templates de paramètres de la catégorie lors de la création d'une pièce" -#: common/setting/system.py:450 part/models.py:4054 report/models.py:373 -#: report/models.py:669 report/serializers.py:94 report/serializers.py:135 -#: stock/serializers.py:234 -msgid "Template" -msgstr "Modèle" - #: common/setting/system.py:451 msgid "Parts are templates by default" msgstr "Les pièces sont des templates par défaut" @@ -2671,8 +2810,8 @@ msgstr "Les pièces sont des templates par défaut" msgid "Parts can be assembled from other components by default" msgstr "Les pièces peuvent être assemblées à partir d'autres composants par défaut" -#: common/setting/system.py:462 part/models.py:1208 part/serializers.py:1734 -#: part/serializers.py:1741 +#: common/setting/system.py:462 part/models.py:1296 part/serializers.py:1599 +#: part/serializers.py:1606 msgid "Component" msgstr "Composant" @@ -2680,7 +2819,7 @@ msgstr "Composant" msgid "Parts can be used as sub-components by default" msgstr "Les pièces peuvent être utilisées comme sous-composants par défaut" -#: common/setting/system.py:468 part/models.py:1226 +#: common/setting/system.py:468 part/models.py:1314 msgid "Purchaseable" msgstr "Achetable" @@ -2688,7 +2827,7 @@ msgstr "Achetable" msgid "Parts are purchaseable by default" msgstr "Les pièces sont achetables par défaut" -#: common/setting/system.py:474 part/models.py:1232 stock/api.py:643 +#: common/setting/system.py:474 part/models.py:1320 stock/api.py:643 msgid "Salable" msgstr "Vendable" @@ -2700,7 +2839,7 @@ msgstr "Les pièces sont vendables par défaut" msgid "Parts are trackable by default" msgstr "Les pièces sont traçables par défaut" -#: common/setting/system.py:486 part/models.py:1248 +#: common/setting/system.py:486 part/models.py:1336 msgid "Virtual" msgstr "Virtuelle" @@ -2749,158 +2888,158 @@ msgid "Part category default icon (empty means no icon)" msgstr "Icône par défaut de la catégorie de la pièce (vide signifie aucune icône)" #: common/setting/system.py:525 -msgid "Enforce Parameter Units" -msgstr "Renforcer les unités des paramètres" - -#: common/setting/system.py:527 -msgid "If units are provided, parameter values must match the specified units" -msgstr "Si des unités sont fournies, les valeurs de paramètre doivent correspondre aux unités spécifiées" - -#: common/setting/system.py:533 msgid "Minimum Pricing Decimal Places" msgstr "Nombre minimal de décimales" -#: common/setting/system.py:535 +#: common/setting/system.py:527 msgid "Minimum number of decimal places to display when rendering pricing data" msgstr "Nombre minimum de décimales à afficher lors de l'affichage des prix" -#: common/setting/system.py:546 +#: common/setting/system.py:538 msgid "Maximum Pricing Decimal Places" msgstr "Nombre maximal de décimales pour la tarification" -#: common/setting/system.py:548 +#: common/setting/system.py:540 msgid "Maximum number of decimal places to display when rendering pricing data" msgstr "Nombre maximal de décimales à afficher lors du rendu des données de tarification" -#: common/setting/system.py:559 +#: common/setting/system.py:551 msgid "Use Supplier Pricing" msgstr "Utiliser le prix fournisseur" -#: common/setting/system.py:561 +#: common/setting/system.py:553 msgid "Include supplier price breaks in overall pricing calculations" msgstr "Inclure les réductions de prix dans le calcul du prix global" -#: common/setting/system.py:567 +#: common/setting/system.py:559 msgid "Purchase History Override" msgstr "Remplacer l'historique des achats" -#: common/setting/system.py:569 +#: common/setting/system.py:561 msgid "Historical purchase order pricing overrides supplier price breaks" msgstr "La tarification historique des bons de commande remplace les réductions de prix des fournisseurs" -#: common/setting/system.py:575 +#: common/setting/system.py:567 msgid "Use Stock Item Pricing" msgstr "Utiliser les prix des articles en stock" -#: common/setting/system.py:577 +#: common/setting/system.py:569 msgid "Use pricing from manually entered stock data for pricing calculations" msgstr "Utiliser les prix des données de stock saisies manuellement pour calculer les prix" -#: common/setting/system.py:583 +#: common/setting/system.py:575 msgid "Stock Item Pricing Age" msgstr "Âge de tarification des articles de stock" -#: common/setting/system.py:585 +#: common/setting/system.py:577 msgid "Exclude stock items older than this number of days from pricing calculations" msgstr "Exclure les articles en stock datant de plus de ce nombre de jours des calculs de prix" -#: common/setting/system.py:592 +#: common/setting/system.py:584 msgid "Use Variant Pricing" msgstr "Utiliser les prix variants" -#: common/setting/system.py:593 +#: common/setting/system.py:585 msgid "Include variant pricing in overall pricing calculations" msgstr "Inclure la tarification variante dans le calcul global des prix" -#: common/setting/system.py:598 +#: common/setting/system.py:590 msgid "Active Variants Only" msgstr "Variantes actives uniquement" -#: common/setting/system.py:600 +#: common/setting/system.py:592 msgid "Only use active variant parts for calculating variant pricing" msgstr "N'utiliser que des pièces de variante actives pour calculer le prix de la variante" -#: common/setting/system.py:606 +#: common/setting/system.py:598 msgid "Auto Update Pricing" msgstr "Mise à jour automatique des prix" -#: common/setting/system.py:608 +#: common/setting/system.py:600 msgid "Automatically update part pricing when internal data changes" msgstr "Mettre à jour automatiquement les prix des pièces quand les données internes changes" -#: common/setting/system.py:614 +#: common/setting/system.py:606 msgid "Pricing Rebuild Interval" msgstr "Intervalle de regénération des prix" -#: common/setting/system.py:615 +#: common/setting/system.py:607 msgid "Number of days before part pricing is automatically updated" msgstr "Nombre de jours avant la mise à jour automatique du prix de la pièce" -#: common/setting/system.py:621 +#: common/setting/system.py:613 msgid "Internal Prices" msgstr "Prix internes" -#: common/setting/system.py:622 +#: common/setting/system.py:614 msgid "Enable internal prices for parts" msgstr "Activer les prix internes pour les pièces" -#: common/setting/system.py:627 +#: common/setting/system.py:619 msgid "Internal Price Override" msgstr "Substitution du prix interne" -#: common/setting/system.py:629 +#: common/setting/system.py:621 msgid "If available, internal prices override price range calculations" msgstr "Si disponible, les prix internes remplacent les calculs de la fourchette de prix" -#: common/setting/system.py:635 +#: common/setting/system.py:627 msgid "Enable label printing" msgstr "Activer l'impression d'étiquettes" -#: common/setting/system.py:636 +#: common/setting/system.py:628 msgid "Enable label printing from the web interface" msgstr "Activer l'impression d'étiquettes depuis l'interface Web" -#: common/setting/system.py:641 +#: common/setting/system.py:633 msgid "Label Image DPI" msgstr "Étiquette image DPI" -#: common/setting/system.py:643 +#: common/setting/system.py:635 msgid "DPI resolution when generating image files to supply to label printing plugins" msgstr "Résolution DPI lors de la génération de fichiers image pour fournir aux plugins d'impression d'étiquettes" -#: common/setting/system.py:649 +#: common/setting/system.py:641 msgid "Enable Reports" msgstr "Activer les rapports" -#: common/setting/system.py:650 +#: common/setting/system.py:642 msgid "Enable generation of reports" msgstr "Activer la génération de rapports" -#: common/setting/system.py:655 +#: common/setting/system.py:647 msgid "Debug Mode" msgstr "Mode Débogage" -#: common/setting/system.py:656 +#: common/setting/system.py:648 msgid "Generate reports in debug mode (HTML output)" msgstr "Générer des rapports en mode debug (sortie HTML)" -#: common/setting/system.py:661 +#: common/setting/system.py:653 msgid "Log Report Errors" msgstr "Journal des erreurs" -#: common/setting/system.py:662 +#: common/setting/system.py:654 msgid "Log errors which occur when generating reports" msgstr "Enregistrer les erreurs qui se produisent lors de la génération de rapports" -#: common/setting/system.py:667 plugin/builtin/labels/label_sheet.py:29 +#: common/setting/system.py:659 plugin/builtin/labels/label_sheet.py:29 #: report/models.py:381 msgid "Page Size" msgstr "Taille de la page" -#: common/setting/system.py:668 +#: common/setting/system.py:660 msgid "Default page size for PDF reports" msgstr "Taille de page par défaut pour les rapports PDF" +#: common/setting/system.py:665 +msgid "Enforce Parameter Units" +msgstr "Renforcer les unités des paramètres" + +#: common/setting/system.py:667 +msgid "If units are provided, parameter values must match the specified units" +msgstr "Si des unités sont fournies, les valeurs de paramètre doivent correspondre aux unités spécifiées" + #: common/setting/system.py:673 msgid "Globally Unique Serials" msgstr "Numéro de Série Universellement Unique" @@ -3456,688 +3595,677 @@ msgid "Display PDF reports in the browser, instead of downloading as a file" msgstr "Afficher les rapports PDF dans le navigateur, au lieu de les télécharger en tant que fichier" #: common/setting/user.py:45 +msgid "Barcode Scanner in Form Fields" +msgstr "" + +#: common/setting/user.py:46 +msgid "Allow barcode scanner input in form fields" +msgstr "" + +#: common/setting/user.py:51 msgid "Search Parts" msgstr "Rechercher de pièces" -#: common/setting/user.py:46 +#: common/setting/user.py:52 msgid "Display parts in search preview window" msgstr "Afficher les pièces dans la fenêtre d'aperçu de la recherche" -#: common/setting/user.py:51 +#: common/setting/user.py:57 msgid "Search Supplier Parts" msgstr "Recherche du fournisseur de pièces" -#: common/setting/user.py:52 +#: common/setting/user.py:58 msgid "Display supplier parts in search preview window" msgstr "Afficher les pièces du fournisseur dans la fenêtre de prévisualisation de la recherche" -#: common/setting/user.py:57 +#: common/setting/user.py:63 msgid "Search Manufacturer Parts" msgstr "Rechercher les pièces du fabricant" -#: common/setting/user.py:58 +#: common/setting/user.py:64 msgid "Display manufacturer parts in search preview window" msgstr "Afficher les pièces du fabricant dans la fenêtre de prévisualisation de recherche" -#: common/setting/user.py:63 +#: common/setting/user.py:69 msgid "Hide Inactive Parts" msgstr "Masquer les pièces inactives" -#: common/setting/user.py:64 +#: common/setting/user.py:70 msgid "Excluded inactive parts from search preview window" msgstr "Exclure les pièces inactives de la fenêtre de prévisualisation de recherche" -#: common/setting/user.py:69 +#: common/setting/user.py:75 msgid "Search Categories" msgstr "Rechercher des catégories" -#: common/setting/user.py:70 +#: common/setting/user.py:76 msgid "Display part categories in search preview window" msgstr "Afficher les catégories de pièces dans la fenêtre de prévisualisation de recherche" -#: common/setting/user.py:75 +#: common/setting/user.py:81 msgid "Search Stock" msgstr "Rechercher dans le stock" -#: common/setting/user.py:76 +#: common/setting/user.py:82 msgid "Display stock items in search preview window" msgstr "Afficher les pièces en stock dans la fenêtre d'aperçu de la recherche" -#: common/setting/user.py:81 +#: common/setting/user.py:87 msgid "Hide Unavailable Stock Items" msgstr "Cacher les pièces indisponibles" -#: common/setting/user.py:83 +#: common/setting/user.py:89 msgid "Exclude stock items which are not available from the search preview window" msgstr "Exclure les articles en stock qui ne sont pas disponibles de la fenêtre de prévisualisation de recherche" -#: common/setting/user.py:89 +#: common/setting/user.py:95 msgid "Search Locations" msgstr "Chercher des Emplacements" -#: common/setting/user.py:90 +#: common/setting/user.py:96 msgid "Display stock locations in search preview window" msgstr "Afficher les emplacements dans la fenêtre d'aperçu de la recherche" -#: common/setting/user.py:95 +#: common/setting/user.py:101 msgid "Search Companies" msgstr "Rechercher les entreprises" -#: common/setting/user.py:96 +#: common/setting/user.py:102 msgid "Display companies in search preview window" msgstr "Afficher les entreprises dans la fenêtre de prévisualisation de recherche" -#: common/setting/user.py:101 +#: common/setting/user.py:107 msgid "Search Build Orders" msgstr "Rechercher les commandes de construction" -#: common/setting/user.py:102 +#: common/setting/user.py:108 msgid "Display build orders in search preview window" msgstr "Afficher les commandes de construction dans la fenêtre de prévisualisation de recherche" -#: common/setting/user.py:107 +#: common/setting/user.py:113 msgid "Search Purchase Orders" msgstr "Rechercher des bons de commande" -#: common/setting/user.py:108 +#: common/setting/user.py:114 msgid "Display purchase orders in search preview window" msgstr "Afficher les bons de commande dans la fenêtre de prévisualisation de recherche" -#: common/setting/user.py:113 +#: common/setting/user.py:119 msgid "Exclude Inactive Purchase Orders" msgstr "Exclure les bons de commande inactifs" -#: common/setting/user.py:114 +#: common/setting/user.py:120 msgid "Exclude inactive purchase orders from search preview window" msgstr "Exclure les commandes d’achat inactives de la fenêtre de prévisualisation de recherche" -#: common/setting/user.py:119 +#: common/setting/user.py:125 msgid "Search Sales Orders" msgstr "Rechercher les bons de commande" -#: common/setting/user.py:120 +#: common/setting/user.py:126 msgid "Display sales orders in search preview window" msgstr "Afficher les bons de commande dans la fenêtre de prévisualisation de la recherche" -#: common/setting/user.py:125 +#: common/setting/user.py:131 msgid "Exclude Inactive Sales Orders" msgstr "Exclure les bons de commande inactives" -#: common/setting/user.py:126 +#: common/setting/user.py:132 msgid "Exclude inactive sales orders from search preview window" msgstr "Exclure les bons de commande inactifs de la fenêtre de prévisualisation de recherche" -#: common/setting/user.py:131 +#: common/setting/user.py:137 msgid "Search Sales Order Shipments" msgstr "Rechercher les expéditions de commandes clients" -#: common/setting/user.py:132 +#: common/setting/user.py:138 msgid "Display sales order shipments in search preview window" msgstr "Afficher les envois de commandes dans la fenêtre de prévisualisation de la recherche" -#: common/setting/user.py:137 +#: common/setting/user.py:143 msgid "Search Return Orders" msgstr "Rechercher les commandes retournées" -#: common/setting/user.py:138 +#: common/setting/user.py:144 msgid "Display return orders in search preview window" msgstr "Afficher les ordres de retour dans la fenêtre d'aperçu de la recherche" -#: common/setting/user.py:143 +#: common/setting/user.py:149 msgid "Exclude Inactive Return Orders" msgstr "Exclure les commandes de retour inactives" -#: common/setting/user.py:144 +#: common/setting/user.py:150 msgid "Exclude inactive return orders from search preview window" msgstr "Exclure les ordres de retour inactifs de la fenêtre d'aperçu de la recherche" -#: common/setting/user.py:149 +#: common/setting/user.py:155 msgid "Search Preview Results" msgstr "Résultats de l'aperçu de la recherche" -#: common/setting/user.py:151 +#: common/setting/user.py:157 msgid "Number of results to show in each section of the search preview window" msgstr "Nombre de résultats à afficher dans chaque section de la fenêtre de prévisualisation de recherche" -#: common/setting/user.py:157 +#: common/setting/user.py:163 msgid "Regex Search" msgstr "Recherche Regex" -#: common/setting/user.py:158 +#: common/setting/user.py:164 msgid "Enable regular expressions in search queries" msgstr "Activer les expressions régulières dans les requêtes de recherche" -#: common/setting/user.py:163 +#: common/setting/user.py:169 msgid "Whole Word Search" msgstr "Recherche de mot complet" -#: common/setting/user.py:164 +#: common/setting/user.py:170 msgid "Search queries return results for whole word matches" msgstr "Les requêtes de recherche renvoient des résultats pour des mots entiers" -#: common/setting/user.py:169 +#: common/setting/user.py:175 msgid "Search Notes" msgstr "Notes de recherche" -#: common/setting/user.py:171 +#: common/setting/user.py:177 msgid "Search queries return results for matches from the item's notes" msgstr "Les requêtes de recherche renvoient les résultats correspondant aux notes de l'article" -#: common/setting/user.py:177 +#: common/setting/user.py:183 msgid "Escape Key Closes Forms" msgstr "La touche Echap ferme les formulaires" -#: common/setting/user.py:178 +#: common/setting/user.py:184 msgid "Use the escape key to close modal forms" msgstr "Utilisez la touche Echap pour fermer les formulaires modaux" -#: common/setting/user.py:183 +#: common/setting/user.py:189 msgid "Fixed Navbar" msgstr "Barre de navigation fixe" -#: common/setting/user.py:184 +#: common/setting/user.py:190 msgid "The navbar position is fixed to the top of the screen" msgstr "La position de la barre de navigation est fixée en haut de l'écran" -#: common/setting/user.py:189 +#: common/setting/user.py:195 msgid "Fixed Table Headers" msgstr "En-têtes de tableau fixes" -#: common/setting/user.py:190 +#: common/setting/user.py:196 msgid "Table headers are fixed to the top of the table" msgstr "Les en-têtes de table sont fixes au-dessus du tableau" -#: common/setting/user.py:195 +#: common/setting/user.py:201 msgid "Show Spotlight" msgstr "Afficher Spotlight" -#: common/setting/user.py:196 +#: common/setting/user.py:202 msgid "Enable spotlight navigation functionality" msgstr "Activer la fonctionnalité de navigation spotlight" -#: common/setting/user.py:201 +#: common/setting/user.py:207 msgid "Navigation Icons" msgstr "Icônes de navigation" -#: common/setting/user.py:202 +#: common/setting/user.py:208 msgid "Display icons in the navigation bar" msgstr "Afficher les icônes dans la barre de navigation" -#: common/setting/user.py:207 +#: common/setting/user.py:213 msgid "Date Format" msgstr "Format de date" -#: common/setting/user.py:208 +#: common/setting/user.py:214 msgid "Preferred format for displaying dates" msgstr "Format préféré pour l'affichage des dates" -#: common/setting/user.py:221 +#: common/setting/user.py:227 msgid "Show Stock History" msgstr "Voir l'historique du stock" -#: common/setting/user.py:222 +#: common/setting/user.py:228 msgid "Display stock history information in the part detail page" msgstr "Voir l'historique du stock dans la page de détails de la pièce" -#: common/setting/user.py:227 +#: common/setting/user.py:233 msgid "Show Last Breadcrumb" msgstr "Afficher le dernier fil d'Ariane" -#: common/setting/user.py:228 +#: common/setting/user.py:234 msgid "Show the current page in breadcrumbs" msgstr "Afficher la page actuelle dans les fils d'Ariane" -#: common/setting/user.py:233 +#: common/setting/user.py:239 msgid "Show full stock location in tables" msgstr "Voir l'emplacement complet du stock dans les tableaux" -#: common/setting/user.py:235 +#: common/setting/user.py:241 msgid "Disabled: The full location path is displayed as a hover tooltip. Enabled: The full location path is displayed as plain text." msgstr "Désactivé : Le chemin complet de l'emplacement est affiché sous la forme d'une infobulle survolée. Activé : Le chemin de l'emplacement complet est affiché en texte brut." -#: common/setting/user.py:241 +#: common/setting/user.py:247 msgid "Show full part categories in tables" msgstr "Voir les catégories complètes des pièces dans les tableaux" -#: common/setting/user.py:243 +#: common/setting/user.py:249 msgid "Disabled: The full category path is displayed as a hover tooltip. Enabled: The full category path is displayed as plain text." msgstr "Désactivé : Le chemin de la catégorie complète est affiché comme un info-bulle de survol. Activé : Le chemin de la catégorie complète est affiché en texte brut." -#: common/setting/user.py:249 +#: common/setting/user.py:255 msgid "Receive error reports" msgstr "Recevoir des rapports d'erreur" -#: common/setting/user.py:250 +#: common/setting/user.py:256 msgid "Receive notifications for system errors" msgstr "Recevoir des notifications en cas d'erreurs du système" -#: common/setting/user.py:255 +#: common/setting/user.py:261 msgid "Last used printing machines" msgstr "Dernières machines d'impression utilisées" -#: common/setting/user.py:256 +#: common/setting/user.py:262 msgid "Save the last used printing machines for a user" msgstr "Sauvegarder les dernières machines d'impression utilisées par un utilisateur" -#: common/validators.py:34 +#: common/validators.py:38 +msgid "All models" +msgstr "" + +#: common/validators.py:63 msgid "No attachment model type provided" msgstr "Aucun type de modèle d'attachement n'est fourni" -#: common/validators.py:40 +#: common/validators.py:69 msgid "Invalid attachment model type" msgstr "Type de modèle de pièce jointe non valide" -#: common/validators.py:81 +#: common/validators.py:110 msgid "Minimum places cannot be greater than maximum places" msgstr "Les places minimales ne peuvent être supérieures aux places maximales" -#: common/validators.py:93 +#: common/validators.py:122 msgid "Maximum places cannot be less than minimum places" msgstr "Le nombre maximum de places ne peut être inférieur au nombre minimum de places" -#: common/validators.py:104 +#: common/validators.py:133 msgid "An empty domain is not allowed." msgstr "Un domaine vide n'est pas autorisé." -#: common/validators.py:106 +#: common/validators.py:135 #, python-brace-format msgid "Invalid domain name: {domain}" msgstr "Nom de domaine invalide : {domain}" -#: common/validators.py:122 +#: common/validators.py:151 msgid "Value must be uppercase" msgstr "La valeur doit être en majuscules" -#: common/validators.py:128 +#: common/validators.py:157 msgid "Value must be a valid variable identifier" msgstr "La valeur doit être un identifiant de variable valide" -#: company/api.py:147 +#: company/api.py:141 msgid "Part is Active" msgstr "La pièce est active" -#: company/api.py:151 +#: company/api.py:145 msgid "Manufacturer is Active" msgstr "Le fabricant est actif" -#: company/api.py:286 +#: company/api.py:246 msgid "Supplier Part is Active" msgstr "Le fournisseur de la pièce est active" -#: company/api.py:290 +#: company/api.py:250 msgid "Internal Part is Active" msgstr "La pièce interne est active" -#: company/api.py:295 +#: company/api.py:255 msgid "Supplier is Active" msgstr "Le fournisseur est actif" -#: company/api.py:307 company/models.py:520 company/serializers.py:457 -#: part/serializers.py:566 +#: company/api.py:267 company/models.py:522 company/serializers.py:502 +#: part/serializers.py:477 msgid "Manufacturer" msgstr "Fabricant" -#: company/api.py:314 company/models.py:121 company/models.py:392 +#: company/api.py:274 company/models.py:122 company/models.py:393 #: stock/api.py:900 msgid "Company" msgstr "Société" -#: company/api.py:324 +#: company/api.py:284 msgid "Has Stock" msgstr "A du stock" -#: company/models.py:122 +#: company/models.py:123 msgid "Companies" msgstr "Entreprises" -#: company/models.py:150 +#: company/models.py:151 msgid "Company description" msgstr "Description de la société" -#: company/models.py:151 +#: company/models.py:152 msgid "Description of the company" msgstr "Description de la société" -#: company/models.py:157 +#: company/models.py:158 msgid "Website" msgstr "Site web" -#: company/models.py:158 +#: company/models.py:159 msgid "Company website URL" msgstr "Site Web de la société" -#: company/models.py:164 +#: company/models.py:165 msgid "Phone number" msgstr "Numéro de téléphone" -#: company/models.py:166 +#: company/models.py:167 msgid "Contact phone number" msgstr "Numéro de téléphone de contact" -#: company/models.py:173 +#: company/models.py:174 msgid "Contact email address" msgstr "Adresse e-mail de contact" -#: company/models.py:178 company/models.py:296 order/models.py:513 +#: company/models.py:179 company/models.py:297 order/models.py:514 #: users/models.py:561 msgid "Contact" msgstr "Contact" -#: company/models.py:180 +#: company/models.py:181 msgid "Point of contact" msgstr "Point de contact" -#: company/models.py:186 +#: company/models.py:187 msgid "Link to external company information" msgstr "Lien externe vers les informations de l'entreprise" -#: company/models.py:191 +#: company/models.py:192 msgid "Is this company active?" msgstr "Cette entreprise est-elle active ?" -#: company/models.py:196 +#: company/models.py:197 msgid "Is customer" msgstr "Le client est-il" -#: company/models.py:197 +#: company/models.py:198 msgid "Do you sell items to this company?" msgstr "Vendez-vous des objets à cette entreprise?" -#: company/models.py:202 +#: company/models.py:203 msgid "Is supplier" msgstr "Le fournisseur est-il" -#: company/models.py:203 +#: company/models.py:204 msgid "Do you purchase items from this company?" msgstr "Est-ce que vous achetez des articles à cette entreprise?" -#: company/models.py:208 +#: company/models.py:209 msgid "Is manufacturer" msgstr "Le fabricant est-il" -#: company/models.py:209 +#: company/models.py:210 msgid "Does this company manufacture parts?" msgstr "Cette entreprise fabrique-t-elle des pièces?" -#: company/models.py:217 +#: company/models.py:218 msgid "Default currency used for this company" msgstr "Devise par défaut utilisée pour cette entreprise" -#: company/models.py:224 +#: company/models.py:225 msgid "Tax ID" msgstr "N° de TVA" -#: company/models.py:225 +#: company/models.py:226 msgid "Company Tax ID" msgstr "Numéro d'identification fiscale de l'entreprise" -#: company/models.py:335 order/models.py:523 order/models.py:2288 +#: company/models.py:336 order/models.py:524 order/models.py:2289 msgid "Address" msgstr "Adresse" -#: company/models.py:336 +#: company/models.py:337 msgid "Addresses" msgstr "Adresses" -#: company/models.py:393 +#: company/models.py:394 msgid "Select company" msgstr "Sélectionner une entreprise" -#: company/models.py:398 +#: company/models.py:399 msgid "Address title" msgstr "Intitulé de l'adresse" -#: company/models.py:399 +#: company/models.py:400 msgid "Title describing the address entry" msgstr "Titre décrivant la saisie de l'adresse" -#: company/models.py:405 +#: company/models.py:406 msgid "Primary address" msgstr "Adresse principale" -#: company/models.py:406 +#: company/models.py:407 msgid "Set as primary address" msgstr "Sélectionner comme adresse principale" -#: company/models.py:411 +#: company/models.py:412 msgid "Line 1" msgstr "Ligne 1" -#: company/models.py:412 +#: company/models.py:413 msgid "Address line 1" msgstr "Adresse" -#: company/models.py:418 +#: company/models.py:419 msgid "Line 2" msgstr "Ligne 2" -#: company/models.py:419 +#: company/models.py:420 msgid "Address line 2" msgstr "Seconde ligne d'adresse" -#: company/models.py:425 company/models.py:426 +#: company/models.py:426 company/models.py:427 msgid "Postal code" msgstr "Code postal" -#: company/models.py:432 +#: company/models.py:433 msgid "City/Region" msgstr "Ville / Région" -#: company/models.py:433 +#: company/models.py:434 msgid "Postal code city/region" msgstr "Code postal Ville / Région" -#: company/models.py:439 +#: company/models.py:440 msgid "State/Province" msgstr "État / Province" -#: company/models.py:440 +#: company/models.py:441 msgid "State or province" msgstr "État ou province" -#: company/models.py:446 +#: company/models.py:447 msgid "Country" msgstr "Pays" -#: company/models.py:447 +#: company/models.py:448 msgid "Address country" msgstr "Pays" -#: company/models.py:453 +#: company/models.py:454 msgid "Courier shipping notes" msgstr "Notes du livreur" -#: company/models.py:454 +#: company/models.py:455 msgid "Notes for shipping courier" msgstr "Instructions pour le livreur" -#: company/models.py:460 +#: company/models.py:461 msgid "Internal shipping notes" msgstr "Notes pour la livraison interne" -#: company/models.py:461 +#: company/models.py:462 msgid "Shipping notes for internal use" msgstr "Notes internes pour la livraison" -#: company/models.py:468 +#: company/models.py:469 msgid "Link to address information (external)" msgstr "Lien vers les informations de l'adresse (externe)" -#: company/models.py:492 company/models.py:609 company/models.py:832 -#: company/serializers.py:471 stock/api.py:561 +#: company/models.py:494 company/models.py:786 company/serializers.py:516 +#: stock/api.py:561 msgid "Manufacturer Part" msgstr "Pièces du fabricant" -#: company/models.py:509 company/models.py:800 stock/models.py:1025 +#: company/models.py:511 company/models.py:754 stock/models.py:1025 #: stock/serializers.py:407 msgid "Base Part" msgstr "Pièce de base" -#: company/models.py:511 company/models.py:802 +#: company/models.py:513 company/models.py:756 msgid "Select part" msgstr "Sélectionner une partie" -#: company/models.py:521 +#: company/models.py:523 msgid "Select manufacturer" msgstr "Sélectionner un fabricant" -#: company/models.py:527 company/serializers.py:479 order/serializers.py:734 -#: part/serializers.py:576 +#: company/models.py:529 company/serializers.py:524 order/serializers.py:745 +#: part/serializers.py:487 msgid "MPN" msgstr "Référence fabricant" -#: company/models.py:528 stock/serializers.py:572 +#: company/models.py:530 stock/serializers.py:572 msgid "Manufacturer Part Number" msgstr "Référence du fabricant" -#: company/models.py:535 +#: company/models.py:537 msgid "URL for external manufacturer part link" msgstr "URL pour le lien externe de la pièce du fabricant" -#: company/models.py:544 +#: company/models.py:546 msgid "Manufacturer part description" msgstr "Description de la pièce du fabricant" -#: company/models.py:597 -msgid "Manufacturer Part Parameter" -msgstr "Paramètre de la pièce du fabricant" - -#: company/models.py:616 -msgid "Parameter name" -msgstr "Nom du paramètre" - -#: company/models.py:623 -msgid "Parameter value" -msgstr "Valeur du paramètre" - -#: company/models.py:630 part/models.py:1195 part/models.py:3857 -msgid "Units" -msgstr "Unités" - -#: company/models.py:631 -msgid "Parameter units" -msgstr "Unités du paramètre" - -#: company/models.py:740 +#: company/models.py:694 msgid "Pack units must be compatible with the base part units" msgstr "Les unités d'emballage doivent être compatibles avec les unités de base" -#: company/models.py:747 +#: company/models.py:701 msgid "Pack units must be greater than zero" msgstr "Les unités d'emballage doivent être supérieures à zéro" -#: company/models.py:761 +#: company/models.py:715 msgid "Linked manufacturer part must reference the same base part" msgstr "La pièce du fabricant liée doit faire référence à la même pièce de base" -#: company/models.py:810 company/serializers.py:449 company/serializers.py:467 -#: order/models.py:639 part/serializers.py:550 +#: company/models.py:764 company/serializers.py:494 company/serializers.py:512 +#: order/models.py:640 part/serializers.py:461 #: plugin/builtin/suppliers/digikey.py:26 plugin/builtin/suppliers/lcsc.py:27 #: plugin/builtin/suppliers/mouser.py:25 plugin/builtin/suppliers/tme.py:27 #: stock/api.py:567 templates/email/overdue_purchase_order.html:16 msgid "Supplier" msgstr "Fournisseur" -#: company/models.py:811 +#: company/models.py:765 msgid "Select supplier" msgstr "Sélectionner un fournisseur" -#: company/models.py:817 part/serializers.py:561 +#: company/models.py:771 part/serializers.py:472 msgid "Supplier stock keeping unit" msgstr "Unité de gestion des stocks des fournisseurs" -#: company/models.py:823 +#: company/models.py:777 msgid "Is this supplier part active?" msgstr "Cette partie du fournisseur est-elle active ?" -#: company/models.py:833 +#: company/models.py:787 msgid "Select manufacturer part" msgstr "Sélectionner un fabricant" -#: company/models.py:840 +#: company/models.py:794 msgid "URL for external supplier part link" msgstr "Lien de la pièce du fournisseur externe" -#: company/models.py:849 +#: company/models.py:803 msgid "Supplier part description" msgstr "Description de la pièce du fournisseur" -#: company/models.py:856 order/serializers.py:883 order/serializers.py:2047 -#: part/models.py:4070 part/models.py:4450 part/models.py:4819 -#: report/templates/report/inventree_bill_of_materials_report.html:140 -#: report/templates/report/inventree_purchase_order_report.html:39 -#: report/templates/report/inventree_return_order_report.html:27 -#: report/templates/report/inventree_sales_order_report.html:32 -#: report/templates/report/inventree_stock_location_report.html:105 -#: stock/serializers.py:813 -msgid "Note" -msgstr "Note" - -#: company/models.py:865 part/models.py:2250 +#: company/models.py:819 part/models.py:2338 msgid "base cost" msgstr "coût de base" -#: company/models.py:866 part/models.py:2251 +#: company/models.py:820 part/models.py:2339 msgid "Minimum charge (e.g. stocking fee)" msgstr "Frais minimums (par exemple frais de stock)" -#: company/models.py:873 order/serializers.py:875 stock/models.py:1056 +#: company/models.py:827 order/serializers.py:886 stock/models.py:1056 #: stock/serializers.py:1606 msgid "Packaging" msgstr "Conditionnement" -#: company/models.py:874 +#: company/models.py:828 msgid "Part packaging" msgstr "Conditionnement de l'article" -#: company/models.py:879 +#: company/models.py:833 msgid "Pack Quantity" msgstr "Nombre de paquet" -#: company/models.py:881 +#: company/models.py:835 msgid "Total quantity supplied in a single pack. Leave empty for single items." msgstr "Quantité totale fournie dans un emballage unique. Laisser vide pour les articles individuels." -#: company/models.py:900 part/models.py:2257 +#: company/models.py:854 part/models.py:2345 msgid "multiple" msgstr "plusieurs" -#: company/models.py:901 +#: company/models.py:855 msgid "Order multiple" msgstr "Commande multiple" -#: company/models.py:913 +#: company/models.py:867 msgid "Quantity available from supplier" msgstr "Quantité disponible auprès du fournisseur" -#: company/models.py:919 +#: company/models.py:873 msgid "Availability Updated" msgstr "Disponibilité mise à jour" -#: company/models.py:920 +#: company/models.py:874 msgid "Date of last update of availability data" msgstr "Date de dernière mise à jour des données de disponibilité" -#: company/models.py:1048 +#: company/models.py:1002 msgid "Supplier Price Break" msgstr "Rupture de prix pour le fournisseur" -#: company/serializers.py:181 +#: company/serializers.py:184 +msgid "Primary Address" +msgstr "" + +#: company/serializers.py:186 msgid "Return the string representation for the primary address. This property exists for backwards compatibility." msgstr "Renvoie la représentation sous forme de chaîne de caractères de l'adresse principale. Cette propriété existe pour des raisons de compatibilité ascendante." -#: company/serializers.py:212 +#: company/serializers.py:218 msgid "Default currency used for this supplier" msgstr "Devise par défaut utilisée pour ce fournisseur" -#: company/serializers.py:248 +#: company/serializers.py:260 msgid "Company Name" msgstr "Nom de l'entreprise" -#: company/serializers.py:433 part/serializers.py:955 stock/serializers.py:428 +#: company/serializers.py:460 part/serializers.py:840 stock/serializers.py:428 msgid "In Stock" msgstr "En Stock" +#: company/serializers.py:477 +msgid "Price Breaks" +msgstr "" + #: data_exporter/mixins.py:325 data_exporter/mixins.py:403 msgid "Error occurred during data export" msgstr "Une erreur s'est produite lors de l'exportation des données" @@ -4290,7 +4418,7 @@ msgstr "Données de la ligne d'origine" msgid "Errors" msgstr "Erreurs" -#: importer/models.py:550 part/serializers.py:1268 +#: importer/models.py:550 part/serializers.py:1133 msgid "Valid" msgstr "Valide" @@ -4402,7 +4530,7 @@ msgstr "Nombre de copies à imprimer pour chaque étiquette" msgid "Connected" msgstr "Connecté" -#: machine/machine_types/label_printer.py:232 order/api.py:1795 +#: machine/machine_types/label_printer.py:232 order/api.py:1800 msgid "Unknown" msgstr "Inconnu" @@ -4530,105 +4658,105 @@ msgstr "" msgid "Maximum value for progress type, required if type=progress" msgstr "" -#: order/api.py:125 +#: order/api.py:130 msgid "Order Reference" msgstr "Référence de commande" -#: order/api.py:153 order/api.py:1207 +#: order/api.py:158 order/api.py:1212 msgid "Outstanding" msgstr "Remarquable" -#: order/api.py:169 +#: order/api.py:174 msgid "Has Project Code" msgstr "A le code du projet" -#: order/api.py:183 order/models.py:488 +#: order/api.py:188 order/models.py:489 msgid "Created By" msgstr "Créé par" -#: order/api.py:187 +#: order/api.py:192 msgid "Created Before" msgstr "Créé avant" -#: order/api.py:191 +#: order/api.py:196 msgid "Created After" msgstr "Créé après" -#: order/api.py:195 +#: order/api.py:200 msgid "Has Start Date" msgstr "A la date de début" -#: order/api.py:203 +#: order/api.py:208 msgid "Start Date Before" msgstr "Date de début Avant" -#: order/api.py:207 +#: order/api.py:212 msgid "Start Date After" msgstr "Date de début Après" -#: order/api.py:211 +#: order/api.py:216 msgid "Has Target Date" msgstr "A une date cible" -#: order/api.py:219 +#: order/api.py:224 msgid "Target Date Before" msgstr "Date cible Avant" -#: order/api.py:223 +#: order/api.py:228 msgid "Target Date After" msgstr "Date cible Après" -#: order/api.py:274 +#: order/api.py:279 msgid "Has Pricing" msgstr "Possède un Tarif" -#: order/api.py:327 order/api.py:812 order/api.py:1490 +#: order/api.py:332 order/api.py:818 order/api.py:1495 msgid "Completed Before" msgstr "Terminé avant" -#: order/api.py:331 order/api.py:816 order/api.py:1494 +#: order/api.py:336 order/api.py:822 order/api.py:1499 msgid "Completed After" msgstr "Terminé après" -#: order/api.py:337 order/api.py:341 +#: order/api.py:342 order/api.py:346 msgid "External Build Order" msgstr "Ordre de fabrication externe" -#: order/api.py:526 order/api.py:914 order/api.py:1170 order/models.py:1922 -#: order/models.py:2049 order/models.py:2099 order/models.py:2279 -#: order/models.py:2477 order/models.py:2999 order/models.py:3065 +#: order/api.py:532 order/api.py:919 order/api.py:1175 order/models.py:1923 +#: order/models.py:2050 order/models.py:2100 order/models.py:2280 +#: order/models.py:2478 order/models.py:3000 order/models.py:3066 msgid "Order" msgstr "Commande" -#: order/api.py:530 order/api.py:982 +#: order/api.py:536 order/api.py:987 msgid "Order Complete" msgstr "Commande Complétée" -#: order/api.py:562 order/api.py:566 order/serializers.py:745 +#: order/api.py:568 order/api.py:572 order/serializers.py:756 msgid "Internal Part" msgstr "Pièces Internes" -#: order/api.py:584 +#: order/api.py:590 msgid "Order Pending" msgstr "Commande En Attente" -#: order/api.py:967 +#: order/api.py:972 msgid "Completed" msgstr "Terminé" -#: order/api.py:1223 +#: order/api.py:1228 msgid "Has Shipment" msgstr "Fait l'objet d'une expédition" -#: order/api.py:1789 order/models.py:552 order/models.py:1923 -#: order/models.py:2050 +#: order/api.py:1794 order/models.py:553 order/models.py:1924 +#: order/models.py:2051 #: report/templates/report/inventree_purchase_order_report.html:14 #: stock/serializers.py:129 templates/email/overdue_purchase_order.html:15 msgid "Purchase Order" msgstr "Commande d’achat" -#: order/api.py:1791 order/models.py:1251 order/models.py:2100 -#: order/models.py:2280 order/models.py:2478 +#: order/api.py:1796 order/models.py:1252 order/models.py:2101 +#: order/models.py:2281 order/models.py:2479 #: report/templates/report/inventree_build_order_report.html:135 #: report/templates/report/inventree_sales_order_report.html:14 #: report/templates/report/inventree_sales_order_shipment_report.html:15 @@ -4636,8 +4764,8 @@ msgstr "Commande d’achat" msgid "Sales Order" msgstr "Commandes" -#: order/api.py:1793 order/models.py:2649 order/models.py:3000 -#: order/models.py:3066 +#: order/api.py:1798 order/models.py:2650 order/models.py:3001 +#: order/models.py:3067 #: report/templates/report/inventree_return_order_report.html:13 #: templates/email/overdue_return_order.html:15 msgid "Return Order" @@ -4653,722 +4781,722 @@ msgstr "Prix Total" msgid "Total price for this order" msgstr "Prix total pour cette commande" -#: order/models.py:96 order/serializers.py:77 +#: order/models.py:96 order/serializers.py:78 msgid "Order Currency" msgstr "Devise de la commande" -#: order/models.py:99 order/serializers.py:78 +#: order/models.py:99 order/serializers.py:79 msgid "Currency for this order (leave blank to use company default)" msgstr "Devise de cette commande (laisser vide pour utiliser la devise par défaut de l'entreprise)" -#: order/models.py:324 +#: order/models.py:325 msgid "This order is locked and cannot be modified" msgstr "Cette commande est verrouillée et ne peut être modifiée" -#: order/models.py:376 +#: order/models.py:377 msgid "Contact does not match selected company" msgstr "Le contact ne correspond pas à l'entreprise sélectionnée" -#: order/models.py:383 +#: order/models.py:384 msgid "Start date must be before target date" msgstr "La date de début doit être antérieure à la date cible" -#: order/models.py:390 +#: order/models.py:391 msgid "Address does not match selected company" msgstr "" -#: order/models.py:443 +#: order/models.py:444 msgid "Order description (optional)" msgstr "Description de la commande (facultatif)" -#: order/models.py:452 order/models.py:1806 +#: order/models.py:453 order/models.py:1807 msgid "Select project code for this order" msgstr "Sélectionner le code du projet pour cette commande" -#: order/models.py:458 order/models.py:1787 order/models.py:2344 +#: order/models.py:459 order/models.py:1788 order/models.py:2345 msgid "Link to external page" msgstr "Lien vers une page externe" -#: order/models.py:465 +#: order/models.py:466 msgid "Start date" msgstr "Date de début" -#: order/models.py:466 +#: order/models.py:467 msgid "Scheduled start date for this order" msgstr "Date de début prévue pour cette commande" -#: order/models.py:472 order/models.py:1794 order/serializers.py:309 +#: order/models.py:473 order/models.py:1795 order/serializers.py:317 #: report/templates/report/inventree_build_order_report.html:125 msgid "Target Date" msgstr "Date Cible" -#: order/models.py:474 +#: order/models.py:475 msgid "Expected date for order delivery. Order will be overdue after this date." msgstr "Date prévue pour la livraison de la commande. La commande sera en retard après cette date." -#: order/models.py:494 +#: order/models.py:495 msgid "Issue Date" msgstr "Date d'émission" -#: order/models.py:495 +#: order/models.py:496 msgid "Date order was issued" msgstr "Date d'émission de la commande" -#: order/models.py:503 +#: order/models.py:504 msgid "User or group responsible for this order" msgstr "Utilisateur ou groupe responsable de cette commande" -#: order/models.py:514 +#: order/models.py:515 msgid "Point of contact for this order" msgstr "Point de contact pour cette commande" -#: order/models.py:524 +#: order/models.py:525 msgid "Company address for this order" msgstr "Adresse de l'entreprise pour cette commande" -#: order/models.py:615 order/models.py:1312 +#: order/models.py:616 order/models.py:1313 msgid "Order reference" msgstr "Référence de la commande" -#: order/models.py:624 order/models.py:1336 order/models.py:2737 +#: order/models.py:625 order/models.py:1337 order/models.py:2738 #: stock/serializers.py:559 stock/serializers.py:988 users/models.py:542 msgid "Status" msgstr "État" -#: order/models.py:625 +#: order/models.py:626 msgid "Purchase order status" msgstr "Statut de la commande d'achat" -#: order/models.py:640 +#: order/models.py:641 msgid "Company from which the items are being ordered" msgstr "Société de laquelle les articles sont commandés" -#: order/models.py:651 +#: order/models.py:652 msgid "Supplier Reference" msgstr "Référence du fournisseur" -#: order/models.py:652 +#: order/models.py:653 msgid "Supplier order reference code" msgstr "Code de référence de la commande fournisseur" -#: order/models.py:661 +#: order/models.py:662 msgid "received by" msgstr "reçu par" -#: order/models.py:668 order/models.py:2752 +#: order/models.py:669 order/models.py:2753 msgid "Date order was completed" msgstr "Date à laquelle la commande a été complété" -#: order/models.py:677 order/models.py:1981 +#: order/models.py:678 order/models.py:1982 msgid "Destination" msgstr "Destination" -#: order/models.py:678 order/models.py:1985 +#: order/models.py:679 order/models.py:1986 msgid "Destination for received items" msgstr "Destination des articles reçus" -#: order/models.py:724 +#: order/models.py:725 msgid "Part supplier must match PO supplier" msgstr "Le fournisseur de la pièce doit correspondre au fournisseur de la commande" -#: order/models.py:994 +#: order/models.py:995 msgid "Line item does not match purchase order" msgstr "Le poste ne correspond pas au bon de commande" -#: order/models.py:997 +#: order/models.py:998 msgid "Line item is missing a linked part" msgstr "Il manque une pièce liée à l'article de la ligne" -#: order/models.py:1011 +#: order/models.py:1012 msgid "Quantity must be a positive number" msgstr "La quantité doit être un nombre positif" -#: order/models.py:1323 order/models.py:2724 stock/models.py:1078 +#: order/models.py:1324 order/models.py:2725 stock/models.py:1078 #: stock/models.py:1079 stock/serializers.py:1322 #: templates/email/overdue_return_order.html:16 #: templates/email/overdue_sales_order.html:16 msgid "Customer" msgstr "Client" -#: order/models.py:1324 +#: order/models.py:1325 msgid "Company to which the items are being sold" msgstr "Société à laquelle les articles sont vendus" -#: order/models.py:1337 +#: order/models.py:1338 msgid "Sales order status" msgstr "Statut de la commande client" -#: order/models.py:1348 order/models.py:2744 +#: order/models.py:1349 order/models.py:2745 msgid "Customer Reference " msgstr "Référence client " -#: order/models.py:1349 order/models.py:2745 +#: order/models.py:1350 order/models.py:2746 msgid "Customer order reference code" msgstr "Code de référence de la commande du client" -#: order/models.py:1353 order/models.py:2296 +#: order/models.py:1354 order/models.py:2297 msgid "Shipment Date" msgstr "Nom de l’expédition" -#: order/models.py:1362 +#: order/models.py:1363 msgid "shipped by" msgstr "expédié par" -#: order/models.py:1413 +#: order/models.py:1414 msgid "Order is already complete" msgstr "La commande est déjà terminée" -#: order/models.py:1416 +#: order/models.py:1417 msgid "Order is already cancelled" msgstr "La commande est déjà annulée" -#: order/models.py:1420 +#: order/models.py:1421 msgid "Only an open order can be marked as complete" msgstr "Seule une commande ouverte peut être marquée comme complète" -#: order/models.py:1424 +#: order/models.py:1425 msgid "Order cannot be completed as there are incomplete shipments" msgstr "La commande ne peut pas être terminée car il y a des envois incomplets" -#: order/models.py:1429 +#: order/models.py:1430 msgid "Order cannot be completed as there are incomplete allocations" msgstr "L'ordre ne peut pas être achevé car les allocations sont incomplètes" -#: order/models.py:1438 +#: order/models.py:1439 msgid "Order cannot be completed as there are incomplete line items" msgstr "L'ordre ne peut pas être complété car il y a des postes incomplets" -#: order/models.py:1733 order/models.py:1749 +#: order/models.py:1734 order/models.py:1750 msgid "The order is locked and cannot be modified" msgstr "La commande est verrouillée et ne peut être modifiée" -#: order/models.py:1757 +#: order/models.py:1758 msgid "Item quantity" msgstr "Nombre d'élement" -#: order/models.py:1774 +#: order/models.py:1775 msgid "Line item reference" msgstr "Référence du poste" -#: order/models.py:1781 +#: order/models.py:1782 msgid "Line item notes" msgstr "Notes sur les postes" -#: order/models.py:1796 +#: order/models.py:1797 msgid "Target date for this line item (leave blank to use the target date from the order)" msgstr "Date cible pour ce poste (laisser vide pour utiliser la date cible de la commande)" -#: order/models.py:1826 +#: order/models.py:1827 msgid "Line item description (optional)" msgstr "Description du poste (facultatif)" -#: order/models.py:1833 +#: order/models.py:1834 msgid "Additional context for this line" msgstr "Contexte supplémentaire pour cette ligne" -#: order/models.py:1843 +#: order/models.py:1844 msgid "Unit price" msgstr "Prix unitaire" -#: order/models.py:1862 +#: order/models.py:1863 msgid "Purchase Order Line Item" msgstr "Poste du bon de commande" -#: order/models.py:1889 +#: order/models.py:1890 msgid "Supplier part must match supplier" msgstr "La pièce du fournisseur doit correspondre à celle du fournisseur" -#: order/models.py:1894 +#: order/models.py:1895 msgid "Build order must be marked as external" msgstr "L'ordre de fabrication doit être marqué externe" -#: order/models.py:1901 +#: order/models.py:1902 msgid "Build orders can only be linked to assembly parts" msgstr "Les ordres de fabrication ne peuvent être liées qu'à des pièces d'assemblage" -#: order/models.py:1907 +#: order/models.py:1908 msgid "Build order part must match line item part" msgstr "Les pièces d'ordre de fabrication doivent correspondre la pièce d'objet" -#: order/models.py:1942 +#: order/models.py:1943 msgid "Supplier part" msgstr "Pièce fournisseur" -#: order/models.py:1949 +#: order/models.py:1950 msgid "Received" msgstr "Reçu" -#: order/models.py:1950 +#: order/models.py:1951 msgid "Number of items received" msgstr "Nombre d'éléments reçus" -#: order/models.py:1958 stock/models.py:1201 stock/serializers.py:637 +#: order/models.py:1959 stock/models.py:1201 stock/serializers.py:637 msgid "Purchase Price" msgstr "Prix d'achat" -#: order/models.py:1959 +#: order/models.py:1960 msgid "Unit purchase price" msgstr "Prix d'achat unitaire" -#: order/models.py:1975 +#: order/models.py:1976 msgid "External Build Order to be fulfilled by this line item" msgstr "Ordre de fabrication externe à remplir par cet élément de ligne" -#: order/models.py:2038 +#: order/models.py:2039 msgid "Purchase Order Extra Line" msgstr "Ligne supplémentaire du bon de commande" -#: order/models.py:2067 +#: order/models.py:2068 msgid "Sales Order Line Item" msgstr "Poste de commande client" -#: order/models.py:2092 +#: order/models.py:2093 msgid "Only salable parts can be assigned to a sales order" msgstr "Seules les pièces vendues peuvent être attribuées à une commande" -#: order/models.py:2118 +#: order/models.py:2119 msgid "Sale Price" msgstr "Prix de vente" -#: order/models.py:2119 +#: order/models.py:2120 msgid "Unit sale price" msgstr "Prix de vente unitaire" -#: order/models.py:2128 order/status_codes.py:50 +#: order/models.py:2129 order/status_codes.py:50 msgid "Shipped" msgstr "Expédié" -#: order/models.py:2129 +#: order/models.py:2130 msgid "Shipped quantity" msgstr "Quantité expédiée" -#: order/models.py:2240 +#: order/models.py:2241 msgid "Sales Order Shipment" msgstr "Envoi de la commande client" -#: order/models.py:2253 +#: order/models.py:2254 msgid "Shipment address must match the customer" msgstr "" -#: order/models.py:2289 +#: order/models.py:2290 msgid "Shipping address for this shipment" msgstr "" -#: order/models.py:2297 +#: order/models.py:2298 msgid "Date of shipment" msgstr "Date d'expédition" -#: order/models.py:2303 +#: order/models.py:2304 msgid "Delivery Date" msgstr "Date de Livraison" -#: order/models.py:2304 +#: order/models.py:2305 msgid "Date of delivery of shipment" msgstr "Date de livraison de l'envoi" -#: order/models.py:2312 +#: order/models.py:2313 msgid "Checked By" msgstr "Vérifié par" -#: order/models.py:2313 +#: order/models.py:2314 msgid "User who checked this shipment" msgstr "Utilisateur qui a vérifié cet envoi" -#: order/models.py:2320 order/models.py:2574 order/serializers.py:1711 -#: order/serializers.py:1835 +#: order/models.py:2321 order/models.py:2575 order/serializers.py:1725 +#: order/serializers.py:1849 #: report/templates/report/inventree_sales_order_shipment_report.html:14 msgid "Shipment" msgstr "Envoi" -#: order/models.py:2321 +#: order/models.py:2322 msgid "Shipment number" msgstr "Numéro d'expédition" -#: order/models.py:2329 +#: order/models.py:2330 msgid "Tracking Number" msgstr "N° de suivi" -#: order/models.py:2330 +#: order/models.py:2331 msgid "Shipment tracking information" msgstr "Information de suivi des colis" -#: order/models.py:2337 +#: order/models.py:2338 msgid "Invoice Number" msgstr "N° de facture" -#: order/models.py:2338 +#: order/models.py:2339 msgid "Reference number for associated invoice" msgstr "Numéro de référence de la facture associée" -#: order/models.py:2377 +#: order/models.py:2378 msgid "Shipment has already been sent" msgstr "Le colis a déjà été envoyé" -#: order/models.py:2380 +#: order/models.py:2381 msgid "Shipment has no allocated stock items" msgstr "L'expédition n'a pas d'articles en stock alloués" -#: order/models.py:2387 +#: order/models.py:2388 msgid "Shipment must be checked before it can be completed" msgstr "" -#: order/models.py:2466 +#: order/models.py:2467 msgid "Sales Order Extra Line" msgstr "Ligne supplémentaire de commande client" -#: order/models.py:2495 +#: order/models.py:2496 msgid "Sales Order Allocation" msgstr "Affectation des commandes clients" -#: order/models.py:2518 order/models.py:2520 +#: order/models.py:2519 order/models.py:2521 msgid "Stock item has not been assigned" msgstr "L'article de stock n'a pas été assigné" -#: order/models.py:2527 +#: order/models.py:2528 msgid "Cannot allocate stock item to a line with a different part" msgstr "Impossible d'allouer l'article en stock à une ligne avec une autre pièce" -#: order/models.py:2530 +#: order/models.py:2531 msgid "Cannot allocate stock to a line without a part" msgstr "Impossible d'allouer le stock à une ligne sans pièce" -#: order/models.py:2533 +#: order/models.py:2534 msgid "Allocation quantity cannot exceed stock quantity" msgstr "La quantité d'allocation ne peut pas excéder la quantité en stock" -#: order/models.py:2552 order/serializers.py:1581 +#: order/models.py:2553 order/serializers.py:1595 msgid "Quantity must be 1 for serialized stock item" msgstr "La quantité doit être égale à 1 pour un article de stock sérialisé" -#: order/models.py:2555 +#: order/models.py:2556 msgid "Sales order does not match shipment" msgstr "La commande client ne correspond pas à l'expédition" -#: order/models.py:2556 plugin/base/barcodes/api.py:642 +#: order/models.py:2557 plugin/base/barcodes/api.py:642 msgid "Shipment does not match sales order" msgstr "L'envoi ne correspond pas à la commande client" -#: order/models.py:2564 +#: order/models.py:2565 msgid "Line" msgstr "Ligne" -#: order/models.py:2575 +#: order/models.py:2576 msgid "Sales order shipment reference" msgstr "Référence de l'expédition de la commande client" -#: order/models.py:2588 order/models.py:3007 +#: order/models.py:2589 order/models.py:3008 msgid "Item" msgstr "Article" -#: order/models.py:2589 +#: order/models.py:2590 msgid "Select stock item to allocate" msgstr "Sélectionner l'article de stock à affecter" -#: order/models.py:2598 +#: order/models.py:2599 msgid "Enter stock allocation quantity" msgstr "Saisir la quantité d'allocation de stock" -#: order/models.py:2713 +#: order/models.py:2714 msgid "Return Order reference" msgstr "Retour Référence de la commande" -#: order/models.py:2725 +#: order/models.py:2726 msgid "Company from which items are being returned" msgstr "Entreprise à l'origine du retour des articles" -#: order/models.py:2738 +#: order/models.py:2739 msgid "Return order status" msgstr "Statut du retour de commande" -#: order/models.py:2965 +#: order/models.py:2966 msgid "Return Order Line Item" msgstr "Poste de l'ordre de retour" -#: order/models.py:2978 +#: order/models.py:2979 msgid "Stock item must be specified" msgstr "L'article en stock doit être spécifié" -#: order/models.py:2982 +#: order/models.py:2983 msgid "Return quantity exceeds stock quantity" msgstr "La quantité retournée dépasse la quantité en stock" -#: order/models.py:2987 +#: order/models.py:2988 msgid "Return quantity must be greater than zero" msgstr "La quantité retournée doit être supérieure à zéro" -#: order/models.py:2992 +#: order/models.py:2993 msgid "Invalid quantity for serialized stock item" msgstr "Quantité non valide pour un article de stock sérialisé" -#: order/models.py:3008 +#: order/models.py:3009 msgid "Select item to return from customer" msgstr "Sélectionner l'article à retourner par le client" -#: order/models.py:3023 +#: order/models.py:3024 msgid "Received Date" msgstr "Date de réception" -#: order/models.py:3024 +#: order/models.py:3025 msgid "The date this this return item was received" msgstr "La date de réception de cet article en retour" -#: order/models.py:3036 +#: order/models.py:3037 msgid "Outcome" msgstr "Résultats" -#: order/models.py:3037 +#: order/models.py:3038 msgid "Outcome for this line item" msgstr "Résultat pour ce poste" -#: order/models.py:3044 +#: order/models.py:3045 msgid "Cost associated with return or repair for this line item" msgstr "Coût associé au retour ou à la réparation de ce poste" -#: order/models.py:3054 +#: order/models.py:3055 msgid "Return Order Extra Line" msgstr "Ordre de retour Ligne supplémentaire" -#: order/serializers.py:91 +#: order/serializers.py:92 msgid "Order ID" msgstr "ID de commande" -#: order/serializers.py:91 +#: order/serializers.py:92 msgid "ID of the order to duplicate" msgstr "ID de l'ordre à dupliquer" -#: order/serializers.py:97 +#: order/serializers.py:98 msgid "Copy Lines" msgstr "Copier des lignes" -#: order/serializers.py:98 +#: order/serializers.py:99 msgid "Copy line items from the original order" msgstr "Copier les postes de l'ordre original" -#: order/serializers.py:104 +#: order/serializers.py:105 msgid "Copy Extra Lines" msgstr "Copier les lignes supplémentaires" -#: order/serializers.py:105 +#: order/serializers.py:106 msgid "Copy extra line items from the original order" msgstr "Copier les postes supplémentaires de l'ordre original" -#: order/serializers.py:120 +#: order/serializers.py:121 #: report/templates/report/inventree_purchase_order_report.html:29 #: report/templates/report/inventree_return_order_report.html:19 #: report/templates/report/inventree_sales_order_report.html:22 msgid "Line Items" msgstr "Postes de travail" -#: order/serializers.py:125 +#: order/serializers.py:126 msgid "Completed Lines" msgstr "Lignes achevées" -#: order/serializers.py:192 +#: order/serializers.py:199 msgid "Duplicate Order" msgstr "Duplicata de commande" -#: order/serializers.py:193 +#: order/serializers.py:200 msgid "Specify options for duplicating this order" msgstr "Spécifier les options de duplication de cette commande" -#: order/serializers.py:270 +#: order/serializers.py:278 msgid "Invalid order ID" msgstr "ID de commande invalide" -#: order/serializers.py:466 +#: order/serializers.py:477 msgid "Supplier Name" msgstr "Nom du fournisseur" -#: order/serializers.py:510 +#: order/serializers.py:521 msgid "Order cannot be cancelled" msgstr "La commande ne peut pas être annulée" -#: order/serializers.py:525 order/serializers.py:1602 +#: order/serializers.py:536 order/serializers.py:1616 msgid "Allow order to be closed with incomplete line items" msgstr "Permettre la clôture d'une commande avec des postes incomplets" -#: order/serializers.py:535 order/serializers.py:1612 +#: order/serializers.py:546 order/serializers.py:1626 msgid "Order has incomplete line items" msgstr "La commande comporte des postes incomplets" -#: order/serializers.py:665 +#: order/serializers.py:676 msgid "Order is not open" msgstr "La commande n'est pas ouverte" -#: order/serializers.py:692 +#: order/serializers.py:703 msgid "Auto Pricing" msgstr "Tarification automobile" -#: order/serializers.py:694 +#: order/serializers.py:705 msgid "Automatically calculate purchase price based on supplier part data" msgstr "Calculer automatiquement le prix d'achat sur la base des données de pièces du fournisseur" -#: order/serializers.py:704 +#: order/serializers.py:715 msgid "Purchase price currency" msgstr "Devise du prix d'achat" -#: order/serializers.py:718 +#: order/serializers.py:729 msgid "Merge Items" msgstr "Fusionner des éléments" -#: order/serializers.py:720 +#: order/serializers.py:731 msgid "Merge items with the same part, destination and target date into one line item" msgstr "Fusionner en un seul poste les éléments ayant la même partie, la même destination et la même date cible" -#: order/serializers.py:727 part/serializers.py:560 +#: order/serializers.py:738 part/serializers.py:471 msgid "SKU" msgstr "Unité de gestion des stocks" -#: order/serializers.py:741 part/models.py:1089 part/serializers.py:372 +#: order/serializers.py:752 part/models.py:1177 part/serializers.py:337 msgid "Internal Part Number" msgstr "Numéro de pièce interne" -#: order/serializers.py:749 +#: order/serializers.py:760 msgid "Internal Part Name" msgstr "Nom de la pièce interne" -#: order/serializers.py:765 +#: order/serializers.py:776 msgid "Supplier part must be specified" msgstr "La pièce du fournisseur doit être spécifiée" -#: order/serializers.py:768 +#: order/serializers.py:779 msgid "Purchase order must be specified" msgstr "Le bon de commande doit être spécifié" -#: order/serializers.py:776 +#: order/serializers.py:787 msgid "Supplier must match purchase order" msgstr "Le fournisseur doit correspondre au bon de commande" -#: order/serializers.py:777 +#: order/serializers.py:788 msgid "Purchase order must match supplier" msgstr "Le bon de commande doit correspondre au fournisseur" -#: order/serializers.py:825 order/serializers.py:1682 +#: order/serializers.py:836 order/serializers.py:1696 msgid "Line Item" msgstr "Poste" -#: order/serializers.py:834 order/serializers.py:974 order/serializers.py:2043 +#: order/serializers.py:845 order/serializers.py:985 order/serializers.py:2060 msgid "Select destination location for received items" msgstr "Sélectionner le lieu de destination des envois reçus" -#: order/serializers.py:850 +#: order/serializers.py:861 msgid "Enter batch code for incoming stock items" msgstr "Saisir le code de lot pour les articles de stock entrant" -#: order/serializers.py:857 stock/models.py:1160 +#: order/serializers.py:868 stock/models.py:1160 #: templates/email/stale_stock_notification.html:22 users/models.py:137 msgid "Expiry Date" msgstr "Date d'expiration" -#: order/serializers.py:858 +#: order/serializers.py:869 msgid "Enter expiry date for incoming stock items" msgstr "Saisir la date d'expiration des articles de stock entrant" -#: order/serializers.py:866 +#: order/serializers.py:877 msgid "Enter serial numbers for incoming stock items" msgstr "Entrez les numéros de série pour les articles de stock entrants" -#: order/serializers.py:876 +#: order/serializers.py:887 msgid "Override packaging information for incoming stock items" msgstr "Remplacer les informations d'emballage pour les articles en stock entrants" -#: order/serializers.py:884 order/serializers.py:2048 +#: order/serializers.py:895 order/serializers.py:2065 msgid "Additional note for incoming stock items" msgstr "Note supplémentaire pour les articles en stock entrant" -#: order/serializers.py:891 +#: order/serializers.py:902 msgid "Barcode" msgstr "Code-barres" -#: order/serializers.py:892 +#: order/serializers.py:903 msgid "Scanned barcode" msgstr "Code-barres scanné" -#: order/serializers.py:908 +#: order/serializers.py:919 msgid "Barcode is already in use" msgstr "Le code-barres est déjà utilisé" -#: order/serializers.py:991 order/serializers.py:2067 +#: order/serializers.py:1002 order/serializers.py:2084 msgid "Line items must be provided" msgstr "Les postes doivent être fournis" -#: order/serializers.py:1010 +#: order/serializers.py:1021 msgid "Destination location must be specified" msgstr "L'emplacement de la destination doit être spécifié" -#: order/serializers.py:1017 +#: order/serializers.py:1028 msgid "Supplied barcode values must be unique" msgstr "Les valeurs de code-barres fournies doivent être uniques" -#: order/serializers.py:1121 +#: order/serializers.py:1135 msgid "Shipments" msgstr "Envois" -#: order/serializers.py:1125 +#: order/serializers.py:1139 msgid "Completed Shipments" msgstr "Envois terminés" -#: order/serializers.py:1293 +#: order/serializers.py:1307 msgid "Sale price currency" msgstr "Devise du prix de vente" -#: order/serializers.py:1339 +#: order/serializers.py:1353 msgid "Allocated Items" msgstr "Postes alloués" -#: order/serializers.py:1484 +#: order/serializers.py:1498 msgid "No shipment details provided" msgstr "Aucun détail sur l'expédition n'est fourni" -#: order/serializers.py:1545 order/serializers.py:1691 +#: order/serializers.py:1559 order/serializers.py:1705 msgid "Line item is not associated with this order" msgstr "Le poste n'est pas associé à cette commande" -#: order/serializers.py:1564 +#: order/serializers.py:1578 msgid "Quantity must be positive" msgstr "La quantité doit être positive" -#: order/serializers.py:1701 +#: order/serializers.py:1715 msgid "Enter serial numbers to allocate" msgstr "Entrez les numéros de série à allouer" -#: order/serializers.py:1723 order/serializers.py:1843 +#: order/serializers.py:1737 order/serializers.py:1857 msgid "Shipment has already been shipped" msgstr "L'envoi a déjà été effectué" -#: order/serializers.py:1726 order/serializers.py:1846 +#: order/serializers.py:1740 order/serializers.py:1860 msgid "Shipment is not associated with this order" msgstr "L'envoi n'est pas associé à cette commande" -#: order/serializers.py:1781 +#: order/serializers.py:1795 msgid "No match found for the following serial numbers" msgstr "Aucune correspondance trouvée pour les numéros de série suivants" -#: order/serializers.py:1788 +#: order/serializers.py:1802 msgid "The following serial numbers are unavailable" msgstr "Les numéros de série suivants sont indisponibles" -#: order/serializers.py:2009 +#: order/serializers.py:2026 msgid "Return order line item" msgstr "Poste de commande de retour" -#: order/serializers.py:2019 +#: order/serializers.py:2036 msgid "Line item does not match return order" msgstr "Le poste ne correspond pas à l'ordre de retour" -#: order/serializers.py:2022 +#: order/serializers.py:2039 msgid "Line item has already been received" msgstr "Le poste a déjà été reçu" -#: order/serializers.py:2059 +#: order/serializers.py:2076 msgid "Items can only be received against orders which are in progress" msgstr "Les articles ne peuvent être reçus que pour des commandes en cours" -#: order/serializers.py:2124 +#: order/serializers.py:2141 msgid "Quantity to return" msgstr "Quantité à retourner" -#: order/serializers.py:2140 +#: order/serializers.py:2157 msgid "Line price currency" msgstr "Devise du prix de la ligne" @@ -5431,1190 +5559,1109 @@ msgstr "Ordre de retour en retard" msgid "Return order {ro} is now overdue" msgstr "L'ordre de retour {ro} est maintenant en retard" -#: part/api.py:108 +#: part/api.py:103 msgid "Starred" msgstr "Étoilé" -#: part/api.py:110 +#: part/api.py:105 msgid "Filter by starred categories" msgstr "Filtrer par catégories étoilées" -#: part/api.py:127 stock/api.py:288 +#: part/api.py:122 stock/api.py:288 msgid "Depth" msgstr "Profondeur" -#: part/api.py:127 +#: part/api.py:122 msgid "Filter by category depth" msgstr "Filtrer par profondeur de catégorie" -#: part/api.py:145 stock/api.py:306 +#: part/api.py:140 stock/api.py:306 msgid "Top Level" msgstr "Premier niveau" -#: part/api.py:147 +#: part/api.py:142 msgid "Filter by top-level categories" msgstr "Filtrer par catégories de premier niveau" -#: part/api.py:160 stock/api.py:321 +#: part/api.py:155 stock/api.py:321 msgid "Cascade" msgstr "Cascade" -#: part/api.py:162 +#: part/api.py:157 msgid "Include sub-categories in filtered results" msgstr "Inclure les sous-catégories dans les résultats filtrés" -#: part/api.py:182 +#: part/api.py:177 msgid "Parent" msgstr "Parent" -#: part/api.py:184 +#: part/api.py:179 msgid "Filter by parent category" msgstr "Filtrer par catégorie de parents" -#: part/api.py:219 +#: part/api.py:214 msgid "Exclude sub-categories under the specified category" msgstr "Exclure les sous-catégories de la catégorie spécifiée" -#: part/api.py:445 +#: part/api.py:440 msgid "Has Results" msgstr "A des résultats" -#: part/api.py:666 +#: part/api.py:661 msgid "Is Variant" msgstr "Est variante" -#: part/api.py:674 +#: part/api.py:669 msgid "Is Revision" msgstr "Est la révision" -#: part/api.py:684 +#: part/api.py:679 msgid "Has Revisions" msgstr "A des révisions" -#: part/api.py:865 +#: part/api.py:860 msgid "BOM Valid" msgstr "Nomenclature valide" -#: part/api.py:974 +#: part/api.py:969 msgid "Cascade Categories" msgstr "" -#: part/api.py:975 +#: part/api.py:970 msgid "If true, include items in child categories of the given category" msgstr "" -#: part/api.py:981 +#: part/api.py:976 msgid "Filter by numeric category ID or the literal 'null'" msgstr "" -#: part/api.py:1533 +#: part/api.py:1258 msgid "Assembly part is testable" msgstr "La pièce d'assemblage est testable" -#: part/api.py:1542 +#: part/api.py:1267 msgid "Component part is testable" msgstr "Le composant est testable" -#: part/api.py:1611 +#: part/api.py:1336 msgid "Uses" msgstr "Utilise" -#: part/models.py:96 part/models.py:4163 +#: part/models.py:93 part/models.py:436 #: templates/email/part_event_notification.html:16 msgid "Part Category" msgstr "Catégorie de composant" -#: part/models.py:97 users/ruleset.py:27 +#: part/models.py:94 users/ruleset.py:27 msgid "Part Categories" msgstr "Catégories de composants" -#: part/models.py:115 part/models.py:1125 +#: part/models.py:112 part/models.py:1213 msgid "Default Location" msgstr "Emplacement par défaut" -#: part/models.py:116 +#: part/models.py:113 msgid "Default location for parts in this category" msgstr "Emplacement par défaut des pièces de cette catégorie" -#: part/models.py:121 stock/models.py:216 +#: part/models.py:118 stock/models.py:216 msgid "Structural" msgstr "Structurel" -#: part/models.py:123 +#: part/models.py:120 msgid "Parts may not be directly assigned to a structural category, but may be assigned to child categories." msgstr "Les pièces ne peuvent pas être directement affectées à une catégorie structurelle, mais peuvent être affectées à des catégories enfantines." -#: part/models.py:132 +#: part/models.py:129 msgid "Default keywords" msgstr "Mots-clés par défaut" -#: part/models.py:133 +#: part/models.py:130 msgid "Default keywords for parts in this category" msgstr "Mots-clés par défaut pour les pièces de cette catégorie" -#: part/models.py:140 stock/models.py:97 stock/models.py:198 +#: part/models.py:137 stock/models.py:97 stock/models.py:198 msgid "Icon" msgstr "Icône" -#: part/models.py:141 part/serializers.py:148 part/serializers.py:167 +#: part/models.py:138 part/serializers.py:147 part/serializers.py:166 #: stock/models.py:199 msgid "Icon (optional)" msgstr "Icône (facultatif)" -#: part/models.py:185 +#: part/models.py:182 msgid "You cannot make this part category structural because some parts are already assigned to it!" msgstr "Vous ne pouvez pas rendre cette catégorie de pièces structurelle car certaines pièces lui sont déjà affectées !" -#: part/models.py:473 part/serializers.py:119 part/serializers.py:310 -#: users/ruleset.py:28 +#: part/models.py:392 +msgid "Part Category Parameter Template" +msgstr "Catégorie de pièce Modèle de paramètre" + +#: part/models.py:448 +msgid "Default Value" +msgstr "Valeur par Défaut" + +#: part/models.py:449 +msgid "Default Parameter Value" +msgstr "Valeur par défaut du paramètre" + +#: part/models.py:551 part/serializers.py:118 users/ruleset.py:28 msgid "Parts" msgstr "Pièces" -#: part/models.py:525 +#: part/models.py:597 +msgid "Cannot delete parameters of a locked part" +msgstr "" + +#: part/models.py:602 +msgid "Cannot modify parameters of a locked part" +msgstr "" + +#: part/models.py:613 msgid "Cannot delete this part as it is locked" msgstr "Impossible de supprimer cette partie car elle est verrouillée" -#: part/models.py:528 +#: part/models.py:616 msgid "Cannot delete this part as it is still active" msgstr "Impossible de supprimer cette partie car elle est toujours active" -#: part/models.py:533 +#: part/models.py:621 msgid "Cannot delete this part as it is used in an assembly" msgstr "Impossible de supprimer cette pièce car elle est utilisée dans un assemblage" -#: part/models.py:616 part/models.py:623 +#: part/models.py:704 part/models.py:711 #, python-brace-format msgid "Part '{self}' cannot be used in BOM for '{parent}' (recursive)" msgstr "La partie \"{self}\" ne peut pas être utilisée dans la nomenclature de \"{parent}\" (récursif)" -#: part/models.py:635 +#: part/models.py:723 #, python-brace-format msgid "Part '{parent}' is used in BOM for '{self}' (recursive)" msgstr "La partie \"{parent}\" est utilisée dans la nomenclature de \"{self}\" (récursif)" -#: part/models.py:702 +#: part/models.py:790 #, python-brace-format msgid "IPN must match regex pattern {pattern}" msgstr "L'IPN doit correspondre au modèle de regex {pattern}" -#: part/models.py:710 +#: part/models.py:798 msgid "Part cannot be a revision of itself" msgstr "Une partie ne peut pas être une révision d'elle-même" -#: part/models.py:717 +#: part/models.py:805 msgid "Cannot make a revision of a part which is already a revision" msgstr "Impossible d'effectuer une révision d'une partie qui est déjà une révision" -#: part/models.py:724 +#: part/models.py:812 msgid "Revision code must be specified" msgstr "Le code de révision doit être spécifié" -#: part/models.py:731 +#: part/models.py:819 msgid "Revisions are only allowed for assembly parts" msgstr "Les révisions ne sont autorisées que pour les pièces d'assemblage" -#: part/models.py:738 +#: part/models.py:826 msgid "Cannot make a revision of a template part" msgstr "Impossible d'effectuer une révision d'un modèle de pièce" -#: part/models.py:744 +#: part/models.py:832 msgid "Parent part must point to the same template" msgstr "La partie parentale doit pointer vers le même modèle" -#: part/models.py:841 +#: part/models.py:929 msgid "Stock item with this serial number already exists" msgstr "Il existe déjà un article en stock avec ce numéro de série" -#: part/models.py:971 +#: part/models.py:1059 msgid "Duplicate IPN not allowed in part settings" msgstr "IPN dupliqué non autorisé dans les paramètres de la pièce" -#: part/models.py:983 +#: part/models.py:1071 msgid "Duplicate part revision already exists." msgstr "La révision de la pièce existe déjà en double." -#: part/models.py:992 +#: part/models.py:1080 msgid "Part with this Name, IPN and Revision already exists." msgstr "Une pièce avec ce nom, IPN et révision existe déjà." -#: part/models.py:1007 +#: part/models.py:1095 msgid "Parts cannot be assigned to structural part categories!" msgstr "Les pièces ne peuvent pas être affectées à des catégories de pièces structurelles !" -#: part/models.py:1039 +#: part/models.py:1127 msgid "Part name" msgstr "Nom de l'article" -#: part/models.py:1044 +#: part/models.py:1132 msgid "Is Template" msgstr "Est un modèle" -#: part/models.py:1045 +#: part/models.py:1133 msgid "Is this part a template part?" msgstr "Cette pièce est-elle une pièce modèle ?" -#: part/models.py:1055 +#: part/models.py:1143 msgid "Is this part a variant of another part?" msgstr "Cette pièce est-elle une variante d'une autre pièce ?" -#: part/models.py:1056 +#: part/models.py:1144 msgid "Variant Of" msgstr "Variante de" -#: part/models.py:1063 +#: part/models.py:1151 msgid "Part description (optional)" msgstr "Description de la pièce (facultatif)" -#: part/models.py:1070 +#: part/models.py:1158 msgid "Keywords" msgstr "Mots-clés" -#: part/models.py:1071 +#: part/models.py:1159 msgid "Part keywords to improve visibility in search results" msgstr "Les mots-clés partiels pour améliorer la visibilité dans les résultats de recherche" -#: part/models.py:1081 +#: part/models.py:1169 msgid "Part category" msgstr "Catégorie de la pièce" -#: part/models.py:1088 part/serializers.py:929 +#: part/models.py:1176 part/serializers.py:814 #: report/templates/report/inventree_stock_location_report.html:103 msgid "IPN" msgstr "IPN" -#: part/models.py:1096 +#: part/models.py:1184 msgid "Part revision or version number" msgstr "Numéro de révision ou de version de la pièce" -#: part/models.py:1097 report/models.py:228 +#: part/models.py:1185 report/models.py:228 msgid "Revision" msgstr "Révision" -#: part/models.py:1106 +#: part/models.py:1194 msgid "Is this part a revision of another part?" msgstr "Cette partie est-elle une révision d'une autre partie ?" -#: part/models.py:1107 +#: part/models.py:1195 msgid "Revision Of" msgstr "Révision de" -#: part/models.py:1123 +#: part/models.py:1211 msgid "Where is this item normally stored?" msgstr "Où cet article est-il normalement stocké ?" -#: part/models.py:1169 +#: part/models.py:1257 msgid "Default Supplier" msgstr "Fournisseur par défaut" -#: part/models.py:1170 +#: part/models.py:1258 msgid "Default supplier part" msgstr "Pièce du fournisseur par défaut" -#: part/models.py:1177 +#: part/models.py:1265 msgid "Default Expiry" msgstr "Expiration par défaut" -#: part/models.py:1178 +#: part/models.py:1266 msgid "Expiry time (in days) for stock items of this part" msgstr "Délai d'expiration (en jours) pour les articles en stock de cette pièce" -#: part/models.py:1186 part/serializers.py:1003 +#: part/models.py:1274 part/serializers.py:888 msgid "Minimum Stock" msgstr "Stock Minimum" -#: part/models.py:1187 +#: part/models.py:1275 msgid "Minimum allowed stock level" msgstr "Niveau de stock minimum autorisé" -#: part/models.py:1196 +#: part/models.py:1284 msgid "Units of measure for this part" msgstr "Unités de mesure pour cette partie" -#: part/models.py:1203 +#: part/models.py:1291 msgid "Can this part be built from other parts?" msgstr "Cette pièce peut-elle être fabriquée à partir d'autres pièces ?" -#: part/models.py:1209 +#: part/models.py:1297 msgid "Can this part be used to build other parts?" msgstr "Cette pièce peut-elle être utilisée pour construire d'autres pièces ?" -#: part/models.py:1215 +#: part/models.py:1303 msgid "Does this part have tracking for unique items?" msgstr "Cette partie dispose-t-elle d'un suivi pour les articles uniques ?" -#: part/models.py:1221 +#: part/models.py:1309 msgid "Can this part have test results recorded against it?" msgstr "Des résultats de tests peuvent-ils être enregistrés pour cette pièce ?" -#: part/models.py:1227 +#: part/models.py:1315 msgid "Can this part be purchased from external suppliers?" msgstr "Cette pièce peut-elle être achetée auprès de fournisseurs externes ?" -#: part/models.py:1233 +#: part/models.py:1321 msgid "Can this part be sold to customers?" msgstr "Cette pièce peut-elle être vendue aux clients ?" -#: part/models.py:1237 +#: part/models.py:1325 msgid "Is this part active?" msgstr "Est-ce que cette pièce est active ?" -#: part/models.py:1243 +#: part/models.py:1331 msgid "Locked parts cannot be edited" msgstr "Les parties verrouillées ne peuvent pas être modifiées" -#: part/models.py:1249 +#: part/models.py:1337 msgid "Is this a virtual part, such as a software product or license?" msgstr "S'agit-il d'un élément virtuel, tel qu'un logiciel ou une licence ?" -#: part/models.py:1254 +#: part/models.py:1342 msgid "BOM Validated" msgstr "Nomenclature validée" -#: part/models.py:1255 +#: part/models.py:1343 msgid "Is the BOM for this part valid?" msgstr "Est-ce que la nomenclature pour cette pièce est correcte ?" -#: part/models.py:1261 +#: part/models.py:1349 msgid "BOM checksum" msgstr "Somme de contrôle de la nomenclature" -#: part/models.py:1262 +#: part/models.py:1350 msgid "Stored BOM checksum" msgstr "Somme de contrôle de la nomenclature enregistrée" -#: part/models.py:1270 +#: part/models.py:1358 msgid "BOM checked by" msgstr "Nomenclature vérifiée par" -#: part/models.py:1275 +#: part/models.py:1363 msgid "BOM checked date" msgstr "Date de vérification de la nomenclature" -#: part/models.py:1291 +#: part/models.py:1379 msgid "Creation User" msgstr "Création Utilisateur" -#: part/models.py:1301 +#: part/models.py:1389 msgid "Owner responsible for this part" msgstr "Propriétaire responsable de cette pièce" -#: part/models.py:2258 +#: part/models.py:2346 msgid "Sell multiple" msgstr "Ventes multiples" -#: part/models.py:3286 +#: part/models.py:3350 msgid "Currency used to cache pricing calculations" msgstr "Devise utilisée pour cacher les calculs de prix" -#: part/models.py:3302 +#: part/models.py:3366 msgid "Minimum BOM Cost" msgstr "Coût minimum de la nomenclature" -#: part/models.py:3303 +#: part/models.py:3367 msgid "Minimum cost of component parts" msgstr "Coût minimal des composants" -#: part/models.py:3309 +#: part/models.py:3373 msgid "Maximum BOM Cost" msgstr "Coût maximal de la nomenclature" -#: part/models.py:3310 +#: part/models.py:3374 msgid "Maximum cost of component parts" msgstr "Coût maximal des composants" -#: part/models.py:3316 +#: part/models.py:3380 msgid "Minimum Purchase Cost" msgstr "Coût d'achat minimum" -#: part/models.py:3317 +#: part/models.py:3381 msgid "Minimum historical purchase cost" msgstr "Coût d'achat historique minimum" -#: part/models.py:3323 +#: part/models.py:3387 msgid "Maximum Purchase Cost" msgstr "Coût d'achat maximum" -#: part/models.py:3324 +#: part/models.py:3388 msgid "Maximum historical purchase cost" msgstr "Coût d'achat historique maximum" -#: part/models.py:3330 +#: part/models.py:3394 msgid "Minimum Internal Price" msgstr "Prix interne minimum" -#: part/models.py:3331 +#: part/models.py:3395 msgid "Minimum cost based on internal price breaks" msgstr "Coût minimum basé sur des ruptures de prix internes" -#: part/models.py:3337 +#: part/models.py:3401 msgid "Maximum Internal Price" msgstr "Prix interne maximum" -#: part/models.py:3338 +#: part/models.py:3402 msgid "Maximum cost based on internal price breaks" msgstr "Coût maximum basé sur les écarts de prix internes" -#: part/models.py:3344 +#: part/models.py:3408 msgid "Minimum Supplier Price" msgstr "Prix minimum du fournisseur" -#: part/models.py:3345 +#: part/models.py:3409 msgid "Minimum price of part from external suppliers" msgstr "Prix minimum des pièces provenant de fournisseurs externes" -#: part/models.py:3351 +#: part/models.py:3415 msgid "Maximum Supplier Price" msgstr "Prix maximum du fournisseur" -#: part/models.py:3352 +#: part/models.py:3416 msgid "Maximum price of part from external suppliers" msgstr "Prix maximum des pièces provenant de fournisseurs externes" -#: part/models.py:3358 +#: part/models.py:3422 msgid "Minimum Variant Cost" msgstr "Coût minimum de la variante" -#: part/models.py:3359 +#: part/models.py:3423 msgid "Calculated minimum cost of variant parts" msgstr "Calcul du coût minimum des pièces de la variante" -#: part/models.py:3365 +#: part/models.py:3429 msgid "Maximum Variant Cost" msgstr "Coût maximal de la variante" -#: part/models.py:3366 +#: part/models.py:3430 msgid "Calculated maximum cost of variant parts" msgstr "Calcul du coût maximal des pièces de la variante" -#: part/models.py:3372 part/models.py:3386 +#: part/models.py:3436 part/models.py:3450 msgid "Minimum Cost" msgstr "Coût minimal" -#: part/models.py:3373 +#: part/models.py:3437 msgid "Override minimum cost" msgstr "Remplacer le coût minimum" -#: part/models.py:3379 part/models.py:3393 +#: part/models.py:3443 part/models.py:3457 msgid "Maximum Cost" msgstr "Coût maximal" -#: part/models.py:3380 +#: part/models.py:3444 msgid "Override maximum cost" msgstr "Dépassement du coût maximal" -#: part/models.py:3387 +#: part/models.py:3451 msgid "Calculated overall minimum cost" msgstr "Calcul du coût minimum global" -#: part/models.py:3394 +#: part/models.py:3458 msgid "Calculated overall maximum cost" msgstr "Calcul du coût maximum global" -#: part/models.py:3400 +#: part/models.py:3464 msgid "Minimum Sale Price" msgstr "Prix de vente minimum" -#: part/models.py:3401 +#: part/models.py:3465 msgid "Minimum sale price based on price breaks" msgstr "Prix de vente minimum basé sur des ruptures de prix" -#: part/models.py:3407 +#: part/models.py:3471 msgid "Maximum Sale Price" msgstr "Prix de vente maximum" -#: part/models.py:3408 +#: part/models.py:3472 msgid "Maximum sale price based on price breaks" msgstr "Prix de vente maximum en fonction des écarts de prix" -#: part/models.py:3414 +#: part/models.py:3478 msgid "Minimum Sale Cost" msgstr "Coût minimum de vente" -#: part/models.py:3415 +#: part/models.py:3479 msgid "Minimum historical sale price" msgstr "Prix de vente historique minimum" -#: part/models.py:3421 +#: part/models.py:3485 msgid "Maximum Sale Cost" msgstr "Coût de vente maximum" -#: part/models.py:3422 +#: part/models.py:3486 msgid "Maximum historical sale price" msgstr "Prix de vente historique maximum" -#: part/models.py:3440 +#: part/models.py:3504 msgid "Part for stocktake" msgstr "Partie pour l'inventaire" -#: part/models.py:3445 +#: part/models.py:3509 msgid "Item Count" msgstr "Nombre d'articles" -#: part/models.py:3446 +#: part/models.py:3510 msgid "Number of individual stock entries at time of stocktake" msgstr "Nombre d'entrées individuelles au moment de l'inventaire" -#: part/models.py:3454 +#: part/models.py:3518 msgid "Total available stock at time of stocktake" msgstr "Stock total disponible au moment de l'inventaire" -#: part/models.py:3458 report/templates/report/inventree_test_report.html:106 +#: part/models.py:3522 report/templates/report/inventree_test_report.html:106 msgid "Date" msgstr "Date" -#: part/models.py:3459 +#: part/models.py:3523 msgid "Date stocktake was performed" msgstr "Date de l'inventaire" -#: part/models.py:3466 +#: part/models.py:3530 msgid "Minimum Stock Cost" msgstr "Coût minimum du stock" -#: part/models.py:3467 +#: part/models.py:3531 msgid "Estimated minimum cost of stock on hand" msgstr "Coût minimum estimé des stocks disponibles" -#: part/models.py:3473 +#: part/models.py:3537 msgid "Maximum Stock Cost" msgstr "Coût maximal du stock" -#: part/models.py:3474 +#: part/models.py:3538 msgid "Estimated maximum cost of stock on hand" msgstr "Coût maximum estimé des stocks disponibles" -#: part/models.py:3484 +#: part/models.py:3548 msgid "Part Sale Price Break" msgstr "Vente de pièces détachées Prix cassé" -#: part/models.py:3596 +#: part/models.py:3660 msgid "Part Test Template" msgstr "Modèle de test partiel" -#: part/models.py:3622 +#: part/models.py:3686 msgid "Invalid template name - must include at least one alphanumeric character" msgstr "Le nom du modèle n'est pas valide - il doit comporter au moins un caractère alphanumérique" -#: part/models.py:3643 part/models.py:3816 -msgid "Choices must be unique" -msgstr "Les choix doivent être uniques" - -#: part/models.py:3654 +#: part/models.py:3718 msgid "Test templates can only be created for testable parts" msgstr "Les modèles de test ne peuvent être créés que pour les parties testables" -#: part/models.py:3668 +#: part/models.py:3732 msgid "Test template with the same key already exists for part" msgstr "Un modèle de test avec la même clé existe déjà pour la partie" -#: part/models.py:3685 +#: part/models.py:3749 msgid "Test Name" msgstr "Nom de test" -#: part/models.py:3686 +#: part/models.py:3750 msgid "Enter a name for the test" msgstr "Entrez un nom pour le test" -#: part/models.py:3692 +#: part/models.py:3756 msgid "Test Key" msgstr "Clé de test" -#: part/models.py:3693 +#: part/models.py:3757 msgid "Simplified key for the test" msgstr "Clé simplifiée pour le test" -#: part/models.py:3700 +#: part/models.py:3764 msgid "Test Description" msgstr "Description du test" -#: part/models.py:3701 +#: part/models.py:3765 msgid "Enter description for this test" msgstr "Saisir la description de ce test" -#: part/models.py:3705 report/models.py:287 -msgid "Enabled" -msgstr "Activé" - -#: part/models.py:3705 +#: part/models.py:3769 msgid "Is this test enabled?" msgstr "Ce test est-il activé ?" -#: part/models.py:3710 +#: part/models.py:3774 msgid "Required" msgstr "Requis" -#: part/models.py:3711 +#: part/models.py:3775 msgid "Is this test required to pass?" msgstr "Ce test est-il obligatoire pour passer l'examen ?" -#: part/models.py:3716 +#: part/models.py:3780 msgid "Requires Value" msgstr "Valeur requise" -#: part/models.py:3717 +#: part/models.py:3781 msgid "Does this test require a value when adding a test result?" msgstr "Ce test nécessite-t-il une valeur lors de l'ajout d'un résultat de test ?" -#: part/models.py:3722 +#: part/models.py:3786 msgid "Requires Attachment" msgstr "Nécessite une pièce jointe" -#: part/models.py:3724 +#: part/models.py:3788 msgid "Does this test require a file attachment when adding a test result?" msgstr "Ce test nécessite-t-il un fichier joint lors de l'ajout d'un résultat de test ?" -#: part/models.py:3730 part/models.py:3878 -msgid "Choices" -msgstr "Choix" - -#: part/models.py:3731 +#: part/models.py:3795 msgid "Valid choices for this test (comma-separated)" msgstr "Choix valables pour ce test (séparés par des virgules)" -#: part/models.py:3764 -msgid "Part Parameter Template" -msgstr "Modèle de paramètre de pièce" - -#: part/models.py:3791 -msgid "Checkbox parameters cannot have units" -msgstr "Les paramètres des cases à cocher ne peuvent pas avoir d'unités" - -#: part/models.py:3796 -msgid "Checkbox parameters cannot have choices" -msgstr "Les paramètres des cases à cocher ne peuvent pas comporter de choix" - -#: part/models.py:3833 -msgid "Parameter template name must be unique" -msgstr "Le nom du modèle de paramètre doit être unique" - -#: part/models.py:3851 -msgid "Parameter Name" -msgstr "Nom du paramètre" - -#: part/models.py:3858 -msgid "Physical units for this parameter" -msgstr "Unités physiques pour ce paramètre" - -#: part/models.py:3866 -msgid "Parameter description" -msgstr "Description des paramètres" - -#: part/models.py:3872 -msgid "Checkbox" -msgstr "Case à cocher" - -#: part/models.py:3873 -msgid "Is this parameter a checkbox?" -msgstr "Ce paramètre est-il une case à cocher ?" - -#: part/models.py:3879 -msgid "Valid choices for this parameter (comma-separated)" -msgstr "Choix valables pour ce paramètre (séparés par des virgules)" - -#: part/models.py:3890 -msgid "Selection list for this parameter" -msgstr "Liste de sélection pour ce paramètre" - -#: part/models.py:3932 -msgid "Part Parameter" -msgstr "Partie Paramètre" - -#: part/models.py:3958 -msgid "Parameter cannot be modified - part is locked" -msgstr "Le paramètre ne peut pas être modifié - la pièce est verrouillée" - -#: part/models.py:3996 -msgid "Invalid choice for parameter value" -msgstr "Choix incorrect pour la valeur du paramètre" - -#: part/models.py:4047 -msgid "Parent Part" -msgstr "Partie parentale" - -#: part/models.py:4055 part/models.py:4170 part/models.py:4171 -msgid "Parameter Template" -msgstr "Modèle de paramètre" - -#: part/models.py:4061 -msgid "Parameter Value" -msgstr "Valeur du paramètre" - -#: part/models.py:4071 stock/serializers.py:718 -msgid "Optional note field" -msgstr "Champ de notes facultatif" - -#: part/models.py:4118 -msgid "Part Category Parameter Template" -msgstr "Catégorie de pièce Modèle de paramètre" - -#: part/models.py:4177 -msgid "Default Value" -msgstr "Valeur par Défaut" - -#: part/models.py:4178 -msgid "Default Parameter Value" -msgstr "Valeur par défaut du paramètre" - -#: part/models.py:4352 +#: part/models.py:3977 msgid "BOM item cannot be modified - assembly is locked" msgstr "L'article de nomenclature ne peut pas être modifié - l'assemblage est verrouillé" -#: part/models.py:4359 +#: part/models.py:3984 msgid "BOM item cannot be modified - variant assembly is locked" msgstr "Le poste de nomenclature ne peut pas être modifié - l'assemblage de la variante est verrouillé" -#: part/models.py:4369 +#: part/models.py:3994 msgid "Select parent part" msgstr "Sélectionner la partie parentale" -#: part/models.py:4379 +#: part/models.py:4004 msgid "Sub part" msgstr "Sous-partie" -#: part/models.py:4380 +#: part/models.py:4005 msgid "Select part to be used in BOM" msgstr "Sélectionner la pièce à utiliser dans la nomenclature" -#: part/models.py:4391 +#: part/models.py:4016 msgid "BOM quantity for this BOM item" msgstr "Quantité de nomenclature pour ce poste de nomenclature" -#: part/models.py:4397 +#: part/models.py:4022 msgid "This BOM item is optional" msgstr "Ce poste de nomenclature est facultatif" -#: part/models.py:4403 +#: part/models.py:4028 msgid "This BOM item is consumable (it is not tracked in build orders)" msgstr "Ce poste de nomenclature est consommable (il n'est pas suivi dans les ordres de fabrication)." -#: part/models.py:4411 +#: part/models.py:4036 msgid "Setup Quantity" msgstr "Définir la quantité" -#: part/models.py:4412 +#: part/models.py:4037 msgid "Extra required quantity for a build, to account for setup losses" msgstr "" -#: part/models.py:4420 +#: part/models.py:4045 msgid "Attrition" msgstr "Attrition" -#: part/models.py:4422 +#: part/models.py:4047 msgid "Estimated attrition for a build, expressed as a percentage (0-100)" msgstr "Attrition estimée pour cette fabrication, exprimée en pourcentage (0-100)" -#: part/models.py:4433 +#: part/models.py:4058 msgid "Rounding Multiple" msgstr "Arrondi au multiple" -#: part/models.py:4435 +#: part/models.py:4060 msgid "Round up required production quantity to nearest multiple of this value" msgstr "Arrondir la quantité de production requise au multiple le plus proche de cette valeur" -#: part/models.py:4443 +#: part/models.py:4068 msgid "BOM item reference" msgstr "Référence du poste de nomenclature" -#: part/models.py:4451 +#: part/models.py:4076 msgid "BOM item notes" msgstr "Notes sur les postes de nomenclature" -#: part/models.py:4457 +#: part/models.py:4082 msgid "Checksum" msgstr "Somme de contrôle" -#: part/models.py:4458 +#: part/models.py:4083 msgid "BOM line checksum" msgstr "Somme de contrôle de la ligne de nomenclature" -#: part/models.py:4463 +#: part/models.py:4088 msgid "Validated" msgstr "Validée" -#: part/models.py:4464 +#: part/models.py:4089 msgid "This BOM item has been validated" msgstr "Ce poste de nomenclature a été validé" -#: part/models.py:4469 +#: part/models.py:4094 msgid "Gets inherited" msgstr "Obtient l'héritage" -#: part/models.py:4470 +#: part/models.py:4095 msgid "This BOM item is inherited by BOMs for variant parts" msgstr "Ce poste de nomenclature est hérité des nomenclatures des composants variants" -#: part/models.py:4476 +#: part/models.py:4101 msgid "Stock items for variant parts can be used for this BOM item" msgstr "Les postes de stock pour les composants variants peuvent être utilisés pour ce poste de nomenclature" -#: part/models.py:4583 stock/models.py:925 +#: part/models.py:4208 stock/models.py:925 msgid "Quantity must be integer value for trackable parts" msgstr "La quantité doit être un nombre entier pour les pièces pouvant être suivies" -#: part/models.py:4593 part/models.py:4595 +#: part/models.py:4218 part/models.py:4220 msgid "Sub part must be specified" msgstr "La sous-partie doit être spécifiée" -#: part/models.py:4746 +#: part/models.py:4371 msgid "BOM Item Substitute" msgstr "Remplacement d'un poste de nomenclature" -#: part/models.py:4767 +#: part/models.py:4392 msgid "Substitute part cannot be the same as the master part" msgstr "La pièce de remplacement ne peut pas être identique à la pièce maîtresse" -#: part/models.py:4780 +#: part/models.py:4405 msgid "Parent BOM item" msgstr "Poste de nomenclature parent" -#: part/models.py:4788 +#: part/models.py:4413 msgid "Substitute part" msgstr "Pièce de rechange" -#: part/models.py:4804 +#: part/models.py:4429 msgid "Part 1" msgstr "Première partie" -#: part/models.py:4812 +#: part/models.py:4437 msgid "Part 2" msgstr "Partie 2" -#: part/models.py:4813 +#: part/models.py:4438 msgid "Select Related Part" msgstr "Sélectionner une partie connexe" -#: part/models.py:4820 +#: part/models.py:4445 msgid "Note for this relationship" msgstr "Note pour cette relation" -#: part/models.py:4839 +#: part/models.py:4464 msgid "Part relationship cannot be created between a part and itself" msgstr "Il n'est pas possible de créer une relation entre une pièce et elle-même" -#: part/models.py:4844 +#: part/models.py:4469 msgid "Duplicate relationship already exists" msgstr "Une relation en double existe déjà" -#: part/serializers.py:114 +#: part/serializers.py:113 msgid "Parent Category" msgstr "Catégorie de parents" -#: part/serializers.py:115 +#: part/serializers.py:114 msgid "Parent part category" msgstr "Catégorie de pièce mère" -#: part/serializers.py:123 part/serializers.py:164 +#: part/serializers.py:122 part/serializers.py:163 msgid "Subcategories" msgstr "Sous-catégories" -#: part/serializers.py:203 +#: part/serializers.py:202 msgid "Results" msgstr "Résultats" -#: part/serializers.py:204 +#: part/serializers.py:203 msgid "Number of results recorded against this template" msgstr "Nombre de résultats enregistrés par rapport à ce modèle" -#: part/serializers.py:235 part/serializers.py:253 stock/serializers.py:643 +#: part/serializers.py:234 part/serializers.py:252 stock/serializers.py:643 msgid "Purchase currency of this stock item" msgstr "Devise d'achat de l'item" -#: part/serializers.py:280 +#: part/serializers.py:279 msgid "File is not an image" msgstr "Le fichier n'est pas une image" -#: part/serializers.py:311 -msgid "Number of parts using this template" -msgstr "Nombre de pièces utilisant ce modèle" - -#: part/serializers.py:471 +#: part/serializers.py:382 msgid "Original Part" msgstr "Partie originale" -#: part/serializers.py:472 +#: part/serializers.py:383 msgid "Select original part to duplicate" msgstr "Sélectionner la partie originale à dupliquer" -#: part/serializers.py:477 +#: part/serializers.py:388 msgid "Copy Image" msgstr "Copier l'image" -#: part/serializers.py:478 +#: part/serializers.py:389 msgid "Copy image from original part" msgstr "Copier l'image à partir de la partie originale" -#: part/serializers.py:484 +#: part/serializers.py:395 msgid "Copy BOM" msgstr "Copier la nomenclature" -#: part/serializers.py:485 +#: part/serializers.py:396 msgid "Copy bill of materials from original part" msgstr "Copie de la nomenclature de la pièce originale" -#: part/serializers.py:491 +#: part/serializers.py:402 msgid "Copy Parameters" msgstr "Copier les paramètres" -#: part/serializers.py:492 +#: part/serializers.py:403 msgid "Copy parameter data from original part" msgstr "Copie des données de paramètres de la pièce d'origine" -#: part/serializers.py:498 +#: part/serializers.py:409 msgid "Copy Notes" msgstr "Notes sur la copie" -#: part/serializers.py:499 +#: part/serializers.py:410 msgid "Copy notes from original part" msgstr "Copier les notes de la partie originale" -#: part/serializers.py:505 +#: part/serializers.py:416 msgid "Copy Tests" msgstr "Test Copie" -#: part/serializers.py:506 +#: part/serializers.py:417 msgid "Copy test templates from original part" msgstr "" -#: part/serializers.py:524 +#: part/serializers.py:435 msgid "Initial Stock Quantity" msgstr "Quantité de stock initial" -#: part/serializers.py:526 +#: part/serializers.py:437 msgid "Specify initial stock quantity for this Part. If quantity is zero, no stock is added." msgstr "Indiquer la quantité de stock initiale pour cette pièce. Si la quantité est égale à zéro, aucun stock n'est ajouté." -#: part/serializers.py:533 +#: part/serializers.py:444 msgid "Initial Stock Location" msgstr "Emplacement initial du stock" -#: part/serializers.py:534 +#: part/serializers.py:445 msgid "Specify initial stock location for this Part" msgstr "Spécifier l'emplacement du stock initial pour cette pièce" -#: part/serializers.py:551 +#: part/serializers.py:462 msgid "Select supplier (or leave blank to skip)" msgstr "Sélectionner le fournisseur (ou laisser en blanc pour passer)" -#: part/serializers.py:567 +#: part/serializers.py:478 msgid "Select manufacturer (or leave blank to skip)" msgstr "Sélectionner le fabricant (ou laisser en blanc pour ignorer)" -#: part/serializers.py:577 +#: part/serializers.py:488 msgid "Manufacturer part number" msgstr "Numéro de pièce du fabricant" -#: part/serializers.py:584 +#: part/serializers.py:495 msgid "Selected company is not a valid supplier" msgstr "L'entreprise sélectionnée n'est pas un fournisseur valide" -#: part/serializers.py:593 +#: part/serializers.py:504 msgid "Selected company is not a valid manufacturer" msgstr "L'entreprise sélectionnée n'est pas un fabricant valide" -#: part/serializers.py:604 +#: part/serializers.py:515 msgid "Manufacturer part matching this MPN already exists" msgstr "La pièce du fabricant correspondant à ce MPN existe déjà" -#: part/serializers.py:611 +#: part/serializers.py:522 msgid "Supplier part matching this SKU already exists" msgstr "La pièce du fournisseur correspondant à cette UGS existe déjà" -#: part/serializers.py:914 +#: part/serializers.py:799 msgid "Category Name" msgstr "Nom catégorie" -#: part/serializers.py:943 +#: part/serializers.py:828 msgid "Building" msgstr "Construction" -#: part/serializers.py:944 +#: part/serializers.py:829 msgid "Quantity of this part currently being in production" msgstr "Quantité de cette pièce actuellement en production" -#: part/serializers.py:951 +#: part/serializers.py:836 msgid "Outstanding quantity of this part scheduled to be built" msgstr "Quantité exceptionnelle de cette pièce sont planifié à la fabrication" -#: part/serializers.py:971 stock/serializers.py:1019 stock/serializers.py:1189 +#: part/serializers.py:856 stock/serializers.py:1019 stock/serializers.py:1189 #: users/ruleset.py:30 msgid "Stock Items" msgstr "Éléments en stock" -#: part/serializers.py:975 +#: part/serializers.py:860 msgid "Revisions" msgstr "Révisions" -#: part/serializers.py:979 +#: part/serializers.py:864 msgid "Suppliers" msgstr "Fournisseurs" -#: part/serializers.py:983 part/serializers.py:1297 +#: part/serializers.py:868 part/serializers.py:1162 #: templates/email/low_stock_notification.html:16 #: templates/email/part_event_notification.html:17 msgid "Total Stock" msgstr "Stock total" -#: part/serializers.py:991 +#: part/serializers.py:876 msgid "Unallocated Stock" msgstr "Stock non attribué" -#: part/serializers.py:999 +#: part/serializers.py:884 msgid "Variant Stock" msgstr "Variante Stock" -#: part/serializers.py:1054 +#: part/serializers.py:943 msgid "Duplicate Part" msgstr "Dupliquer une pièce" -#: part/serializers.py:1055 +#: part/serializers.py:944 msgid "Copy initial data from another Part" msgstr "Copier les données initiales d'une autre partie" -#: part/serializers.py:1061 +#: part/serializers.py:950 msgid "Initial Stock" msgstr "Stock initial" -#: part/serializers.py:1062 +#: part/serializers.py:951 msgid "Create Part with initial stock quantity" msgstr "Créer une pièce avec une quantité de stock initiale" -#: part/serializers.py:1068 +#: part/serializers.py:957 msgid "Supplier Information" msgstr "Informations sur le fournisseur" -#: part/serializers.py:1069 +#: part/serializers.py:958 msgid "Add initial supplier information for this part" msgstr "Ajouter les informations initiales du fournisseur pour cette pièce" -#: part/serializers.py:1077 +#: part/serializers.py:966 msgid "Copy Category Parameters" msgstr "Copier les paramètres de la catégorie" -#: part/serializers.py:1078 +#: part/serializers.py:967 msgid "Copy parameter templates from selected part category" msgstr "Copier les modèles de paramètres de la catégorie de pièces sélectionnée" -#: part/serializers.py:1083 +#: part/serializers.py:972 msgid "Existing Image" msgstr "Image existante" -#: part/serializers.py:1084 +#: part/serializers.py:973 msgid "Filename of an existing part image" msgstr "Nom de fichier d'une image de pièce existante" -#: part/serializers.py:1101 +#: part/serializers.py:990 msgid "Image file does not exist" msgstr "Le fichier image n'existe pas" -#: part/serializers.py:1269 +#: part/serializers.py:1134 msgid "Validate entire Bill of Materials" msgstr "Valider l'ensemble de la nomenclature" -#: part/serializers.py:1303 part/serializers.py:1769 +#: part/serializers.py:1168 part/serializers.py:1634 msgid "Can Build" msgstr "Peut construire" -#: part/serializers.py:1320 +#: part/serializers.py:1185 msgid "Required for Build Orders" msgstr "Nécessaire pour fabrication" -#: part/serializers.py:1325 +#: part/serializers.py:1190 msgid "Allocated to Build Orders" msgstr "Alloué à la fabrication" -#: part/serializers.py:1332 +#: part/serializers.py:1197 msgid "Required for Sales Orders" msgstr "Nécessaire pour les commandes" -#: part/serializers.py:1336 +#: part/serializers.py:1201 msgid "Allocated to Sales Orders" msgstr "Alloué aux commandes" -#: part/serializers.py:1475 +#: part/serializers.py:1340 msgid "Minimum Price" msgstr "Prix Minimum" -#: part/serializers.py:1476 +#: part/serializers.py:1341 msgid "Override calculated value for minimum price" msgstr "Remplacer la valeur calculée pour le prix minimum" -#: part/serializers.py:1483 +#: part/serializers.py:1348 msgid "Minimum price currency" msgstr "Prix minimum monnaie" -#: part/serializers.py:1490 +#: part/serializers.py:1355 msgid "Maximum Price" msgstr "Prix Maximum" -#: part/serializers.py:1491 +#: part/serializers.py:1356 msgid "Override calculated value for maximum price" msgstr "Remplacer la valeur calculée pour le prix maximum" -#: part/serializers.py:1498 +#: part/serializers.py:1363 msgid "Maximum price currency" msgstr "Devise du prix maximum" -#: part/serializers.py:1527 +#: part/serializers.py:1392 msgid "Update" msgstr "Mise à jour" -#: part/serializers.py:1528 +#: part/serializers.py:1393 msgid "Update pricing for this part" msgstr "Mise à jour des prix pour cette pièce" -#: part/serializers.py:1551 +#: part/serializers.py:1416 #, python-brace-format msgid "Could not convert from provided currencies to {default_currency}" msgstr "Impossible de convertir les devises fournies en {default_currency}" -#: part/serializers.py:1558 +#: part/serializers.py:1423 msgid "Minimum price must not be greater than maximum price" msgstr "Le prix minimum ne doit pas être supérieur au prix maximum" -#: part/serializers.py:1561 +#: part/serializers.py:1426 msgid "Maximum price must not be less than minimum price" msgstr "Le prix maximum ne doit pas être inférieur au prix minimum" -#: part/serializers.py:1715 +#: part/serializers.py:1580 msgid "Select the parent assembly" msgstr "Sélectionner l'assemblage parent" -#: part/serializers.py:1735 +#: part/serializers.py:1600 msgid "Select the component part" msgstr "Sélectionner le composant" -#: part/serializers.py:1929 +#: part/serializers.py:1802 msgid "Select part to copy BOM from" msgstr "Sélectionner la pièce à partir de laquelle copier la nomenclature" -#: part/serializers.py:1937 +#: part/serializers.py:1810 msgid "Remove Existing Data" msgstr "Supprimer les données existantes" -#: part/serializers.py:1938 +#: part/serializers.py:1811 msgid "Remove existing BOM items before copying" msgstr "Supprimer les postes de nomenclature existants avant de les copier" -#: part/serializers.py:1943 +#: part/serializers.py:1816 msgid "Include Inherited" msgstr "Inclure l'héritage" -#: part/serializers.py:1944 +#: part/serializers.py:1817 msgid "Include BOM items which are inherited from templated parts" msgstr "Inclure les éléments de nomenclature hérités des pièces modélisées" -#: part/serializers.py:1949 +#: part/serializers.py:1822 msgid "Skip Invalid Rows" msgstr "Sauter les lignes non valides" -#: part/serializers.py:1950 +#: part/serializers.py:1823 msgid "Enable this option to skip invalid rows" msgstr "Activez cette option pour ignorer les lignes non valides" -#: part/serializers.py:1955 +#: part/serializers.py:1828 msgid "Copy Substitute Parts" msgstr "Copier les pièces de remplacement" -#: part/serializers.py:1956 +#: part/serializers.py:1829 msgid "Copy substitute parts when duplicate BOM items" msgstr "Copie de pièces de rechange en cas de duplication de postes de nomenclature" @@ -6927,7 +6974,7 @@ msgstr "Prise en charge native des codes-barres" #: plugin/builtin/events/auto_issue_orders.py:19 #: plugin/builtin/exporter/bom_exporter.py:73 #: plugin/builtin/exporter/inventree_exporter.py:17 -#: plugin/builtin/exporter/part_parameter_exporter.py:36 +#: plugin/builtin/exporter/parameter_exporter.py:32 #: plugin/builtin/exporter/stocktake_exporter.py:47 #: plugin/builtin/integration/core_notifications.py:25 #: plugin/builtin/integration/core_notifications.py:69 @@ -7041,23 +7088,19 @@ msgid "Include total quantity of each part in the BOM" msgstr "" #: plugin/builtin/exporter/bom_exporter.py:35 -#: plugin/builtin/exporter/part_parameter_exporter.py:17 msgid "Stock Data" msgstr "Données sur les stocks" #: plugin/builtin/exporter/bom_exporter.py:35 -#: plugin/builtin/exporter/part_parameter_exporter.py:17 msgid "Include part stock data" msgstr "Inclure les données relatives au stock de pièces" #: plugin/builtin/exporter/bom_exporter.py:39 -#: plugin/builtin/exporter/part_parameter_exporter.py:21 #: plugin/builtin/exporter/stocktake_exporter.py:20 msgid "Pricing Data" msgstr "Données de tarification" #: plugin/builtin/exporter/bom_exporter.py:39 -#: plugin/builtin/exporter/part_parameter_exporter.py:21 #: plugin/builtin/exporter/stocktake_exporter.py:20 msgid "Include part pricing data" msgstr "Inclure les données relatives au prix des pièces" @@ -7144,13 +7187,21 @@ msgstr "Exporteur générique d'InvenTree" msgid "Provides support for exporting data from InvenTree" msgstr "Prise en charge de l'exportation de données à partir d'InvenTree" -#: plugin/builtin/exporter/part_parameter_exporter.py:33 -msgid "Part Parameter Exporter" -msgstr "Paramètre de la pièce Exportateur" +#: plugin/builtin/exporter/parameter_exporter.py:16 +msgid "Exclude Inactive" +msgstr "" -#: plugin/builtin/exporter/part_parameter_exporter.py:34 -msgid "Exporter for part parameter data" -msgstr "Exportateur de données de paramètres de pièces" +#: plugin/builtin/exporter/parameter_exporter.py:17 +msgid "Exclude parameters which are inactive" +msgstr "" + +#: plugin/builtin/exporter/parameter_exporter.py:29 +msgid "Parameter Exporter" +msgstr "" + +#: plugin/builtin/exporter/parameter_exporter.py:30 +msgid "Exporter for model parameter data" +msgstr "" #: plugin/builtin/exporter/stocktake_exporter.py:25 msgid "Include External Stock" @@ -8079,19 +8130,19 @@ msgstr "Pas de résultat (obligatoire)" msgid "No result" msgstr "Pas de résultat" -#: report/templatetags/report.py:167 +#: report/templatetags/report.py:169 msgid "Asset file does not exist" msgstr "Le fichier d'actifs n'existe pas" -#: report/templatetags/report.py:224 report/templatetags/report.py:300 +#: report/templatetags/report.py:226 report/templatetags/report.py:302 msgid "Image file not found" msgstr "Fichier image non trouvé" -#: report/templatetags/report.py:325 +#: report/templatetags/report.py:327 msgid "part_image tag requires a Part instance" msgstr "la balise part_image nécessite une instance de Part" -#: report/templatetags/report.py:362 +#: report/templatetags/report.py:383 msgid "company_image tag requires a Company instance" msgstr "la balise company_image nécessite une instance d'entreprise" @@ -8455,115 +8506,119 @@ msgstr "Les numéros de série doivent être fournis sous forme de liste" msgid "Quantity does not match serial numbers" msgstr "La quantité ne correspond pas au nombre de numéros de série" -#: stock/models.py:2012 stock/models.py:2917 +#: stock/models.py:1912 +msgid "Cannot assign stock to structural location" +msgstr "" + +#: stock/models.py:2029 stock/models.py:2934 msgid "Test template does not exist" msgstr "Le modèle de test n'existe pas" -#: stock/models.py:2030 +#: stock/models.py:2047 msgid "Stock item has been assigned to a sales order" msgstr "Un article de stock a été affecté à une commande client" -#: stock/models.py:2034 +#: stock/models.py:2051 msgid "Stock item is installed in another item" msgstr "L'article de stock est installé dans un autre article" -#: stock/models.py:2037 +#: stock/models.py:2054 msgid "Stock item contains other items" msgstr "L'article de stock contient d'autres articles" -#: stock/models.py:2040 +#: stock/models.py:2057 msgid "Stock item has been assigned to a customer" msgstr "Un article de stock a été affecté à un client" -#: stock/models.py:2043 stock/models.py:2226 +#: stock/models.py:2060 stock/models.py:2243 msgid "Stock item is currently in production" msgstr "L'article de stock est actuellement en production" -#: stock/models.py:2046 +#: stock/models.py:2063 msgid "Serialized stock cannot be merged" msgstr "Le stock sérialisé ne peut pas être fusionné" -#: stock/models.py:2053 stock/serializers.py:1462 +#: stock/models.py:2070 stock/serializers.py:1462 msgid "Duplicate stock items" msgstr "Articles de stock en double" -#: stock/models.py:2057 +#: stock/models.py:2074 msgid "Stock items must refer to the same part" msgstr "Les articles en stock doivent se référer à la même pièce" -#: stock/models.py:2065 +#: stock/models.py:2082 msgid "Stock items must refer to the same supplier part" msgstr "Les articles en stock doivent se référer à la même pièce du fournisseur" -#: stock/models.py:2070 +#: stock/models.py:2087 msgid "Stock status codes must match" msgstr "Les codes d'état des stocks doivent correspondre" -#: stock/models.py:2349 +#: stock/models.py:2366 msgid "StockItem cannot be moved as it is not in stock" msgstr "StockItem ne peut pas être déplacé car il n'est pas en stock" -#: stock/models.py:2818 +#: stock/models.py:2835 msgid "Stock Item Tracking" msgstr "Suivi des articles en stock" -#: stock/models.py:2849 +#: stock/models.py:2866 msgid "Entry notes" msgstr "Notes d'entrée" -#: stock/models.py:2889 +#: stock/models.py:2906 msgid "Stock Item Test Result" msgstr "Résultat du test de l'article en stock" -#: stock/models.py:2920 +#: stock/models.py:2937 msgid "Value must be provided for this test" msgstr "Une valeur doit être fournie pour ce test" -#: stock/models.py:2924 +#: stock/models.py:2941 msgid "Attachment must be uploaded for this test" msgstr "La pièce jointe doit être téléchargée pour ce test" -#: stock/models.py:2929 +#: stock/models.py:2946 msgid "Invalid value for this test" msgstr "Valeur non valide pour ce test" -#: stock/models.py:2953 +#: stock/models.py:2970 msgid "Test result" msgstr "Résultat du test" -#: stock/models.py:2960 +#: stock/models.py:2977 msgid "Test output value" msgstr "Valeur de sortie du test" -#: stock/models.py:2968 stock/serializers.py:248 +#: stock/models.py:2985 stock/serializers.py:248 msgid "Test result attachment" msgstr "Pièce jointe au résultat du test" -#: stock/models.py:2972 +#: stock/models.py:2989 msgid "Test notes" msgstr "Notes de test" -#: stock/models.py:2980 +#: stock/models.py:2997 msgid "Test station" msgstr "Station de test" -#: stock/models.py:2981 +#: stock/models.py:2998 msgid "The identifier of the test station where the test was performed" msgstr "L'identifiant de la station de test où le test a été effectué" -#: stock/models.py:2987 +#: stock/models.py:3004 msgid "Started" msgstr "Commencé" -#: stock/models.py:2988 +#: stock/models.py:3005 msgid "The timestamp of the test start" msgstr "Horodatage du début du test" -#: stock/models.py:2994 +#: stock/models.py:3011 msgid "Finished" msgstr "Fini" -#: stock/models.py:2995 +#: stock/models.py:3012 msgid "The timestamp of the test finish" msgstr "Horodatage de la fin du test" @@ -8677,8 +8732,8 @@ msgstr "" msgid "Quantity must not exceed available stock quantity ({q})" msgstr "La quantité ne doit pas dépasser la quantité disponible en stock ({q})" -#: stock/serializers.py:711 stock/serializers.py:1419 stock/serializers.py:1732 -#: stock/serializers.py:1781 +#: stock/serializers.py:711 stock/serializers.py:1419 stock/serializers.py:1740 +#: stock/serializers.py:1789 msgid "Destination stock location" msgstr "Emplacement du stock de destination" @@ -8834,19 +8889,19 @@ msgstr "" msgid "Stock transaction notes" msgstr "Notes sur les transactions boursières" -#: stock/serializers.py:1787 +#: stock/serializers.py:1795 msgid "Merge into existing stock" msgstr "" -#: stock/serializers.py:1788 +#: stock/serializers.py:1796 msgid "Merge returned items into existing stock items if possible" msgstr "" -#: stock/serializers.py:1831 +#: stock/serializers.py:1839 msgid "Next Serial Number" msgstr "Numéro de série suivant" -#: stock/serializers.py:1837 +#: stock/serializers.py:1845 msgid "Previous Serial Number" msgstr "Numéro de série précédent" @@ -8902,83 +8957,87 @@ msgstr "Stock ajouté manuellement" msgid "Stock manually removed" msgstr "Stock supprimé manuellement" -#: stock/status_codes.py:57 +#: stock/status_codes.py:56 +msgid "Serialized stock items" +msgstr "" + +#: stock/status_codes.py:58 msgid "Returned to stock" msgstr "" -#: stock/status_codes.py:60 +#: stock/status_codes.py:61 msgid "Location changed" msgstr "Emplacement modifié" -#: stock/status_codes.py:61 +#: stock/status_codes.py:62 msgid "Stock updated" msgstr "Stock mis à jour" -#: stock/status_codes.py:64 +#: stock/status_codes.py:65 msgid "Installed into assembly" msgstr "Installé dans l'assemblage" -#: stock/status_codes.py:65 +#: stock/status_codes.py:66 msgid "Removed from assembly" msgstr "Retiré de l'assemblage" -#: stock/status_codes.py:67 +#: stock/status_codes.py:68 msgid "Installed component item" msgstr "Composant installé" -#: stock/status_codes.py:68 +#: stock/status_codes.py:69 msgid "Removed component item" msgstr "Composant retiré" -#: stock/status_codes.py:71 +#: stock/status_codes.py:72 msgid "Split from parent item" msgstr "Séparer de l'élément parent" -#: stock/status_codes.py:72 +#: stock/status_codes.py:73 msgid "Split child item" msgstr "Fractionner l'élément enfant" -#: stock/status_codes.py:75 +#: stock/status_codes.py:76 msgid "Merged stock items" msgstr "Articles de stock fusionnés" -#: stock/status_codes.py:78 +#: stock/status_codes.py:79 msgid "Converted to variant" msgstr "Converti en variante" -#: stock/status_codes.py:81 +#: stock/status_codes.py:82 msgid "Build order output created" msgstr "La sortie de l'ordre de construction a été créée" -#: stock/status_codes.py:82 +#: stock/status_codes.py:83 msgid "Build order output completed" msgstr "Sortie de l'ordre de construction terminée" -#: stock/status_codes.py:83 +#: stock/status_codes.py:84 msgid "Build order output rejected" msgstr "La sortie de l'ordre de construction a été refusée" -#: stock/status_codes.py:84 +#: stock/status_codes.py:85 msgid "Consumed by build order" msgstr "Consommé par ordre de construction" -#: stock/status_codes.py:87 +#: stock/status_codes.py:88 msgid "Shipped against Sales Order" msgstr "Commandes expédiées vs. ventes" -#: stock/status_codes.py:90 +#: stock/status_codes.py:91 msgid "Received against Purchase Order" msgstr "Livraisons reçues vs. commandes réalisées" -#: stock/status_codes.py:93 +#: stock/status_codes.py:94 msgid "Returned against Return Order" msgstr "Livraisons retournées vs. commandes retournées" -#: stock/status_codes.py:96 +#: stock/status_codes.py:97 msgid "Sent to customer" msgstr "Envoyé au client" -#: stock/status_codes.py:97 +#: stock/status_codes.py:98 msgid "Returned from customer" msgstr "Retourné par le client" diff --git a/src/backend/InvenTree/locale/he/LC_MESSAGES/django.po b/src/backend/InvenTree/locale/he/LC_MESSAGES/django.po index 3b08493316..7d0b5591e5 100644 --- a/src/backend/InvenTree/locale/he/LC_MESSAGES/django.po +++ b/src/backend/InvenTree/locale/he/LC_MESSAGES/django.po @@ -2,8 +2,8 @@ msgid "" msgstr "" "Project-Id-Version: inventree\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-11-19 04:55+0000\n" -"PO-Revision-Date: 2025-11-19 04:59\n" +"POT-Creation-Date: 2025-12-07 07:33+0000\n" +"PO-Revision-Date: 2025-12-07 07:36\n" "Last-Translator: \n" "Language-Team: Hebrew\n" "Language: he_IL\n" @@ -57,7 +57,7 @@ msgstr "" msgid "This field must be unique." msgstr "" -#: InvenTree/api.py:775 +#: InvenTree/api.py:803 msgid "User does not have permission to view this model" msgstr "למשתמש אין הרשאה לצפות במוזל הזה" @@ -81,22 +81,22 @@ msgstr "" msgid "The provided email domain is not approved." msgstr "" -#: InvenTree/conversion.py:166 +#: InvenTree/conversion.py:240 #, python-brace-format msgid "Invalid unit provided ({unit})" msgstr "סופקה יחידה שלא קיימת ({unit})" -#: InvenTree/conversion.py:183 +#: InvenTree/conversion.py:257 msgid "No value provided" msgstr "לא צוין ערך" -#: InvenTree/conversion.py:210 +#: InvenTree/conversion.py:284 #, python-brace-format msgid "Could not convert {original} to {unit}" msgstr "" -#: InvenTree/conversion.py:212 InvenTree/conversion.py:226 -#: InvenTree/helpers.py:597 order/models.py:720 order/models.py:1015 +#: InvenTree/conversion.py:286 InvenTree/conversion.py:300 +#: InvenTree/helpers.py:597 order/models.py:721 order/models.py:1016 msgid "Invalid quantity provided" msgstr "" @@ -112,11 +112,11 @@ msgstr "הזן תאריך סיום" msgid "Invalid decimal value" msgstr "" -#: InvenTree/fields.py:218 InvenTree/models.py:1067 build/serializers.py:509 -#: build/serializers.py:580 build/serializers.py:1788 company/models.py:857 -#: order/models.py:1780 +#: InvenTree/fields.py:218 InvenTree/models.py:1228 build/serializers.py:517 +#: build/serializers.py:588 build/serializers.py:1796 company/models.py:811 +#: order/models.py:1781 #: report/templates/report/inventree_build_order_report.html:172 -#: stock/models.py:2848 stock/models.py:2972 stock/serializers.py:717 +#: stock/models.py:2865 stock/models.py:2989 stock/serializers.py:717 #: stock/serializers.py:893 stock/serializers.py:1035 stock/serializers.py:1336 #: stock/serializers.py:1425 stock/serializers.py:1624 msgid "Notes" @@ -171,35 +171,35 @@ msgstr "" msgid "Data contains prohibited markdown content" msgstr "" -#: InvenTree/helpers_model.py:133 +#: InvenTree/helpers_model.py:134 msgid "Connection error" msgstr "" -#: InvenTree/helpers_model.py:138 InvenTree/helpers_model.py:145 +#: InvenTree/helpers_model.py:139 InvenTree/helpers_model.py:146 msgid "Server responded with invalid status code" msgstr "" -#: InvenTree/helpers_model.py:141 +#: InvenTree/helpers_model.py:142 msgid "Exception occurred" msgstr "" -#: InvenTree/helpers_model.py:151 +#: InvenTree/helpers_model.py:152 msgid "Server responded with invalid Content-Length value" msgstr "" -#: InvenTree/helpers_model.py:154 +#: InvenTree/helpers_model.py:155 msgid "Image size is too large" msgstr "" -#: InvenTree/helpers_model.py:166 +#: InvenTree/helpers_model.py:167 msgid "Image download exceeded maximum size" msgstr "" -#: InvenTree/helpers_model.py:171 +#: InvenTree/helpers_model.py:172 msgid "Remote server returned empty response" msgstr "" -#: InvenTree/helpers_model.py:179 +#: InvenTree/helpers_model.py:180 msgid "Supplied URL is not a valid image file" msgstr "" @@ -207,7 +207,7 @@ msgstr "" msgid "Log in to the app" msgstr "" -#: InvenTree/magic_login.py:41 company/models.py:172 users/serializers.py:198 +#: InvenTree/magic_login.py:41 company/models.py:173 users/serializers.py:198 msgid "Email" msgstr "אימייל" @@ -215,160 +215,176 @@ msgstr "אימייל" msgid "You must enable two-factor authentication before doing anything else." msgstr "" -#: InvenTree/models.py:111 +#: InvenTree/models.py:114 msgid "Error running plugin validation" msgstr "שגיאה בהפעלת אימות הפלאגין" -#: InvenTree/models.py:192 +#: InvenTree/models.py:195 msgid "Metadata must be a python dict object" msgstr "Metadata must be a python dict object" -#: InvenTree/models.py:198 +#: InvenTree/models.py:201 msgid "Plugin Metadata" msgstr "מטא נתונים של תוסף" -#: InvenTree/models.py:199 +#: InvenTree/models.py:202 msgid "JSON metadata field, for use by external plugins" msgstr "שדה מטא נתונים של JSON, לשימוש על ידי תוספים חיצוניים" -#: InvenTree/models.py:382 +#: InvenTree/models.py:385 msgid "Improperly formatted pattern" msgstr "דפוס מעוצב בצורה לא נכונה" -#: InvenTree/models.py:389 +#: InvenTree/models.py:392 msgid "Unknown format key specified" msgstr "צוין מפתח פורמט לא ידוע" -#: InvenTree/models.py:395 +#: InvenTree/models.py:398 msgid "Missing required format key" msgstr "חסר מפתח פורמט נדרש" -#: InvenTree/models.py:406 +#: InvenTree/models.py:409 msgid "Reference field cannot be empty" msgstr "שדה הפניה לא יכול להיות ריק" -#: InvenTree/models.py:414 +#: InvenTree/models.py:417 msgid "Reference must match required pattern" msgstr "הפניה חייבת להתאים לדפוס הנדרש" -#: InvenTree/models.py:445 +#: InvenTree/models.py:448 msgid "Reference number is too large" msgstr "מספר האסמכתה גדול מדי" -#: InvenTree/models.py:743 +#: InvenTree/models.py:896 msgid "Invalid choice" msgstr "בחירה שגויה" -#: InvenTree/models.py:856 common/models.py:1410 common/models.py:1837 -#: common/models.py:2096 common/models.py:2221 common/serializers.py:535 -#: company/models.py:615 generic/states/serializers.py:20 machine/models.py:25 -#: part/models.py:1039 part/models.py:3850 plugin/models.py:54 +#: InvenTree/models.py:1017 common/models.py:1414 common/models.py:1841 +#: common/models.py:2102 common/models.py:2227 common/models.py:2494 +#: common/serializers.py:539 generic/states/serializers.py:20 +#: machine/models.py:25 part/models.py:1127 plugin/models.py:54 #: report/models.py:216 stock/models.py:84 msgid "Name" msgstr "שם" -#: InvenTree/models.py:862 build/models.py:252 common/models.py:171 -#: common/models.py:2228 common/models.py:2341 company/models.py:543 -#: company/models.py:848 order/models.py:442 order/models.py:1825 -#: part/models.py:1062 part/models.py:3865 report/models.py:222 +#: InvenTree/models.py:1023 build/models.py:253 common/models.py:175 +#: common/models.py:2234 common/models.py:2347 common/models.py:2509 +#: company/models.py:545 company/models.py:802 order/models.py:443 +#: order/models.py:1826 part/models.py:1150 report/models.py:222 #: report/models.py:815 report/models.py:841 #: report/templates/report/inventree_build_order_report.html:117 #: stock/models.py:90 msgid "Description" msgstr "תיאור" -#: InvenTree/models.py:863 stock/models.py:91 +#: InvenTree/models.py:1024 stock/models.py:91 msgid "Description (optional)" msgstr "תיאור (לא חובה)" -#: InvenTree/models.py:878 common/models.py:2394 +#: InvenTree/models.py:1039 common/models.py:2815 msgid "Path" msgstr "נתיב" -#: InvenTree/models.py:983 +#: InvenTree/models.py:1144 msgid "Duplicate names cannot exist under the same parent" msgstr "שמות כפולים אינם יכולים להתקיים תחת אותו אב" -#: InvenTree/models.py:1067 +#: InvenTree/models.py:1228 msgid "Markdown notes (optional)" msgstr "הערות סימון (אופציונלי)" -#: InvenTree/models.py:1098 +#: InvenTree/models.py:1259 msgid "Barcode Data" msgstr "נתוני ברקוד" -#: InvenTree/models.py:1099 +#: InvenTree/models.py:1260 msgid "Third party barcode data" msgstr "נתוני ברקוד של צד שלישי" -#: InvenTree/models.py:1105 +#: InvenTree/models.py:1266 msgid "Barcode Hash" msgstr "ברקוד Hash" -#: InvenTree/models.py:1106 +#: InvenTree/models.py:1267 msgid "Unique hash of barcode data" msgstr "Hash ייחודי של נתוני ברקוד" -#: InvenTree/models.py:1187 +#: InvenTree/models.py:1348 msgid "Existing barcode found" msgstr "נמצא ברקוד קיים" -#: InvenTree/models.py:1269 +#: InvenTree/models.py:1430 msgid "Task Failure" msgstr "" -#: InvenTree/models.py:1270 +#: InvenTree/models.py:1431 #, python-brace-format msgid "Background worker task '{f}' failed after {n} attempts" msgstr "" -#: InvenTree/models.py:1297 +#: InvenTree/models.py:1458 msgid "Server Error" msgstr "שגיאת שרת" -#: InvenTree/models.py:1298 +#: InvenTree/models.py:1459 msgid "An error has been logged by the server." msgstr "נרשמה שגיאה על ידי השרת." -#: InvenTree/models.py:1340 common/models.py:1748 +#: InvenTree/models.py:1501 common/models.py:1752 #: report/templates/report/inventree_bill_of_materials_report.html:126 #: report/templates/report/inventree_bill_of_materials_report.html:148 #: report/templates/report/inventree_return_order_report.html:35 msgid "Image" msgstr "" -#: InvenTree/serializers.py:253 part/models.py:4571 +#: InvenTree/serializers.py:255 part/models.py:4196 msgid "Must be a valid number" msgstr "המספר חייב להיות תקין" -#: InvenTree/serializers.py:295 company/models.py:214 part/models.py:3285 +#: InvenTree/serializers.py:297 company/models.py:215 part/models.py:3349 msgid "Currency" msgstr "מטבע" -#: InvenTree/serializers.py:298 part/serializers.py:1385 +#: InvenTree/serializers.py:300 part/serializers.py:1250 msgid "Select currency from available options" msgstr "בחר מטבע מהאפשרויות הזמינות" -#: InvenTree/serializers.py:653 +#: InvenTree/serializers.py:654 +msgid "This field may not be null." +msgstr "" + +#: InvenTree/serializers.py:660 msgid "Invalid value" msgstr "" -#: InvenTree/serializers.py:690 +#: InvenTree/serializers.py:697 msgid "Remote Image" msgstr "" -#: InvenTree/serializers.py:691 +#: InvenTree/serializers.py:698 msgid "URL of remote image file" msgstr "" -#: InvenTree/serializers.py:709 +#: InvenTree/serializers.py:716 msgid "Downloading images from remote URL is not enabled" msgstr "" -#: InvenTree/serializers.py:716 +#: InvenTree/serializers.py:723 msgid "Failed to download image from remote URL" msgstr "" +#: InvenTree/serializers.py:806 +msgid "Invalid content type format" +msgstr "" + +#: InvenTree/serializers.py:809 +msgid "Content type not found" +msgstr "" + +#: InvenTree/serializers.py:815 +msgid "Content type does not match required mixin class" +msgstr "" + #: InvenTree/setting/locales.py:20 msgid "Arabic" msgstr "ערבית" @@ -537,30 +553,30 @@ msgstr "" msgid "Not a valid currency code" msgstr "קוד מטבע לא מאושר" -#: build/api.py:54 order/api.py:111 order/api.py:270 order/api.py:1373 -#: order/serializers.py:132 +#: build/api.py:54 order/api.py:116 order/api.py:275 order/api.py:1378 +#: order/serializers.py:133 msgid "Order Status" msgstr "" -#: build/api.py:80 build/models.py:264 +#: build/api.py:80 build/models.py:265 msgid "Parent Build" msgstr "מקור הבנייה" -#: build/api.py:84 build/api.py:831 order/api.py:547 order/api.py:770 -#: order/api.py:1174 order/api.py:1449 stock/api.py:573 +#: build/api.py:84 build/api.py:837 order/api.py:553 order/api.py:776 +#: order/api.py:1179 order/api.py:1454 stock/api.py:573 msgid "Include Variants" msgstr "" -#: build/api.py:100 build/api.py:466 build/api.py:845 build/models.py:270 -#: build/serializers.py:1225 build/serializers.py:1356 -#: build/serializers.py:1427 company/models.py:1067 company/serializers.py:445 -#: order/api.py:298 order/api.py:302 order/api.py:929 order/api.py:1187 -#: order/api.py:1190 order/models.py:1941 order/models.py:2108 -#: order/models.py:2109 part/api.py:1233 part/api.py:1236 part/api.py:1302 -#: part/api.py:1589 part/models.py:472 part/models.py:3296 part/models.py:3439 -#: part/models.py:3497 part/models.py:3518 part/models.py:3540 -#: part/models.py:3679 part/models.py:4046 part/models.py:4368 -#: part/models.py:4787 part/serializers.py:1928 +#: build/api.py:100 build/api.py:472 build/api.py:851 build/models.py:271 +#: build/serializers.py:1233 build/serializers.py:1364 +#: build/serializers.py:1435 company/models.py:1021 company/serializers.py:490 +#: order/api.py:303 order/api.py:307 order/api.py:934 order/api.py:1192 +#: order/api.py:1195 order/models.py:1942 order/models.py:2109 +#: order/models.py:2110 part/api.py:1160 part/api.py:1163 part/api.py:1314 +#: part/models.py:550 part/models.py:3360 part/models.py:3503 +#: part/models.py:3561 part/models.py:3582 part/models.py:3604 +#: part/models.py:3743 part/models.py:3993 part/models.py:4412 +#: part/serializers.py:1801 #: report/templates/report/inventree_bill_of_materials_report.html:110 #: report/templates/report/inventree_bill_of_materials_report.html:137 #: report/templates/report/inventree_build_order_report.html:109 @@ -580,9 +596,9 @@ msgstr "" msgid "Part" msgstr "רכיב" -#: build/api.py:120 build/api.py:123 build/serializers.py:1438 part/api.py:980 -#: part/api.py:1316 part/api.py:1600 part/models.py:1080 part/models.py:3568 -#: part/models.py:4162 part/serializers.py:1752 stock/api.py:869 +#: build/api.py:120 build/api.py:123 build/serializers.py:1446 part/api.py:975 +#: part/api.py:1325 part/models.py:435 part/models.py:1168 part/models.py:3632 +#: part/serializers.py:1617 stock/api.py:869 msgid "Category" msgstr "" @@ -590,7 +606,7 @@ msgstr "" msgid "Ancestor Build" msgstr "" -#: build/api.py:152 order/api.py:129 +#: build/api.py:152 order/api.py:134 msgid "Assigned to me" msgstr "" @@ -638,134 +654,134 @@ msgstr "" msgid "Completed after" msgstr "" -#: build/api.py:249 order/api.py:226 +#: build/api.py:249 order/api.py:231 msgid "Min Date" msgstr "" -#: build/api.py:272 order/api.py:245 +#: build/api.py:272 order/api.py:250 msgid "Max Date" msgstr "" -#: build/api.py:297 build/api.py:300 part/api.py:217 stock/api.py:961 +#: build/api.py:297 build/api.py:300 part/api.py:212 stock/api.py:961 msgid "Exclude Tree" msgstr "" -#: build/api.py:405 +#: build/api.py:411 msgid "Build must be cancelled before it can be deleted" msgstr "" -#: build/api.py:449 build/serializers.py:1374 part/models.py:4402 +#: build/api.py:455 build/serializers.py:1382 part/models.py:4027 msgid "Consumable" msgstr "" -#: build/api.py:452 build/serializers.py:1377 part/models.py:4396 +#: build/api.py:458 build/serializers.py:1385 part/models.py:4021 msgid "Optional" msgstr "" -#: build/api.py:455 build/serializers.py:1415 common/setting/system.py:456 -#: part/models.py:1202 part/serializers.py:1714 part/serializers.py:1725 +#: build/api.py:461 build/serializers.py:1423 common/setting/system.py:456 +#: part/models.py:1290 part/serializers.py:1579 part/serializers.py:1590 #: stock/api.py:639 msgid "Assembly" msgstr "" -#: build/api.py:458 +#: build/api.py:464 msgid "Tracked" msgstr "" -#: build/api.py:461 build/serializers.py:1380 part/models.py:1220 +#: build/api.py:467 build/serializers.py:1388 part/models.py:1308 msgid "Testable" msgstr "" -#: build/api.py:471 order/api.py:993 order/api.py:1363 +#: build/api.py:477 order/api.py:998 order/api.py:1368 msgid "Order Outstanding" msgstr "" -#: build/api.py:481 build/serializers.py:1464 order/api.py:952 +#: build/api.py:487 build/serializers.py:1472 order/api.py:957 msgid "Allocated" msgstr "" -#: build/api.py:490 build/models.py:1672 build/serializers.py:1393 +#: build/api.py:496 build/models.py:1673 build/serializers.py:1401 msgid "Consumed" msgstr "" -#: build/api.py:499 company/models.py:912 company/serializers.py:440 +#: build/api.py:505 company/models.py:866 company/serializers.py:467 #: templates/email/build_order_required_stock.html:19 #: templates/email/low_stock_notification.html:17 #: templates/email/part_event_notification.html:18 msgid "Available" msgstr "" -#: build/api.py:523 build/serializers.py:1466 company/serializers.py:437 -#: order/serializers.py:1281 part/serializers.py:959 part/serializers.py:1306 -#: part/serializers.py:1761 +#: build/api.py:529 build/serializers.py:1474 company/serializers.py:464 +#: order/serializers.py:1295 part/serializers.py:844 part/serializers.py:1171 +#: part/serializers.py:1626 msgid "On Order" msgstr "" -#: build/api.py:868 build/models.py:117 order/models.py:1974 +#: build/api.py:874 build/models.py:118 order/models.py:1975 #: report/templates/report/inventree_build_order_report.html:105 #: stock/serializers.py:93 templates/email/build_order_completed.html:16 #: templates/email/overdue_build_order.html:15 msgid "Build Order" msgstr "" -#: build/api.py:882 build/api.py:886 build/serializers.py:372 -#: build/serializers.py:497 build/serializers.py:567 build/serializers.py:1251 -#: build/serializers.py:1256 order/api.py:1234 order/api.py:1239 -#: order/serializers.py:833 order/serializers.py:973 order/serializers.py:2042 +#: build/api.py:888 build/api.py:892 build/serializers.py:380 +#: build/serializers.py:505 build/serializers.py:575 build/serializers.py:1259 +#: build/serializers.py:1264 order/api.py:1239 order/api.py:1244 +#: order/serializers.py:844 order/serializers.py:984 order/serializers.py:2059 #: stock/api.py:987 stock/serializers.py:111 stock/serializers.py:601 #: stock/serializers.py:710 stock/serializers.py:888 stock/serializers.py:1418 -#: stock/serializers.py:1731 stock/serializers.py:1780 +#: stock/serializers.py:1739 stock/serializers.py:1788 #: templates/email/stale_stock_notification.html:18 users/models.py:549 msgid "Location" msgstr "" -#: build/api.py:894 +#: build/api.py:900 msgid "Output" msgstr "" -#: build/api.py:896 +#: build/api.py:902 msgid "Filter by output stock item ID. Use 'null' to find uninstalled build items." msgstr "" -#: build/models.py:118 users/ruleset.py:31 +#: build/models.py:119 users/ruleset.py:31 msgid "Build Orders" msgstr "" -#: build/models.py:168 +#: build/models.py:169 msgid "Assembly BOM has not been validated" msgstr "" -#: build/models.py:175 +#: build/models.py:176 msgid "Build order cannot be created for an inactive part" msgstr "" -#: build/models.py:182 +#: build/models.py:183 msgid "Build order cannot be created for an unlocked part" msgstr "" -#: build/models.py:200 +#: build/models.py:201 msgid "Build orders can only be externally fulfilled for purchaseable parts" msgstr "" -#: build/models.py:207 order/models.py:369 +#: build/models.py:208 order/models.py:370 msgid "Responsible user or group must be specified" msgstr "" -#: build/models.py:212 +#: build/models.py:213 msgid "Build order part cannot be changed" msgstr "" -#: build/models.py:217 order/models.py:382 +#: build/models.py:218 order/models.py:383 msgid "Target date must be after start date" msgstr "" -#: build/models.py:245 +#: build/models.py:246 msgid "Build Order Reference" msgstr "" -#: build/models.py:246 build/serializers.py:1371 order/models.py:614 -#: order/models.py:1311 order/models.py:1773 order/models.py:2712 -#: part/models.py:4442 +#: build/models.py:247 build/serializers.py:1379 order/models.py:615 +#: order/models.py:1312 order/models.py:1774 order/models.py:2713 +#: part/models.py:4067 #: report/templates/report/inventree_bill_of_materials_report.html:139 #: report/templates/report/inventree_purchase_order_report.html:35 #: report/templates/report/inventree_return_order_report.html:26 @@ -773,230 +789,230 @@ msgstr "" msgid "Reference" msgstr "מקט" -#: build/models.py:255 +#: build/models.py:256 msgid "Brief description of the build (optional)" msgstr "" -#: build/models.py:265 +#: build/models.py:266 msgid "BuildOrder to which this build is allocated" msgstr "" -#: build/models.py:274 +#: build/models.py:275 msgid "Select part to build" msgstr "בחר רכיב לבנייה" -#: build/models.py:279 +#: build/models.py:280 msgid "Sales Order Reference" msgstr "" -#: build/models.py:284 +#: build/models.py:285 msgid "SalesOrder to which this build is allocated" msgstr "" -#: build/models.py:289 build/serializers.py:1097 +#: build/models.py:290 build/serializers.py:1105 msgid "Source Location" msgstr "" -#: build/models.py:295 +#: build/models.py:296 msgid "Select location to take stock from for this build (leave blank to take from any stock location)" msgstr "" -#: build/models.py:301 +#: build/models.py:302 msgid "External Build" msgstr "" -#: build/models.py:302 +#: build/models.py:303 msgid "This build order is fulfilled externally" msgstr "" -#: build/models.py:307 +#: build/models.py:308 msgid "Destination Location" msgstr "" -#: build/models.py:312 +#: build/models.py:313 msgid "Select location where the completed items will be stored" msgstr "" -#: build/models.py:316 +#: build/models.py:317 msgid "Build Quantity" msgstr "כמות בניה" -#: build/models.py:319 +#: build/models.py:320 msgid "Number of stock items to build" msgstr "" -#: build/models.py:323 +#: build/models.py:324 msgid "Completed items" msgstr "" -#: build/models.py:325 +#: build/models.py:326 msgid "Number of stock items which have been completed" msgstr "" -#: build/models.py:329 +#: build/models.py:330 msgid "Build Status" msgstr "" -#: build/models.py:334 +#: build/models.py:335 msgid "Build status code" msgstr "" -#: build/models.py:343 build/serializers.py:359 order/serializers.py:849 +#: build/models.py:344 build/serializers.py:367 order/serializers.py:860 #: stock/models.py:1100 stock/serializers.py:85 stock/serializers.py:1591 msgid "Batch Code" msgstr "" -#: build/models.py:347 build/serializers.py:360 +#: build/models.py:348 build/serializers.py:368 msgid "Batch code for this build output" msgstr "" -#: build/models.py:351 order/models.py:479 order/serializers.py:186 -#: part/models.py:1283 +#: build/models.py:352 order/models.py:480 order/serializers.py:193 +#: part/models.py:1371 msgid "Creation Date" msgstr "" -#: build/models.py:357 +#: build/models.py:358 msgid "Build start date" msgstr "" -#: build/models.py:358 +#: build/models.py:359 msgid "Scheduled start date for this build order" msgstr "" -#: build/models.py:364 +#: build/models.py:365 msgid "Target completion date" msgstr "" -#: build/models.py:366 +#: build/models.py:367 msgid "Target date for build completion. Build will be overdue after this date." msgstr "" -#: build/models.py:371 order/models.py:667 order/models.py:2751 +#: build/models.py:372 order/models.py:668 order/models.py:2752 msgid "Completion Date" msgstr "" -#: build/models.py:379 +#: build/models.py:380 msgid "completed by" msgstr "" -#: build/models.py:388 +#: build/models.py:389 msgid "Issued by" msgstr "" -#: build/models.py:389 +#: build/models.py:390 msgid "User who issued this build order" msgstr "" -#: build/models.py:398 common/models.py:180 order/api.py:179 -#: order/models.py:504 part/models.py:1300 +#: build/models.py:399 common/models.py:184 order/api.py:184 +#: order/models.py:505 part/models.py:1388 #: report/templates/report/inventree_build_order_report.html:158 msgid "Responsible" msgstr "" -#: build/models.py:399 +#: build/models.py:400 msgid "User or group responsible for this build order" msgstr "" -#: build/models.py:404 stock/models.py:1093 +#: build/models.py:405 stock/models.py:1093 msgid "External Link" msgstr "" -#: build/models.py:406 common/models.py:1984 part/models.py:1114 +#: build/models.py:407 common/models.py:1990 part/models.py:1202 #: stock/models.py:1095 msgid "Link to external URL" msgstr "קישור חיצוני" -#: build/models.py:411 +#: build/models.py:412 msgid "Build Priority" msgstr "" -#: build/models.py:414 +#: build/models.py:415 msgid "Priority of this build order" msgstr "" -#: build/models.py:422 common/models.py:150 common/models.py:164 -#: order/api.py:165 order/models.py:451 order/models.py:1805 +#: build/models.py:423 common/models.py:154 common/models.py:168 +#: order/api.py:170 order/models.py:452 order/models.py:1806 msgid "Project Code" msgstr "" -#: build/models.py:423 +#: build/models.py:424 msgid "Project code for this build order" msgstr "" -#: build/models.py:676 +#: build/models.py:677 msgid "Cannot complete build order with open child builds" msgstr "" -#: build/models.py:681 +#: build/models.py:682 msgid "Cannot complete build order with incomplete outputs" msgstr "" -#: build/models.py:700 build/models.py:830 +#: build/models.py:701 build/models.py:831 msgid "Failed to offload task to complete build allocations" msgstr "" -#: build/models.py:723 +#: build/models.py:724 #, python-brace-format msgid "Build order {build} has been completed" msgstr "" -#: build/models.py:729 +#: build/models.py:730 msgid "A build order has been completed" msgstr "" -#: build/models.py:911 build/serializers.py:407 +#: build/models.py:912 build/serializers.py:415 msgid "Serial numbers must be provided for trackable parts" msgstr "" -#: build/models.py:1042 build/models.py:1129 +#: build/models.py:1043 build/models.py:1130 msgid "No build output specified" msgstr "" -#: build/models.py:1045 +#: build/models.py:1046 msgid "Build output is already completed" msgstr "" -#: build/models.py:1048 +#: build/models.py:1049 msgid "Build output does not match Build Order" msgstr "" -#: build/models.py:1136 build/models.py:1234 build/serializers.py:285 -#: build/serializers.py:335 build/serializers.py:965 build/serializers.py:1739 -#: order/models.py:717 order/serializers.py:658 order/serializers.py:844 -#: part/serializers.py:1708 stock/models.py:940 stock/models.py:1430 +#: build/models.py:1137 build/models.py:1235 build/serializers.py:293 +#: build/serializers.py:343 build/serializers.py:973 build/serializers.py:1747 +#: order/models.py:718 order/serializers.py:669 order/serializers.py:855 +#: part/serializers.py:1573 stock/models.py:940 stock/models.py:1430 #: stock/models.py:1878 stock/serializers.py:688 stock/serializers.py:1580 msgid "Quantity must be greater than zero" msgstr "" -#: build/models.py:1140 build/models.py:1239 build/serializers.py:290 +#: build/models.py:1141 build/models.py:1240 build/serializers.py:298 msgid "Quantity cannot be greater than the output quantity" msgstr "" -#: build/models.py:1214 build/serializers.py:606 +#: build/models.py:1215 build/serializers.py:614 msgid "Build output has not passed all required tests" msgstr "" -#: build/models.py:1217 build/serializers.py:601 +#: build/models.py:1218 build/serializers.py:609 #, python-brace-format msgid "Build output {serial} has not passed all required tests" msgstr "" -#: build/models.py:1229 +#: build/models.py:1230 msgid "Cannot partially complete a build output with allocated items" msgstr "" -#: build/models.py:1627 +#: build/models.py:1628 msgid "Build Order Line Item" msgstr "" -#: build/models.py:1651 +#: build/models.py:1652 msgid "Build object" msgstr "" -#: build/models.py:1663 build/models.py:1974 build/serializers.py:271 -#: build/serializers.py:320 build/serializers.py:1392 common/models.py:1340 -#: order/models.py:1756 order/models.py:2597 order/serializers.py:1696 -#: order/serializers.py:2124 part/models.py:3453 part/models.py:4390 +#: build/models.py:1664 build/models.py:1975 build/serializers.py:279 +#: build/serializers.py:328 build/serializers.py:1400 common/models.py:1344 +#: order/models.py:1757 order/models.py:2598 order/serializers.py:1710 +#: order/serializers.py:2141 part/models.py:3517 part/models.py:4015 #: report/templates/report/inventree_bill_of_materials_report.html:138 #: report/templates/report/inventree_build_order_report.html:113 #: report/templates/report/inventree_purchase_order_report.html:36 @@ -1014,427 +1030,427 @@ msgstr "" msgid "Quantity" msgstr "כמות" -#: build/models.py:1664 +#: build/models.py:1665 msgid "Required quantity for build order" msgstr "" -#: build/models.py:1673 +#: build/models.py:1674 msgid "Quantity of consumed stock" msgstr "" -#: build/models.py:1772 +#: build/models.py:1773 msgid "Build item must specify a build output, as master part is marked as trackable" msgstr "" -#: build/models.py:1783 +#: build/models.py:1784 #, python-brace-format msgid "Allocated quantity ({q}) must not exceed available stock quantity ({a})" msgstr "" -#: build/models.py:1804 order/models.py:2546 +#: build/models.py:1805 order/models.py:2547 msgid "Stock item is over-allocated" msgstr "" -#: build/models.py:1809 order/models.py:2549 +#: build/models.py:1810 order/models.py:2550 msgid "Allocation quantity must be greater than zero" msgstr "" -#: build/models.py:1815 +#: build/models.py:1816 msgid "Quantity must be 1 for serialized stock" msgstr "" -#: build/models.py:1875 +#: build/models.py:1876 msgid "Selected stock item does not match BOM line" msgstr "" -#: build/models.py:1913 +#: build/models.py:1914 msgid "Allocated quantity exceeds available stock quantity" msgstr "" -#: build/models.py:1964 build/serializers.py:948 build/serializers.py:1240 -#: order/serializers.py:1533 order/serializers.py:1554 +#: build/models.py:1965 build/serializers.py:956 build/serializers.py:1248 +#: order/serializers.py:1547 order/serializers.py:1568 #: report/templates/report/inventree_sales_order_shipment_report.html:29 #: stock/api.py:1404 stock/models.py:456 stock/serializers.py:102 #: stock/serializers.py:800 stock/serializers.py:1274 stock/serializers.py:1386 msgid "Stock Item" msgstr "" -#: build/models.py:1965 +#: build/models.py:1966 msgid "Source stock item" msgstr "" -#: build/models.py:1975 +#: build/models.py:1976 msgid "Stock quantity to allocate to build" msgstr "" -#: build/models.py:1984 +#: build/models.py:1985 msgid "Install into" msgstr "" -#: build/models.py:1985 +#: build/models.py:1986 msgid "Destination stock item" msgstr "" -#: build/serializers.py:118 +#: build/serializers.py:120 msgid "Build Level" msgstr "" -#: build/serializers.py:128 +#: build/serializers.py:136 msgid "Part Name" msgstr "" -#: build/serializers.py:153 +#: build/serializers.py:161 msgid "Project Code Label" msgstr "" -#: build/serializers.py:219 build/serializers.py:974 +#: build/serializers.py:227 build/serializers.py:982 msgid "Build Output" msgstr "" -#: build/serializers.py:231 +#: build/serializers.py:239 msgid "Build output does not match the parent build" msgstr "" -#: build/serializers.py:235 +#: build/serializers.py:243 msgid "Output part does not match BuildOrder part" msgstr "" -#: build/serializers.py:239 +#: build/serializers.py:247 msgid "This build output has already been completed" msgstr "" -#: build/serializers.py:253 +#: build/serializers.py:261 msgid "This build output is not fully allocated" msgstr "" -#: build/serializers.py:272 build/serializers.py:321 +#: build/serializers.py:280 build/serializers.py:329 msgid "Enter quantity for build output" msgstr "" -#: build/serializers.py:343 +#: build/serializers.py:351 msgid "Integer quantity required for trackable parts" msgstr "" -#: build/serializers.py:349 +#: build/serializers.py:357 msgid "Integer quantity required, as the bill of materials contains trackable parts" msgstr "" -#: build/serializers.py:366 order/serializers.py:865 order/serializers.py:1700 +#: build/serializers.py:374 order/serializers.py:876 order/serializers.py:1714 #: stock/serializers.py:699 msgid "Serial Numbers" msgstr "מספרים סידוריים" -#: build/serializers.py:367 +#: build/serializers.py:375 msgid "Enter serial numbers for build outputs" msgstr "" -#: build/serializers.py:373 +#: build/serializers.py:381 msgid "Stock location for build output" msgstr "" -#: build/serializers.py:388 +#: build/serializers.py:396 msgid "Auto Allocate Serial Numbers" msgstr "" -#: build/serializers.py:390 +#: build/serializers.py:398 msgid "Automatically allocate required items with matching serial numbers" msgstr "" -#: build/serializers.py:423 order/serializers.py:951 stock/api.py:1183 +#: build/serializers.py:431 order/serializers.py:962 stock/api.py:1183 #: stock/models.py:1901 msgid "The following serial numbers already exist or are invalid" msgstr "" -#: build/serializers.py:465 build/serializers.py:521 build/serializers.py:613 +#: build/serializers.py:473 build/serializers.py:529 build/serializers.py:621 msgid "A list of build outputs must be provided" msgstr "" -#: build/serializers.py:498 +#: build/serializers.py:506 msgid "Stock location for scrapped outputs" msgstr "" -#: build/serializers.py:504 +#: build/serializers.py:512 msgid "Discard Allocations" msgstr "" -#: build/serializers.py:505 +#: build/serializers.py:513 msgid "Discard any stock allocations for scrapped outputs" msgstr "" -#: build/serializers.py:510 +#: build/serializers.py:518 msgid "Reason for scrapping build output(s)" msgstr "" -#: build/serializers.py:568 +#: build/serializers.py:576 msgid "Location for completed build outputs" msgstr "" -#: build/serializers.py:576 +#: build/serializers.py:584 msgid "Accept Incomplete Allocation" msgstr "" -#: build/serializers.py:577 +#: build/serializers.py:585 msgid "Complete outputs if stock has not been fully allocated" msgstr "" -#: build/serializers.py:702 +#: build/serializers.py:710 msgid "Consume Allocated Stock" msgstr "" -#: build/serializers.py:703 +#: build/serializers.py:711 msgid "Consume any stock which has already been allocated to this build" msgstr "" -#: build/serializers.py:709 +#: build/serializers.py:717 msgid "Remove Incomplete Outputs" msgstr "" -#: build/serializers.py:710 +#: build/serializers.py:718 msgid "Delete any build outputs which have not been completed" msgstr "" -#: build/serializers.py:737 +#: build/serializers.py:745 msgid "Not permitted" msgstr "" -#: build/serializers.py:738 +#: build/serializers.py:746 msgid "Accept as consumed by this build order" msgstr "" -#: build/serializers.py:739 +#: build/serializers.py:747 msgid "Deallocate before completing this build order" msgstr "" -#: build/serializers.py:766 +#: build/serializers.py:774 msgid "Overallocated Stock" msgstr "" -#: build/serializers.py:769 +#: build/serializers.py:777 msgid "How do you want to handle extra stock items assigned to the build order" msgstr "" -#: build/serializers.py:780 +#: build/serializers.py:788 msgid "Some stock items have been overallocated" msgstr "" -#: build/serializers.py:785 +#: build/serializers.py:793 msgid "Accept Unallocated" msgstr "" -#: build/serializers.py:787 +#: build/serializers.py:795 msgid "Accept that stock items have not been fully allocated to this build order" msgstr "" -#: build/serializers.py:798 +#: build/serializers.py:806 msgid "Required stock has not been fully allocated" msgstr "" -#: build/serializers.py:803 order/serializers.py:524 order/serializers.py:1601 +#: build/serializers.py:811 order/serializers.py:535 order/serializers.py:1615 msgid "Accept Incomplete" msgstr "" -#: build/serializers.py:805 +#: build/serializers.py:813 msgid "Accept that the required number of build outputs have not been completed" msgstr "" -#: build/serializers.py:816 +#: build/serializers.py:824 msgid "Required build quantity has not been completed" msgstr "" -#: build/serializers.py:828 +#: build/serializers.py:836 msgid "Build order has open child build orders" msgstr "" -#: build/serializers.py:831 +#: build/serializers.py:839 msgid "Build order must be in production state" msgstr "" -#: build/serializers.py:834 +#: build/serializers.py:842 msgid "Build order has incomplete outputs" msgstr "" -#: build/serializers.py:873 +#: build/serializers.py:881 msgid "Build Line" msgstr "" -#: build/serializers.py:881 +#: build/serializers.py:889 msgid "Build output" msgstr "" -#: build/serializers.py:889 +#: build/serializers.py:897 msgid "Build output must point to the same build" msgstr "" -#: build/serializers.py:920 +#: build/serializers.py:928 msgid "Build Line Item" msgstr "" -#: build/serializers.py:938 +#: build/serializers.py:946 msgid "bom_item.part must point to the same part as the build order" msgstr "" -#: build/serializers.py:954 stock/serializers.py:1287 +#: build/serializers.py:962 stock/serializers.py:1287 msgid "Item must be in stock" msgstr "" -#: build/serializers.py:997 order/serializers.py:1587 +#: build/serializers.py:1005 order/serializers.py:1601 #, python-brace-format msgid "Available quantity ({q}) exceeded" msgstr "" -#: build/serializers.py:1003 +#: build/serializers.py:1011 msgid "Build output must be specified for allocation of tracked parts" msgstr "" -#: build/serializers.py:1011 +#: build/serializers.py:1019 msgid "Build output cannot be specified for allocation of untracked parts" msgstr "" -#: build/serializers.py:1035 order/serializers.py:1860 +#: build/serializers.py:1043 order/serializers.py:1874 msgid "Allocation items must be provided" msgstr "" -#: build/serializers.py:1099 +#: build/serializers.py:1107 msgid "Stock location where parts are to be sourced (leave blank to take from any location)" msgstr "" -#: build/serializers.py:1108 +#: build/serializers.py:1116 msgid "Exclude Location" msgstr "" -#: build/serializers.py:1109 +#: build/serializers.py:1117 msgid "Exclude stock items from this selected location" msgstr "" -#: build/serializers.py:1114 +#: build/serializers.py:1122 msgid "Interchangeable Stock" msgstr "" -#: build/serializers.py:1115 +#: build/serializers.py:1123 msgid "Stock items in multiple locations can be used interchangeably" msgstr "" -#: build/serializers.py:1120 +#: build/serializers.py:1128 msgid "Substitute Stock" msgstr "" -#: build/serializers.py:1121 +#: build/serializers.py:1129 msgid "Allow allocation of substitute parts" msgstr "" -#: build/serializers.py:1126 +#: build/serializers.py:1134 msgid "Optional Items" msgstr "" -#: build/serializers.py:1127 +#: build/serializers.py:1135 msgid "Allocate optional BOM items to build order" msgstr "" -#: build/serializers.py:1148 +#: build/serializers.py:1156 msgid "Failed to start auto-allocation task" msgstr "" -#: build/serializers.py:1200 +#: build/serializers.py:1208 msgid "BOM Reference" msgstr "" -#: build/serializers.py:1206 +#: build/serializers.py:1214 msgid "BOM Part ID" msgstr "" -#: build/serializers.py:1213 +#: build/serializers.py:1221 msgid "BOM Part Name" msgstr "" -#: build/serializers.py:1266 build/serializers.py:1449 +#: build/serializers.py:1274 build/serializers.py:1457 msgid "Build" msgstr "" -#: build/serializers.py:1276 company/models.py:685 order/api.py:311 -#: order/api.py:316 order/api.py:543 order/serializers.py:650 +#: build/serializers.py:1284 company/models.py:639 order/api.py:316 +#: order/api.py:321 order/api.py:549 order/serializers.py:661 #: stock/models.py:1036 stock/serializers.py:579 msgid "Supplier Part" msgstr "" -#: build/serializers.py:1284 stock/serializers.py:620 +#: build/serializers.py:1292 stock/serializers.py:620 msgid "Allocated Quantity" msgstr "" -#: build/serializers.py:1351 +#: build/serializers.py:1359 msgid "Build Reference" msgstr "" -#: build/serializers.py:1361 +#: build/serializers.py:1369 msgid "Part Category Name" msgstr "" -#: build/serializers.py:1383 common/setting/system.py:480 part/models.py:1214 +#: build/serializers.py:1391 common/setting/system.py:480 part/models.py:1302 msgid "Trackable" msgstr "" -#: build/serializers.py:1386 +#: build/serializers.py:1394 msgid "Inherited" msgstr "" -#: build/serializers.py:1389 part/models.py:4475 +#: build/serializers.py:1397 part/models.py:4100 msgid "Allow Variants" msgstr "" -#: build/serializers.py:1395 build/serializers.py:1400 part/models.py:4208 -#: part/models.py:4779 stock/api.py:882 +#: build/serializers.py:1403 build/serializers.py:1408 part/models.py:3833 +#: part/models.py:4404 stock/api.py:882 msgid "BOM Item" msgstr "" -#: build/serializers.py:1467 order/serializers.py:1282 part/serializers.py:1310 -#: part/serializers.py:1765 +#: build/serializers.py:1475 order/serializers.py:1296 part/serializers.py:1175 +#: part/serializers.py:1630 msgid "In Production" msgstr "" -#: build/serializers.py:1469 part/serializers.py:950 part/serializers.py:1314 +#: build/serializers.py:1477 part/serializers.py:835 part/serializers.py:1179 msgid "Scheduled to Build" msgstr "" -#: build/serializers.py:1472 part/serializers.py:987 +#: build/serializers.py:1480 part/serializers.py:872 msgid "External Stock" msgstr "" -#: build/serializers.py:1473 part/serializers.py:1300 part/serializers.py:1808 +#: build/serializers.py:1481 part/serializers.py:1165 part/serializers.py:1673 msgid "Available Stock" msgstr "" -#: build/serializers.py:1475 +#: build/serializers.py:1483 msgid "Available Substitute Stock" msgstr "" -#: build/serializers.py:1478 +#: build/serializers.py:1486 msgid "Available Variant Stock" msgstr "" -#: build/serializers.py:1752 +#: build/serializers.py:1760 msgid "Consumed quantity exceeds allocated quantity" msgstr "" -#: build/serializers.py:1789 +#: build/serializers.py:1797 msgid "Optional notes for the stock consumption" msgstr "" -#: build/serializers.py:1806 +#: build/serializers.py:1814 msgid "Build item must point to the correct build order" msgstr "" -#: build/serializers.py:1811 +#: build/serializers.py:1819 msgid "Duplicate build item allocation" msgstr "" -#: build/serializers.py:1829 +#: build/serializers.py:1837 msgid "Build line must point to the correct build order" msgstr "" -#: build/serializers.py:1834 +#: build/serializers.py:1842 msgid "Duplicate build line allocation" msgstr "" -#: build/serializers.py:1846 +#: build/serializers.py:1854 msgid "At least one item or line must be provided" msgstr "" @@ -1482,702 +1498,826 @@ msgstr "" msgid "Build order {bo} is now overdue" msgstr "" -#: common/api.py:694 +#: common/api.py:701 msgid "Is Link" msgstr "" -#: common/api.py:702 +#: common/api.py:709 msgid "Is File" msgstr "" -#: common/api.py:745 +#: common/api.py:756 msgid "User does not have permission to delete these attachments" msgstr "" -#: common/api.py:762 +#: common/api.py:769 msgid "User does not have permission to delete this attachment" msgstr "" -#: common/currency.py:122 +#: common/currency.py:130 msgid "Invalid currency code" msgstr "" -#: common/currency.py:124 +#: common/currency.py:132 msgid "Duplicate currency code" msgstr "" -#: common/currency.py:129 +#: common/currency.py:137 msgid "No valid currency codes provided" msgstr "" -#: common/currency.py:146 +#: common/currency.py:154 msgid "No plugin" msgstr "" -#: common/models.py:101 common/models.py:126 common/models.py:2729 +#: common/models.py:105 common/models.py:130 common/models.py:3150 msgid "Updated" msgstr "" -#: common/models.py:102 common/models.py:127 +#: common/models.py:106 common/models.py:131 msgid "Timestamp of last update" msgstr "" -#: common/models.py:139 +#: common/models.py:143 msgid "Update By" msgstr "" -#: common/models.py:140 +#: common/models.py:144 msgid "User who last updated this object" msgstr "" -#: common/models.py:165 +#: common/models.py:169 msgid "Unique project code" msgstr "" -#: common/models.py:172 +#: common/models.py:176 msgid "Project description" msgstr "" -#: common/models.py:181 +#: common/models.py:185 msgid "User or group responsible for this project" msgstr "" -#: common/models.py:771 common/models.py:1272 common/models.py:1310 +#: common/models.py:775 common/models.py:1276 common/models.py:1314 msgid "Settings key" msgstr "" -#: common/models.py:775 +#: common/models.py:779 msgid "Settings value" msgstr "" -#: common/models.py:830 +#: common/models.py:834 msgid "Chosen value is not a valid option" msgstr "" -#: common/models.py:846 +#: common/models.py:850 msgid "Value must be a boolean value" msgstr "" -#: common/models.py:854 +#: common/models.py:858 msgid "Value must be an integer value" msgstr "" -#: common/models.py:862 +#: common/models.py:866 msgid "Value must be a valid number" msgstr "" -#: common/models.py:887 +#: common/models.py:891 msgid "Value does not pass validation checks" msgstr "" -#: common/models.py:909 +#: common/models.py:913 msgid "Key string must be unique" msgstr "" -#: common/models.py:1318 common/models.py:1319 common/models.py:1423 -#: common/models.py:1424 common/models.py:1669 common/models.py:1670 -#: common/models.py:2000 common/models.py:2001 common/models.py:2382 -#: importer/models.py:100 part/models.py:3547 part/models.py:3575 +#: common/models.py:1322 common/models.py:1323 common/models.py:1427 +#: common/models.py:1428 common/models.py:1673 common/models.py:1674 +#: common/models.py:2006 common/models.py:2007 common/models.py:2803 +#: importer/models.py:100 part/models.py:3611 part/models.py:3639 #: plugin/models.py:355 plugin/models.py:356 #: report/templates/report/inventree_test_report.html:105 users/models.py:124 #: users/models.py:501 msgid "User" msgstr "משתמש" -#: common/models.py:1341 +#: common/models.py:1345 msgid "Price break quantity" msgstr "" -#: common/models.py:1348 company/serializers.py:564 order/models.py:1842 -#: order/models.py:3043 +#: common/models.py:1352 company/serializers.py:349 order/models.py:1843 +#: order/models.py:3044 msgid "Price" msgstr "" -#: common/models.py:1349 +#: common/models.py:1353 msgid "Unit price at specified quantity" msgstr "" -#: common/models.py:1400 common/models.py:1585 +#: common/models.py:1404 common/models.py:1589 msgid "Endpoint" msgstr "" -#: common/models.py:1401 +#: common/models.py:1405 msgid "Endpoint at which this webhook is received" msgstr "" -#: common/models.py:1411 +#: common/models.py:1415 msgid "Name for this webhook" msgstr "" -#: common/models.py:1415 common/models.py:2241 common/models.py:2348 -#: company/models.py:191 company/models.py:822 machine/models.py:40 -#: part/models.py:1237 plugin/models.py:69 stock/api.py:642 users/models.py:195 +#: common/models.py:1419 common/models.py:2247 common/models.py:2354 +#: company/models.py:192 company/models.py:776 machine/models.py:40 +#: part/models.py:1325 plugin/models.py:69 stock/api.py:642 users/models.py:195 #: users/models.py:554 users/serializers.py:314 msgid "Active" msgstr "" -#: common/models.py:1415 +#: common/models.py:1419 msgid "Is this webhook active" msgstr "" -#: common/models.py:1431 users/models.py:172 +#: common/models.py:1435 users/models.py:172 msgid "Token" msgstr "" -#: common/models.py:1432 +#: common/models.py:1436 msgid "Token for access" msgstr "" -#: common/models.py:1440 +#: common/models.py:1444 msgid "Secret" msgstr "" -#: common/models.py:1441 +#: common/models.py:1445 msgid "Shared secret for HMAC" msgstr "" -#: common/models.py:1549 common/models.py:2619 +#: common/models.py:1553 common/models.py:3040 msgid "Message ID" msgstr "" -#: common/models.py:1550 common/models.py:2609 +#: common/models.py:1554 common/models.py:3030 msgid "Unique identifier for this message" msgstr "" -#: common/models.py:1558 +#: common/models.py:1562 msgid "Host" msgstr "" -#: common/models.py:1559 +#: common/models.py:1563 msgid "Host from which this message was received" msgstr "" -#: common/models.py:1567 +#: common/models.py:1571 msgid "Header" msgstr "" -#: common/models.py:1568 +#: common/models.py:1572 msgid "Header of this message" msgstr "" -#: common/models.py:1575 +#: common/models.py:1579 msgid "Body" msgstr "" -#: common/models.py:1576 +#: common/models.py:1580 msgid "Body of this message" msgstr "" -#: common/models.py:1586 +#: common/models.py:1590 msgid "Endpoint on which this message was received" msgstr "" -#: common/models.py:1591 +#: common/models.py:1595 msgid "Worked on" msgstr "" -#: common/models.py:1592 +#: common/models.py:1596 msgid "Was the work on this message finished?" msgstr "" -#: common/models.py:1718 +#: common/models.py:1722 msgid "Id" msgstr "" -#: common/models.py:1720 +#: common/models.py:1724 msgid "Title" msgstr "" -#: common/models.py:1722 common/models.py:1983 company/models.py:185 -#: company/models.py:467 company/models.py:534 company/models.py:839 -#: order/models.py:457 order/models.py:1786 order/models.py:2343 -#: part/models.py:1113 +#: common/models.py:1726 common/models.py:1989 company/models.py:186 +#: company/models.py:468 company/models.py:536 company/models.py:793 +#: order/models.py:458 order/models.py:1787 order/models.py:2344 +#: part/models.py:1201 #: report/templates/report/inventree_build_order_report.html:164 msgid "Link" msgstr "קישור" -#: common/models.py:1724 +#: common/models.py:1728 msgid "Published" msgstr "" -#: common/models.py:1726 +#: common/models.py:1730 msgid "Author" msgstr "" -#: common/models.py:1728 +#: common/models.py:1732 msgid "Summary" msgstr "" -#: common/models.py:1731 common/models.py:2586 +#: common/models.py:1735 common/models.py:3007 msgid "Read" msgstr "" -#: common/models.py:1731 +#: common/models.py:1735 msgid "Was this news item read?" msgstr "" -#: common/models.py:1748 +#: common/models.py:1752 msgid "Image file" msgstr "" -#: common/models.py:1760 +#: common/models.py:1764 msgid "Target model type for this image" msgstr "" -#: common/models.py:1764 +#: common/models.py:1768 msgid "Target model ID for this image" msgstr "" -#: common/models.py:1786 +#: common/models.py:1790 msgid "Custom Unit" msgstr "" -#: common/models.py:1804 +#: common/models.py:1808 msgid "Unit symbol must be unique" msgstr "" -#: common/models.py:1819 +#: common/models.py:1823 msgid "Unit name must be a valid identifier" msgstr "" -#: common/models.py:1838 +#: common/models.py:1842 msgid "Unit name" msgstr "" -#: common/models.py:1845 +#: common/models.py:1849 msgid "Symbol" msgstr "" -#: common/models.py:1846 +#: common/models.py:1850 msgid "Optional unit symbol" msgstr "" -#: common/models.py:1852 +#: common/models.py:1856 msgid "Definition" msgstr "" -#: common/models.py:1853 +#: common/models.py:1857 msgid "Unit definition" msgstr "" -#: common/models.py:1911 common/models.py:1974 stock/models.py:2967 +#: common/models.py:1917 common/models.py:1980 stock/models.py:2984 #: stock/serializers.py:247 msgid "Attachment" msgstr "קובץ מצורף" -#: common/models.py:1928 +#: common/models.py:1934 msgid "Missing file" msgstr "קובץ חסר" -#: common/models.py:1929 +#: common/models.py:1935 msgid "Missing external link" msgstr "חסר קישור חיצוני" -#: common/models.py:1966 +#: common/models.py:1972 common/models.py:2488 msgid "Model type" msgstr "" -#: common/models.py:1967 +#: common/models.py:1973 msgid "Target model type for image" msgstr "" -#: common/models.py:1975 +#: common/models.py:1981 msgid "Select file to attach" msgstr "בחר קובץ לצירוף" -#: common/models.py:1991 +#: common/models.py:1997 msgid "Comment" msgstr "הערה" -#: common/models.py:1992 +#: common/models.py:1998 msgid "Attachment comment" msgstr "" -#: common/models.py:2008 +#: common/models.py:2014 msgid "Upload date" msgstr "" -#: common/models.py:2009 +#: common/models.py:2015 msgid "Date the file was uploaded" msgstr "" -#: common/models.py:2013 +#: common/models.py:2019 msgid "File size" msgstr "" -#: common/models.py:2013 +#: common/models.py:2019 msgid "File size in bytes" msgstr "" -#: common/models.py:2051 common/serializers.py:684 +#: common/models.py:2057 common/serializers.py:688 msgid "Invalid model type specified for attachment" msgstr "" -#: common/models.py:2072 +#: common/models.py:2078 msgid "Custom State" msgstr "" -#: common/models.py:2073 +#: common/models.py:2079 msgid "Custom States" msgstr "" -#: common/models.py:2078 +#: common/models.py:2084 msgid "Reference Status Set" msgstr "" -#: common/models.py:2079 +#: common/models.py:2085 msgid "Status set that is extended with this custom state" msgstr "" -#: common/models.py:2083 generic/states/serializers.py:18 +#: common/models.py:2089 generic/states/serializers.py:18 msgid "Logical Key" msgstr "" -#: common/models.py:2085 +#: common/models.py:2091 msgid "State logical key that is equal to this custom state in business logic" msgstr "" -#: common/models.py:2090 common/models.py:2329 company/models.py:622 -#: machine/serializers.py:27 -#: report/templates/report/inventree_test_report.html:104 stock/models.py:2959 +#: common/models.py:2096 common/models.py:2335 machine/serializers.py:27 +#: report/templates/report/inventree_test_report.html:104 stock/models.py:2976 msgid "Value" msgstr "" -#: common/models.py:2091 +#: common/models.py:2097 msgid "Numerical value that will be saved in the models database" msgstr "" -#: common/models.py:2097 +#: common/models.py:2103 msgid "Name of the state" msgstr "" -#: common/models.py:2106 common/models.py:2335 generic/states/serializers.py:22 +#: common/models.py:2112 common/models.py:2341 generic/states/serializers.py:22 msgid "Label" msgstr "" -#: common/models.py:2107 +#: common/models.py:2113 msgid "Label that will be displayed in the frontend" msgstr "" -#: common/models.py:2114 generic/states/serializers.py:24 +#: common/models.py:2120 generic/states/serializers.py:24 msgid "Color" msgstr "" -#: common/models.py:2115 +#: common/models.py:2121 msgid "Color that will be displayed in the frontend" msgstr "" -#: common/models.py:2123 +#: common/models.py:2129 msgid "Model" msgstr "" -#: common/models.py:2124 +#: common/models.py:2130 msgid "Model this state is associated with" msgstr "" -#: common/models.py:2139 +#: common/models.py:2145 msgid "Model must be selected" msgstr "" -#: common/models.py:2142 +#: common/models.py:2148 msgid "Key must be selected" msgstr "" -#: common/models.py:2145 +#: common/models.py:2151 msgid "Logical key must be selected" msgstr "" -#: common/models.py:2149 +#: common/models.py:2155 msgid "Key must be different from logical key" msgstr "" -#: common/models.py:2156 +#: common/models.py:2162 msgid "Valid reference status class must be provided" msgstr "" -#: common/models.py:2162 +#: common/models.py:2168 msgid "Key must be different from the logical keys of the reference status" msgstr "" -#: common/models.py:2169 +#: common/models.py:2175 msgid "Logical key must be in the logical keys of the reference status" msgstr "" -#: common/models.py:2176 +#: common/models.py:2182 msgid "Name must be different from the names of the reference status" msgstr "" -#: common/models.py:2216 common/models.py:2323 part/models.py:3889 +#: common/models.py:2222 common/models.py:2329 common/models.py:2533 msgid "Selection List" msgstr "" -#: common/models.py:2217 +#: common/models.py:2223 msgid "Selection Lists" msgstr "" -#: common/models.py:2222 +#: common/models.py:2228 msgid "Name of the selection list" msgstr "" -#: common/models.py:2229 +#: common/models.py:2235 msgid "Description of the selection list" msgstr "" -#: common/models.py:2235 part/models.py:1242 +#: common/models.py:2241 part/models.py:1330 msgid "Locked" msgstr "" -#: common/models.py:2236 +#: common/models.py:2242 msgid "Is this selection list locked?" msgstr "" -#: common/models.py:2242 +#: common/models.py:2248 msgid "Can this selection list be used?" msgstr "" -#: common/models.py:2250 +#: common/models.py:2256 msgid "Source Plugin" msgstr "" -#: common/models.py:2251 +#: common/models.py:2257 msgid "Plugin which provides the selection list" msgstr "" -#: common/models.py:2256 +#: common/models.py:2262 msgid "Source String" msgstr "" -#: common/models.py:2257 +#: common/models.py:2263 msgid "Optional string identifying the source used for this list" msgstr "" -#: common/models.py:2266 +#: common/models.py:2272 msgid "Default Entry" msgstr "" -#: common/models.py:2267 +#: common/models.py:2273 msgid "Default entry for this selection list" msgstr "" -#: common/models.py:2272 common/models.py:2724 +#: common/models.py:2278 common/models.py:3145 msgid "Created" msgstr "" -#: common/models.py:2273 +#: common/models.py:2279 msgid "Date and time that the selection list was created" msgstr "" -#: common/models.py:2278 +#: common/models.py:2284 msgid "Last Updated" msgstr "" -#: common/models.py:2279 +#: common/models.py:2285 msgid "Date and time that the selection list was last updated" msgstr "" -#: common/models.py:2313 +#: common/models.py:2319 msgid "Selection List Entry" msgstr "" -#: common/models.py:2314 +#: common/models.py:2320 msgid "Selection List Entries" msgstr "" -#: common/models.py:2324 +#: common/models.py:2330 msgid "Selection list to which this entry belongs" msgstr "" -#: common/models.py:2330 +#: common/models.py:2336 msgid "Value of the selection list entry" msgstr "" -#: common/models.py:2336 +#: common/models.py:2342 msgid "Label for the selection list entry" msgstr "" -#: common/models.py:2342 +#: common/models.py:2348 msgid "Description of the selection list entry" msgstr "" -#: common/models.py:2349 +#: common/models.py:2355 msgid "Is this selection list entry active?" msgstr "" -#: common/models.py:2367 -msgid "Barcode Scan" +#: common/models.py:2387 +msgid "Parameter Template" msgstr "" -#: common/models.py:2371 importer/models.py:546 part/models.py:4060 -msgid "Data" +#: common/models.py:2388 +msgid "Parameter Templates" msgstr "" -#: common/models.py:2372 -msgid "Barcode data" +#: common/models.py:2425 +msgid "Checkbox parameters cannot have units" msgstr "" -#: common/models.py:2383 -msgid "User who scanned the barcode" +#: common/models.py:2430 +msgid "Checkbox parameters cannot have choices" msgstr "" -#: common/models.py:2388 importer/models.py:69 -msgid "Timestamp" +#: common/models.py:2450 part/models.py:3707 +msgid "Choices must be unique" msgstr "" -#: common/models.py:2389 -msgid "Date and time of the barcode scan" +#: common/models.py:2467 +msgid "Parameter template name must be unique" msgstr "" -#: common/models.py:2395 -msgid "URL endpoint which processed the barcode" +#: common/models.py:2489 +msgid "Target model type for this parameter template" msgstr "" -#: common/models.py:2402 order/models.py:1832 plugin/serializers.py:93 -msgid "Context" +#: common/models.py:2495 +msgid "Parameter Name" msgstr "" -#: common/models.py:2403 -msgid "Context data for the barcode scan" +#: common/models.py:2501 part/models.py:1283 +msgid "Units" msgstr "" -#: common/models.py:2410 -msgid "Response" +#: common/models.py:2502 +msgid "Physical units for this parameter" msgstr "" -#: common/models.py:2411 -msgid "Response data from the barcode scan" +#: common/models.py:2510 +msgid "Parameter description" msgstr "" -#: common/models.py:2417 report/templates/report/inventree_test_report.html:103 -#: stock/models.py:2953 -msgid "Result" +#: common/models.py:2516 +msgid "Checkbox" msgstr "" -#: common/models.py:2418 -msgid "Was the barcode scan successful?" +#: common/models.py:2517 +msgid "Is this parameter a checkbox?" msgstr "" -#: common/models.py:2500 -msgid "An error occurred" +#: common/models.py:2522 part/models.py:3794 +msgid "Choices" msgstr "" -#: common/models.py:2521 -msgid "INVE-E8: Email log deletion is protected. Set INVENTREE_PROTECT_EMAIL_LOG to False to allow deletion." +#: common/models.py:2523 +msgid "Valid choices for this parameter (comma-separated)" msgstr "" -#: common/models.py:2568 -msgid "Email Message" +#: common/models.py:2534 +msgid "Selection list for this parameter" msgstr "" -#: common/models.py:2569 -msgid "Email Messages" +#: common/models.py:2539 part/models.py:3769 report/models.py:287 +msgid "Enabled" msgstr "" -#: common/models.py:2576 -msgid "Announced" +#: common/models.py:2540 +msgid "Is this parameter template enabled?" msgstr "" -#: common/models.py:2578 -msgid "Sent" -msgstr "" - -#: common/models.py:2579 -msgid "Failed" +#: common/models.py:2581 +msgid "Parameter" msgstr "" #: common/models.py:2582 -msgid "Delivered" -msgstr "" - -#: common/models.py:2590 -msgid "Confirmed" -msgstr "" - -#: common/models.py:2596 -msgid "Inbound" -msgstr "" - -#: common/models.py:2597 -msgid "Outbound" -msgstr "" - -#: common/models.py:2602 -msgid "No Reply" -msgstr "" - -#: common/models.py:2603 -msgid "Track Delivery" -msgstr "" - -#: common/models.py:2604 -msgid "Track Read" -msgstr "" - -#: common/models.py:2605 -msgid "Track Click" -msgstr "" - -#: common/models.py:2608 common/models.py:2711 -msgid "Global ID" -msgstr "" - -#: common/models.py:2621 -msgid "Identifier for this message (might be supplied by external system)" +msgid "Parameters" msgstr "" #: common/models.py:2628 +msgid "Invalid choice for parameter value" +msgstr "" + +#: common/models.py:2698 common/serializers.py:783 +msgid "Invalid model type specified for parameter" +msgstr "" + +#: common/models.py:2734 +msgid "Model ID" +msgstr "" + +#: common/models.py:2735 +msgid "ID of the target model for this parameter" +msgstr "" + +#: common/models.py:2744 common/setting/system.py:450 report/models.py:373 +#: report/models.py:669 report/serializers.py:94 report/serializers.py:135 +#: stock/serializers.py:234 +msgid "Template" +msgstr "" + +#: common/models.py:2745 +msgid "Parameter template" +msgstr "" + +#: common/models.py:2750 common/models.py:2792 importer/models.py:546 +msgid "Data" +msgstr "" + +#: common/models.py:2751 +msgid "Parameter Value" +msgstr "" + +#: common/models.py:2760 company/models.py:810 order/serializers.py:894 +#: order/serializers.py:2064 part/models.py:4075 part/models.py:4444 +#: report/templates/report/inventree_bill_of_materials_report.html:140 +#: report/templates/report/inventree_purchase_order_report.html:39 +#: report/templates/report/inventree_return_order_report.html:27 +#: report/templates/report/inventree_sales_order_report.html:32 +#: report/templates/report/inventree_stock_location_report.html:105 +#: stock/serializers.py:813 +msgid "Note" +msgstr "" + +#: common/models.py:2761 stock/serializers.py:718 +msgid "Optional note field" +msgstr "" + +#: common/models.py:2788 +msgid "Barcode Scan" +msgstr "" + +#: common/models.py:2793 +msgid "Barcode data" +msgstr "" + +#: common/models.py:2804 +msgid "User who scanned the barcode" +msgstr "" + +#: common/models.py:2809 importer/models.py:69 +msgid "Timestamp" +msgstr "" + +#: common/models.py:2810 +msgid "Date and time of the barcode scan" +msgstr "" + +#: common/models.py:2816 +msgid "URL endpoint which processed the barcode" +msgstr "" + +#: common/models.py:2823 order/models.py:1833 plugin/serializers.py:93 +msgid "Context" +msgstr "" + +#: common/models.py:2824 +msgid "Context data for the barcode scan" +msgstr "" + +#: common/models.py:2831 +msgid "Response" +msgstr "" + +#: common/models.py:2832 +msgid "Response data from the barcode scan" +msgstr "" + +#: common/models.py:2838 report/templates/report/inventree_test_report.html:103 +#: stock/models.py:2970 +msgid "Result" +msgstr "" + +#: common/models.py:2839 +msgid "Was the barcode scan successful?" +msgstr "" + +#: common/models.py:2921 +msgid "An error occurred" +msgstr "" + +#: common/models.py:2942 +msgid "INVE-E8: Email log deletion is protected. Set INVENTREE_PROTECT_EMAIL_LOG to False to allow deletion." +msgstr "" + +#: common/models.py:2989 +msgid "Email Message" +msgstr "" + +#: common/models.py:2990 +msgid "Email Messages" +msgstr "" + +#: common/models.py:2997 +msgid "Announced" +msgstr "" + +#: common/models.py:2999 +msgid "Sent" +msgstr "" + +#: common/models.py:3000 +msgid "Failed" +msgstr "" + +#: common/models.py:3003 +msgid "Delivered" +msgstr "" + +#: common/models.py:3011 +msgid "Confirmed" +msgstr "" + +#: common/models.py:3017 +msgid "Inbound" +msgstr "" + +#: common/models.py:3018 +msgid "Outbound" +msgstr "" + +#: common/models.py:3023 +msgid "No Reply" +msgstr "" + +#: common/models.py:3024 +msgid "Track Delivery" +msgstr "" + +#: common/models.py:3025 +msgid "Track Read" +msgstr "" + +#: common/models.py:3026 +msgid "Track Click" +msgstr "" + +#: common/models.py:3029 common/models.py:3132 +msgid "Global ID" +msgstr "" + +#: common/models.py:3042 +msgid "Identifier for this message (might be supplied by external system)" +msgstr "" + +#: common/models.py:3049 msgid "Thread ID" msgstr "" -#: common/models.py:2630 +#: common/models.py:3051 msgid "Identifier for this message thread (might be supplied by external system)" msgstr "" -#: common/models.py:2639 +#: common/models.py:3060 msgid "Thread" msgstr "" -#: common/models.py:2640 +#: common/models.py:3061 msgid "Linked thread for this message" msgstr "" -#: common/models.py:2656 -msgid "Prioriy" +#: common/models.py:3077 +msgid "Priority" msgstr "" -#: common/models.py:2698 +#: common/models.py:3119 msgid "Email Thread" msgstr "" -#: common/models.py:2699 +#: common/models.py:3120 msgid "Email Threads" msgstr "" -#: common/models.py:2705 generic/states/serializers.py:16 +#: common/models.py:3126 generic/states/serializers.py:16 #: machine/serializers.py:24 plugin/models.py:46 users/models.py:113 msgid "Key" msgstr "" -#: common/models.py:2708 +#: common/models.py:3129 msgid "Unique key for this thread (used to identify the thread)" msgstr "" -#: common/models.py:2712 +#: common/models.py:3133 msgid "Unique identifier for this thread" msgstr "" -#: common/models.py:2719 +#: common/models.py:3140 msgid "Started Internal" msgstr "" -#: common/models.py:2720 +#: common/models.py:3141 msgid "Was this thread started internally?" msgstr "" -#: common/models.py:2725 +#: common/models.py:3146 msgid "Date and time that the thread was created" msgstr "" -#: common/models.py:2730 +#: common/models.py:3151 msgid "Date and time that the thread was last updated" msgstr "" @@ -2199,7 +2339,7 @@ msgstr "" msgid "A order that is assigned to you was canceled" msgstr "" -#: common/notifications.py:73 common/notifications.py:80 order/api.py:594 +#: common/notifications.py:73 common/notifications.py:80 order/api.py:600 msgid "Items Received" msgstr "" @@ -2211,88 +2351,93 @@ msgstr "" msgid "Items have been received against a return order" msgstr "" -#: common/serializers.py:145 +#: common/serializers.py:149 msgid "Indicates if the setting is overridden by an environment variable" msgstr "" -#: common/serializers.py:147 +#: common/serializers.py:151 msgid "Override" msgstr "" -#: common/serializers.py:498 +#: common/serializers.py:502 msgid "Is Running" msgstr "" -#: common/serializers.py:504 +#: common/serializers.py:508 msgid "Pending Tasks" msgstr "" -#: common/serializers.py:510 +#: common/serializers.py:514 msgid "Scheduled Tasks" msgstr "" -#: common/serializers.py:516 +#: common/serializers.py:520 msgid "Failed Tasks" msgstr "" -#: common/serializers.py:531 +#: common/serializers.py:535 msgid "Task ID" msgstr "" -#: common/serializers.py:531 +#: common/serializers.py:535 msgid "Unique task ID" msgstr "" -#: common/serializers.py:533 +#: common/serializers.py:537 msgid "Lock" msgstr "" -#: common/serializers.py:533 +#: common/serializers.py:537 msgid "Lock time" msgstr "" -#: common/serializers.py:535 +#: common/serializers.py:539 msgid "Task name" msgstr "" -#: common/serializers.py:537 +#: common/serializers.py:541 msgid "Function" msgstr "" -#: common/serializers.py:537 +#: common/serializers.py:541 msgid "Function name" msgstr "" -#: common/serializers.py:539 +#: common/serializers.py:543 msgid "Arguments" msgstr "" -#: common/serializers.py:539 +#: common/serializers.py:543 msgid "Task arguments" msgstr "" -#: common/serializers.py:542 +#: common/serializers.py:546 msgid "Keyword Arguments" msgstr "" -#: common/serializers.py:542 +#: common/serializers.py:546 msgid "Task keyword arguments" msgstr "" -#: common/serializers.py:652 +#: common/serializers.py:656 msgid "Filename" msgstr "שם קובץ" -#: common/serializers.py:659 importer/models.py:89 report/api.py:41 +#: common/serializers.py:663 common/serializers.py:730 +#: common/serializers.py:805 importer/models.py:89 report/api.py:41 #: report/models.py:293 report/serializers.py:52 msgid "Model Type" msgstr "" -#: common/serializers.py:687 +#: common/serializers.py:691 msgid "User does not have permission to create or edit attachments for this model" msgstr "" -#: common/serializers.py:731 common/serializers.py:834 +#: common/serializers.py:786 +msgid "User does not have permission to create or edit parameters for this model" +msgstr "" + +#: common/serializers.py:850 common/serializers.py:953 msgid "Selection list is locked" msgstr "" @@ -2368,7 +2513,7 @@ msgstr "" msgid "Show the `about` modal only to superusers" msgstr "" -#: common/setting/system.py:224 company/models.py:144 company/models.py:145 +#: common/setting/system.py:224 company/models.py:145 company/models.py:146 msgid "Company name" msgstr "" @@ -2411,8 +2556,8 @@ msgstr "" #: common/setting/system.py:253 common/setting/system.py:293 #: common/setting/system.py:306 common/setting/system.py:314 #: common/setting/system.py:321 common/setting/system.py:330 -#: common/setting/system.py:339 common/setting/system.py:588 -#: common/setting/system.py:616 common/setting/system.py:707 +#: common/setting/system.py:339 common/setting/system.py:580 +#: common/setting/system.py:608 common/setting/system.py:707 #: common/setting/system.py:1103 common/setting/system.py:1119 msgid "days" msgstr "" @@ -2657,12 +2802,6 @@ msgstr "" msgid "Copy category parameter templates when creating a part" msgstr "" -#: common/setting/system.py:450 part/models.py:4054 report/models.py:373 -#: report/models.py:669 report/serializers.py:94 report/serializers.py:135 -#: stock/serializers.py:234 -msgid "Template" -msgstr "" - #: common/setting/system.py:451 msgid "Parts are templates by default" msgstr "" @@ -2671,8 +2810,8 @@ msgstr "" msgid "Parts can be assembled from other components by default" msgstr "" -#: common/setting/system.py:462 part/models.py:1208 part/serializers.py:1734 -#: part/serializers.py:1741 +#: common/setting/system.py:462 part/models.py:1296 part/serializers.py:1599 +#: part/serializers.py:1606 msgid "Component" msgstr "" @@ -2680,7 +2819,7 @@ msgstr "" msgid "Parts can be used as sub-components by default" msgstr "" -#: common/setting/system.py:468 part/models.py:1226 +#: common/setting/system.py:468 part/models.py:1314 msgid "Purchaseable" msgstr "" @@ -2688,7 +2827,7 @@ msgstr "" msgid "Parts are purchaseable by default" msgstr "" -#: common/setting/system.py:474 part/models.py:1232 stock/api.py:643 +#: common/setting/system.py:474 part/models.py:1320 stock/api.py:643 msgid "Salable" msgstr "" @@ -2700,7 +2839,7 @@ msgstr "" msgid "Parts are trackable by default" msgstr "" -#: common/setting/system.py:486 part/models.py:1248 +#: common/setting/system.py:486 part/models.py:1336 msgid "Virtual" msgstr "" @@ -2749,158 +2888,158 @@ msgid "Part category default icon (empty means no icon)" msgstr "" #: common/setting/system.py:525 -msgid "Enforce Parameter Units" -msgstr "" - -#: common/setting/system.py:527 -msgid "If units are provided, parameter values must match the specified units" -msgstr "" - -#: common/setting/system.py:533 msgid "Minimum Pricing Decimal Places" msgstr "" -#: common/setting/system.py:535 +#: common/setting/system.py:527 msgid "Minimum number of decimal places to display when rendering pricing data" msgstr "" -#: common/setting/system.py:546 +#: common/setting/system.py:538 msgid "Maximum Pricing Decimal Places" msgstr "" -#: common/setting/system.py:548 +#: common/setting/system.py:540 msgid "Maximum number of decimal places to display when rendering pricing data" msgstr "" -#: common/setting/system.py:559 +#: common/setting/system.py:551 msgid "Use Supplier Pricing" msgstr "" -#: common/setting/system.py:561 +#: common/setting/system.py:553 msgid "Include supplier price breaks in overall pricing calculations" msgstr "" -#: common/setting/system.py:567 +#: common/setting/system.py:559 msgid "Purchase History Override" msgstr "" -#: common/setting/system.py:569 +#: common/setting/system.py:561 msgid "Historical purchase order pricing overrides supplier price breaks" msgstr "" -#: common/setting/system.py:575 +#: common/setting/system.py:567 msgid "Use Stock Item Pricing" msgstr "" -#: common/setting/system.py:577 +#: common/setting/system.py:569 msgid "Use pricing from manually entered stock data for pricing calculations" msgstr "" -#: common/setting/system.py:583 +#: common/setting/system.py:575 msgid "Stock Item Pricing Age" msgstr "" -#: common/setting/system.py:585 +#: common/setting/system.py:577 msgid "Exclude stock items older than this number of days from pricing calculations" msgstr "" -#: common/setting/system.py:592 +#: common/setting/system.py:584 msgid "Use Variant Pricing" msgstr "" -#: common/setting/system.py:593 +#: common/setting/system.py:585 msgid "Include variant pricing in overall pricing calculations" msgstr "" -#: common/setting/system.py:598 +#: common/setting/system.py:590 msgid "Active Variants Only" msgstr "" -#: common/setting/system.py:600 +#: common/setting/system.py:592 msgid "Only use active variant parts for calculating variant pricing" msgstr "" -#: common/setting/system.py:606 +#: common/setting/system.py:598 msgid "Auto Update Pricing" msgstr "" -#: common/setting/system.py:608 +#: common/setting/system.py:600 msgid "Automatically update part pricing when internal data changes" msgstr "" -#: common/setting/system.py:614 +#: common/setting/system.py:606 msgid "Pricing Rebuild Interval" msgstr "" -#: common/setting/system.py:615 +#: common/setting/system.py:607 msgid "Number of days before part pricing is automatically updated" msgstr "" -#: common/setting/system.py:621 +#: common/setting/system.py:613 msgid "Internal Prices" msgstr "" -#: common/setting/system.py:622 +#: common/setting/system.py:614 msgid "Enable internal prices for parts" msgstr "" -#: common/setting/system.py:627 +#: common/setting/system.py:619 msgid "Internal Price Override" msgstr "" -#: common/setting/system.py:629 +#: common/setting/system.py:621 msgid "If available, internal prices override price range calculations" msgstr "" -#: common/setting/system.py:635 +#: common/setting/system.py:627 msgid "Enable label printing" msgstr "" -#: common/setting/system.py:636 +#: common/setting/system.py:628 msgid "Enable label printing from the web interface" msgstr "" -#: common/setting/system.py:641 +#: common/setting/system.py:633 msgid "Label Image DPI" msgstr "" -#: common/setting/system.py:643 +#: common/setting/system.py:635 msgid "DPI resolution when generating image files to supply to label printing plugins" msgstr "" -#: common/setting/system.py:649 +#: common/setting/system.py:641 msgid "Enable Reports" msgstr "" -#: common/setting/system.py:650 +#: common/setting/system.py:642 msgid "Enable generation of reports" msgstr "" -#: common/setting/system.py:655 +#: common/setting/system.py:647 msgid "Debug Mode" msgstr "" -#: common/setting/system.py:656 +#: common/setting/system.py:648 msgid "Generate reports in debug mode (HTML output)" msgstr "" -#: common/setting/system.py:661 +#: common/setting/system.py:653 msgid "Log Report Errors" msgstr "" -#: common/setting/system.py:662 +#: common/setting/system.py:654 msgid "Log errors which occur when generating reports" msgstr "" -#: common/setting/system.py:667 plugin/builtin/labels/label_sheet.py:29 +#: common/setting/system.py:659 plugin/builtin/labels/label_sheet.py:29 #: report/models.py:381 msgid "Page Size" msgstr "" -#: common/setting/system.py:668 +#: common/setting/system.py:660 msgid "Default page size for PDF reports" msgstr "" +#: common/setting/system.py:665 +msgid "Enforce Parameter Units" +msgstr "" + +#: common/setting/system.py:667 +msgid "If units are provided, parameter values must match the specified units" +msgstr "" + #: common/setting/system.py:673 msgid "Globally Unique Serials" msgstr "" @@ -3456,688 +3595,677 @@ msgid "Display PDF reports in the browser, instead of downloading as a file" msgstr "" #: common/setting/user.py:45 -msgid "Search Parts" +msgid "Barcode Scanner in Form Fields" msgstr "" #: common/setting/user.py:46 -msgid "Display parts in search preview window" +msgid "Allow barcode scanner input in form fields" msgstr "" #: common/setting/user.py:51 -msgid "Search Supplier Parts" +msgid "Search Parts" msgstr "" #: common/setting/user.py:52 -msgid "Display supplier parts in search preview window" +msgid "Display parts in search preview window" msgstr "" #: common/setting/user.py:57 -msgid "Search Manufacturer Parts" +msgid "Search Supplier Parts" msgstr "" #: common/setting/user.py:58 -msgid "Display manufacturer parts in search preview window" +msgid "Display supplier parts in search preview window" msgstr "" #: common/setting/user.py:63 -msgid "Hide Inactive Parts" +msgid "Search Manufacturer Parts" msgstr "" #: common/setting/user.py:64 -msgid "Excluded inactive parts from search preview window" +msgid "Display manufacturer parts in search preview window" msgstr "" #: common/setting/user.py:69 -msgid "Search Categories" +msgid "Hide Inactive Parts" msgstr "" #: common/setting/user.py:70 -msgid "Display part categories in search preview window" +msgid "Excluded inactive parts from search preview window" msgstr "" #: common/setting/user.py:75 -msgid "Search Stock" +msgid "Search Categories" msgstr "" #: common/setting/user.py:76 -msgid "Display stock items in search preview window" +msgid "Display part categories in search preview window" msgstr "" #: common/setting/user.py:81 +msgid "Search Stock" +msgstr "" + +#: common/setting/user.py:82 +msgid "Display stock items in search preview window" +msgstr "" + +#: common/setting/user.py:87 msgid "Hide Unavailable Stock Items" msgstr "" -#: common/setting/user.py:83 +#: common/setting/user.py:89 msgid "Exclude stock items which are not available from the search preview window" msgstr "" -#: common/setting/user.py:89 +#: common/setting/user.py:95 msgid "Search Locations" msgstr "" -#: common/setting/user.py:90 +#: common/setting/user.py:96 msgid "Display stock locations in search preview window" msgstr "" -#: common/setting/user.py:95 +#: common/setting/user.py:101 msgid "Search Companies" msgstr "" -#: common/setting/user.py:96 +#: common/setting/user.py:102 msgid "Display companies in search preview window" msgstr "" -#: common/setting/user.py:101 +#: common/setting/user.py:107 msgid "Search Build Orders" msgstr "" -#: common/setting/user.py:102 +#: common/setting/user.py:108 msgid "Display build orders in search preview window" msgstr "" -#: common/setting/user.py:107 +#: common/setting/user.py:113 msgid "Search Purchase Orders" msgstr "" -#: common/setting/user.py:108 +#: common/setting/user.py:114 msgid "Display purchase orders in search preview window" msgstr "" -#: common/setting/user.py:113 +#: common/setting/user.py:119 msgid "Exclude Inactive Purchase Orders" msgstr "" -#: common/setting/user.py:114 +#: common/setting/user.py:120 msgid "Exclude inactive purchase orders from search preview window" msgstr "" -#: common/setting/user.py:119 +#: common/setting/user.py:125 msgid "Search Sales Orders" msgstr "" -#: common/setting/user.py:120 +#: common/setting/user.py:126 msgid "Display sales orders in search preview window" msgstr "" -#: common/setting/user.py:125 +#: common/setting/user.py:131 msgid "Exclude Inactive Sales Orders" msgstr "" -#: common/setting/user.py:126 +#: common/setting/user.py:132 msgid "Exclude inactive sales orders from search preview window" msgstr "" -#: common/setting/user.py:131 +#: common/setting/user.py:137 msgid "Search Sales Order Shipments" msgstr "" -#: common/setting/user.py:132 +#: common/setting/user.py:138 msgid "Display sales order shipments in search preview window" msgstr "" -#: common/setting/user.py:137 +#: common/setting/user.py:143 msgid "Search Return Orders" msgstr "" -#: common/setting/user.py:138 +#: common/setting/user.py:144 msgid "Display return orders in search preview window" msgstr "" -#: common/setting/user.py:143 +#: common/setting/user.py:149 msgid "Exclude Inactive Return Orders" msgstr "" -#: common/setting/user.py:144 +#: common/setting/user.py:150 msgid "Exclude inactive return orders from search preview window" msgstr "" -#: common/setting/user.py:149 +#: common/setting/user.py:155 msgid "Search Preview Results" msgstr "" -#: common/setting/user.py:151 +#: common/setting/user.py:157 msgid "Number of results to show in each section of the search preview window" msgstr "" -#: common/setting/user.py:157 +#: common/setting/user.py:163 msgid "Regex Search" msgstr "" -#: common/setting/user.py:158 +#: common/setting/user.py:164 msgid "Enable regular expressions in search queries" msgstr "" -#: common/setting/user.py:163 +#: common/setting/user.py:169 msgid "Whole Word Search" msgstr "" -#: common/setting/user.py:164 +#: common/setting/user.py:170 msgid "Search queries return results for whole word matches" msgstr "" -#: common/setting/user.py:169 +#: common/setting/user.py:175 msgid "Search Notes" msgstr "" -#: common/setting/user.py:171 +#: common/setting/user.py:177 msgid "Search queries return results for matches from the item's notes" msgstr "" -#: common/setting/user.py:177 +#: common/setting/user.py:183 msgid "Escape Key Closes Forms" msgstr "" -#: common/setting/user.py:178 +#: common/setting/user.py:184 msgid "Use the escape key to close modal forms" msgstr "" -#: common/setting/user.py:183 +#: common/setting/user.py:189 msgid "Fixed Navbar" msgstr "" -#: common/setting/user.py:184 +#: common/setting/user.py:190 msgid "The navbar position is fixed to the top of the screen" msgstr "" -#: common/setting/user.py:189 +#: common/setting/user.py:195 msgid "Fixed Table Headers" msgstr "" -#: common/setting/user.py:190 +#: common/setting/user.py:196 msgid "Table headers are fixed to the top of the table" msgstr "" -#: common/setting/user.py:195 +#: common/setting/user.py:201 msgid "Show Spotlight" msgstr "" -#: common/setting/user.py:196 +#: common/setting/user.py:202 msgid "Enable spotlight navigation functionality" msgstr "" -#: common/setting/user.py:201 +#: common/setting/user.py:207 msgid "Navigation Icons" msgstr "" -#: common/setting/user.py:202 +#: common/setting/user.py:208 msgid "Display icons in the navigation bar" msgstr "" -#: common/setting/user.py:207 +#: common/setting/user.py:213 msgid "Date Format" msgstr "" -#: common/setting/user.py:208 +#: common/setting/user.py:214 msgid "Preferred format for displaying dates" msgstr "" -#: common/setting/user.py:221 +#: common/setting/user.py:227 msgid "Show Stock History" msgstr "" -#: common/setting/user.py:222 +#: common/setting/user.py:228 msgid "Display stock history information in the part detail page" msgstr "" -#: common/setting/user.py:227 +#: common/setting/user.py:233 msgid "Show Last Breadcrumb" msgstr "" -#: common/setting/user.py:228 +#: common/setting/user.py:234 msgid "Show the current page in breadcrumbs" msgstr "" -#: common/setting/user.py:233 +#: common/setting/user.py:239 msgid "Show full stock location in tables" msgstr "" -#: common/setting/user.py:235 +#: common/setting/user.py:241 msgid "Disabled: The full location path is displayed as a hover tooltip. Enabled: The full location path is displayed as plain text." msgstr "" -#: common/setting/user.py:241 +#: common/setting/user.py:247 msgid "Show full part categories in tables" msgstr "" -#: common/setting/user.py:243 +#: common/setting/user.py:249 msgid "Disabled: The full category path is displayed as a hover tooltip. Enabled: The full category path is displayed as plain text." msgstr "" -#: common/setting/user.py:249 +#: common/setting/user.py:255 msgid "Receive error reports" msgstr "" -#: common/setting/user.py:250 +#: common/setting/user.py:256 msgid "Receive notifications for system errors" msgstr "" -#: common/setting/user.py:255 +#: common/setting/user.py:261 msgid "Last used printing machines" msgstr "" -#: common/setting/user.py:256 +#: common/setting/user.py:262 msgid "Save the last used printing machines for a user" msgstr "" -#: common/validators.py:34 +#: common/validators.py:38 +msgid "All models" +msgstr "" + +#: common/validators.py:63 msgid "No attachment model type provided" msgstr "" -#: common/validators.py:40 +#: common/validators.py:69 msgid "Invalid attachment model type" msgstr "" -#: common/validators.py:81 +#: common/validators.py:110 msgid "Minimum places cannot be greater than maximum places" msgstr "" -#: common/validators.py:93 +#: common/validators.py:122 msgid "Maximum places cannot be less than minimum places" msgstr "" -#: common/validators.py:104 +#: common/validators.py:133 msgid "An empty domain is not allowed." msgstr "" -#: common/validators.py:106 +#: common/validators.py:135 #, python-brace-format msgid "Invalid domain name: {domain}" msgstr "" -#: common/validators.py:122 +#: common/validators.py:151 msgid "Value must be uppercase" msgstr "" -#: common/validators.py:128 +#: common/validators.py:157 msgid "Value must be a valid variable identifier" msgstr "" -#: company/api.py:147 +#: company/api.py:141 msgid "Part is Active" msgstr "" -#: company/api.py:151 +#: company/api.py:145 msgid "Manufacturer is Active" msgstr "" -#: company/api.py:286 +#: company/api.py:246 msgid "Supplier Part is Active" msgstr "" -#: company/api.py:290 +#: company/api.py:250 msgid "Internal Part is Active" msgstr "" -#: company/api.py:295 +#: company/api.py:255 msgid "Supplier is Active" msgstr "" -#: company/api.py:307 company/models.py:520 company/serializers.py:457 -#: part/serializers.py:566 +#: company/api.py:267 company/models.py:522 company/serializers.py:502 +#: part/serializers.py:477 msgid "Manufacturer" msgstr "" -#: company/api.py:314 company/models.py:121 company/models.py:392 +#: company/api.py:274 company/models.py:122 company/models.py:393 #: stock/api.py:900 msgid "Company" msgstr "" -#: company/api.py:324 +#: company/api.py:284 msgid "Has Stock" msgstr "" -#: company/models.py:122 +#: company/models.py:123 msgid "Companies" msgstr "" -#: company/models.py:150 +#: company/models.py:151 msgid "Company description" msgstr "" -#: company/models.py:151 +#: company/models.py:152 msgid "Description of the company" msgstr "" -#: company/models.py:157 +#: company/models.py:158 msgid "Website" msgstr "" -#: company/models.py:158 +#: company/models.py:159 msgid "Company website URL" msgstr "" -#: company/models.py:164 +#: company/models.py:165 msgid "Phone number" msgstr "" -#: company/models.py:166 +#: company/models.py:167 msgid "Contact phone number" msgstr "" -#: company/models.py:173 +#: company/models.py:174 msgid "Contact email address" msgstr "" -#: company/models.py:178 company/models.py:296 order/models.py:513 +#: company/models.py:179 company/models.py:297 order/models.py:514 #: users/models.py:561 msgid "Contact" msgstr "" -#: company/models.py:180 +#: company/models.py:181 msgid "Point of contact" msgstr "" -#: company/models.py:186 +#: company/models.py:187 msgid "Link to external company information" msgstr "" -#: company/models.py:191 +#: company/models.py:192 msgid "Is this company active?" msgstr "" -#: company/models.py:196 +#: company/models.py:197 msgid "Is customer" msgstr "" -#: company/models.py:197 +#: company/models.py:198 msgid "Do you sell items to this company?" msgstr "" -#: company/models.py:202 +#: company/models.py:203 msgid "Is supplier" msgstr "" -#: company/models.py:203 +#: company/models.py:204 msgid "Do you purchase items from this company?" msgstr "" -#: company/models.py:208 +#: company/models.py:209 msgid "Is manufacturer" msgstr "" -#: company/models.py:209 +#: company/models.py:210 msgid "Does this company manufacture parts?" msgstr "" -#: company/models.py:217 +#: company/models.py:218 msgid "Default currency used for this company" msgstr "" -#: company/models.py:224 +#: company/models.py:225 msgid "Tax ID" msgstr "" -#: company/models.py:225 +#: company/models.py:226 msgid "Company Tax ID" msgstr "" -#: company/models.py:335 order/models.py:523 order/models.py:2288 +#: company/models.py:336 order/models.py:524 order/models.py:2289 msgid "Address" msgstr "" -#: company/models.py:336 +#: company/models.py:337 msgid "Addresses" msgstr "" -#: company/models.py:393 +#: company/models.py:394 msgid "Select company" msgstr "" -#: company/models.py:398 +#: company/models.py:399 msgid "Address title" msgstr "" -#: company/models.py:399 +#: company/models.py:400 msgid "Title describing the address entry" msgstr "" -#: company/models.py:405 +#: company/models.py:406 msgid "Primary address" msgstr "" -#: company/models.py:406 +#: company/models.py:407 msgid "Set as primary address" msgstr "" -#: company/models.py:411 +#: company/models.py:412 msgid "Line 1" msgstr "" -#: company/models.py:412 +#: company/models.py:413 msgid "Address line 1" msgstr "" -#: company/models.py:418 +#: company/models.py:419 msgid "Line 2" msgstr "" -#: company/models.py:419 +#: company/models.py:420 msgid "Address line 2" msgstr "" -#: company/models.py:425 company/models.py:426 +#: company/models.py:426 company/models.py:427 msgid "Postal code" msgstr "" -#: company/models.py:432 +#: company/models.py:433 msgid "City/Region" msgstr "" -#: company/models.py:433 +#: company/models.py:434 msgid "Postal code city/region" msgstr "" -#: company/models.py:439 +#: company/models.py:440 msgid "State/Province" msgstr "" -#: company/models.py:440 +#: company/models.py:441 msgid "State or province" msgstr "" -#: company/models.py:446 +#: company/models.py:447 msgid "Country" msgstr "" -#: company/models.py:447 +#: company/models.py:448 msgid "Address country" msgstr "" -#: company/models.py:453 +#: company/models.py:454 msgid "Courier shipping notes" msgstr "" -#: company/models.py:454 +#: company/models.py:455 msgid "Notes for shipping courier" msgstr "" -#: company/models.py:460 +#: company/models.py:461 msgid "Internal shipping notes" msgstr "" -#: company/models.py:461 +#: company/models.py:462 msgid "Shipping notes for internal use" msgstr "" -#: company/models.py:468 +#: company/models.py:469 msgid "Link to address information (external)" msgstr "" -#: company/models.py:492 company/models.py:609 company/models.py:832 -#: company/serializers.py:471 stock/api.py:561 +#: company/models.py:494 company/models.py:786 company/serializers.py:516 +#: stock/api.py:561 msgid "Manufacturer Part" msgstr "" -#: company/models.py:509 company/models.py:800 stock/models.py:1025 +#: company/models.py:511 company/models.py:754 stock/models.py:1025 #: stock/serializers.py:407 msgid "Base Part" msgstr "" -#: company/models.py:511 company/models.py:802 +#: company/models.py:513 company/models.py:756 msgid "Select part" msgstr "" -#: company/models.py:521 +#: company/models.py:523 msgid "Select manufacturer" msgstr "" -#: company/models.py:527 company/serializers.py:479 order/serializers.py:734 -#: part/serializers.py:576 +#: company/models.py:529 company/serializers.py:524 order/serializers.py:745 +#: part/serializers.py:487 msgid "MPN" msgstr "" -#: company/models.py:528 stock/serializers.py:572 +#: company/models.py:530 stock/serializers.py:572 msgid "Manufacturer Part Number" msgstr "" -#: company/models.py:535 +#: company/models.py:537 msgid "URL for external manufacturer part link" msgstr "" -#: company/models.py:544 +#: company/models.py:546 msgid "Manufacturer part description" msgstr "" -#: company/models.py:597 -msgid "Manufacturer Part Parameter" -msgstr "" - -#: company/models.py:616 -msgid "Parameter name" -msgstr "" - -#: company/models.py:623 -msgid "Parameter value" -msgstr "" - -#: company/models.py:630 part/models.py:1195 part/models.py:3857 -msgid "Units" -msgstr "" - -#: company/models.py:631 -msgid "Parameter units" -msgstr "" - -#: company/models.py:740 +#: company/models.py:694 msgid "Pack units must be compatible with the base part units" msgstr "" -#: company/models.py:747 +#: company/models.py:701 msgid "Pack units must be greater than zero" msgstr "" -#: company/models.py:761 +#: company/models.py:715 msgid "Linked manufacturer part must reference the same base part" msgstr "" -#: company/models.py:810 company/serializers.py:449 company/serializers.py:467 -#: order/models.py:639 part/serializers.py:550 +#: company/models.py:764 company/serializers.py:494 company/serializers.py:512 +#: order/models.py:640 part/serializers.py:461 #: plugin/builtin/suppliers/digikey.py:26 plugin/builtin/suppliers/lcsc.py:27 #: plugin/builtin/suppliers/mouser.py:25 plugin/builtin/suppliers/tme.py:27 #: stock/api.py:567 templates/email/overdue_purchase_order.html:16 msgid "Supplier" msgstr "" -#: company/models.py:811 +#: company/models.py:765 msgid "Select supplier" msgstr "" -#: company/models.py:817 part/serializers.py:561 +#: company/models.py:771 part/serializers.py:472 msgid "Supplier stock keeping unit" msgstr "" -#: company/models.py:823 +#: company/models.py:777 msgid "Is this supplier part active?" msgstr "" -#: company/models.py:833 +#: company/models.py:787 msgid "Select manufacturer part" msgstr "" -#: company/models.py:840 +#: company/models.py:794 msgid "URL for external supplier part link" msgstr "" -#: company/models.py:849 +#: company/models.py:803 msgid "Supplier part description" msgstr "" -#: company/models.py:856 order/serializers.py:883 order/serializers.py:2047 -#: part/models.py:4070 part/models.py:4450 part/models.py:4819 -#: report/templates/report/inventree_bill_of_materials_report.html:140 -#: report/templates/report/inventree_purchase_order_report.html:39 -#: report/templates/report/inventree_return_order_report.html:27 -#: report/templates/report/inventree_sales_order_report.html:32 -#: report/templates/report/inventree_stock_location_report.html:105 -#: stock/serializers.py:813 -msgid "Note" -msgstr "" - -#: company/models.py:865 part/models.py:2250 +#: company/models.py:819 part/models.py:2338 msgid "base cost" msgstr "" -#: company/models.py:866 part/models.py:2251 +#: company/models.py:820 part/models.py:2339 msgid "Minimum charge (e.g. stocking fee)" msgstr "" -#: company/models.py:873 order/serializers.py:875 stock/models.py:1056 +#: company/models.py:827 order/serializers.py:886 stock/models.py:1056 #: stock/serializers.py:1606 msgid "Packaging" msgstr "" -#: company/models.py:874 +#: company/models.py:828 msgid "Part packaging" msgstr "" -#: company/models.py:879 +#: company/models.py:833 msgid "Pack Quantity" msgstr "" -#: company/models.py:881 +#: company/models.py:835 msgid "Total quantity supplied in a single pack. Leave empty for single items." msgstr "" -#: company/models.py:900 part/models.py:2257 +#: company/models.py:854 part/models.py:2345 msgid "multiple" msgstr "" -#: company/models.py:901 +#: company/models.py:855 msgid "Order multiple" msgstr "" -#: company/models.py:913 +#: company/models.py:867 msgid "Quantity available from supplier" msgstr "" -#: company/models.py:919 +#: company/models.py:873 msgid "Availability Updated" msgstr "" -#: company/models.py:920 +#: company/models.py:874 msgid "Date of last update of availability data" msgstr "" -#: company/models.py:1048 +#: company/models.py:1002 msgid "Supplier Price Break" msgstr "" -#: company/serializers.py:181 +#: company/serializers.py:184 +msgid "Primary Address" +msgstr "" + +#: company/serializers.py:186 msgid "Return the string representation for the primary address. This property exists for backwards compatibility." msgstr "" -#: company/serializers.py:212 +#: company/serializers.py:218 msgid "Default currency used for this supplier" msgstr "" -#: company/serializers.py:248 +#: company/serializers.py:260 msgid "Company Name" msgstr "" -#: company/serializers.py:433 part/serializers.py:955 stock/serializers.py:428 +#: company/serializers.py:460 part/serializers.py:840 stock/serializers.py:428 msgid "In Stock" msgstr "" +#: company/serializers.py:477 +msgid "Price Breaks" +msgstr "" + #: data_exporter/mixins.py:325 data_exporter/mixins.py:403 msgid "Error occurred during data export" msgstr "" @@ -4290,7 +4418,7 @@ msgstr "" msgid "Errors" msgstr "" -#: importer/models.py:550 part/serializers.py:1268 +#: importer/models.py:550 part/serializers.py:1133 msgid "Valid" msgstr "" @@ -4402,7 +4530,7 @@ msgstr "" msgid "Connected" msgstr "" -#: machine/machine_types/label_printer.py:232 order/api.py:1795 +#: machine/machine_types/label_printer.py:232 order/api.py:1800 msgid "Unknown" msgstr "" @@ -4530,105 +4658,105 @@ msgstr "" msgid "Maximum value for progress type, required if type=progress" msgstr "" -#: order/api.py:125 +#: order/api.py:130 msgid "Order Reference" msgstr "" -#: order/api.py:153 order/api.py:1207 +#: order/api.py:158 order/api.py:1212 msgid "Outstanding" msgstr "" -#: order/api.py:169 +#: order/api.py:174 msgid "Has Project Code" msgstr "" -#: order/api.py:183 order/models.py:488 +#: order/api.py:188 order/models.py:489 msgid "Created By" msgstr "" -#: order/api.py:187 +#: order/api.py:192 msgid "Created Before" msgstr "" -#: order/api.py:191 +#: order/api.py:196 msgid "Created After" msgstr "" -#: order/api.py:195 +#: order/api.py:200 msgid "Has Start Date" msgstr "" -#: order/api.py:203 +#: order/api.py:208 msgid "Start Date Before" msgstr "" -#: order/api.py:207 +#: order/api.py:212 msgid "Start Date After" msgstr "" -#: order/api.py:211 +#: order/api.py:216 msgid "Has Target Date" msgstr "" -#: order/api.py:219 +#: order/api.py:224 msgid "Target Date Before" msgstr "" -#: order/api.py:223 +#: order/api.py:228 msgid "Target Date After" msgstr "" -#: order/api.py:274 +#: order/api.py:279 msgid "Has Pricing" msgstr "" -#: order/api.py:327 order/api.py:812 order/api.py:1490 +#: order/api.py:332 order/api.py:818 order/api.py:1495 msgid "Completed Before" msgstr "" -#: order/api.py:331 order/api.py:816 order/api.py:1494 +#: order/api.py:336 order/api.py:822 order/api.py:1499 msgid "Completed After" msgstr "" -#: order/api.py:337 order/api.py:341 +#: order/api.py:342 order/api.py:346 msgid "External Build Order" msgstr "" -#: order/api.py:526 order/api.py:914 order/api.py:1170 order/models.py:1922 -#: order/models.py:2049 order/models.py:2099 order/models.py:2279 -#: order/models.py:2477 order/models.py:2999 order/models.py:3065 +#: order/api.py:532 order/api.py:919 order/api.py:1175 order/models.py:1923 +#: order/models.py:2050 order/models.py:2100 order/models.py:2280 +#: order/models.py:2478 order/models.py:3000 order/models.py:3066 msgid "Order" msgstr "" -#: order/api.py:530 order/api.py:982 +#: order/api.py:536 order/api.py:987 msgid "Order Complete" msgstr "" -#: order/api.py:562 order/api.py:566 order/serializers.py:745 +#: order/api.py:568 order/api.py:572 order/serializers.py:756 msgid "Internal Part" msgstr "" -#: order/api.py:584 +#: order/api.py:590 msgid "Order Pending" msgstr "" -#: order/api.py:967 +#: order/api.py:972 msgid "Completed" msgstr "" -#: order/api.py:1223 +#: order/api.py:1228 msgid "Has Shipment" msgstr "" -#: order/api.py:1789 order/models.py:552 order/models.py:1923 -#: order/models.py:2050 +#: order/api.py:1794 order/models.py:553 order/models.py:1924 +#: order/models.py:2051 #: report/templates/report/inventree_purchase_order_report.html:14 #: stock/serializers.py:129 templates/email/overdue_purchase_order.html:15 msgid "Purchase Order" msgstr "" -#: order/api.py:1791 order/models.py:1251 order/models.py:2100 -#: order/models.py:2280 order/models.py:2478 +#: order/api.py:1796 order/models.py:1252 order/models.py:2101 +#: order/models.py:2281 order/models.py:2479 #: report/templates/report/inventree_build_order_report.html:135 #: report/templates/report/inventree_sales_order_report.html:14 #: report/templates/report/inventree_sales_order_shipment_report.html:15 @@ -4636,8 +4764,8 @@ msgstr "" msgid "Sales Order" msgstr "" -#: order/api.py:1793 order/models.py:2649 order/models.py:3000 -#: order/models.py:3066 +#: order/api.py:1798 order/models.py:2650 order/models.py:3001 +#: order/models.py:3067 #: report/templates/report/inventree_return_order_report.html:13 #: templates/email/overdue_return_order.html:15 msgid "Return Order" @@ -4653,722 +4781,722 @@ msgstr "" msgid "Total price for this order" msgstr "" -#: order/models.py:96 order/serializers.py:77 +#: order/models.py:96 order/serializers.py:78 msgid "Order Currency" msgstr "" -#: order/models.py:99 order/serializers.py:78 +#: order/models.py:99 order/serializers.py:79 msgid "Currency for this order (leave blank to use company default)" msgstr "" -#: order/models.py:324 +#: order/models.py:325 msgid "This order is locked and cannot be modified" msgstr "" -#: order/models.py:376 +#: order/models.py:377 msgid "Contact does not match selected company" msgstr "" -#: order/models.py:383 +#: order/models.py:384 msgid "Start date must be before target date" msgstr "" -#: order/models.py:390 +#: order/models.py:391 msgid "Address does not match selected company" msgstr "" -#: order/models.py:443 +#: order/models.py:444 msgid "Order description (optional)" msgstr "" -#: order/models.py:452 order/models.py:1806 +#: order/models.py:453 order/models.py:1807 msgid "Select project code for this order" msgstr "" -#: order/models.py:458 order/models.py:1787 order/models.py:2344 +#: order/models.py:459 order/models.py:1788 order/models.py:2345 msgid "Link to external page" msgstr "" -#: order/models.py:465 +#: order/models.py:466 msgid "Start date" msgstr "" -#: order/models.py:466 +#: order/models.py:467 msgid "Scheduled start date for this order" msgstr "" -#: order/models.py:472 order/models.py:1794 order/serializers.py:309 +#: order/models.py:473 order/models.py:1795 order/serializers.py:317 #: report/templates/report/inventree_build_order_report.html:125 msgid "Target Date" msgstr "" -#: order/models.py:474 +#: order/models.py:475 msgid "Expected date for order delivery. Order will be overdue after this date." msgstr "" -#: order/models.py:494 +#: order/models.py:495 msgid "Issue Date" msgstr "" -#: order/models.py:495 +#: order/models.py:496 msgid "Date order was issued" msgstr "" -#: order/models.py:503 +#: order/models.py:504 msgid "User or group responsible for this order" msgstr "" -#: order/models.py:514 +#: order/models.py:515 msgid "Point of contact for this order" msgstr "" -#: order/models.py:524 +#: order/models.py:525 msgid "Company address for this order" msgstr "" -#: order/models.py:615 order/models.py:1312 +#: order/models.py:616 order/models.py:1313 msgid "Order reference" msgstr "" -#: order/models.py:624 order/models.py:1336 order/models.py:2737 +#: order/models.py:625 order/models.py:1337 order/models.py:2738 #: stock/serializers.py:559 stock/serializers.py:988 users/models.py:542 msgid "Status" msgstr "" -#: order/models.py:625 +#: order/models.py:626 msgid "Purchase order status" msgstr "" -#: order/models.py:640 +#: order/models.py:641 msgid "Company from which the items are being ordered" msgstr "" -#: order/models.py:651 +#: order/models.py:652 msgid "Supplier Reference" msgstr "" -#: order/models.py:652 +#: order/models.py:653 msgid "Supplier order reference code" msgstr "" -#: order/models.py:661 +#: order/models.py:662 msgid "received by" msgstr "" -#: order/models.py:668 order/models.py:2752 +#: order/models.py:669 order/models.py:2753 msgid "Date order was completed" msgstr "" -#: order/models.py:677 order/models.py:1981 +#: order/models.py:678 order/models.py:1982 msgid "Destination" msgstr "" -#: order/models.py:678 order/models.py:1985 +#: order/models.py:679 order/models.py:1986 msgid "Destination for received items" msgstr "" -#: order/models.py:724 +#: order/models.py:725 msgid "Part supplier must match PO supplier" msgstr "" -#: order/models.py:994 +#: order/models.py:995 msgid "Line item does not match purchase order" msgstr "" -#: order/models.py:997 +#: order/models.py:998 msgid "Line item is missing a linked part" msgstr "" -#: order/models.py:1011 +#: order/models.py:1012 msgid "Quantity must be a positive number" msgstr "" -#: order/models.py:1323 order/models.py:2724 stock/models.py:1078 +#: order/models.py:1324 order/models.py:2725 stock/models.py:1078 #: stock/models.py:1079 stock/serializers.py:1322 #: templates/email/overdue_return_order.html:16 #: templates/email/overdue_sales_order.html:16 msgid "Customer" msgstr "" -#: order/models.py:1324 +#: order/models.py:1325 msgid "Company to which the items are being sold" msgstr "" -#: order/models.py:1337 +#: order/models.py:1338 msgid "Sales order status" msgstr "" -#: order/models.py:1348 order/models.py:2744 +#: order/models.py:1349 order/models.py:2745 msgid "Customer Reference " msgstr "" -#: order/models.py:1349 order/models.py:2745 +#: order/models.py:1350 order/models.py:2746 msgid "Customer order reference code" msgstr "" -#: order/models.py:1353 order/models.py:2296 +#: order/models.py:1354 order/models.py:2297 msgid "Shipment Date" msgstr "" -#: order/models.py:1362 +#: order/models.py:1363 msgid "shipped by" msgstr "" -#: order/models.py:1413 +#: order/models.py:1414 msgid "Order is already complete" msgstr "" -#: order/models.py:1416 +#: order/models.py:1417 msgid "Order is already cancelled" msgstr "" -#: order/models.py:1420 +#: order/models.py:1421 msgid "Only an open order can be marked as complete" msgstr "" -#: order/models.py:1424 +#: order/models.py:1425 msgid "Order cannot be completed as there are incomplete shipments" msgstr "" -#: order/models.py:1429 +#: order/models.py:1430 msgid "Order cannot be completed as there are incomplete allocations" msgstr "" -#: order/models.py:1438 +#: order/models.py:1439 msgid "Order cannot be completed as there are incomplete line items" msgstr "" -#: order/models.py:1733 order/models.py:1749 +#: order/models.py:1734 order/models.py:1750 msgid "The order is locked and cannot be modified" msgstr "" -#: order/models.py:1757 +#: order/models.py:1758 msgid "Item quantity" msgstr "" -#: order/models.py:1774 +#: order/models.py:1775 msgid "Line item reference" msgstr "" -#: order/models.py:1781 +#: order/models.py:1782 msgid "Line item notes" msgstr "" -#: order/models.py:1796 +#: order/models.py:1797 msgid "Target date for this line item (leave blank to use the target date from the order)" msgstr "" -#: order/models.py:1826 +#: order/models.py:1827 msgid "Line item description (optional)" msgstr "" -#: order/models.py:1833 +#: order/models.py:1834 msgid "Additional context for this line" msgstr "" -#: order/models.py:1843 +#: order/models.py:1844 msgid "Unit price" msgstr "" -#: order/models.py:1862 +#: order/models.py:1863 msgid "Purchase Order Line Item" msgstr "" -#: order/models.py:1889 +#: order/models.py:1890 msgid "Supplier part must match supplier" msgstr "" -#: order/models.py:1894 +#: order/models.py:1895 msgid "Build order must be marked as external" msgstr "" -#: order/models.py:1901 +#: order/models.py:1902 msgid "Build orders can only be linked to assembly parts" msgstr "" -#: order/models.py:1907 +#: order/models.py:1908 msgid "Build order part must match line item part" msgstr "" -#: order/models.py:1942 +#: order/models.py:1943 msgid "Supplier part" msgstr "" -#: order/models.py:1949 +#: order/models.py:1950 msgid "Received" msgstr "" -#: order/models.py:1950 +#: order/models.py:1951 msgid "Number of items received" msgstr "" -#: order/models.py:1958 stock/models.py:1201 stock/serializers.py:637 +#: order/models.py:1959 stock/models.py:1201 stock/serializers.py:637 msgid "Purchase Price" msgstr "" -#: order/models.py:1959 +#: order/models.py:1960 msgid "Unit purchase price" msgstr "" -#: order/models.py:1975 +#: order/models.py:1976 msgid "External Build Order to be fulfilled by this line item" msgstr "" -#: order/models.py:2038 +#: order/models.py:2039 msgid "Purchase Order Extra Line" msgstr "" -#: order/models.py:2067 +#: order/models.py:2068 msgid "Sales Order Line Item" msgstr "" -#: order/models.py:2092 +#: order/models.py:2093 msgid "Only salable parts can be assigned to a sales order" msgstr "" -#: order/models.py:2118 +#: order/models.py:2119 msgid "Sale Price" msgstr "" -#: order/models.py:2119 +#: order/models.py:2120 msgid "Unit sale price" msgstr "" -#: order/models.py:2128 order/status_codes.py:50 +#: order/models.py:2129 order/status_codes.py:50 msgid "Shipped" msgstr "נשלח" -#: order/models.py:2129 +#: order/models.py:2130 msgid "Shipped quantity" msgstr "" -#: order/models.py:2240 +#: order/models.py:2241 msgid "Sales Order Shipment" msgstr "" -#: order/models.py:2253 +#: order/models.py:2254 msgid "Shipment address must match the customer" msgstr "" -#: order/models.py:2289 +#: order/models.py:2290 msgid "Shipping address for this shipment" msgstr "" -#: order/models.py:2297 +#: order/models.py:2298 msgid "Date of shipment" msgstr "" -#: order/models.py:2303 +#: order/models.py:2304 msgid "Delivery Date" msgstr "" -#: order/models.py:2304 +#: order/models.py:2305 msgid "Date of delivery of shipment" msgstr "" -#: order/models.py:2312 +#: order/models.py:2313 msgid "Checked By" msgstr "" -#: order/models.py:2313 +#: order/models.py:2314 msgid "User who checked this shipment" msgstr "" -#: order/models.py:2320 order/models.py:2574 order/serializers.py:1711 -#: order/serializers.py:1835 +#: order/models.py:2321 order/models.py:2575 order/serializers.py:1725 +#: order/serializers.py:1849 #: report/templates/report/inventree_sales_order_shipment_report.html:14 msgid "Shipment" msgstr "" -#: order/models.py:2321 +#: order/models.py:2322 msgid "Shipment number" msgstr "" -#: order/models.py:2329 +#: order/models.py:2330 msgid "Tracking Number" msgstr "" -#: order/models.py:2330 +#: order/models.py:2331 msgid "Shipment tracking information" msgstr "" -#: order/models.py:2337 +#: order/models.py:2338 msgid "Invoice Number" msgstr "" -#: order/models.py:2338 +#: order/models.py:2339 msgid "Reference number for associated invoice" msgstr "" -#: order/models.py:2377 +#: order/models.py:2378 msgid "Shipment has already been sent" msgstr "" -#: order/models.py:2380 +#: order/models.py:2381 msgid "Shipment has no allocated stock items" msgstr "" -#: order/models.py:2387 +#: order/models.py:2388 msgid "Shipment must be checked before it can be completed" msgstr "" -#: order/models.py:2466 +#: order/models.py:2467 msgid "Sales Order Extra Line" msgstr "" -#: order/models.py:2495 +#: order/models.py:2496 msgid "Sales Order Allocation" msgstr "" -#: order/models.py:2518 order/models.py:2520 +#: order/models.py:2519 order/models.py:2521 msgid "Stock item has not been assigned" msgstr "" -#: order/models.py:2527 +#: order/models.py:2528 msgid "Cannot allocate stock item to a line with a different part" msgstr "" -#: order/models.py:2530 +#: order/models.py:2531 msgid "Cannot allocate stock to a line without a part" msgstr "" -#: order/models.py:2533 +#: order/models.py:2534 msgid "Allocation quantity cannot exceed stock quantity" msgstr "" -#: order/models.py:2552 order/serializers.py:1581 +#: order/models.py:2553 order/serializers.py:1595 msgid "Quantity must be 1 for serialized stock item" msgstr "" -#: order/models.py:2555 +#: order/models.py:2556 msgid "Sales order does not match shipment" msgstr "" -#: order/models.py:2556 plugin/base/barcodes/api.py:642 +#: order/models.py:2557 plugin/base/barcodes/api.py:642 msgid "Shipment does not match sales order" msgstr "" -#: order/models.py:2564 +#: order/models.py:2565 msgid "Line" msgstr "" -#: order/models.py:2575 +#: order/models.py:2576 msgid "Sales order shipment reference" msgstr "" -#: order/models.py:2588 order/models.py:3007 +#: order/models.py:2589 order/models.py:3008 msgid "Item" msgstr "" -#: order/models.py:2589 +#: order/models.py:2590 msgid "Select stock item to allocate" msgstr "" -#: order/models.py:2598 +#: order/models.py:2599 msgid "Enter stock allocation quantity" msgstr "" -#: order/models.py:2713 +#: order/models.py:2714 msgid "Return Order reference" msgstr "" -#: order/models.py:2725 +#: order/models.py:2726 msgid "Company from which items are being returned" msgstr "" -#: order/models.py:2738 +#: order/models.py:2739 msgid "Return order status" msgstr "" -#: order/models.py:2965 +#: order/models.py:2966 msgid "Return Order Line Item" msgstr "" -#: order/models.py:2978 +#: order/models.py:2979 msgid "Stock item must be specified" msgstr "" -#: order/models.py:2982 +#: order/models.py:2983 msgid "Return quantity exceeds stock quantity" msgstr "" -#: order/models.py:2987 +#: order/models.py:2988 msgid "Return quantity must be greater than zero" msgstr "" -#: order/models.py:2992 +#: order/models.py:2993 msgid "Invalid quantity for serialized stock item" msgstr "" -#: order/models.py:3008 +#: order/models.py:3009 msgid "Select item to return from customer" msgstr "" -#: order/models.py:3023 +#: order/models.py:3024 msgid "Received Date" msgstr "" -#: order/models.py:3024 +#: order/models.py:3025 msgid "The date this this return item was received" msgstr "" -#: order/models.py:3036 +#: order/models.py:3037 msgid "Outcome" msgstr "" -#: order/models.py:3037 +#: order/models.py:3038 msgid "Outcome for this line item" msgstr "" -#: order/models.py:3044 +#: order/models.py:3045 msgid "Cost associated with return or repair for this line item" msgstr "" -#: order/models.py:3054 +#: order/models.py:3055 msgid "Return Order Extra Line" msgstr "" -#: order/serializers.py:91 +#: order/serializers.py:92 msgid "Order ID" msgstr "" -#: order/serializers.py:91 +#: order/serializers.py:92 msgid "ID of the order to duplicate" msgstr "" -#: order/serializers.py:97 +#: order/serializers.py:98 msgid "Copy Lines" msgstr "" -#: order/serializers.py:98 +#: order/serializers.py:99 msgid "Copy line items from the original order" msgstr "" -#: order/serializers.py:104 +#: order/serializers.py:105 msgid "Copy Extra Lines" msgstr "" -#: order/serializers.py:105 +#: order/serializers.py:106 msgid "Copy extra line items from the original order" msgstr "" -#: order/serializers.py:120 +#: order/serializers.py:121 #: report/templates/report/inventree_purchase_order_report.html:29 #: report/templates/report/inventree_return_order_report.html:19 #: report/templates/report/inventree_sales_order_report.html:22 msgid "Line Items" msgstr "" -#: order/serializers.py:125 +#: order/serializers.py:126 msgid "Completed Lines" msgstr "" -#: order/serializers.py:192 +#: order/serializers.py:199 msgid "Duplicate Order" msgstr "" -#: order/serializers.py:193 +#: order/serializers.py:200 msgid "Specify options for duplicating this order" msgstr "" -#: order/serializers.py:270 +#: order/serializers.py:278 msgid "Invalid order ID" msgstr "" -#: order/serializers.py:466 +#: order/serializers.py:477 msgid "Supplier Name" msgstr "" -#: order/serializers.py:510 +#: order/serializers.py:521 msgid "Order cannot be cancelled" msgstr "" -#: order/serializers.py:525 order/serializers.py:1602 +#: order/serializers.py:536 order/serializers.py:1616 msgid "Allow order to be closed with incomplete line items" msgstr "" -#: order/serializers.py:535 order/serializers.py:1612 +#: order/serializers.py:546 order/serializers.py:1626 msgid "Order has incomplete line items" msgstr "" -#: order/serializers.py:665 +#: order/serializers.py:676 msgid "Order is not open" msgstr "" -#: order/serializers.py:692 +#: order/serializers.py:703 msgid "Auto Pricing" msgstr "" -#: order/serializers.py:694 +#: order/serializers.py:705 msgid "Automatically calculate purchase price based on supplier part data" msgstr "" -#: order/serializers.py:704 +#: order/serializers.py:715 msgid "Purchase price currency" msgstr "" -#: order/serializers.py:718 +#: order/serializers.py:729 msgid "Merge Items" msgstr "" -#: order/serializers.py:720 +#: order/serializers.py:731 msgid "Merge items with the same part, destination and target date into one line item" msgstr "" -#: order/serializers.py:727 part/serializers.py:560 +#: order/serializers.py:738 part/serializers.py:471 msgid "SKU" msgstr "" -#: order/serializers.py:741 part/models.py:1089 part/serializers.py:372 +#: order/serializers.py:752 part/models.py:1177 part/serializers.py:337 msgid "Internal Part Number" msgstr "" -#: order/serializers.py:749 +#: order/serializers.py:760 msgid "Internal Part Name" msgstr "" -#: order/serializers.py:765 +#: order/serializers.py:776 msgid "Supplier part must be specified" msgstr "" -#: order/serializers.py:768 +#: order/serializers.py:779 msgid "Purchase order must be specified" msgstr "" -#: order/serializers.py:776 +#: order/serializers.py:787 msgid "Supplier must match purchase order" msgstr "" -#: order/serializers.py:777 +#: order/serializers.py:788 msgid "Purchase order must match supplier" msgstr "" -#: order/serializers.py:825 order/serializers.py:1682 +#: order/serializers.py:836 order/serializers.py:1696 msgid "Line Item" msgstr "" -#: order/serializers.py:834 order/serializers.py:974 order/serializers.py:2043 +#: order/serializers.py:845 order/serializers.py:985 order/serializers.py:2060 msgid "Select destination location for received items" msgstr "" -#: order/serializers.py:850 +#: order/serializers.py:861 msgid "Enter batch code for incoming stock items" msgstr "" -#: order/serializers.py:857 stock/models.py:1160 +#: order/serializers.py:868 stock/models.py:1160 #: templates/email/stale_stock_notification.html:22 users/models.py:137 msgid "Expiry Date" msgstr "" -#: order/serializers.py:858 +#: order/serializers.py:869 msgid "Enter expiry date for incoming stock items" msgstr "" -#: order/serializers.py:866 +#: order/serializers.py:877 msgid "Enter serial numbers for incoming stock items" msgstr "" -#: order/serializers.py:876 +#: order/serializers.py:887 msgid "Override packaging information for incoming stock items" msgstr "" -#: order/serializers.py:884 order/serializers.py:2048 +#: order/serializers.py:895 order/serializers.py:2065 msgid "Additional note for incoming stock items" msgstr "" -#: order/serializers.py:891 +#: order/serializers.py:902 msgid "Barcode" msgstr "" -#: order/serializers.py:892 +#: order/serializers.py:903 msgid "Scanned barcode" msgstr "" -#: order/serializers.py:908 +#: order/serializers.py:919 msgid "Barcode is already in use" msgstr "" -#: order/serializers.py:991 order/serializers.py:2067 +#: order/serializers.py:1002 order/serializers.py:2084 msgid "Line items must be provided" msgstr "" -#: order/serializers.py:1010 +#: order/serializers.py:1021 msgid "Destination location must be specified" msgstr "" -#: order/serializers.py:1017 +#: order/serializers.py:1028 msgid "Supplied barcode values must be unique" msgstr "" -#: order/serializers.py:1121 +#: order/serializers.py:1135 msgid "Shipments" msgstr "" -#: order/serializers.py:1125 +#: order/serializers.py:1139 msgid "Completed Shipments" msgstr "" -#: order/serializers.py:1293 +#: order/serializers.py:1307 msgid "Sale price currency" msgstr "" -#: order/serializers.py:1339 +#: order/serializers.py:1353 msgid "Allocated Items" msgstr "" -#: order/serializers.py:1484 +#: order/serializers.py:1498 msgid "No shipment details provided" msgstr "" -#: order/serializers.py:1545 order/serializers.py:1691 +#: order/serializers.py:1559 order/serializers.py:1705 msgid "Line item is not associated with this order" msgstr "" -#: order/serializers.py:1564 +#: order/serializers.py:1578 msgid "Quantity must be positive" msgstr "" -#: order/serializers.py:1701 +#: order/serializers.py:1715 msgid "Enter serial numbers to allocate" msgstr "" -#: order/serializers.py:1723 order/serializers.py:1843 +#: order/serializers.py:1737 order/serializers.py:1857 msgid "Shipment has already been shipped" msgstr "" -#: order/serializers.py:1726 order/serializers.py:1846 +#: order/serializers.py:1740 order/serializers.py:1860 msgid "Shipment is not associated with this order" msgstr "" -#: order/serializers.py:1781 +#: order/serializers.py:1795 msgid "No match found for the following serial numbers" msgstr "" -#: order/serializers.py:1788 +#: order/serializers.py:1802 msgid "The following serial numbers are unavailable" msgstr "" -#: order/serializers.py:2009 +#: order/serializers.py:2026 msgid "Return order line item" msgstr "" -#: order/serializers.py:2019 +#: order/serializers.py:2036 msgid "Line item does not match return order" msgstr "" -#: order/serializers.py:2022 +#: order/serializers.py:2039 msgid "Line item has already been received" msgstr "" -#: order/serializers.py:2059 +#: order/serializers.py:2076 msgid "Items can only be received against orders which are in progress" msgstr "" -#: order/serializers.py:2124 +#: order/serializers.py:2141 msgid "Quantity to return" msgstr "" -#: order/serializers.py:2140 +#: order/serializers.py:2157 msgid "Line price currency" msgstr "" @@ -5431,1190 +5559,1109 @@ msgstr "" msgid "Return order {ro} is now overdue" msgstr "" -#: part/api.py:108 +#: part/api.py:103 msgid "Starred" msgstr "" -#: part/api.py:110 +#: part/api.py:105 msgid "Filter by starred categories" msgstr "" -#: part/api.py:127 stock/api.py:288 +#: part/api.py:122 stock/api.py:288 msgid "Depth" msgstr "" -#: part/api.py:127 +#: part/api.py:122 msgid "Filter by category depth" msgstr "" -#: part/api.py:145 stock/api.py:306 +#: part/api.py:140 stock/api.py:306 msgid "Top Level" msgstr "" -#: part/api.py:147 +#: part/api.py:142 msgid "Filter by top-level categories" msgstr "" -#: part/api.py:160 stock/api.py:321 +#: part/api.py:155 stock/api.py:321 msgid "Cascade" msgstr "" -#: part/api.py:162 +#: part/api.py:157 msgid "Include sub-categories in filtered results" msgstr "" -#: part/api.py:182 +#: part/api.py:177 msgid "Parent" msgstr "" -#: part/api.py:184 +#: part/api.py:179 msgid "Filter by parent category" msgstr "" -#: part/api.py:219 +#: part/api.py:214 msgid "Exclude sub-categories under the specified category" msgstr "" -#: part/api.py:445 +#: part/api.py:440 msgid "Has Results" msgstr "" -#: part/api.py:666 +#: part/api.py:661 msgid "Is Variant" msgstr "" -#: part/api.py:674 +#: part/api.py:669 msgid "Is Revision" msgstr "" -#: part/api.py:684 +#: part/api.py:679 msgid "Has Revisions" msgstr "" -#: part/api.py:865 +#: part/api.py:860 msgid "BOM Valid" msgstr "" -#: part/api.py:974 +#: part/api.py:969 msgid "Cascade Categories" msgstr "" -#: part/api.py:975 +#: part/api.py:970 msgid "If true, include items in child categories of the given category" msgstr "" -#: part/api.py:981 +#: part/api.py:976 msgid "Filter by numeric category ID or the literal 'null'" msgstr "" -#: part/api.py:1533 +#: part/api.py:1258 msgid "Assembly part is testable" msgstr "" -#: part/api.py:1542 +#: part/api.py:1267 msgid "Component part is testable" msgstr "" -#: part/api.py:1611 +#: part/api.py:1336 msgid "Uses" msgstr "" -#: part/models.py:96 part/models.py:4163 +#: part/models.py:93 part/models.py:436 #: templates/email/part_event_notification.html:16 msgid "Part Category" msgstr "" -#: part/models.py:97 users/ruleset.py:27 +#: part/models.py:94 users/ruleset.py:27 msgid "Part Categories" msgstr "" -#: part/models.py:115 part/models.py:1125 +#: part/models.py:112 part/models.py:1213 msgid "Default Location" msgstr "" -#: part/models.py:116 +#: part/models.py:113 msgid "Default location for parts in this category" msgstr "" -#: part/models.py:121 stock/models.py:216 +#: part/models.py:118 stock/models.py:216 msgid "Structural" msgstr "" -#: part/models.py:123 +#: part/models.py:120 msgid "Parts may not be directly assigned to a structural category, but may be assigned to child categories." msgstr "" -#: part/models.py:132 +#: part/models.py:129 msgid "Default keywords" msgstr "" -#: part/models.py:133 +#: part/models.py:130 msgid "Default keywords for parts in this category" msgstr "" -#: part/models.py:140 stock/models.py:97 stock/models.py:198 +#: part/models.py:137 stock/models.py:97 stock/models.py:198 msgid "Icon" msgstr "" -#: part/models.py:141 part/serializers.py:148 part/serializers.py:167 +#: part/models.py:138 part/serializers.py:147 part/serializers.py:166 #: stock/models.py:199 msgid "Icon (optional)" msgstr "" -#: part/models.py:185 +#: part/models.py:182 msgid "You cannot make this part category structural because some parts are already assigned to it!" msgstr "" -#: part/models.py:473 part/serializers.py:119 part/serializers.py:310 -#: users/ruleset.py:28 +#: part/models.py:392 +msgid "Part Category Parameter Template" +msgstr "" + +#: part/models.py:448 +msgid "Default Value" +msgstr "" + +#: part/models.py:449 +msgid "Default Parameter Value" +msgstr "" + +#: part/models.py:551 part/serializers.py:118 users/ruleset.py:28 msgid "Parts" msgstr "" -#: part/models.py:525 +#: part/models.py:597 +msgid "Cannot delete parameters of a locked part" +msgstr "" + +#: part/models.py:602 +msgid "Cannot modify parameters of a locked part" +msgstr "" + +#: part/models.py:613 msgid "Cannot delete this part as it is locked" msgstr "" -#: part/models.py:528 +#: part/models.py:616 msgid "Cannot delete this part as it is still active" msgstr "" -#: part/models.py:533 +#: part/models.py:621 msgid "Cannot delete this part as it is used in an assembly" msgstr "" -#: part/models.py:616 part/models.py:623 +#: part/models.py:704 part/models.py:711 #, python-brace-format msgid "Part '{self}' cannot be used in BOM for '{parent}' (recursive)" msgstr "" -#: part/models.py:635 +#: part/models.py:723 #, python-brace-format msgid "Part '{parent}' is used in BOM for '{self}' (recursive)" msgstr "" -#: part/models.py:702 +#: part/models.py:790 #, python-brace-format msgid "IPN must match regex pattern {pattern}" msgstr "" -#: part/models.py:710 +#: part/models.py:798 msgid "Part cannot be a revision of itself" msgstr "" -#: part/models.py:717 +#: part/models.py:805 msgid "Cannot make a revision of a part which is already a revision" msgstr "" -#: part/models.py:724 +#: part/models.py:812 msgid "Revision code must be specified" msgstr "" -#: part/models.py:731 +#: part/models.py:819 msgid "Revisions are only allowed for assembly parts" msgstr "" -#: part/models.py:738 +#: part/models.py:826 msgid "Cannot make a revision of a template part" msgstr "" -#: part/models.py:744 +#: part/models.py:832 msgid "Parent part must point to the same template" msgstr "" -#: part/models.py:841 +#: part/models.py:929 msgid "Stock item with this serial number already exists" msgstr "" -#: part/models.py:971 +#: part/models.py:1059 msgid "Duplicate IPN not allowed in part settings" msgstr "" -#: part/models.py:983 +#: part/models.py:1071 msgid "Duplicate part revision already exists." msgstr "" -#: part/models.py:992 +#: part/models.py:1080 msgid "Part with this Name, IPN and Revision already exists." msgstr "" -#: part/models.py:1007 +#: part/models.py:1095 msgid "Parts cannot be assigned to structural part categories!" msgstr "" -#: part/models.py:1039 +#: part/models.py:1127 msgid "Part name" msgstr "" -#: part/models.py:1044 +#: part/models.py:1132 msgid "Is Template" msgstr "" -#: part/models.py:1045 +#: part/models.py:1133 msgid "Is this part a template part?" msgstr "" -#: part/models.py:1055 +#: part/models.py:1143 msgid "Is this part a variant of another part?" msgstr "" -#: part/models.py:1056 +#: part/models.py:1144 msgid "Variant Of" msgstr "" -#: part/models.py:1063 +#: part/models.py:1151 msgid "Part description (optional)" msgstr "" -#: part/models.py:1070 +#: part/models.py:1158 msgid "Keywords" msgstr "" -#: part/models.py:1071 +#: part/models.py:1159 msgid "Part keywords to improve visibility in search results" msgstr "" -#: part/models.py:1081 +#: part/models.py:1169 msgid "Part category" msgstr "" -#: part/models.py:1088 part/serializers.py:929 +#: part/models.py:1176 part/serializers.py:814 #: report/templates/report/inventree_stock_location_report.html:103 msgid "IPN" msgstr "" -#: part/models.py:1096 +#: part/models.py:1184 msgid "Part revision or version number" msgstr "" -#: part/models.py:1097 report/models.py:228 +#: part/models.py:1185 report/models.py:228 msgid "Revision" msgstr "" -#: part/models.py:1106 +#: part/models.py:1194 msgid "Is this part a revision of another part?" msgstr "" -#: part/models.py:1107 +#: part/models.py:1195 msgid "Revision Of" msgstr "" -#: part/models.py:1123 +#: part/models.py:1211 msgid "Where is this item normally stored?" msgstr "" -#: part/models.py:1169 +#: part/models.py:1257 msgid "Default Supplier" msgstr "" -#: part/models.py:1170 +#: part/models.py:1258 msgid "Default supplier part" msgstr "" -#: part/models.py:1177 +#: part/models.py:1265 msgid "Default Expiry" msgstr "" -#: part/models.py:1178 +#: part/models.py:1266 msgid "Expiry time (in days) for stock items of this part" msgstr "" -#: part/models.py:1186 part/serializers.py:1003 +#: part/models.py:1274 part/serializers.py:888 msgid "Minimum Stock" msgstr "" -#: part/models.py:1187 +#: part/models.py:1275 msgid "Minimum allowed stock level" msgstr "" -#: part/models.py:1196 +#: part/models.py:1284 msgid "Units of measure for this part" msgstr "" -#: part/models.py:1203 +#: part/models.py:1291 msgid "Can this part be built from other parts?" msgstr "" -#: part/models.py:1209 +#: part/models.py:1297 msgid "Can this part be used to build other parts?" msgstr "" -#: part/models.py:1215 +#: part/models.py:1303 msgid "Does this part have tracking for unique items?" msgstr "" -#: part/models.py:1221 +#: part/models.py:1309 msgid "Can this part have test results recorded against it?" msgstr "" -#: part/models.py:1227 +#: part/models.py:1315 msgid "Can this part be purchased from external suppliers?" msgstr "" -#: part/models.py:1233 +#: part/models.py:1321 msgid "Can this part be sold to customers?" msgstr "" -#: part/models.py:1237 +#: part/models.py:1325 msgid "Is this part active?" msgstr "" -#: part/models.py:1243 +#: part/models.py:1331 msgid "Locked parts cannot be edited" msgstr "" -#: part/models.py:1249 +#: part/models.py:1337 msgid "Is this a virtual part, such as a software product or license?" msgstr "" -#: part/models.py:1254 +#: part/models.py:1342 msgid "BOM Validated" msgstr "" -#: part/models.py:1255 +#: part/models.py:1343 msgid "Is the BOM for this part valid?" msgstr "" -#: part/models.py:1261 +#: part/models.py:1349 msgid "BOM checksum" msgstr "" -#: part/models.py:1262 +#: part/models.py:1350 msgid "Stored BOM checksum" msgstr "" -#: part/models.py:1270 +#: part/models.py:1358 msgid "BOM checked by" msgstr "" -#: part/models.py:1275 +#: part/models.py:1363 msgid "BOM checked date" msgstr "" -#: part/models.py:1291 +#: part/models.py:1379 msgid "Creation User" msgstr "" -#: part/models.py:1301 +#: part/models.py:1389 msgid "Owner responsible for this part" msgstr "" -#: part/models.py:2258 +#: part/models.py:2346 msgid "Sell multiple" msgstr "" -#: part/models.py:3286 +#: part/models.py:3350 msgid "Currency used to cache pricing calculations" msgstr "" -#: part/models.py:3302 +#: part/models.py:3366 msgid "Minimum BOM Cost" msgstr "" -#: part/models.py:3303 +#: part/models.py:3367 msgid "Minimum cost of component parts" msgstr "" -#: part/models.py:3309 +#: part/models.py:3373 msgid "Maximum BOM Cost" msgstr "" -#: part/models.py:3310 +#: part/models.py:3374 msgid "Maximum cost of component parts" msgstr "" -#: part/models.py:3316 +#: part/models.py:3380 msgid "Minimum Purchase Cost" msgstr "" -#: part/models.py:3317 +#: part/models.py:3381 msgid "Minimum historical purchase cost" msgstr "" -#: part/models.py:3323 +#: part/models.py:3387 msgid "Maximum Purchase Cost" msgstr "" -#: part/models.py:3324 +#: part/models.py:3388 msgid "Maximum historical purchase cost" msgstr "" -#: part/models.py:3330 +#: part/models.py:3394 msgid "Minimum Internal Price" msgstr "" -#: part/models.py:3331 +#: part/models.py:3395 msgid "Minimum cost based on internal price breaks" msgstr "" -#: part/models.py:3337 +#: part/models.py:3401 msgid "Maximum Internal Price" msgstr "" -#: part/models.py:3338 +#: part/models.py:3402 msgid "Maximum cost based on internal price breaks" msgstr "" -#: part/models.py:3344 +#: part/models.py:3408 msgid "Minimum Supplier Price" msgstr "" -#: part/models.py:3345 +#: part/models.py:3409 msgid "Minimum price of part from external suppliers" msgstr "" -#: part/models.py:3351 +#: part/models.py:3415 msgid "Maximum Supplier Price" msgstr "" -#: part/models.py:3352 +#: part/models.py:3416 msgid "Maximum price of part from external suppliers" msgstr "" -#: part/models.py:3358 +#: part/models.py:3422 msgid "Minimum Variant Cost" msgstr "" -#: part/models.py:3359 +#: part/models.py:3423 msgid "Calculated minimum cost of variant parts" msgstr "" -#: part/models.py:3365 +#: part/models.py:3429 msgid "Maximum Variant Cost" msgstr "" -#: part/models.py:3366 +#: part/models.py:3430 msgid "Calculated maximum cost of variant parts" msgstr "" -#: part/models.py:3372 part/models.py:3386 +#: part/models.py:3436 part/models.py:3450 msgid "Minimum Cost" msgstr "" -#: part/models.py:3373 +#: part/models.py:3437 msgid "Override minimum cost" msgstr "" -#: part/models.py:3379 part/models.py:3393 +#: part/models.py:3443 part/models.py:3457 msgid "Maximum Cost" msgstr "" -#: part/models.py:3380 +#: part/models.py:3444 msgid "Override maximum cost" msgstr "" -#: part/models.py:3387 +#: part/models.py:3451 msgid "Calculated overall minimum cost" msgstr "" -#: part/models.py:3394 +#: part/models.py:3458 msgid "Calculated overall maximum cost" msgstr "" -#: part/models.py:3400 +#: part/models.py:3464 msgid "Minimum Sale Price" msgstr "" -#: part/models.py:3401 +#: part/models.py:3465 msgid "Minimum sale price based on price breaks" msgstr "" -#: part/models.py:3407 +#: part/models.py:3471 msgid "Maximum Sale Price" msgstr "" -#: part/models.py:3408 +#: part/models.py:3472 msgid "Maximum sale price based on price breaks" msgstr "" -#: part/models.py:3414 +#: part/models.py:3478 msgid "Minimum Sale Cost" msgstr "" -#: part/models.py:3415 +#: part/models.py:3479 msgid "Minimum historical sale price" msgstr "" -#: part/models.py:3421 +#: part/models.py:3485 msgid "Maximum Sale Cost" msgstr "" -#: part/models.py:3422 +#: part/models.py:3486 msgid "Maximum historical sale price" msgstr "" -#: part/models.py:3440 +#: part/models.py:3504 msgid "Part for stocktake" msgstr "" -#: part/models.py:3445 +#: part/models.py:3509 msgid "Item Count" msgstr "" -#: part/models.py:3446 +#: part/models.py:3510 msgid "Number of individual stock entries at time of stocktake" msgstr "" -#: part/models.py:3454 +#: part/models.py:3518 msgid "Total available stock at time of stocktake" msgstr "" -#: part/models.py:3458 report/templates/report/inventree_test_report.html:106 +#: part/models.py:3522 report/templates/report/inventree_test_report.html:106 msgid "Date" msgstr "" -#: part/models.py:3459 +#: part/models.py:3523 msgid "Date stocktake was performed" msgstr "" -#: part/models.py:3466 +#: part/models.py:3530 msgid "Minimum Stock Cost" msgstr "" -#: part/models.py:3467 +#: part/models.py:3531 msgid "Estimated minimum cost of stock on hand" msgstr "" -#: part/models.py:3473 +#: part/models.py:3537 msgid "Maximum Stock Cost" msgstr "" -#: part/models.py:3474 +#: part/models.py:3538 msgid "Estimated maximum cost of stock on hand" msgstr "" -#: part/models.py:3484 +#: part/models.py:3548 msgid "Part Sale Price Break" msgstr "" -#: part/models.py:3596 +#: part/models.py:3660 msgid "Part Test Template" msgstr "" -#: part/models.py:3622 +#: part/models.py:3686 msgid "Invalid template name - must include at least one alphanumeric character" msgstr "" -#: part/models.py:3643 part/models.py:3816 -msgid "Choices must be unique" -msgstr "" - -#: part/models.py:3654 +#: part/models.py:3718 msgid "Test templates can only be created for testable parts" msgstr "" -#: part/models.py:3668 +#: part/models.py:3732 msgid "Test template with the same key already exists for part" msgstr "" -#: part/models.py:3685 +#: part/models.py:3749 msgid "Test Name" msgstr "" -#: part/models.py:3686 +#: part/models.py:3750 msgid "Enter a name for the test" msgstr "" -#: part/models.py:3692 +#: part/models.py:3756 msgid "Test Key" msgstr "" -#: part/models.py:3693 +#: part/models.py:3757 msgid "Simplified key for the test" msgstr "" -#: part/models.py:3700 +#: part/models.py:3764 msgid "Test Description" msgstr "" -#: part/models.py:3701 +#: part/models.py:3765 msgid "Enter description for this test" msgstr "" -#: part/models.py:3705 report/models.py:287 -msgid "Enabled" -msgstr "" - -#: part/models.py:3705 +#: part/models.py:3769 msgid "Is this test enabled?" msgstr "" -#: part/models.py:3710 +#: part/models.py:3774 msgid "Required" msgstr "" -#: part/models.py:3711 +#: part/models.py:3775 msgid "Is this test required to pass?" msgstr "" -#: part/models.py:3716 +#: part/models.py:3780 msgid "Requires Value" msgstr "" -#: part/models.py:3717 +#: part/models.py:3781 msgid "Does this test require a value when adding a test result?" msgstr "" -#: part/models.py:3722 +#: part/models.py:3786 msgid "Requires Attachment" msgstr "" -#: part/models.py:3724 +#: part/models.py:3788 msgid "Does this test require a file attachment when adding a test result?" msgstr "" -#: part/models.py:3730 part/models.py:3878 -msgid "Choices" -msgstr "" - -#: part/models.py:3731 +#: part/models.py:3795 msgid "Valid choices for this test (comma-separated)" msgstr "" -#: part/models.py:3764 -msgid "Part Parameter Template" -msgstr "" - -#: part/models.py:3791 -msgid "Checkbox parameters cannot have units" -msgstr "" - -#: part/models.py:3796 -msgid "Checkbox parameters cannot have choices" -msgstr "" - -#: part/models.py:3833 -msgid "Parameter template name must be unique" -msgstr "" - -#: part/models.py:3851 -msgid "Parameter Name" -msgstr "" - -#: part/models.py:3858 -msgid "Physical units for this parameter" -msgstr "" - -#: part/models.py:3866 -msgid "Parameter description" -msgstr "" - -#: part/models.py:3872 -msgid "Checkbox" -msgstr "" - -#: part/models.py:3873 -msgid "Is this parameter a checkbox?" -msgstr "" - -#: part/models.py:3879 -msgid "Valid choices for this parameter (comma-separated)" -msgstr "" - -#: part/models.py:3890 -msgid "Selection list for this parameter" -msgstr "" - -#: part/models.py:3932 -msgid "Part Parameter" -msgstr "" - -#: part/models.py:3958 -msgid "Parameter cannot be modified - part is locked" -msgstr "" - -#: part/models.py:3996 -msgid "Invalid choice for parameter value" -msgstr "" - -#: part/models.py:4047 -msgid "Parent Part" -msgstr "" - -#: part/models.py:4055 part/models.py:4170 part/models.py:4171 -msgid "Parameter Template" -msgstr "" - -#: part/models.py:4061 -msgid "Parameter Value" -msgstr "" - -#: part/models.py:4071 stock/serializers.py:718 -msgid "Optional note field" -msgstr "" - -#: part/models.py:4118 -msgid "Part Category Parameter Template" -msgstr "" - -#: part/models.py:4177 -msgid "Default Value" -msgstr "" - -#: part/models.py:4178 -msgid "Default Parameter Value" -msgstr "" - -#: part/models.py:4352 +#: part/models.py:3977 msgid "BOM item cannot be modified - assembly is locked" msgstr "" -#: part/models.py:4359 +#: part/models.py:3984 msgid "BOM item cannot be modified - variant assembly is locked" msgstr "" -#: part/models.py:4369 +#: part/models.py:3994 msgid "Select parent part" msgstr "" -#: part/models.py:4379 +#: part/models.py:4004 msgid "Sub part" msgstr "" -#: part/models.py:4380 +#: part/models.py:4005 msgid "Select part to be used in BOM" msgstr "" -#: part/models.py:4391 +#: part/models.py:4016 msgid "BOM quantity for this BOM item" msgstr "" -#: part/models.py:4397 +#: part/models.py:4022 msgid "This BOM item is optional" msgstr "" -#: part/models.py:4403 +#: part/models.py:4028 msgid "This BOM item is consumable (it is not tracked in build orders)" msgstr "" -#: part/models.py:4411 +#: part/models.py:4036 msgid "Setup Quantity" msgstr "" -#: part/models.py:4412 +#: part/models.py:4037 msgid "Extra required quantity for a build, to account for setup losses" msgstr "" -#: part/models.py:4420 +#: part/models.py:4045 msgid "Attrition" msgstr "" -#: part/models.py:4422 +#: part/models.py:4047 msgid "Estimated attrition for a build, expressed as a percentage (0-100)" msgstr "" -#: part/models.py:4433 +#: part/models.py:4058 msgid "Rounding Multiple" msgstr "" -#: part/models.py:4435 +#: part/models.py:4060 msgid "Round up required production quantity to nearest multiple of this value" msgstr "" -#: part/models.py:4443 +#: part/models.py:4068 msgid "BOM item reference" msgstr "" -#: part/models.py:4451 +#: part/models.py:4076 msgid "BOM item notes" msgstr "" -#: part/models.py:4457 +#: part/models.py:4082 msgid "Checksum" msgstr "" -#: part/models.py:4458 +#: part/models.py:4083 msgid "BOM line checksum" msgstr "" -#: part/models.py:4463 +#: part/models.py:4088 msgid "Validated" msgstr "" -#: part/models.py:4464 +#: part/models.py:4089 msgid "This BOM item has been validated" msgstr "" -#: part/models.py:4469 +#: part/models.py:4094 msgid "Gets inherited" msgstr "" -#: part/models.py:4470 +#: part/models.py:4095 msgid "This BOM item is inherited by BOMs for variant parts" msgstr "" -#: part/models.py:4476 +#: part/models.py:4101 msgid "Stock items for variant parts can be used for this BOM item" msgstr "" -#: part/models.py:4583 stock/models.py:925 +#: part/models.py:4208 stock/models.py:925 msgid "Quantity must be integer value for trackable parts" msgstr "" -#: part/models.py:4593 part/models.py:4595 +#: part/models.py:4218 part/models.py:4220 msgid "Sub part must be specified" msgstr "" -#: part/models.py:4746 +#: part/models.py:4371 msgid "BOM Item Substitute" msgstr "" -#: part/models.py:4767 +#: part/models.py:4392 msgid "Substitute part cannot be the same as the master part" msgstr "" -#: part/models.py:4780 +#: part/models.py:4405 msgid "Parent BOM item" msgstr "" -#: part/models.py:4788 +#: part/models.py:4413 msgid "Substitute part" msgstr "" -#: part/models.py:4804 +#: part/models.py:4429 msgid "Part 1" msgstr "" -#: part/models.py:4812 +#: part/models.py:4437 msgid "Part 2" msgstr "" -#: part/models.py:4813 +#: part/models.py:4438 msgid "Select Related Part" msgstr "" -#: part/models.py:4820 +#: part/models.py:4445 msgid "Note for this relationship" msgstr "" -#: part/models.py:4839 +#: part/models.py:4464 msgid "Part relationship cannot be created between a part and itself" msgstr "" -#: part/models.py:4844 +#: part/models.py:4469 msgid "Duplicate relationship already exists" msgstr "" -#: part/serializers.py:114 +#: part/serializers.py:113 msgid "Parent Category" msgstr "" -#: part/serializers.py:115 +#: part/serializers.py:114 msgid "Parent part category" msgstr "" -#: part/serializers.py:123 part/serializers.py:164 +#: part/serializers.py:122 part/serializers.py:163 msgid "Subcategories" msgstr "" -#: part/serializers.py:203 +#: part/serializers.py:202 msgid "Results" msgstr "" -#: part/serializers.py:204 +#: part/serializers.py:203 msgid "Number of results recorded against this template" msgstr "" -#: part/serializers.py:235 part/serializers.py:253 stock/serializers.py:643 +#: part/serializers.py:234 part/serializers.py:252 stock/serializers.py:643 msgid "Purchase currency of this stock item" msgstr "" -#: part/serializers.py:280 +#: part/serializers.py:279 msgid "File is not an image" msgstr "" -#: part/serializers.py:311 -msgid "Number of parts using this template" -msgstr "" - -#: part/serializers.py:471 +#: part/serializers.py:382 msgid "Original Part" msgstr "" -#: part/serializers.py:472 +#: part/serializers.py:383 msgid "Select original part to duplicate" msgstr "" -#: part/serializers.py:477 +#: part/serializers.py:388 msgid "Copy Image" msgstr "" -#: part/serializers.py:478 +#: part/serializers.py:389 msgid "Copy image from original part" msgstr "" -#: part/serializers.py:484 +#: part/serializers.py:395 msgid "Copy BOM" msgstr "" -#: part/serializers.py:485 +#: part/serializers.py:396 msgid "Copy bill of materials from original part" msgstr "" -#: part/serializers.py:491 +#: part/serializers.py:402 msgid "Copy Parameters" msgstr "" -#: part/serializers.py:492 +#: part/serializers.py:403 msgid "Copy parameter data from original part" msgstr "" -#: part/serializers.py:498 +#: part/serializers.py:409 msgid "Copy Notes" msgstr "" -#: part/serializers.py:499 +#: part/serializers.py:410 msgid "Copy notes from original part" msgstr "" -#: part/serializers.py:505 +#: part/serializers.py:416 msgid "Copy Tests" msgstr "" -#: part/serializers.py:506 +#: part/serializers.py:417 msgid "Copy test templates from original part" msgstr "" -#: part/serializers.py:524 +#: part/serializers.py:435 msgid "Initial Stock Quantity" msgstr "" -#: part/serializers.py:526 +#: part/serializers.py:437 msgid "Specify initial stock quantity for this Part. If quantity is zero, no stock is added." msgstr "" -#: part/serializers.py:533 +#: part/serializers.py:444 msgid "Initial Stock Location" msgstr "" -#: part/serializers.py:534 +#: part/serializers.py:445 msgid "Specify initial stock location for this Part" msgstr "" -#: part/serializers.py:551 +#: part/serializers.py:462 msgid "Select supplier (or leave blank to skip)" msgstr "" -#: part/serializers.py:567 +#: part/serializers.py:478 msgid "Select manufacturer (or leave blank to skip)" msgstr "" -#: part/serializers.py:577 +#: part/serializers.py:488 msgid "Manufacturer part number" msgstr "" -#: part/serializers.py:584 +#: part/serializers.py:495 msgid "Selected company is not a valid supplier" msgstr "" -#: part/serializers.py:593 +#: part/serializers.py:504 msgid "Selected company is not a valid manufacturer" msgstr "" -#: part/serializers.py:604 +#: part/serializers.py:515 msgid "Manufacturer part matching this MPN already exists" msgstr "" -#: part/serializers.py:611 +#: part/serializers.py:522 msgid "Supplier part matching this SKU already exists" msgstr "" -#: part/serializers.py:914 +#: part/serializers.py:799 msgid "Category Name" msgstr "" -#: part/serializers.py:943 +#: part/serializers.py:828 msgid "Building" msgstr "" -#: part/serializers.py:944 +#: part/serializers.py:829 msgid "Quantity of this part currently being in production" msgstr "" -#: part/serializers.py:951 +#: part/serializers.py:836 msgid "Outstanding quantity of this part scheduled to be built" msgstr "" -#: part/serializers.py:971 stock/serializers.py:1019 stock/serializers.py:1189 +#: part/serializers.py:856 stock/serializers.py:1019 stock/serializers.py:1189 #: users/ruleset.py:30 msgid "Stock Items" msgstr "" -#: part/serializers.py:975 +#: part/serializers.py:860 msgid "Revisions" msgstr "" -#: part/serializers.py:979 +#: part/serializers.py:864 msgid "Suppliers" msgstr "" -#: part/serializers.py:983 part/serializers.py:1297 +#: part/serializers.py:868 part/serializers.py:1162 #: templates/email/low_stock_notification.html:16 #: templates/email/part_event_notification.html:17 msgid "Total Stock" msgstr "" -#: part/serializers.py:991 +#: part/serializers.py:876 msgid "Unallocated Stock" msgstr "" -#: part/serializers.py:999 +#: part/serializers.py:884 msgid "Variant Stock" msgstr "" -#: part/serializers.py:1054 +#: part/serializers.py:943 msgid "Duplicate Part" msgstr "" -#: part/serializers.py:1055 +#: part/serializers.py:944 msgid "Copy initial data from another Part" msgstr "" -#: part/serializers.py:1061 +#: part/serializers.py:950 msgid "Initial Stock" msgstr "" -#: part/serializers.py:1062 +#: part/serializers.py:951 msgid "Create Part with initial stock quantity" msgstr "" -#: part/serializers.py:1068 +#: part/serializers.py:957 msgid "Supplier Information" msgstr "" -#: part/serializers.py:1069 +#: part/serializers.py:958 msgid "Add initial supplier information for this part" msgstr "" -#: part/serializers.py:1077 +#: part/serializers.py:966 msgid "Copy Category Parameters" msgstr "" -#: part/serializers.py:1078 +#: part/serializers.py:967 msgid "Copy parameter templates from selected part category" msgstr "" -#: part/serializers.py:1083 +#: part/serializers.py:972 msgid "Existing Image" msgstr "" -#: part/serializers.py:1084 +#: part/serializers.py:973 msgid "Filename of an existing part image" msgstr "" -#: part/serializers.py:1101 +#: part/serializers.py:990 msgid "Image file does not exist" msgstr "" -#: part/serializers.py:1269 +#: part/serializers.py:1134 msgid "Validate entire Bill of Materials" msgstr "" -#: part/serializers.py:1303 part/serializers.py:1769 +#: part/serializers.py:1168 part/serializers.py:1634 msgid "Can Build" msgstr "" -#: part/serializers.py:1320 +#: part/serializers.py:1185 msgid "Required for Build Orders" msgstr "" -#: part/serializers.py:1325 +#: part/serializers.py:1190 msgid "Allocated to Build Orders" msgstr "" -#: part/serializers.py:1332 +#: part/serializers.py:1197 msgid "Required for Sales Orders" msgstr "" -#: part/serializers.py:1336 +#: part/serializers.py:1201 msgid "Allocated to Sales Orders" msgstr "" -#: part/serializers.py:1475 +#: part/serializers.py:1340 msgid "Minimum Price" msgstr "" -#: part/serializers.py:1476 +#: part/serializers.py:1341 msgid "Override calculated value for minimum price" msgstr "" -#: part/serializers.py:1483 +#: part/serializers.py:1348 msgid "Minimum price currency" msgstr "" -#: part/serializers.py:1490 +#: part/serializers.py:1355 msgid "Maximum Price" msgstr "" -#: part/serializers.py:1491 +#: part/serializers.py:1356 msgid "Override calculated value for maximum price" msgstr "" -#: part/serializers.py:1498 +#: part/serializers.py:1363 msgid "Maximum price currency" msgstr "" -#: part/serializers.py:1527 +#: part/serializers.py:1392 msgid "Update" msgstr "" -#: part/serializers.py:1528 +#: part/serializers.py:1393 msgid "Update pricing for this part" msgstr "" -#: part/serializers.py:1551 +#: part/serializers.py:1416 #, python-brace-format msgid "Could not convert from provided currencies to {default_currency}" msgstr "" -#: part/serializers.py:1558 +#: part/serializers.py:1423 msgid "Minimum price must not be greater than maximum price" msgstr "" -#: part/serializers.py:1561 +#: part/serializers.py:1426 msgid "Maximum price must not be less than minimum price" msgstr "" -#: part/serializers.py:1715 +#: part/serializers.py:1580 msgid "Select the parent assembly" msgstr "" -#: part/serializers.py:1735 +#: part/serializers.py:1600 msgid "Select the component part" msgstr "" -#: part/serializers.py:1929 +#: part/serializers.py:1802 msgid "Select part to copy BOM from" msgstr "" -#: part/serializers.py:1937 +#: part/serializers.py:1810 msgid "Remove Existing Data" msgstr "" -#: part/serializers.py:1938 +#: part/serializers.py:1811 msgid "Remove existing BOM items before copying" msgstr "" -#: part/serializers.py:1943 +#: part/serializers.py:1816 msgid "Include Inherited" msgstr "" -#: part/serializers.py:1944 +#: part/serializers.py:1817 msgid "Include BOM items which are inherited from templated parts" msgstr "" -#: part/serializers.py:1949 +#: part/serializers.py:1822 msgid "Skip Invalid Rows" msgstr "" -#: part/serializers.py:1950 +#: part/serializers.py:1823 msgid "Enable this option to skip invalid rows" msgstr "" -#: part/serializers.py:1955 +#: part/serializers.py:1828 msgid "Copy Substitute Parts" msgstr "" -#: part/serializers.py:1956 +#: part/serializers.py:1829 msgid "Copy substitute parts when duplicate BOM items" msgstr "" @@ -6927,7 +6974,7 @@ msgstr "" #: plugin/builtin/events/auto_issue_orders.py:19 #: plugin/builtin/exporter/bom_exporter.py:73 #: plugin/builtin/exporter/inventree_exporter.py:17 -#: plugin/builtin/exporter/part_parameter_exporter.py:36 +#: plugin/builtin/exporter/parameter_exporter.py:32 #: plugin/builtin/exporter/stocktake_exporter.py:47 #: plugin/builtin/integration/core_notifications.py:25 #: plugin/builtin/integration/core_notifications.py:69 @@ -7041,23 +7088,19 @@ msgid "Include total quantity of each part in the BOM" msgstr "" #: plugin/builtin/exporter/bom_exporter.py:35 -#: plugin/builtin/exporter/part_parameter_exporter.py:17 msgid "Stock Data" msgstr "" #: plugin/builtin/exporter/bom_exporter.py:35 -#: plugin/builtin/exporter/part_parameter_exporter.py:17 msgid "Include part stock data" msgstr "" #: plugin/builtin/exporter/bom_exporter.py:39 -#: plugin/builtin/exporter/part_parameter_exporter.py:21 #: plugin/builtin/exporter/stocktake_exporter.py:20 msgid "Pricing Data" msgstr "" #: plugin/builtin/exporter/bom_exporter.py:39 -#: plugin/builtin/exporter/part_parameter_exporter.py:21 #: plugin/builtin/exporter/stocktake_exporter.py:20 msgid "Include part pricing data" msgstr "" @@ -7144,12 +7187,20 @@ msgstr "" msgid "Provides support for exporting data from InvenTree" msgstr "" -#: plugin/builtin/exporter/part_parameter_exporter.py:33 -msgid "Part Parameter Exporter" +#: plugin/builtin/exporter/parameter_exporter.py:16 +msgid "Exclude Inactive" msgstr "" -#: plugin/builtin/exporter/part_parameter_exporter.py:34 -msgid "Exporter for part parameter data" +#: plugin/builtin/exporter/parameter_exporter.py:17 +msgid "Exclude parameters which are inactive" +msgstr "" + +#: plugin/builtin/exporter/parameter_exporter.py:29 +msgid "Parameter Exporter" +msgstr "" + +#: plugin/builtin/exporter/parameter_exporter.py:30 +msgid "Exporter for model parameter data" msgstr "" #: plugin/builtin/exporter/stocktake_exporter.py:25 @@ -8079,19 +8130,19 @@ msgstr "" msgid "No result" msgstr "" -#: report/templatetags/report.py:167 +#: report/templatetags/report.py:169 msgid "Asset file does not exist" msgstr "" -#: report/templatetags/report.py:224 report/templatetags/report.py:300 +#: report/templatetags/report.py:226 report/templatetags/report.py:302 msgid "Image file not found" msgstr "" -#: report/templatetags/report.py:325 +#: report/templatetags/report.py:327 msgid "part_image tag requires a Part instance" msgstr "" -#: report/templatetags/report.py:362 +#: report/templatetags/report.py:383 msgid "company_image tag requires a Company instance" msgstr "" @@ -8455,115 +8506,119 @@ msgstr "" msgid "Quantity does not match serial numbers" msgstr "" -#: stock/models.py:2012 stock/models.py:2917 +#: stock/models.py:1912 +msgid "Cannot assign stock to structural location" +msgstr "" + +#: stock/models.py:2029 stock/models.py:2934 msgid "Test template does not exist" msgstr "" -#: stock/models.py:2030 +#: stock/models.py:2047 msgid "Stock item has been assigned to a sales order" msgstr "" -#: stock/models.py:2034 +#: stock/models.py:2051 msgid "Stock item is installed in another item" msgstr "" -#: stock/models.py:2037 +#: stock/models.py:2054 msgid "Stock item contains other items" msgstr "" -#: stock/models.py:2040 +#: stock/models.py:2057 msgid "Stock item has been assigned to a customer" msgstr "" -#: stock/models.py:2043 stock/models.py:2226 +#: stock/models.py:2060 stock/models.py:2243 msgid "Stock item is currently in production" msgstr "" -#: stock/models.py:2046 +#: stock/models.py:2063 msgid "Serialized stock cannot be merged" msgstr "" -#: stock/models.py:2053 stock/serializers.py:1462 +#: stock/models.py:2070 stock/serializers.py:1462 msgid "Duplicate stock items" msgstr "" -#: stock/models.py:2057 +#: stock/models.py:2074 msgid "Stock items must refer to the same part" msgstr "" -#: stock/models.py:2065 +#: stock/models.py:2082 msgid "Stock items must refer to the same supplier part" msgstr "" -#: stock/models.py:2070 +#: stock/models.py:2087 msgid "Stock status codes must match" msgstr "" -#: stock/models.py:2349 +#: stock/models.py:2366 msgid "StockItem cannot be moved as it is not in stock" msgstr "" -#: stock/models.py:2818 +#: stock/models.py:2835 msgid "Stock Item Tracking" msgstr "" -#: stock/models.py:2849 +#: stock/models.py:2866 msgid "Entry notes" msgstr "" -#: stock/models.py:2889 +#: stock/models.py:2906 msgid "Stock Item Test Result" msgstr "" -#: stock/models.py:2920 +#: stock/models.py:2937 msgid "Value must be provided for this test" msgstr "" -#: stock/models.py:2924 +#: stock/models.py:2941 msgid "Attachment must be uploaded for this test" msgstr "" -#: stock/models.py:2929 +#: stock/models.py:2946 msgid "Invalid value for this test" msgstr "" -#: stock/models.py:2953 +#: stock/models.py:2970 msgid "Test result" msgstr "" -#: stock/models.py:2960 +#: stock/models.py:2977 msgid "Test output value" msgstr "" -#: stock/models.py:2968 stock/serializers.py:248 +#: stock/models.py:2985 stock/serializers.py:248 msgid "Test result attachment" msgstr "" -#: stock/models.py:2972 +#: stock/models.py:2989 msgid "Test notes" msgstr "" -#: stock/models.py:2980 +#: stock/models.py:2997 msgid "Test station" msgstr "" -#: stock/models.py:2981 +#: stock/models.py:2998 msgid "The identifier of the test station where the test was performed" msgstr "" -#: stock/models.py:2987 +#: stock/models.py:3004 msgid "Started" msgstr "" -#: stock/models.py:2988 +#: stock/models.py:3005 msgid "The timestamp of the test start" msgstr "" -#: stock/models.py:2994 +#: stock/models.py:3011 msgid "Finished" msgstr "" -#: stock/models.py:2995 +#: stock/models.py:3012 msgid "The timestamp of the test finish" msgstr "" @@ -8677,8 +8732,8 @@ msgstr "" msgid "Quantity must not exceed available stock quantity ({q})" msgstr "" -#: stock/serializers.py:711 stock/serializers.py:1419 stock/serializers.py:1732 -#: stock/serializers.py:1781 +#: stock/serializers.py:711 stock/serializers.py:1419 stock/serializers.py:1740 +#: stock/serializers.py:1789 msgid "Destination stock location" msgstr "" @@ -8834,19 +8889,19 @@ msgstr "" msgid "Stock transaction notes" msgstr "" -#: stock/serializers.py:1787 +#: stock/serializers.py:1795 msgid "Merge into existing stock" msgstr "" -#: stock/serializers.py:1788 +#: stock/serializers.py:1796 msgid "Merge returned items into existing stock items if possible" msgstr "" -#: stock/serializers.py:1831 +#: stock/serializers.py:1839 msgid "Next Serial Number" msgstr "" -#: stock/serializers.py:1837 +#: stock/serializers.py:1845 msgid "Previous Serial Number" msgstr "" @@ -8902,83 +8957,87 @@ msgstr "" msgid "Stock manually removed" msgstr "" -#: stock/status_codes.py:57 +#: stock/status_codes.py:56 +msgid "Serialized stock items" +msgstr "" + +#: stock/status_codes.py:58 msgid "Returned to stock" msgstr "" -#: stock/status_codes.py:60 +#: stock/status_codes.py:61 msgid "Location changed" msgstr "מיקום שונה" -#: stock/status_codes.py:61 +#: stock/status_codes.py:62 msgid "Stock updated" msgstr "" -#: stock/status_codes.py:64 +#: stock/status_codes.py:65 msgid "Installed into assembly" msgstr "" -#: stock/status_codes.py:65 +#: stock/status_codes.py:66 msgid "Removed from assembly" msgstr "" -#: stock/status_codes.py:67 +#: stock/status_codes.py:68 msgid "Installed component item" msgstr "" -#: stock/status_codes.py:68 +#: stock/status_codes.py:69 msgid "Removed component item" msgstr "" -#: stock/status_codes.py:71 +#: stock/status_codes.py:72 msgid "Split from parent item" msgstr "" -#: stock/status_codes.py:72 +#: stock/status_codes.py:73 msgid "Split child item" msgstr "" -#: stock/status_codes.py:75 +#: stock/status_codes.py:76 msgid "Merged stock items" msgstr "" -#: stock/status_codes.py:78 +#: stock/status_codes.py:79 msgid "Converted to variant" msgstr "" -#: stock/status_codes.py:81 +#: stock/status_codes.py:82 msgid "Build order output created" msgstr "" -#: stock/status_codes.py:82 +#: stock/status_codes.py:83 msgid "Build order output completed" msgstr "" -#: stock/status_codes.py:83 +#: stock/status_codes.py:84 msgid "Build order output rejected" msgstr "" -#: stock/status_codes.py:84 +#: stock/status_codes.py:85 msgid "Consumed by build order" msgstr "" -#: stock/status_codes.py:87 +#: stock/status_codes.py:88 msgid "Shipped against Sales Order" msgstr "" -#: stock/status_codes.py:90 +#: stock/status_codes.py:91 msgid "Received against Purchase Order" msgstr "" -#: stock/status_codes.py:93 +#: stock/status_codes.py:94 msgid "Returned against Return Order" msgstr "" -#: stock/status_codes.py:96 +#: stock/status_codes.py:97 msgid "Sent to customer" msgstr "נשלח ללקוח" -#: stock/status_codes.py:97 +#: stock/status_codes.py:98 msgid "Returned from customer" msgstr "הוחזר מלקוח" diff --git a/src/backend/InvenTree/locale/hi/LC_MESSAGES/django.po b/src/backend/InvenTree/locale/hi/LC_MESSAGES/django.po index ce18ceb12d..46f633e680 100644 --- a/src/backend/InvenTree/locale/hi/LC_MESSAGES/django.po +++ b/src/backend/InvenTree/locale/hi/LC_MESSAGES/django.po @@ -2,8 +2,8 @@ msgid "" msgstr "" "Project-Id-Version: inventree\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-11-19 04:55+0000\n" -"PO-Revision-Date: 2025-11-19 04:59\n" +"POT-Creation-Date: 2025-12-07 07:33+0000\n" +"PO-Revision-Date: 2025-12-07 07:36\n" "Last-Translator: \n" "Language-Team: Hindi\n" "Language: hi_IN\n" @@ -57,7 +57,7 @@ msgstr "" msgid "This field must be unique." msgstr "" -#: InvenTree/api.py:775 +#: InvenTree/api.py:803 msgid "User does not have permission to view this model" msgstr "" @@ -81,22 +81,22 @@ msgstr "" msgid "The provided email domain is not approved." msgstr "" -#: InvenTree/conversion.py:166 +#: InvenTree/conversion.py:240 #, python-brace-format msgid "Invalid unit provided ({unit})" msgstr "" -#: InvenTree/conversion.py:183 +#: InvenTree/conversion.py:257 msgid "No value provided" msgstr "" -#: InvenTree/conversion.py:210 +#: InvenTree/conversion.py:284 #, python-brace-format msgid "Could not convert {original} to {unit}" msgstr "" -#: InvenTree/conversion.py:212 InvenTree/conversion.py:226 -#: InvenTree/helpers.py:597 order/models.py:720 order/models.py:1015 +#: InvenTree/conversion.py:286 InvenTree/conversion.py:300 +#: InvenTree/helpers.py:597 order/models.py:721 order/models.py:1016 msgid "Invalid quantity provided" msgstr "" @@ -112,11 +112,11 @@ msgstr "तारीख दर्ज करें" msgid "Invalid decimal value" msgstr "" -#: InvenTree/fields.py:218 InvenTree/models.py:1067 build/serializers.py:509 -#: build/serializers.py:580 build/serializers.py:1788 company/models.py:857 -#: order/models.py:1780 +#: InvenTree/fields.py:218 InvenTree/models.py:1228 build/serializers.py:517 +#: build/serializers.py:588 build/serializers.py:1796 company/models.py:811 +#: order/models.py:1781 #: report/templates/report/inventree_build_order_report.html:172 -#: stock/models.py:2848 stock/models.py:2972 stock/serializers.py:717 +#: stock/models.py:2865 stock/models.py:2989 stock/serializers.py:717 #: stock/serializers.py:893 stock/serializers.py:1035 stock/serializers.py:1336 #: stock/serializers.py:1425 stock/serializers.py:1624 msgid "Notes" @@ -171,35 +171,35 @@ msgstr "" msgid "Data contains prohibited markdown content" msgstr "" -#: InvenTree/helpers_model.py:133 +#: InvenTree/helpers_model.py:134 msgid "Connection error" msgstr "कनेक्शन त्रुटि" -#: InvenTree/helpers_model.py:138 InvenTree/helpers_model.py:145 +#: InvenTree/helpers_model.py:139 InvenTree/helpers_model.py:146 msgid "Server responded with invalid status code" msgstr "" -#: InvenTree/helpers_model.py:141 +#: InvenTree/helpers_model.py:142 msgid "Exception occurred" msgstr "" -#: InvenTree/helpers_model.py:151 +#: InvenTree/helpers_model.py:152 msgid "Server responded with invalid Content-Length value" msgstr "" -#: InvenTree/helpers_model.py:154 +#: InvenTree/helpers_model.py:155 msgid "Image size is too large" msgstr "" -#: InvenTree/helpers_model.py:166 +#: InvenTree/helpers_model.py:167 msgid "Image download exceeded maximum size" msgstr "" -#: InvenTree/helpers_model.py:171 +#: InvenTree/helpers_model.py:172 msgid "Remote server returned empty response" msgstr "" -#: InvenTree/helpers_model.py:179 +#: InvenTree/helpers_model.py:180 msgid "Supplied URL is not a valid image file" msgstr "" @@ -207,7 +207,7 @@ msgstr "" msgid "Log in to the app" msgstr "" -#: InvenTree/magic_login.py:41 company/models.py:172 users/serializers.py:198 +#: InvenTree/magic_login.py:41 company/models.py:173 users/serializers.py:198 msgid "Email" msgstr "ई-मेल" @@ -215,160 +215,176 @@ msgstr "ई-मेल" msgid "You must enable two-factor authentication before doing anything else." msgstr "" -#: InvenTree/models.py:111 +#: InvenTree/models.py:114 msgid "Error running plugin validation" msgstr "" -#: InvenTree/models.py:192 +#: InvenTree/models.py:195 msgid "Metadata must be a python dict object" msgstr "" -#: InvenTree/models.py:198 +#: InvenTree/models.py:201 msgid "Plugin Metadata" msgstr "" -#: InvenTree/models.py:199 +#: InvenTree/models.py:202 msgid "JSON metadata field, for use by external plugins" msgstr "" -#: InvenTree/models.py:382 +#: InvenTree/models.py:385 msgid "Improperly formatted pattern" msgstr "" -#: InvenTree/models.py:389 +#: InvenTree/models.py:392 msgid "Unknown format key specified" msgstr "" -#: InvenTree/models.py:395 +#: InvenTree/models.py:398 msgid "Missing required format key" msgstr "" -#: InvenTree/models.py:406 +#: InvenTree/models.py:409 msgid "Reference field cannot be empty" msgstr "" -#: InvenTree/models.py:414 +#: InvenTree/models.py:417 msgid "Reference must match required pattern" msgstr "" -#: InvenTree/models.py:445 +#: InvenTree/models.py:448 msgid "Reference number is too large" msgstr "" -#: InvenTree/models.py:743 +#: InvenTree/models.py:896 msgid "Invalid choice" msgstr "" -#: InvenTree/models.py:856 common/models.py:1410 common/models.py:1837 -#: common/models.py:2096 common/models.py:2221 common/serializers.py:535 -#: company/models.py:615 generic/states/serializers.py:20 machine/models.py:25 -#: part/models.py:1039 part/models.py:3850 plugin/models.py:54 +#: InvenTree/models.py:1017 common/models.py:1414 common/models.py:1841 +#: common/models.py:2102 common/models.py:2227 common/models.py:2494 +#: common/serializers.py:539 generic/states/serializers.py:20 +#: machine/models.py:25 part/models.py:1127 plugin/models.py:54 #: report/models.py:216 stock/models.py:84 msgid "Name" msgstr "" -#: InvenTree/models.py:862 build/models.py:252 common/models.py:171 -#: common/models.py:2228 common/models.py:2341 company/models.py:543 -#: company/models.py:848 order/models.py:442 order/models.py:1825 -#: part/models.py:1062 part/models.py:3865 report/models.py:222 +#: InvenTree/models.py:1023 build/models.py:253 common/models.py:175 +#: common/models.py:2234 common/models.py:2347 common/models.py:2509 +#: company/models.py:545 company/models.py:802 order/models.py:443 +#: order/models.py:1826 part/models.py:1150 report/models.py:222 #: report/models.py:815 report/models.py:841 #: report/templates/report/inventree_build_order_report.html:117 #: stock/models.py:90 msgid "Description" msgstr "" -#: InvenTree/models.py:863 stock/models.py:91 +#: InvenTree/models.py:1024 stock/models.py:91 msgid "Description (optional)" msgstr "" -#: InvenTree/models.py:878 common/models.py:2394 +#: InvenTree/models.py:1039 common/models.py:2815 msgid "Path" msgstr "" -#: InvenTree/models.py:983 +#: InvenTree/models.py:1144 msgid "Duplicate names cannot exist under the same parent" msgstr "" -#: InvenTree/models.py:1067 +#: InvenTree/models.py:1228 msgid "Markdown notes (optional)" msgstr "" -#: InvenTree/models.py:1098 +#: InvenTree/models.py:1259 msgid "Barcode Data" msgstr "" -#: InvenTree/models.py:1099 +#: InvenTree/models.py:1260 msgid "Third party barcode data" msgstr "" -#: InvenTree/models.py:1105 +#: InvenTree/models.py:1266 msgid "Barcode Hash" msgstr "" -#: InvenTree/models.py:1106 +#: InvenTree/models.py:1267 msgid "Unique hash of barcode data" msgstr "" -#: InvenTree/models.py:1187 +#: InvenTree/models.py:1348 msgid "Existing barcode found" msgstr "" -#: InvenTree/models.py:1269 +#: InvenTree/models.py:1430 msgid "Task Failure" msgstr "" -#: InvenTree/models.py:1270 +#: InvenTree/models.py:1431 #, python-brace-format msgid "Background worker task '{f}' failed after {n} attempts" msgstr "" -#: InvenTree/models.py:1297 +#: InvenTree/models.py:1458 msgid "Server Error" msgstr "" -#: InvenTree/models.py:1298 +#: InvenTree/models.py:1459 msgid "An error has been logged by the server." msgstr "" -#: InvenTree/models.py:1340 common/models.py:1748 +#: InvenTree/models.py:1501 common/models.py:1752 #: report/templates/report/inventree_bill_of_materials_report.html:126 #: report/templates/report/inventree_bill_of_materials_report.html:148 #: report/templates/report/inventree_return_order_report.html:35 msgid "Image" msgstr "" -#: InvenTree/serializers.py:253 part/models.py:4571 +#: InvenTree/serializers.py:255 part/models.py:4196 msgid "Must be a valid number" msgstr "" -#: InvenTree/serializers.py:295 company/models.py:214 part/models.py:3285 +#: InvenTree/serializers.py:297 company/models.py:215 part/models.py:3349 msgid "Currency" msgstr "" -#: InvenTree/serializers.py:298 part/serializers.py:1385 +#: InvenTree/serializers.py:300 part/serializers.py:1250 msgid "Select currency from available options" msgstr "" -#: InvenTree/serializers.py:653 +#: InvenTree/serializers.py:654 +msgid "This field may not be null." +msgstr "" + +#: InvenTree/serializers.py:660 msgid "Invalid value" msgstr "" -#: InvenTree/serializers.py:690 +#: InvenTree/serializers.py:697 msgid "Remote Image" msgstr "" -#: InvenTree/serializers.py:691 +#: InvenTree/serializers.py:698 msgid "URL of remote image file" msgstr "" -#: InvenTree/serializers.py:709 +#: InvenTree/serializers.py:716 msgid "Downloading images from remote URL is not enabled" msgstr "" -#: InvenTree/serializers.py:716 +#: InvenTree/serializers.py:723 msgid "Failed to download image from remote URL" msgstr "" +#: InvenTree/serializers.py:806 +msgid "Invalid content type format" +msgstr "" + +#: InvenTree/serializers.py:809 +msgid "Content type not found" +msgstr "" + +#: InvenTree/serializers.py:815 +msgid "Content type does not match required mixin class" +msgstr "" + #: InvenTree/setting/locales.py:20 msgid "Arabic" msgstr "" @@ -537,30 +553,30 @@ msgstr "" msgid "Not a valid currency code" msgstr "" -#: build/api.py:54 order/api.py:111 order/api.py:270 order/api.py:1373 -#: order/serializers.py:132 +#: build/api.py:54 order/api.py:116 order/api.py:275 order/api.py:1378 +#: order/serializers.py:133 msgid "Order Status" msgstr "" -#: build/api.py:80 build/models.py:264 +#: build/api.py:80 build/models.py:265 msgid "Parent Build" msgstr "" -#: build/api.py:84 build/api.py:831 order/api.py:547 order/api.py:770 -#: order/api.py:1174 order/api.py:1449 stock/api.py:573 +#: build/api.py:84 build/api.py:837 order/api.py:553 order/api.py:776 +#: order/api.py:1179 order/api.py:1454 stock/api.py:573 msgid "Include Variants" msgstr "" -#: build/api.py:100 build/api.py:466 build/api.py:845 build/models.py:270 -#: build/serializers.py:1225 build/serializers.py:1356 -#: build/serializers.py:1427 company/models.py:1067 company/serializers.py:445 -#: order/api.py:298 order/api.py:302 order/api.py:929 order/api.py:1187 -#: order/api.py:1190 order/models.py:1941 order/models.py:2108 -#: order/models.py:2109 part/api.py:1233 part/api.py:1236 part/api.py:1302 -#: part/api.py:1589 part/models.py:472 part/models.py:3296 part/models.py:3439 -#: part/models.py:3497 part/models.py:3518 part/models.py:3540 -#: part/models.py:3679 part/models.py:4046 part/models.py:4368 -#: part/models.py:4787 part/serializers.py:1928 +#: build/api.py:100 build/api.py:472 build/api.py:851 build/models.py:271 +#: build/serializers.py:1233 build/serializers.py:1364 +#: build/serializers.py:1435 company/models.py:1021 company/serializers.py:490 +#: order/api.py:303 order/api.py:307 order/api.py:934 order/api.py:1192 +#: order/api.py:1195 order/models.py:1942 order/models.py:2109 +#: order/models.py:2110 part/api.py:1160 part/api.py:1163 part/api.py:1314 +#: part/models.py:550 part/models.py:3360 part/models.py:3503 +#: part/models.py:3561 part/models.py:3582 part/models.py:3604 +#: part/models.py:3743 part/models.py:3993 part/models.py:4412 +#: part/serializers.py:1801 #: report/templates/report/inventree_bill_of_materials_report.html:110 #: report/templates/report/inventree_bill_of_materials_report.html:137 #: report/templates/report/inventree_build_order_report.html:109 @@ -580,9 +596,9 @@ msgstr "" msgid "Part" msgstr "" -#: build/api.py:120 build/api.py:123 build/serializers.py:1438 part/api.py:980 -#: part/api.py:1316 part/api.py:1600 part/models.py:1080 part/models.py:3568 -#: part/models.py:4162 part/serializers.py:1752 stock/api.py:869 +#: build/api.py:120 build/api.py:123 build/serializers.py:1446 part/api.py:975 +#: part/api.py:1325 part/models.py:435 part/models.py:1168 part/models.py:3632 +#: part/serializers.py:1617 stock/api.py:869 msgid "Category" msgstr "" @@ -590,7 +606,7 @@ msgstr "" msgid "Ancestor Build" msgstr "" -#: build/api.py:152 order/api.py:129 +#: build/api.py:152 order/api.py:134 msgid "Assigned to me" msgstr "" @@ -638,134 +654,134 @@ msgstr "" msgid "Completed after" msgstr "" -#: build/api.py:249 order/api.py:226 +#: build/api.py:249 order/api.py:231 msgid "Min Date" msgstr "" -#: build/api.py:272 order/api.py:245 +#: build/api.py:272 order/api.py:250 msgid "Max Date" msgstr "" -#: build/api.py:297 build/api.py:300 part/api.py:217 stock/api.py:961 +#: build/api.py:297 build/api.py:300 part/api.py:212 stock/api.py:961 msgid "Exclude Tree" msgstr "" -#: build/api.py:405 +#: build/api.py:411 msgid "Build must be cancelled before it can be deleted" msgstr "" -#: build/api.py:449 build/serializers.py:1374 part/models.py:4402 +#: build/api.py:455 build/serializers.py:1382 part/models.py:4027 msgid "Consumable" msgstr "" -#: build/api.py:452 build/serializers.py:1377 part/models.py:4396 +#: build/api.py:458 build/serializers.py:1385 part/models.py:4021 msgid "Optional" msgstr "" -#: build/api.py:455 build/serializers.py:1415 common/setting/system.py:456 -#: part/models.py:1202 part/serializers.py:1714 part/serializers.py:1725 +#: build/api.py:461 build/serializers.py:1423 common/setting/system.py:456 +#: part/models.py:1290 part/serializers.py:1579 part/serializers.py:1590 #: stock/api.py:639 msgid "Assembly" msgstr "" -#: build/api.py:458 +#: build/api.py:464 msgid "Tracked" msgstr "" -#: build/api.py:461 build/serializers.py:1380 part/models.py:1220 +#: build/api.py:467 build/serializers.py:1388 part/models.py:1308 msgid "Testable" msgstr "" -#: build/api.py:471 order/api.py:993 order/api.py:1363 +#: build/api.py:477 order/api.py:998 order/api.py:1368 msgid "Order Outstanding" msgstr "" -#: build/api.py:481 build/serializers.py:1464 order/api.py:952 +#: build/api.py:487 build/serializers.py:1472 order/api.py:957 msgid "Allocated" msgstr "" -#: build/api.py:490 build/models.py:1672 build/serializers.py:1393 +#: build/api.py:496 build/models.py:1673 build/serializers.py:1401 msgid "Consumed" msgstr "" -#: build/api.py:499 company/models.py:912 company/serializers.py:440 +#: build/api.py:505 company/models.py:866 company/serializers.py:467 #: templates/email/build_order_required_stock.html:19 #: templates/email/low_stock_notification.html:17 #: templates/email/part_event_notification.html:18 msgid "Available" msgstr "" -#: build/api.py:523 build/serializers.py:1466 company/serializers.py:437 -#: order/serializers.py:1281 part/serializers.py:959 part/serializers.py:1306 -#: part/serializers.py:1761 +#: build/api.py:529 build/serializers.py:1474 company/serializers.py:464 +#: order/serializers.py:1295 part/serializers.py:844 part/serializers.py:1171 +#: part/serializers.py:1626 msgid "On Order" msgstr "" -#: build/api.py:868 build/models.py:117 order/models.py:1974 +#: build/api.py:874 build/models.py:118 order/models.py:1975 #: report/templates/report/inventree_build_order_report.html:105 #: stock/serializers.py:93 templates/email/build_order_completed.html:16 #: templates/email/overdue_build_order.html:15 msgid "Build Order" msgstr "" -#: build/api.py:882 build/api.py:886 build/serializers.py:372 -#: build/serializers.py:497 build/serializers.py:567 build/serializers.py:1251 -#: build/serializers.py:1256 order/api.py:1234 order/api.py:1239 -#: order/serializers.py:833 order/serializers.py:973 order/serializers.py:2042 +#: build/api.py:888 build/api.py:892 build/serializers.py:380 +#: build/serializers.py:505 build/serializers.py:575 build/serializers.py:1259 +#: build/serializers.py:1264 order/api.py:1239 order/api.py:1244 +#: order/serializers.py:844 order/serializers.py:984 order/serializers.py:2059 #: stock/api.py:987 stock/serializers.py:111 stock/serializers.py:601 #: stock/serializers.py:710 stock/serializers.py:888 stock/serializers.py:1418 -#: stock/serializers.py:1731 stock/serializers.py:1780 +#: stock/serializers.py:1739 stock/serializers.py:1788 #: templates/email/stale_stock_notification.html:18 users/models.py:549 msgid "Location" msgstr "" -#: build/api.py:894 +#: build/api.py:900 msgid "Output" msgstr "" -#: build/api.py:896 +#: build/api.py:902 msgid "Filter by output stock item ID. Use 'null' to find uninstalled build items." msgstr "" -#: build/models.py:118 users/ruleset.py:31 +#: build/models.py:119 users/ruleset.py:31 msgid "Build Orders" msgstr "" -#: build/models.py:168 +#: build/models.py:169 msgid "Assembly BOM has not been validated" msgstr "" -#: build/models.py:175 +#: build/models.py:176 msgid "Build order cannot be created for an inactive part" msgstr "" -#: build/models.py:182 +#: build/models.py:183 msgid "Build order cannot be created for an unlocked part" msgstr "" -#: build/models.py:200 +#: build/models.py:201 msgid "Build orders can only be externally fulfilled for purchaseable parts" msgstr "" -#: build/models.py:207 order/models.py:369 +#: build/models.py:208 order/models.py:370 msgid "Responsible user or group must be specified" msgstr "" -#: build/models.py:212 +#: build/models.py:213 msgid "Build order part cannot be changed" msgstr "" -#: build/models.py:217 order/models.py:382 +#: build/models.py:218 order/models.py:383 msgid "Target date must be after start date" msgstr "" -#: build/models.py:245 +#: build/models.py:246 msgid "Build Order Reference" msgstr "" -#: build/models.py:246 build/serializers.py:1371 order/models.py:614 -#: order/models.py:1311 order/models.py:1773 order/models.py:2712 -#: part/models.py:4442 +#: build/models.py:247 build/serializers.py:1379 order/models.py:615 +#: order/models.py:1312 order/models.py:1774 order/models.py:2713 +#: part/models.py:4067 #: report/templates/report/inventree_bill_of_materials_report.html:139 #: report/templates/report/inventree_purchase_order_report.html:35 #: report/templates/report/inventree_return_order_report.html:26 @@ -773,230 +789,230 @@ msgstr "" msgid "Reference" msgstr "" -#: build/models.py:255 +#: build/models.py:256 msgid "Brief description of the build (optional)" msgstr "" -#: build/models.py:265 +#: build/models.py:266 msgid "BuildOrder to which this build is allocated" msgstr "" -#: build/models.py:274 +#: build/models.py:275 msgid "Select part to build" msgstr "" -#: build/models.py:279 +#: build/models.py:280 msgid "Sales Order Reference" msgstr "" -#: build/models.py:284 +#: build/models.py:285 msgid "SalesOrder to which this build is allocated" msgstr "" -#: build/models.py:289 build/serializers.py:1097 +#: build/models.py:290 build/serializers.py:1105 msgid "Source Location" msgstr "" -#: build/models.py:295 +#: build/models.py:296 msgid "Select location to take stock from for this build (leave blank to take from any stock location)" msgstr "" -#: build/models.py:301 +#: build/models.py:302 msgid "External Build" msgstr "" -#: build/models.py:302 +#: build/models.py:303 msgid "This build order is fulfilled externally" msgstr "" -#: build/models.py:307 +#: build/models.py:308 msgid "Destination Location" msgstr "" -#: build/models.py:312 +#: build/models.py:313 msgid "Select location where the completed items will be stored" msgstr "" -#: build/models.py:316 +#: build/models.py:317 msgid "Build Quantity" msgstr "" -#: build/models.py:319 +#: build/models.py:320 msgid "Number of stock items to build" msgstr "" -#: build/models.py:323 +#: build/models.py:324 msgid "Completed items" msgstr "" -#: build/models.py:325 +#: build/models.py:326 msgid "Number of stock items which have been completed" msgstr "" -#: build/models.py:329 +#: build/models.py:330 msgid "Build Status" msgstr "" -#: build/models.py:334 +#: build/models.py:335 msgid "Build status code" msgstr "" -#: build/models.py:343 build/serializers.py:359 order/serializers.py:849 +#: build/models.py:344 build/serializers.py:367 order/serializers.py:860 #: stock/models.py:1100 stock/serializers.py:85 stock/serializers.py:1591 msgid "Batch Code" msgstr "" -#: build/models.py:347 build/serializers.py:360 +#: build/models.py:348 build/serializers.py:368 msgid "Batch code for this build output" msgstr "" -#: build/models.py:351 order/models.py:479 order/serializers.py:186 -#: part/models.py:1283 +#: build/models.py:352 order/models.py:480 order/serializers.py:193 +#: part/models.py:1371 msgid "Creation Date" msgstr "" -#: build/models.py:357 +#: build/models.py:358 msgid "Build start date" msgstr "" -#: build/models.py:358 +#: build/models.py:359 msgid "Scheduled start date for this build order" msgstr "" -#: build/models.py:364 +#: build/models.py:365 msgid "Target completion date" msgstr "" -#: build/models.py:366 +#: build/models.py:367 msgid "Target date for build completion. Build will be overdue after this date." msgstr "" -#: build/models.py:371 order/models.py:667 order/models.py:2751 +#: build/models.py:372 order/models.py:668 order/models.py:2752 msgid "Completion Date" msgstr "" -#: build/models.py:379 +#: build/models.py:380 msgid "completed by" msgstr "" -#: build/models.py:388 +#: build/models.py:389 msgid "Issued by" msgstr "" -#: build/models.py:389 +#: build/models.py:390 msgid "User who issued this build order" msgstr "" -#: build/models.py:398 common/models.py:180 order/api.py:179 -#: order/models.py:504 part/models.py:1300 +#: build/models.py:399 common/models.py:184 order/api.py:184 +#: order/models.py:505 part/models.py:1388 #: report/templates/report/inventree_build_order_report.html:158 msgid "Responsible" msgstr "" -#: build/models.py:399 +#: build/models.py:400 msgid "User or group responsible for this build order" msgstr "" -#: build/models.py:404 stock/models.py:1093 +#: build/models.py:405 stock/models.py:1093 msgid "External Link" msgstr "" -#: build/models.py:406 common/models.py:1984 part/models.py:1114 +#: build/models.py:407 common/models.py:1990 part/models.py:1202 #: stock/models.py:1095 msgid "Link to external URL" msgstr "" -#: build/models.py:411 +#: build/models.py:412 msgid "Build Priority" msgstr "" -#: build/models.py:414 +#: build/models.py:415 msgid "Priority of this build order" msgstr "" -#: build/models.py:422 common/models.py:150 common/models.py:164 -#: order/api.py:165 order/models.py:451 order/models.py:1805 +#: build/models.py:423 common/models.py:154 common/models.py:168 +#: order/api.py:170 order/models.py:452 order/models.py:1806 msgid "Project Code" msgstr "" -#: build/models.py:423 +#: build/models.py:424 msgid "Project code for this build order" msgstr "" -#: build/models.py:676 +#: build/models.py:677 msgid "Cannot complete build order with open child builds" msgstr "" -#: build/models.py:681 +#: build/models.py:682 msgid "Cannot complete build order with incomplete outputs" msgstr "" -#: build/models.py:700 build/models.py:830 +#: build/models.py:701 build/models.py:831 msgid "Failed to offload task to complete build allocations" msgstr "" -#: build/models.py:723 +#: build/models.py:724 #, python-brace-format msgid "Build order {build} has been completed" msgstr "" -#: build/models.py:729 +#: build/models.py:730 msgid "A build order has been completed" msgstr "" -#: build/models.py:911 build/serializers.py:407 +#: build/models.py:912 build/serializers.py:415 msgid "Serial numbers must be provided for trackable parts" msgstr "" -#: build/models.py:1042 build/models.py:1129 +#: build/models.py:1043 build/models.py:1130 msgid "No build output specified" msgstr "" -#: build/models.py:1045 +#: build/models.py:1046 msgid "Build output is already completed" msgstr "" -#: build/models.py:1048 +#: build/models.py:1049 msgid "Build output does not match Build Order" msgstr "" -#: build/models.py:1136 build/models.py:1234 build/serializers.py:285 -#: build/serializers.py:335 build/serializers.py:965 build/serializers.py:1739 -#: order/models.py:717 order/serializers.py:658 order/serializers.py:844 -#: part/serializers.py:1708 stock/models.py:940 stock/models.py:1430 +#: build/models.py:1137 build/models.py:1235 build/serializers.py:293 +#: build/serializers.py:343 build/serializers.py:973 build/serializers.py:1747 +#: order/models.py:718 order/serializers.py:669 order/serializers.py:855 +#: part/serializers.py:1573 stock/models.py:940 stock/models.py:1430 #: stock/models.py:1878 stock/serializers.py:688 stock/serializers.py:1580 msgid "Quantity must be greater than zero" msgstr "" -#: build/models.py:1140 build/models.py:1239 build/serializers.py:290 +#: build/models.py:1141 build/models.py:1240 build/serializers.py:298 msgid "Quantity cannot be greater than the output quantity" msgstr "" -#: build/models.py:1214 build/serializers.py:606 +#: build/models.py:1215 build/serializers.py:614 msgid "Build output has not passed all required tests" msgstr "" -#: build/models.py:1217 build/serializers.py:601 +#: build/models.py:1218 build/serializers.py:609 #, python-brace-format msgid "Build output {serial} has not passed all required tests" msgstr "" -#: build/models.py:1229 +#: build/models.py:1230 msgid "Cannot partially complete a build output with allocated items" msgstr "" -#: build/models.py:1627 +#: build/models.py:1628 msgid "Build Order Line Item" msgstr "" -#: build/models.py:1651 +#: build/models.py:1652 msgid "Build object" msgstr "" -#: build/models.py:1663 build/models.py:1974 build/serializers.py:271 -#: build/serializers.py:320 build/serializers.py:1392 common/models.py:1340 -#: order/models.py:1756 order/models.py:2597 order/serializers.py:1696 -#: order/serializers.py:2124 part/models.py:3453 part/models.py:4390 +#: build/models.py:1664 build/models.py:1975 build/serializers.py:279 +#: build/serializers.py:328 build/serializers.py:1400 common/models.py:1344 +#: order/models.py:1757 order/models.py:2598 order/serializers.py:1710 +#: order/serializers.py:2141 part/models.py:3517 part/models.py:4015 #: report/templates/report/inventree_bill_of_materials_report.html:138 #: report/templates/report/inventree_build_order_report.html:113 #: report/templates/report/inventree_purchase_order_report.html:36 @@ -1014,427 +1030,427 @@ msgstr "" msgid "Quantity" msgstr "" -#: build/models.py:1664 +#: build/models.py:1665 msgid "Required quantity for build order" msgstr "" -#: build/models.py:1673 +#: build/models.py:1674 msgid "Quantity of consumed stock" msgstr "" -#: build/models.py:1772 +#: build/models.py:1773 msgid "Build item must specify a build output, as master part is marked as trackable" msgstr "" -#: build/models.py:1783 +#: build/models.py:1784 #, python-brace-format msgid "Allocated quantity ({q}) must not exceed available stock quantity ({a})" msgstr "" -#: build/models.py:1804 order/models.py:2546 +#: build/models.py:1805 order/models.py:2547 msgid "Stock item is over-allocated" msgstr "" -#: build/models.py:1809 order/models.py:2549 +#: build/models.py:1810 order/models.py:2550 msgid "Allocation quantity must be greater than zero" msgstr "" -#: build/models.py:1815 +#: build/models.py:1816 msgid "Quantity must be 1 for serialized stock" msgstr "" -#: build/models.py:1875 +#: build/models.py:1876 msgid "Selected stock item does not match BOM line" msgstr "" -#: build/models.py:1913 +#: build/models.py:1914 msgid "Allocated quantity exceeds available stock quantity" msgstr "" -#: build/models.py:1964 build/serializers.py:948 build/serializers.py:1240 -#: order/serializers.py:1533 order/serializers.py:1554 +#: build/models.py:1965 build/serializers.py:956 build/serializers.py:1248 +#: order/serializers.py:1547 order/serializers.py:1568 #: report/templates/report/inventree_sales_order_shipment_report.html:29 #: stock/api.py:1404 stock/models.py:456 stock/serializers.py:102 #: stock/serializers.py:800 stock/serializers.py:1274 stock/serializers.py:1386 msgid "Stock Item" msgstr "" -#: build/models.py:1965 +#: build/models.py:1966 msgid "Source stock item" msgstr "" -#: build/models.py:1975 +#: build/models.py:1976 msgid "Stock quantity to allocate to build" msgstr "" -#: build/models.py:1984 +#: build/models.py:1985 msgid "Install into" msgstr "" -#: build/models.py:1985 +#: build/models.py:1986 msgid "Destination stock item" msgstr "" -#: build/serializers.py:118 +#: build/serializers.py:120 msgid "Build Level" msgstr "" -#: build/serializers.py:128 +#: build/serializers.py:136 msgid "Part Name" msgstr "" -#: build/serializers.py:153 +#: build/serializers.py:161 msgid "Project Code Label" msgstr "" -#: build/serializers.py:219 build/serializers.py:974 +#: build/serializers.py:227 build/serializers.py:982 msgid "Build Output" msgstr "" -#: build/serializers.py:231 +#: build/serializers.py:239 msgid "Build output does not match the parent build" msgstr "" -#: build/serializers.py:235 +#: build/serializers.py:243 msgid "Output part does not match BuildOrder part" msgstr "" -#: build/serializers.py:239 +#: build/serializers.py:247 msgid "This build output has already been completed" msgstr "" -#: build/serializers.py:253 +#: build/serializers.py:261 msgid "This build output is not fully allocated" msgstr "" -#: build/serializers.py:272 build/serializers.py:321 +#: build/serializers.py:280 build/serializers.py:329 msgid "Enter quantity for build output" msgstr "" -#: build/serializers.py:343 +#: build/serializers.py:351 msgid "Integer quantity required for trackable parts" msgstr "" -#: build/serializers.py:349 +#: build/serializers.py:357 msgid "Integer quantity required, as the bill of materials contains trackable parts" msgstr "" -#: build/serializers.py:366 order/serializers.py:865 order/serializers.py:1700 +#: build/serializers.py:374 order/serializers.py:876 order/serializers.py:1714 #: stock/serializers.py:699 msgid "Serial Numbers" msgstr "" -#: build/serializers.py:367 +#: build/serializers.py:375 msgid "Enter serial numbers for build outputs" msgstr "" -#: build/serializers.py:373 +#: build/serializers.py:381 msgid "Stock location for build output" msgstr "" -#: build/serializers.py:388 +#: build/serializers.py:396 msgid "Auto Allocate Serial Numbers" msgstr "" -#: build/serializers.py:390 +#: build/serializers.py:398 msgid "Automatically allocate required items with matching serial numbers" msgstr "" -#: build/serializers.py:423 order/serializers.py:951 stock/api.py:1183 +#: build/serializers.py:431 order/serializers.py:962 stock/api.py:1183 #: stock/models.py:1901 msgid "The following serial numbers already exist or are invalid" msgstr "" -#: build/serializers.py:465 build/serializers.py:521 build/serializers.py:613 +#: build/serializers.py:473 build/serializers.py:529 build/serializers.py:621 msgid "A list of build outputs must be provided" msgstr "" -#: build/serializers.py:498 +#: build/serializers.py:506 msgid "Stock location for scrapped outputs" msgstr "" -#: build/serializers.py:504 +#: build/serializers.py:512 msgid "Discard Allocations" msgstr "" -#: build/serializers.py:505 +#: build/serializers.py:513 msgid "Discard any stock allocations for scrapped outputs" msgstr "" -#: build/serializers.py:510 +#: build/serializers.py:518 msgid "Reason for scrapping build output(s)" msgstr "" -#: build/serializers.py:568 +#: build/serializers.py:576 msgid "Location for completed build outputs" msgstr "" -#: build/serializers.py:576 +#: build/serializers.py:584 msgid "Accept Incomplete Allocation" msgstr "" -#: build/serializers.py:577 +#: build/serializers.py:585 msgid "Complete outputs if stock has not been fully allocated" msgstr "" -#: build/serializers.py:702 +#: build/serializers.py:710 msgid "Consume Allocated Stock" msgstr "" -#: build/serializers.py:703 +#: build/serializers.py:711 msgid "Consume any stock which has already been allocated to this build" msgstr "" -#: build/serializers.py:709 +#: build/serializers.py:717 msgid "Remove Incomplete Outputs" msgstr "" -#: build/serializers.py:710 +#: build/serializers.py:718 msgid "Delete any build outputs which have not been completed" msgstr "" -#: build/serializers.py:737 +#: build/serializers.py:745 msgid "Not permitted" msgstr "" -#: build/serializers.py:738 +#: build/serializers.py:746 msgid "Accept as consumed by this build order" msgstr "" -#: build/serializers.py:739 +#: build/serializers.py:747 msgid "Deallocate before completing this build order" msgstr "" -#: build/serializers.py:766 +#: build/serializers.py:774 msgid "Overallocated Stock" msgstr "" -#: build/serializers.py:769 +#: build/serializers.py:777 msgid "How do you want to handle extra stock items assigned to the build order" msgstr "" -#: build/serializers.py:780 +#: build/serializers.py:788 msgid "Some stock items have been overallocated" msgstr "" -#: build/serializers.py:785 +#: build/serializers.py:793 msgid "Accept Unallocated" msgstr "" -#: build/serializers.py:787 +#: build/serializers.py:795 msgid "Accept that stock items have not been fully allocated to this build order" msgstr "" -#: build/serializers.py:798 +#: build/serializers.py:806 msgid "Required stock has not been fully allocated" msgstr "" -#: build/serializers.py:803 order/serializers.py:524 order/serializers.py:1601 +#: build/serializers.py:811 order/serializers.py:535 order/serializers.py:1615 msgid "Accept Incomplete" msgstr "" -#: build/serializers.py:805 +#: build/serializers.py:813 msgid "Accept that the required number of build outputs have not been completed" msgstr "" -#: build/serializers.py:816 +#: build/serializers.py:824 msgid "Required build quantity has not been completed" msgstr "" -#: build/serializers.py:828 +#: build/serializers.py:836 msgid "Build order has open child build orders" msgstr "" -#: build/serializers.py:831 +#: build/serializers.py:839 msgid "Build order must be in production state" msgstr "" -#: build/serializers.py:834 +#: build/serializers.py:842 msgid "Build order has incomplete outputs" msgstr "" -#: build/serializers.py:873 +#: build/serializers.py:881 msgid "Build Line" msgstr "" -#: build/serializers.py:881 +#: build/serializers.py:889 msgid "Build output" msgstr "" -#: build/serializers.py:889 +#: build/serializers.py:897 msgid "Build output must point to the same build" msgstr "" -#: build/serializers.py:920 +#: build/serializers.py:928 msgid "Build Line Item" msgstr "" -#: build/serializers.py:938 +#: build/serializers.py:946 msgid "bom_item.part must point to the same part as the build order" msgstr "" -#: build/serializers.py:954 stock/serializers.py:1287 +#: build/serializers.py:962 stock/serializers.py:1287 msgid "Item must be in stock" msgstr "" -#: build/serializers.py:997 order/serializers.py:1587 +#: build/serializers.py:1005 order/serializers.py:1601 #, python-brace-format msgid "Available quantity ({q}) exceeded" msgstr "" -#: build/serializers.py:1003 +#: build/serializers.py:1011 msgid "Build output must be specified for allocation of tracked parts" msgstr "" -#: build/serializers.py:1011 +#: build/serializers.py:1019 msgid "Build output cannot be specified for allocation of untracked parts" msgstr "" -#: build/serializers.py:1035 order/serializers.py:1860 +#: build/serializers.py:1043 order/serializers.py:1874 msgid "Allocation items must be provided" msgstr "" -#: build/serializers.py:1099 +#: build/serializers.py:1107 msgid "Stock location where parts are to be sourced (leave blank to take from any location)" msgstr "" -#: build/serializers.py:1108 +#: build/serializers.py:1116 msgid "Exclude Location" msgstr "" -#: build/serializers.py:1109 +#: build/serializers.py:1117 msgid "Exclude stock items from this selected location" msgstr "" -#: build/serializers.py:1114 +#: build/serializers.py:1122 msgid "Interchangeable Stock" msgstr "" -#: build/serializers.py:1115 +#: build/serializers.py:1123 msgid "Stock items in multiple locations can be used interchangeably" msgstr "" -#: build/serializers.py:1120 +#: build/serializers.py:1128 msgid "Substitute Stock" msgstr "" -#: build/serializers.py:1121 +#: build/serializers.py:1129 msgid "Allow allocation of substitute parts" msgstr "" -#: build/serializers.py:1126 +#: build/serializers.py:1134 msgid "Optional Items" msgstr "" -#: build/serializers.py:1127 +#: build/serializers.py:1135 msgid "Allocate optional BOM items to build order" msgstr "" -#: build/serializers.py:1148 +#: build/serializers.py:1156 msgid "Failed to start auto-allocation task" msgstr "" -#: build/serializers.py:1200 +#: build/serializers.py:1208 msgid "BOM Reference" msgstr "" -#: build/serializers.py:1206 +#: build/serializers.py:1214 msgid "BOM Part ID" msgstr "" -#: build/serializers.py:1213 +#: build/serializers.py:1221 msgid "BOM Part Name" msgstr "" -#: build/serializers.py:1266 build/serializers.py:1449 +#: build/serializers.py:1274 build/serializers.py:1457 msgid "Build" msgstr "" -#: build/serializers.py:1276 company/models.py:685 order/api.py:311 -#: order/api.py:316 order/api.py:543 order/serializers.py:650 +#: build/serializers.py:1284 company/models.py:639 order/api.py:316 +#: order/api.py:321 order/api.py:549 order/serializers.py:661 #: stock/models.py:1036 stock/serializers.py:579 msgid "Supplier Part" msgstr "" -#: build/serializers.py:1284 stock/serializers.py:620 +#: build/serializers.py:1292 stock/serializers.py:620 msgid "Allocated Quantity" msgstr "" -#: build/serializers.py:1351 +#: build/serializers.py:1359 msgid "Build Reference" msgstr "" -#: build/serializers.py:1361 +#: build/serializers.py:1369 msgid "Part Category Name" msgstr "" -#: build/serializers.py:1383 common/setting/system.py:480 part/models.py:1214 +#: build/serializers.py:1391 common/setting/system.py:480 part/models.py:1302 msgid "Trackable" msgstr "" -#: build/serializers.py:1386 +#: build/serializers.py:1394 msgid "Inherited" msgstr "" -#: build/serializers.py:1389 part/models.py:4475 +#: build/serializers.py:1397 part/models.py:4100 msgid "Allow Variants" msgstr "" -#: build/serializers.py:1395 build/serializers.py:1400 part/models.py:4208 -#: part/models.py:4779 stock/api.py:882 +#: build/serializers.py:1403 build/serializers.py:1408 part/models.py:3833 +#: part/models.py:4404 stock/api.py:882 msgid "BOM Item" msgstr "" -#: build/serializers.py:1467 order/serializers.py:1282 part/serializers.py:1310 -#: part/serializers.py:1765 +#: build/serializers.py:1475 order/serializers.py:1296 part/serializers.py:1175 +#: part/serializers.py:1630 msgid "In Production" msgstr "" -#: build/serializers.py:1469 part/serializers.py:950 part/serializers.py:1314 +#: build/serializers.py:1477 part/serializers.py:835 part/serializers.py:1179 msgid "Scheduled to Build" msgstr "" -#: build/serializers.py:1472 part/serializers.py:987 +#: build/serializers.py:1480 part/serializers.py:872 msgid "External Stock" msgstr "" -#: build/serializers.py:1473 part/serializers.py:1300 part/serializers.py:1808 +#: build/serializers.py:1481 part/serializers.py:1165 part/serializers.py:1673 msgid "Available Stock" msgstr "" -#: build/serializers.py:1475 +#: build/serializers.py:1483 msgid "Available Substitute Stock" msgstr "" -#: build/serializers.py:1478 +#: build/serializers.py:1486 msgid "Available Variant Stock" msgstr "" -#: build/serializers.py:1752 +#: build/serializers.py:1760 msgid "Consumed quantity exceeds allocated quantity" msgstr "" -#: build/serializers.py:1789 +#: build/serializers.py:1797 msgid "Optional notes for the stock consumption" msgstr "" -#: build/serializers.py:1806 +#: build/serializers.py:1814 msgid "Build item must point to the correct build order" msgstr "" -#: build/serializers.py:1811 +#: build/serializers.py:1819 msgid "Duplicate build item allocation" msgstr "" -#: build/serializers.py:1829 +#: build/serializers.py:1837 msgid "Build line must point to the correct build order" msgstr "" -#: build/serializers.py:1834 +#: build/serializers.py:1842 msgid "Duplicate build line allocation" msgstr "" -#: build/serializers.py:1846 +#: build/serializers.py:1854 msgid "At least one item or line must be provided" msgstr "" @@ -1482,702 +1498,826 @@ msgstr "" msgid "Build order {bo} is now overdue" msgstr "" -#: common/api.py:694 +#: common/api.py:701 msgid "Is Link" msgstr "" -#: common/api.py:702 +#: common/api.py:709 msgid "Is File" msgstr "" -#: common/api.py:745 +#: common/api.py:756 msgid "User does not have permission to delete these attachments" msgstr "" -#: common/api.py:762 +#: common/api.py:769 msgid "User does not have permission to delete this attachment" msgstr "" -#: common/currency.py:122 +#: common/currency.py:130 msgid "Invalid currency code" msgstr "" -#: common/currency.py:124 +#: common/currency.py:132 msgid "Duplicate currency code" msgstr "" -#: common/currency.py:129 +#: common/currency.py:137 msgid "No valid currency codes provided" msgstr "" -#: common/currency.py:146 +#: common/currency.py:154 msgid "No plugin" msgstr "" -#: common/models.py:101 common/models.py:126 common/models.py:2729 +#: common/models.py:105 common/models.py:130 common/models.py:3150 msgid "Updated" msgstr "" -#: common/models.py:102 common/models.py:127 +#: common/models.py:106 common/models.py:131 msgid "Timestamp of last update" msgstr "" -#: common/models.py:139 +#: common/models.py:143 msgid "Update By" msgstr "" -#: common/models.py:140 +#: common/models.py:144 msgid "User who last updated this object" msgstr "" -#: common/models.py:165 +#: common/models.py:169 msgid "Unique project code" msgstr "" -#: common/models.py:172 +#: common/models.py:176 msgid "Project description" msgstr "" -#: common/models.py:181 +#: common/models.py:185 msgid "User or group responsible for this project" msgstr "" -#: common/models.py:771 common/models.py:1272 common/models.py:1310 +#: common/models.py:775 common/models.py:1276 common/models.py:1314 msgid "Settings key" msgstr "" -#: common/models.py:775 +#: common/models.py:779 msgid "Settings value" msgstr "" -#: common/models.py:830 +#: common/models.py:834 msgid "Chosen value is not a valid option" msgstr "" -#: common/models.py:846 +#: common/models.py:850 msgid "Value must be a boolean value" msgstr "" -#: common/models.py:854 +#: common/models.py:858 msgid "Value must be an integer value" msgstr "" -#: common/models.py:862 +#: common/models.py:866 msgid "Value must be a valid number" msgstr "" -#: common/models.py:887 +#: common/models.py:891 msgid "Value does not pass validation checks" msgstr "" -#: common/models.py:909 +#: common/models.py:913 msgid "Key string must be unique" msgstr "" -#: common/models.py:1318 common/models.py:1319 common/models.py:1423 -#: common/models.py:1424 common/models.py:1669 common/models.py:1670 -#: common/models.py:2000 common/models.py:2001 common/models.py:2382 -#: importer/models.py:100 part/models.py:3547 part/models.py:3575 +#: common/models.py:1322 common/models.py:1323 common/models.py:1427 +#: common/models.py:1428 common/models.py:1673 common/models.py:1674 +#: common/models.py:2006 common/models.py:2007 common/models.py:2803 +#: importer/models.py:100 part/models.py:3611 part/models.py:3639 #: plugin/models.py:355 plugin/models.py:356 #: report/templates/report/inventree_test_report.html:105 users/models.py:124 #: users/models.py:501 msgid "User" msgstr "" -#: common/models.py:1341 +#: common/models.py:1345 msgid "Price break quantity" msgstr "" -#: common/models.py:1348 company/serializers.py:564 order/models.py:1842 -#: order/models.py:3043 +#: common/models.py:1352 company/serializers.py:349 order/models.py:1843 +#: order/models.py:3044 msgid "Price" msgstr "" -#: common/models.py:1349 +#: common/models.py:1353 msgid "Unit price at specified quantity" msgstr "" -#: common/models.py:1400 common/models.py:1585 +#: common/models.py:1404 common/models.py:1589 msgid "Endpoint" msgstr "" -#: common/models.py:1401 +#: common/models.py:1405 msgid "Endpoint at which this webhook is received" msgstr "" -#: common/models.py:1411 +#: common/models.py:1415 msgid "Name for this webhook" msgstr "" -#: common/models.py:1415 common/models.py:2241 common/models.py:2348 -#: company/models.py:191 company/models.py:822 machine/models.py:40 -#: part/models.py:1237 plugin/models.py:69 stock/api.py:642 users/models.py:195 +#: common/models.py:1419 common/models.py:2247 common/models.py:2354 +#: company/models.py:192 company/models.py:776 machine/models.py:40 +#: part/models.py:1325 plugin/models.py:69 stock/api.py:642 users/models.py:195 #: users/models.py:554 users/serializers.py:314 msgid "Active" msgstr "" -#: common/models.py:1415 +#: common/models.py:1419 msgid "Is this webhook active" msgstr "" -#: common/models.py:1431 users/models.py:172 +#: common/models.py:1435 users/models.py:172 msgid "Token" msgstr "" -#: common/models.py:1432 +#: common/models.py:1436 msgid "Token for access" msgstr "" -#: common/models.py:1440 +#: common/models.py:1444 msgid "Secret" msgstr "" -#: common/models.py:1441 +#: common/models.py:1445 msgid "Shared secret for HMAC" msgstr "" -#: common/models.py:1549 common/models.py:2619 +#: common/models.py:1553 common/models.py:3040 msgid "Message ID" msgstr "" -#: common/models.py:1550 common/models.py:2609 +#: common/models.py:1554 common/models.py:3030 msgid "Unique identifier for this message" msgstr "" -#: common/models.py:1558 +#: common/models.py:1562 msgid "Host" msgstr "" -#: common/models.py:1559 +#: common/models.py:1563 msgid "Host from which this message was received" msgstr "" -#: common/models.py:1567 +#: common/models.py:1571 msgid "Header" msgstr "" -#: common/models.py:1568 +#: common/models.py:1572 msgid "Header of this message" msgstr "" -#: common/models.py:1575 +#: common/models.py:1579 msgid "Body" msgstr "" -#: common/models.py:1576 +#: common/models.py:1580 msgid "Body of this message" msgstr "" -#: common/models.py:1586 +#: common/models.py:1590 msgid "Endpoint on which this message was received" msgstr "" -#: common/models.py:1591 +#: common/models.py:1595 msgid "Worked on" msgstr "" -#: common/models.py:1592 +#: common/models.py:1596 msgid "Was the work on this message finished?" msgstr "" -#: common/models.py:1718 +#: common/models.py:1722 msgid "Id" msgstr "" -#: common/models.py:1720 +#: common/models.py:1724 msgid "Title" msgstr "" -#: common/models.py:1722 common/models.py:1983 company/models.py:185 -#: company/models.py:467 company/models.py:534 company/models.py:839 -#: order/models.py:457 order/models.py:1786 order/models.py:2343 -#: part/models.py:1113 +#: common/models.py:1726 common/models.py:1989 company/models.py:186 +#: company/models.py:468 company/models.py:536 company/models.py:793 +#: order/models.py:458 order/models.py:1787 order/models.py:2344 +#: part/models.py:1201 #: report/templates/report/inventree_build_order_report.html:164 msgid "Link" msgstr "" -#: common/models.py:1724 +#: common/models.py:1728 msgid "Published" msgstr "" -#: common/models.py:1726 +#: common/models.py:1730 msgid "Author" msgstr "" -#: common/models.py:1728 +#: common/models.py:1732 msgid "Summary" msgstr "" -#: common/models.py:1731 common/models.py:2586 +#: common/models.py:1735 common/models.py:3007 msgid "Read" msgstr "" -#: common/models.py:1731 +#: common/models.py:1735 msgid "Was this news item read?" msgstr "" -#: common/models.py:1748 +#: common/models.py:1752 msgid "Image file" msgstr "" -#: common/models.py:1760 +#: common/models.py:1764 msgid "Target model type for this image" msgstr "" -#: common/models.py:1764 +#: common/models.py:1768 msgid "Target model ID for this image" msgstr "" -#: common/models.py:1786 +#: common/models.py:1790 msgid "Custom Unit" msgstr "" -#: common/models.py:1804 +#: common/models.py:1808 msgid "Unit symbol must be unique" msgstr "" -#: common/models.py:1819 +#: common/models.py:1823 msgid "Unit name must be a valid identifier" msgstr "" -#: common/models.py:1838 +#: common/models.py:1842 msgid "Unit name" msgstr "" -#: common/models.py:1845 +#: common/models.py:1849 msgid "Symbol" msgstr "" -#: common/models.py:1846 +#: common/models.py:1850 msgid "Optional unit symbol" msgstr "" -#: common/models.py:1852 +#: common/models.py:1856 msgid "Definition" msgstr "" -#: common/models.py:1853 +#: common/models.py:1857 msgid "Unit definition" msgstr "" -#: common/models.py:1911 common/models.py:1974 stock/models.py:2967 +#: common/models.py:1917 common/models.py:1980 stock/models.py:2984 #: stock/serializers.py:247 msgid "Attachment" msgstr "" -#: common/models.py:1928 +#: common/models.py:1934 msgid "Missing file" msgstr "" -#: common/models.py:1929 +#: common/models.py:1935 msgid "Missing external link" msgstr "" -#: common/models.py:1966 +#: common/models.py:1972 common/models.py:2488 msgid "Model type" msgstr "" -#: common/models.py:1967 +#: common/models.py:1973 msgid "Target model type for image" msgstr "" -#: common/models.py:1975 +#: common/models.py:1981 msgid "Select file to attach" msgstr "" -#: common/models.py:1991 +#: common/models.py:1997 msgid "Comment" msgstr "" -#: common/models.py:1992 +#: common/models.py:1998 msgid "Attachment comment" msgstr "" -#: common/models.py:2008 +#: common/models.py:2014 msgid "Upload date" msgstr "" -#: common/models.py:2009 +#: common/models.py:2015 msgid "Date the file was uploaded" msgstr "" -#: common/models.py:2013 +#: common/models.py:2019 msgid "File size" msgstr "" -#: common/models.py:2013 +#: common/models.py:2019 msgid "File size in bytes" msgstr "" -#: common/models.py:2051 common/serializers.py:684 +#: common/models.py:2057 common/serializers.py:688 msgid "Invalid model type specified for attachment" msgstr "" -#: common/models.py:2072 +#: common/models.py:2078 msgid "Custom State" msgstr "" -#: common/models.py:2073 +#: common/models.py:2079 msgid "Custom States" msgstr "" -#: common/models.py:2078 +#: common/models.py:2084 msgid "Reference Status Set" msgstr "" -#: common/models.py:2079 +#: common/models.py:2085 msgid "Status set that is extended with this custom state" msgstr "" -#: common/models.py:2083 generic/states/serializers.py:18 +#: common/models.py:2089 generic/states/serializers.py:18 msgid "Logical Key" msgstr "" -#: common/models.py:2085 +#: common/models.py:2091 msgid "State logical key that is equal to this custom state in business logic" msgstr "" -#: common/models.py:2090 common/models.py:2329 company/models.py:622 -#: machine/serializers.py:27 -#: report/templates/report/inventree_test_report.html:104 stock/models.py:2959 +#: common/models.py:2096 common/models.py:2335 machine/serializers.py:27 +#: report/templates/report/inventree_test_report.html:104 stock/models.py:2976 msgid "Value" msgstr "" -#: common/models.py:2091 +#: common/models.py:2097 msgid "Numerical value that will be saved in the models database" msgstr "" -#: common/models.py:2097 +#: common/models.py:2103 msgid "Name of the state" msgstr "" -#: common/models.py:2106 common/models.py:2335 generic/states/serializers.py:22 +#: common/models.py:2112 common/models.py:2341 generic/states/serializers.py:22 msgid "Label" msgstr "" -#: common/models.py:2107 +#: common/models.py:2113 msgid "Label that will be displayed in the frontend" msgstr "" -#: common/models.py:2114 generic/states/serializers.py:24 +#: common/models.py:2120 generic/states/serializers.py:24 msgid "Color" msgstr "" -#: common/models.py:2115 +#: common/models.py:2121 msgid "Color that will be displayed in the frontend" msgstr "" -#: common/models.py:2123 +#: common/models.py:2129 msgid "Model" msgstr "" -#: common/models.py:2124 +#: common/models.py:2130 msgid "Model this state is associated with" msgstr "" -#: common/models.py:2139 +#: common/models.py:2145 msgid "Model must be selected" msgstr "" -#: common/models.py:2142 +#: common/models.py:2148 msgid "Key must be selected" msgstr "" -#: common/models.py:2145 +#: common/models.py:2151 msgid "Logical key must be selected" msgstr "" -#: common/models.py:2149 +#: common/models.py:2155 msgid "Key must be different from logical key" msgstr "" -#: common/models.py:2156 +#: common/models.py:2162 msgid "Valid reference status class must be provided" msgstr "" -#: common/models.py:2162 +#: common/models.py:2168 msgid "Key must be different from the logical keys of the reference status" msgstr "" -#: common/models.py:2169 +#: common/models.py:2175 msgid "Logical key must be in the logical keys of the reference status" msgstr "" -#: common/models.py:2176 +#: common/models.py:2182 msgid "Name must be different from the names of the reference status" msgstr "" -#: common/models.py:2216 common/models.py:2323 part/models.py:3889 +#: common/models.py:2222 common/models.py:2329 common/models.py:2533 msgid "Selection List" msgstr "" -#: common/models.py:2217 +#: common/models.py:2223 msgid "Selection Lists" msgstr "" -#: common/models.py:2222 +#: common/models.py:2228 msgid "Name of the selection list" msgstr "" -#: common/models.py:2229 +#: common/models.py:2235 msgid "Description of the selection list" msgstr "" -#: common/models.py:2235 part/models.py:1242 +#: common/models.py:2241 part/models.py:1330 msgid "Locked" msgstr "" -#: common/models.py:2236 +#: common/models.py:2242 msgid "Is this selection list locked?" msgstr "" -#: common/models.py:2242 +#: common/models.py:2248 msgid "Can this selection list be used?" msgstr "" -#: common/models.py:2250 +#: common/models.py:2256 msgid "Source Plugin" msgstr "" -#: common/models.py:2251 +#: common/models.py:2257 msgid "Plugin which provides the selection list" msgstr "" -#: common/models.py:2256 +#: common/models.py:2262 msgid "Source String" msgstr "" -#: common/models.py:2257 +#: common/models.py:2263 msgid "Optional string identifying the source used for this list" msgstr "" -#: common/models.py:2266 +#: common/models.py:2272 msgid "Default Entry" msgstr "" -#: common/models.py:2267 +#: common/models.py:2273 msgid "Default entry for this selection list" msgstr "" -#: common/models.py:2272 common/models.py:2724 +#: common/models.py:2278 common/models.py:3145 msgid "Created" msgstr "" -#: common/models.py:2273 +#: common/models.py:2279 msgid "Date and time that the selection list was created" msgstr "" -#: common/models.py:2278 +#: common/models.py:2284 msgid "Last Updated" msgstr "" -#: common/models.py:2279 +#: common/models.py:2285 msgid "Date and time that the selection list was last updated" msgstr "" -#: common/models.py:2313 +#: common/models.py:2319 msgid "Selection List Entry" msgstr "" -#: common/models.py:2314 +#: common/models.py:2320 msgid "Selection List Entries" msgstr "" -#: common/models.py:2324 +#: common/models.py:2330 msgid "Selection list to which this entry belongs" msgstr "" -#: common/models.py:2330 +#: common/models.py:2336 msgid "Value of the selection list entry" msgstr "" -#: common/models.py:2336 +#: common/models.py:2342 msgid "Label for the selection list entry" msgstr "" -#: common/models.py:2342 +#: common/models.py:2348 msgid "Description of the selection list entry" msgstr "" -#: common/models.py:2349 +#: common/models.py:2355 msgid "Is this selection list entry active?" msgstr "" -#: common/models.py:2367 -msgid "Barcode Scan" +#: common/models.py:2387 +msgid "Parameter Template" msgstr "" -#: common/models.py:2371 importer/models.py:546 part/models.py:4060 -msgid "Data" +#: common/models.py:2388 +msgid "Parameter Templates" msgstr "" -#: common/models.py:2372 -msgid "Barcode data" +#: common/models.py:2425 +msgid "Checkbox parameters cannot have units" msgstr "" -#: common/models.py:2383 -msgid "User who scanned the barcode" +#: common/models.py:2430 +msgid "Checkbox parameters cannot have choices" msgstr "" -#: common/models.py:2388 importer/models.py:69 -msgid "Timestamp" +#: common/models.py:2450 part/models.py:3707 +msgid "Choices must be unique" msgstr "" -#: common/models.py:2389 -msgid "Date and time of the barcode scan" +#: common/models.py:2467 +msgid "Parameter template name must be unique" msgstr "" -#: common/models.py:2395 -msgid "URL endpoint which processed the barcode" +#: common/models.py:2489 +msgid "Target model type for this parameter template" msgstr "" -#: common/models.py:2402 order/models.py:1832 plugin/serializers.py:93 -msgid "Context" +#: common/models.py:2495 +msgid "Parameter Name" msgstr "" -#: common/models.py:2403 -msgid "Context data for the barcode scan" +#: common/models.py:2501 part/models.py:1283 +msgid "Units" msgstr "" -#: common/models.py:2410 -msgid "Response" +#: common/models.py:2502 +msgid "Physical units for this parameter" msgstr "" -#: common/models.py:2411 -msgid "Response data from the barcode scan" +#: common/models.py:2510 +msgid "Parameter description" msgstr "" -#: common/models.py:2417 report/templates/report/inventree_test_report.html:103 -#: stock/models.py:2953 -msgid "Result" +#: common/models.py:2516 +msgid "Checkbox" msgstr "" -#: common/models.py:2418 -msgid "Was the barcode scan successful?" +#: common/models.py:2517 +msgid "Is this parameter a checkbox?" msgstr "" -#: common/models.py:2500 -msgid "An error occurred" +#: common/models.py:2522 part/models.py:3794 +msgid "Choices" msgstr "" -#: common/models.py:2521 -msgid "INVE-E8: Email log deletion is protected. Set INVENTREE_PROTECT_EMAIL_LOG to False to allow deletion." +#: common/models.py:2523 +msgid "Valid choices for this parameter (comma-separated)" msgstr "" -#: common/models.py:2568 -msgid "Email Message" +#: common/models.py:2534 +msgid "Selection list for this parameter" msgstr "" -#: common/models.py:2569 -msgid "Email Messages" +#: common/models.py:2539 part/models.py:3769 report/models.py:287 +msgid "Enabled" msgstr "" -#: common/models.py:2576 -msgid "Announced" +#: common/models.py:2540 +msgid "Is this parameter template enabled?" msgstr "" -#: common/models.py:2578 -msgid "Sent" -msgstr "" - -#: common/models.py:2579 -msgid "Failed" +#: common/models.py:2581 +msgid "Parameter" msgstr "" #: common/models.py:2582 -msgid "Delivered" -msgstr "" - -#: common/models.py:2590 -msgid "Confirmed" -msgstr "" - -#: common/models.py:2596 -msgid "Inbound" -msgstr "" - -#: common/models.py:2597 -msgid "Outbound" -msgstr "" - -#: common/models.py:2602 -msgid "No Reply" -msgstr "" - -#: common/models.py:2603 -msgid "Track Delivery" -msgstr "" - -#: common/models.py:2604 -msgid "Track Read" -msgstr "" - -#: common/models.py:2605 -msgid "Track Click" -msgstr "" - -#: common/models.py:2608 common/models.py:2711 -msgid "Global ID" -msgstr "" - -#: common/models.py:2621 -msgid "Identifier for this message (might be supplied by external system)" +msgid "Parameters" msgstr "" #: common/models.py:2628 +msgid "Invalid choice for parameter value" +msgstr "" + +#: common/models.py:2698 common/serializers.py:783 +msgid "Invalid model type specified for parameter" +msgstr "" + +#: common/models.py:2734 +msgid "Model ID" +msgstr "" + +#: common/models.py:2735 +msgid "ID of the target model for this parameter" +msgstr "" + +#: common/models.py:2744 common/setting/system.py:450 report/models.py:373 +#: report/models.py:669 report/serializers.py:94 report/serializers.py:135 +#: stock/serializers.py:234 +msgid "Template" +msgstr "" + +#: common/models.py:2745 +msgid "Parameter template" +msgstr "" + +#: common/models.py:2750 common/models.py:2792 importer/models.py:546 +msgid "Data" +msgstr "" + +#: common/models.py:2751 +msgid "Parameter Value" +msgstr "" + +#: common/models.py:2760 company/models.py:810 order/serializers.py:894 +#: order/serializers.py:2064 part/models.py:4075 part/models.py:4444 +#: report/templates/report/inventree_bill_of_materials_report.html:140 +#: report/templates/report/inventree_purchase_order_report.html:39 +#: report/templates/report/inventree_return_order_report.html:27 +#: report/templates/report/inventree_sales_order_report.html:32 +#: report/templates/report/inventree_stock_location_report.html:105 +#: stock/serializers.py:813 +msgid "Note" +msgstr "" + +#: common/models.py:2761 stock/serializers.py:718 +msgid "Optional note field" +msgstr "" + +#: common/models.py:2788 +msgid "Barcode Scan" +msgstr "" + +#: common/models.py:2793 +msgid "Barcode data" +msgstr "" + +#: common/models.py:2804 +msgid "User who scanned the barcode" +msgstr "" + +#: common/models.py:2809 importer/models.py:69 +msgid "Timestamp" +msgstr "" + +#: common/models.py:2810 +msgid "Date and time of the barcode scan" +msgstr "" + +#: common/models.py:2816 +msgid "URL endpoint which processed the barcode" +msgstr "" + +#: common/models.py:2823 order/models.py:1833 plugin/serializers.py:93 +msgid "Context" +msgstr "" + +#: common/models.py:2824 +msgid "Context data for the barcode scan" +msgstr "" + +#: common/models.py:2831 +msgid "Response" +msgstr "" + +#: common/models.py:2832 +msgid "Response data from the barcode scan" +msgstr "" + +#: common/models.py:2838 report/templates/report/inventree_test_report.html:103 +#: stock/models.py:2970 +msgid "Result" +msgstr "" + +#: common/models.py:2839 +msgid "Was the barcode scan successful?" +msgstr "" + +#: common/models.py:2921 +msgid "An error occurred" +msgstr "" + +#: common/models.py:2942 +msgid "INVE-E8: Email log deletion is protected. Set INVENTREE_PROTECT_EMAIL_LOG to False to allow deletion." +msgstr "" + +#: common/models.py:2989 +msgid "Email Message" +msgstr "" + +#: common/models.py:2990 +msgid "Email Messages" +msgstr "" + +#: common/models.py:2997 +msgid "Announced" +msgstr "" + +#: common/models.py:2999 +msgid "Sent" +msgstr "" + +#: common/models.py:3000 +msgid "Failed" +msgstr "" + +#: common/models.py:3003 +msgid "Delivered" +msgstr "" + +#: common/models.py:3011 +msgid "Confirmed" +msgstr "" + +#: common/models.py:3017 +msgid "Inbound" +msgstr "" + +#: common/models.py:3018 +msgid "Outbound" +msgstr "" + +#: common/models.py:3023 +msgid "No Reply" +msgstr "" + +#: common/models.py:3024 +msgid "Track Delivery" +msgstr "" + +#: common/models.py:3025 +msgid "Track Read" +msgstr "" + +#: common/models.py:3026 +msgid "Track Click" +msgstr "" + +#: common/models.py:3029 common/models.py:3132 +msgid "Global ID" +msgstr "" + +#: common/models.py:3042 +msgid "Identifier for this message (might be supplied by external system)" +msgstr "" + +#: common/models.py:3049 msgid "Thread ID" msgstr "" -#: common/models.py:2630 +#: common/models.py:3051 msgid "Identifier for this message thread (might be supplied by external system)" msgstr "" -#: common/models.py:2639 +#: common/models.py:3060 msgid "Thread" msgstr "" -#: common/models.py:2640 +#: common/models.py:3061 msgid "Linked thread for this message" msgstr "" -#: common/models.py:2656 -msgid "Prioriy" +#: common/models.py:3077 +msgid "Priority" msgstr "" -#: common/models.py:2698 +#: common/models.py:3119 msgid "Email Thread" msgstr "" -#: common/models.py:2699 +#: common/models.py:3120 msgid "Email Threads" msgstr "" -#: common/models.py:2705 generic/states/serializers.py:16 +#: common/models.py:3126 generic/states/serializers.py:16 #: machine/serializers.py:24 plugin/models.py:46 users/models.py:113 msgid "Key" msgstr "" -#: common/models.py:2708 +#: common/models.py:3129 msgid "Unique key for this thread (used to identify the thread)" msgstr "" -#: common/models.py:2712 +#: common/models.py:3133 msgid "Unique identifier for this thread" msgstr "" -#: common/models.py:2719 +#: common/models.py:3140 msgid "Started Internal" msgstr "" -#: common/models.py:2720 +#: common/models.py:3141 msgid "Was this thread started internally?" msgstr "" -#: common/models.py:2725 +#: common/models.py:3146 msgid "Date and time that the thread was created" msgstr "" -#: common/models.py:2730 +#: common/models.py:3151 msgid "Date and time that the thread was last updated" msgstr "" @@ -2199,7 +2339,7 @@ msgstr "" msgid "A order that is assigned to you was canceled" msgstr "" -#: common/notifications.py:73 common/notifications.py:80 order/api.py:594 +#: common/notifications.py:73 common/notifications.py:80 order/api.py:600 msgid "Items Received" msgstr "" @@ -2211,88 +2351,93 @@ msgstr "" msgid "Items have been received against a return order" msgstr "" -#: common/serializers.py:145 +#: common/serializers.py:149 msgid "Indicates if the setting is overridden by an environment variable" msgstr "" -#: common/serializers.py:147 +#: common/serializers.py:151 msgid "Override" msgstr "" -#: common/serializers.py:498 +#: common/serializers.py:502 msgid "Is Running" msgstr "" -#: common/serializers.py:504 +#: common/serializers.py:508 msgid "Pending Tasks" msgstr "" -#: common/serializers.py:510 +#: common/serializers.py:514 msgid "Scheduled Tasks" msgstr "" -#: common/serializers.py:516 +#: common/serializers.py:520 msgid "Failed Tasks" msgstr "" -#: common/serializers.py:531 +#: common/serializers.py:535 msgid "Task ID" msgstr "" -#: common/serializers.py:531 +#: common/serializers.py:535 msgid "Unique task ID" msgstr "" -#: common/serializers.py:533 +#: common/serializers.py:537 msgid "Lock" msgstr "" -#: common/serializers.py:533 +#: common/serializers.py:537 msgid "Lock time" msgstr "" -#: common/serializers.py:535 +#: common/serializers.py:539 msgid "Task name" msgstr "" -#: common/serializers.py:537 +#: common/serializers.py:541 msgid "Function" msgstr "" -#: common/serializers.py:537 +#: common/serializers.py:541 msgid "Function name" msgstr "" -#: common/serializers.py:539 +#: common/serializers.py:543 msgid "Arguments" msgstr "" -#: common/serializers.py:539 +#: common/serializers.py:543 msgid "Task arguments" msgstr "" -#: common/serializers.py:542 +#: common/serializers.py:546 msgid "Keyword Arguments" msgstr "" -#: common/serializers.py:542 +#: common/serializers.py:546 msgid "Task keyword arguments" msgstr "" -#: common/serializers.py:652 +#: common/serializers.py:656 msgid "Filename" msgstr "" -#: common/serializers.py:659 importer/models.py:89 report/api.py:41 +#: common/serializers.py:663 common/serializers.py:730 +#: common/serializers.py:805 importer/models.py:89 report/api.py:41 #: report/models.py:293 report/serializers.py:52 msgid "Model Type" msgstr "" -#: common/serializers.py:687 +#: common/serializers.py:691 msgid "User does not have permission to create or edit attachments for this model" msgstr "" -#: common/serializers.py:731 common/serializers.py:834 +#: common/serializers.py:786 +msgid "User does not have permission to create or edit parameters for this model" +msgstr "" + +#: common/serializers.py:850 common/serializers.py:953 msgid "Selection list is locked" msgstr "" @@ -2368,7 +2513,7 @@ msgstr "" msgid "Show the `about` modal only to superusers" msgstr "" -#: common/setting/system.py:224 company/models.py:144 company/models.py:145 +#: common/setting/system.py:224 company/models.py:145 company/models.py:146 msgid "Company name" msgstr "" @@ -2411,8 +2556,8 @@ msgstr "" #: common/setting/system.py:253 common/setting/system.py:293 #: common/setting/system.py:306 common/setting/system.py:314 #: common/setting/system.py:321 common/setting/system.py:330 -#: common/setting/system.py:339 common/setting/system.py:588 -#: common/setting/system.py:616 common/setting/system.py:707 +#: common/setting/system.py:339 common/setting/system.py:580 +#: common/setting/system.py:608 common/setting/system.py:707 #: common/setting/system.py:1103 common/setting/system.py:1119 msgid "days" msgstr "" @@ -2657,12 +2802,6 @@ msgstr "" msgid "Copy category parameter templates when creating a part" msgstr "" -#: common/setting/system.py:450 part/models.py:4054 report/models.py:373 -#: report/models.py:669 report/serializers.py:94 report/serializers.py:135 -#: stock/serializers.py:234 -msgid "Template" -msgstr "" - #: common/setting/system.py:451 msgid "Parts are templates by default" msgstr "" @@ -2671,8 +2810,8 @@ msgstr "" msgid "Parts can be assembled from other components by default" msgstr "" -#: common/setting/system.py:462 part/models.py:1208 part/serializers.py:1734 -#: part/serializers.py:1741 +#: common/setting/system.py:462 part/models.py:1296 part/serializers.py:1599 +#: part/serializers.py:1606 msgid "Component" msgstr "" @@ -2680,7 +2819,7 @@ msgstr "" msgid "Parts can be used as sub-components by default" msgstr "" -#: common/setting/system.py:468 part/models.py:1226 +#: common/setting/system.py:468 part/models.py:1314 msgid "Purchaseable" msgstr "" @@ -2688,7 +2827,7 @@ msgstr "" msgid "Parts are purchaseable by default" msgstr "" -#: common/setting/system.py:474 part/models.py:1232 stock/api.py:643 +#: common/setting/system.py:474 part/models.py:1320 stock/api.py:643 msgid "Salable" msgstr "" @@ -2700,7 +2839,7 @@ msgstr "" msgid "Parts are trackable by default" msgstr "" -#: common/setting/system.py:486 part/models.py:1248 +#: common/setting/system.py:486 part/models.py:1336 msgid "Virtual" msgstr "" @@ -2749,158 +2888,158 @@ msgid "Part category default icon (empty means no icon)" msgstr "" #: common/setting/system.py:525 -msgid "Enforce Parameter Units" -msgstr "" - -#: common/setting/system.py:527 -msgid "If units are provided, parameter values must match the specified units" -msgstr "" - -#: common/setting/system.py:533 msgid "Minimum Pricing Decimal Places" msgstr "" -#: common/setting/system.py:535 +#: common/setting/system.py:527 msgid "Minimum number of decimal places to display when rendering pricing data" msgstr "" -#: common/setting/system.py:546 +#: common/setting/system.py:538 msgid "Maximum Pricing Decimal Places" msgstr "" -#: common/setting/system.py:548 +#: common/setting/system.py:540 msgid "Maximum number of decimal places to display when rendering pricing data" msgstr "" -#: common/setting/system.py:559 +#: common/setting/system.py:551 msgid "Use Supplier Pricing" msgstr "" -#: common/setting/system.py:561 +#: common/setting/system.py:553 msgid "Include supplier price breaks in overall pricing calculations" msgstr "" -#: common/setting/system.py:567 +#: common/setting/system.py:559 msgid "Purchase History Override" msgstr "" -#: common/setting/system.py:569 +#: common/setting/system.py:561 msgid "Historical purchase order pricing overrides supplier price breaks" msgstr "" -#: common/setting/system.py:575 +#: common/setting/system.py:567 msgid "Use Stock Item Pricing" msgstr "" -#: common/setting/system.py:577 +#: common/setting/system.py:569 msgid "Use pricing from manually entered stock data for pricing calculations" msgstr "" -#: common/setting/system.py:583 +#: common/setting/system.py:575 msgid "Stock Item Pricing Age" msgstr "" -#: common/setting/system.py:585 +#: common/setting/system.py:577 msgid "Exclude stock items older than this number of days from pricing calculations" msgstr "" -#: common/setting/system.py:592 +#: common/setting/system.py:584 msgid "Use Variant Pricing" msgstr "" -#: common/setting/system.py:593 +#: common/setting/system.py:585 msgid "Include variant pricing in overall pricing calculations" msgstr "" -#: common/setting/system.py:598 +#: common/setting/system.py:590 msgid "Active Variants Only" msgstr "" -#: common/setting/system.py:600 +#: common/setting/system.py:592 msgid "Only use active variant parts for calculating variant pricing" msgstr "" -#: common/setting/system.py:606 +#: common/setting/system.py:598 msgid "Auto Update Pricing" msgstr "" -#: common/setting/system.py:608 +#: common/setting/system.py:600 msgid "Automatically update part pricing when internal data changes" msgstr "" -#: common/setting/system.py:614 +#: common/setting/system.py:606 msgid "Pricing Rebuild Interval" msgstr "" -#: common/setting/system.py:615 +#: common/setting/system.py:607 msgid "Number of days before part pricing is automatically updated" msgstr "" -#: common/setting/system.py:621 +#: common/setting/system.py:613 msgid "Internal Prices" msgstr "" -#: common/setting/system.py:622 +#: common/setting/system.py:614 msgid "Enable internal prices for parts" msgstr "" -#: common/setting/system.py:627 +#: common/setting/system.py:619 msgid "Internal Price Override" msgstr "" -#: common/setting/system.py:629 +#: common/setting/system.py:621 msgid "If available, internal prices override price range calculations" msgstr "" -#: common/setting/system.py:635 +#: common/setting/system.py:627 msgid "Enable label printing" msgstr "" -#: common/setting/system.py:636 +#: common/setting/system.py:628 msgid "Enable label printing from the web interface" msgstr "" -#: common/setting/system.py:641 +#: common/setting/system.py:633 msgid "Label Image DPI" msgstr "" -#: common/setting/system.py:643 +#: common/setting/system.py:635 msgid "DPI resolution when generating image files to supply to label printing plugins" msgstr "" -#: common/setting/system.py:649 +#: common/setting/system.py:641 msgid "Enable Reports" msgstr "" -#: common/setting/system.py:650 +#: common/setting/system.py:642 msgid "Enable generation of reports" msgstr "" -#: common/setting/system.py:655 +#: common/setting/system.py:647 msgid "Debug Mode" msgstr "" -#: common/setting/system.py:656 +#: common/setting/system.py:648 msgid "Generate reports in debug mode (HTML output)" msgstr "" -#: common/setting/system.py:661 +#: common/setting/system.py:653 msgid "Log Report Errors" msgstr "" -#: common/setting/system.py:662 +#: common/setting/system.py:654 msgid "Log errors which occur when generating reports" msgstr "" -#: common/setting/system.py:667 plugin/builtin/labels/label_sheet.py:29 +#: common/setting/system.py:659 plugin/builtin/labels/label_sheet.py:29 #: report/models.py:381 msgid "Page Size" msgstr "" -#: common/setting/system.py:668 +#: common/setting/system.py:660 msgid "Default page size for PDF reports" msgstr "" +#: common/setting/system.py:665 +msgid "Enforce Parameter Units" +msgstr "" + +#: common/setting/system.py:667 +msgid "If units are provided, parameter values must match the specified units" +msgstr "" + #: common/setting/system.py:673 msgid "Globally Unique Serials" msgstr "" @@ -3456,688 +3595,677 @@ msgid "Display PDF reports in the browser, instead of downloading as a file" msgstr "" #: common/setting/user.py:45 -msgid "Search Parts" +msgid "Barcode Scanner in Form Fields" msgstr "" #: common/setting/user.py:46 -msgid "Display parts in search preview window" +msgid "Allow barcode scanner input in form fields" msgstr "" #: common/setting/user.py:51 -msgid "Search Supplier Parts" +msgid "Search Parts" msgstr "" #: common/setting/user.py:52 -msgid "Display supplier parts in search preview window" +msgid "Display parts in search preview window" msgstr "" #: common/setting/user.py:57 -msgid "Search Manufacturer Parts" +msgid "Search Supplier Parts" msgstr "" #: common/setting/user.py:58 -msgid "Display manufacturer parts in search preview window" +msgid "Display supplier parts in search preview window" msgstr "" #: common/setting/user.py:63 -msgid "Hide Inactive Parts" +msgid "Search Manufacturer Parts" msgstr "" #: common/setting/user.py:64 -msgid "Excluded inactive parts from search preview window" +msgid "Display manufacturer parts in search preview window" msgstr "" #: common/setting/user.py:69 -msgid "Search Categories" +msgid "Hide Inactive Parts" msgstr "" #: common/setting/user.py:70 -msgid "Display part categories in search preview window" +msgid "Excluded inactive parts from search preview window" msgstr "" #: common/setting/user.py:75 -msgid "Search Stock" +msgid "Search Categories" msgstr "" #: common/setting/user.py:76 -msgid "Display stock items in search preview window" +msgid "Display part categories in search preview window" msgstr "" #: common/setting/user.py:81 +msgid "Search Stock" +msgstr "" + +#: common/setting/user.py:82 +msgid "Display stock items in search preview window" +msgstr "" + +#: common/setting/user.py:87 msgid "Hide Unavailable Stock Items" msgstr "" -#: common/setting/user.py:83 +#: common/setting/user.py:89 msgid "Exclude stock items which are not available from the search preview window" msgstr "" -#: common/setting/user.py:89 +#: common/setting/user.py:95 msgid "Search Locations" msgstr "" -#: common/setting/user.py:90 +#: common/setting/user.py:96 msgid "Display stock locations in search preview window" msgstr "" -#: common/setting/user.py:95 +#: common/setting/user.py:101 msgid "Search Companies" msgstr "" -#: common/setting/user.py:96 +#: common/setting/user.py:102 msgid "Display companies in search preview window" msgstr "" -#: common/setting/user.py:101 +#: common/setting/user.py:107 msgid "Search Build Orders" msgstr "" -#: common/setting/user.py:102 +#: common/setting/user.py:108 msgid "Display build orders in search preview window" msgstr "" -#: common/setting/user.py:107 +#: common/setting/user.py:113 msgid "Search Purchase Orders" msgstr "" -#: common/setting/user.py:108 +#: common/setting/user.py:114 msgid "Display purchase orders in search preview window" msgstr "" -#: common/setting/user.py:113 +#: common/setting/user.py:119 msgid "Exclude Inactive Purchase Orders" msgstr "" -#: common/setting/user.py:114 +#: common/setting/user.py:120 msgid "Exclude inactive purchase orders from search preview window" msgstr "" -#: common/setting/user.py:119 +#: common/setting/user.py:125 msgid "Search Sales Orders" msgstr "" -#: common/setting/user.py:120 +#: common/setting/user.py:126 msgid "Display sales orders in search preview window" msgstr "" -#: common/setting/user.py:125 +#: common/setting/user.py:131 msgid "Exclude Inactive Sales Orders" msgstr "" -#: common/setting/user.py:126 +#: common/setting/user.py:132 msgid "Exclude inactive sales orders from search preview window" msgstr "" -#: common/setting/user.py:131 +#: common/setting/user.py:137 msgid "Search Sales Order Shipments" msgstr "" -#: common/setting/user.py:132 +#: common/setting/user.py:138 msgid "Display sales order shipments in search preview window" msgstr "" -#: common/setting/user.py:137 +#: common/setting/user.py:143 msgid "Search Return Orders" msgstr "" -#: common/setting/user.py:138 +#: common/setting/user.py:144 msgid "Display return orders in search preview window" msgstr "" -#: common/setting/user.py:143 +#: common/setting/user.py:149 msgid "Exclude Inactive Return Orders" msgstr "" -#: common/setting/user.py:144 +#: common/setting/user.py:150 msgid "Exclude inactive return orders from search preview window" msgstr "" -#: common/setting/user.py:149 +#: common/setting/user.py:155 msgid "Search Preview Results" msgstr "" -#: common/setting/user.py:151 +#: common/setting/user.py:157 msgid "Number of results to show in each section of the search preview window" msgstr "" -#: common/setting/user.py:157 +#: common/setting/user.py:163 msgid "Regex Search" msgstr "" -#: common/setting/user.py:158 +#: common/setting/user.py:164 msgid "Enable regular expressions in search queries" msgstr "" -#: common/setting/user.py:163 +#: common/setting/user.py:169 msgid "Whole Word Search" msgstr "" -#: common/setting/user.py:164 +#: common/setting/user.py:170 msgid "Search queries return results for whole word matches" msgstr "" -#: common/setting/user.py:169 +#: common/setting/user.py:175 msgid "Search Notes" msgstr "" -#: common/setting/user.py:171 +#: common/setting/user.py:177 msgid "Search queries return results for matches from the item's notes" msgstr "" -#: common/setting/user.py:177 +#: common/setting/user.py:183 msgid "Escape Key Closes Forms" msgstr "" -#: common/setting/user.py:178 +#: common/setting/user.py:184 msgid "Use the escape key to close modal forms" msgstr "" -#: common/setting/user.py:183 +#: common/setting/user.py:189 msgid "Fixed Navbar" msgstr "" -#: common/setting/user.py:184 +#: common/setting/user.py:190 msgid "The navbar position is fixed to the top of the screen" msgstr "" -#: common/setting/user.py:189 +#: common/setting/user.py:195 msgid "Fixed Table Headers" msgstr "" -#: common/setting/user.py:190 +#: common/setting/user.py:196 msgid "Table headers are fixed to the top of the table" msgstr "" -#: common/setting/user.py:195 +#: common/setting/user.py:201 msgid "Show Spotlight" msgstr "" -#: common/setting/user.py:196 +#: common/setting/user.py:202 msgid "Enable spotlight navigation functionality" msgstr "" -#: common/setting/user.py:201 +#: common/setting/user.py:207 msgid "Navigation Icons" msgstr "" -#: common/setting/user.py:202 +#: common/setting/user.py:208 msgid "Display icons in the navigation bar" msgstr "" -#: common/setting/user.py:207 +#: common/setting/user.py:213 msgid "Date Format" msgstr "" -#: common/setting/user.py:208 +#: common/setting/user.py:214 msgid "Preferred format for displaying dates" msgstr "" -#: common/setting/user.py:221 +#: common/setting/user.py:227 msgid "Show Stock History" msgstr "" -#: common/setting/user.py:222 +#: common/setting/user.py:228 msgid "Display stock history information in the part detail page" msgstr "" -#: common/setting/user.py:227 +#: common/setting/user.py:233 msgid "Show Last Breadcrumb" msgstr "" -#: common/setting/user.py:228 +#: common/setting/user.py:234 msgid "Show the current page in breadcrumbs" msgstr "" -#: common/setting/user.py:233 +#: common/setting/user.py:239 msgid "Show full stock location in tables" msgstr "" -#: common/setting/user.py:235 +#: common/setting/user.py:241 msgid "Disabled: The full location path is displayed as a hover tooltip. Enabled: The full location path is displayed as plain text." msgstr "" -#: common/setting/user.py:241 +#: common/setting/user.py:247 msgid "Show full part categories in tables" msgstr "" -#: common/setting/user.py:243 +#: common/setting/user.py:249 msgid "Disabled: The full category path is displayed as a hover tooltip. Enabled: The full category path is displayed as plain text." msgstr "" -#: common/setting/user.py:249 +#: common/setting/user.py:255 msgid "Receive error reports" msgstr "" -#: common/setting/user.py:250 +#: common/setting/user.py:256 msgid "Receive notifications for system errors" msgstr "" -#: common/setting/user.py:255 +#: common/setting/user.py:261 msgid "Last used printing machines" msgstr "" -#: common/setting/user.py:256 +#: common/setting/user.py:262 msgid "Save the last used printing machines for a user" msgstr "" -#: common/validators.py:34 +#: common/validators.py:38 +msgid "All models" +msgstr "" + +#: common/validators.py:63 msgid "No attachment model type provided" msgstr "" -#: common/validators.py:40 +#: common/validators.py:69 msgid "Invalid attachment model type" msgstr "" -#: common/validators.py:81 +#: common/validators.py:110 msgid "Minimum places cannot be greater than maximum places" msgstr "" -#: common/validators.py:93 +#: common/validators.py:122 msgid "Maximum places cannot be less than minimum places" msgstr "" -#: common/validators.py:104 +#: common/validators.py:133 msgid "An empty domain is not allowed." msgstr "" -#: common/validators.py:106 +#: common/validators.py:135 #, python-brace-format msgid "Invalid domain name: {domain}" msgstr "" -#: common/validators.py:122 +#: common/validators.py:151 msgid "Value must be uppercase" msgstr "" -#: common/validators.py:128 +#: common/validators.py:157 msgid "Value must be a valid variable identifier" msgstr "" -#: company/api.py:147 +#: company/api.py:141 msgid "Part is Active" msgstr "" -#: company/api.py:151 +#: company/api.py:145 msgid "Manufacturer is Active" msgstr "" -#: company/api.py:286 +#: company/api.py:246 msgid "Supplier Part is Active" msgstr "" -#: company/api.py:290 +#: company/api.py:250 msgid "Internal Part is Active" msgstr "" -#: company/api.py:295 +#: company/api.py:255 msgid "Supplier is Active" msgstr "" -#: company/api.py:307 company/models.py:520 company/serializers.py:457 -#: part/serializers.py:566 +#: company/api.py:267 company/models.py:522 company/serializers.py:502 +#: part/serializers.py:477 msgid "Manufacturer" msgstr "" -#: company/api.py:314 company/models.py:121 company/models.py:392 +#: company/api.py:274 company/models.py:122 company/models.py:393 #: stock/api.py:900 msgid "Company" msgstr "" -#: company/api.py:324 +#: company/api.py:284 msgid "Has Stock" msgstr "" -#: company/models.py:122 +#: company/models.py:123 msgid "Companies" msgstr "" -#: company/models.py:150 +#: company/models.py:151 msgid "Company description" msgstr "" -#: company/models.py:151 +#: company/models.py:152 msgid "Description of the company" msgstr "" -#: company/models.py:157 +#: company/models.py:158 msgid "Website" msgstr "" -#: company/models.py:158 +#: company/models.py:159 msgid "Company website URL" msgstr "" -#: company/models.py:164 +#: company/models.py:165 msgid "Phone number" msgstr "" -#: company/models.py:166 +#: company/models.py:167 msgid "Contact phone number" msgstr "" -#: company/models.py:173 +#: company/models.py:174 msgid "Contact email address" msgstr "" -#: company/models.py:178 company/models.py:296 order/models.py:513 +#: company/models.py:179 company/models.py:297 order/models.py:514 #: users/models.py:561 msgid "Contact" msgstr "" -#: company/models.py:180 +#: company/models.py:181 msgid "Point of contact" msgstr "" -#: company/models.py:186 +#: company/models.py:187 msgid "Link to external company information" msgstr "" -#: company/models.py:191 +#: company/models.py:192 msgid "Is this company active?" msgstr "" -#: company/models.py:196 +#: company/models.py:197 msgid "Is customer" msgstr "" -#: company/models.py:197 +#: company/models.py:198 msgid "Do you sell items to this company?" msgstr "" -#: company/models.py:202 +#: company/models.py:203 msgid "Is supplier" msgstr "" -#: company/models.py:203 +#: company/models.py:204 msgid "Do you purchase items from this company?" msgstr "" -#: company/models.py:208 +#: company/models.py:209 msgid "Is manufacturer" msgstr "" -#: company/models.py:209 +#: company/models.py:210 msgid "Does this company manufacture parts?" msgstr "" -#: company/models.py:217 +#: company/models.py:218 msgid "Default currency used for this company" msgstr "" -#: company/models.py:224 +#: company/models.py:225 msgid "Tax ID" msgstr "" -#: company/models.py:225 +#: company/models.py:226 msgid "Company Tax ID" msgstr "" -#: company/models.py:335 order/models.py:523 order/models.py:2288 +#: company/models.py:336 order/models.py:524 order/models.py:2289 msgid "Address" msgstr "" -#: company/models.py:336 +#: company/models.py:337 msgid "Addresses" msgstr "" -#: company/models.py:393 +#: company/models.py:394 msgid "Select company" msgstr "" -#: company/models.py:398 +#: company/models.py:399 msgid "Address title" msgstr "" -#: company/models.py:399 +#: company/models.py:400 msgid "Title describing the address entry" msgstr "" -#: company/models.py:405 +#: company/models.py:406 msgid "Primary address" msgstr "" -#: company/models.py:406 +#: company/models.py:407 msgid "Set as primary address" msgstr "" -#: company/models.py:411 +#: company/models.py:412 msgid "Line 1" msgstr "" -#: company/models.py:412 +#: company/models.py:413 msgid "Address line 1" msgstr "" -#: company/models.py:418 +#: company/models.py:419 msgid "Line 2" msgstr "" -#: company/models.py:419 +#: company/models.py:420 msgid "Address line 2" msgstr "" -#: company/models.py:425 company/models.py:426 +#: company/models.py:426 company/models.py:427 msgid "Postal code" msgstr "" -#: company/models.py:432 +#: company/models.py:433 msgid "City/Region" msgstr "" -#: company/models.py:433 +#: company/models.py:434 msgid "Postal code city/region" msgstr "" -#: company/models.py:439 +#: company/models.py:440 msgid "State/Province" msgstr "" -#: company/models.py:440 +#: company/models.py:441 msgid "State or province" msgstr "" -#: company/models.py:446 +#: company/models.py:447 msgid "Country" msgstr "" -#: company/models.py:447 +#: company/models.py:448 msgid "Address country" msgstr "" -#: company/models.py:453 +#: company/models.py:454 msgid "Courier shipping notes" msgstr "" -#: company/models.py:454 +#: company/models.py:455 msgid "Notes for shipping courier" msgstr "" -#: company/models.py:460 +#: company/models.py:461 msgid "Internal shipping notes" msgstr "" -#: company/models.py:461 +#: company/models.py:462 msgid "Shipping notes for internal use" msgstr "" -#: company/models.py:468 +#: company/models.py:469 msgid "Link to address information (external)" msgstr "" -#: company/models.py:492 company/models.py:609 company/models.py:832 -#: company/serializers.py:471 stock/api.py:561 +#: company/models.py:494 company/models.py:786 company/serializers.py:516 +#: stock/api.py:561 msgid "Manufacturer Part" msgstr "" -#: company/models.py:509 company/models.py:800 stock/models.py:1025 +#: company/models.py:511 company/models.py:754 stock/models.py:1025 #: stock/serializers.py:407 msgid "Base Part" msgstr "" -#: company/models.py:511 company/models.py:802 +#: company/models.py:513 company/models.py:756 msgid "Select part" msgstr "" -#: company/models.py:521 +#: company/models.py:523 msgid "Select manufacturer" msgstr "" -#: company/models.py:527 company/serializers.py:479 order/serializers.py:734 -#: part/serializers.py:576 +#: company/models.py:529 company/serializers.py:524 order/serializers.py:745 +#: part/serializers.py:487 msgid "MPN" msgstr "" -#: company/models.py:528 stock/serializers.py:572 +#: company/models.py:530 stock/serializers.py:572 msgid "Manufacturer Part Number" msgstr "" -#: company/models.py:535 +#: company/models.py:537 msgid "URL for external manufacturer part link" msgstr "" -#: company/models.py:544 +#: company/models.py:546 msgid "Manufacturer part description" msgstr "" -#: company/models.py:597 -msgid "Manufacturer Part Parameter" -msgstr "" - -#: company/models.py:616 -msgid "Parameter name" -msgstr "" - -#: company/models.py:623 -msgid "Parameter value" -msgstr "" - -#: company/models.py:630 part/models.py:1195 part/models.py:3857 -msgid "Units" -msgstr "" - -#: company/models.py:631 -msgid "Parameter units" -msgstr "" - -#: company/models.py:740 +#: company/models.py:694 msgid "Pack units must be compatible with the base part units" msgstr "" -#: company/models.py:747 +#: company/models.py:701 msgid "Pack units must be greater than zero" msgstr "" -#: company/models.py:761 +#: company/models.py:715 msgid "Linked manufacturer part must reference the same base part" msgstr "" -#: company/models.py:810 company/serializers.py:449 company/serializers.py:467 -#: order/models.py:639 part/serializers.py:550 +#: company/models.py:764 company/serializers.py:494 company/serializers.py:512 +#: order/models.py:640 part/serializers.py:461 #: plugin/builtin/suppliers/digikey.py:26 plugin/builtin/suppliers/lcsc.py:27 #: plugin/builtin/suppliers/mouser.py:25 plugin/builtin/suppliers/tme.py:27 #: stock/api.py:567 templates/email/overdue_purchase_order.html:16 msgid "Supplier" msgstr "" -#: company/models.py:811 +#: company/models.py:765 msgid "Select supplier" msgstr "" -#: company/models.py:817 part/serializers.py:561 +#: company/models.py:771 part/serializers.py:472 msgid "Supplier stock keeping unit" msgstr "" -#: company/models.py:823 +#: company/models.py:777 msgid "Is this supplier part active?" msgstr "" -#: company/models.py:833 +#: company/models.py:787 msgid "Select manufacturer part" msgstr "" -#: company/models.py:840 +#: company/models.py:794 msgid "URL for external supplier part link" msgstr "" -#: company/models.py:849 +#: company/models.py:803 msgid "Supplier part description" msgstr "" -#: company/models.py:856 order/serializers.py:883 order/serializers.py:2047 -#: part/models.py:4070 part/models.py:4450 part/models.py:4819 -#: report/templates/report/inventree_bill_of_materials_report.html:140 -#: report/templates/report/inventree_purchase_order_report.html:39 -#: report/templates/report/inventree_return_order_report.html:27 -#: report/templates/report/inventree_sales_order_report.html:32 -#: report/templates/report/inventree_stock_location_report.html:105 -#: stock/serializers.py:813 -msgid "Note" -msgstr "" - -#: company/models.py:865 part/models.py:2250 +#: company/models.py:819 part/models.py:2338 msgid "base cost" msgstr "" -#: company/models.py:866 part/models.py:2251 +#: company/models.py:820 part/models.py:2339 msgid "Minimum charge (e.g. stocking fee)" msgstr "" -#: company/models.py:873 order/serializers.py:875 stock/models.py:1056 +#: company/models.py:827 order/serializers.py:886 stock/models.py:1056 #: stock/serializers.py:1606 msgid "Packaging" msgstr "" -#: company/models.py:874 +#: company/models.py:828 msgid "Part packaging" msgstr "" -#: company/models.py:879 +#: company/models.py:833 msgid "Pack Quantity" msgstr "" -#: company/models.py:881 +#: company/models.py:835 msgid "Total quantity supplied in a single pack. Leave empty for single items." msgstr "" -#: company/models.py:900 part/models.py:2257 +#: company/models.py:854 part/models.py:2345 msgid "multiple" msgstr "" -#: company/models.py:901 +#: company/models.py:855 msgid "Order multiple" msgstr "" -#: company/models.py:913 +#: company/models.py:867 msgid "Quantity available from supplier" msgstr "" -#: company/models.py:919 +#: company/models.py:873 msgid "Availability Updated" msgstr "" -#: company/models.py:920 +#: company/models.py:874 msgid "Date of last update of availability data" msgstr "" -#: company/models.py:1048 +#: company/models.py:1002 msgid "Supplier Price Break" msgstr "" -#: company/serializers.py:181 +#: company/serializers.py:184 +msgid "Primary Address" +msgstr "" + +#: company/serializers.py:186 msgid "Return the string representation for the primary address. This property exists for backwards compatibility." msgstr "" -#: company/serializers.py:212 +#: company/serializers.py:218 msgid "Default currency used for this supplier" msgstr "" -#: company/serializers.py:248 +#: company/serializers.py:260 msgid "Company Name" msgstr "" -#: company/serializers.py:433 part/serializers.py:955 stock/serializers.py:428 +#: company/serializers.py:460 part/serializers.py:840 stock/serializers.py:428 msgid "In Stock" msgstr "" +#: company/serializers.py:477 +msgid "Price Breaks" +msgstr "" + #: data_exporter/mixins.py:325 data_exporter/mixins.py:403 msgid "Error occurred during data export" msgstr "" @@ -4290,7 +4418,7 @@ msgstr "" msgid "Errors" msgstr "" -#: importer/models.py:550 part/serializers.py:1268 +#: importer/models.py:550 part/serializers.py:1133 msgid "Valid" msgstr "" @@ -4402,7 +4530,7 @@ msgstr "" msgid "Connected" msgstr "" -#: machine/machine_types/label_printer.py:232 order/api.py:1795 +#: machine/machine_types/label_printer.py:232 order/api.py:1800 msgid "Unknown" msgstr "" @@ -4530,105 +4658,105 @@ msgstr "" msgid "Maximum value for progress type, required if type=progress" msgstr "" -#: order/api.py:125 +#: order/api.py:130 msgid "Order Reference" msgstr "" -#: order/api.py:153 order/api.py:1207 +#: order/api.py:158 order/api.py:1212 msgid "Outstanding" msgstr "" -#: order/api.py:169 +#: order/api.py:174 msgid "Has Project Code" msgstr "" -#: order/api.py:183 order/models.py:488 +#: order/api.py:188 order/models.py:489 msgid "Created By" msgstr "" -#: order/api.py:187 +#: order/api.py:192 msgid "Created Before" msgstr "" -#: order/api.py:191 +#: order/api.py:196 msgid "Created After" msgstr "" -#: order/api.py:195 +#: order/api.py:200 msgid "Has Start Date" msgstr "" -#: order/api.py:203 +#: order/api.py:208 msgid "Start Date Before" msgstr "" -#: order/api.py:207 +#: order/api.py:212 msgid "Start Date After" msgstr "" -#: order/api.py:211 +#: order/api.py:216 msgid "Has Target Date" msgstr "" -#: order/api.py:219 +#: order/api.py:224 msgid "Target Date Before" msgstr "" -#: order/api.py:223 +#: order/api.py:228 msgid "Target Date After" msgstr "" -#: order/api.py:274 +#: order/api.py:279 msgid "Has Pricing" msgstr "" -#: order/api.py:327 order/api.py:812 order/api.py:1490 +#: order/api.py:332 order/api.py:818 order/api.py:1495 msgid "Completed Before" msgstr "" -#: order/api.py:331 order/api.py:816 order/api.py:1494 +#: order/api.py:336 order/api.py:822 order/api.py:1499 msgid "Completed After" msgstr "" -#: order/api.py:337 order/api.py:341 +#: order/api.py:342 order/api.py:346 msgid "External Build Order" msgstr "" -#: order/api.py:526 order/api.py:914 order/api.py:1170 order/models.py:1922 -#: order/models.py:2049 order/models.py:2099 order/models.py:2279 -#: order/models.py:2477 order/models.py:2999 order/models.py:3065 +#: order/api.py:532 order/api.py:919 order/api.py:1175 order/models.py:1923 +#: order/models.py:2050 order/models.py:2100 order/models.py:2280 +#: order/models.py:2478 order/models.py:3000 order/models.py:3066 msgid "Order" msgstr "" -#: order/api.py:530 order/api.py:982 +#: order/api.py:536 order/api.py:987 msgid "Order Complete" msgstr "" -#: order/api.py:562 order/api.py:566 order/serializers.py:745 +#: order/api.py:568 order/api.py:572 order/serializers.py:756 msgid "Internal Part" msgstr "" -#: order/api.py:584 +#: order/api.py:590 msgid "Order Pending" msgstr "" -#: order/api.py:967 +#: order/api.py:972 msgid "Completed" msgstr "" -#: order/api.py:1223 +#: order/api.py:1228 msgid "Has Shipment" msgstr "" -#: order/api.py:1789 order/models.py:552 order/models.py:1923 -#: order/models.py:2050 +#: order/api.py:1794 order/models.py:553 order/models.py:1924 +#: order/models.py:2051 #: report/templates/report/inventree_purchase_order_report.html:14 #: stock/serializers.py:129 templates/email/overdue_purchase_order.html:15 msgid "Purchase Order" msgstr "" -#: order/api.py:1791 order/models.py:1251 order/models.py:2100 -#: order/models.py:2280 order/models.py:2478 +#: order/api.py:1796 order/models.py:1252 order/models.py:2101 +#: order/models.py:2281 order/models.py:2479 #: report/templates/report/inventree_build_order_report.html:135 #: report/templates/report/inventree_sales_order_report.html:14 #: report/templates/report/inventree_sales_order_shipment_report.html:15 @@ -4636,8 +4764,8 @@ msgstr "" msgid "Sales Order" msgstr "" -#: order/api.py:1793 order/models.py:2649 order/models.py:3000 -#: order/models.py:3066 +#: order/api.py:1798 order/models.py:2650 order/models.py:3001 +#: order/models.py:3067 #: report/templates/report/inventree_return_order_report.html:13 #: templates/email/overdue_return_order.html:15 msgid "Return Order" @@ -4653,722 +4781,722 @@ msgstr "" msgid "Total price for this order" msgstr "" -#: order/models.py:96 order/serializers.py:77 +#: order/models.py:96 order/serializers.py:78 msgid "Order Currency" msgstr "" -#: order/models.py:99 order/serializers.py:78 +#: order/models.py:99 order/serializers.py:79 msgid "Currency for this order (leave blank to use company default)" msgstr "" -#: order/models.py:324 +#: order/models.py:325 msgid "This order is locked and cannot be modified" msgstr "" -#: order/models.py:376 +#: order/models.py:377 msgid "Contact does not match selected company" msgstr "" -#: order/models.py:383 +#: order/models.py:384 msgid "Start date must be before target date" msgstr "" -#: order/models.py:390 +#: order/models.py:391 msgid "Address does not match selected company" msgstr "" -#: order/models.py:443 +#: order/models.py:444 msgid "Order description (optional)" msgstr "" -#: order/models.py:452 order/models.py:1806 +#: order/models.py:453 order/models.py:1807 msgid "Select project code for this order" msgstr "" -#: order/models.py:458 order/models.py:1787 order/models.py:2344 +#: order/models.py:459 order/models.py:1788 order/models.py:2345 msgid "Link to external page" msgstr "" -#: order/models.py:465 +#: order/models.py:466 msgid "Start date" msgstr "" -#: order/models.py:466 +#: order/models.py:467 msgid "Scheduled start date for this order" msgstr "" -#: order/models.py:472 order/models.py:1794 order/serializers.py:309 +#: order/models.py:473 order/models.py:1795 order/serializers.py:317 #: report/templates/report/inventree_build_order_report.html:125 msgid "Target Date" msgstr "" -#: order/models.py:474 +#: order/models.py:475 msgid "Expected date for order delivery. Order will be overdue after this date." msgstr "" -#: order/models.py:494 +#: order/models.py:495 msgid "Issue Date" msgstr "" -#: order/models.py:495 +#: order/models.py:496 msgid "Date order was issued" msgstr "" -#: order/models.py:503 +#: order/models.py:504 msgid "User or group responsible for this order" msgstr "" -#: order/models.py:514 +#: order/models.py:515 msgid "Point of contact for this order" msgstr "" -#: order/models.py:524 +#: order/models.py:525 msgid "Company address for this order" msgstr "" -#: order/models.py:615 order/models.py:1312 +#: order/models.py:616 order/models.py:1313 msgid "Order reference" msgstr "" -#: order/models.py:624 order/models.py:1336 order/models.py:2737 +#: order/models.py:625 order/models.py:1337 order/models.py:2738 #: stock/serializers.py:559 stock/serializers.py:988 users/models.py:542 msgid "Status" msgstr "" -#: order/models.py:625 +#: order/models.py:626 msgid "Purchase order status" msgstr "" -#: order/models.py:640 +#: order/models.py:641 msgid "Company from which the items are being ordered" msgstr "" -#: order/models.py:651 +#: order/models.py:652 msgid "Supplier Reference" msgstr "" -#: order/models.py:652 +#: order/models.py:653 msgid "Supplier order reference code" msgstr "" -#: order/models.py:661 +#: order/models.py:662 msgid "received by" msgstr "" -#: order/models.py:668 order/models.py:2752 +#: order/models.py:669 order/models.py:2753 msgid "Date order was completed" msgstr "" -#: order/models.py:677 order/models.py:1981 +#: order/models.py:678 order/models.py:1982 msgid "Destination" msgstr "" -#: order/models.py:678 order/models.py:1985 +#: order/models.py:679 order/models.py:1986 msgid "Destination for received items" msgstr "" -#: order/models.py:724 +#: order/models.py:725 msgid "Part supplier must match PO supplier" msgstr "" -#: order/models.py:994 +#: order/models.py:995 msgid "Line item does not match purchase order" msgstr "" -#: order/models.py:997 +#: order/models.py:998 msgid "Line item is missing a linked part" msgstr "" -#: order/models.py:1011 +#: order/models.py:1012 msgid "Quantity must be a positive number" msgstr "" -#: order/models.py:1323 order/models.py:2724 stock/models.py:1078 +#: order/models.py:1324 order/models.py:2725 stock/models.py:1078 #: stock/models.py:1079 stock/serializers.py:1322 #: templates/email/overdue_return_order.html:16 #: templates/email/overdue_sales_order.html:16 msgid "Customer" msgstr "" -#: order/models.py:1324 +#: order/models.py:1325 msgid "Company to which the items are being sold" msgstr "" -#: order/models.py:1337 +#: order/models.py:1338 msgid "Sales order status" msgstr "" -#: order/models.py:1348 order/models.py:2744 +#: order/models.py:1349 order/models.py:2745 msgid "Customer Reference " msgstr "" -#: order/models.py:1349 order/models.py:2745 +#: order/models.py:1350 order/models.py:2746 msgid "Customer order reference code" msgstr "" -#: order/models.py:1353 order/models.py:2296 +#: order/models.py:1354 order/models.py:2297 msgid "Shipment Date" msgstr "" -#: order/models.py:1362 +#: order/models.py:1363 msgid "shipped by" msgstr "" -#: order/models.py:1413 +#: order/models.py:1414 msgid "Order is already complete" msgstr "" -#: order/models.py:1416 +#: order/models.py:1417 msgid "Order is already cancelled" msgstr "" -#: order/models.py:1420 +#: order/models.py:1421 msgid "Only an open order can be marked as complete" msgstr "" -#: order/models.py:1424 +#: order/models.py:1425 msgid "Order cannot be completed as there are incomplete shipments" msgstr "" -#: order/models.py:1429 +#: order/models.py:1430 msgid "Order cannot be completed as there are incomplete allocations" msgstr "" -#: order/models.py:1438 +#: order/models.py:1439 msgid "Order cannot be completed as there are incomplete line items" msgstr "" -#: order/models.py:1733 order/models.py:1749 +#: order/models.py:1734 order/models.py:1750 msgid "The order is locked and cannot be modified" msgstr "" -#: order/models.py:1757 +#: order/models.py:1758 msgid "Item quantity" msgstr "" -#: order/models.py:1774 +#: order/models.py:1775 msgid "Line item reference" msgstr "" -#: order/models.py:1781 +#: order/models.py:1782 msgid "Line item notes" msgstr "" -#: order/models.py:1796 +#: order/models.py:1797 msgid "Target date for this line item (leave blank to use the target date from the order)" msgstr "" -#: order/models.py:1826 +#: order/models.py:1827 msgid "Line item description (optional)" msgstr "" -#: order/models.py:1833 +#: order/models.py:1834 msgid "Additional context for this line" msgstr "" -#: order/models.py:1843 +#: order/models.py:1844 msgid "Unit price" msgstr "" -#: order/models.py:1862 +#: order/models.py:1863 msgid "Purchase Order Line Item" msgstr "" -#: order/models.py:1889 +#: order/models.py:1890 msgid "Supplier part must match supplier" msgstr "" -#: order/models.py:1894 +#: order/models.py:1895 msgid "Build order must be marked as external" msgstr "" -#: order/models.py:1901 +#: order/models.py:1902 msgid "Build orders can only be linked to assembly parts" msgstr "" -#: order/models.py:1907 +#: order/models.py:1908 msgid "Build order part must match line item part" msgstr "" -#: order/models.py:1942 +#: order/models.py:1943 msgid "Supplier part" msgstr "" -#: order/models.py:1949 +#: order/models.py:1950 msgid "Received" msgstr "" -#: order/models.py:1950 +#: order/models.py:1951 msgid "Number of items received" msgstr "" -#: order/models.py:1958 stock/models.py:1201 stock/serializers.py:637 +#: order/models.py:1959 stock/models.py:1201 stock/serializers.py:637 msgid "Purchase Price" msgstr "" -#: order/models.py:1959 +#: order/models.py:1960 msgid "Unit purchase price" msgstr "" -#: order/models.py:1975 +#: order/models.py:1976 msgid "External Build Order to be fulfilled by this line item" msgstr "" -#: order/models.py:2038 +#: order/models.py:2039 msgid "Purchase Order Extra Line" msgstr "" -#: order/models.py:2067 +#: order/models.py:2068 msgid "Sales Order Line Item" msgstr "" -#: order/models.py:2092 +#: order/models.py:2093 msgid "Only salable parts can be assigned to a sales order" msgstr "" -#: order/models.py:2118 +#: order/models.py:2119 msgid "Sale Price" msgstr "" -#: order/models.py:2119 +#: order/models.py:2120 msgid "Unit sale price" msgstr "" -#: order/models.py:2128 order/status_codes.py:50 +#: order/models.py:2129 order/status_codes.py:50 msgid "Shipped" msgstr "" -#: order/models.py:2129 +#: order/models.py:2130 msgid "Shipped quantity" msgstr "" -#: order/models.py:2240 +#: order/models.py:2241 msgid "Sales Order Shipment" msgstr "" -#: order/models.py:2253 +#: order/models.py:2254 msgid "Shipment address must match the customer" msgstr "" -#: order/models.py:2289 +#: order/models.py:2290 msgid "Shipping address for this shipment" msgstr "" -#: order/models.py:2297 +#: order/models.py:2298 msgid "Date of shipment" msgstr "" -#: order/models.py:2303 +#: order/models.py:2304 msgid "Delivery Date" msgstr "" -#: order/models.py:2304 +#: order/models.py:2305 msgid "Date of delivery of shipment" msgstr "" -#: order/models.py:2312 +#: order/models.py:2313 msgid "Checked By" msgstr "" -#: order/models.py:2313 +#: order/models.py:2314 msgid "User who checked this shipment" msgstr "" -#: order/models.py:2320 order/models.py:2574 order/serializers.py:1711 -#: order/serializers.py:1835 +#: order/models.py:2321 order/models.py:2575 order/serializers.py:1725 +#: order/serializers.py:1849 #: report/templates/report/inventree_sales_order_shipment_report.html:14 msgid "Shipment" msgstr "" -#: order/models.py:2321 +#: order/models.py:2322 msgid "Shipment number" msgstr "" -#: order/models.py:2329 +#: order/models.py:2330 msgid "Tracking Number" msgstr "" -#: order/models.py:2330 +#: order/models.py:2331 msgid "Shipment tracking information" msgstr "" -#: order/models.py:2337 +#: order/models.py:2338 msgid "Invoice Number" msgstr "" -#: order/models.py:2338 +#: order/models.py:2339 msgid "Reference number for associated invoice" msgstr "" -#: order/models.py:2377 +#: order/models.py:2378 msgid "Shipment has already been sent" msgstr "" -#: order/models.py:2380 +#: order/models.py:2381 msgid "Shipment has no allocated stock items" msgstr "" -#: order/models.py:2387 +#: order/models.py:2388 msgid "Shipment must be checked before it can be completed" msgstr "" -#: order/models.py:2466 +#: order/models.py:2467 msgid "Sales Order Extra Line" msgstr "" -#: order/models.py:2495 +#: order/models.py:2496 msgid "Sales Order Allocation" msgstr "" -#: order/models.py:2518 order/models.py:2520 +#: order/models.py:2519 order/models.py:2521 msgid "Stock item has not been assigned" msgstr "" -#: order/models.py:2527 +#: order/models.py:2528 msgid "Cannot allocate stock item to a line with a different part" msgstr "" -#: order/models.py:2530 +#: order/models.py:2531 msgid "Cannot allocate stock to a line without a part" msgstr "" -#: order/models.py:2533 +#: order/models.py:2534 msgid "Allocation quantity cannot exceed stock quantity" msgstr "" -#: order/models.py:2552 order/serializers.py:1581 +#: order/models.py:2553 order/serializers.py:1595 msgid "Quantity must be 1 for serialized stock item" msgstr "" -#: order/models.py:2555 +#: order/models.py:2556 msgid "Sales order does not match shipment" msgstr "" -#: order/models.py:2556 plugin/base/barcodes/api.py:642 +#: order/models.py:2557 plugin/base/barcodes/api.py:642 msgid "Shipment does not match sales order" msgstr "" -#: order/models.py:2564 +#: order/models.py:2565 msgid "Line" msgstr "" -#: order/models.py:2575 +#: order/models.py:2576 msgid "Sales order shipment reference" msgstr "" -#: order/models.py:2588 order/models.py:3007 +#: order/models.py:2589 order/models.py:3008 msgid "Item" msgstr "" -#: order/models.py:2589 +#: order/models.py:2590 msgid "Select stock item to allocate" msgstr "" -#: order/models.py:2598 +#: order/models.py:2599 msgid "Enter stock allocation quantity" msgstr "" -#: order/models.py:2713 +#: order/models.py:2714 msgid "Return Order reference" msgstr "" -#: order/models.py:2725 +#: order/models.py:2726 msgid "Company from which items are being returned" msgstr "" -#: order/models.py:2738 +#: order/models.py:2739 msgid "Return order status" msgstr "" -#: order/models.py:2965 +#: order/models.py:2966 msgid "Return Order Line Item" msgstr "" -#: order/models.py:2978 +#: order/models.py:2979 msgid "Stock item must be specified" msgstr "" -#: order/models.py:2982 +#: order/models.py:2983 msgid "Return quantity exceeds stock quantity" msgstr "" -#: order/models.py:2987 +#: order/models.py:2988 msgid "Return quantity must be greater than zero" msgstr "" -#: order/models.py:2992 +#: order/models.py:2993 msgid "Invalid quantity for serialized stock item" msgstr "" -#: order/models.py:3008 +#: order/models.py:3009 msgid "Select item to return from customer" msgstr "" -#: order/models.py:3023 +#: order/models.py:3024 msgid "Received Date" msgstr "" -#: order/models.py:3024 +#: order/models.py:3025 msgid "The date this this return item was received" msgstr "" -#: order/models.py:3036 +#: order/models.py:3037 msgid "Outcome" msgstr "" -#: order/models.py:3037 +#: order/models.py:3038 msgid "Outcome for this line item" msgstr "" -#: order/models.py:3044 +#: order/models.py:3045 msgid "Cost associated with return or repair for this line item" msgstr "" -#: order/models.py:3054 +#: order/models.py:3055 msgid "Return Order Extra Line" msgstr "" -#: order/serializers.py:91 +#: order/serializers.py:92 msgid "Order ID" msgstr "" -#: order/serializers.py:91 +#: order/serializers.py:92 msgid "ID of the order to duplicate" msgstr "" -#: order/serializers.py:97 +#: order/serializers.py:98 msgid "Copy Lines" msgstr "" -#: order/serializers.py:98 +#: order/serializers.py:99 msgid "Copy line items from the original order" msgstr "" -#: order/serializers.py:104 +#: order/serializers.py:105 msgid "Copy Extra Lines" msgstr "" -#: order/serializers.py:105 +#: order/serializers.py:106 msgid "Copy extra line items from the original order" msgstr "" -#: order/serializers.py:120 +#: order/serializers.py:121 #: report/templates/report/inventree_purchase_order_report.html:29 #: report/templates/report/inventree_return_order_report.html:19 #: report/templates/report/inventree_sales_order_report.html:22 msgid "Line Items" msgstr "" -#: order/serializers.py:125 +#: order/serializers.py:126 msgid "Completed Lines" msgstr "" -#: order/serializers.py:192 +#: order/serializers.py:199 msgid "Duplicate Order" msgstr "" -#: order/serializers.py:193 +#: order/serializers.py:200 msgid "Specify options for duplicating this order" msgstr "" -#: order/serializers.py:270 +#: order/serializers.py:278 msgid "Invalid order ID" msgstr "" -#: order/serializers.py:466 +#: order/serializers.py:477 msgid "Supplier Name" msgstr "" -#: order/serializers.py:510 +#: order/serializers.py:521 msgid "Order cannot be cancelled" msgstr "" -#: order/serializers.py:525 order/serializers.py:1602 +#: order/serializers.py:536 order/serializers.py:1616 msgid "Allow order to be closed with incomplete line items" msgstr "" -#: order/serializers.py:535 order/serializers.py:1612 +#: order/serializers.py:546 order/serializers.py:1626 msgid "Order has incomplete line items" msgstr "" -#: order/serializers.py:665 +#: order/serializers.py:676 msgid "Order is not open" msgstr "" -#: order/serializers.py:692 +#: order/serializers.py:703 msgid "Auto Pricing" msgstr "" -#: order/serializers.py:694 +#: order/serializers.py:705 msgid "Automatically calculate purchase price based on supplier part data" msgstr "" -#: order/serializers.py:704 +#: order/serializers.py:715 msgid "Purchase price currency" msgstr "" -#: order/serializers.py:718 +#: order/serializers.py:729 msgid "Merge Items" msgstr "" -#: order/serializers.py:720 +#: order/serializers.py:731 msgid "Merge items with the same part, destination and target date into one line item" msgstr "" -#: order/serializers.py:727 part/serializers.py:560 +#: order/serializers.py:738 part/serializers.py:471 msgid "SKU" msgstr "" -#: order/serializers.py:741 part/models.py:1089 part/serializers.py:372 +#: order/serializers.py:752 part/models.py:1177 part/serializers.py:337 msgid "Internal Part Number" msgstr "" -#: order/serializers.py:749 +#: order/serializers.py:760 msgid "Internal Part Name" msgstr "" -#: order/serializers.py:765 +#: order/serializers.py:776 msgid "Supplier part must be specified" msgstr "" -#: order/serializers.py:768 +#: order/serializers.py:779 msgid "Purchase order must be specified" msgstr "" -#: order/serializers.py:776 +#: order/serializers.py:787 msgid "Supplier must match purchase order" msgstr "" -#: order/serializers.py:777 +#: order/serializers.py:788 msgid "Purchase order must match supplier" msgstr "" -#: order/serializers.py:825 order/serializers.py:1682 +#: order/serializers.py:836 order/serializers.py:1696 msgid "Line Item" msgstr "" -#: order/serializers.py:834 order/serializers.py:974 order/serializers.py:2043 +#: order/serializers.py:845 order/serializers.py:985 order/serializers.py:2060 msgid "Select destination location for received items" msgstr "" -#: order/serializers.py:850 +#: order/serializers.py:861 msgid "Enter batch code for incoming stock items" msgstr "" -#: order/serializers.py:857 stock/models.py:1160 +#: order/serializers.py:868 stock/models.py:1160 #: templates/email/stale_stock_notification.html:22 users/models.py:137 msgid "Expiry Date" msgstr "" -#: order/serializers.py:858 +#: order/serializers.py:869 msgid "Enter expiry date for incoming stock items" msgstr "" -#: order/serializers.py:866 +#: order/serializers.py:877 msgid "Enter serial numbers for incoming stock items" msgstr "" -#: order/serializers.py:876 +#: order/serializers.py:887 msgid "Override packaging information for incoming stock items" msgstr "" -#: order/serializers.py:884 order/serializers.py:2048 +#: order/serializers.py:895 order/serializers.py:2065 msgid "Additional note for incoming stock items" msgstr "" -#: order/serializers.py:891 +#: order/serializers.py:902 msgid "Barcode" msgstr "" -#: order/serializers.py:892 +#: order/serializers.py:903 msgid "Scanned barcode" msgstr "" -#: order/serializers.py:908 +#: order/serializers.py:919 msgid "Barcode is already in use" msgstr "" -#: order/serializers.py:991 order/serializers.py:2067 +#: order/serializers.py:1002 order/serializers.py:2084 msgid "Line items must be provided" msgstr "" -#: order/serializers.py:1010 +#: order/serializers.py:1021 msgid "Destination location must be specified" msgstr "" -#: order/serializers.py:1017 +#: order/serializers.py:1028 msgid "Supplied barcode values must be unique" msgstr "" -#: order/serializers.py:1121 +#: order/serializers.py:1135 msgid "Shipments" msgstr "" -#: order/serializers.py:1125 +#: order/serializers.py:1139 msgid "Completed Shipments" msgstr "" -#: order/serializers.py:1293 +#: order/serializers.py:1307 msgid "Sale price currency" msgstr "" -#: order/serializers.py:1339 +#: order/serializers.py:1353 msgid "Allocated Items" msgstr "" -#: order/serializers.py:1484 +#: order/serializers.py:1498 msgid "No shipment details provided" msgstr "" -#: order/serializers.py:1545 order/serializers.py:1691 +#: order/serializers.py:1559 order/serializers.py:1705 msgid "Line item is not associated with this order" msgstr "" -#: order/serializers.py:1564 +#: order/serializers.py:1578 msgid "Quantity must be positive" msgstr "" -#: order/serializers.py:1701 +#: order/serializers.py:1715 msgid "Enter serial numbers to allocate" msgstr "" -#: order/serializers.py:1723 order/serializers.py:1843 +#: order/serializers.py:1737 order/serializers.py:1857 msgid "Shipment has already been shipped" msgstr "" -#: order/serializers.py:1726 order/serializers.py:1846 +#: order/serializers.py:1740 order/serializers.py:1860 msgid "Shipment is not associated with this order" msgstr "" -#: order/serializers.py:1781 +#: order/serializers.py:1795 msgid "No match found for the following serial numbers" msgstr "" -#: order/serializers.py:1788 +#: order/serializers.py:1802 msgid "The following serial numbers are unavailable" msgstr "" -#: order/serializers.py:2009 +#: order/serializers.py:2026 msgid "Return order line item" msgstr "" -#: order/serializers.py:2019 +#: order/serializers.py:2036 msgid "Line item does not match return order" msgstr "" -#: order/serializers.py:2022 +#: order/serializers.py:2039 msgid "Line item has already been received" msgstr "" -#: order/serializers.py:2059 +#: order/serializers.py:2076 msgid "Items can only be received against orders which are in progress" msgstr "" -#: order/serializers.py:2124 +#: order/serializers.py:2141 msgid "Quantity to return" msgstr "" -#: order/serializers.py:2140 +#: order/serializers.py:2157 msgid "Line price currency" msgstr "" @@ -5431,1190 +5559,1109 @@ msgstr "" msgid "Return order {ro} is now overdue" msgstr "" -#: part/api.py:108 +#: part/api.py:103 msgid "Starred" msgstr "" -#: part/api.py:110 +#: part/api.py:105 msgid "Filter by starred categories" msgstr "" -#: part/api.py:127 stock/api.py:288 +#: part/api.py:122 stock/api.py:288 msgid "Depth" msgstr "" -#: part/api.py:127 +#: part/api.py:122 msgid "Filter by category depth" msgstr "" -#: part/api.py:145 stock/api.py:306 +#: part/api.py:140 stock/api.py:306 msgid "Top Level" msgstr "" -#: part/api.py:147 +#: part/api.py:142 msgid "Filter by top-level categories" msgstr "" -#: part/api.py:160 stock/api.py:321 +#: part/api.py:155 stock/api.py:321 msgid "Cascade" msgstr "" -#: part/api.py:162 +#: part/api.py:157 msgid "Include sub-categories in filtered results" msgstr "" -#: part/api.py:182 +#: part/api.py:177 msgid "Parent" msgstr "" -#: part/api.py:184 +#: part/api.py:179 msgid "Filter by parent category" msgstr "" -#: part/api.py:219 +#: part/api.py:214 msgid "Exclude sub-categories under the specified category" msgstr "" -#: part/api.py:445 +#: part/api.py:440 msgid "Has Results" msgstr "" -#: part/api.py:666 +#: part/api.py:661 msgid "Is Variant" msgstr "" -#: part/api.py:674 +#: part/api.py:669 msgid "Is Revision" msgstr "" -#: part/api.py:684 +#: part/api.py:679 msgid "Has Revisions" msgstr "" -#: part/api.py:865 +#: part/api.py:860 msgid "BOM Valid" msgstr "" -#: part/api.py:974 +#: part/api.py:969 msgid "Cascade Categories" msgstr "" -#: part/api.py:975 +#: part/api.py:970 msgid "If true, include items in child categories of the given category" msgstr "" -#: part/api.py:981 +#: part/api.py:976 msgid "Filter by numeric category ID or the literal 'null'" msgstr "" -#: part/api.py:1533 +#: part/api.py:1258 msgid "Assembly part is testable" msgstr "" -#: part/api.py:1542 +#: part/api.py:1267 msgid "Component part is testable" msgstr "" -#: part/api.py:1611 +#: part/api.py:1336 msgid "Uses" msgstr "" -#: part/models.py:96 part/models.py:4163 +#: part/models.py:93 part/models.py:436 #: templates/email/part_event_notification.html:16 msgid "Part Category" msgstr "" -#: part/models.py:97 users/ruleset.py:27 +#: part/models.py:94 users/ruleset.py:27 msgid "Part Categories" msgstr "" -#: part/models.py:115 part/models.py:1125 +#: part/models.py:112 part/models.py:1213 msgid "Default Location" msgstr "" -#: part/models.py:116 +#: part/models.py:113 msgid "Default location for parts in this category" msgstr "" -#: part/models.py:121 stock/models.py:216 +#: part/models.py:118 stock/models.py:216 msgid "Structural" msgstr "" -#: part/models.py:123 +#: part/models.py:120 msgid "Parts may not be directly assigned to a structural category, but may be assigned to child categories." msgstr "" -#: part/models.py:132 +#: part/models.py:129 msgid "Default keywords" msgstr "" -#: part/models.py:133 +#: part/models.py:130 msgid "Default keywords for parts in this category" msgstr "" -#: part/models.py:140 stock/models.py:97 stock/models.py:198 +#: part/models.py:137 stock/models.py:97 stock/models.py:198 msgid "Icon" msgstr "" -#: part/models.py:141 part/serializers.py:148 part/serializers.py:167 +#: part/models.py:138 part/serializers.py:147 part/serializers.py:166 #: stock/models.py:199 msgid "Icon (optional)" msgstr "" -#: part/models.py:185 +#: part/models.py:182 msgid "You cannot make this part category structural because some parts are already assigned to it!" msgstr "" -#: part/models.py:473 part/serializers.py:119 part/serializers.py:310 -#: users/ruleset.py:28 +#: part/models.py:392 +msgid "Part Category Parameter Template" +msgstr "" + +#: part/models.py:448 +msgid "Default Value" +msgstr "" + +#: part/models.py:449 +msgid "Default Parameter Value" +msgstr "" + +#: part/models.py:551 part/serializers.py:118 users/ruleset.py:28 msgid "Parts" msgstr "" -#: part/models.py:525 +#: part/models.py:597 +msgid "Cannot delete parameters of a locked part" +msgstr "" + +#: part/models.py:602 +msgid "Cannot modify parameters of a locked part" +msgstr "" + +#: part/models.py:613 msgid "Cannot delete this part as it is locked" msgstr "" -#: part/models.py:528 +#: part/models.py:616 msgid "Cannot delete this part as it is still active" msgstr "" -#: part/models.py:533 +#: part/models.py:621 msgid "Cannot delete this part as it is used in an assembly" msgstr "" -#: part/models.py:616 part/models.py:623 +#: part/models.py:704 part/models.py:711 #, python-brace-format msgid "Part '{self}' cannot be used in BOM for '{parent}' (recursive)" msgstr "" -#: part/models.py:635 +#: part/models.py:723 #, python-brace-format msgid "Part '{parent}' is used in BOM for '{self}' (recursive)" msgstr "" -#: part/models.py:702 +#: part/models.py:790 #, python-brace-format msgid "IPN must match regex pattern {pattern}" msgstr "" -#: part/models.py:710 +#: part/models.py:798 msgid "Part cannot be a revision of itself" msgstr "" -#: part/models.py:717 +#: part/models.py:805 msgid "Cannot make a revision of a part which is already a revision" msgstr "" -#: part/models.py:724 +#: part/models.py:812 msgid "Revision code must be specified" msgstr "" -#: part/models.py:731 +#: part/models.py:819 msgid "Revisions are only allowed for assembly parts" msgstr "" -#: part/models.py:738 +#: part/models.py:826 msgid "Cannot make a revision of a template part" msgstr "" -#: part/models.py:744 +#: part/models.py:832 msgid "Parent part must point to the same template" msgstr "" -#: part/models.py:841 +#: part/models.py:929 msgid "Stock item with this serial number already exists" msgstr "" -#: part/models.py:971 +#: part/models.py:1059 msgid "Duplicate IPN not allowed in part settings" msgstr "" -#: part/models.py:983 +#: part/models.py:1071 msgid "Duplicate part revision already exists." msgstr "" -#: part/models.py:992 +#: part/models.py:1080 msgid "Part with this Name, IPN and Revision already exists." msgstr "" -#: part/models.py:1007 +#: part/models.py:1095 msgid "Parts cannot be assigned to structural part categories!" msgstr "" -#: part/models.py:1039 +#: part/models.py:1127 msgid "Part name" msgstr "" -#: part/models.py:1044 +#: part/models.py:1132 msgid "Is Template" msgstr "" -#: part/models.py:1045 +#: part/models.py:1133 msgid "Is this part a template part?" msgstr "" -#: part/models.py:1055 +#: part/models.py:1143 msgid "Is this part a variant of another part?" msgstr "" -#: part/models.py:1056 +#: part/models.py:1144 msgid "Variant Of" msgstr "" -#: part/models.py:1063 +#: part/models.py:1151 msgid "Part description (optional)" msgstr "" -#: part/models.py:1070 +#: part/models.py:1158 msgid "Keywords" msgstr "" -#: part/models.py:1071 +#: part/models.py:1159 msgid "Part keywords to improve visibility in search results" msgstr "" -#: part/models.py:1081 +#: part/models.py:1169 msgid "Part category" msgstr "" -#: part/models.py:1088 part/serializers.py:929 +#: part/models.py:1176 part/serializers.py:814 #: report/templates/report/inventree_stock_location_report.html:103 msgid "IPN" msgstr "" -#: part/models.py:1096 +#: part/models.py:1184 msgid "Part revision or version number" msgstr "" -#: part/models.py:1097 report/models.py:228 +#: part/models.py:1185 report/models.py:228 msgid "Revision" msgstr "" -#: part/models.py:1106 +#: part/models.py:1194 msgid "Is this part a revision of another part?" msgstr "" -#: part/models.py:1107 +#: part/models.py:1195 msgid "Revision Of" msgstr "" -#: part/models.py:1123 +#: part/models.py:1211 msgid "Where is this item normally stored?" msgstr "" -#: part/models.py:1169 +#: part/models.py:1257 msgid "Default Supplier" msgstr "" -#: part/models.py:1170 +#: part/models.py:1258 msgid "Default supplier part" msgstr "" -#: part/models.py:1177 +#: part/models.py:1265 msgid "Default Expiry" msgstr "" -#: part/models.py:1178 +#: part/models.py:1266 msgid "Expiry time (in days) for stock items of this part" msgstr "" -#: part/models.py:1186 part/serializers.py:1003 +#: part/models.py:1274 part/serializers.py:888 msgid "Minimum Stock" msgstr "" -#: part/models.py:1187 +#: part/models.py:1275 msgid "Minimum allowed stock level" msgstr "" -#: part/models.py:1196 +#: part/models.py:1284 msgid "Units of measure for this part" msgstr "" -#: part/models.py:1203 +#: part/models.py:1291 msgid "Can this part be built from other parts?" msgstr "" -#: part/models.py:1209 +#: part/models.py:1297 msgid "Can this part be used to build other parts?" msgstr "" -#: part/models.py:1215 +#: part/models.py:1303 msgid "Does this part have tracking for unique items?" msgstr "" -#: part/models.py:1221 +#: part/models.py:1309 msgid "Can this part have test results recorded against it?" msgstr "" -#: part/models.py:1227 +#: part/models.py:1315 msgid "Can this part be purchased from external suppliers?" msgstr "" -#: part/models.py:1233 +#: part/models.py:1321 msgid "Can this part be sold to customers?" msgstr "" -#: part/models.py:1237 +#: part/models.py:1325 msgid "Is this part active?" msgstr "" -#: part/models.py:1243 +#: part/models.py:1331 msgid "Locked parts cannot be edited" msgstr "" -#: part/models.py:1249 +#: part/models.py:1337 msgid "Is this a virtual part, such as a software product or license?" msgstr "" -#: part/models.py:1254 +#: part/models.py:1342 msgid "BOM Validated" msgstr "" -#: part/models.py:1255 +#: part/models.py:1343 msgid "Is the BOM for this part valid?" msgstr "" -#: part/models.py:1261 +#: part/models.py:1349 msgid "BOM checksum" msgstr "" -#: part/models.py:1262 +#: part/models.py:1350 msgid "Stored BOM checksum" msgstr "" -#: part/models.py:1270 +#: part/models.py:1358 msgid "BOM checked by" msgstr "" -#: part/models.py:1275 +#: part/models.py:1363 msgid "BOM checked date" msgstr "" -#: part/models.py:1291 +#: part/models.py:1379 msgid "Creation User" msgstr "" -#: part/models.py:1301 +#: part/models.py:1389 msgid "Owner responsible for this part" msgstr "" -#: part/models.py:2258 +#: part/models.py:2346 msgid "Sell multiple" msgstr "" -#: part/models.py:3286 +#: part/models.py:3350 msgid "Currency used to cache pricing calculations" msgstr "" -#: part/models.py:3302 +#: part/models.py:3366 msgid "Minimum BOM Cost" msgstr "" -#: part/models.py:3303 +#: part/models.py:3367 msgid "Minimum cost of component parts" msgstr "" -#: part/models.py:3309 +#: part/models.py:3373 msgid "Maximum BOM Cost" msgstr "" -#: part/models.py:3310 +#: part/models.py:3374 msgid "Maximum cost of component parts" msgstr "" -#: part/models.py:3316 +#: part/models.py:3380 msgid "Minimum Purchase Cost" msgstr "" -#: part/models.py:3317 +#: part/models.py:3381 msgid "Minimum historical purchase cost" msgstr "" -#: part/models.py:3323 +#: part/models.py:3387 msgid "Maximum Purchase Cost" msgstr "" -#: part/models.py:3324 +#: part/models.py:3388 msgid "Maximum historical purchase cost" msgstr "" -#: part/models.py:3330 +#: part/models.py:3394 msgid "Minimum Internal Price" msgstr "" -#: part/models.py:3331 +#: part/models.py:3395 msgid "Minimum cost based on internal price breaks" msgstr "" -#: part/models.py:3337 +#: part/models.py:3401 msgid "Maximum Internal Price" msgstr "" -#: part/models.py:3338 +#: part/models.py:3402 msgid "Maximum cost based on internal price breaks" msgstr "" -#: part/models.py:3344 +#: part/models.py:3408 msgid "Minimum Supplier Price" msgstr "" -#: part/models.py:3345 +#: part/models.py:3409 msgid "Minimum price of part from external suppliers" msgstr "" -#: part/models.py:3351 +#: part/models.py:3415 msgid "Maximum Supplier Price" msgstr "" -#: part/models.py:3352 +#: part/models.py:3416 msgid "Maximum price of part from external suppliers" msgstr "" -#: part/models.py:3358 +#: part/models.py:3422 msgid "Minimum Variant Cost" msgstr "" -#: part/models.py:3359 +#: part/models.py:3423 msgid "Calculated minimum cost of variant parts" msgstr "" -#: part/models.py:3365 +#: part/models.py:3429 msgid "Maximum Variant Cost" msgstr "" -#: part/models.py:3366 +#: part/models.py:3430 msgid "Calculated maximum cost of variant parts" msgstr "" -#: part/models.py:3372 part/models.py:3386 +#: part/models.py:3436 part/models.py:3450 msgid "Minimum Cost" msgstr "" -#: part/models.py:3373 +#: part/models.py:3437 msgid "Override minimum cost" msgstr "" -#: part/models.py:3379 part/models.py:3393 +#: part/models.py:3443 part/models.py:3457 msgid "Maximum Cost" msgstr "" -#: part/models.py:3380 +#: part/models.py:3444 msgid "Override maximum cost" msgstr "" -#: part/models.py:3387 +#: part/models.py:3451 msgid "Calculated overall minimum cost" msgstr "" -#: part/models.py:3394 +#: part/models.py:3458 msgid "Calculated overall maximum cost" msgstr "" -#: part/models.py:3400 +#: part/models.py:3464 msgid "Minimum Sale Price" msgstr "" -#: part/models.py:3401 +#: part/models.py:3465 msgid "Minimum sale price based on price breaks" msgstr "" -#: part/models.py:3407 +#: part/models.py:3471 msgid "Maximum Sale Price" msgstr "" -#: part/models.py:3408 +#: part/models.py:3472 msgid "Maximum sale price based on price breaks" msgstr "" -#: part/models.py:3414 +#: part/models.py:3478 msgid "Minimum Sale Cost" msgstr "" -#: part/models.py:3415 +#: part/models.py:3479 msgid "Minimum historical sale price" msgstr "" -#: part/models.py:3421 +#: part/models.py:3485 msgid "Maximum Sale Cost" msgstr "" -#: part/models.py:3422 +#: part/models.py:3486 msgid "Maximum historical sale price" msgstr "" -#: part/models.py:3440 +#: part/models.py:3504 msgid "Part for stocktake" msgstr "" -#: part/models.py:3445 +#: part/models.py:3509 msgid "Item Count" msgstr "" -#: part/models.py:3446 +#: part/models.py:3510 msgid "Number of individual stock entries at time of stocktake" msgstr "" -#: part/models.py:3454 +#: part/models.py:3518 msgid "Total available stock at time of stocktake" msgstr "" -#: part/models.py:3458 report/templates/report/inventree_test_report.html:106 +#: part/models.py:3522 report/templates/report/inventree_test_report.html:106 msgid "Date" msgstr "" -#: part/models.py:3459 +#: part/models.py:3523 msgid "Date stocktake was performed" msgstr "" -#: part/models.py:3466 +#: part/models.py:3530 msgid "Minimum Stock Cost" msgstr "" -#: part/models.py:3467 +#: part/models.py:3531 msgid "Estimated minimum cost of stock on hand" msgstr "" -#: part/models.py:3473 +#: part/models.py:3537 msgid "Maximum Stock Cost" msgstr "" -#: part/models.py:3474 +#: part/models.py:3538 msgid "Estimated maximum cost of stock on hand" msgstr "" -#: part/models.py:3484 +#: part/models.py:3548 msgid "Part Sale Price Break" msgstr "" -#: part/models.py:3596 +#: part/models.py:3660 msgid "Part Test Template" msgstr "" -#: part/models.py:3622 +#: part/models.py:3686 msgid "Invalid template name - must include at least one alphanumeric character" msgstr "" -#: part/models.py:3643 part/models.py:3816 -msgid "Choices must be unique" -msgstr "" - -#: part/models.py:3654 +#: part/models.py:3718 msgid "Test templates can only be created for testable parts" msgstr "" -#: part/models.py:3668 +#: part/models.py:3732 msgid "Test template with the same key already exists for part" msgstr "" -#: part/models.py:3685 +#: part/models.py:3749 msgid "Test Name" msgstr "" -#: part/models.py:3686 +#: part/models.py:3750 msgid "Enter a name for the test" msgstr "" -#: part/models.py:3692 +#: part/models.py:3756 msgid "Test Key" msgstr "" -#: part/models.py:3693 +#: part/models.py:3757 msgid "Simplified key for the test" msgstr "" -#: part/models.py:3700 +#: part/models.py:3764 msgid "Test Description" msgstr "" -#: part/models.py:3701 +#: part/models.py:3765 msgid "Enter description for this test" msgstr "" -#: part/models.py:3705 report/models.py:287 -msgid "Enabled" -msgstr "" - -#: part/models.py:3705 +#: part/models.py:3769 msgid "Is this test enabled?" msgstr "" -#: part/models.py:3710 +#: part/models.py:3774 msgid "Required" msgstr "" -#: part/models.py:3711 +#: part/models.py:3775 msgid "Is this test required to pass?" msgstr "" -#: part/models.py:3716 +#: part/models.py:3780 msgid "Requires Value" msgstr "" -#: part/models.py:3717 +#: part/models.py:3781 msgid "Does this test require a value when adding a test result?" msgstr "" -#: part/models.py:3722 +#: part/models.py:3786 msgid "Requires Attachment" msgstr "" -#: part/models.py:3724 +#: part/models.py:3788 msgid "Does this test require a file attachment when adding a test result?" msgstr "" -#: part/models.py:3730 part/models.py:3878 -msgid "Choices" -msgstr "" - -#: part/models.py:3731 +#: part/models.py:3795 msgid "Valid choices for this test (comma-separated)" msgstr "" -#: part/models.py:3764 -msgid "Part Parameter Template" -msgstr "" - -#: part/models.py:3791 -msgid "Checkbox parameters cannot have units" -msgstr "" - -#: part/models.py:3796 -msgid "Checkbox parameters cannot have choices" -msgstr "" - -#: part/models.py:3833 -msgid "Parameter template name must be unique" -msgstr "" - -#: part/models.py:3851 -msgid "Parameter Name" -msgstr "" - -#: part/models.py:3858 -msgid "Physical units for this parameter" -msgstr "" - -#: part/models.py:3866 -msgid "Parameter description" -msgstr "" - -#: part/models.py:3872 -msgid "Checkbox" -msgstr "" - -#: part/models.py:3873 -msgid "Is this parameter a checkbox?" -msgstr "" - -#: part/models.py:3879 -msgid "Valid choices for this parameter (comma-separated)" -msgstr "" - -#: part/models.py:3890 -msgid "Selection list for this parameter" -msgstr "" - -#: part/models.py:3932 -msgid "Part Parameter" -msgstr "" - -#: part/models.py:3958 -msgid "Parameter cannot be modified - part is locked" -msgstr "" - -#: part/models.py:3996 -msgid "Invalid choice for parameter value" -msgstr "" - -#: part/models.py:4047 -msgid "Parent Part" -msgstr "" - -#: part/models.py:4055 part/models.py:4170 part/models.py:4171 -msgid "Parameter Template" -msgstr "" - -#: part/models.py:4061 -msgid "Parameter Value" -msgstr "" - -#: part/models.py:4071 stock/serializers.py:718 -msgid "Optional note field" -msgstr "" - -#: part/models.py:4118 -msgid "Part Category Parameter Template" -msgstr "" - -#: part/models.py:4177 -msgid "Default Value" -msgstr "" - -#: part/models.py:4178 -msgid "Default Parameter Value" -msgstr "" - -#: part/models.py:4352 +#: part/models.py:3977 msgid "BOM item cannot be modified - assembly is locked" msgstr "" -#: part/models.py:4359 +#: part/models.py:3984 msgid "BOM item cannot be modified - variant assembly is locked" msgstr "" -#: part/models.py:4369 +#: part/models.py:3994 msgid "Select parent part" msgstr "" -#: part/models.py:4379 +#: part/models.py:4004 msgid "Sub part" msgstr "" -#: part/models.py:4380 +#: part/models.py:4005 msgid "Select part to be used in BOM" msgstr "" -#: part/models.py:4391 +#: part/models.py:4016 msgid "BOM quantity for this BOM item" msgstr "" -#: part/models.py:4397 +#: part/models.py:4022 msgid "This BOM item is optional" msgstr "" -#: part/models.py:4403 +#: part/models.py:4028 msgid "This BOM item is consumable (it is not tracked in build orders)" msgstr "" -#: part/models.py:4411 +#: part/models.py:4036 msgid "Setup Quantity" msgstr "" -#: part/models.py:4412 +#: part/models.py:4037 msgid "Extra required quantity for a build, to account for setup losses" msgstr "" -#: part/models.py:4420 +#: part/models.py:4045 msgid "Attrition" msgstr "" -#: part/models.py:4422 +#: part/models.py:4047 msgid "Estimated attrition for a build, expressed as a percentage (0-100)" msgstr "" -#: part/models.py:4433 +#: part/models.py:4058 msgid "Rounding Multiple" msgstr "" -#: part/models.py:4435 +#: part/models.py:4060 msgid "Round up required production quantity to nearest multiple of this value" msgstr "" -#: part/models.py:4443 +#: part/models.py:4068 msgid "BOM item reference" msgstr "" -#: part/models.py:4451 +#: part/models.py:4076 msgid "BOM item notes" msgstr "" -#: part/models.py:4457 +#: part/models.py:4082 msgid "Checksum" msgstr "" -#: part/models.py:4458 +#: part/models.py:4083 msgid "BOM line checksum" msgstr "" -#: part/models.py:4463 +#: part/models.py:4088 msgid "Validated" msgstr "" -#: part/models.py:4464 +#: part/models.py:4089 msgid "This BOM item has been validated" msgstr "" -#: part/models.py:4469 +#: part/models.py:4094 msgid "Gets inherited" msgstr "" -#: part/models.py:4470 +#: part/models.py:4095 msgid "This BOM item is inherited by BOMs for variant parts" msgstr "" -#: part/models.py:4476 +#: part/models.py:4101 msgid "Stock items for variant parts can be used for this BOM item" msgstr "" -#: part/models.py:4583 stock/models.py:925 +#: part/models.py:4208 stock/models.py:925 msgid "Quantity must be integer value for trackable parts" msgstr "" -#: part/models.py:4593 part/models.py:4595 +#: part/models.py:4218 part/models.py:4220 msgid "Sub part must be specified" msgstr "" -#: part/models.py:4746 +#: part/models.py:4371 msgid "BOM Item Substitute" msgstr "" -#: part/models.py:4767 +#: part/models.py:4392 msgid "Substitute part cannot be the same as the master part" msgstr "" -#: part/models.py:4780 +#: part/models.py:4405 msgid "Parent BOM item" msgstr "" -#: part/models.py:4788 +#: part/models.py:4413 msgid "Substitute part" msgstr "" -#: part/models.py:4804 +#: part/models.py:4429 msgid "Part 1" msgstr "" -#: part/models.py:4812 +#: part/models.py:4437 msgid "Part 2" msgstr "" -#: part/models.py:4813 +#: part/models.py:4438 msgid "Select Related Part" msgstr "" -#: part/models.py:4820 +#: part/models.py:4445 msgid "Note for this relationship" msgstr "" -#: part/models.py:4839 +#: part/models.py:4464 msgid "Part relationship cannot be created between a part and itself" msgstr "" -#: part/models.py:4844 +#: part/models.py:4469 msgid "Duplicate relationship already exists" msgstr "" -#: part/serializers.py:114 +#: part/serializers.py:113 msgid "Parent Category" msgstr "" -#: part/serializers.py:115 +#: part/serializers.py:114 msgid "Parent part category" msgstr "" -#: part/serializers.py:123 part/serializers.py:164 +#: part/serializers.py:122 part/serializers.py:163 msgid "Subcategories" msgstr "" -#: part/serializers.py:203 +#: part/serializers.py:202 msgid "Results" msgstr "" -#: part/serializers.py:204 +#: part/serializers.py:203 msgid "Number of results recorded against this template" msgstr "" -#: part/serializers.py:235 part/serializers.py:253 stock/serializers.py:643 +#: part/serializers.py:234 part/serializers.py:252 stock/serializers.py:643 msgid "Purchase currency of this stock item" msgstr "" -#: part/serializers.py:280 +#: part/serializers.py:279 msgid "File is not an image" msgstr "" -#: part/serializers.py:311 -msgid "Number of parts using this template" -msgstr "" - -#: part/serializers.py:471 +#: part/serializers.py:382 msgid "Original Part" msgstr "" -#: part/serializers.py:472 +#: part/serializers.py:383 msgid "Select original part to duplicate" msgstr "" -#: part/serializers.py:477 +#: part/serializers.py:388 msgid "Copy Image" msgstr "" -#: part/serializers.py:478 +#: part/serializers.py:389 msgid "Copy image from original part" msgstr "" -#: part/serializers.py:484 +#: part/serializers.py:395 msgid "Copy BOM" msgstr "" -#: part/serializers.py:485 +#: part/serializers.py:396 msgid "Copy bill of materials from original part" msgstr "" -#: part/serializers.py:491 +#: part/serializers.py:402 msgid "Copy Parameters" msgstr "" -#: part/serializers.py:492 +#: part/serializers.py:403 msgid "Copy parameter data from original part" msgstr "" -#: part/serializers.py:498 +#: part/serializers.py:409 msgid "Copy Notes" msgstr "" -#: part/serializers.py:499 +#: part/serializers.py:410 msgid "Copy notes from original part" msgstr "" -#: part/serializers.py:505 +#: part/serializers.py:416 msgid "Copy Tests" msgstr "" -#: part/serializers.py:506 +#: part/serializers.py:417 msgid "Copy test templates from original part" msgstr "" -#: part/serializers.py:524 +#: part/serializers.py:435 msgid "Initial Stock Quantity" msgstr "" -#: part/serializers.py:526 +#: part/serializers.py:437 msgid "Specify initial stock quantity for this Part. If quantity is zero, no stock is added." msgstr "" -#: part/serializers.py:533 +#: part/serializers.py:444 msgid "Initial Stock Location" msgstr "" -#: part/serializers.py:534 +#: part/serializers.py:445 msgid "Specify initial stock location for this Part" msgstr "" -#: part/serializers.py:551 +#: part/serializers.py:462 msgid "Select supplier (or leave blank to skip)" msgstr "" -#: part/serializers.py:567 +#: part/serializers.py:478 msgid "Select manufacturer (or leave blank to skip)" msgstr "" -#: part/serializers.py:577 +#: part/serializers.py:488 msgid "Manufacturer part number" msgstr "" -#: part/serializers.py:584 +#: part/serializers.py:495 msgid "Selected company is not a valid supplier" msgstr "" -#: part/serializers.py:593 +#: part/serializers.py:504 msgid "Selected company is not a valid manufacturer" msgstr "" -#: part/serializers.py:604 +#: part/serializers.py:515 msgid "Manufacturer part matching this MPN already exists" msgstr "" -#: part/serializers.py:611 +#: part/serializers.py:522 msgid "Supplier part matching this SKU already exists" msgstr "" -#: part/serializers.py:914 +#: part/serializers.py:799 msgid "Category Name" msgstr "" -#: part/serializers.py:943 +#: part/serializers.py:828 msgid "Building" msgstr "" -#: part/serializers.py:944 +#: part/serializers.py:829 msgid "Quantity of this part currently being in production" msgstr "" -#: part/serializers.py:951 +#: part/serializers.py:836 msgid "Outstanding quantity of this part scheduled to be built" msgstr "" -#: part/serializers.py:971 stock/serializers.py:1019 stock/serializers.py:1189 +#: part/serializers.py:856 stock/serializers.py:1019 stock/serializers.py:1189 #: users/ruleset.py:30 msgid "Stock Items" msgstr "" -#: part/serializers.py:975 +#: part/serializers.py:860 msgid "Revisions" msgstr "" -#: part/serializers.py:979 +#: part/serializers.py:864 msgid "Suppliers" msgstr "" -#: part/serializers.py:983 part/serializers.py:1297 +#: part/serializers.py:868 part/serializers.py:1162 #: templates/email/low_stock_notification.html:16 #: templates/email/part_event_notification.html:17 msgid "Total Stock" msgstr "" -#: part/serializers.py:991 +#: part/serializers.py:876 msgid "Unallocated Stock" msgstr "" -#: part/serializers.py:999 +#: part/serializers.py:884 msgid "Variant Stock" msgstr "" -#: part/serializers.py:1054 +#: part/serializers.py:943 msgid "Duplicate Part" msgstr "" -#: part/serializers.py:1055 +#: part/serializers.py:944 msgid "Copy initial data from another Part" msgstr "" -#: part/serializers.py:1061 +#: part/serializers.py:950 msgid "Initial Stock" msgstr "" -#: part/serializers.py:1062 +#: part/serializers.py:951 msgid "Create Part with initial stock quantity" msgstr "" -#: part/serializers.py:1068 +#: part/serializers.py:957 msgid "Supplier Information" msgstr "" -#: part/serializers.py:1069 +#: part/serializers.py:958 msgid "Add initial supplier information for this part" msgstr "" -#: part/serializers.py:1077 +#: part/serializers.py:966 msgid "Copy Category Parameters" msgstr "" -#: part/serializers.py:1078 +#: part/serializers.py:967 msgid "Copy parameter templates from selected part category" msgstr "" -#: part/serializers.py:1083 +#: part/serializers.py:972 msgid "Existing Image" msgstr "" -#: part/serializers.py:1084 +#: part/serializers.py:973 msgid "Filename of an existing part image" msgstr "" -#: part/serializers.py:1101 +#: part/serializers.py:990 msgid "Image file does not exist" msgstr "" -#: part/serializers.py:1269 +#: part/serializers.py:1134 msgid "Validate entire Bill of Materials" msgstr "" -#: part/serializers.py:1303 part/serializers.py:1769 +#: part/serializers.py:1168 part/serializers.py:1634 msgid "Can Build" msgstr "" -#: part/serializers.py:1320 +#: part/serializers.py:1185 msgid "Required for Build Orders" msgstr "" -#: part/serializers.py:1325 +#: part/serializers.py:1190 msgid "Allocated to Build Orders" msgstr "" -#: part/serializers.py:1332 +#: part/serializers.py:1197 msgid "Required for Sales Orders" msgstr "" -#: part/serializers.py:1336 +#: part/serializers.py:1201 msgid "Allocated to Sales Orders" msgstr "" -#: part/serializers.py:1475 +#: part/serializers.py:1340 msgid "Minimum Price" msgstr "" -#: part/serializers.py:1476 +#: part/serializers.py:1341 msgid "Override calculated value for minimum price" msgstr "" -#: part/serializers.py:1483 +#: part/serializers.py:1348 msgid "Minimum price currency" msgstr "" -#: part/serializers.py:1490 +#: part/serializers.py:1355 msgid "Maximum Price" msgstr "" -#: part/serializers.py:1491 +#: part/serializers.py:1356 msgid "Override calculated value for maximum price" msgstr "" -#: part/serializers.py:1498 +#: part/serializers.py:1363 msgid "Maximum price currency" msgstr "" -#: part/serializers.py:1527 +#: part/serializers.py:1392 msgid "Update" msgstr "" -#: part/serializers.py:1528 +#: part/serializers.py:1393 msgid "Update pricing for this part" msgstr "" -#: part/serializers.py:1551 +#: part/serializers.py:1416 #, python-brace-format msgid "Could not convert from provided currencies to {default_currency}" msgstr "" -#: part/serializers.py:1558 +#: part/serializers.py:1423 msgid "Minimum price must not be greater than maximum price" msgstr "" -#: part/serializers.py:1561 +#: part/serializers.py:1426 msgid "Maximum price must not be less than minimum price" msgstr "" -#: part/serializers.py:1715 +#: part/serializers.py:1580 msgid "Select the parent assembly" msgstr "" -#: part/serializers.py:1735 +#: part/serializers.py:1600 msgid "Select the component part" msgstr "" -#: part/serializers.py:1929 +#: part/serializers.py:1802 msgid "Select part to copy BOM from" msgstr "" -#: part/serializers.py:1937 +#: part/serializers.py:1810 msgid "Remove Existing Data" msgstr "" -#: part/serializers.py:1938 +#: part/serializers.py:1811 msgid "Remove existing BOM items before copying" msgstr "" -#: part/serializers.py:1943 +#: part/serializers.py:1816 msgid "Include Inherited" msgstr "" -#: part/serializers.py:1944 +#: part/serializers.py:1817 msgid "Include BOM items which are inherited from templated parts" msgstr "" -#: part/serializers.py:1949 +#: part/serializers.py:1822 msgid "Skip Invalid Rows" msgstr "" -#: part/serializers.py:1950 +#: part/serializers.py:1823 msgid "Enable this option to skip invalid rows" msgstr "" -#: part/serializers.py:1955 +#: part/serializers.py:1828 msgid "Copy Substitute Parts" msgstr "" -#: part/serializers.py:1956 +#: part/serializers.py:1829 msgid "Copy substitute parts when duplicate BOM items" msgstr "" @@ -6927,7 +6974,7 @@ msgstr "" #: plugin/builtin/events/auto_issue_orders.py:19 #: plugin/builtin/exporter/bom_exporter.py:73 #: plugin/builtin/exporter/inventree_exporter.py:17 -#: plugin/builtin/exporter/part_parameter_exporter.py:36 +#: plugin/builtin/exporter/parameter_exporter.py:32 #: plugin/builtin/exporter/stocktake_exporter.py:47 #: plugin/builtin/integration/core_notifications.py:25 #: plugin/builtin/integration/core_notifications.py:69 @@ -7041,23 +7088,19 @@ msgid "Include total quantity of each part in the BOM" msgstr "" #: plugin/builtin/exporter/bom_exporter.py:35 -#: plugin/builtin/exporter/part_parameter_exporter.py:17 msgid "Stock Data" msgstr "" #: plugin/builtin/exporter/bom_exporter.py:35 -#: plugin/builtin/exporter/part_parameter_exporter.py:17 msgid "Include part stock data" msgstr "" #: plugin/builtin/exporter/bom_exporter.py:39 -#: plugin/builtin/exporter/part_parameter_exporter.py:21 #: plugin/builtin/exporter/stocktake_exporter.py:20 msgid "Pricing Data" msgstr "" #: plugin/builtin/exporter/bom_exporter.py:39 -#: plugin/builtin/exporter/part_parameter_exporter.py:21 #: plugin/builtin/exporter/stocktake_exporter.py:20 msgid "Include part pricing data" msgstr "" @@ -7144,12 +7187,20 @@ msgstr "" msgid "Provides support for exporting data from InvenTree" msgstr "" -#: plugin/builtin/exporter/part_parameter_exporter.py:33 -msgid "Part Parameter Exporter" +#: plugin/builtin/exporter/parameter_exporter.py:16 +msgid "Exclude Inactive" msgstr "" -#: plugin/builtin/exporter/part_parameter_exporter.py:34 -msgid "Exporter for part parameter data" +#: plugin/builtin/exporter/parameter_exporter.py:17 +msgid "Exclude parameters which are inactive" +msgstr "" + +#: plugin/builtin/exporter/parameter_exporter.py:29 +msgid "Parameter Exporter" +msgstr "" + +#: plugin/builtin/exporter/parameter_exporter.py:30 +msgid "Exporter for model parameter data" msgstr "" #: plugin/builtin/exporter/stocktake_exporter.py:25 @@ -8079,19 +8130,19 @@ msgstr "" msgid "No result" msgstr "" -#: report/templatetags/report.py:167 +#: report/templatetags/report.py:169 msgid "Asset file does not exist" msgstr "" -#: report/templatetags/report.py:224 report/templatetags/report.py:300 +#: report/templatetags/report.py:226 report/templatetags/report.py:302 msgid "Image file not found" msgstr "" -#: report/templatetags/report.py:325 +#: report/templatetags/report.py:327 msgid "part_image tag requires a Part instance" msgstr "" -#: report/templatetags/report.py:362 +#: report/templatetags/report.py:383 msgid "company_image tag requires a Company instance" msgstr "" @@ -8455,115 +8506,119 @@ msgstr "" msgid "Quantity does not match serial numbers" msgstr "" -#: stock/models.py:2012 stock/models.py:2917 +#: stock/models.py:1912 +msgid "Cannot assign stock to structural location" +msgstr "" + +#: stock/models.py:2029 stock/models.py:2934 msgid "Test template does not exist" msgstr "" -#: stock/models.py:2030 +#: stock/models.py:2047 msgid "Stock item has been assigned to a sales order" msgstr "" -#: stock/models.py:2034 +#: stock/models.py:2051 msgid "Stock item is installed in another item" msgstr "" -#: stock/models.py:2037 +#: stock/models.py:2054 msgid "Stock item contains other items" msgstr "" -#: stock/models.py:2040 +#: stock/models.py:2057 msgid "Stock item has been assigned to a customer" msgstr "" -#: stock/models.py:2043 stock/models.py:2226 +#: stock/models.py:2060 stock/models.py:2243 msgid "Stock item is currently in production" msgstr "" -#: stock/models.py:2046 +#: stock/models.py:2063 msgid "Serialized stock cannot be merged" msgstr "" -#: stock/models.py:2053 stock/serializers.py:1462 +#: stock/models.py:2070 stock/serializers.py:1462 msgid "Duplicate stock items" msgstr "" -#: stock/models.py:2057 +#: stock/models.py:2074 msgid "Stock items must refer to the same part" msgstr "" -#: stock/models.py:2065 +#: stock/models.py:2082 msgid "Stock items must refer to the same supplier part" msgstr "" -#: stock/models.py:2070 +#: stock/models.py:2087 msgid "Stock status codes must match" msgstr "" -#: stock/models.py:2349 +#: stock/models.py:2366 msgid "StockItem cannot be moved as it is not in stock" msgstr "" -#: stock/models.py:2818 +#: stock/models.py:2835 msgid "Stock Item Tracking" msgstr "" -#: stock/models.py:2849 +#: stock/models.py:2866 msgid "Entry notes" msgstr "" -#: stock/models.py:2889 +#: stock/models.py:2906 msgid "Stock Item Test Result" msgstr "" -#: stock/models.py:2920 +#: stock/models.py:2937 msgid "Value must be provided for this test" msgstr "" -#: stock/models.py:2924 +#: stock/models.py:2941 msgid "Attachment must be uploaded for this test" msgstr "" -#: stock/models.py:2929 +#: stock/models.py:2946 msgid "Invalid value for this test" msgstr "" -#: stock/models.py:2953 +#: stock/models.py:2970 msgid "Test result" msgstr "" -#: stock/models.py:2960 +#: stock/models.py:2977 msgid "Test output value" msgstr "" -#: stock/models.py:2968 stock/serializers.py:248 +#: stock/models.py:2985 stock/serializers.py:248 msgid "Test result attachment" msgstr "" -#: stock/models.py:2972 +#: stock/models.py:2989 msgid "Test notes" msgstr "" -#: stock/models.py:2980 +#: stock/models.py:2997 msgid "Test station" msgstr "" -#: stock/models.py:2981 +#: stock/models.py:2998 msgid "The identifier of the test station where the test was performed" msgstr "" -#: stock/models.py:2987 +#: stock/models.py:3004 msgid "Started" msgstr "" -#: stock/models.py:2988 +#: stock/models.py:3005 msgid "The timestamp of the test start" msgstr "" -#: stock/models.py:2994 +#: stock/models.py:3011 msgid "Finished" msgstr "" -#: stock/models.py:2995 +#: stock/models.py:3012 msgid "The timestamp of the test finish" msgstr "" @@ -8677,8 +8732,8 @@ msgstr "" msgid "Quantity must not exceed available stock quantity ({q})" msgstr "" -#: stock/serializers.py:711 stock/serializers.py:1419 stock/serializers.py:1732 -#: stock/serializers.py:1781 +#: stock/serializers.py:711 stock/serializers.py:1419 stock/serializers.py:1740 +#: stock/serializers.py:1789 msgid "Destination stock location" msgstr "" @@ -8834,19 +8889,19 @@ msgstr "" msgid "Stock transaction notes" msgstr "" -#: stock/serializers.py:1787 +#: stock/serializers.py:1795 msgid "Merge into existing stock" msgstr "" -#: stock/serializers.py:1788 +#: stock/serializers.py:1796 msgid "Merge returned items into existing stock items if possible" msgstr "" -#: stock/serializers.py:1831 +#: stock/serializers.py:1839 msgid "Next Serial Number" msgstr "" -#: stock/serializers.py:1837 +#: stock/serializers.py:1845 msgid "Previous Serial Number" msgstr "" @@ -8902,83 +8957,87 @@ msgstr "" msgid "Stock manually removed" msgstr "" -#: stock/status_codes.py:57 +#: stock/status_codes.py:56 +msgid "Serialized stock items" +msgstr "" + +#: stock/status_codes.py:58 msgid "Returned to stock" msgstr "" -#: stock/status_codes.py:60 +#: stock/status_codes.py:61 msgid "Location changed" msgstr "" -#: stock/status_codes.py:61 +#: stock/status_codes.py:62 msgid "Stock updated" msgstr "" -#: stock/status_codes.py:64 +#: stock/status_codes.py:65 msgid "Installed into assembly" msgstr "" -#: stock/status_codes.py:65 +#: stock/status_codes.py:66 msgid "Removed from assembly" msgstr "" -#: stock/status_codes.py:67 +#: stock/status_codes.py:68 msgid "Installed component item" msgstr "" -#: stock/status_codes.py:68 +#: stock/status_codes.py:69 msgid "Removed component item" msgstr "" -#: stock/status_codes.py:71 +#: stock/status_codes.py:72 msgid "Split from parent item" msgstr "" -#: stock/status_codes.py:72 +#: stock/status_codes.py:73 msgid "Split child item" msgstr "" -#: stock/status_codes.py:75 +#: stock/status_codes.py:76 msgid "Merged stock items" msgstr "" -#: stock/status_codes.py:78 +#: stock/status_codes.py:79 msgid "Converted to variant" msgstr "" -#: stock/status_codes.py:81 +#: stock/status_codes.py:82 msgid "Build order output created" msgstr "" -#: stock/status_codes.py:82 +#: stock/status_codes.py:83 msgid "Build order output completed" msgstr "" -#: stock/status_codes.py:83 +#: stock/status_codes.py:84 msgid "Build order output rejected" msgstr "" -#: stock/status_codes.py:84 +#: stock/status_codes.py:85 msgid "Consumed by build order" msgstr "" -#: stock/status_codes.py:87 +#: stock/status_codes.py:88 msgid "Shipped against Sales Order" msgstr "" -#: stock/status_codes.py:90 +#: stock/status_codes.py:91 msgid "Received against Purchase Order" msgstr "" -#: stock/status_codes.py:93 +#: stock/status_codes.py:94 msgid "Returned against Return Order" msgstr "" -#: stock/status_codes.py:96 +#: stock/status_codes.py:97 msgid "Sent to customer" msgstr "" -#: stock/status_codes.py:97 +#: stock/status_codes.py:98 msgid "Returned from customer" msgstr "" diff --git a/src/backend/InvenTree/locale/hu/LC_MESSAGES/django.po b/src/backend/InvenTree/locale/hu/LC_MESSAGES/django.po index fc4ccc8334..a43a916c80 100644 --- a/src/backend/InvenTree/locale/hu/LC_MESSAGES/django.po +++ b/src/backend/InvenTree/locale/hu/LC_MESSAGES/django.po @@ -2,8 +2,8 @@ msgid "" msgstr "" "Project-Id-Version: inventree\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-11-19 04:55+0000\n" -"PO-Revision-Date: 2025-11-19 04:59\n" +"POT-Creation-Date: 2025-12-07 07:33+0000\n" +"PO-Revision-Date: 2025-12-07 07:36\n" "Last-Translator: \n" "Language-Team: Hungarian\n" "Language: hu_HU\n" @@ -57,7 +57,7 @@ msgstr "Nincs adat megadva" msgid "This field must be unique." msgstr "" -#: InvenTree/api.py:775 +#: InvenTree/api.py:803 msgid "User does not have permission to view this model" msgstr "Nincs jogosultságod az adatok megtekintéséhez" @@ -81,22 +81,22 @@ msgstr "A megadott elsődleges email cím nem valós." msgid "The provided email domain is not approved." msgstr "A megadott email domain nincs jóváhagyva." -#: InvenTree/conversion.py:166 +#: InvenTree/conversion.py:240 #, python-brace-format msgid "Invalid unit provided ({unit})" msgstr "Érvénytelen mennyiségi egység ({unit})" -#: InvenTree/conversion.py:183 +#: InvenTree/conversion.py:257 msgid "No value provided" msgstr "Nincs érték megadva" -#: InvenTree/conversion.py:210 +#: InvenTree/conversion.py:284 #, python-brace-format msgid "Could not convert {original} to {unit}" msgstr "{original} átváltása {unit}-ra sikertelen" -#: InvenTree/conversion.py:212 InvenTree/conversion.py:226 -#: InvenTree/helpers.py:597 order/models.py:720 order/models.py:1015 +#: InvenTree/conversion.py:286 InvenTree/conversion.py:300 +#: InvenTree/helpers.py:597 order/models.py:721 order/models.py:1016 msgid "Invalid quantity provided" msgstr "Nem megfelelő mennyiség" @@ -112,11 +112,11 @@ msgstr "Dátum megadása" msgid "Invalid decimal value" msgstr "Érvénytelen decimális érték" -#: InvenTree/fields.py:218 InvenTree/models.py:1067 build/serializers.py:509 -#: build/serializers.py:580 build/serializers.py:1788 company/models.py:857 -#: order/models.py:1780 +#: InvenTree/fields.py:218 InvenTree/models.py:1228 build/serializers.py:517 +#: build/serializers.py:588 build/serializers.py:1796 company/models.py:811 +#: order/models.py:1781 #: report/templates/report/inventree_build_order_report.html:172 -#: stock/models.py:2848 stock/models.py:2972 stock/serializers.py:717 +#: stock/models.py:2865 stock/models.py:2989 stock/serializers.py:717 #: stock/serializers.py:893 stock/serializers.py:1035 stock/serializers.py:1336 #: stock/serializers.py:1425 stock/serializers.py:1624 msgid "Notes" @@ -171,35 +171,35 @@ msgstr "HTML tag-ek eltávolítása ebből az értékből" msgid "Data contains prohibited markdown content" msgstr "Az adatban tiltott markdown tartalom található" -#: InvenTree/helpers_model.py:133 +#: InvenTree/helpers_model.py:134 msgid "Connection error" msgstr "Csatlakozási hiba" -#: InvenTree/helpers_model.py:138 InvenTree/helpers_model.py:145 +#: InvenTree/helpers_model.py:139 InvenTree/helpers_model.py:146 msgid "Server responded with invalid status code" msgstr "A kiszolgáló érvénytelen státuszkóddal válaszolt" -#: InvenTree/helpers_model.py:141 +#: InvenTree/helpers_model.py:142 msgid "Exception occurred" msgstr "Kivétel történt" -#: InvenTree/helpers_model.py:151 +#: InvenTree/helpers_model.py:152 msgid "Server responded with invalid Content-Length value" msgstr "A kiszolgáló érvénytelen Content-Length értéket adott" -#: InvenTree/helpers_model.py:154 +#: InvenTree/helpers_model.py:155 msgid "Image size is too large" msgstr "A kép mérete túl nagy" -#: InvenTree/helpers_model.py:166 +#: InvenTree/helpers_model.py:167 msgid "Image download exceeded maximum size" msgstr "A kép letöltés meghaladja a maximális méretet" -#: InvenTree/helpers_model.py:171 +#: InvenTree/helpers_model.py:172 msgid "Remote server returned empty response" msgstr "A kiszolgáló üres választ adott" -#: InvenTree/helpers_model.py:179 +#: InvenTree/helpers_model.py:180 msgid "Supplied URL is not a valid image file" msgstr "A megadott URL nem egy érvényes kép fájl" @@ -207,7 +207,7 @@ msgstr "A megadott URL nem egy érvényes kép fájl" msgid "Log in to the app" msgstr "Bejelentkezés az appba" -#: InvenTree/magic_login.py:41 company/models.py:172 users/serializers.py:198 +#: InvenTree/magic_login.py:41 company/models.py:173 users/serializers.py:198 msgid "Email" msgstr "Email" @@ -215,160 +215,176 @@ msgstr "Email" msgid "You must enable two-factor authentication before doing anything else." msgstr "Mielőtt továbbmenne kötelező a kétfaktoros authentikációt engedélyeznie." -#: InvenTree/models.py:111 +#: InvenTree/models.py:114 msgid "Error running plugin validation" msgstr "Hiba a plugin validálása közben" -#: InvenTree/models.py:192 +#: InvenTree/models.py:195 msgid "Metadata must be a python dict object" msgstr "A meta adatnak egy python dict objektumnak kell lennie" -#: InvenTree/models.py:198 +#: InvenTree/models.py:201 msgid "Plugin Metadata" msgstr "Plugin meta adatok" -#: InvenTree/models.py:199 +#: InvenTree/models.py:202 msgid "JSON metadata field, for use by external plugins" msgstr "JSON meta adat mező, külső pluginok számára" -#: InvenTree/models.py:382 +#: InvenTree/models.py:385 msgid "Improperly formatted pattern" msgstr "Helytelenül formázott minta" -#: InvenTree/models.py:389 +#: InvenTree/models.py:392 msgid "Unknown format key specified" msgstr "Ismeretlen formátum kulcs lett megadva" -#: InvenTree/models.py:395 +#: InvenTree/models.py:398 msgid "Missing required format key" msgstr "Hiányzó formátum kulcs" -#: InvenTree/models.py:406 +#: InvenTree/models.py:409 msgid "Reference field cannot be empty" msgstr "Az azonosító mező nem lehet üres" -#: InvenTree/models.py:414 +#: InvenTree/models.py:417 msgid "Reference must match required pattern" msgstr "Az azonosítónak egyeznie kell a mintával" -#: InvenTree/models.py:445 +#: InvenTree/models.py:448 msgid "Reference number is too large" msgstr "Azonosító szám túl nagy" -#: InvenTree/models.py:743 +#: InvenTree/models.py:896 msgid "Invalid choice" msgstr "Érvénytelen választás" -#: InvenTree/models.py:856 common/models.py:1410 common/models.py:1837 -#: common/models.py:2096 common/models.py:2221 common/serializers.py:535 -#: company/models.py:615 generic/states/serializers.py:20 machine/models.py:25 -#: part/models.py:1039 part/models.py:3850 plugin/models.py:54 +#: InvenTree/models.py:1017 common/models.py:1414 common/models.py:1841 +#: common/models.py:2102 common/models.py:2227 common/models.py:2494 +#: common/serializers.py:539 generic/states/serializers.py:20 +#: machine/models.py:25 part/models.py:1127 plugin/models.py:54 #: report/models.py:216 stock/models.py:84 msgid "Name" msgstr "Név" -#: InvenTree/models.py:862 build/models.py:252 common/models.py:171 -#: common/models.py:2228 common/models.py:2341 company/models.py:543 -#: company/models.py:848 order/models.py:442 order/models.py:1825 -#: part/models.py:1062 part/models.py:3865 report/models.py:222 +#: InvenTree/models.py:1023 build/models.py:253 common/models.py:175 +#: common/models.py:2234 common/models.py:2347 common/models.py:2509 +#: company/models.py:545 company/models.py:802 order/models.py:443 +#: order/models.py:1826 part/models.py:1150 report/models.py:222 #: report/models.py:815 report/models.py:841 #: report/templates/report/inventree_build_order_report.html:117 #: stock/models.py:90 msgid "Description" msgstr "Leírás" -#: InvenTree/models.py:863 stock/models.py:91 +#: InvenTree/models.py:1024 stock/models.py:91 msgid "Description (optional)" msgstr "Leírás (opcionális)" -#: InvenTree/models.py:878 common/models.py:2394 +#: InvenTree/models.py:1039 common/models.py:2815 msgid "Path" msgstr "Elérési út" -#: InvenTree/models.py:983 +#: InvenTree/models.py:1144 msgid "Duplicate names cannot exist under the same parent" msgstr "Duplikált nevek nem lehetnek ugyanazon szülő alatt" -#: InvenTree/models.py:1067 +#: InvenTree/models.py:1228 msgid "Markdown notes (optional)" msgstr "Markdown megjegyzések (opcionális)" -#: InvenTree/models.py:1098 +#: InvenTree/models.py:1259 msgid "Barcode Data" msgstr "Vonalkód adat" -#: InvenTree/models.py:1099 +#: InvenTree/models.py:1260 msgid "Third party barcode data" msgstr "Harmadik féltől származó vonalkód adat" -#: InvenTree/models.py:1105 +#: InvenTree/models.py:1266 msgid "Barcode Hash" msgstr "Vonalkód hash" -#: InvenTree/models.py:1106 +#: InvenTree/models.py:1267 msgid "Unique hash of barcode data" msgstr "Egyedi vonalkód hash" -#: InvenTree/models.py:1187 +#: InvenTree/models.py:1348 msgid "Existing barcode found" msgstr "Létező vonalkód" -#: InvenTree/models.py:1269 +#: InvenTree/models.py:1430 msgid "Task Failure" msgstr "Feladat hiba" -#: InvenTree/models.py:1270 +#: InvenTree/models.py:1431 #, python-brace-format msgid "Background worker task '{f}' failed after {n} attempts" msgstr "Az '{f}' háttérfeladat elbukott {n} próbálkozás után" -#: InvenTree/models.py:1297 +#: InvenTree/models.py:1458 msgid "Server Error" msgstr "Kiszolgálóhiba" -#: InvenTree/models.py:1298 +#: InvenTree/models.py:1459 msgid "An error has been logged by the server." msgstr "A kiszolgáló egy hibaüzenetet rögzített." -#: InvenTree/models.py:1340 common/models.py:1748 +#: InvenTree/models.py:1501 common/models.py:1752 #: report/templates/report/inventree_bill_of_materials_report.html:126 #: report/templates/report/inventree_bill_of_materials_report.html:148 #: report/templates/report/inventree_return_order_report.html:35 msgid "Image" msgstr "Kép" -#: InvenTree/serializers.py:253 part/models.py:4571 +#: InvenTree/serializers.py:255 part/models.py:4196 msgid "Must be a valid number" msgstr "Érvényes számnak kell lennie" -#: InvenTree/serializers.py:295 company/models.py:214 part/models.py:3285 +#: InvenTree/serializers.py:297 company/models.py:215 part/models.py:3349 msgid "Currency" msgstr "Pénznem" -#: InvenTree/serializers.py:298 part/serializers.py:1385 +#: InvenTree/serializers.py:300 part/serializers.py:1250 msgid "Select currency from available options" msgstr "Válassz pénznemet a lehetőségek közül" -#: InvenTree/serializers.py:653 +#: InvenTree/serializers.py:654 +msgid "This field may not be null." +msgstr "" + +#: InvenTree/serializers.py:660 msgid "Invalid value" msgstr "Érvénytelen érték" -#: InvenTree/serializers.py:690 +#: InvenTree/serializers.py:697 msgid "Remote Image" msgstr "Távoli kép" -#: InvenTree/serializers.py:691 +#: InvenTree/serializers.py:698 msgid "URL of remote image file" msgstr "A távoli kép URL-je" -#: InvenTree/serializers.py:709 +#: InvenTree/serializers.py:716 msgid "Downloading images from remote URL is not enabled" msgstr "Képek letöltése távoli URL-ről nem engedélyezett" -#: InvenTree/serializers.py:716 +#: InvenTree/serializers.py:723 msgid "Failed to download image from remote URL" msgstr "Nem sikerült letölteni a képet a távoli URL-ről" +#: InvenTree/serializers.py:806 +msgid "Invalid content type format" +msgstr "" + +#: InvenTree/serializers.py:809 +msgid "Content type not found" +msgstr "" + +#: InvenTree/serializers.py:815 +msgid "Content type does not match required mixin class" +msgstr "" + #: InvenTree/setting/locales.py:20 msgid "Arabic" msgstr "Arab" @@ -537,30 +553,30 @@ msgstr "Érvénytelen fizikai mértékegység" msgid "Not a valid currency code" msgstr "Érvénytelen pénznem kód" -#: build/api.py:54 order/api.py:111 order/api.py:270 order/api.py:1373 -#: order/serializers.py:132 +#: build/api.py:54 order/api.py:116 order/api.py:275 order/api.py:1378 +#: order/serializers.py:133 msgid "Order Status" msgstr "Rendelés állapota" -#: build/api.py:80 build/models.py:264 +#: build/api.py:80 build/models.py:265 msgid "Parent Build" msgstr "Szülő gyártás" -#: build/api.py:84 build/api.py:831 order/api.py:547 order/api.py:770 -#: order/api.py:1174 order/api.py:1449 stock/api.py:573 +#: build/api.py:84 build/api.py:837 order/api.py:553 order/api.py:776 +#: order/api.py:1179 order/api.py:1454 stock/api.py:573 msgid "Include Variants" msgstr "Változatokkal együtt" -#: build/api.py:100 build/api.py:466 build/api.py:845 build/models.py:270 -#: build/serializers.py:1225 build/serializers.py:1356 -#: build/serializers.py:1427 company/models.py:1067 company/serializers.py:445 -#: order/api.py:298 order/api.py:302 order/api.py:929 order/api.py:1187 -#: order/api.py:1190 order/models.py:1941 order/models.py:2108 -#: order/models.py:2109 part/api.py:1233 part/api.py:1236 part/api.py:1302 -#: part/api.py:1589 part/models.py:472 part/models.py:3296 part/models.py:3439 -#: part/models.py:3497 part/models.py:3518 part/models.py:3540 -#: part/models.py:3679 part/models.py:4046 part/models.py:4368 -#: part/models.py:4787 part/serializers.py:1928 +#: build/api.py:100 build/api.py:472 build/api.py:851 build/models.py:271 +#: build/serializers.py:1233 build/serializers.py:1364 +#: build/serializers.py:1435 company/models.py:1021 company/serializers.py:490 +#: order/api.py:303 order/api.py:307 order/api.py:934 order/api.py:1192 +#: order/api.py:1195 order/models.py:1942 order/models.py:2109 +#: order/models.py:2110 part/api.py:1160 part/api.py:1163 part/api.py:1314 +#: part/models.py:550 part/models.py:3360 part/models.py:3503 +#: part/models.py:3561 part/models.py:3582 part/models.py:3604 +#: part/models.py:3743 part/models.py:3993 part/models.py:4412 +#: part/serializers.py:1801 #: report/templates/report/inventree_bill_of_materials_report.html:110 #: report/templates/report/inventree_bill_of_materials_report.html:137 #: report/templates/report/inventree_build_order_report.html:109 @@ -580,9 +596,9 @@ msgstr "Változatokkal együtt" msgid "Part" msgstr "Alkatrész" -#: build/api.py:120 build/api.py:123 build/serializers.py:1438 part/api.py:980 -#: part/api.py:1316 part/api.py:1600 part/models.py:1080 part/models.py:3568 -#: part/models.py:4162 part/serializers.py:1752 stock/api.py:869 +#: build/api.py:120 build/api.py:123 build/serializers.py:1446 part/api.py:975 +#: part/api.py:1325 part/models.py:435 part/models.py:1168 part/models.py:3632 +#: part/serializers.py:1617 stock/api.py:869 msgid "Category" msgstr "Kategória" @@ -590,7 +606,7 @@ msgstr "Kategória" msgid "Ancestor Build" msgstr "Szülő Gyártás" -#: build/api.py:152 order/api.py:129 +#: build/api.py:152 order/api.py:134 msgid "Assigned to me" msgstr "Hozzám rendelt" @@ -638,134 +654,134 @@ msgstr "Elkészült ez előtt" msgid "Completed after" msgstr "Elkészült ez után" -#: build/api.py:249 order/api.py:226 +#: build/api.py:249 order/api.py:231 msgid "Min Date" msgstr "Ettől a dátumtól" -#: build/api.py:272 order/api.py:245 +#: build/api.py:272 order/api.py:250 msgid "Max Date" msgstr "Eddig a dátumig" -#: build/api.py:297 build/api.py:300 part/api.py:217 stock/api.py:961 +#: build/api.py:297 build/api.py:300 part/api.py:212 stock/api.py:961 msgid "Exclude Tree" msgstr "Fa kihagyása" -#: build/api.py:405 +#: build/api.py:411 msgid "Build must be cancelled before it can be deleted" msgstr "A gyártást be kell fejezni a törlés előtt" -#: build/api.py:449 build/serializers.py:1374 part/models.py:4402 +#: build/api.py:455 build/serializers.py:1382 part/models.py:4027 msgid "Consumable" msgstr "Fogyóeszköz" -#: build/api.py:452 build/serializers.py:1377 part/models.py:4396 +#: build/api.py:458 build/serializers.py:1385 part/models.py:4021 msgid "Optional" msgstr "Opcionális" -#: build/api.py:455 build/serializers.py:1415 common/setting/system.py:456 -#: part/models.py:1202 part/serializers.py:1714 part/serializers.py:1725 +#: build/api.py:461 build/serializers.py:1423 common/setting/system.py:456 +#: part/models.py:1290 part/serializers.py:1579 part/serializers.py:1590 #: stock/api.py:639 msgid "Assembly" msgstr "Gyártmány" -#: build/api.py:458 +#: build/api.py:464 msgid "Tracked" msgstr "Követett" -#: build/api.py:461 build/serializers.py:1380 part/models.py:1220 +#: build/api.py:467 build/serializers.py:1388 part/models.py:1308 msgid "Testable" msgstr "Ellenőrizhető" -#: build/api.py:471 order/api.py:993 order/api.py:1363 +#: build/api.py:477 order/api.py:998 order/api.py:1368 msgid "Order Outstanding" msgstr "Befejezetlen rendelés" -#: build/api.py:481 build/serializers.py:1464 order/api.py:952 +#: build/api.py:487 build/serializers.py:1472 order/api.py:957 msgid "Allocated" msgstr "Lefoglalva" -#: build/api.py:490 build/models.py:1672 build/serializers.py:1393 +#: build/api.py:496 build/models.py:1673 build/serializers.py:1401 msgid "Consumed" msgstr "Felhasználva" -#: build/api.py:499 company/models.py:912 company/serializers.py:440 +#: build/api.py:505 company/models.py:866 company/serializers.py:467 #: templates/email/build_order_required_stock.html:19 #: templates/email/low_stock_notification.html:17 #: templates/email/part_event_notification.html:18 msgid "Available" msgstr "Elérhető" -#: build/api.py:523 build/serializers.py:1466 company/serializers.py:437 -#: order/serializers.py:1281 part/serializers.py:959 part/serializers.py:1306 -#: part/serializers.py:1761 +#: build/api.py:529 build/serializers.py:1474 company/serializers.py:464 +#: order/serializers.py:1295 part/serializers.py:844 part/serializers.py:1171 +#: part/serializers.py:1626 msgid "On Order" msgstr "Rendelve" -#: build/api.py:868 build/models.py:117 order/models.py:1974 +#: build/api.py:874 build/models.py:118 order/models.py:1975 #: report/templates/report/inventree_build_order_report.html:105 #: stock/serializers.py:93 templates/email/build_order_completed.html:16 #: templates/email/overdue_build_order.html:15 msgid "Build Order" msgstr "Gyártási utasítás" -#: build/api.py:882 build/api.py:886 build/serializers.py:372 -#: build/serializers.py:497 build/serializers.py:567 build/serializers.py:1251 -#: build/serializers.py:1256 order/api.py:1234 order/api.py:1239 -#: order/serializers.py:833 order/serializers.py:973 order/serializers.py:2042 +#: build/api.py:888 build/api.py:892 build/serializers.py:380 +#: build/serializers.py:505 build/serializers.py:575 build/serializers.py:1259 +#: build/serializers.py:1264 order/api.py:1239 order/api.py:1244 +#: order/serializers.py:844 order/serializers.py:984 order/serializers.py:2059 #: stock/api.py:987 stock/serializers.py:111 stock/serializers.py:601 #: stock/serializers.py:710 stock/serializers.py:888 stock/serializers.py:1418 -#: stock/serializers.py:1731 stock/serializers.py:1780 +#: stock/serializers.py:1739 stock/serializers.py:1788 #: templates/email/stale_stock_notification.html:18 users/models.py:549 msgid "Location" msgstr "Hely" -#: build/api.py:894 +#: build/api.py:900 msgid "Output" msgstr "Kimenet" -#: build/api.py:896 +#: build/api.py:902 msgid "Filter by output stock item ID. Use 'null' to find uninstalled build items." msgstr "Szűrés a kimeneti készlet tétel azonosítójára. Használj 'null'-t ha a be nem épített gyártási tételeket keresed." -#: build/models.py:118 users/ruleset.py:31 +#: build/models.py:119 users/ruleset.py:31 msgid "Build Orders" msgstr "Gyártási utasítások" -#: build/models.py:168 +#: build/models.py:169 msgid "Assembly BOM has not been validated" msgstr "Az alkatrészjegyzék még nincs jóváhagyva" -#: build/models.py:175 +#: build/models.py:176 msgid "Build order cannot be created for an inactive part" msgstr "Nem lehet inaktív alkatrészre Gyártást kezdeményezni" -#: build/models.py:182 +#: build/models.py:183 msgid "Build order cannot be created for an unlocked part" msgstr "Nem lehet lezáratlan alkatrészre Gyártást kezdeményezni" -#: build/models.py:200 +#: build/models.py:201 msgid "Build orders can only be externally fulfilled for purchaseable parts" msgstr "Gyártási rendeléseket kizárólag beszerezhető alkatrészekkel lehet külső forrásból teljesíteni" -#: build/models.py:207 order/models.py:369 +#: build/models.py:208 order/models.py:370 msgid "Responsible user or group must be specified" msgstr "Meg kell adni felelős felhasználót vagy csoportot" -#: build/models.py:212 +#: build/models.py:213 msgid "Build order part cannot be changed" msgstr "Gyártási rendelés alkatrész nem változtatható" -#: build/models.py:217 order/models.py:382 +#: build/models.py:218 order/models.py:383 msgid "Target date must be after start date" msgstr "Céldátumnak a kezdeti dátum után kell lennie" -#: build/models.py:245 +#: build/models.py:246 msgid "Build Order Reference" msgstr "Gyártási utasítás azonosító" -#: build/models.py:246 build/serializers.py:1371 order/models.py:614 -#: order/models.py:1311 order/models.py:1773 order/models.py:2712 -#: part/models.py:4442 +#: build/models.py:247 build/serializers.py:1379 order/models.py:615 +#: order/models.py:1312 order/models.py:1774 order/models.py:2713 +#: part/models.py:4067 #: report/templates/report/inventree_bill_of_materials_report.html:139 #: report/templates/report/inventree_purchase_order_report.html:35 #: report/templates/report/inventree_return_order_report.html:26 @@ -773,230 +789,230 @@ msgstr "Gyártási utasítás azonosító" msgid "Reference" msgstr "Azonosító" -#: build/models.py:255 +#: build/models.py:256 msgid "Brief description of the build (optional)" msgstr "Gyártás rövid leírása (opcionális)" -#: build/models.py:265 +#: build/models.py:266 msgid "BuildOrder to which this build is allocated" msgstr "Gyártás, amihez ez a gyártás hozzá van rendelve" -#: build/models.py:274 +#: build/models.py:275 msgid "Select part to build" msgstr "Válassz alkatrészt a gyártáshoz" -#: build/models.py:279 +#: build/models.py:280 msgid "Sales Order Reference" msgstr "Vevői rendelés azonosító" -#: build/models.py:284 +#: build/models.py:285 msgid "SalesOrder to which this build is allocated" msgstr "Vevői rendelés amihez ez a gyártás hozzá van rendelve" -#: build/models.py:289 build/serializers.py:1097 +#: build/models.py:290 build/serializers.py:1105 msgid "Source Location" msgstr "Forrás hely" -#: build/models.py:295 +#: build/models.py:296 msgid "Select location to take stock from for this build (leave blank to take from any stock location)" msgstr "Válassz helyet ahonnan készletet vegyünk el ehhez a gyártáshoz (hagyd üresen ha bárhonnan)" -#: build/models.py:301 +#: build/models.py:302 msgid "External Build" msgstr "Külső gyártás" -#: build/models.py:302 +#: build/models.py:303 msgid "This build order is fulfilled externally" msgstr "Ez a gyártási rendelés külsőleg teljesül" -#: build/models.py:307 +#: build/models.py:308 msgid "Destination Location" msgstr "Cél hely" -#: build/models.py:312 +#: build/models.py:313 msgid "Select location where the completed items will be stored" msgstr "Válassz helyet ahol a kész tételek tárolva lesznek" -#: build/models.py:316 +#: build/models.py:317 msgid "Build Quantity" msgstr "Gyártási mennyiség" -#: build/models.py:319 +#: build/models.py:320 msgid "Number of stock items to build" msgstr "Gyártandó készlet tételek száma" -#: build/models.py:323 +#: build/models.py:324 msgid "Completed items" msgstr "Kész tételek" -#: build/models.py:325 +#: build/models.py:326 msgid "Number of stock items which have been completed" msgstr "Elkészült készlet tételek száma" -#: build/models.py:329 +#: build/models.py:330 msgid "Build Status" msgstr "Gyártási állapot" -#: build/models.py:334 +#: build/models.py:335 msgid "Build status code" msgstr "Gyártás státusz kód" -#: build/models.py:343 build/serializers.py:359 order/serializers.py:849 +#: build/models.py:344 build/serializers.py:367 order/serializers.py:860 #: stock/models.py:1100 stock/serializers.py:85 stock/serializers.py:1591 msgid "Batch Code" msgstr "Batch kód" -#: build/models.py:347 build/serializers.py:360 +#: build/models.py:348 build/serializers.py:368 msgid "Batch code for this build output" msgstr "Batch kód a gyártás kimenetéhez" -#: build/models.py:351 order/models.py:479 order/serializers.py:186 -#: part/models.py:1283 +#: build/models.py:352 order/models.py:480 order/serializers.py:193 +#: part/models.py:1371 msgid "Creation Date" msgstr "Létrehozás dátuma" -#: build/models.py:357 +#: build/models.py:358 msgid "Build start date" msgstr "Gyártás kezdeti dátuma" -#: build/models.py:358 +#: build/models.py:359 msgid "Scheduled start date for this build order" msgstr "Gyártási rendelés ütemezett kezdeti dátuma" -#: build/models.py:364 +#: build/models.py:365 msgid "Target completion date" msgstr "Befejezés cél dátuma" -#: build/models.py:366 +#: build/models.py:367 msgid "Target date for build completion. Build will be overdue after this date." msgstr "Cél dátum a gyártás befejezéséhez. Ez után késettnek számít majd." -#: build/models.py:371 order/models.py:667 order/models.py:2751 +#: build/models.py:372 order/models.py:668 order/models.py:2752 msgid "Completion Date" msgstr "Befejezés dátuma" -#: build/models.py:379 +#: build/models.py:380 msgid "completed by" msgstr "elkészítette" -#: build/models.py:388 +#: build/models.py:389 msgid "Issued by" msgstr "Indította" -#: build/models.py:389 +#: build/models.py:390 msgid "User who issued this build order" msgstr "Felhasználó aki ezt a gyártási utasítást kiállította" -#: build/models.py:398 common/models.py:180 order/api.py:179 -#: order/models.py:504 part/models.py:1300 +#: build/models.py:399 common/models.py:184 order/api.py:184 +#: order/models.py:505 part/models.py:1388 #: report/templates/report/inventree_build_order_report.html:158 msgid "Responsible" msgstr "Felelős" -#: build/models.py:399 +#: build/models.py:400 msgid "User or group responsible for this build order" msgstr "Felhasználó vagy csoport aki felelős ezért a gyártásért" -#: build/models.py:404 stock/models.py:1093 +#: build/models.py:405 stock/models.py:1093 msgid "External Link" msgstr "Külső link" -#: build/models.py:406 common/models.py:1984 part/models.py:1114 +#: build/models.py:407 common/models.py:1990 part/models.py:1202 #: stock/models.py:1095 msgid "Link to external URL" msgstr "Link külső URL-re" -#: build/models.py:411 +#: build/models.py:412 msgid "Build Priority" msgstr "Priorítás" -#: build/models.py:414 +#: build/models.py:415 msgid "Priority of this build order" msgstr "Gyártási utasítás priorítása" -#: build/models.py:422 common/models.py:150 common/models.py:164 -#: order/api.py:165 order/models.py:451 order/models.py:1805 +#: build/models.py:423 common/models.py:154 common/models.py:168 +#: order/api.py:170 order/models.py:452 order/models.py:1806 msgid "Project Code" msgstr "Projektszám" -#: build/models.py:423 +#: build/models.py:424 msgid "Project code for this build order" msgstr "Projekt kód a gyártáshoz" -#: build/models.py:676 +#: build/models.py:677 msgid "Cannot complete build order with open child builds" msgstr "A gyártási rendelés nem befejezhető amíg nyitott al-gyártások vannak" -#: build/models.py:681 +#: build/models.py:682 msgid "Cannot complete build order with incomplete outputs" msgstr "A gyártási rendelés nem befejezhető amíg hiányos a kimenet" -#: build/models.py:700 build/models.py:830 +#: build/models.py:701 build/models.py:831 msgid "Failed to offload task to complete build allocations" msgstr "A gyártási foglalások teljesítése háttérfeladat elvégzése nem sikerült" -#: build/models.py:723 +#: build/models.py:724 #, python-brace-format msgid "Build order {build} has been completed" msgstr "A {build} gyártási utasítás elkészült" -#: build/models.py:729 +#: build/models.py:730 msgid "A build order has been completed" msgstr "Gyártási utasítás elkészült" -#: build/models.py:911 build/serializers.py:407 +#: build/models.py:912 build/serializers.py:415 msgid "Serial numbers must be provided for trackable parts" msgstr "Egyedi követésre jelölt alkatrészeknél kötelező sorozatszámot megadni" -#: build/models.py:1042 build/models.py:1129 +#: build/models.py:1043 build/models.py:1130 msgid "No build output specified" msgstr "Nincs gyártási kimenet megadva" -#: build/models.py:1045 +#: build/models.py:1046 msgid "Build output is already completed" msgstr "Gyártási kimenet már kész" -#: build/models.py:1048 +#: build/models.py:1049 msgid "Build output does not match Build Order" msgstr "Gyártási kimenet nem egyezik a gyártási utasítással" -#: build/models.py:1136 build/models.py:1234 build/serializers.py:285 -#: build/serializers.py:335 build/serializers.py:965 build/serializers.py:1739 -#: order/models.py:717 order/serializers.py:658 order/serializers.py:844 -#: part/serializers.py:1708 stock/models.py:940 stock/models.py:1430 +#: build/models.py:1137 build/models.py:1235 build/serializers.py:293 +#: build/serializers.py:343 build/serializers.py:973 build/serializers.py:1747 +#: order/models.py:718 order/serializers.py:669 order/serializers.py:855 +#: part/serializers.py:1573 stock/models.py:940 stock/models.py:1430 #: stock/models.py:1878 stock/serializers.py:688 stock/serializers.py:1580 msgid "Quantity must be greater than zero" msgstr "Mennyiségnek nullánál többnek kell lennie" -#: build/models.py:1140 build/models.py:1239 build/serializers.py:290 +#: build/models.py:1141 build/models.py:1240 build/serializers.py:298 msgid "Quantity cannot be greater than the output quantity" msgstr "A mennyiség nem lehet több mint a gyártási mennyiség" -#: build/models.py:1214 build/serializers.py:606 +#: build/models.py:1215 build/serializers.py:614 msgid "Build output has not passed all required tests" msgstr "A gyártási kimenet nem felelt meg az összes kötelező teszten" -#: build/models.py:1217 build/serializers.py:601 +#: build/models.py:1218 build/serializers.py:609 #, python-brace-format msgid "Build output {serial} has not passed all required tests" msgstr "A {serial} gyártási kimenet nem felelt meg az összes kötelező teszten" -#: build/models.py:1229 +#: build/models.py:1230 msgid "Cannot partially complete a build output with allocated items" msgstr "" -#: build/models.py:1627 +#: build/models.py:1628 msgid "Build Order Line Item" msgstr "Gyártási Rendelés Sor Tétel" -#: build/models.py:1651 +#: build/models.py:1652 msgid "Build object" msgstr "Gyártás objektum" -#: build/models.py:1663 build/models.py:1974 build/serializers.py:271 -#: build/serializers.py:320 build/serializers.py:1392 common/models.py:1340 -#: order/models.py:1756 order/models.py:2597 order/serializers.py:1696 -#: order/serializers.py:2124 part/models.py:3453 part/models.py:4390 +#: build/models.py:1664 build/models.py:1975 build/serializers.py:279 +#: build/serializers.py:328 build/serializers.py:1400 common/models.py:1344 +#: order/models.py:1757 order/models.py:2598 order/serializers.py:1710 +#: order/serializers.py:2141 part/models.py:3517 part/models.py:4015 #: report/templates/report/inventree_bill_of_materials_report.html:138 #: report/templates/report/inventree_build_order_report.html:113 #: report/templates/report/inventree_purchase_order_report.html:36 @@ -1014,428 +1030,428 @@ msgstr "Gyártás objektum" msgid "Quantity" msgstr "Mennyiség" -#: build/models.py:1664 +#: build/models.py:1665 msgid "Required quantity for build order" msgstr "Gyártáshoz szükséges mennyiség" -#: build/models.py:1673 +#: build/models.py:1674 msgid "Quantity of consumed stock" msgstr "Felhasznált készlet mennyisége" -#: build/models.py:1772 +#: build/models.py:1773 msgid "Build item must specify a build output, as master part is marked as trackable" msgstr "Gyártási tételnek meg kell adnia a gyártási kimenetet, mivel a fő darab egyedi követésre kötelezett" -#: build/models.py:1783 +#: build/models.py:1784 #, python-brace-format msgid "Allocated quantity ({q}) must not exceed available stock quantity ({a})" msgstr "A lefoglalt mennyiség ({q}) nem lépheti túl a szabad készletet ({a})" -#: build/models.py:1804 order/models.py:2546 +#: build/models.py:1805 order/models.py:2547 msgid "Stock item is over-allocated" msgstr "Készlet túlfoglalva" -#: build/models.py:1809 order/models.py:2549 +#: build/models.py:1810 order/models.py:2550 msgid "Allocation quantity must be greater than zero" msgstr "Lefoglalt mennyiségnek nullánál többnek kell lennie" -#: build/models.py:1815 +#: build/models.py:1816 msgid "Quantity must be 1 for serialized stock" msgstr "Egyedi követésre kötelezett tételeknél a menyiség 1 kell legyen" -#: build/models.py:1875 +#: build/models.py:1876 msgid "Selected stock item does not match BOM line" msgstr "A készlet tétel nem egyezik az alkatrészjegyzékkel" -#: build/models.py:1913 +#: build/models.py:1914 msgid "Allocated quantity exceeds available stock quantity" msgstr "Lefoglalt mennyiség meghaladja az elérhető készletet" -#: build/models.py:1964 build/serializers.py:948 build/serializers.py:1240 -#: order/serializers.py:1533 order/serializers.py:1554 +#: build/models.py:1965 build/serializers.py:956 build/serializers.py:1248 +#: order/serializers.py:1547 order/serializers.py:1568 #: report/templates/report/inventree_sales_order_shipment_report.html:29 #: stock/api.py:1404 stock/models.py:456 stock/serializers.py:102 #: stock/serializers.py:800 stock/serializers.py:1274 stock/serializers.py:1386 msgid "Stock Item" msgstr "Készlet tétel" -#: build/models.py:1965 +#: build/models.py:1966 msgid "Source stock item" msgstr "Forrás készlet tétel" -#: build/models.py:1975 +#: build/models.py:1976 msgid "Stock quantity to allocate to build" msgstr "Készlet mennyiség amit foglaljunk a gyártáshoz" -#: build/models.py:1984 +#: build/models.py:1985 msgid "Install into" msgstr "Beépítés ebbe" -#: build/models.py:1985 +#: build/models.py:1986 msgid "Destination stock item" msgstr "Cél készlet tétel" -#: build/serializers.py:118 +#: build/serializers.py:120 msgid "Build Level" msgstr "Gyártási Szint" -#: build/serializers.py:128 +#: build/serializers.py:136 msgid "Part Name" msgstr "Alkatrész neve" -#: build/serializers.py:153 +#: build/serializers.py:161 msgid "Project Code Label" msgstr "Projekt kód címke" -#: build/serializers.py:219 build/serializers.py:974 +#: build/serializers.py:227 build/serializers.py:982 msgid "Build Output" msgstr "Gyártás kimenet" -#: build/serializers.py:231 +#: build/serializers.py:239 msgid "Build output does not match the parent build" msgstr "Gyártási kimenet nem egyezik a szülő gyártással" -#: build/serializers.py:235 +#: build/serializers.py:243 msgid "Output part does not match BuildOrder part" msgstr "Kimeneti alkatrész nem egyezik a gyártási utasításban lévő alkatrésszel" -#: build/serializers.py:239 +#: build/serializers.py:247 msgid "This build output has already been completed" msgstr "Ez a gyártási kimenet már elkészült" -#: build/serializers.py:253 +#: build/serializers.py:261 msgid "This build output is not fully allocated" msgstr "Ez a gyártási kimenet nincs teljesen lefoglalva" -#: build/serializers.py:272 build/serializers.py:321 +#: build/serializers.py:280 build/serializers.py:329 msgid "Enter quantity for build output" msgstr "Add meg a mennyiséget a gyártás kimenetéhez" -#: build/serializers.py:343 +#: build/serializers.py:351 msgid "Integer quantity required for trackable parts" msgstr "Egész számú mennyiség szükséges az egyedi követésre kötelezett alkatrészeknél" -#: build/serializers.py:349 +#: build/serializers.py:357 msgid "Integer quantity required, as the bill of materials contains trackable parts" msgstr "Egész számú mennyiség szükséges, mivel az alkatrészjegyzék egyedi követésre kötelezett alkatrészeket tartalmaz" -#: build/serializers.py:366 order/serializers.py:865 order/serializers.py:1700 +#: build/serializers.py:374 order/serializers.py:876 order/serializers.py:1714 #: stock/serializers.py:699 msgid "Serial Numbers" msgstr "Sorozatszámok" -#: build/serializers.py:367 +#: build/serializers.py:375 msgid "Enter serial numbers for build outputs" msgstr "Add meg a sorozatszámokat a gyártás kimenetéhez" -#: build/serializers.py:373 +#: build/serializers.py:381 msgid "Stock location for build output" msgstr "Legyártott készlet helye" -#: build/serializers.py:388 +#: build/serializers.py:396 msgid "Auto Allocate Serial Numbers" msgstr "Sorozatszámok automatikus hozzárendelése" -#: build/serializers.py:390 +#: build/serializers.py:398 msgid "Automatically allocate required items with matching serial numbers" msgstr "Szükséges tételek automatikus hozzárendelése a megfelelő sorozatszámokkal" -#: build/serializers.py:423 order/serializers.py:951 stock/api.py:1183 +#: build/serializers.py:431 order/serializers.py:962 stock/api.py:1183 #: stock/models.py:1901 msgid "The following serial numbers already exist or are invalid" msgstr "A következő sorozatszámok már léteznek vagy nem megfelelőek" -#: build/serializers.py:465 build/serializers.py:521 build/serializers.py:613 +#: build/serializers.py:473 build/serializers.py:529 build/serializers.py:621 msgid "A list of build outputs must be provided" msgstr "A gyártási kimenetek listáját meg kell adni" -#: build/serializers.py:498 +#: build/serializers.py:506 msgid "Stock location for scrapped outputs" msgstr "Selejtezet gyártási kimenetek helye" -#: build/serializers.py:504 +#: build/serializers.py:512 msgid "Discard Allocations" msgstr "Foglalások törlése" -#: build/serializers.py:505 +#: build/serializers.py:513 msgid "Discard any stock allocations for scrapped outputs" msgstr "Selejtezett kimenetek foglalásainak felszabadítása" -#: build/serializers.py:510 +#: build/serializers.py:518 msgid "Reason for scrapping build output(s)" msgstr "Selejtezés oka" -#: build/serializers.py:568 +#: build/serializers.py:576 msgid "Location for completed build outputs" msgstr "A kész gyártási kimenetek helye" -#: build/serializers.py:576 +#: build/serializers.py:584 msgid "Accept Incomplete Allocation" msgstr "Hiányos foglalás elfogadása" -#: build/serializers.py:577 +#: build/serializers.py:585 msgid "Complete outputs if stock has not been fully allocated" msgstr "Kimenetek befejezése akkor is ha a készlet nem\n" "lett teljesen lefoglalva" -#: build/serializers.py:702 +#: build/serializers.py:710 msgid "Consume Allocated Stock" msgstr "Lefoglalt készlet felhasználása" -#: build/serializers.py:703 +#: build/serializers.py:711 msgid "Consume any stock which has already been allocated to this build" msgstr "Az összes ehhez a gyártáshoz lefoglalt készlet felhasználása" -#: build/serializers.py:709 +#: build/serializers.py:717 msgid "Remove Incomplete Outputs" msgstr "Befejezetlen kimenetek törlése" -#: build/serializers.py:710 +#: build/serializers.py:718 msgid "Delete any build outputs which have not been completed" msgstr "A nem befejezett gyártási kimenetek törlése" -#: build/serializers.py:737 +#: build/serializers.py:745 msgid "Not permitted" msgstr "Nem engedélyezett" -#: build/serializers.py:738 +#: build/serializers.py:746 msgid "Accept as consumed by this build order" msgstr "Gyártásban fel lett használva" -#: build/serializers.py:739 +#: build/serializers.py:747 msgid "Deallocate before completing this build order" msgstr "Foglalás felszabadítása a készre jelentés előtt" -#: build/serializers.py:766 +#: build/serializers.py:774 msgid "Overallocated Stock" msgstr "Túlfoglalt készlet" -#: build/serializers.py:769 +#: build/serializers.py:777 msgid "How do you want to handle extra stock items assigned to the build order" msgstr "Hogyan kezeljük az gyártáshoz rendelt egyéb készletet" -#: build/serializers.py:780 +#: build/serializers.py:788 msgid "Some stock items have been overallocated" msgstr "Pár készlet tétel túl lett foglalva" -#: build/serializers.py:785 +#: build/serializers.py:793 msgid "Accept Unallocated" msgstr "Kiosztatlanok elfogadása" -#: build/serializers.py:787 +#: build/serializers.py:795 msgid "Accept that stock items have not been fully allocated to this build order" msgstr "Fogadd el hogy a készlet tételek nincsenek teljesen lefoglalva ehhez a gyártási utastáshoz" -#: build/serializers.py:798 +#: build/serializers.py:806 msgid "Required stock has not been fully allocated" msgstr "A szükséges készlet nem lett teljesen lefoglalva" -#: build/serializers.py:803 order/serializers.py:524 order/serializers.py:1601 +#: build/serializers.py:811 order/serializers.py:535 order/serializers.py:1615 msgid "Accept Incomplete" msgstr "Befejezetlenek elfogadása" -#: build/serializers.py:805 +#: build/serializers.py:813 msgid "Accept that the required number of build outputs have not been completed" msgstr "Fogadd el hogy a szükséges számú gyártási kimenet nem lett elérve" -#: build/serializers.py:816 +#: build/serializers.py:824 msgid "Required build quantity has not been completed" msgstr "Szükséges gyártási mennyiség nem lett elérve" -#: build/serializers.py:828 +#: build/serializers.py:836 msgid "Build order has open child build orders" msgstr "A Gyártásnak nyitott leszármazott Gyártása van" -#: build/serializers.py:831 +#: build/serializers.py:839 msgid "Build order must be in production state" msgstr "A Gyártásnak folyamatban kell lennie" -#: build/serializers.py:834 +#: build/serializers.py:842 msgid "Build order has incomplete outputs" msgstr "A gyártási utasítás befejezetlen kimeneteket tartalmaz" -#: build/serializers.py:873 +#: build/serializers.py:881 msgid "Build Line" msgstr "Gyártás sor" -#: build/serializers.py:881 +#: build/serializers.py:889 msgid "Build output" msgstr "Gyártás kimenet" -#: build/serializers.py:889 +#: build/serializers.py:897 msgid "Build output must point to the same build" msgstr "A gyártási kimenetnek ugyanarra a gyártásra kell mutatnia" -#: build/serializers.py:920 +#: build/serializers.py:928 msgid "Build Line Item" msgstr "Gyártás sor tétel" -#: build/serializers.py:938 +#: build/serializers.py:946 msgid "bom_item.part must point to the same part as the build order" msgstr "bom_item.part ugyanarra az alkatrészre kell mutasson mint a gyártási utasítás" -#: build/serializers.py:954 stock/serializers.py:1287 +#: build/serializers.py:962 stock/serializers.py:1287 msgid "Item must be in stock" msgstr "A tételnek kell legyen készlete" -#: build/serializers.py:997 order/serializers.py:1587 +#: build/serializers.py:1005 order/serializers.py:1601 #, python-brace-format msgid "Available quantity ({q}) exceeded" msgstr "Rendelkezésre álló mennyiség ({q}) túllépve" -#: build/serializers.py:1003 +#: build/serializers.py:1011 msgid "Build output must be specified for allocation of tracked parts" msgstr "Gyártási kimenetet meg kell adni a követésre kötelezett alkatrészek lefoglalásához" -#: build/serializers.py:1011 +#: build/serializers.py:1019 msgid "Build output cannot be specified for allocation of untracked parts" msgstr "Gyártási kimenetet nem lehet megadni a követésre kötelezett alkatrészek lefoglalásához" -#: build/serializers.py:1035 order/serializers.py:1860 +#: build/serializers.py:1043 order/serializers.py:1874 msgid "Allocation items must be provided" msgstr "A lefoglalandó tételeket meg kell adni" -#: build/serializers.py:1099 +#: build/serializers.py:1107 msgid "Stock location where parts are to be sourced (leave blank to take from any location)" msgstr "Készlet hely ahonnan az alkatrészek származnak (hagyd üresen ha bárhonnan)" -#: build/serializers.py:1108 +#: build/serializers.py:1116 msgid "Exclude Location" msgstr "Hely kizárása" -#: build/serializers.py:1109 +#: build/serializers.py:1117 msgid "Exclude stock items from this selected location" msgstr "Készlet tételek kizárása erről a kiválasztott helyről" -#: build/serializers.py:1114 +#: build/serializers.py:1122 msgid "Interchangeable Stock" msgstr "Felcserélhető készlet" -#: build/serializers.py:1115 +#: build/serializers.py:1123 msgid "Stock items in multiple locations can be used interchangeably" msgstr "A különböző helyeken lévő készlet egyenrangúan felhasználható" -#: build/serializers.py:1120 +#: build/serializers.py:1128 msgid "Substitute Stock" msgstr "Készlet helyettesítés" -#: build/serializers.py:1121 +#: build/serializers.py:1129 msgid "Allow allocation of substitute parts" msgstr "Helyettesítő alkatrészek foglalásának engedélyezése" -#: build/serializers.py:1126 +#: build/serializers.py:1134 msgid "Optional Items" msgstr "Opcionális tételek" -#: build/serializers.py:1127 +#: build/serializers.py:1135 msgid "Allocate optional BOM items to build order" msgstr "Opcionális tételek lefoglalása a gyártáshoz" -#: build/serializers.py:1148 +#: build/serializers.py:1156 msgid "Failed to start auto-allocation task" msgstr "Nem sikerült az automatikus lefoglalás feladatot elindítani" -#: build/serializers.py:1200 +#: build/serializers.py:1208 msgid "BOM Reference" msgstr "Alkatrészjegyzék Hivatkozás" -#: build/serializers.py:1206 +#: build/serializers.py:1214 msgid "BOM Part ID" msgstr "Alkatrészjegyzék Cikk Azonosító" -#: build/serializers.py:1213 +#: build/serializers.py:1221 msgid "BOM Part Name" msgstr "Alkatrészjegyzék Alkatrész Név" -#: build/serializers.py:1266 build/serializers.py:1449 +#: build/serializers.py:1274 build/serializers.py:1457 msgid "Build" msgstr "Gyártás" -#: build/serializers.py:1276 company/models.py:685 order/api.py:311 -#: order/api.py:316 order/api.py:543 order/serializers.py:650 +#: build/serializers.py:1284 company/models.py:639 order/api.py:316 +#: order/api.py:321 order/api.py:549 order/serializers.py:661 #: stock/models.py:1036 stock/serializers.py:579 msgid "Supplier Part" msgstr "Beszállítói alkatrész" -#: build/serializers.py:1284 stock/serializers.py:620 +#: build/serializers.py:1292 stock/serializers.py:620 msgid "Allocated Quantity" msgstr "Lefoglalt mennyiség" -#: build/serializers.py:1351 +#: build/serializers.py:1359 msgid "Build Reference" msgstr "Gyártási Hivatkozás" -#: build/serializers.py:1361 +#: build/serializers.py:1369 msgid "Part Category Name" msgstr "Alkatrész kategória Neve" -#: build/serializers.py:1383 common/setting/system.py:480 part/models.py:1214 +#: build/serializers.py:1391 common/setting/system.py:480 part/models.py:1302 msgid "Trackable" msgstr "Követésre kötelezett" -#: build/serializers.py:1386 +#: build/serializers.py:1394 msgid "Inherited" msgstr "Örökölt" -#: build/serializers.py:1389 part/models.py:4475 +#: build/serializers.py:1397 part/models.py:4100 msgid "Allow Variants" msgstr "Változatok" -#: build/serializers.py:1395 build/serializers.py:1400 part/models.py:4208 -#: part/models.py:4779 stock/api.py:882 +#: build/serializers.py:1403 build/serializers.py:1408 part/models.py:3833 +#: part/models.py:4404 stock/api.py:882 msgid "BOM Item" msgstr "Alkatrészjegyzék tétel" -#: build/serializers.py:1467 order/serializers.py:1282 part/serializers.py:1310 -#: part/serializers.py:1765 +#: build/serializers.py:1475 order/serializers.py:1296 part/serializers.py:1175 +#: part/serializers.py:1630 msgid "In Production" msgstr "Gyártásban" -#: build/serializers.py:1469 part/serializers.py:950 part/serializers.py:1314 +#: build/serializers.py:1477 part/serializers.py:835 part/serializers.py:1179 msgid "Scheduled to Build" msgstr "Gyártás Ütemezve" -#: build/serializers.py:1472 part/serializers.py:987 +#: build/serializers.py:1480 part/serializers.py:872 msgid "External Stock" msgstr "Külső raktárkészlet" -#: build/serializers.py:1473 part/serializers.py:1300 part/serializers.py:1808 +#: build/serializers.py:1481 part/serializers.py:1165 part/serializers.py:1673 msgid "Available Stock" msgstr "Elérhető készlet" -#: build/serializers.py:1475 +#: build/serializers.py:1483 msgid "Available Substitute Stock" msgstr "Elérhető Helyettesítő Készlet" -#: build/serializers.py:1478 +#: build/serializers.py:1486 msgid "Available Variant Stock" msgstr "Elérhető Készlet Változatokból" -#: build/serializers.py:1752 +#: build/serializers.py:1760 msgid "Consumed quantity exceeds allocated quantity" msgstr "Felhasznált mennyiség meghaladja a lefoglalt mennyiséget" -#: build/serializers.py:1789 +#: build/serializers.py:1797 msgid "Optional notes for the stock consumption" msgstr "Megjegyzés a készletfelhasználáshoz" -#: build/serializers.py:1806 +#: build/serializers.py:1814 msgid "Build item must point to the correct build order" msgstr "Gyártási tételnek a megfelelő gyártási rendelésre kell mutatnia" -#: build/serializers.py:1811 +#: build/serializers.py:1819 msgid "Duplicate build item allocation" msgstr "Dupla gyártási tétel lefoglalás" -#: build/serializers.py:1829 +#: build/serializers.py:1837 msgid "Build line must point to the correct build order" msgstr "Gyártási sornak a megfelelő gyártási rendelésre kell mutatnia" -#: build/serializers.py:1834 +#: build/serializers.py:1842 msgid "Duplicate build line allocation" msgstr "Duplikált gyártási sor foglalás" -#: build/serializers.py:1846 +#: build/serializers.py:1854 msgid "At least one item or line must be provided" msgstr "Legalább egy tétel vagy sor megadása kötelező" @@ -1483,702 +1499,826 @@ msgstr "Késésben lévő gyártás" msgid "Build order {bo} is now overdue" msgstr "A {bo} gyártás most már késésben van" -#: common/api.py:694 +#: common/api.py:701 msgid "Is Link" msgstr "Ez egy hivatkozás" -#: common/api.py:702 +#: common/api.py:709 msgid "Is File" msgstr "Ez egy állomány" -#: common/api.py:745 +#: common/api.py:756 msgid "User does not have permission to delete these attachments" msgstr "A felhasználó nem jogosult ezen mellékletek törlésére" -#: common/api.py:762 +#: common/api.py:769 msgid "User does not have permission to delete this attachment" msgstr "A felhasználó nem jogosult ezen melléklet törlésére" -#: common/currency.py:122 +#: common/currency.py:130 msgid "Invalid currency code" msgstr "Érvénytelen valuta kód" -#: common/currency.py:124 +#: common/currency.py:132 msgid "Duplicate currency code" msgstr "Létező valuta kód" -#: common/currency.py:129 +#: common/currency.py:137 msgid "No valid currency codes provided" msgstr "Hiányzó érvényes valuta kód" -#: common/currency.py:146 +#: common/currency.py:154 msgid "No plugin" msgstr "Nincsen plugin" -#: common/models.py:101 common/models.py:126 common/models.py:2729 +#: common/models.py:105 common/models.py:130 common/models.py:3150 msgid "Updated" msgstr "Frissítve" -#: common/models.py:102 common/models.py:127 +#: common/models.py:106 common/models.py:131 msgid "Timestamp of last update" msgstr "Legutóbbi frissítés időpontja" -#: common/models.py:139 +#: common/models.py:143 msgid "Update By" msgstr "Frissítette" -#: common/models.py:140 +#: common/models.py:144 msgid "User who last updated this object" msgstr "Az objektumot utoljára módosította" -#: common/models.py:165 +#: common/models.py:169 msgid "Unique project code" msgstr "Egyedi projektszám" -#: common/models.py:172 +#: common/models.py:176 msgid "Project description" msgstr "Projekt leírása" -#: common/models.py:181 +#: common/models.py:185 msgid "User or group responsible for this project" msgstr "A projektért felelős felhasználó vagy csoport" -#: common/models.py:771 common/models.py:1272 common/models.py:1310 +#: common/models.py:775 common/models.py:1276 common/models.py:1314 msgid "Settings key" msgstr "Beállítási kulcs" -#: common/models.py:775 +#: common/models.py:779 msgid "Settings value" msgstr "Beállítás értéke" -#: common/models.py:830 +#: common/models.py:834 msgid "Chosen value is not a valid option" msgstr "A kiválasztott érték nem egy érvényes lehetőség" -#: common/models.py:846 +#: common/models.py:850 msgid "Value must be a boolean value" msgstr "Az érték bináris kell legyen" -#: common/models.py:854 +#: common/models.py:858 msgid "Value must be an integer value" msgstr "Az érték egész szám kell legyen" -#: common/models.py:862 +#: common/models.py:866 msgid "Value must be a valid number" msgstr "Az értéknek számnak kell lennie" -#: common/models.py:887 +#: common/models.py:891 msgid "Value does not pass validation checks" msgstr "Az érték nem felel meg az ellenőrzéseknek" -#: common/models.py:909 +#: common/models.py:913 msgid "Key string must be unique" msgstr "Kulcs string egyedi kell legyen" -#: common/models.py:1318 common/models.py:1319 common/models.py:1423 -#: common/models.py:1424 common/models.py:1669 common/models.py:1670 -#: common/models.py:2000 common/models.py:2001 common/models.py:2382 -#: importer/models.py:100 part/models.py:3547 part/models.py:3575 +#: common/models.py:1322 common/models.py:1323 common/models.py:1427 +#: common/models.py:1428 common/models.py:1673 common/models.py:1674 +#: common/models.py:2006 common/models.py:2007 common/models.py:2803 +#: importer/models.py:100 part/models.py:3611 part/models.py:3639 #: plugin/models.py:355 plugin/models.py:356 #: report/templates/report/inventree_test_report.html:105 users/models.py:124 #: users/models.py:501 msgid "User" msgstr "Felhasználó" -#: common/models.py:1341 +#: common/models.py:1345 msgid "Price break quantity" msgstr "Ársáv mennyiség" -#: common/models.py:1348 company/serializers.py:564 order/models.py:1842 -#: order/models.py:3043 +#: common/models.py:1352 company/serializers.py:349 order/models.py:1843 +#: order/models.py:3044 msgid "Price" msgstr "Ár" -#: common/models.py:1349 +#: common/models.py:1353 msgid "Unit price at specified quantity" msgstr "Egységár egy meghatározott mennyiség esetén" -#: common/models.py:1400 common/models.py:1585 +#: common/models.py:1404 common/models.py:1589 msgid "Endpoint" msgstr "Végpont" -#: common/models.py:1401 +#: common/models.py:1405 msgid "Endpoint at which this webhook is received" msgstr "Végpont ahol ez a webhook érkezik" -#: common/models.py:1411 +#: common/models.py:1415 msgid "Name for this webhook" msgstr "Webhook neve" -#: common/models.py:1415 common/models.py:2241 common/models.py:2348 -#: company/models.py:191 company/models.py:822 machine/models.py:40 -#: part/models.py:1237 plugin/models.py:69 stock/api.py:642 users/models.py:195 +#: common/models.py:1419 common/models.py:2247 common/models.py:2354 +#: company/models.py:192 company/models.py:776 machine/models.py:40 +#: part/models.py:1325 plugin/models.py:69 stock/api.py:642 users/models.py:195 #: users/models.py:554 users/serializers.py:314 msgid "Active" msgstr "Aktív" -#: common/models.py:1415 +#: common/models.py:1419 msgid "Is this webhook active" msgstr "Aktív-e ez a webhook" -#: common/models.py:1431 users/models.py:172 +#: common/models.py:1435 users/models.py:172 msgid "Token" msgstr "Token" -#: common/models.py:1432 +#: common/models.py:1436 msgid "Token for access" msgstr "Token a hozzáféréshez" -#: common/models.py:1440 +#: common/models.py:1444 msgid "Secret" msgstr "Titok" -#: common/models.py:1441 +#: common/models.py:1445 msgid "Shared secret for HMAC" msgstr "Megosztott titok a HMAC-hoz" -#: common/models.py:1549 common/models.py:2619 +#: common/models.py:1553 common/models.py:3040 msgid "Message ID" msgstr "Üzenet azonosító" -#: common/models.py:1550 common/models.py:2609 +#: common/models.py:1554 common/models.py:3030 msgid "Unique identifier for this message" msgstr "Egyedi azonosító ehhez az üzenethez" -#: common/models.py:1558 +#: common/models.py:1562 msgid "Host" msgstr "Kiszolgáló" -#: common/models.py:1559 +#: common/models.py:1563 msgid "Host from which this message was received" msgstr "Kiszolgáló ahonnan ez az üzenet érkezett" -#: common/models.py:1567 +#: common/models.py:1571 msgid "Header" msgstr "Fejléc" -#: common/models.py:1568 +#: common/models.py:1572 msgid "Header of this message" msgstr "Üzenet fejléce" -#: common/models.py:1575 +#: common/models.py:1579 msgid "Body" msgstr "Törzs" -#: common/models.py:1576 +#: common/models.py:1580 msgid "Body of this message" msgstr "Üzenet törzse" -#: common/models.py:1586 +#: common/models.py:1590 msgid "Endpoint on which this message was received" msgstr "Végpont amin ez az üzenet érkezett" -#: common/models.py:1591 +#: common/models.py:1595 msgid "Worked on" msgstr "Dolgozott rajta" -#: common/models.py:1592 +#: common/models.py:1596 msgid "Was the work on this message finished?" msgstr "Befejeződött a munka ezzel az üzenettel?" -#: common/models.py:1718 +#: common/models.py:1722 msgid "Id" msgstr "Azonosító" -#: common/models.py:1720 +#: common/models.py:1724 msgid "Title" msgstr "Cím" -#: common/models.py:1722 common/models.py:1983 company/models.py:185 -#: company/models.py:467 company/models.py:534 company/models.py:839 -#: order/models.py:457 order/models.py:1786 order/models.py:2343 -#: part/models.py:1113 +#: common/models.py:1726 common/models.py:1989 company/models.py:186 +#: company/models.py:468 company/models.py:536 company/models.py:793 +#: order/models.py:458 order/models.py:1787 order/models.py:2344 +#: part/models.py:1201 #: report/templates/report/inventree_build_order_report.html:164 msgid "Link" msgstr "Link" -#: common/models.py:1724 +#: common/models.py:1728 msgid "Published" msgstr "Közzétéve" -#: common/models.py:1726 +#: common/models.py:1730 msgid "Author" msgstr "Szerző" -#: common/models.py:1728 +#: common/models.py:1732 msgid "Summary" msgstr "Összefoglaló" -#: common/models.py:1731 common/models.py:2586 +#: common/models.py:1735 common/models.py:3007 msgid "Read" msgstr "Elolvasva" -#: common/models.py:1731 +#: common/models.py:1735 msgid "Was this news item read?" msgstr "Elolvasva?" -#: common/models.py:1748 +#: common/models.py:1752 msgid "Image file" msgstr "Képfájl" -#: common/models.py:1760 +#: common/models.py:1764 msgid "Target model type for this image" msgstr "A képhez tartozó model típus" -#: common/models.py:1764 +#: common/models.py:1768 msgid "Target model ID for this image" msgstr "A képhez tartozó model azonosító" -#: common/models.py:1786 +#: common/models.py:1790 msgid "Custom Unit" msgstr "Egyedi mértékegység" -#: common/models.py:1804 +#: common/models.py:1808 msgid "Unit symbol must be unique" msgstr "A mértékegység szimbólumának egyedinek kell lennie" -#: common/models.py:1819 +#: common/models.py:1823 msgid "Unit name must be a valid identifier" msgstr "A mértékegységnek valós azonosítónak kell lennie" -#: common/models.py:1838 +#: common/models.py:1842 msgid "Unit name" msgstr "Egység neve" -#: common/models.py:1845 +#: common/models.py:1849 msgid "Symbol" msgstr "Szimbólum" -#: common/models.py:1846 +#: common/models.py:1850 msgid "Optional unit symbol" msgstr "Opcionális mértékegység szimbólum" -#: common/models.py:1852 +#: common/models.py:1856 msgid "Definition" msgstr "Definíció" -#: common/models.py:1853 +#: common/models.py:1857 msgid "Unit definition" msgstr "Mértékegység definíció" -#: common/models.py:1911 common/models.py:1974 stock/models.py:2967 +#: common/models.py:1917 common/models.py:1980 stock/models.py:2984 #: stock/serializers.py:247 msgid "Attachment" msgstr "Melléklet" -#: common/models.py:1928 +#: common/models.py:1934 msgid "Missing file" msgstr "Hiányzó fájl" -#: common/models.py:1929 +#: common/models.py:1935 msgid "Missing external link" msgstr "Hiányzó külső link" -#: common/models.py:1966 +#: common/models.py:1972 common/models.py:2488 msgid "Model type" msgstr "Modell típusa" -#: common/models.py:1967 +#: common/models.py:1973 msgid "Target model type for image" msgstr "Képhez tartozó model típus" -#: common/models.py:1975 +#: common/models.py:1981 msgid "Select file to attach" msgstr "Válaszd ki a mellekelni kívánt fájlt" -#: common/models.py:1991 +#: common/models.py:1997 msgid "Comment" msgstr "Megjegyzés" -#: common/models.py:1992 +#: common/models.py:1998 msgid "Attachment comment" msgstr "Melléklet megjegyzés" -#: common/models.py:2008 +#: common/models.py:2014 msgid "Upload date" msgstr "Feltöltés dátuma" -#: common/models.py:2009 +#: common/models.py:2015 msgid "Date the file was uploaded" msgstr "A fájl feltöltésének dátuma" -#: common/models.py:2013 +#: common/models.py:2019 msgid "File size" msgstr "Fájl mérete" -#: common/models.py:2013 +#: common/models.py:2019 msgid "File size in bytes" msgstr "Fájlméret bájtban" -#: common/models.py:2051 common/serializers.py:684 +#: common/models.py:2057 common/serializers.py:688 msgid "Invalid model type specified for attachment" msgstr "A melléklet model típusa érvénytelen" -#: common/models.py:2072 +#: common/models.py:2078 msgid "Custom State" msgstr "Egyedi Állapot" -#: common/models.py:2073 +#: common/models.py:2079 msgid "Custom States" msgstr "Egyedi Állapotok" -#: common/models.py:2078 +#: common/models.py:2084 msgid "Reference Status Set" msgstr "Hivatkozott Állapot Készlet" -#: common/models.py:2079 +#: common/models.py:2085 msgid "Status set that is extended with this custom state" msgstr "Az az Állapot készlet, melyet ez az egyedi állapot kibővít" -#: common/models.py:2083 generic/states/serializers.py:18 +#: common/models.py:2089 generic/states/serializers.py:18 msgid "Logical Key" msgstr "Logikai kulcs" -#: common/models.py:2085 +#: common/models.py:2091 msgid "State logical key that is equal to this custom state in business logic" msgstr "Az állapot logikai kulcsa amely megegyezik az üzleti logika egyedi állapotával" -#: common/models.py:2090 common/models.py:2329 company/models.py:622 -#: machine/serializers.py:27 -#: report/templates/report/inventree_test_report.html:104 stock/models.py:2959 +#: common/models.py:2096 common/models.py:2335 machine/serializers.py:27 +#: report/templates/report/inventree_test_report.html:104 stock/models.py:2976 msgid "Value" msgstr "Érték" -#: common/models.py:2091 +#: common/models.py:2097 msgid "Numerical value that will be saved in the models database" msgstr "A model adatbázisba tárolandó szám" -#: common/models.py:2097 +#: common/models.py:2103 msgid "Name of the state" msgstr "Az állapot neve" -#: common/models.py:2106 common/models.py:2335 generic/states/serializers.py:22 +#: common/models.py:2112 common/models.py:2341 generic/states/serializers.py:22 msgid "Label" msgstr "Címke" -#: common/models.py:2107 +#: common/models.py:2113 msgid "Label that will be displayed in the frontend" msgstr "A felületen megjelenített címke" -#: common/models.py:2114 generic/states/serializers.py:24 +#: common/models.py:2120 generic/states/serializers.py:24 msgid "Color" msgstr "Szín" -#: common/models.py:2115 +#: common/models.py:2121 msgid "Color that will be displayed in the frontend" msgstr "A felöleten megjelenő szín" -#: common/models.py:2123 +#: common/models.py:2129 msgid "Model" msgstr "Model" -#: common/models.py:2124 +#: common/models.py:2130 msgid "Model this state is associated with" msgstr "A Model amihez ez az állapot tartozik" -#: common/models.py:2139 +#: common/models.py:2145 msgid "Model must be selected" msgstr "Modelt választani kötelező" -#: common/models.py:2142 +#: common/models.py:2148 msgid "Key must be selected" msgstr "Kulcsot választani kötelező" -#: common/models.py:2145 +#: common/models.py:2151 msgid "Logical key must be selected" msgstr "Logikai kulcsot választani kötelező" -#: common/models.py:2149 +#: common/models.py:2155 msgid "Key must be different from logical key" msgstr "A kulcs és a logikai kulcs nem lehet azonos" -#: common/models.py:2156 +#: common/models.py:2162 msgid "Valid reference status class must be provided" msgstr "Helyes hivatkozási állapot osztályt kell megadni" -#: common/models.py:2162 +#: common/models.py:2168 msgid "Key must be different from the logical keys of the reference status" msgstr "A kulcsnak eltérőnek kell lennie a hivatkozott állapotok logikai kulcsaitól" -#: common/models.py:2169 +#: common/models.py:2175 msgid "Logical key must be in the logical keys of the reference status" msgstr "A logikai kulcsnak szerepelnie kell a hivatkozott állapotok logikai kulcsai közt" -#: common/models.py:2176 +#: common/models.py:2182 msgid "Name must be different from the names of the reference status" msgstr "A Névnek el kell térnie a referencia állapotok neveitől" -#: common/models.py:2216 common/models.py:2323 part/models.py:3889 +#: common/models.py:2222 common/models.py:2329 common/models.py:2533 msgid "Selection List" msgstr "Választéklista" -#: common/models.py:2217 +#: common/models.py:2223 msgid "Selection Lists" msgstr "Választéklisták" -#: common/models.py:2222 +#: common/models.py:2228 msgid "Name of the selection list" msgstr "Választéklista neve" -#: common/models.py:2229 +#: common/models.py:2235 msgid "Description of the selection list" msgstr "Választéklista leírása" -#: common/models.py:2235 part/models.py:1242 +#: common/models.py:2241 part/models.py:1330 msgid "Locked" msgstr "Lezárt" -#: common/models.py:2236 +#: common/models.py:2242 msgid "Is this selection list locked?" msgstr "Választéklista lezárva?" -#: common/models.py:2242 +#: common/models.py:2248 msgid "Can this selection list be used?" msgstr "Választéklista használható?" -#: common/models.py:2250 +#: common/models.py:2256 msgid "Source Plugin" msgstr "Forrás plugin" -#: common/models.py:2251 +#: common/models.py:2257 msgid "Plugin which provides the selection list" msgstr "Választéklista szolgáltató plugin" -#: common/models.py:2256 +#: common/models.py:2262 msgid "Source String" msgstr "Forrás szöveg" -#: common/models.py:2257 +#: common/models.py:2263 msgid "Optional string identifying the source used for this list" msgstr "Elhagyható lista forrás azonosító szöveg" -#: common/models.py:2266 +#: common/models.py:2272 msgid "Default Entry" msgstr "Alapértelmezett bejegyzés" -#: common/models.py:2267 +#: common/models.py:2273 msgid "Default entry for this selection list" msgstr "Alapértelmezett elem ezen a listán" -#: common/models.py:2272 common/models.py:2724 +#: common/models.py:2278 common/models.py:3145 msgid "Created" msgstr "Létrehozva" -#: common/models.py:2273 +#: common/models.py:2279 msgid "Date and time that the selection list was created" msgstr "Választéklista létrehozási dátuma és ideje" -#: common/models.py:2278 +#: common/models.py:2284 msgid "Last Updated" msgstr "Utoljára módosítva" -#: common/models.py:2279 +#: common/models.py:2285 msgid "Date and time that the selection list was last updated" msgstr "A választéklista utolsó módosításának dátuma és ideje" -#: common/models.py:2313 +#: common/models.py:2319 msgid "Selection List Entry" msgstr "Választéklista bejegyzés" -#: common/models.py:2314 +#: common/models.py:2320 msgid "Selection List Entries" msgstr "Választéklista bejegyzések" -#: common/models.py:2324 +#: common/models.py:2330 msgid "Selection list to which this entry belongs" msgstr "Választéklista amihez ez a bejegyzés tartozik" -#: common/models.py:2330 +#: common/models.py:2336 msgid "Value of the selection list entry" msgstr "Választéklista bejegyzés értéke" -#: common/models.py:2336 +#: common/models.py:2342 msgid "Label for the selection list entry" msgstr "Választéklista bejegyzés felirata" -#: common/models.py:2342 +#: common/models.py:2348 msgid "Description of the selection list entry" msgstr "Választéklista bejegyzés leírása" -#: common/models.py:2349 +#: common/models.py:2355 msgid "Is this selection list entry active?" msgstr "Választéklista bejegyzés aktív?" -#: common/models.py:2367 -msgid "Barcode Scan" -msgstr "Vonalkód beolvasás" +#: common/models.py:2387 +msgid "Parameter Template" +msgstr "Paraméter sablon" -#: common/models.py:2371 importer/models.py:546 part/models.py:4060 +#: common/models.py:2388 +msgid "Parameter Templates" +msgstr "" + +#: common/models.py:2425 +msgid "Checkbox parameters cannot have units" +msgstr "Jelölőnégyzet paraméternek nem lehet mértékegysége" + +#: common/models.py:2430 +msgid "Checkbox parameters cannot have choices" +msgstr "Jelölőnégyzet paraméternek nem lehetnek választási lehetőségei" + +#: common/models.py:2450 part/models.py:3707 +msgid "Choices must be unique" +msgstr "A lehetőségek egyediek kell legyenek" + +#: common/models.py:2467 +msgid "Parameter template name must be unique" +msgstr "A paraméter sablon nevének egyedinek kell lennie" + +#: common/models.py:2489 +msgid "Target model type for this parameter template" +msgstr "" + +#: common/models.py:2495 +msgid "Parameter Name" +msgstr "Paraméter neve" + +#: common/models.py:2501 part/models.py:1283 +msgid "Units" +msgstr "Mértékegység" + +#: common/models.py:2502 +msgid "Physical units for this parameter" +msgstr "Paraméter mértékegysége" + +#: common/models.py:2510 +msgid "Parameter description" +msgstr "Paraméter leírása" + +#: common/models.py:2516 +msgid "Checkbox" +msgstr "Jelölőnégyzet" + +#: common/models.py:2517 +msgid "Is this parameter a checkbox?" +msgstr "Ez a paraméter egy jelölőnégyzet?" + +#: common/models.py:2522 part/models.py:3794 +msgid "Choices" +msgstr "Lehetőségek" + +#: common/models.py:2523 +msgid "Valid choices for this parameter (comma-separated)" +msgstr "Választható lehetőségek (vesszővel elválasztva)" + +#: common/models.py:2534 +msgid "Selection list for this parameter" +msgstr "A paraméter választéklistája" + +#: common/models.py:2539 part/models.py:3769 report/models.py:287 +msgid "Enabled" +msgstr "Engedélyezve" + +#: common/models.py:2540 +msgid "Is this parameter template enabled?" +msgstr "" + +#: common/models.py:2581 +msgid "Parameter" +msgstr "" + +#: common/models.py:2582 +msgid "Parameters" +msgstr "" + +#: common/models.py:2628 +msgid "Invalid choice for parameter value" +msgstr "Hibás választás a paraméterre" + +#: common/models.py:2698 common/serializers.py:783 +msgid "Invalid model type specified for parameter" +msgstr "" + +#: common/models.py:2734 +msgid "Model ID" +msgstr "" + +#: common/models.py:2735 +msgid "ID of the target model for this parameter" +msgstr "" + +#: common/models.py:2744 common/setting/system.py:450 report/models.py:373 +#: report/models.py:669 report/serializers.py:94 report/serializers.py:135 +#: stock/serializers.py:234 +msgid "Template" +msgstr "Sablon" + +#: common/models.py:2745 +msgid "Parameter template" +msgstr "" + +#: common/models.py:2750 common/models.py:2792 importer/models.py:546 msgid "Data" msgstr "Adat" -#: common/models.py:2372 +#: common/models.py:2751 +msgid "Parameter Value" +msgstr "Paraméter értéke" + +#: common/models.py:2760 company/models.py:810 order/serializers.py:894 +#: order/serializers.py:2064 part/models.py:4075 part/models.py:4444 +#: report/templates/report/inventree_bill_of_materials_report.html:140 +#: report/templates/report/inventree_purchase_order_report.html:39 +#: report/templates/report/inventree_return_order_report.html:27 +#: report/templates/report/inventree_sales_order_report.html:32 +#: report/templates/report/inventree_stock_location_report.html:105 +#: stock/serializers.py:813 +msgid "Note" +msgstr "Megjegyzés" + +#: common/models.py:2761 stock/serializers.py:718 +msgid "Optional note field" +msgstr "Opcionális megjegyzés mező" + +#: common/models.py:2788 +msgid "Barcode Scan" +msgstr "Vonalkód beolvasás" + +#: common/models.py:2793 msgid "Barcode data" msgstr "Vonalkód adat" -#: common/models.py:2383 +#: common/models.py:2804 msgid "User who scanned the barcode" msgstr "Melyik felhasználó olvasta be a vonalkódot" -#: common/models.py:2388 importer/models.py:69 +#: common/models.py:2809 importer/models.py:69 msgid "Timestamp" msgstr "Időbélyeg" -#: common/models.py:2389 +#: common/models.py:2810 msgid "Date and time of the barcode scan" msgstr "Vonalkód beolvasás dátuma és ideje" -#: common/models.py:2395 +#: common/models.py:2816 msgid "URL endpoint which processed the barcode" msgstr "Vonalkód feldolgozó URL végpont" -#: common/models.py:2402 order/models.py:1832 plugin/serializers.py:93 +#: common/models.py:2823 order/models.py:1833 plugin/serializers.py:93 msgid "Context" msgstr "Kontextus" -#: common/models.py:2403 +#: common/models.py:2824 msgid "Context data for the barcode scan" msgstr "Vonalkód olvasás kontextus adat" -#: common/models.py:2410 +#: common/models.py:2831 msgid "Response" msgstr "Válasz" -#: common/models.py:2411 +#: common/models.py:2832 msgid "Response data from the barcode scan" msgstr "Vonalkód olvasó válasz adat" -#: common/models.py:2417 report/templates/report/inventree_test_report.html:103 -#: stock/models.py:2953 +#: common/models.py:2838 report/templates/report/inventree_test_report.html:103 +#: stock/models.py:2970 msgid "Result" msgstr "Eredmény" -#: common/models.py:2418 +#: common/models.py:2839 msgid "Was the barcode scan successful?" msgstr "Vonalkód olvasás sikeres volt?" -#: common/models.py:2500 +#: common/models.py:2921 msgid "An error occurred" msgstr "Hiba történt" -#: common/models.py:2521 +#: common/models.py:2942 msgid "INVE-E8: Email log deletion is protected. Set INVENTREE_PROTECT_EMAIL_LOG to False to allow deletion." msgstr "INVE-E8: Email napló törlés védett. Állítsd be az INVENTREE_PROTECT_EMAIL_LOG-ot False-ra hogy engedélyezd a törlést." -#: common/models.py:2568 +#: common/models.py:2989 msgid "Email Message" msgstr "E-mail üzenet" -#: common/models.py:2569 +#: common/models.py:2990 msgid "Email Messages" msgstr "E-mail üzenetek" -#: common/models.py:2576 +#: common/models.py:2997 msgid "Announced" msgstr "Bejelentve" -#: common/models.py:2578 +#: common/models.py:2999 msgid "Sent" msgstr "Elküldve" -#: common/models.py:2579 +#: common/models.py:3000 msgid "Failed" msgstr "Megbukott" -#: common/models.py:2582 +#: common/models.py:3003 msgid "Delivered" msgstr "Kiszállítva" -#: common/models.py:2590 +#: common/models.py:3011 msgid "Confirmed" msgstr "Megerősítve" -#: common/models.py:2596 +#: common/models.py:3017 msgid "Inbound" msgstr "Bejövő" -#: common/models.py:2597 +#: common/models.py:3018 msgid "Outbound" msgstr "Kimenő" -#: common/models.py:2602 +#: common/models.py:3023 msgid "No Reply" msgstr "Nincs válasz" -#: common/models.py:2603 +#: common/models.py:3024 msgid "Track Delivery" msgstr "Kiszállítás követése" -#: common/models.py:2604 +#: common/models.py:3025 msgid "Track Read" msgstr "Olvasási visszaigazolás" -#: common/models.py:2605 +#: common/models.py:3026 msgid "Track Click" msgstr "Kattintások nyomkövetése" -#: common/models.py:2608 common/models.py:2711 +#: common/models.py:3029 common/models.py:3132 msgid "Global ID" msgstr "Globális ID" -#: common/models.py:2621 +#: common/models.py:3042 msgid "Identifier for this message (might be supplied by external system)" msgstr "Üzenet azonosítója (külső rendszertől származhat)" -#: common/models.py:2628 +#: common/models.py:3049 msgid "Thread ID" msgstr "Szál ID" -#: common/models.py:2630 +#: common/models.py:3051 msgid "Identifier for this message thread (might be supplied by external system)" msgstr "Üzenet-sor azonosító (külső rendszerből származhat)" -#: common/models.py:2639 +#: common/models.py:3060 msgid "Thread" msgstr "Szál" -#: common/models.py:2640 +#: common/models.py:3061 msgid "Linked thread for this message" msgstr "Ehhez az üzenethez kapcsolódó üzenet-lánc" -#: common/models.py:2656 -msgid "Prioriy" -msgstr "Prioritás" +#: common/models.py:3077 +msgid "Priority" +msgstr "" -#: common/models.py:2698 +#: common/models.py:3119 msgid "Email Thread" msgstr "Email szál" -#: common/models.py:2699 +#: common/models.py:3120 msgid "Email Threads" msgstr "Email szálak" -#: common/models.py:2705 generic/states/serializers.py:16 +#: common/models.py:3126 generic/states/serializers.py:16 #: machine/serializers.py:24 plugin/models.py:46 users/models.py:113 msgid "Key" msgstr "Kulcs" -#: common/models.py:2708 +#: common/models.py:3129 msgid "Unique key for this thread (used to identify the thread)" msgstr "Az üzenetlánc egyedi azonosítója (az üzenetlánc azonosítására szolgál)" -#: common/models.py:2712 +#: common/models.py:3133 msgid "Unique identifier for this thread" msgstr "Üzenetlánc egyedi azonosítója" -#: common/models.py:2719 +#: common/models.py:3140 msgid "Started Internal" msgstr "Belső kezdés" -#: common/models.py:2720 +#: common/models.py:3141 msgid "Was this thread started internally?" msgstr "Ez az üzenetlánc belül indult?" -#: common/models.py:2725 +#: common/models.py:3146 msgid "Date and time that the thread was created" msgstr "Az üzenetlánc kezdeti dátuma és ideje" -#: common/models.py:2730 +#: common/models.py:3151 msgid "Date and time that the thread was last updated" msgstr "Az üzenetlánc utolsó módosításának dátuma és ideje" @@ -2200,7 +2340,7 @@ msgstr "{verbose_name} megszakítva" msgid "A order that is assigned to you was canceled" msgstr "Egy hozzád rendelt megrendelés megszakítva" -#: common/notifications.py:73 common/notifications.py:80 order/api.py:594 +#: common/notifications.py:73 common/notifications.py:80 order/api.py:600 msgid "Items Received" msgstr "Készlet érkezett" @@ -2212,88 +2352,93 @@ msgstr "Készlet érkezett egy beszerzési megrendeléshez" msgid "Items have been received against a return order" msgstr "Készlet érkezett vissza egy visszavétel miatt" -#: common/serializers.py:145 +#: common/serializers.py:149 msgid "Indicates if the setting is overridden by an environment variable" msgstr "Ez a beállítás felül van bírálva egy környezeti változó által" -#: common/serializers.py:147 +#: common/serializers.py:151 msgid "Override" msgstr "Felülbírálás" -#: common/serializers.py:498 +#: common/serializers.py:502 msgid "Is Running" msgstr "Folyamatban" -#: common/serializers.py:504 +#: common/serializers.py:508 msgid "Pending Tasks" msgstr "Folyamatban lévő feladatok" -#: common/serializers.py:510 +#: common/serializers.py:514 msgid "Scheduled Tasks" msgstr "Ütemezett Feladatok" -#: common/serializers.py:516 +#: common/serializers.py:520 msgid "Failed Tasks" msgstr "Hibás feladatok" -#: common/serializers.py:531 +#: common/serializers.py:535 msgid "Task ID" msgstr "Feladat ID" -#: common/serializers.py:531 +#: common/serializers.py:535 msgid "Unique task ID" msgstr "Egyedi feladat ID" -#: common/serializers.py:533 +#: common/serializers.py:537 msgid "Lock" msgstr "Zárol" -#: common/serializers.py:533 +#: common/serializers.py:537 msgid "Lock time" msgstr "Zárolási idő" -#: common/serializers.py:535 +#: common/serializers.py:539 msgid "Task name" msgstr "Feladat neve" -#: common/serializers.py:537 +#: common/serializers.py:541 msgid "Function" msgstr "Funkció" -#: common/serializers.py:537 +#: common/serializers.py:541 msgid "Function name" msgstr "Funkció neve" -#: common/serializers.py:539 +#: common/serializers.py:543 msgid "Arguments" msgstr "Paraméterek" -#: common/serializers.py:539 +#: common/serializers.py:543 msgid "Task arguments" msgstr "Feladat paraméterei" -#: common/serializers.py:542 +#: common/serializers.py:546 msgid "Keyword Arguments" msgstr "Kulcsszó paraméterek" -#: common/serializers.py:542 +#: common/serializers.py:546 msgid "Task keyword arguments" msgstr "Feladat kulcsszó paraméterek" -#: common/serializers.py:652 +#: common/serializers.py:656 msgid "Filename" msgstr "Fájlnév" -#: common/serializers.py:659 importer/models.py:89 report/api.py:41 +#: common/serializers.py:663 common/serializers.py:730 +#: common/serializers.py:805 importer/models.py:89 report/api.py:41 #: report/models.py:293 report/serializers.py:52 msgid "Model Type" msgstr "Modell típusa" -#: common/serializers.py:687 +#: common/serializers.py:691 msgid "User does not have permission to create or edit attachments for this model" msgstr "A felhasználónak nincs joga létrehozni vagy módosítani ehhez a modelhez tartozó mellékleteket" -#: common/serializers.py:731 common/serializers.py:834 +#: common/serializers.py:786 +msgid "User does not have permission to create or edit parameters for this model" +msgstr "" + +#: common/serializers.py:850 common/serializers.py:953 msgid "Selection list is locked" msgstr "Választéklista lezárva" @@ -2369,7 +2514,7 @@ msgstr "Verzió infók megjelenítésének tiltása" msgid "Show the `about` modal only to superusers" msgstr "Verzió infók megjelenítése csak admin felhasználóknak" -#: common/setting/system.py:224 company/models.py:144 company/models.py:145 +#: common/setting/system.py:224 company/models.py:145 company/models.py:146 msgid "Company name" msgstr "Cég neve" @@ -2412,8 +2557,8 @@ msgstr "Milyen gyakran frissítse az árfolyamokat (nulla a kikapcsoláshoz)" #: common/setting/system.py:253 common/setting/system.py:293 #: common/setting/system.py:306 common/setting/system.py:314 #: common/setting/system.py:321 common/setting/system.py:330 -#: common/setting/system.py:339 common/setting/system.py:588 -#: common/setting/system.py:616 common/setting/system.py:707 +#: common/setting/system.py:339 common/setting/system.py:580 +#: common/setting/system.py:608 common/setting/system.py:707 #: common/setting/system.py:1103 common/setting/system.py:1119 msgid "days" msgstr "nap" @@ -2658,12 +2803,6 @@ msgstr "Kategória paraméter sablonok másolása" msgid "Copy category parameter templates when creating a part" msgstr "Kategória paraméter sablonok másolása alkatrész létrehozásakor" -#: common/setting/system.py:450 part/models.py:4054 report/models.py:373 -#: report/models.py:669 report/serializers.py:94 report/serializers.py:135 -#: stock/serializers.py:234 -msgid "Template" -msgstr "Sablon" - #: common/setting/system.py:451 msgid "Parts are templates by default" msgstr "Alkatrészek alapból sablon alkatrészek legyenek" @@ -2672,8 +2811,8 @@ msgstr "Alkatrészek alapból sablon alkatrészek legyenek" msgid "Parts can be assembled from other components by default" msgstr "Alkatrészeket alapból lehessen gyártani másik alkatrészekből" -#: common/setting/system.py:462 part/models.py:1208 part/serializers.py:1734 -#: part/serializers.py:1741 +#: common/setting/system.py:462 part/models.py:1296 part/serializers.py:1599 +#: part/serializers.py:1606 msgid "Component" msgstr "Összetevő" @@ -2681,7 +2820,7 @@ msgstr "Összetevő" msgid "Parts can be used as sub-components by default" msgstr "Alkatrészek alapból használhatók összetevőként más alkatrészekhez" -#: common/setting/system.py:468 part/models.py:1226 +#: common/setting/system.py:468 part/models.py:1314 msgid "Purchaseable" msgstr "Beszerezhető" @@ -2689,7 +2828,7 @@ msgstr "Beszerezhető" msgid "Parts are purchaseable by default" msgstr "Alkatrészek alapból beszerezhetők legyenek" -#: common/setting/system.py:474 part/models.py:1232 stock/api.py:643 +#: common/setting/system.py:474 part/models.py:1320 stock/api.py:643 msgid "Salable" msgstr "Értékesíthető" @@ -2701,7 +2840,7 @@ msgstr "Alkatrészek alapból eladhatók legyenek" msgid "Parts are trackable by default" msgstr "Alkatrészek alapból követésre kötelezettek legyenek" -#: common/setting/system.py:486 part/models.py:1248 +#: common/setting/system.py:486 part/models.py:1336 msgid "Virtual" msgstr "Virtuális" @@ -2750,158 +2889,158 @@ msgid "Part category default icon (empty means no icon)" msgstr "Alkatrész kategória alapértelmezett ikon (üres ha nincs)" #: common/setting/system.py:525 -msgid "Enforce Parameter Units" -msgstr "Csak választható mértékegységek" - -#: common/setting/system.py:527 -msgid "If units are provided, parameter values must match the specified units" -msgstr "A megadott mértékegység csak a beállított lehetőségekből legyen elfogadva" - -#: common/setting/system.py:533 msgid "Minimum Pricing Decimal Places" msgstr "Áraknál használt tizedesjegyek min. száma" -#: common/setting/system.py:535 +#: common/setting/system.py:527 msgid "Minimum number of decimal places to display when rendering pricing data" msgstr "Tizedejegyek minimális száma az árak megjelenítésekor" -#: common/setting/system.py:546 +#: common/setting/system.py:538 msgid "Maximum Pricing Decimal Places" msgstr "Áraknál használt tizedesjegyek max. száma" -#: common/setting/system.py:548 +#: common/setting/system.py:540 msgid "Maximum number of decimal places to display when rendering pricing data" msgstr "Tizedejegyek maximális száma az árak megjelenítésekor" -#: common/setting/system.py:559 +#: common/setting/system.py:551 msgid "Use Supplier Pricing" msgstr "Beszállítói árazás használata" -#: common/setting/system.py:561 +#: common/setting/system.py:553 msgid "Include supplier price breaks in overall pricing calculations" msgstr "Beszállítói ársávok megjelenítése az általános árkalkulációkban" -#: common/setting/system.py:567 +#: common/setting/system.py:559 msgid "Purchase History Override" msgstr "Beszerzési előzmények felülbírálása" -#: common/setting/system.py:569 +#: common/setting/system.py:561 msgid "Historical purchase order pricing overrides supplier price breaks" msgstr "Beszerzési árelőzmények felülírják a beszállítói ársávokat" -#: common/setting/system.py:575 +#: common/setting/system.py:567 msgid "Use Stock Item Pricing" msgstr "Készlet tétel ár használata" -#: common/setting/system.py:577 +#: common/setting/system.py:569 msgid "Use pricing from manually entered stock data for pricing calculations" msgstr "A kézzel bevitt készlet tétel árak használata az árszámításokhoz" -#: common/setting/system.py:583 +#: common/setting/system.py:575 msgid "Stock Item Pricing Age" msgstr "Készlet tétel ár kora" -#: common/setting/system.py:585 +#: common/setting/system.py:577 msgid "Exclude stock items older than this number of days from pricing calculations" msgstr "Az ennyi napnál régebbi készlet tételek kizárása az árszámításból" -#: common/setting/system.py:592 +#: common/setting/system.py:584 msgid "Use Variant Pricing" msgstr "Alkatrészváltozat árak használata" -#: common/setting/system.py:593 +#: common/setting/system.py:585 msgid "Include variant pricing in overall pricing calculations" msgstr "Alkatrészváltozat árak megjelenítése az általános árkalkulációkban" -#: common/setting/system.py:598 +#: common/setting/system.py:590 msgid "Active Variants Only" msgstr "Csak az aktív változatokat" -#: common/setting/system.py:600 +#: common/setting/system.py:592 msgid "Only use active variant parts for calculating variant pricing" msgstr "Csak az aktív alkatrészváltozatok használata az árazásban" -#: common/setting/system.py:606 +#: common/setting/system.py:598 msgid "Auto Update Pricing" msgstr "Árazás automatikus frissítése" -#: common/setting/system.py:608 +#: common/setting/system.py:600 msgid "Automatically update part pricing when internal data changes" msgstr "Alkatrész árazás automatikus frissítése belső adat változáskor" -#: common/setting/system.py:614 +#: common/setting/system.py:606 msgid "Pricing Rebuild Interval" msgstr "Árazás újraszámítás gyakoriság" -#: common/setting/system.py:615 +#: common/setting/system.py:607 msgid "Number of days before part pricing is automatically updated" msgstr "Árak automatikus frissítése ennyi nap után" -#: common/setting/system.py:621 +#: common/setting/system.py:613 msgid "Internal Prices" msgstr "Belső árak" -#: common/setting/system.py:622 +#: common/setting/system.py:614 msgid "Enable internal prices for parts" msgstr "Alkatrészekhez belső ár engedélyezése" -#: common/setting/system.py:627 +#: common/setting/system.py:619 msgid "Internal Price Override" msgstr "Belső ár felülbírálása" -#: common/setting/system.py:629 +#: common/setting/system.py:621 msgid "If available, internal prices override price range calculations" msgstr "Ha elérhetőek az árkalkulációkban a belső árak lesznek alapul véve" -#: common/setting/system.py:635 +#: common/setting/system.py:627 msgid "Enable label printing" msgstr "Címke nyomtatás engedélyezése" -#: common/setting/system.py:636 +#: common/setting/system.py:628 msgid "Enable label printing from the web interface" msgstr "Címke nyomtatás engedélyezése a web felületről" -#: common/setting/system.py:641 +#: common/setting/system.py:633 msgid "Label Image DPI" msgstr "Címke kép DPI" -#: common/setting/system.py:643 +#: common/setting/system.py:635 msgid "DPI resolution when generating image files to supply to label printing plugins" msgstr "Képek felbontása amik átadásra kerülnek címkenyomtató pluginoknak" -#: common/setting/system.py:649 +#: common/setting/system.py:641 msgid "Enable Reports" msgstr "Riportok engedélyezése" -#: common/setting/system.py:650 +#: common/setting/system.py:642 msgid "Enable generation of reports" msgstr "Riportok előállításának engedélyezése" -#: common/setting/system.py:655 +#: common/setting/system.py:647 msgid "Debug Mode" msgstr "Debug mód" -#: common/setting/system.py:656 +#: common/setting/system.py:648 msgid "Generate reports in debug mode (HTML output)" msgstr "Riportok előállítása HTML formátumban (hibakereséshez)" -#: common/setting/system.py:661 +#: common/setting/system.py:653 msgid "Log Report Errors" msgstr "Jelentési hibák naplózása" -#: common/setting/system.py:662 +#: common/setting/system.py:654 msgid "Log errors which occur when generating reports" msgstr "Jelentések generálása közben jelentkező hibák naplózása" -#: common/setting/system.py:667 plugin/builtin/labels/label_sheet.py:29 +#: common/setting/system.py:659 plugin/builtin/labels/label_sheet.py:29 #: report/models.py:381 msgid "Page Size" msgstr "Lapméret" -#: common/setting/system.py:668 +#: common/setting/system.py:660 msgid "Default page size for PDF reports" msgstr "Alapértelmezett lapméret a PDF riportokhoz" +#: common/setting/system.py:665 +msgid "Enforce Parameter Units" +msgstr "Csak választható mértékegységek" + +#: common/setting/system.py:667 +msgid "If units are provided, parameter values must match the specified units" +msgstr "A megadott mértékegység csak a beállított lehetőségekből legyen elfogadva" + #: common/setting/system.py:673 msgid "Globally Unique Serials" msgstr "Globálisan egyedi sorozatszámok" @@ -3457,688 +3596,677 @@ msgid "Display PDF reports in the browser, instead of downloading as a file" msgstr "PDF riport megjelenítése a böngészőben letöltés helyett" #: common/setting/user.py:45 +msgid "Barcode Scanner in Form Fields" +msgstr "" + +#: common/setting/user.py:46 +msgid "Allow barcode scanner input in form fields" +msgstr "" + +#: common/setting/user.py:51 msgid "Search Parts" msgstr "Alkatrészek keresése" -#: common/setting/user.py:46 +#: common/setting/user.py:52 msgid "Display parts in search preview window" msgstr "Alkatrészek megjelenítése a keresési előnézetben" -#: common/setting/user.py:51 +#: common/setting/user.py:57 msgid "Search Supplier Parts" msgstr "Beszállítói alkatrészek keresése" -#: common/setting/user.py:52 +#: common/setting/user.py:58 msgid "Display supplier parts in search preview window" msgstr "Beszállítói alkatrészek megjelenítése a keresési előnézetben" -#: common/setting/user.py:57 +#: common/setting/user.py:63 msgid "Search Manufacturer Parts" msgstr "Gyártói alkatrészek keresése" -#: common/setting/user.py:58 +#: common/setting/user.py:64 msgid "Display manufacturer parts in search preview window" msgstr "Gyártói alkatrészek megjelenítése a keresési előnézetben" -#: common/setting/user.py:63 +#: common/setting/user.py:69 msgid "Hide Inactive Parts" msgstr "Inaktív alkatrészek elrejtése" -#: common/setting/user.py:64 +#: common/setting/user.py:70 msgid "Excluded inactive parts from search preview window" msgstr "Inaktív alkatrészek kihagyása a keresési előnézet találataiból" -#: common/setting/user.py:69 +#: common/setting/user.py:75 msgid "Search Categories" msgstr "Kategóriák keresése" -#: common/setting/user.py:70 +#: common/setting/user.py:76 msgid "Display part categories in search preview window" msgstr "Alkatrész kategóriák megjelenítése a keresési előnézetben" -#: common/setting/user.py:75 +#: common/setting/user.py:81 msgid "Search Stock" msgstr "Készlet keresése" -#: common/setting/user.py:76 +#: common/setting/user.py:82 msgid "Display stock items in search preview window" msgstr "Készlet tételek megjelenítése a keresési előnézetben" -#: common/setting/user.py:81 +#: common/setting/user.py:87 msgid "Hide Unavailable Stock Items" msgstr "Nem elérhető készlet tételek elrejtése" -#: common/setting/user.py:83 +#: common/setting/user.py:89 msgid "Exclude stock items which are not available from the search preview window" msgstr "Nem elérhető készlet kihagyása a keresési előnézet találataiból" -#: common/setting/user.py:89 +#: common/setting/user.py:95 msgid "Search Locations" msgstr "Helyek keresése" -#: common/setting/user.py:90 +#: common/setting/user.py:96 msgid "Display stock locations in search preview window" msgstr "Készlet helyek megjelenítése a keresési előnézetben" -#: common/setting/user.py:95 +#: common/setting/user.py:101 msgid "Search Companies" msgstr "Cégek keresése" -#: common/setting/user.py:96 +#: common/setting/user.py:102 msgid "Display companies in search preview window" msgstr "Cégek megjelenítése a keresési előnézetben" -#: common/setting/user.py:101 +#: common/setting/user.py:107 msgid "Search Build Orders" msgstr "Gyártási utasítások keresése" -#: common/setting/user.py:102 +#: common/setting/user.py:108 msgid "Display build orders in search preview window" msgstr "Gyártási utasítások megjelenítése a keresés előnézet ablakban" -#: common/setting/user.py:107 +#: common/setting/user.py:113 msgid "Search Purchase Orders" msgstr "Beszerzési rendelések keresése" -#: common/setting/user.py:108 +#: common/setting/user.py:114 msgid "Display purchase orders in search preview window" msgstr "Beszerzési rendelések megjelenítése a keresési előnézetben" -#: common/setting/user.py:113 +#: common/setting/user.py:119 msgid "Exclude Inactive Purchase Orders" msgstr "Inaktív beszerzési rendelések kihagyása" -#: common/setting/user.py:114 +#: common/setting/user.py:120 msgid "Exclude inactive purchase orders from search preview window" msgstr "Inaktív beszerzési rendelések kihagyása a keresési előnézet találataiból" -#: common/setting/user.py:119 +#: common/setting/user.py:125 msgid "Search Sales Orders" msgstr "Vevői rendelések keresése" -#: common/setting/user.py:120 +#: common/setting/user.py:126 msgid "Display sales orders in search preview window" msgstr "Vevői rendelések megjelenítése a keresési előnézetben" -#: common/setting/user.py:125 +#: common/setting/user.py:131 msgid "Exclude Inactive Sales Orders" msgstr "Inaktív vevői rendelések kihagyása" -#: common/setting/user.py:126 +#: common/setting/user.py:132 msgid "Exclude inactive sales orders from search preview window" msgstr "Inaktív vevői rendelések kihagyása a keresési előnézet találataiból" -#: common/setting/user.py:131 +#: common/setting/user.py:137 msgid "Search Sales Order Shipments" msgstr "Értékesítési rendelés szállítmányok" -#: common/setting/user.py:132 +#: common/setting/user.py:138 msgid "Display sales order shipments in search preview window" msgstr "Értékesítési rendelések megjelenítése a keresési előnézetben" -#: common/setting/user.py:137 +#: common/setting/user.py:143 msgid "Search Return Orders" msgstr "Visszavétel keresése" -#: common/setting/user.py:138 +#: common/setting/user.py:144 msgid "Display return orders in search preview window" msgstr "Visszavételek megjelenítése a keresés előnézet ablakban" -#: common/setting/user.py:143 +#: common/setting/user.py:149 msgid "Exclude Inactive Return Orders" msgstr "Inaktív visszavételek kihagyása" -#: common/setting/user.py:144 +#: common/setting/user.py:150 msgid "Exclude inactive return orders from search preview window" msgstr "Inaktív visszavételek kihagyása a keresési előnézet találataiból" -#: common/setting/user.py:149 +#: common/setting/user.py:155 msgid "Search Preview Results" msgstr "Keresési előnézet eredményei" -#: common/setting/user.py:151 +#: common/setting/user.py:157 msgid "Number of results to show in each section of the search preview window" msgstr "A keresési előnézetben megjelenítendő eredmények száma szekciónként" -#: common/setting/user.py:157 +#: common/setting/user.py:163 msgid "Regex Search" msgstr "Regex keresés" -#: common/setting/user.py:158 +#: common/setting/user.py:164 msgid "Enable regular expressions in search queries" msgstr "Reguláris kifejezések engedélyezése a keresésekben" -#: common/setting/user.py:163 +#: common/setting/user.py:169 msgid "Whole Word Search" msgstr "Teljes szó keresés" -#: common/setting/user.py:164 +#: common/setting/user.py:170 msgid "Search queries return results for whole word matches" msgstr "A keresések csak teljes szóra egyező találatokat adjanak" -#: common/setting/user.py:169 +#: common/setting/user.py:175 msgid "Search Notes" msgstr "Megjegyzések keresése" -#: common/setting/user.py:171 +#: common/setting/user.py:177 msgid "Search queries return results for matches from the item's notes" msgstr "A keresések a tétel jegyzeteiben is keresnek" -#: common/setting/user.py:177 +#: common/setting/user.py:183 msgid "Escape Key Closes Forms" msgstr "ESC billentyű zárja be a formot" -#: common/setting/user.py:178 +#: common/setting/user.py:184 msgid "Use the escape key to close modal forms" msgstr "ESC billentyű használata a modális formok bezárásához" -#: common/setting/user.py:183 +#: common/setting/user.py:189 msgid "Fixed Navbar" msgstr "Rögzített menüsor" -#: common/setting/user.py:184 +#: common/setting/user.py:190 msgid "The navbar position is fixed to the top of the screen" msgstr "A menü pozíciója mindig rögzítve a lap tetején" -#: common/setting/user.py:189 +#: common/setting/user.py:195 msgid "Fixed Table Headers" msgstr "Fix táblázat fejlécek" -#: common/setting/user.py:190 +#: common/setting/user.py:196 msgid "Table headers are fixed to the top of the table" msgstr "Táblázat fejlécek rögzítve vannak a táblázat tetejéhez" -#: common/setting/user.py:195 +#: common/setting/user.py:201 msgid "Show Spotlight" msgstr "Reflektorfény megjelenítése" -#: common/setting/user.py:196 +#: common/setting/user.py:202 msgid "Enable spotlight navigation functionality" msgstr "Reflektorfény navigációs funkció engedélyezése" -#: common/setting/user.py:201 +#: common/setting/user.py:207 msgid "Navigation Icons" msgstr "Navigációs ikonok" -#: common/setting/user.py:202 +#: common/setting/user.py:208 msgid "Display icons in the navigation bar" msgstr "Ikonok megjelenítése a navigációs sávon" -#: common/setting/user.py:207 +#: common/setting/user.py:213 msgid "Date Format" msgstr "Dátum formátum" -#: common/setting/user.py:208 +#: common/setting/user.py:214 msgid "Preferred format for displaying dates" msgstr "Preferált dátum formátum a dátumok kijelzésekor" -#: common/setting/user.py:221 +#: common/setting/user.py:227 msgid "Show Stock History" msgstr "Készlettörténet mutatása" -#: common/setting/user.py:222 +#: common/setting/user.py:228 msgid "Display stock history information in the part detail page" msgstr "Készlet történet mutatása az alkatrész részletes nézetén" -#: common/setting/user.py:227 +#: common/setting/user.py:233 msgid "Show Last Breadcrumb" msgstr "Az utolsó navigációs morzsa megjelenítése" -#: common/setting/user.py:228 +#: common/setting/user.py:234 msgid "Show the current page in breadcrumbs" msgstr "Az aktuális oldal mutatása a morzsák közt" -#: common/setting/user.py:233 +#: common/setting/user.py:239 msgid "Show full stock location in tables" msgstr "Teljes készlethely mutatása a táblákban" -#: common/setting/user.py:235 +#: common/setting/user.py:241 msgid "Disabled: The full location path is displayed as a hover tooltip. Enabled: The full location path is displayed as plain text." msgstr "Letiltva: A teljes készlethely elérési út megjelenik tooltipben ha fölé megy az egér. Engedélyezve: a teljes elérési út látszik szövegesen." -#: common/setting/user.py:241 +#: common/setting/user.py:247 msgid "Show full part categories in tables" msgstr "Teljes alkatrész kategória mutatása táblázatokban" -#: common/setting/user.py:243 +#: common/setting/user.py:249 msgid "Disabled: The full category path is displayed as a hover tooltip. Enabled: The full category path is displayed as plain text." msgstr "Letiltva: A teljes kategória elérési út megjelenik tooltipként. Engedélyezve: A teljes kategória elérési út megjelenik szövegként." -#: common/setting/user.py:249 +#: common/setting/user.py:255 msgid "Receive error reports" msgstr "Hibariportok fogadása" -#: common/setting/user.py:250 +#: common/setting/user.py:256 msgid "Receive notifications for system errors" msgstr "Értesítések fogadása a rendszerhibákról" -#: common/setting/user.py:255 +#: common/setting/user.py:261 msgid "Last used printing machines" msgstr "Utoljára használt nyomtató gépek" -#: common/setting/user.py:256 +#: common/setting/user.py:262 msgid "Save the last used printing machines for a user" msgstr "Az utoljára használt nyomtató tárolása a felhasználóhoz" -#: common/validators.py:34 +#: common/validators.py:38 +msgid "All models" +msgstr "" + +#: common/validators.py:63 msgid "No attachment model type provided" msgstr "A melléklethez nem tartozik model típus" -#: common/validators.py:40 +#: common/validators.py:69 msgid "Invalid attachment model type" msgstr "Érvénytelen melléklet model típus" -#: common/validators.py:81 +#: common/validators.py:110 msgid "Minimum places cannot be greater than maximum places" msgstr "A legkisebb helyiérték nem lehet nagyobb mint a legnagyobb helyiérték" -#: common/validators.py:93 +#: common/validators.py:122 msgid "Maximum places cannot be less than minimum places" msgstr "A legnagyobb helyiérték nem lehet kisebb mint a legkisebb helyiérték" -#: common/validators.py:104 +#: common/validators.py:133 msgid "An empty domain is not allowed." msgstr "Üres domain nem engedélyezett." -#: common/validators.py:106 +#: common/validators.py:135 #, python-brace-format msgid "Invalid domain name: {domain}" msgstr "Érvénytelen domain név: {domain}" -#: common/validators.py:122 +#: common/validators.py:151 msgid "Value must be uppercase" msgstr "Csupa nagybetűs kell" -#: common/validators.py:128 +#: common/validators.py:157 msgid "Value must be a valid variable identifier" msgstr "Az érték egy változó neve legyen" -#: company/api.py:147 +#: company/api.py:141 msgid "Part is Active" msgstr "Az alkatrész aktív" -#: company/api.py:151 +#: company/api.py:145 msgid "Manufacturer is Active" msgstr "A Gyártó Aktív" -#: company/api.py:286 +#: company/api.py:246 msgid "Supplier Part is Active" msgstr "A Szállítói Alkatrész Aktív" -#: company/api.py:290 +#: company/api.py:250 msgid "Internal Part is Active" msgstr "A saját alkatrész Aktív" -#: company/api.py:295 +#: company/api.py:255 msgid "Supplier is Active" msgstr "A Beszállító Aktív" -#: company/api.py:307 company/models.py:520 company/serializers.py:457 -#: part/serializers.py:566 +#: company/api.py:267 company/models.py:522 company/serializers.py:502 +#: part/serializers.py:477 msgid "Manufacturer" msgstr "Gyártó" -#: company/api.py:314 company/models.py:121 company/models.py:392 +#: company/api.py:274 company/models.py:122 company/models.py:393 #: stock/api.py:900 msgid "Company" msgstr "Cég" -#: company/api.py:324 +#: company/api.py:284 msgid "Has Stock" msgstr "Van készleten" -#: company/models.py:122 +#: company/models.py:123 msgid "Companies" msgstr "Cégek" -#: company/models.py:150 +#: company/models.py:151 msgid "Company description" msgstr "Cég leírása" -#: company/models.py:151 +#: company/models.py:152 msgid "Description of the company" msgstr "A cég leírása" -#: company/models.py:157 +#: company/models.py:158 msgid "Website" msgstr "Weboldal" -#: company/models.py:158 +#: company/models.py:159 msgid "Company website URL" msgstr "Cég weboldala" -#: company/models.py:164 +#: company/models.py:165 msgid "Phone number" msgstr "Telefonszám" -#: company/models.py:166 +#: company/models.py:167 msgid "Contact phone number" msgstr "Kapcsolattartó telefonszáma" -#: company/models.py:173 +#: company/models.py:174 msgid "Contact email address" msgstr "Kapcsolattartó email címe" -#: company/models.py:178 company/models.py:296 order/models.py:513 +#: company/models.py:179 company/models.py:297 order/models.py:514 #: users/models.py:561 msgid "Contact" msgstr "Névjegy" -#: company/models.py:180 +#: company/models.py:181 msgid "Point of contact" msgstr "Kapcsolattartó" -#: company/models.py:186 +#: company/models.py:187 msgid "Link to external company information" msgstr "Link a külső céginformációhoz" -#: company/models.py:191 +#: company/models.py:192 msgid "Is this company active?" msgstr "Ez a vállalat aktív?" -#: company/models.py:196 +#: company/models.py:197 msgid "Is customer" msgstr "Vevő" -#: company/models.py:197 +#: company/models.py:198 msgid "Do you sell items to this company?" msgstr "Értékesítesz alkatrészeket ennek a cégnek?" -#: company/models.py:202 +#: company/models.py:203 msgid "Is supplier" msgstr "Beszállító" -#: company/models.py:203 +#: company/models.py:204 msgid "Do you purchase items from this company?" msgstr "Vásárolsz alkatrészeket ettől a cégtől?" -#: company/models.py:208 +#: company/models.py:209 msgid "Is manufacturer" msgstr "Gyártó" -#: company/models.py:209 +#: company/models.py:210 msgid "Does this company manufacture parts?" msgstr "Gyárt ez a cég alkatrészeket?" -#: company/models.py:217 +#: company/models.py:218 msgid "Default currency used for this company" msgstr "Cég által használt alapértelmezett pénznem" -#: company/models.py:224 +#: company/models.py:225 msgid "Tax ID" msgstr "Adószám" -#: company/models.py:225 +#: company/models.py:226 msgid "Company Tax ID" msgstr "Céges adószám" -#: company/models.py:335 order/models.py:523 order/models.py:2288 +#: company/models.py:336 order/models.py:524 order/models.py:2289 msgid "Address" msgstr "Cím" -#: company/models.py:336 +#: company/models.py:337 msgid "Addresses" msgstr "Címek" -#: company/models.py:393 +#: company/models.py:394 msgid "Select company" msgstr "Cég kiválasztása" -#: company/models.py:398 +#: company/models.py:399 msgid "Address title" msgstr "Cím megnevezése" -#: company/models.py:399 +#: company/models.py:400 msgid "Title describing the address entry" msgstr "Címhez tartozó leírás, megnevezés" -#: company/models.py:405 +#: company/models.py:406 msgid "Primary address" msgstr "Elsődleges cím" -#: company/models.py:406 +#: company/models.py:407 msgid "Set as primary address" msgstr "Beállítás elsődleges címként" -#: company/models.py:411 +#: company/models.py:412 msgid "Line 1" msgstr "1. sor" -#: company/models.py:412 +#: company/models.py:413 msgid "Address line 1" msgstr "Cím első sora" -#: company/models.py:418 +#: company/models.py:419 msgid "Line 2" msgstr "2. sor" -#: company/models.py:419 +#: company/models.py:420 msgid "Address line 2" msgstr "Cím második sora" -#: company/models.py:425 company/models.py:426 +#: company/models.py:426 company/models.py:427 msgid "Postal code" msgstr "Irányítószám" -#: company/models.py:432 +#: company/models.py:433 msgid "City/Region" msgstr "Város/Régió" -#: company/models.py:433 +#: company/models.py:434 msgid "Postal code city/region" msgstr "Irányítószám város/régió" -#: company/models.py:439 +#: company/models.py:440 msgid "State/Province" msgstr "Állam/Megye" -#: company/models.py:440 +#: company/models.py:441 msgid "State or province" msgstr "Állam vagy megye" -#: company/models.py:446 +#: company/models.py:447 msgid "Country" msgstr "Ország" -#: company/models.py:447 +#: company/models.py:448 msgid "Address country" msgstr "Cím országa" -#: company/models.py:453 +#: company/models.py:454 msgid "Courier shipping notes" msgstr "Megjegyzés a futárnak" -#: company/models.py:454 +#: company/models.py:455 msgid "Notes for shipping courier" msgstr "Futárnak szóló megjegyzések" -#: company/models.py:460 +#: company/models.py:461 msgid "Internal shipping notes" msgstr "Belső szállítási megjegyzések" -#: company/models.py:461 +#: company/models.py:462 msgid "Shipping notes for internal use" msgstr "Szállítási megjegyzések belső használatra" -#: company/models.py:468 +#: company/models.py:469 msgid "Link to address information (external)" msgstr "Link a címinformációkhoz (külső)" -#: company/models.py:492 company/models.py:609 company/models.py:832 -#: company/serializers.py:471 stock/api.py:561 +#: company/models.py:494 company/models.py:786 company/serializers.py:516 +#: stock/api.py:561 msgid "Manufacturer Part" msgstr "Gyártói alkatrész" -#: company/models.py:509 company/models.py:800 stock/models.py:1025 +#: company/models.py:511 company/models.py:754 stock/models.py:1025 #: stock/serializers.py:407 msgid "Base Part" msgstr "Kiindulási alkatrész" -#: company/models.py:511 company/models.py:802 +#: company/models.py:513 company/models.py:756 msgid "Select part" msgstr "Válassz alkatrészt" -#: company/models.py:521 +#: company/models.py:523 msgid "Select manufacturer" msgstr "Gyártó kiválasztása" -#: company/models.py:527 company/serializers.py:479 order/serializers.py:734 -#: part/serializers.py:576 +#: company/models.py:529 company/serializers.py:524 order/serializers.py:745 +#: part/serializers.py:487 msgid "MPN" msgstr "MPN (Gyártói cikkszám)" -#: company/models.py:528 stock/serializers.py:572 +#: company/models.py:530 stock/serializers.py:572 msgid "Manufacturer Part Number" msgstr "Gyártói cikkszám" -#: company/models.py:535 +#: company/models.py:537 msgid "URL for external manufacturer part link" msgstr "URL link a gyártói alkatrészhez" -#: company/models.py:544 +#: company/models.py:546 msgid "Manufacturer part description" msgstr "Gyártói alkatrész leírása" -#: company/models.py:597 -msgid "Manufacturer Part Parameter" -msgstr "Gyártói Cikkszám" - -#: company/models.py:616 -msgid "Parameter name" -msgstr "Paraméter neve" - -#: company/models.py:623 -msgid "Parameter value" -msgstr "Paraméter értéke" - -#: company/models.py:630 part/models.py:1195 part/models.py:3857 -msgid "Units" -msgstr "Mértékegység" - -#: company/models.py:631 -msgid "Parameter units" -msgstr "Paraméter mértékegység" - -#: company/models.py:740 +#: company/models.py:694 msgid "Pack units must be compatible with the base part units" msgstr "A csomagolási egységnek kompatibilisnek kell lennie az alkatrész mértékegységgel" -#: company/models.py:747 +#: company/models.py:701 msgid "Pack units must be greater than zero" msgstr "Csomagolási mennyiségnek nullánál többnek kell lennie" -#: company/models.py:761 +#: company/models.py:715 msgid "Linked manufacturer part must reference the same base part" msgstr "Kapcsolódó gyártói alkatrésznek ugyanarra a kiindulási alkatrészre kell hivatkoznia" -#: company/models.py:810 company/serializers.py:449 company/serializers.py:467 -#: order/models.py:639 part/serializers.py:550 +#: company/models.py:764 company/serializers.py:494 company/serializers.py:512 +#: order/models.py:640 part/serializers.py:461 #: plugin/builtin/suppliers/digikey.py:26 plugin/builtin/suppliers/lcsc.py:27 #: plugin/builtin/suppliers/mouser.py:25 plugin/builtin/suppliers/tme.py:27 #: stock/api.py:567 templates/email/overdue_purchase_order.html:16 msgid "Supplier" msgstr "Beszállító" -#: company/models.py:811 +#: company/models.py:765 msgid "Select supplier" msgstr "Beszállító kiválasztása" -#: company/models.py:817 part/serializers.py:561 +#: company/models.py:771 part/serializers.py:472 msgid "Supplier stock keeping unit" msgstr "Beszállítói cikkszám" -#: company/models.py:823 +#: company/models.py:777 msgid "Is this supplier part active?" msgstr "Ez a szállítói termék aktív?" -#: company/models.py:833 +#: company/models.py:787 msgid "Select manufacturer part" msgstr "Gyártói alkatrész kiválasztása" -#: company/models.py:840 +#: company/models.py:794 msgid "URL for external supplier part link" msgstr "URL link a beszállítói alkatrészhez" -#: company/models.py:849 +#: company/models.py:803 msgid "Supplier part description" msgstr "Beszállítói alkatrész leírása" -#: company/models.py:856 order/serializers.py:883 order/serializers.py:2047 -#: part/models.py:4070 part/models.py:4450 part/models.py:4819 -#: report/templates/report/inventree_bill_of_materials_report.html:140 -#: report/templates/report/inventree_purchase_order_report.html:39 -#: report/templates/report/inventree_return_order_report.html:27 -#: report/templates/report/inventree_sales_order_report.html:32 -#: report/templates/report/inventree_stock_location_report.html:105 -#: stock/serializers.py:813 -msgid "Note" -msgstr "Megjegyzés" - -#: company/models.py:865 part/models.py:2250 +#: company/models.py:819 part/models.py:2338 msgid "base cost" msgstr "alap költség" -#: company/models.py:866 part/models.py:2251 +#: company/models.py:820 part/models.py:2339 msgid "Minimum charge (e.g. stocking fee)" msgstr "Minimális díj (pl. tárolási díj)" -#: company/models.py:873 order/serializers.py:875 stock/models.py:1056 +#: company/models.py:827 order/serializers.py:886 stock/models.py:1056 #: stock/serializers.py:1606 msgid "Packaging" msgstr "Csomagolás" -#: company/models.py:874 +#: company/models.py:828 msgid "Part packaging" msgstr "Alkatrész csomagolás" -#: company/models.py:879 +#: company/models.py:833 msgid "Pack Quantity" msgstr "Csomagolási mennyiség" -#: company/models.py:881 +#: company/models.py:835 msgid "Total quantity supplied in a single pack. Leave empty for single items." msgstr "Egy csomagban kiszállítható mennyiség, hagyd üresen az egyedi tételeknél." -#: company/models.py:900 part/models.py:2257 +#: company/models.py:854 part/models.py:2345 msgid "multiple" msgstr "többszörös" -#: company/models.py:901 +#: company/models.py:855 msgid "Order multiple" msgstr "Többszörös rendelés" -#: company/models.py:913 +#: company/models.py:867 msgid "Quantity available from supplier" msgstr "Beszállítónál elérhető mennyiség" -#: company/models.py:919 +#: company/models.py:873 msgid "Availability Updated" msgstr "Elérhetőség frissítve" -#: company/models.py:920 +#: company/models.py:874 msgid "Date of last update of availability data" msgstr "Utolsó elérhetőségi adat frissítés" -#: company/models.py:1048 +#: company/models.py:1002 msgid "Supplier Price Break" msgstr "Beszállítói Ár Kedvezmény" -#: company/serializers.py:181 +#: company/serializers.py:184 +msgid "Primary Address" +msgstr "" + +#: company/serializers.py:186 msgid "Return the string representation for the primary address. This property exists for backwards compatibility." msgstr "Visszaadja az elsődleges cím szöveges változatát. Ez visszamenőleges kompatibilitás miatt kell." -#: company/serializers.py:212 +#: company/serializers.py:218 msgid "Default currency used for this supplier" msgstr "Beszállító által használt alapértelmezett pénznem" -#: company/serializers.py:248 +#: company/serializers.py:260 msgid "Company Name" msgstr "Cégnév" -#: company/serializers.py:433 part/serializers.py:955 stock/serializers.py:428 +#: company/serializers.py:460 part/serializers.py:840 stock/serializers.py:428 msgid "In Stock" msgstr "Készleten" +#: company/serializers.py:477 +msgid "Price Breaks" +msgstr "" + #: data_exporter/mixins.py:325 data_exporter/mixins.py:403 msgid "Error occurred during data export" msgstr "Hiba történt adatexportálás közben" @@ -4291,7 +4419,7 @@ msgstr "Eredeti sor adat" msgid "Errors" msgstr "Hibák" -#: importer/models.py:550 part/serializers.py:1268 +#: importer/models.py:550 part/serializers.py:1133 msgid "Valid" msgstr "Érvényes" @@ -4403,7 +4531,7 @@ msgstr "Címkénkénti nyomtatandó mennyiség" msgid "Connected" msgstr "Csatlakoztatba" -#: machine/machine_types/label_printer.py:232 order/api.py:1795 +#: machine/machine_types/label_printer.py:232 order/api.py:1800 msgid "Unknown" msgstr "Ismeretlen" @@ -4531,105 +4659,105 @@ msgstr "" msgid "Maximum value for progress type, required if type=progress" msgstr "" -#: order/api.py:125 +#: order/api.py:130 msgid "Order Reference" msgstr "Rendelés azonosítója" -#: order/api.py:153 order/api.py:1207 +#: order/api.py:158 order/api.py:1212 msgid "Outstanding" msgstr "Kintlévő" -#: order/api.py:169 +#: order/api.py:174 msgid "Has Project Code" msgstr "Van projektszáma" -#: order/api.py:183 order/models.py:488 +#: order/api.py:188 order/models.py:489 msgid "Created By" msgstr "Készítette" -#: order/api.py:187 +#: order/api.py:192 msgid "Created Before" msgstr "Ez előtt létrehozva" -#: order/api.py:191 +#: order/api.py:196 msgid "Created After" msgstr "Létrehozva ez után" -#: order/api.py:195 +#: order/api.py:200 msgid "Has Start Date" msgstr "Van kezdeti dátum" -#: order/api.py:203 +#: order/api.py:208 msgid "Start Date Before" msgstr "Kezdeti dátum ez előtt" -#: order/api.py:207 +#: order/api.py:212 msgid "Start Date After" msgstr "Kezdeti dátum ez után" -#: order/api.py:211 +#: order/api.py:216 msgid "Has Target Date" msgstr "Van céldátum" -#: order/api.py:219 +#: order/api.py:224 msgid "Target Date Before" msgstr "Céldátum ez előtt" -#: order/api.py:223 +#: order/api.py:228 msgid "Target Date After" msgstr "Céldátum ez után" -#: order/api.py:274 +#: order/api.py:279 msgid "Has Pricing" msgstr "Van árazás" -#: order/api.py:327 order/api.py:812 order/api.py:1490 +#: order/api.py:332 order/api.py:818 order/api.py:1495 msgid "Completed Before" msgstr "Ez előtt befejezve" -#: order/api.py:331 order/api.py:816 order/api.py:1494 +#: order/api.py:336 order/api.py:822 order/api.py:1499 msgid "Completed After" msgstr "Befejezve ez után" -#: order/api.py:337 order/api.py:341 +#: order/api.py:342 order/api.py:346 msgid "External Build Order" msgstr "Külső Gyártási Rendelés" -#: order/api.py:526 order/api.py:914 order/api.py:1170 order/models.py:1922 -#: order/models.py:2049 order/models.py:2099 order/models.py:2279 -#: order/models.py:2477 order/models.py:2999 order/models.py:3065 +#: order/api.py:532 order/api.py:919 order/api.py:1175 order/models.py:1923 +#: order/models.py:2050 order/models.py:2100 order/models.py:2280 +#: order/models.py:2478 order/models.py:3000 order/models.py:3066 msgid "Order" msgstr "Rendelés" -#: order/api.py:530 order/api.py:982 +#: order/api.py:536 order/api.py:987 msgid "Order Complete" msgstr "A rendelés teljesítve" -#: order/api.py:562 order/api.py:566 order/serializers.py:745 +#: order/api.py:568 order/api.py:572 order/serializers.py:756 msgid "Internal Part" msgstr "Belső alkatrész" -#: order/api.py:584 +#: order/api.py:590 msgid "Order Pending" msgstr "A rendelés függőben" -#: order/api.py:967 +#: order/api.py:972 msgid "Completed" msgstr "Kész" -#: order/api.py:1223 +#: order/api.py:1228 msgid "Has Shipment" msgstr "Van kiszállítás" -#: order/api.py:1789 order/models.py:552 order/models.py:1923 -#: order/models.py:2050 +#: order/api.py:1794 order/models.py:553 order/models.py:1924 +#: order/models.py:2051 #: report/templates/report/inventree_purchase_order_report.html:14 #: stock/serializers.py:129 templates/email/overdue_purchase_order.html:15 msgid "Purchase Order" msgstr "Beszerzési rendelés" -#: order/api.py:1791 order/models.py:1251 order/models.py:2100 -#: order/models.py:2280 order/models.py:2478 +#: order/api.py:1796 order/models.py:1252 order/models.py:2101 +#: order/models.py:2281 order/models.py:2479 #: report/templates/report/inventree_build_order_report.html:135 #: report/templates/report/inventree_sales_order_report.html:14 #: report/templates/report/inventree_sales_order_shipment_report.html:15 @@ -4637,8 +4765,8 @@ msgstr "Beszerzési rendelés" msgid "Sales Order" msgstr "Vevői rendelés" -#: order/api.py:1793 order/models.py:2649 order/models.py:3000 -#: order/models.py:3066 +#: order/api.py:1798 order/models.py:2650 order/models.py:3001 +#: order/models.py:3067 #: report/templates/report/inventree_return_order_report.html:13 #: templates/email/overdue_return_order.html:15 msgid "Return Order" @@ -4654,722 +4782,722 @@ msgstr "Teljes ár" msgid "Total price for this order" msgstr "A rendelés teljes ára" -#: order/models.py:96 order/serializers.py:77 +#: order/models.py:96 order/serializers.py:78 msgid "Order Currency" msgstr "Rendelés pénzneme" -#: order/models.py:99 order/serializers.py:78 +#: order/models.py:99 order/serializers.py:79 msgid "Currency for this order (leave blank to use company default)" msgstr "Megrendeléshez használt pénznem (hagyd üresen a cégnél alapértelmezetthez)" -#: order/models.py:324 +#: order/models.py:325 msgid "This order is locked and cannot be modified" msgstr "Egy a rendelés le van zárva és nem lehet módosítani" -#: order/models.py:376 +#: order/models.py:377 msgid "Contact does not match selected company" msgstr "A kapcsolattartó nem egyezik a kiválasztott céggel" -#: order/models.py:383 +#: order/models.py:384 msgid "Start date must be before target date" msgstr "A kezdeti dátumnak meg kell előznie a céldátumot" -#: order/models.py:390 +#: order/models.py:391 msgid "Address does not match selected company" msgstr "" -#: order/models.py:443 +#: order/models.py:444 msgid "Order description (optional)" msgstr "Rendelés leírása (opcionális)" -#: order/models.py:452 order/models.py:1806 +#: order/models.py:453 order/models.py:1807 msgid "Select project code for this order" msgstr "Válassz projektszámot ehhez a rendeléshez" -#: order/models.py:458 order/models.py:1787 order/models.py:2344 +#: order/models.py:459 order/models.py:1788 order/models.py:2345 msgid "Link to external page" msgstr "Link külső weboldalra" -#: order/models.py:465 +#: order/models.py:466 msgid "Start date" msgstr "Kezdés dátuma" -#: order/models.py:466 +#: order/models.py:467 msgid "Scheduled start date for this order" msgstr "A tervezett kezdeti dátum ehhez a gyártáshoz" -#: order/models.py:472 order/models.py:1794 order/serializers.py:309 +#: order/models.py:473 order/models.py:1795 order/serializers.py:317 #: report/templates/report/inventree_build_order_report.html:125 msgid "Target Date" msgstr "Cél dátum" -#: order/models.py:474 +#: order/models.py:475 msgid "Expected date for order delivery. Order will be overdue after this date." msgstr "Várt teljesítési dátuma a megrendelésnek. Ezután már késésben lévőnek számít majd." -#: order/models.py:494 +#: order/models.py:495 msgid "Issue Date" msgstr "Kiállítás dátuma" -#: order/models.py:495 +#: order/models.py:496 msgid "Date order was issued" msgstr "Kiállítás dátuma" -#: order/models.py:503 +#: order/models.py:504 msgid "User or group responsible for this order" msgstr "Felhasználó vagy csoport aki felelőse ennek a rendelésnek" -#: order/models.py:514 +#: order/models.py:515 msgid "Point of contact for this order" msgstr "Kapcsolattartó ehhez a rendeléshez" -#: order/models.py:524 +#: order/models.py:525 msgid "Company address for this order" msgstr "Cég címei ehhez a rendeléshez" -#: order/models.py:615 order/models.py:1312 +#: order/models.py:616 order/models.py:1313 msgid "Order reference" msgstr "Rendelés azonosító" -#: order/models.py:624 order/models.py:1336 order/models.py:2737 +#: order/models.py:625 order/models.py:1337 order/models.py:2738 #: stock/serializers.py:559 stock/serializers.py:988 users/models.py:542 msgid "Status" msgstr "Állapot" -#: order/models.py:625 +#: order/models.py:626 msgid "Purchase order status" msgstr "Beszerzési rendelés állapota" -#: order/models.py:640 +#: order/models.py:641 msgid "Company from which the items are being ordered" msgstr "Cég akitől a tételek beszerzésre kerülnek" -#: order/models.py:651 +#: order/models.py:652 msgid "Supplier Reference" msgstr "Beszállítói azonosító" -#: order/models.py:652 +#: order/models.py:653 msgid "Supplier order reference code" msgstr "Beszállítói rendelés azonosító kód" -#: order/models.py:661 +#: order/models.py:662 msgid "received by" msgstr "érkeztette" -#: order/models.py:668 order/models.py:2752 +#: order/models.py:669 order/models.py:2753 msgid "Date order was completed" msgstr "Rendelés teljesítési dátuma" -#: order/models.py:677 order/models.py:1981 +#: order/models.py:678 order/models.py:1982 msgid "Destination" msgstr "Cél" -#: order/models.py:678 order/models.py:1985 +#: order/models.py:679 order/models.py:1986 msgid "Destination for received items" msgstr "Beérkezett tételek tárolója" -#: order/models.py:724 +#: order/models.py:725 msgid "Part supplier must match PO supplier" msgstr "Az alkatrész beszállítója meg kell egyezzen a beszerzési rendelés beszállítójával" -#: order/models.py:994 +#: order/models.py:995 msgid "Line item does not match purchase order" msgstr "Sortétel nem egyezik a beszerzési megrendeléssel" -#: order/models.py:997 +#: order/models.py:998 msgid "Line item is missing a linked part" msgstr "Sortételen hiányzik a kapcsolódó alkatrész" -#: order/models.py:1011 +#: order/models.py:1012 msgid "Quantity must be a positive number" msgstr "Mennyiség pozitív kell legyen" -#: order/models.py:1323 order/models.py:2724 stock/models.py:1078 +#: order/models.py:1324 order/models.py:2725 stock/models.py:1078 #: stock/models.py:1079 stock/serializers.py:1322 #: templates/email/overdue_return_order.html:16 #: templates/email/overdue_sales_order.html:16 msgid "Customer" msgstr "Vevő" -#: order/models.py:1324 +#: order/models.py:1325 msgid "Company to which the items are being sold" msgstr "Cég akinek a tételek értékesítésre kerülnek" -#: order/models.py:1337 +#: order/models.py:1338 msgid "Sales order status" msgstr "Értékesítési rendelés állapot" -#: order/models.py:1348 order/models.py:2744 +#: order/models.py:1349 order/models.py:2745 msgid "Customer Reference " msgstr "Vevői azonosító " -#: order/models.py:1349 order/models.py:2745 +#: order/models.py:1350 order/models.py:2746 msgid "Customer order reference code" msgstr "Megrendelés azonosító kódja a vevőnél" -#: order/models.py:1353 order/models.py:2296 +#: order/models.py:1354 order/models.py:2297 msgid "Shipment Date" msgstr "Kiszállítás dátuma" -#: order/models.py:1362 +#: order/models.py:1363 msgid "shipped by" msgstr "szállította" -#: order/models.py:1413 +#: order/models.py:1414 msgid "Order is already complete" msgstr "Rendelés már teljesítve" -#: order/models.py:1416 +#: order/models.py:1417 msgid "Order is already cancelled" msgstr "Rendelés már visszavonva" -#: order/models.py:1420 +#: order/models.py:1421 msgid "Only an open order can be marked as complete" msgstr "Csak nyitott rendelés jelölhető késznek" -#: order/models.py:1424 +#: order/models.py:1425 msgid "Order cannot be completed as there are incomplete shipments" msgstr "A rendelés nem jelölhető késznek mivel függő szállítmányok vannak" -#: order/models.py:1429 +#: order/models.py:1430 msgid "Order cannot be completed as there are incomplete allocations" msgstr "A rendelést nem lehet befejezni mert hiányos foglalások vannak" -#: order/models.py:1438 +#: order/models.py:1439 msgid "Order cannot be completed as there are incomplete line items" msgstr "A rendelés nem jelölhető késznek mivel nem teljesített sortételek vannak" -#: order/models.py:1733 order/models.py:1749 +#: order/models.py:1734 order/models.py:1750 msgid "The order is locked and cannot be modified" msgstr "A rendelés le van zárva és nem lehet módosítani" -#: order/models.py:1757 +#: order/models.py:1758 msgid "Item quantity" msgstr "Tétel mennyiség" -#: order/models.py:1774 +#: order/models.py:1775 msgid "Line item reference" msgstr "Sortétel azonosító" -#: order/models.py:1781 +#: order/models.py:1782 msgid "Line item notes" msgstr "Sortétel megjegyzései" -#: order/models.py:1796 +#: order/models.py:1797 msgid "Target date for this line item (leave blank to use the target date from the order)" msgstr "Cél dátuma ennek a sortételnek (hagyd üresen a rendelés céldátum használatához)" -#: order/models.py:1826 +#: order/models.py:1827 msgid "Line item description (optional)" msgstr "Sortétel leírása (opcionális)" -#: order/models.py:1833 +#: order/models.py:1834 msgid "Additional context for this line" msgstr "További kontextus ehhez a sorhoz" -#: order/models.py:1843 +#: order/models.py:1844 msgid "Unit price" msgstr "Egységár" -#: order/models.py:1862 +#: order/models.py:1863 msgid "Purchase Order Line Item" msgstr "Vevői Rendelés Sortétel" -#: order/models.py:1889 +#: order/models.py:1890 msgid "Supplier part must match supplier" msgstr "Beszállítói alkatrésznek egyeznie kell a beszállítóval" -#: order/models.py:1894 +#: order/models.py:1895 msgid "Build order must be marked as external" msgstr "Gyártási rendelést külsőnek kell jelölni" -#: order/models.py:1901 +#: order/models.py:1902 msgid "Build orders can only be linked to assembly parts" msgstr "Gyártási rendeléseket csak összeszerelhető alkatrészekhez lehet kapcsolni" -#: order/models.py:1907 +#: order/models.py:1908 msgid "Build order part must match line item part" msgstr "Gyártási rendelés alkatrészének meg kell egyeznie a sortétel alkatrésszel" -#: order/models.py:1942 +#: order/models.py:1943 msgid "Supplier part" msgstr "Beszállítói alkatrész" -#: order/models.py:1949 +#: order/models.py:1950 msgid "Received" msgstr "Beérkezett" -#: order/models.py:1950 +#: order/models.py:1951 msgid "Number of items received" msgstr "Érkezett tételek száma" -#: order/models.py:1958 stock/models.py:1201 stock/serializers.py:637 +#: order/models.py:1959 stock/models.py:1201 stock/serializers.py:637 msgid "Purchase Price" msgstr "Beszerzési ár" -#: order/models.py:1959 +#: order/models.py:1960 msgid "Unit purchase price" msgstr "Beszerzési egységár" -#: order/models.py:1975 +#: order/models.py:1976 msgid "External Build Order to be fulfilled by this line item" msgstr "Külső gyártási rendelés amit ez a sortétel teljesít" -#: order/models.py:2038 +#: order/models.py:2039 msgid "Purchase Order Extra Line" msgstr "Vevői Rendelés Extra Sor" -#: order/models.py:2067 +#: order/models.py:2068 msgid "Sales Order Line Item" msgstr "Vevői Rendelés Sortétel" -#: order/models.py:2092 +#: order/models.py:2093 msgid "Only salable parts can be assigned to a sales order" msgstr "Csak értékesíthető alkatrészeket lehet vevői rendeléshez adni" -#: order/models.py:2118 +#: order/models.py:2119 msgid "Sale Price" msgstr "Eladási ár" -#: order/models.py:2119 +#: order/models.py:2120 msgid "Unit sale price" msgstr "Eladási egységár" -#: order/models.py:2128 order/status_codes.py:50 +#: order/models.py:2129 order/status_codes.py:50 msgid "Shipped" msgstr "Kiszállítva" -#: order/models.py:2129 +#: order/models.py:2130 msgid "Shipped quantity" msgstr "Szállított mennyiség" -#: order/models.py:2240 +#: order/models.py:2241 msgid "Sales Order Shipment" msgstr "Vevői Rendelés Szállítása" -#: order/models.py:2253 +#: order/models.py:2254 msgid "Shipment address must match the customer" msgstr "" -#: order/models.py:2289 +#: order/models.py:2290 msgid "Shipping address for this shipment" msgstr "" -#: order/models.py:2297 +#: order/models.py:2298 msgid "Date of shipment" msgstr "Szállítás dátuma" -#: order/models.py:2303 +#: order/models.py:2304 msgid "Delivery Date" msgstr "Szállítási dátum" -#: order/models.py:2304 +#: order/models.py:2305 msgid "Date of delivery of shipment" msgstr "Kézbesítés dátuma" -#: order/models.py:2312 +#: order/models.py:2313 msgid "Checked By" msgstr "Ellenőrizte" -#: order/models.py:2313 +#: order/models.py:2314 msgid "User who checked this shipment" msgstr "Felhasználó aki ellenőrizte ezt a szállítmányt" -#: order/models.py:2320 order/models.py:2574 order/serializers.py:1711 -#: order/serializers.py:1835 +#: order/models.py:2321 order/models.py:2575 order/serializers.py:1725 +#: order/serializers.py:1849 #: report/templates/report/inventree_sales_order_shipment_report.html:14 msgid "Shipment" msgstr "Szállítmány" -#: order/models.py:2321 +#: order/models.py:2322 msgid "Shipment number" msgstr "Szállítmány száma" -#: order/models.py:2329 +#: order/models.py:2330 msgid "Tracking Number" msgstr "Nyomkövetési szám" -#: order/models.py:2330 +#: order/models.py:2331 msgid "Shipment tracking information" msgstr "Szállítmány nyomkövetési információ" -#: order/models.py:2337 +#: order/models.py:2338 msgid "Invoice Number" msgstr "Számlaszám" -#: order/models.py:2338 +#: order/models.py:2339 msgid "Reference number for associated invoice" msgstr "Hozzátartozó számla referencia száma" -#: order/models.py:2377 +#: order/models.py:2378 msgid "Shipment has already been sent" msgstr "Szállítmány már elküldve" -#: order/models.py:2380 +#: order/models.py:2381 msgid "Shipment has no allocated stock items" msgstr "Szállítmány nem tartalmaz foglalt készlet tételeket" -#: order/models.py:2387 +#: order/models.py:2388 msgid "Shipment must be checked before it can be completed" msgstr "" -#: order/models.py:2466 +#: order/models.py:2467 msgid "Sales Order Extra Line" msgstr "Vevői Rendelés Extra Sor" -#: order/models.py:2495 +#: order/models.py:2496 msgid "Sales Order Allocation" msgstr "Vevői rendeléshez foglalások" -#: order/models.py:2518 order/models.py:2520 +#: order/models.py:2519 order/models.py:2521 msgid "Stock item has not been assigned" msgstr "Készlet tétel nincs hozzárendelve" -#: order/models.py:2527 +#: order/models.py:2528 msgid "Cannot allocate stock item to a line with a different part" msgstr "Nem foglalható készlet egy másik fajta alkatrész sortételéhez" -#: order/models.py:2530 +#: order/models.py:2531 msgid "Cannot allocate stock to a line without a part" msgstr "Nem foglalható készlet egy olyan sorhoz amiben nincs alkatrész" -#: order/models.py:2533 +#: order/models.py:2534 msgid "Allocation quantity cannot exceed stock quantity" msgstr "A lefoglalandó mennyiség nem haladhatja meg a készlet mennyiségét" -#: order/models.py:2552 order/serializers.py:1581 +#: order/models.py:2553 order/serializers.py:1595 msgid "Quantity must be 1 for serialized stock item" msgstr "Egyedi követésre kötelezett tételeknél a menyiség 1 kell legyen" -#: order/models.py:2555 +#: order/models.py:2556 msgid "Sales order does not match shipment" msgstr "Vevői rendelés nem egyezik a szállítmánnyal" -#: order/models.py:2556 plugin/base/barcodes/api.py:642 +#: order/models.py:2557 plugin/base/barcodes/api.py:642 msgid "Shipment does not match sales order" msgstr "Szállítmány nem egyezik a vevői rendeléssel" -#: order/models.py:2564 +#: order/models.py:2565 msgid "Line" msgstr "Sor" -#: order/models.py:2575 +#: order/models.py:2576 msgid "Sales order shipment reference" msgstr "Vevői rendelés szállítmány azonosító" -#: order/models.py:2588 order/models.py:3007 +#: order/models.py:2589 order/models.py:3008 msgid "Item" msgstr "Tétel" -#: order/models.py:2589 +#: order/models.py:2590 msgid "Select stock item to allocate" msgstr "Válaszd ki a foglalásra szánt készlet tételt" -#: order/models.py:2598 +#: order/models.py:2599 msgid "Enter stock allocation quantity" msgstr "Készlet foglalási mennyiség megadása" -#: order/models.py:2713 +#: order/models.py:2714 msgid "Return Order reference" msgstr "Visszavétel azonosító" -#: order/models.py:2725 +#: order/models.py:2726 msgid "Company from which items are being returned" msgstr "Cég akitől a tételek visszavételre kerülnek" -#: order/models.py:2738 +#: order/models.py:2739 msgid "Return order status" msgstr "Visszavétel állapota" -#: order/models.py:2965 +#: order/models.py:2966 msgid "Return Order Line Item" msgstr "Visszavétel sortétel" -#: order/models.py:2978 +#: order/models.py:2979 msgid "Stock item must be specified" msgstr "Készlettételt meg kell adni" -#: order/models.py:2982 +#: order/models.py:2983 msgid "Return quantity exceeds stock quantity" msgstr "Visszavétel mennyisége meghaladja a készletet" -#: order/models.py:2987 +#: order/models.py:2988 msgid "Return quantity must be greater than zero" msgstr "Visszavétel mennyisége nullánál nagyobb kell, hogy legyen" -#: order/models.py:2992 +#: order/models.py:2993 msgid "Invalid quantity for serialized stock item" msgstr "Érvénytelen mennyiség szerializált készlettételnél" -#: order/models.py:3008 +#: order/models.py:3009 msgid "Select item to return from customer" msgstr "Válaszd ki a vevőtől visszavenni kívánt tételt" -#: order/models.py:3023 +#: order/models.py:3024 msgid "Received Date" msgstr "Visszavétel dátuma" -#: order/models.py:3024 +#: order/models.py:3025 msgid "The date this this return item was received" msgstr "Mikor lett visszavéve a tétel" -#: order/models.py:3036 +#: order/models.py:3037 msgid "Outcome" msgstr "Kimenetel" -#: order/models.py:3037 +#: order/models.py:3038 msgid "Outcome for this line item" msgstr "Sortétel végső kimenetele" -#: order/models.py:3044 +#: order/models.py:3045 msgid "Cost associated with return or repair for this line item" msgstr "Sortétel visszaküldésének vagy javításának költsége" -#: order/models.py:3054 +#: order/models.py:3055 msgid "Return Order Extra Line" msgstr "Visszavétel extra tétel" -#: order/serializers.py:91 +#: order/serializers.py:92 msgid "Order ID" msgstr "Rendelés azonosító" -#: order/serializers.py:91 +#: order/serializers.py:92 msgid "ID of the order to duplicate" msgstr "A duplikálandó megrendelés száma" -#: order/serializers.py:97 +#: order/serializers.py:98 msgid "Copy Lines" msgstr "Sorok másolása" -#: order/serializers.py:98 +#: order/serializers.py:99 msgid "Copy line items from the original order" msgstr "Sortételek másolása az eredeti rendelésről" -#: order/serializers.py:104 +#: order/serializers.py:105 msgid "Copy Extra Lines" msgstr "Extra sorok másolása" -#: order/serializers.py:105 +#: order/serializers.py:106 msgid "Copy extra line items from the original order" msgstr "Az eredeti rendelés extra tételeinek másolása" -#: order/serializers.py:120 +#: order/serializers.py:121 #: report/templates/report/inventree_purchase_order_report.html:29 #: report/templates/report/inventree_return_order_report.html:19 #: report/templates/report/inventree_sales_order_report.html:22 msgid "Line Items" msgstr "Sortételek" -#: order/serializers.py:125 +#: order/serializers.py:126 msgid "Completed Lines" msgstr "Kész sorok" -#: order/serializers.py:192 +#: order/serializers.py:199 msgid "Duplicate Order" msgstr "Rendelés duplikálása" -#: order/serializers.py:193 +#: order/serializers.py:200 msgid "Specify options for duplicating this order" msgstr "Rendelés másolás beállításai" -#: order/serializers.py:270 +#: order/serializers.py:278 msgid "Invalid order ID" msgstr "Érvénytelen rendelés ID" -#: order/serializers.py:466 +#: order/serializers.py:477 msgid "Supplier Name" msgstr "Beszállító neve" -#: order/serializers.py:510 +#: order/serializers.py:521 msgid "Order cannot be cancelled" msgstr "A rendelést nem lehet törölni" -#: order/serializers.py:525 order/serializers.py:1602 +#: order/serializers.py:536 order/serializers.py:1616 msgid "Allow order to be closed with incomplete line items" msgstr "Rendelés lezárása teljesítetlen sortételek esetén is" -#: order/serializers.py:535 order/serializers.py:1612 +#: order/serializers.py:546 order/serializers.py:1626 msgid "Order has incomplete line items" msgstr "A rendelésben teljesítetlen sortételek vannak" -#: order/serializers.py:665 +#: order/serializers.py:676 msgid "Order is not open" msgstr "A rendelés nem nyitott" -#: order/serializers.py:692 +#: order/serializers.py:703 msgid "Auto Pricing" msgstr "Automata árazás" -#: order/serializers.py:694 +#: order/serializers.py:705 msgid "Automatically calculate purchase price based on supplier part data" msgstr "Beszerzési ár automatikus számítása a beszállítói alkatrész adatai alapján" -#: order/serializers.py:704 +#: order/serializers.py:715 msgid "Purchase price currency" msgstr "Beszérzési ár pénzneme" -#: order/serializers.py:718 +#: order/serializers.py:729 msgid "Merge Items" msgstr "Elemek összevonása" -#: order/serializers.py:720 +#: order/serializers.py:731 msgid "Merge items with the same part, destination and target date into one line item" msgstr "Azonos forrás és cél dátumú Alkatrész tételeinek összevonása egy tételre" -#: order/serializers.py:727 part/serializers.py:560 +#: order/serializers.py:738 part/serializers.py:471 msgid "SKU" msgstr "SKU (leltári azonosító)" -#: order/serializers.py:741 part/models.py:1089 part/serializers.py:372 +#: order/serializers.py:752 part/models.py:1177 part/serializers.py:337 msgid "Internal Part Number" msgstr "Belső cikkszám" -#: order/serializers.py:749 +#: order/serializers.py:760 msgid "Internal Part Name" msgstr "Belső cikkszám" -#: order/serializers.py:765 +#: order/serializers.py:776 msgid "Supplier part must be specified" msgstr "Beszállítói alkatrészt meg kell adni" -#: order/serializers.py:768 +#: order/serializers.py:779 msgid "Purchase order must be specified" msgstr "Beszerzési rendelést meg kell adni" -#: order/serializers.py:776 +#: order/serializers.py:787 msgid "Supplier must match purchase order" msgstr "A beszállítónak egyeznie kell a beszerzési rendelésben lévővel" -#: order/serializers.py:777 +#: order/serializers.py:788 msgid "Purchase order must match supplier" msgstr "A beszerzési rendelésnek egyeznie kell a beszállítóval" -#: order/serializers.py:825 order/serializers.py:1682 +#: order/serializers.py:836 order/serializers.py:1696 msgid "Line Item" msgstr "Sortétel" -#: order/serializers.py:834 order/serializers.py:974 order/serializers.py:2043 +#: order/serializers.py:845 order/serializers.py:985 order/serializers.py:2060 msgid "Select destination location for received items" msgstr "Válassz cél helyet a beérkezett tételeknek" -#: order/serializers.py:850 +#: order/serializers.py:861 msgid "Enter batch code for incoming stock items" msgstr "Írd be a batch kódját a beérkezett tételeknek" -#: order/serializers.py:857 stock/models.py:1160 +#: order/serializers.py:868 stock/models.py:1160 #: templates/email/stale_stock_notification.html:22 users/models.py:137 msgid "Expiry Date" msgstr "Lejárati dátum" -#: order/serializers.py:858 +#: order/serializers.py:869 msgid "Enter expiry date for incoming stock items" msgstr "Írd be a beérkező készlet tételek lejárati dátumát" -#: order/serializers.py:866 +#: order/serializers.py:877 msgid "Enter serial numbers for incoming stock items" msgstr "Írd be a sorozatszámokat a beérkezett tételekhez" -#: order/serializers.py:876 +#: order/serializers.py:887 msgid "Override packaging information for incoming stock items" msgstr "Bejövő készlettételek csomagolási információjának felülbírálata" -#: order/serializers.py:884 order/serializers.py:2048 +#: order/serializers.py:895 order/serializers.py:2065 msgid "Additional note for incoming stock items" msgstr "Kiegészítő megjegyzés beérkező készlettételekhez" -#: order/serializers.py:891 +#: order/serializers.py:902 msgid "Barcode" msgstr "Vonalkód" -#: order/serializers.py:892 +#: order/serializers.py:903 msgid "Scanned barcode" msgstr "Beolvasott vonalkód" -#: order/serializers.py:908 +#: order/serializers.py:919 msgid "Barcode is already in use" msgstr "Ez a vonalkód már használva van" -#: order/serializers.py:991 order/serializers.py:2067 +#: order/serializers.py:1002 order/serializers.py:2084 msgid "Line items must be provided" msgstr "Sortételt meg kell adni" -#: order/serializers.py:1010 +#: order/serializers.py:1021 msgid "Destination location must be specified" msgstr "A cél helyet kötelező megadni" -#: order/serializers.py:1017 +#: order/serializers.py:1028 msgid "Supplied barcode values must be unique" msgstr "Megadott vonalkódoknak egyedieknek kel lenniük" -#: order/serializers.py:1121 +#: order/serializers.py:1135 msgid "Shipments" msgstr "Szállítások" -#: order/serializers.py:1125 +#: order/serializers.py:1139 msgid "Completed Shipments" msgstr "Kész szállítmányok" -#: order/serializers.py:1293 +#: order/serializers.py:1307 msgid "Sale price currency" msgstr "Eladási ár pénzneme" -#: order/serializers.py:1339 +#: order/serializers.py:1353 msgid "Allocated Items" msgstr "Foglalt tételek" -#: order/serializers.py:1484 +#: order/serializers.py:1498 msgid "No shipment details provided" msgstr "Nincsenek szállítmány részletek megadva" -#: order/serializers.py:1545 order/serializers.py:1691 +#: order/serializers.py:1559 order/serializers.py:1705 msgid "Line item is not associated with this order" msgstr "Sortétel nincs hozzárendelve ehhez a rendeléshez" -#: order/serializers.py:1564 +#: order/serializers.py:1578 msgid "Quantity must be positive" msgstr "Mennyiség pozitív kell legyen" -#: order/serializers.py:1701 +#: order/serializers.py:1715 msgid "Enter serial numbers to allocate" msgstr "Írd be a sorozatszámokat a kiosztáshoz" -#: order/serializers.py:1723 order/serializers.py:1843 +#: order/serializers.py:1737 order/serializers.py:1857 msgid "Shipment has already been shipped" msgstr "Szállítmány kiszállítva" -#: order/serializers.py:1726 order/serializers.py:1846 +#: order/serializers.py:1740 order/serializers.py:1860 msgid "Shipment is not associated with this order" msgstr "Szállítmány nincs hozzárendelve ehhez a rendeléshez" -#: order/serializers.py:1781 +#: order/serializers.py:1795 msgid "No match found for the following serial numbers" msgstr "Nincs találat a következő sorozatszámokra" -#: order/serializers.py:1788 +#: order/serializers.py:1802 msgid "The following serial numbers are unavailable" msgstr "Az alábbi sorozatszámok nem elérhetők" -#: order/serializers.py:2009 +#: order/serializers.py:2026 msgid "Return order line item" msgstr "Visszavétel sortétel" -#: order/serializers.py:2019 +#: order/serializers.py:2036 msgid "Line item does not match return order" msgstr "Sortétel nem egyezik a visszavétellel" -#: order/serializers.py:2022 +#: order/serializers.py:2039 msgid "Line item has already been received" msgstr "A sortétel már beérkezett" -#: order/serializers.py:2059 +#: order/serializers.py:2076 msgid "Items can only be received against orders which are in progress" msgstr "Csak folyamatban lévő megrendelés tételeit lehet bevételezni" -#: order/serializers.py:2124 +#: order/serializers.py:2141 msgid "Quantity to return" msgstr "Visszaküldési mennyiség" -#: order/serializers.py:2140 +#: order/serializers.py:2157 msgid "Line price currency" msgstr "Sortétel pénzneme" @@ -5432,1190 +5560,1109 @@ msgstr "Lejárt visszvételi utasítás" msgid "Return order {ro} is now overdue" msgstr "A {ro} Visszavételi utasítás már lejárt" -#: part/api.py:108 +#: part/api.py:103 msgid "Starred" msgstr "Csillagozott" -#: part/api.py:110 +#: part/api.py:105 msgid "Filter by starred categories" msgstr "Csillagozottra szűrés" -#: part/api.py:127 stock/api.py:288 +#: part/api.py:122 stock/api.py:288 msgid "Depth" msgstr "Mélység" -#: part/api.py:127 +#: part/api.py:122 msgid "Filter by category depth" msgstr "Kategória mélységre szűrés" -#: part/api.py:145 stock/api.py:306 +#: part/api.py:140 stock/api.py:306 msgid "Top Level" msgstr "Felső szint" -#: part/api.py:147 +#: part/api.py:142 msgid "Filter by top-level categories" msgstr "Csúcs készlethelyre szűrés" -#: part/api.py:160 stock/api.py:321 +#: part/api.py:155 stock/api.py:321 msgid "Cascade" msgstr "Lépcsőzetes" -#: part/api.py:162 +#: part/api.py:157 msgid "Include sub-categories in filtered results" msgstr "Szűrt eredmények tartalmazzák az alkategóriákat" -#: part/api.py:182 +#: part/api.py:177 msgid "Parent" msgstr "Szülő" -#: part/api.py:184 +#: part/api.py:179 msgid "Filter by parent category" msgstr "Szülő kategóriára szűrés" -#: part/api.py:219 +#: part/api.py:214 msgid "Exclude sub-categories under the specified category" msgstr "Az adott kategória alkategóriáinak kihagyása" -#: part/api.py:445 +#: part/api.py:440 msgid "Has Results" msgstr "Van találat" -#: part/api.py:666 +#: part/api.py:661 msgid "Is Variant" msgstr "Változat-e" -#: part/api.py:674 +#: part/api.py:669 msgid "Is Revision" msgstr "Változat" -#: part/api.py:684 +#: part/api.py:679 msgid "Has Revisions" msgstr "Vannak Változatok" -#: part/api.py:865 +#: part/api.py:860 msgid "BOM Valid" msgstr "Alkatrészjegyzék ellenőrizve" -#: part/api.py:974 +#: part/api.py:969 msgid "Cascade Categories" msgstr "" -#: part/api.py:975 +#: part/api.py:970 msgid "If true, include items in child categories of the given category" msgstr "" -#: part/api.py:981 +#: part/api.py:976 msgid "Filter by numeric category ID or the literal 'null'" msgstr "" -#: part/api.py:1533 +#: part/api.py:1258 msgid "Assembly part is testable" msgstr "Összeállított Alkatrész ellenőrizhető" -#: part/api.py:1542 +#: part/api.py:1267 msgid "Component part is testable" msgstr "Összetevő alkatrész ellenőrizhető" -#: part/api.py:1611 +#: part/api.py:1336 msgid "Uses" msgstr "Használ" -#: part/models.py:96 part/models.py:4163 +#: part/models.py:93 part/models.py:436 #: templates/email/part_event_notification.html:16 msgid "Part Category" msgstr "Alkatrész kategória" -#: part/models.py:97 users/ruleset.py:27 +#: part/models.py:94 users/ruleset.py:27 msgid "Part Categories" msgstr "Alkatrész kategóriák" -#: part/models.py:115 part/models.py:1125 +#: part/models.py:112 part/models.py:1213 msgid "Default Location" msgstr "Alapértelmezett hely" -#: part/models.py:116 +#: part/models.py:113 msgid "Default location for parts in this category" msgstr "Ebben a kategóriában lévő alkatrészek helye alapban" -#: part/models.py:121 stock/models.py:216 +#: part/models.py:118 stock/models.py:216 msgid "Structural" msgstr "Szerkezeti" -#: part/models.py:123 +#: part/models.py:120 msgid "Parts may not be directly assigned to a structural category, but may be assigned to child categories." msgstr "A szerkezeti alkatrész kategóriákhoz nem lehet direktben alkatrészeket hozzáadni, csak az alkategóriáikhoz." -#: part/models.py:132 +#: part/models.py:129 msgid "Default keywords" msgstr "Alapértelmezett kulcsszavak" -#: part/models.py:133 +#: part/models.py:130 msgid "Default keywords for parts in this category" msgstr "Ebben a kategóriában évő alkatrészek kulcsszavai alapban" -#: part/models.py:140 stock/models.py:97 stock/models.py:198 +#: part/models.py:137 stock/models.py:97 stock/models.py:198 msgid "Icon" msgstr "Ikon" -#: part/models.py:141 part/serializers.py:148 part/serializers.py:167 +#: part/models.py:138 part/serializers.py:147 part/serializers.py:166 #: stock/models.py:199 msgid "Icon (optional)" msgstr "Ikon (opcionális)" -#: part/models.py:185 +#: part/models.py:182 msgid "You cannot make this part category structural because some parts are already assigned to it!" msgstr "Nem lehet az alkatrészkategóriát szerkezeti kategóriává tenni, mert már vannak itt alkatrészek!" -#: part/models.py:473 part/serializers.py:119 part/serializers.py:310 -#: users/ruleset.py:28 +#: part/models.py:392 +msgid "Part Category Parameter Template" +msgstr "Alkatrészcsoport Paraméter Sablon" + +#: part/models.py:448 +msgid "Default Value" +msgstr "Alapértelmezett érték" + +#: part/models.py:449 +msgid "Default Parameter Value" +msgstr "Alapértelmezett paraméter érték" + +#: part/models.py:551 part/serializers.py:118 users/ruleset.py:28 msgid "Parts" msgstr "Alkatrészek" -#: part/models.py:525 +#: part/models.py:597 +msgid "Cannot delete parameters of a locked part" +msgstr "" + +#: part/models.py:602 +msgid "Cannot modify parameters of a locked part" +msgstr "" + +#: part/models.py:613 msgid "Cannot delete this part as it is locked" msgstr "Lezárt alkatrész nem törölhető" -#: part/models.py:528 +#: part/models.py:616 msgid "Cannot delete this part as it is still active" msgstr "Aktív alkatrész nem törölhető" -#: part/models.py:533 +#: part/models.py:621 msgid "Cannot delete this part as it is used in an assembly" msgstr "Összeállításban felhasznált alkatrész nem törölhető" -#: part/models.py:616 part/models.py:623 +#: part/models.py:704 part/models.py:711 #, python-brace-format msgid "Part '{self}' cannot be used in BOM for '{parent}' (recursive)" msgstr "Az '{self}' alkatrész nem használható a '{parent}' alkatrészjegyzékében (mert rekurzív lenne)" -#: part/models.py:635 +#: part/models.py:723 #, python-brace-format msgid "Part '{parent}' is used in BOM for '{self}' (recursive)" msgstr "Az '{parent}' alkatrész szerepel a '{self}' alkatrészjegyzékében (rekurzív)" -#: part/models.py:702 +#: part/models.py:790 #, python-brace-format msgid "IPN must match regex pattern {pattern}" msgstr "Az IPN belső cikkszámnak illeszkednie kell a {pattern} regex mintára" -#: part/models.py:710 +#: part/models.py:798 msgid "Part cannot be a revision of itself" msgstr "Alkatrész nem lehes saját magának verziója" -#: part/models.py:717 +#: part/models.py:805 msgid "Cannot make a revision of a part which is already a revision" msgstr "Nem lehet olyan alkatrészből új verziót csinálni ami már eleve egy verzió" -#: part/models.py:724 +#: part/models.py:812 msgid "Revision code must be specified" msgstr "Verzió kódot meg kell adni" -#: part/models.py:731 +#: part/models.py:819 msgid "Revisions are only allowed for assembly parts" msgstr "Verziók csak összeállított alkatrészeknél engedélyezettek" -#: part/models.py:738 +#: part/models.py:826 msgid "Cannot make a revision of a template part" msgstr "Nem lehet sablon alkatrészből új verziót csinálni" -#: part/models.py:744 +#: part/models.py:832 msgid "Parent part must point to the same template" msgstr "A szülő alkatrésznek azonos sablonra kell mutatnia" -#: part/models.py:841 +#: part/models.py:929 msgid "Stock item with this serial number already exists" msgstr "Létezik már készlet tétel ilyen a sorozatszámmal" -#: part/models.py:971 +#: part/models.py:1059 msgid "Duplicate IPN not allowed in part settings" msgstr "Azonos IPN nem engedélyezett az alkatrészekre, már létezik ilyen" -#: part/models.py:983 +#: part/models.py:1071 msgid "Duplicate part revision already exists." msgstr "Adott alkatrész verzióból már létezik egy." -#: part/models.py:992 +#: part/models.py:1080 msgid "Part with this Name, IPN and Revision already exists." msgstr "Ilyen nevű, IPN-ű és reviziójú alkatrész már létezik." -#: part/models.py:1007 +#: part/models.py:1095 msgid "Parts cannot be assigned to structural part categories!" msgstr "Szerkezeti kategóriákhoz nem lehet alkatrészeket rendelni!" -#: part/models.py:1039 +#: part/models.py:1127 msgid "Part name" msgstr "Alkatrész neve" -#: part/models.py:1044 +#: part/models.py:1132 msgid "Is Template" msgstr "Sablon-e" -#: part/models.py:1045 +#: part/models.py:1133 msgid "Is this part a template part?" msgstr "Ez egy sablon alkatrész?" -#: part/models.py:1055 +#: part/models.py:1143 msgid "Is this part a variant of another part?" msgstr "Ez az alkatrész egy másik változata?" -#: part/models.py:1056 +#: part/models.py:1144 msgid "Variant Of" msgstr "Ebből a sablonból" -#: part/models.py:1063 +#: part/models.py:1151 msgid "Part description (optional)" msgstr "Alkatrész leírása (opcionális)" -#: part/models.py:1070 +#: part/models.py:1158 msgid "Keywords" msgstr "Kulcsszavak" -#: part/models.py:1071 +#: part/models.py:1159 msgid "Part keywords to improve visibility in search results" msgstr "Alkatrész kulcsszavak amik segítik a megjelenést a keresési eredményekben" -#: part/models.py:1081 +#: part/models.py:1169 msgid "Part category" msgstr "Alkatrész kategória" -#: part/models.py:1088 part/serializers.py:929 +#: part/models.py:1176 part/serializers.py:814 #: report/templates/report/inventree_stock_location_report.html:103 msgid "IPN" msgstr "IPN (Belső Cikkszám)" -#: part/models.py:1096 +#: part/models.py:1184 msgid "Part revision or version number" msgstr "Alkatrész változat vagy verziószám (pl. szín, hossz, revízió, stb.)" -#: part/models.py:1097 report/models.py:228 +#: part/models.py:1185 report/models.py:228 msgid "Revision" msgstr "Változat" -#: part/models.py:1106 +#: part/models.py:1194 msgid "Is this part a revision of another part?" msgstr "Ez egy másik alkatrész egy verziója?" -#: part/models.py:1107 +#: part/models.py:1195 msgid "Revision Of" msgstr "Ennek a verziója" -#: part/models.py:1123 +#: part/models.py:1211 msgid "Where is this item normally stored?" msgstr "Alapban hol tároljuk ezt az alkatrészt?" -#: part/models.py:1169 +#: part/models.py:1257 msgid "Default Supplier" msgstr "Alapértelmezett beszállító" -#: part/models.py:1170 +#: part/models.py:1258 msgid "Default supplier part" msgstr "Alapértelmezett beszállítói alkatrész" -#: part/models.py:1177 +#: part/models.py:1265 msgid "Default Expiry" msgstr "Alapértelmezett lejárat" -#: part/models.py:1178 +#: part/models.py:1266 msgid "Expiry time (in days) for stock items of this part" msgstr "Lejárati idő (napban) ennek az alkatrésznek a készleteire" -#: part/models.py:1186 part/serializers.py:1003 +#: part/models.py:1274 part/serializers.py:888 msgid "Minimum Stock" msgstr "Minimális készlet" -#: part/models.py:1187 +#: part/models.py:1275 msgid "Minimum allowed stock level" msgstr "Minimálisan megengedett készlet mennyiség" -#: part/models.py:1196 +#: part/models.py:1284 msgid "Units of measure for this part" msgstr "Alkatrész mértékegysége" -#: part/models.py:1203 +#: part/models.py:1291 msgid "Can this part be built from other parts?" msgstr "Gyártható-e ez az alkatrész más alkatrészekből?" -#: part/models.py:1209 +#: part/models.py:1297 msgid "Can this part be used to build other parts?" msgstr "Felhasználható-e ez az alkatrész más alkatrészek gyártásához?" -#: part/models.py:1215 +#: part/models.py:1303 msgid "Does this part have tracking for unique items?" msgstr "Kell-e külön követni az egyes példányait ennek az alkatrésznek?" -#: part/models.py:1221 +#: part/models.py:1309 msgid "Can this part have test results recorded against it?" msgstr "Lehet ehhez az alkatrészhez több ellenőrzési eredményt rögzíteni?" -#: part/models.py:1227 +#: part/models.py:1315 msgid "Can this part be purchased from external suppliers?" msgstr "Rendelhető-e ez az alkatrész egy külső beszállítótól?" -#: part/models.py:1233 +#: part/models.py:1321 msgid "Can this part be sold to customers?" msgstr "Értékesíthető-e önmagában ez az alkatrész a vevőknek?" -#: part/models.py:1237 +#: part/models.py:1325 msgid "Is this part active?" msgstr "Aktív-e ez az alkatrész?" -#: part/models.py:1243 +#: part/models.py:1331 msgid "Locked parts cannot be edited" msgstr "Lezárt alkatrészt nem lehet szerkeszteni" -#: part/models.py:1249 +#: part/models.py:1337 msgid "Is this a virtual part, such as a software product or license?" msgstr "Ez egy virtuális nem megfogható alkatrész, pl. szoftver vagy licenc?" -#: part/models.py:1254 +#: part/models.py:1342 msgid "BOM Validated" msgstr "Alkatrészjegyzék ellenőrizve" -#: part/models.py:1255 +#: part/models.py:1343 msgid "Is the BOM for this part valid?" msgstr "Az alkatrész anyagjegyzéke érvényes?" -#: part/models.py:1261 +#: part/models.py:1349 msgid "BOM checksum" msgstr "Alkatrészjegyzék ellenőrző összeg" -#: part/models.py:1262 +#: part/models.py:1350 msgid "Stored BOM checksum" msgstr "Tárolt alkatrészjegyzék ellenőrző összeg" -#: part/models.py:1270 +#: part/models.py:1358 msgid "BOM checked by" msgstr "Alkatrészjegyzéket ellenőrizte" -#: part/models.py:1275 +#: part/models.py:1363 msgid "BOM checked date" msgstr "Alkatrészjegyzék ellenőrzési dátuma" -#: part/models.py:1291 +#: part/models.py:1379 msgid "Creation User" msgstr "Létrehozó" -#: part/models.py:1301 +#: part/models.py:1389 msgid "Owner responsible for this part" msgstr "Alkatrész felelőse" -#: part/models.py:2258 +#: part/models.py:2346 msgid "Sell multiple" msgstr "Több értékesítése" -#: part/models.py:3286 +#: part/models.py:3350 msgid "Currency used to cache pricing calculations" msgstr "Árszámítások gyorstárazásához használt pénznem" -#: part/models.py:3302 +#: part/models.py:3366 msgid "Minimum BOM Cost" msgstr "Minimum alkatrészjegyzék költség" -#: part/models.py:3303 +#: part/models.py:3367 msgid "Minimum cost of component parts" msgstr "Összetevők minimum költsége" -#: part/models.py:3309 +#: part/models.py:3373 msgid "Maximum BOM Cost" msgstr "Maximum alkatrészjegyzék költség" -#: part/models.py:3310 +#: part/models.py:3374 msgid "Maximum cost of component parts" msgstr "Összetevők maximum költsége" -#: part/models.py:3316 +#: part/models.py:3380 msgid "Minimum Purchase Cost" msgstr "Minimum beszerzési ár" -#: part/models.py:3317 +#: part/models.py:3381 msgid "Minimum historical purchase cost" msgstr "Eddigi minimum beszerzési költség" -#: part/models.py:3323 +#: part/models.py:3387 msgid "Maximum Purchase Cost" msgstr "Maximum beszerzési ár" -#: part/models.py:3324 +#: part/models.py:3388 msgid "Maximum historical purchase cost" msgstr "Eddigi maximum beszerzési költség" -#: part/models.py:3330 +#: part/models.py:3394 msgid "Minimum Internal Price" msgstr "Minimum belső ár" -#: part/models.py:3331 +#: part/models.py:3395 msgid "Minimum cost based on internal price breaks" msgstr "Minimum költség a belső ársávok alapján" -#: part/models.py:3337 +#: part/models.py:3401 msgid "Maximum Internal Price" msgstr "Maximum belső ár" -#: part/models.py:3338 +#: part/models.py:3402 msgid "Maximum cost based on internal price breaks" msgstr "Maximum költség a belső ársávok alapján" -#: part/models.py:3344 +#: part/models.py:3408 msgid "Minimum Supplier Price" msgstr "Minimum beszállítói ár" -#: part/models.py:3345 +#: part/models.py:3409 msgid "Minimum price of part from external suppliers" msgstr "Minimum alkatrész ár a beszállítóktól" -#: part/models.py:3351 +#: part/models.py:3415 msgid "Maximum Supplier Price" msgstr "Maximum beszállítói ár" -#: part/models.py:3352 +#: part/models.py:3416 msgid "Maximum price of part from external suppliers" msgstr "Maximum alkatrész ár a beszállítóktól" -#: part/models.py:3358 +#: part/models.py:3422 msgid "Minimum Variant Cost" msgstr "Minimum alkatrészváltozat ár" -#: part/models.py:3359 +#: part/models.py:3423 msgid "Calculated minimum cost of variant parts" msgstr "Alkatrészváltozatok számolt minimum költsége" -#: part/models.py:3365 +#: part/models.py:3429 msgid "Maximum Variant Cost" msgstr "Maximum alkatrészváltozat ár" -#: part/models.py:3366 +#: part/models.py:3430 msgid "Calculated maximum cost of variant parts" msgstr "Alkatrészváltozatok számolt maximum költsége" -#: part/models.py:3372 part/models.py:3386 +#: part/models.py:3436 part/models.py:3450 msgid "Minimum Cost" msgstr "Minimum költség" -#: part/models.py:3373 +#: part/models.py:3437 msgid "Override minimum cost" msgstr "Minimum költség felülbírálása" -#: part/models.py:3379 part/models.py:3393 +#: part/models.py:3443 part/models.py:3457 msgid "Maximum Cost" msgstr "Maximum költség" -#: part/models.py:3380 +#: part/models.py:3444 msgid "Override maximum cost" msgstr "Maximum költség felülbírálása" -#: part/models.py:3387 +#: part/models.py:3451 msgid "Calculated overall minimum cost" msgstr "Számított általános minimum költség" -#: part/models.py:3394 +#: part/models.py:3458 msgid "Calculated overall maximum cost" msgstr "Számított általános maximum költség" -#: part/models.py:3400 +#: part/models.py:3464 msgid "Minimum Sale Price" msgstr "Minimum eladási ár" -#: part/models.py:3401 +#: part/models.py:3465 msgid "Minimum sale price based on price breaks" msgstr "Minimum eladási ár az ársávok alapján" -#: part/models.py:3407 +#: part/models.py:3471 msgid "Maximum Sale Price" msgstr "Maximum eladási ár" -#: part/models.py:3408 +#: part/models.py:3472 msgid "Maximum sale price based on price breaks" msgstr "Maximum eladási ár az ársávok alapján" -#: part/models.py:3414 +#: part/models.py:3478 msgid "Minimum Sale Cost" msgstr "Minimum eladási költség" -#: part/models.py:3415 +#: part/models.py:3479 msgid "Minimum historical sale price" msgstr "Eddigi minimum eladási ár" -#: part/models.py:3421 +#: part/models.py:3485 msgid "Maximum Sale Cost" msgstr "Maximum eladási költség" -#: part/models.py:3422 +#: part/models.py:3486 msgid "Maximum historical sale price" msgstr "Eddigi maximum eladási ár" -#: part/models.py:3440 +#: part/models.py:3504 msgid "Part for stocktake" msgstr "Leltározható alkatrész" -#: part/models.py:3445 +#: part/models.py:3509 msgid "Item Count" msgstr "Tételszám" -#: part/models.py:3446 +#: part/models.py:3510 msgid "Number of individual stock entries at time of stocktake" msgstr "Egyedi készlet tételek száma a leltárkor" -#: part/models.py:3454 +#: part/models.py:3518 msgid "Total available stock at time of stocktake" msgstr "Teljes készlet a leltárkor" -#: part/models.py:3458 report/templates/report/inventree_test_report.html:106 +#: part/models.py:3522 report/templates/report/inventree_test_report.html:106 msgid "Date" msgstr "Dátum" -#: part/models.py:3459 +#: part/models.py:3523 msgid "Date stocktake was performed" msgstr "Leltározva ekkor" -#: part/models.py:3466 +#: part/models.py:3530 msgid "Minimum Stock Cost" msgstr "Minimum készlet érték" -#: part/models.py:3467 +#: part/models.py:3531 msgid "Estimated minimum cost of stock on hand" msgstr "Becsült minimum raktárkészlet érték" -#: part/models.py:3473 +#: part/models.py:3537 msgid "Maximum Stock Cost" msgstr "Maximum készlet érték" -#: part/models.py:3474 +#: part/models.py:3538 msgid "Estimated maximum cost of stock on hand" msgstr "Becsült maximum raktárkészlet érték" -#: part/models.py:3484 +#: part/models.py:3548 msgid "Part Sale Price Break" msgstr "Alkatrész értékesítési ársáv" -#: part/models.py:3596 +#: part/models.py:3660 msgid "Part Test Template" msgstr "Alkatrész Teszt Sablon" -#: part/models.py:3622 +#: part/models.py:3686 msgid "Invalid template name - must include at least one alphanumeric character" msgstr "Hibás sablon név - legalább egy alfanumerikus karakter kötelező" -#: part/models.py:3643 part/models.py:3816 -msgid "Choices must be unique" -msgstr "A lehetőségek egyediek kell legyenek" - -#: part/models.py:3654 +#: part/models.py:3718 msgid "Test templates can only be created for testable parts" msgstr "Teszt sablont csak ellenőrizhetőre beállított alkatrészhez lehet csinálni" -#: part/models.py:3668 +#: part/models.py:3732 msgid "Test template with the same key already exists for part" msgstr "Már létezik ilyen azonosítójú Teszt sablon ehhez az alkatrészhez" -#: part/models.py:3685 +#: part/models.py:3749 msgid "Test Name" msgstr "Teszt név" -#: part/models.py:3686 +#: part/models.py:3750 msgid "Enter a name for the test" msgstr "Add meg a teszt nevét" -#: part/models.py:3692 +#: part/models.py:3756 msgid "Test Key" msgstr "Teszt azonosító" -#: part/models.py:3693 +#: part/models.py:3757 msgid "Simplified key for the test" msgstr "Egyszerűsített Teszt azonosító" -#: part/models.py:3700 +#: part/models.py:3764 msgid "Test Description" msgstr "Teszt leírása" -#: part/models.py:3701 +#: part/models.py:3765 msgid "Enter description for this test" msgstr "Adj hozzá egy leírást ehhez a teszthez" -#: part/models.py:3705 report/models.py:287 -msgid "Enabled" -msgstr "Engedélyezve" - -#: part/models.py:3705 +#: part/models.py:3769 msgid "Is this test enabled?" msgstr "Teszt engedélyezve?" -#: part/models.py:3710 +#: part/models.py:3774 msgid "Required" msgstr "Kötelező" -#: part/models.py:3711 +#: part/models.py:3775 msgid "Is this test required to pass?" msgstr "Szükséges-e hogy ez a teszt sikeres legyen?" -#: part/models.py:3716 +#: part/models.py:3780 msgid "Requires Value" msgstr "Kötelező érték" -#: part/models.py:3717 +#: part/models.py:3781 msgid "Does this test require a value when adding a test result?" msgstr "Szükséges-e hogy ennek a tesztnek az eredményéhez kötelezően érték legyen rendelve?" -#: part/models.py:3722 +#: part/models.py:3786 msgid "Requires Attachment" msgstr "Kötelező melléklet" -#: part/models.py:3724 +#: part/models.py:3788 msgid "Does this test require a file attachment when adding a test result?" msgstr "Szükséges-e hogy ennek a tesztnek az eredményéhez kötelezően fájl melléklet legyen rendelve?" -#: part/models.py:3730 part/models.py:3878 -msgid "Choices" -msgstr "Lehetőségek" - -#: part/models.py:3731 +#: part/models.py:3795 msgid "Valid choices for this test (comma-separated)" msgstr "Választható lehetőségek ehhez a Teszthez (vesszővel elválasztva)" -#: part/models.py:3764 -msgid "Part Parameter Template" -msgstr "Alkatrész Paraméter Sablon" - -#: part/models.py:3791 -msgid "Checkbox parameters cannot have units" -msgstr "Jelölőnégyzet paraméternek nem lehet mértékegysége" - -#: part/models.py:3796 -msgid "Checkbox parameters cannot have choices" -msgstr "Jelölőnégyzet paraméternek nem lehetnek választási lehetőségei" - -#: part/models.py:3833 -msgid "Parameter template name must be unique" -msgstr "A paraméter sablon nevének egyedinek kell lennie" - -#: part/models.py:3851 -msgid "Parameter Name" -msgstr "Paraméter neve" - -#: part/models.py:3858 -msgid "Physical units for this parameter" -msgstr "Paraméter mértékegysége" - -#: part/models.py:3866 -msgid "Parameter description" -msgstr "Paraméter leírása" - -#: part/models.py:3872 -msgid "Checkbox" -msgstr "Jelölőnégyzet" - -#: part/models.py:3873 -msgid "Is this parameter a checkbox?" -msgstr "Ez a paraméter egy jelölőnégyzet?" - -#: part/models.py:3879 -msgid "Valid choices for this parameter (comma-separated)" -msgstr "Választható lehetőségek (vesszővel elválasztva)" - -#: part/models.py:3890 -msgid "Selection list for this parameter" -msgstr "A paraméter választéklistája" - -#: part/models.py:3932 -msgid "Part Parameter" -msgstr "Alkatrész Paraméter" - -#: part/models.py:3958 -msgid "Parameter cannot be modified - part is locked" -msgstr "Lezárt alkatrész Paramétere nem szerkeszthető" - -#: part/models.py:3996 -msgid "Invalid choice for parameter value" -msgstr "Hibás választás a paraméterre" - -#: part/models.py:4047 -msgid "Parent Part" -msgstr "Szülő alkatrész" - -#: part/models.py:4055 part/models.py:4170 part/models.py:4171 -msgid "Parameter Template" -msgstr "Paraméter sablon" - -#: part/models.py:4061 -msgid "Parameter Value" -msgstr "Paraméter értéke" - -#: part/models.py:4071 stock/serializers.py:718 -msgid "Optional note field" -msgstr "Opcionális megjegyzés mező" - -#: part/models.py:4118 -msgid "Part Category Parameter Template" -msgstr "Alkatrészcsoport Paraméter Sablon" - -#: part/models.py:4177 -msgid "Default Value" -msgstr "Alapértelmezett érték" - -#: part/models.py:4178 -msgid "Default Parameter Value" -msgstr "Alapértelmezett paraméter érték" - -#: part/models.py:4352 +#: part/models.py:3977 msgid "BOM item cannot be modified - assembly is locked" msgstr "Alkatrészjegyzék nem szerkeszthető mert az összeállítás le van zárva" -#: part/models.py:4359 +#: part/models.py:3984 msgid "BOM item cannot be modified - variant assembly is locked" msgstr "Alkatrészjegyzék nem szerkeszthető mert az összeállítás változat le van zárva" -#: part/models.py:4369 +#: part/models.py:3994 msgid "Select parent part" msgstr "Szülő alkatrész kiválasztása" -#: part/models.py:4379 +#: part/models.py:4004 msgid "Sub part" msgstr "Al alkatrész" -#: part/models.py:4380 +#: part/models.py:4005 msgid "Select part to be used in BOM" msgstr "Válaszd ki az alkatrészjegyzékben használandó alkatrészt" -#: part/models.py:4391 +#: part/models.py:4016 msgid "BOM quantity for this BOM item" msgstr "Alkatrészjegyzék mennyiség ehhez az alkatrészjegyzék tételhez" -#: part/models.py:4397 +#: part/models.py:4022 msgid "This BOM item is optional" msgstr "Ez az alkatrészjegyzék tétel opcionális" -#: part/models.py:4403 +#: part/models.py:4028 msgid "This BOM item is consumable (it is not tracked in build orders)" msgstr "Ez az alkatrészjegyzék tétel fogyóeszköz (készlete nincs követve a gyártásban)" -#: part/models.py:4411 +#: part/models.py:4036 msgid "Setup Quantity" msgstr "Beállítás mennyiség" -#: part/models.py:4412 +#: part/models.py:4037 msgid "Extra required quantity for a build, to account for setup losses" msgstr "A gyártáshoz szükséges extra mennyiség, a beállási veszteséggel együtt" -#: part/models.py:4420 +#: part/models.py:4045 msgid "Attrition" msgstr "Veszteség" -#: part/models.py:4422 +#: part/models.py:4047 msgid "Estimated attrition for a build, expressed as a percentage (0-100)" msgstr "Becsült veszteség egy gyártásnál, százalékban kifejezve (0-100)" -#: part/models.py:4433 +#: part/models.py:4058 msgid "Rounding Multiple" msgstr "Kerekítési többszörös" -#: part/models.py:4435 +#: part/models.py:4060 msgid "Round up required production quantity to nearest multiple of this value" msgstr "A szükséges termelési mennyiség az érték legközelebbi többszöröséhez kerekítése" -#: part/models.py:4443 +#: part/models.py:4068 msgid "BOM item reference" msgstr "Alkatrészjegyzék tétel azonosító" -#: part/models.py:4451 +#: part/models.py:4076 msgid "BOM item notes" msgstr "Alkatrészjegyzék tétel megjegyzései" -#: part/models.py:4457 +#: part/models.py:4082 msgid "Checksum" msgstr "Ellenőrző összeg" -#: part/models.py:4458 +#: part/models.py:4083 msgid "BOM line checksum" msgstr "Alkatrészjegyzék sor ellenőrző összeg" -#: part/models.py:4463 +#: part/models.py:4088 msgid "Validated" msgstr "Jóváhagyva" -#: part/models.py:4464 +#: part/models.py:4089 msgid "This BOM item has been validated" msgstr "Ez a BOM tétel jóvá lett hagyva" -#: part/models.py:4469 +#: part/models.py:4094 msgid "Gets inherited" msgstr "Öröklődött" -#: part/models.py:4470 +#: part/models.py:4095 msgid "This BOM item is inherited by BOMs for variant parts" msgstr "Ezt az alkatrészjegyzék tételt az alkatrész változatok alkatrészjegyzékei is öröklik" -#: part/models.py:4476 +#: part/models.py:4101 msgid "Stock items for variant parts can be used for this BOM item" msgstr "Alkatrészváltozatok készlet tételei használhatók ehhez az alkatrészjegyzék tételhez" -#: part/models.py:4583 stock/models.py:925 +#: part/models.py:4208 stock/models.py:925 msgid "Quantity must be integer value for trackable parts" msgstr "A mennyiség egész szám kell legyen a követésre kötelezett alkatrészek esetén" -#: part/models.py:4593 part/models.py:4595 +#: part/models.py:4218 part/models.py:4220 msgid "Sub part must be specified" msgstr "Al alkatrészt kötelező megadni" -#: part/models.py:4746 +#: part/models.py:4371 msgid "BOM Item Substitute" msgstr "Alkatrészjegyzék tétel helyettesítő" -#: part/models.py:4767 +#: part/models.py:4392 msgid "Substitute part cannot be the same as the master part" msgstr "A helyettesítő alkatrész nem lehet ugyanaz mint a fő alkatrész" -#: part/models.py:4780 +#: part/models.py:4405 msgid "Parent BOM item" msgstr "Szülő alkatrészjegyzék tétel" -#: part/models.py:4788 +#: part/models.py:4413 msgid "Substitute part" msgstr "Helyettesítő alkatrész" -#: part/models.py:4804 +#: part/models.py:4429 msgid "Part 1" msgstr "1.rész" -#: part/models.py:4812 +#: part/models.py:4437 msgid "Part 2" msgstr "2.rész" -#: part/models.py:4813 +#: part/models.py:4438 msgid "Select Related Part" msgstr "Válassz kapcsolódó alkatrészt" -#: part/models.py:4820 +#: part/models.py:4445 msgid "Note for this relationship" msgstr "Kapcsolati megjegyzés" -#: part/models.py:4839 +#: part/models.py:4464 msgid "Part relationship cannot be created between a part and itself" msgstr "Alkatrész kapcsolat nem hozható létre önmagával" -#: part/models.py:4844 +#: part/models.py:4469 msgid "Duplicate relationship already exists" msgstr "Már létezik duplikált alkatrész kapcsolat" -#: part/serializers.py:114 +#: part/serializers.py:113 msgid "Parent Category" msgstr "Szülő Kategória" -#: part/serializers.py:115 +#: part/serializers.py:114 msgid "Parent part category" msgstr "Felsőbb szintű alkatrész kategória" -#: part/serializers.py:123 part/serializers.py:164 +#: part/serializers.py:122 part/serializers.py:163 msgid "Subcategories" msgstr "Alkategóriák" -#: part/serializers.py:203 +#: part/serializers.py:202 msgid "Results" msgstr "Eredmények" -#: part/serializers.py:204 +#: part/serializers.py:203 msgid "Number of results recorded against this template" msgstr "Eszerint a sablon szerint rögzített eredmények száma" -#: part/serializers.py:235 part/serializers.py:253 stock/serializers.py:643 +#: part/serializers.py:234 part/serializers.py:252 stock/serializers.py:643 msgid "Purchase currency of this stock item" msgstr "Beszerzési pénzneme ennek a készlet tételnek" -#: part/serializers.py:280 +#: part/serializers.py:279 msgid "File is not an image" msgstr "A fájl nem kép" -#: part/serializers.py:311 -msgid "Number of parts using this template" -msgstr "Ennyi alkatrész használja ezt a sablont" - -#: part/serializers.py:471 +#: part/serializers.py:382 msgid "Original Part" msgstr "Eredeti alkatrész" -#: part/serializers.py:472 +#: part/serializers.py:383 msgid "Select original part to duplicate" msgstr "Válassz eredeti alkatrészt a másoláshoz" -#: part/serializers.py:477 +#: part/serializers.py:388 msgid "Copy Image" msgstr "Kép másolása" -#: part/serializers.py:478 +#: part/serializers.py:389 msgid "Copy image from original part" msgstr "Kép másolása az eredeti alkatrészről" -#: part/serializers.py:484 +#: part/serializers.py:395 msgid "Copy BOM" msgstr "Alkatrészjegyzék másolása" -#: part/serializers.py:485 +#: part/serializers.py:396 msgid "Copy bill of materials from original part" msgstr "Alkatrészjegyzék másolása az eredeti alkatrészről" -#: part/serializers.py:491 +#: part/serializers.py:402 msgid "Copy Parameters" msgstr "Paraméterek másolása" -#: part/serializers.py:492 +#: part/serializers.py:403 msgid "Copy parameter data from original part" msgstr "Paraméterek másolása az eredeti alkatrészről" -#: part/serializers.py:498 +#: part/serializers.py:409 msgid "Copy Notes" msgstr "Megjegyzések másolása" -#: part/serializers.py:499 +#: part/serializers.py:410 msgid "Copy notes from original part" msgstr "Megjegyzések másolása az eredeti alkatrészről" -#: part/serializers.py:505 +#: part/serializers.py:416 msgid "Copy Tests" msgstr "Teszt másolása" -#: part/serializers.py:506 +#: part/serializers.py:417 msgid "Copy test templates from original part" msgstr "Teszt sablonok másolása az eredeti alkatrészről" -#: part/serializers.py:524 +#: part/serializers.py:435 msgid "Initial Stock Quantity" msgstr "Kezdeti készlet mennyiség" -#: part/serializers.py:526 +#: part/serializers.py:437 msgid "Specify initial stock quantity for this Part. If quantity is zero, no stock is added." msgstr "Add meg a kezdeti készlet mennyiséget. Ha nulla akkor nem lesz készlet létrehozva." -#: part/serializers.py:533 +#: part/serializers.py:444 msgid "Initial Stock Location" msgstr "Kezdeti készlet hely" -#: part/serializers.py:534 +#: part/serializers.py:445 msgid "Specify initial stock location for this Part" msgstr "Add meg a kezdeti készlet helyét" -#: part/serializers.py:551 +#: part/serializers.py:462 msgid "Select supplier (or leave blank to skip)" msgstr "Válassz beszállítót (hagyd üresen ha nem kell létrehozni)" -#: part/serializers.py:567 +#: part/serializers.py:478 msgid "Select manufacturer (or leave blank to skip)" msgstr "Válassz gyártót (hagyd üresen ha nem kell létrehozni)" -#: part/serializers.py:577 +#: part/serializers.py:488 msgid "Manufacturer part number" msgstr "Gyártói cikkszám" -#: part/serializers.py:584 +#: part/serializers.py:495 msgid "Selected company is not a valid supplier" msgstr "A kiválasztott cég nem érvényes beszállító" -#: part/serializers.py:593 +#: part/serializers.py:504 msgid "Selected company is not a valid manufacturer" msgstr "A kiválasztott cég nem érvényes gyártó" -#: part/serializers.py:604 +#: part/serializers.py:515 msgid "Manufacturer part matching this MPN already exists" msgstr "Van már ilyen gyártói alkatrész" -#: part/serializers.py:611 +#: part/serializers.py:522 msgid "Supplier part matching this SKU already exists" msgstr "Van már ilyen beszállítói alkatrész" -#: part/serializers.py:914 +#: part/serializers.py:799 msgid "Category Name" msgstr "Kategória neve" -#: part/serializers.py:943 +#: part/serializers.py:828 msgid "Building" msgstr "Gyártásban" -#: part/serializers.py:944 +#: part/serializers.py:829 msgid "Quantity of this part currently being in production" msgstr "Az alkatrészből jelenleg ennyi van gyártás alatt" -#: part/serializers.py:951 +#: part/serializers.py:836 msgid "Outstanding quantity of this part scheduled to be built" msgstr "Már beütemezett de még nem kész gyártási mennyiség" -#: part/serializers.py:971 stock/serializers.py:1019 stock/serializers.py:1189 +#: part/serializers.py:856 stock/serializers.py:1019 stock/serializers.py:1189 #: users/ruleset.py:30 msgid "Stock Items" msgstr "Készlet tételek" -#: part/serializers.py:975 +#: part/serializers.py:860 msgid "Revisions" msgstr "Verziók" -#: part/serializers.py:979 +#: part/serializers.py:864 msgid "Suppliers" msgstr "Beszállítók" -#: part/serializers.py:983 part/serializers.py:1297 +#: part/serializers.py:868 part/serializers.py:1162 #: templates/email/low_stock_notification.html:16 #: templates/email/part_event_notification.html:17 msgid "Total Stock" msgstr "Teljes készlet" -#: part/serializers.py:991 +#: part/serializers.py:876 msgid "Unallocated Stock" msgstr "Nem lefoglalt készlet" -#: part/serializers.py:999 +#: part/serializers.py:884 msgid "Variant Stock" msgstr "Variánsok Raktárkészlet" -#: part/serializers.py:1054 +#: part/serializers.py:943 msgid "Duplicate Part" msgstr "Alkatrész másolása" -#: part/serializers.py:1055 +#: part/serializers.py:944 msgid "Copy initial data from another Part" msgstr "Kezdeti adatok másolása egy másik alkatrészről" -#: part/serializers.py:1061 +#: part/serializers.py:950 msgid "Initial Stock" msgstr "Kezdeti készlet" -#: part/serializers.py:1062 +#: part/serializers.py:951 msgid "Create Part with initial stock quantity" msgstr "Kezdeti készlet mennyiség létrehozása" -#: part/serializers.py:1068 +#: part/serializers.py:957 msgid "Supplier Information" msgstr "Beszállító információ" -#: part/serializers.py:1069 +#: part/serializers.py:958 msgid "Add initial supplier information for this part" msgstr "Kezdeti beszállító adatok hozzáadása" -#: part/serializers.py:1077 +#: part/serializers.py:966 msgid "Copy Category Parameters" msgstr "Kategória paraméterek másolása" -#: part/serializers.py:1078 +#: part/serializers.py:967 msgid "Copy parameter templates from selected part category" msgstr "Paraméter sablonok másolása a kiválasztott alkatrész kategóriából" -#: part/serializers.py:1083 +#: part/serializers.py:972 msgid "Existing Image" msgstr "Meglévő kép" -#: part/serializers.py:1084 +#: part/serializers.py:973 msgid "Filename of an existing part image" msgstr "A meglévő alkatrész képfájl neve" -#: part/serializers.py:1101 +#: part/serializers.py:990 msgid "Image file does not exist" msgstr "A képfájl nem létezik" -#: part/serializers.py:1269 +#: part/serializers.py:1134 msgid "Validate entire Bill of Materials" msgstr "Teljes alkatrészjegyzék jóváhagyása" -#: part/serializers.py:1303 part/serializers.py:1769 +#: part/serializers.py:1168 part/serializers.py:1634 msgid "Can Build" msgstr "Gyártható" -#: part/serializers.py:1320 +#: part/serializers.py:1185 msgid "Required for Build Orders" msgstr "Gyártásokhoz szükséges" -#: part/serializers.py:1325 +#: part/serializers.py:1190 msgid "Allocated to Build Orders" msgstr "Gyártási rendelésekhez foglalva" -#: part/serializers.py:1332 +#: part/serializers.py:1197 msgid "Required for Sales Orders" msgstr "Értékesítési rendeléshez szükséges" -#: part/serializers.py:1336 +#: part/serializers.py:1201 msgid "Allocated to Sales Orders" msgstr "Értékesítési rendeléshez lefoglalva" -#: part/serializers.py:1475 +#: part/serializers.py:1340 msgid "Minimum Price" msgstr "Minimum ár" -#: part/serializers.py:1476 +#: part/serializers.py:1341 msgid "Override calculated value for minimum price" msgstr "Számított minimum ár felülbírálása" -#: part/serializers.py:1483 +#: part/serializers.py:1348 msgid "Minimum price currency" msgstr "Minimum ár pénzneme" -#: part/serializers.py:1490 +#: part/serializers.py:1355 msgid "Maximum Price" msgstr "Maximum ár" -#: part/serializers.py:1491 +#: part/serializers.py:1356 msgid "Override calculated value for maximum price" msgstr "Számított maximum ár felülbírálása" -#: part/serializers.py:1498 +#: part/serializers.py:1363 msgid "Maximum price currency" msgstr "Maximum ár pénzneme" -#: part/serializers.py:1527 +#: part/serializers.py:1392 msgid "Update" msgstr "Frissítés" -#: part/serializers.py:1528 +#: part/serializers.py:1393 msgid "Update pricing for this part" msgstr "Alkatrész árak frissítése" -#: part/serializers.py:1551 +#: part/serializers.py:1416 #, python-brace-format msgid "Could not convert from provided currencies to {default_currency}" msgstr "Megadott pénznem átváltása {default_currency}-re sikertelen" -#: part/serializers.py:1558 +#: part/serializers.py:1423 msgid "Minimum price must not be greater than maximum price" msgstr "A Minimum ár nem lehet nagyobb mint a Maximum ár" -#: part/serializers.py:1561 +#: part/serializers.py:1426 msgid "Maximum price must not be less than minimum price" msgstr "A Maximum ár nem lehet kisebb mint a Minimum ár" -#: part/serializers.py:1715 +#: part/serializers.py:1580 msgid "Select the parent assembly" msgstr "Szülő összeállítás kiválasztása" -#: part/serializers.py:1735 +#: part/serializers.py:1600 msgid "Select the component part" msgstr "Összetevő alkatrész kijelölése" -#: part/serializers.py:1929 +#: part/serializers.py:1802 msgid "Select part to copy BOM from" msgstr "Válassz alkatrészt ahonnan az alkatrészjegyzéket másoljuk" -#: part/serializers.py:1937 +#: part/serializers.py:1810 msgid "Remove Existing Data" msgstr "Létező adat törlése" -#: part/serializers.py:1938 +#: part/serializers.py:1811 msgid "Remove existing BOM items before copying" msgstr "Meglévő alkatrészjegyzék tételek törlése a másolás előtt" -#: part/serializers.py:1943 +#: part/serializers.py:1816 msgid "Include Inherited" msgstr "Örököltekkel együtt" -#: part/serializers.py:1944 +#: part/serializers.py:1817 msgid "Include BOM items which are inherited from templated parts" msgstr "Sablon alkatrészektől örökölt alkatrészjegyzék tételek használata" -#: part/serializers.py:1949 +#: part/serializers.py:1822 msgid "Skip Invalid Rows" msgstr "Hibás sorok kihagyása" -#: part/serializers.py:1950 +#: part/serializers.py:1823 msgid "Enable this option to skip invalid rows" msgstr "Engedély a hibás sorok kihagyására" -#: part/serializers.py:1955 +#: part/serializers.py:1828 msgid "Copy Substitute Parts" msgstr "Helyettesítő alkatrészek másolása" -#: part/serializers.py:1956 +#: part/serializers.py:1829 msgid "Copy substitute parts when duplicate BOM items" msgstr "Helyettesítő alkatrészek másolása az alkatrészjegyzék tételek másolásakor" @@ -6928,7 +6975,7 @@ msgstr "Alapvető vonalkód támogatást ad" #: plugin/builtin/events/auto_issue_orders.py:19 #: plugin/builtin/exporter/bom_exporter.py:73 #: plugin/builtin/exporter/inventree_exporter.py:17 -#: plugin/builtin/exporter/part_parameter_exporter.py:36 +#: plugin/builtin/exporter/parameter_exporter.py:32 #: plugin/builtin/exporter/stocktake_exporter.py:47 #: plugin/builtin/integration/core_notifications.py:25 #: plugin/builtin/integration/core_notifications.py:69 @@ -7042,23 +7089,19 @@ msgid "Include total quantity of each part in the BOM" msgstr "Adott alkatrész teljes mennyiségét mutassa az összes alkatrésznél a BOM-ban" #: plugin/builtin/exporter/bom_exporter.py:35 -#: plugin/builtin/exporter/part_parameter_exporter.py:17 msgid "Stock Data" msgstr "Készlet adatok" #: plugin/builtin/exporter/bom_exporter.py:35 -#: plugin/builtin/exporter/part_parameter_exporter.py:17 msgid "Include part stock data" msgstr "Tartalmazza az alkatrész készlet adatait" #: plugin/builtin/exporter/bom_exporter.py:39 -#: plugin/builtin/exporter/part_parameter_exporter.py:21 #: plugin/builtin/exporter/stocktake_exporter.py:20 msgid "Pricing Data" msgstr "Árazási adatok" #: plugin/builtin/exporter/bom_exporter.py:39 -#: plugin/builtin/exporter/part_parameter_exporter.py:21 #: plugin/builtin/exporter/stocktake_exporter.py:20 msgid "Include part pricing data" msgstr "Tartalmazza az alkatrész árazási adatait" @@ -7145,13 +7188,21 @@ msgstr "InvenTree általános exportáló" msgid "Provides support for exporting data from InvenTree" msgstr "InvenTree exportálás támogatása" -#: plugin/builtin/exporter/part_parameter_exporter.py:33 -msgid "Part Parameter Exporter" -msgstr "Alkatrész Paraméter Exportáló" +#: plugin/builtin/exporter/parameter_exporter.py:16 +msgid "Exclude Inactive" +msgstr "" -#: plugin/builtin/exporter/part_parameter_exporter.py:34 -msgid "Exporter for part parameter data" -msgstr "Alkatrészek paramétereinek exportja" +#: plugin/builtin/exporter/parameter_exporter.py:17 +msgid "Exclude parameters which are inactive" +msgstr "" + +#: plugin/builtin/exporter/parameter_exporter.py:29 +msgid "Parameter Exporter" +msgstr "" + +#: plugin/builtin/exporter/parameter_exporter.py:30 +msgid "Exporter for model parameter data" +msgstr "" #: plugin/builtin/exporter/stocktake_exporter.py:25 msgid "Include External Stock" @@ -8080,19 +8131,19 @@ msgstr "Nincs eredmény (szükséges)" msgid "No result" msgstr "Nincs eredmény" -#: report/templatetags/report.py:167 +#: report/templatetags/report.py:169 msgid "Asset file does not exist" msgstr "A fájl nem létezik" -#: report/templatetags/report.py:224 report/templatetags/report.py:300 +#: report/templatetags/report.py:226 report/templatetags/report.py:302 msgid "Image file not found" msgstr "A képfile nem található" -#: report/templatetags/report.py:325 +#: report/templatetags/report.py:327 msgid "part_image tag requires a Part instance" msgstr "part_image elem csak alkatrész példánynál használható" -#: report/templatetags/report.py:362 +#: report/templatetags/report.py:383 msgid "company_image tag requires a Company instance" msgstr "company_image elem csak cég példánynál használható" @@ -8456,115 +8507,119 @@ msgstr "Sorozatszámokat listában kell megadni" msgid "Quantity does not match serial numbers" msgstr "A mennyiség nem egyezik a megadott sorozatszámok számával" -#: stock/models.py:2012 stock/models.py:2917 +#: stock/models.py:1912 +msgid "Cannot assign stock to structural location" +msgstr "" + +#: stock/models.py:2029 stock/models.py:2934 msgid "Test template does not exist" msgstr "Ez a Teszt sablon nem létezik" -#: stock/models.py:2030 +#: stock/models.py:2047 msgid "Stock item has been assigned to a sales order" msgstr "Készlet tétel hozzárendelve egy vevői rendeléshez" -#: stock/models.py:2034 +#: stock/models.py:2051 msgid "Stock item is installed in another item" msgstr "Készlet tétel beépül egy másikba" -#: stock/models.py:2037 +#: stock/models.py:2054 msgid "Stock item contains other items" msgstr "A készlet tétel más tételeket tartalmaz" -#: stock/models.py:2040 +#: stock/models.py:2057 msgid "Stock item has been assigned to a customer" msgstr "Készlet tétel hozzárendelve egy vevőhöz" -#: stock/models.py:2043 stock/models.py:2226 +#: stock/models.py:2060 stock/models.py:2243 msgid "Stock item is currently in production" msgstr "Készlet tétel gyártás alatt" -#: stock/models.py:2046 +#: stock/models.py:2063 msgid "Serialized stock cannot be merged" msgstr "Követésre kötelezett készlet nem vonható össze" -#: stock/models.py:2053 stock/serializers.py:1462 +#: stock/models.py:2070 stock/serializers.py:1462 msgid "Duplicate stock items" msgstr "Duplikált készlet tételek vannak" -#: stock/models.py:2057 +#: stock/models.py:2074 msgid "Stock items must refer to the same part" msgstr "A készlet tétel ugyanarra az alkatrészre kell vonatkozzon" -#: stock/models.py:2065 +#: stock/models.py:2082 msgid "Stock items must refer to the same supplier part" msgstr "A készlet tétel ugyanarra a beszállítói alkatrészre kell vonatkozzon" -#: stock/models.py:2070 +#: stock/models.py:2087 msgid "Stock status codes must match" msgstr "Készlet tételek állapotainak egyeznie kell" -#: stock/models.py:2349 +#: stock/models.py:2366 msgid "StockItem cannot be moved as it is not in stock" msgstr "Készlet tétel nem mozgatható mivel nincs készleten" -#: stock/models.py:2818 +#: stock/models.py:2835 msgid "Stock Item Tracking" msgstr "Készlettörténet" -#: stock/models.py:2849 +#: stock/models.py:2866 msgid "Entry notes" msgstr "Bejegyzés megjegyzései" -#: stock/models.py:2889 +#: stock/models.py:2906 msgid "Stock Item Test Result" msgstr "Készlet Tétel Ellenőrzés Eredménye" -#: stock/models.py:2920 +#: stock/models.py:2937 msgid "Value must be provided for this test" msgstr "Ehhez a teszthez meg kell adni értéket" -#: stock/models.py:2924 +#: stock/models.py:2941 msgid "Attachment must be uploaded for this test" msgstr "Ehhez a teszthez fel kell tölteni mellékletet" -#: stock/models.py:2929 +#: stock/models.py:2946 msgid "Invalid value for this test" msgstr "A teszt eredménye érvénytelen" -#: stock/models.py:2953 +#: stock/models.py:2970 msgid "Test result" msgstr "Teszt eredménye" -#: stock/models.py:2960 +#: stock/models.py:2977 msgid "Test output value" msgstr "Teszt kimeneti értéke" -#: stock/models.py:2968 stock/serializers.py:248 +#: stock/models.py:2985 stock/serializers.py:248 msgid "Test result attachment" msgstr "Teszt eredmény melléklet" -#: stock/models.py:2972 +#: stock/models.py:2989 msgid "Test notes" msgstr "Tesztek megjegyzései" -#: stock/models.py:2980 +#: stock/models.py:2997 msgid "Test station" msgstr "Teszt állomás" -#: stock/models.py:2981 +#: stock/models.py:2998 msgid "The identifier of the test station where the test was performed" msgstr "A tesztet elvégző tesztállomás azonosítója" -#: stock/models.py:2987 +#: stock/models.py:3004 msgid "Started" msgstr "Elkezdődött" -#: stock/models.py:2988 +#: stock/models.py:3005 msgid "The timestamp of the test start" msgstr "A teszt indításának időpontja" -#: stock/models.py:2994 +#: stock/models.py:3011 msgid "Finished" msgstr "Befejezve" -#: stock/models.py:2995 +#: stock/models.py:3012 msgid "The timestamp of the test finish" msgstr "A teszt befejezésének időpontja" @@ -8678,8 +8733,8 @@ msgstr "Nincsen készlettétel megadva" msgid "Quantity must not exceed available stock quantity ({q})" msgstr "A mennyiség nem lépheti túl a rendelkezésre álló készletet ({q})" -#: stock/serializers.py:711 stock/serializers.py:1419 stock/serializers.py:1732 -#: stock/serializers.py:1781 +#: stock/serializers.py:711 stock/serializers.py:1419 stock/serializers.py:1740 +#: stock/serializers.py:1789 msgid "Destination stock location" msgstr "Cél készlet hely" @@ -8835,19 +8890,19 @@ msgstr "Mennyiség nem lehet negatív" msgid "Stock transaction notes" msgstr "Készlet tranzakció megjegyzései" -#: stock/serializers.py:1787 +#: stock/serializers.py:1795 msgid "Merge into existing stock" msgstr "Meglévő készletbe olvasztás" -#: stock/serializers.py:1788 +#: stock/serializers.py:1796 msgid "Merge returned items into existing stock items if possible" msgstr "Visszaérkezett tételek beolvasztása a készlettételekbe ha lehetséges" -#: stock/serializers.py:1831 +#: stock/serializers.py:1839 msgid "Next Serial Number" msgstr "Következő sorozatszám" -#: stock/serializers.py:1837 +#: stock/serializers.py:1845 msgid "Previous Serial Number" msgstr "Előző Sorozatszám" @@ -8903,83 +8958,87 @@ msgstr "Készlet manuálisan hozzáadva" msgid "Stock manually removed" msgstr "Készlet manuálisan elvéve" -#: stock/status_codes.py:57 +#: stock/status_codes.py:56 +msgid "Serialized stock items" +msgstr "" + +#: stock/status_codes.py:58 msgid "Returned to stock" msgstr "Készletre visszatéve" -#: stock/status_codes.py:60 +#: stock/status_codes.py:61 msgid "Location changed" msgstr "Hely megváltozott" -#: stock/status_codes.py:61 +#: stock/status_codes.py:62 msgid "Stock updated" msgstr "Készletadatok frissítve" -#: stock/status_codes.py:64 +#: stock/status_codes.py:65 msgid "Installed into assembly" msgstr "Gyártmányba beépült" -#: stock/status_codes.py:65 +#: stock/status_codes.py:66 msgid "Removed from assembly" msgstr "Gyártmányból eltávolítva" -#: stock/status_codes.py:67 +#: stock/status_codes.py:68 msgid "Installed component item" msgstr "Beépült összetevő tétel" -#: stock/status_codes.py:68 +#: stock/status_codes.py:69 msgid "Removed component item" msgstr "Eltávolított összetevő tétel" -#: stock/status_codes.py:71 +#: stock/status_codes.py:72 msgid "Split from parent item" msgstr "Szülő tételből szétválasztva" -#: stock/status_codes.py:72 +#: stock/status_codes.py:73 msgid "Split child item" msgstr "Szétválasztott gyermek tétel" -#: stock/status_codes.py:75 +#: stock/status_codes.py:76 msgid "Merged stock items" msgstr "Összevont készlet tétel" -#: stock/status_codes.py:78 +#: stock/status_codes.py:79 msgid "Converted to variant" msgstr "Alkatrészváltozattá alakítva" -#: stock/status_codes.py:81 +#: stock/status_codes.py:82 msgid "Build order output created" msgstr "Gyártási utasítás kimenete elkészült" -#: stock/status_codes.py:82 +#: stock/status_codes.py:83 msgid "Build order output completed" msgstr "Gyártási utasítás kimenete kész" -#: stock/status_codes.py:83 +#: stock/status_codes.py:84 msgid "Build order output rejected" msgstr "Gyártási utasítás kimenete elutasítva" -#: stock/status_codes.py:84 +#: stock/status_codes.py:85 msgid "Consumed by build order" msgstr "Gyártásra felhasználva" -#: stock/status_codes.py:87 +#: stock/status_codes.py:88 msgid "Shipped against Sales Order" msgstr "Vevői rendelésre kiszállítva" -#: stock/status_codes.py:90 +#: stock/status_codes.py:91 msgid "Received against Purchase Order" msgstr "Megrendelésre érkezett" -#: stock/status_codes.py:93 +#: stock/status_codes.py:94 msgid "Returned against Return Order" msgstr "Visszavéve" -#: stock/status_codes.py:96 +#: stock/status_codes.py:97 msgid "Sent to customer" msgstr "Vevőnek kiszállítva" -#: stock/status_codes.py:97 +#: stock/status_codes.py:98 msgid "Returned from customer" msgstr "Vevőtől visszaérkezett" diff --git a/src/backend/InvenTree/locale/id/LC_MESSAGES/django.po b/src/backend/InvenTree/locale/id/LC_MESSAGES/django.po index 63e669f8a5..ca51f6e4a5 100644 --- a/src/backend/InvenTree/locale/id/LC_MESSAGES/django.po +++ b/src/backend/InvenTree/locale/id/LC_MESSAGES/django.po @@ -2,8 +2,8 @@ msgid "" msgstr "" "Project-Id-Version: inventree\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-11-19 04:55+0000\n" -"PO-Revision-Date: 2025-11-19 04:59\n" +"POT-Creation-Date: 2025-12-07 07:33+0000\n" +"PO-Revision-Date: 2025-12-07 07:36\n" "Last-Translator: \n" "Language-Team: Indonesian\n" "Language: id_ID\n" @@ -57,7 +57,7 @@ msgstr "" msgid "This field must be unique." msgstr "" -#: InvenTree/api.py:775 +#: InvenTree/api.py:803 msgid "User does not have permission to view this model" msgstr "Pengguna tidak memiliki izin untuk melihat model ini" @@ -81,22 +81,22 @@ msgstr "Alamat surel utama yang diberikan tidak valid." msgid "The provided email domain is not approved." msgstr "Domain surel yang diberikan tidak perbolehkan." -#: InvenTree/conversion.py:166 +#: InvenTree/conversion.py:240 #, python-brace-format msgid "Invalid unit provided ({unit})" msgstr "" -#: InvenTree/conversion.py:183 +#: InvenTree/conversion.py:257 msgid "No value provided" msgstr "Nilai tidak tersedia" -#: InvenTree/conversion.py:210 +#: InvenTree/conversion.py:284 #, python-brace-format msgid "Could not convert {original} to {unit}" msgstr "" -#: InvenTree/conversion.py:212 InvenTree/conversion.py:226 -#: InvenTree/helpers.py:597 order/models.py:720 order/models.py:1015 +#: InvenTree/conversion.py:286 InvenTree/conversion.py:300 +#: InvenTree/helpers.py:597 order/models.py:721 order/models.py:1016 msgid "Invalid quantity provided" msgstr "Jumlah yang diberikan tidak valid" @@ -112,11 +112,11 @@ msgstr "Masukkan tanggal" msgid "Invalid decimal value" msgstr "" -#: InvenTree/fields.py:218 InvenTree/models.py:1067 build/serializers.py:509 -#: build/serializers.py:580 build/serializers.py:1788 company/models.py:857 -#: order/models.py:1780 +#: InvenTree/fields.py:218 InvenTree/models.py:1228 build/serializers.py:517 +#: build/serializers.py:588 build/serializers.py:1796 company/models.py:811 +#: order/models.py:1781 #: report/templates/report/inventree_build_order_report.html:172 -#: stock/models.py:2848 stock/models.py:2972 stock/serializers.py:717 +#: stock/models.py:2865 stock/models.py:2989 stock/serializers.py:717 #: stock/serializers.py:893 stock/serializers.py:1035 stock/serializers.py:1336 #: stock/serializers.py:1425 stock/serializers.py:1624 msgid "Notes" @@ -171,35 +171,35 @@ msgstr "Hapus tag-tag HTML dari nilai ini" msgid "Data contains prohibited markdown content" msgstr "" -#: InvenTree/helpers_model.py:133 +#: InvenTree/helpers_model.py:134 msgid "Connection error" msgstr "Koneksi Galat" -#: InvenTree/helpers_model.py:138 InvenTree/helpers_model.py:145 +#: InvenTree/helpers_model.py:139 InvenTree/helpers_model.py:146 msgid "Server responded with invalid status code" msgstr "" -#: InvenTree/helpers_model.py:141 +#: InvenTree/helpers_model.py:142 msgid "Exception occurred" msgstr "" -#: InvenTree/helpers_model.py:151 +#: InvenTree/helpers_model.py:152 msgid "Server responded with invalid Content-Length value" msgstr "" -#: InvenTree/helpers_model.py:154 +#: InvenTree/helpers_model.py:155 msgid "Image size is too large" msgstr "Ukuran gambar terlalu besar" -#: InvenTree/helpers_model.py:166 +#: InvenTree/helpers_model.py:167 msgid "Image download exceeded maximum size" msgstr "" -#: InvenTree/helpers_model.py:171 +#: InvenTree/helpers_model.py:172 msgid "Remote server returned empty response" msgstr "" -#: InvenTree/helpers_model.py:179 +#: InvenTree/helpers_model.py:180 msgid "Supplied URL is not a valid image file" msgstr "URL yang diberikan bukan file gambar yang valid" @@ -207,7 +207,7 @@ msgstr "URL yang diberikan bukan file gambar yang valid" msgid "Log in to the app" msgstr "" -#: InvenTree/magic_login.py:41 company/models.py:172 users/serializers.py:198 +#: InvenTree/magic_login.py:41 company/models.py:173 users/serializers.py:198 msgid "Email" msgstr "Surel" @@ -215,160 +215,176 @@ msgstr "Surel" msgid "You must enable two-factor authentication before doing anything else." msgstr "Anda harus mengaktifkan autentikasi dua faktor sebelum melakukan hal lainnya." -#: InvenTree/models.py:111 +#: InvenTree/models.py:114 msgid "Error running plugin validation" msgstr "" -#: InvenTree/models.py:192 +#: InvenTree/models.py:195 msgid "Metadata must be a python dict object" msgstr "" -#: InvenTree/models.py:198 +#: InvenTree/models.py:201 msgid "Plugin Metadata" msgstr "" -#: InvenTree/models.py:199 +#: InvenTree/models.py:202 msgid "JSON metadata field, for use by external plugins" msgstr "" -#: InvenTree/models.py:382 +#: InvenTree/models.py:385 msgid "Improperly formatted pattern" msgstr "" -#: InvenTree/models.py:389 +#: InvenTree/models.py:392 msgid "Unknown format key specified" msgstr "" -#: InvenTree/models.py:395 +#: InvenTree/models.py:398 msgid "Missing required format key" msgstr "" -#: InvenTree/models.py:406 +#: InvenTree/models.py:409 msgid "Reference field cannot be empty" msgstr "" -#: InvenTree/models.py:414 +#: InvenTree/models.py:417 msgid "Reference must match required pattern" msgstr "" -#: InvenTree/models.py:445 +#: InvenTree/models.py:448 msgid "Reference number is too large" msgstr "" -#: InvenTree/models.py:743 +#: InvenTree/models.py:896 msgid "Invalid choice" msgstr "Pilihan tidak valid" -#: InvenTree/models.py:856 common/models.py:1410 common/models.py:1837 -#: common/models.py:2096 common/models.py:2221 common/serializers.py:535 -#: company/models.py:615 generic/states/serializers.py:20 machine/models.py:25 -#: part/models.py:1039 part/models.py:3850 plugin/models.py:54 +#: InvenTree/models.py:1017 common/models.py:1414 common/models.py:1841 +#: common/models.py:2102 common/models.py:2227 common/models.py:2494 +#: common/serializers.py:539 generic/states/serializers.py:20 +#: machine/models.py:25 part/models.py:1127 plugin/models.py:54 #: report/models.py:216 stock/models.py:84 msgid "Name" msgstr "Nama" -#: InvenTree/models.py:862 build/models.py:252 common/models.py:171 -#: common/models.py:2228 common/models.py:2341 company/models.py:543 -#: company/models.py:848 order/models.py:442 order/models.py:1825 -#: part/models.py:1062 part/models.py:3865 report/models.py:222 +#: InvenTree/models.py:1023 build/models.py:253 common/models.py:175 +#: common/models.py:2234 common/models.py:2347 common/models.py:2509 +#: company/models.py:545 company/models.py:802 order/models.py:443 +#: order/models.py:1826 part/models.py:1150 report/models.py:222 #: report/models.py:815 report/models.py:841 #: report/templates/report/inventree_build_order_report.html:117 #: stock/models.py:90 msgid "Description" msgstr "Keterangan" -#: InvenTree/models.py:863 stock/models.py:91 +#: InvenTree/models.py:1024 stock/models.py:91 msgid "Description (optional)" msgstr "Keterangan (opsional)" -#: InvenTree/models.py:878 common/models.py:2394 +#: InvenTree/models.py:1039 common/models.py:2815 msgid "Path" msgstr "Direktori" -#: InvenTree/models.py:983 +#: InvenTree/models.py:1144 msgid "Duplicate names cannot exist under the same parent" msgstr "" -#: InvenTree/models.py:1067 +#: InvenTree/models.py:1228 msgid "Markdown notes (optional)" msgstr "" -#: InvenTree/models.py:1098 +#: InvenTree/models.py:1259 msgid "Barcode Data" msgstr "Data Barcode" -#: InvenTree/models.py:1099 +#: InvenTree/models.py:1260 msgid "Third party barcode data" msgstr "Data barcode pihak ketiga" -#: InvenTree/models.py:1105 +#: InvenTree/models.py:1266 msgid "Barcode Hash" msgstr "" -#: InvenTree/models.py:1106 +#: InvenTree/models.py:1267 msgid "Unique hash of barcode data" msgstr "Hash unik data barcode" -#: InvenTree/models.py:1187 +#: InvenTree/models.py:1348 msgid "Existing barcode found" msgstr "Sudah ada barcode yang sama" -#: InvenTree/models.py:1269 +#: InvenTree/models.py:1430 msgid "Task Failure" msgstr "" -#: InvenTree/models.py:1270 +#: InvenTree/models.py:1431 #, python-brace-format msgid "Background worker task '{f}' failed after {n} attempts" msgstr "" -#: InvenTree/models.py:1297 +#: InvenTree/models.py:1458 msgid "Server Error" msgstr "Terjadi Kesalahan Server" -#: InvenTree/models.py:1298 +#: InvenTree/models.py:1459 msgid "An error has been logged by the server." msgstr "Sebuah kesalahan telah dicatat oleh server." -#: InvenTree/models.py:1340 common/models.py:1748 +#: InvenTree/models.py:1501 common/models.py:1752 #: report/templates/report/inventree_bill_of_materials_report.html:126 #: report/templates/report/inventree_bill_of_materials_report.html:148 #: report/templates/report/inventree_return_order_report.html:35 msgid "Image" msgstr "" -#: InvenTree/serializers.py:253 part/models.py:4571 +#: InvenTree/serializers.py:255 part/models.py:4196 msgid "Must be a valid number" msgstr "Harus berupa angka yang valid" -#: InvenTree/serializers.py:295 company/models.py:214 part/models.py:3285 +#: InvenTree/serializers.py:297 company/models.py:215 part/models.py:3349 msgid "Currency" msgstr "Mata Uang" -#: InvenTree/serializers.py:298 part/serializers.py:1385 +#: InvenTree/serializers.py:300 part/serializers.py:1250 msgid "Select currency from available options" msgstr "" -#: InvenTree/serializers.py:653 +#: InvenTree/serializers.py:654 +msgid "This field may not be null." +msgstr "" + +#: InvenTree/serializers.py:660 msgid "Invalid value" msgstr "Nilai tidak valid" -#: InvenTree/serializers.py:690 +#: InvenTree/serializers.py:697 msgid "Remote Image" msgstr "" -#: InvenTree/serializers.py:691 +#: InvenTree/serializers.py:698 msgid "URL of remote image file" msgstr "URL file gambar external" -#: InvenTree/serializers.py:709 +#: InvenTree/serializers.py:716 msgid "Downloading images from remote URL is not enabled" msgstr "Unduhan gambar dari URL external tidak aktif" -#: InvenTree/serializers.py:716 +#: InvenTree/serializers.py:723 msgid "Failed to download image from remote URL" msgstr "" +#: InvenTree/serializers.py:806 +msgid "Invalid content type format" +msgstr "" + +#: InvenTree/serializers.py:809 +msgid "Content type not found" +msgstr "" + +#: InvenTree/serializers.py:815 +msgid "Content type does not match required mixin class" +msgstr "" + #: InvenTree/setting/locales.py:20 msgid "Arabic" msgstr "Bahasa Arab" @@ -537,30 +553,30 @@ msgstr "" msgid "Not a valid currency code" msgstr "Bukan kode mata uang yang valid" -#: build/api.py:54 order/api.py:111 order/api.py:270 order/api.py:1373 -#: order/serializers.py:132 +#: build/api.py:54 order/api.py:116 order/api.py:275 order/api.py:1378 +#: order/serializers.py:133 msgid "Order Status" msgstr "" -#: build/api.py:80 build/models.py:264 +#: build/api.py:80 build/models.py:265 msgid "Parent Build" msgstr "Produksi Induk" -#: build/api.py:84 build/api.py:831 order/api.py:547 order/api.py:770 -#: order/api.py:1174 order/api.py:1449 stock/api.py:573 +#: build/api.py:84 build/api.py:837 order/api.py:553 order/api.py:776 +#: order/api.py:1179 order/api.py:1454 stock/api.py:573 msgid "Include Variants" msgstr "" -#: build/api.py:100 build/api.py:466 build/api.py:845 build/models.py:270 -#: build/serializers.py:1225 build/serializers.py:1356 -#: build/serializers.py:1427 company/models.py:1067 company/serializers.py:445 -#: order/api.py:298 order/api.py:302 order/api.py:929 order/api.py:1187 -#: order/api.py:1190 order/models.py:1941 order/models.py:2108 -#: order/models.py:2109 part/api.py:1233 part/api.py:1236 part/api.py:1302 -#: part/api.py:1589 part/models.py:472 part/models.py:3296 part/models.py:3439 -#: part/models.py:3497 part/models.py:3518 part/models.py:3540 -#: part/models.py:3679 part/models.py:4046 part/models.py:4368 -#: part/models.py:4787 part/serializers.py:1928 +#: build/api.py:100 build/api.py:472 build/api.py:851 build/models.py:271 +#: build/serializers.py:1233 build/serializers.py:1364 +#: build/serializers.py:1435 company/models.py:1021 company/serializers.py:490 +#: order/api.py:303 order/api.py:307 order/api.py:934 order/api.py:1192 +#: order/api.py:1195 order/models.py:1942 order/models.py:2109 +#: order/models.py:2110 part/api.py:1160 part/api.py:1163 part/api.py:1314 +#: part/models.py:550 part/models.py:3360 part/models.py:3503 +#: part/models.py:3561 part/models.py:3582 part/models.py:3604 +#: part/models.py:3743 part/models.py:3993 part/models.py:4412 +#: part/serializers.py:1801 #: report/templates/report/inventree_bill_of_materials_report.html:110 #: report/templates/report/inventree_bill_of_materials_report.html:137 #: report/templates/report/inventree_build_order_report.html:109 @@ -580,9 +596,9 @@ msgstr "" msgid "Part" msgstr "Bagian" -#: build/api.py:120 build/api.py:123 build/serializers.py:1438 part/api.py:980 -#: part/api.py:1316 part/api.py:1600 part/models.py:1080 part/models.py:3568 -#: part/models.py:4162 part/serializers.py:1752 stock/api.py:869 +#: build/api.py:120 build/api.py:123 build/serializers.py:1446 part/api.py:975 +#: part/api.py:1325 part/models.py:435 part/models.py:1168 part/models.py:3632 +#: part/serializers.py:1617 stock/api.py:869 msgid "Category" msgstr "" @@ -590,7 +606,7 @@ msgstr "" msgid "Ancestor Build" msgstr "" -#: build/api.py:152 order/api.py:129 +#: build/api.py:152 order/api.py:134 msgid "Assigned to me" msgstr "" @@ -638,134 +654,134 @@ msgstr "" msgid "Completed after" msgstr "" -#: build/api.py:249 order/api.py:226 +#: build/api.py:249 order/api.py:231 msgid "Min Date" msgstr "" -#: build/api.py:272 order/api.py:245 +#: build/api.py:272 order/api.py:250 msgid "Max Date" msgstr "" -#: build/api.py:297 build/api.py:300 part/api.py:217 stock/api.py:961 +#: build/api.py:297 build/api.py:300 part/api.py:212 stock/api.py:961 msgid "Exclude Tree" msgstr "" -#: build/api.py:405 +#: build/api.py:411 msgid "Build must be cancelled before it can be deleted" msgstr "Pesanan harus dibatalkan sebelum dapat dihapus" -#: build/api.py:449 build/serializers.py:1374 part/models.py:4402 +#: build/api.py:455 build/serializers.py:1382 part/models.py:4027 msgid "Consumable" msgstr "" -#: build/api.py:452 build/serializers.py:1377 part/models.py:4396 +#: build/api.py:458 build/serializers.py:1385 part/models.py:4021 msgid "Optional" msgstr "" -#: build/api.py:455 build/serializers.py:1415 common/setting/system.py:456 -#: part/models.py:1202 part/serializers.py:1714 part/serializers.py:1725 +#: build/api.py:461 build/serializers.py:1423 common/setting/system.py:456 +#: part/models.py:1290 part/serializers.py:1579 part/serializers.py:1590 #: stock/api.py:639 msgid "Assembly" msgstr "" -#: build/api.py:458 +#: build/api.py:464 msgid "Tracked" msgstr "" -#: build/api.py:461 build/serializers.py:1380 part/models.py:1220 +#: build/api.py:467 build/serializers.py:1388 part/models.py:1308 msgid "Testable" msgstr "" -#: build/api.py:471 order/api.py:993 order/api.py:1363 +#: build/api.py:477 order/api.py:998 order/api.py:1368 msgid "Order Outstanding" msgstr "" -#: build/api.py:481 build/serializers.py:1464 order/api.py:952 +#: build/api.py:487 build/serializers.py:1472 order/api.py:957 msgid "Allocated" msgstr "" -#: build/api.py:490 build/models.py:1672 build/serializers.py:1393 +#: build/api.py:496 build/models.py:1673 build/serializers.py:1401 msgid "Consumed" msgstr "" -#: build/api.py:499 company/models.py:912 company/serializers.py:440 +#: build/api.py:505 company/models.py:866 company/serializers.py:467 #: templates/email/build_order_required_stock.html:19 #: templates/email/low_stock_notification.html:17 #: templates/email/part_event_notification.html:18 msgid "Available" msgstr "Tersedia" -#: build/api.py:523 build/serializers.py:1466 company/serializers.py:437 -#: order/serializers.py:1281 part/serializers.py:959 part/serializers.py:1306 -#: part/serializers.py:1761 +#: build/api.py:529 build/serializers.py:1474 company/serializers.py:464 +#: order/serializers.py:1295 part/serializers.py:844 part/serializers.py:1171 +#: part/serializers.py:1626 msgid "On Order" msgstr "" -#: build/api.py:868 build/models.py:117 order/models.py:1974 +#: build/api.py:874 build/models.py:118 order/models.py:1975 #: report/templates/report/inventree_build_order_report.html:105 #: stock/serializers.py:93 templates/email/build_order_completed.html:16 #: templates/email/overdue_build_order.html:15 msgid "Build Order" msgstr "Order Produksi" -#: build/api.py:882 build/api.py:886 build/serializers.py:372 -#: build/serializers.py:497 build/serializers.py:567 build/serializers.py:1251 -#: build/serializers.py:1256 order/api.py:1234 order/api.py:1239 -#: order/serializers.py:833 order/serializers.py:973 order/serializers.py:2042 +#: build/api.py:888 build/api.py:892 build/serializers.py:380 +#: build/serializers.py:505 build/serializers.py:575 build/serializers.py:1259 +#: build/serializers.py:1264 order/api.py:1239 order/api.py:1244 +#: order/serializers.py:844 order/serializers.py:984 order/serializers.py:2059 #: stock/api.py:987 stock/serializers.py:111 stock/serializers.py:601 #: stock/serializers.py:710 stock/serializers.py:888 stock/serializers.py:1418 -#: stock/serializers.py:1731 stock/serializers.py:1780 +#: stock/serializers.py:1739 stock/serializers.py:1788 #: templates/email/stale_stock_notification.html:18 users/models.py:549 msgid "Location" msgstr "Lokasi" -#: build/api.py:894 +#: build/api.py:900 msgid "Output" msgstr "" -#: build/api.py:896 +#: build/api.py:902 msgid "Filter by output stock item ID. Use 'null' to find uninstalled build items." msgstr "" -#: build/models.py:118 users/ruleset.py:31 +#: build/models.py:119 users/ruleset.py:31 msgid "Build Orders" msgstr "Order Produksi" -#: build/models.py:168 +#: build/models.py:169 msgid "Assembly BOM has not been validated" msgstr "" -#: build/models.py:175 +#: build/models.py:176 msgid "Build order cannot be created for an inactive part" msgstr "" -#: build/models.py:182 +#: build/models.py:183 msgid "Build order cannot be created for an unlocked part" msgstr "" -#: build/models.py:200 +#: build/models.py:201 msgid "Build orders can only be externally fulfilled for purchaseable parts" msgstr "" -#: build/models.py:207 order/models.py:369 +#: build/models.py:208 order/models.py:370 msgid "Responsible user or group must be specified" msgstr "" -#: build/models.py:212 +#: build/models.py:213 msgid "Build order part cannot be changed" msgstr "" -#: build/models.py:217 order/models.py:382 +#: build/models.py:218 order/models.py:383 msgid "Target date must be after start date" msgstr "" -#: build/models.py:245 +#: build/models.py:246 msgid "Build Order Reference" msgstr "Referensi Order Produksi" -#: build/models.py:246 build/serializers.py:1371 order/models.py:614 -#: order/models.py:1311 order/models.py:1773 order/models.py:2712 -#: part/models.py:4442 +#: build/models.py:247 build/serializers.py:1379 order/models.py:615 +#: order/models.py:1312 order/models.py:1774 order/models.py:2713 +#: part/models.py:4067 #: report/templates/report/inventree_bill_of_materials_report.html:139 #: report/templates/report/inventree_purchase_order_report.html:35 #: report/templates/report/inventree_return_order_report.html:26 @@ -773,230 +789,230 @@ msgstr "Referensi Order Produksi" msgid "Reference" msgstr "Referensi" -#: build/models.py:255 +#: build/models.py:256 msgid "Brief description of the build (optional)" msgstr "" -#: build/models.py:265 +#: build/models.py:266 msgid "BuildOrder to which this build is allocated" msgstr "Produksi induk dari produksi ini" -#: build/models.py:274 +#: build/models.py:275 msgid "Select part to build" msgstr "Pilih bagian untuk diproduksi" -#: build/models.py:279 +#: build/models.py:280 msgid "Sales Order Reference" msgstr "Referensi Order Penjualan" -#: build/models.py:284 +#: build/models.py:285 msgid "SalesOrder to which this build is allocated" msgstr "Order penjualan yang teralokasikan ke pesanan ini" -#: build/models.py:289 build/serializers.py:1097 +#: build/models.py:290 build/serializers.py:1105 msgid "Source Location" msgstr "Lokasi Sumber" -#: build/models.py:295 +#: build/models.py:296 msgid "Select location to take stock from for this build (leave blank to take from any stock location)" msgstr "Pilih dari lokasi mana stok akan diambil untuk produksi ini (kosongkan untuk mengambil stok dari mana pun)" -#: build/models.py:301 +#: build/models.py:302 msgid "External Build" msgstr "" -#: build/models.py:302 +#: build/models.py:303 msgid "This build order is fulfilled externally" msgstr "" -#: build/models.py:307 +#: build/models.py:308 msgid "Destination Location" msgstr "Lokasi Tujuan" -#: build/models.py:312 +#: build/models.py:313 msgid "Select location where the completed items will be stored" msgstr "Pilih lokasi di mana item selesai akan disimpan" -#: build/models.py:316 +#: build/models.py:317 msgid "Build Quantity" msgstr "Jumlah Produksi" -#: build/models.py:319 +#: build/models.py:320 msgid "Number of stock items to build" msgstr "Jumlah item stok yang akan dibuat" -#: build/models.py:323 +#: build/models.py:324 msgid "Completed items" msgstr "Item selesai" -#: build/models.py:325 +#: build/models.py:326 msgid "Number of stock items which have been completed" msgstr "Jumlah stok item yang telah diselesaikan" -#: build/models.py:329 +#: build/models.py:330 msgid "Build Status" msgstr "Status pembuatan" -#: build/models.py:334 +#: build/models.py:335 msgid "Build status code" msgstr "Kode status pembuatan" -#: build/models.py:343 build/serializers.py:359 order/serializers.py:849 +#: build/models.py:344 build/serializers.py:367 order/serializers.py:860 #: stock/models.py:1100 stock/serializers.py:85 stock/serializers.py:1591 msgid "Batch Code" msgstr "Kode Kelompok" -#: build/models.py:347 build/serializers.py:360 +#: build/models.py:348 build/serializers.py:368 msgid "Batch code for this build output" msgstr "Kode kelompok untuk hasil produksi ini" -#: build/models.py:351 order/models.py:479 order/serializers.py:186 -#: part/models.py:1283 +#: build/models.py:352 order/models.py:480 order/serializers.py:193 +#: part/models.py:1371 msgid "Creation Date" msgstr "Tanggal Pembuatan" -#: build/models.py:357 +#: build/models.py:358 msgid "Build start date" msgstr "" -#: build/models.py:358 +#: build/models.py:359 msgid "Scheduled start date for this build order" msgstr "" -#: build/models.py:364 +#: build/models.py:365 msgid "Target completion date" msgstr "Target tanggal selesai" -#: build/models.py:366 +#: build/models.py:367 msgid "Target date for build completion. Build will be overdue after this date." msgstr "Target tanggal selesai produksi. Produksi akan menjadi terlambat setelah tanggal ini." -#: build/models.py:371 order/models.py:667 order/models.py:2751 +#: build/models.py:372 order/models.py:668 order/models.py:2752 msgid "Completion Date" msgstr "Tanggal selesai" -#: build/models.py:379 +#: build/models.py:380 msgid "completed by" msgstr "diselesaikan oleh" -#: build/models.py:388 +#: build/models.py:389 msgid "Issued by" msgstr "Diserahkan oleh" -#: build/models.py:389 +#: build/models.py:390 msgid "User who issued this build order" msgstr "Pengguna yang menyerahkan order ini" -#: build/models.py:398 common/models.py:180 order/api.py:179 -#: order/models.py:504 part/models.py:1300 +#: build/models.py:399 common/models.py:184 order/api.py:184 +#: order/models.py:505 part/models.py:1388 #: report/templates/report/inventree_build_order_report.html:158 msgid "Responsible" msgstr "Penanggung Jawab" -#: build/models.py:399 +#: build/models.py:400 msgid "User or group responsible for this build order" msgstr "" -#: build/models.py:404 stock/models.py:1093 +#: build/models.py:405 stock/models.py:1093 msgid "External Link" msgstr "Tautan eksternal" -#: build/models.py:406 common/models.py:1984 part/models.py:1114 +#: build/models.py:407 common/models.py:1990 part/models.py:1202 #: stock/models.py:1095 msgid "Link to external URL" msgstr "Tautan menuju URL eksternal" -#: build/models.py:411 +#: build/models.py:412 msgid "Build Priority" msgstr "" -#: build/models.py:414 +#: build/models.py:415 msgid "Priority of this build order" msgstr "" -#: build/models.py:422 common/models.py:150 common/models.py:164 -#: order/api.py:165 order/models.py:451 order/models.py:1805 +#: build/models.py:423 common/models.py:154 common/models.py:168 +#: order/api.py:170 order/models.py:452 order/models.py:1806 msgid "Project Code" msgstr "" -#: build/models.py:423 +#: build/models.py:424 msgid "Project code for this build order" msgstr "" -#: build/models.py:676 +#: build/models.py:677 msgid "Cannot complete build order with open child builds" msgstr "" -#: build/models.py:681 +#: build/models.py:682 msgid "Cannot complete build order with incomplete outputs" msgstr "" -#: build/models.py:700 build/models.py:830 +#: build/models.py:701 build/models.py:831 msgid "Failed to offload task to complete build allocations" msgstr "" -#: build/models.py:723 +#: build/models.py:724 #, python-brace-format msgid "Build order {build} has been completed" msgstr "" -#: build/models.py:729 +#: build/models.py:730 msgid "A build order has been completed" msgstr "" -#: build/models.py:911 build/serializers.py:407 +#: build/models.py:912 build/serializers.py:415 msgid "Serial numbers must be provided for trackable parts" msgstr "" -#: build/models.py:1042 build/models.py:1129 +#: build/models.py:1043 build/models.py:1130 msgid "No build output specified" msgstr "Tidak ada hasil produksi yang ditentukan" -#: build/models.py:1045 +#: build/models.py:1046 msgid "Build output is already completed" msgstr "Hasil produksi sudah selesai" -#: build/models.py:1048 +#: build/models.py:1049 msgid "Build output does not match Build Order" msgstr "Hasil produksi tidak sesuai dengan order produksi" -#: build/models.py:1136 build/models.py:1234 build/serializers.py:285 -#: build/serializers.py:335 build/serializers.py:965 build/serializers.py:1739 -#: order/models.py:717 order/serializers.py:658 order/serializers.py:844 -#: part/serializers.py:1708 stock/models.py:940 stock/models.py:1430 +#: build/models.py:1137 build/models.py:1235 build/serializers.py:293 +#: build/serializers.py:343 build/serializers.py:973 build/serializers.py:1747 +#: order/models.py:718 order/serializers.py:669 order/serializers.py:855 +#: part/serializers.py:1573 stock/models.py:940 stock/models.py:1430 #: stock/models.py:1878 stock/serializers.py:688 stock/serializers.py:1580 msgid "Quantity must be greater than zero" msgstr "Jumlah harus lebih besar daripada nol" -#: build/models.py:1140 build/models.py:1239 build/serializers.py:290 +#: build/models.py:1141 build/models.py:1240 build/serializers.py:298 msgid "Quantity cannot be greater than the output quantity" msgstr "" -#: build/models.py:1214 build/serializers.py:606 +#: build/models.py:1215 build/serializers.py:614 msgid "Build output has not passed all required tests" msgstr "" -#: build/models.py:1217 build/serializers.py:601 +#: build/models.py:1218 build/serializers.py:609 #, python-brace-format msgid "Build output {serial} has not passed all required tests" msgstr "" -#: build/models.py:1229 +#: build/models.py:1230 msgid "Cannot partially complete a build output with allocated items" msgstr "" -#: build/models.py:1627 +#: build/models.py:1628 msgid "Build Order Line Item" msgstr "" -#: build/models.py:1651 +#: build/models.py:1652 msgid "Build object" msgstr "" -#: build/models.py:1663 build/models.py:1974 build/serializers.py:271 -#: build/serializers.py:320 build/serializers.py:1392 common/models.py:1340 -#: order/models.py:1756 order/models.py:2597 order/serializers.py:1696 -#: order/serializers.py:2124 part/models.py:3453 part/models.py:4390 +#: build/models.py:1664 build/models.py:1975 build/serializers.py:279 +#: build/serializers.py:328 build/serializers.py:1400 common/models.py:1344 +#: order/models.py:1757 order/models.py:2598 order/serializers.py:1710 +#: order/serializers.py:2141 part/models.py:3517 part/models.py:4015 #: report/templates/report/inventree_bill_of_materials_report.html:138 #: report/templates/report/inventree_build_order_report.html:113 #: report/templates/report/inventree_purchase_order_report.html:36 @@ -1014,427 +1030,427 @@ msgstr "" msgid "Quantity" msgstr "Jumlah" -#: build/models.py:1664 +#: build/models.py:1665 msgid "Required quantity for build order" msgstr "" -#: build/models.py:1673 +#: build/models.py:1674 msgid "Quantity of consumed stock" msgstr "" -#: build/models.py:1772 +#: build/models.py:1773 msgid "Build item must specify a build output, as master part is marked as trackable" msgstr "Item produksi harus menentukan hasil produksi karena bagian utama telah ditandai sebagai dapat dilacak" -#: build/models.py:1783 +#: build/models.py:1784 #, python-brace-format msgid "Allocated quantity ({q}) must not exceed available stock quantity ({a})" msgstr "" -#: build/models.py:1804 order/models.py:2546 +#: build/models.py:1805 order/models.py:2547 msgid "Stock item is over-allocated" msgstr "Item stok teralokasikan terlalu banyak" -#: build/models.py:1809 order/models.py:2549 +#: build/models.py:1810 order/models.py:2550 msgid "Allocation quantity must be greater than zero" msgstr "Jumlah yang dialokasikan harus lebih dari nol" -#: build/models.py:1815 +#: build/models.py:1816 msgid "Quantity must be 1 for serialized stock" msgstr "Jumlah harus 1 untuk stok dengan nomor seri" -#: build/models.py:1875 +#: build/models.py:1876 msgid "Selected stock item does not match BOM line" msgstr "" -#: build/models.py:1913 +#: build/models.py:1914 msgid "Allocated quantity exceeds available stock quantity" msgstr "" -#: build/models.py:1964 build/serializers.py:948 build/serializers.py:1240 -#: order/serializers.py:1533 order/serializers.py:1554 +#: build/models.py:1965 build/serializers.py:956 build/serializers.py:1248 +#: order/serializers.py:1547 order/serializers.py:1568 #: report/templates/report/inventree_sales_order_shipment_report.html:29 #: stock/api.py:1404 stock/models.py:456 stock/serializers.py:102 #: stock/serializers.py:800 stock/serializers.py:1274 stock/serializers.py:1386 msgid "Stock Item" msgstr "Stok Item" -#: build/models.py:1965 +#: build/models.py:1966 msgid "Source stock item" msgstr "Sumber stok item" -#: build/models.py:1975 +#: build/models.py:1976 msgid "Stock quantity to allocate to build" msgstr "Jumlah stok yang dialokasikan ke produksi" -#: build/models.py:1984 +#: build/models.py:1985 msgid "Install into" msgstr "Pasang ke" -#: build/models.py:1985 +#: build/models.py:1986 msgid "Destination stock item" msgstr "Tujuan stok item" -#: build/serializers.py:118 +#: build/serializers.py:120 msgid "Build Level" msgstr "" -#: build/serializers.py:128 +#: build/serializers.py:136 msgid "Part Name" msgstr "" -#: build/serializers.py:153 +#: build/serializers.py:161 msgid "Project Code Label" msgstr "" -#: build/serializers.py:219 build/serializers.py:974 +#: build/serializers.py:227 build/serializers.py:982 msgid "Build Output" msgstr "Hasil Produksi" -#: build/serializers.py:231 +#: build/serializers.py:239 msgid "Build output does not match the parent build" msgstr "Hasil produksi tidak sesuai dengan produksi induk" -#: build/serializers.py:235 +#: build/serializers.py:243 msgid "Output part does not match BuildOrder part" msgstr "Hasil bagian tidak sesuai dengan bagian dalam order produksi" -#: build/serializers.py:239 +#: build/serializers.py:247 msgid "This build output has already been completed" msgstr "Hasil produksi ini sudah diselesaikan" -#: build/serializers.py:253 +#: build/serializers.py:261 msgid "This build output is not fully allocated" msgstr "Hasil produksi tidak dialokasikan sepenuhnya" -#: build/serializers.py:272 build/serializers.py:321 +#: build/serializers.py:280 build/serializers.py:329 msgid "Enter quantity for build output" msgstr "Masukkan jumlah hasil pesanan" -#: build/serializers.py:343 +#: build/serializers.py:351 msgid "Integer quantity required for trackable parts" msgstr "Jumlah bagian yang dapat dilacak harus berupa angka bulat" -#: build/serializers.py:349 +#: build/serializers.py:357 msgid "Integer quantity required, as the bill of materials contains trackable parts" msgstr "Jumlah harus angka bulat karena terdapat bagian yang dapat dilacak dalam daftar barang" -#: build/serializers.py:366 order/serializers.py:865 order/serializers.py:1700 +#: build/serializers.py:374 order/serializers.py:876 order/serializers.py:1714 #: stock/serializers.py:699 msgid "Serial Numbers" msgstr "Nomor Seri" -#: build/serializers.py:367 +#: build/serializers.py:375 msgid "Enter serial numbers for build outputs" msgstr "Masukkan nomor seri untuk hasil pesanan" -#: build/serializers.py:373 +#: build/serializers.py:381 msgid "Stock location for build output" msgstr "" -#: build/serializers.py:388 +#: build/serializers.py:396 msgid "Auto Allocate Serial Numbers" msgstr "Alokasikan nomor seri secara otomatis" -#: build/serializers.py:390 +#: build/serializers.py:398 msgid "Automatically allocate required items with matching serial numbers" msgstr "Alokasikan item yang diperlukan dengan nomor seri yang sesuai secara otomatis" -#: build/serializers.py:423 order/serializers.py:951 stock/api.py:1183 +#: build/serializers.py:431 order/serializers.py:962 stock/api.py:1183 #: stock/models.py:1901 msgid "The following serial numbers already exist or are invalid" msgstr "Nomor-nomor seri berikut sudah ada atau tidak valid" -#: build/serializers.py:465 build/serializers.py:521 build/serializers.py:613 +#: build/serializers.py:473 build/serializers.py:529 build/serializers.py:621 msgid "A list of build outputs must be provided" msgstr "Daftar hasil pesanan harus disediakan" -#: build/serializers.py:498 +#: build/serializers.py:506 msgid "Stock location for scrapped outputs" msgstr "" -#: build/serializers.py:504 +#: build/serializers.py:512 msgid "Discard Allocations" msgstr "" -#: build/serializers.py:505 +#: build/serializers.py:513 msgid "Discard any stock allocations for scrapped outputs" msgstr "" -#: build/serializers.py:510 +#: build/serializers.py:518 msgid "Reason for scrapping build output(s)" msgstr "" -#: build/serializers.py:568 +#: build/serializers.py:576 msgid "Location for completed build outputs" msgstr "Lokasi hasil pesanan yang selesai" -#: build/serializers.py:576 +#: build/serializers.py:584 msgid "Accept Incomplete Allocation" msgstr "Terima Alokasi Tidak Lengkap" -#: build/serializers.py:577 +#: build/serializers.py:585 msgid "Complete outputs if stock has not been fully allocated" msgstr "" -#: build/serializers.py:702 +#: build/serializers.py:710 msgid "Consume Allocated Stock" msgstr "" -#: build/serializers.py:703 +#: build/serializers.py:711 msgid "Consume any stock which has already been allocated to this build" msgstr "" -#: build/serializers.py:709 +#: build/serializers.py:717 msgid "Remove Incomplete Outputs" msgstr "" -#: build/serializers.py:710 +#: build/serializers.py:718 msgid "Delete any build outputs which have not been completed" msgstr "" -#: build/serializers.py:737 +#: build/serializers.py:745 msgid "Not permitted" msgstr "Tidak diizinkan" -#: build/serializers.py:738 +#: build/serializers.py:746 msgid "Accept as consumed by this build order" msgstr "" -#: build/serializers.py:739 +#: build/serializers.py:747 msgid "Deallocate before completing this build order" msgstr "" -#: build/serializers.py:766 +#: build/serializers.py:774 msgid "Overallocated Stock" msgstr "" -#: build/serializers.py:769 +#: build/serializers.py:777 msgid "How do you want to handle extra stock items assigned to the build order" msgstr "" -#: build/serializers.py:780 +#: build/serializers.py:788 msgid "Some stock items have been overallocated" msgstr "" -#: build/serializers.py:785 +#: build/serializers.py:793 msgid "Accept Unallocated" msgstr "Terima Tidak Teralokasikan" -#: build/serializers.py:787 +#: build/serializers.py:795 msgid "Accept that stock items have not been fully allocated to this build order" msgstr "Terima bahwa stok item tidak teralokasikan sepenuhnya ke pesanan ini" -#: build/serializers.py:798 +#: build/serializers.py:806 msgid "Required stock has not been fully allocated" msgstr "Stok yang diperlukan belum teralokasikan sepenuhnya" -#: build/serializers.py:803 order/serializers.py:524 order/serializers.py:1601 +#: build/serializers.py:811 order/serializers.py:535 order/serializers.py:1615 msgid "Accept Incomplete" msgstr "Terima Tidak Selesai" -#: build/serializers.py:805 +#: build/serializers.py:813 msgid "Accept that the required number of build outputs have not been completed" msgstr "Terima bahwa jumlah hasil produksi yang diperlukan belum selesai" -#: build/serializers.py:816 +#: build/serializers.py:824 msgid "Required build quantity has not been completed" msgstr "Jumlah produksi yang diperlukan masih belum cukup" -#: build/serializers.py:828 +#: build/serializers.py:836 msgid "Build order has open child build orders" msgstr "" -#: build/serializers.py:831 +#: build/serializers.py:839 msgid "Build order must be in production state" msgstr "" -#: build/serializers.py:834 +#: build/serializers.py:842 msgid "Build order has incomplete outputs" msgstr "Order memiliki hasil produksi yang belum dilengkapi" -#: build/serializers.py:873 +#: build/serializers.py:881 msgid "Build Line" msgstr "" -#: build/serializers.py:881 +#: build/serializers.py:889 msgid "Build output" msgstr "Hasil produksi" -#: build/serializers.py:889 +#: build/serializers.py:897 msgid "Build output must point to the same build" msgstr "Hasil pesanan harus mengarah ke pesanan yang sama" -#: build/serializers.py:920 +#: build/serializers.py:928 msgid "Build Line Item" msgstr "" -#: build/serializers.py:938 +#: build/serializers.py:946 msgid "bom_item.part must point to the same part as the build order" msgstr "bom_item.part harus mengarah ke bagian yang sesuai dengan order produksi" -#: build/serializers.py:954 stock/serializers.py:1287 +#: build/serializers.py:962 stock/serializers.py:1287 msgid "Item must be in stock" msgstr "Item harus tersedia dalam stok" -#: build/serializers.py:997 order/serializers.py:1587 +#: build/serializers.py:1005 order/serializers.py:1601 #, python-brace-format msgid "Available quantity ({q}) exceeded" msgstr "Jumlah tersedia ({q}) terlampaui" -#: build/serializers.py:1003 +#: build/serializers.py:1011 msgid "Build output must be specified for allocation of tracked parts" msgstr "Hasil produksi harus ditentukan untuk mengalokasikan bagian yang terlacak" -#: build/serializers.py:1011 +#: build/serializers.py:1019 msgid "Build output cannot be specified for allocation of untracked parts" msgstr "Hasil produksi tidak dapat ditentukan untuk alokasi barang yang tidak terlacak" -#: build/serializers.py:1035 order/serializers.py:1860 +#: build/serializers.py:1043 order/serializers.py:1874 msgid "Allocation items must be provided" msgstr "Item yang dialokasikan harus disediakan" -#: build/serializers.py:1099 +#: build/serializers.py:1107 msgid "Stock location where parts are to be sourced (leave blank to take from any location)" msgstr "Lokasi stok, dari mana bahan/bagian akan diambilkan (kosongkan untuk mengambil dari lokasi mana pun)" -#: build/serializers.py:1108 +#: build/serializers.py:1116 msgid "Exclude Location" msgstr "Lokasi tidak termasuk" -#: build/serializers.py:1109 +#: build/serializers.py:1117 msgid "Exclude stock items from this selected location" msgstr "Jangan ambil stok item dari lokasi yang dipilih" -#: build/serializers.py:1114 +#: build/serializers.py:1122 msgid "Interchangeable Stock" msgstr "Stok bergantian" -#: build/serializers.py:1115 +#: build/serializers.py:1123 msgid "Stock items in multiple locations can be used interchangeably" msgstr "Item stok di beberapa lokasi dapat digunakan secara bergantian" -#: build/serializers.py:1120 +#: build/serializers.py:1128 msgid "Substitute Stock" msgstr "Stok pengganti" -#: build/serializers.py:1121 +#: build/serializers.py:1129 msgid "Allow allocation of substitute parts" msgstr "Izinkan alokasi bagian pengganti" -#: build/serializers.py:1126 +#: build/serializers.py:1134 msgid "Optional Items" msgstr "" -#: build/serializers.py:1127 +#: build/serializers.py:1135 msgid "Allocate optional BOM items to build order" msgstr "" -#: build/serializers.py:1148 +#: build/serializers.py:1156 msgid "Failed to start auto-allocation task" msgstr "" -#: build/serializers.py:1200 +#: build/serializers.py:1208 msgid "BOM Reference" msgstr "" -#: build/serializers.py:1206 +#: build/serializers.py:1214 msgid "BOM Part ID" msgstr "" -#: build/serializers.py:1213 +#: build/serializers.py:1221 msgid "BOM Part Name" msgstr "" -#: build/serializers.py:1266 build/serializers.py:1449 +#: build/serializers.py:1274 build/serializers.py:1457 msgid "Build" msgstr "" -#: build/serializers.py:1276 company/models.py:685 order/api.py:311 -#: order/api.py:316 order/api.py:543 order/serializers.py:650 +#: build/serializers.py:1284 company/models.py:639 order/api.py:316 +#: order/api.py:321 order/api.py:549 order/serializers.py:661 #: stock/models.py:1036 stock/serializers.py:579 msgid "Supplier Part" msgstr "" -#: build/serializers.py:1284 stock/serializers.py:620 +#: build/serializers.py:1292 stock/serializers.py:620 msgid "Allocated Quantity" msgstr "" -#: build/serializers.py:1351 +#: build/serializers.py:1359 msgid "Build Reference" msgstr "" -#: build/serializers.py:1361 +#: build/serializers.py:1369 msgid "Part Category Name" msgstr "" -#: build/serializers.py:1383 common/setting/system.py:480 part/models.py:1214 +#: build/serializers.py:1391 common/setting/system.py:480 part/models.py:1302 msgid "Trackable" msgstr "" -#: build/serializers.py:1386 +#: build/serializers.py:1394 msgid "Inherited" msgstr "" -#: build/serializers.py:1389 part/models.py:4475 +#: build/serializers.py:1397 part/models.py:4100 msgid "Allow Variants" msgstr "" -#: build/serializers.py:1395 build/serializers.py:1400 part/models.py:4208 -#: part/models.py:4779 stock/api.py:882 +#: build/serializers.py:1403 build/serializers.py:1408 part/models.py:3833 +#: part/models.py:4404 stock/api.py:882 msgid "BOM Item" msgstr "Item tagihan material" -#: build/serializers.py:1467 order/serializers.py:1282 part/serializers.py:1310 -#: part/serializers.py:1765 +#: build/serializers.py:1475 order/serializers.py:1296 part/serializers.py:1175 +#: part/serializers.py:1630 msgid "In Production" msgstr "" -#: build/serializers.py:1469 part/serializers.py:950 part/serializers.py:1314 +#: build/serializers.py:1477 part/serializers.py:835 part/serializers.py:1179 msgid "Scheduled to Build" msgstr "" -#: build/serializers.py:1472 part/serializers.py:987 +#: build/serializers.py:1480 part/serializers.py:872 msgid "External Stock" msgstr "" -#: build/serializers.py:1473 part/serializers.py:1300 part/serializers.py:1808 +#: build/serializers.py:1481 part/serializers.py:1165 part/serializers.py:1673 msgid "Available Stock" msgstr "" -#: build/serializers.py:1475 +#: build/serializers.py:1483 msgid "Available Substitute Stock" msgstr "" -#: build/serializers.py:1478 +#: build/serializers.py:1486 msgid "Available Variant Stock" msgstr "" -#: build/serializers.py:1752 +#: build/serializers.py:1760 msgid "Consumed quantity exceeds allocated quantity" msgstr "" -#: build/serializers.py:1789 +#: build/serializers.py:1797 msgid "Optional notes for the stock consumption" msgstr "" -#: build/serializers.py:1806 +#: build/serializers.py:1814 msgid "Build item must point to the correct build order" msgstr "" -#: build/serializers.py:1811 +#: build/serializers.py:1819 msgid "Duplicate build item allocation" msgstr "" -#: build/serializers.py:1829 +#: build/serializers.py:1837 msgid "Build line must point to the correct build order" msgstr "" -#: build/serializers.py:1834 +#: build/serializers.py:1842 msgid "Duplicate build line allocation" msgstr "" -#: build/serializers.py:1846 +#: build/serializers.py:1854 msgid "At least one item or line must be provided" msgstr "" @@ -1482,702 +1498,826 @@ msgstr "" msgid "Build order {bo} is now overdue" msgstr "" -#: common/api.py:694 +#: common/api.py:701 msgid "Is Link" msgstr "" -#: common/api.py:702 +#: common/api.py:709 msgid "Is File" msgstr "" -#: common/api.py:745 +#: common/api.py:756 msgid "User does not have permission to delete these attachments" msgstr "" -#: common/api.py:762 +#: common/api.py:769 msgid "User does not have permission to delete this attachment" msgstr "" -#: common/currency.py:122 +#: common/currency.py:130 msgid "Invalid currency code" msgstr "" -#: common/currency.py:124 +#: common/currency.py:132 msgid "Duplicate currency code" msgstr "" -#: common/currency.py:129 +#: common/currency.py:137 msgid "No valid currency codes provided" msgstr "" -#: common/currency.py:146 +#: common/currency.py:154 msgid "No plugin" msgstr "" -#: common/models.py:101 common/models.py:126 common/models.py:2729 +#: common/models.py:105 common/models.py:130 common/models.py:3150 msgid "Updated" msgstr "" -#: common/models.py:102 common/models.py:127 +#: common/models.py:106 common/models.py:131 msgid "Timestamp of last update" msgstr "" -#: common/models.py:139 +#: common/models.py:143 msgid "Update By" msgstr "" -#: common/models.py:140 +#: common/models.py:144 msgid "User who last updated this object" msgstr "" -#: common/models.py:165 +#: common/models.py:169 msgid "Unique project code" msgstr "" -#: common/models.py:172 +#: common/models.py:176 msgid "Project description" msgstr "" -#: common/models.py:181 +#: common/models.py:185 msgid "User or group responsible for this project" msgstr "" -#: common/models.py:771 common/models.py:1272 common/models.py:1310 +#: common/models.py:775 common/models.py:1276 common/models.py:1314 msgid "Settings key" msgstr "" -#: common/models.py:775 +#: common/models.py:779 msgid "Settings value" msgstr "" -#: common/models.py:830 +#: common/models.py:834 msgid "Chosen value is not a valid option" msgstr "" -#: common/models.py:846 +#: common/models.py:850 msgid "Value must be a boolean value" msgstr "" -#: common/models.py:854 +#: common/models.py:858 msgid "Value must be an integer value" msgstr "" -#: common/models.py:862 +#: common/models.py:866 msgid "Value must be a valid number" msgstr "" -#: common/models.py:887 +#: common/models.py:891 msgid "Value does not pass validation checks" msgstr "" -#: common/models.py:909 +#: common/models.py:913 msgid "Key string must be unique" msgstr "" -#: common/models.py:1318 common/models.py:1319 common/models.py:1423 -#: common/models.py:1424 common/models.py:1669 common/models.py:1670 -#: common/models.py:2000 common/models.py:2001 common/models.py:2382 -#: importer/models.py:100 part/models.py:3547 part/models.py:3575 +#: common/models.py:1322 common/models.py:1323 common/models.py:1427 +#: common/models.py:1428 common/models.py:1673 common/models.py:1674 +#: common/models.py:2006 common/models.py:2007 common/models.py:2803 +#: importer/models.py:100 part/models.py:3611 part/models.py:3639 #: plugin/models.py:355 plugin/models.py:356 #: report/templates/report/inventree_test_report.html:105 users/models.py:124 #: users/models.py:501 msgid "User" msgstr "Pengguna" -#: common/models.py:1341 +#: common/models.py:1345 msgid "Price break quantity" msgstr "" -#: common/models.py:1348 company/serializers.py:564 order/models.py:1842 -#: order/models.py:3043 +#: common/models.py:1352 company/serializers.py:349 order/models.py:1843 +#: order/models.py:3044 msgid "Price" msgstr "Harga" -#: common/models.py:1349 +#: common/models.py:1353 msgid "Unit price at specified quantity" msgstr "" -#: common/models.py:1400 common/models.py:1585 +#: common/models.py:1404 common/models.py:1589 msgid "Endpoint" msgstr "" -#: common/models.py:1401 +#: common/models.py:1405 msgid "Endpoint at which this webhook is received" msgstr "" -#: common/models.py:1411 +#: common/models.py:1415 msgid "Name for this webhook" msgstr "" -#: common/models.py:1415 common/models.py:2241 common/models.py:2348 -#: company/models.py:191 company/models.py:822 machine/models.py:40 -#: part/models.py:1237 plugin/models.py:69 stock/api.py:642 users/models.py:195 +#: common/models.py:1419 common/models.py:2247 common/models.py:2354 +#: company/models.py:192 company/models.py:776 machine/models.py:40 +#: part/models.py:1325 plugin/models.py:69 stock/api.py:642 users/models.py:195 #: users/models.py:554 users/serializers.py:314 msgid "Active" msgstr "Aktif" -#: common/models.py:1415 +#: common/models.py:1419 msgid "Is this webhook active" msgstr "" -#: common/models.py:1431 users/models.py:172 +#: common/models.py:1435 users/models.py:172 msgid "Token" msgstr "" -#: common/models.py:1432 +#: common/models.py:1436 msgid "Token for access" msgstr "" -#: common/models.py:1440 +#: common/models.py:1444 msgid "Secret" msgstr "" -#: common/models.py:1441 +#: common/models.py:1445 msgid "Shared secret for HMAC" msgstr "" -#: common/models.py:1549 common/models.py:2619 +#: common/models.py:1553 common/models.py:3040 msgid "Message ID" msgstr "" -#: common/models.py:1550 common/models.py:2609 +#: common/models.py:1554 common/models.py:3030 msgid "Unique identifier for this message" msgstr "" -#: common/models.py:1558 +#: common/models.py:1562 msgid "Host" msgstr "" -#: common/models.py:1559 +#: common/models.py:1563 msgid "Host from which this message was received" msgstr "" -#: common/models.py:1567 +#: common/models.py:1571 msgid "Header" msgstr "" -#: common/models.py:1568 +#: common/models.py:1572 msgid "Header of this message" msgstr "" -#: common/models.py:1575 +#: common/models.py:1579 msgid "Body" msgstr "" -#: common/models.py:1576 +#: common/models.py:1580 msgid "Body of this message" msgstr "" -#: common/models.py:1586 +#: common/models.py:1590 msgid "Endpoint on which this message was received" msgstr "" -#: common/models.py:1591 +#: common/models.py:1595 msgid "Worked on" msgstr "" -#: common/models.py:1592 +#: common/models.py:1596 msgid "Was the work on this message finished?" msgstr "" -#: common/models.py:1718 +#: common/models.py:1722 msgid "Id" msgstr "" -#: common/models.py:1720 +#: common/models.py:1724 msgid "Title" msgstr "Judul" -#: common/models.py:1722 common/models.py:1983 company/models.py:185 -#: company/models.py:467 company/models.py:534 company/models.py:839 -#: order/models.py:457 order/models.py:1786 order/models.py:2343 -#: part/models.py:1113 +#: common/models.py:1726 common/models.py:1989 company/models.py:186 +#: company/models.py:468 company/models.py:536 company/models.py:793 +#: order/models.py:458 order/models.py:1787 order/models.py:2344 +#: part/models.py:1201 #: report/templates/report/inventree_build_order_report.html:164 msgid "Link" msgstr "Tautan" -#: common/models.py:1724 +#: common/models.py:1728 msgid "Published" msgstr "" -#: common/models.py:1726 +#: common/models.py:1730 msgid "Author" msgstr "" -#: common/models.py:1728 +#: common/models.py:1732 msgid "Summary" msgstr "Kesimpulan" -#: common/models.py:1731 common/models.py:2586 +#: common/models.py:1735 common/models.py:3007 msgid "Read" msgstr "" -#: common/models.py:1731 +#: common/models.py:1735 msgid "Was this news item read?" msgstr "" -#: common/models.py:1748 +#: common/models.py:1752 msgid "Image file" msgstr "Berkas Gambar" -#: common/models.py:1760 +#: common/models.py:1764 msgid "Target model type for this image" msgstr "" -#: common/models.py:1764 +#: common/models.py:1768 msgid "Target model ID for this image" msgstr "" -#: common/models.py:1786 +#: common/models.py:1790 msgid "Custom Unit" msgstr "" -#: common/models.py:1804 +#: common/models.py:1808 msgid "Unit symbol must be unique" msgstr "" -#: common/models.py:1819 +#: common/models.py:1823 msgid "Unit name must be a valid identifier" msgstr "" -#: common/models.py:1838 +#: common/models.py:1842 msgid "Unit name" msgstr "" -#: common/models.py:1845 +#: common/models.py:1849 msgid "Symbol" msgstr "" -#: common/models.py:1846 +#: common/models.py:1850 msgid "Optional unit symbol" msgstr "" -#: common/models.py:1852 +#: common/models.py:1856 msgid "Definition" msgstr "" -#: common/models.py:1853 +#: common/models.py:1857 msgid "Unit definition" msgstr "" -#: common/models.py:1911 common/models.py:1974 stock/models.py:2967 +#: common/models.py:1917 common/models.py:1980 stock/models.py:2984 #: stock/serializers.py:247 msgid "Attachment" msgstr "Lampiran" -#: common/models.py:1928 +#: common/models.py:1934 msgid "Missing file" msgstr "File tidak ditemukan" -#: common/models.py:1929 +#: common/models.py:1935 msgid "Missing external link" msgstr "Tautan eksternal tidak ditemukan" -#: common/models.py:1966 +#: common/models.py:1972 common/models.py:2488 msgid "Model type" msgstr "" -#: common/models.py:1967 +#: common/models.py:1973 msgid "Target model type for image" msgstr "" -#: common/models.py:1975 +#: common/models.py:1981 msgid "Select file to attach" msgstr "Pilih file untuk dilampirkan" -#: common/models.py:1991 +#: common/models.py:1997 msgid "Comment" msgstr "Komentar" -#: common/models.py:1992 +#: common/models.py:1998 msgid "Attachment comment" msgstr "" -#: common/models.py:2008 +#: common/models.py:2014 msgid "Upload date" msgstr "" -#: common/models.py:2009 +#: common/models.py:2015 msgid "Date the file was uploaded" msgstr "" -#: common/models.py:2013 +#: common/models.py:2019 msgid "File size" msgstr "Ukuran Berkas" -#: common/models.py:2013 +#: common/models.py:2019 msgid "File size in bytes" msgstr "" -#: common/models.py:2051 common/serializers.py:684 +#: common/models.py:2057 common/serializers.py:688 msgid "Invalid model type specified for attachment" msgstr "" -#: common/models.py:2072 +#: common/models.py:2078 msgid "Custom State" msgstr "" -#: common/models.py:2073 +#: common/models.py:2079 msgid "Custom States" msgstr "" -#: common/models.py:2078 +#: common/models.py:2084 msgid "Reference Status Set" msgstr "" -#: common/models.py:2079 +#: common/models.py:2085 msgid "Status set that is extended with this custom state" msgstr "" -#: common/models.py:2083 generic/states/serializers.py:18 +#: common/models.py:2089 generic/states/serializers.py:18 msgid "Logical Key" msgstr "" -#: common/models.py:2085 +#: common/models.py:2091 msgid "State logical key that is equal to this custom state in business logic" msgstr "" -#: common/models.py:2090 common/models.py:2329 company/models.py:622 -#: machine/serializers.py:27 -#: report/templates/report/inventree_test_report.html:104 stock/models.py:2959 +#: common/models.py:2096 common/models.py:2335 machine/serializers.py:27 +#: report/templates/report/inventree_test_report.html:104 stock/models.py:2976 msgid "Value" msgstr "" -#: common/models.py:2091 +#: common/models.py:2097 msgid "Numerical value that will be saved in the models database" msgstr "" -#: common/models.py:2097 +#: common/models.py:2103 msgid "Name of the state" msgstr "" -#: common/models.py:2106 common/models.py:2335 generic/states/serializers.py:22 +#: common/models.py:2112 common/models.py:2341 generic/states/serializers.py:22 msgid "Label" msgstr "Label" -#: common/models.py:2107 +#: common/models.py:2113 msgid "Label that will be displayed in the frontend" msgstr "" -#: common/models.py:2114 generic/states/serializers.py:24 +#: common/models.py:2120 generic/states/serializers.py:24 msgid "Color" msgstr "" -#: common/models.py:2115 +#: common/models.py:2121 msgid "Color that will be displayed in the frontend" msgstr "" -#: common/models.py:2123 +#: common/models.py:2129 msgid "Model" msgstr "Model" -#: common/models.py:2124 +#: common/models.py:2130 msgid "Model this state is associated with" msgstr "" -#: common/models.py:2139 +#: common/models.py:2145 msgid "Model must be selected" msgstr "" -#: common/models.py:2142 +#: common/models.py:2148 msgid "Key must be selected" msgstr "" -#: common/models.py:2145 +#: common/models.py:2151 msgid "Logical key must be selected" msgstr "" -#: common/models.py:2149 +#: common/models.py:2155 msgid "Key must be different from logical key" msgstr "" -#: common/models.py:2156 +#: common/models.py:2162 msgid "Valid reference status class must be provided" msgstr "" -#: common/models.py:2162 +#: common/models.py:2168 msgid "Key must be different from the logical keys of the reference status" msgstr "" -#: common/models.py:2169 +#: common/models.py:2175 msgid "Logical key must be in the logical keys of the reference status" msgstr "" -#: common/models.py:2176 +#: common/models.py:2182 msgid "Name must be different from the names of the reference status" msgstr "" -#: common/models.py:2216 common/models.py:2323 part/models.py:3889 +#: common/models.py:2222 common/models.py:2329 common/models.py:2533 msgid "Selection List" msgstr "" -#: common/models.py:2217 +#: common/models.py:2223 msgid "Selection Lists" msgstr "" -#: common/models.py:2222 +#: common/models.py:2228 msgid "Name of the selection list" msgstr "" -#: common/models.py:2229 +#: common/models.py:2235 msgid "Description of the selection list" msgstr "" -#: common/models.py:2235 part/models.py:1242 +#: common/models.py:2241 part/models.py:1330 msgid "Locked" msgstr "" -#: common/models.py:2236 +#: common/models.py:2242 msgid "Is this selection list locked?" msgstr "" -#: common/models.py:2242 +#: common/models.py:2248 msgid "Can this selection list be used?" msgstr "" -#: common/models.py:2250 +#: common/models.py:2256 msgid "Source Plugin" msgstr "" -#: common/models.py:2251 +#: common/models.py:2257 msgid "Plugin which provides the selection list" msgstr "" -#: common/models.py:2256 +#: common/models.py:2262 msgid "Source String" msgstr "" -#: common/models.py:2257 +#: common/models.py:2263 msgid "Optional string identifying the source used for this list" msgstr "" -#: common/models.py:2266 +#: common/models.py:2272 msgid "Default Entry" msgstr "" -#: common/models.py:2267 +#: common/models.py:2273 msgid "Default entry for this selection list" msgstr "" -#: common/models.py:2272 common/models.py:2724 +#: common/models.py:2278 common/models.py:3145 msgid "Created" msgstr "Terbuat" -#: common/models.py:2273 +#: common/models.py:2279 msgid "Date and time that the selection list was created" msgstr "" -#: common/models.py:2278 +#: common/models.py:2284 msgid "Last Updated" msgstr "" -#: common/models.py:2279 +#: common/models.py:2285 msgid "Date and time that the selection list was last updated" msgstr "" -#: common/models.py:2313 +#: common/models.py:2319 msgid "Selection List Entry" msgstr "" -#: common/models.py:2314 +#: common/models.py:2320 msgid "Selection List Entries" msgstr "" -#: common/models.py:2324 +#: common/models.py:2330 msgid "Selection list to which this entry belongs" msgstr "" -#: common/models.py:2330 +#: common/models.py:2336 msgid "Value of the selection list entry" msgstr "" -#: common/models.py:2336 +#: common/models.py:2342 msgid "Label for the selection list entry" msgstr "" -#: common/models.py:2342 +#: common/models.py:2348 msgid "Description of the selection list entry" msgstr "" -#: common/models.py:2349 +#: common/models.py:2355 msgid "Is this selection list entry active?" msgstr "" -#: common/models.py:2367 -msgid "Barcode Scan" +#: common/models.py:2387 +msgid "Parameter Template" msgstr "" -#: common/models.py:2371 importer/models.py:546 part/models.py:4060 -msgid "Data" +#: common/models.py:2388 +msgid "Parameter Templates" msgstr "" -#: common/models.py:2372 -msgid "Barcode data" +#: common/models.py:2425 +msgid "Checkbox parameters cannot have units" msgstr "" -#: common/models.py:2383 -msgid "User who scanned the barcode" +#: common/models.py:2430 +msgid "Checkbox parameters cannot have choices" msgstr "" -#: common/models.py:2388 importer/models.py:69 -msgid "Timestamp" +#: common/models.py:2450 part/models.py:3707 +msgid "Choices must be unique" msgstr "" -#: common/models.py:2389 -msgid "Date and time of the barcode scan" +#: common/models.py:2467 +msgid "Parameter template name must be unique" msgstr "" -#: common/models.py:2395 -msgid "URL endpoint which processed the barcode" +#: common/models.py:2489 +msgid "Target model type for this parameter template" msgstr "" -#: common/models.py:2402 order/models.py:1832 plugin/serializers.py:93 -msgid "Context" +#: common/models.py:2495 +msgid "Parameter Name" msgstr "" -#: common/models.py:2403 -msgid "Context data for the barcode scan" +#: common/models.py:2501 part/models.py:1283 +msgid "Units" msgstr "" -#: common/models.py:2410 -msgid "Response" -msgstr "Respon" - -#: common/models.py:2411 -msgid "Response data from the barcode scan" +#: common/models.py:2502 +msgid "Physical units for this parameter" msgstr "" -#: common/models.py:2417 report/templates/report/inventree_test_report.html:103 -#: stock/models.py:2953 -msgid "Result" +#: common/models.py:2510 +msgid "Parameter description" msgstr "" -#: common/models.py:2418 -msgid "Was the barcode scan successful?" +#: common/models.py:2516 +msgid "Checkbox" msgstr "" -#: common/models.py:2500 -msgid "An error occurred" +#: common/models.py:2517 +msgid "Is this parameter a checkbox?" msgstr "" -#: common/models.py:2521 -msgid "INVE-E8: Email log deletion is protected. Set INVENTREE_PROTECT_EMAIL_LOG to False to allow deletion." +#: common/models.py:2522 part/models.py:3794 +msgid "Choices" +msgstr "Pilihan" + +#: common/models.py:2523 +msgid "Valid choices for this parameter (comma-separated)" msgstr "" -#: common/models.py:2568 -msgid "Email Message" +#: common/models.py:2534 +msgid "Selection list for this parameter" msgstr "" -#: common/models.py:2569 -msgid "Email Messages" +#: common/models.py:2539 part/models.py:3769 report/models.py:287 +msgid "Enabled" +msgstr "Aktif" + +#: common/models.py:2540 +msgid "Is this parameter template enabled?" msgstr "" -#: common/models.py:2576 -msgid "Announced" -msgstr "" - -#: common/models.py:2578 -msgid "Sent" -msgstr "" - -#: common/models.py:2579 -msgid "Failed" +#: common/models.py:2581 +msgid "Parameter" msgstr "" #: common/models.py:2582 -msgid "Delivered" -msgstr "" - -#: common/models.py:2590 -msgid "Confirmed" -msgstr "" - -#: common/models.py:2596 -msgid "Inbound" -msgstr "" - -#: common/models.py:2597 -msgid "Outbound" -msgstr "" - -#: common/models.py:2602 -msgid "No Reply" -msgstr "" - -#: common/models.py:2603 -msgid "Track Delivery" -msgstr "" - -#: common/models.py:2604 -msgid "Track Read" -msgstr "" - -#: common/models.py:2605 -msgid "Track Click" -msgstr "" - -#: common/models.py:2608 common/models.py:2711 -msgid "Global ID" -msgstr "" - -#: common/models.py:2621 -msgid "Identifier for this message (might be supplied by external system)" +msgid "Parameters" msgstr "" #: common/models.py:2628 +msgid "Invalid choice for parameter value" +msgstr "" + +#: common/models.py:2698 common/serializers.py:783 +msgid "Invalid model type specified for parameter" +msgstr "" + +#: common/models.py:2734 +msgid "Model ID" +msgstr "" + +#: common/models.py:2735 +msgid "ID of the target model for this parameter" +msgstr "" + +#: common/models.py:2744 common/setting/system.py:450 report/models.py:373 +#: report/models.py:669 report/serializers.py:94 report/serializers.py:135 +#: stock/serializers.py:234 +msgid "Template" +msgstr "" + +#: common/models.py:2745 +msgid "Parameter template" +msgstr "" + +#: common/models.py:2750 common/models.py:2792 importer/models.py:546 +msgid "Data" +msgstr "" + +#: common/models.py:2751 +msgid "Parameter Value" +msgstr "" + +#: common/models.py:2760 company/models.py:810 order/serializers.py:894 +#: order/serializers.py:2064 part/models.py:4075 part/models.py:4444 +#: report/templates/report/inventree_bill_of_materials_report.html:140 +#: report/templates/report/inventree_purchase_order_report.html:39 +#: report/templates/report/inventree_return_order_report.html:27 +#: report/templates/report/inventree_sales_order_report.html:32 +#: report/templates/report/inventree_stock_location_report.html:105 +#: stock/serializers.py:813 +msgid "Note" +msgstr "" + +#: common/models.py:2761 stock/serializers.py:718 +msgid "Optional note field" +msgstr "" + +#: common/models.py:2788 +msgid "Barcode Scan" +msgstr "" + +#: common/models.py:2793 +msgid "Barcode data" +msgstr "" + +#: common/models.py:2804 +msgid "User who scanned the barcode" +msgstr "" + +#: common/models.py:2809 importer/models.py:69 +msgid "Timestamp" +msgstr "" + +#: common/models.py:2810 +msgid "Date and time of the barcode scan" +msgstr "" + +#: common/models.py:2816 +msgid "URL endpoint which processed the barcode" +msgstr "" + +#: common/models.py:2823 order/models.py:1833 plugin/serializers.py:93 +msgid "Context" +msgstr "" + +#: common/models.py:2824 +msgid "Context data for the barcode scan" +msgstr "" + +#: common/models.py:2831 +msgid "Response" +msgstr "Respon" + +#: common/models.py:2832 +msgid "Response data from the barcode scan" +msgstr "" + +#: common/models.py:2838 report/templates/report/inventree_test_report.html:103 +#: stock/models.py:2970 +msgid "Result" +msgstr "" + +#: common/models.py:2839 +msgid "Was the barcode scan successful?" +msgstr "" + +#: common/models.py:2921 +msgid "An error occurred" +msgstr "" + +#: common/models.py:2942 +msgid "INVE-E8: Email log deletion is protected. Set INVENTREE_PROTECT_EMAIL_LOG to False to allow deletion." +msgstr "" + +#: common/models.py:2989 +msgid "Email Message" +msgstr "" + +#: common/models.py:2990 +msgid "Email Messages" +msgstr "" + +#: common/models.py:2997 +msgid "Announced" +msgstr "" + +#: common/models.py:2999 +msgid "Sent" +msgstr "" + +#: common/models.py:3000 +msgid "Failed" +msgstr "" + +#: common/models.py:3003 +msgid "Delivered" +msgstr "" + +#: common/models.py:3011 +msgid "Confirmed" +msgstr "" + +#: common/models.py:3017 +msgid "Inbound" +msgstr "" + +#: common/models.py:3018 +msgid "Outbound" +msgstr "" + +#: common/models.py:3023 +msgid "No Reply" +msgstr "" + +#: common/models.py:3024 +msgid "Track Delivery" +msgstr "" + +#: common/models.py:3025 +msgid "Track Read" +msgstr "" + +#: common/models.py:3026 +msgid "Track Click" +msgstr "" + +#: common/models.py:3029 common/models.py:3132 +msgid "Global ID" +msgstr "" + +#: common/models.py:3042 +msgid "Identifier for this message (might be supplied by external system)" +msgstr "" + +#: common/models.py:3049 msgid "Thread ID" msgstr "" -#: common/models.py:2630 +#: common/models.py:3051 msgid "Identifier for this message thread (might be supplied by external system)" msgstr "" -#: common/models.py:2639 +#: common/models.py:3060 msgid "Thread" msgstr "" -#: common/models.py:2640 +#: common/models.py:3061 msgid "Linked thread for this message" msgstr "" -#: common/models.py:2656 -msgid "Prioriy" +#: common/models.py:3077 +msgid "Priority" msgstr "" -#: common/models.py:2698 +#: common/models.py:3119 msgid "Email Thread" msgstr "" -#: common/models.py:2699 +#: common/models.py:3120 msgid "Email Threads" msgstr "" -#: common/models.py:2705 generic/states/serializers.py:16 +#: common/models.py:3126 generic/states/serializers.py:16 #: machine/serializers.py:24 plugin/models.py:46 users/models.py:113 msgid "Key" msgstr "" -#: common/models.py:2708 +#: common/models.py:3129 msgid "Unique key for this thread (used to identify the thread)" msgstr "" -#: common/models.py:2712 +#: common/models.py:3133 msgid "Unique identifier for this thread" msgstr "" -#: common/models.py:2719 +#: common/models.py:3140 msgid "Started Internal" msgstr "" -#: common/models.py:2720 +#: common/models.py:3141 msgid "Was this thread started internally?" msgstr "" -#: common/models.py:2725 +#: common/models.py:3146 msgid "Date and time that the thread was created" msgstr "" -#: common/models.py:2730 +#: common/models.py:3151 msgid "Date and time that the thread was last updated" msgstr "" @@ -2199,7 +2339,7 @@ msgstr "" msgid "A order that is assigned to you was canceled" msgstr "" -#: common/notifications.py:73 common/notifications.py:80 order/api.py:594 +#: common/notifications.py:73 common/notifications.py:80 order/api.py:600 msgid "Items Received" msgstr "Barang diterima" @@ -2211,88 +2351,93 @@ msgstr "" msgid "Items have been received against a return order" msgstr "" -#: common/serializers.py:145 +#: common/serializers.py:149 msgid "Indicates if the setting is overridden by an environment variable" msgstr "" -#: common/serializers.py:147 +#: common/serializers.py:151 msgid "Override" msgstr "" -#: common/serializers.py:498 +#: common/serializers.py:502 msgid "Is Running" msgstr "" -#: common/serializers.py:504 +#: common/serializers.py:508 msgid "Pending Tasks" msgstr "" -#: common/serializers.py:510 +#: common/serializers.py:514 msgid "Scheduled Tasks" msgstr "" -#: common/serializers.py:516 +#: common/serializers.py:520 msgid "Failed Tasks" msgstr "" -#: common/serializers.py:531 +#: common/serializers.py:535 msgid "Task ID" msgstr "" -#: common/serializers.py:531 +#: common/serializers.py:535 msgid "Unique task ID" msgstr "" -#: common/serializers.py:533 +#: common/serializers.py:537 msgid "Lock" msgstr "" -#: common/serializers.py:533 +#: common/serializers.py:537 msgid "Lock time" msgstr "" -#: common/serializers.py:535 +#: common/serializers.py:539 msgid "Task name" msgstr "" -#: common/serializers.py:537 +#: common/serializers.py:541 msgid "Function" msgstr "" -#: common/serializers.py:537 +#: common/serializers.py:541 msgid "Function name" msgstr "" -#: common/serializers.py:539 +#: common/serializers.py:543 msgid "Arguments" msgstr "" -#: common/serializers.py:539 +#: common/serializers.py:543 msgid "Task arguments" msgstr "" -#: common/serializers.py:542 +#: common/serializers.py:546 msgid "Keyword Arguments" msgstr "" -#: common/serializers.py:542 +#: common/serializers.py:546 msgid "Task keyword arguments" msgstr "" -#: common/serializers.py:652 +#: common/serializers.py:656 msgid "Filename" msgstr "Nama File" -#: common/serializers.py:659 importer/models.py:89 report/api.py:41 +#: common/serializers.py:663 common/serializers.py:730 +#: common/serializers.py:805 importer/models.py:89 report/api.py:41 #: report/models.py:293 report/serializers.py:52 msgid "Model Type" msgstr "" -#: common/serializers.py:687 +#: common/serializers.py:691 msgid "User does not have permission to create or edit attachments for this model" msgstr "" -#: common/serializers.py:731 common/serializers.py:834 +#: common/serializers.py:786 +msgid "User does not have permission to create or edit parameters for this model" +msgstr "" + +#: common/serializers.py:850 common/serializers.py:953 msgid "Selection list is locked" msgstr "" @@ -2368,7 +2513,7 @@ msgstr "" msgid "Show the `about` modal only to superusers" msgstr "" -#: common/setting/system.py:224 company/models.py:144 company/models.py:145 +#: common/setting/system.py:224 company/models.py:145 company/models.py:146 msgid "Company name" msgstr "Nama Perusahaan" @@ -2411,8 +2556,8 @@ msgstr "" #: common/setting/system.py:253 common/setting/system.py:293 #: common/setting/system.py:306 common/setting/system.py:314 #: common/setting/system.py:321 common/setting/system.py:330 -#: common/setting/system.py:339 common/setting/system.py:588 -#: common/setting/system.py:616 common/setting/system.py:707 +#: common/setting/system.py:339 common/setting/system.py:580 +#: common/setting/system.py:608 common/setting/system.py:707 #: common/setting/system.py:1103 common/setting/system.py:1119 msgid "days" msgstr "Hari" @@ -2657,12 +2802,6 @@ msgstr "" msgid "Copy category parameter templates when creating a part" msgstr "" -#: common/setting/system.py:450 part/models.py:4054 report/models.py:373 -#: report/models.py:669 report/serializers.py:94 report/serializers.py:135 -#: stock/serializers.py:234 -msgid "Template" -msgstr "" - #: common/setting/system.py:451 msgid "Parts are templates by default" msgstr "" @@ -2671,8 +2810,8 @@ msgstr "" msgid "Parts can be assembled from other components by default" msgstr "" -#: common/setting/system.py:462 part/models.py:1208 part/serializers.py:1734 -#: part/serializers.py:1741 +#: common/setting/system.py:462 part/models.py:1296 part/serializers.py:1599 +#: part/serializers.py:1606 msgid "Component" msgstr "Komponen" @@ -2680,7 +2819,7 @@ msgstr "Komponen" msgid "Parts can be used as sub-components by default" msgstr "" -#: common/setting/system.py:468 part/models.py:1226 +#: common/setting/system.py:468 part/models.py:1314 msgid "Purchaseable" msgstr "" @@ -2688,7 +2827,7 @@ msgstr "" msgid "Parts are purchaseable by default" msgstr "" -#: common/setting/system.py:474 part/models.py:1232 stock/api.py:643 +#: common/setting/system.py:474 part/models.py:1320 stock/api.py:643 msgid "Salable" msgstr "" @@ -2700,7 +2839,7 @@ msgstr "" msgid "Parts are trackable by default" msgstr "" -#: common/setting/system.py:486 part/models.py:1248 +#: common/setting/system.py:486 part/models.py:1336 msgid "Virtual" msgstr "" @@ -2749,158 +2888,158 @@ msgid "Part category default icon (empty means no icon)" msgstr "" #: common/setting/system.py:525 -msgid "Enforce Parameter Units" -msgstr "" - -#: common/setting/system.py:527 -msgid "If units are provided, parameter values must match the specified units" -msgstr "" - -#: common/setting/system.py:533 msgid "Minimum Pricing Decimal Places" msgstr "" -#: common/setting/system.py:535 +#: common/setting/system.py:527 msgid "Minimum number of decimal places to display when rendering pricing data" msgstr "" -#: common/setting/system.py:546 +#: common/setting/system.py:538 msgid "Maximum Pricing Decimal Places" msgstr "" -#: common/setting/system.py:548 +#: common/setting/system.py:540 msgid "Maximum number of decimal places to display when rendering pricing data" msgstr "" -#: common/setting/system.py:559 +#: common/setting/system.py:551 msgid "Use Supplier Pricing" msgstr "" -#: common/setting/system.py:561 +#: common/setting/system.py:553 msgid "Include supplier price breaks in overall pricing calculations" msgstr "" -#: common/setting/system.py:567 +#: common/setting/system.py:559 msgid "Purchase History Override" msgstr "" -#: common/setting/system.py:569 +#: common/setting/system.py:561 msgid "Historical purchase order pricing overrides supplier price breaks" msgstr "" -#: common/setting/system.py:575 +#: common/setting/system.py:567 msgid "Use Stock Item Pricing" msgstr "" -#: common/setting/system.py:577 +#: common/setting/system.py:569 msgid "Use pricing from manually entered stock data for pricing calculations" msgstr "" -#: common/setting/system.py:583 +#: common/setting/system.py:575 msgid "Stock Item Pricing Age" msgstr "" -#: common/setting/system.py:585 +#: common/setting/system.py:577 msgid "Exclude stock items older than this number of days from pricing calculations" msgstr "" -#: common/setting/system.py:592 +#: common/setting/system.py:584 msgid "Use Variant Pricing" msgstr "" -#: common/setting/system.py:593 +#: common/setting/system.py:585 msgid "Include variant pricing in overall pricing calculations" msgstr "" -#: common/setting/system.py:598 +#: common/setting/system.py:590 msgid "Active Variants Only" msgstr "" -#: common/setting/system.py:600 +#: common/setting/system.py:592 msgid "Only use active variant parts for calculating variant pricing" msgstr "" -#: common/setting/system.py:606 +#: common/setting/system.py:598 msgid "Auto Update Pricing" msgstr "" -#: common/setting/system.py:608 +#: common/setting/system.py:600 msgid "Automatically update part pricing when internal data changes" msgstr "" -#: common/setting/system.py:614 +#: common/setting/system.py:606 msgid "Pricing Rebuild Interval" msgstr "" -#: common/setting/system.py:615 +#: common/setting/system.py:607 msgid "Number of days before part pricing is automatically updated" msgstr "" -#: common/setting/system.py:621 +#: common/setting/system.py:613 msgid "Internal Prices" msgstr "" -#: common/setting/system.py:622 +#: common/setting/system.py:614 msgid "Enable internal prices for parts" msgstr "" -#: common/setting/system.py:627 +#: common/setting/system.py:619 msgid "Internal Price Override" msgstr "" -#: common/setting/system.py:629 +#: common/setting/system.py:621 msgid "If available, internal prices override price range calculations" msgstr "" -#: common/setting/system.py:635 +#: common/setting/system.py:627 msgid "Enable label printing" msgstr "" -#: common/setting/system.py:636 +#: common/setting/system.py:628 msgid "Enable label printing from the web interface" msgstr "" -#: common/setting/system.py:641 +#: common/setting/system.py:633 msgid "Label Image DPI" msgstr "" -#: common/setting/system.py:643 +#: common/setting/system.py:635 msgid "DPI resolution when generating image files to supply to label printing plugins" msgstr "" -#: common/setting/system.py:649 +#: common/setting/system.py:641 msgid "Enable Reports" msgstr "Aktifkan Laporan" -#: common/setting/system.py:650 +#: common/setting/system.py:642 msgid "Enable generation of reports" msgstr "" -#: common/setting/system.py:655 +#: common/setting/system.py:647 msgid "Debug Mode" msgstr "" -#: common/setting/system.py:656 +#: common/setting/system.py:648 msgid "Generate reports in debug mode (HTML output)" msgstr "" -#: common/setting/system.py:661 +#: common/setting/system.py:653 msgid "Log Report Errors" msgstr "" -#: common/setting/system.py:662 +#: common/setting/system.py:654 msgid "Log errors which occur when generating reports" msgstr "" -#: common/setting/system.py:667 plugin/builtin/labels/label_sheet.py:29 +#: common/setting/system.py:659 plugin/builtin/labels/label_sheet.py:29 #: report/models.py:381 msgid "Page Size" msgstr "Ukuran Halaman" -#: common/setting/system.py:668 +#: common/setting/system.py:660 msgid "Default page size for PDF reports" msgstr "" +#: common/setting/system.py:665 +msgid "Enforce Parameter Units" +msgstr "" + +#: common/setting/system.py:667 +msgid "If units are provided, parameter values must match the specified units" +msgstr "" + #: common/setting/system.py:673 msgid "Globally Unique Serials" msgstr "" @@ -3456,688 +3595,677 @@ msgid "Display PDF reports in the browser, instead of downloading as a file" msgstr "" #: common/setting/user.py:45 -msgid "Search Parts" -msgstr "Cari barang" +msgid "Barcode Scanner in Form Fields" +msgstr "" #: common/setting/user.py:46 -msgid "Display parts in search preview window" +msgid "Allow barcode scanner input in form fields" msgstr "" #: common/setting/user.py:51 -msgid "Search Supplier Parts" -msgstr "" +msgid "Search Parts" +msgstr "Cari barang" #: common/setting/user.py:52 -msgid "Display supplier parts in search preview window" +msgid "Display parts in search preview window" msgstr "" #: common/setting/user.py:57 -msgid "Search Manufacturer Parts" +msgid "Search Supplier Parts" msgstr "" #: common/setting/user.py:58 -msgid "Display manufacturer parts in search preview window" +msgid "Display supplier parts in search preview window" msgstr "" #: common/setting/user.py:63 -msgid "Hide Inactive Parts" +msgid "Search Manufacturer Parts" msgstr "" #: common/setting/user.py:64 -msgid "Excluded inactive parts from search preview window" +msgid "Display manufacturer parts in search preview window" msgstr "" #: common/setting/user.py:69 -msgid "Search Categories" +msgid "Hide Inactive Parts" msgstr "" #: common/setting/user.py:70 -msgid "Display part categories in search preview window" +msgid "Excluded inactive parts from search preview window" msgstr "" #: common/setting/user.py:75 -msgid "Search Stock" -msgstr "Cari Persediaan" +msgid "Search Categories" +msgstr "" #: common/setting/user.py:76 -msgid "Display stock items in search preview window" +msgid "Display part categories in search preview window" msgstr "" #: common/setting/user.py:81 +msgid "Search Stock" +msgstr "Cari Persediaan" + +#: common/setting/user.py:82 +msgid "Display stock items in search preview window" +msgstr "" + +#: common/setting/user.py:87 msgid "Hide Unavailable Stock Items" msgstr "" -#: common/setting/user.py:83 +#: common/setting/user.py:89 msgid "Exclude stock items which are not available from the search preview window" msgstr "" -#: common/setting/user.py:89 +#: common/setting/user.py:95 msgid "Search Locations" msgstr "Cari Lokasi" -#: common/setting/user.py:90 +#: common/setting/user.py:96 msgid "Display stock locations in search preview window" msgstr "" -#: common/setting/user.py:95 +#: common/setting/user.py:101 msgid "Search Companies" msgstr "Cari Perusahaan" -#: common/setting/user.py:96 +#: common/setting/user.py:102 msgid "Display companies in search preview window" msgstr "" -#: common/setting/user.py:101 +#: common/setting/user.py:107 msgid "Search Build Orders" msgstr "" -#: common/setting/user.py:102 +#: common/setting/user.py:108 msgid "Display build orders in search preview window" msgstr "" -#: common/setting/user.py:107 +#: common/setting/user.py:113 msgid "Search Purchase Orders" msgstr "" -#: common/setting/user.py:108 +#: common/setting/user.py:114 msgid "Display purchase orders in search preview window" msgstr "" -#: common/setting/user.py:113 +#: common/setting/user.py:119 msgid "Exclude Inactive Purchase Orders" msgstr "" -#: common/setting/user.py:114 +#: common/setting/user.py:120 msgid "Exclude inactive purchase orders from search preview window" msgstr "" -#: common/setting/user.py:119 +#: common/setting/user.py:125 msgid "Search Sales Orders" msgstr "" -#: common/setting/user.py:120 +#: common/setting/user.py:126 msgid "Display sales orders in search preview window" msgstr "" -#: common/setting/user.py:125 +#: common/setting/user.py:131 msgid "Exclude Inactive Sales Orders" msgstr "" -#: common/setting/user.py:126 +#: common/setting/user.py:132 msgid "Exclude inactive sales orders from search preview window" msgstr "" -#: common/setting/user.py:131 +#: common/setting/user.py:137 msgid "Search Sales Order Shipments" msgstr "" -#: common/setting/user.py:132 +#: common/setting/user.py:138 msgid "Display sales order shipments in search preview window" msgstr "" -#: common/setting/user.py:137 +#: common/setting/user.py:143 msgid "Search Return Orders" msgstr "" -#: common/setting/user.py:138 +#: common/setting/user.py:144 msgid "Display return orders in search preview window" msgstr "" -#: common/setting/user.py:143 +#: common/setting/user.py:149 msgid "Exclude Inactive Return Orders" msgstr "" -#: common/setting/user.py:144 +#: common/setting/user.py:150 msgid "Exclude inactive return orders from search preview window" msgstr "" -#: common/setting/user.py:149 +#: common/setting/user.py:155 msgid "Search Preview Results" msgstr "" -#: common/setting/user.py:151 +#: common/setting/user.py:157 msgid "Number of results to show in each section of the search preview window" msgstr "" -#: common/setting/user.py:157 +#: common/setting/user.py:163 msgid "Regex Search" msgstr "" -#: common/setting/user.py:158 +#: common/setting/user.py:164 msgid "Enable regular expressions in search queries" msgstr "" -#: common/setting/user.py:163 +#: common/setting/user.py:169 msgid "Whole Word Search" msgstr "" -#: common/setting/user.py:164 +#: common/setting/user.py:170 msgid "Search queries return results for whole word matches" msgstr "" -#: common/setting/user.py:169 +#: common/setting/user.py:175 msgid "Search Notes" msgstr "" -#: common/setting/user.py:171 +#: common/setting/user.py:177 msgid "Search queries return results for matches from the item's notes" msgstr "" -#: common/setting/user.py:177 +#: common/setting/user.py:183 msgid "Escape Key Closes Forms" msgstr "" -#: common/setting/user.py:178 +#: common/setting/user.py:184 msgid "Use the escape key to close modal forms" msgstr "" -#: common/setting/user.py:183 +#: common/setting/user.py:189 msgid "Fixed Navbar" msgstr "" -#: common/setting/user.py:184 +#: common/setting/user.py:190 msgid "The navbar position is fixed to the top of the screen" msgstr "" -#: common/setting/user.py:189 +#: common/setting/user.py:195 msgid "Fixed Table Headers" msgstr "" -#: common/setting/user.py:190 +#: common/setting/user.py:196 msgid "Table headers are fixed to the top of the table" msgstr "" -#: common/setting/user.py:195 +#: common/setting/user.py:201 msgid "Show Spotlight" msgstr "" -#: common/setting/user.py:196 +#: common/setting/user.py:202 msgid "Enable spotlight navigation functionality" msgstr "" -#: common/setting/user.py:201 +#: common/setting/user.py:207 msgid "Navigation Icons" msgstr "" -#: common/setting/user.py:202 +#: common/setting/user.py:208 msgid "Display icons in the navigation bar" msgstr "" -#: common/setting/user.py:207 +#: common/setting/user.py:213 msgid "Date Format" msgstr "" -#: common/setting/user.py:208 +#: common/setting/user.py:214 msgid "Preferred format for displaying dates" msgstr "" -#: common/setting/user.py:221 +#: common/setting/user.py:227 msgid "Show Stock History" msgstr "" -#: common/setting/user.py:222 +#: common/setting/user.py:228 msgid "Display stock history information in the part detail page" msgstr "" -#: common/setting/user.py:227 +#: common/setting/user.py:233 msgid "Show Last Breadcrumb" msgstr "" -#: common/setting/user.py:228 +#: common/setting/user.py:234 msgid "Show the current page in breadcrumbs" msgstr "" -#: common/setting/user.py:233 +#: common/setting/user.py:239 msgid "Show full stock location in tables" msgstr "" -#: common/setting/user.py:235 +#: common/setting/user.py:241 msgid "Disabled: The full location path is displayed as a hover tooltip. Enabled: The full location path is displayed as plain text." msgstr "" -#: common/setting/user.py:241 +#: common/setting/user.py:247 msgid "Show full part categories in tables" msgstr "" -#: common/setting/user.py:243 +#: common/setting/user.py:249 msgid "Disabled: The full category path is displayed as a hover tooltip. Enabled: The full category path is displayed as plain text." msgstr "" -#: common/setting/user.py:249 +#: common/setting/user.py:255 msgid "Receive error reports" msgstr "" -#: common/setting/user.py:250 +#: common/setting/user.py:256 msgid "Receive notifications for system errors" msgstr "" -#: common/setting/user.py:255 +#: common/setting/user.py:261 msgid "Last used printing machines" msgstr "" -#: common/setting/user.py:256 +#: common/setting/user.py:262 msgid "Save the last used printing machines for a user" msgstr "" -#: common/validators.py:34 +#: common/validators.py:38 +msgid "All models" +msgstr "" + +#: common/validators.py:63 msgid "No attachment model type provided" msgstr "" -#: common/validators.py:40 +#: common/validators.py:69 msgid "Invalid attachment model type" msgstr "" -#: common/validators.py:81 +#: common/validators.py:110 msgid "Minimum places cannot be greater than maximum places" msgstr "" -#: common/validators.py:93 +#: common/validators.py:122 msgid "Maximum places cannot be less than minimum places" msgstr "" -#: common/validators.py:104 +#: common/validators.py:133 msgid "An empty domain is not allowed." msgstr "" -#: common/validators.py:106 +#: common/validators.py:135 #, python-brace-format msgid "Invalid domain name: {domain}" msgstr "" -#: common/validators.py:122 +#: common/validators.py:151 msgid "Value must be uppercase" msgstr "" -#: common/validators.py:128 +#: common/validators.py:157 msgid "Value must be a valid variable identifier" msgstr "" -#: company/api.py:147 +#: company/api.py:141 msgid "Part is Active" msgstr "" -#: company/api.py:151 +#: company/api.py:145 msgid "Manufacturer is Active" msgstr "" -#: company/api.py:286 +#: company/api.py:246 msgid "Supplier Part is Active" msgstr "" -#: company/api.py:290 +#: company/api.py:250 msgid "Internal Part is Active" msgstr "" -#: company/api.py:295 +#: company/api.py:255 msgid "Supplier is Active" msgstr "" -#: company/api.py:307 company/models.py:520 company/serializers.py:457 -#: part/serializers.py:566 +#: company/api.py:267 company/models.py:522 company/serializers.py:502 +#: part/serializers.py:477 msgid "Manufacturer" msgstr "" -#: company/api.py:314 company/models.py:121 company/models.py:392 +#: company/api.py:274 company/models.py:122 company/models.py:393 #: stock/api.py:900 msgid "Company" msgstr "Perusahaan" -#: company/api.py:324 +#: company/api.py:284 msgid "Has Stock" msgstr "" -#: company/models.py:122 +#: company/models.py:123 msgid "Companies" msgstr "Perusahaan" -#: company/models.py:150 +#: company/models.py:151 msgid "Company description" msgstr "Deskripsi Perusahaan" -#: company/models.py:151 +#: company/models.py:152 msgid "Description of the company" msgstr "" -#: company/models.py:157 +#: company/models.py:158 msgid "Website" msgstr "Laman" -#: company/models.py:158 +#: company/models.py:159 msgid "Company website URL" msgstr "" -#: company/models.py:164 +#: company/models.py:165 msgid "Phone number" msgstr "Nomor Ponsel" -#: company/models.py:166 +#: company/models.py:167 msgid "Contact phone number" msgstr "" -#: company/models.py:173 +#: company/models.py:174 msgid "Contact email address" msgstr "Kontak alamat surel" -#: company/models.py:178 company/models.py:296 order/models.py:513 +#: company/models.py:179 company/models.py:297 order/models.py:514 #: users/models.py:561 msgid "Contact" msgstr "Kontak" -#: company/models.py:180 +#: company/models.py:181 msgid "Point of contact" msgstr "" -#: company/models.py:186 +#: company/models.py:187 msgid "Link to external company information" msgstr "" -#: company/models.py:191 +#: company/models.py:192 msgid "Is this company active?" msgstr "" -#: company/models.py:196 +#: company/models.py:197 msgid "Is customer" msgstr "" -#: company/models.py:197 +#: company/models.py:198 msgid "Do you sell items to this company?" msgstr "" -#: company/models.py:202 +#: company/models.py:203 msgid "Is supplier" msgstr "" -#: company/models.py:203 +#: company/models.py:204 msgid "Do you purchase items from this company?" msgstr "" -#: company/models.py:208 +#: company/models.py:209 msgid "Is manufacturer" msgstr "" -#: company/models.py:209 +#: company/models.py:210 msgid "Does this company manufacture parts?" msgstr "" -#: company/models.py:217 +#: company/models.py:218 msgid "Default currency used for this company" msgstr "" -#: company/models.py:224 +#: company/models.py:225 msgid "Tax ID" msgstr "" -#: company/models.py:225 +#: company/models.py:226 msgid "Company Tax ID" msgstr "" -#: company/models.py:335 order/models.py:523 order/models.py:2288 +#: company/models.py:336 order/models.py:524 order/models.py:2289 msgid "Address" msgstr "" -#: company/models.py:336 +#: company/models.py:337 msgid "Addresses" msgstr "" -#: company/models.py:393 +#: company/models.py:394 msgid "Select company" msgstr "" -#: company/models.py:398 +#: company/models.py:399 msgid "Address title" msgstr "" -#: company/models.py:399 +#: company/models.py:400 msgid "Title describing the address entry" msgstr "" -#: company/models.py:405 +#: company/models.py:406 msgid "Primary address" msgstr "" -#: company/models.py:406 +#: company/models.py:407 msgid "Set as primary address" msgstr "" -#: company/models.py:411 +#: company/models.py:412 msgid "Line 1" msgstr "" -#: company/models.py:412 +#: company/models.py:413 msgid "Address line 1" msgstr "" -#: company/models.py:418 +#: company/models.py:419 msgid "Line 2" msgstr "" -#: company/models.py:419 +#: company/models.py:420 msgid "Address line 2" msgstr "" -#: company/models.py:425 company/models.py:426 +#: company/models.py:426 company/models.py:427 msgid "Postal code" msgstr "Kode Pos" -#: company/models.py:432 +#: company/models.py:433 msgid "City/Region" msgstr "" -#: company/models.py:433 +#: company/models.py:434 msgid "Postal code city/region" msgstr "" -#: company/models.py:439 +#: company/models.py:440 msgid "State/Province" msgstr "" -#: company/models.py:440 +#: company/models.py:441 msgid "State or province" msgstr "" -#: company/models.py:446 +#: company/models.py:447 msgid "Country" msgstr "" -#: company/models.py:447 +#: company/models.py:448 msgid "Address country" msgstr "" -#: company/models.py:453 +#: company/models.py:454 msgid "Courier shipping notes" msgstr "" -#: company/models.py:454 +#: company/models.py:455 msgid "Notes for shipping courier" msgstr "" -#: company/models.py:460 +#: company/models.py:461 msgid "Internal shipping notes" msgstr "" -#: company/models.py:461 +#: company/models.py:462 msgid "Shipping notes for internal use" msgstr "" -#: company/models.py:468 +#: company/models.py:469 msgid "Link to address information (external)" msgstr "" -#: company/models.py:492 company/models.py:609 company/models.py:832 -#: company/serializers.py:471 stock/api.py:561 +#: company/models.py:494 company/models.py:786 company/serializers.py:516 +#: stock/api.py:561 msgid "Manufacturer Part" msgstr "" -#: company/models.py:509 company/models.py:800 stock/models.py:1025 +#: company/models.py:511 company/models.py:754 stock/models.py:1025 #: stock/serializers.py:407 msgid "Base Part" msgstr "" -#: company/models.py:511 company/models.py:802 +#: company/models.py:513 company/models.py:756 msgid "Select part" msgstr "" -#: company/models.py:521 +#: company/models.py:523 msgid "Select manufacturer" msgstr "" -#: company/models.py:527 company/serializers.py:479 order/serializers.py:734 -#: part/serializers.py:576 +#: company/models.py:529 company/serializers.py:524 order/serializers.py:745 +#: part/serializers.py:487 msgid "MPN" msgstr "" -#: company/models.py:528 stock/serializers.py:572 +#: company/models.py:530 stock/serializers.py:572 msgid "Manufacturer Part Number" msgstr "" -#: company/models.py:535 +#: company/models.py:537 msgid "URL for external manufacturer part link" msgstr "" -#: company/models.py:544 +#: company/models.py:546 msgid "Manufacturer part description" msgstr "" -#: company/models.py:597 -msgid "Manufacturer Part Parameter" -msgstr "" - -#: company/models.py:616 -msgid "Parameter name" -msgstr "" - -#: company/models.py:623 -msgid "Parameter value" -msgstr "" - -#: company/models.py:630 part/models.py:1195 part/models.py:3857 -msgid "Units" -msgstr "" - -#: company/models.py:631 -msgid "Parameter units" -msgstr "" - -#: company/models.py:740 +#: company/models.py:694 msgid "Pack units must be compatible with the base part units" msgstr "" -#: company/models.py:747 +#: company/models.py:701 msgid "Pack units must be greater than zero" msgstr "" -#: company/models.py:761 +#: company/models.py:715 msgid "Linked manufacturer part must reference the same base part" msgstr "" -#: company/models.py:810 company/serializers.py:449 company/serializers.py:467 -#: order/models.py:639 part/serializers.py:550 +#: company/models.py:764 company/serializers.py:494 company/serializers.py:512 +#: order/models.py:640 part/serializers.py:461 #: plugin/builtin/suppliers/digikey.py:26 plugin/builtin/suppliers/lcsc.py:27 #: plugin/builtin/suppliers/mouser.py:25 plugin/builtin/suppliers/tme.py:27 #: stock/api.py:567 templates/email/overdue_purchase_order.html:16 msgid "Supplier" msgstr "" -#: company/models.py:811 +#: company/models.py:765 msgid "Select supplier" msgstr "" -#: company/models.py:817 part/serializers.py:561 +#: company/models.py:771 part/serializers.py:472 msgid "Supplier stock keeping unit" msgstr "" -#: company/models.py:823 +#: company/models.py:777 msgid "Is this supplier part active?" msgstr "" -#: company/models.py:833 +#: company/models.py:787 msgid "Select manufacturer part" msgstr "" -#: company/models.py:840 +#: company/models.py:794 msgid "URL for external supplier part link" msgstr "" -#: company/models.py:849 +#: company/models.py:803 msgid "Supplier part description" msgstr "" -#: company/models.py:856 order/serializers.py:883 order/serializers.py:2047 -#: part/models.py:4070 part/models.py:4450 part/models.py:4819 -#: report/templates/report/inventree_bill_of_materials_report.html:140 -#: report/templates/report/inventree_purchase_order_report.html:39 -#: report/templates/report/inventree_return_order_report.html:27 -#: report/templates/report/inventree_sales_order_report.html:32 -#: report/templates/report/inventree_stock_location_report.html:105 -#: stock/serializers.py:813 -msgid "Note" -msgstr "" - -#: company/models.py:865 part/models.py:2250 +#: company/models.py:819 part/models.py:2338 msgid "base cost" msgstr "" -#: company/models.py:866 part/models.py:2251 +#: company/models.py:820 part/models.py:2339 msgid "Minimum charge (e.g. stocking fee)" msgstr "" -#: company/models.py:873 order/serializers.py:875 stock/models.py:1056 +#: company/models.py:827 order/serializers.py:886 stock/models.py:1056 #: stock/serializers.py:1606 msgid "Packaging" msgstr "" -#: company/models.py:874 +#: company/models.py:828 msgid "Part packaging" msgstr "" -#: company/models.py:879 +#: company/models.py:833 msgid "Pack Quantity" msgstr "" -#: company/models.py:881 +#: company/models.py:835 msgid "Total quantity supplied in a single pack. Leave empty for single items." msgstr "" -#: company/models.py:900 part/models.py:2257 +#: company/models.py:854 part/models.py:2345 msgid "multiple" msgstr "" -#: company/models.py:901 +#: company/models.py:855 msgid "Order multiple" msgstr "" -#: company/models.py:913 +#: company/models.py:867 msgid "Quantity available from supplier" msgstr "" -#: company/models.py:919 +#: company/models.py:873 msgid "Availability Updated" msgstr "" -#: company/models.py:920 +#: company/models.py:874 msgid "Date of last update of availability data" msgstr "" -#: company/models.py:1048 +#: company/models.py:1002 msgid "Supplier Price Break" msgstr "" -#: company/serializers.py:181 +#: company/serializers.py:184 +msgid "Primary Address" +msgstr "" + +#: company/serializers.py:186 msgid "Return the string representation for the primary address. This property exists for backwards compatibility." msgstr "" -#: company/serializers.py:212 +#: company/serializers.py:218 msgid "Default currency used for this supplier" msgstr "" -#: company/serializers.py:248 +#: company/serializers.py:260 msgid "Company Name" msgstr "" -#: company/serializers.py:433 part/serializers.py:955 stock/serializers.py:428 +#: company/serializers.py:460 part/serializers.py:840 stock/serializers.py:428 msgid "In Stock" msgstr "" +#: company/serializers.py:477 +msgid "Price Breaks" +msgstr "" + #: data_exporter/mixins.py:325 data_exporter/mixins.py:403 msgid "Error occurred during data export" msgstr "" @@ -4290,7 +4418,7 @@ msgstr "" msgid "Errors" msgstr "" -#: importer/models.py:550 part/serializers.py:1268 +#: importer/models.py:550 part/serializers.py:1133 msgid "Valid" msgstr "" @@ -4402,7 +4530,7 @@ msgstr "" msgid "Connected" msgstr "" -#: machine/machine_types/label_printer.py:232 order/api.py:1795 +#: machine/machine_types/label_printer.py:232 order/api.py:1800 msgid "Unknown" msgstr "Tidak diketahui" @@ -4530,105 +4658,105 @@ msgstr "" msgid "Maximum value for progress type, required if type=progress" msgstr "" -#: order/api.py:125 +#: order/api.py:130 msgid "Order Reference" msgstr "" -#: order/api.py:153 order/api.py:1207 +#: order/api.py:158 order/api.py:1212 msgid "Outstanding" msgstr "" -#: order/api.py:169 +#: order/api.py:174 msgid "Has Project Code" msgstr "" -#: order/api.py:183 order/models.py:488 +#: order/api.py:188 order/models.py:489 msgid "Created By" msgstr "" -#: order/api.py:187 +#: order/api.py:192 msgid "Created Before" msgstr "" -#: order/api.py:191 +#: order/api.py:196 msgid "Created After" msgstr "" -#: order/api.py:195 +#: order/api.py:200 msgid "Has Start Date" msgstr "" -#: order/api.py:203 +#: order/api.py:208 msgid "Start Date Before" msgstr "" -#: order/api.py:207 +#: order/api.py:212 msgid "Start Date After" msgstr "" -#: order/api.py:211 +#: order/api.py:216 msgid "Has Target Date" msgstr "" -#: order/api.py:219 +#: order/api.py:224 msgid "Target Date Before" msgstr "" -#: order/api.py:223 +#: order/api.py:228 msgid "Target Date After" msgstr "" -#: order/api.py:274 +#: order/api.py:279 msgid "Has Pricing" msgstr "" -#: order/api.py:327 order/api.py:812 order/api.py:1490 +#: order/api.py:332 order/api.py:818 order/api.py:1495 msgid "Completed Before" msgstr "" -#: order/api.py:331 order/api.py:816 order/api.py:1494 +#: order/api.py:336 order/api.py:822 order/api.py:1499 msgid "Completed After" msgstr "" -#: order/api.py:337 order/api.py:341 +#: order/api.py:342 order/api.py:346 msgid "External Build Order" msgstr "" -#: order/api.py:526 order/api.py:914 order/api.py:1170 order/models.py:1922 -#: order/models.py:2049 order/models.py:2099 order/models.py:2279 -#: order/models.py:2477 order/models.py:2999 order/models.py:3065 +#: order/api.py:532 order/api.py:919 order/api.py:1175 order/models.py:1923 +#: order/models.py:2050 order/models.py:2100 order/models.py:2280 +#: order/models.py:2478 order/models.py:3000 order/models.py:3066 msgid "Order" msgstr "" -#: order/api.py:530 order/api.py:982 +#: order/api.py:536 order/api.py:987 msgid "Order Complete" msgstr "" -#: order/api.py:562 order/api.py:566 order/serializers.py:745 +#: order/api.py:568 order/api.py:572 order/serializers.py:756 msgid "Internal Part" msgstr "" -#: order/api.py:584 +#: order/api.py:590 msgid "Order Pending" msgstr "" -#: order/api.py:967 +#: order/api.py:972 msgid "Completed" msgstr "Selesai" -#: order/api.py:1223 +#: order/api.py:1228 msgid "Has Shipment" msgstr "" -#: order/api.py:1789 order/models.py:552 order/models.py:1923 -#: order/models.py:2050 +#: order/api.py:1794 order/models.py:553 order/models.py:1924 +#: order/models.py:2051 #: report/templates/report/inventree_purchase_order_report.html:14 #: stock/serializers.py:129 templates/email/overdue_purchase_order.html:15 msgid "Purchase Order" msgstr "" -#: order/api.py:1791 order/models.py:1251 order/models.py:2100 -#: order/models.py:2280 order/models.py:2478 +#: order/api.py:1796 order/models.py:1252 order/models.py:2101 +#: order/models.py:2281 order/models.py:2479 #: report/templates/report/inventree_build_order_report.html:135 #: report/templates/report/inventree_sales_order_report.html:14 #: report/templates/report/inventree_sales_order_shipment_report.html:15 @@ -4636,8 +4764,8 @@ msgstr "" msgid "Sales Order" msgstr "" -#: order/api.py:1793 order/models.py:2649 order/models.py:3000 -#: order/models.py:3066 +#: order/api.py:1798 order/models.py:2650 order/models.py:3001 +#: order/models.py:3067 #: report/templates/report/inventree_return_order_report.html:13 #: templates/email/overdue_return_order.html:15 msgid "Return Order" @@ -4653,722 +4781,722 @@ msgstr "Total Harga" msgid "Total price for this order" msgstr "" -#: order/models.py:96 order/serializers.py:77 +#: order/models.py:96 order/serializers.py:78 msgid "Order Currency" msgstr "" -#: order/models.py:99 order/serializers.py:78 +#: order/models.py:99 order/serializers.py:79 msgid "Currency for this order (leave blank to use company default)" msgstr "" -#: order/models.py:324 +#: order/models.py:325 msgid "This order is locked and cannot be modified" msgstr "" -#: order/models.py:376 +#: order/models.py:377 msgid "Contact does not match selected company" msgstr "" -#: order/models.py:383 +#: order/models.py:384 msgid "Start date must be before target date" msgstr "" -#: order/models.py:390 +#: order/models.py:391 msgid "Address does not match selected company" msgstr "" -#: order/models.py:443 +#: order/models.py:444 msgid "Order description (optional)" msgstr "" -#: order/models.py:452 order/models.py:1806 +#: order/models.py:453 order/models.py:1807 msgid "Select project code for this order" msgstr "" -#: order/models.py:458 order/models.py:1787 order/models.py:2344 +#: order/models.py:459 order/models.py:1788 order/models.py:2345 msgid "Link to external page" msgstr "" -#: order/models.py:465 +#: order/models.py:466 msgid "Start date" msgstr "" -#: order/models.py:466 +#: order/models.py:467 msgid "Scheduled start date for this order" msgstr "" -#: order/models.py:472 order/models.py:1794 order/serializers.py:309 +#: order/models.py:473 order/models.py:1795 order/serializers.py:317 #: report/templates/report/inventree_build_order_report.html:125 msgid "Target Date" msgstr "" -#: order/models.py:474 +#: order/models.py:475 msgid "Expected date for order delivery. Order will be overdue after this date." msgstr "" -#: order/models.py:494 +#: order/models.py:495 msgid "Issue Date" msgstr "" -#: order/models.py:495 +#: order/models.py:496 msgid "Date order was issued" msgstr "" -#: order/models.py:503 +#: order/models.py:504 msgid "User or group responsible for this order" msgstr "" -#: order/models.py:514 +#: order/models.py:515 msgid "Point of contact for this order" msgstr "" -#: order/models.py:524 +#: order/models.py:525 msgid "Company address for this order" msgstr "" -#: order/models.py:615 order/models.py:1312 +#: order/models.py:616 order/models.py:1313 msgid "Order reference" msgstr "" -#: order/models.py:624 order/models.py:1336 order/models.py:2737 +#: order/models.py:625 order/models.py:1337 order/models.py:2738 #: stock/serializers.py:559 stock/serializers.py:988 users/models.py:542 msgid "Status" msgstr "Status" -#: order/models.py:625 +#: order/models.py:626 msgid "Purchase order status" msgstr "" -#: order/models.py:640 +#: order/models.py:641 msgid "Company from which the items are being ordered" msgstr "" -#: order/models.py:651 +#: order/models.py:652 msgid "Supplier Reference" msgstr "" -#: order/models.py:652 +#: order/models.py:653 msgid "Supplier order reference code" msgstr "" -#: order/models.py:661 +#: order/models.py:662 msgid "received by" msgstr "" -#: order/models.py:668 order/models.py:2752 +#: order/models.py:669 order/models.py:2753 msgid "Date order was completed" msgstr "" -#: order/models.py:677 order/models.py:1981 +#: order/models.py:678 order/models.py:1982 msgid "Destination" msgstr "" -#: order/models.py:678 order/models.py:1985 +#: order/models.py:679 order/models.py:1986 msgid "Destination for received items" msgstr "" -#: order/models.py:724 +#: order/models.py:725 msgid "Part supplier must match PO supplier" msgstr "" -#: order/models.py:994 +#: order/models.py:995 msgid "Line item does not match purchase order" msgstr "" -#: order/models.py:997 +#: order/models.py:998 msgid "Line item is missing a linked part" msgstr "" -#: order/models.py:1011 +#: order/models.py:1012 msgid "Quantity must be a positive number" msgstr "" -#: order/models.py:1323 order/models.py:2724 stock/models.py:1078 +#: order/models.py:1324 order/models.py:2725 stock/models.py:1078 #: stock/models.py:1079 stock/serializers.py:1322 #: templates/email/overdue_return_order.html:16 #: templates/email/overdue_sales_order.html:16 msgid "Customer" msgstr "Pelanggan" -#: order/models.py:1324 +#: order/models.py:1325 msgid "Company to which the items are being sold" msgstr "" -#: order/models.py:1337 +#: order/models.py:1338 msgid "Sales order status" msgstr "" -#: order/models.py:1348 order/models.py:2744 +#: order/models.py:1349 order/models.py:2745 msgid "Customer Reference " msgstr "" -#: order/models.py:1349 order/models.py:2745 +#: order/models.py:1350 order/models.py:2746 msgid "Customer order reference code" msgstr "" -#: order/models.py:1353 order/models.py:2296 +#: order/models.py:1354 order/models.py:2297 msgid "Shipment Date" msgstr "" -#: order/models.py:1362 +#: order/models.py:1363 msgid "shipped by" msgstr "" -#: order/models.py:1413 +#: order/models.py:1414 msgid "Order is already complete" msgstr "" -#: order/models.py:1416 +#: order/models.py:1417 msgid "Order is already cancelled" msgstr "" -#: order/models.py:1420 +#: order/models.py:1421 msgid "Only an open order can be marked as complete" msgstr "" -#: order/models.py:1424 +#: order/models.py:1425 msgid "Order cannot be completed as there are incomplete shipments" msgstr "" -#: order/models.py:1429 +#: order/models.py:1430 msgid "Order cannot be completed as there are incomplete allocations" msgstr "" -#: order/models.py:1438 +#: order/models.py:1439 msgid "Order cannot be completed as there are incomplete line items" msgstr "" -#: order/models.py:1733 order/models.py:1749 +#: order/models.py:1734 order/models.py:1750 msgid "The order is locked and cannot be modified" msgstr "" -#: order/models.py:1757 +#: order/models.py:1758 msgid "Item quantity" msgstr "" -#: order/models.py:1774 +#: order/models.py:1775 msgid "Line item reference" msgstr "" -#: order/models.py:1781 +#: order/models.py:1782 msgid "Line item notes" msgstr "" -#: order/models.py:1796 +#: order/models.py:1797 msgid "Target date for this line item (leave blank to use the target date from the order)" msgstr "" -#: order/models.py:1826 +#: order/models.py:1827 msgid "Line item description (optional)" msgstr "" -#: order/models.py:1833 +#: order/models.py:1834 msgid "Additional context for this line" msgstr "" -#: order/models.py:1843 +#: order/models.py:1844 msgid "Unit price" msgstr "" -#: order/models.py:1862 +#: order/models.py:1863 msgid "Purchase Order Line Item" msgstr "" -#: order/models.py:1889 +#: order/models.py:1890 msgid "Supplier part must match supplier" msgstr "" -#: order/models.py:1894 +#: order/models.py:1895 msgid "Build order must be marked as external" msgstr "" -#: order/models.py:1901 +#: order/models.py:1902 msgid "Build orders can only be linked to assembly parts" msgstr "" -#: order/models.py:1907 +#: order/models.py:1908 msgid "Build order part must match line item part" msgstr "" -#: order/models.py:1942 +#: order/models.py:1943 msgid "Supplier part" msgstr "" -#: order/models.py:1949 +#: order/models.py:1950 msgid "Received" msgstr "" -#: order/models.py:1950 +#: order/models.py:1951 msgid "Number of items received" msgstr "" -#: order/models.py:1958 stock/models.py:1201 stock/serializers.py:637 +#: order/models.py:1959 stock/models.py:1201 stock/serializers.py:637 msgid "Purchase Price" msgstr "" -#: order/models.py:1959 +#: order/models.py:1960 msgid "Unit purchase price" msgstr "" -#: order/models.py:1975 +#: order/models.py:1976 msgid "External Build Order to be fulfilled by this line item" msgstr "" -#: order/models.py:2038 +#: order/models.py:2039 msgid "Purchase Order Extra Line" msgstr "" -#: order/models.py:2067 +#: order/models.py:2068 msgid "Sales Order Line Item" msgstr "" -#: order/models.py:2092 +#: order/models.py:2093 msgid "Only salable parts can be assigned to a sales order" msgstr "" -#: order/models.py:2118 +#: order/models.py:2119 msgid "Sale Price" msgstr "Harga Jual" -#: order/models.py:2119 +#: order/models.py:2120 msgid "Unit sale price" msgstr "" -#: order/models.py:2128 order/status_codes.py:50 +#: order/models.py:2129 order/status_codes.py:50 msgid "Shipped" msgstr "Dikirim" -#: order/models.py:2129 +#: order/models.py:2130 msgid "Shipped quantity" msgstr "" -#: order/models.py:2240 +#: order/models.py:2241 msgid "Sales Order Shipment" msgstr "" -#: order/models.py:2253 +#: order/models.py:2254 msgid "Shipment address must match the customer" msgstr "" -#: order/models.py:2289 +#: order/models.py:2290 msgid "Shipping address for this shipment" msgstr "" -#: order/models.py:2297 +#: order/models.py:2298 msgid "Date of shipment" msgstr "" -#: order/models.py:2303 +#: order/models.py:2304 msgid "Delivery Date" msgstr "" -#: order/models.py:2304 +#: order/models.py:2305 msgid "Date of delivery of shipment" msgstr "" -#: order/models.py:2312 +#: order/models.py:2313 msgid "Checked By" msgstr "" -#: order/models.py:2313 +#: order/models.py:2314 msgid "User who checked this shipment" msgstr "" -#: order/models.py:2320 order/models.py:2574 order/serializers.py:1711 -#: order/serializers.py:1835 +#: order/models.py:2321 order/models.py:2575 order/serializers.py:1725 +#: order/serializers.py:1849 #: report/templates/report/inventree_sales_order_shipment_report.html:14 msgid "Shipment" msgstr "" -#: order/models.py:2321 +#: order/models.py:2322 msgid "Shipment number" msgstr "" -#: order/models.py:2329 +#: order/models.py:2330 msgid "Tracking Number" msgstr "" -#: order/models.py:2330 +#: order/models.py:2331 msgid "Shipment tracking information" msgstr "" -#: order/models.py:2337 +#: order/models.py:2338 msgid "Invoice Number" msgstr "" -#: order/models.py:2338 +#: order/models.py:2339 msgid "Reference number for associated invoice" msgstr "" -#: order/models.py:2377 +#: order/models.py:2378 msgid "Shipment has already been sent" msgstr "" -#: order/models.py:2380 +#: order/models.py:2381 msgid "Shipment has no allocated stock items" msgstr "" -#: order/models.py:2387 +#: order/models.py:2388 msgid "Shipment must be checked before it can be completed" msgstr "" -#: order/models.py:2466 +#: order/models.py:2467 msgid "Sales Order Extra Line" msgstr "" -#: order/models.py:2495 +#: order/models.py:2496 msgid "Sales Order Allocation" msgstr "" -#: order/models.py:2518 order/models.py:2520 +#: order/models.py:2519 order/models.py:2521 msgid "Stock item has not been assigned" msgstr "" -#: order/models.py:2527 +#: order/models.py:2528 msgid "Cannot allocate stock item to a line with a different part" msgstr "" -#: order/models.py:2530 +#: order/models.py:2531 msgid "Cannot allocate stock to a line without a part" msgstr "" -#: order/models.py:2533 +#: order/models.py:2534 msgid "Allocation quantity cannot exceed stock quantity" msgstr "" -#: order/models.py:2552 order/serializers.py:1581 +#: order/models.py:2553 order/serializers.py:1595 msgid "Quantity must be 1 for serialized stock item" msgstr "" -#: order/models.py:2555 +#: order/models.py:2556 msgid "Sales order does not match shipment" msgstr "" -#: order/models.py:2556 plugin/base/barcodes/api.py:642 +#: order/models.py:2557 plugin/base/barcodes/api.py:642 msgid "Shipment does not match sales order" msgstr "" -#: order/models.py:2564 +#: order/models.py:2565 msgid "Line" msgstr "" -#: order/models.py:2575 +#: order/models.py:2576 msgid "Sales order shipment reference" msgstr "" -#: order/models.py:2588 order/models.py:3007 +#: order/models.py:2589 order/models.py:3008 msgid "Item" msgstr "" -#: order/models.py:2589 +#: order/models.py:2590 msgid "Select stock item to allocate" msgstr "" -#: order/models.py:2598 +#: order/models.py:2599 msgid "Enter stock allocation quantity" msgstr "" -#: order/models.py:2713 +#: order/models.py:2714 msgid "Return Order reference" msgstr "" -#: order/models.py:2725 +#: order/models.py:2726 msgid "Company from which items are being returned" msgstr "" -#: order/models.py:2738 +#: order/models.py:2739 msgid "Return order status" msgstr "" -#: order/models.py:2965 +#: order/models.py:2966 msgid "Return Order Line Item" msgstr "" -#: order/models.py:2978 +#: order/models.py:2979 msgid "Stock item must be specified" msgstr "" -#: order/models.py:2982 +#: order/models.py:2983 msgid "Return quantity exceeds stock quantity" msgstr "" -#: order/models.py:2987 +#: order/models.py:2988 msgid "Return quantity must be greater than zero" msgstr "" -#: order/models.py:2992 +#: order/models.py:2993 msgid "Invalid quantity for serialized stock item" msgstr "" -#: order/models.py:3008 +#: order/models.py:3009 msgid "Select item to return from customer" msgstr "" -#: order/models.py:3023 +#: order/models.py:3024 msgid "Received Date" msgstr "" -#: order/models.py:3024 +#: order/models.py:3025 msgid "The date this this return item was received" msgstr "" -#: order/models.py:3036 +#: order/models.py:3037 msgid "Outcome" msgstr "" -#: order/models.py:3037 +#: order/models.py:3038 msgid "Outcome for this line item" msgstr "" -#: order/models.py:3044 +#: order/models.py:3045 msgid "Cost associated with return or repair for this line item" msgstr "" -#: order/models.py:3054 +#: order/models.py:3055 msgid "Return Order Extra Line" msgstr "" -#: order/serializers.py:91 +#: order/serializers.py:92 msgid "Order ID" msgstr "Order ID" -#: order/serializers.py:91 +#: order/serializers.py:92 msgid "ID of the order to duplicate" msgstr "" -#: order/serializers.py:97 +#: order/serializers.py:98 msgid "Copy Lines" msgstr "Salin Baris" -#: order/serializers.py:98 +#: order/serializers.py:99 msgid "Copy line items from the original order" msgstr "" -#: order/serializers.py:104 +#: order/serializers.py:105 msgid "Copy Extra Lines" msgstr "" -#: order/serializers.py:105 +#: order/serializers.py:106 msgid "Copy extra line items from the original order" msgstr "" -#: order/serializers.py:120 +#: order/serializers.py:121 #: report/templates/report/inventree_purchase_order_report.html:29 #: report/templates/report/inventree_return_order_report.html:19 #: report/templates/report/inventree_sales_order_report.html:22 msgid "Line Items" msgstr "" -#: order/serializers.py:125 +#: order/serializers.py:126 msgid "Completed Lines" msgstr "" -#: order/serializers.py:192 +#: order/serializers.py:199 msgid "Duplicate Order" msgstr "" -#: order/serializers.py:193 +#: order/serializers.py:200 msgid "Specify options for duplicating this order" msgstr "" -#: order/serializers.py:270 +#: order/serializers.py:278 msgid "Invalid order ID" msgstr "" -#: order/serializers.py:466 +#: order/serializers.py:477 msgid "Supplier Name" msgstr "" -#: order/serializers.py:510 +#: order/serializers.py:521 msgid "Order cannot be cancelled" msgstr "" -#: order/serializers.py:525 order/serializers.py:1602 +#: order/serializers.py:536 order/serializers.py:1616 msgid "Allow order to be closed with incomplete line items" msgstr "" -#: order/serializers.py:535 order/serializers.py:1612 +#: order/serializers.py:546 order/serializers.py:1626 msgid "Order has incomplete line items" msgstr "" -#: order/serializers.py:665 +#: order/serializers.py:676 msgid "Order is not open" msgstr "" -#: order/serializers.py:692 +#: order/serializers.py:703 msgid "Auto Pricing" msgstr "" -#: order/serializers.py:694 +#: order/serializers.py:705 msgid "Automatically calculate purchase price based on supplier part data" msgstr "" -#: order/serializers.py:704 +#: order/serializers.py:715 msgid "Purchase price currency" msgstr "" -#: order/serializers.py:718 +#: order/serializers.py:729 msgid "Merge Items" msgstr "" -#: order/serializers.py:720 +#: order/serializers.py:731 msgid "Merge items with the same part, destination and target date into one line item" msgstr "" -#: order/serializers.py:727 part/serializers.py:560 +#: order/serializers.py:738 part/serializers.py:471 msgid "SKU" msgstr "" -#: order/serializers.py:741 part/models.py:1089 part/serializers.py:372 +#: order/serializers.py:752 part/models.py:1177 part/serializers.py:337 msgid "Internal Part Number" msgstr "" -#: order/serializers.py:749 +#: order/serializers.py:760 msgid "Internal Part Name" msgstr "" -#: order/serializers.py:765 +#: order/serializers.py:776 msgid "Supplier part must be specified" msgstr "" -#: order/serializers.py:768 +#: order/serializers.py:779 msgid "Purchase order must be specified" msgstr "" -#: order/serializers.py:776 +#: order/serializers.py:787 msgid "Supplier must match purchase order" msgstr "" -#: order/serializers.py:777 +#: order/serializers.py:788 msgid "Purchase order must match supplier" msgstr "" -#: order/serializers.py:825 order/serializers.py:1682 +#: order/serializers.py:836 order/serializers.py:1696 msgid "Line Item" msgstr "" -#: order/serializers.py:834 order/serializers.py:974 order/serializers.py:2043 +#: order/serializers.py:845 order/serializers.py:985 order/serializers.py:2060 msgid "Select destination location for received items" msgstr "" -#: order/serializers.py:850 +#: order/serializers.py:861 msgid "Enter batch code for incoming stock items" msgstr "" -#: order/serializers.py:857 stock/models.py:1160 +#: order/serializers.py:868 stock/models.py:1160 #: templates/email/stale_stock_notification.html:22 users/models.py:137 msgid "Expiry Date" msgstr "" -#: order/serializers.py:858 +#: order/serializers.py:869 msgid "Enter expiry date for incoming stock items" msgstr "" -#: order/serializers.py:866 +#: order/serializers.py:877 msgid "Enter serial numbers for incoming stock items" msgstr "" -#: order/serializers.py:876 +#: order/serializers.py:887 msgid "Override packaging information for incoming stock items" msgstr "" -#: order/serializers.py:884 order/serializers.py:2048 +#: order/serializers.py:895 order/serializers.py:2065 msgid "Additional note for incoming stock items" msgstr "" -#: order/serializers.py:891 +#: order/serializers.py:902 msgid "Barcode" msgstr "" -#: order/serializers.py:892 +#: order/serializers.py:903 msgid "Scanned barcode" msgstr "" -#: order/serializers.py:908 +#: order/serializers.py:919 msgid "Barcode is already in use" msgstr "" -#: order/serializers.py:991 order/serializers.py:2067 +#: order/serializers.py:1002 order/serializers.py:2084 msgid "Line items must be provided" msgstr "" -#: order/serializers.py:1010 +#: order/serializers.py:1021 msgid "Destination location must be specified" msgstr "" -#: order/serializers.py:1017 +#: order/serializers.py:1028 msgid "Supplied barcode values must be unique" msgstr "" -#: order/serializers.py:1121 +#: order/serializers.py:1135 msgid "Shipments" msgstr "" -#: order/serializers.py:1125 +#: order/serializers.py:1139 msgid "Completed Shipments" msgstr "" -#: order/serializers.py:1293 +#: order/serializers.py:1307 msgid "Sale price currency" msgstr "" -#: order/serializers.py:1339 +#: order/serializers.py:1353 msgid "Allocated Items" msgstr "" -#: order/serializers.py:1484 +#: order/serializers.py:1498 msgid "No shipment details provided" msgstr "" -#: order/serializers.py:1545 order/serializers.py:1691 +#: order/serializers.py:1559 order/serializers.py:1705 msgid "Line item is not associated with this order" msgstr "" -#: order/serializers.py:1564 +#: order/serializers.py:1578 msgid "Quantity must be positive" msgstr "" -#: order/serializers.py:1701 +#: order/serializers.py:1715 msgid "Enter serial numbers to allocate" msgstr "" -#: order/serializers.py:1723 order/serializers.py:1843 +#: order/serializers.py:1737 order/serializers.py:1857 msgid "Shipment has already been shipped" msgstr "" -#: order/serializers.py:1726 order/serializers.py:1846 +#: order/serializers.py:1740 order/serializers.py:1860 msgid "Shipment is not associated with this order" msgstr "" -#: order/serializers.py:1781 +#: order/serializers.py:1795 msgid "No match found for the following serial numbers" msgstr "" -#: order/serializers.py:1788 +#: order/serializers.py:1802 msgid "The following serial numbers are unavailable" msgstr "" -#: order/serializers.py:2009 +#: order/serializers.py:2026 msgid "Return order line item" msgstr "" -#: order/serializers.py:2019 +#: order/serializers.py:2036 msgid "Line item does not match return order" msgstr "" -#: order/serializers.py:2022 +#: order/serializers.py:2039 msgid "Line item has already been received" msgstr "" -#: order/serializers.py:2059 +#: order/serializers.py:2076 msgid "Items can only be received against orders which are in progress" msgstr "" -#: order/serializers.py:2124 +#: order/serializers.py:2141 msgid "Quantity to return" msgstr "" -#: order/serializers.py:2140 +#: order/serializers.py:2157 msgid "Line price currency" msgstr "" @@ -5431,1190 +5559,1109 @@ msgstr "" msgid "Return order {ro} is now overdue" msgstr "" -#: part/api.py:108 +#: part/api.py:103 msgid "Starred" msgstr "" -#: part/api.py:110 +#: part/api.py:105 msgid "Filter by starred categories" msgstr "" -#: part/api.py:127 stock/api.py:288 +#: part/api.py:122 stock/api.py:288 msgid "Depth" msgstr "" -#: part/api.py:127 +#: part/api.py:122 msgid "Filter by category depth" msgstr "" -#: part/api.py:145 stock/api.py:306 +#: part/api.py:140 stock/api.py:306 msgid "Top Level" msgstr "" -#: part/api.py:147 +#: part/api.py:142 msgid "Filter by top-level categories" msgstr "" -#: part/api.py:160 stock/api.py:321 +#: part/api.py:155 stock/api.py:321 msgid "Cascade" msgstr "" -#: part/api.py:162 +#: part/api.py:157 msgid "Include sub-categories in filtered results" msgstr "" -#: part/api.py:182 +#: part/api.py:177 msgid "Parent" msgstr "" -#: part/api.py:184 +#: part/api.py:179 msgid "Filter by parent category" msgstr "" -#: part/api.py:219 +#: part/api.py:214 msgid "Exclude sub-categories under the specified category" msgstr "" -#: part/api.py:445 +#: part/api.py:440 msgid "Has Results" msgstr "" -#: part/api.py:666 +#: part/api.py:661 msgid "Is Variant" msgstr "" -#: part/api.py:674 +#: part/api.py:669 msgid "Is Revision" msgstr "" -#: part/api.py:684 +#: part/api.py:679 msgid "Has Revisions" msgstr "" -#: part/api.py:865 +#: part/api.py:860 msgid "BOM Valid" msgstr "" -#: part/api.py:974 +#: part/api.py:969 msgid "Cascade Categories" msgstr "" -#: part/api.py:975 +#: part/api.py:970 msgid "If true, include items in child categories of the given category" msgstr "" -#: part/api.py:981 +#: part/api.py:976 msgid "Filter by numeric category ID or the literal 'null'" msgstr "" -#: part/api.py:1533 +#: part/api.py:1258 msgid "Assembly part is testable" msgstr "" -#: part/api.py:1542 +#: part/api.py:1267 msgid "Component part is testable" msgstr "" -#: part/api.py:1611 +#: part/api.py:1336 msgid "Uses" msgstr "" -#: part/models.py:96 part/models.py:4163 +#: part/models.py:93 part/models.py:436 #: templates/email/part_event_notification.html:16 msgid "Part Category" msgstr "" -#: part/models.py:97 users/ruleset.py:27 +#: part/models.py:94 users/ruleset.py:27 msgid "Part Categories" msgstr "" -#: part/models.py:115 part/models.py:1125 +#: part/models.py:112 part/models.py:1213 msgid "Default Location" msgstr "" -#: part/models.py:116 +#: part/models.py:113 msgid "Default location for parts in this category" msgstr "" -#: part/models.py:121 stock/models.py:216 +#: part/models.py:118 stock/models.py:216 msgid "Structural" msgstr "" -#: part/models.py:123 +#: part/models.py:120 msgid "Parts may not be directly assigned to a structural category, but may be assigned to child categories." msgstr "" -#: part/models.py:132 +#: part/models.py:129 msgid "Default keywords" msgstr "" -#: part/models.py:133 +#: part/models.py:130 msgid "Default keywords for parts in this category" msgstr "" -#: part/models.py:140 stock/models.py:97 stock/models.py:198 +#: part/models.py:137 stock/models.py:97 stock/models.py:198 msgid "Icon" msgstr "" -#: part/models.py:141 part/serializers.py:148 part/serializers.py:167 +#: part/models.py:138 part/serializers.py:147 part/serializers.py:166 #: stock/models.py:199 msgid "Icon (optional)" msgstr "" -#: part/models.py:185 +#: part/models.py:182 msgid "You cannot make this part category structural because some parts are already assigned to it!" msgstr "" -#: part/models.py:473 part/serializers.py:119 part/serializers.py:310 -#: users/ruleset.py:28 +#: part/models.py:392 +msgid "Part Category Parameter Template" +msgstr "" + +#: part/models.py:448 +msgid "Default Value" +msgstr "" + +#: part/models.py:449 +msgid "Default Parameter Value" +msgstr "" + +#: part/models.py:551 part/serializers.py:118 users/ruleset.py:28 msgid "Parts" msgstr "" -#: part/models.py:525 +#: part/models.py:597 +msgid "Cannot delete parameters of a locked part" +msgstr "" + +#: part/models.py:602 +msgid "Cannot modify parameters of a locked part" +msgstr "" + +#: part/models.py:613 msgid "Cannot delete this part as it is locked" msgstr "" -#: part/models.py:528 +#: part/models.py:616 msgid "Cannot delete this part as it is still active" msgstr "" -#: part/models.py:533 +#: part/models.py:621 msgid "Cannot delete this part as it is used in an assembly" msgstr "" -#: part/models.py:616 part/models.py:623 +#: part/models.py:704 part/models.py:711 #, python-brace-format msgid "Part '{self}' cannot be used in BOM for '{parent}' (recursive)" msgstr "" -#: part/models.py:635 +#: part/models.py:723 #, python-brace-format msgid "Part '{parent}' is used in BOM for '{self}' (recursive)" msgstr "" -#: part/models.py:702 +#: part/models.py:790 #, python-brace-format msgid "IPN must match regex pattern {pattern}" msgstr "" -#: part/models.py:710 +#: part/models.py:798 msgid "Part cannot be a revision of itself" msgstr "" -#: part/models.py:717 +#: part/models.py:805 msgid "Cannot make a revision of a part which is already a revision" msgstr "" -#: part/models.py:724 +#: part/models.py:812 msgid "Revision code must be specified" msgstr "" -#: part/models.py:731 +#: part/models.py:819 msgid "Revisions are only allowed for assembly parts" msgstr "" -#: part/models.py:738 +#: part/models.py:826 msgid "Cannot make a revision of a template part" msgstr "" -#: part/models.py:744 +#: part/models.py:832 msgid "Parent part must point to the same template" msgstr "" -#: part/models.py:841 +#: part/models.py:929 msgid "Stock item with this serial number already exists" msgstr "" -#: part/models.py:971 +#: part/models.py:1059 msgid "Duplicate IPN not allowed in part settings" msgstr "" -#: part/models.py:983 +#: part/models.py:1071 msgid "Duplicate part revision already exists." msgstr "" -#: part/models.py:992 +#: part/models.py:1080 msgid "Part with this Name, IPN and Revision already exists." msgstr "" -#: part/models.py:1007 +#: part/models.py:1095 msgid "Parts cannot be assigned to structural part categories!" msgstr "" -#: part/models.py:1039 +#: part/models.py:1127 msgid "Part name" msgstr "" -#: part/models.py:1044 +#: part/models.py:1132 msgid "Is Template" msgstr "" -#: part/models.py:1045 +#: part/models.py:1133 msgid "Is this part a template part?" msgstr "" -#: part/models.py:1055 +#: part/models.py:1143 msgid "Is this part a variant of another part?" msgstr "" -#: part/models.py:1056 +#: part/models.py:1144 msgid "Variant Of" msgstr "" -#: part/models.py:1063 +#: part/models.py:1151 msgid "Part description (optional)" msgstr "" -#: part/models.py:1070 +#: part/models.py:1158 msgid "Keywords" msgstr "" -#: part/models.py:1071 +#: part/models.py:1159 msgid "Part keywords to improve visibility in search results" msgstr "" -#: part/models.py:1081 +#: part/models.py:1169 msgid "Part category" msgstr "" -#: part/models.py:1088 part/serializers.py:929 +#: part/models.py:1176 part/serializers.py:814 #: report/templates/report/inventree_stock_location_report.html:103 msgid "IPN" msgstr "" -#: part/models.py:1096 +#: part/models.py:1184 msgid "Part revision or version number" msgstr "" -#: part/models.py:1097 report/models.py:228 +#: part/models.py:1185 report/models.py:228 msgid "Revision" msgstr "" -#: part/models.py:1106 +#: part/models.py:1194 msgid "Is this part a revision of another part?" msgstr "" -#: part/models.py:1107 +#: part/models.py:1195 msgid "Revision Of" msgstr "" -#: part/models.py:1123 +#: part/models.py:1211 msgid "Where is this item normally stored?" msgstr "" -#: part/models.py:1169 +#: part/models.py:1257 msgid "Default Supplier" msgstr "" -#: part/models.py:1170 +#: part/models.py:1258 msgid "Default supplier part" msgstr "" -#: part/models.py:1177 +#: part/models.py:1265 msgid "Default Expiry" msgstr "" -#: part/models.py:1178 +#: part/models.py:1266 msgid "Expiry time (in days) for stock items of this part" msgstr "" -#: part/models.py:1186 part/serializers.py:1003 +#: part/models.py:1274 part/serializers.py:888 msgid "Minimum Stock" msgstr "" -#: part/models.py:1187 +#: part/models.py:1275 msgid "Minimum allowed stock level" msgstr "" -#: part/models.py:1196 +#: part/models.py:1284 msgid "Units of measure for this part" msgstr "" -#: part/models.py:1203 +#: part/models.py:1291 msgid "Can this part be built from other parts?" msgstr "" -#: part/models.py:1209 +#: part/models.py:1297 msgid "Can this part be used to build other parts?" msgstr "" -#: part/models.py:1215 +#: part/models.py:1303 msgid "Does this part have tracking for unique items?" msgstr "" -#: part/models.py:1221 +#: part/models.py:1309 msgid "Can this part have test results recorded against it?" msgstr "" -#: part/models.py:1227 +#: part/models.py:1315 msgid "Can this part be purchased from external suppliers?" msgstr "" -#: part/models.py:1233 +#: part/models.py:1321 msgid "Can this part be sold to customers?" msgstr "" -#: part/models.py:1237 +#: part/models.py:1325 msgid "Is this part active?" msgstr "" -#: part/models.py:1243 +#: part/models.py:1331 msgid "Locked parts cannot be edited" msgstr "" -#: part/models.py:1249 +#: part/models.py:1337 msgid "Is this a virtual part, such as a software product or license?" msgstr "" -#: part/models.py:1254 +#: part/models.py:1342 msgid "BOM Validated" msgstr "" -#: part/models.py:1255 +#: part/models.py:1343 msgid "Is the BOM for this part valid?" msgstr "" -#: part/models.py:1261 +#: part/models.py:1349 msgid "BOM checksum" msgstr "" -#: part/models.py:1262 +#: part/models.py:1350 msgid "Stored BOM checksum" msgstr "" -#: part/models.py:1270 +#: part/models.py:1358 msgid "BOM checked by" msgstr "" -#: part/models.py:1275 +#: part/models.py:1363 msgid "BOM checked date" msgstr "" -#: part/models.py:1291 +#: part/models.py:1379 msgid "Creation User" msgstr "" -#: part/models.py:1301 +#: part/models.py:1389 msgid "Owner responsible for this part" msgstr "" -#: part/models.py:2258 +#: part/models.py:2346 msgid "Sell multiple" msgstr "" -#: part/models.py:3286 +#: part/models.py:3350 msgid "Currency used to cache pricing calculations" msgstr "" -#: part/models.py:3302 +#: part/models.py:3366 msgid "Minimum BOM Cost" msgstr "" -#: part/models.py:3303 +#: part/models.py:3367 msgid "Minimum cost of component parts" msgstr "" -#: part/models.py:3309 +#: part/models.py:3373 msgid "Maximum BOM Cost" msgstr "" -#: part/models.py:3310 +#: part/models.py:3374 msgid "Maximum cost of component parts" msgstr "" -#: part/models.py:3316 +#: part/models.py:3380 msgid "Minimum Purchase Cost" msgstr "" -#: part/models.py:3317 +#: part/models.py:3381 msgid "Minimum historical purchase cost" msgstr "" -#: part/models.py:3323 +#: part/models.py:3387 msgid "Maximum Purchase Cost" msgstr "" -#: part/models.py:3324 +#: part/models.py:3388 msgid "Maximum historical purchase cost" msgstr "" -#: part/models.py:3330 +#: part/models.py:3394 msgid "Minimum Internal Price" msgstr "" -#: part/models.py:3331 +#: part/models.py:3395 msgid "Minimum cost based on internal price breaks" msgstr "" -#: part/models.py:3337 +#: part/models.py:3401 msgid "Maximum Internal Price" msgstr "" -#: part/models.py:3338 +#: part/models.py:3402 msgid "Maximum cost based on internal price breaks" msgstr "" -#: part/models.py:3344 +#: part/models.py:3408 msgid "Minimum Supplier Price" msgstr "" -#: part/models.py:3345 +#: part/models.py:3409 msgid "Minimum price of part from external suppliers" msgstr "" -#: part/models.py:3351 +#: part/models.py:3415 msgid "Maximum Supplier Price" msgstr "" -#: part/models.py:3352 +#: part/models.py:3416 msgid "Maximum price of part from external suppliers" msgstr "" -#: part/models.py:3358 +#: part/models.py:3422 msgid "Minimum Variant Cost" msgstr "" -#: part/models.py:3359 +#: part/models.py:3423 msgid "Calculated minimum cost of variant parts" msgstr "" -#: part/models.py:3365 +#: part/models.py:3429 msgid "Maximum Variant Cost" msgstr "" -#: part/models.py:3366 +#: part/models.py:3430 msgid "Calculated maximum cost of variant parts" msgstr "" -#: part/models.py:3372 part/models.py:3386 +#: part/models.py:3436 part/models.py:3450 msgid "Minimum Cost" msgstr "" -#: part/models.py:3373 +#: part/models.py:3437 msgid "Override minimum cost" msgstr "" -#: part/models.py:3379 part/models.py:3393 +#: part/models.py:3443 part/models.py:3457 msgid "Maximum Cost" msgstr "" -#: part/models.py:3380 +#: part/models.py:3444 msgid "Override maximum cost" msgstr "" -#: part/models.py:3387 +#: part/models.py:3451 msgid "Calculated overall minimum cost" msgstr "" -#: part/models.py:3394 +#: part/models.py:3458 msgid "Calculated overall maximum cost" msgstr "" -#: part/models.py:3400 +#: part/models.py:3464 msgid "Minimum Sale Price" msgstr "" -#: part/models.py:3401 +#: part/models.py:3465 msgid "Minimum sale price based on price breaks" msgstr "" -#: part/models.py:3407 +#: part/models.py:3471 msgid "Maximum Sale Price" msgstr "" -#: part/models.py:3408 +#: part/models.py:3472 msgid "Maximum sale price based on price breaks" msgstr "" -#: part/models.py:3414 +#: part/models.py:3478 msgid "Minimum Sale Cost" msgstr "" -#: part/models.py:3415 +#: part/models.py:3479 msgid "Minimum historical sale price" msgstr "" -#: part/models.py:3421 +#: part/models.py:3485 msgid "Maximum Sale Cost" msgstr "" -#: part/models.py:3422 +#: part/models.py:3486 msgid "Maximum historical sale price" msgstr "" -#: part/models.py:3440 +#: part/models.py:3504 msgid "Part for stocktake" msgstr "" -#: part/models.py:3445 +#: part/models.py:3509 msgid "Item Count" msgstr "" -#: part/models.py:3446 +#: part/models.py:3510 msgid "Number of individual stock entries at time of stocktake" msgstr "" -#: part/models.py:3454 +#: part/models.py:3518 msgid "Total available stock at time of stocktake" msgstr "" -#: part/models.py:3458 report/templates/report/inventree_test_report.html:106 +#: part/models.py:3522 report/templates/report/inventree_test_report.html:106 msgid "Date" msgstr "Tanggal" -#: part/models.py:3459 +#: part/models.py:3523 msgid "Date stocktake was performed" msgstr "" -#: part/models.py:3466 +#: part/models.py:3530 msgid "Minimum Stock Cost" msgstr "" -#: part/models.py:3467 +#: part/models.py:3531 msgid "Estimated minimum cost of stock on hand" msgstr "" -#: part/models.py:3473 +#: part/models.py:3537 msgid "Maximum Stock Cost" msgstr "" -#: part/models.py:3474 +#: part/models.py:3538 msgid "Estimated maximum cost of stock on hand" msgstr "" -#: part/models.py:3484 +#: part/models.py:3548 msgid "Part Sale Price Break" msgstr "" -#: part/models.py:3596 +#: part/models.py:3660 msgid "Part Test Template" msgstr "" -#: part/models.py:3622 +#: part/models.py:3686 msgid "Invalid template name - must include at least one alphanumeric character" msgstr "" -#: part/models.py:3643 part/models.py:3816 -msgid "Choices must be unique" -msgstr "" - -#: part/models.py:3654 +#: part/models.py:3718 msgid "Test templates can only be created for testable parts" msgstr "" -#: part/models.py:3668 +#: part/models.py:3732 msgid "Test template with the same key already exists for part" msgstr "" -#: part/models.py:3685 +#: part/models.py:3749 msgid "Test Name" msgstr "" -#: part/models.py:3686 +#: part/models.py:3750 msgid "Enter a name for the test" msgstr "" -#: part/models.py:3692 +#: part/models.py:3756 msgid "Test Key" msgstr "" -#: part/models.py:3693 +#: part/models.py:3757 msgid "Simplified key for the test" msgstr "" -#: part/models.py:3700 +#: part/models.py:3764 msgid "Test Description" msgstr "" -#: part/models.py:3701 +#: part/models.py:3765 msgid "Enter description for this test" msgstr "" -#: part/models.py:3705 report/models.py:287 -msgid "Enabled" -msgstr "Aktif" - -#: part/models.py:3705 +#: part/models.py:3769 msgid "Is this test enabled?" msgstr "" -#: part/models.py:3710 +#: part/models.py:3774 msgid "Required" msgstr "" -#: part/models.py:3711 +#: part/models.py:3775 msgid "Is this test required to pass?" msgstr "" -#: part/models.py:3716 +#: part/models.py:3780 msgid "Requires Value" msgstr "" -#: part/models.py:3717 +#: part/models.py:3781 msgid "Does this test require a value when adding a test result?" msgstr "" -#: part/models.py:3722 +#: part/models.py:3786 msgid "Requires Attachment" msgstr "" -#: part/models.py:3724 +#: part/models.py:3788 msgid "Does this test require a file attachment when adding a test result?" msgstr "" -#: part/models.py:3730 part/models.py:3878 -msgid "Choices" -msgstr "Pilihan" - -#: part/models.py:3731 +#: part/models.py:3795 msgid "Valid choices for this test (comma-separated)" msgstr "" -#: part/models.py:3764 -msgid "Part Parameter Template" -msgstr "" - -#: part/models.py:3791 -msgid "Checkbox parameters cannot have units" -msgstr "" - -#: part/models.py:3796 -msgid "Checkbox parameters cannot have choices" -msgstr "" - -#: part/models.py:3833 -msgid "Parameter template name must be unique" -msgstr "" - -#: part/models.py:3851 -msgid "Parameter Name" -msgstr "" - -#: part/models.py:3858 -msgid "Physical units for this parameter" -msgstr "" - -#: part/models.py:3866 -msgid "Parameter description" -msgstr "" - -#: part/models.py:3872 -msgid "Checkbox" -msgstr "" - -#: part/models.py:3873 -msgid "Is this parameter a checkbox?" -msgstr "" - -#: part/models.py:3879 -msgid "Valid choices for this parameter (comma-separated)" -msgstr "" - -#: part/models.py:3890 -msgid "Selection list for this parameter" -msgstr "" - -#: part/models.py:3932 -msgid "Part Parameter" -msgstr "" - -#: part/models.py:3958 -msgid "Parameter cannot be modified - part is locked" -msgstr "" - -#: part/models.py:3996 -msgid "Invalid choice for parameter value" -msgstr "" - -#: part/models.py:4047 -msgid "Parent Part" -msgstr "" - -#: part/models.py:4055 part/models.py:4170 part/models.py:4171 -msgid "Parameter Template" -msgstr "" - -#: part/models.py:4061 -msgid "Parameter Value" -msgstr "" - -#: part/models.py:4071 stock/serializers.py:718 -msgid "Optional note field" -msgstr "" - -#: part/models.py:4118 -msgid "Part Category Parameter Template" -msgstr "" - -#: part/models.py:4177 -msgid "Default Value" -msgstr "" - -#: part/models.py:4178 -msgid "Default Parameter Value" -msgstr "" - -#: part/models.py:4352 +#: part/models.py:3977 msgid "BOM item cannot be modified - assembly is locked" msgstr "" -#: part/models.py:4359 +#: part/models.py:3984 msgid "BOM item cannot be modified - variant assembly is locked" msgstr "" -#: part/models.py:4369 +#: part/models.py:3994 msgid "Select parent part" msgstr "" -#: part/models.py:4379 +#: part/models.py:4004 msgid "Sub part" msgstr "" -#: part/models.py:4380 +#: part/models.py:4005 msgid "Select part to be used in BOM" msgstr "" -#: part/models.py:4391 +#: part/models.py:4016 msgid "BOM quantity for this BOM item" msgstr "" -#: part/models.py:4397 +#: part/models.py:4022 msgid "This BOM item is optional" msgstr "" -#: part/models.py:4403 +#: part/models.py:4028 msgid "This BOM item is consumable (it is not tracked in build orders)" msgstr "" -#: part/models.py:4411 +#: part/models.py:4036 msgid "Setup Quantity" msgstr "" -#: part/models.py:4412 +#: part/models.py:4037 msgid "Extra required quantity for a build, to account for setup losses" msgstr "" -#: part/models.py:4420 +#: part/models.py:4045 msgid "Attrition" msgstr "" -#: part/models.py:4422 +#: part/models.py:4047 msgid "Estimated attrition for a build, expressed as a percentage (0-100)" msgstr "" -#: part/models.py:4433 +#: part/models.py:4058 msgid "Rounding Multiple" msgstr "" -#: part/models.py:4435 +#: part/models.py:4060 msgid "Round up required production quantity to nearest multiple of this value" msgstr "" -#: part/models.py:4443 +#: part/models.py:4068 msgid "BOM item reference" msgstr "" -#: part/models.py:4451 +#: part/models.py:4076 msgid "BOM item notes" msgstr "" -#: part/models.py:4457 +#: part/models.py:4082 msgid "Checksum" msgstr "" -#: part/models.py:4458 +#: part/models.py:4083 msgid "BOM line checksum" msgstr "" -#: part/models.py:4463 +#: part/models.py:4088 msgid "Validated" msgstr "" -#: part/models.py:4464 +#: part/models.py:4089 msgid "This BOM item has been validated" msgstr "" -#: part/models.py:4469 +#: part/models.py:4094 msgid "Gets inherited" msgstr "" -#: part/models.py:4470 +#: part/models.py:4095 msgid "This BOM item is inherited by BOMs for variant parts" msgstr "" -#: part/models.py:4476 +#: part/models.py:4101 msgid "Stock items for variant parts can be used for this BOM item" msgstr "" -#: part/models.py:4583 stock/models.py:925 +#: part/models.py:4208 stock/models.py:925 msgid "Quantity must be integer value for trackable parts" msgstr "" -#: part/models.py:4593 part/models.py:4595 +#: part/models.py:4218 part/models.py:4220 msgid "Sub part must be specified" msgstr "" -#: part/models.py:4746 +#: part/models.py:4371 msgid "BOM Item Substitute" msgstr "" -#: part/models.py:4767 +#: part/models.py:4392 msgid "Substitute part cannot be the same as the master part" msgstr "" -#: part/models.py:4780 +#: part/models.py:4405 msgid "Parent BOM item" msgstr "" -#: part/models.py:4788 +#: part/models.py:4413 msgid "Substitute part" msgstr "" -#: part/models.py:4804 +#: part/models.py:4429 msgid "Part 1" msgstr "" -#: part/models.py:4812 +#: part/models.py:4437 msgid "Part 2" msgstr "" -#: part/models.py:4813 +#: part/models.py:4438 msgid "Select Related Part" msgstr "" -#: part/models.py:4820 +#: part/models.py:4445 msgid "Note for this relationship" msgstr "" -#: part/models.py:4839 +#: part/models.py:4464 msgid "Part relationship cannot be created between a part and itself" msgstr "" -#: part/models.py:4844 +#: part/models.py:4469 msgid "Duplicate relationship already exists" msgstr "" -#: part/serializers.py:114 +#: part/serializers.py:113 msgid "Parent Category" msgstr "" -#: part/serializers.py:115 +#: part/serializers.py:114 msgid "Parent part category" msgstr "" -#: part/serializers.py:123 part/serializers.py:164 +#: part/serializers.py:122 part/serializers.py:163 msgid "Subcategories" msgstr "" -#: part/serializers.py:203 +#: part/serializers.py:202 msgid "Results" msgstr "" -#: part/serializers.py:204 +#: part/serializers.py:203 msgid "Number of results recorded against this template" msgstr "" -#: part/serializers.py:235 part/serializers.py:253 stock/serializers.py:643 +#: part/serializers.py:234 part/serializers.py:252 stock/serializers.py:643 msgid "Purchase currency of this stock item" msgstr "" -#: part/serializers.py:280 +#: part/serializers.py:279 msgid "File is not an image" msgstr "" -#: part/serializers.py:311 -msgid "Number of parts using this template" -msgstr "" - -#: part/serializers.py:471 +#: part/serializers.py:382 msgid "Original Part" msgstr "" -#: part/serializers.py:472 +#: part/serializers.py:383 msgid "Select original part to duplicate" msgstr "" -#: part/serializers.py:477 +#: part/serializers.py:388 msgid "Copy Image" msgstr "" -#: part/serializers.py:478 +#: part/serializers.py:389 msgid "Copy image from original part" msgstr "" -#: part/serializers.py:484 +#: part/serializers.py:395 msgid "Copy BOM" msgstr "" -#: part/serializers.py:485 +#: part/serializers.py:396 msgid "Copy bill of materials from original part" msgstr "" -#: part/serializers.py:491 +#: part/serializers.py:402 msgid "Copy Parameters" msgstr "" -#: part/serializers.py:492 +#: part/serializers.py:403 msgid "Copy parameter data from original part" msgstr "" -#: part/serializers.py:498 +#: part/serializers.py:409 msgid "Copy Notes" msgstr "" -#: part/serializers.py:499 +#: part/serializers.py:410 msgid "Copy notes from original part" msgstr "" -#: part/serializers.py:505 +#: part/serializers.py:416 msgid "Copy Tests" msgstr "" -#: part/serializers.py:506 +#: part/serializers.py:417 msgid "Copy test templates from original part" msgstr "" -#: part/serializers.py:524 +#: part/serializers.py:435 msgid "Initial Stock Quantity" msgstr "" -#: part/serializers.py:526 +#: part/serializers.py:437 msgid "Specify initial stock quantity for this Part. If quantity is zero, no stock is added." msgstr "" -#: part/serializers.py:533 +#: part/serializers.py:444 msgid "Initial Stock Location" msgstr "" -#: part/serializers.py:534 +#: part/serializers.py:445 msgid "Specify initial stock location for this Part" msgstr "" -#: part/serializers.py:551 +#: part/serializers.py:462 msgid "Select supplier (or leave blank to skip)" msgstr "" -#: part/serializers.py:567 +#: part/serializers.py:478 msgid "Select manufacturer (or leave blank to skip)" msgstr "" -#: part/serializers.py:577 +#: part/serializers.py:488 msgid "Manufacturer part number" msgstr "" -#: part/serializers.py:584 +#: part/serializers.py:495 msgid "Selected company is not a valid supplier" msgstr "" -#: part/serializers.py:593 +#: part/serializers.py:504 msgid "Selected company is not a valid manufacturer" msgstr "" -#: part/serializers.py:604 +#: part/serializers.py:515 msgid "Manufacturer part matching this MPN already exists" msgstr "" -#: part/serializers.py:611 +#: part/serializers.py:522 msgid "Supplier part matching this SKU already exists" msgstr "" -#: part/serializers.py:914 +#: part/serializers.py:799 msgid "Category Name" msgstr "" -#: part/serializers.py:943 +#: part/serializers.py:828 msgid "Building" msgstr "" -#: part/serializers.py:944 +#: part/serializers.py:829 msgid "Quantity of this part currently being in production" msgstr "" -#: part/serializers.py:951 +#: part/serializers.py:836 msgid "Outstanding quantity of this part scheduled to be built" msgstr "" -#: part/serializers.py:971 stock/serializers.py:1019 stock/serializers.py:1189 +#: part/serializers.py:856 stock/serializers.py:1019 stock/serializers.py:1189 #: users/ruleset.py:30 msgid "Stock Items" msgstr "" -#: part/serializers.py:975 +#: part/serializers.py:860 msgid "Revisions" msgstr "" -#: part/serializers.py:979 +#: part/serializers.py:864 msgid "Suppliers" msgstr "" -#: part/serializers.py:983 part/serializers.py:1297 +#: part/serializers.py:868 part/serializers.py:1162 #: templates/email/low_stock_notification.html:16 #: templates/email/part_event_notification.html:17 msgid "Total Stock" msgstr "" -#: part/serializers.py:991 +#: part/serializers.py:876 msgid "Unallocated Stock" msgstr "" -#: part/serializers.py:999 +#: part/serializers.py:884 msgid "Variant Stock" msgstr "" -#: part/serializers.py:1054 +#: part/serializers.py:943 msgid "Duplicate Part" msgstr "" -#: part/serializers.py:1055 +#: part/serializers.py:944 msgid "Copy initial data from another Part" msgstr "" -#: part/serializers.py:1061 +#: part/serializers.py:950 msgid "Initial Stock" msgstr "" -#: part/serializers.py:1062 +#: part/serializers.py:951 msgid "Create Part with initial stock quantity" msgstr "" -#: part/serializers.py:1068 +#: part/serializers.py:957 msgid "Supplier Information" msgstr "" -#: part/serializers.py:1069 +#: part/serializers.py:958 msgid "Add initial supplier information for this part" msgstr "" -#: part/serializers.py:1077 +#: part/serializers.py:966 msgid "Copy Category Parameters" msgstr "" -#: part/serializers.py:1078 +#: part/serializers.py:967 msgid "Copy parameter templates from selected part category" msgstr "" -#: part/serializers.py:1083 +#: part/serializers.py:972 msgid "Existing Image" msgstr "" -#: part/serializers.py:1084 +#: part/serializers.py:973 msgid "Filename of an existing part image" msgstr "" -#: part/serializers.py:1101 +#: part/serializers.py:990 msgid "Image file does not exist" msgstr "" -#: part/serializers.py:1269 +#: part/serializers.py:1134 msgid "Validate entire Bill of Materials" msgstr "" -#: part/serializers.py:1303 part/serializers.py:1769 +#: part/serializers.py:1168 part/serializers.py:1634 msgid "Can Build" msgstr "" -#: part/serializers.py:1320 +#: part/serializers.py:1185 msgid "Required for Build Orders" msgstr "" -#: part/serializers.py:1325 +#: part/serializers.py:1190 msgid "Allocated to Build Orders" msgstr "" -#: part/serializers.py:1332 +#: part/serializers.py:1197 msgid "Required for Sales Orders" msgstr "" -#: part/serializers.py:1336 +#: part/serializers.py:1201 msgid "Allocated to Sales Orders" msgstr "" -#: part/serializers.py:1475 +#: part/serializers.py:1340 msgid "Minimum Price" msgstr "Harga Minimal" -#: part/serializers.py:1476 +#: part/serializers.py:1341 msgid "Override calculated value for minimum price" msgstr "" -#: part/serializers.py:1483 +#: part/serializers.py:1348 msgid "Minimum price currency" msgstr "" -#: part/serializers.py:1490 +#: part/serializers.py:1355 msgid "Maximum Price" msgstr "Harga Maksimal" -#: part/serializers.py:1491 +#: part/serializers.py:1356 msgid "Override calculated value for maximum price" msgstr "" -#: part/serializers.py:1498 +#: part/serializers.py:1363 msgid "Maximum price currency" msgstr "" -#: part/serializers.py:1527 +#: part/serializers.py:1392 msgid "Update" msgstr "Perbarui" -#: part/serializers.py:1528 +#: part/serializers.py:1393 msgid "Update pricing for this part" msgstr "" -#: part/serializers.py:1551 +#: part/serializers.py:1416 #, python-brace-format msgid "Could not convert from provided currencies to {default_currency}" msgstr "" -#: part/serializers.py:1558 +#: part/serializers.py:1423 msgid "Minimum price must not be greater than maximum price" msgstr "" -#: part/serializers.py:1561 +#: part/serializers.py:1426 msgid "Maximum price must not be less than minimum price" msgstr "" -#: part/serializers.py:1715 +#: part/serializers.py:1580 msgid "Select the parent assembly" msgstr "" -#: part/serializers.py:1735 +#: part/serializers.py:1600 msgid "Select the component part" msgstr "" -#: part/serializers.py:1929 +#: part/serializers.py:1802 msgid "Select part to copy BOM from" msgstr "" -#: part/serializers.py:1937 +#: part/serializers.py:1810 msgid "Remove Existing Data" msgstr "" -#: part/serializers.py:1938 +#: part/serializers.py:1811 msgid "Remove existing BOM items before copying" msgstr "" -#: part/serializers.py:1943 +#: part/serializers.py:1816 msgid "Include Inherited" msgstr "" -#: part/serializers.py:1944 +#: part/serializers.py:1817 msgid "Include BOM items which are inherited from templated parts" msgstr "" -#: part/serializers.py:1949 +#: part/serializers.py:1822 msgid "Skip Invalid Rows" msgstr "" -#: part/serializers.py:1950 +#: part/serializers.py:1823 msgid "Enable this option to skip invalid rows" msgstr "" -#: part/serializers.py:1955 +#: part/serializers.py:1828 msgid "Copy Substitute Parts" msgstr "" -#: part/serializers.py:1956 +#: part/serializers.py:1829 msgid "Copy substitute parts when duplicate BOM items" msgstr "" @@ -6927,7 +6974,7 @@ msgstr "" #: plugin/builtin/events/auto_issue_orders.py:19 #: plugin/builtin/exporter/bom_exporter.py:73 #: plugin/builtin/exporter/inventree_exporter.py:17 -#: plugin/builtin/exporter/part_parameter_exporter.py:36 +#: plugin/builtin/exporter/parameter_exporter.py:32 #: plugin/builtin/exporter/stocktake_exporter.py:47 #: plugin/builtin/integration/core_notifications.py:25 #: plugin/builtin/integration/core_notifications.py:69 @@ -7041,23 +7088,19 @@ msgid "Include total quantity of each part in the BOM" msgstr "" #: plugin/builtin/exporter/bom_exporter.py:35 -#: plugin/builtin/exporter/part_parameter_exporter.py:17 msgid "Stock Data" msgstr "" #: plugin/builtin/exporter/bom_exporter.py:35 -#: plugin/builtin/exporter/part_parameter_exporter.py:17 msgid "Include part stock data" msgstr "" #: plugin/builtin/exporter/bom_exporter.py:39 -#: plugin/builtin/exporter/part_parameter_exporter.py:21 #: plugin/builtin/exporter/stocktake_exporter.py:20 msgid "Pricing Data" msgstr "" #: plugin/builtin/exporter/bom_exporter.py:39 -#: plugin/builtin/exporter/part_parameter_exporter.py:21 #: plugin/builtin/exporter/stocktake_exporter.py:20 msgid "Include part pricing data" msgstr "" @@ -7144,12 +7187,20 @@ msgstr "" msgid "Provides support for exporting data from InvenTree" msgstr "" -#: plugin/builtin/exporter/part_parameter_exporter.py:33 -msgid "Part Parameter Exporter" +#: plugin/builtin/exporter/parameter_exporter.py:16 +msgid "Exclude Inactive" msgstr "" -#: plugin/builtin/exporter/part_parameter_exporter.py:34 -msgid "Exporter for part parameter data" +#: plugin/builtin/exporter/parameter_exporter.py:17 +msgid "Exclude parameters which are inactive" +msgstr "" + +#: plugin/builtin/exporter/parameter_exporter.py:29 +msgid "Parameter Exporter" +msgstr "" + +#: plugin/builtin/exporter/parameter_exporter.py:30 +msgid "Exporter for model parameter data" msgstr "" #: plugin/builtin/exporter/stocktake_exporter.py:25 @@ -8079,19 +8130,19 @@ msgstr "" msgid "No result" msgstr "" -#: report/templatetags/report.py:167 +#: report/templatetags/report.py:169 msgid "Asset file does not exist" msgstr "" -#: report/templatetags/report.py:224 report/templatetags/report.py:300 +#: report/templatetags/report.py:226 report/templatetags/report.py:302 msgid "Image file not found" msgstr "" -#: report/templatetags/report.py:325 +#: report/templatetags/report.py:327 msgid "part_image tag requires a Part instance" msgstr "" -#: report/templatetags/report.py:362 +#: report/templatetags/report.py:383 msgid "company_image tag requires a Company instance" msgstr "" @@ -8455,115 +8506,119 @@ msgstr "" msgid "Quantity does not match serial numbers" msgstr "" -#: stock/models.py:2012 stock/models.py:2917 +#: stock/models.py:1912 +msgid "Cannot assign stock to structural location" +msgstr "" + +#: stock/models.py:2029 stock/models.py:2934 msgid "Test template does not exist" msgstr "" -#: stock/models.py:2030 +#: stock/models.py:2047 msgid "Stock item has been assigned to a sales order" msgstr "" -#: stock/models.py:2034 +#: stock/models.py:2051 msgid "Stock item is installed in another item" msgstr "" -#: stock/models.py:2037 +#: stock/models.py:2054 msgid "Stock item contains other items" msgstr "" -#: stock/models.py:2040 +#: stock/models.py:2057 msgid "Stock item has been assigned to a customer" msgstr "" -#: stock/models.py:2043 stock/models.py:2226 +#: stock/models.py:2060 stock/models.py:2243 msgid "Stock item is currently in production" msgstr "" -#: stock/models.py:2046 +#: stock/models.py:2063 msgid "Serialized stock cannot be merged" msgstr "" -#: stock/models.py:2053 stock/serializers.py:1462 +#: stock/models.py:2070 stock/serializers.py:1462 msgid "Duplicate stock items" msgstr "" -#: stock/models.py:2057 +#: stock/models.py:2074 msgid "Stock items must refer to the same part" msgstr "" -#: stock/models.py:2065 +#: stock/models.py:2082 msgid "Stock items must refer to the same supplier part" msgstr "" -#: stock/models.py:2070 +#: stock/models.py:2087 msgid "Stock status codes must match" msgstr "" -#: stock/models.py:2349 +#: stock/models.py:2366 msgid "StockItem cannot be moved as it is not in stock" msgstr "" -#: stock/models.py:2818 +#: stock/models.py:2835 msgid "Stock Item Tracking" msgstr "" -#: stock/models.py:2849 +#: stock/models.py:2866 msgid "Entry notes" msgstr "" -#: stock/models.py:2889 +#: stock/models.py:2906 msgid "Stock Item Test Result" msgstr "" -#: stock/models.py:2920 +#: stock/models.py:2937 msgid "Value must be provided for this test" msgstr "" -#: stock/models.py:2924 +#: stock/models.py:2941 msgid "Attachment must be uploaded for this test" msgstr "Lampiran perlu diunggah untuk tes ini" -#: stock/models.py:2929 +#: stock/models.py:2946 msgid "Invalid value for this test" msgstr "" -#: stock/models.py:2953 +#: stock/models.py:2970 msgid "Test result" msgstr "" -#: stock/models.py:2960 +#: stock/models.py:2977 msgid "Test output value" msgstr "" -#: stock/models.py:2968 stock/serializers.py:248 +#: stock/models.py:2985 stock/serializers.py:248 msgid "Test result attachment" msgstr "" -#: stock/models.py:2972 +#: stock/models.py:2989 msgid "Test notes" msgstr "" -#: stock/models.py:2980 +#: stock/models.py:2997 msgid "Test station" msgstr "" -#: stock/models.py:2981 +#: stock/models.py:2998 msgid "The identifier of the test station where the test was performed" msgstr "" -#: stock/models.py:2987 +#: stock/models.py:3004 msgid "Started" msgstr "" -#: stock/models.py:2988 +#: stock/models.py:3005 msgid "The timestamp of the test start" msgstr "" -#: stock/models.py:2994 +#: stock/models.py:3011 msgid "Finished" msgstr "" -#: stock/models.py:2995 +#: stock/models.py:3012 msgid "The timestamp of the test finish" msgstr "" @@ -8677,8 +8732,8 @@ msgstr "" msgid "Quantity must not exceed available stock quantity ({q})" msgstr "" -#: stock/serializers.py:711 stock/serializers.py:1419 stock/serializers.py:1732 -#: stock/serializers.py:1781 +#: stock/serializers.py:711 stock/serializers.py:1419 stock/serializers.py:1740 +#: stock/serializers.py:1789 msgid "Destination stock location" msgstr "" @@ -8834,19 +8889,19 @@ msgstr "" msgid "Stock transaction notes" msgstr "" -#: stock/serializers.py:1787 +#: stock/serializers.py:1795 msgid "Merge into existing stock" msgstr "" -#: stock/serializers.py:1788 +#: stock/serializers.py:1796 msgid "Merge returned items into existing stock items if possible" msgstr "" -#: stock/serializers.py:1831 +#: stock/serializers.py:1839 msgid "Next Serial Number" msgstr "" -#: stock/serializers.py:1837 +#: stock/serializers.py:1845 msgid "Previous Serial Number" msgstr "" @@ -8902,83 +8957,87 @@ msgstr "Stok yang ditambahkan manual" msgid "Stock manually removed" msgstr "Stok yang dikurangi manual" -#: stock/status_codes.py:57 +#: stock/status_codes.py:56 +msgid "Serialized stock items" +msgstr "" + +#: stock/status_codes.py:58 msgid "Returned to stock" msgstr "" -#: stock/status_codes.py:60 +#: stock/status_codes.py:61 msgid "Location changed" msgstr "Lokasi berubah" -#: stock/status_codes.py:61 +#: stock/status_codes.py:62 msgid "Stock updated" msgstr "" -#: stock/status_codes.py:64 +#: stock/status_codes.py:65 msgid "Installed into assembly" msgstr "Dirakit ke" -#: stock/status_codes.py:65 +#: stock/status_codes.py:66 msgid "Removed from assembly" msgstr "Diambil dari" -#: stock/status_codes.py:67 +#: stock/status_codes.py:68 msgid "Installed component item" msgstr "Komponen terpasang" -#: stock/status_codes.py:68 +#: stock/status_codes.py:69 msgid "Removed component item" msgstr "Komponen terlepas" -#: stock/status_codes.py:71 +#: stock/status_codes.py:72 msgid "Split from parent item" msgstr "Dipisah dari item induk" -#: stock/status_codes.py:72 +#: stock/status_codes.py:73 msgid "Split child item" msgstr "Pisah item dari barang induk" -#: stock/status_codes.py:75 +#: stock/status_codes.py:76 msgid "Merged stock items" msgstr "Stok item digabungkan" -#: stock/status_codes.py:78 +#: stock/status_codes.py:79 msgid "Converted to variant" msgstr "Dikonversi ke variasi" -#: stock/status_codes.py:81 +#: stock/status_codes.py:82 msgid "Build order output created" msgstr "Output order produksi dibuat" -#: stock/status_codes.py:82 +#: stock/status_codes.py:83 msgid "Build order output completed" msgstr "Order output produksi selesai" -#: stock/status_codes.py:83 +#: stock/status_codes.py:84 msgid "Build order output rejected" msgstr "" -#: stock/status_codes.py:84 +#: stock/status_codes.py:85 msgid "Consumed by build order" msgstr "Terpakai oleh order produksi" -#: stock/status_codes.py:87 +#: stock/status_codes.py:88 msgid "Shipped against Sales Order" msgstr "" -#: stock/status_codes.py:90 +#: stock/status_codes.py:91 msgid "Received against Purchase Order" msgstr "" -#: stock/status_codes.py:93 +#: stock/status_codes.py:94 msgid "Returned against Return Order" msgstr "" -#: stock/status_codes.py:96 +#: stock/status_codes.py:97 msgid "Sent to customer" msgstr "Terkirim ke pelanggan" -#: stock/status_codes.py:97 +#: stock/status_codes.py:98 msgid "Returned from customer" msgstr "Dikembalikan pelanggan" diff --git a/src/backend/InvenTree/locale/it/LC_MESSAGES/django.po b/src/backend/InvenTree/locale/it/LC_MESSAGES/django.po index 31d6da83ef..0d2015f20d 100644 --- a/src/backend/InvenTree/locale/it/LC_MESSAGES/django.po +++ b/src/backend/InvenTree/locale/it/LC_MESSAGES/django.po @@ -2,8 +2,8 @@ msgid "" msgstr "" "Project-Id-Version: inventree\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-11-19 04:55+0000\n" -"PO-Revision-Date: 2025-11-19 04:59\n" +"POT-Creation-Date: 2025-12-07 07:33+0000\n" +"PO-Revision-Date: 2025-12-07 07:36\n" "Last-Translator: \n" "Language-Team: Italian\n" "Language: it_IT\n" @@ -57,7 +57,7 @@ msgstr "Nessun dato fornito" msgid "This field must be unique." msgstr "Questo campo deve essere unico." -#: InvenTree/api.py:775 +#: InvenTree/api.py:803 msgid "User does not have permission to view this model" msgstr "L'utente non ha i permessi per vedere questo modello" @@ -81,22 +81,22 @@ msgstr "L'indirizzo email principale fornito non è valido." msgid "The provided email domain is not approved." msgstr "L'indirizzo di posta elettronica fornito non è approvato." -#: InvenTree/conversion.py:166 +#: InvenTree/conversion.py:240 #, python-brace-format msgid "Invalid unit provided ({unit})" msgstr "Unità fornita non valida ({unit})" -#: InvenTree/conversion.py:183 +#: InvenTree/conversion.py:257 msgid "No value provided" msgstr "Nessun valore specificato" -#: InvenTree/conversion.py:210 +#: InvenTree/conversion.py:284 #, python-brace-format msgid "Could not convert {original} to {unit}" msgstr "Impossibile convertire {original} in {unit}" -#: InvenTree/conversion.py:212 InvenTree/conversion.py:226 -#: InvenTree/helpers.py:597 order/models.py:720 order/models.py:1015 +#: InvenTree/conversion.py:286 InvenTree/conversion.py:300 +#: InvenTree/helpers.py:597 order/models.py:721 order/models.py:1016 msgid "Invalid quantity provided" msgstr "Quantità inserita non valida" @@ -112,11 +112,11 @@ msgstr "Inserisci la data" msgid "Invalid decimal value" msgstr "Valore decimale non valido" -#: InvenTree/fields.py:218 InvenTree/models.py:1067 build/serializers.py:509 -#: build/serializers.py:580 build/serializers.py:1788 company/models.py:857 -#: order/models.py:1780 +#: InvenTree/fields.py:218 InvenTree/models.py:1228 build/serializers.py:517 +#: build/serializers.py:588 build/serializers.py:1796 company/models.py:811 +#: order/models.py:1781 #: report/templates/report/inventree_build_order_report.html:172 -#: stock/models.py:2848 stock/models.py:2972 stock/serializers.py:717 +#: stock/models.py:2865 stock/models.py:2989 stock/serializers.py:717 #: stock/serializers.py:893 stock/serializers.py:1035 stock/serializers.py:1336 #: stock/serializers.py:1425 stock/serializers.py:1624 msgid "Notes" @@ -171,35 +171,35 @@ msgstr "Rimuovi i tag HTML da questo valore" msgid "Data contains prohibited markdown content" msgstr "I dati contengono un contenuto in markdown proibito" -#: InvenTree/helpers_model.py:133 +#: InvenTree/helpers_model.py:134 msgid "Connection error" msgstr "Errore di connessione" -#: InvenTree/helpers_model.py:138 InvenTree/helpers_model.py:145 +#: InvenTree/helpers_model.py:139 InvenTree/helpers_model.py:146 msgid "Server responded with invalid status code" msgstr "Il server ha risposto con un codice di stato non valido" -#: InvenTree/helpers_model.py:141 +#: InvenTree/helpers_model.py:142 msgid "Exception occurred" msgstr "Si è verificata un'eccezione" -#: InvenTree/helpers_model.py:151 +#: InvenTree/helpers_model.py:152 msgid "Server responded with invalid Content-Length value" msgstr "Il server ha risposto con valore Content-Length non valido" -#: InvenTree/helpers_model.py:154 +#: InvenTree/helpers_model.py:155 msgid "Image size is too large" msgstr "Immagine troppo grande" -#: InvenTree/helpers_model.py:166 +#: InvenTree/helpers_model.py:167 msgid "Image download exceeded maximum size" msgstr "Il download dell'immagine ha superato la dimensione massima" -#: InvenTree/helpers_model.py:171 +#: InvenTree/helpers_model.py:172 msgid "Remote server returned empty response" msgstr "Il server remoto ha restituito una risposta vuota" -#: InvenTree/helpers_model.py:179 +#: InvenTree/helpers_model.py:180 msgid "Supplied URL is not a valid image file" msgstr "L'URL fornito non è un file immagine valido" @@ -207,7 +207,7 @@ msgstr "L'URL fornito non è un file immagine valido" msgid "Log in to the app" msgstr "Accedi all'app" -#: InvenTree/magic_login.py:41 company/models.py:172 users/serializers.py:198 +#: InvenTree/magic_login.py:41 company/models.py:173 users/serializers.py:198 msgid "Email" msgstr "Email" @@ -215,160 +215,176 @@ msgstr "Email" msgid "You must enable two-factor authentication before doing anything else." msgstr "Devi abilitare l'autenticazione a due fattori prima di fare qualsiasi altra cosa." -#: InvenTree/models.py:111 +#: InvenTree/models.py:114 msgid "Error running plugin validation" msgstr "Errore nell'eseguire la convalida del plugin" -#: InvenTree/models.py:192 +#: InvenTree/models.py:195 msgid "Metadata must be a python dict object" msgstr "I metadati devono essere un oggetto python dict" -#: InvenTree/models.py:198 +#: InvenTree/models.py:201 msgid "Plugin Metadata" msgstr "Metadati Plugin" -#: InvenTree/models.py:199 +#: InvenTree/models.py:202 msgid "JSON metadata field, for use by external plugins" msgstr "Campo di metadati JSON, da utilizzare con plugin esterni" -#: InvenTree/models.py:382 +#: InvenTree/models.py:385 msgid "Improperly formatted pattern" msgstr "Schema formattato impropriamente" -#: InvenTree/models.py:389 +#: InvenTree/models.py:392 msgid "Unknown format key specified" msgstr "Formato chiave sconosciuta" -#: InvenTree/models.py:395 +#: InvenTree/models.py:398 msgid "Missing required format key" msgstr "Formato chiave mancante" -#: InvenTree/models.py:406 +#: InvenTree/models.py:409 msgid "Reference field cannot be empty" msgstr "Il campo di riferimento non può essere vuoto" -#: InvenTree/models.py:414 +#: InvenTree/models.py:417 msgid "Reference must match required pattern" msgstr "Il campo deve corrispondere al modello richiesto" -#: InvenTree/models.py:445 +#: InvenTree/models.py:448 msgid "Reference number is too large" msgstr "Numero di riferimento troppo grande" -#: InvenTree/models.py:743 +#: InvenTree/models.py:896 msgid "Invalid choice" msgstr "Scelta non valida" -#: InvenTree/models.py:856 common/models.py:1410 common/models.py:1837 -#: common/models.py:2096 common/models.py:2221 common/serializers.py:535 -#: company/models.py:615 generic/states/serializers.py:20 machine/models.py:25 -#: part/models.py:1039 part/models.py:3850 plugin/models.py:54 +#: InvenTree/models.py:1017 common/models.py:1414 common/models.py:1841 +#: common/models.py:2102 common/models.py:2227 common/models.py:2494 +#: common/serializers.py:539 generic/states/serializers.py:20 +#: machine/models.py:25 part/models.py:1127 plugin/models.py:54 #: report/models.py:216 stock/models.py:84 msgid "Name" msgstr "Nome" -#: InvenTree/models.py:862 build/models.py:252 common/models.py:171 -#: common/models.py:2228 common/models.py:2341 company/models.py:543 -#: company/models.py:848 order/models.py:442 order/models.py:1825 -#: part/models.py:1062 part/models.py:3865 report/models.py:222 +#: InvenTree/models.py:1023 build/models.py:253 common/models.py:175 +#: common/models.py:2234 common/models.py:2347 common/models.py:2509 +#: company/models.py:545 company/models.py:802 order/models.py:443 +#: order/models.py:1826 part/models.py:1150 report/models.py:222 #: report/models.py:815 report/models.py:841 #: report/templates/report/inventree_build_order_report.html:117 #: stock/models.py:90 msgid "Description" msgstr "Descrizione" -#: InvenTree/models.py:863 stock/models.py:91 +#: InvenTree/models.py:1024 stock/models.py:91 msgid "Description (optional)" msgstr "Descrizione (opzionale)" -#: InvenTree/models.py:878 common/models.py:2394 +#: InvenTree/models.py:1039 common/models.py:2815 msgid "Path" msgstr "Percorso" -#: InvenTree/models.py:983 +#: InvenTree/models.py:1144 msgid "Duplicate names cannot exist under the same parent" msgstr "Nomi duplicati non possono esistere sotto lo stesso genitore" -#: InvenTree/models.py:1067 +#: InvenTree/models.py:1228 msgid "Markdown notes (optional)" msgstr "Note di Markdown (opzionale)" -#: InvenTree/models.py:1098 +#: InvenTree/models.py:1259 msgid "Barcode Data" msgstr "Dati del Codice a Barre" -#: InvenTree/models.py:1099 +#: InvenTree/models.py:1260 msgid "Third party barcode data" msgstr "Dati Codice a Barre applicazioni di terze parti" -#: InvenTree/models.py:1105 +#: InvenTree/models.py:1266 msgid "Barcode Hash" msgstr "Codice a Barre" -#: InvenTree/models.py:1106 +#: InvenTree/models.py:1267 msgid "Unique hash of barcode data" msgstr "Codice univoco del codice a barre" -#: InvenTree/models.py:1187 +#: InvenTree/models.py:1348 msgid "Existing barcode found" msgstr "Trovato codice a barre esistente" -#: InvenTree/models.py:1269 +#: InvenTree/models.py:1430 msgid "Task Failure" msgstr "Fallimento Attività" -#: InvenTree/models.py:1270 +#: InvenTree/models.py:1431 #, python-brace-format msgid "Background worker task '{f}' failed after {n} attempts" msgstr "Attività di lavoro in background '{f}' fallita dopo {n} tentativi" -#: InvenTree/models.py:1297 +#: InvenTree/models.py:1458 msgid "Server Error" msgstr "Errore del server" -#: InvenTree/models.py:1298 +#: InvenTree/models.py:1459 msgid "An error has been logged by the server." msgstr "Un errore è stato loggato dal server." -#: InvenTree/models.py:1340 common/models.py:1748 +#: InvenTree/models.py:1501 common/models.py:1752 #: report/templates/report/inventree_bill_of_materials_report.html:126 #: report/templates/report/inventree_bill_of_materials_report.html:148 #: report/templates/report/inventree_return_order_report.html:35 msgid "Image" msgstr "Immagine" -#: InvenTree/serializers.py:253 part/models.py:4571 +#: InvenTree/serializers.py:255 part/models.py:4196 msgid "Must be a valid number" msgstr "Deve essere un numero valido" -#: InvenTree/serializers.py:295 company/models.py:214 part/models.py:3285 +#: InvenTree/serializers.py:297 company/models.py:215 part/models.py:3349 msgid "Currency" msgstr "Valuta" -#: InvenTree/serializers.py:298 part/serializers.py:1385 +#: InvenTree/serializers.py:300 part/serializers.py:1250 msgid "Select currency from available options" msgstr "Selezionare la valuta dalle opzioni disponibili" -#: InvenTree/serializers.py:653 +#: InvenTree/serializers.py:654 +msgid "This field may not be null." +msgstr "" + +#: InvenTree/serializers.py:660 msgid "Invalid value" msgstr "Valore non valido" -#: InvenTree/serializers.py:690 +#: InvenTree/serializers.py:697 msgid "Remote Image" msgstr "Immagine Remota" -#: InvenTree/serializers.py:691 +#: InvenTree/serializers.py:698 msgid "URL of remote image file" msgstr "URL del file immagine remota" -#: InvenTree/serializers.py:709 +#: InvenTree/serializers.py:716 msgid "Downloading images from remote URL is not enabled" msgstr "Il download delle immagini da URL remoto non è abilitato" -#: InvenTree/serializers.py:716 +#: InvenTree/serializers.py:723 msgid "Failed to download image from remote URL" msgstr "Impossibile scaricare l'immagine dall'URL remoto" +#: InvenTree/serializers.py:806 +msgid "Invalid content type format" +msgstr "" + +#: InvenTree/serializers.py:809 +msgid "Content type not found" +msgstr "" + +#: InvenTree/serializers.py:815 +msgid "Content type does not match required mixin class" +msgstr "" + #: InvenTree/setting/locales.py:20 msgid "Arabic" msgstr "Arabo" @@ -537,30 +553,30 @@ msgstr "Unità fisica non valida" msgid "Not a valid currency code" msgstr "Non è un codice valuta valido" -#: build/api.py:54 order/api.py:111 order/api.py:270 order/api.py:1373 -#: order/serializers.py:132 +#: build/api.py:54 order/api.py:116 order/api.py:275 order/api.py:1378 +#: order/serializers.py:133 msgid "Order Status" msgstr "Stato dell'ordine" -#: build/api.py:80 build/models.py:264 +#: build/api.py:80 build/models.py:265 msgid "Parent Build" msgstr "Produzione Genitore" -#: build/api.py:84 build/api.py:831 order/api.py:547 order/api.py:770 -#: order/api.py:1174 order/api.py:1449 stock/api.py:573 +#: build/api.py:84 build/api.py:837 order/api.py:553 order/api.py:776 +#: order/api.py:1179 order/api.py:1454 stock/api.py:573 msgid "Include Variants" msgstr "Includi Varianti" -#: build/api.py:100 build/api.py:466 build/api.py:845 build/models.py:270 -#: build/serializers.py:1225 build/serializers.py:1356 -#: build/serializers.py:1427 company/models.py:1067 company/serializers.py:445 -#: order/api.py:298 order/api.py:302 order/api.py:929 order/api.py:1187 -#: order/api.py:1190 order/models.py:1941 order/models.py:2108 -#: order/models.py:2109 part/api.py:1233 part/api.py:1236 part/api.py:1302 -#: part/api.py:1589 part/models.py:472 part/models.py:3296 part/models.py:3439 -#: part/models.py:3497 part/models.py:3518 part/models.py:3540 -#: part/models.py:3679 part/models.py:4046 part/models.py:4368 -#: part/models.py:4787 part/serializers.py:1928 +#: build/api.py:100 build/api.py:472 build/api.py:851 build/models.py:271 +#: build/serializers.py:1233 build/serializers.py:1364 +#: build/serializers.py:1435 company/models.py:1021 company/serializers.py:490 +#: order/api.py:303 order/api.py:307 order/api.py:934 order/api.py:1192 +#: order/api.py:1195 order/models.py:1942 order/models.py:2109 +#: order/models.py:2110 part/api.py:1160 part/api.py:1163 part/api.py:1314 +#: part/models.py:550 part/models.py:3360 part/models.py:3503 +#: part/models.py:3561 part/models.py:3582 part/models.py:3604 +#: part/models.py:3743 part/models.py:3993 part/models.py:4412 +#: part/serializers.py:1801 #: report/templates/report/inventree_bill_of_materials_report.html:110 #: report/templates/report/inventree_bill_of_materials_report.html:137 #: report/templates/report/inventree_build_order_report.html:109 @@ -580,9 +596,9 @@ msgstr "Includi Varianti" msgid "Part" msgstr "Articolo" -#: build/api.py:120 build/api.py:123 build/serializers.py:1438 part/api.py:980 -#: part/api.py:1316 part/api.py:1600 part/models.py:1080 part/models.py:3568 -#: part/models.py:4162 part/serializers.py:1752 stock/api.py:869 +#: build/api.py:120 build/api.py:123 build/serializers.py:1446 part/api.py:975 +#: part/api.py:1325 part/models.py:435 part/models.py:1168 part/models.py:3632 +#: part/serializers.py:1617 stock/api.py:869 msgid "Category" msgstr "Categoria" @@ -590,7 +606,7 @@ msgstr "Categoria" msgid "Ancestor Build" msgstr "Produzione Antenata" -#: build/api.py:152 order/api.py:129 +#: build/api.py:152 order/api.py:134 msgid "Assigned to me" msgstr "Assegnato a me" @@ -638,134 +654,134 @@ msgstr "Completato prima" msgid "Completed after" msgstr "Completato dopo" -#: build/api.py:249 order/api.py:226 +#: build/api.py:249 order/api.py:231 msgid "Min Date" msgstr "Data minima" -#: build/api.py:272 order/api.py:245 +#: build/api.py:272 order/api.py:250 msgid "Max Date" msgstr "Data massima" -#: build/api.py:297 build/api.py:300 part/api.py:217 stock/api.py:961 +#: build/api.py:297 build/api.py:300 part/api.py:212 stock/api.py:961 msgid "Exclude Tree" msgstr "Escludi Albero" -#: build/api.py:405 +#: build/api.py:411 msgid "Build must be cancelled before it can be deleted" msgstr "La produzione deve essere annullata prima di poter essere eliminata" -#: build/api.py:449 build/serializers.py:1374 part/models.py:4402 +#: build/api.py:455 build/serializers.py:1382 part/models.py:4027 msgid "Consumable" msgstr "Consumabile" -#: build/api.py:452 build/serializers.py:1377 part/models.py:4396 +#: build/api.py:458 build/serializers.py:1385 part/models.py:4021 msgid "Optional" msgstr "Opzionale" -#: build/api.py:455 build/serializers.py:1415 common/setting/system.py:456 -#: part/models.py:1202 part/serializers.py:1714 part/serializers.py:1725 +#: build/api.py:461 build/serializers.py:1423 common/setting/system.py:456 +#: part/models.py:1290 part/serializers.py:1579 part/serializers.py:1590 #: stock/api.py:639 msgid "Assembly" msgstr "Assemblaggio" -#: build/api.py:458 +#: build/api.py:464 msgid "Tracked" msgstr "Monitorato" -#: build/api.py:461 build/serializers.py:1380 part/models.py:1220 +#: build/api.py:467 build/serializers.py:1388 part/models.py:1308 msgid "Testable" msgstr "Testabile" -#: build/api.py:471 order/api.py:993 order/api.py:1363 +#: build/api.py:477 order/api.py:998 order/api.py:1368 msgid "Order Outstanding" msgstr "Ordine In Corso" -#: build/api.py:481 build/serializers.py:1464 order/api.py:952 +#: build/api.py:487 build/serializers.py:1472 order/api.py:957 msgid "Allocated" msgstr "Allocato" -#: build/api.py:490 build/models.py:1672 build/serializers.py:1393 +#: build/api.py:496 build/models.py:1673 build/serializers.py:1401 msgid "Consumed" msgstr "Utilizzato" -#: build/api.py:499 company/models.py:912 company/serializers.py:440 +#: build/api.py:505 company/models.py:866 company/serializers.py:467 #: templates/email/build_order_required_stock.html:19 #: templates/email/low_stock_notification.html:17 #: templates/email/part_event_notification.html:18 msgid "Available" msgstr "Disponibile" -#: build/api.py:523 build/serializers.py:1466 company/serializers.py:437 -#: order/serializers.py:1281 part/serializers.py:959 part/serializers.py:1306 -#: part/serializers.py:1761 +#: build/api.py:529 build/serializers.py:1474 company/serializers.py:464 +#: order/serializers.py:1295 part/serializers.py:844 part/serializers.py:1171 +#: part/serializers.py:1626 msgid "On Order" msgstr "Ordinato" -#: build/api.py:868 build/models.py:117 order/models.py:1974 +#: build/api.py:874 build/models.py:118 order/models.py:1975 #: report/templates/report/inventree_build_order_report.html:105 #: stock/serializers.py:93 templates/email/build_order_completed.html:16 #: templates/email/overdue_build_order.html:15 msgid "Build Order" msgstr "Ordine di Produzione" -#: build/api.py:882 build/api.py:886 build/serializers.py:372 -#: build/serializers.py:497 build/serializers.py:567 build/serializers.py:1251 -#: build/serializers.py:1256 order/api.py:1234 order/api.py:1239 -#: order/serializers.py:833 order/serializers.py:973 order/serializers.py:2042 +#: build/api.py:888 build/api.py:892 build/serializers.py:380 +#: build/serializers.py:505 build/serializers.py:575 build/serializers.py:1259 +#: build/serializers.py:1264 order/api.py:1239 order/api.py:1244 +#: order/serializers.py:844 order/serializers.py:984 order/serializers.py:2059 #: stock/api.py:987 stock/serializers.py:111 stock/serializers.py:601 #: stock/serializers.py:710 stock/serializers.py:888 stock/serializers.py:1418 -#: stock/serializers.py:1731 stock/serializers.py:1780 +#: stock/serializers.py:1739 stock/serializers.py:1788 #: templates/email/stale_stock_notification.html:18 users/models.py:549 msgid "Location" msgstr "Posizione" -#: build/api.py:894 +#: build/api.py:900 msgid "Output" msgstr "Output" -#: build/api.py:896 +#: build/api.py:902 msgid "Filter by output stock item ID. Use 'null' to find uninstalled build items." msgstr "Filtra per ID articolo stock di output. Usa 'null' per trovare elementi di produzione disinstallati." -#: build/models.py:118 users/ruleset.py:31 +#: build/models.py:119 users/ruleset.py:31 msgid "Build Orders" msgstr "Ordini di Produzione" -#: build/models.py:168 +#: build/models.py:169 msgid "Assembly BOM has not been validated" msgstr "Assembly BOM non è stato convalidato" -#: build/models.py:175 +#: build/models.py:176 msgid "Build order cannot be created for an inactive part" msgstr "L'ordine di generazione non può essere creato per una parte inattiva" -#: build/models.py:182 +#: build/models.py:183 msgid "Build order cannot be created for an unlocked part" msgstr "L'ordine di compilazione non può essere creato per una parte sbloccata" -#: build/models.py:200 +#: build/models.py:201 msgid "Build orders can only be externally fulfilled for purchaseable parts" msgstr "Gli ordini di costruzione possono essere eseguiti solo esternamente per gli articoli acquistabili" -#: build/models.py:207 order/models.py:369 +#: build/models.py:208 order/models.py:370 msgid "Responsible user or group must be specified" msgstr "L'utente o il gruppo responsabile deve essere specificato" -#: build/models.py:212 +#: build/models.py:213 msgid "Build order part cannot be changed" msgstr "L'ordine di costruzione della parte non può essere cambiata" -#: build/models.py:217 order/models.py:382 +#: build/models.py:218 order/models.py:383 msgid "Target date must be after start date" msgstr "La data di scadenza deve essere successiva alla data d'inizio" -#: build/models.py:245 +#: build/models.py:246 msgid "Build Order Reference" msgstr "Riferimento Ordine Di Produzione" -#: build/models.py:246 build/serializers.py:1371 order/models.py:614 -#: order/models.py:1311 order/models.py:1773 order/models.py:2712 -#: part/models.py:4442 +#: build/models.py:247 build/serializers.py:1379 order/models.py:615 +#: order/models.py:1312 order/models.py:1774 order/models.py:2713 +#: part/models.py:4067 #: report/templates/report/inventree_bill_of_materials_report.html:139 #: report/templates/report/inventree_purchase_order_report.html:35 #: report/templates/report/inventree_return_order_report.html:26 @@ -773,230 +789,230 @@ msgstr "Riferimento Ordine Di Produzione" msgid "Reference" msgstr "Riferimento" -#: build/models.py:255 +#: build/models.py:256 msgid "Brief description of the build (optional)" msgstr "Breve descrizione della build (facoltativo)" -#: build/models.py:265 +#: build/models.py:266 msgid "BuildOrder to which this build is allocated" msgstr "Ordine di produzione a cui questa produzione viene assegnata" -#: build/models.py:274 +#: build/models.py:275 msgid "Select part to build" msgstr "Selezionare parte da produrre" -#: build/models.py:279 +#: build/models.py:280 msgid "Sales Order Reference" msgstr "Numero di riferimento ordine di vendita" -#: build/models.py:284 +#: build/models.py:285 msgid "SalesOrder to which this build is allocated" msgstr "Ordine di vendita a cui questa produzione viene assegnata" -#: build/models.py:289 build/serializers.py:1097 +#: build/models.py:290 build/serializers.py:1105 msgid "Source Location" msgstr "Posizione Di Origine" -#: build/models.py:295 +#: build/models.py:296 msgid "Select location to take stock from for this build (leave blank to take from any stock location)" msgstr "Seleziona la posizione da cui prelevare la giacenza (lasciare vuoto per prelevare da qualsiasi posizione di magazzino)" -#: build/models.py:301 +#: build/models.py:302 msgid "External Build" msgstr "Build Esterno" -#: build/models.py:302 +#: build/models.py:303 msgid "This build order is fulfilled externally" msgstr "Questo ordine di produzione è eseguito esternamente" -#: build/models.py:307 +#: build/models.py:308 msgid "Destination Location" msgstr "Posizione Della Destinazione" -#: build/models.py:312 +#: build/models.py:313 msgid "Select location where the completed items will be stored" msgstr "Seleziona il luogo in cui gli articoli completati saranno immagazzinati" -#: build/models.py:316 +#: build/models.py:317 msgid "Build Quantity" msgstr "Quantità Produzione" -#: build/models.py:319 +#: build/models.py:320 msgid "Number of stock items to build" msgstr "Numero di articoli da costruire" -#: build/models.py:323 +#: build/models.py:324 msgid "Completed items" msgstr "Articoli completati" -#: build/models.py:325 +#: build/models.py:326 msgid "Number of stock items which have been completed" msgstr "Numero di articoli di magazzino che sono stati completati" -#: build/models.py:329 +#: build/models.py:330 msgid "Build Status" msgstr "Stato Produzione" -#: build/models.py:334 +#: build/models.py:335 msgid "Build status code" msgstr "Codice stato di produzione" -#: build/models.py:343 build/serializers.py:359 order/serializers.py:849 +#: build/models.py:344 build/serializers.py:367 order/serializers.py:860 #: stock/models.py:1100 stock/serializers.py:85 stock/serializers.py:1591 msgid "Batch Code" msgstr "Codice Lotto" -#: build/models.py:347 build/serializers.py:360 +#: build/models.py:348 build/serializers.py:368 msgid "Batch code for this build output" msgstr "Codice del lotto per questa produzione" -#: build/models.py:351 order/models.py:479 order/serializers.py:186 -#: part/models.py:1283 +#: build/models.py:352 order/models.py:480 order/serializers.py:193 +#: part/models.py:1371 msgid "Creation Date" msgstr "Data di creazione" -#: build/models.py:357 +#: build/models.py:358 msgid "Build start date" msgstr "Data inizio produzione" -#: build/models.py:358 +#: build/models.py:359 msgid "Scheduled start date for this build order" msgstr "Data d'inizio programmata per questo ordine di produzione" -#: build/models.py:364 +#: build/models.py:365 msgid "Target completion date" msgstr "Data completamento obiettivo" -#: build/models.py:366 +#: build/models.py:367 msgid "Target date for build completion. Build will be overdue after this date." msgstr "Data di completamento della produzione. Dopo tale data la produzione sarà in ritardo." -#: build/models.py:371 order/models.py:667 order/models.py:2751 +#: build/models.py:372 order/models.py:668 order/models.py:2752 msgid "Completion Date" msgstr "Data di completamento" -#: build/models.py:379 +#: build/models.py:380 msgid "completed by" msgstr "Completato da" -#: build/models.py:388 +#: build/models.py:389 msgid "Issued by" msgstr "Rilasciato da" -#: build/models.py:389 +#: build/models.py:390 msgid "User who issued this build order" msgstr "Utente che ha emesso questo ordine di costruzione" -#: build/models.py:398 common/models.py:180 order/api.py:179 -#: order/models.py:504 part/models.py:1300 +#: build/models.py:399 common/models.py:184 order/api.py:184 +#: order/models.py:505 part/models.py:1388 #: report/templates/report/inventree_build_order_report.html:158 msgid "Responsible" msgstr "Responsabile" -#: build/models.py:399 +#: build/models.py:400 msgid "User or group responsible for this build order" msgstr "Utente o gruppo responsabile di questo ordine di produzione" -#: build/models.py:404 stock/models.py:1093 +#: build/models.py:405 stock/models.py:1093 msgid "External Link" msgstr "Collegamento esterno" -#: build/models.py:406 common/models.py:1984 part/models.py:1114 +#: build/models.py:407 common/models.py:1990 part/models.py:1202 #: stock/models.py:1095 msgid "Link to external URL" msgstr "Link a URL esterno" -#: build/models.py:411 +#: build/models.py:412 msgid "Build Priority" msgstr "Priorità di produzione" -#: build/models.py:414 +#: build/models.py:415 msgid "Priority of this build order" msgstr "Priorità di questo ordine di produzione" -#: build/models.py:422 common/models.py:150 common/models.py:164 -#: order/api.py:165 order/models.py:451 order/models.py:1805 +#: build/models.py:423 common/models.py:154 common/models.py:168 +#: order/api.py:170 order/models.py:452 order/models.py:1806 msgid "Project Code" msgstr "Codice del progetto" -#: build/models.py:423 +#: build/models.py:424 msgid "Project code for this build order" msgstr "Codice del progetto per questo ordine di produzione" -#: build/models.py:676 +#: build/models.py:677 msgid "Cannot complete build order with open child builds" msgstr "Impossibile finalizzare l'ordine di produzione con ordini secondari aperti" -#: build/models.py:681 +#: build/models.py:682 msgid "Cannot complete build order with incomplete outputs" msgstr "Impossibile finalizzare l'ordine di produzione con articolo incompleti" -#: build/models.py:700 build/models.py:830 +#: build/models.py:701 build/models.py:831 msgid "Failed to offload task to complete build allocations" msgstr "Impossibile scaricare l'attività per completare le allocazioni di build" -#: build/models.py:723 +#: build/models.py:724 #, python-brace-format msgid "Build order {build} has been completed" msgstr "L'ordine di produzione {build} è stato completato" -#: build/models.py:729 +#: build/models.py:730 msgid "A build order has been completed" msgstr "L'ordine di produzione è stato completato" -#: build/models.py:911 build/serializers.py:407 +#: build/models.py:912 build/serializers.py:415 msgid "Serial numbers must be provided for trackable parts" msgstr "Deve essere fornita un numero di serie per gli articoli rintracciabili" -#: build/models.py:1042 build/models.py:1129 +#: build/models.py:1043 build/models.py:1130 msgid "No build output specified" msgstr "Nessun output di produzione specificato" -#: build/models.py:1045 +#: build/models.py:1046 msgid "Build output is already completed" msgstr "La produzione è stata completata" -#: build/models.py:1048 +#: build/models.py:1049 msgid "Build output does not match Build Order" msgstr "L'output della produzione non corrisponde all'ordine di compilazione" -#: build/models.py:1136 build/models.py:1234 build/serializers.py:285 -#: build/serializers.py:335 build/serializers.py:965 build/serializers.py:1739 -#: order/models.py:717 order/serializers.py:658 order/serializers.py:844 -#: part/serializers.py:1708 stock/models.py:940 stock/models.py:1430 +#: build/models.py:1137 build/models.py:1235 build/serializers.py:293 +#: build/serializers.py:343 build/serializers.py:973 build/serializers.py:1747 +#: order/models.py:718 order/serializers.py:669 order/serializers.py:855 +#: part/serializers.py:1573 stock/models.py:940 stock/models.py:1430 #: stock/models.py:1878 stock/serializers.py:688 stock/serializers.py:1580 msgid "Quantity must be greater than zero" msgstr "La quantità deve essere maggiore di zero" -#: build/models.py:1140 build/models.py:1239 build/serializers.py:290 +#: build/models.py:1141 build/models.py:1240 build/serializers.py:298 msgid "Quantity cannot be greater than the output quantity" msgstr "La quantità non può essere maggiore della quantità in uscita" -#: build/models.py:1214 build/serializers.py:606 +#: build/models.py:1215 build/serializers.py:614 msgid "Build output has not passed all required tests" msgstr "La produzione non ha superati tutti i test richiesti" -#: build/models.py:1217 build/serializers.py:601 +#: build/models.py:1218 build/serializers.py:609 #, python-brace-format msgid "Build output {serial} has not passed all required tests" msgstr "L'output della build {serial} non ha superato tutti i test richiesti" -#: build/models.py:1229 +#: build/models.py:1230 msgid "Cannot partially complete a build output with allocated items" msgstr "Impossibile completare parzialmente un build output con gli elementi assegnati" -#: build/models.py:1627 +#: build/models.py:1628 msgid "Build Order Line Item" msgstr "Elemento di Riga Ordine di Produzione" -#: build/models.py:1651 +#: build/models.py:1652 msgid "Build object" msgstr "Crea oggetto" -#: build/models.py:1663 build/models.py:1974 build/serializers.py:271 -#: build/serializers.py:320 build/serializers.py:1392 common/models.py:1340 -#: order/models.py:1756 order/models.py:2597 order/serializers.py:1696 -#: order/serializers.py:2124 part/models.py:3453 part/models.py:4390 +#: build/models.py:1664 build/models.py:1975 build/serializers.py:279 +#: build/serializers.py:328 build/serializers.py:1400 common/models.py:1344 +#: order/models.py:1757 order/models.py:2598 order/serializers.py:1710 +#: order/serializers.py:2141 part/models.py:3517 part/models.py:4015 #: report/templates/report/inventree_bill_of_materials_report.html:138 #: report/templates/report/inventree_build_order_report.html:113 #: report/templates/report/inventree_purchase_order_report.html:36 @@ -1014,427 +1030,427 @@ msgstr "Crea oggetto" msgid "Quantity" msgstr "Quantità" -#: build/models.py:1664 +#: build/models.py:1665 msgid "Required quantity for build order" msgstr "Quantità richiesta per l'ordine di costruzione" -#: build/models.py:1673 +#: build/models.py:1674 msgid "Quantity of consumed stock" msgstr "Quantità di articoli magazzino consumate" -#: build/models.py:1772 +#: build/models.py:1773 msgid "Build item must specify a build output, as master part is marked as trackable" msgstr "L'elemento di compilazione deve specificare un output poiché la parte principale è contrassegnata come rintracciabile" -#: build/models.py:1783 +#: build/models.py:1784 #, python-brace-format msgid "Allocated quantity ({q}) must not exceed available stock quantity ({a})" msgstr "La quantità assegnata ({q}) non deve essere maggiore della quantità disponibile ({a})" -#: build/models.py:1804 order/models.py:2546 +#: build/models.py:1805 order/models.py:2547 msgid "Stock item is over-allocated" msgstr "L'articolo in giacenza è sovrallocato" -#: build/models.py:1809 order/models.py:2549 +#: build/models.py:1810 order/models.py:2550 msgid "Allocation quantity must be greater than zero" msgstr "La quantità di assegnazione deve essere maggiore di zero" -#: build/models.py:1815 +#: build/models.py:1816 msgid "Quantity must be 1 for serialized stock" msgstr "La quantità deve essere 1 per lo stock serializzato" -#: build/models.py:1875 +#: build/models.py:1876 msgid "Selected stock item does not match BOM line" msgstr "L'articolo in stock selezionato non corrisponde alla voce nella BOM" -#: build/models.py:1913 +#: build/models.py:1914 msgid "Allocated quantity exceeds available stock quantity" msgstr "La quantità assegnata supera la quantità disponibile a magazzino" -#: build/models.py:1964 build/serializers.py:948 build/serializers.py:1240 -#: order/serializers.py:1533 order/serializers.py:1554 +#: build/models.py:1965 build/serializers.py:956 build/serializers.py:1248 +#: order/serializers.py:1547 order/serializers.py:1568 #: report/templates/report/inventree_sales_order_shipment_report.html:29 #: stock/api.py:1404 stock/models.py:456 stock/serializers.py:102 #: stock/serializers.py:800 stock/serializers.py:1274 stock/serializers.py:1386 msgid "Stock Item" msgstr "Articoli in magazzino" -#: build/models.py:1965 +#: build/models.py:1966 msgid "Source stock item" msgstr "Origine giacenza articolo" -#: build/models.py:1975 +#: build/models.py:1976 msgid "Stock quantity to allocate to build" msgstr "Quantità di magazzino da assegnare per la produzione" -#: build/models.py:1984 +#: build/models.py:1985 msgid "Install into" msgstr "Installa in" -#: build/models.py:1985 +#: build/models.py:1986 msgid "Destination stock item" msgstr "Destinazione articolo in giacenza" -#: build/serializers.py:118 +#: build/serializers.py:120 msgid "Build Level" msgstr "Livello Produzione" -#: build/serializers.py:128 +#: build/serializers.py:136 msgid "Part Name" msgstr "Nome Articolo" -#: build/serializers.py:153 +#: build/serializers.py:161 msgid "Project Code Label" msgstr "Etichetta Codice Progetto" -#: build/serializers.py:219 build/serializers.py:974 +#: build/serializers.py:227 build/serializers.py:982 msgid "Build Output" msgstr "Genera Output" -#: build/serializers.py:231 +#: build/serializers.py:239 msgid "Build output does not match the parent build" msgstr "L'output generato non corrisponde alla produzione principale" -#: build/serializers.py:235 +#: build/serializers.py:243 msgid "Output part does not match BuildOrder part" msgstr "L'output non corrisponde alle parti dell'ordine di produzione" -#: build/serializers.py:239 +#: build/serializers.py:247 msgid "This build output has already been completed" msgstr "Questa produzione è stata già completata" -#: build/serializers.py:253 +#: build/serializers.py:261 msgid "This build output is not fully allocated" msgstr "Questo output non è stato completamente assegnato" -#: build/serializers.py:272 build/serializers.py:321 +#: build/serializers.py:280 build/serializers.py:329 msgid "Enter quantity for build output" msgstr "Inserisci la quantità per l'output di compilazione" -#: build/serializers.py:343 +#: build/serializers.py:351 msgid "Integer quantity required for trackable parts" msgstr "Quantità totale richiesta per articoli rintracciabili" -#: build/serializers.py:349 +#: build/serializers.py:357 msgid "Integer quantity required, as the bill of materials contains trackable parts" msgstr "Quantità totale richiesta, poiché la fattura dei materiali contiene articoli rintracciabili" -#: build/serializers.py:366 order/serializers.py:865 order/serializers.py:1700 +#: build/serializers.py:374 order/serializers.py:876 order/serializers.py:1714 #: stock/serializers.py:699 msgid "Serial Numbers" msgstr "Codice Seriale" -#: build/serializers.py:367 +#: build/serializers.py:375 msgid "Enter serial numbers for build outputs" msgstr "Inserisci i numeri di serie per gli output di compilazione (build option)" -#: build/serializers.py:373 +#: build/serializers.py:381 msgid "Stock location for build output" msgstr "Posizione dello stock per l'output della produzione" -#: build/serializers.py:388 +#: build/serializers.py:396 msgid "Auto Allocate Serial Numbers" msgstr "Numeri di Serie Assegnazione automatica" -#: build/serializers.py:390 +#: build/serializers.py:398 msgid "Automatically allocate required items with matching serial numbers" msgstr "Assegna automaticamente gli articoli richiesti con i numeri di serie corrispondenti" -#: build/serializers.py:423 order/serializers.py:951 stock/api.py:1183 +#: build/serializers.py:431 order/serializers.py:962 stock/api.py:1183 #: stock/models.py:1901 msgid "The following serial numbers already exist or are invalid" msgstr "I seguenti numeri di serie sono già esistenti o non sono validi" -#: build/serializers.py:465 build/serializers.py:521 build/serializers.py:613 +#: build/serializers.py:473 build/serializers.py:529 build/serializers.py:621 msgid "A list of build outputs must be provided" msgstr "Deve essere fornito un elenco dei risultati di produzione" -#: build/serializers.py:498 +#: build/serializers.py:506 msgid "Stock location for scrapped outputs" msgstr "Posizione dello stock per l'output di produzione rimosso" -#: build/serializers.py:504 +#: build/serializers.py:512 msgid "Discard Allocations" msgstr "Scarta Assegnazioni" -#: build/serializers.py:505 +#: build/serializers.py:513 msgid "Discard any stock allocations for scrapped outputs" msgstr "Scartare tutte le assegnazioni di magazzino per gli output rimossi" -#: build/serializers.py:510 +#: build/serializers.py:518 msgid "Reason for scrapping build output(s)" msgstr "Motivo dell'eliminazione degli output di compilazione" -#: build/serializers.py:568 +#: build/serializers.py:576 msgid "Location for completed build outputs" msgstr "Posizione per gli output di build completati" -#: build/serializers.py:576 +#: build/serializers.py:584 msgid "Accept Incomplete Allocation" msgstr "Accetta Assegnazione Incompleta" -#: build/serializers.py:577 +#: build/serializers.py:585 msgid "Complete outputs if stock has not been fully allocated" msgstr "Completa l'output se le scorte non sono state interamente assegnate" -#: build/serializers.py:702 +#: build/serializers.py:710 msgid "Consume Allocated Stock" msgstr "Consuma Giacenze Allocate" -#: build/serializers.py:703 +#: build/serializers.py:711 msgid "Consume any stock which has already been allocated to this build" msgstr "Consuma tutte le scorte che sono già state assegnate a questa produzione" -#: build/serializers.py:709 +#: build/serializers.py:717 msgid "Remove Incomplete Outputs" msgstr "Rimuovi Output Incompleti" -#: build/serializers.py:710 +#: build/serializers.py:718 msgid "Delete any build outputs which have not been completed" msgstr "Elimina gli output di produzione che non sono stati completati" -#: build/serializers.py:737 +#: build/serializers.py:745 msgid "Not permitted" msgstr "Non permesso" -#: build/serializers.py:738 +#: build/serializers.py:746 msgid "Accept as consumed by this build order" msgstr "Accetta come consumato da questo ordine di produzione" -#: build/serializers.py:739 +#: build/serializers.py:747 msgid "Deallocate before completing this build order" msgstr "Non assegnare prima di aver completato questo ordine di produzione" -#: build/serializers.py:766 +#: build/serializers.py:774 msgid "Overallocated Stock" msgstr "Giacenza in eccesso assegnata" -#: build/serializers.py:769 +#: build/serializers.py:777 msgid "How do you want to handle extra stock items assigned to the build order" msgstr "Come si desidera gestire gli elementi extra giacenza assegnati all'ordine di produzione" -#: build/serializers.py:780 +#: build/serializers.py:788 msgid "Some stock items have been overallocated" msgstr "Alcuni articoli di magazzino sono stati assegnati in eccedenza" -#: build/serializers.py:785 +#: build/serializers.py:793 msgid "Accept Unallocated" msgstr "Accetta Non Assegnato" -#: build/serializers.py:787 +#: build/serializers.py:795 msgid "Accept that stock items have not been fully allocated to this build order" msgstr "Accetta che gli elementi in giacenza non sono stati completamente assegnati a questo ordine di produzione" -#: build/serializers.py:798 +#: build/serializers.py:806 msgid "Required stock has not been fully allocated" msgstr "La giacenza richiesta non è stata completamente assegnata" -#: build/serializers.py:803 order/serializers.py:524 order/serializers.py:1601 +#: build/serializers.py:811 order/serializers.py:535 order/serializers.py:1615 msgid "Accept Incomplete" msgstr "Accetta Incompleta" -#: build/serializers.py:805 +#: build/serializers.py:813 msgid "Accept that the required number of build outputs have not been completed" msgstr "Accetta che il numero richiesto di output di produzione non sia stato completato" -#: build/serializers.py:816 +#: build/serializers.py:824 msgid "Required build quantity has not been completed" msgstr "La quantità di produzione richiesta non è stata completata" -#: build/serializers.py:828 +#: build/serializers.py:836 msgid "Build order has open child build orders" msgstr "L'ordine di costruzione ha ancora degli ordini di costruzione figli" -#: build/serializers.py:831 +#: build/serializers.py:839 msgid "Build order must be in production state" msgstr "L'ordine di costruzione deve essere in stato di produzione" -#: build/serializers.py:834 +#: build/serializers.py:842 msgid "Build order has incomplete outputs" msgstr "L'ordine di produzione ha output incompleti" -#: build/serializers.py:873 +#: build/serializers.py:881 msgid "Build Line" msgstr "Linea di produzione" -#: build/serializers.py:881 +#: build/serializers.py:889 msgid "Build output" msgstr "Genera Output" -#: build/serializers.py:889 +#: build/serializers.py:897 msgid "Build output must point to the same build" msgstr "L'output di produzione deve puntare alla stessa produzione" -#: build/serializers.py:920 +#: build/serializers.py:928 msgid "Build Line Item" msgstr "Articolo linea di produzione" -#: build/serializers.py:938 +#: build/serializers.py:946 msgid "bom_item.part must point to the same part as the build order" msgstr "gli elementi degli articoli della distinta base devono puntare alla stessa parte dell'ordine di produzione" -#: build/serializers.py:954 stock/serializers.py:1287 +#: build/serializers.py:962 stock/serializers.py:1287 msgid "Item must be in stock" msgstr "L'articolo deve essere disponibile" -#: build/serializers.py:997 order/serializers.py:1587 +#: build/serializers.py:1005 order/serializers.py:1601 #, python-brace-format msgid "Available quantity ({q}) exceeded" msgstr "Quantità disponibile ({q}) superata" -#: build/serializers.py:1003 +#: build/serializers.py:1011 msgid "Build output must be specified for allocation of tracked parts" msgstr "L'output di produzione deve essere specificato per l'ubicazione delle parti tracciate" -#: build/serializers.py:1011 +#: build/serializers.py:1019 msgid "Build output cannot be specified for allocation of untracked parts" msgstr "L'output di produzione non deve essere specificato per l'ubicazione delle parti non tracciate" -#: build/serializers.py:1035 order/serializers.py:1860 +#: build/serializers.py:1043 order/serializers.py:1874 msgid "Allocation items must be provided" msgstr "Deve essere indicata l'allocazione dell'articolo" -#: build/serializers.py:1099 +#: build/serializers.py:1107 msgid "Stock location where parts are to be sourced (leave blank to take from any location)" msgstr "Posizione dello stock in cui le parti devono prelevate (lasciare vuoto per prelevare da qualsiasi luogo)" -#: build/serializers.py:1108 +#: build/serializers.py:1116 msgid "Exclude Location" msgstr "Escludi Ubicazione" -#: build/serializers.py:1109 +#: build/serializers.py:1117 msgid "Exclude stock items from this selected location" msgstr "Escludi gli elementi stock da questa ubicazione selezionata" -#: build/serializers.py:1114 +#: build/serializers.py:1122 msgid "Interchangeable Stock" msgstr "Scorte Intercambiabili" -#: build/serializers.py:1115 +#: build/serializers.py:1123 msgid "Stock items in multiple locations can be used interchangeably" msgstr "Gli elementi in magazzino in più sedi possono essere utilizzati in modo intercambiabile" -#: build/serializers.py:1120 +#: build/serializers.py:1128 msgid "Substitute Stock" msgstr "Sostituisci Giacenze" -#: build/serializers.py:1121 +#: build/serializers.py:1129 msgid "Allow allocation of substitute parts" msgstr "Consenti l'allocazione delle parti sostitutive" -#: build/serializers.py:1126 +#: build/serializers.py:1134 msgid "Optional Items" msgstr "Articoli Opzionali" -#: build/serializers.py:1127 +#: build/serializers.py:1135 msgid "Allocate optional BOM items to build order" msgstr "Assegna gli elementi opzionali della distinta base all'ordine di produzione" -#: build/serializers.py:1148 +#: build/serializers.py:1156 msgid "Failed to start auto-allocation task" msgstr "Impossibile avviare l'attività di auto-allocazione" -#: build/serializers.py:1200 +#: build/serializers.py:1208 msgid "BOM Reference" msgstr "Riferimento BOM" -#: build/serializers.py:1206 +#: build/serializers.py:1214 msgid "BOM Part ID" msgstr "Identificativo dell'Articolo BOM" -#: build/serializers.py:1213 +#: build/serializers.py:1221 msgid "BOM Part Name" msgstr "Nome Articolo BOM" -#: build/serializers.py:1266 build/serializers.py:1449 +#: build/serializers.py:1274 build/serializers.py:1457 msgid "Build" msgstr "Costruzione" -#: build/serializers.py:1276 company/models.py:685 order/api.py:311 -#: order/api.py:316 order/api.py:543 order/serializers.py:650 +#: build/serializers.py:1284 company/models.py:639 order/api.py:316 +#: order/api.py:321 order/api.py:549 order/serializers.py:661 #: stock/models.py:1036 stock/serializers.py:579 msgid "Supplier Part" msgstr "Articolo Fornitore" -#: build/serializers.py:1284 stock/serializers.py:620 +#: build/serializers.py:1292 stock/serializers.py:620 msgid "Allocated Quantity" msgstr "Quantità assegnata" -#: build/serializers.py:1351 +#: build/serializers.py:1359 msgid "Build Reference" msgstr "Riferimento Ordine Di Costruzione" -#: build/serializers.py:1361 +#: build/serializers.py:1369 msgid "Part Category Name" msgstr "Nome Categoria Articolo" -#: build/serializers.py:1383 common/setting/system.py:480 part/models.py:1214 +#: build/serializers.py:1391 common/setting/system.py:480 part/models.py:1302 msgid "Trackable" msgstr "Tracciabile" -#: build/serializers.py:1386 +#: build/serializers.py:1394 msgid "Inherited" msgstr "Ereditato" -#: build/serializers.py:1389 part/models.py:4475 +#: build/serializers.py:1397 part/models.py:4100 msgid "Allow Variants" msgstr "Consenti Le Varianti" -#: build/serializers.py:1395 build/serializers.py:1400 part/models.py:4208 -#: part/models.py:4779 stock/api.py:882 +#: build/serializers.py:1403 build/serializers.py:1408 part/models.py:3833 +#: part/models.py:4404 stock/api.py:882 msgid "BOM Item" msgstr "Distinta base (Bom)" -#: build/serializers.py:1467 order/serializers.py:1282 part/serializers.py:1310 -#: part/serializers.py:1765 +#: build/serializers.py:1475 order/serializers.py:1296 part/serializers.py:1175 +#: part/serializers.py:1630 msgid "In Production" msgstr "In Produzione" -#: build/serializers.py:1469 part/serializers.py:950 part/serializers.py:1314 +#: build/serializers.py:1477 part/serializers.py:835 part/serializers.py:1179 msgid "Scheduled to Build" msgstr "Pianificato per la produzione" -#: build/serializers.py:1472 part/serializers.py:987 +#: build/serializers.py:1480 part/serializers.py:872 msgid "External Stock" msgstr "Scorte esterne" -#: build/serializers.py:1473 part/serializers.py:1300 part/serializers.py:1808 +#: build/serializers.py:1481 part/serializers.py:1165 part/serializers.py:1673 msgid "Available Stock" msgstr "Disponibilità in magazzino" -#: build/serializers.py:1475 +#: build/serializers.py:1483 msgid "Available Substitute Stock" msgstr "Disponibili scorte alternative" -#: build/serializers.py:1478 +#: build/serializers.py:1486 msgid "Available Variant Stock" msgstr "Disponibili varianti delle scorte" -#: build/serializers.py:1752 +#: build/serializers.py:1760 msgid "Consumed quantity exceeds allocated quantity" msgstr "La quantità consumata supera la quantità assegnata" -#: build/serializers.py:1789 +#: build/serializers.py:1797 msgid "Optional notes for the stock consumption" msgstr "Note facoltative per il consumo di magazzino" -#: build/serializers.py:1806 +#: build/serializers.py:1814 msgid "Build item must point to the correct build order" msgstr "L'articolo prodotto deve puntare all'ordine di produzione corretto" -#: build/serializers.py:1811 +#: build/serializers.py:1819 msgid "Duplicate build item allocation" msgstr "Duplica l'allocazione degli articoli da produrre" -#: build/serializers.py:1829 +#: build/serializers.py:1837 msgid "Build line must point to the correct build order" msgstr "La riga di produzione deve puntare all'ordine di produzione corretto" -#: build/serializers.py:1834 +#: build/serializers.py:1842 msgid "Duplicate build line allocation" msgstr "Duplica l'allocazione della riga di produzione" -#: build/serializers.py:1846 +#: build/serializers.py:1854 msgid "At least one item or line must be provided" msgstr "Deve essere fornita almeno un articolo o riga" @@ -1482,702 +1498,826 @@ msgstr "Ordine di produzione in ritardo" msgid "Build order {bo} is now overdue" msgstr "L'ordine di produzione {bo} è in ritardo" -#: common/api.py:694 +#: common/api.py:701 msgid "Is Link" msgstr "È Un Connegamento" -#: common/api.py:702 +#: common/api.py:709 msgid "Is File" msgstr "E' un file" -#: common/api.py:745 +#: common/api.py:756 msgid "User does not have permission to delete these attachments" msgstr "L'utente non ha il permesso di eliminare questi allegati" -#: common/api.py:762 +#: common/api.py:769 msgid "User does not have permission to delete this attachment" msgstr "L'utente non ha il permesso di eliminare questo allegato" -#: common/currency.py:122 +#: common/currency.py:130 msgid "Invalid currency code" msgstr "Codice valuta non valido" -#: common/currency.py:124 +#: common/currency.py:132 msgid "Duplicate currency code" msgstr "Codice valuta duplicato" -#: common/currency.py:129 +#: common/currency.py:137 msgid "No valid currency codes provided" msgstr "Nessun codice valuta valido fornito" -#: common/currency.py:146 +#: common/currency.py:154 msgid "No plugin" msgstr "Nessun plugin" -#: common/models.py:101 common/models.py:126 common/models.py:2729 +#: common/models.py:105 common/models.py:130 common/models.py:3150 msgid "Updated" msgstr "Aggiornato" -#: common/models.py:102 common/models.py:127 +#: common/models.py:106 common/models.py:131 msgid "Timestamp of last update" msgstr "Orario dell'ultimo aggiornamento" -#: common/models.py:139 +#: common/models.py:143 msgid "Update By" msgstr "Aggiornato da" -#: common/models.py:140 +#: common/models.py:144 msgid "User who last updated this object" msgstr "Utente che per ultimo ha aggiornato questo oggetto" -#: common/models.py:165 +#: common/models.py:169 msgid "Unique project code" msgstr "Codice unico del progetto" -#: common/models.py:172 +#: common/models.py:176 msgid "Project description" msgstr "Descrizione del progetto" -#: common/models.py:181 +#: common/models.py:185 msgid "User or group responsible for this project" msgstr "Utente o gruppo responsabile di questo progetto" -#: common/models.py:771 common/models.py:1272 common/models.py:1310 +#: common/models.py:775 common/models.py:1276 common/models.py:1314 msgid "Settings key" msgstr "Tasto impostazioni" -#: common/models.py:775 +#: common/models.py:779 msgid "Settings value" msgstr "Valore impostazioni" -#: common/models.py:830 +#: common/models.py:834 msgid "Chosen value is not a valid option" msgstr "Il valore specificato non è un opzione valida" -#: common/models.py:846 +#: common/models.py:850 msgid "Value must be a boolean value" msgstr "Il valore deve essere un valore booleano" -#: common/models.py:854 +#: common/models.py:858 msgid "Value must be an integer value" msgstr "Il valore deve essere un intero" -#: common/models.py:862 +#: common/models.py:866 msgid "Value must be a valid number" msgstr "Il valore deve essere un numero valido" -#: common/models.py:887 +#: common/models.py:891 msgid "Value does not pass validation checks" msgstr "Il valore non supera i controlli di convalida" -#: common/models.py:909 +#: common/models.py:913 msgid "Key string must be unique" msgstr "La stringa chiave deve essere univoca" -#: common/models.py:1318 common/models.py:1319 common/models.py:1423 -#: common/models.py:1424 common/models.py:1669 common/models.py:1670 -#: common/models.py:2000 common/models.py:2001 common/models.py:2382 -#: importer/models.py:100 part/models.py:3547 part/models.py:3575 +#: common/models.py:1322 common/models.py:1323 common/models.py:1427 +#: common/models.py:1428 common/models.py:1673 common/models.py:1674 +#: common/models.py:2006 common/models.py:2007 common/models.py:2803 +#: importer/models.py:100 part/models.py:3611 part/models.py:3639 #: plugin/models.py:355 plugin/models.py:356 #: report/templates/report/inventree_test_report.html:105 users/models.py:124 #: users/models.py:501 msgid "User" msgstr "Utente" -#: common/models.py:1341 +#: common/models.py:1345 msgid "Price break quantity" msgstr "Quantità prezzo limite" -#: common/models.py:1348 company/serializers.py:564 order/models.py:1842 -#: order/models.py:3043 +#: common/models.py:1352 company/serializers.py:349 order/models.py:1843 +#: order/models.py:3044 msgid "Price" msgstr "Prezzo" -#: common/models.py:1349 +#: common/models.py:1353 msgid "Unit price at specified quantity" msgstr "Prezzo unitario in quantità specificata" -#: common/models.py:1400 common/models.py:1585 +#: common/models.py:1404 common/models.py:1589 msgid "Endpoint" msgstr "Scadenza" -#: common/models.py:1401 +#: common/models.py:1405 msgid "Endpoint at which this webhook is received" msgstr "Scadenza in cui questa notifica viene ricevuta" -#: common/models.py:1411 +#: common/models.py:1415 msgid "Name for this webhook" msgstr "Nome per questa notifica" -#: common/models.py:1415 common/models.py:2241 common/models.py:2348 -#: company/models.py:191 company/models.py:822 machine/models.py:40 -#: part/models.py:1237 plugin/models.py:69 stock/api.py:642 users/models.py:195 +#: common/models.py:1419 common/models.py:2247 common/models.py:2354 +#: company/models.py:192 company/models.py:776 machine/models.py:40 +#: part/models.py:1325 plugin/models.py:69 stock/api.py:642 users/models.py:195 #: users/models.py:554 users/serializers.py:314 msgid "Active" msgstr "Attivo" -#: common/models.py:1415 +#: common/models.py:1419 msgid "Is this webhook active" msgstr "È questa notifica attiva" -#: common/models.py:1431 users/models.py:172 +#: common/models.py:1435 users/models.py:172 msgid "Token" msgstr "Token" -#: common/models.py:1432 +#: common/models.py:1436 msgid "Token for access" msgstr "Token per l'accesso" -#: common/models.py:1440 +#: common/models.py:1444 msgid "Secret" msgstr "Segreto" -#: common/models.py:1441 +#: common/models.py:1445 msgid "Shared secret for HMAC" msgstr "Segreto condiviso per HMAC" -#: common/models.py:1549 common/models.py:2619 +#: common/models.py:1553 common/models.py:3040 msgid "Message ID" msgstr "ID Messaggio" -#: common/models.py:1550 common/models.py:2609 +#: common/models.py:1554 common/models.py:3030 msgid "Unique identifier for this message" msgstr "Identificatore unico per questo messaggio" -#: common/models.py:1558 +#: common/models.py:1562 msgid "Host" msgstr "Host" -#: common/models.py:1559 +#: common/models.py:1563 msgid "Host from which this message was received" msgstr "Host da cui questo messaggio è stato ricevuto" -#: common/models.py:1567 +#: common/models.py:1571 msgid "Header" msgstr "Intestazione" -#: common/models.py:1568 +#: common/models.py:1572 msgid "Header of this message" msgstr "Intestazione di questo messaggio" -#: common/models.py:1575 +#: common/models.py:1579 msgid "Body" msgstr "Contenuto" -#: common/models.py:1576 +#: common/models.py:1580 msgid "Body of this message" msgstr "Contenuto di questo messaggio" -#: common/models.py:1586 +#: common/models.py:1590 msgid "Endpoint on which this message was received" msgstr "Scadenza in cui questo messaggio è stato ricevuto" -#: common/models.py:1591 +#: common/models.py:1595 msgid "Worked on" msgstr "Lavorato il" -#: common/models.py:1592 +#: common/models.py:1596 msgid "Was the work on this message finished?" msgstr "Il lavoro su questo messaggio è terminato?" -#: common/models.py:1718 +#: common/models.py:1722 msgid "Id" msgstr "Id" -#: common/models.py:1720 +#: common/models.py:1724 msgid "Title" msgstr "Titolo" -#: common/models.py:1722 common/models.py:1983 company/models.py:185 -#: company/models.py:467 company/models.py:534 company/models.py:839 -#: order/models.py:457 order/models.py:1786 order/models.py:2343 -#: part/models.py:1113 +#: common/models.py:1726 common/models.py:1989 company/models.py:186 +#: company/models.py:468 company/models.py:536 company/models.py:793 +#: order/models.py:458 order/models.py:1787 order/models.py:2344 +#: part/models.py:1201 #: report/templates/report/inventree_build_order_report.html:164 msgid "Link" msgstr "Collegamento" -#: common/models.py:1724 +#: common/models.py:1728 msgid "Published" msgstr "Pubblicato" -#: common/models.py:1726 +#: common/models.py:1730 msgid "Author" msgstr "Autore" -#: common/models.py:1728 +#: common/models.py:1732 msgid "Summary" msgstr "Riepilogo" -#: common/models.py:1731 common/models.py:2586 +#: common/models.py:1735 common/models.py:3007 msgid "Read" msgstr "Letto" -#: common/models.py:1731 +#: common/models.py:1735 msgid "Was this news item read?" msgstr "Queste notizie sull'elemento sono state lette?" -#: common/models.py:1748 +#: common/models.py:1752 msgid "Image file" msgstr "File immagine" -#: common/models.py:1760 +#: common/models.py:1764 msgid "Target model type for this image" msgstr "Tipo di modello di destinazione per questa immagine" -#: common/models.py:1764 +#: common/models.py:1768 msgid "Target model ID for this image" msgstr "ID modello di destinazione per questa immagine" -#: common/models.py:1786 +#: common/models.py:1790 msgid "Custom Unit" msgstr "Unità Personalizzata" -#: common/models.py:1804 +#: common/models.py:1808 msgid "Unit symbol must be unique" msgstr "Il simbolo dell'unità deve essere univoco" -#: common/models.py:1819 +#: common/models.py:1823 msgid "Unit name must be a valid identifier" msgstr "Il nome dell'unità deve essere un identificatore valido" -#: common/models.py:1838 +#: common/models.py:1842 msgid "Unit name" msgstr "Nome dell'unità" -#: common/models.py:1845 +#: common/models.py:1849 msgid "Symbol" msgstr "Simbolo" -#: common/models.py:1846 +#: common/models.py:1850 msgid "Optional unit symbol" msgstr "Simbolo unità opzionale" -#: common/models.py:1852 +#: common/models.py:1856 msgid "Definition" msgstr "Definizione" -#: common/models.py:1853 +#: common/models.py:1857 msgid "Unit definition" msgstr "Definizione unità" -#: common/models.py:1911 common/models.py:1974 stock/models.py:2967 +#: common/models.py:1917 common/models.py:1980 stock/models.py:2984 #: stock/serializers.py:247 msgid "Attachment" msgstr "Allegato" -#: common/models.py:1928 +#: common/models.py:1934 msgid "Missing file" msgstr "File mancante" -#: common/models.py:1929 +#: common/models.py:1935 msgid "Missing external link" msgstr "Link esterno mancante" -#: common/models.py:1966 +#: common/models.py:1972 common/models.py:2488 msgid "Model type" msgstr "Tipo modello" -#: common/models.py:1967 +#: common/models.py:1973 msgid "Target model type for image" msgstr "Tipo di modello di destinazione per l'immagine" -#: common/models.py:1975 +#: common/models.py:1981 msgid "Select file to attach" msgstr "Seleziona file da allegare" -#: common/models.py:1991 +#: common/models.py:1997 msgid "Comment" msgstr "Commento" -#: common/models.py:1992 +#: common/models.py:1998 msgid "Attachment comment" msgstr "Commento allegato" -#: common/models.py:2008 +#: common/models.py:2014 msgid "Upload date" msgstr "Data caricamento" -#: common/models.py:2009 +#: common/models.py:2015 msgid "Date the file was uploaded" msgstr "Data di caricamento del file" -#: common/models.py:2013 +#: common/models.py:2019 msgid "File size" msgstr "Dimensione file" -#: common/models.py:2013 +#: common/models.py:2019 msgid "File size in bytes" msgstr "Dimensioni file in byte" -#: common/models.py:2051 common/serializers.py:684 +#: common/models.py:2057 common/serializers.py:688 msgid "Invalid model type specified for attachment" msgstr "Tipo di modello specificato per l'allegato non valido" -#: common/models.py:2072 +#: common/models.py:2078 msgid "Custom State" msgstr "Stato Personalizzato" -#: common/models.py:2073 +#: common/models.py:2079 msgid "Custom States" msgstr "Stati Personalizzati" -#: common/models.py:2078 +#: common/models.py:2084 msgid "Reference Status Set" msgstr "Imposta Stato Di Riferimento" -#: common/models.py:2079 +#: common/models.py:2085 msgid "Status set that is extended with this custom state" msgstr "Set di stato esteso con questo stato personalizzato" -#: common/models.py:2083 generic/states/serializers.py:18 +#: common/models.py:2089 generic/states/serializers.py:18 msgid "Logical Key" msgstr "Chiave Logica" -#: common/models.py:2085 +#: common/models.py:2091 msgid "State logical key that is equal to this custom state in business logic" msgstr "Chiave logica dello stato che è uguale a questo stato personalizzato nella logica commerciale" -#: common/models.py:2090 common/models.py:2329 company/models.py:622 -#: machine/serializers.py:27 -#: report/templates/report/inventree_test_report.html:104 stock/models.py:2959 +#: common/models.py:2096 common/models.py:2335 machine/serializers.py:27 +#: report/templates/report/inventree_test_report.html:104 stock/models.py:2976 msgid "Value" msgstr "Valore" -#: common/models.py:2091 +#: common/models.py:2097 msgid "Numerical value that will be saved in the models database" msgstr "Valore numerico che verrà salvato nel database dei modelli" -#: common/models.py:2097 +#: common/models.py:2103 msgid "Name of the state" msgstr "Nome dello Stato" -#: common/models.py:2106 common/models.py:2335 generic/states/serializers.py:22 +#: common/models.py:2112 common/models.py:2341 generic/states/serializers.py:22 msgid "Label" msgstr "Etichetta" -#: common/models.py:2107 +#: common/models.py:2113 msgid "Label that will be displayed in the frontend" msgstr "Etichetta che verrà visualizzata nel frontend" -#: common/models.py:2114 generic/states/serializers.py:24 +#: common/models.py:2120 generic/states/serializers.py:24 msgid "Color" msgstr "Colore" -#: common/models.py:2115 +#: common/models.py:2121 msgid "Color that will be displayed in the frontend" msgstr "Colore che verrà visualizzato nel frontend" -#: common/models.py:2123 +#: common/models.py:2129 msgid "Model" msgstr "Modello" -#: common/models.py:2124 +#: common/models.py:2130 msgid "Model this state is associated with" msgstr "Modello a cui questo stato è associato" -#: common/models.py:2139 +#: common/models.py:2145 msgid "Model must be selected" msgstr "Il modello deve essere selezionato" -#: common/models.py:2142 +#: common/models.py:2148 msgid "Key must be selected" msgstr "La chiave deve essere selezionata" -#: common/models.py:2145 +#: common/models.py:2151 msgid "Logical key must be selected" msgstr "La chiave logica deve essere selezionata" -#: common/models.py:2149 +#: common/models.py:2155 msgid "Key must be different from logical key" msgstr "La chiave deve essere diversa dalla chiave logica" -#: common/models.py:2156 +#: common/models.py:2162 msgid "Valid reference status class must be provided" msgstr "Deve essere fornita una classe di stato di riferimento valida" -#: common/models.py:2162 +#: common/models.py:2168 msgid "Key must be different from the logical keys of the reference status" msgstr "La chiave deve essere diversa dalle chiavi logiche dello stato di riferimento" -#: common/models.py:2169 +#: common/models.py:2175 msgid "Logical key must be in the logical keys of the reference status" msgstr "La chiave logica deve essere nelle chiavi logiche dello stato di riferimento" -#: common/models.py:2176 +#: common/models.py:2182 msgid "Name must be different from the names of the reference status" msgstr "Il nome deve essere diverso dai nomi dello stato di riferimento" -#: common/models.py:2216 common/models.py:2323 part/models.py:3889 +#: common/models.py:2222 common/models.py:2329 common/models.py:2533 msgid "Selection List" msgstr "Elenco Selezioni" -#: common/models.py:2217 +#: common/models.py:2223 msgid "Selection Lists" msgstr "Elenchi di Selezione" -#: common/models.py:2222 +#: common/models.py:2228 msgid "Name of the selection list" msgstr "Nome dell'elenco di selezione" -#: common/models.py:2229 +#: common/models.py:2235 msgid "Description of the selection list" msgstr "Descrizione della lista di selezione" -#: common/models.py:2235 part/models.py:1242 +#: common/models.py:2241 part/models.py:1330 msgid "Locked" msgstr "Bloccato" -#: common/models.py:2236 +#: common/models.py:2242 msgid "Is this selection list locked?" msgstr "Questa lista di selezione è bloccata?" -#: common/models.py:2242 +#: common/models.py:2248 msgid "Can this selection list be used?" msgstr "Questo elenco di selezione può essere utilizzato?" -#: common/models.py:2250 +#: common/models.py:2256 msgid "Source Plugin" msgstr "Plugin Sorgente" -#: common/models.py:2251 +#: common/models.py:2257 msgid "Plugin which provides the selection list" msgstr "Plugin che fornisce l'elenco di selezione" -#: common/models.py:2256 +#: common/models.py:2262 msgid "Source String" msgstr "Stringa Sorgente" -#: common/models.py:2257 +#: common/models.py:2263 msgid "Optional string identifying the source used for this list" msgstr "Stringa opzionale che identifica il sorgente usato per questa lista" -#: common/models.py:2266 +#: common/models.py:2272 msgid "Default Entry" msgstr "Voce Predefinita" -#: common/models.py:2267 +#: common/models.py:2273 msgid "Default entry for this selection list" msgstr "Voce predefinita per questo elenco di selezione" -#: common/models.py:2272 common/models.py:2724 +#: common/models.py:2278 common/models.py:3145 msgid "Created" msgstr "Creato" -#: common/models.py:2273 +#: common/models.py:2279 msgid "Date and time that the selection list was created" msgstr "Data e ora in cui è stato creato l'elenco di selezione" -#: common/models.py:2278 +#: common/models.py:2284 msgid "Last Updated" msgstr "Ultimo aggiornamento" -#: common/models.py:2279 +#: common/models.py:2285 msgid "Date and time that the selection list was last updated" msgstr "Data e ora in cui l'elenco di selezione è stato aggiornato" -#: common/models.py:2313 +#: common/models.py:2319 msgid "Selection List Entry" msgstr "Voce Lista Selezione" -#: common/models.py:2314 +#: common/models.py:2320 msgid "Selection List Entries" msgstr "Voci Lista Selezione" -#: common/models.py:2324 +#: common/models.py:2330 msgid "Selection list to which this entry belongs" msgstr "Elenco di selezione a cui appartiene questa voce" -#: common/models.py:2330 +#: common/models.py:2336 msgid "Value of the selection list entry" msgstr "Valore della voce della lista di selezione" -#: common/models.py:2336 +#: common/models.py:2342 msgid "Label for the selection list entry" msgstr "Etichetta per la voce elenco di selezione" -#: common/models.py:2342 +#: common/models.py:2348 msgid "Description of the selection list entry" msgstr "Descrizione della voce della lista di selezione" -#: common/models.py:2349 +#: common/models.py:2355 msgid "Is this selection list entry active?" msgstr "Questa voce della lista di selezione è attiva?" -#: common/models.py:2367 -msgid "Barcode Scan" -msgstr "Scansione Codice A Barre" +#: common/models.py:2387 +msgid "Parameter Template" +msgstr "Modello Parametro" -#: common/models.py:2371 importer/models.py:546 part/models.py:4060 +#: common/models.py:2388 +msgid "Parameter Templates" +msgstr "" + +#: common/models.py:2425 +msgid "Checkbox parameters cannot have units" +msgstr "I parametri della casella di controllo non possono avere unità" + +#: common/models.py:2430 +msgid "Checkbox parameters cannot have choices" +msgstr "I parametri della casella di controllo non possono avere scelte" + +#: common/models.py:2450 part/models.py:3707 +msgid "Choices must be unique" +msgstr "Le scelte devono essere uniche" + +#: common/models.py:2467 +msgid "Parameter template name must be unique" +msgstr "Il nome del modello del parametro deve essere univoco" + +#: common/models.py:2489 +msgid "Target model type for this parameter template" +msgstr "" + +#: common/models.py:2495 +msgid "Parameter Name" +msgstr "Nome Parametro" + +#: common/models.py:2501 part/models.py:1283 +msgid "Units" +msgstr "Unità" + +#: common/models.py:2502 +msgid "Physical units for this parameter" +msgstr "Unità fisiche per questo parametro" + +#: common/models.py:2510 +msgid "Parameter description" +msgstr "Descrizione del parametro" + +#: common/models.py:2516 +msgid "Checkbox" +msgstr "Casella di spunta" + +#: common/models.py:2517 +msgid "Is this parameter a checkbox?" +msgstr "Questo parametro è una casella di spunta?" + +#: common/models.py:2522 part/models.py:3794 +msgid "Choices" +msgstr "Scelte" + +#: common/models.py:2523 +msgid "Valid choices for this parameter (comma-separated)" +msgstr "Scelte valide per questo parametro (separato da virgola)" + +#: common/models.py:2534 +msgid "Selection list for this parameter" +msgstr "Lista di selezione per questo parametro" + +#: common/models.py:2539 part/models.py:3769 report/models.py:287 +msgid "Enabled" +msgstr "Abilitato" + +#: common/models.py:2540 +msgid "Is this parameter template enabled?" +msgstr "" + +#: common/models.py:2581 +msgid "Parameter" +msgstr "" + +#: common/models.py:2582 +msgid "Parameters" +msgstr "" + +#: common/models.py:2628 +msgid "Invalid choice for parameter value" +msgstr "Scelta non valida per il valore del parametro" + +#: common/models.py:2698 common/serializers.py:783 +msgid "Invalid model type specified for parameter" +msgstr "" + +#: common/models.py:2734 +msgid "Model ID" +msgstr "" + +#: common/models.py:2735 +msgid "ID of the target model for this parameter" +msgstr "" + +#: common/models.py:2744 common/setting/system.py:450 report/models.py:373 +#: report/models.py:669 report/serializers.py:94 report/serializers.py:135 +#: stock/serializers.py:234 +msgid "Template" +msgstr "Modello" + +#: common/models.py:2745 +msgid "Parameter template" +msgstr "" + +#: common/models.py:2750 common/models.py:2792 importer/models.py:546 msgid "Data" msgstr "Dati" -#: common/models.py:2372 +#: common/models.py:2751 +msgid "Parameter Value" +msgstr "Valore del Parametro" + +#: common/models.py:2760 company/models.py:810 order/serializers.py:894 +#: order/serializers.py:2064 part/models.py:4075 part/models.py:4444 +#: report/templates/report/inventree_bill_of_materials_report.html:140 +#: report/templates/report/inventree_purchase_order_report.html:39 +#: report/templates/report/inventree_return_order_report.html:27 +#: report/templates/report/inventree_sales_order_report.html:32 +#: report/templates/report/inventree_stock_location_report.html:105 +#: stock/serializers.py:813 +msgid "Note" +msgstr "Nota" + +#: common/models.py:2761 stock/serializers.py:718 +msgid "Optional note field" +msgstr "Note opzionali elemento" + +#: common/models.py:2788 +msgid "Barcode Scan" +msgstr "Scansione Codice A Barre" + +#: common/models.py:2793 msgid "Barcode data" msgstr "Dati del Codice a Barre" -#: common/models.py:2383 +#: common/models.py:2804 msgid "User who scanned the barcode" msgstr "Utente che ha scannerizzato il codice a barre" -#: common/models.py:2388 importer/models.py:69 +#: common/models.py:2809 importer/models.py:69 msgid "Timestamp" msgstr "Data e ora" -#: common/models.py:2389 +#: common/models.py:2810 msgid "Date and time of the barcode scan" msgstr "Data e ora della scansione del codice a barre" -#: common/models.py:2395 +#: common/models.py:2816 msgid "URL endpoint which processed the barcode" msgstr "Endpoint URL che ha elaborato il codice a barre" -#: common/models.py:2402 order/models.py:1832 plugin/serializers.py:93 +#: common/models.py:2823 order/models.py:1833 plugin/serializers.py:93 msgid "Context" msgstr "Contesto" -#: common/models.py:2403 +#: common/models.py:2824 msgid "Context data for the barcode scan" msgstr "Dati contestuali per la scansione del codice a barre" -#: common/models.py:2410 +#: common/models.py:2831 msgid "Response" msgstr "Risposta" -#: common/models.py:2411 +#: common/models.py:2832 msgid "Response data from the barcode scan" msgstr "Dati di risposta dalla scansione del codice a barre" -#: common/models.py:2417 report/templates/report/inventree_test_report.html:103 -#: stock/models.py:2953 +#: common/models.py:2838 report/templates/report/inventree_test_report.html:103 +#: stock/models.py:2970 msgid "Result" msgstr "Risultato" -#: common/models.py:2418 +#: common/models.py:2839 msgid "Was the barcode scan successful?" msgstr "La scansione del codice a barre è riuscita?" -#: common/models.py:2500 +#: common/models.py:2921 msgid "An error occurred" msgstr "Si è verificato un errore" -#: common/models.py:2521 +#: common/models.py:2942 msgid "INVE-E8: Email log deletion is protected. Set INVENTREE_PROTECT_EMAIL_LOG to False to allow deletion." msgstr "INVE-E8: La cancellazione del log email è protetta. Imposta INVENTREE_PROTECT_EMAIL_LOG a Falso per consentire la cancellazione." -#: common/models.py:2568 +#: common/models.py:2989 msgid "Email Message" msgstr "Messaggio email" -#: common/models.py:2569 +#: common/models.py:2990 msgid "Email Messages" msgstr "Messaggi email" -#: common/models.py:2576 +#: common/models.py:2997 msgid "Announced" msgstr "Annunciato" -#: common/models.py:2578 +#: common/models.py:2999 msgid "Sent" msgstr "Inviato" -#: common/models.py:2579 +#: common/models.py:3000 msgid "Failed" msgstr "Fallito" -#: common/models.py:2582 +#: common/models.py:3003 msgid "Delivered" msgstr "Consegnato" -#: common/models.py:2590 +#: common/models.py:3011 msgid "Confirmed" msgstr "Confermato" -#: common/models.py:2596 +#: common/models.py:3017 msgid "Inbound" msgstr "Ricevuti" -#: common/models.py:2597 +#: common/models.py:3018 msgid "Outbound" msgstr "In uscita" -#: common/models.py:2602 +#: common/models.py:3023 msgid "No Reply" msgstr "Nessuna risposta" -#: common/models.py:2603 +#: common/models.py:3024 msgid "Track Delivery" msgstr "Traccia La Consegna" -#: common/models.py:2604 +#: common/models.py:3025 msgid "Track Read" msgstr "Conferma di lettura" -#: common/models.py:2605 +#: common/models.py:3026 msgid "Track Click" msgstr "Tracciare i clic delle email" -#: common/models.py:2608 common/models.py:2711 +#: common/models.py:3029 common/models.py:3132 msgid "Global ID" msgstr "ID Globale" -#: common/models.py:2621 +#: common/models.py:3042 msgid "Identifier for this message (might be supplied by external system)" msgstr "Identificatore per questo messaggio (potrebbe essere fornito da un sistema esterno)" -#: common/models.py:2628 +#: common/models.py:3049 msgid "Thread ID" msgstr "ID discussione" -#: common/models.py:2630 +#: common/models.py:3051 msgid "Identifier for this message thread (might be supplied by external system)" msgstr "Identificatore per questo thread del messaggio (potrebbe essere fornito da un sistema esterno)" -#: common/models.py:2639 +#: common/models.py:3060 msgid "Thread" msgstr "Discussione" -#: common/models.py:2640 +#: common/models.py:3061 msgid "Linked thread for this message" msgstr "Thread collegato a questo messaggio" -#: common/models.py:2656 -msgid "Prioriy" -msgstr "Priorità" +#: common/models.py:3077 +msgid "Priority" +msgstr "" -#: common/models.py:2698 +#: common/models.py:3119 msgid "Email Thread" msgstr "Discussione Email" -#: common/models.py:2699 +#: common/models.py:3120 msgid "Email Threads" msgstr "Discussioni Email" -#: common/models.py:2705 generic/states/serializers.py:16 +#: common/models.py:3126 generic/states/serializers.py:16 #: machine/serializers.py:24 plugin/models.py:46 users/models.py:113 msgid "Key" msgstr "Chiave" -#: common/models.py:2708 +#: common/models.py:3129 msgid "Unique key for this thread (used to identify the thread)" msgstr "Chiave univoca per questa discussione (usata per identificare la discussione)" -#: common/models.py:2712 +#: common/models.py:3133 msgid "Unique identifier for this thread" msgstr "Identificatore univoco per questa discussione" -#: common/models.py:2719 +#: common/models.py:3140 msgid "Started Internal" msgstr "Avviato internamente" -#: common/models.py:2720 +#: common/models.py:3141 msgid "Was this thread started internally?" msgstr "Questa discussione è iniziata internamente?" -#: common/models.py:2725 +#: common/models.py:3146 msgid "Date and time that the thread was created" msgstr "Data e ora in cui la discussione è stata creata" -#: common/models.py:2730 +#: common/models.py:3151 msgid "Date and time that the thread was last updated" msgstr "Data e ora in cui la discussione è stata aggiornata" @@ -2199,7 +2339,7 @@ msgstr "{verbose_name} cancellato" msgid "A order that is assigned to you was canceled" msgstr "Un ordine assegnato a te è stato annullato" -#: common/notifications.py:73 common/notifications.py:80 order/api.py:594 +#: common/notifications.py:73 common/notifications.py:80 order/api.py:600 msgid "Items Received" msgstr "Elemento ricevuto" @@ -2211,88 +2351,93 @@ msgstr "Gli elementi sono stati ricevuti a fronte di un ordine di acquisto" msgid "Items have been received against a return order" msgstr "Gli articoli sono stati ricevuti contro un ordine di reso" -#: common/serializers.py:145 +#: common/serializers.py:149 msgid "Indicates if the setting is overridden by an environment variable" msgstr "Indica se l'impostazione è sovrascritta da una variabile ambiente" -#: common/serializers.py:147 +#: common/serializers.py:151 msgid "Override" msgstr "Sovrascrivi" -#: common/serializers.py:498 +#: common/serializers.py:502 msgid "Is Running" msgstr "In Esecuzione" -#: common/serializers.py:504 +#: common/serializers.py:508 msgid "Pending Tasks" msgstr "Attività in sospeso" -#: common/serializers.py:510 +#: common/serializers.py:514 msgid "Scheduled Tasks" msgstr "Attività pianificate" -#: common/serializers.py:516 +#: common/serializers.py:520 msgid "Failed Tasks" msgstr "Attività Fallite" -#: common/serializers.py:531 +#: common/serializers.py:535 msgid "Task ID" msgstr "ID Attività" -#: common/serializers.py:531 +#: common/serializers.py:535 msgid "Unique task ID" msgstr "ID attività univoco" -#: common/serializers.py:533 +#: common/serializers.py:537 msgid "Lock" msgstr "Blocco" -#: common/serializers.py:533 +#: common/serializers.py:537 msgid "Lock time" msgstr "Tempo di blocco" -#: common/serializers.py:535 +#: common/serializers.py:539 msgid "Task name" msgstr "Nome attività" -#: common/serializers.py:537 +#: common/serializers.py:541 msgid "Function" msgstr "Funzione" -#: common/serializers.py:537 +#: common/serializers.py:541 msgid "Function name" msgstr "Nome della funzione" -#: common/serializers.py:539 +#: common/serializers.py:543 msgid "Arguments" msgstr "Argomenti" -#: common/serializers.py:539 +#: common/serializers.py:543 msgid "Task arguments" msgstr "Argomenti attività" -#: common/serializers.py:542 +#: common/serializers.py:546 msgid "Keyword Arguments" msgstr "Argomenti Parole Chiave" -#: common/serializers.py:542 +#: common/serializers.py:546 msgid "Task keyword arguments" msgstr "Argomenti parole chiave attività" -#: common/serializers.py:652 +#: common/serializers.py:656 msgid "Filename" msgstr "Nome del file" -#: common/serializers.py:659 importer/models.py:89 report/api.py:41 +#: common/serializers.py:663 common/serializers.py:730 +#: common/serializers.py:805 importer/models.py:89 report/api.py:41 #: report/models.py:293 report/serializers.py:52 msgid "Model Type" msgstr "Tipo di modello" -#: common/serializers.py:687 +#: common/serializers.py:691 msgid "User does not have permission to create or edit attachments for this model" msgstr "L'utente non ha il permesso di creare o modificare allegati per questo modello" -#: common/serializers.py:731 common/serializers.py:834 +#: common/serializers.py:786 +msgid "User does not have permission to create or edit parameters for this model" +msgstr "" + +#: common/serializers.py:850 common/serializers.py:953 msgid "Selection list is locked" msgstr "Lista di selezione bloccata" @@ -2368,7 +2513,7 @@ msgstr "Limita visualizzazione `Informazioni`" msgid "Show the `about` modal only to superusers" msgstr "Mostra la modalità `Informazioni` solo ai superusers" -#: common/setting/system.py:224 company/models.py:144 company/models.py:145 +#: common/setting/system.py:224 company/models.py:145 company/models.py:146 msgid "Company name" msgstr "Nome azienda" @@ -2411,8 +2556,8 @@ msgstr "Quanto spesso aggiornare i tassi di cambio (impostare a zero per disabil #: common/setting/system.py:253 common/setting/system.py:293 #: common/setting/system.py:306 common/setting/system.py:314 #: common/setting/system.py:321 common/setting/system.py:330 -#: common/setting/system.py:339 common/setting/system.py:588 -#: common/setting/system.py:616 common/setting/system.py:707 +#: common/setting/system.py:339 common/setting/system.py:580 +#: common/setting/system.py:608 common/setting/system.py:707 #: common/setting/system.py:1103 common/setting/system.py:1119 msgid "days" msgstr "giorni" @@ -2657,12 +2802,6 @@ msgstr "Copia Template Parametri Categoria" msgid "Copy category parameter templates when creating a part" msgstr "Copia i modelli dei parametri categoria quando si crea un articolo" -#: common/setting/system.py:450 part/models.py:4054 report/models.py:373 -#: report/models.py:669 report/serializers.py:94 report/serializers.py:135 -#: stock/serializers.py:234 -msgid "Template" -msgstr "Modello" - #: common/setting/system.py:451 msgid "Parts are templates by default" msgstr "Gli articoli sono modelli per impostazione predefinita" @@ -2671,8 +2810,8 @@ msgstr "Gli articoli sono modelli per impostazione predefinita" msgid "Parts can be assembled from other components by default" msgstr "Gli articoli possono essere assemblate da altri componenti per impostazione predefinita" -#: common/setting/system.py:462 part/models.py:1208 part/serializers.py:1734 -#: part/serializers.py:1741 +#: common/setting/system.py:462 part/models.py:1296 part/serializers.py:1599 +#: part/serializers.py:1606 msgid "Component" msgstr "Componente" @@ -2680,7 +2819,7 @@ msgstr "Componente" msgid "Parts can be used as sub-components by default" msgstr "Gli articoli possono essere assemblati da altri componenti per impostazione predefinita" -#: common/setting/system.py:468 part/models.py:1226 +#: common/setting/system.py:468 part/models.py:1314 msgid "Purchaseable" msgstr "Acquistabile" @@ -2688,7 +2827,7 @@ msgstr "Acquistabile" msgid "Parts are purchaseable by default" msgstr "Gli articoli sono acquistabili per impostazione predefinita" -#: common/setting/system.py:474 part/models.py:1232 stock/api.py:643 +#: common/setting/system.py:474 part/models.py:1320 stock/api.py:643 msgid "Salable" msgstr "Vendibile" @@ -2700,7 +2839,7 @@ msgstr "Gli articoli sono acquistabili per impostazione predefinita" msgid "Parts are trackable by default" msgstr "Gli articoli sono tracciabili per impostazione predefinita" -#: common/setting/system.py:486 part/models.py:1248 +#: common/setting/system.py:486 part/models.py:1336 msgid "Virtual" msgstr "Virtuale" @@ -2749,158 +2888,158 @@ msgid "Part category default icon (empty means no icon)" msgstr "Icona predefinita Categoria Articolo (vuoto significa nessuna icona)" #: common/setting/system.py:525 -msgid "Enforce Parameter Units" -msgstr "Forza Unità Parametro" - -#: common/setting/system.py:527 -msgid "If units are provided, parameter values must match the specified units" -msgstr "Se le unità sono fornite, i valori dei parametri devono corrispondere alle unità specificate" - -#: common/setting/system.py:533 msgid "Minimum Pricing Decimal Places" msgstr "Prezzi Minimi Decimali" -#: common/setting/system.py:535 +#: common/setting/system.py:527 msgid "Minimum number of decimal places to display when rendering pricing data" msgstr "Numero minimo di decimali da visualizzare quando si visualizzano i dati dei prezzi" -#: common/setting/system.py:546 +#: common/setting/system.py:538 msgid "Maximum Pricing Decimal Places" msgstr "Prezzi Massimi Decimali" -#: common/setting/system.py:548 +#: common/setting/system.py:540 msgid "Maximum number of decimal places to display when rendering pricing data" msgstr "Numero massimo di decimali da visualizzare quando si visualizzano i dati dei prezzi" -#: common/setting/system.py:559 +#: common/setting/system.py:551 msgid "Use Supplier Pricing" msgstr "Usa Prezzi Fornitore" -#: common/setting/system.py:561 +#: common/setting/system.py:553 msgid "Include supplier price breaks in overall pricing calculations" msgstr "Includere le discontinuità di prezzo del fornitore nei calcoli generali dei prezzi" -#: common/setting/system.py:567 +#: common/setting/system.py:559 msgid "Purchase History Override" msgstr "Ignora la Cronologia Acquisti" -#: common/setting/system.py:569 +#: common/setting/system.py:561 msgid "Historical purchase order pricing overrides supplier price breaks" msgstr "Cronologia dei prezzi dell'ordine di acquisto del fornitore superati con discontinuità di prezzo" -#: common/setting/system.py:575 +#: common/setting/system.py:567 msgid "Use Stock Item Pricing" msgstr "Utilizzare i prezzi degli articoli in stock" -#: common/setting/system.py:577 +#: common/setting/system.py:569 msgid "Use pricing from manually entered stock data for pricing calculations" msgstr "Utilizzare i prezzi dei dati di magazzino inseriti manualmente per il calcolo dei prezzi" -#: common/setting/system.py:583 +#: common/setting/system.py:575 msgid "Stock Item Pricing Age" msgstr "Età dei prezzi degli articoli in stock" -#: common/setting/system.py:585 +#: common/setting/system.py:577 msgid "Exclude stock items older than this number of days from pricing calculations" msgstr "Escludere dal calcolo dei prezzi gli articoli in giacenza più vecchi di questo numero di giorni" -#: common/setting/system.py:592 +#: common/setting/system.py:584 msgid "Use Variant Pricing" msgstr "Utilizza Variazione di Prezzo" -#: common/setting/system.py:593 +#: common/setting/system.py:585 msgid "Include variant pricing in overall pricing calculations" msgstr "Includi la variante dei prezzi nei calcoli dei prezzi complessivi" -#: common/setting/system.py:598 +#: common/setting/system.py:590 msgid "Active Variants Only" msgstr "Solo Varianti Attive" -#: common/setting/system.py:600 +#: common/setting/system.py:592 msgid "Only use active variant parts for calculating variant pricing" msgstr "Utilizza solo articoli di varianti attive per calcolare i prezzi delle varianti" -#: common/setting/system.py:606 +#: common/setting/system.py:598 msgid "Auto Update Pricing" msgstr "Aggiornamento Automatico Prezzi" -#: common/setting/system.py:608 +#: common/setting/system.py:600 msgid "Automatically update part pricing when internal data changes" msgstr "Aggiorna automaticamente il prezzo degli articoli quando i dati interni cambiano" -#: common/setting/system.py:614 +#: common/setting/system.py:606 msgid "Pricing Rebuild Interval" msgstr "Intervallo Di Ricostruzione Dei Prezzi" -#: common/setting/system.py:615 +#: common/setting/system.py:607 msgid "Number of days before part pricing is automatically updated" msgstr "Numero di giorni prima che il prezzo dell'articolo venga aggiornato automaticamente" -#: common/setting/system.py:621 +#: common/setting/system.py:613 msgid "Internal Prices" msgstr "Prezzi interni" -#: common/setting/system.py:622 +#: common/setting/system.py:614 msgid "Enable internal prices for parts" msgstr "Abilita prezzi interni per gli articoli" -#: common/setting/system.py:627 +#: common/setting/system.py:619 msgid "Internal Price Override" msgstr "Sovrascrivi Prezzo Interno" -#: common/setting/system.py:629 +#: common/setting/system.py:621 msgid "If available, internal prices override price range calculations" msgstr "Se disponibile, i prezzi interni sostituiscono i calcoli della fascia di prezzo" -#: common/setting/system.py:635 +#: common/setting/system.py:627 msgid "Enable label printing" msgstr "Abilita stampa etichette" -#: common/setting/system.py:636 +#: common/setting/system.py:628 msgid "Enable label printing from the web interface" msgstr "Abilita la stampa di etichette dall'interfaccia web" -#: common/setting/system.py:641 +#: common/setting/system.py:633 msgid "Label Image DPI" msgstr "Etichetta Immagine DPI" -#: common/setting/system.py:643 +#: common/setting/system.py:635 msgid "DPI resolution when generating image files to supply to label printing plugins" msgstr "Risoluzione DPI quando si generano file di immagine da fornire ai plugin di stampa per etichette" -#: common/setting/system.py:649 +#: common/setting/system.py:641 msgid "Enable Reports" msgstr "Abilita Report di Stampa" -#: common/setting/system.py:650 +#: common/setting/system.py:642 msgid "Enable generation of reports" msgstr "Abilita generazione di report di stampa" -#: common/setting/system.py:655 +#: common/setting/system.py:647 msgid "Debug Mode" msgstr "Modalità Debug" -#: common/setting/system.py:656 +#: common/setting/system.py:648 msgid "Generate reports in debug mode (HTML output)" msgstr "Genera report in modalità debug (output HTML)" -#: common/setting/system.py:661 +#: common/setting/system.py:653 msgid "Log Report Errors" msgstr "Registro errori" -#: common/setting/system.py:662 +#: common/setting/system.py:654 msgid "Log errors which occur when generating reports" msgstr "Errori di log che si verificano durante la generazione dei report" -#: common/setting/system.py:667 plugin/builtin/labels/label_sheet.py:29 +#: common/setting/system.py:659 plugin/builtin/labels/label_sheet.py:29 #: report/models.py:381 msgid "Page Size" msgstr "Dimensioni pagina" -#: common/setting/system.py:668 +#: common/setting/system.py:660 msgid "Default page size for PDF reports" msgstr "Dimensione predefinita della pagina per i report PDF" +#: common/setting/system.py:665 +msgid "Enforce Parameter Units" +msgstr "Forza Unità Parametro" + +#: common/setting/system.py:667 +msgid "If units are provided, parameter values must match the specified units" +msgstr "Se le unità sono fornite, i valori dei parametri devono corrispondere alle unità specificate" + #: common/setting/system.py:673 msgid "Globally Unique Serials" msgstr "Seriali Unici Globali" @@ -3456,688 +3595,677 @@ msgid "Display PDF reports in the browser, instead of downloading as a file" msgstr "Visualizza le etichette PDF nel browser, invece di scaricare come file" #: common/setting/user.py:45 +msgid "Barcode Scanner in Form Fields" +msgstr "" + +#: common/setting/user.py:46 +msgid "Allow barcode scanner input in form fields" +msgstr "" + +#: common/setting/user.py:51 msgid "Search Parts" msgstr "Cerca Articoli" -#: common/setting/user.py:46 +#: common/setting/user.py:52 msgid "Display parts in search preview window" msgstr "Mostra articoli della ricerca nella finestra di anteprima" -#: common/setting/user.py:51 +#: common/setting/user.py:57 msgid "Search Supplier Parts" msgstr "Trova Articoli del Fornitore" -#: common/setting/user.py:52 +#: common/setting/user.py:58 msgid "Display supplier parts in search preview window" msgstr "Mostra articoli del fornitore nella finestra di anteprima" -#: common/setting/user.py:57 +#: common/setting/user.py:63 msgid "Search Manufacturer Parts" msgstr "Cerca Articoli Produttore" -#: common/setting/user.py:58 +#: common/setting/user.py:64 msgid "Display manufacturer parts in search preview window" msgstr "Mostra articoli del produttore nella finestra di anteprima" -#: common/setting/user.py:63 +#: common/setting/user.py:69 msgid "Hide Inactive Parts" msgstr "Nascondi Articoli Inattivi" -#: common/setting/user.py:64 +#: common/setting/user.py:70 msgid "Excluded inactive parts from search preview window" msgstr "Escludi articoli inattivi dalla finestra di anteprima della ricerca" -#: common/setting/user.py:69 +#: common/setting/user.py:75 msgid "Search Categories" msgstr "Cerca Categorie" -#: common/setting/user.py:70 +#: common/setting/user.py:76 msgid "Display part categories in search preview window" msgstr "Mostra categorie articolo nella finestra di anteprima di ricerca" -#: common/setting/user.py:75 +#: common/setting/user.py:81 msgid "Search Stock" msgstr "Cerca Giacenze" -#: common/setting/user.py:76 +#: common/setting/user.py:82 msgid "Display stock items in search preview window" msgstr "Mostra articoli in giacenza nella finestra di anteprima della ricerca" -#: common/setting/user.py:81 +#: common/setting/user.py:87 msgid "Hide Unavailable Stock Items" msgstr "Nascondi elementi non disponibili" -#: common/setting/user.py:83 +#: common/setting/user.py:89 msgid "Exclude stock items which are not available from the search preview window" msgstr "Escludi gli elementi stock che non sono disponibili dalla finestra di anteprima di ricerca" -#: common/setting/user.py:89 +#: common/setting/user.py:95 msgid "Search Locations" msgstr "Cerca Ubicazioni" -#: common/setting/user.py:90 +#: common/setting/user.py:96 msgid "Display stock locations in search preview window" msgstr "Mostra ubicazioni delle giacenze nella finestra di anteprima di ricerca" -#: common/setting/user.py:95 +#: common/setting/user.py:101 msgid "Search Companies" msgstr "Cerca Aziende" -#: common/setting/user.py:96 +#: common/setting/user.py:102 msgid "Display companies in search preview window" msgstr "Mostra le aziende nella finestra di anteprima di ricerca" -#: common/setting/user.py:101 +#: common/setting/user.py:107 msgid "Search Build Orders" msgstr "Cerca Ordini Di Produzione" -#: common/setting/user.py:102 +#: common/setting/user.py:108 msgid "Display build orders in search preview window" msgstr "Mostra gli ordini di produzione nella finestra di anteprima di ricerca" -#: common/setting/user.py:107 +#: common/setting/user.py:113 msgid "Search Purchase Orders" msgstr "Cerca Ordini di Acquisto" -#: common/setting/user.py:108 +#: common/setting/user.py:114 msgid "Display purchase orders in search preview window" msgstr "Mostra gli ordini di acquisto nella finestra di anteprima di ricerca" -#: common/setting/user.py:113 +#: common/setting/user.py:119 msgid "Exclude Inactive Purchase Orders" msgstr "Escludi Ordini D'Acquisto Inattivi" -#: common/setting/user.py:114 +#: common/setting/user.py:120 msgid "Exclude inactive purchase orders from search preview window" msgstr "Escludi ordini di acquisto inattivi dalla finestra di anteprima di ricerca" -#: common/setting/user.py:119 +#: common/setting/user.py:125 msgid "Search Sales Orders" msgstr "Cerca Ordini Di Vendita" -#: common/setting/user.py:120 +#: common/setting/user.py:126 msgid "Display sales orders in search preview window" msgstr "Visualizzazione degli ordini di vendita nella finestra di anteprima della ricerca" -#: common/setting/user.py:125 +#: common/setting/user.py:131 msgid "Exclude Inactive Sales Orders" msgstr "Escludi Ordini Di Vendita Inattivi" -#: common/setting/user.py:126 +#: common/setting/user.py:132 msgid "Exclude inactive sales orders from search preview window" msgstr "Escludi ordini di vendita inattivi dalla finestra di anteprima di ricerca" -#: common/setting/user.py:131 +#: common/setting/user.py:137 msgid "Search Sales Order Shipments" msgstr "Ricerca Spedizione Ordine Di Vendita" -#: common/setting/user.py:132 +#: common/setting/user.py:138 msgid "Display sales order shipments in search preview window" msgstr "Mostra le spedizioni di ordini di vendita nella finestra di anteprima di ricerca" -#: common/setting/user.py:137 +#: common/setting/user.py:143 msgid "Search Return Orders" msgstr "Cerca Ordini Di Reso" -#: common/setting/user.py:138 +#: common/setting/user.py:144 msgid "Display return orders in search preview window" msgstr "Visualizza gli ordini di reso nella finestra di anteprima di ricerca" -#: common/setting/user.py:143 +#: common/setting/user.py:149 msgid "Exclude Inactive Return Orders" msgstr "Escludi Ordini Inattivi Di Reso" -#: common/setting/user.py:144 +#: common/setting/user.py:150 msgid "Exclude inactive return orders from search preview window" msgstr "Escludi ordini di reso inattivi dalla finestra di anteprima di ricerca" -#: common/setting/user.py:149 +#: common/setting/user.py:155 msgid "Search Preview Results" msgstr "Risultati Dell'Anteprima Di Ricerca" -#: common/setting/user.py:151 +#: common/setting/user.py:157 msgid "Number of results to show in each section of the search preview window" msgstr "Numero di risultati da visualizzare in ciascuna sezione della finestra di anteprima della ricerca" -#: common/setting/user.py:157 +#: common/setting/user.py:163 msgid "Regex Search" msgstr "Ricerca con regex" -#: common/setting/user.py:158 +#: common/setting/user.py:164 msgid "Enable regular expressions in search queries" msgstr "Abilita le espressioni regolari nelle query di ricerca" -#: common/setting/user.py:163 +#: common/setting/user.py:169 msgid "Whole Word Search" msgstr "Ricerca Parole Intere" -#: common/setting/user.py:164 +#: common/setting/user.py:170 msgid "Search queries return results for whole word matches" msgstr "Le query di ricerca restituiscono i risultati per intere corrispondenze di parola" -#: common/setting/user.py:169 +#: common/setting/user.py:175 msgid "Search Notes" msgstr "Ricerca Note" -#: common/setting/user.py:171 +#: common/setting/user.py:177 msgid "Search queries return results for matches from the item's notes" msgstr "Le query di ricerca restituiscono i risultati per le corrispondenze dalle note dell'elemento" -#: common/setting/user.py:177 +#: common/setting/user.py:183 msgid "Escape Key Closes Forms" msgstr "Il tasto Esc chiude i moduli" -#: common/setting/user.py:178 +#: common/setting/user.py:184 msgid "Use the escape key to close modal forms" msgstr "Utilizzare il tasto Esc per chiudere i moduli modali" -#: common/setting/user.py:183 +#: common/setting/user.py:189 msgid "Fixed Navbar" msgstr "Barra di navigazione fissa" -#: common/setting/user.py:184 +#: common/setting/user.py:190 msgid "The navbar position is fixed to the top of the screen" msgstr "La posizione della barra di navigazione è fissata nella parte superiore dello schermo" -#: common/setting/user.py:189 +#: common/setting/user.py:195 msgid "Fixed Table Headers" msgstr "Intestazioni Fisse Della Tabella" -#: common/setting/user.py:190 +#: common/setting/user.py:196 msgid "Table headers are fixed to the top of the table" msgstr "Le intestazioni della tabella sono fissate alla parte superiore della tabella" -#: common/setting/user.py:195 +#: common/setting/user.py:201 msgid "Show Spotlight" msgstr "Mostra Spotlight" -#: common/setting/user.py:196 +#: common/setting/user.py:202 msgid "Enable spotlight navigation functionality" msgstr "Abilita funzionalità di navigazione spotlight" -#: common/setting/user.py:201 +#: common/setting/user.py:207 msgid "Navigation Icons" msgstr "Icone per la Navigazione" -#: common/setting/user.py:202 +#: common/setting/user.py:208 msgid "Display icons in the navigation bar" msgstr "Visualizza le icone nella barra di navigazione" -#: common/setting/user.py:207 +#: common/setting/user.py:213 msgid "Date Format" msgstr "Formato Data" -#: common/setting/user.py:208 +#: common/setting/user.py:214 msgid "Preferred format for displaying dates" msgstr "Formato predefinito per visualizzare le date" -#: common/setting/user.py:221 +#: common/setting/user.py:227 msgid "Show Stock History" msgstr "Visualizza Cronologia Magazzino" -#: common/setting/user.py:222 +#: common/setting/user.py:228 msgid "Display stock history information in the part detail page" msgstr "Mostra le informazioni sulla cronologia delle magazzino nella pagina dei dettagli articolo" -#: common/setting/user.py:227 +#: common/setting/user.py:233 msgid "Show Last Breadcrumb" msgstr "Mostra L'Ultimo Breadcrumb" -#: common/setting/user.py:228 +#: common/setting/user.py:234 msgid "Show the current page in breadcrumbs" msgstr "Mostra la pagina corrente nel Breadcrumb" -#: common/setting/user.py:233 +#: common/setting/user.py:239 msgid "Show full stock location in tables" msgstr "Mostra tutte lo posizioni del magazzino nelle tabelle" -#: common/setting/user.py:235 +#: common/setting/user.py:241 msgid "Disabled: The full location path is displayed as a hover tooltip. Enabled: The full location path is displayed as plain text." msgstr "Disabilitato: Mostra il percorso completo al passaggio del mouse. Abilitato: Mostra il percorso completo come testo." -#: common/setting/user.py:241 +#: common/setting/user.py:247 msgid "Show full part categories in tables" msgstr "Mostra tutte le categorie degli articoli nelle tabelle" -#: common/setting/user.py:243 +#: common/setting/user.py:249 msgid "Disabled: The full category path is displayed as a hover tooltip. Enabled: The full category path is displayed as plain text." msgstr "Disabilitato: Mostra il percorso completo delle categorie al passaggio del mouse. Abilitato: Mostra il percorso completo delle categorie come testo." -#: common/setting/user.py:249 +#: common/setting/user.py:255 msgid "Receive error reports" msgstr "Ricevi segnalazioni di errore" -#: common/setting/user.py:250 +#: common/setting/user.py:256 msgid "Receive notifications for system errors" msgstr "Ricevi notifiche per errori di sistema" -#: common/setting/user.py:255 +#: common/setting/user.py:261 msgid "Last used printing machines" msgstr "Ultime stampanti usate" -#: common/setting/user.py:256 +#: common/setting/user.py:262 msgid "Save the last used printing machines for a user" msgstr "Salva le ultime stampanti usate da un'utente" -#: common/validators.py:34 +#: common/validators.py:38 +msgid "All models" +msgstr "" + +#: common/validators.py:63 msgid "No attachment model type provided" msgstr "Nessun tipo di modello allegato fornito" -#: common/validators.py:40 +#: common/validators.py:69 msgid "Invalid attachment model type" msgstr "Tipo di modello allegato non valido" -#: common/validators.py:81 +#: common/validators.py:110 msgid "Minimum places cannot be greater than maximum places" msgstr "I posti minimi non possono essere superiori al massimo" -#: common/validators.py:93 +#: common/validators.py:122 msgid "Maximum places cannot be less than minimum places" msgstr "Il numero massimo di posti non può essere inferiore al minimo" -#: common/validators.py:104 +#: common/validators.py:133 msgid "An empty domain is not allowed." msgstr "Un dominio vuoto non è consentito." -#: common/validators.py:106 +#: common/validators.py:135 #, python-brace-format msgid "Invalid domain name: {domain}" msgstr "Nome dominio non valido: {domain}" -#: common/validators.py:122 +#: common/validators.py:151 msgid "Value must be uppercase" msgstr "Il valore deve essere maiuscolo" -#: common/validators.py:128 +#: common/validators.py:157 msgid "Value must be a valid variable identifier" msgstr "Il valore deve essere un identificatore variabile valido" -#: company/api.py:147 +#: company/api.py:141 msgid "Part is Active" msgstr "L'articolo è attivo" -#: company/api.py:151 +#: company/api.py:145 msgid "Manufacturer is Active" msgstr "Il produttore è attivo" -#: company/api.py:286 +#: company/api.py:246 msgid "Supplier Part is Active" msgstr "L'articolo fornitore è attivo" -#: company/api.py:290 +#: company/api.py:250 msgid "Internal Part is Active" msgstr "L'articolo interno è attivo" -#: company/api.py:295 +#: company/api.py:255 msgid "Supplier is Active" msgstr "Il fornitore è attivo" -#: company/api.py:307 company/models.py:520 company/serializers.py:457 -#: part/serializers.py:566 +#: company/api.py:267 company/models.py:522 company/serializers.py:502 +#: part/serializers.py:477 msgid "Manufacturer" msgstr "Produttore" -#: company/api.py:314 company/models.py:121 company/models.py:392 +#: company/api.py:274 company/models.py:122 company/models.py:393 #: stock/api.py:900 msgid "Company" msgstr "Azienda" -#: company/api.py:324 +#: company/api.py:284 msgid "Has Stock" msgstr "Ha Scorte" -#: company/models.py:122 +#: company/models.py:123 msgid "Companies" msgstr "Aziende" -#: company/models.py:150 +#: company/models.py:151 msgid "Company description" msgstr "Descrizione azienda" -#: company/models.py:151 +#: company/models.py:152 msgid "Description of the company" msgstr "Descrizione dell'azienda" -#: company/models.py:157 +#: company/models.py:158 msgid "Website" msgstr "Sito Web" -#: company/models.py:158 +#: company/models.py:159 msgid "Company website URL" msgstr "Sito web aziendale" -#: company/models.py:164 +#: company/models.py:165 msgid "Phone number" msgstr "Telefono" -#: company/models.py:166 +#: company/models.py:167 msgid "Contact phone number" msgstr "Numero di telefono di contatto" -#: company/models.py:173 +#: company/models.py:174 msgid "Contact email address" msgstr "Indirizzo email" -#: company/models.py:178 company/models.py:296 order/models.py:513 +#: company/models.py:179 company/models.py:297 order/models.py:514 #: users/models.py:561 msgid "Contact" msgstr "Contatto" -#: company/models.py:180 +#: company/models.py:181 msgid "Point of contact" msgstr "Punto di contatto" -#: company/models.py:186 +#: company/models.py:187 msgid "Link to external company information" msgstr "Collegamento alle informazioni aziendali esterne" -#: company/models.py:191 +#: company/models.py:192 msgid "Is this company active?" msgstr "Questa azienda è attiva?" -#: company/models.py:196 +#: company/models.py:197 msgid "Is customer" msgstr "È un cliente" -#: company/models.py:197 +#: company/models.py:198 msgid "Do you sell items to this company?" msgstr "Vendi oggetti a questa azienda?" -#: company/models.py:202 +#: company/models.py:203 msgid "Is supplier" msgstr "È un fornitore" -#: company/models.py:203 +#: company/models.py:204 msgid "Do you purchase items from this company?" msgstr "Acquistate articoli da questa azienda?" -#: company/models.py:208 +#: company/models.py:209 msgid "Is manufacturer" msgstr "È un produttore" -#: company/models.py:209 +#: company/models.py:210 msgid "Does this company manufacture parts?" msgstr "Questa azienda produce articoli?" -#: company/models.py:217 +#: company/models.py:218 msgid "Default currency used for this company" msgstr "Valuta predefinita utilizzata per questa azienda" -#: company/models.py:224 +#: company/models.py:225 msgid "Tax ID" msgstr "Partita IVA" -#: company/models.py:225 +#: company/models.py:226 msgid "Company Tax ID" msgstr "Codice Fiscale Azienda" -#: company/models.py:335 order/models.py:523 order/models.py:2288 +#: company/models.py:336 order/models.py:524 order/models.py:2289 msgid "Address" msgstr "Indirizzo" -#: company/models.py:336 +#: company/models.py:337 msgid "Addresses" msgstr "Indirizzi" -#: company/models.py:393 +#: company/models.py:394 msgid "Select company" msgstr "Seleziona azienda" -#: company/models.py:398 +#: company/models.py:399 msgid "Address title" msgstr "Titolo indirizzo" -#: company/models.py:399 +#: company/models.py:400 msgid "Title describing the address entry" msgstr "Titolo che descrive la voce indirizzo" -#: company/models.py:405 +#: company/models.py:406 msgid "Primary address" msgstr "Indirizzo Principale" -#: company/models.py:406 +#: company/models.py:407 msgid "Set as primary address" msgstr "Imposta come indirizzo primario" -#: company/models.py:411 +#: company/models.py:412 msgid "Line 1" msgstr "Linea 1" -#: company/models.py:412 +#: company/models.py:413 msgid "Address line 1" msgstr "Indirizzo (linea 1)" -#: company/models.py:418 +#: company/models.py:419 msgid "Line 2" msgstr "Linea 2" -#: company/models.py:419 +#: company/models.py:420 msgid "Address line 2" msgstr "Indirizzo (linea 2)" -#: company/models.py:425 company/models.py:426 +#: company/models.py:426 company/models.py:427 msgid "Postal code" msgstr "CAP" -#: company/models.py:432 +#: company/models.py:433 msgid "City/Region" msgstr "Città/Regione" -#: company/models.py:433 +#: company/models.py:434 msgid "Postal code city/region" msgstr "Codice postale città/regione" -#: company/models.py:439 +#: company/models.py:440 msgid "State/Province" msgstr "Stato/Provincia" -#: company/models.py:440 +#: company/models.py:441 msgid "State or province" msgstr "Stato o provincia" -#: company/models.py:446 +#: company/models.py:447 msgid "Country" msgstr "Nazione" -#: company/models.py:447 +#: company/models.py:448 msgid "Address country" msgstr "Indirizzo Paese" -#: company/models.py:453 +#: company/models.py:454 msgid "Courier shipping notes" msgstr "Note di spedizione del corriere" -#: company/models.py:454 +#: company/models.py:455 msgid "Notes for shipping courier" msgstr "Note per il corriere di spedizione" -#: company/models.py:460 +#: company/models.py:461 msgid "Internal shipping notes" msgstr "Note di spedizione interne" -#: company/models.py:461 +#: company/models.py:462 msgid "Shipping notes for internal use" msgstr "Note di spedizione per uso interno" -#: company/models.py:468 +#: company/models.py:469 msgid "Link to address information (external)" msgstr "Collegamento alle informazioni sull'indirizzo (esterno)" -#: company/models.py:492 company/models.py:609 company/models.py:832 -#: company/serializers.py:471 stock/api.py:561 +#: company/models.py:494 company/models.py:786 company/serializers.py:516 +#: stock/api.py:561 msgid "Manufacturer Part" msgstr "Codice articolo produttore" -#: company/models.py:509 company/models.py:800 stock/models.py:1025 +#: company/models.py:511 company/models.py:754 stock/models.py:1025 #: stock/serializers.py:407 msgid "Base Part" msgstr "Articolo di base" -#: company/models.py:511 company/models.py:802 +#: company/models.py:513 company/models.py:756 msgid "Select part" msgstr "Seleziona articolo" -#: company/models.py:521 +#: company/models.py:523 msgid "Select manufacturer" msgstr "Seleziona Produttore" -#: company/models.py:527 company/serializers.py:479 order/serializers.py:734 -#: part/serializers.py:576 +#: company/models.py:529 company/serializers.py:524 order/serializers.py:745 +#: part/serializers.py:487 msgid "MPN" msgstr "Codice articolo produttore (MPN)" -#: company/models.py:528 stock/serializers.py:572 +#: company/models.py:530 stock/serializers.py:572 msgid "Manufacturer Part Number" msgstr "Codice articolo produttore" -#: company/models.py:535 +#: company/models.py:537 msgid "URL for external manufacturer part link" msgstr "URL dell'articolo del fornitore" -#: company/models.py:544 +#: company/models.py:546 msgid "Manufacturer part description" msgstr "Descrizione articolo costruttore" -#: company/models.py:597 -msgid "Manufacturer Part Parameter" -msgstr "Parametro articolo produttore" - -#: company/models.py:616 -msgid "Parameter name" -msgstr "Nome parametro" - -#: company/models.py:623 -msgid "Parameter value" -msgstr "Valore del parametro" - -#: company/models.py:630 part/models.py:1195 part/models.py:3857 -msgid "Units" -msgstr "Unità" - -#: company/models.py:631 -msgid "Parameter units" -msgstr "Unità parametri" - -#: company/models.py:740 +#: company/models.py:694 msgid "Pack units must be compatible with the base part units" msgstr "Le unità del pacchetto devono essere compatibili con le unità dell'articolo base" -#: company/models.py:747 +#: company/models.py:701 msgid "Pack units must be greater than zero" msgstr "Le unità del pacchetto devono essere maggiori di zero" -#: company/models.py:761 +#: company/models.py:715 msgid "Linked manufacturer part must reference the same base part" msgstr "L'articolo del costruttore collegato deve riferirsi alla stesso articolo" -#: company/models.py:810 company/serializers.py:449 company/serializers.py:467 -#: order/models.py:639 part/serializers.py:550 +#: company/models.py:764 company/serializers.py:494 company/serializers.py:512 +#: order/models.py:640 part/serializers.py:461 #: plugin/builtin/suppliers/digikey.py:26 plugin/builtin/suppliers/lcsc.py:27 #: plugin/builtin/suppliers/mouser.py:25 plugin/builtin/suppliers/tme.py:27 #: stock/api.py:567 templates/email/overdue_purchase_order.html:16 msgid "Supplier" msgstr "Fornitore" -#: company/models.py:811 +#: company/models.py:765 msgid "Select supplier" msgstr "Seleziona fornitore" -#: company/models.py:817 part/serializers.py:561 +#: company/models.py:771 part/serializers.py:472 msgid "Supplier stock keeping unit" msgstr "Unità di giacenza magazzino fornitore" -#: company/models.py:823 +#: company/models.py:777 msgid "Is this supplier part active?" msgstr "Questo articolo fornitore è attivo?" -#: company/models.py:833 +#: company/models.py:787 msgid "Select manufacturer part" msgstr "Selezionare un produttore" -#: company/models.py:840 +#: company/models.py:794 msgid "URL for external supplier part link" msgstr "URL dell'articolo del fornitore" -#: company/models.py:849 +#: company/models.py:803 msgid "Supplier part description" msgstr "Descrizione articolo fornitore" -#: company/models.py:856 order/serializers.py:883 order/serializers.py:2047 -#: part/models.py:4070 part/models.py:4450 part/models.py:4819 -#: report/templates/report/inventree_bill_of_materials_report.html:140 -#: report/templates/report/inventree_purchase_order_report.html:39 -#: report/templates/report/inventree_return_order_report.html:27 -#: report/templates/report/inventree_sales_order_report.html:32 -#: report/templates/report/inventree_stock_location_report.html:105 -#: stock/serializers.py:813 -msgid "Note" -msgstr "Nota" - -#: company/models.py:865 part/models.py:2250 +#: company/models.py:819 part/models.py:2338 msgid "base cost" msgstr "costo base" -#: company/models.py:866 part/models.py:2251 +#: company/models.py:820 part/models.py:2339 msgid "Minimum charge (e.g. stocking fee)" msgstr "Onere minimo (ad esempio tassa di stoccaggio)" -#: company/models.py:873 order/serializers.py:875 stock/models.py:1056 +#: company/models.py:827 order/serializers.py:886 stock/models.py:1056 #: stock/serializers.py:1606 msgid "Packaging" msgstr "Confezionamento" -#: company/models.py:874 +#: company/models.py:828 msgid "Part packaging" msgstr "Imballaggio del pezzo" -#: company/models.py:879 +#: company/models.py:833 msgid "Pack Quantity" msgstr "Quantità Confezione" -#: company/models.py:881 +#: company/models.py:835 msgid "Total quantity supplied in a single pack. Leave empty for single items." msgstr "Quantità totale fornita in una singola confezione. Lasciare vuoto per gli articoli singoli." -#: company/models.py:900 part/models.py:2257 +#: company/models.py:854 part/models.py:2345 msgid "multiple" msgstr "multiplo" -#: company/models.py:901 +#: company/models.py:855 msgid "Order multiple" msgstr "Ordine multiplo" -#: company/models.py:913 +#: company/models.py:867 msgid "Quantity available from supplier" msgstr "Quantità disponibile dal fornitore" -#: company/models.py:919 +#: company/models.py:873 msgid "Availability Updated" msgstr "Disponibilità Aggiornata" -#: company/models.py:920 +#: company/models.py:874 msgid "Date of last update of availability data" msgstr "Data dell’ultimo aggiornamento dei dati sulla disponibilità" -#: company/models.py:1048 +#: company/models.py:1002 msgid "Supplier Price Break" msgstr "Sconto Prezzo Fornitore" -#: company/serializers.py:181 +#: company/serializers.py:184 +msgid "Primary Address" +msgstr "" + +#: company/serializers.py:186 msgid "Return the string representation for the primary address. This property exists for backwards compatibility." msgstr "Restituisce la rappresentazione stringa per l'indirizzo primario. Questa proprietà esiste per la compatibilità all'indietro." -#: company/serializers.py:212 +#: company/serializers.py:218 msgid "Default currency used for this supplier" msgstr "Valuta predefinita utilizzata per questo fornitore" -#: company/serializers.py:248 +#: company/serializers.py:260 msgid "Company Name" msgstr "Nome Azienda" -#: company/serializers.py:433 part/serializers.py:955 stock/serializers.py:428 +#: company/serializers.py:460 part/serializers.py:840 stock/serializers.py:428 msgid "In Stock" msgstr "In magazzino" +#: company/serializers.py:477 +msgid "Price Breaks" +msgstr "" + #: data_exporter/mixins.py:325 data_exporter/mixins.py:403 msgid "Error occurred during data export" msgstr "Errore durante l'esportazione dei dati" @@ -4290,7 +4418,7 @@ msgstr "Dati riga originali" msgid "Errors" msgstr "Errori" -#: importer/models.py:550 part/serializers.py:1268 +#: importer/models.py:550 part/serializers.py:1133 msgid "Valid" msgstr "Valido" @@ -4402,7 +4530,7 @@ msgstr "Numero di copie da stampare per ogni etichetta" msgid "Connected" msgstr "Connesso" -#: machine/machine_types/label_printer.py:232 order/api.py:1795 +#: machine/machine_types/label_printer.py:232 order/api.py:1800 msgid "Unknown" msgstr "Sconosciuto" @@ -4530,105 +4658,105 @@ msgstr "Progresso Massimo" msgid "Maximum value for progress type, required if type=progress" msgstr "Valore massimo per il tipo di avanzamento, richiesto se tipo = progresso" -#: order/api.py:125 +#: order/api.py:130 msgid "Order Reference" msgstr "Riferimento ordine" -#: order/api.py:153 order/api.py:1207 +#: order/api.py:158 order/api.py:1212 msgid "Outstanding" msgstr "In Sospeso" -#: order/api.py:169 +#: order/api.py:174 msgid "Has Project Code" msgstr "Ha il codice del progetto" -#: order/api.py:183 order/models.py:488 +#: order/api.py:188 order/models.py:489 msgid "Created By" msgstr "Creato Da" -#: order/api.py:187 +#: order/api.py:192 msgid "Created Before" msgstr "Creato prima" -#: order/api.py:191 +#: order/api.py:196 msgid "Created After" msgstr "Creato dopo" -#: order/api.py:195 +#: order/api.py:200 msgid "Has Start Date" msgstr "Ha data d'inizio" -#: order/api.py:203 +#: order/api.py:208 msgid "Start Date Before" msgstr "Data d'inizio prima" -#: order/api.py:207 +#: order/api.py:212 msgid "Start Date After" msgstr "Data d'inizio dopo" -#: order/api.py:211 +#: order/api.py:216 msgid "Has Target Date" msgstr "Ha data di fine" -#: order/api.py:219 +#: order/api.py:224 msgid "Target Date Before" msgstr "Data obiettivo prima" -#: order/api.py:223 +#: order/api.py:228 msgid "Target Date After" msgstr "Data obiettivo dopo" -#: order/api.py:274 +#: order/api.py:279 msgid "Has Pricing" msgstr "Prezzo Articolo" -#: order/api.py:327 order/api.py:812 order/api.py:1490 +#: order/api.py:332 order/api.py:818 order/api.py:1495 msgid "Completed Before" msgstr "Completato prima" -#: order/api.py:331 order/api.py:816 order/api.py:1494 +#: order/api.py:336 order/api.py:822 order/api.py:1499 msgid "Completed After" msgstr "Completato dopo" -#: order/api.py:337 order/api.py:341 +#: order/api.py:342 order/api.py:346 msgid "External Build Order" msgstr "Ordine di Produzione Esterno" -#: order/api.py:526 order/api.py:914 order/api.py:1170 order/models.py:1922 -#: order/models.py:2049 order/models.py:2099 order/models.py:2279 -#: order/models.py:2477 order/models.py:2999 order/models.py:3065 +#: order/api.py:532 order/api.py:919 order/api.py:1175 order/models.py:1923 +#: order/models.py:2050 order/models.py:2100 order/models.py:2280 +#: order/models.py:2478 order/models.py:3000 order/models.py:3066 msgid "Order" msgstr "Ordine" -#: order/api.py:530 order/api.py:982 +#: order/api.py:536 order/api.py:987 msgid "Order Complete" msgstr "Ordine completato" -#: order/api.py:562 order/api.py:566 order/serializers.py:745 +#: order/api.py:568 order/api.py:572 order/serializers.py:756 msgid "Internal Part" msgstr "Articolo interno" -#: order/api.py:584 +#: order/api.py:590 msgid "Order Pending" msgstr "Ordine in sospeso" -#: order/api.py:967 +#: order/api.py:972 msgid "Completed" msgstr "Completato" -#: order/api.py:1223 +#: order/api.py:1228 msgid "Has Shipment" msgstr "Ha Spedizione" -#: order/api.py:1789 order/models.py:552 order/models.py:1923 -#: order/models.py:2050 +#: order/api.py:1794 order/models.py:553 order/models.py:1924 +#: order/models.py:2051 #: report/templates/report/inventree_purchase_order_report.html:14 #: stock/serializers.py:129 templates/email/overdue_purchase_order.html:15 msgid "Purchase Order" msgstr "Ordine D'Acquisto" -#: order/api.py:1791 order/models.py:1251 order/models.py:2100 -#: order/models.py:2280 order/models.py:2478 +#: order/api.py:1796 order/models.py:1252 order/models.py:2101 +#: order/models.py:2281 order/models.py:2479 #: report/templates/report/inventree_build_order_report.html:135 #: report/templates/report/inventree_sales_order_report.html:14 #: report/templates/report/inventree_sales_order_shipment_report.html:15 @@ -4636,8 +4764,8 @@ msgstr "Ordine D'Acquisto" msgid "Sales Order" msgstr "Ordini di Vendita" -#: order/api.py:1793 order/models.py:2649 order/models.py:3000 -#: order/models.py:3066 +#: order/api.py:1798 order/models.py:2650 order/models.py:3001 +#: order/models.py:3067 #: report/templates/report/inventree_return_order_report.html:13 #: templates/email/overdue_return_order.html:15 msgid "Return Order" @@ -4653,722 +4781,722 @@ msgstr "Prezzo Totale" msgid "Total price for this order" msgstr "Prezzo totale dell'ordine" -#: order/models.py:96 order/serializers.py:77 +#: order/models.py:96 order/serializers.py:78 msgid "Order Currency" msgstr "Valuta ordine" -#: order/models.py:99 order/serializers.py:78 +#: order/models.py:99 order/serializers.py:79 msgid "Currency for this order (leave blank to use company default)" msgstr "Valuta per questo ordine (lasciare vuoto per usare il valore predefinito dell'azienda)" -#: order/models.py:324 +#: order/models.py:325 msgid "This order is locked and cannot be modified" msgstr "Questo ordine è bloccato e non può essere modificato" -#: order/models.py:376 +#: order/models.py:377 msgid "Contact does not match selected company" msgstr "Il contatto non corrisponde all'azienda selezionata" -#: order/models.py:383 +#: order/models.py:384 msgid "Start date must be before target date" msgstr "La data d'inizio deve essere precedente alla data di fine" -#: order/models.py:390 +#: order/models.py:391 msgid "Address does not match selected company" msgstr "" -#: order/models.py:443 +#: order/models.py:444 msgid "Order description (optional)" msgstr "Descrizione dell'ordine (opzionale)" -#: order/models.py:452 order/models.py:1806 +#: order/models.py:453 order/models.py:1807 msgid "Select project code for this order" msgstr "Seleziona il codice del progetto per questo ordine" -#: order/models.py:458 order/models.py:1787 order/models.py:2344 +#: order/models.py:459 order/models.py:1788 order/models.py:2345 msgid "Link to external page" msgstr "Collegamento a un sito web esterno" -#: order/models.py:465 +#: order/models.py:466 msgid "Start date" msgstr "Data iniziale" -#: order/models.py:466 +#: order/models.py:467 msgid "Scheduled start date for this order" msgstr "Data d'inizio programmata per questo ordine" -#: order/models.py:472 order/models.py:1794 order/serializers.py:309 +#: order/models.py:473 order/models.py:1795 order/serializers.py:317 #: report/templates/report/inventree_build_order_report.html:125 msgid "Target Date" msgstr "Data scadenza" -#: order/models.py:474 +#: order/models.py:475 msgid "Expected date for order delivery. Order will be overdue after this date." msgstr "Data prevista per la consegna dell'ordine. L'ordine scadrà dopo questa data." -#: order/models.py:494 +#: order/models.py:495 msgid "Issue Date" msgstr "Data di emissione" -#: order/models.py:495 +#: order/models.py:496 msgid "Date order was issued" msgstr "Data di emissione ordine" -#: order/models.py:503 +#: order/models.py:504 msgid "User or group responsible for this order" msgstr "Utente o gruppo responsabile di questo ordine" -#: order/models.py:514 +#: order/models.py:515 msgid "Point of contact for this order" msgstr "Punto di contatto per questo ordine" -#: order/models.py:524 +#: order/models.py:525 msgid "Company address for this order" msgstr "Indirizzo dell'azienda per questo ordine" -#: order/models.py:615 order/models.py:1312 +#: order/models.py:616 order/models.py:1313 msgid "Order reference" msgstr "Riferimento ordine" -#: order/models.py:624 order/models.py:1336 order/models.py:2737 +#: order/models.py:625 order/models.py:1337 order/models.py:2738 #: stock/serializers.py:559 stock/serializers.py:988 users/models.py:542 msgid "Status" msgstr "Stato" -#: order/models.py:625 +#: order/models.py:626 msgid "Purchase order status" msgstr "Stato ordine d'acquisto" -#: order/models.py:640 +#: order/models.py:641 msgid "Company from which the items are being ordered" msgstr "Azienda da cui sono stati ordinati gli articoli" -#: order/models.py:651 +#: order/models.py:652 msgid "Supplier Reference" msgstr "Riferimento fornitore" -#: order/models.py:652 +#: order/models.py:653 msgid "Supplier order reference code" msgstr "Codice di riferimento ordine fornitore" -#: order/models.py:661 +#: order/models.py:662 msgid "received by" msgstr "ricevuto da" -#: order/models.py:668 order/models.py:2752 +#: order/models.py:669 order/models.py:2753 msgid "Date order was completed" msgstr "Data ordine completato" -#: order/models.py:677 order/models.py:1981 +#: order/models.py:678 order/models.py:1982 msgid "Destination" msgstr "Destinazione" -#: order/models.py:678 order/models.py:1985 +#: order/models.py:679 order/models.py:1986 msgid "Destination for received items" msgstr "Destinazione per gli elementi ricevuti" -#: order/models.py:724 +#: order/models.py:725 msgid "Part supplier must match PO supplier" msgstr "Il fornitore dell'articolo deve corrispondere al fornitore dell'ordine di produzione" -#: order/models.py:994 +#: order/models.py:995 msgid "Line item does not match purchase order" msgstr "L'elemento di riga non corrisponde all'ordine di acquisto" -#: order/models.py:997 +#: order/models.py:998 msgid "Line item is missing a linked part" msgstr "Manca un elemento collegato" -#: order/models.py:1011 +#: order/models.py:1012 msgid "Quantity must be a positive number" msgstr "La quantità deve essere un numero positivo" -#: order/models.py:1323 order/models.py:2724 stock/models.py:1078 +#: order/models.py:1324 order/models.py:2725 stock/models.py:1078 #: stock/models.py:1079 stock/serializers.py:1322 #: templates/email/overdue_return_order.html:16 #: templates/email/overdue_sales_order.html:16 msgid "Customer" msgstr "Cliente" -#: order/models.py:1324 +#: order/models.py:1325 msgid "Company to which the items are being sold" msgstr "Azienda da cui sono stati ordinati gli elementi" -#: order/models.py:1337 +#: order/models.py:1338 msgid "Sales order status" msgstr "Stato ordine di vendita" -#: order/models.py:1348 order/models.py:2744 +#: order/models.py:1349 order/models.py:2745 msgid "Customer Reference " msgstr "Riferimento Cliente " -#: order/models.py:1349 order/models.py:2745 +#: order/models.py:1350 order/models.py:2746 msgid "Customer order reference code" msgstr "Codice di riferimento Ordine del Cliente" -#: order/models.py:1353 order/models.py:2296 +#: order/models.py:1354 order/models.py:2297 msgid "Shipment Date" msgstr "Data di spedizione" -#: order/models.py:1362 +#: order/models.py:1363 msgid "shipped by" msgstr "spedito da" -#: order/models.py:1413 +#: order/models.py:1414 msgid "Order is already complete" msgstr "L'ordine è già stato completato" -#: order/models.py:1416 +#: order/models.py:1417 msgid "Order is already cancelled" msgstr "L'ordine è già stato annullato" -#: order/models.py:1420 +#: order/models.py:1421 msgid "Only an open order can be marked as complete" msgstr "Solo un ordine aperto può essere contrassegnato come completo" -#: order/models.py:1424 +#: order/models.py:1425 msgid "Order cannot be completed as there are incomplete shipments" msgstr "L'ordine non può essere completato in quanto ci sono spedizioni incomplete" -#: order/models.py:1429 +#: order/models.py:1430 msgid "Order cannot be completed as there are incomplete allocations" msgstr "L'ordine non può essere completato perché ci sono allocazioni incomplete" -#: order/models.py:1438 +#: order/models.py:1439 msgid "Order cannot be completed as there are incomplete line items" msgstr "L'ordine non può essere completato perché ci sono elementi di riga incompleti" -#: order/models.py:1733 order/models.py:1749 +#: order/models.py:1734 order/models.py:1750 msgid "The order is locked and cannot be modified" msgstr "L'ordine è bloccato e non può essere modificato" -#: order/models.py:1757 +#: order/models.py:1758 msgid "Item quantity" msgstr "Quantità Elementi" -#: order/models.py:1774 +#: order/models.py:1775 msgid "Line item reference" msgstr "Riferimento Linea Elemento" -#: order/models.py:1781 +#: order/models.py:1782 msgid "Line item notes" msgstr "Note linea elemento" -#: order/models.py:1796 +#: order/models.py:1797 msgid "Target date for this line item (leave blank to use the target date from the order)" msgstr "Data di destinazione per questa voce di riga (lasciare vuoto per utilizzare la data di destinazione dall'ordine)" -#: order/models.py:1826 +#: order/models.py:1827 msgid "Line item description (optional)" msgstr "Descrizione della parte (opzionale)" -#: order/models.py:1833 +#: order/models.py:1834 msgid "Additional context for this line" msgstr "Contesto aggiuntivo per questa voce" -#: order/models.py:1843 +#: order/models.py:1844 msgid "Unit price" msgstr "Prezzo unitario" -#: order/models.py:1862 +#: order/models.py:1863 msgid "Purchase Order Line Item" msgstr "Riga ordine d'acquisto" -#: order/models.py:1889 +#: order/models.py:1890 msgid "Supplier part must match supplier" msgstr "L'articolo del fornitore deve corrispondere al fornitore" -#: order/models.py:1894 +#: order/models.py:1895 msgid "Build order must be marked as external" msgstr "L'ordine di produzione deve essere contrassegnato come esterno" -#: order/models.py:1901 +#: order/models.py:1902 msgid "Build orders can only be linked to assembly parts" msgstr "Gli ordini di costruzione possono essere collegati solo alle parti di assemblaggio" -#: order/models.py:1907 +#: order/models.py:1908 msgid "Build order part must match line item part" msgstr "L'articolo dell'ordine di produzione deve corrispondere all'articolo della riga" -#: order/models.py:1942 +#: order/models.py:1943 msgid "Supplier part" msgstr "Articolo Fornitore" -#: order/models.py:1949 +#: order/models.py:1950 msgid "Received" msgstr "Ricevuto" -#: order/models.py:1950 +#: order/models.py:1951 msgid "Number of items received" msgstr "Numero di elementi ricevuti" -#: order/models.py:1958 stock/models.py:1201 stock/serializers.py:637 +#: order/models.py:1959 stock/models.py:1201 stock/serializers.py:637 msgid "Purchase Price" msgstr "Prezzo di Acquisto" -#: order/models.py:1959 +#: order/models.py:1960 msgid "Unit purchase price" msgstr "Prezzo di acquisto unitario" -#: order/models.py:1975 +#: order/models.py:1976 msgid "External Build Order to be fulfilled by this line item" msgstr "Ordine di produzione esterno che deve essere eseguito da questo articolo" -#: order/models.py:2038 +#: order/models.py:2039 msgid "Purchase Order Extra Line" msgstr "Riga Extra ordine di acquisto" -#: order/models.py:2067 +#: order/models.py:2068 msgid "Sales Order Line Item" msgstr "Articolo ordine di vendita" -#: order/models.py:2092 +#: order/models.py:2093 msgid "Only salable parts can be assigned to a sales order" msgstr "Solo gli articoli vendibili possono essere assegnati a un ordine di vendita" -#: order/models.py:2118 +#: order/models.py:2119 msgid "Sale Price" msgstr "Prezzo di Vendita" -#: order/models.py:2119 +#: order/models.py:2120 msgid "Unit sale price" msgstr "Prezzo unitario di vendita" -#: order/models.py:2128 order/status_codes.py:50 +#: order/models.py:2129 order/status_codes.py:50 msgid "Shipped" msgstr "Spedito" -#: order/models.py:2129 +#: order/models.py:2130 msgid "Shipped quantity" msgstr "Quantità spedita" -#: order/models.py:2240 +#: order/models.py:2241 msgid "Sales Order Shipment" msgstr "Spedizione dell'ordine di vendita" -#: order/models.py:2253 +#: order/models.py:2254 msgid "Shipment address must match the customer" msgstr "" -#: order/models.py:2289 +#: order/models.py:2290 msgid "Shipping address for this shipment" msgstr "" -#: order/models.py:2297 +#: order/models.py:2298 msgid "Date of shipment" msgstr "Data di spedizione" -#: order/models.py:2303 +#: order/models.py:2304 msgid "Delivery Date" msgstr "Data di consegna" -#: order/models.py:2304 +#: order/models.py:2305 msgid "Date of delivery of shipment" msgstr "Data di consegna della spedizione" -#: order/models.py:2312 +#: order/models.py:2313 msgid "Checked By" msgstr "Verificato Da" -#: order/models.py:2313 +#: order/models.py:2314 msgid "User who checked this shipment" msgstr "Utente che ha controllato questa spedizione" -#: order/models.py:2320 order/models.py:2574 order/serializers.py:1711 -#: order/serializers.py:1835 +#: order/models.py:2321 order/models.py:2575 order/serializers.py:1725 +#: order/serializers.py:1849 #: report/templates/report/inventree_sales_order_shipment_report.html:14 msgid "Shipment" msgstr "Spedizione" -#: order/models.py:2321 +#: order/models.py:2322 msgid "Shipment number" msgstr "Numero di spedizione" -#: order/models.py:2329 +#: order/models.py:2330 msgid "Tracking Number" msgstr "Numero di monitoraggio" -#: order/models.py:2330 +#: order/models.py:2331 msgid "Shipment tracking information" msgstr "Informazioni di monitoraggio della spedizione" -#: order/models.py:2337 +#: order/models.py:2338 msgid "Invoice Number" msgstr "Numero Fattura" -#: order/models.py:2338 +#: order/models.py:2339 msgid "Reference number for associated invoice" msgstr "Numero di riferimento per la fattura associata" -#: order/models.py:2377 +#: order/models.py:2378 msgid "Shipment has already been sent" msgstr "La spedizione è già stata spedita" -#: order/models.py:2380 +#: order/models.py:2381 msgid "Shipment has no allocated stock items" msgstr "La spedizione non ha articoli di stock assegnati" -#: order/models.py:2387 +#: order/models.py:2388 msgid "Shipment must be checked before it can be completed" msgstr "" -#: order/models.py:2466 +#: order/models.py:2467 msgid "Sales Order Extra Line" msgstr "Riga Extra ordine di vendita" -#: order/models.py:2495 +#: order/models.py:2496 msgid "Sales Order Allocation" msgstr "Assegnazione Ordini Di Vendita" -#: order/models.py:2518 order/models.py:2520 +#: order/models.py:2519 order/models.py:2521 msgid "Stock item has not been assigned" msgstr "L'elemento di magazzino non è stato assegnato" -#: order/models.py:2527 +#: order/models.py:2528 msgid "Cannot allocate stock item to a line with a different part" msgstr "Impossibile allocare l'elemento stock a una linea con un articolo diverso" -#: order/models.py:2530 +#: order/models.py:2531 msgid "Cannot allocate stock to a line without a part" msgstr "Impossibile allocare stock a una riga senza un articolo" -#: order/models.py:2533 +#: order/models.py:2534 msgid "Allocation quantity cannot exceed stock quantity" msgstr "La quantità di ripartizione non puo' superare la disponibilità della giacenza" -#: order/models.py:2552 order/serializers.py:1581 +#: order/models.py:2553 order/serializers.py:1595 msgid "Quantity must be 1 for serialized stock item" msgstr "La quantità deve essere 1 per l'elemento serializzato" -#: order/models.py:2555 +#: order/models.py:2556 msgid "Sales order does not match shipment" msgstr "L'ordine di vendita non corrisponde alla spedizione" -#: order/models.py:2556 plugin/base/barcodes/api.py:642 +#: order/models.py:2557 plugin/base/barcodes/api.py:642 msgid "Shipment does not match sales order" msgstr "La spedizione non corrisponde all'ordine di vendita" -#: order/models.py:2564 +#: order/models.py:2565 msgid "Line" msgstr "Linea" -#: order/models.py:2575 +#: order/models.py:2576 msgid "Sales order shipment reference" msgstr "Riferimento della spedizione ordine di vendita" -#: order/models.py:2588 order/models.py:3007 +#: order/models.py:2589 order/models.py:3008 msgid "Item" msgstr "Elemento" -#: order/models.py:2589 +#: order/models.py:2590 msgid "Select stock item to allocate" msgstr "Seleziona elemento stock da allocare" -#: order/models.py:2598 +#: order/models.py:2599 msgid "Enter stock allocation quantity" msgstr "Inserisci la quantità assegnata alla giacenza" -#: order/models.py:2713 +#: order/models.py:2714 msgid "Return Order reference" msgstr "Riferimento ordine di reso" -#: order/models.py:2725 +#: order/models.py:2726 msgid "Company from which items are being returned" msgstr "Società a cui vengono restituiti gli articoli" -#: order/models.py:2738 +#: order/models.py:2739 msgid "Return order status" msgstr "Stato ordine di reso" -#: order/models.py:2965 +#: order/models.py:2966 msgid "Return Order Line Item" msgstr "Articolo Linea Ordine Reso" -#: order/models.py:2978 +#: order/models.py:2979 msgid "Stock item must be specified" msgstr "L'elemento stock deve essere specificato" -#: order/models.py:2982 +#: order/models.py:2983 msgid "Return quantity exceeds stock quantity" msgstr "Quantità di reso superiore alla quantità di scorta" -#: order/models.py:2987 +#: order/models.py:2988 msgid "Return quantity must be greater than zero" msgstr "La quantità di reso deve essere maggiore di zero" -#: order/models.py:2992 +#: order/models.py:2993 msgid "Invalid quantity for serialized stock item" msgstr "Quantità non valida per l'elemento stock serializzato" -#: order/models.py:3008 +#: order/models.py:3009 msgid "Select item to return from customer" msgstr "Seleziona l'elemento da restituire dal cliente" -#: order/models.py:3023 +#: order/models.py:3024 msgid "Received Date" msgstr "Data di ricezione" -#: order/models.py:3024 +#: order/models.py:3025 msgid "The date this this return item was received" msgstr "La data in cui questo articolo restituito è stato ricevuto" -#: order/models.py:3036 +#: order/models.py:3037 msgid "Outcome" msgstr "Risultati" -#: order/models.py:3037 +#: order/models.py:3038 msgid "Outcome for this line item" msgstr "Risultato per questa voce di riga" -#: order/models.py:3044 +#: order/models.py:3045 msgid "Cost associated with return or repair for this line item" msgstr "Costo associato alla restituzione o riparazione per questa voce di linea" -#: order/models.py:3054 +#: order/models.py:3055 msgid "Return Order Extra Line" msgstr "Riga Extra ordine di reso" -#: order/serializers.py:91 +#: order/serializers.py:92 msgid "Order ID" msgstr "ID Ordine" -#: order/serializers.py:91 +#: order/serializers.py:92 msgid "ID of the order to duplicate" msgstr "ID dell'ordine da duplicare" -#: order/serializers.py:97 +#: order/serializers.py:98 msgid "Copy Lines" msgstr "Copia Linee" -#: order/serializers.py:98 +#: order/serializers.py:99 msgid "Copy line items from the original order" msgstr "Copia gli elementi di riga dall'ordine originale" -#: order/serializers.py:104 +#: order/serializers.py:105 msgid "Copy Extra Lines" msgstr "Copia Linee Extra" -#: order/serializers.py:105 +#: order/serializers.py:106 msgid "Copy extra line items from the original order" msgstr "Copia gli elementi di riga extra dall'ordine originale" -#: order/serializers.py:120 +#: order/serializers.py:121 #: report/templates/report/inventree_purchase_order_report.html:29 #: report/templates/report/inventree_return_order_report.html:19 #: report/templates/report/inventree_sales_order_report.html:22 msgid "Line Items" msgstr "Elementi Riga" -#: order/serializers.py:125 +#: order/serializers.py:126 msgid "Completed Lines" msgstr "Righe Completate" -#: order/serializers.py:192 +#: order/serializers.py:199 msgid "Duplicate Order" msgstr "Duplica Ordine" -#: order/serializers.py:193 +#: order/serializers.py:200 msgid "Specify options for duplicating this order" msgstr "Specifica le opzioni per duplicare questo ordine" -#: order/serializers.py:270 +#: order/serializers.py:278 msgid "Invalid order ID" msgstr "ID dell'ordine non corretto" -#: order/serializers.py:466 +#: order/serializers.py:477 msgid "Supplier Name" msgstr "Nome Fornitore" -#: order/serializers.py:510 +#: order/serializers.py:521 msgid "Order cannot be cancelled" msgstr "L'ordine non può essere cancellato" -#: order/serializers.py:525 order/serializers.py:1602 +#: order/serializers.py:536 order/serializers.py:1616 msgid "Allow order to be closed with incomplete line items" msgstr "Consenti di chiudere l'ordine con elementi di riga incompleti" -#: order/serializers.py:535 order/serializers.py:1612 +#: order/serializers.py:546 order/serializers.py:1626 msgid "Order has incomplete line items" msgstr "L'ordine ha elementi di riga incompleti" -#: order/serializers.py:665 +#: order/serializers.py:676 msgid "Order is not open" msgstr "L'ordine non è aperto" -#: order/serializers.py:692 +#: order/serializers.py:703 msgid "Auto Pricing" msgstr "Prezzo Automatico" -#: order/serializers.py:694 +#: order/serializers.py:705 msgid "Automatically calculate purchase price based on supplier part data" msgstr "Calcola automaticamente il prezzo di acquisto in base ai dati del fornitore articolo" -#: order/serializers.py:704 +#: order/serializers.py:715 msgid "Purchase price currency" msgstr "Valuta prezzo d'acquisto" -#: order/serializers.py:718 +#: order/serializers.py:729 msgid "Merge Items" msgstr "Unisci elementi" -#: order/serializers.py:720 +#: order/serializers.py:731 msgid "Merge items with the same part, destination and target date into one line item" msgstr "Unisce gli elementi con lo stesso articolo, destinazione e data di destinazione in una riga" -#: order/serializers.py:727 part/serializers.py:560 +#: order/serializers.py:738 part/serializers.py:471 msgid "SKU" msgstr "Codice articolo" -#: order/serializers.py:741 part/models.py:1089 part/serializers.py:372 +#: order/serializers.py:752 part/models.py:1177 part/serializers.py:337 msgid "Internal Part Number" msgstr "Numero Dell'articolo Interno" -#: order/serializers.py:749 +#: order/serializers.py:760 msgid "Internal Part Name" msgstr "Numero Articolo Interno" -#: order/serializers.py:765 +#: order/serializers.py:776 msgid "Supplier part must be specified" msgstr "L'articolo del fornitore deve essere specificato" -#: order/serializers.py:768 +#: order/serializers.py:779 msgid "Purchase order must be specified" msgstr "L'ordine di acquisto deve essere specificato" -#: order/serializers.py:776 +#: order/serializers.py:787 msgid "Supplier must match purchase order" msgstr "Il fornitore deve essere abbinato all'ordine d'acquisto" -#: order/serializers.py:777 +#: order/serializers.py:788 msgid "Purchase order must match supplier" msgstr "L'ordine di acquisto deve essere abbinato al fornitore" -#: order/serializers.py:825 order/serializers.py:1682 +#: order/serializers.py:836 order/serializers.py:1696 msgid "Line Item" msgstr "Elemento Riga" -#: order/serializers.py:834 order/serializers.py:974 order/serializers.py:2043 +#: order/serializers.py:845 order/serializers.py:985 order/serializers.py:2060 msgid "Select destination location for received items" msgstr "Seleziona la posizione di destinazione per gli elementi ricevuti" -#: order/serializers.py:850 +#: order/serializers.py:861 msgid "Enter batch code for incoming stock items" msgstr "Inserisci il codice univoco per gli articoli in arrivo" -#: order/serializers.py:857 stock/models.py:1160 +#: order/serializers.py:868 stock/models.py:1160 #: templates/email/stale_stock_notification.html:22 users/models.py:137 msgid "Expiry Date" msgstr "Data di Scadenza" -#: order/serializers.py:858 +#: order/serializers.py:869 msgid "Enter expiry date for incoming stock items" msgstr "Inserisci la data di scadenza per gli articoli in arrivo" -#: order/serializers.py:866 +#: order/serializers.py:877 msgid "Enter serial numbers for incoming stock items" msgstr "Inserisci i numeri di serie per gli articoli stock in arrivo" -#: order/serializers.py:876 +#: order/serializers.py:887 msgid "Override packaging information for incoming stock items" msgstr "Sovrascrivi le informazioni d'imballaggio per gli articoli in arrivo" -#: order/serializers.py:884 order/serializers.py:2048 +#: order/serializers.py:895 order/serializers.py:2065 msgid "Additional note for incoming stock items" msgstr "Nota aggiuntiva per gli articoli in arrivo" -#: order/serializers.py:891 +#: order/serializers.py:902 msgid "Barcode" msgstr "Codice a Barre" -#: order/serializers.py:892 +#: order/serializers.py:903 msgid "Scanned barcode" msgstr "Codice a barre scansionato" -#: order/serializers.py:908 +#: order/serializers.py:919 msgid "Barcode is already in use" msgstr "Il codice a barre è già in uso" -#: order/serializers.py:991 order/serializers.py:2067 +#: order/serializers.py:1002 order/serializers.py:2084 msgid "Line items must be provided" msgstr "Gli elementi di linea devono essere forniti" -#: order/serializers.py:1010 +#: order/serializers.py:1021 msgid "Destination location must be specified" msgstr "La destinazione deve essere specificata" -#: order/serializers.py:1017 +#: order/serializers.py:1028 msgid "Supplied barcode values must be unique" msgstr "I valori dei codici a barre forniti devono essere univoci" -#: order/serializers.py:1121 +#: order/serializers.py:1135 msgid "Shipments" msgstr "Spedizioni" -#: order/serializers.py:1125 +#: order/serializers.py:1139 msgid "Completed Shipments" msgstr "Spedizioni Completate" -#: order/serializers.py:1293 +#: order/serializers.py:1307 msgid "Sale price currency" msgstr "Valuta prezzo di vendita" -#: order/serializers.py:1339 +#: order/serializers.py:1353 msgid "Allocated Items" msgstr "Elementi Assegnati" -#: order/serializers.py:1484 +#: order/serializers.py:1498 msgid "No shipment details provided" msgstr "Nessun dettaglio di spedizione fornito" -#: order/serializers.py:1545 order/serializers.py:1691 +#: order/serializers.py:1559 order/serializers.py:1705 msgid "Line item is not associated with this order" msgstr "L'elemento di riga non è associato a questo ordine" -#: order/serializers.py:1564 +#: order/serializers.py:1578 msgid "Quantity must be positive" msgstr "La quantità deve essere positiva" -#: order/serializers.py:1701 +#: order/serializers.py:1715 msgid "Enter serial numbers to allocate" msgstr "Inserisci i numeri di serie da assegnare" -#: order/serializers.py:1723 order/serializers.py:1843 +#: order/serializers.py:1737 order/serializers.py:1857 msgid "Shipment has already been shipped" msgstr "La spedizione è già stata spedita" -#: order/serializers.py:1726 order/serializers.py:1846 +#: order/serializers.py:1740 order/serializers.py:1860 msgid "Shipment is not associated with this order" msgstr "La spedizione non è associata con questo ordine" -#: order/serializers.py:1781 +#: order/serializers.py:1795 msgid "No match found for the following serial numbers" msgstr "Nessuna corrispondenza trovata per i seguenti numeri di serie" -#: order/serializers.py:1788 +#: order/serializers.py:1802 msgid "The following serial numbers are unavailable" msgstr "I seguenti numeri di serie non sono disponibili" -#: order/serializers.py:2009 +#: order/serializers.py:2026 msgid "Return order line item" msgstr "Articoli Linea Ordine Reso" -#: order/serializers.py:2019 +#: order/serializers.py:2036 msgid "Line item does not match return order" msgstr "L'elemento di riga non corrisponde all'ordine di reso" -#: order/serializers.py:2022 +#: order/serializers.py:2039 msgid "Line item has already been received" msgstr "L'elemento di riga è già stato ricevuto" -#: order/serializers.py:2059 +#: order/serializers.py:2076 msgid "Items can only be received against orders which are in progress" msgstr "" -#: order/serializers.py:2124 +#: order/serializers.py:2141 msgid "Quantity to return" msgstr "Quantità da restituire" -#: order/serializers.py:2140 +#: order/serializers.py:2157 msgid "Line price currency" msgstr "Valuta del prezzo" @@ -5431,1190 +5559,1109 @@ msgstr "Ordini di Reso in Ritardo" msgid "Return order {ro} is now overdue" msgstr "L'ordine di reso {ro} è ora in ritardo" -#: part/api.py:108 +#: part/api.py:103 msgid "Starred" msgstr "Preferiti" -#: part/api.py:110 +#: part/api.py:105 msgid "Filter by starred categories" msgstr "Filtra per categorie preferite" -#: part/api.py:127 stock/api.py:288 +#: part/api.py:122 stock/api.py:288 msgid "Depth" msgstr "Profondità" -#: part/api.py:127 +#: part/api.py:122 msgid "Filter by category depth" msgstr "Filtra per profondità categoria" -#: part/api.py:145 stock/api.py:306 +#: part/api.py:140 stock/api.py:306 msgid "Top Level" msgstr "Livello principale" -#: part/api.py:147 +#: part/api.py:142 msgid "Filter by top-level categories" msgstr "Filtra per categorie di primo livello" -#: part/api.py:160 stock/api.py:321 +#: part/api.py:155 stock/api.py:321 msgid "Cascade" msgstr "Cascata" -#: part/api.py:162 +#: part/api.py:157 msgid "Include sub-categories in filtered results" msgstr "Includi sottocategorie nei risultati filtrati" -#: part/api.py:182 +#: part/api.py:177 msgid "Parent" msgstr "Genitore" -#: part/api.py:184 +#: part/api.py:179 msgid "Filter by parent category" msgstr "Filtra per categoria genitore" -#: part/api.py:219 +#: part/api.py:214 msgid "Exclude sub-categories under the specified category" msgstr "Escludi sottocategorie sotto la categoria specificata" -#: part/api.py:445 +#: part/api.py:440 msgid "Has Results" msgstr "Ha Risultati" -#: part/api.py:666 +#: part/api.py:661 msgid "Is Variant" msgstr "È una Variante" -#: part/api.py:674 +#: part/api.py:669 msgid "Is Revision" msgstr "E' una revisione" -#: part/api.py:684 +#: part/api.py:679 msgid "Has Revisions" msgstr "Ha revisioni" -#: part/api.py:865 +#: part/api.py:860 msgid "BOM Valid" msgstr "BOM Valido" -#: part/api.py:974 +#: part/api.py:969 msgid "Cascade Categories" msgstr "Categorie a Cascata" -#: part/api.py:975 +#: part/api.py:970 msgid "If true, include items in child categories of the given category" msgstr "Se Vero, includere gli elementi nelle categorie figlie della categoria specificata" -#: part/api.py:981 +#: part/api.py:976 msgid "Filter by numeric category ID or the literal 'null'" msgstr "Filtra per categoria ID numerica o per la stringa 'null'" -#: part/api.py:1533 +#: part/api.py:1258 msgid "Assembly part is testable" msgstr "L'articolo assemblato è provabile" -#: part/api.py:1542 +#: part/api.py:1267 msgid "Component part is testable" msgstr "Il componente è provabile" -#: part/api.py:1611 +#: part/api.py:1336 msgid "Uses" msgstr "Utilizzi" -#: part/models.py:96 part/models.py:4163 +#: part/models.py:93 part/models.py:436 #: templates/email/part_event_notification.html:16 msgid "Part Category" msgstr "Categoria Articoli" -#: part/models.py:97 users/ruleset.py:27 +#: part/models.py:94 users/ruleset.py:27 msgid "Part Categories" msgstr "Categorie Articolo" -#: part/models.py:115 part/models.py:1125 +#: part/models.py:112 part/models.py:1213 msgid "Default Location" msgstr "Posizione Predefinita" -#: part/models.py:116 +#: part/models.py:113 msgid "Default location for parts in this category" msgstr "Posizione predefinita per gli articoli di questa categoria" -#: part/models.py:121 stock/models.py:216 +#: part/models.py:118 stock/models.py:216 msgid "Structural" msgstr "Strutturale" -#: part/models.py:123 +#: part/models.py:120 msgid "Parts may not be directly assigned to a structural category, but may be assigned to child categories." msgstr "Le parti non possono essere assegnate direttamente a una categoria strutturale, ma possono essere assegnate a categorie subordinate." -#: part/models.py:132 +#: part/models.py:129 msgid "Default keywords" msgstr "Keywords predefinite" -#: part/models.py:133 +#: part/models.py:130 msgid "Default keywords for parts in this category" msgstr "Parole chiave predefinite per gli articoli in questa categoria" -#: part/models.py:140 stock/models.py:97 stock/models.py:198 +#: part/models.py:137 stock/models.py:97 stock/models.py:198 msgid "Icon" msgstr "Icona" -#: part/models.py:141 part/serializers.py:148 part/serializers.py:167 +#: part/models.py:138 part/serializers.py:147 part/serializers.py:166 #: stock/models.py:199 msgid "Icon (optional)" msgstr "Icona (facoltativa)" -#: part/models.py:185 +#: part/models.py:182 msgid "You cannot make this part category structural because some parts are already assigned to it!" msgstr "Non puoi rendere principale questa categoria di articoli perché alcuni articoli sono già assegnati!" -#: part/models.py:473 part/serializers.py:119 part/serializers.py:310 -#: users/ruleset.py:28 +#: part/models.py:392 +msgid "Part Category Parameter Template" +msgstr "Modello Parametro Categoria Articolo" + +#: part/models.py:448 +msgid "Default Value" +msgstr "Valore Predefinito" + +#: part/models.py:449 +msgid "Default Parameter Value" +msgstr "Valore Parametro Predefinito" + +#: part/models.py:551 part/serializers.py:118 users/ruleset.py:28 msgid "Parts" msgstr "Articoli" -#: part/models.py:525 +#: part/models.py:597 +msgid "Cannot delete parameters of a locked part" +msgstr "" + +#: part/models.py:602 +msgid "Cannot modify parameters of a locked part" +msgstr "" + +#: part/models.py:613 msgid "Cannot delete this part as it is locked" msgstr "Impossibile eliminare questo articolo perché è bloccato" -#: part/models.py:528 +#: part/models.py:616 msgid "Cannot delete this part as it is still active" msgstr "Impossibile eliminare questo articolo perché è ancora attivo" -#: part/models.py:533 +#: part/models.py:621 msgid "Cannot delete this part as it is used in an assembly" msgstr "Non è possibile eliminare questo articolo in quanto è utilizzato in una costruzione" -#: part/models.py:616 part/models.py:623 +#: part/models.py:704 part/models.py:711 #, python-brace-format msgid "Part '{self}' cannot be used in BOM for '{parent}' (recursive)" msgstr "L'articolo '{self}' non può essere usata nel BOM per '{parent}' (ricorsivo)" -#: part/models.py:635 +#: part/models.py:723 #, python-brace-format msgid "Part '{parent}' is used in BOM for '{self}' (recursive)" msgstr "L'articolo '{parent}' è usato nel BOM per '{self}' (ricorsivo)" -#: part/models.py:702 +#: part/models.py:790 #, python-brace-format msgid "IPN must match regex pattern {pattern}" msgstr "IPN deve corrispondere al modello regex {pattern}" -#: part/models.py:710 +#: part/models.py:798 msgid "Part cannot be a revision of itself" msgstr "L'articolo non può essere una revisione di se stesso" -#: part/models.py:717 +#: part/models.py:805 msgid "Cannot make a revision of a part which is already a revision" msgstr "Non puoi fare la revisione di un articolo che è già una revisione" -#: part/models.py:724 +#: part/models.py:812 msgid "Revision code must be specified" msgstr "Il codice di revisione deve essere specificato" -#: part/models.py:731 +#: part/models.py:819 msgid "Revisions are only allowed for assembly parts" msgstr "Le revisioni sono consentite solo per le parti di assemblaggio" -#: part/models.py:738 +#: part/models.py:826 msgid "Cannot make a revision of a template part" msgstr "Non è possibile effettuare la revisione di un articolo modello" -#: part/models.py:744 +#: part/models.py:832 msgid "Parent part must point to the same template" msgstr "L'articolo genitore deve puntare allo stesso modello" -#: part/models.py:841 +#: part/models.py:929 msgid "Stock item with this serial number already exists" msgstr "Esiste già un elemento stock con questo numero seriale" -#: part/models.py:971 +#: part/models.py:1059 msgid "Duplicate IPN not allowed in part settings" msgstr "Non è consentito duplicare IPN nelle impostazioni dell'articolo" -#: part/models.py:983 +#: part/models.py:1071 msgid "Duplicate part revision already exists." msgstr "La revisione dell'articolo duplicata esiste già." -#: part/models.py:992 +#: part/models.py:1080 msgid "Part with this Name, IPN and Revision already exists." msgstr "Un articolo con questo Nome, IPN e Revisione esiste già." -#: part/models.py:1007 +#: part/models.py:1095 msgid "Parts cannot be assigned to structural part categories!" msgstr "Gli articoli non possono essere assegnati a categorie articolo principali!" -#: part/models.py:1039 +#: part/models.py:1127 msgid "Part name" msgstr "Nome articolo" -#: part/models.py:1044 +#: part/models.py:1132 msgid "Is Template" msgstr "È Template" -#: part/models.py:1045 +#: part/models.py:1133 msgid "Is this part a template part?" msgstr "Quest'articolo è un articolo di template?" -#: part/models.py:1055 +#: part/models.py:1143 msgid "Is this part a variant of another part?" msgstr "Questa parte è una variante di un altro articolo?" -#: part/models.py:1056 +#: part/models.py:1144 msgid "Variant Of" msgstr "Variante Di" -#: part/models.py:1063 +#: part/models.py:1151 msgid "Part description (optional)" msgstr "Descrizione della parte (opzionale)" -#: part/models.py:1070 +#: part/models.py:1158 msgid "Keywords" msgstr "Parole Chiave" -#: part/models.py:1071 +#: part/models.py:1159 msgid "Part keywords to improve visibility in search results" msgstr "Parole chiave per migliorare la visibilità nei risultati di ricerca" -#: part/models.py:1081 +#: part/models.py:1169 msgid "Part category" msgstr "Categoria articolo" -#: part/models.py:1088 part/serializers.py:929 +#: part/models.py:1176 part/serializers.py:814 #: report/templates/report/inventree_stock_location_report.html:103 msgid "IPN" msgstr "IPN - Numero di riferimento interno" -#: part/models.py:1096 +#: part/models.py:1184 msgid "Part revision or version number" msgstr "Numero di revisione o di versione" -#: part/models.py:1097 report/models.py:228 +#: part/models.py:1185 report/models.py:228 msgid "Revision" msgstr "Revisione" -#: part/models.py:1106 +#: part/models.py:1194 msgid "Is this part a revision of another part?" msgstr "Questo articolo è una revisione di un altro articolo?" -#: part/models.py:1107 +#: part/models.py:1195 msgid "Revision Of" msgstr "Revisione di" -#: part/models.py:1123 +#: part/models.py:1211 msgid "Where is this item normally stored?" msgstr "Dove viene normalmente immagazzinato questo articolo?" -#: part/models.py:1169 +#: part/models.py:1257 msgid "Default Supplier" msgstr "Fornitore predefinito" -#: part/models.py:1170 +#: part/models.py:1258 msgid "Default supplier part" msgstr "Articolo fornitore predefinito" -#: part/models.py:1177 +#: part/models.py:1265 msgid "Default Expiry" msgstr "Scadenza Predefinita" -#: part/models.py:1178 +#: part/models.py:1266 msgid "Expiry time (in days) for stock items of this part" msgstr "Scadenza (in giorni) per gli articoli in giacenza di questo pezzo" -#: part/models.py:1186 part/serializers.py:1003 +#: part/models.py:1274 part/serializers.py:888 msgid "Minimum Stock" msgstr "Scorta Minima" -#: part/models.py:1187 +#: part/models.py:1275 msgid "Minimum allowed stock level" msgstr "Livello minimo di giacenza consentito" -#: part/models.py:1196 +#: part/models.py:1284 msgid "Units of measure for this part" msgstr "Unita di misura per questo articolo" -#: part/models.py:1203 +#: part/models.py:1291 msgid "Can this part be built from other parts?" msgstr "Questo articolo può essere costruito da altri articoli?" -#: part/models.py:1209 +#: part/models.py:1297 msgid "Can this part be used to build other parts?" msgstr "Questo articolo può essere utilizzato per costruire altri articoli?" -#: part/models.py:1215 +#: part/models.py:1303 msgid "Does this part have tracking for unique items?" msgstr "Questo articolo ha il tracciamento per gli elementi unici?" -#: part/models.py:1221 +#: part/models.py:1309 msgid "Can this part have test results recorded against it?" msgstr "Questo articolo può avere delle prove registrate?" -#: part/models.py:1227 +#: part/models.py:1315 msgid "Can this part be purchased from external suppliers?" msgstr "Quest'articolo può essere acquistato da fornitori esterni?" -#: part/models.py:1233 +#: part/models.py:1321 msgid "Can this part be sold to customers?" msgstr "Questo pezzo può essere venduto ai clienti?" -#: part/models.py:1237 +#: part/models.py:1325 msgid "Is this part active?" msgstr "Quest'articolo è attivo?" -#: part/models.py:1243 +#: part/models.py:1331 msgid "Locked parts cannot be edited" msgstr "Gli articoli bloccati non possono essere modificati" -#: part/models.py:1249 +#: part/models.py:1337 msgid "Is this a virtual part, such as a software product or license?" msgstr "È una parte virtuale, come un prodotto software o una licenza?" -#: part/models.py:1254 +#: part/models.py:1342 msgid "BOM Validated" msgstr "BOM Convalidata" -#: part/models.py:1255 +#: part/models.py:1343 msgid "Is the BOM for this part valid?" msgstr "Il BOM per questa parte è valido?" -#: part/models.py:1261 +#: part/models.py:1349 msgid "BOM checksum" msgstr "Somma di controllo Distinta Base" -#: part/models.py:1262 +#: part/models.py:1350 msgid "Stored BOM checksum" msgstr "Somma di controllo immagazzinata Distinta Base" -#: part/models.py:1270 +#: part/models.py:1358 msgid "BOM checked by" msgstr "Distinta Base controllata da" -#: part/models.py:1275 +#: part/models.py:1363 msgid "BOM checked date" msgstr "Data di verifica Distinta Base" -#: part/models.py:1291 +#: part/models.py:1379 msgid "Creation User" msgstr "Creazione Utente" -#: part/models.py:1301 +#: part/models.py:1389 msgid "Owner responsible for this part" msgstr "Utente responsabile di questo articolo" -#: part/models.py:2258 +#: part/models.py:2346 msgid "Sell multiple" msgstr "Vendita multipla" -#: part/models.py:3286 +#: part/models.py:3350 msgid "Currency used to cache pricing calculations" msgstr "Valuta utilizzata per calcolare i prezzi" -#: part/models.py:3302 +#: part/models.py:3366 msgid "Minimum BOM Cost" msgstr "Costo Minimo Distinta Base" -#: part/models.py:3303 +#: part/models.py:3367 msgid "Minimum cost of component parts" msgstr "Costo minimo dei componenti dell'articolo" -#: part/models.py:3309 +#: part/models.py:3373 msgid "Maximum BOM Cost" msgstr "Costo Massimo Distinta Base" -#: part/models.py:3310 +#: part/models.py:3374 msgid "Maximum cost of component parts" msgstr "Costo massimo dei componenti dell'articolo" -#: part/models.py:3316 +#: part/models.py:3380 msgid "Minimum Purchase Cost" msgstr "Importo Acquisto Minimo" -#: part/models.py:3317 +#: part/models.py:3381 msgid "Minimum historical purchase cost" msgstr "Costo minimo di acquisto storico" -#: part/models.py:3323 +#: part/models.py:3387 msgid "Maximum Purchase Cost" msgstr "Importo massimo acquisto" -#: part/models.py:3324 +#: part/models.py:3388 msgid "Maximum historical purchase cost" msgstr "Costo massimo di acquisto storico" -#: part/models.py:3330 +#: part/models.py:3394 msgid "Minimum Internal Price" msgstr "Prezzo Interno Minimo" -#: part/models.py:3331 +#: part/models.py:3395 msgid "Minimum cost based on internal price breaks" msgstr "Costo minimo basato su interruzioni di prezzo interne" -#: part/models.py:3337 +#: part/models.py:3401 msgid "Maximum Internal Price" msgstr "Prezzo Interno Massimo" -#: part/models.py:3338 +#: part/models.py:3402 msgid "Maximum cost based on internal price breaks" msgstr "Costo massimo basato su interruzioni di prezzo interne" -#: part/models.py:3344 +#: part/models.py:3408 msgid "Minimum Supplier Price" msgstr "Prezzo Minimo Fornitore" -#: part/models.py:3345 +#: part/models.py:3409 msgid "Minimum price of part from external suppliers" msgstr "Prezzo minimo articolo da fornitori esterni" -#: part/models.py:3351 +#: part/models.py:3415 msgid "Maximum Supplier Price" msgstr "Prezzo Massimo Fornitore" -#: part/models.py:3352 +#: part/models.py:3416 msgid "Maximum price of part from external suppliers" msgstr "Prezzo massimo dell'articolo proveniente da fornitori esterni" -#: part/models.py:3358 +#: part/models.py:3422 msgid "Minimum Variant Cost" msgstr "Variazione di costo minimo" -#: part/models.py:3359 +#: part/models.py:3423 msgid "Calculated minimum cost of variant parts" msgstr "Costo minimo calcolato di variazione dell'articolo" -#: part/models.py:3365 +#: part/models.py:3429 msgid "Maximum Variant Cost" msgstr "Massima variazione di costo" -#: part/models.py:3366 +#: part/models.py:3430 msgid "Calculated maximum cost of variant parts" msgstr "Costo massimo calcolato di variazione dell'articolo" -#: part/models.py:3372 part/models.py:3386 +#: part/models.py:3436 part/models.py:3450 msgid "Minimum Cost" msgstr "Costo Minimo" -#: part/models.py:3373 +#: part/models.py:3437 msgid "Override minimum cost" msgstr "Sovrascrivi il costo minimo" -#: part/models.py:3379 part/models.py:3393 +#: part/models.py:3443 part/models.py:3457 msgid "Maximum Cost" msgstr "Costo Massimo" -#: part/models.py:3380 +#: part/models.py:3444 msgid "Override maximum cost" msgstr "Sovrascrivi il costo massimo" -#: part/models.py:3387 +#: part/models.py:3451 msgid "Calculated overall minimum cost" msgstr "Costo minimo totale calcolato" -#: part/models.py:3394 +#: part/models.py:3458 msgid "Calculated overall maximum cost" msgstr "Costo massimo totale calcolato" -#: part/models.py:3400 +#: part/models.py:3464 msgid "Minimum Sale Price" msgstr "Prezzo Di Vendita Minimo" -#: part/models.py:3401 +#: part/models.py:3465 msgid "Minimum sale price based on price breaks" msgstr "Prezzo minimo di vendita basato sulle interruzioni di prezzo" -#: part/models.py:3407 +#: part/models.py:3471 msgid "Maximum Sale Price" msgstr "Prezzo Di Vendita Massimo" -#: part/models.py:3408 +#: part/models.py:3472 msgid "Maximum sale price based on price breaks" msgstr "Prezzo massimo di vendita basato sulle interruzioni di prezzo" -#: part/models.py:3414 +#: part/models.py:3478 msgid "Minimum Sale Cost" msgstr "Costo Di Vendita Minimo" -#: part/models.py:3415 +#: part/models.py:3479 msgid "Minimum historical sale price" msgstr "Prezzo storico minimo di vendita" -#: part/models.py:3421 +#: part/models.py:3485 msgid "Maximum Sale Cost" msgstr "Costo Di Vendita Minimo" -#: part/models.py:3422 +#: part/models.py:3486 msgid "Maximum historical sale price" msgstr "Prezzo storico massimo di vendita" -#: part/models.py:3440 +#: part/models.py:3504 msgid "Part for stocktake" msgstr "Articolo per l'inventario" -#: part/models.py:3445 +#: part/models.py:3509 msgid "Item Count" msgstr "Contatore Elemento" -#: part/models.py:3446 +#: part/models.py:3510 msgid "Number of individual stock entries at time of stocktake" msgstr "Numero di scorte individuali al momento dell'inventario" -#: part/models.py:3454 +#: part/models.py:3518 msgid "Total available stock at time of stocktake" msgstr "Totale delle scorte disponibili al momento dell'inventario" -#: part/models.py:3458 report/templates/report/inventree_test_report.html:106 +#: part/models.py:3522 report/templates/report/inventree_test_report.html:106 msgid "Date" msgstr "Data" -#: part/models.py:3459 +#: part/models.py:3523 msgid "Date stocktake was performed" msgstr "Data in cui è stato effettuato l'inventario" -#: part/models.py:3466 +#: part/models.py:3530 msgid "Minimum Stock Cost" msgstr "Costo Minimo Scorta" -#: part/models.py:3467 +#: part/models.py:3531 msgid "Estimated minimum cost of stock on hand" msgstr "Costo minimo stimato di magazzino a disposizione" -#: part/models.py:3473 +#: part/models.py:3537 msgid "Maximum Stock Cost" msgstr "Costo Massimo Scorte" -#: part/models.py:3474 +#: part/models.py:3538 msgid "Estimated maximum cost of stock on hand" msgstr "Costo massimo stimato di magazzino a disposizione" -#: part/models.py:3484 +#: part/models.py:3548 msgid "Part Sale Price Break" msgstr "Aggiungi Prezzo Ribassato di Vendita dell'Articolo" -#: part/models.py:3596 +#: part/models.py:3660 msgid "Part Test Template" msgstr "Modello Prove Articolo" -#: part/models.py:3622 +#: part/models.py:3686 msgid "Invalid template name - must include at least one alphanumeric character" msgstr "Nome modello non valido - deve includere almeno un carattere alfanumerico" -#: part/models.py:3643 part/models.py:3816 -msgid "Choices must be unique" -msgstr "Le scelte devono essere uniche" - -#: part/models.py:3654 +#: part/models.py:3718 msgid "Test templates can only be created for testable parts" msgstr "Il modello di prova può essere creato solo per gli articoli testabili" -#: part/models.py:3668 +#: part/models.py:3732 msgid "Test template with the same key already exists for part" msgstr "Il modello di test con la stessa chiave esiste già per l'articolo" -#: part/models.py:3685 +#: part/models.py:3749 msgid "Test Name" msgstr "Nome Test" -#: part/models.py:3686 +#: part/models.py:3750 msgid "Enter a name for the test" msgstr "Inserisci un nome per la prova" -#: part/models.py:3692 +#: part/models.py:3756 msgid "Test Key" msgstr "Chiave Di Prova" -#: part/models.py:3693 +#: part/models.py:3757 msgid "Simplified key for the test" msgstr "Chiave semplificata per la prova" -#: part/models.py:3700 +#: part/models.py:3764 msgid "Test Description" msgstr "Descrizione Di Prova" -#: part/models.py:3701 +#: part/models.py:3765 msgid "Enter description for this test" msgstr "Inserisci descrizione per questa prova" -#: part/models.py:3705 report/models.py:287 -msgid "Enabled" -msgstr "Abilitato" - -#: part/models.py:3705 +#: part/models.py:3769 msgid "Is this test enabled?" msgstr "Questo test è attivo?" -#: part/models.py:3710 +#: part/models.py:3774 msgid "Required" msgstr "Richiesto" -#: part/models.py:3711 +#: part/models.py:3775 msgid "Is this test required to pass?" msgstr "Questa prova è necessaria per passare?" -#: part/models.py:3716 +#: part/models.py:3780 msgid "Requires Value" msgstr "Valore richiesto" -#: part/models.py:3717 +#: part/models.py:3781 msgid "Does this test require a value when adding a test result?" msgstr "Questa prova richiede un valore quando si aggiunge un risultato di prova?" -#: part/models.py:3722 +#: part/models.py:3786 msgid "Requires Attachment" msgstr "Allegato Richiesto" -#: part/models.py:3724 +#: part/models.py:3788 msgid "Does this test require a file attachment when adding a test result?" msgstr "Questa prova richiede un file allegato quando si aggiunge un risultato di prova?" -#: part/models.py:3730 part/models.py:3878 -msgid "Choices" -msgstr "Scelte" - -#: part/models.py:3731 +#: part/models.py:3795 msgid "Valid choices for this test (comma-separated)" msgstr "Scelte valide per questo test (separate da virgole)" -#: part/models.py:3764 -msgid "Part Parameter Template" -msgstr "Modello parametro articolo" - -#: part/models.py:3791 -msgid "Checkbox parameters cannot have units" -msgstr "I parametri della casella di controllo non possono avere unità" - -#: part/models.py:3796 -msgid "Checkbox parameters cannot have choices" -msgstr "I parametri della casella di controllo non possono avere scelte" - -#: part/models.py:3833 -msgid "Parameter template name must be unique" -msgstr "Il nome del modello del parametro deve essere univoco" - -#: part/models.py:3851 -msgid "Parameter Name" -msgstr "Nome Parametro" - -#: part/models.py:3858 -msgid "Physical units for this parameter" -msgstr "Unità fisiche per questo parametro" - -#: part/models.py:3866 -msgid "Parameter description" -msgstr "Descrizione del parametro" - -#: part/models.py:3872 -msgid "Checkbox" -msgstr "Casella di spunta" - -#: part/models.py:3873 -msgid "Is this parameter a checkbox?" -msgstr "Questo parametro è una casella di spunta?" - -#: part/models.py:3879 -msgid "Valid choices for this parameter (comma-separated)" -msgstr "Scelte valide per questo parametro (separato da virgola)" - -#: part/models.py:3890 -msgid "Selection list for this parameter" -msgstr "Lista di selezione per questo parametro" - -#: part/models.py:3932 -msgid "Part Parameter" -msgstr "Parametri Articolo" - -#: part/models.py:3958 -msgid "Parameter cannot be modified - part is locked" -msgstr "Il parametro non può essere modificato - l'articolo è bloccato" - -#: part/models.py:3996 -msgid "Invalid choice for parameter value" -msgstr "Scelta non valida per il valore del parametro" - -#: part/models.py:4047 -msgid "Parent Part" -msgstr "Articolo principale" - -#: part/models.py:4055 part/models.py:4170 part/models.py:4171 -msgid "Parameter Template" -msgstr "Modello Parametro" - -#: part/models.py:4061 -msgid "Parameter Value" -msgstr "Valore del Parametro" - -#: part/models.py:4071 stock/serializers.py:718 -msgid "Optional note field" -msgstr "Note opzionali elemento" - -#: part/models.py:4118 -msgid "Part Category Parameter Template" -msgstr "Modello Parametro Categoria Articolo" - -#: part/models.py:4177 -msgid "Default Value" -msgstr "Valore Predefinito" - -#: part/models.py:4178 -msgid "Default Parameter Value" -msgstr "Valore Parametro Predefinito" - -#: part/models.py:4352 +#: part/models.py:3977 msgid "BOM item cannot be modified - assembly is locked" msgstr "L'articolo nella distinta base non può essere modificato - l'assemblaggio è bloccato" -#: part/models.py:4359 +#: part/models.py:3984 msgid "BOM item cannot be modified - variant assembly is locked" msgstr "L'articolo nella distinta base non può essere modificato - l'assemblaggio della variante è bloccato" -#: part/models.py:4369 +#: part/models.py:3994 msgid "Select parent part" msgstr "Seleziona articolo principale" -#: part/models.py:4379 +#: part/models.py:4004 msgid "Sub part" msgstr "Articolo subordinato" -#: part/models.py:4380 +#: part/models.py:4005 msgid "Select part to be used in BOM" msgstr "Seleziona l'articolo da utilizzare nella Distinta Base" -#: part/models.py:4391 +#: part/models.py:4016 msgid "BOM quantity for this BOM item" msgstr "Quantità Distinta Base per questo elemento Distinta Base" -#: part/models.py:4397 +#: part/models.py:4022 msgid "This BOM item is optional" msgstr "Questo elemento della Distinta Base è opzionale" -#: part/models.py:4403 +#: part/models.py:4028 msgid "This BOM item is consumable (it is not tracked in build orders)" msgstr "Questo elemento della Distinta Base è consumabile (non è tracciato negli ordini di produzione)" -#: part/models.py:4411 +#: part/models.py:4036 msgid "Setup Quantity" msgstr "Imposta quantità" -#: part/models.py:4412 +#: part/models.py:4037 msgid "Extra required quantity for a build, to account for setup losses" msgstr "" -#: part/models.py:4420 +#: part/models.py:4045 msgid "Attrition" msgstr "Logoramento" -#: part/models.py:4422 +#: part/models.py:4047 msgid "Estimated attrition for a build, expressed as a percentage (0-100)" msgstr "Stima del logoramento per una build, espressa in percentuale (0-100)" -#: part/models.py:4433 +#: part/models.py:4058 msgid "Rounding Multiple" msgstr "Arrotondamento Multiplo" -#: part/models.py:4435 +#: part/models.py:4060 msgid "Round up required production quantity to nearest multiple of this value" msgstr "Arrotonda la quantità di produzione richiesta al multiplo più vicino di questo valore" -#: part/models.py:4443 +#: part/models.py:4068 msgid "BOM item reference" msgstr "Riferimento Elemento Distinta Base" -#: part/models.py:4451 +#: part/models.py:4076 msgid "BOM item notes" msgstr "Note Elemento Distinta Base" -#: part/models.py:4457 +#: part/models.py:4082 msgid "Checksum" msgstr "Codice di controllo" -#: part/models.py:4458 +#: part/models.py:4083 msgid "BOM line checksum" msgstr "Codice di controllo Distinta Base" -#: part/models.py:4463 +#: part/models.py:4088 msgid "Validated" msgstr "Convalidato" -#: part/models.py:4464 +#: part/models.py:4089 msgid "This BOM item has been validated" msgstr "Questo articolo della distinta base è stato validato" -#: part/models.py:4469 +#: part/models.py:4094 msgid "Gets inherited" msgstr "Viene Ereditato" -#: part/models.py:4470 +#: part/models.py:4095 msgid "This BOM item is inherited by BOMs for variant parts" msgstr "Questo elemento della Distinta Base viene ereditato dalle Distinte Base per gli articoli varianti" -#: part/models.py:4476 +#: part/models.py:4101 msgid "Stock items for variant parts can be used for this BOM item" msgstr "Gli elementi in giacenza per gli articoli varianti possono essere utilizzati per questo elemento Distinta Base" -#: part/models.py:4583 stock/models.py:925 +#: part/models.py:4208 stock/models.py:925 msgid "Quantity must be integer value for trackable parts" msgstr "La quantità deve essere un valore intero per gli articoli rintracciabili" -#: part/models.py:4593 part/models.py:4595 +#: part/models.py:4218 part/models.py:4220 msgid "Sub part must be specified" msgstr "L'articolo subordinato deve essere specificato" -#: part/models.py:4746 +#: part/models.py:4371 msgid "BOM Item Substitute" msgstr "Elemento Distinta Base Sostituito" -#: part/models.py:4767 +#: part/models.py:4392 msgid "Substitute part cannot be the same as the master part" msgstr "La parte sostituita non può essere la stessa dell'articolo principale" -#: part/models.py:4780 +#: part/models.py:4405 msgid "Parent BOM item" msgstr "Elemento principale Distinta Base" -#: part/models.py:4788 +#: part/models.py:4413 msgid "Substitute part" msgstr "Sostituisci l'Articolo" -#: part/models.py:4804 +#: part/models.py:4429 msgid "Part 1" msgstr "Articolo 1" -#: part/models.py:4812 +#: part/models.py:4437 msgid "Part 2" msgstr "Articolo 2" -#: part/models.py:4813 +#: part/models.py:4438 msgid "Select Related Part" msgstr "Seleziona Prodotto Relativo" -#: part/models.py:4820 +#: part/models.py:4445 msgid "Note for this relationship" msgstr "Nota per questa relazione" -#: part/models.py:4839 +#: part/models.py:4464 msgid "Part relationship cannot be created between a part and itself" msgstr "Non si può creare una relazione tra l'articolo e sé stesso" -#: part/models.py:4844 +#: part/models.py:4469 msgid "Duplicate relationship already exists" msgstr "La relazione duplicata esiste già" -#: part/serializers.py:114 +#: part/serializers.py:113 msgid "Parent Category" msgstr "Categoria Superiore" -#: part/serializers.py:115 +#: part/serializers.py:114 msgid "Parent part category" msgstr "Categoria articolo principale" -#: part/serializers.py:123 part/serializers.py:164 +#: part/serializers.py:122 part/serializers.py:163 msgid "Subcategories" msgstr "Sottocategorie" -#: part/serializers.py:203 +#: part/serializers.py:202 msgid "Results" msgstr "Risultati" -#: part/serializers.py:204 +#: part/serializers.py:203 msgid "Number of results recorded against this template" msgstr "Numero di risultati registrati rispetto a questo modello" -#: part/serializers.py:235 part/serializers.py:253 stock/serializers.py:643 +#: part/serializers.py:234 part/serializers.py:252 stock/serializers.py:643 msgid "Purchase currency of this stock item" msgstr "Valuta di acquisto di questo articolo in stock" -#: part/serializers.py:280 +#: part/serializers.py:279 msgid "File is not an image" msgstr "Il file non è un immagine" -#: part/serializers.py:311 -msgid "Number of parts using this template" -msgstr "Numero di articoli che utilizzano questo modello" - -#: part/serializers.py:471 +#: part/serializers.py:382 msgid "Original Part" msgstr "Articolo Originale" -#: part/serializers.py:472 +#: part/serializers.py:383 msgid "Select original part to duplicate" msgstr "Seleziona l'articolo originale da duplicare" -#: part/serializers.py:477 +#: part/serializers.py:388 msgid "Copy Image" msgstr "Copia immagine" -#: part/serializers.py:478 +#: part/serializers.py:389 msgid "Copy image from original part" msgstr "Copia immagine dall'articolo originale" -#: part/serializers.py:484 +#: part/serializers.py:395 msgid "Copy BOM" msgstr "Copia Distinta Base" -#: part/serializers.py:485 +#: part/serializers.py:396 msgid "Copy bill of materials from original part" msgstr "Copia fattura dei materiali dall'articolo originale" -#: part/serializers.py:491 +#: part/serializers.py:402 msgid "Copy Parameters" msgstr "Copia parametri" -#: part/serializers.py:492 +#: part/serializers.py:403 msgid "Copy parameter data from original part" msgstr "Copia i dati dei parametri dall'articolo originale" -#: part/serializers.py:498 +#: part/serializers.py:409 msgid "Copy Notes" msgstr "Copia note" -#: part/serializers.py:499 +#: part/serializers.py:410 msgid "Copy notes from original part" msgstr "Copia note dall'articolo originale" -#: part/serializers.py:505 +#: part/serializers.py:416 msgid "Copy Tests" msgstr "Copia Test" -#: part/serializers.py:506 +#: part/serializers.py:417 msgid "Copy test templates from original part" msgstr "Copia modelli di test dall'articolo originale" -#: part/serializers.py:524 +#: part/serializers.py:435 msgid "Initial Stock Quantity" msgstr "Quantità iniziale" -#: part/serializers.py:526 +#: part/serializers.py:437 msgid "Specify initial stock quantity for this Part. If quantity is zero, no stock is added." msgstr "Specificare la quantità iniziale disponibile per questo Articolo. Se la quantità è zero, non viene aggiunta alcuna quantità." -#: part/serializers.py:533 +#: part/serializers.py:444 msgid "Initial Stock Location" msgstr "Ubicazione Iniziale Magazzino" -#: part/serializers.py:534 +#: part/serializers.py:445 msgid "Specify initial stock location for this Part" msgstr "Specificare l'ubicazione iniziale del magazzino per questo Articolo" -#: part/serializers.py:551 +#: part/serializers.py:462 msgid "Select supplier (or leave blank to skip)" msgstr "Seleziona il fornitore (o lascia vuoto per saltare)" -#: part/serializers.py:567 +#: part/serializers.py:478 msgid "Select manufacturer (or leave blank to skip)" msgstr "Seleziona il produttore (o lascia vuoto per saltare)" -#: part/serializers.py:577 +#: part/serializers.py:488 msgid "Manufacturer part number" msgstr "Codice articolo Produttore" -#: part/serializers.py:584 +#: part/serializers.py:495 msgid "Selected company is not a valid supplier" msgstr "L'azienda selezionata non è un fornitore valido" -#: part/serializers.py:593 +#: part/serializers.py:504 msgid "Selected company is not a valid manufacturer" msgstr "L'azienda selezionata non è un produttore valido" -#: part/serializers.py:604 +#: part/serializers.py:515 msgid "Manufacturer part matching this MPN already exists" msgstr "L'articolo del produttore che corrisponde a questo MPN esiste già" -#: part/serializers.py:611 +#: part/serializers.py:522 msgid "Supplier part matching this SKU already exists" msgstr "L'articolo del fornitore che corrisponde a questo SKU esiste già" -#: part/serializers.py:914 +#: part/serializers.py:799 msgid "Category Name" msgstr "Nome Categoria" -#: part/serializers.py:943 +#: part/serializers.py:828 msgid "Building" msgstr "In Costruzione" -#: part/serializers.py:944 +#: part/serializers.py:829 msgid "Quantity of this part currently being in production" msgstr "Quantità di questo articolo attualmente in produzione" -#: part/serializers.py:951 +#: part/serializers.py:836 msgid "Outstanding quantity of this part scheduled to be built" msgstr "" -#: part/serializers.py:971 stock/serializers.py:1019 stock/serializers.py:1189 +#: part/serializers.py:856 stock/serializers.py:1019 stock/serializers.py:1189 #: users/ruleset.py:30 msgid "Stock Items" msgstr "Articoli in magazzino" -#: part/serializers.py:975 +#: part/serializers.py:860 msgid "Revisions" msgstr "Revisioni" -#: part/serializers.py:979 +#: part/serializers.py:864 msgid "Suppliers" msgstr "Fornitori" -#: part/serializers.py:983 part/serializers.py:1297 +#: part/serializers.py:868 part/serializers.py:1162 #: templates/email/low_stock_notification.html:16 #: templates/email/part_event_notification.html:17 msgid "Total Stock" msgstr "Giacenze Totali" -#: part/serializers.py:991 +#: part/serializers.py:876 msgid "Unallocated Stock" msgstr "Scorte Non Assegnate" -#: part/serializers.py:999 +#: part/serializers.py:884 msgid "Variant Stock" msgstr "Scorta Variante" -#: part/serializers.py:1054 +#: part/serializers.py:943 msgid "Duplicate Part" msgstr "Duplica articolo" -#: part/serializers.py:1055 +#: part/serializers.py:944 msgid "Copy initial data from another Part" msgstr "Copia i dati iniziali da un altro Articolo" -#: part/serializers.py:1061 +#: part/serializers.py:950 msgid "Initial Stock" msgstr "Stock iniziale" -#: part/serializers.py:1062 +#: part/serializers.py:951 msgid "Create Part with initial stock quantity" msgstr "Crea Articolo con quantità di scorta iniziale" -#: part/serializers.py:1068 +#: part/serializers.py:957 msgid "Supplier Information" msgstr "Informazioni Fornitore" -#: part/serializers.py:1069 +#: part/serializers.py:958 msgid "Add initial supplier information for this part" msgstr "Aggiungi le informazioni iniziali del fornitore per questo articolo" -#: part/serializers.py:1077 +#: part/serializers.py:966 msgid "Copy Category Parameters" msgstr "Copia Parametri Categoria" -#: part/serializers.py:1078 +#: part/serializers.py:967 msgid "Copy parameter templates from selected part category" msgstr "Copia i parametri dai modelli della categoria articolo selezionata" -#: part/serializers.py:1083 +#: part/serializers.py:972 msgid "Existing Image" msgstr "Immagine esistente" -#: part/serializers.py:1084 +#: part/serializers.py:973 msgid "Filename of an existing part image" msgstr "Nome del file di un'immagine articolo esistente" -#: part/serializers.py:1101 +#: part/serializers.py:990 msgid "Image file does not exist" msgstr "Il file immagine non esiste" -#: part/serializers.py:1269 +#: part/serializers.py:1134 msgid "Validate entire Bill of Materials" msgstr "Convalida l'intera Fattura dei Materiali" -#: part/serializers.py:1303 part/serializers.py:1769 +#: part/serializers.py:1168 part/serializers.py:1634 msgid "Can Build" msgstr "Puoi produrre" -#: part/serializers.py:1320 +#: part/serializers.py:1185 msgid "Required for Build Orders" msgstr "Richiesto per gli Ordini di Produzione" -#: part/serializers.py:1325 +#: part/serializers.py:1190 msgid "Allocated to Build Orders" msgstr "Assegnato agli Ordini di Produzione" -#: part/serializers.py:1332 +#: part/serializers.py:1197 msgid "Required for Sales Orders" msgstr "Richiesto per gli Ordini di Vendita" -#: part/serializers.py:1336 +#: part/serializers.py:1201 msgid "Allocated to Sales Orders" msgstr "Assegnato agli Ordini di Vendita" -#: part/serializers.py:1475 +#: part/serializers.py:1340 msgid "Minimum Price" msgstr "Prezzo Minimo" -#: part/serializers.py:1476 +#: part/serializers.py:1341 msgid "Override calculated value for minimum price" msgstr "Sovrascrivi valore calcolato per il prezzo minimo" -#: part/serializers.py:1483 +#: part/serializers.py:1348 msgid "Minimum price currency" msgstr "Valuta del prezzo minimo" -#: part/serializers.py:1490 +#: part/serializers.py:1355 msgid "Maximum Price" msgstr "Prezzo Massimo" -#: part/serializers.py:1491 +#: part/serializers.py:1356 msgid "Override calculated value for maximum price" msgstr "Sovrascrivi valore calcolato per il prezzo massimo" -#: part/serializers.py:1498 +#: part/serializers.py:1363 msgid "Maximum price currency" msgstr "Valuta del prezzo massimo" -#: part/serializers.py:1527 +#: part/serializers.py:1392 msgid "Update" msgstr "Aggiorna" -#: part/serializers.py:1528 +#: part/serializers.py:1393 msgid "Update pricing for this part" msgstr "Aggiorna i prezzi per questo articolo" -#: part/serializers.py:1551 +#: part/serializers.py:1416 #, python-brace-format msgid "Could not convert from provided currencies to {default_currency}" msgstr "Impossibile convertire dalle valute fornite in {default_currency}" -#: part/serializers.py:1558 +#: part/serializers.py:1423 msgid "Minimum price must not be greater than maximum price" msgstr "Il prezzo minimo non può essere maggiore del prezzo massimo" -#: part/serializers.py:1561 +#: part/serializers.py:1426 msgid "Maximum price must not be less than minimum price" msgstr "Il prezzo massimo non può essere minore del prezzo minimo" -#: part/serializers.py:1715 +#: part/serializers.py:1580 msgid "Select the parent assembly" msgstr "" -#: part/serializers.py:1735 +#: part/serializers.py:1600 msgid "Select the component part" msgstr "Seleziona la componente" -#: part/serializers.py:1929 +#: part/serializers.py:1802 msgid "Select part to copy BOM from" msgstr "Seleziona l'articolo da cui copiare la distinta base" -#: part/serializers.py:1937 +#: part/serializers.py:1810 msgid "Remove Existing Data" msgstr "Rimuovi Dati Esistenti" -#: part/serializers.py:1938 +#: part/serializers.py:1811 msgid "Remove existing BOM items before copying" msgstr "Rimuovi elementi distinta base esistenti prima di copiare" -#: part/serializers.py:1943 +#: part/serializers.py:1816 msgid "Include Inherited" msgstr "Includi Ereditato" -#: part/serializers.py:1944 +#: part/serializers.py:1817 msgid "Include BOM items which are inherited from templated parts" msgstr "Includi gli elementi Distinta Base ereditati da prodotti template" -#: part/serializers.py:1949 +#: part/serializers.py:1822 msgid "Skip Invalid Rows" msgstr "Salta Righe Non Valide" -#: part/serializers.py:1950 +#: part/serializers.py:1823 msgid "Enable this option to skip invalid rows" msgstr "Abilita questa opzione per saltare le righe non valide" -#: part/serializers.py:1955 +#: part/serializers.py:1828 msgid "Copy Substitute Parts" msgstr "Copia Articoli sostitutivi" -#: part/serializers.py:1956 +#: part/serializers.py:1829 msgid "Copy substitute parts when duplicate BOM items" msgstr "Copia articoli sostitutivi quando duplichi gli elementi distinta base" @@ -6927,7 +6974,7 @@ msgstr "Fornisce supporto nativo per codici a barre" #: plugin/builtin/events/auto_issue_orders.py:19 #: plugin/builtin/exporter/bom_exporter.py:73 #: plugin/builtin/exporter/inventree_exporter.py:17 -#: plugin/builtin/exporter/part_parameter_exporter.py:36 +#: plugin/builtin/exporter/parameter_exporter.py:32 #: plugin/builtin/exporter/stocktake_exporter.py:47 #: plugin/builtin/integration/core_notifications.py:25 #: plugin/builtin/integration/core_notifications.py:69 @@ -7041,23 +7088,19 @@ msgid "Include total quantity of each part in the BOM" msgstr "" #: plugin/builtin/exporter/bom_exporter.py:35 -#: plugin/builtin/exporter/part_parameter_exporter.py:17 msgid "Stock Data" msgstr "Dati Scorte" #: plugin/builtin/exporter/bom_exporter.py:35 -#: plugin/builtin/exporter/part_parameter_exporter.py:17 msgid "Include part stock data" msgstr "" #: plugin/builtin/exporter/bom_exporter.py:39 -#: plugin/builtin/exporter/part_parameter_exporter.py:21 #: plugin/builtin/exporter/stocktake_exporter.py:20 msgid "Pricing Data" msgstr "" #: plugin/builtin/exporter/bom_exporter.py:39 -#: plugin/builtin/exporter/part_parameter_exporter.py:21 #: plugin/builtin/exporter/stocktake_exporter.py:20 msgid "Include part pricing data" msgstr "" @@ -7144,12 +7187,20 @@ msgstr "" msgid "Provides support for exporting data from InvenTree" msgstr "" -#: plugin/builtin/exporter/part_parameter_exporter.py:33 -msgid "Part Parameter Exporter" +#: plugin/builtin/exporter/parameter_exporter.py:16 +msgid "Exclude Inactive" msgstr "" -#: plugin/builtin/exporter/part_parameter_exporter.py:34 -msgid "Exporter for part parameter data" +#: plugin/builtin/exporter/parameter_exporter.py:17 +msgid "Exclude parameters which are inactive" +msgstr "" + +#: plugin/builtin/exporter/parameter_exporter.py:29 +msgid "Parameter Exporter" +msgstr "" + +#: plugin/builtin/exporter/parameter_exporter.py:30 +msgid "Exporter for model parameter data" msgstr "" #: plugin/builtin/exporter/stocktake_exporter.py:25 @@ -8079,19 +8130,19 @@ msgstr "Nessun risultato (richiesto)" msgid "No result" msgstr "Nessun risultato" -#: report/templatetags/report.py:167 +#: report/templatetags/report.py:169 msgid "Asset file does not exist" msgstr "" -#: report/templatetags/report.py:224 report/templatetags/report.py:300 +#: report/templatetags/report.py:226 report/templatetags/report.py:302 msgid "Image file not found" msgstr "File immagine non trovato" -#: report/templatetags/report.py:325 +#: report/templatetags/report.py:327 msgid "part_image tag requires a Part instance" msgstr "" -#: report/templatetags/report.py:362 +#: report/templatetags/report.py:383 msgid "company_image tag requires a Company instance" msgstr "" @@ -8455,115 +8506,119 @@ msgstr "I numeri di serie devono essere forniti come elenco" msgid "Quantity does not match serial numbers" msgstr "La quantità non corrisponde ai numeri di serie" -#: stock/models.py:2012 stock/models.py:2917 +#: stock/models.py:1912 +msgid "Cannot assign stock to structural location" +msgstr "" + +#: stock/models.py:2029 stock/models.py:2934 msgid "Test template does not exist" msgstr "" -#: stock/models.py:2030 +#: stock/models.py:2047 msgid "Stock item has been assigned to a sales order" msgstr "L'elemento di magazzino è stato assegnato a un ordine di vendita" -#: stock/models.py:2034 +#: stock/models.py:2051 msgid "Stock item is installed in another item" msgstr "L'elemento di magazzino è installato in un altro elemento" -#: stock/models.py:2037 +#: stock/models.py:2054 msgid "Stock item contains other items" msgstr "L'elemento di magazzino contiene altri elementi" -#: stock/models.py:2040 +#: stock/models.py:2057 msgid "Stock item has been assigned to a customer" msgstr "L'elemento di magazzino è stato assegnato a un cliente" -#: stock/models.py:2043 stock/models.py:2226 +#: stock/models.py:2060 stock/models.py:2243 msgid "Stock item is currently in production" msgstr "L'elemento di magazzino è attualmente in produzione" -#: stock/models.py:2046 +#: stock/models.py:2063 msgid "Serialized stock cannot be merged" msgstr "Il magazzino serializzato non può essere unito" -#: stock/models.py:2053 stock/serializers.py:1462 +#: stock/models.py:2070 stock/serializers.py:1462 msgid "Duplicate stock items" msgstr "Duplica elementi di magazzino" -#: stock/models.py:2057 +#: stock/models.py:2074 msgid "Stock items must refer to the same part" msgstr "Gli elementi di magazzino devono riferirsi allo stesso articolo" -#: stock/models.py:2065 +#: stock/models.py:2082 msgid "Stock items must refer to the same supplier part" msgstr "Gli elementi di magazzino devono riferirsi allo stesso articolo fornitore" -#: stock/models.py:2070 +#: stock/models.py:2087 msgid "Stock status codes must match" msgstr "I codici di stato dello stock devono corrispondere" -#: stock/models.py:2349 +#: stock/models.py:2366 msgid "StockItem cannot be moved as it is not in stock" msgstr "Le giacenze non possono essere spostate perché non disponibili" -#: stock/models.py:2818 +#: stock/models.py:2835 msgid "Stock Item Tracking" msgstr "" -#: stock/models.py:2849 +#: stock/models.py:2866 msgid "Entry notes" msgstr "Note d'ingresso" -#: stock/models.py:2889 +#: stock/models.py:2906 msgid "Stock Item Test Result" msgstr "" -#: stock/models.py:2920 +#: stock/models.py:2937 msgid "Value must be provided for this test" msgstr "Il valore deve essere fornito per questo test" -#: stock/models.py:2924 +#: stock/models.py:2941 msgid "Attachment must be uploaded for this test" msgstr "L'allegato deve essere caricato per questo test" -#: stock/models.py:2929 +#: stock/models.py:2946 msgid "Invalid value for this test" msgstr "" -#: stock/models.py:2953 +#: stock/models.py:2970 msgid "Test result" msgstr "Risultato Test" -#: stock/models.py:2960 +#: stock/models.py:2977 msgid "Test output value" msgstr "Test valore output" -#: stock/models.py:2968 stock/serializers.py:248 +#: stock/models.py:2985 stock/serializers.py:248 msgid "Test result attachment" msgstr "Risultato della prova allegato" -#: stock/models.py:2972 +#: stock/models.py:2989 msgid "Test notes" msgstr "Note del test" -#: stock/models.py:2980 +#: stock/models.py:2997 msgid "Test station" msgstr "" -#: stock/models.py:2981 +#: stock/models.py:2998 msgid "The identifier of the test station where the test was performed" msgstr "" -#: stock/models.py:2987 +#: stock/models.py:3004 msgid "Started" msgstr "" -#: stock/models.py:2988 +#: stock/models.py:3005 msgid "The timestamp of the test start" msgstr "" -#: stock/models.py:2994 +#: stock/models.py:3011 msgid "Finished" msgstr "" -#: stock/models.py:2995 +#: stock/models.py:3012 msgid "The timestamp of the test finish" msgstr "" @@ -8677,8 +8732,8 @@ msgstr "" msgid "Quantity must not exceed available stock quantity ({q})" msgstr "La quantità non deve superare la quantità disponibile ({q})" -#: stock/serializers.py:711 stock/serializers.py:1419 stock/serializers.py:1732 -#: stock/serializers.py:1781 +#: stock/serializers.py:711 stock/serializers.py:1419 stock/serializers.py:1740 +#: stock/serializers.py:1789 msgid "Destination stock location" msgstr "Posizione magazzino di destinazione" @@ -8834,19 +8889,19 @@ msgstr "" msgid "Stock transaction notes" msgstr "Note sugli spostamenti di magazzino" -#: stock/serializers.py:1787 +#: stock/serializers.py:1795 msgid "Merge into existing stock" msgstr "" -#: stock/serializers.py:1788 +#: stock/serializers.py:1796 msgid "Merge returned items into existing stock items if possible" msgstr "" -#: stock/serializers.py:1831 +#: stock/serializers.py:1839 msgid "Next Serial Number" msgstr "" -#: stock/serializers.py:1837 +#: stock/serializers.py:1845 msgid "Previous Serial Number" msgstr "" @@ -8902,83 +8957,87 @@ msgstr "Stock aggiunto manualmente" msgid "Stock manually removed" msgstr "Stock rimosso manualmente" -#: stock/status_codes.py:57 +#: stock/status_codes.py:56 +msgid "Serialized stock items" +msgstr "" + +#: stock/status_codes.py:58 msgid "Returned to stock" msgstr "" -#: stock/status_codes.py:60 +#: stock/status_codes.py:61 msgid "Location changed" msgstr "Posizione cambiata" -#: stock/status_codes.py:61 +#: stock/status_codes.py:62 msgid "Stock updated" msgstr "Stock aggiornato" -#: stock/status_codes.py:64 +#: stock/status_codes.py:65 msgid "Installed into assembly" msgstr "Installato nell'assemblaggio" -#: stock/status_codes.py:65 +#: stock/status_codes.py:66 msgid "Removed from assembly" msgstr "Rimosso dall'assemblaggio" -#: stock/status_codes.py:67 +#: stock/status_codes.py:68 msgid "Installed component item" msgstr "Componente installato" -#: stock/status_codes.py:68 +#: stock/status_codes.py:69 msgid "Removed component item" msgstr "Elemento componente rimosso" -#: stock/status_codes.py:71 +#: stock/status_codes.py:72 msgid "Split from parent item" msgstr "Diviso dall'elemento genitore" -#: stock/status_codes.py:72 +#: stock/status_codes.py:73 msgid "Split child item" msgstr "Dividi elemento figlio" -#: stock/status_codes.py:75 +#: stock/status_codes.py:76 msgid "Merged stock items" msgstr "Elemento stock raggruppato" -#: stock/status_codes.py:78 +#: stock/status_codes.py:79 msgid "Converted to variant" msgstr "Convertito in variante" -#: stock/status_codes.py:81 +#: stock/status_codes.py:82 msgid "Build order output created" msgstr "Genera l'output dell'ordine creato" -#: stock/status_codes.py:82 +#: stock/status_codes.py:83 msgid "Build order output completed" msgstr "Build order output completato" -#: stock/status_codes.py:83 +#: stock/status_codes.py:84 msgid "Build order output rejected" msgstr "Ordine di costruzione rifiutato" -#: stock/status_codes.py:84 +#: stock/status_codes.py:85 msgid "Consumed by build order" msgstr "Impegnato dall'ordine di costruzione" -#: stock/status_codes.py:87 +#: stock/status_codes.py:88 msgid "Shipped against Sales Order" msgstr "Spedito contro l'ordine di vendita" -#: stock/status_codes.py:90 +#: stock/status_codes.py:91 msgid "Received against Purchase Order" msgstr "Ricevuto contro l'ordine di acquisto" -#: stock/status_codes.py:93 +#: stock/status_codes.py:94 msgid "Returned against Return Order" msgstr "Restituito contro l'ordine di ritorno" -#: stock/status_codes.py:96 +#: stock/status_codes.py:97 msgid "Sent to customer" msgstr "Inviato al cliente" -#: stock/status_codes.py:97 +#: stock/status_codes.py:98 msgid "Returned from customer" msgstr "Restituito dal cliente" diff --git a/src/backend/InvenTree/locale/ja/LC_MESSAGES/django.po b/src/backend/InvenTree/locale/ja/LC_MESSAGES/django.po index f76ff41c13..977bf33a12 100644 --- a/src/backend/InvenTree/locale/ja/LC_MESSAGES/django.po +++ b/src/backend/InvenTree/locale/ja/LC_MESSAGES/django.po @@ -2,8 +2,8 @@ msgid "" msgstr "" "Project-Id-Version: inventree\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-11-19 04:55+0000\n" -"PO-Revision-Date: 2025-11-19 04:59\n" +"POT-Creation-Date: 2025-12-07 07:33+0000\n" +"PO-Revision-Date: 2025-12-07 07:36\n" "Last-Translator: \n" "Language-Team: Japanese\n" "Language: ja_JP\n" @@ -57,7 +57,7 @@ msgstr "" msgid "This field must be unique." msgstr "" -#: InvenTree/api.py:775 +#: InvenTree/api.py:803 msgid "User does not have permission to view this model" msgstr "ユーザーにこのモデルを表示する権限がありません" @@ -81,22 +81,22 @@ msgstr "指定されたプライマリEメールアドレスは無効です。" msgid "The provided email domain is not approved." msgstr "指定されたメールドメインは承認されていません。" -#: InvenTree/conversion.py:166 +#: InvenTree/conversion.py:240 #, python-brace-format msgid "Invalid unit provided ({unit})" msgstr "無効な単位 ({unit})" -#: InvenTree/conversion.py:183 +#: InvenTree/conversion.py:257 msgid "No value provided" msgstr "値がありません" -#: InvenTree/conversion.py:210 +#: InvenTree/conversion.py:284 #, python-brace-format msgid "Could not convert {original} to {unit}" msgstr "{original}を{unit}に変換できませんでした。" -#: InvenTree/conversion.py:212 InvenTree/conversion.py:226 -#: InvenTree/helpers.py:597 order/models.py:720 order/models.py:1015 +#: InvenTree/conversion.py:286 InvenTree/conversion.py:300 +#: InvenTree/helpers.py:597 order/models.py:721 order/models.py:1016 msgid "Invalid quantity provided" msgstr "数量コードが無効です" @@ -112,11 +112,11 @@ msgstr "日付を入力する" msgid "Invalid decimal value" msgstr "無効な10進数値" -#: InvenTree/fields.py:218 InvenTree/models.py:1067 build/serializers.py:509 -#: build/serializers.py:580 build/serializers.py:1788 company/models.py:857 -#: order/models.py:1780 +#: InvenTree/fields.py:218 InvenTree/models.py:1228 build/serializers.py:517 +#: build/serializers.py:588 build/serializers.py:1796 company/models.py:811 +#: order/models.py:1781 #: report/templates/report/inventree_build_order_report.html:172 -#: stock/models.py:2848 stock/models.py:2972 stock/serializers.py:717 +#: stock/models.py:2865 stock/models.py:2989 stock/serializers.py:717 #: stock/serializers.py:893 stock/serializers.py:1035 stock/serializers.py:1336 #: stock/serializers.py:1425 stock/serializers.py:1624 msgid "Notes" @@ -171,35 +171,35 @@ msgstr "この値からHTMLタグを削除" msgid "Data contains prohibited markdown content" msgstr "データに禁止されているマークダウン・コンテンツが含まれています。" -#: InvenTree/helpers_model.py:133 +#: InvenTree/helpers_model.py:134 msgid "Connection error" msgstr "接続エラー" -#: InvenTree/helpers_model.py:138 InvenTree/helpers_model.py:145 +#: InvenTree/helpers_model.py:139 InvenTree/helpers_model.py:146 msgid "Server responded with invalid status code" msgstr "サーバは無効なステータスコードで応答しました" -#: InvenTree/helpers_model.py:141 +#: InvenTree/helpers_model.py:142 msgid "Exception occurred" msgstr "例外が発生しました" -#: InvenTree/helpers_model.py:151 +#: InvenTree/helpers_model.py:152 msgid "Server responded with invalid Content-Length value" msgstr "サーバーが無効なContent-Length値で応答しました" -#: InvenTree/helpers_model.py:154 +#: InvenTree/helpers_model.py:155 msgid "Image size is too large" msgstr "画像サイズが大きすぎます" -#: InvenTree/helpers_model.py:166 +#: InvenTree/helpers_model.py:167 msgid "Image download exceeded maximum size" msgstr "画像のダウンロードが最大サイズを超えました" -#: InvenTree/helpers_model.py:171 +#: InvenTree/helpers_model.py:172 msgid "Remote server returned empty response" msgstr "リモートサーバーが空のレスポンスを返しました" -#: InvenTree/helpers_model.py:179 +#: InvenTree/helpers_model.py:180 msgid "Supplied URL is not a valid image file" msgstr "指定されたURLは有効な画像ファイルではありません" @@ -207,7 +207,7 @@ msgstr "指定されたURLは有効な画像ファイルではありません" msgid "Log in to the app" msgstr "アプリにログイン" -#: InvenTree/magic_login.py:41 company/models.py:172 users/serializers.py:198 +#: InvenTree/magic_login.py:41 company/models.py:173 users/serializers.py:198 msgid "Email" msgstr "メールアドレス" @@ -215,160 +215,176 @@ msgstr "メールアドレス" msgid "You must enable two-factor authentication before doing anything else." msgstr "二要素認証を有効にする必要があります。" -#: InvenTree/models.py:111 +#: InvenTree/models.py:114 msgid "Error running plugin validation" msgstr "プラグイン検証の実行エラー" -#: InvenTree/models.py:192 +#: InvenTree/models.py:195 msgid "Metadata must be a python dict object" msgstr "メタデータは python dict オブジェクトでなければなりません。" -#: InvenTree/models.py:198 +#: InvenTree/models.py:201 msgid "Plugin Metadata" msgstr "プラグインメタデータ" -#: InvenTree/models.py:199 +#: InvenTree/models.py:202 msgid "JSON metadata field, for use by external plugins" msgstr "外部プラグインで使用するためのJSONメタデータフィールド" -#: InvenTree/models.py:382 +#: InvenTree/models.py:385 msgid "Improperly formatted pattern" msgstr "不適切な書式パターン" -#: InvenTree/models.py:389 +#: InvenTree/models.py:392 msgid "Unknown format key specified" msgstr "不明なフォーマットキーが指定されました" -#: InvenTree/models.py:395 +#: InvenTree/models.py:398 msgid "Missing required format key" msgstr "必要なフォーマットキーがありません" -#: InvenTree/models.py:406 +#: InvenTree/models.py:409 msgid "Reference field cannot be empty" msgstr "参照フィールドを空にすることはできません。" -#: InvenTree/models.py:414 +#: InvenTree/models.py:417 msgid "Reference must match required pattern" msgstr "参照は必須パターンに一致する必要があります。" -#: InvenTree/models.py:445 +#: InvenTree/models.py:448 msgid "Reference number is too large" msgstr "参照番号が大きすぎる" -#: InvenTree/models.py:743 +#: InvenTree/models.py:896 msgid "Invalid choice" msgstr "無効な選択です" -#: InvenTree/models.py:856 common/models.py:1410 common/models.py:1837 -#: common/models.py:2096 common/models.py:2221 common/serializers.py:535 -#: company/models.py:615 generic/states/serializers.py:20 machine/models.py:25 -#: part/models.py:1039 part/models.py:3850 plugin/models.py:54 +#: InvenTree/models.py:1017 common/models.py:1414 common/models.py:1841 +#: common/models.py:2102 common/models.py:2227 common/models.py:2494 +#: common/serializers.py:539 generic/states/serializers.py:20 +#: machine/models.py:25 part/models.py:1127 plugin/models.py:54 #: report/models.py:216 stock/models.py:84 msgid "Name" msgstr "お名前" -#: InvenTree/models.py:862 build/models.py:252 common/models.py:171 -#: common/models.py:2228 common/models.py:2341 company/models.py:543 -#: company/models.py:848 order/models.py:442 order/models.py:1825 -#: part/models.py:1062 part/models.py:3865 report/models.py:222 +#: InvenTree/models.py:1023 build/models.py:253 common/models.py:175 +#: common/models.py:2234 common/models.py:2347 common/models.py:2509 +#: company/models.py:545 company/models.py:802 order/models.py:443 +#: order/models.py:1826 part/models.py:1150 report/models.py:222 #: report/models.py:815 report/models.py:841 #: report/templates/report/inventree_build_order_report.html:117 #: stock/models.py:90 msgid "Description" msgstr "説明" -#: InvenTree/models.py:863 stock/models.py:91 +#: InvenTree/models.py:1024 stock/models.py:91 msgid "Description (optional)" msgstr "説明 (オプション)" -#: InvenTree/models.py:878 common/models.py:2394 +#: InvenTree/models.py:1039 common/models.py:2815 msgid "Path" msgstr "パス" -#: InvenTree/models.py:983 +#: InvenTree/models.py:1144 msgid "Duplicate names cannot exist under the same parent" msgstr "同じ親に重複した名前は存在しません。" -#: InvenTree/models.py:1067 +#: InvenTree/models.py:1228 msgid "Markdown notes (optional)" msgstr "マークダウンメモ (オプション)" -#: InvenTree/models.py:1098 +#: InvenTree/models.py:1259 msgid "Barcode Data" msgstr "バーコード情報" -#: InvenTree/models.py:1099 +#: InvenTree/models.py:1260 msgid "Third party barcode data" msgstr "サードパーティ製バーコードデータ" -#: InvenTree/models.py:1105 +#: InvenTree/models.py:1266 msgid "Barcode Hash" msgstr "バーコードハッシュ" -#: InvenTree/models.py:1106 +#: InvenTree/models.py:1267 msgid "Unique hash of barcode data" msgstr "バーコードデータのユニークなハッシュ" -#: InvenTree/models.py:1187 +#: InvenTree/models.py:1348 msgid "Existing barcode found" msgstr "既存のバーコードが見つかりました" -#: InvenTree/models.py:1269 +#: InvenTree/models.py:1430 msgid "Task Failure" msgstr "タスクの失敗" -#: InvenTree/models.py:1270 +#: InvenTree/models.py:1431 #, python-brace-format msgid "Background worker task '{f}' failed after {n} attempts" msgstr "バックグラウンドワーカータスク'{f}'が{n}回試行した後に失敗しました" -#: InvenTree/models.py:1297 +#: InvenTree/models.py:1458 msgid "Server Error" msgstr "サーバーエラー" -#: InvenTree/models.py:1298 +#: InvenTree/models.py:1459 msgid "An error has been logged by the server." msgstr "サーバーによってエラーが記録されました。" -#: InvenTree/models.py:1340 common/models.py:1748 +#: InvenTree/models.py:1501 common/models.py:1752 #: report/templates/report/inventree_bill_of_materials_report.html:126 #: report/templates/report/inventree_bill_of_materials_report.html:148 #: report/templates/report/inventree_return_order_report.html:35 msgid "Image" msgstr "画像" -#: InvenTree/serializers.py:253 part/models.py:4571 +#: InvenTree/serializers.py:255 part/models.py:4196 msgid "Must be a valid number" msgstr "有効な数字でなければなりません" -#: InvenTree/serializers.py:295 company/models.py:214 part/models.py:3285 +#: InvenTree/serializers.py:297 company/models.py:215 part/models.py:3349 msgid "Currency" msgstr "通貨" -#: InvenTree/serializers.py:298 part/serializers.py:1385 +#: InvenTree/serializers.py:300 part/serializers.py:1250 msgid "Select currency from available options" msgstr "利用可能なオプションから通貨を選択してください" -#: InvenTree/serializers.py:653 +#: InvenTree/serializers.py:654 +msgid "This field may not be null." +msgstr "" + +#: InvenTree/serializers.py:660 msgid "Invalid value" msgstr "無効な値です。" -#: InvenTree/serializers.py:690 +#: InvenTree/serializers.py:697 msgid "Remote Image" msgstr "遠隔画像" -#: InvenTree/serializers.py:691 +#: InvenTree/serializers.py:698 msgid "URL of remote image file" msgstr "外部画像ファイルのURL" -#: InvenTree/serializers.py:709 +#: InvenTree/serializers.py:716 msgid "Downloading images from remote URL is not enabled" msgstr "外部URLからの画像ダウンロードは許可されていません" -#: InvenTree/serializers.py:716 +#: InvenTree/serializers.py:723 msgid "Failed to download image from remote URL" msgstr "リモートURLからの画像ダウンロードに失敗しました" +#: InvenTree/serializers.py:806 +msgid "Invalid content type format" +msgstr "" + +#: InvenTree/serializers.py:809 +msgid "Content type not found" +msgstr "" + +#: InvenTree/serializers.py:815 +msgid "Content type does not match required mixin class" +msgstr "" + #: InvenTree/setting/locales.py:20 msgid "Arabic" msgstr "アラビア語" @@ -537,30 +553,30 @@ msgstr "無効な物理単位" msgid "Not a valid currency code" msgstr "有効な通貨コードではありません。" -#: build/api.py:54 order/api.py:111 order/api.py:270 order/api.py:1373 -#: order/serializers.py:132 +#: build/api.py:54 order/api.py:116 order/api.py:275 order/api.py:1378 +#: order/serializers.py:133 msgid "Order Status" msgstr "注文ステータス" -#: build/api.py:80 build/models.py:264 +#: build/api.py:80 build/models.py:265 msgid "Parent Build" msgstr "親ビルド" -#: build/api.py:84 build/api.py:831 order/api.py:547 order/api.py:770 -#: order/api.py:1174 order/api.py:1449 stock/api.py:573 +#: build/api.py:84 build/api.py:837 order/api.py:553 order/api.py:776 +#: order/api.py:1179 order/api.py:1454 stock/api.py:573 msgid "Include Variants" msgstr "バリアントを含む" -#: build/api.py:100 build/api.py:466 build/api.py:845 build/models.py:270 -#: build/serializers.py:1225 build/serializers.py:1356 -#: build/serializers.py:1427 company/models.py:1067 company/serializers.py:445 -#: order/api.py:298 order/api.py:302 order/api.py:929 order/api.py:1187 -#: order/api.py:1190 order/models.py:1941 order/models.py:2108 -#: order/models.py:2109 part/api.py:1233 part/api.py:1236 part/api.py:1302 -#: part/api.py:1589 part/models.py:472 part/models.py:3296 part/models.py:3439 -#: part/models.py:3497 part/models.py:3518 part/models.py:3540 -#: part/models.py:3679 part/models.py:4046 part/models.py:4368 -#: part/models.py:4787 part/serializers.py:1928 +#: build/api.py:100 build/api.py:472 build/api.py:851 build/models.py:271 +#: build/serializers.py:1233 build/serializers.py:1364 +#: build/serializers.py:1435 company/models.py:1021 company/serializers.py:490 +#: order/api.py:303 order/api.py:307 order/api.py:934 order/api.py:1192 +#: order/api.py:1195 order/models.py:1942 order/models.py:2109 +#: order/models.py:2110 part/api.py:1160 part/api.py:1163 part/api.py:1314 +#: part/models.py:550 part/models.py:3360 part/models.py:3503 +#: part/models.py:3561 part/models.py:3582 part/models.py:3604 +#: part/models.py:3743 part/models.py:3993 part/models.py:4412 +#: part/serializers.py:1801 #: report/templates/report/inventree_bill_of_materials_report.html:110 #: report/templates/report/inventree_bill_of_materials_report.html:137 #: report/templates/report/inventree_build_order_report.html:109 @@ -580,9 +596,9 @@ msgstr "バリアントを含む" msgid "Part" msgstr "パーツ" -#: build/api.py:120 build/api.py:123 build/serializers.py:1438 part/api.py:980 -#: part/api.py:1316 part/api.py:1600 part/models.py:1080 part/models.py:3568 -#: part/models.py:4162 part/serializers.py:1752 stock/api.py:869 +#: build/api.py:120 build/api.py:123 build/serializers.py:1446 part/api.py:975 +#: part/api.py:1325 part/models.py:435 part/models.py:1168 part/models.py:3632 +#: part/serializers.py:1617 stock/api.py:869 msgid "Category" msgstr "カテゴリ" @@ -590,7 +606,7 @@ msgstr "カテゴリ" msgid "Ancestor Build" msgstr "祖先ビルド" -#: build/api.py:152 order/api.py:129 +#: build/api.py:152 order/api.py:134 msgid "Assigned to me" msgstr "担当" @@ -638,134 +654,134 @@ msgstr "完成前" msgid "Completed after" msgstr "終了後" -#: build/api.py:249 order/api.py:226 +#: build/api.py:249 order/api.py:231 msgid "Min Date" msgstr "最小日付" -#: build/api.py:272 order/api.py:245 +#: build/api.py:272 order/api.py:250 msgid "Max Date" msgstr "最大日付" -#: build/api.py:297 build/api.py:300 part/api.py:217 stock/api.py:961 +#: build/api.py:297 build/api.py:300 part/api.py:212 stock/api.py:961 msgid "Exclude Tree" msgstr "ツリーを除く" -#: build/api.py:405 +#: build/api.py:411 msgid "Build must be cancelled before it can be deleted" msgstr "削除するには、ビルドをキャンセルする必要があります。" -#: build/api.py:449 build/serializers.py:1374 part/models.py:4402 +#: build/api.py:455 build/serializers.py:1382 part/models.py:4027 msgid "Consumable" msgstr "消耗品" -#: build/api.py:452 build/serializers.py:1377 part/models.py:4396 +#: build/api.py:458 build/serializers.py:1385 part/models.py:4021 msgid "Optional" msgstr "オプション" -#: build/api.py:455 build/serializers.py:1415 common/setting/system.py:456 -#: part/models.py:1202 part/serializers.py:1714 part/serializers.py:1725 +#: build/api.py:461 build/serializers.py:1423 common/setting/system.py:456 +#: part/models.py:1290 part/serializers.py:1579 part/serializers.py:1590 #: stock/api.py:639 msgid "Assembly" msgstr "アセンブリ" -#: build/api.py:458 +#: build/api.py:464 msgid "Tracked" msgstr "追跡" -#: build/api.py:461 build/serializers.py:1380 part/models.py:1220 +#: build/api.py:467 build/serializers.py:1388 part/models.py:1308 msgid "Testable" msgstr "テスト可能" -#: build/api.py:471 order/api.py:993 order/api.py:1363 +#: build/api.py:477 order/api.py:998 order/api.py:1368 msgid "Order Outstanding" msgstr "受注残高" -#: build/api.py:481 build/serializers.py:1464 order/api.py:952 +#: build/api.py:487 build/serializers.py:1472 order/api.py:957 msgid "Allocated" msgstr "割り当てられた" -#: build/api.py:490 build/models.py:1672 build/serializers.py:1393 +#: build/api.py:496 build/models.py:1673 build/serializers.py:1401 msgid "Consumed" msgstr "" -#: build/api.py:499 company/models.py:912 company/serializers.py:440 +#: build/api.py:505 company/models.py:866 company/serializers.py:467 #: templates/email/build_order_required_stock.html:19 #: templates/email/low_stock_notification.html:17 #: templates/email/part_event_notification.html:18 msgid "Available" msgstr "利用可能" -#: build/api.py:523 build/serializers.py:1466 company/serializers.py:437 -#: order/serializers.py:1281 part/serializers.py:959 part/serializers.py:1306 -#: part/serializers.py:1761 +#: build/api.py:529 build/serializers.py:1474 company/serializers.py:464 +#: order/serializers.py:1295 part/serializers.py:844 part/serializers.py:1171 +#: part/serializers.py:1626 msgid "On Order" msgstr "注文中" -#: build/api.py:868 build/models.py:117 order/models.py:1974 +#: build/api.py:874 build/models.py:118 order/models.py:1975 #: report/templates/report/inventree_build_order_report.html:105 #: stock/serializers.py:93 templates/email/build_order_completed.html:16 #: templates/email/overdue_build_order.html:15 msgid "Build Order" msgstr "組立注文" -#: build/api.py:882 build/api.py:886 build/serializers.py:372 -#: build/serializers.py:497 build/serializers.py:567 build/serializers.py:1251 -#: build/serializers.py:1256 order/api.py:1234 order/api.py:1239 -#: order/serializers.py:833 order/serializers.py:973 order/serializers.py:2042 +#: build/api.py:888 build/api.py:892 build/serializers.py:380 +#: build/serializers.py:505 build/serializers.py:575 build/serializers.py:1259 +#: build/serializers.py:1264 order/api.py:1239 order/api.py:1244 +#: order/serializers.py:844 order/serializers.py:984 order/serializers.py:2059 #: stock/api.py:987 stock/serializers.py:111 stock/serializers.py:601 #: stock/serializers.py:710 stock/serializers.py:888 stock/serializers.py:1418 -#: stock/serializers.py:1731 stock/serializers.py:1780 +#: stock/serializers.py:1739 stock/serializers.py:1788 #: templates/email/stale_stock_notification.html:18 users/models.py:549 msgid "Location" msgstr "場所" -#: build/api.py:894 +#: build/api.py:900 msgid "Output" msgstr "" -#: build/api.py:896 +#: build/api.py:902 msgid "Filter by output stock item ID. Use 'null' to find uninstalled build items." msgstr "" -#: build/models.py:118 users/ruleset.py:31 +#: build/models.py:119 users/ruleset.py:31 msgid "Build Orders" msgstr "組立注文" -#: build/models.py:168 +#: build/models.py:169 msgid "Assembly BOM has not been validated" msgstr "アセンブリBOMが検証されていません" -#: build/models.py:175 +#: build/models.py:176 msgid "Build order cannot be created for an inactive part" msgstr "非アクティブな部品にビルドオーダーを作成できません。" -#: build/models.py:182 +#: build/models.py:183 msgid "Build order cannot be created for an unlocked part" msgstr "ロックされていない部品にビルドオーダーを作成できません。" -#: build/models.py:200 +#: build/models.py:201 msgid "Build orders can only be externally fulfilled for purchaseable parts" msgstr "" -#: build/models.py:207 order/models.py:369 +#: build/models.py:208 order/models.py:370 msgid "Responsible user or group must be specified" msgstr "担当ユーザーまたはグループを指定する必要があります。" -#: build/models.py:212 +#: build/models.py:213 msgid "Build order part cannot be changed" msgstr "ビルドオーダー部品は変更できません" -#: build/models.py:217 order/models.py:382 +#: build/models.py:218 order/models.py:383 msgid "Target date must be after start date" msgstr "目標期日は開始日以降であること" -#: build/models.py:245 +#: build/models.py:246 msgid "Build Order Reference" msgstr "ビルド・オーダー・リファレンス" -#: build/models.py:246 build/serializers.py:1371 order/models.py:614 -#: order/models.py:1311 order/models.py:1773 order/models.py:2712 -#: part/models.py:4442 +#: build/models.py:247 build/serializers.py:1379 order/models.py:615 +#: order/models.py:1312 order/models.py:1774 order/models.py:2713 +#: part/models.py:4067 #: report/templates/report/inventree_bill_of_materials_report.html:139 #: report/templates/report/inventree_purchase_order_report.html:35 #: report/templates/report/inventree_return_order_report.html:26 @@ -773,230 +789,230 @@ msgstr "ビルド・オーダー・リファレンス" msgid "Reference" msgstr "参照" -#: build/models.py:255 +#: build/models.py:256 msgid "Brief description of the build (optional)" msgstr "建築の簡単な説明(任意)" -#: build/models.py:265 +#: build/models.py:266 msgid "BuildOrder to which this build is allocated" msgstr "このビルドが割り当てられる ビルドオーダー" -#: build/models.py:274 +#: build/models.py:275 msgid "Select part to build" msgstr "製造する部品の選択" -#: build/models.py:279 +#: build/models.py:280 msgid "Sales Order Reference" msgstr "セールス・オーダー・リファレンス" -#: build/models.py:284 +#: build/models.py:285 msgid "SalesOrder to which this build is allocated" msgstr "このビルドが割り当てられる SalesOrder" -#: build/models.py:289 build/serializers.py:1097 +#: build/models.py:290 build/serializers.py:1105 msgid "Source Location" msgstr "ソース・ロケーション" -#: build/models.py:295 +#: build/models.py:296 msgid "Select location to take stock from for this build (leave blank to take from any stock location)" msgstr "このビルドで在庫を取得する場所を選択します(任意の在庫場所から取得する場合は空白のままにしてください)。" -#: build/models.py:301 +#: build/models.py:302 msgid "External Build" msgstr "" -#: build/models.py:302 +#: build/models.py:303 msgid "This build order is fulfilled externally" msgstr "" -#: build/models.py:307 +#: build/models.py:308 msgid "Destination Location" msgstr "目的地" -#: build/models.py:312 +#: build/models.py:313 msgid "Select location where the completed items will be stored" msgstr "完成したアイテムの保管場所を選択" -#: build/models.py:316 +#: build/models.py:317 msgid "Build Quantity" msgstr "数量" -#: build/models.py:319 +#: build/models.py:320 msgid "Number of stock items to build" msgstr "構築するストックアイテムの数" -#: build/models.py:323 +#: build/models.py:324 msgid "Completed items" msgstr "完成品" -#: build/models.py:325 +#: build/models.py:326 msgid "Number of stock items which have been completed" msgstr "完了した在庫アイテムの数" -#: build/models.py:329 +#: build/models.py:330 msgid "Build Status" msgstr "組立状況" -#: build/models.py:334 +#: build/models.py:335 msgid "Build status code" msgstr "ビルドステータスコード" -#: build/models.py:343 build/serializers.py:359 order/serializers.py:849 +#: build/models.py:344 build/serializers.py:367 order/serializers.py:860 #: stock/models.py:1100 stock/serializers.py:85 stock/serializers.py:1591 msgid "Batch Code" msgstr "バッチコード" -#: build/models.py:347 build/serializers.py:360 +#: build/models.py:348 build/serializers.py:368 msgid "Batch code for this build output" msgstr "このビルド出力のバッチコード" -#: build/models.py:351 order/models.py:479 order/serializers.py:186 -#: part/models.py:1283 +#: build/models.py:352 order/models.py:480 order/serializers.py:193 +#: part/models.py:1371 msgid "Creation Date" msgstr "作成日時" -#: build/models.py:357 +#: build/models.py:358 msgid "Build start date" msgstr "ビルド開始日" -#: build/models.py:358 +#: build/models.py:359 msgid "Scheduled start date for this build order" msgstr "この注文の開始予定日" -#: build/models.py:364 +#: build/models.py:365 msgid "Target completion date" msgstr "完成目標日" -#: build/models.py:366 +#: build/models.py:367 msgid "Target date for build completion. Build will be overdue after this date." msgstr "ビルド完了目標日。この日付を過ぎると、ビルドは期限切れになります。" -#: build/models.py:371 order/models.py:667 order/models.py:2751 +#: build/models.py:372 order/models.py:668 order/models.py:2752 msgid "Completion Date" msgstr "完了日" -#: build/models.py:379 +#: build/models.py:380 msgid "completed by" msgstr "完了者" -#: build/models.py:388 +#: build/models.py:389 msgid "Issued by" msgstr "発行者" -#: build/models.py:389 +#: build/models.py:390 msgid "User who issued this build order" msgstr "このビルドオーダーを発行したユーザー" -#: build/models.py:398 common/models.py:180 order/api.py:179 -#: order/models.py:504 part/models.py:1300 +#: build/models.py:399 common/models.py:184 order/api.py:184 +#: order/models.py:505 part/models.py:1388 #: report/templates/report/inventree_build_order_report.html:158 msgid "Responsible" msgstr "責任" -#: build/models.py:399 +#: build/models.py:400 msgid "User or group responsible for this build order" msgstr "このビルドオーダーを担当するユーザーまたはグループ" -#: build/models.py:404 stock/models.py:1093 +#: build/models.py:405 stock/models.py:1093 msgid "External Link" msgstr "外部リンク" -#: build/models.py:406 common/models.py:1984 part/models.py:1114 +#: build/models.py:407 common/models.py:1990 part/models.py:1202 #: stock/models.py:1095 msgid "Link to external URL" msgstr "外部 サイト へのリンク" -#: build/models.py:411 +#: build/models.py:412 msgid "Build Priority" msgstr "組立優先度" -#: build/models.py:414 +#: build/models.py:415 msgid "Priority of this build order" msgstr "建設順序の優先順位" -#: build/models.py:422 common/models.py:150 common/models.py:164 -#: order/api.py:165 order/models.py:451 order/models.py:1805 +#: build/models.py:423 common/models.py:154 common/models.py:168 +#: order/api.py:170 order/models.py:452 order/models.py:1806 msgid "Project Code" msgstr "プロジェクトコード" -#: build/models.py:423 +#: build/models.py:424 msgid "Project code for this build order" msgstr "プロジェクトコード" -#: build/models.py:676 +#: build/models.py:677 msgid "Cannot complete build order with open child builds" msgstr "" -#: build/models.py:681 +#: build/models.py:682 msgid "Cannot complete build order with incomplete outputs" msgstr "" -#: build/models.py:700 build/models.py:830 +#: build/models.py:701 build/models.py:831 msgid "Failed to offload task to complete build allocations" msgstr "ビルドの割り当てを完了するタスクのオフロードに失敗しました。" -#: build/models.py:723 +#: build/models.py:724 #, python-brace-format msgid "Build order {build} has been completed" msgstr "ビルドオーダー{build}が完了しました" -#: build/models.py:729 +#: build/models.py:730 msgid "A build order has been completed" msgstr "建設発注が完了しました" -#: build/models.py:911 build/serializers.py:407 +#: build/models.py:912 build/serializers.py:415 msgid "Serial numbers must be provided for trackable parts" msgstr "追跡可能な部品については、シリアル番号の提示が必要です。" -#: build/models.py:1042 build/models.py:1129 +#: build/models.py:1043 build/models.py:1130 msgid "No build output specified" msgstr "ビルド出力が指定されていません" -#: build/models.py:1045 +#: build/models.py:1046 msgid "Build output is already completed" msgstr "ビルド出力はすでに完了しています" -#: build/models.py:1048 +#: build/models.py:1049 msgid "Build output does not match Build Order" msgstr "ビルド出力がビルド順序と一致しません" -#: build/models.py:1136 build/models.py:1234 build/serializers.py:285 -#: build/serializers.py:335 build/serializers.py:965 build/serializers.py:1739 -#: order/models.py:717 order/serializers.py:658 order/serializers.py:844 -#: part/serializers.py:1708 stock/models.py:940 stock/models.py:1430 +#: build/models.py:1137 build/models.py:1235 build/serializers.py:293 +#: build/serializers.py:343 build/serializers.py:973 build/serializers.py:1747 +#: order/models.py:718 order/serializers.py:669 order/serializers.py:855 +#: part/serializers.py:1573 stock/models.py:940 stock/models.py:1430 #: stock/models.py:1878 stock/serializers.py:688 stock/serializers.py:1580 msgid "Quantity must be greater than zero" msgstr "数量はゼロより大きくなければなりません" -#: build/models.py:1140 build/models.py:1239 build/serializers.py:290 +#: build/models.py:1141 build/models.py:1240 build/serializers.py:298 msgid "Quantity cannot be greater than the output quantity" msgstr "数量が出力数量を上回ることはできません" -#: build/models.py:1214 build/serializers.py:606 +#: build/models.py:1215 build/serializers.py:614 msgid "Build output has not passed all required tests" msgstr "" -#: build/models.py:1217 build/serializers.py:601 +#: build/models.py:1218 build/serializers.py:609 #, python-brace-format msgid "Build output {serial} has not passed all required tests" msgstr "ビルド出力 {serial} は、必要なすべてのテストに合格していません。" -#: build/models.py:1229 +#: build/models.py:1230 msgid "Cannot partially complete a build output with allocated items" msgstr "" -#: build/models.py:1627 +#: build/models.py:1628 msgid "Build Order Line Item" msgstr "ビルドオーダーラインアイテム" -#: build/models.py:1651 +#: build/models.py:1652 msgid "Build object" msgstr "ビルドオブジェクト" -#: build/models.py:1663 build/models.py:1974 build/serializers.py:271 -#: build/serializers.py:320 build/serializers.py:1392 common/models.py:1340 -#: order/models.py:1756 order/models.py:2597 order/serializers.py:1696 -#: order/serializers.py:2124 part/models.py:3453 part/models.py:4390 +#: build/models.py:1664 build/models.py:1975 build/serializers.py:279 +#: build/serializers.py:328 build/serializers.py:1400 common/models.py:1344 +#: order/models.py:1757 order/models.py:2598 order/serializers.py:1710 +#: order/serializers.py:2141 part/models.py:3517 part/models.py:4015 #: report/templates/report/inventree_bill_of_materials_report.html:138 #: report/templates/report/inventree_build_order_report.html:113 #: report/templates/report/inventree_purchase_order_report.html:36 @@ -1014,427 +1030,427 @@ msgstr "ビルドオブジェクト" msgid "Quantity" msgstr "数量" -#: build/models.py:1664 +#: build/models.py:1665 msgid "Required quantity for build order" msgstr "注文数量" -#: build/models.py:1673 +#: build/models.py:1674 msgid "Quantity of consumed stock" msgstr "" -#: build/models.py:1772 +#: build/models.py:1773 msgid "Build item must specify a build output, as master part is marked as trackable" msgstr "ビルド項目は、ビルド出力を指定する必要があります。" -#: build/models.py:1783 +#: build/models.py:1784 #, python-brace-format msgid "Allocated quantity ({q}) must not exceed available stock quantity ({a})" msgstr "割当数量({q})は在庫可能数量({a})を超えてはなりません。" -#: build/models.py:1804 order/models.py:2546 +#: build/models.py:1805 order/models.py:2547 msgid "Stock item is over-allocated" msgstr "在庫が過剰配分" -#: build/models.py:1809 order/models.py:2549 +#: build/models.py:1810 order/models.py:2550 msgid "Allocation quantity must be greater than zero" msgstr "割当数量はゼロより大きくなければなりません" -#: build/models.py:1815 +#: build/models.py:1816 msgid "Quantity must be 1 for serialized stock" msgstr "シリアル在庫の場合、数量は1でなければなりません。" -#: build/models.py:1875 +#: build/models.py:1876 msgid "Selected stock item does not match BOM line" msgstr "選択された在庫品目が部品表に一致しません。" -#: build/models.py:1913 +#: build/models.py:1914 msgid "Allocated quantity exceeds available stock quantity" msgstr "" -#: build/models.py:1964 build/serializers.py:948 build/serializers.py:1240 -#: order/serializers.py:1533 order/serializers.py:1554 +#: build/models.py:1965 build/serializers.py:956 build/serializers.py:1248 +#: order/serializers.py:1547 order/serializers.py:1568 #: report/templates/report/inventree_sales_order_shipment_report.html:29 #: stock/api.py:1404 stock/models.py:456 stock/serializers.py:102 #: stock/serializers.py:800 stock/serializers.py:1274 stock/serializers.py:1386 msgid "Stock Item" msgstr "在庫商品" -#: build/models.py:1965 +#: build/models.py:1966 msgid "Source stock item" msgstr "ソース在庫品" -#: build/models.py:1975 +#: build/models.py:1976 msgid "Stock quantity to allocate to build" msgstr "建設に割り当てる在庫量" -#: build/models.py:1984 +#: build/models.py:1985 msgid "Install into" msgstr "インストール" -#: build/models.py:1985 +#: build/models.py:1986 msgid "Destination stock item" msgstr "仕向け地在庫品" -#: build/serializers.py:118 +#: build/serializers.py:120 msgid "Build Level" msgstr "ビルドレベル" -#: build/serializers.py:128 +#: build/serializers.py:136 msgid "Part Name" msgstr "部品名" -#: build/serializers.py:153 +#: build/serializers.py:161 msgid "Project Code Label" msgstr "プロジェクトコードラベル" -#: build/serializers.py:219 build/serializers.py:974 +#: build/serializers.py:227 build/serializers.py:982 msgid "Build Output" msgstr "ビルド出力" -#: build/serializers.py:231 +#: build/serializers.py:239 msgid "Build output does not match the parent build" msgstr "ビルド出力が親ビルドと一致しません" -#: build/serializers.py:235 +#: build/serializers.py:243 msgid "Output part does not match BuildOrder part" msgstr "出力部分が BuildOrder 部分と一致しません。" -#: build/serializers.py:239 +#: build/serializers.py:247 msgid "This build output has already been completed" msgstr "このビルド出力はすでに完了しています" -#: build/serializers.py:253 +#: build/serializers.py:261 msgid "This build output is not fully allocated" msgstr "このビルド出力は完全に割り当てられていません" -#: build/serializers.py:272 build/serializers.py:321 +#: build/serializers.py:280 build/serializers.py:329 msgid "Enter quantity for build output" msgstr "ビルド出力の数量を入力" -#: build/serializers.py:343 +#: build/serializers.py:351 msgid "Integer quantity required for trackable parts" msgstr "追跡可能な部品に必要な整数個数" -#: build/serializers.py:349 +#: build/serializers.py:357 msgid "Integer quantity required, as the bill of materials contains trackable parts" msgstr "部品表には追跡可能な部品が含まれるため、必要な数量は整数" -#: build/serializers.py:366 order/serializers.py:865 order/serializers.py:1700 +#: build/serializers.py:374 order/serializers.py:876 order/serializers.py:1714 #: stock/serializers.py:699 msgid "Serial Numbers" msgstr "シリアル番号" -#: build/serializers.py:367 +#: build/serializers.py:375 msgid "Enter serial numbers for build outputs" msgstr "ビルド出力のためのシリアル番号の入力" -#: build/serializers.py:373 +#: build/serializers.py:381 msgid "Stock location for build output" msgstr "ビルド出力のストック位置" -#: build/serializers.py:388 +#: build/serializers.py:396 msgid "Auto Allocate Serial Numbers" msgstr "シリアル番号の自動割り当て" -#: build/serializers.py:390 +#: build/serializers.py:398 msgid "Automatically allocate required items with matching serial numbers" msgstr "シリアル番号が一致する必要なアイテムを自動的に割り当て" -#: build/serializers.py:423 order/serializers.py:951 stock/api.py:1183 +#: build/serializers.py:431 order/serializers.py:962 stock/api.py:1183 #: stock/models.py:1901 msgid "The following serial numbers already exist or are invalid" msgstr "以下のシリアル番号は既に存在するか、無効です。" -#: build/serializers.py:465 build/serializers.py:521 build/serializers.py:613 +#: build/serializers.py:473 build/serializers.py:529 build/serializers.py:621 msgid "A list of build outputs must be provided" msgstr "ビルド出力のリストを提供する必要があります。" -#: build/serializers.py:498 +#: build/serializers.py:506 msgid "Stock location for scrapped outputs" msgstr "スクラップされたアウトプットの在庫場所" -#: build/serializers.py:504 +#: build/serializers.py:512 msgid "Discard Allocations" msgstr "廃棄割り当て" -#: build/serializers.py:505 +#: build/serializers.py:513 msgid "Discard any stock allocations for scrapped outputs" msgstr "廃棄されたアウトプットに割り当てられた在庫の破棄" -#: build/serializers.py:510 +#: build/serializers.py:518 msgid "Reason for scrapping build output(s)" msgstr "ビルドアウトプットを廃棄する理由" -#: build/serializers.py:568 +#: build/serializers.py:576 msgid "Location for completed build outputs" msgstr "完成した建造物のアウトプットの場所" -#: build/serializers.py:576 +#: build/serializers.py:584 msgid "Accept Incomplete Allocation" msgstr "不完全割当の受入れ" -#: build/serializers.py:577 +#: build/serializers.py:585 msgid "Complete outputs if stock has not been fully allocated" msgstr "在庫が完全に割り当てられていない場合は、出力を完了します。" -#: build/serializers.py:702 +#: build/serializers.py:710 msgid "Consume Allocated Stock" msgstr "割当在庫の消費" -#: build/serializers.py:703 +#: build/serializers.py:711 msgid "Consume any stock which has already been allocated to this build" msgstr "このビルドに割り当て済みのストックを消費します。" -#: build/serializers.py:709 +#: build/serializers.py:717 msgid "Remove Incomplete Outputs" msgstr "不完全な出力の削除" -#: build/serializers.py:710 +#: build/serializers.py:718 msgid "Delete any build outputs which have not been completed" msgstr "完了していないビルド出力を削除します。" -#: build/serializers.py:737 +#: build/serializers.py:745 msgid "Not permitted" msgstr "不可" -#: build/serializers.py:738 +#: build/serializers.py:746 msgid "Accept as consumed by this build order" msgstr "このビルド・オーダーで消費されるものとして受け入れます。" -#: build/serializers.py:739 +#: build/serializers.py:747 msgid "Deallocate before completing this build order" msgstr "このビルドオーダーを完了する前に割り当てを解除します。" -#: build/serializers.py:766 +#: build/serializers.py:774 msgid "Overallocated Stock" msgstr "総合在庫" -#: build/serializers.py:769 +#: build/serializers.py:777 msgid "How do you want to handle extra stock items assigned to the build order" msgstr "製造オーダーに割り当てられた余分な在庫品をどのように処理しますか?" -#: build/serializers.py:780 +#: build/serializers.py:788 msgid "Some stock items have been overallocated" msgstr "一部の在庫品目は全体的に配分されています。" -#: build/serializers.py:785 +#: build/serializers.py:793 msgid "Accept Unallocated" msgstr "未割り当ての受け入れ" -#: build/serializers.py:787 +#: build/serializers.py:795 msgid "Accept that stock items have not been fully allocated to this build order" msgstr "在庫アイテムがこのビルド・オーダーに完全に割り当てられていないことを受け入れます。" -#: build/serializers.py:798 +#: build/serializers.py:806 msgid "Required stock has not been fully allocated" msgstr "必要在庫の配分が完了していません" -#: build/serializers.py:803 order/serializers.py:524 order/serializers.py:1601 +#: build/serializers.py:811 order/serializers.py:535 order/serializers.py:1615 msgid "Accept Incomplete" msgstr "インコンプリートの受け入れ" -#: build/serializers.py:805 +#: build/serializers.py:813 msgid "Accept that the required number of build outputs have not been completed" msgstr "必要な数のビルドアウトプットが完了していないことを受け入れます。" -#: build/serializers.py:816 +#: build/serializers.py:824 msgid "Required build quantity has not been completed" msgstr "必要な構築数量が完了していません" -#: build/serializers.py:828 +#: build/serializers.py:836 msgid "Build order has open child build orders" msgstr "ビルド・オーダーには未完成の子ビルド・オーダーがあります。" -#: build/serializers.py:831 +#: build/serializers.py:839 msgid "Build order must be in production state" msgstr "受注生産状態であること" -#: build/serializers.py:834 +#: build/serializers.py:842 msgid "Build order has incomplete outputs" msgstr "ビルド・オーダーの出力が不完全" -#: build/serializers.py:873 +#: build/serializers.py:881 msgid "Build Line" msgstr "組立ライン" -#: build/serializers.py:881 +#: build/serializers.py:889 msgid "Build output" msgstr "ビルド出力" -#: build/serializers.py:889 +#: build/serializers.py:897 msgid "Build output must point to the same build" msgstr "ビルド出力は同じビルド" -#: build/serializers.py:920 +#: build/serializers.py:928 msgid "Build Line Item" msgstr "ビルドラインアイテム" -#: build/serializers.py:938 +#: build/serializers.py:946 msgid "bom_item.part must point to the same part as the build order" msgstr "bom_item.partは、ビルドオーダーと同じパーツを指す必要があります。" -#: build/serializers.py:954 stock/serializers.py:1287 +#: build/serializers.py:962 stock/serializers.py:1287 msgid "Item must be in stock" msgstr "在庫があること" -#: build/serializers.py:997 order/serializers.py:1587 +#: build/serializers.py:1005 order/serializers.py:1601 #, python-brace-format msgid "Available quantity ({q}) exceeded" msgstr "使用可能数量({q})を超過" -#: build/serializers.py:1003 +#: build/serializers.py:1011 msgid "Build output must be specified for allocation of tracked parts" msgstr "追跡部品の割り当てには、ビルド出力を指定する必要があります。" -#: build/serializers.py:1011 +#: build/serializers.py:1019 msgid "Build output cannot be specified for allocation of untracked parts" msgstr "追跡されていない部品の割り当てでは、ビルド出力を指定できません。" -#: build/serializers.py:1035 order/serializers.py:1860 +#: build/serializers.py:1043 order/serializers.py:1874 msgid "Allocation items must be provided" msgstr "割り当て項目の提供" -#: build/serializers.py:1099 +#: build/serializers.py:1107 msgid "Stock location where parts are to be sourced (leave blank to take from any location)" msgstr "部品を調達する在庫場所(任意の場所から調達する場合は空白にしてください。)" -#: build/serializers.py:1108 +#: build/serializers.py:1116 msgid "Exclude Location" msgstr "場所を除く" -#: build/serializers.py:1109 +#: build/serializers.py:1117 msgid "Exclude stock items from this selected location" msgstr "この選択された場所から在庫商品を除外" -#: build/serializers.py:1114 +#: build/serializers.py:1122 msgid "Interchangeable Stock" msgstr "交換可能ストック" -#: build/serializers.py:1115 +#: build/serializers.py:1123 msgid "Stock items in multiple locations can be used interchangeably" msgstr "複数の拠点にある在庫品を交換可能" -#: build/serializers.py:1120 +#: build/serializers.py:1128 msgid "Substitute Stock" msgstr "代替ストック" -#: build/serializers.py:1121 +#: build/serializers.py:1129 msgid "Allow allocation of substitute parts" msgstr "代替部品の割り当て" -#: build/serializers.py:1126 +#: build/serializers.py:1134 msgid "Optional Items" msgstr "オプション" -#: build/serializers.py:1127 +#: build/serializers.py:1135 msgid "Allocate optional BOM items to build order" msgstr "オプションのBOMアイテムをビルドオーダーに割り当てます。" -#: build/serializers.py:1148 +#: build/serializers.py:1156 msgid "Failed to start auto-allocation task" msgstr "自動割り当てタスクの開始に失敗しました" -#: build/serializers.py:1200 +#: build/serializers.py:1208 msgid "BOM Reference" msgstr "BOMリファレンス" -#: build/serializers.py:1206 +#: build/serializers.py:1214 msgid "BOM Part ID" msgstr "BOMパーツID" -#: build/serializers.py:1213 +#: build/serializers.py:1221 msgid "BOM Part Name" msgstr "部品表 部品名" -#: build/serializers.py:1266 build/serializers.py:1449 +#: build/serializers.py:1274 build/serializers.py:1457 msgid "Build" msgstr "ビルド" -#: build/serializers.py:1276 company/models.py:685 order/api.py:311 -#: order/api.py:316 order/api.py:543 order/serializers.py:650 +#: build/serializers.py:1284 company/models.py:639 order/api.py:316 +#: order/api.py:321 order/api.py:549 order/serializers.py:661 #: stock/models.py:1036 stock/serializers.py:579 msgid "Supplier Part" msgstr "サプライヤー" -#: build/serializers.py:1284 stock/serializers.py:620 +#: build/serializers.py:1292 stock/serializers.py:620 msgid "Allocated Quantity" msgstr "割当数量" -#: build/serializers.py:1351 +#: build/serializers.py:1359 msgid "Build Reference" msgstr "ビルドリファレンス" -#: build/serializers.py:1361 +#: build/serializers.py:1369 msgid "Part Category Name" msgstr "部品分類名" -#: build/serializers.py:1383 common/setting/system.py:480 part/models.py:1214 +#: build/serializers.py:1391 common/setting/system.py:480 part/models.py:1302 msgid "Trackable" msgstr "追跡可能" -#: build/serializers.py:1386 +#: build/serializers.py:1394 msgid "Inherited" msgstr "継承" -#: build/serializers.py:1389 part/models.py:4475 +#: build/serializers.py:1397 part/models.py:4100 msgid "Allow Variants" msgstr "バリアントを許可" -#: build/serializers.py:1395 build/serializers.py:1400 part/models.py:4208 -#: part/models.py:4779 stock/api.py:882 +#: build/serializers.py:1403 build/serializers.py:1408 part/models.py:3833 +#: part/models.py:4404 stock/api.py:882 msgid "BOM Item" msgstr "BOMアイテム" -#: build/serializers.py:1467 order/serializers.py:1282 part/serializers.py:1310 -#: part/serializers.py:1765 +#: build/serializers.py:1475 order/serializers.py:1296 part/serializers.py:1175 +#: part/serializers.py:1630 msgid "In Production" msgstr "生産中" -#: build/serializers.py:1469 part/serializers.py:950 part/serializers.py:1314 +#: build/serializers.py:1477 part/serializers.py:835 part/serializers.py:1179 msgid "Scheduled to Build" msgstr "" -#: build/serializers.py:1472 part/serializers.py:987 +#: build/serializers.py:1480 part/serializers.py:872 msgid "External Stock" msgstr "外部在庫" -#: build/serializers.py:1473 part/serializers.py:1300 part/serializers.py:1808 +#: build/serializers.py:1481 part/serializers.py:1165 part/serializers.py:1673 msgid "Available Stock" msgstr "在庫状況" -#: build/serializers.py:1475 +#: build/serializers.py:1483 msgid "Available Substitute Stock" msgstr "利用可能な代替ストック" -#: build/serializers.py:1478 +#: build/serializers.py:1486 msgid "Available Variant Stock" msgstr "在庫状況" -#: build/serializers.py:1752 +#: build/serializers.py:1760 msgid "Consumed quantity exceeds allocated quantity" msgstr "" -#: build/serializers.py:1789 +#: build/serializers.py:1797 msgid "Optional notes for the stock consumption" msgstr "" -#: build/serializers.py:1806 +#: build/serializers.py:1814 msgid "Build item must point to the correct build order" msgstr "" -#: build/serializers.py:1811 +#: build/serializers.py:1819 msgid "Duplicate build item allocation" msgstr "" -#: build/serializers.py:1829 +#: build/serializers.py:1837 msgid "Build line must point to the correct build order" msgstr "" -#: build/serializers.py:1834 +#: build/serializers.py:1842 msgid "Duplicate build line allocation" msgstr "" -#: build/serializers.py:1846 +#: build/serializers.py:1854 msgid "At least one item or line must be provided" msgstr "" @@ -1482,702 +1498,826 @@ msgstr "期限切れ注文" msgid "Build order {bo} is now overdue" msgstr "ビルドオーダー{bo}は現在期限切れです" -#: common/api.py:694 +#: common/api.py:701 msgid "Is Link" msgstr "リンク" -#: common/api.py:702 +#: common/api.py:709 msgid "Is File" msgstr "ファイル" -#: common/api.py:745 +#: common/api.py:756 msgid "User does not have permission to delete these attachments" msgstr "ユーザーにはこれらの添付ファイルを削除する権限がありません。" -#: common/api.py:762 +#: common/api.py:769 msgid "User does not have permission to delete this attachment" msgstr "ユーザーにはこの添付ファイルを削除する権限がありません" -#: common/currency.py:122 +#: common/currency.py:130 msgid "Invalid currency code" msgstr "無効な通貨コード" -#: common/currency.py:124 +#: common/currency.py:132 msgid "Duplicate currency code" msgstr "通貨コードの重複" -#: common/currency.py:129 +#: common/currency.py:137 msgid "No valid currency codes provided" msgstr "有効な通貨コードはありません" -#: common/currency.py:146 +#: common/currency.py:154 msgid "No plugin" msgstr "プラグインなし" -#: common/models.py:101 common/models.py:126 common/models.py:2729 +#: common/models.py:105 common/models.py:130 common/models.py:3150 msgid "Updated" msgstr "更新しました" -#: common/models.py:102 common/models.py:127 +#: common/models.py:106 common/models.py:131 msgid "Timestamp of last update" msgstr "最終更新のタイムスタンプ" -#: common/models.py:139 +#: common/models.py:143 msgid "Update By" msgstr "" -#: common/models.py:140 +#: common/models.py:144 msgid "User who last updated this object" msgstr "" -#: common/models.py:165 +#: common/models.py:169 msgid "Unique project code" msgstr "独自のプロジェクトコード" -#: common/models.py:172 +#: common/models.py:176 msgid "Project description" msgstr "プロジェクトの説明" -#: common/models.py:181 +#: common/models.py:185 msgid "User or group responsible for this project" msgstr "このプロジェクトを担当するユーザーまたはグループ" -#: common/models.py:771 common/models.py:1272 common/models.py:1310 +#: common/models.py:775 common/models.py:1276 common/models.py:1314 msgid "Settings key" msgstr "設定キー" -#: common/models.py:775 +#: common/models.py:779 msgid "Settings value" msgstr "設定値" -#: common/models.py:830 +#: common/models.py:834 msgid "Chosen value is not a valid option" msgstr "選択された値は有効なオプションではありません。" -#: common/models.py:846 +#: common/models.py:850 msgid "Value must be a boolean value" msgstr "値はブール値でなければなりません。" -#: common/models.py:854 +#: common/models.py:858 msgid "Value must be an integer value" msgstr "値は整数値でなければなりません。" -#: common/models.py:862 +#: common/models.py:866 msgid "Value must be a valid number" msgstr "値は有効な数値でなければなりません。" -#: common/models.py:887 +#: common/models.py:891 msgid "Value does not pass validation checks" msgstr "値がバリデーション・チェックに合格しない" -#: common/models.py:909 +#: common/models.py:913 msgid "Key string must be unique" msgstr "キー文字列は一意でなければなりません。" -#: common/models.py:1318 common/models.py:1319 common/models.py:1423 -#: common/models.py:1424 common/models.py:1669 common/models.py:1670 -#: common/models.py:2000 common/models.py:2001 common/models.py:2382 -#: importer/models.py:100 part/models.py:3547 part/models.py:3575 +#: common/models.py:1322 common/models.py:1323 common/models.py:1427 +#: common/models.py:1428 common/models.py:1673 common/models.py:1674 +#: common/models.py:2006 common/models.py:2007 common/models.py:2803 +#: importer/models.py:100 part/models.py:3611 part/models.py:3639 #: plugin/models.py:355 plugin/models.py:356 #: report/templates/report/inventree_test_report.html:105 users/models.py:124 #: users/models.py:501 msgid "User" msgstr "ユーザー" -#: common/models.py:1341 +#: common/models.py:1345 msgid "Price break quantity" msgstr "価格破壊数量" -#: common/models.py:1348 company/serializers.py:564 order/models.py:1842 -#: order/models.py:3043 +#: common/models.py:1352 company/serializers.py:349 order/models.py:1843 +#: order/models.py:3044 msgid "Price" msgstr "価格" -#: common/models.py:1349 +#: common/models.py:1353 msgid "Unit price at specified quantity" msgstr "指定数量での単価" -#: common/models.py:1400 common/models.py:1585 +#: common/models.py:1404 common/models.py:1589 msgid "Endpoint" msgstr "エンドポイント" -#: common/models.py:1401 +#: common/models.py:1405 msgid "Endpoint at which this webhook is received" msgstr "このウェブフックを受信するエンドポイント" -#: common/models.py:1411 +#: common/models.py:1415 msgid "Name for this webhook" msgstr "このウェブフックの名前" -#: common/models.py:1415 common/models.py:2241 common/models.py:2348 -#: company/models.py:191 company/models.py:822 machine/models.py:40 -#: part/models.py:1237 plugin/models.py:69 stock/api.py:642 users/models.py:195 +#: common/models.py:1419 common/models.py:2247 common/models.py:2354 +#: company/models.py:192 company/models.py:776 machine/models.py:40 +#: part/models.py:1325 plugin/models.py:69 stock/api.py:642 users/models.py:195 #: users/models.py:554 users/serializers.py:314 msgid "Active" msgstr "有効" -#: common/models.py:1415 +#: common/models.py:1419 msgid "Is this webhook active" msgstr "このウェブフックはアクティブですか" -#: common/models.py:1431 users/models.py:172 +#: common/models.py:1435 users/models.py:172 msgid "Token" msgstr "トークン" -#: common/models.py:1432 +#: common/models.py:1436 msgid "Token for access" msgstr "アクセス用トークン" -#: common/models.py:1440 +#: common/models.py:1444 msgid "Secret" msgstr "シークレット" -#: common/models.py:1441 +#: common/models.py:1445 msgid "Shared secret for HMAC" msgstr "HMACの共有秘密" -#: common/models.py:1549 common/models.py:2619 +#: common/models.py:1553 common/models.py:3040 msgid "Message ID" msgstr "メッセージ ID:" -#: common/models.py:1550 common/models.py:2609 +#: common/models.py:1554 common/models.py:3030 msgid "Unique identifier for this message" msgstr "このメッセージの一意な識別子" -#: common/models.py:1558 +#: common/models.py:1562 msgid "Host" msgstr "ホスト" -#: common/models.py:1559 +#: common/models.py:1563 msgid "Host from which this message was received" msgstr "このメッセージを受信したホスト" -#: common/models.py:1567 +#: common/models.py:1571 msgid "Header" msgstr "ヘッダー" -#: common/models.py:1568 +#: common/models.py:1572 msgid "Header of this message" msgstr "このメッセージのヘッダー" -#: common/models.py:1575 +#: common/models.py:1579 msgid "Body" msgstr "本文" -#: common/models.py:1576 +#: common/models.py:1580 msgid "Body of this message" msgstr "メッセージ本文" -#: common/models.py:1586 +#: common/models.py:1590 msgid "Endpoint on which this message was received" msgstr "このメッセージを受信したエンドポイント" -#: common/models.py:1591 +#: common/models.py:1595 msgid "Worked on" msgstr "作業内容" -#: common/models.py:1592 +#: common/models.py:1596 msgid "Was the work on this message finished?" msgstr "このメッセージに関する作業は終わったのですか?" -#: common/models.py:1718 +#: common/models.py:1722 msgid "Id" msgstr "Id" -#: common/models.py:1720 +#: common/models.py:1724 msgid "Title" msgstr "タイトル" -#: common/models.py:1722 common/models.py:1983 company/models.py:185 -#: company/models.py:467 company/models.py:534 company/models.py:839 -#: order/models.py:457 order/models.py:1786 order/models.py:2343 -#: part/models.py:1113 +#: common/models.py:1726 common/models.py:1989 company/models.py:186 +#: company/models.py:468 company/models.py:536 company/models.py:793 +#: order/models.py:458 order/models.py:1787 order/models.py:2344 +#: part/models.py:1201 #: report/templates/report/inventree_build_order_report.html:164 msgid "Link" msgstr "リンク" -#: common/models.py:1724 +#: common/models.py:1728 msgid "Published" msgstr "公開済み" -#: common/models.py:1726 +#: common/models.py:1730 msgid "Author" msgstr "投稿者" -#: common/models.py:1728 +#: common/models.py:1732 msgid "Summary" msgstr "概要" -#: common/models.py:1731 common/models.py:2586 +#: common/models.py:1735 common/models.py:3007 msgid "Read" msgstr "既読" -#: common/models.py:1731 +#: common/models.py:1735 msgid "Was this news item read?" msgstr "このニュースは読まれましたか?" -#: common/models.py:1748 +#: common/models.py:1752 msgid "Image file" msgstr "画像ファイル" -#: common/models.py:1760 +#: common/models.py:1764 msgid "Target model type for this image" msgstr "この画像の対象モデルタイプ" -#: common/models.py:1764 +#: common/models.py:1768 msgid "Target model ID for this image" msgstr "この画像の対象モデルID" -#: common/models.py:1786 +#: common/models.py:1790 msgid "Custom Unit" msgstr "カスタムユニット" -#: common/models.py:1804 +#: common/models.py:1808 msgid "Unit symbol must be unique" msgstr "単位記号は一意でなければなりません。" -#: common/models.py:1819 +#: common/models.py:1823 msgid "Unit name must be a valid identifier" msgstr "ユニット名は有効な識別子でなければなりません。" -#: common/models.py:1838 +#: common/models.py:1842 msgid "Unit name" msgstr "ユニット名" -#: common/models.py:1845 +#: common/models.py:1849 msgid "Symbol" msgstr "シンボル" -#: common/models.py:1846 +#: common/models.py:1850 msgid "Optional unit symbol" msgstr "オプションの単位記号" -#: common/models.py:1852 +#: common/models.py:1856 msgid "Definition" msgstr "定義" -#: common/models.py:1853 +#: common/models.py:1857 msgid "Unit definition" msgstr "ユニットの定義" -#: common/models.py:1911 common/models.py:1974 stock/models.py:2967 +#: common/models.py:1917 common/models.py:1980 stock/models.py:2984 #: stock/serializers.py:247 msgid "Attachment" msgstr "添付ファイル" -#: common/models.py:1928 +#: common/models.py:1934 msgid "Missing file" msgstr "ファイルがありません" -#: common/models.py:1929 +#: common/models.py:1935 msgid "Missing external link" msgstr "外部リンクが見つかりません。" -#: common/models.py:1966 +#: common/models.py:1972 common/models.py:2488 msgid "Model type" msgstr "モデルタイプ" -#: common/models.py:1967 +#: common/models.py:1973 msgid "Target model type for image" msgstr "画像の対象モデルタイプ" -#: common/models.py:1975 +#: common/models.py:1981 msgid "Select file to attach" msgstr "添付ファイルを選択" -#: common/models.py:1991 +#: common/models.py:1997 msgid "Comment" msgstr "コメント:" -#: common/models.py:1992 +#: common/models.py:1998 msgid "Attachment comment" msgstr "添付コメント" -#: common/models.py:2008 +#: common/models.py:2014 msgid "Upload date" msgstr "アップロード日" -#: common/models.py:2009 +#: common/models.py:2015 msgid "Date the file was uploaded" msgstr "ファイルがアップロードされた日付" -#: common/models.py:2013 +#: common/models.py:2019 msgid "File size" msgstr "ファイルサイズ" -#: common/models.py:2013 +#: common/models.py:2019 msgid "File size in bytes" msgstr "ファイルサイズ(バイト" -#: common/models.py:2051 common/serializers.py:684 +#: common/models.py:2057 common/serializers.py:688 msgid "Invalid model type specified for attachment" msgstr "添付ファイルに指定されたモデルタイプが無効です" -#: common/models.py:2072 +#: common/models.py:2078 msgid "Custom State" msgstr "カスタムステート" -#: common/models.py:2073 +#: common/models.py:2079 msgid "Custom States" msgstr "カスタムステート" -#: common/models.py:2078 +#: common/models.py:2084 msgid "Reference Status Set" msgstr "リファレンス・ステータス・セット" -#: common/models.py:2079 +#: common/models.py:2085 msgid "Status set that is extended with this custom state" msgstr "このカスタム状態で拡張されたステータスセット" -#: common/models.py:2083 generic/states/serializers.py:18 +#: common/models.py:2089 generic/states/serializers.py:18 msgid "Logical Key" msgstr "論理キー" -#: common/models.py:2085 +#: common/models.py:2091 msgid "State logical key that is equal to this custom state in business logic" msgstr "ビジネスロジックでこのカスタムステートに等しいステート論理キー" -#: common/models.py:2090 common/models.py:2329 company/models.py:622 -#: machine/serializers.py:27 -#: report/templates/report/inventree_test_report.html:104 stock/models.py:2959 +#: common/models.py:2096 common/models.py:2335 machine/serializers.py:27 +#: report/templates/report/inventree_test_report.html:104 stock/models.py:2976 msgid "Value" msgstr "値" -#: common/models.py:2091 +#: common/models.py:2097 msgid "Numerical value that will be saved in the models database" msgstr "モデルのデータベースに保存される数値" -#: common/models.py:2097 +#: common/models.py:2103 msgid "Name of the state" msgstr "都道府県名" -#: common/models.py:2106 common/models.py:2335 generic/states/serializers.py:22 +#: common/models.py:2112 common/models.py:2341 generic/states/serializers.py:22 msgid "Label" msgstr "ラベル" -#: common/models.py:2107 +#: common/models.py:2113 msgid "Label that will be displayed in the frontend" msgstr "フロントエンドに表示されるラベル" -#: common/models.py:2114 generic/states/serializers.py:24 +#: common/models.py:2120 generic/states/serializers.py:24 msgid "Color" msgstr "色" -#: common/models.py:2115 +#: common/models.py:2121 msgid "Color that will be displayed in the frontend" msgstr "フロントエンドに表示される色" -#: common/models.py:2123 +#: common/models.py:2129 msgid "Model" msgstr "モデル" -#: common/models.py:2124 +#: common/models.py:2130 msgid "Model this state is associated with" msgstr "この状態が関連するモデル" -#: common/models.py:2139 +#: common/models.py:2145 msgid "Model must be selected" msgstr "モデルを選択する必要があります" -#: common/models.py:2142 +#: common/models.py:2148 msgid "Key must be selected" msgstr "キーを選択する必要があります。" -#: common/models.py:2145 +#: common/models.py:2151 msgid "Logical key must be selected" msgstr "論理キーを選択する必要があります。" -#: common/models.py:2149 +#: common/models.py:2155 msgid "Key must be different from logical key" msgstr "キーは論理キーと異なる必要があります。" -#: common/models.py:2156 +#: common/models.py:2162 msgid "Valid reference status class must be provided" msgstr "有効な参照ステータスクラスが提供されなければならない" -#: common/models.py:2162 +#: common/models.py:2168 msgid "Key must be different from the logical keys of the reference status" msgstr "キーは、参照ステータスの論理キーとは異なる必要があります。" -#: common/models.py:2169 +#: common/models.py:2175 msgid "Logical key must be in the logical keys of the reference status" msgstr "論理キーは、参照ステータスの論理キーに含まれていなければなりません。" -#: common/models.py:2176 +#: common/models.py:2182 msgid "Name must be different from the names of the reference status" msgstr "リファレンス・ステータスの名前とは異なっていなければならない。" -#: common/models.py:2216 common/models.py:2323 part/models.py:3889 +#: common/models.py:2222 common/models.py:2329 common/models.py:2533 msgid "Selection List" msgstr "セレクションリスト" -#: common/models.py:2217 +#: common/models.py:2223 msgid "Selection Lists" msgstr "セレクション・リスト" -#: common/models.py:2222 +#: common/models.py:2228 msgid "Name of the selection list" msgstr "選択リストの名前" -#: common/models.py:2229 +#: common/models.py:2235 msgid "Description of the selection list" msgstr "選択リストの説明" -#: common/models.py:2235 part/models.py:1242 +#: common/models.py:2241 part/models.py:1330 msgid "Locked" msgstr "ロック中" -#: common/models.py:2236 +#: common/models.py:2242 msgid "Is this selection list locked?" msgstr "この選択リストはロックされていますか?" -#: common/models.py:2242 +#: common/models.py:2248 msgid "Can this selection list be used?" msgstr "このセレクションリストは使えますか?" -#: common/models.py:2250 +#: common/models.py:2256 msgid "Source Plugin" msgstr "ソースプラグイン" -#: common/models.py:2251 +#: common/models.py:2257 msgid "Plugin which provides the selection list" msgstr "選択リストを提供するプラグイン" -#: common/models.py:2256 +#: common/models.py:2262 msgid "Source String" msgstr "ソースストリング" -#: common/models.py:2257 +#: common/models.py:2263 msgid "Optional string identifying the source used for this list" msgstr "このリストに使用されているソースを示すオプションの文字列" -#: common/models.py:2266 +#: common/models.py:2272 msgid "Default Entry" msgstr "デフォルトエントリー" -#: common/models.py:2267 +#: common/models.py:2273 msgid "Default entry for this selection list" msgstr "この選択リストのデフォルト項目" -#: common/models.py:2272 common/models.py:2724 +#: common/models.py:2278 common/models.py:3145 msgid "Created" msgstr "作成日" -#: common/models.py:2273 +#: common/models.py:2279 msgid "Date and time that the selection list was created" msgstr "選択リストが作成された日時" -#: common/models.py:2278 +#: common/models.py:2284 msgid "Last Updated" msgstr "最終更新" -#: common/models.py:2279 +#: common/models.py:2285 msgid "Date and time that the selection list was last updated" msgstr "選択リストが最後に更新された日時" -#: common/models.py:2313 +#: common/models.py:2319 msgid "Selection List Entry" msgstr "セレクションリスト入力" -#: common/models.py:2314 +#: common/models.py:2320 msgid "Selection List Entries" msgstr "セレクションリスト" -#: common/models.py:2324 +#: common/models.py:2330 msgid "Selection list to which this entry belongs" msgstr "このエントリーが属する選択リスト" -#: common/models.py:2330 +#: common/models.py:2336 msgid "Value of the selection list entry" msgstr "選択リストエントリーの値" -#: common/models.py:2336 +#: common/models.py:2342 msgid "Label for the selection list entry" msgstr "選択リスト項目のラベル" -#: common/models.py:2342 +#: common/models.py:2348 msgid "Description of the selection list entry" msgstr "選択リスト項目の説明" -#: common/models.py:2349 +#: common/models.py:2355 msgid "Is this selection list entry active?" msgstr "この選択リストはアクティブですか?" -#: common/models.py:2367 -msgid "Barcode Scan" -msgstr "バーコードスキャン" +#: common/models.py:2387 +msgid "Parameter Template" +msgstr "パラメータテンプレート" -#: common/models.py:2371 importer/models.py:546 part/models.py:4060 -msgid "Data" -msgstr "データ" - -#: common/models.py:2372 -msgid "Barcode data" -msgstr "バーコードデータ" - -#: common/models.py:2383 -msgid "User who scanned the barcode" -msgstr "バーコードをスキャンしたユーザー" - -#: common/models.py:2388 importer/models.py:69 -msgid "Timestamp" -msgstr "タイムスタンプ" - -#: common/models.py:2389 -msgid "Date and time of the barcode scan" -msgstr "バーコードスキャンの日時" - -#: common/models.py:2395 -msgid "URL endpoint which processed the barcode" -msgstr "バーコードを処理したURLエンドポイント" - -#: common/models.py:2402 order/models.py:1832 plugin/serializers.py:93 -msgid "Context" -msgstr "コンテキスト" - -#: common/models.py:2403 -msgid "Context data for the barcode scan" -msgstr "バーコードスキャンのコンテキストデータ" - -#: common/models.py:2410 -msgid "Response" -msgstr "返答" - -#: common/models.py:2411 -msgid "Response data from the barcode scan" -msgstr "バーコードスキャンによるレスポンスデータ" - -#: common/models.py:2417 report/templates/report/inventree_test_report.html:103 -#: stock/models.py:2953 -msgid "Result" -msgstr "結果" - -#: common/models.py:2418 -msgid "Was the barcode scan successful?" -msgstr "バーコードスキャンは成功しましたか?" - -#: common/models.py:2500 -msgid "An error occurred" +#: common/models.py:2388 +msgid "Parameter Templates" msgstr "" -#: common/models.py:2521 -msgid "INVE-E8: Email log deletion is protected. Set INVENTREE_PROTECT_EMAIL_LOG to False to allow deletion." +#: common/models.py:2425 +msgid "Checkbox parameters cannot have units" +msgstr "チェックボックスのパラメータに単位を指定することはできません。" + +#: common/models.py:2430 +msgid "Checkbox parameters cannot have choices" +msgstr "チェックボックスパラメータに選択肢を持たせることはできません。" + +#: common/models.py:2450 part/models.py:3707 +msgid "Choices must be unique" +msgstr "選択肢はユニークでなければなりません" + +#: common/models.py:2467 +msgid "Parameter template name must be unique" +msgstr "パラメータ・テンプレート名は一意でなければなりません。" + +#: common/models.py:2489 +msgid "Target model type for this parameter template" msgstr "" -#: common/models.py:2568 -msgid "Email Message" +#: common/models.py:2495 +msgid "Parameter Name" +msgstr "パラメータ名" + +#: common/models.py:2501 part/models.py:1283 +msgid "Units" +msgstr "単位" + +#: common/models.py:2502 +msgid "Physical units for this parameter" +msgstr "このパラメータの物理単位" + +#: common/models.py:2510 +msgid "Parameter description" +msgstr "パラメータの説明" + +#: common/models.py:2516 +msgid "Checkbox" +msgstr "チェックボックス" + +#: common/models.py:2517 +msgid "Is this parameter a checkbox?" +msgstr "このパラメータはチェックボックスですか?" + +#: common/models.py:2522 part/models.py:3794 +msgid "Choices" +msgstr "選択肢" + +#: common/models.py:2523 +msgid "Valid choices for this parameter (comma-separated)" +msgstr "このパラメータの有効な選択肢(カンマ区切り)" + +#: common/models.py:2534 +msgid "Selection list for this parameter" +msgstr "このパラメータの選択リスト" + +#: common/models.py:2539 part/models.py:3769 report/models.py:287 +msgid "Enabled" +msgstr "有効" + +#: common/models.py:2540 +msgid "Is this parameter template enabled?" msgstr "" -#: common/models.py:2569 -msgid "Email Messages" -msgstr "" - -#: common/models.py:2576 -msgid "Announced" -msgstr "" - -#: common/models.py:2578 -msgid "Sent" -msgstr "" - -#: common/models.py:2579 -msgid "Failed" +#: common/models.py:2581 +msgid "Parameter" msgstr "" #: common/models.py:2582 -msgid "Delivered" -msgstr "" - -#: common/models.py:2590 -msgid "Confirmed" -msgstr "" - -#: common/models.py:2596 -msgid "Inbound" -msgstr "" - -#: common/models.py:2597 -msgid "Outbound" -msgstr "" - -#: common/models.py:2602 -msgid "No Reply" -msgstr "" - -#: common/models.py:2603 -msgid "Track Delivery" -msgstr "" - -#: common/models.py:2604 -msgid "Track Read" -msgstr "" - -#: common/models.py:2605 -msgid "Track Click" -msgstr "" - -#: common/models.py:2608 common/models.py:2711 -msgid "Global ID" -msgstr "" - -#: common/models.py:2621 -msgid "Identifier for this message (might be supplied by external system)" +msgid "Parameters" msgstr "" #: common/models.py:2628 +msgid "Invalid choice for parameter value" +msgstr "パラメータ値の選択が無効" + +#: common/models.py:2698 common/serializers.py:783 +msgid "Invalid model type specified for parameter" +msgstr "" + +#: common/models.py:2734 +msgid "Model ID" +msgstr "" + +#: common/models.py:2735 +msgid "ID of the target model for this parameter" +msgstr "" + +#: common/models.py:2744 common/setting/system.py:450 report/models.py:373 +#: report/models.py:669 report/serializers.py:94 report/serializers.py:135 +#: stock/serializers.py:234 +msgid "Template" +msgstr "テンプレート" + +#: common/models.py:2745 +msgid "Parameter template" +msgstr "" + +#: common/models.py:2750 common/models.py:2792 importer/models.py:546 +msgid "Data" +msgstr "データ" + +#: common/models.py:2751 +msgid "Parameter Value" +msgstr "パラメータ値" + +#: common/models.py:2760 company/models.py:810 order/serializers.py:894 +#: order/serializers.py:2064 part/models.py:4075 part/models.py:4444 +#: report/templates/report/inventree_bill_of_materials_report.html:140 +#: report/templates/report/inventree_purchase_order_report.html:39 +#: report/templates/report/inventree_return_order_report.html:27 +#: report/templates/report/inventree_sales_order_report.html:32 +#: report/templates/report/inventree_stock_location_report.html:105 +#: stock/serializers.py:813 +msgid "Note" +msgstr "備考" + +#: common/models.py:2761 stock/serializers.py:718 +msgid "Optional note field" +msgstr "任意のメモ欄" + +#: common/models.py:2788 +msgid "Barcode Scan" +msgstr "バーコードスキャン" + +#: common/models.py:2793 +msgid "Barcode data" +msgstr "バーコードデータ" + +#: common/models.py:2804 +msgid "User who scanned the barcode" +msgstr "バーコードをスキャンしたユーザー" + +#: common/models.py:2809 importer/models.py:69 +msgid "Timestamp" +msgstr "タイムスタンプ" + +#: common/models.py:2810 +msgid "Date and time of the barcode scan" +msgstr "バーコードスキャンの日時" + +#: common/models.py:2816 +msgid "URL endpoint which processed the barcode" +msgstr "バーコードを処理したURLエンドポイント" + +#: common/models.py:2823 order/models.py:1833 plugin/serializers.py:93 +msgid "Context" +msgstr "コンテキスト" + +#: common/models.py:2824 +msgid "Context data for the barcode scan" +msgstr "バーコードスキャンのコンテキストデータ" + +#: common/models.py:2831 +msgid "Response" +msgstr "返答" + +#: common/models.py:2832 +msgid "Response data from the barcode scan" +msgstr "バーコードスキャンによるレスポンスデータ" + +#: common/models.py:2838 report/templates/report/inventree_test_report.html:103 +#: stock/models.py:2970 +msgid "Result" +msgstr "結果" + +#: common/models.py:2839 +msgid "Was the barcode scan successful?" +msgstr "バーコードスキャンは成功しましたか?" + +#: common/models.py:2921 +msgid "An error occurred" +msgstr "" + +#: common/models.py:2942 +msgid "INVE-E8: Email log deletion is protected. Set INVENTREE_PROTECT_EMAIL_LOG to False to allow deletion." +msgstr "" + +#: common/models.py:2989 +msgid "Email Message" +msgstr "" + +#: common/models.py:2990 +msgid "Email Messages" +msgstr "" + +#: common/models.py:2997 +msgid "Announced" +msgstr "" + +#: common/models.py:2999 +msgid "Sent" +msgstr "" + +#: common/models.py:3000 +msgid "Failed" +msgstr "" + +#: common/models.py:3003 +msgid "Delivered" +msgstr "" + +#: common/models.py:3011 +msgid "Confirmed" +msgstr "" + +#: common/models.py:3017 +msgid "Inbound" +msgstr "" + +#: common/models.py:3018 +msgid "Outbound" +msgstr "" + +#: common/models.py:3023 +msgid "No Reply" +msgstr "" + +#: common/models.py:3024 +msgid "Track Delivery" +msgstr "" + +#: common/models.py:3025 +msgid "Track Read" +msgstr "" + +#: common/models.py:3026 +msgid "Track Click" +msgstr "" + +#: common/models.py:3029 common/models.py:3132 +msgid "Global ID" +msgstr "" + +#: common/models.py:3042 +msgid "Identifier for this message (might be supplied by external system)" +msgstr "" + +#: common/models.py:3049 msgid "Thread ID" msgstr "" -#: common/models.py:2630 +#: common/models.py:3051 msgid "Identifier for this message thread (might be supplied by external system)" msgstr "" -#: common/models.py:2639 +#: common/models.py:3060 msgid "Thread" msgstr "" -#: common/models.py:2640 +#: common/models.py:3061 msgid "Linked thread for this message" msgstr "" -#: common/models.py:2656 -msgid "Prioriy" +#: common/models.py:3077 +msgid "Priority" msgstr "" -#: common/models.py:2698 +#: common/models.py:3119 msgid "Email Thread" msgstr "" -#: common/models.py:2699 +#: common/models.py:3120 msgid "Email Threads" msgstr "" -#: common/models.py:2705 generic/states/serializers.py:16 +#: common/models.py:3126 generic/states/serializers.py:16 #: machine/serializers.py:24 plugin/models.py:46 users/models.py:113 msgid "Key" msgstr "キー" -#: common/models.py:2708 +#: common/models.py:3129 msgid "Unique key for this thread (used to identify the thread)" msgstr "" -#: common/models.py:2712 +#: common/models.py:3133 msgid "Unique identifier for this thread" msgstr "" -#: common/models.py:2719 +#: common/models.py:3140 msgid "Started Internal" msgstr "" -#: common/models.py:2720 +#: common/models.py:3141 msgid "Was this thread started internally?" msgstr "" -#: common/models.py:2725 +#: common/models.py:3146 msgid "Date and time that the thread was created" msgstr "" -#: common/models.py:2730 +#: common/models.py:3151 msgid "Date and time that the thread was last updated" msgstr "" @@ -2199,7 +2339,7 @@ msgstr "{verbose_name} キャンセル" msgid "A order that is assigned to you was canceled" msgstr "あなたに割り当てられた注文がキャンセルされました。" -#: common/notifications.py:73 common/notifications.py:80 order/api.py:594 +#: common/notifications.py:73 common/notifications.py:80 order/api.py:600 msgid "Items Received" msgstr "受領品目" @@ -2211,88 +2351,93 @@ msgstr "発注書と照らし合わせて商品を受領" msgid "Items have been received against a return order" msgstr "返品注文に反して商品が届いた場合" -#: common/serializers.py:145 +#: common/serializers.py:149 msgid "Indicates if the setting is overridden by an environment variable" msgstr "" -#: common/serializers.py:147 +#: common/serializers.py:151 msgid "Override" msgstr "" -#: common/serializers.py:498 +#: common/serializers.py:502 msgid "Is Running" msgstr "走行中" -#: common/serializers.py:504 +#: common/serializers.py:508 msgid "Pending Tasks" msgstr "保留タスク" -#: common/serializers.py:510 +#: common/serializers.py:514 msgid "Scheduled Tasks" msgstr "スケジュールされたタスク" -#: common/serializers.py:516 +#: common/serializers.py:520 msgid "Failed Tasks" msgstr "失敗したタスク" -#: common/serializers.py:531 +#: common/serializers.py:535 msgid "Task ID" msgstr "タスクID" -#: common/serializers.py:531 +#: common/serializers.py:535 msgid "Unique task ID" msgstr "ユニークなタスクID" -#: common/serializers.py:533 +#: common/serializers.py:537 msgid "Lock" msgstr "ロック" -#: common/serializers.py:533 +#: common/serializers.py:537 msgid "Lock time" msgstr "ロック時間" -#: common/serializers.py:535 +#: common/serializers.py:539 msgid "Task name" msgstr "タスク名" -#: common/serializers.py:537 +#: common/serializers.py:541 msgid "Function" msgstr "関数" -#: common/serializers.py:537 +#: common/serializers.py:541 msgid "Function name" msgstr "機能名" -#: common/serializers.py:539 +#: common/serializers.py:543 msgid "Arguments" msgstr "引数" -#: common/serializers.py:539 +#: common/serializers.py:543 msgid "Task arguments" msgstr "タスク引数" -#: common/serializers.py:542 +#: common/serializers.py:546 msgid "Keyword Arguments" msgstr "キーワード論争" -#: common/serializers.py:542 +#: common/serializers.py:546 msgid "Task keyword arguments" msgstr "タスクキーワード引数" -#: common/serializers.py:652 +#: common/serializers.py:656 msgid "Filename" msgstr "ファイル名" -#: common/serializers.py:659 importer/models.py:89 report/api.py:41 +#: common/serializers.py:663 common/serializers.py:730 +#: common/serializers.py:805 importer/models.py:89 report/api.py:41 #: report/models.py:293 report/serializers.py:52 msgid "Model Type" msgstr "モデルタイプ" -#: common/serializers.py:687 +#: common/serializers.py:691 msgid "User does not have permission to create or edit attachments for this model" msgstr "このモデルの添付ファイルを作成または編集する権限がありません。" -#: common/serializers.py:731 common/serializers.py:834 +#: common/serializers.py:786 +msgid "User does not have permission to create or edit parameters for this model" +msgstr "" + +#: common/serializers.py:850 common/serializers.py:953 msgid "Selection list is locked" msgstr "選択リストがロックされています" @@ -2368,7 +2513,7 @@ msgstr "about`を表示する制限" msgid "Show the `about` modal only to superusers" msgstr "スーパーユーザーにのみ `about` モーダルを表示します。" -#: common/setting/system.py:224 company/models.py:144 company/models.py:145 +#: common/setting/system.py:224 company/models.py:145 company/models.py:146 msgid "Company name" msgstr "会社名" @@ -2411,8 +2556,8 @@ msgstr "為替レートの更新頻度 (ゼロに設定すると無効になり #: common/setting/system.py:253 common/setting/system.py:293 #: common/setting/system.py:306 common/setting/system.py:314 #: common/setting/system.py:321 common/setting/system.py:330 -#: common/setting/system.py:339 common/setting/system.py:588 -#: common/setting/system.py:616 common/setting/system.py:707 +#: common/setting/system.py:339 common/setting/system.py:580 +#: common/setting/system.py:608 common/setting/system.py:707 #: common/setting/system.py:1103 common/setting/system.py:1119 msgid "days" msgstr "日" @@ -2657,12 +2802,6 @@ msgstr "カテゴリー・パラメーター・テンプレートのコピー" msgid "Copy category parameter templates when creating a part" msgstr "部品作成時のカテゴリー・パラメーター・テンプレートのコピー" -#: common/setting/system.py:450 part/models.py:4054 report/models.py:373 -#: report/models.py:669 report/serializers.py:94 report/serializers.py:135 -#: stock/serializers.py:234 -msgid "Template" -msgstr "テンプレート" - #: common/setting/system.py:451 msgid "Parts are templates by default" msgstr "パーツはデフォルトのテンプレートです" @@ -2671,8 +2810,8 @@ msgstr "パーツはデフォルトのテンプレートです" msgid "Parts can be assembled from other components by default" msgstr "パーツはデフォルトで他のコンポーネントから組み立てることができます" -#: common/setting/system.py:462 part/models.py:1208 part/serializers.py:1734 -#: part/serializers.py:1741 +#: common/setting/system.py:462 part/models.py:1296 part/serializers.py:1599 +#: part/serializers.py:1606 msgid "Component" msgstr "コンポーネント" @@ -2680,7 +2819,7 @@ msgstr "コンポーネント" msgid "Parts can be used as sub-components by default" msgstr "パーツはデフォルトでサブコンポーネントとして使用できます" -#: common/setting/system.py:468 part/models.py:1226 +#: common/setting/system.py:468 part/models.py:1314 msgid "Purchaseable" msgstr "購入可能" @@ -2688,7 +2827,7 @@ msgstr "購入可能" msgid "Parts are purchaseable by default" msgstr "パーツはデフォルトで購入可能です" -#: common/setting/system.py:474 part/models.py:1232 stock/api.py:643 +#: common/setting/system.py:474 part/models.py:1320 stock/api.py:643 msgid "Salable" msgstr "販売可能" @@ -2700,7 +2839,7 @@ msgstr "パーツはデフォルトで販売可能です" msgid "Parts are trackable by default" msgstr "パーツはデフォルトで追跡可能です" -#: common/setting/system.py:486 part/models.py:1248 +#: common/setting/system.py:486 part/models.py:1336 msgid "Virtual" msgstr "バーチャル" @@ -2749,158 +2888,158 @@ msgid "Part category default icon (empty means no icon)" msgstr "パートカテゴリのデフォルトアイコン(空はアイコンがないことを意味します)" #: common/setting/system.py:525 -msgid "Enforce Parameter Units" -msgstr "パラメータ単位の強制" - -#: common/setting/system.py:527 -msgid "If units are provided, parameter values must match the specified units" -msgstr "単位が指定されている場合、パラメータ値は指定された単位に一致する必要があります。" - -#: common/setting/system.py:533 msgid "Minimum Pricing Decimal Places" msgstr "価格の最小桁数" -#: common/setting/system.py:535 +#: common/setting/system.py:527 msgid "Minimum number of decimal places to display when rendering pricing data" msgstr "価格データのレンダリング時に表示する最小小数点以下の桁数" -#: common/setting/system.py:546 +#: common/setting/system.py:538 msgid "Maximum Pricing Decimal Places" msgstr "価格の小数点以下の桁数" -#: common/setting/system.py:548 +#: common/setting/system.py:540 msgid "Maximum number of decimal places to display when rendering pricing data" msgstr "価格データのレンダリング時に表示する小数点以下の桁数の最大値" -#: common/setting/system.py:559 +#: common/setting/system.py:551 msgid "Use Supplier Pricing" msgstr "サプライヤー価格の利用" -#: common/setting/system.py:561 +#: common/setting/system.py:553 msgid "Include supplier price breaks in overall pricing calculations" msgstr "全体的な価格計算にサプライヤーの価格破壊を含めること" -#: common/setting/system.py:567 +#: common/setting/system.py:559 msgid "Purchase History Override" msgstr "購入履歴の上書き" -#: common/setting/system.py:569 +#: common/setting/system.py:561 msgid "Historical purchase order pricing overrides supplier price breaks" msgstr "過去の発注価格がサプライヤーの価格変動を上書き" -#: common/setting/system.py:575 +#: common/setting/system.py:567 msgid "Use Stock Item Pricing" msgstr "ストックアイテム価格を使用" -#: common/setting/system.py:577 +#: common/setting/system.py:569 msgid "Use pricing from manually entered stock data for pricing calculations" msgstr "手動入力された在庫データから価格計算を行います。" -#: common/setting/system.py:583 +#: common/setting/system.py:575 msgid "Stock Item Pricing Age" msgstr "在庫商品の価格設定年齢" -#: common/setting/system.py:585 +#: common/setting/system.py:577 msgid "Exclude stock items older than this number of days from pricing calculations" msgstr "この日数より古い在庫品を価格計算から除外します。" -#: common/setting/system.py:592 +#: common/setting/system.py:584 msgid "Use Variant Pricing" msgstr "バリアント価格を使用" -#: common/setting/system.py:593 +#: common/setting/system.py:585 msgid "Include variant pricing in overall pricing calculations" msgstr "全体的な価格計算にバリアント価格を含む" -#: common/setting/system.py:598 +#: common/setting/system.py:590 msgid "Active Variants Only" msgstr "アクティブバリアントのみ" -#: common/setting/system.py:600 +#: common/setting/system.py:592 msgid "Only use active variant parts for calculating variant pricing" msgstr "バリアント価格の計算には、アクティブなバリアントパーツのみを使用します。" -#: common/setting/system.py:606 +#: common/setting/system.py:598 msgid "Auto Update Pricing" msgstr "" -#: common/setting/system.py:608 +#: common/setting/system.py:600 msgid "Automatically update part pricing when internal data changes" msgstr "" -#: common/setting/system.py:614 +#: common/setting/system.py:606 msgid "Pricing Rebuild Interval" msgstr "価格の再構築間隔" -#: common/setting/system.py:615 +#: common/setting/system.py:607 msgid "Number of days before part pricing is automatically updated" msgstr "部品価格が自動的に更新されるまでの日数" -#: common/setting/system.py:621 +#: common/setting/system.py:613 msgid "Internal Prices" msgstr "社内価格" -#: common/setting/system.py:622 +#: common/setting/system.py:614 msgid "Enable internal prices for parts" msgstr "部品の内部価格の有効化" -#: common/setting/system.py:627 +#: common/setting/system.py:619 msgid "Internal Price Override" msgstr "内部価格オーバーライド" -#: common/setting/system.py:629 +#: common/setting/system.py:621 msgid "If available, internal prices override price range calculations" msgstr "利用可能な場合、内部価格は価格帯の計算より優先されます。" -#: common/setting/system.py:635 +#: common/setting/system.py:627 msgid "Enable label printing" msgstr "ラベル印刷の有効化" -#: common/setting/system.py:636 +#: common/setting/system.py:628 msgid "Enable label printing from the web interface" msgstr "ウェブインターフェースからラベル印刷を有効にします。" -#: common/setting/system.py:641 +#: common/setting/system.py:633 msgid "Label Image DPI" msgstr "ラベル画像DPI" -#: common/setting/system.py:643 +#: common/setting/system.py:635 msgid "DPI resolution when generating image files to supply to label printing plugins" msgstr "ラベル印刷プラグインに供給する画像ファイルを生成する際のDPI解像度" -#: common/setting/system.py:649 +#: common/setting/system.py:641 msgid "Enable Reports" msgstr "レポートの有効化" -#: common/setting/system.py:650 +#: common/setting/system.py:642 msgid "Enable generation of reports" msgstr "レポートの作成" -#: common/setting/system.py:655 +#: common/setting/system.py:647 msgid "Debug Mode" msgstr "デバッグモード" -#: common/setting/system.py:656 +#: common/setting/system.py:648 msgid "Generate reports in debug mode (HTML output)" msgstr "デバッグモードでのレポート生成(HTML出力)" -#: common/setting/system.py:661 +#: common/setting/system.py:653 msgid "Log Report Errors" msgstr "ログレポートエラー" -#: common/setting/system.py:662 +#: common/setting/system.py:654 msgid "Log errors which occur when generating reports" msgstr "レポート生成時に発生するエラーのログ" -#: common/setting/system.py:667 plugin/builtin/labels/label_sheet.py:29 +#: common/setting/system.py:659 plugin/builtin/labels/label_sheet.py:29 #: report/models.py:381 msgid "Page Size" msgstr "ページサイズ" -#: common/setting/system.py:668 +#: common/setting/system.py:660 msgid "Default page size for PDF reports" msgstr "PDFレポートのデフォルトのページサイズ" +#: common/setting/system.py:665 +msgid "Enforce Parameter Units" +msgstr "パラメータ単位の強制" + +#: common/setting/system.py:667 +msgid "If units are provided, parameter values must match the specified units" +msgstr "単位が指定されている場合、パラメータ値は指定された単位に一致する必要があります。" + #: common/setting/system.py:673 msgid "Globally Unique Serials" msgstr "世界的にユニークな連載" @@ -3456,688 +3595,677 @@ msgid "Display PDF reports in the browser, instead of downloading as a file" msgstr "ファイルとしてダウンロードする代わりに、ブラウザでPDFレポートを表示します。" #: common/setting/user.py:45 +msgid "Barcode Scanner in Form Fields" +msgstr "" + +#: common/setting/user.py:46 +msgid "Allow barcode scanner input in form fields" +msgstr "" + +#: common/setting/user.py:51 msgid "Search Parts" msgstr "部品検索" -#: common/setting/user.py:46 +#: common/setting/user.py:52 msgid "Display parts in search preview window" msgstr "検索プレビューウィンドウに部品を表示" -#: common/setting/user.py:51 +#: common/setting/user.py:57 msgid "Search Supplier Parts" msgstr "サプライヤー検索 部品" -#: common/setting/user.py:52 +#: common/setting/user.py:58 msgid "Display supplier parts in search preview window" msgstr "検索プレビューウィンドウにサプライヤー部品を表示" -#: common/setting/user.py:57 +#: common/setting/user.py:63 msgid "Search Manufacturer Parts" msgstr "メーカー部品検索" -#: common/setting/user.py:58 +#: common/setting/user.py:64 msgid "Display manufacturer parts in search preview window" msgstr "検索プレビューウィンドウにメーカー部品を表示" -#: common/setting/user.py:63 +#: common/setting/user.py:69 msgid "Hide Inactive Parts" msgstr "非アクティブな部品を非表示" -#: common/setting/user.py:64 +#: common/setting/user.py:70 msgid "Excluded inactive parts from search preview window" msgstr "検索プレビューウィンドウから非アクティブ部分を除外" -#: common/setting/user.py:69 +#: common/setting/user.py:75 msgid "Search Categories" msgstr "カテゴリーを検索" -#: common/setting/user.py:70 +#: common/setting/user.py:76 msgid "Display part categories in search preview window" msgstr "検索プレビューウィンドウに部品カテゴリーを表示" -#: common/setting/user.py:75 +#: common/setting/user.py:81 msgid "Search Stock" msgstr "在庫検索" -#: common/setting/user.py:76 +#: common/setting/user.py:82 msgid "Display stock items in search preview window" msgstr "検索プレビューウィンドウに在庫アイテムを表示" -#: common/setting/user.py:81 +#: common/setting/user.py:87 msgid "Hide Unavailable Stock Items" msgstr "在庫のない商品を隠す" -#: common/setting/user.py:83 +#: common/setting/user.py:89 msgid "Exclude stock items which are not available from the search preview window" msgstr "検索プレビューウィンドウから利用できない在庫商品を除外します。" -#: common/setting/user.py:89 +#: common/setting/user.py:95 msgid "Search Locations" msgstr "場所を検索" -#: common/setting/user.py:90 +#: common/setting/user.py:96 msgid "Display stock locations in search preview window" msgstr "検索プレビューウィンドウに在庫場所を表示" -#: common/setting/user.py:95 +#: common/setting/user.py:101 msgid "Search Companies" msgstr "企業検索" -#: common/setting/user.py:96 +#: common/setting/user.py:102 msgid "Display companies in search preview window" msgstr "検索プレビューウィンドウに企業を表示" -#: common/setting/user.py:101 +#: common/setting/user.py:107 msgid "Search Build Orders" msgstr "建設オーダーの検索" -#: common/setting/user.py:102 +#: common/setting/user.py:108 msgid "Display build orders in search preview window" msgstr "検索プレビューウィンドウに構築順を表示" -#: common/setting/user.py:107 +#: common/setting/user.py:113 msgid "Search Purchase Orders" msgstr "注文書の検索" -#: common/setting/user.py:108 +#: common/setting/user.py:114 msgid "Display purchase orders in search preview window" msgstr "検索プレビューウィンドウに発注書を表示" -#: common/setting/user.py:113 +#: common/setting/user.py:119 msgid "Exclude Inactive Purchase Orders" msgstr "非アクティブな購入注文の除外" -#: common/setting/user.py:114 +#: common/setting/user.py:120 msgid "Exclude inactive purchase orders from search preview window" msgstr "検索プレビューウィンドウから非アクティブな発注書を除外" -#: common/setting/user.py:119 +#: common/setting/user.py:125 msgid "Search Sales Orders" msgstr "販売注文の検索" -#: common/setting/user.py:120 +#: common/setting/user.py:126 msgid "Display sales orders in search preview window" msgstr "検索プレビューウィンドウに販売注文を表示" -#: common/setting/user.py:125 +#: common/setting/user.py:131 msgid "Exclude Inactive Sales Orders" msgstr "非アクティブな販売注文の除外" -#: common/setting/user.py:126 +#: common/setting/user.py:132 msgid "Exclude inactive sales orders from search preview window" msgstr "検索プレビューウィンドウから非アクティブな販売注文を除外" -#: common/setting/user.py:131 +#: common/setting/user.py:137 msgid "Search Sales Order Shipments" msgstr "販売注文の出荷を検索" -#: common/setting/user.py:132 +#: common/setting/user.py:138 msgid "Display sales order shipments in search preview window" msgstr "検索プレビューウィンドウに販売注文の出荷を表示" -#: common/setting/user.py:137 +#: common/setting/user.py:143 msgid "Search Return Orders" msgstr "返品注文の検索" -#: common/setting/user.py:138 +#: common/setting/user.py:144 msgid "Display return orders in search preview window" msgstr "検索プレビューウインドウに返送オーダーを表示" -#: common/setting/user.py:143 +#: common/setting/user.py:149 msgid "Exclude Inactive Return Orders" msgstr "非アクティブな返品注文の除外" -#: common/setting/user.py:144 +#: common/setting/user.py:150 msgid "Exclude inactive return orders from search preview window" msgstr "検索プレビューウィンドウから非アクティブな返品注文を除外" -#: common/setting/user.py:149 +#: common/setting/user.py:155 msgid "Search Preview Results" msgstr "検索プレビュー結果" -#: common/setting/user.py:151 +#: common/setting/user.py:157 msgid "Number of results to show in each section of the search preview window" msgstr "検索プレビューウィンドウの各セクションに表示する結果の数" -#: common/setting/user.py:157 +#: common/setting/user.py:163 msgid "Regex Search" msgstr "正規表現検索" -#: common/setting/user.py:158 +#: common/setting/user.py:164 msgid "Enable regular expressions in search queries" msgstr "検索クエリでの正規表現の有効化" -#: common/setting/user.py:163 +#: common/setting/user.py:169 msgid "Whole Word Search" msgstr "全単語検索" -#: common/setting/user.py:164 +#: common/setting/user.py:170 msgid "Search queries return results for whole word matches" msgstr "検索クエリは、単語全体が一致した結果を返します。" -#: common/setting/user.py:169 +#: common/setting/user.py:175 msgid "Search Notes" msgstr "メモの検索" -#: common/setting/user.py:171 +#: common/setting/user.py:177 msgid "Search queries return results for matches from the item's notes" msgstr "検索クエリは、アイテムのノートから一致する結果を返します。" -#: common/setting/user.py:177 +#: common/setting/user.py:183 msgid "Escape Key Closes Forms" msgstr "エスケープキーでフォームを閉じる" -#: common/setting/user.py:178 +#: common/setting/user.py:184 msgid "Use the escape key to close modal forms" msgstr "モーダルフォームを閉じるには、エスケープキーを使用します。" -#: common/setting/user.py:183 +#: common/setting/user.py:189 msgid "Fixed Navbar" msgstr "固定ナビバー" -#: common/setting/user.py:184 +#: common/setting/user.py:190 msgid "The navbar position is fixed to the top of the screen" msgstr "ナビバーの位置は画面上部に固定されます。" -#: common/setting/user.py:189 +#: common/setting/user.py:195 msgid "Fixed Table Headers" msgstr "" -#: common/setting/user.py:190 +#: common/setting/user.py:196 msgid "Table headers are fixed to the top of the table" msgstr "" -#: common/setting/user.py:195 +#: common/setting/user.py:201 msgid "Show Spotlight" msgstr "" -#: common/setting/user.py:196 +#: common/setting/user.py:202 msgid "Enable spotlight navigation functionality" msgstr "" -#: common/setting/user.py:201 +#: common/setting/user.py:207 msgid "Navigation Icons" msgstr "ナビゲーション・アイコン" -#: common/setting/user.py:202 +#: common/setting/user.py:208 msgid "Display icons in the navigation bar" msgstr "ナビゲーションバーにアイコンを表示" -#: common/setting/user.py:207 +#: common/setting/user.py:213 msgid "Date Format" msgstr "日付フォーマット" -#: common/setting/user.py:208 +#: common/setting/user.py:214 msgid "Preferred format for displaying dates" msgstr "日付の表示形式" -#: common/setting/user.py:221 +#: common/setting/user.py:227 msgid "Show Stock History" msgstr "" -#: common/setting/user.py:222 +#: common/setting/user.py:228 msgid "Display stock history information in the part detail page" msgstr "" -#: common/setting/user.py:227 +#: common/setting/user.py:233 msgid "Show Last Breadcrumb" msgstr "最後のパンくずを表示" -#: common/setting/user.py:228 +#: common/setting/user.py:234 msgid "Show the current page in breadcrumbs" msgstr "現在のページをパンくずで表示" -#: common/setting/user.py:233 +#: common/setting/user.py:239 msgid "Show full stock location in tables" msgstr "" -#: common/setting/user.py:235 +#: common/setting/user.py:241 msgid "Disabled: The full location path is displayed as a hover tooltip. Enabled: The full location path is displayed as plain text." msgstr "" -#: common/setting/user.py:241 +#: common/setting/user.py:247 msgid "Show full part categories in tables" msgstr "" -#: common/setting/user.py:243 +#: common/setting/user.py:249 msgid "Disabled: The full category path is displayed as a hover tooltip. Enabled: The full category path is displayed as plain text." msgstr "" -#: common/setting/user.py:249 +#: common/setting/user.py:255 msgid "Receive error reports" msgstr "エラー・レポートの受信" -#: common/setting/user.py:250 +#: common/setting/user.py:256 msgid "Receive notifications for system errors" msgstr "システムエラーの通知を受信" -#: common/setting/user.py:255 +#: common/setting/user.py:261 msgid "Last used printing machines" msgstr "最後の中古印刷機" -#: common/setting/user.py:256 +#: common/setting/user.py:262 msgid "Save the last used printing machines for a user" msgstr "ユーザーの最後に使用した印刷機を保存" -#: common/validators.py:34 +#: common/validators.py:38 +msgid "All models" +msgstr "" + +#: common/validators.py:63 msgid "No attachment model type provided" msgstr "アタッチメント型式なし" -#: common/validators.py:40 +#: common/validators.py:69 msgid "Invalid attachment model type" msgstr "無効なアタッチメントモデルタイプ" -#: common/validators.py:81 +#: common/validators.py:110 msgid "Minimum places cannot be greater than maximum places" msgstr "最小プレースは最大プレースより大きくできません。" -#: common/validators.py:93 +#: common/validators.py:122 msgid "Maximum places cannot be less than minimum places" msgstr "最大定員が最小定員を下回ることはありません。" -#: common/validators.py:104 +#: common/validators.py:133 msgid "An empty domain is not allowed." msgstr "空のドメインは使用できません。" -#: common/validators.py:106 +#: common/validators.py:135 #, python-brace-format msgid "Invalid domain name: {domain}" msgstr "無効なドメイン名: {domain}" -#: common/validators.py:122 +#: common/validators.py:151 msgid "Value must be uppercase" msgstr "値は大文字でなければならない" -#: common/validators.py:128 +#: common/validators.py:157 msgid "Value must be a valid variable identifier" msgstr "値は有効な変数識別名でなければならない。" -#: company/api.py:147 +#: company/api.py:141 msgid "Part is Active" msgstr "パートはアクティブ" -#: company/api.py:151 +#: company/api.py:145 msgid "Manufacturer is Active" msgstr "メーカーはアクティブ" -#: company/api.py:286 +#: company/api.py:246 msgid "Supplier Part is Active" msgstr "サプライヤーが活動中" -#: company/api.py:290 +#: company/api.py:250 msgid "Internal Part is Active" msgstr "内部はアクティブ" -#: company/api.py:295 +#: company/api.py:255 msgid "Supplier is Active" msgstr "サプライヤーの活動" -#: company/api.py:307 company/models.py:520 company/serializers.py:457 -#: part/serializers.py:566 +#: company/api.py:267 company/models.py:522 company/serializers.py:502 +#: part/serializers.py:477 msgid "Manufacturer" msgstr "製造元" -#: company/api.py:314 company/models.py:121 company/models.py:392 +#: company/api.py:274 company/models.py:122 company/models.py:393 #: stock/api.py:900 msgid "Company" msgstr "会社名" -#: company/api.py:324 +#: company/api.py:284 msgid "Has Stock" msgstr "在庫あり" -#: company/models.py:122 +#: company/models.py:123 msgid "Companies" msgstr "会社" -#: company/models.py:150 +#: company/models.py:151 msgid "Company description" msgstr "会社概要" -#: company/models.py:151 +#: company/models.py:152 msgid "Description of the company" msgstr "会社概要" -#: company/models.py:157 +#: company/models.py:158 msgid "Website" msgstr "ウェブサイト" -#: company/models.py:158 +#: company/models.py:159 msgid "Company website URL" msgstr "会社ホームページURL" -#: company/models.py:164 +#: company/models.py:165 msgid "Phone number" msgstr "電話番号" -#: company/models.py:166 +#: company/models.py:167 msgid "Contact phone number" msgstr "連絡先電話番号" -#: company/models.py:173 +#: company/models.py:174 msgid "Contact email address" msgstr "連絡先メールアドレス" -#: company/models.py:178 company/models.py:296 order/models.py:513 +#: company/models.py:179 company/models.py:297 order/models.py:514 #: users/models.py:561 msgid "Contact" msgstr "お問い合わせ" -#: company/models.py:180 +#: company/models.py:181 msgid "Point of contact" msgstr "連絡先" -#: company/models.py:186 +#: company/models.py:187 msgid "Link to external company information" msgstr "外部企業情報へのリンク" -#: company/models.py:191 +#: company/models.py:192 msgid "Is this company active?" msgstr "この会社は活動していますか?" -#: company/models.py:196 +#: company/models.py:197 msgid "Is customer" msgstr "お客様" -#: company/models.py:197 +#: company/models.py:198 msgid "Do you sell items to this company?" msgstr "この会社に商品を販売していますか?" -#: company/models.py:202 +#: company/models.py:203 msgid "Is supplier" msgstr "サプライヤー" -#: company/models.py:203 +#: company/models.py:204 msgid "Do you purchase items from this company?" msgstr "この会社から商品を購入しますか?" -#: company/models.py:208 +#: company/models.py:209 msgid "Is manufacturer" msgstr "メーカーは" -#: company/models.py:209 +#: company/models.py:210 msgid "Does this company manufacture parts?" msgstr "この会社は部品を製造しているのですか?" -#: company/models.py:217 +#: company/models.py:218 msgid "Default currency used for this company" msgstr "この会社で使用されるデフォルト通貨" -#: company/models.py:224 +#: company/models.py:225 msgid "Tax ID" msgstr "" -#: company/models.py:225 +#: company/models.py:226 msgid "Company Tax ID" msgstr "" -#: company/models.py:335 order/models.py:523 order/models.py:2288 +#: company/models.py:336 order/models.py:524 order/models.py:2289 msgid "Address" msgstr "住所" -#: company/models.py:336 +#: company/models.py:337 msgid "Addresses" msgstr "マイアカウント" -#: company/models.py:393 +#: company/models.py:394 msgid "Select company" msgstr "会社を選択" -#: company/models.py:398 +#: company/models.py:399 msgid "Address title" msgstr "住所" -#: company/models.py:399 +#: company/models.py:400 msgid "Title describing the address entry" msgstr "アドレスエントリを説明するタイトル" -#: company/models.py:405 +#: company/models.py:406 msgid "Primary address" msgstr "主な住所" -#: company/models.py:406 +#: company/models.py:407 msgid "Set as primary address" msgstr "プライマリアドレスに設定" -#: company/models.py:411 +#: company/models.py:412 msgid "Line 1" msgstr "1行目" -#: company/models.py:412 +#: company/models.py:413 msgid "Address line 1" msgstr "丁目、番地、号など" -#: company/models.py:418 +#: company/models.py:419 msgid "Line 2" msgstr "2行目" -#: company/models.py:419 +#: company/models.py:420 msgid "Address line 2" msgstr "建物名、部屋番号など" -#: company/models.py:425 company/models.py:426 +#: company/models.py:426 company/models.py:427 msgid "Postal code" msgstr "郵便番号" -#: company/models.py:432 +#: company/models.py:433 msgid "City/Region" msgstr "都市/地域" -#: company/models.py:433 +#: company/models.py:434 msgid "Postal code city/region" msgstr "郵便番号 都市/地域" -#: company/models.py:439 +#: company/models.py:440 msgid "State/Province" msgstr "都道府県" -#: company/models.py:440 +#: company/models.py:441 msgid "State or province" msgstr "都道府県" -#: company/models.py:446 +#: company/models.py:447 msgid "Country" msgstr "国" -#: company/models.py:447 +#: company/models.py:448 msgid "Address country" msgstr "住所国" -#: company/models.py:453 +#: company/models.py:454 msgid "Courier shipping notes" msgstr "宅配便発送に関する注意事項" -#: company/models.py:454 +#: company/models.py:455 msgid "Notes for shipping courier" msgstr "宅配便発送時の注意事項" -#: company/models.py:460 +#: company/models.py:461 msgid "Internal shipping notes" msgstr "社内出荷に関する注意事項" -#: company/models.py:461 +#: company/models.py:462 msgid "Shipping notes for internal use" msgstr "社内用出荷注意事項" -#: company/models.py:468 +#: company/models.py:469 msgid "Link to address information (external)" msgstr "住所情報へのリンク(外部)" -#: company/models.py:492 company/models.py:609 company/models.py:832 -#: company/serializers.py:471 stock/api.py:561 +#: company/models.py:494 company/models.py:786 company/serializers.py:516 +#: stock/api.py:561 msgid "Manufacturer Part" msgstr "メーカー・パーツ" -#: company/models.py:509 company/models.py:800 stock/models.py:1025 +#: company/models.py:511 company/models.py:754 stock/models.py:1025 #: stock/serializers.py:407 msgid "Base Part" msgstr "ベース部" -#: company/models.py:511 company/models.py:802 +#: company/models.py:513 company/models.py:756 msgid "Select part" msgstr "部品を選択" -#: company/models.py:521 +#: company/models.py:523 msgid "Select manufacturer" msgstr "メーカー選択" -#: company/models.py:527 company/serializers.py:479 order/serializers.py:734 -#: part/serializers.py:576 +#: company/models.py:529 company/serializers.py:524 order/serializers.py:745 +#: part/serializers.py:487 msgid "MPN" msgstr "MPN" -#: company/models.py:528 stock/serializers.py:572 +#: company/models.py:530 stock/serializers.py:572 msgid "Manufacturer Part Number" msgstr "メーカー品番" -#: company/models.py:535 +#: company/models.py:537 msgid "URL for external manufacturer part link" msgstr "外部メーカー部品リンク用URL" -#: company/models.py:544 +#: company/models.py:546 msgid "Manufacturer part description" msgstr "メーカー部品説明" -#: company/models.py:597 -msgid "Manufacturer Part Parameter" -msgstr "メーカー部品パラメーター" - -#: company/models.py:616 -msgid "Parameter name" -msgstr "パラメータ名" - -#: company/models.py:623 -msgid "Parameter value" -msgstr "パラメータ値" - -#: company/models.py:630 part/models.py:1195 part/models.py:3857 -msgid "Units" -msgstr "単位" - -#: company/models.py:631 -msgid "Parameter units" -msgstr "パラメータ単位" - -#: company/models.py:740 +#: company/models.py:694 msgid "Pack units must be compatible with the base part units" msgstr "パックユニットは、ベースユニットと互換性がある必要があります。" -#: company/models.py:747 +#: company/models.py:701 msgid "Pack units must be greater than zero" msgstr "パック単位はゼロより大きくなければなりません。" -#: company/models.py:761 +#: company/models.py:715 msgid "Linked manufacturer part must reference the same base part" msgstr "リンクされたメーカー部品は、同じベース部品を参照する必要があります。" -#: company/models.py:810 company/serializers.py:449 company/serializers.py:467 -#: order/models.py:639 part/serializers.py:550 +#: company/models.py:764 company/serializers.py:494 company/serializers.py:512 +#: order/models.py:640 part/serializers.py:461 #: plugin/builtin/suppliers/digikey.py:26 plugin/builtin/suppliers/lcsc.py:27 #: plugin/builtin/suppliers/mouser.py:25 plugin/builtin/suppliers/tme.py:27 #: stock/api.py:567 templates/email/overdue_purchase_order.html:16 msgid "Supplier" msgstr "仕入先" -#: company/models.py:811 +#: company/models.py:765 msgid "Select supplier" msgstr "サプライヤーを選択" -#: company/models.py:817 part/serializers.py:561 +#: company/models.py:771 part/serializers.py:472 msgid "Supplier stock keeping unit" msgstr "サプライヤー在庫管理ユニット" -#: company/models.py:823 +#: company/models.py:777 msgid "Is this supplier part active?" msgstr "このサプライヤーは活動していますか?" -#: company/models.py:833 +#: company/models.py:787 msgid "Select manufacturer part" msgstr "メーカー部品の選択" -#: company/models.py:840 +#: company/models.py:794 msgid "URL for external supplier part link" msgstr "外部サプライヤー部品リンク用URL" -#: company/models.py:849 +#: company/models.py:803 msgid "Supplier part description" msgstr "サプライヤーの部品説明" -#: company/models.py:856 order/serializers.py:883 order/serializers.py:2047 -#: part/models.py:4070 part/models.py:4450 part/models.py:4819 -#: report/templates/report/inventree_bill_of_materials_report.html:140 -#: report/templates/report/inventree_purchase_order_report.html:39 -#: report/templates/report/inventree_return_order_report.html:27 -#: report/templates/report/inventree_sales_order_report.html:32 -#: report/templates/report/inventree_stock_location_report.html:105 -#: stock/serializers.py:813 -msgid "Note" -msgstr "備考" - -#: company/models.py:865 part/models.py:2250 +#: company/models.py:819 part/models.py:2338 msgid "base cost" msgstr "基本料金" -#: company/models.py:866 part/models.py:2251 +#: company/models.py:820 part/models.py:2339 msgid "Minimum charge (e.g. stocking fee)" msgstr "ミニマムチャージ(例:仕入れ手数料)" -#: company/models.py:873 order/serializers.py:875 stock/models.py:1056 +#: company/models.py:827 order/serializers.py:886 stock/models.py:1056 #: stock/serializers.py:1606 msgid "Packaging" msgstr "パッケージング" -#: company/models.py:874 +#: company/models.py:828 msgid "Part packaging" msgstr "部品梱包" -#: company/models.py:879 +#: company/models.py:833 msgid "Pack Quantity" msgstr "パック数量" -#: company/models.py:881 +#: company/models.py:835 msgid "Total quantity supplied in a single pack. Leave empty for single items." msgstr "1パックに供給される総量。単品の場合は空のままにしてください。" -#: company/models.py:900 part/models.py:2257 +#: company/models.py:854 part/models.py:2345 msgid "multiple" msgstr "複数" -#: company/models.py:901 +#: company/models.py:855 msgid "Order multiple" msgstr "複数注文" -#: company/models.py:913 +#: company/models.py:867 msgid "Quantity available from supplier" msgstr "サプライヤーから入手可能な数量" -#: company/models.py:919 +#: company/models.py:873 msgid "Availability Updated" msgstr "空席状況更新" -#: company/models.py:920 +#: company/models.py:874 msgid "Date of last update of availability data" msgstr "アベイラビリティ・データの最終更新日" -#: company/models.py:1048 +#: company/models.py:1002 msgid "Supplier Price Break" msgstr "サプライヤーの価格破壊" -#: company/serializers.py:181 +#: company/serializers.py:184 +msgid "Primary Address" +msgstr "" + +#: company/serializers.py:186 msgid "Return the string representation for the primary address. This property exists for backwards compatibility." msgstr "プライマリ・アドレスの文字列表現を返します。このプロパティは後方互換性のために存在します。" -#: company/serializers.py:212 +#: company/serializers.py:218 msgid "Default currency used for this supplier" msgstr "このサプライヤーで使用されるデフォルト通貨" -#: company/serializers.py:248 +#: company/serializers.py:260 msgid "Company Name" msgstr "会社名" -#: company/serializers.py:433 part/serializers.py:955 stock/serializers.py:428 +#: company/serializers.py:460 part/serializers.py:840 stock/serializers.py:428 msgid "In Stock" msgstr "在庫あり" +#: company/serializers.py:477 +msgid "Price Breaks" +msgstr "" + #: data_exporter/mixins.py:325 data_exporter/mixins.py:403 msgid "Error occurred during data export" msgstr "データのエクスポート中にエラーが発生しました" @@ -4290,7 +4418,7 @@ msgstr "元の行データ" msgid "Errors" msgstr "エラー" -#: importer/models.py:550 part/serializers.py:1268 +#: importer/models.py:550 part/serializers.py:1133 msgid "Valid" msgstr "有効" @@ -4402,7 +4530,7 @@ msgstr "各ラベルの印刷部数" msgid "Connected" msgstr "接続済み" -#: machine/machine_types/label_printer.py:232 order/api.py:1795 +#: machine/machine_types/label_printer.py:232 order/api.py:1800 msgid "Unknown" msgstr "不明" @@ -4530,105 +4658,105 @@ msgstr "" msgid "Maximum value for progress type, required if type=progress" msgstr "" -#: order/api.py:125 +#: order/api.py:130 msgid "Order Reference" msgstr "注文参照" -#: order/api.py:153 order/api.py:1207 +#: order/api.py:158 order/api.py:1212 msgid "Outstanding" msgstr "並外れた" -#: order/api.py:169 +#: order/api.py:174 msgid "Has Project Code" msgstr "プロジェクトコード" -#: order/api.py:183 order/models.py:488 +#: order/api.py:188 order/models.py:489 msgid "Created By" msgstr "作成者" -#: order/api.py:187 +#: order/api.py:192 msgid "Created Before" msgstr "作成前" -#: order/api.py:191 +#: order/api.py:196 msgid "Created After" msgstr "の後に作成されました。" -#: order/api.py:195 +#: order/api.py:200 msgid "Has Start Date" msgstr "開始日あり" -#: order/api.py:203 +#: order/api.py:208 msgid "Start Date Before" msgstr "開始日 前" -#: order/api.py:207 +#: order/api.py:212 msgid "Start Date After" msgstr "開始日 後" -#: order/api.py:211 +#: order/api.py:216 msgid "Has Target Date" msgstr "目標期日あり" -#: order/api.py:219 +#: order/api.py:224 msgid "Target Date Before" msgstr "目標期日" -#: order/api.py:223 +#: order/api.py:228 msgid "Target Date After" msgstr "以降の目標日" -#: order/api.py:274 +#: order/api.py:279 msgid "Has Pricing" msgstr "価格" -#: order/api.py:327 order/api.py:812 order/api.py:1490 +#: order/api.py:332 order/api.py:818 order/api.py:1495 msgid "Completed Before" msgstr "完成前" -#: order/api.py:331 order/api.py:816 order/api.py:1494 +#: order/api.py:336 order/api.py:822 order/api.py:1499 msgid "Completed After" msgstr "終了後" -#: order/api.py:337 order/api.py:341 +#: order/api.py:342 order/api.py:346 msgid "External Build Order" msgstr "" -#: order/api.py:526 order/api.py:914 order/api.py:1170 order/models.py:1922 -#: order/models.py:2049 order/models.py:2099 order/models.py:2279 -#: order/models.py:2477 order/models.py:2999 order/models.py:3065 +#: order/api.py:532 order/api.py:919 order/api.py:1175 order/models.py:1923 +#: order/models.py:2050 order/models.py:2100 order/models.py:2280 +#: order/models.py:2478 order/models.py:3000 order/models.py:3066 msgid "Order" msgstr "注文" -#: order/api.py:530 order/api.py:982 +#: order/api.py:536 order/api.py:987 msgid "Order Complete" msgstr "注文完了" -#: order/api.py:562 order/api.py:566 order/serializers.py:745 +#: order/api.py:568 order/api.py:572 order/serializers.py:756 msgid "Internal Part" msgstr "内部パーツ" -#: order/api.py:584 +#: order/api.py:590 msgid "Order Pending" msgstr "注文保留" -#: order/api.py:967 +#: order/api.py:972 msgid "Completed" msgstr "完了" -#: order/api.py:1223 +#: order/api.py:1228 msgid "Has Shipment" msgstr "出荷あり" -#: order/api.py:1789 order/models.py:552 order/models.py:1923 -#: order/models.py:2050 +#: order/api.py:1794 order/models.py:553 order/models.py:1924 +#: order/models.py:2051 #: report/templates/report/inventree_purchase_order_report.html:14 #: stock/serializers.py:129 templates/email/overdue_purchase_order.html:15 msgid "Purchase Order" msgstr "注文" -#: order/api.py:1791 order/models.py:1251 order/models.py:2100 -#: order/models.py:2280 order/models.py:2478 +#: order/api.py:1796 order/models.py:1252 order/models.py:2101 +#: order/models.py:2281 order/models.py:2479 #: report/templates/report/inventree_build_order_report.html:135 #: report/templates/report/inventree_sales_order_report.html:14 #: report/templates/report/inventree_sales_order_shipment_report.html:15 @@ -4636,8 +4764,8 @@ msgstr "注文" msgid "Sales Order" msgstr "セールスオーダー" -#: order/api.py:1793 order/models.py:2649 order/models.py:3000 -#: order/models.py:3066 +#: order/api.py:1798 order/models.py:2650 order/models.py:3001 +#: order/models.py:3067 #: report/templates/report/inventree_return_order_report.html:13 #: templates/email/overdue_return_order.html:15 msgid "Return Order" @@ -4653,722 +4781,722 @@ msgstr "合計金額" msgid "Total price for this order" msgstr "この注文の合計金額" -#: order/models.py:96 order/serializers.py:77 +#: order/models.py:96 order/serializers.py:78 msgid "Order Currency" msgstr "注文通貨" -#: order/models.py:99 order/serializers.py:78 +#: order/models.py:99 order/serializers.py:79 msgid "Currency for this order (leave blank to use company default)" msgstr "この注文の通貨(会社のデフォルトを使用する場合は空白のままにしてください。)" -#: order/models.py:324 +#: order/models.py:325 msgid "This order is locked and cannot be modified" msgstr "この注文はロックされており、変更できません。" -#: order/models.py:376 +#: order/models.py:377 msgid "Contact does not match selected company" msgstr "連絡先が選択した会社と一致しません" -#: order/models.py:383 +#: order/models.py:384 msgid "Start date must be before target date" msgstr "開始日は目標期日より前でなければなりません。" -#: order/models.py:390 +#: order/models.py:391 msgid "Address does not match selected company" msgstr "" -#: order/models.py:443 +#: order/models.py:444 msgid "Order description (optional)" msgstr "ご注文内容(任意)" -#: order/models.py:452 order/models.py:1806 +#: order/models.py:453 order/models.py:1807 msgid "Select project code for this order" msgstr "この注文のプロジェクトコードを選択してください。" -#: order/models.py:458 order/models.py:1787 order/models.py:2344 +#: order/models.py:459 order/models.py:1788 order/models.py:2345 msgid "Link to external page" msgstr "外部ページへのリンク" -#: order/models.py:465 +#: order/models.py:466 msgid "Start date" msgstr "開始日" -#: order/models.py:466 +#: order/models.py:467 msgid "Scheduled start date for this order" msgstr "本注文の開始予定日" -#: order/models.py:472 order/models.py:1794 order/serializers.py:309 +#: order/models.py:473 order/models.py:1795 order/serializers.py:317 #: report/templates/report/inventree_build_order_report.html:125 msgid "Target Date" msgstr "終了日に達したら" -#: order/models.py:474 +#: order/models.py:475 msgid "Expected date for order delivery. Order will be overdue after this date." msgstr "お届け予定日この期日を過ぎますと延滞となります。" -#: order/models.py:494 +#: order/models.py:495 msgid "Issue Date" msgstr "発行日" -#: order/models.py:495 +#: order/models.py:496 msgid "Date order was issued" msgstr "オーダー発行日" -#: order/models.py:503 +#: order/models.py:504 msgid "User or group responsible for this order" msgstr "この注文を担当するユーザーまたはグループ" -#: order/models.py:514 +#: order/models.py:515 msgid "Point of contact for this order" msgstr "本注文に関する連絡先" -#: order/models.py:524 +#: order/models.py:525 msgid "Company address for this order" msgstr "本注文の会社住所" -#: order/models.py:615 order/models.py:1312 +#: order/models.py:616 order/models.py:1313 msgid "Order reference" msgstr "注文参照" -#: order/models.py:624 order/models.py:1336 order/models.py:2737 +#: order/models.py:625 order/models.py:1337 order/models.py:2738 #: stock/serializers.py:559 stock/serializers.py:988 users/models.py:542 msgid "Status" msgstr "ステータス" -#: order/models.py:625 +#: order/models.py:626 msgid "Purchase order status" msgstr "発注状況" -#: order/models.py:640 +#: order/models.py:641 msgid "Company from which the items are being ordered" msgstr "注文元の会社" -#: order/models.py:651 +#: order/models.py:652 msgid "Supplier Reference" msgstr "サプライヤー・リファレンス" -#: order/models.py:652 +#: order/models.py:653 msgid "Supplier order reference code" msgstr "サプライヤー注文参照コード" -#: order/models.py:661 +#: order/models.py:662 msgid "received by" msgstr "受信" -#: order/models.py:668 order/models.py:2752 +#: order/models.py:669 order/models.py:2753 msgid "Date order was completed" msgstr "注文完了日" -#: order/models.py:677 order/models.py:1981 +#: order/models.py:678 order/models.py:1982 msgid "Destination" msgstr "目的地" -#: order/models.py:678 order/models.py:1985 +#: order/models.py:679 order/models.py:1986 msgid "Destination for received items" msgstr "入荷商品のお届け先" -#: order/models.py:724 +#: order/models.py:725 msgid "Part supplier must match PO supplier" msgstr "部品サプライヤーは、POサプライヤーと一致する必要があります。" -#: order/models.py:994 +#: order/models.py:995 msgid "Line item does not match purchase order" msgstr "品目が発注書と一致しません" -#: order/models.py:997 +#: order/models.py:998 msgid "Line item is missing a linked part" msgstr "" -#: order/models.py:1011 +#: order/models.py:1012 msgid "Quantity must be a positive number" msgstr "数量は正の数でなければなりません。" -#: order/models.py:1323 order/models.py:2724 stock/models.py:1078 +#: order/models.py:1324 order/models.py:2725 stock/models.py:1078 #: stock/models.py:1079 stock/serializers.py:1322 #: templates/email/overdue_return_order.html:16 #: templates/email/overdue_sales_order.html:16 msgid "Customer" msgstr "顧客" -#: order/models.py:1324 +#: order/models.py:1325 msgid "Company to which the items are being sold" msgstr "販売先" -#: order/models.py:1337 +#: order/models.py:1338 msgid "Sales order status" msgstr "販売注文状況" -#: order/models.py:1348 order/models.py:2744 +#: order/models.py:1349 order/models.py:2745 msgid "Customer Reference " msgstr "お客様リファレンス" -#: order/models.py:1349 order/models.py:2745 +#: order/models.py:1350 order/models.py:2746 msgid "Customer order reference code" msgstr "顧客注文参照コード" -#: order/models.py:1353 order/models.py:2296 +#: order/models.py:1354 order/models.py:2297 msgid "Shipment Date" msgstr "出荷日" -#: order/models.py:1362 +#: order/models.py:1363 msgid "shipped by" msgstr "出荷元" -#: order/models.py:1413 +#: order/models.py:1414 msgid "Order is already complete" msgstr "注文はすでに完了しています。" -#: order/models.py:1416 +#: order/models.py:1417 msgid "Order is already cancelled" msgstr "注文はすでにキャンセルされました" -#: order/models.py:1420 +#: order/models.py:1421 msgid "Only an open order can be marked as complete" msgstr "未完了の注文にのみ完了マークを付けることができます。" -#: order/models.py:1424 +#: order/models.py:1425 msgid "Order cannot be completed as there are incomplete shipments" msgstr "出荷に不備があるため、注文を完了できません。" -#: order/models.py:1429 +#: order/models.py:1430 msgid "Order cannot be completed as there are incomplete allocations" msgstr "割り当てに不備があるため、注文を完了できません。" -#: order/models.py:1438 +#: order/models.py:1439 msgid "Order cannot be completed as there are incomplete line items" msgstr "不完全な項目があるため、注文を完了できません。" -#: order/models.py:1733 order/models.py:1749 +#: order/models.py:1734 order/models.py:1750 msgid "The order is locked and cannot be modified" msgstr "注文はロックされ、変更できません。" -#: order/models.py:1757 +#: order/models.py:1758 msgid "Item quantity" msgstr "品目数量" -#: order/models.py:1774 +#: order/models.py:1775 msgid "Line item reference" msgstr "行項目参照" -#: order/models.py:1781 +#: order/models.py:1782 msgid "Line item notes" msgstr "項目" -#: order/models.py:1796 +#: order/models.py:1797 msgid "Target date for this line item (leave blank to use the target date from the order)" msgstr "この行項目の目標期日(注文の目標期日を使用する場合は空白のままにしてください。)" -#: order/models.py:1826 +#: order/models.py:1827 msgid "Line item description (optional)" msgstr "行項目の説明(オプション)" -#: order/models.py:1833 +#: order/models.py:1834 msgid "Additional context for this line" msgstr "この行の補足説明" -#: order/models.py:1843 +#: order/models.py:1844 msgid "Unit price" msgstr "単価" -#: order/models.py:1862 +#: order/models.py:1863 msgid "Purchase Order Line Item" msgstr "発注書項目" -#: order/models.py:1889 +#: order/models.py:1890 msgid "Supplier part must match supplier" msgstr "サプライヤーの部品はサプライヤーと一致しなければなりません。" -#: order/models.py:1894 +#: order/models.py:1895 msgid "Build order must be marked as external" msgstr "" -#: order/models.py:1901 +#: order/models.py:1902 msgid "Build orders can only be linked to assembly parts" msgstr "" -#: order/models.py:1907 +#: order/models.py:1908 msgid "Build order part must match line item part" msgstr "" -#: order/models.py:1942 +#: order/models.py:1943 msgid "Supplier part" msgstr "サプライヤー" -#: order/models.py:1949 +#: order/models.py:1950 msgid "Received" msgstr "受信" -#: order/models.py:1950 +#: order/models.py:1951 msgid "Number of items received" msgstr "受領品目数" -#: order/models.py:1958 stock/models.py:1201 stock/serializers.py:637 +#: order/models.py:1959 stock/models.py:1201 stock/serializers.py:637 msgid "Purchase Price" msgstr "購入金額" -#: order/models.py:1959 +#: order/models.py:1960 msgid "Unit purchase price" msgstr "購入単価" -#: order/models.py:1975 +#: order/models.py:1976 msgid "External Build Order to be fulfilled by this line item" msgstr "" -#: order/models.py:2038 +#: order/models.py:2039 msgid "Purchase Order Extra Line" msgstr "発注書追加行" -#: order/models.py:2067 +#: order/models.py:2068 msgid "Sales Order Line Item" msgstr "販売注文明細" -#: order/models.py:2092 +#: order/models.py:2093 msgid "Only salable parts can be assigned to a sales order" msgstr "販売可能な部品のみを販売オーダーに割り当てることができます。" -#: order/models.py:2118 +#: order/models.py:2119 msgid "Sale Price" msgstr "セール価格" -#: order/models.py:2119 +#: order/models.py:2120 msgid "Unit sale price" msgstr "販売単価" -#: order/models.py:2128 order/status_codes.py:50 +#: order/models.py:2129 order/status_codes.py:50 msgid "Shipped" msgstr "発送済み" -#: order/models.py:2129 +#: order/models.py:2130 msgid "Shipped quantity" msgstr "出荷数量" -#: order/models.py:2240 +#: order/models.py:2241 msgid "Sales Order Shipment" msgstr "販売注文の出荷" -#: order/models.py:2253 +#: order/models.py:2254 msgid "Shipment address must match the customer" msgstr "" -#: order/models.py:2289 +#: order/models.py:2290 msgid "Shipping address for this shipment" msgstr "" -#: order/models.py:2297 +#: order/models.py:2298 msgid "Date of shipment" msgstr "出荷日" -#: order/models.py:2303 +#: order/models.py:2304 msgid "Delivery Date" msgstr "配達日" -#: order/models.py:2304 +#: order/models.py:2305 msgid "Date of delivery of shipment" msgstr "貨物の引渡日" -#: order/models.py:2312 +#: order/models.py:2313 msgid "Checked By" msgstr "チェック済み" -#: order/models.py:2313 +#: order/models.py:2314 msgid "User who checked this shipment" msgstr "この貨物をチェックしたユーザー" -#: order/models.py:2320 order/models.py:2574 order/serializers.py:1711 -#: order/serializers.py:1835 +#: order/models.py:2321 order/models.py:2575 order/serializers.py:1725 +#: order/serializers.py:1849 #: report/templates/report/inventree_sales_order_shipment_report.html:14 msgid "Shipment" msgstr "発送" -#: order/models.py:2321 +#: order/models.py:2322 msgid "Shipment number" msgstr "出荷番号" -#: order/models.py:2329 +#: order/models.py:2330 msgid "Tracking Number" msgstr "追跡番号" -#: order/models.py:2330 +#: order/models.py:2331 msgid "Shipment tracking information" msgstr "貨物追跡情報" -#: order/models.py:2337 +#: order/models.py:2338 msgid "Invoice Number" msgstr "請求書番号" -#: order/models.py:2338 +#: order/models.py:2339 msgid "Reference number for associated invoice" msgstr "関連する請求書の参照番号" -#: order/models.py:2377 +#: order/models.py:2378 msgid "Shipment has already been sent" msgstr "発送済み" -#: order/models.py:2380 +#: order/models.py:2381 msgid "Shipment has no allocated stock items" msgstr "出荷品目に割り当てられた在庫がありません" -#: order/models.py:2387 +#: order/models.py:2388 msgid "Shipment must be checked before it can be completed" msgstr "" -#: order/models.py:2466 +#: order/models.py:2467 msgid "Sales Order Extra Line" msgstr "セールスオーダー追加ライン" -#: order/models.py:2495 +#: order/models.py:2496 msgid "Sales Order Allocation" msgstr "販売注文の割り当て" -#: order/models.py:2518 order/models.py:2520 +#: order/models.py:2519 order/models.py:2521 msgid "Stock item has not been assigned" msgstr "在庫アイテムが割り当てられていません" -#: order/models.py:2527 +#: order/models.py:2528 msgid "Cannot allocate stock item to a line with a different part" msgstr "在庫品を別部品のラインに割り当てることはできません。" -#: order/models.py:2530 +#: order/models.py:2531 msgid "Cannot allocate stock to a line without a part" msgstr "部品のないラインに在庫を割り当てることはできません。" -#: order/models.py:2533 +#: order/models.py:2534 msgid "Allocation quantity cannot exceed stock quantity" msgstr "割当数量が在庫数量を超えることはできません" -#: order/models.py:2552 order/serializers.py:1581 +#: order/models.py:2553 order/serializers.py:1595 msgid "Quantity must be 1 for serialized stock item" msgstr "シリアル化された在庫品の場合、数量は1でなければなりません。" -#: order/models.py:2555 +#: order/models.py:2556 msgid "Sales order does not match shipment" msgstr "販売注文と出荷が一致しません" -#: order/models.py:2556 plugin/base/barcodes/api.py:642 +#: order/models.py:2557 plugin/base/barcodes/api.py:642 msgid "Shipment does not match sales order" msgstr "出荷が販売注文と一致しません" -#: order/models.py:2564 +#: order/models.py:2565 msgid "Line" msgstr "ライン" -#: order/models.py:2575 +#: order/models.py:2576 msgid "Sales order shipment reference" msgstr "販売注文の出荷参照" -#: order/models.py:2588 order/models.py:3007 +#: order/models.py:2589 order/models.py:3008 msgid "Item" msgstr "アイテム" -#: order/models.py:2589 +#: order/models.py:2590 msgid "Select stock item to allocate" msgstr "割り当てるストックアイテムを選択" -#: order/models.py:2598 +#: order/models.py:2599 msgid "Enter stock allocation quantity" msgstr "在庫割当数量の入力" -#: order/models.py:2713 +#: order/models.py:2714 msgid "Return Order reference" msgstr "リターンオーダー参照" -#: order/models.py:2725 +#: order/models.py:2726 msgid "Company from which items are being returned" msgstr "返品元の会社" -#: order/models.py:2738 +#: order/models.py:2739 msgid "Return order status" msgstr "返品状況" -#: order/models.py:2965 +#: order/models.py:2966 msgid "Return Order Line Item" msgstr "返品注文項目" -#: order/models.py:2978 +#: order/models.py:2979 msgid "Stock item must be specified" msgstr "在庫品の指定が必要です。" -#: order/models.py:2982 +#: order/models.py:2983 msgid "Return quantity exceeds stock quantity" msgstr "返品数量が在庫数量を超える場合" -#: order/models.py:2987 +#: order/models.py:2988 msgid "Return quantity must be greater than zero" msgstr "返品数量はゼロより大きくなければなりません。" -#: order/models.py:2992 +#: order/models.py:2993 msgid "Invalid quantity for serialized stock item" msgstr "シリアル化されたストックアイテムの数量が無効です。" -#: order/models.py:3008 +#: order/models.py:3009 msgid "Select item to return from customer" msgstr "お客様から返品する商品を選択" -#: order/models.py:3023 +#: order/models.py:3024 msgid "Received Date" msgstr "受領日" -#: order/models.py:3024 +#: order/models.py:3025 msgid "The date this this return item was received" msgstr "この返品商品が届いた日付" -#: order/models.py:3036 +#: order/models.py:3037 msgid "Outcome" msgstr "転帰" -#: order/models.py:3037 +#: order/models.py:3038 msgid "Outcome for this line item" msgstr "この項目の成果" -#: order/models.py:3044 +#: order/models.py:3045 msgid "Cost associated with return or repair for this line item" msgstr "この品目の返品または修理に関連する費用" -#: order/models.py:3054 +#: order/models.py:3055 msgid "Return Order Extra Line" msgstr "リターンオーダー追加ライン" -#: order/serializers.py:91 +#: order/serializers.py:92 msgid "Order ID" msgstr "注文ID" -#: order/serializers.py:91 +#: order/serializers.py:92 msgid "ID of the order to duplicate" msgstr "複製する注文のID" -#: order/serializers.py:97 +#: order/serializers.py:98 msgid "Copy Lines" msgstr "コピーライン" -#: order/serializers.py:98 +#: order/serializers.py:99 msgid "Copy line items from the original order" msgstr "元の注文から行項目をコピー" -#: order/serializers.py:104 +#: order/serializers.py:105 msgid "Copy Extra Lines" msgstr "余分な行をコピー" -#: order/serializers.py:105 +#: order/serializers.py:106 msgid "Copy extra line items from the original order" msgstr "元の注文から余分な項目をコピー" -#: order/serializers.py:120 +#: order/serializers.py:121 #: report/templates/report/inventree_purchase_order_report.html:29 #: report/templates/report/inventree_return_order_report.html:19 #: report/templates/report/inventree_sales_order_report.html:22 msgid "Line Items" msgstr "ラインアイテム" -#: order/serializers.py:125 +#: order/serializers.py:126 msgid "Completed Lines" msgstr "完成路線" -#: order/serializers.py:192 +#: order/serializers.py:199 msgid "Duplicate Order" msgstr "重複した注文" -#: order/serializers.py:193 +#: order/serializers.py:200 msgid "Specify options for duplicating this order" msgstr "この注文を複製するためのオプションを指定します。" -#: order/serializers.py:270 +#: order/serializers.py:278 msgid "Invalid order ID" msgstr "無効なオーダーID" -#: order/serializers.py:466 +#: order/serializers.py:477 msgid "Supplier Name" msgstr "サプライヤー名" -#: order/serializers.py:510 +#: order/serializers.py:521 msgid "Order cannot be cancelled" msgstr "ご注文のキャンセルはできません。" -#: order/serializers.py:525 order/serializers.py:1602 +#: order/serializers.py:536 order/serializers.py:1616 msgid "Allow order to be closed with incomplete line items" msgstr "未完了の行項目で注文を閉じることができます。" -#: order/serializers.py:535 order/serializers.py:1612 +#: order/serializers.py:546 order/serializers.py:1626 msgid "Order has incomplete line items" msgstr "注文に不備がある場合" -#: order/serializers.py:665 +#: order/serializers.py:676 msgid "Order is not open" msgstr "ご注文は受け付けておりません。" -#: order/serializers.py:692 +#: order/serializers.py:703 msgid "Auto Pricing" msgstr "自動車価格" -#: order/serializers.py:694 +#: order/serializers.py:705 msgid "Automatically calculate purchase price based on supplier part data" msgstr "サプライヤーの部品データに基づいて購入価格を自動計算" -#: order/serializers.py:704 +#: order/serializers.py:715 msgid "Purchase price currency" msgstr "購入価格通貨" -#: order/serializers.py:718 +#: order/serializers.py:729 msgid "Merge Items" msgstr "アイテムのマージ" -#: order/serializers.py:720 +#: order/serializers.py:731 msgid "Merge items with the same part, destination and target date into one line item" msgstr "同じ品目、同じ仕向け地、同じ日付の品目を1つの品目に統合します。" -#: order/serializers.py:727 part/serializers.py:560 +#: order/serializers.py:738 part/serializers.py:471 msgid "SKU" msgstr "SKU" -#: order/serializers.py:741 part/models.py:1089 part/serializers.py:372 +#: order/serializers.py:752 part/models.py:1177 part/serializers.py:337 msgid "Internal Part Number" msgstr "内部部品番号" -#: order/serializers.py:749 +#: order/serializers.py:760 msgid "Internal Part Name" msgstr "内部部品名" -#: order/serializers.py:765 +#: order/serializers.py:776 msgid "Supplier part must be specified" msgstr "サプライヤー部品の指定が必要" -#: order/serializers.py:768 +#: order/serializers.py:779 msgid "Purchase order must be specified" msgstr "注文書の指定が必要" -#: order/serializers.py:776 +#: order/serializers.py:787 msgid "Supplier must match purchase order" msgstr "サプライヤーは発注書と一致しなければなりません。" -#: order/serializers.py:777 +#: order/serializers.py:788 msgid "Purchase order must match supplier" msgstr "発注書はサプライヤーと一致している必要があります。" -#: order/serializers.py:825 order/serializers.py:1682 +#: order/serializers.py:836 order/serializers.py:1696 msgid "Line Item" msgstr "明細" -#: order/serializers.py:834 order/serializers.py:974 order/serializers.py:2043 +#: order/serializers.py:845 order/serializers.py:985 order/serializers.py:2060 msgid "Select destination location for received items" msgstr "受取商品の配送先選択" -#: order/serializers.py:850 +#: order/serializers.py:861 msgid "Enter batch code for incoming stock items" msgstr "入荷在庫品のバッチコード入力" -#: order/serializers.py:857 stock/models.py:1160 +#: order/serializers.py:868 stock/models.py:1160 #: templates/email/stale_stock_notification.html:22 users/models.py:137 msgid "Expiry Date" msgstr "有効期限" -#: order/serializers.py:858 +#: order/serializers.py:869 msgid "Enter expiry date for incoming stock items" msgstr "入荷在庫の有効期限の入力" -#: order/serializers.py:866 +#: order/serializers.py:877 msgid "Enter serial numbers for incoming stock items" msgstr "入荷した在庫品のシリアル番号の入力" -#: order/serializers.py:876 +#: order/serializers.py:887 msgid "Override packaging information for incoming stock items" msgstr "入荷在庫品の包装情報の上書き" -#: order/serializers.py:884 order/serializers.py:2048 +#: order/serializers.py:895 order/serializers.py:2065 msgid "Additional note for incoming stock items" msgstr "在庫品の入荷に関する注意事項" -#: order/serializers.py:891 +#: order/serializers.py:902 msgid "Barcode" msgstr "バーコード" -#: order/serializers.py:892 +#: order/serializers.py:903 msgid "Scanned barcode" msgstr "スキャンされたバーコード" -#: order/serializers.py:908 +#: order/serializers.py:919 msgid "Barcode is already in use" msgstr "バーコードはすでに使用されています" -#: order/serializers.py:991 order/serializers.py:2067 +#: order/serializers.py:1002 order/serializers.py:2084 msgid "Line items must be provided" msgstr "項目は必ずご記入ください。" -#: order/serializers.py:1010 +#: order/serializers.py:1021 msgid "Destination location must be specified" msgstr "デスティネーション・ロケーションを指定する必要があります。" -#: order/serializers.py:1017 +#: order/serializers.py:1028 msgid "Supplied barcode values must be unique" msgstr "バーコードの値は一意でなければなりません。" -#: order/serializers.py:1121 +#: order/serializers.py:1135 msgid "Shipments" msgstr "発送" -#: order/serializers.py:1125 +#: order/serializers.py:1139 msgid "Completed Shipments" msgstr "完了した出荷" -#: order/serializers.py:1293 +#: order/serializers.py:1307 msgid "Sale price currency" msgstr "販売価格通貨" -#: order/serializers.py:1339 +#: order/serializers.py:1353 msgid "Allocated Items" msgstr "割当項目" -#: order/serializers.py:1484 +#: order/serializers.py:1498 msgid "No shipment details provided" msgstr "出荷の詳細は記載されていません" -#: order/serializers.py:1545 order/serializers.py:1691 +#: order/serializers.py:1559 order/serializers.py:1705 msgid "Line item is not associated with this order" msgstr "ラインアイテムは、この注文に関連付けられていません。" -#: order/serializers.py:1564 +#: order/serializers.py:1578 msgid "Quantity must be positive" msgstr "数量は正数でなければなりません。" -#: order/serializers.py:1701 +#: order/serializers.py:1715 msgid "Enter serial numbers to allocate" msgstr "割り当てるシリアル番号を入力" -#: order/serializers.py:1723 order/serializers.py:1843 +#: order/serializers.py:1737 order/serializers.py:1857 msgid "Shipment has already been shipped" msgstr "出荷済み" -#: order/serializers.py:1726 order/serializers.py:1846 +#: order/serializers.py:1740 order/serializers.py:1860 msgid "Shipment is not associated with this order" msgstr "この注文には出荷が関連付けられていません" -#: order/serializers.py:1781 +#: order/serializers.py:1795 msgid "No match found for the following serial numbers" msgstr "以下のシリアル番号に該当するものは見つかりませんでした。" -#: order/serializers.py:1788 +#: order/serializers.py:1802 msgid "The following serial numbers are unavailable" msgstr "以下のシリアル番号はご利用いただけません。" -#: order/serializers.py:2009 +#: order/serializers.py:2026 msgid "Return order line item" msgstr "返品注文項目" -#: order/serializers.py:2019 +#: order/serializers.py:2036 msgid "Line item does not match return order" msgstr "ラインアイテムが返品オーダーと一致しません" -#: order/serializers.py:2022 +#: order/serializers.py:2039 msgid "Line item has already been received" msgstr "ラインアイテムはすでに受領済み" -#: order/serializers.py:2059 +#: order/serializers.py:2076 msgid "Items can only be received against orders which are in progress" msgstr "商品の受け取りは、進行中の注文に対してのみ可能です。" -#: order/serializers.py:2124 +#: order/serializers.py:2141 msgid "Quantity to return" msgstr "返品数量" -#: order/serializers.py:2140 +#: order/serializers.py:2157 msgid "Line price currency" msgstr "ライン価格通貨" @@ -5431,1190 +5559,1109 @@ msgstr "期限切れ返品注文" msgid "Return order {ro} is now overdue" msgstr "リターンオーダー{ro}は現在期限切れです" -#: part/api.py:108 +#: part/api.py:103 msgid "Starred" msgstr "スター付き" -#: part/api.py:110 +#: part/api.py:105 msgid "Filter by starred categories" msgstr "星の数で絞り込む" -#: part/api.py:127 stock/api.py:288 +#: part/api.py:122 stock/api.py:288 msgid "Depth" msgstr "深さ" -#: part/api.py:127 +#: part/api.py:122 msgid "Filter by category depth" msgstr "カテゴリの深さでフィルタリング" -#: part/api.py:145 stock/api.py:306 +#: part/api.py:140 stock/api.py:306 msgid "Top Level" msgstr "最多メンバーレベル" -#: part/api.py:147 +#: part/api.py:142 msgid "Filter by top-level categories" msgstr "トップレベルカテゴリーによるフィルタリング" -#: part/api.py:160 stock/api.py:321 +#: part/api.py:155 stock/api.py:321 msgid "Cascade" msgstr "カスケード表示" -#: part/api.py:162 +#: part/api.py:157 msgid "Include sub-categories in filtered results" msgstr "フィルタリング結果にサブカテゴリーを含めることができます。" -#: part/api.py:182 +#: part/api.py:177 msgid "Parent" msgstr "親" -#: part/api.py:184 +#: part/api.py:179 msgid "Filter by parent category" msgstr "親カテゴリーによる絞り込み" -#: part/api.py:219 +#: part/api.py:214 msgid "Exclude sub-categories under the specified category" msgstr "指定したカテゴリの下にあるサブカテゴリを除外します。" -#: part/api.py:445 +#: part/api.py:440 msgid "Has Results" msgstr "実績あり" -#: part/api.py:666 +#: part/api.py:661 msgid "Is Variant" msgstr "バリエーション?" -#: part/api.py:674 +#: part/api.py:669 msgid "Is Revision" msgstr "改訂版" -#: part/api.py:684 +#: part/api.py:679 msgid "Has Revisions" msgstr "改定あり" -#: part/api.py:865 +#: part/api.py:860 msgid "BOM Valid" msgstr "BOM有効" -#: part/api.py:974 +#: part/api.py:969 msgid "Cascade Categories" msgstr "" -#: part/api.py:975 +#: part/api.py:970 msgid "If true, include items in child categories of the given category" msgstr "" -#: part/api.py:981 +#: part/api.py:976 msgid "Filter by numeric category ID or the literal 'null'" msgstr "" -#: part/api.py:1533 +#: part/api.py:1258 msgid "Assembly part is testable" msgstr "組み立て部分はテスト可能" -#: part/api.py:1542 +#: part/api.py:1267 msgid "Component part is testable" msgstr "コンポーネント部分はテスト可能" -#: part/api.py:1611 +#: part/api.py:1336 msgid "Uses" msgstr "用途" -#: part/models.py:96 part/models.py:4163 +#: part/models.py:93 part/models.py:436 #: templates/email/part_event_notification.html:16 msgid "Part Category" msgstr "パーツカテゴリ" -#: part/models.py:97 users/ruleset.py:27 +#: part/models.py:94 users/ruleset.py:27 msgid "Part Categories" msgstr "パーツカテゴリ" -#: part/models.py:115 part/models.py:1125 +#: part/models.py:112 part/models.py:1213 msgid "Default Location" msgstr "デフォルトの場所" -#: part/models.py:116 +#: part/models.py:113 msgid "Default location for parts in this category" msgstr "このカテゴリの部品のデフォルトの場所" -#: part/models.py:121 stock/models.py:216 +#: part/models.py:118 stock/models.py:216 msgid "Structural" msgstr "構造に関するパターン" -#: part/models.py:123 +#: part/models.py:120 msgid "Parts may not be directly assigned to a structural category, but may be assigned to child categories." msgstr "部品は構造カテゴリーに直接割り当てることはできませんが、子カテゴリーに割り当てることはできます。" -#: part/models.py:132 +#: part/models.py:129 msgid "Default keywords" msgstr "デフォルトキーワード" -#: part/models.py:133 +#: part/models.py:130 msgid "Default keywords for parts in this category" msgstr "このカテゴリの部品のデフォルトキーワード" -#: part/models.py:140 stock/models.py:97 stock/models.py:198 +#: part/models.py:137 stock/models.py:97 stock/models.py:198 msgid "Icon" msgstr "アイコン" -#: part/models.py:141 part/serializers.py:148 part/serializers.py:167 +#: part/models.py:138 part/serializers.py:147 part/serializers.py:166 #: stock/models.py:199 msgid "Icon (optional)" msgstr "アイコン (オプション)" -#: part/models.py:185 +#: part/models.py:182 msgid "You cannot make this part category structural because some parts are already assigned to it!" msgstr "いくつかの部品がすでに割り当てられているため、この部品カテゴリを構造化することはできません!" -#: part/models.py:473 part/serializers.py:119 part/serializers.py:310 -#: users/ruleset.py:28 +#: part/models.py:392 +msgid "Part Category Parameter Template" +msgstr "部品分類パラメータテンプレート" + +#: part/models.py:448 +msgid "Default Value" +msgstr "初期値" + +#: part/models.py:449 +msgid "Default Parameter Value" +msgstr "パラメータのデフォルト値" + +#: part/models.py:551 part/serializers.py:118 users/ruleset.py:28 msgid "Parts" msgstr "パーツ" -#: part/models.py:525 +#: part/models.py:597 +msgid "Cannot delete parameters of a locked part" +msgstr "" + +#: part/models.py:602 +msgid "Cannot modify parameters of a locked part" +msgstr "" + +#: part/models.py:613 msgid "Cannot delete this part as it is locked" msgstr "この部分はロックされているため削除できません" -#: part/models.py:528 +#: part/models.py:616 msgid "Cannot delete this part as it is still active" msgstr "このパートはまだアクティブなので削除できません。" -#: part/models.py:533 +#: part/models.py:621 msgid "Cannot delete this part as it is used in an assembly" msgstr "この部品はアセンブリで使用されているため、削除できません。" -#: part/models.py:616 part/models.py:623 +#: part/models.py:704 part/models.py:711 #, python-brace-format msgid "Part '{self}' cannot be used in BOM for '{parent}' (recursive)" msgstr "パート'{self}'は'{parent}'(再帰的)のBOMでは使用できません。" -#: part/models.py:635 +#: part/models.py:723 #, python-brace-format msgid "Part '{parent}' is used in BOM for '{self}' (recursive)" msgstr "パート'{parent}'は'{self}'のBOMで使用(再帰的)" -#: part/models.py:702 +#: part/models.py:790 #, python-brace-format msgid "IPN must match regex pattern {pattern}" msgstr "IPNは正規表現パターン{pattern}に一致しなければなりません。" -#: part/models.py:710 +#: part/models.py:798 msgid "Part cannot be a revision of itself" msgstr "パートはそれ自体の改訂にはなりえません" -#: part/models.py:717 +#: part/models.py:805 msgid "Cannot make a revision of a part which is already a revision" msgstr "すでにリビジョンとなっている部分のリビジョンを作成することはできません。" -#: part/models.py:724 +#: part/models.py:812 msgid "Revision code must be specified" msgstr "リビジョンコードの指定が必要" -#: part/models.py:731 +#: part/models.py:819 msgid "Revisions are only allowed for assembly parts" msgstr "修正が許されるのは組立部品のみ" -#: part/models.py:738 +#: part/models.py:826 msgid "Cannot make a revision of a template part" msgstr "テンプレート部品のリビジョンを作成できません" -#: part/models.py:744 +#: part/models.py:832 msgid "Parent part must point to the same template" msgstr "親部品は同じテンプレートを指す必要があります。" -#: part/models.py:841 +#: part/models.py:929 msgid "Stock item with this serial number already exists" msgstr "このシリアル番号の在庫品はすでに存在します" -#: part/models.py:971 +#: part/models.py:1059 msgid "Duplicate IPN not allowed in part settings" msgstr "パート設定でIPNの重複が許可されていません。" -#: part/models.py:983 +#: part/models.py:1071 msgid "Duplicate part revision already exists." msgstr "重複する部品リビジョンが既に存在します。" -#: part/models.py:992 +#: part/models.py:1080 msgid "Part with this Name, IPN and Revision already exists." msgstr "この名前、IPN、リビジョンを持つ部品は既に存在します。" -#: part/models.py:1007 +#: part/models.py:1095 msgid "Parts cannot be assigned to structural part categories!" msgstr "部品を構造部品のカテゴリーに割り当てることはできません!" -#: part/models.py:1039 +#: part/models.py:1127 msgid "Part name" msgstr "部品名" -#: part/models.py:1044 +#: part/models.py:1132 msgid "Is Template" msgstr "テンプレート" -#: part/models.py:1045 +#: part/models.py:1133 msgid "Is this part a template part?" msgstr "この部品はテンプレート部品ですか?" -#: part/models.py:1055 +#: part/models.py:1143 msgid "Is this part a variant of another part?" msgstr "この部品は他の部品の変形ですか?" -#: part/models.py:1056 +#: part/models.py:1144 msgid "Variant Of" msgstr "変種" -#: part/models.py:1063 +#: part/models.py:1151 msgid "Part description (optional)" msgstr "部品の説明(オプション)" -#: part/models.py:1070 +#: part/models.py:1158 msgid "Keywords" msgstr "キーワード" -#: part/models.py:1071 +#: part/models.py:1159 msgid "Part keywords to improve visibility in search results" msgstr "検索結果での視認性を向上させる部分キーワード" -#: part/models.py:1081 +#: part/models.py:1169 msgid "Part category" msgstr "パーツカテゴリ" -#: part/models.py:1088 part/serializers.py:929 +#: part/models.py:1176 part/serializers.py:814 #: report/templates/report/inventree_stock_location_report.html:103 msgid "IPN" msgstr "即時支払通知" -#: part/models.py:1096 +#: part/models.py:1184 msgid "Part revision or version number" msgstr "部品のリビジョンまたはバージョン番号" -#: part/models.py:1097 report/models.py:228 +#: part/models.py:1185 report/models.py:228 msgid "Revision" msgstr "リビジョン" -#: part/models.py:1106 +#: part/models.py:1194 msgid "Is this part a revision of another part?" msgstr "この部品は他の部品の改訂版ですか?" -#: part/models.py:1107 +#: part/models.py:1195 msgid "Revision Of" msgstr "改訂版" -#: part/models.py:1123 +#: part/models.py:1211 msgid "Where is this item normally stored?" msgstr "この商品は通常どこに保管されていますか?" -#: part/models.py:1169 +#: part/models.py:1257 msgid "Default Supplier" msgstr "デフォルト・サプライヤー" -#: part/models.py:1170 +#: part/models.py:1258 msgid "Default supplier part" msgstr "サプライヤーのデフォルト部品" -#: part/models.py:1177 +#: part/models.py:1265 msgid "Default Expiry" msgstr "デフォルトの有効期限" -#: part/models.py:1178 +#: part/models.py:1266 msgid "Expiry time (in days) for stock items of this part" msgstr "この部品の在庫品の有効期限(日単位" -#: part/models.py:1186 part/serializers.py:1003 +#: part/models.py:1274 part/serializers.py:888 msgid "Minimum Stock" msgstr "最小在庫" -#: part/models.py:1187 +#: part/models.py:1275 msgid "Minimum allowed stock level" msgstr "最低許容在庫量" -#: part/models.py:1196 +#: part/models.py:1284 msgid "Units of measure for this part" msgstr "この部品の単位" -#: part/models.py:1203 +#: part/models.py:1291 msgid "Can this part be built from other parts?" msgstr "この部品は他の部品から作ることができますか?" -#: part/models.py:1209 +#: part/models.py:1297 msgid "Can this part be used to build other parts?" msgstr "この部品を使って他の部品を作ることはできますか?" -#: part/models.py:1215 +#: part/models.py:1303 msgid "Does this part have tracking for unique items?" msgstr "このパーツはユニークなアイテムの追跡が可能ですか?" -#: part/models.py:1221 +#: part/models.py:1309 msgid "Can this part have test results recorded against it?" msgstr "この部品にテスト結果を記録することはできますか?" -#: part/models.py:1227 +#: part/models.py:1315 msgid "Can this part be purchased from external suppliers?" msgstr "この部品は外部のサプライヤーから購入できますか?" -#: part/models.py:1233 +#: part/models.py:1321 msgid "Can this part be sold to customers?" msgstr "この部品は顧客に販売できますか?" -#: part/models.py:1237 +#: part/models.py:1325 msgid "Is this part active?" msgstr "この部分はアクティブですか?" -#: part/models.py:1243 +#: part/models.py:1331 msgid "Locked parts cannot be edited" msgstr "ロックされた部分は編集できません" -#: part/models.py:1249 +#: part/models.py:1337 msgid "Is this a virtual part, such as a software product or license?" msgstr "これは、ソフトウェア製品やライセンスなどの仮想部品ですか?" -#: part/models.py:1254 +#: part/models.py:1342 msgid "BOM Validated" msgstr "" -#: part/models.py:1255 +#: part/models.py:1343 msgid "Is the BOM for this part valid?" msgstr "" -#: part/models.py:1261 +#: part/models.py:1349 msgid "BOM checksum" msgstr "BOMチェックサム" -#: part/models.py:1262 +#: part/models.py:1350 msgid "Stored BOM checksum" msgstr "保存されたBOMのチェックサム" -#: part/models.py:1270 +#: part/models.py:1358 msgid "BOM checked by" msgstr "BOMチェック済み" -#: part/models.py:1275 +#: part/models.py:1363 msgid "BOM checked date" msgstr "BOMチェック日" -#: part/models.py:1291 +#: part/models.py:1379 msgid "Creation User" msgstr "作成ユーザー" -#: part/models.py:1301 +#: part/models.py:1389 msgid "Owner responsible for this part" msgstr "この部分の責任者" -#: part/models.py:2258 +#: part/models.py:2346 msgid "Sell multiple" msgstr "複数販売" -#: part/models.py:3286 +#: part/models.py:3350 msgid "Currency used to cache pricing calculations" msgstr "価格計算のキャッシュに使用される通貨" -#: part/models.py:3302 +#: part/models.py:3366 msgid "Minimum BOM Cost" msgstr "最小BOMコスト" -#: part/models.py:3303 +#: part/models.py:3367 msgid "Minimum cost of component parts" msgstr "構成部品の最低コスト" -#: part/models.py:3309 +#: part/models.py:3373 msgid "Maximum BOM Cost" msgstr "最大BOMコスト" -#: part/models.py:3310 +#: part/models.py:3374 msgid "Maximum cost of component parts" msgstr "構成部品の最大コスト" -#: part/models.py:3316 +#: part/models.py:3380 msgid "Minimum Purchase Cost" msgstr "最低購入価格" -#: part/models.py:3317 +#: part/models.py:3381 msgid "Minimum historical purchase cost" msgstr "過去の最低購入価額" -#: part/models.py:3323 +#: part/models.py:3387 msgid "Maximum Purchase Cost" msgstr "最大購入費用" -#: part/models.py:3324 +#: part/models.py:3388 msgid "Maximum historical purchase cost" msgstr "過去の最高購入価格" -#: part/models.py:3330 +#: part/models.py:3394 msgid "Minimum Internal Price" msgstr "最低社内価格" -#: part/models.py:3331 +#: part/models.py:3395 msgid "Minimum cost based on internal price breaks" msgstr "社内価格ブレークに基づく最低コスト" -#: part/models.py:3337 +#: part/models.py:3401 msgid "Maximum Internal Price" msgstr "社内最高価格" -#: part/models.py:3338 +#: part/models.py:3402 msgid "Maximum cost based on internal price breaks" msgstr "社内価格ブレークに基づく最大コスト" -#: part/models.py:3344 +#: part/models.py:3408 msgid "Minimum Supplier Price" msgstr "最低供給価格" -#: part/models.py:3345 +#: part/models.py:3409 msgid "Minimum price of part from external suppliers" msgstr "外部サプライヤーからの部品の最低価格" -#: part/models.py:3351 +#: part/models.py:3415 msgid "Maximum Supplier Price" msgstr "サプライヤー最高価格" -#: part/models.py:3352 +#: part/models.py:3416 msgid "Maximum price of part from external suppliers" msgstr "外部サプライヤーからの部品の最高価格" -#: part/models.py:3358 +#: part/models.py:3422 msgid "Minimum Variant Cost" msgstr "最小バリアントコスト" -#: part/models.py:3359 +#: part/models.py:3423 msgid "Calculated minimum cost of variant parts" msgstr "バリアントパーツの最小コストの計算" -#: part/models.py:3365 +#: part/models.py:3429 msgid "Maximum Variant Cost" msgstr "最大バリアントコスト" -#: part/models.py:3366 +#: part/models.py:3430 msgid "Calculated maximum cost of variant parts" msgstr "バリアント部品の最大コストの計算" -#: part/models.py:3372 part/models.py:3386 +#: part/models.py:3436 part/models.py:3450 msgid "Minimum Cost" msgstr "最低料金" -#: part/models.py:3373 +#: part/models.py:3437 msgid "Override minimum cost" msgstr "最低コストのオーバーライド" -#: part/models.py:3379 part/models.py:3393 +#: part/models.py:3443 part/models.py:3457 msgid "Maximum Cost" msgstr "最大コスト" -#: part/models.py:3380 +#: part/models.py:3444 msgid "Override maximum cost" msgstr "最大コストのオーバーライド" -#: part/models.py:3387 +#: part/models.py:3451 msgid "Calculated overall minimum cost" msgstr "総合的な最小コストの計算" -#: part/models.py:3394 +#: part/models.py:3458 msgid "Calculated overall maximum cost" msgstr "総合最大コストの計算" -#: part/models.py:3400 +#: part/models.py:3464 msgid "Minimum Sale Price" msgstr "最低販売価格" -#: part/models.py:3401 +#: part/models.py:3465 msgid "Minimum sale price based on price breaks" msgstr "価格破壊に基づく最低販売価格" -#: part/models.py:3407 +#: part/models.py:3471 msgid "Maximum Sale Price" msgstr "最高販売価格" -#: part/models.py:3408 +#: part/models.py:3472 msgid "Maximum sale price based on price breaks" msgstr "価格破壊に基づく最高販売価格" -#: part/models.py:3414 +#: part/models.py:3478 msgid "Minimum Sale Cost" msgstr "最低販売価格" -#: part/models.py:3415 +#: part/models.py:3479 msgid "Minimum historical sale price" msgstr "過去の最低売却価格" -#: part/models.py:3421 +#: part/models.py:3485 msgid "Maximum Sale Cost" msgstr "最大販売価格" -#: part/models.py:3422 +#: part/models.py:3486 msgid "Maximum historical sale price" msgstr "過去の最高売却価格" -#: part/models.py:3440 +#: part/models.py:3504 msgid "Part for stocktake" msgstr "ストックテイク用部品" -#: part/models.py:3445 +#: part/models.py:3509 msgid "Item Count" msgstr "個数" -#: part/models.py:3446 +#: part/models.py:3510 msgid "Number of individual stock entries at time of stocktake" msgstr "棚卸時の個別在庫数" -#: part/models.py:3454 +#: part/models.py:3518 msgid "Total available stock at time of stocktake" msgstr "ストックテイク時の在庫可能量" -#: part/models.py:3458 report/templates/report/inventree_test_report.html:106 +#: part/models.py:3522 report/templates/report/inventree_test_report.html:106 msgid "Date" msgstr "日付" -#: part/models.py:3459 +#: part/models.py:3523 msgid "Date stocktake was performed" msgstr "ストックテイク実施日" -#: part/models.py:3466 +#: part/models.py:3530 msgid "Minimum Stock Cost" msgstr "最低在庫コスト" -#: part/models.py:3467 +#: part/models.py:3531 msgid "Estimated minimum cost of stock on hand" msgstr "手元在庫の最低見積原価" -#: part/models.py:3473 +#: part/models.py:3537 msgid "Maximum Stock Cost" msgstr "最大在庫コスト" -#: part/models.py:3474 +#: part/models.py:3538 msgid "Estimated maximum cost of stock on hand" msgstr "手元在庫の最大見積原価" -#: part/models.py:3484 +#: part/models.py:3548 msgid "Part Sale Price Break" msgstr "パーツセール価格" -#: part/models.py:3596 +#: part/models.py:3660 msgid "Part Test Template" msgstr "部品試験テンプレート" -#: part/models.py:3622 +#: part/models.py:3686 msgid "Invalid template name - must include at least one alphanumeric character" msgstr "無効なテンプレート名 - 英数字を1文字以上含む必要があります。" -#: part/models.py:3643 part/models.py:3816 -msgid "Choices must be unique" -msgstr "選択肢はユニークでなければなりません" - -#: part/models.py:3654 +#: part/models.py:3718 msgid "Test templates can only be created for testable parts" msgstr "テストテンプレートは、テスト可能な部分に対してのみ作成できます。" -#: part/models.py:3668 +#: part/models.py:3732 msgid "Test template with the same key already exists for part" msgstr "同じキーを持つテスト・テンプレートがパートに既に存在します。" -#: part/models.py:3685 +#: part/models.py:3749 msgid "Test Name" msgstr "試験名" -#: part/models.py:3686 +#: part/models.py:3750 msgid "Enter a name for the test" msgstr "テストの名前を入力します。" -#: part/models.py:3692 +#: part/models.py:3756 msgid "Test Key" msgstr "テストキー" -#: part/models.py:3693 +#: part/models.py:3757 msgid "Simplified key for the test" msgstr "テストの簡易キー" -#: part/models.py:3700 +#: part/models.py:3764 msgid "Test Description" msgstr "試験内容" -#: part/models.py:3701 +#: part/models.py:3765 msgid "Enter description for this test" msgstr "このテストの説明を入力してください。" -#: part/models.py:3705 report/models.py:287 -msgid "Enabled" -msgstr "有効" - -#: part/models.py:3705 +#: part/models.py:3769 msgid "Is this test enabled?" msgstr "このテストは有効ですか?" -#: part/models.py:3710 +#: part/models.py:3774 msgid "Required" msgstr "必須" -#: part/models.py:3711 +#: part/models.py:3775 msgid "Is this test required to pass?" msgstr "このテストは合格するために必要ですか?" -#: part/models.py:3716 +#: part/models.py:3780 msgid "Requires Value" msgstr "価値が必要" -#: part/models.py:3717 +#: part/models.py:3781 msgid "Does this test require a value when adding a test result?" msgstr "このテストは、テスト結果を追加する際に値を必要としますか?" -#: part/models.py:3722 +#: part/models.py:3786 msgid "Requires Attachment" msgstr "アタッチメントが必要" -#: part/models.py:3724 +#: part/models.py:3788 msgid "Does this test require a file attachment when adding a test result?" msgstr "この試験では、試験結果を追加する際にファイルの添付が必要ですか。" -#: part/models.py:3730 part/models.py:3878 -msgid "Choices" -msgstr "選択肢" - -#: part/models.py:3731 +#: part/models.py:3795 msgid "Valid choices for this test (comma-separated)" msgstr "このテストで有効な選択肢(カンマ区切り)" -#: part/models.py:3764 -msgid "Part Parameter Template" -msgstr "部品パラメータテンプレート" - -#: part/models.py:3791 -msgid "Checkbox parameters cannot have units" -msgstr "チェックボックスのパラメータに単位を指定することはできません。" - -#: part/models.py:3796 -msgid "Checkbox parameters cannot have choices" -msgstr "チェックボックスパラメータに選択肢を持たせることはできません。" - -#: part/models.py:3833 -msgid "Parameter template name must be unique" -msgstr "パラメータ・テンプレート名は一意でなければなりません。" - -#: part/models.py:3851 -msgid "Parameter Name" -msgstr "パラメータ名" - -#: part/models.py:3858 -msgid "Physical units for this parameter" -msgstr "このパラメータの物理単位" - -#: part/models.py:3866 -msgid "Parameter description" -msgstr "パラメータの説明" - -#: part/models.py:3872 -msgid "Checkbox" -msgstr "チェックボックス" - -#: part/models.py:3873 -msgid "Is this parameter a checkbox?" -msgstr "このパラメータはチェックボックスですか?" - -#: part/models.py:3879 -msgid "Valid choices for this parameter (comma-separated)" -msgstr "このパラメータの有効な選択肢(カンマ区切り)" - -#: part/models.py:3890 -msgid "Selection list for this parameter" -msgstr "このパラメータの選択リスト" - -#: part/models.py:3932 -msgid "Part Parameter" -msgstr "部品パラメータ" - -#: part/models.py:3958 -msgid "Parameter cannot be modified - part is locked" -msgstr "パラメータは変更できません。" - -#: part/models.py:3996 -msgid "Invalid choice for parameter value" -msgstr "パラメータ値の選択が無効" - -#: part/models.py:4047 -msgid "Parent Part" -msgstr "親部分" - -#: part/models.py:4055 part/models.py:4170 part/models.py:4171 -msgid "Parameter Template" -msgstr "パラメータテンプレート" - -#: part/models.py:4061 -msgid "Parameter Value" -msgstr "パラメータ値" - -#: part/models.py:4071 stock/serializers.py:718 -msgid "Optional note field" -msgstr "任意のメモ欄" - -#: part/models.py:4118 -msgid "Part Category Parameter Template" -msgstr "部品分類パラメータテンプレート" - -#: part/models.py:4177 -msgid "Default Value" -msgstr "初期値" - -#: part/models.py:4178 -msgid "Default Parameter Value" -msgstr "パラメータのデフォルト値" - -#: part/models.py:4352 +#: part/models.py:3977 msgid "BOM item cannot be modified - assembly is locked" msgstr "BOMアイテムは変更できません - アセンブリがロックされています。" -#: part/models.py:4359 +#: part/models.py:3984 msgid "BOM item cannot be modified - variant assembly is locked" msgstr "BOM アイテムは変更できません - バリアントアセンブリがロックされています。" -#: part/models.py:4369 +#: part/models.py:3994 msgid "Select parent part" msgstr "親部品を選択" -#: part/models.py:4379 +#: part/models.py:4004 msgid "Sub part" msgstr "サブパート" -#: part/models.py:4380 +#: part/models.py:4005 msgid "Select part to be used in BOM" msgstr "BOMで使用する部品を選択" -#: part/models.py:4391 +#: part/models.py:4016 msgid "BOM quantity for this BOM item" msgstr "このBOMアイテムのBOM数量" -#: part/models.py:4397 +#: part/models.py:4022 msgid "This BOM item is optional" msgstr "この部品表はオプションです。" -#: part/models.py:4403 +#: part/models.py:4028 msgid "This BOM item is consumable (it is not tracked in build orders)" msgstr "このBOMアイテムは消耗品です。" -#: part/models.py:4411 +#: part/models.py:4036 msgid "Setup Quantity" msgstr "" -#: part/models.py:4412 +#: part/models.py:4037 msgid "Extra required quantity for a build, to account for setup losses" msgstr "" -#: part/models.py:4420 +#: part/models.py:4045 msgid "Attrition" msgstr "" -#: part/models.py:4422 +#: part/models.py:4047 msgid "Estimated attrition for a build, expressed as a percentage (0-100)" msgstr "" -#: part/models.py:4433 +#: part/models.py:4058 msgid "Rounding Multiple" msgstr "" -#: part/models.py:4435 +#: part/models.py:4060 msgid "Round up required production quantity to nearest multiple of this value" msgstr "" -#: part/models.py:4443 +#: part/models.py:4068 msgid "BOM item reference" msgstr "BOMアイテムリファレンス" -#: part/models.py:4451 +#: part/models.py:4076 msgid "BOM item notes" msgstr "BOMアイテムノート" -#: part/models.py:4457 +#: part/models.py:4082 msgid "Checksum" msgstr "チェックサムi" -#: part/models.py:4458 +#: part/models.py:4083 msgid "BOM line checksum" msgstr "BOMラインのチェックサム" -#: part/models.py:4463 +#: part/models.py:4088 msgid "Validated" msgstr "検証済み" -#: part/models.py:4464 +#: part/models.py:4089 msgid "This BOM item has been validated" msgstr "このBOMアイテムは検証済みです" -#: part/models.py:4469 +#: part/models.py:4094 msgid "Gets inherited" msgstr "継承" -#: part/models.py:4470 +#: part/models.py:4095 msgid "This BOM item is inherited by BOMs for variant parts" msgstr "この BOM アイテムは、バリアントパーツの BOM に継承されます。" -#: part/models.py:4476 +#: part/models.py:4101 msgid "Stock items for variant parts can be used for this BOM item" msgstr "このBOMアイテムには、バリアントパーツのストックアイテムを使用できます。" -#: part/models.py:4583 stock/models.py:925 +#: part/models.py:4208 stock/models.py:925 msgid "Quantity must be integer value for trackable parts" msgstr "数量は追跡可能な部品の場合、整数値でなければなりません。" -#: part/models.py:4593 part/models.py:4595 +#: part/models.py:4218 part/models.py:4220 msgid "Sub part must be specified" msgstr "サブパーツの指定が必要" -#: part/models.py:4746 +#: part/models.py:4371 msgid "BOM Item Substitute" msgstr "BOMアイテム代替" -#: part/models.py:4767 +#: part/models.py:4392 msgid "Substitute part cannot be the same as the master part" msgstr "代用部品はマスター部品と同じにすることはできません。" -#: part/models.py:4780 +#: part/models.py:4405 msgid "Parent BOM item" msgstr "親BOMアイテム" -#: part/models.py:4788 +#: part/models.py:4413 msgid "Substitute part" msgstr "代用部品" -#: part/models.py:4804 +#: part/models.py:4429 msgid "Part 1" msgstr "パート #1" -#: part/models.py:4812 +#: part/models.py:4437 msgid "Part 2" msgstr "パート #2" -#: part/models.py:4813 +#: part/models.py:4438 msgid "Select Related Part" msgstr "関連部品を選択" -#: part/models.py:4820 +#: part/models.py:4445 msgid "Note for this relationship" msgstr "この関係について" -#: part/models.py:4839 +#: part/models.py:4464 msgid "Part relationship cannot be created between a part and itself" msgstr "部品とそれ自身との間に部品関係を作ることはできません。" -#: part/models.py:4844 +#: part/models.py:4469 msgid "Duplicate relationship already exists" msgstr "重複する関係が既に存在します。" -#: part/serializers.py:114 +#: part/serializers.py:113 msgid "Parent Category" msgstr "親カテゴリ" -#: part/serializers.py:115 +#: part/serializers.py:114 msgid "Parent part category" msgstr "親部品カテゴリー" -#: part/serializers.py:123 part/serializers.py:164 +#: part/serializers.py:122 part/serializers.py:163 msgid "Subcategories" msgstr "サブカテゴリ" -#: part/serializers.py:203 +#: part/serializers.py:202 msgid "Results" msgstr "結果" -#: part/serializers.py:204 +#: part/serializers.py:203 msgid "Number of results recorded against this template" msgstr "このテンプレートに対して記録された結果の数" -#: part/serializers.py:235 part/serializers.py:253 stock/serializers.py:643 +#: part/serializers.py:234 part/serializers.py:252 stock/serializers.py:643 msgid "Purchase currency of this stock item" msgstr "この在庫商品の購入通貨" -#: part/serializers.py:280 +#: part/serializers.py:279 msgid "File is not an image" msgstr "ファイルが画像ではありません" -#: part/serializers.py:311 -msgid "Number of parts using this template" -msgstr "このテンプレートを使用する部品の数" - -#: part/serializers.py:471 +#: part/serializers.py:382 msgid "Original Part" msgstr "オリジナルパート" -#: part/serializers.py:472 +#: part/serializers.py:383 msgid "Select original part to duplicate" msgstr "複製する元の部品を選択" -#: part/serializers.py:477 +#: part/serializers.py:388 msgid "Copy Image" msgstr "コピー画像" -#: part/serializers.py:478 +#: part/serializers.py:389 msgid "Copy image from original part" msgstr "元の部分から画像をコピー" -#: part/serializers.py:484 +#: part/serializers.py:395 msgid "Copy BOM" msgstr "コピーBOM" -#: part/serializers.py:485 +#: part/serializers.py:396 msgid "Copy bill of materials from original part" msgstr "元の部品から部品表をコピー" -#: part/serializers.py:491 +#: part/serializers.py:402 msgid "Copy Parameters" msgstr "コピーパラメータ" -#: part/serializers.py:492 +#: part/serializers.py:403 msgid "Copy parameter data from original part" msgstr "元の部品からパラメータデータをコピー" -#: part/serializers.py:498 +#: part/serializers.py:409 msgid "Copy Notes" msgstr "コピーノート" -#: part/serializers.py:499 +#: part/serializers.py:410 msgid "Copy notes from original part" msgstr "元のパートからメモをコピー" -#: part/serializers.py:505 +#: part/serializers.py:416 msgid "Copy Tests" msgstr "" -#: part/serializers.py:506 +#: part/serializers.py:417 msgid "Copy test templates from original part" msgstr "" -#: part/serializers.py:524 +#: part/serializers.py:435 msgid "Initial Stock Quantity" msgstr "初期在庫量" -#: part/serializers.py:526 +#: part/serializers.py:437 msgid "Specify initial stock quantity for this Part. If quantity is zero, no stock is added." msgstr "この部品の初期在庫数量を指定します。数量が0の場合、在庫は追加されません。" -#: part/serializers.py:533 +#: part/serializers.py:444 msgid "Initial Stock Location" msgstr "初期在庫場所" -#: part/serializers.py:534 +#: part/serializers.py:445 msgid "Specify initial stock location for this Part" msgstr "この部品の初期在庫場所を指定してください。" -#: part/serializers.py:551 +#: part/serializers.py:462 msgid "Select supplier (or leave blank to skip)" msgstr "サプライヤーを選択してください。" -#: part/serializers.py:567 +#: part/serializers.py:478 msgid "Select manufacturer (or leave blank to skip)" msgstr "メーカーを選択してください。" -#: part/serializers.py:577 +#: part/serializers.py:488 msgid "Manufacturer part number" msgstr "メーカー品番" -#: part/serializers.py:584 +#: part/serializers.py:495 msgid "Selected company is not a valid supplier" msgstr "選択された企業は有効なサプライヤーではありません。" -#: part/serializers.py:593 +#: part/serializers.py:504 msgid "Selected company is not a valid manufacturer" msgstr "選択された会社は有効な製造業者ではありません。" -#: part/serializers.py:604 +#: part/serializers.py:515 msgid "Manufacturer part matching this MPN already exists" msgstr "このMPNに一致するメーカー部品はすでに存在します。" -#: part/serializers.py:611 +#: part/serializers.py:522 msgid "Supplier part matching this SKU already exists" msgstr "このSKUに一致するサプライヤー部品は既に存在します。" -#: part/serializers.py:914 +#: part/serializers.py:799 msgid "Category Name" msgstr "カテゴリ名" -#: part/serializers.py:943 +#: part/serializers.py:828 msgid "Building" msgstr "建物" -#: part/serializers.py:944 +#: part/serializers.py:829 msgid "Quantity of this part currently being in production" msgstr "" -#: part/serializers.py:951 +#: part/serializers.py:836 msgid "Outstanding quantity of this part scheduled to be built" msgstr "" -#: part/serializers.py:971 stock/serializers.py:1019 stock/serializers.py:1189 +#: part/serializers.py:856 stock/serializers.py:1019 stock/serializers.py:1189 #: users/ruleset.py:30 msgid "Stock Items" msgstr "在庫商品" -#: part/serializers.py:975 +#: part/serializers.py:860 msgid "Revisions" msgstr "リビジョン" -#: part/serializers.py:979 +#: part/serializers.py:864 msgid "Suppliers" msgstr "仕入先" -#: part/serializers.py:983 part/serializers.py:1297 +#: part/serializers.py:868 part/serializers.py:1162 #: templates/email/low_stock_notification.html:16 #: templates/email/part_event_notification.html:17 msgid "Total Stock" msgstr "総在庫" -#: part/serializers.py:991 +#: part/serializers.py:876 msgid "Unallocated Stock" msgstr "未割当株式" -#: part/serializers.py:999 +#: part/serializers.py:884 msgid "Variant Stock" msgstr "バリアントストック" -#: part/serializers.py:1054 +#: part/serializers.py:943 msgid "Duplicate Part" msgstr "重複部分" -#: part/serializers.py:1055 +#: part/serializers.py:944 msgid "Copy initial data from another Part" msgstr "別のパートから初期データをコピー" -#: part/serializers.py:1061 +#: part/serializers.py:950 msgid "Initial Stock" msgstr "初期在庫" -#: part/serializers.py:1062 +#: part/serializers.py:951 msgid "Create Part with initial stock quantity" msgstr "初期在庫数で部品を作成" -#: part/serializers.py:1068 +#: part/serializers.py:957 msgid "Supplier Information" msgstr "サプライヤー情報" -#: part/serializers.py:1069 +#: part/serializers.py:958 msgid "Add initial supplier information for this part" msgstr "この部品の初期サプライヤー情報を追加します。" -#: part/serializers.py:1077 +#: part/serializers.py:966 msgid "Copy Category Parameters" msgstr "コピーカテゴリパラメータ" -#: part/serializers.py:1078 +#: part/serializers.py:967 msgid "Copy parameter templates from selected part category" msgstr "選択したパーツカテゴリーからパラメータテンプレートをコピー" -#: part/serializers.py:1083 +#: part/serializers.py:972 msgid "Existing Image" msgstr "既存イメージ" -#: part/serializers.py:1084 +#: part/serializers.py:973 msgid "Filename of an existing part image" msgstr "既存の部品画像のファイル名" -#: part/serializers.py:1101 +#: part/serializers.py:990 msgid "Image file does not exist" msgstr "画像ファイルが存在しません" -#: part/serializers.py:1269 +#: part/serializers.py:1134 msgid "Validate entire Bill of Materials" msgstr "部品表全体の検証" -#: part/serializers.py:1303 part/serializers.py:1769 +#: part/serializers.py:1168 part/serializers.py:1634 msgid "Can Build" msgstr "ビルド" -#: part/serializers.py:1320 +#: part/serializers.py:1185 msgid "Required for Build Orders" msgstr "" -#: part/serializers.py:1325 +#: part/serializers.py:1190 msgid "Allocated to Build Orders" msgstr "" -#: part/serializers.py:1332 +#: part/serializers.py:1197 msgid "Required for Sales Orders" msgstr "" -#: part/serializers.py:1336 +#: part/serializers.py:1201 msgid "Allocated to Sales Orders" msgstr "" -#: part/serializers.py:1475 +#: part/serializers.py:1340 msgid "Minimum Price" msgstr "最小価格" -#: part/serializers.py:1476 +#: part/serializers.py:1341 msgid "Override calculated value for minimum price" msgstr "最低価格の計算値の上書き" -#: part/serializers.py:1483 +#: part/serializers.py:1348 msgid "Minimum price currency" msgstr "最低価格通貨" -#: part/serializers.py:1490 +#: part/serializers.py:1355 msgid "Maximum Price" msgstr "最大価格" -#: part/serializers.py:1491 +#: part/serializers.py:1356 msgid "Override calculated value for maximum price" msgstr "最高価格の計算値を上書き" -#: part/serializers.py:1498 +#: part/serializers.py:1363 msgid "Maximum price currency" msgstr "最高価格通貨" -#: part/serializers.py:1527 +#: part/serializers.py:1392 msgid "Update" msgstr "更新" -#: part/serializers.py:1528 +#: part/serializers.py:1393 msgid "Update pricing for this part" msgstr "この部品の価格を更新" -#: part/serializers.py:1551 +#: part/serializers.py:1416 #, python-brace-format msgid "Could not convert from provided currencies to {default_currency}" msgstr "提供された通貨から{default_currency}に変換できませんでした。" -#: part/serializers.py:1558 +#: part/serializers.py:1423 msgid "Minimum price must not be greater than maximum price" msgstr "最低価格は最高価格を超えてはなりません。" -#: part/serializers.py:1561 +#: part/serializers.py:1426 msgid "Maximum price must not be less than minimum price" msgstr "最高価格は最低価格を下回ってはなりません。" -#: part/serializers.py:1715 +#: part/serializers.py:1580 msgid "Select the parent assembly" msgstr "親アセンブリを選択" -#: part/serializers.py:1735 +#: part/serializers.py:1600 msgid "Select the component part" msgstr "構成部品の選択" -#: part/serializers.py:1929 +#: part/serializers.py:1802 msgid "Select part to copy BOM from" msgstr "BOMをコピーする部品を選択します。" -#: part/serializers.py:1937 +#: part/serializers.py:1810 msgid "Remove Existing Data" msgstr "既存データの削除" -#: part/serializers.py:1938 +#: part/serializers.py:1811 msgid "Remove existing BOM items before copying" msgstr "コピー前に既存のBOMアイテムを削除" -#: part/serializers.py:1943 +#: part/serializers.py:1816 msgid "Include Inherited" msgstr "インクルード継承" -#: part/serializers.py:1944 +#: part/serializers.py:1817 msgid "Include BOM items which are inherited from templated parts" msgstr "テンプレート化された部品から継承されたBOM項目を含めます。" -#: part/serializers.py:1949 +#: part/serializers.py:1822 msgid "Skip Invalid Rows" msgstr "無効な行をスキップ" -#: part/serializers.py:1950 +#: part/serializers.py:1823 msgid "Enable this option to skip invalid rows" msgstr "無効な行をスキップするには、このオプションを有効にします。" -#: part/serializers.py:1955 +#: part/serializers.py:1828 msgid "Copy Substitute Parts" msgstr "コピー代用部品" -#: part/serializers.py:1956 +#: part/serializers.py:1829 msgid "Copy substitute parts when duplicate BOM items" msgstr "BOMアイテムの重複時に代替部品をコピー" @@ -6927,7 +6974,7 @@ msgstr "バーコードのネイティブサポートを提供" #: plugin/builtin/events/auto_issue_orders.py:19 #: plugin/builtin/exporter/bom_exporter.py:73 #: plugin/builtin/exporter/inventree_exporter.py:17 -#: plugin/builtin/exporter/part_parameter_exporter.py:36 +#: plugin/builtin/exporter/parameter_exporter.py:32 #: plugin/builtin/exporter/stocktake_exporter.py:47 #: plugin/builtin/integration/core_notifications.py:25 #: plugin/builtin/integration/core_notifications.py:69 @@ -7041,23 +7088,19 @@ msgid "Include total quantity of each part in the BOM" msgstr "" #: plugin/builtin/exporter/bom_exporter.py:35 -#: plugin/builtin/exporter/part_parameter_exporter.py:17 msgid "Stock Data" msgstr "在庫データ" #: plugin/builtin/exporter/bom_exporter.py:35 -#: plugin/builtin/exporter/part_parameter_exporter.py:17 msgid "Include part stock data" msgstr "部品在庫データを含む" #: plugin/builtin/exporter/bom_exporter.py:39 -#: plugin/builtin/exporter/part_parameter_exporter.py:21 #: plugin/builtin/exporter/stocktake_exporter.py:20 msgid "Pricing Data" msgstr "価格データ" #: plugin/builtin/exporter/bom_exporter.py:39 -#: plugin/builtin/exporter/part_parameter_exporter.py:21 #: plugin/builtin/exporter/stocktake_exporter.py:20 msgid "Include part pricing data" msgstr "部品価格データを含む" @@ -7144,13 +7187,21 @@ msgstr "InvenTree ジェネリック・エクスポーター" msgid "Provides support for exporting data from InvenTree" msgstr "InvenTreeからのデータエクスポートをサポートします。" -#: plugin/builtin/exporter/part_parameter_exporter.py:33 -msgid "Part Parameter Exporter" -msgstr "部品パラメータエクスポーター" +#: plugin/builtin/exporter/parameter_exporter.py:16 +msgid "Exclude Inactive" +msgstr "" -#: plugin/builtin/exporter/part_parameter_exporter.py:34 -msgid "Exporter for part parameter data" -msgstr "部品パラメータデータエクスポーター" +#: plugin/builtin/exporter/parameter_exporter.py:17 +msgid "Exclude parameters which are inactive" +msgstr "" + +#: plugin/builtin/exporter/parameter_exporter.py:29 +msgid "Parameter Exporter" +msgstr "" + +#: plugin/builtin/exporter/parameter_exporter.py:30 +msgid "Exporter for model parameter data" +msgstr "" #: plugin/builtin/exporter/stocktake_exporter.py:25 msgid "Include External Stock" @@ -8079,19 +8130,19 @@ msgstr "結果なし(必須)" msgid "No result" msgstr "何も結果はありません" -#: report/templatetags/report.py:167 +#: report/templatetags/report.py:169 msgid "Asset file does not exist" msgstr "アセットファイルが存在しません" -#: report/templatetags/report.py:224 report/templatetags/report.py:300 +#: report/templatetags/report.py:226 report/templatetags/report.py:302 msgid "Image file not found" msgstr "画像ファイルが見つかりません" -#: report/templatetags/report.py:325 +#: report/templatetags/report.py:327 msgid "part_image tag requires a Part instance" msgstr "part_image タグには Part インスタンスが必要です。" -#: report/templatetags/report.py:362 +#: report/templatetags/report.py:383 msgid "company_image tag requires a Company instance" msgstr "company_image タグには Company インスタンスが必要です。" @@ -8455,115 +8506,119 @@ msgstr "シリアル番号はリストとして提供されなければなりま msgid "Quantity does not match serial numbers" msgstr "数量がシリアル番号と一致しません" -#: stock/models.py:2012 stock/models.py:2917 +#: stock/models.py:1912 +msgid "Cannot assign stock to structural location" +msgstr "" + +#: stock/models.py:2029 stock/models.py:2934 msgid "Test template does not exist" msgstr "テストテンプレートが存在しません" -#: stock/models.py:2030 +#: stock/models.py:2047 msgid "Stock item has been assigned to a sales order" msgstr "在庫商品が販売注文に割り当てられました" -#: stock/models.py:2034 +#: stock/models.py:2051 msgid "Stock item is installed in another item" msgstr "ストックアイテムが他のアイテムに装着されている場合" -#: stock/models.py:2037 +#: stock/models.py:2054 msgid "Stock item contains other items" msgstr "在庫商品には他の商品が含まれています。" -#: stock/models.py:2040 +#: stock/models.py:2057 msgid "Stock item has been assigned to a customer" msgstr "在庫商品が顧客に割り当てられました" -#: stock/models.py:2043 stock/models.py:2226 +#: stock/models.py:2060 stock/models.py:2243 msgid "Stock item is currently in production" msgstr "在庫品は現在生産中です。" -#: stock/models.py:2046 +#: stock/models.py:2063 msgid "Serialized stock cannot be merged" msgstr "連番在庫の統合はできません" -#: stock/models.py:2053 stock/serializers.py:1462 +#: stock/models.py:2070 stock/serializers.py:1462 msgid "Duplicate stock items" msgstr "在庫品の重複" -#: stock/models.py:2057 +#: stock/models.py:2074 msgid "Stock items must refer to the same part" msgstr "在庫品目は同じ部品を参照してください。" -#: stock/models.py:2065 +#: stock/models.py:2082 msgid "Stock items must refer to the same supplier part" msgstr "在庫品は同じサプライヤーの部品を参照する必要があります。" -#: stock/models.py:2070 +#: stock/models.py:2087 msgid "Stock status codes must match" msgstr "在庫状況コードが一致していること" -#: stock/models.py:2349 +#: stock/models.py:2366 msgid "StockItem cannot be moved as it is not in stock" msgstr "在庫がないため移動できません。" -#: stock/models.py:2818 +#: stock/models.py:2835 msgid "Stock Item Tracking" msgstr "ストックアイテムのトラッキング" -#: stock/models.py:2849 +#: stock/models.py:2866 msgid "Entry notes" msgstr "記入上の注意" -#: stock/models.py:2889 +#: stock/models.py:2906 msgid "Stock Item Test Result" msgstr "在庫品テスト結果" -#: stock/models.py:2920 +#: stock/models.py:2937 msgid "Value must be provided for this test" msgstr "このテストには値を指定する必要があります。" -#: stock/models.py:2924 +#: stock/models.py:2941 msgid "Attachment must be uploaded for this test" msgstr "このテストには添付ファイルをアップロードする必要があります。" -#: stock/models.py:2929 +#: stock/models.py:2946 msgid "Invalid value for this test" msgstr "このテストでは無効な値です。" -#: stock/models.py:2953 +#: stock/models.py:2970 msgid "Test result" msgstr "試験結果" -#: stock/models.py:2960 +#: stock/models.py:2977 msgid "Test output value" msgstr "テスト出力値" -#: stock/models.py:2968 stock/serializers.py:248 +#: stock/models.py:2985 stock/serializers.py:248 msgid "Test result attachment" msgstr "試験結果添付" -#: stock/models.py:2972 +#: stock/models.py:2989 msgid "Test notes" msgstr "テストノート" -#: stock/models.py:2980 +#: stock/models.py:2997 msgid "Test station" msgstr "テストステーション" -#: stock/models.py:2981 +#: stock/models.py:2998 msgid "The identifier of the test station where the test was performed" msgstr "試験が実施された試験ステーションの識別子。" -#: stock/models.py:2987 +#: stock/models.py:3004 msgid "Started" msgstr "開始" -#: stock/models.py:2988 +#: stock/models.py:3005 msgid "The timestamp of the test start" msgstr "テスト開始のタイムスタンプ" -#: stock/models.py:2994 +#: stock/models.py:3011 msgid "Finished" msgstr "修了済み" -#: stock/models.py:2995 +#: stock/models.py:3012 msgid "The timestamp of the test finish" msgstr "テスト終了のタイムスタンプ" @@ -8677,8 +8732,8 @@ msgstr "" msgid "Quantity must not exceed available stock quantity ({q})" msgstr "数量は在庫数 ({q}) を超えてはなりません。" -#: stock/serializers.py:711 stock/serializers.py:1419 stock/serializers.py:1732 -#: stock/serializers.py:1781 +#: stock/serializers.py:711 stock/serializers.py:1419 stock/serializers.py:1740 +#: stock/serializers.py:1789 msgid "Destination stock location" msgstr "仕向け地" @@ -8834,19 +8889,19 @@ msgstr "" msgid "Stock transaction notes" msgstr "株式取引に関する注記" -#: stock/serializers.py:1787 +#: stock/serializers.py:1795 msgid "Merge into existing stock" msgstr "" -#: stock/serializers.py:1788 +#: stock/serializers.py:1796 msgid "Merge returned items into existing stock items if possible" msgstr "" -#: stock/serializers.py:1831 +#: stock/serializers.py:1839 msgid "Next Serial Number" msgstr "次のシリアル番号" -#: stock/serializers.py:1837 +#: stock/serializers.py:1845 msgid "Previous Serial Number" msgstr "以前のシリアル番号" @@ -8902,83 +8957,87 @@ msgstr "手動在庫追加が完了しました" msgid "Stock manually removed" msgstr "手動在庫削除が完了しました" -#: stock/status_codes.py:57 +#: stock/status_codes.py:56 +msgid "Serialized stock items" +msgstr "" + +#: stock/status_codes.py:58 msgid "Returned to stock" msgstr "" -#: stock/status_codes.py:60 +#: stock/status_codes.py:61 msgid "Location changed" msgstr "ロケーションが変更されました" -#: stock/status_codes.py:61 +#: stock/status_codes.py:62 msgid "Stock updated" msgstr "在庫更新" -#: stock/status_codes.py:64 +#: stock/status_codes.py:65 msgid "Installed into assembly" msgstr "アセンブリへインストールしました" -#: stock/status_codes.py:65 +#: stock/status_codes.py:66 msgid "Removed from assembly" msgstr "アセンブリから削除しました" -#: stock/status_codes.py:67 +#: stock/status_codes.py:68 msgid "Installed component item" msgstr "インストール済みのコンポーネント項目" -#: stock/status_codes.py:68 +#: stock/status_codes.py:69 msgid "Removed component item" msgstr "コンポーネント項目を削除しました" -#: stock/status_codes.py:71 +#: stock/status_codes.py:72 msgid "Split from parent item" msgstr "親アイテムから分割する" -#: stock/status_codes.py:72 +#: stock/status_codes.py:73 msgid "Split child item" msgstr "子項目を分割" -#: stock/status_codes.py:75 +#: stock/status_codes.py:76 msgid "Merged stock items" msgstr "商品在庫をマージしました" -#: stock/status_codes.py:78 +#: stock/status_codes.py:79 msgid "Converted to variant" msgstr "バリアントに変換" -#: stock/status_codes.py:81 +#: stock/status_codes.py:82 msgid "Build order output created" msgstr "組立注文の出力が作成されました" -#: stock/status_codes.py:82 +#: stock/status_codes.py:83 msgid "Build order output completed" msgstr "組立注文の出力が完了しました" -#: stock/status_codes.py:83 +#: stock/status_codes.py:84 msgid "Build order output rejected" msgstr "ビルドオーダーの出力が拒否されました" -#: stock/status_codes.py:84 +#: stock/status_codes.py:85 msgid "Consumed by build order" msgstr "ビルド・オーダーで消費" -#: stock/status_codes.py:87 +#: stock/status_codes.py:88 msgid "Shipped against Sales Order" msgstr "販売注文に対して出荷" -#: stock/status_codes.py:90 +#: stock/status_codes.py:91 msgid "Received against Purchase Order" msgstr "発注書との照合" -#: stock/status_codes.py:93 +#: stock/status_codes.py:94 msgid "Returned against Return Order" msgstr "リターンオーダーに反して返品" -#: stock/status_codes.py:96 +#: stock/status_codes.py:97 msgid "Sent to customer" msgstr "顧客に送信されました" -#: stock/status_codes.py:97 +#: stock/status_codes.py:98 msgid "Returned from customer" msgstr "顧客からの返品" diff --git a/src/backend/InvenTree/locale/ko/LC_MESSAGES/django.po b/src/backend/InvenTree/locale/ko/LC_MESSAGES/django.po index bb4a66f649..8e9847afca 100644 --- a/src/backend/InvenTree/locale/ko/LC_MESSAGES/django.po +++ b/src/backend/InvenTree/locale/ko/LC_MESSAGES/django.po @@ -2,8 +2,8 @@ msgid "" msgstr "" "Project-Id-Version: inventree\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-11-19 04:55+0000\n" -"PO-Revision-Date: 2025-11-19 04:59\n" +"POT-Creation-Date: 2025-12-07 07:33+0000\n" +"PO-Revision-Date: 2025-12-07 07:36\n" "Last-Translator: \n" "Language-Team: Korean\n" "Language: ko_KR\n" @@ -57,7 +57,7 @@ msgstr "" msgid "This field must be unique." msgstr "" -#: InvenTree/api.py:775 +#: InvenTree/api.py:803 msgid "User does not have permission to view this model" msgstr "이 모델을 볼 수 있는 권한이 없습니다." @@ -81,22 +81,22 @@ msgstr "" msgid "The provided email domain is not approved." msgstr "" -#: InvenTree/conversion.py:166 +#: InvenTree/conversion.py:240 #, python-brace-format msgid "Invalid unit provided ({unit})" msgstr "" -#: InvenTree/conversion.py:183 +#: InvenTree/conversion.py:257 msgid "No value provided" msgstr "" -#: InvenTree/conversion.py:210 +#: InvenTree/conversion.py:284 #, python-brace-format msgid "Could not convert {original} to {unit}" msgstr "" -#: InvenTree/conversion.py:212 InvenTree/conversion.py:226 -#: InvenTree/helpers.py:597 order/models.py:720 order/models.py:1015 +#: InvenTree/conversion.py:286 InvenTree/conversion.py:300 +#: InvenTree/helpers.py:597 order/models.py:721 order/models.py:1016 msgid "Invalid quantity provided" msgstr "" @@ -112,11 +112,11 @@ msgstr "날짜 입력" msgid "Invalid decimal value" msgstr "" -#: InvenTree/fields.py:218 InvenTree/models.py:1067 build/serializers.py:509 -#: build/serializers.py:580 build/serializers.py:1788 company/models.py:857 -#: order/models.py:1780 +#: InvenTree/fields.py:218 InvenTree/models.py:1228 build/serializers.py:517 +#: build/serializers.py:588 build/serializers.py:1796 company/models.py:811 +#: order/models.py:1781 #: report/templates/report/inventree_build_order_report.html:172 -#: stock/models.py:2848 stock/models.py:2972 stock/serializers.py:717 +#: stock/models.py:2865 stock/models.py:2989 stock/serializers.py:717 #: stock/serializers.py:893 stock/serializers.py:1035 stock/serializers.py:1336 #: stock/serializers.py:1425 stock/serializers.py:1624 msgid "Notes" @@ -171,35 +171,35 @@ msgstr "" msgid "Data contains prohibited markdown content" msgstr "" -#: InvenTree/helpers_model.py:133 +#: InvenTree/helpers_model.py:134 msgid "Connection error" msgstr "연결 오류" -#: InvenTree/helpers_model.py:138 InvenTree/helpers_model.py:145 +#: InvenTree/helpers_model.py:139 InvenTree/helpers_model.py:146 msgid "Server responded with invalid status code" msgstr "" -#: InvenTree/helpers_model.py:141 +#: InvenTree/helpers_model.py:142 msgid "Exception occurred" msgstr "" -#: InvenTree/helpers_model.py:151 +#: InvenTree/helpers_model.py:152 msgid "Server responded with invalid Content-Length value" msgstr "" -#: InvenTree/helpers_model.py:154 +#: InvenTree/helpers_model.py:155 msgid "Image size is too large" msgstr "이미지 크기가 너무 큽니다!" -#: InvenTree/helpers_model.py:166 +#: InvenTree/helpers_model.py:167 msgid "Image download exceeded maximum size" msgstr "" -#: InvenTree/helpers_model.py:171 +#: InvenTree/helpers_model.py:172 msgid "Remote server returned empty response" msgstr "" -#: InvenTree/helpers_model.py:179 +#: InvenTree/helpers_model.py:180 msgid "Supplied URL is not a valid image file" msgstr "" @@ -207,7 +207,7 @@ msgstr "" msgid "Log in to the app" msgstr "" -#: InvenTree/magic_login.py:41 company/models.py:172 users/serializers.py:198 +#: InvenTree/magic_login.py:41 company/models.py:173 users/serializers.py:198 msgid "Email" msgstr "이메일" @@ -215,160 +215,176 @@ msgstr "이메일" msgid "You must enable two-factor authentication before doing anything else." msgstr "" -#: InvenTree/models.py:111 +#: InvenTree/models.py:114 msgid "Error running plugin validation" msgstr "" -#: InvenTree/models.py:192 +#: InvenTree/models.py:195 msgid "Metadata must be a python dict object" msgstr "" -#: InvenTree/models.py:198 +#: InvenTree/models.py:201 msgid "Plugin Metadata" msgstr "" -#: InvenTree/models.py:199 +#: InvenTree/models.py:202 msgid "JSON metadata field, for use by external plugins" msgstr "" -#: InvenTree/models.py:382 +#: InvenTree/models.py:385 msgid "Improperly formatted pattern" msgstr "" -#: InvenTree/models.py:389 +#: InvenTree/models.py:392 msgid "Unknown format key specified" msgstr "" -#: InvenTree/models.py:395 +#: InvenTree/models.py:398 msgid "Missing required format key" msgstr "" -#: InvenTree/models.py:406 +#: InvenTree/models.py:409 msgid "Reference field cannot be empty" msgstr "" -#: InvenTree/models.py:414 +#: InvenTree/models.py:417 msgid "Reference must match required pattern" msgstr "" -#: InvenTree/models.py:445 +#: InvenTree/models.py:448 msgid "Reference number is too large" msgstr "" -#: InvenTree/models.py:743 +#: InvenTree/models.py:896 msgid "Invalid choice" msgstr "" -#: InvenTree/models.py:856 common/models.py:1410 common/models.py:1837 -#: common/models.py:2096 common/models.py:2221 common/serializers.py:535 -#: company/models.py:615 generic/states/serializers.py:20 machine/models.py:25 -#: part/models.py:1039 part/models.py:3850 plugin/models.py:54 +#: InvenTree/models.py:1017 common/models.py:1414 common/models.py:1841 +#: common/models.py:2102 common/models.py:2227 common/models.py:2494 +#: common/serializers.py:539 generic/states/serializers.py:20 +#: machine/models.py:25 part/models.py:1127 plugin/models.py:54 #: report/models.py:216 stock/models.py:84 msgid "Name" msgstr "이름" -#: InvenTree/models.py:862 build/models.py:252 common/models.py:171 -#: common/models.py:2228 common/models.py:2341 company/models.py:543 -#: company/models.py:848 order/models.py:442 order/models.py:1825 -#: part/models.py:1062 part/models.py:3865 report/models.py:222 +#: InvenTree/models.py:1023 build/models.py:253 common/models.py:175 +#: common/models.py:2234 common/models.py:2347 common/models.py:2509 +#: company/models.py:545 company/models.py:802 order/models.py:443 +#: order/models.py:1826 part/models.py:1150 report/models.py:222 #: report/models.py:815 report/models.py:841 #: report/templates/report/inventree_build_order_report.html:117 #: stock/models.py:90 msgid "Description" msgstr "설명" -#: InvenTree/models.py:863 stock/models.py:91 +#: InvenTree/models.py:1024 stock/models.py:91 msgid "Description (optional)" msgstr "설명 (선택 사항)" -#: InvenTree/models.py:878 common/models.py:2394 +#: InvenTree/models.py:1039 common/models.py:2815 msgid "Path" msgstr "" -#: InvenTree/models.py:983 +#: InvenTree/models.py:1144 msgid "Duplicate names cannot exist under the same parent" msgstr "" -#: InvenTree/models.py:1067 +#: InvenTree/models.py:1228 msgid "Markdown notes (optional)" msgstr "" -#: InvenTree/models.py:1098 +#: InvenTree/models.py:1259 msgid "Barcode Data" msgstr "바코드 데이터" -#: InvenTree/models.py:1099 +#: InvenTree/models.py:1260 msgid "Third party barcode data" msgstr "" -#: InvenTree/models.py:1105 +#: InvenTree/models.py:1266 msgid "Barcode Hash" msgstr "" -#: InvenTree/models.py:1106 +#: InvenTree/models.py:1267 msgid "Unique hash of barcode data" msgstr "" -#: InvenTree/models.py:1187 +#: InvenTree/models.py:1348 msgid "Existing barcode found" msgstr "" -#: InvenTree/models.py:1269 +#: InvenTree/models.py:1430 msgid "Task Failure" msgstr "" -#: InvenTree/models.py:1270 +#: InvenTree/models.py:1431 #, python-brace-format msgid "Background worker task '{f}' failed after {n} attempts" msgstr "" -#: InvenTree/models.py:1297 +#: InvenTree/models.py:1458 msgid "Server Error" msgstr "서버 오류" -#: InvenTree/models.py:1298 +#: InvenTree/models.py:1459 msgid "An error has been logged by the server." msgstr "" -#: InvenTree/models.py:1340 common/models.py:1748 +#: InvenTree/models.py:1501 common/models.py:1752 #: report/templates/report/inventree_bill_of_materials_report.html:126 #: report/templates/report/inventree_bill_of_materials_report.html:148 #: report/templates/report/inventree_return_order_report.html:35 msgid "Image" msgstr "" -#: InvenTree/serializers.py:253 part/models.py:4571 +#: InvenTree/serializers.py:255 part/models.py:4196 msgid "Must be a valid number" msgstr "" -#: InvenTree/serializers.py:295 company/models.py:214 part/models.py:3285 +#: InvenTree/serializers.py:297 company/models.py:215 part/models.py:3349 msgid "Currency" msgstr "" -#: InvenTree/serializers.py:298 part/serializers.py:1385 +#: InvenTree/serializers.py:300 part/serializers.py:1250 msgid "Select currency from available options" msgstr "" -#: InvenTree/serializers.py:653 +#: InvenTree/serializers.py:654 +msgid "This field may not be null." +msgstr "" + +#: InvenTree/serializers.py:660 msgid "Invalid value" msgstr "유효하지 않은 값" -#: InvenTree/serializers.py:690 +#: InvenTree/serializers.py:697 msgid "Remote Image" msgstr "" -#: InvenTree/serializers.py:691 +#: InvenTree/serializers.py:698 msgid "URL of remote image file" msgstr "" -#: InvenTree/serializers.py:709 +#: InvenTree/serializers.py:716 msgid "Downloading images from remote URL is not enabled" msgstr "" -#: InvenTree/serializers.py:716 +#: InvenTree/serializers.py:723 msgid "Failed to download image from remote URL" msgstr "" +#: InvenTree/serializers.py:806 +msgid "Invalid content type format" +msgstr "" + +#: InvenTree/serializers.py:809 +msgid "Content type not found" +msgstr "" + +#: InvenTree/serializers.py:815 +msgid "Content type does not match required mixin class" +msgstr "" + #: InvenTree/setting/locales.py:20 msgid "Arabic" msgstr "아랍어" @@ -537,30 +553,30 @@ msgstr "" msgid "Not a valid currency code" msgstr "" -#: build/api.py:54 order/api.py:111 order/api.py:270 order/api.py:1373 -#: order/serializers.py:132 +#: build/api.py:54 order/api.py:116 order/api.py:275 order/api.py:1378 +#: order/serializers.py:133 msgid "Order Status" msgstr "" -#: build/api.py:80 build/models.py:264 +#: build/api.py:80 build/models.py:265 msgid "Parent Build" msgstr "" -#: build/api.py:84 build/api.py:831 order/api.py:547 order/api.py:770 -#: order/api.py:1174 order/api.py:1449 stock/api.py:573 +#: build/api.py:84 build/api.py:837 order/api.py:553 order/api.py:776 +#: order/api.py:1179 order/api.py:1454 stock/api.py:573 msgid "Include Variants" msgstr "" -#: build/api.py:100 build/api.py:466 build/api.py:845 build/models.py:270 -#: build/serializers.py:1225 build/serializers.py:1356 -#: build/serializers.py:1427 company/models.py:1067 company/serializers.py:445 -#: order/api.py:298 order/api.py:302 order/api.py:929 order/api.py:1187 -#: order/api.py:1190 order/models.py:1941 order/models.py:2108 -#: order/models.py:2109 part/api.py:1233 part/api.py:1236 part/api.py:1302 -#: part/api.py:1589 part/models.py:472 part/models.py:3296 part/models.py:3439 -#: part/models.py:3497 part/models.py:3518 part/models.py:3540 -#: part/models.py:3679 part/models.py:4046 part/models.py:4368 -#: part/models.py:4787 part/serializers.py:1928 +#: build/api.py:100 build/api.py:472 build/api.py:851 build/models.py:271 +#: build/serializers.py:1233 build/serializers.py:1364 +#: build/serializers.py:1435 company/models.py:1021 company/serializers.py:490 +#: order/api.py:303 order/api.py:307 order/api.py:934 order/api.py:1192 +#: order/api.py:1195 order/models.py:1942 order/models.py:2109 +#: order/models.py:2110 part/api.py:1160 part/api.py:1163 part/api.py:1314 +#: part/models.py:550 part/models.py:3360 part/models.py:3503 +#: part/models.py:3561 part/models.py:3582 part/models.py:3604 +#: part/models.py:3743 part/models.py:3993 part/models.py:4412 +#: part/serializers.py:1801 #: report/templates/report/inventree_bill_of_materials_report.html:110 #: report/templates/report/inventree_bill_of_materials_report.html:137 #: report/templates/report/inventree_build_order_report.html:109 @@ -580,9 +596,9 @@ msgstr "" msgid "Part" msgstr "" -#: build/api.py:120 build/api.py:123 build/serializers.py:1438 part/api.py:980 -#: part/api.py:1316 part/api.py:1600 part/models.py:1080 part/models.py:3568 -#: part/models.py:4162 part/serializers.py:1752 stock/api.py:869 +#: build/api.py:120 build/api.py:123 build/serializers.py:1446 part/api.py:975 +#: part/api.py:1325 part/models.py:435 part/models.py:1168 part/models.py:3632 +#: part/serializers.py:1617 stock/api.py:869 msgid "Category" msgstr "분류" @@ -590,7 +606,7 @@ msgstr "분류" msgid "Ancestor Build" msgstr "" -#: build/api.py:152 order/api.py:129 +#: build/api.py:152 order/api.py:134 msgid "Assigned to me" msgstr "나에게 할당 됨" @@ -638,134 +654,134 @@ msgstr "" msgid "Completed after" msgstr "" -#: build/api.py:249 order/api.py:226 +#: build/api.py:249 order/api.py:231 msgid "Min Date" msgstr "최소 날짜" -#: build/api.py:272 order/api.py:245 +#: build/api.py:272 order/api.py:250 msgid "Max Date" msgstr "최대 날짜" -#: build/api.py:297 build/api.py:300 part/api.py:217 stock/api.py:961 +#: build/api.py:297 build/api.py:300 part/api.py:212 stock/api.py:961 msgid "Exclude Tree" msgstr "" -#: build/api.py:405 +#: build/api.py:411 msgid "Build must be cancelled before it can be deleted" msgstr "" -#: build/api.py:449 build/serializers.py:1374 part/models.py:4402 +#: build/api.py:455 build/serializers.py:1382 part/models.py:4027 msgid "Consumable" msgstr "소모품" -#: build/api.py:452 build/serializers.py:1377 part/models.py:4396 +#: build/api.py:458 build/serializers.py:1385 part/models.py:4021 msgid "Optional" msgstr "선택사항" -#: build/api.py:455 build/serializers.py:1415 common/setting/system.py:456 -#: part/models.py:1202 part/serializers.py:1714 part/serializers.py:1725 +#: build/api.py:461 build/serializers.py:1423 common/setting/system.py:456 +#: part/models.py:1290 part/serializers.py:1579 part/serializers.py:1590 #: stock/api.py:639 msgid "Assembly" msgstr "" -#: build/api.py:458 +#: build/api.py:464 msgid "Tracked" msgstr "" -#: build/api.py:461 build/serializers.py:1380 part/models.py:1220 +#: build/api.py:467 build/serializers.py:1388 part/models.py:1308 msgid "Testable" msgstr "" -#: build/api.py:471 order/api.py:993 order/api.py:1363 +#: build/api.py:477 order/api.py:998 order/api.py:1368 msgid "Order Outstanding" msgstr "" -#: build/api.py:481 build/serializers.py:1464 order/api.py:952 +#: build/api.py:487 build/serializers.py:1472 order/api.py:957 msgid "Allocated" msgstr "" -#: build/api.py:490 build/models.py:1672 build/serializers.py:1393 +#: build/api.py:496 build/models.py:1673 build/serializers.py:1401 msgid "Consumed" msgstr "" -#: build/api.py:499 company/models.py:912 company/serializers.py:440 +#: build/api.py:505 company/models.py:866 company/serializers.py:467 #: templates/email/build_order_required_stock.html:19 #: templates/email/low_stock_notification.html:17 #: templates/email/part_event_notification.html:18 msgid "Available" msgstr "" -#: build/api.py:523 build/serializers.py:1466 company/serializers.py:437 -#: order/serializers.py:1281 part/serializers.py:959 part/serializers.py:1306 -#: part/serializers.py:1761 +#: build/api.py:529 build/serializers.py:1474 company/serializers.py:464 +#: order/serializers.py:1295 part/serializers.py:844 part/serializers.py:1171 +#: part/serializers.py:1626 msgid "On Order" msgstr "" -#: build/api.py:868 build/models.py:117 order/models.py:1974 +#: build/api.py:874 build/models.py:118 order/models.py:1975 #: report/templates/report/inventree_build_order_report.html:105 #: stock/serializers.py:93 templates/email/build_order_completed.html:16 #: templates/email/overdue_build_order.html:15 msgid "Build Order" msgstr "" -#: build/api.py:882 build/api.py:886 build/serializers.py:372 -#: build/serializers.py:497 build/serializers.py:567 build/serializers.py:1251 -#: build/serializers.py:1256 order/api.py:1234 order/api.py:1239 -#: order/serializers.py:833 order/serializers.py:973 order/serializers.py:2042 +#: build/api.py:888 build/api.py:892 build/serializers.py:380 +#: build/serializers.py:505 build/serializers.py:575 build/serializers.py:1259 +#: build/serializers.py:1264 order/api.py:1239 order/api.py:1244 +#: order/serializers.py:844 order/serializers.py:984 order/serializers.py:2059 #: stock/api.py:987 stock/serializers.py:111 stock/serializers.py:601 #: stock/serializers.py:710 stock/serializers.py:888 stock/serializers.py:1418 -#: stock/serializers.py:1731 stock/serializers.py:1780 +#: stock/serializers.py:1739 stock/serializers.py:1788 #: templates/email/stale_stock_notification.html:18 users/models.py:549 msgid "Location" msgstr "" -#: build/api.py:894 +#: build/api.py:900 msgid "Output" msgstr "" -#: build/api.py:896 +#: build/api.py:902 msgid "Filter by output stock item ID. Use 'null' to find uninstalled build items." msgstr "" -#: build/models.py:118 users/ruleset.py:31 +#: build/models.py:119 users/ruleset.py:31 msgid "Build Orders" msgstr "" -#: build/models.py:168 +#: build/models.py:169 msgid "Assembly BOM has not been validated" msgstr "" -#: build/models.py:175 +#: build/models.py:176 msgid "Build order cannot be created for an inactive part" msgstr "" -#: build/models.py:182 +#: build/models.py:183 msgid "Build order cannot be created for an unlocked part" msgstr "" -#: build/models.py:200 +#: build/models.py:201 msgid "Build orders can only be externally fulfilled for purchaseable parts" msgstr "" -#: build/models.py:207 order/models.py:369 +#: build/models.py:208 order/models.py:370 msgid "Responsible user or group must be specified" msgstr "" -#: build/models.py:212 +#: build/models.py:213 msgid "Build order part cannot be changed" msgstr "" -#: build/models.py:217 order/models.py:382 +#: build/models.py:218 order/models.py:383 msgid "Target date must be after start date" msgstr "" -#: build/models.py:245 +#: build/models.py:246 msgid "Build Order Reference" msgstr "" -#: build/models.py:246 build/serializers.py:1371 order/models.py:614 -#: order/models.py:1311 order/models.py:1773 order/models.py:2712 -#: part/models.py:4442 +#: build/models.py:247 build/serializers.py:1379 order/models.py:615 +#: order/models.py:1312 order/models.py:1774 order/models.py:2713 +#: part/models.py:4067 #: report/templates/report/inventree_bill_of_materials_report.html:139 #: report/templates/report/inventree_purchase_order_report.html:35 #: report/templates/report/inventree_return_order_report.html:26 @@ -773,230 +789,230 @@ msgstr "" msgid "Reference" msgstr "" -#: build/models.py:255 +#: build/models.py:256 msgid "Brief description of the build (optional)" msgstr "" -#: build/models.py:265 +#: build/models.py:266 msgid "BuildOrder to which this build is allocated" msgstr "" -#: build/models.py:274 +#: build/models.py:275 msgid "Select part to build" msgstr "" -#: build/models.py:279 +#: build/models.py:280 msgid "Sales Order Reference" msgstr "" -#: build/models.py:284 +#: build/models.py:285 msgid "SalesOrder to which this build is allocated" msgstr "" -#: build/models.py:289 build/serializers.py:1097 +#: build/models.py:290 build/serializers.py:1105 msgid "Source Location" msgstr "" -#: build/models.py:295 +#: build/models.py:296 msgid "Select location to take stock from for this build (leave blank to take from any stock location)" msgstr "" -#: build/models.py:301 +#: build/models.py:302 msgid "External Build" msgstr "" -#: build/models.py:302 +#: build/models.py:303 msgid "This build order is fulfilled externally" msgstr "" -#: build/models.py:307 +#: build/models.py:308 msgid "Destination Location" msgstr "" -#: build/models.py:312 +#: build/models.py:313 msgid "Select location where the completed items will be stored" msgstr "" -#: build/models.py:316 +#: build/models.py:317 msgid "Build Quantity" msgstr "" -#: build/models.py:319 +#: build/models.py:320 msgid "Number of stock items to build" msgstr "" -#: build/models.py:323 +#: build/models.py:324 msgid "Completed items" msgstr "" -#: build/models.py:325 +#: build/models.py:326 msgid "Number of stock items which have been completed" msgstr "" -#: build/models.py:329 +#: build/models.py:330 msgid "Build Status" msgstr "" -#: build/models.py:334 +#: build/models.py:335 msgid "Build status code" msgstr "" -#: build/models.py:343 build/serializers.py:359 order/serializers.py:849 +#: build/models.py:344 build/serializers.py:367 order/serializers.py:860 #: stock/models.py:1100 stock/serializers.py:85 stock/serializers.py:1591 msgid "Batch Code" msgstr "" -#: build/models.py:347 build/serializers.py:360 +#: build/models.py:348 build/serializers.py:368 msgid "Batch code for this build output" msgstr "" -#: build/models.py:351 order/models.py:479 order/serializers.py:186 -#: part/models.py:1283 +#: build/models.py:352 order/models.py:480 order/serializers.py:193 +#: part/models.py:1371 msgid "Creation Date" msgstr "" -#: build/models.py:357 +#: build/models.py:358 msgid "Build start date" msgstr "" -#: build/models.py:358 +#: build/models.py:359 msgid "Scheduled start date for this build order" msgstr "" -#: build/models.py:364 +#: build/models.py:365 msgid "Target completion date" msgstr "" -#: build/models.py:366 +#: build/models.py:367 msgid "Target date for build completion. Build will be overdue after this date." msgstr "" -#: build/models.py:371 order/models.py:667 order/models.py:2751 +#: build/models.py:372 order/models.py:668 order/models.py:2752 msgid "Completion Date" msgstr "" -#: build/models.py:379 +#: build/models.py:380 msgid "completed by" msgstr "" -#: build/models.py:388 +#: build/models.py:389 msgid "Issued by" msgstr "" -#: build/models.py:389 +#: build/models.py:390 msgid "User who issued this build order" msgstr "" -#: build/models.py:398 common/models.py:180 order/api.py:179 -#: order/models.py:504 part/models.py:1300 +#: build/models.py:399 common/models.py:184 order/api.py:184 +#: order/models.py:505 part/models.py:1388 #: report/templates/report/inventree_build_order_report.html:158 msgid "Responsible" msgstr "" -#: build/models.py:399 +#: build/models.py:400 msgid "User or group responsible for this build order" msgstr "" -#: build/models.py:404 stock/models.py:1093 +#: build/models.py:405 stock/models.py:1093 msgid "External Link" msgstr "" -#: build/models.py:406 common/models.py:1984 part/models.py:1114 +#: build/models.py:407 common/models.py:1990 part/models.py:1202 #: stock/models.py:1095 msgid "Link to external URL" msgstr "" -#: build/models.py:411 +#: build/models.py:412 msgid "Build Priority" msgstr "" -#: build/models.py:414 +#: build/models.py:415 msgid "Priority of this build order" msgstr "" -#: build/models.py:422 common/models.py:150 common/models.py:164 -#: order/api.py:165 order/models.py:451 order/models.py:1805 +#: build/models.py:423 common/models.py:154 common/models.py:168 +#: order/api.py:170 order/models.py:452 order/models.py:1806 msgid "Project Code" msgstr "" -#: build/models.py:423 +#: build/models.py:424 msgid "Project code for this build order" msgstr "" -#: build/models.py:676 +#: build/models.py:677 msgid "Cannot complete build order with open child builds" msgstr "" -#: build/models.py:681 +#: build/models.py:682 msgid "Cannot complete build order with incomplete outputs" msgstr "" -#: build/models.py:700 build/models.py:830 +#: build/models.py:701 build/models.py:831 msgid "Failed to offload task to complete build allocations" msgstr "" -#: build/models.py:723 +#: build/models.py:724 #, python-brace-format msgid "Build order {build} has been completed" msgstr "" -#: build/models.py:729 +#: build/models.py:730 msgid "A build order has been completed" msgstr "" -#: build/models.py:911 build/serializers.py:407 +#: build/models.py:912 build/serializers.py:415 msgid "Serial numbers must be provided for trackable parts" msgstr "" -#: build/models.py:1042 build/models.py:1129 +#: build/models.py:1043 build/models.py:1130 msgid "No build output specified" msgstr "" -#: build/models.py:1045 +#: build/models.py:1046 msgid "Build output is already completed" msgstr "" -#: build/models.py:1048 +#: build/models.py:1049 msgid "Build output does not match Build Order" msgstr "" -#: build/models.py:1136 build/models.py:1234 build/serializers.py:285 -#: build/serializers.py:335 build/serializers.py:965 build/serializers.py:1739 -#: order/models.py:717 order/serializers.py:658 order/serializers.py:844 -#: part/serializers.py:1708 stock/models.py:940 stock/models.py:1430 +#: build/models.py:1137 build/models.py:1235 build/serializers.py:293 +#: build/serializers.py:343 build/serializers.py:973 build/serializers.py:1747 +#: order/models.py:718 order/serializers.py:669 order/serializers.py:855 +#: part/serializers.py:1573 stock/models.py:940 stock/models.py:1430 #: stock/models.py:1878 stock/serializers.py:688 stock/serializers.py:1580 msgid "Quantity must be greater than zero" msgstr "" -#: build/models.py:1140 build/models.py:1239 build/serializers.py:290 +#: build/models.py:1141 build/models.py:1240 build/serializers.py:298 msgid "Quantity cannot be greater than the output quantity" msgstr "" -#: build/models.py:1214 build/serializers.py:606 +#: build/models.py:1215 build/serializers.py:614 msgid "Build output has not passed all required tests" msgstr "" -#: build/models.py:1217 build/serializers.py:601 +#: build/models.py:1218 build/serializers.py:609 #, python-brace-format msgid "Build output {serial} has not passed all required tests" msgstr "" -#: build/models.py:1229 +#: build/models.py:1230 msgid "Cannot partially complete a build output with allocated items" msgstr "" -#: build/models.py:1627 +#: build/models.py:1628 msgid "Build Order Line Item" msgstr "" -#: build/models.py:1651 +#: build/models.py:1652 msgid "Build object" msgstr "" -#: build/models.py:1663 build/models.py:1974 build/serializers.py:271 -#: build/serializers.py:320 build/serializers.py:1392 common/models.py:1340 -#: order/models.py:1756 order/models.py:2597 order/serializers.py:1696 -#: order/serializers.py:2124 part/models.py:3453 part/models.py:4390 +#: build/models.py:1664 build/models.py:1975 build/serializers.py:279 +#: build/serializers.py:328 build/serializers.py:1400 common/models.py:1344 +#: order/models.py:1757 order/models.py:2598 order/serializers.py:1710 +#: order/serializers.py:2141 part/models.py:3517 part/models.py:4015 #: report/templates/report/inventree_bill_of_materials_report.html:138 #: report/templates/report/inventree_build_order_report.html:113 #: report/templates/report/inventree_purchase_order_report.html:36 @@ -1014,427 +1030,427 @@ msgstr "" msgid "Quantity" msgstr "수량" -#: build/models.py:1664 +#: build/models.py:1665 msgid "Required quantity for build order" msgstr "" -#: build/models.py:1673 +#: build/models.py:1674 msgid "Quantity of consumed stock" msgstr "" -#: build/models.py:1772 +#: build/models.py:1773 msgid "Build item must specify a build output, as master part is marked as trackable" msgstr "" -#: build/models.py:1783 +#: build/models.py:1784 #, python-brace-format msgid "Allocated quantity ({q}) must not exceed available stock quantity ({a})" msgstr "" -#: build/models.py:1804 order/models.py:2546 +#: build/models.py:1805 order/models.py:2547 msgid "Stock item is over-allocated" msgstr "" -#: build/models.py:1809 order/models.py:2549 +#: build/models.py:1810 order/models.py:2550 msgid "Allocation quantity must be greater than zero" msgstr "" -#: build/models.py:1815 +#: build/models.py:1816 msgid "Quantity must be 1 for serialized stock" msgstr "" -#: build/models.py:1875 +#: build/models.py:1876 msgid "Selected stock item does not match BOM line" msgstr "" -#: build/models.py:1913 +#: build/models.py:1914 msgid "Allocated quantity exceeds available stock quantity" msgstr "" -#: build/models.py:1964 build/serializers.py:948 build/serializers.py:1240 -#: order/serializers.py:1533 order/serializers.py:1554 +#: build/models.py:1965 build/serializers.py:956 build/serializers.py:1248 +#: order/serializers.py:1547 order/serializers.py:1568 #: report/templates/report/inventree_sales_order_shipment_report.html:29 #: stock/api.py:1404 stock/models.py:456 stock/serializers.py:102 #: stock/serializers.py:800 stock/serializers.py:1274 stock/serializers.py:1386 msgid "Stock Item" msgstr "" -#: build/models.py:1965 +#: build/models.py:1966 msgid "Source stock item" msgstr "" -#: build/models.py:1975 +#: build/models.py:1976 msgid "Stock quantity to allocate to build" msgstr "" -#: build/models.py:1984 +#: build/models.py:1985 msgid "Install into" msgstr "" -#: build/models.py:1985 +#: build/models.py:1986 msgid "Destination stock item" msgstr "" -#: build/serializers.py:118 +#: build/serializers.py:120 msgid "Build Level" msgstr "" -#: build/serializers.py:128 +#: build/serializers.py:136 msgid "Part Name" msgstr "" -#: build/serializers.py:153 +#: build/serializers.py:161 msgid "Project Code Label" msgstr "" -#: build/serializers.py:219 build/serializers.py:974 +#: build/serializers.py:227 build/serializers.py:982 msgid "Build Output" msgstr "" -#: build/serializers.py:231 +#: build/serializers.py:239 msgid "Build output does not match the parent build" msgstr "" -#: build/serializers.py:235 +#: build/serializers.py:243 msgid "Output part does not match BuildOrder part" msgstr "" -#: build/serializers.py:239 +#: build/serializers.py:247 msgid "This build output has already been completed" msgstr "" -#: build/serializers.py:253 +#: build/serializers.py:261 msgid "This build output is not fully allocated" msgstr "" -#: build/serializers.py:272 build/serializers.py:321 +#: build/serializers.py:280 build/serializers.py:329 msgid "Enter quantity for build output" msgstr "" -#: build/serializers.py:343 +#: build/serializers.py:351 msgid "Integer quantity required for trackable parts" msgstr "" -#: build/serializers.py:349 +#: build/serializers.py:357 msgid "Integer quantity required, as the bill of materials contains trackable parts" msgstr "" -#: build/serializers.py:366 order/serializers.py:865 order/serializers.py:1700 +#: build/serializers.py:374 order/serializers.py:876 order/serializers.py:1714 #: stock/serializers.py:699 msgid "Serial Numbers" msgstr "시리얼 번호 (일련번호)" -#: build/serializers.py:367 +#: build/serializers.py:375 msgid "Enter serial numbers for build outputs" msgstr "" -#: build/serializers.py:373 +#: build/serializers.py:381 msgid "Stock location for build output" msgstr "" -#: build/serializers.py:388 +#: build/serializers.py:396 msgid "Auto Allocate Serial Numbers" msgstr "" -#: build/serializers.py:390 +#: build/serializers.py:398 msgid "Automatically allocate required items with matching serial numbers" msgstr "" -#: build/serializers.py:423 order/serializers.py:951 stock/api.py:1183 +#: build/serializers.py:431 order/serializers.py:962 stock/api.py:1183 #: stock/models.py:1901 msgid "The following serial numbers already exist or are invalid" msgstr "" -#: build/serializers.py:465 build/serializers.py:521 build/serializers.py:613 +#: build/serializers.py:473 build/serializers.py:529 build/serializers.py:621 msgid "A list of build outputs must be provided" msgstr "" -#: build/serializers.py:498 +#: build/serializers.py:506 msgid "Stock location for scrapped outputs" msgstr "" -#: build/serializers.py:504 +#: build/serializers.py:512 msgid "Discard Allocations" msgstr "" -#: build/serializers.py:505 +#: build/serializers.py:513 msgid "Discard any stock allocations for scrapped outputs" msgstr "" -#: build/serializers.py:510 +#: build/serializers.py:518 msgid "Reason for scrapping build output(s)" msgstr "" -#: build/serializers.py:568 +#: build/serializers.py:576 msgid "Location for completed build outputs" msgstr "" -#: build/serializers.py:576 +#: build/serializers.py:584 msgid "Accept Incomplete Allocation" msgstr "" -#: build/serializers.py:577 +#: build/serializers.py:585 msgid "Complete outputs if stock has not been fully allocated" msgstr "" -#: build/serializers.py:702 +#: build/serializers.py:710 msgid "Consume Allocated Stock" msgstr "" -#: build/serializers.py:703 +#: build/serializers.py:711 msgid "Consume any stock which has already been allocated to this build" msgstr "" -#: build/serializers.py:709 +#: build/serializers.py:717 msgid "Remove Incomplete Outputs" msgstr "" -#: build/serializers.py:710 +#: build/serializers.py:718 msgid "Delete any build outputs which have not been completed" msgstr "" -#: build/serializers.py:737 +#: build/serializers.py:745 msgid "Not permitted" msgstr "" -#: build/serializers.py:738 +#: build/serializers.py:746 msgid "Accept as consumed by this build order" msgstr "" -#: build/serializers.py:739 +#: build/serializers.py:747 msgid "Deallocate before completing this build order" msgstr "" -#: build/serializers.py:766 +#: build/serializers.py:774 msgid "Overallocated Stock" msgstr "" -#: build/serializers.py:769 +#: build/serializers.py:777 msgid "How do you want to handle extra stock items assigned to the build order" msgstr "" -#: build/serializers.py:780 +#: build/serializers.py:788 msgid "Some stock items have been overallocated" msgstr "" -#: build/serializers.py:785 +#: build/serializers.py:793 msgid "Accept Unallocated" msgstr "" -#: build/serializers.py:787 +#: build/serializers.py:795 msgid "Accept that stock items have not been fully allocated to this build order" msgstr "" -#: build/serializers.py:798 +#: build/serializers.py:806 msgid "Required stock has not been fully allocated" msgstr "" -#: build/serializers.py:803 order/serializers.py:524 order/serializers.py:1601 +#: build/serializers.py:811 order/serializers.py:535 order/serializers.py:1615 msgid "Accept Incomplete" msgstr "" -#: build/serializers.py:805 +#: build/serializers.py:813 msgid "Accept that the required number of build outputs have not been completed" msgstr "" -#: build/serializers.py:816 +#: build/serializers.py:824 msgid "Required build quantity has not been completed" msgstr "" -#: build/serializers.py:828 +#: build/serializers.py:836 msgid "Build order has open child build orders" msgstr "" -#: build/serializers.py:831 +#: build/serializers.py:839 msgid "Build order must be in production state" msgstr "" -#: build/serializers.py:834 +#: build/serializers.py:842 msgid "Build order has incomplete outputs" msgstr "" -#: build/serializers.py:873 +#: build/serializers.py:881 msgid "Build Line" msgstr "" -#: build/serializers.py:881 +#: build/serializers.py:889 msgid "Build output" msgstr "" -#: build/serializers.py:889 +#: build/serializers.py:897 msgid "Build output must point to the same build" msgstr "" -#: build/serializers.py:920 +#: build/serializers.py:928 msgid "Build Line Item" msgstr "" -#: build/serializers.py:938 +#: build/serializers.py:946 msgid "bom_item.part must point to the same part as the build order" msgstr "" -#: build/serializers.py:954 stock/serializers.py:1287 +#: build/serializers.py:962 stock/serializers.py:1287 msgid "Item must be in stock" msgstr "" -#: build/serializers.py:997 order/serializers.py:1587 +#: build/serializers.py:1005 order/serializers.py:1601 #, python-brace-format msgid "Available quantity ({q}) exceeded" msgstr "" -#: build/serializers.py:1003 +#: build/serializers.py:1011 msgid "Build output must be specified for allocation of tracked parts" msgstr "" -#: build/serializers.py:1011 +#: build/serializers.py:1019 msgid "Build output cannot be specified for allocation of untracked parts" msgstr "" -#: build/serializers.py:1035 order/serializers.py:1860 +#: build/serializers.py:1043 order/serializers.py:1874 msgid "Allocation items must be provided" msgstr "" -#: build/serializers.py:1099 +#: build/serializers.py:1107 msgid "Stock location where parts are to be sourced (leave blank to take from any location)" msgstr "" -#: build/serializers.py:1108 +#: build/serializers.py:1116 msgid "Exclude Location" msgstr "" -#: build/serializers.py:1109 +#: build/serializers.py:1117 msgid "Exclude stock items from this selected location" msgstr "" -#: build/serializers.py:1114 +#: build/serializers.py:1122 msgid "Interchangeable Stock" msgstr "" -#: build/serializers.py:1115 +#: build/serializers.py:1123 msgid "Stock items in multiple locations can be used interchangeably" msgstr "" -#: build/serializers.py:1120 +#: build/serializers.py:1128 msgid "Substitute Stock" msgstr "" -#: build/serializers.py:1121 +#: build/serializers.py:1129 msgid "Allow allocation of substitute parts" msgstr "" -#: build/serializers.py:1126 +#: build/serializers.py:1134 msgid "Optional Items" msgstr "" -#: build/serializers.py:1127 +#: build/serializers.py:1135 msgid "Allocate optional BOM items to build order" msgstr "" -#: build/serializers.py:1148 +#: build/serializers.py:1156 msgid "Failed to start auto-allocation task" msgstr "" -#: build/serializers.py:1200 +#: build/serializers.py:1208 msgid "BOM Reference" msgstr "" -#: build/serializers.py:1206 +#: build/serializers.py:1214 msgid "BOM Part ID" msgstr "" -#: build/serializers.py:1213 +#: build/serializers.py:1221 msgid "BOM Part Name" msgstr "" -#: build/serializers.py:1266 build/serializers.py:1449 +#: build/serializers.py:1274 build/serializers.py:1457 msgid "Build" msgstr "" -#: build/serializers.py:1276 company/models.py:685 order/api.py:311 -#: order/api.py:316 order/api.py:543 order/serializers.py:650 +#: build/serializers.py:1284 company/models.py:639 order/api.py:316 +#: order/api.py:321 order/api.py:549 order/serializers.py:661 #: stock/models.py:1036 stock/serializers.py:579 msgid "Supplier Part" msgstr "" -#: build/serializers.py:1284 stock/serializers.py:620 +#: build/serializers.py:1292 stock/serializers.py:620 msgid "Allocated Quantity" msgstr "" -#: build/serializers.py:1351 +#: build/serializers.py:1359 msgid "Build Reference" msgstr "" -#: build/serializers.py:1361 +#: build/serializers.py:1369 msgid "Part Category Name" msgstr "" -#: build/serializers.py:1383 common/setting/system.py:480 part/models.py:1214 +#: build/serializers.py:1391 common/setting/system.py:480 part/models.py:1302 msgid "Trackable" msgstr "" -#: build/serializers.py:1386 +#: build/serializers.py:1394 msgid "Inherited" msgstr "" -#: build/serializers.py:1389 part/models.py:4475 +#: build/serializers.py:1397 part/models.py:4100 msgid "Allow Variants" msgstr "" -#: build/serializers.py:1395 build/serializers.py:1400 part/models.py:4208 -#: part/models.py:4779 stock/api.py:882 +#: build/serializers.py:1403 build/serializers.py:1408 part/models.py:3833 +#: part/models.py:4404 stock/api.py:882 msgid "BOM Item" msgstr "" -#: build/serializers.py:1467 order/serializers.py:1282 part/serializers.py:1310 -#: part/serializers.py:1765 +#: build/serializers.py:1475 order/serializers.py:1296 part/serializers.py:1175 +#: part/serializers.py:1630 msgid "In Production" msgstr "" -#: build/serializers.py:1469 part/serializers.py:950 part/serializers.py:1314 +#: build/serializers.py:1477 part/serializers.py:835 part/serializers.py:1179 msgid "Scheduled to Build" msgstr "" -#: build/serializers.py:1472 part/serializers.py:987 +#: build/serializers.py:1480 part/serializers.py:872 msgid "External Stock" msgstr "" -#: build/serializers.py:1473 part/serializers.py:1300 part/serializers.py:1808 +#: build/serializers.py:1481 part/serializers.py:1165 part/serializers.py:1673 msgid "Available Stock" msgstr "" -#: build/serializers.py:1475 +#: build/serializers.py:1483 msgid "Available Substitute Stock" msgstr "" -#: build/serializers.py:1478 +#: build/serializers.py:1486 msgid "Available Variant Stock" msgstr "" -#: build/serializers.py:1752 +#: build/serializers.py:1760 msgid "Consumed quantity exceeds allocated quantity" msgstr "" -#: build/serializers.py:1789 +#: build/serializers.py:1797 msgid "Optional notes for the stock consumption" msgstr "" -#: build/serializers.py:1806 +#: build/serializers.py:1814 msgid "Build item must point to the correct build order" msgstr "" -#: build/serializers.py:1811 +#: build/serializers.py:1819 msgid "Duplicate build item allocation" msgstr "" -#: build/serializers.py:1829 +#: build/serializers.py:1837 msgid "Build line must point to the correct build order" msgstr "" -#: build/serializers.py:1834 +#: build/serializers.py:1842 msgid "Duplicate build line allocation" msgstr "" -#: build/serializers.py:1846 +#: build/serializers.py:1854 msgid "At least one item or line must be provided" msgstr "" @@ -1482,702 +1498,826 @@ msgstr "" msgid "Build order {bo} is now overdue" msgstr "" -#: common/api.py:694 +#: common/api.py:701 msgid "Is Link" msgstr "" -#: common/api.py:702 +#: common/api.py:709 msgid "Is File" msgstr "" -#: common/api.py:745 +#: common/api.py:756 msgid "User does not have permission to delete these attachments" msgstr "" -#: common/api.py:762 +#: common/api.py:769 msgid "User does not have permission to delete this attachment" msgstr "" -#: common/currency.py:122 +#: common/currency.py:130 msgid "Invalid currency code" msgstr "" -#: common/currency.py:124 +#: common/currency.py:132 msgid "Duplicate currency code" msgstr "" -#: common/currency.py:129 +#: common/currency.py:137 msgid "No valid currency codes provided" msgstr "" -#: common/currency.py:146 +#: common/currency.py:154 msgid "No plugin" msgstr "" -#: common/models.py:101 common/models.py:126 common/models.py:2729 +#: common/models.py:105 common/models.py:130 common/models.py:3150 msgid "Updated" msgstr "" -#: common/models.py:102 common/models.py:127 +#: common/models.py:106 common/models.py:131 msgid "Timestamp of last update" msgstr "" -#: common/models.py:139 +#: common/models.py:143 msgid "Update By" msgstr "" -#: common/models.py:140 +#: common/models.py:144 msgid "User who last updated this object" msgstr "" -#: common/models.py:165 +#: common/models.py:169 msgid "Unique project code" msgstr "" -#: common/models.py:172 +#: common/models.py:176 msgid "Project description" msgstr "" -#: common/models.py:181 +#: common/models.py:185 msgid "User or group responsible for this project" msgstr "" -#: common/models.py:771 common/models.py:1272 common/models.py:1310 +#: common/models.py:775 common/models.py:1276 common/models.py:1314 msgid "Settings key" msgstr "" -#: common/models.py:775 +#: common/models.py:779 msgid "Settings value" msgstr "" -#: common/models.py:830 +#: common/models.py:834 msgid "Chosen value is not a valid option" msgstr "" -#: common/models.py:846 +#: common/models.py:850 msgid "Value must be a boolean value" msgstr "" -#: common/models.py:854 +#: common/models.py:858 msgid "Value must be an integer value" msgstr "" -#: common/models.py:862 +#: common/models.py:866 msgid "Value must be a valid number" msgstr "" -#: common/models.py:887 +#: common/models.py:891 msgid "Value does not pass validation checks" msgstr "" -#: common/models.py:909 +#: common/models.py:913 msgid "Key string must be unique" msgstr "" -#: common/models.py:1318 common/models.py:1319 common/models.py:1423 -#: common/models.py:1424 common/models.py:1669 common/models.py:1670 -#: common/models.py:2000 common/models.py:2001 common/models.py:2382 -#: importer/models.py:100 part/models.py:3547 part/models.py:3575 +#: common/models.py:1322 common/models.py:1323 common/models.py:1427 +#: common/models.py:1428 common/models.py:1673 common/models.py:1674 +#: common/models.py:2006 common/models.py:2007 common/models.py:2803 +#: importer/models.py:100 part/models.py:3611 part/models.py:3639 #: plugin/models.py:355 plugin/models.py:356 #: report/templates/report/inventree_test_report.html:105 users/models.py:124 #: users/models.py:501 msgid "User" msgstr "" -#: common/models.py:1341 +#: common/models.py:1345 msgid "Price break quantity" msgstr "" -#: common/models.py:1348 company/serializers.py:564 order/models.py:1842 -#: order/models.py:3043 +#: common/models.py:1352 company/serializers.py:349 order/models.py:1843 +#: order/models.py:3044 msgid "Price" msgstr "" -#: common/models.py:1349 +#: common/models.py:1353 msgid "Unit price at specified quantity" msgstr "" -#: common/models.py:1400 common/models.py:1585 +#: common/models.py:1404 common/models.py:1589 msgid "Endpoint" msgstr "" -#: common/models.py:1401 +#: common/models.py:1405 msgid "Endpoint at which this webhook is received" msgstr "" -#: common/models.py:1411 +#: common/models.py:1415 msgid "Name for this webhook" msgstr "" -#: common/models.py:1415 common/models.py:2241 common/models.py:2348 -#: company/models.py:191 company/models.py:822 machine/models.py:40 -#: part/models.py:1237 plugin/models.py:69 stock/api.py:642 users/models.py:195 +#: common/models.py:1419 common/models.py:2247 common/models.py:2354 +#: company/models.py:192 company/models.py:776 machine/models.py:40 +#: part/models.py:1325 plugin/models.py:69 stock/api.py:642 users/models.py:195 #: users/models.py:554 users/serializers.py:314 msgid "Active" msgstr "" -#: common/models.py:1415 +#: common/models.py:1419 msgid "Is this webhook active" msgstr "" -#: common/models.py:1431 users/models.py:172 +#: common/models.py:1435 users/models.py:172 msgid "Token" msgstr "" -#: common/models.py:1432 +#: common/models.py:1436 msgid "Token for access" msgstr "" -#: common/models.py:1440 +#: common/models.py:1444 msgid "Secret" msgstr "" -#: common/models.py:1441 +#: common/models.py:1445 msgid "Shared secret for HMAC" msgstr "" -#: common/models.py:1549 common/models.py:2619 +#: common/models.py:1553 common/models.py:3040 msgid "Message ID" msgstr "" -#: common/models.py:1550 common/models.py:2609 +#: common/models.py:1554 common/models.py:3030 msgid "Unique identifier for this message" msgstr "" -#: common/models.py:1558 +#: common/models.py:1562 msgid "Host" msgstr "" -#: common/models.py:1559 +#: common/models.py:1563 msgid "Host from which this message was received" msgstr "" -#: common/models.py:1567 +#: common/models.py:1571 msgid "Header" msgstr "" -#: common/models.py:1568 +#: common/models.py:1572 msgid "Header of this message" msgstr "" -#: common/models.py:1575 +#: common/models.py:1579 msgid "Body" msgstr "" -#: common/models.py:1576 +#: common/models.py:1580 msgid "Body of this message" msgstr "" -#: common/models.py:1586 +#: common/models.py:1590 msgid "Endpoint on which this message was received" msgstr "" -#: common/models.py:1591 +#: common/models.py:1595 msgid "Worked on" msgstr "" -#: common/models.py:1592 +#: common/models.py:1596 msgid "Was the work on this message finished?" msgstr "" -#: common/models.py:1718 +#: common/models.py:1722 msgid "Id" msgstr "" -#: common/models.py:1720 +#: common/models.py:1724 msgid "Title" msgstr "" -#: common/models.py:1722 common/models.py:1983 company/models.py:185 -#: company/models.py:467 company/models.py:534 company/models.py:839 -#: order/models.py:457 order/models.py:1786 order/models.py:2343 -#: part/models.py:1113 +#: common/models.py:1726 common/models.py:1989 company/models.py:186 +#: company/models.py:468 company/models.py:536 company/models.py:793 +#: order/models.py:458 order/models.py:1787 order/models.py:2344 +#: part/models.py:1201 #: report/templates/report/inventree_build_order_report.html:164 msgid "Link" msgstr "" -#: common/models.py:1724 +#: common/models.py:1728 msgid "Published" msgstr "" -#: common/models.py:1726 +#: common/models.py:1730 msgid "Author" msgstr "" -#: common/models.py:1728 +#: common/models.py:1732 msgid "Summary" msgstr "" -#: common/models.py:1731 common/models.py:2586 +#: common/models.py:1735 common/models.py:3007 msgid "Read" msgstr "" -#: common/models.py:1731 +#: common/models.py:1735 msgid "Was this news item read?" msgstr "" -#: common/models.py:1748 +#: common/models.py:1752 msgid "Image file" msgstr "" -#: common/models.py:1760 +#: common/models.py:1764 msgid "Target model type for this image" msgstr "" -#: common/models.py:1764 +#: common/models.py:1768 msgid "Target model ID for this image" msgstr "" -#: common/models.py:1786 +#: common/models.py:1790 msgid "Custom Unit" msgstr "" -#: common/models.py:1804 +#: common/models.py:1808 msgid "Unit symbol must be unique" msgstr "" -#: common/models.py:1819 +#: common/models.py:1823 msgid "Unit name must be a valid identifier" msgstr "" -#: common/models.py:1838 +#: common/models.py:1842 msgid "Unit name" msgstr "" -#: common/models.py:1845 +#: common/models.py:1849 msgid "Symbol" msgstr "" -#: common/models.py:1846 +#: common/models.py:1850 msgid "Optional unit symbol" msgstr "" -#: common/models.py:1852 +#: common/models.py:1856 msgid "Definition" msgstr "" -#: common/models.py:1853 +#: common/models.py:1857 msgid "Unit definition" msgstr "" -#: common/models.py:1911 common/models.py:1974 stock/models.py:2967 +#: common/models.py:1917 common/models.py:1980 stock/models.py:2984 #: stock/serializers.py:247 msgid "Attachment" msgstr "" -#: common/models.py:1928 +#: common/models.py:1934 msgid "Missing file" msgstr "" -#: common/models.py:1929 +#: common/models.py:1935 msgid "Missing external link" msgstr "" -#: common/models.py:1966 +#: common/models.py:1972 common/models.py:2488 msgid "Model type" msgstr "" -#: common/models.py:1967 +#: common/models.py:1973 msgid "Target model type for image" msgstr "" -#: common/models.py:1975 +#: common/models.py:1981 msgid "Select file to attach" msgstr "" -#: common/models.py:1991 +#: common/models.py:1997 msgid "Comment" msgstr "" -#: common/models.py:1992 +#: common/models.py:1998 msgid "Attachment comment" msgstr "" -#: common/models.py:2008 +#: common/models.py:2014 msgid "Upload date" msgstr "" -#: common/models.py:2009 +#: common/models.py:2015 msgid "Date the file was uploaded" msgstr "" -#: common/models.py:2013 +#: common/models.py:2019 msgid "File size" msgstr "" -#: common/models.py:2013 +#: common/models.py:2019 msgid "File size in bytes" msgstr "" -#: common/models.py:2051 common/serializers.py:684 +#: common/models.py:2057 common/serializers.py:688 msgid "Invalid model type specified for attachment" msgstr "" -#: common/models.py:2072 +#: common/models.py:2078 msgid "Custom State" msgstr "" -#: common/models.py:2073 +#: common/models.py:2079 msgid "Custom States" msgstr "" -#: common/models.py:2078 +#: common/models.py:2084 msgid "Reference Status Set" msgstr "" -#: common/models.py:2079 +#: common/models.py:2085 msgid "Status set that is extended with this custom state" msgstr "" -#: common/models.py:2083 generic/states/serializers.py:18 +#: common/models.py:2089 generic/states/serializers.py:18 msgid "Logical Key" msgstr "" -#: common/models.py:2085 +#: common/models.py:2091 msgid "State logical key that is equal to this custom state in business logic" msgstr "" -#: common/models.py:2090 common/models.py:2329 company/models.py:622 -#: machine/serializers.py:27 -#: report/templates/report/inventree_test_report.html:104 stock/models.py:2959 +#: common/models.py:2096 common/models.py:2335 machine/serializers.py:27 +#: report/templates/report/inventree_test_report.html:104 stock/models.py:2976 msgid "Value" msgstr "" -#: common/models.py:2091 +#: common/models.py:2097 msgid "Numerical value that will be saved in the models database" msgstr "" -#: common/models.py:2097 +#: common/models.py:2103 msgid "Name of the state" msgstr "" -#: common/models.py:2106 common/models.py:2335 generic/states/serializers.py:22 +#: common/models.py:2112 common/models.py:2341 generic/states/serializers.py:22 msgid "Label" msgstr "" -#: common/models.py:2107 +#: common/models.py:2113 msgid "Label that will be displayed in the frontend" msgstr "" -#: common/models.py:2114 generic/states/serializers.py:24 +#: common/models.py:2120 generic/states/serializers.py:24 msgid "Color" msgstr "" -#: common/models.py:2115 +#: common/models.py:2121 msgid "Color that will be displayed in the frontend" msgstr "" -#: common/models.py:2123 +#: common/models.py:2129 msgid "Model" msgstr "" -#: common/models.py:2124 +#: common/models.py:2130 msgid "Model this state is associated with" msgstr "" -#: common/models.py:2139 +#: common/models.py:2145 msgid "Model must be selected" msgstr "" -#: common/models.py:2142 +#: common/models.py:2148 msgid "Key must be selected" msgstr "" -#: common/models.py:2145 +#: common/models.py:2151 msgid "Logical key must be selected" msgstr "" -#: common/models.py:2149 +#: common/models.py:2155 msgid "Key must be different from logical key" msgstr "" -#: common/models.py:2156 +#: common/models.py:2162 msgid "Valid reference status class must be provided" msgstr "" -#: common/models.py:2162 +#: common/models.py:2168 msgid "Key must be different from the logical keys of the reference status" msgstr "" -#: common/models.py:2169 +#: common/models.py:2175 msgid "Logical key must be in the logical keys of the reference status" msgstr "" -#: common/models.py:2176 +#: common/models.py:2182 msgid "Name must be different from the names of the reference status" msgstr "" -#: common/models.py:2216 common/models.py:2323 part/models.py:3889 +#: common/models.py:2222 common/models.py:2329 common/models.py:2533 msgid "Selection List" msgstr "" -#: common/models.py:2217 +#: common/models.py:2223 msgid "Selection Lists" msgstr "" -#: common/models.py:2222 +#: common/models.py:2228 msgid "Name of the selection list" msgstr "" -#: common/models.py:2229 +#: common/models.py:2235 msgid "Description of the selection list" msgstr "" -#: common/models.py:2235 part/models.py:1242 +#: common/models.py:2241 part/models.py:1330 msgid "Locked" msgstr "" -#: common/models.py:2236 +#: common/models.py:2242 msgid "Is this selection list locked?" msgstr "" -#: common/models.py:2242 +#: common/models.py:2248 msgid "Can this selection list be used?" msgstr "" -#: common/models.py:2250 +#: common/models.py:2256 msgid "Source Plugin" msgstr "" -#: common/models.py:2251 +#: common/models.py:2257 msgid "Plugin which provides the selection list" msgstr "" -#: common/models.py:2256 +#: common/models.py:2262 msgid "Source String" msgstr "" -#: common/models.py:2257 +#: common/models.py:2263 msgid "Optional string identifying the source used for this list" msgstr "" -#: common/models.py:2266 +#: common/models.py:2272 msgid "Default Entry" msgstr "" -#: common/models.py:2267 +#: common/models.py:2273 msgid "Default entry for this selection list" msgstr "" -#: common/models.py:2272 common/models.py:2724 +#: common/models.py:2278 common/models.py:3145 msgid "Created" msgstr "" -#: common/models.py:2273 +#: common/models.py:2279 msgid "Date and time that the selection list was created" msgstr "" -#: common/models.py:2278 +#: common/models.py:2284 msgid "Last Updated" msgstr "" -#: common/models.py:2279 +#: common/models.py:2285 msgid "Date and time that the selection list was last updated" msgstr "" -#: common/models.py:2313 +#: common/models.py:2319 msgid "Selection List Entry" msgstr "" -#: common/models.py:2314 +#: common/models.py:2320 msgid "Selection List Entries" msgstr "" -#: common/models.py:2324 +#: common/models.py:2330 msgid "Selection list to which this entry belongs" msgstr "" -#: common/models.py:2330 +#: common/models.py:2336 msgid "Value of the selection list entry" msgstr "" -#: common/models.py:2336 +#: common/models.py:2342 msgid "Label for the selection list entry" msgstr "" -#: common/models.py:2342 +#: common/models.py:2348 msgid "Description of the selection list entry" msgstr "" -#: common/models.py:2349 +#: common/models.py:2355 msgid "Is this selection list entry active?" msgstr "" -#: common/models.py:2367 -msgid "Barcode Scan" +#: common/models.py:2387 +msgid "Parameter Template" msgstr "" -#: common/models.py:2371 importer/models.py:546 part/models.py:4060 -msgid "Data" +#: common/models.py:2388 +msgid "Parameter Templates" msgstr "" -#: common/models.py:2372 -msgid "Barcode data" +#: common/models.py:2425 +msgid "Checkbox parameters cannot have units" msgstr "" -#: common/models.py:2383 -msgid "User who scanned the barcode" +#: common/models.py:2430 +msgid "Checkbox parameters cannot have choices" msgstr "" -#: common/models.py:2388 importer/models.py:69 -msgid "Timestamp" +#: common/models.py:2450 part/models.py:3707 +msgid "Choices must be unique" msgstr "" -#: common/models.py:2389 -msgid "Date and time of the barcode scan" +#: common/models.py:2467 +msgid "Parameter template name must be unique" msgstr "" -#: common/models.py:2395 -msgid "URL endpoint which processed the barcode" +#: common/models.py:2489 +msgid "Target model type for this parameter template" msgstr "" -#: common/models.py:2402 order/models.py:1832 plugin/serializers.py:93 -msgid "Context" +#: common/models.py:2495 +msgid "Parameter Name" msgstr "" -#: common/models.py:2403 -msgid "Context data for the barcode scan" +#: common/models.py:2501 part/models.py:1283 +msgid "Units" msgstr "" -#: common/models.py:2410 -msgid "Response" +#: common/models.py:2502 +msgid "Physical units for this parameter" msgstr "" -#: common/models.py:2411 -msgid "Response data from the barcode scan" +#: common/models.py:2510 +msgid "Parameter description" msgstr "" -#: common/models.py:2417 report/templates/report/inventree_test_report.html:103 -#: stock/models.py:2953 -msgid "Result" +#: common/models.py:2516 +msgid "Checkbox" msgstr "" -#: common/models.py:2418 -msgid "Was the barcode scan successful?" +#: common/models.py:2517 +msgid "Is this parameter a checkbox?" msgstr "" -#: common/models.py:2500 -msgid "An error occurred" +#: common/models.py:2522 part/models.py:3794 +msgid "Choices" msgstr "" -#: common/models.py:2521 -msgid "INVE-E8: Email log deletion is protected. Set INVENTREE_PROTECT_EMAIL_LOG to False to allow deletion." +#: common/models.py:2523 +msgid "Valid choices for this parameter (comma-separated)" msgstr "" -#: common/models.py:2568 -msgid "Email Message" +#: common/models.py:2534 +msgid "Selection list for this parameter" msgstr "" -#: common/models.py:2569 -msgid "Email Messages" +#: common/models.py:2539 part/models.py:3769 report/models.py:287 +msgid "Enabled" msgstr "" -#: common/models.py:2576 -msgid "Announced" +#: common/models.py:2540 +msgid "Is this parameter template enabled?" msgstr "" -#: common/models.py:2578 -msgid "Sent" -msgstr "" - -#: common/models.py:2579 -msgid "Failed" +#: common/models.py:2581 +msgid "Parameter" msgstr "" #: common/models.py:2582 -msgid "Delivered" -msgstr "" - -#: common/models.py:2590 -msgid "Confirmed" -msgstr "" - -#: common/models.py:2596 -msgid "Inbound" -msgstr "" - -#: common/models.py:2597 -msgid "Outbound" -msgstr "" - -#: common/models.py:2602 -msgid "No Reply" -msgstr "" - -#: common/models.py:2603 -msgid "Track Delivery" -msgstr "" - -#: common/models.py:2604 -msgid "Track Read" -msgstr "" - -#: common/models.py:2605 -msgid "Track Click" -msgstr "" - -#: common/models.py:2608 common/models.py:2711 -msgid "Global ID" -msgstr "" - -#: common/models.py:2621 -msgid "Identifier for this message (might be supplied by external system)" +msgid "Parameters" msgstr "" #: common/models.py:2628 +msgid "Invalid choice for parameter value" +msgstr "" + +#: common/models.py:2698 common/serializers.py:783 +msgid "Invalid model type specified for parameter" +msgstr "" + +#: common/models.py:2734 +msgid "Model ID" +msgstr "" + +#: common/models.py:2735 +msgid "ID of the target model for this parameter" +msgstr "" + +#: common/models.py:2744 common/setting/system.py:450 report/models.py:373 +#: report/models.py:669 report/serializers.py:94 report/serializers.py:135 +#: stock/serializers.py:234 +msgid "Template" +msgstr "" + +#: common/models.py:2745 +msgid "Parameter template" +msgstr "" + +#: common/models.py:2750 common/models.py:2792 importer/models.py:546 +msgid "Data" +msgstr "" + +#: common/models.py:2751 +msgid "Parameter Value" +msgstr "" + +#: common/models.py:2760 company/models.py:810 order/serializers.py:894 +#: order/serializers.py:2064 part/models.py:4075 part/models.py:4444 +#: report/templates/report/inventree_bill_of_materials_report.html:140 +#: report/templates/report/inventree_purchase_order_report.html:39 +#: report/templates/report/inventree_return_order_report.html:27 +#: report/templates/report/inventree_sales_order_report.html:32 +#: report/templates/report/inventree_stock_location_report.html:105 +#: stock/serializers.py:813 +msgid "Note" +msgstr "" + +#: common/models.py:2761 stock/serializers.py:718 +msgid "Optional note field" +msgstr "" + +#: common/models.py:2788 +msgid "Barcode Scan" +msgstr "" + +#: common/models.py:2793 +msgid "Barcode data" +msgstr "" + +#: common/models.py:2804 +msgid "User who scanned the barcode" +msgstr "" + +#: common/models.py:2809 importer/models.py:69 +msgid "Timestamp" +msgstr "" + +#: common/models.py:2810 +msgid "Date and time of the barcode scan" +msgstr "" + +#: common/models.py:2816 +msgid "URL endpoint which processed the barcode" +msgstr "" + +#: common/models.py:2823 order/models.py:1833 plugin/serializers.py:93 +msgid "Context" +msgstr "" + +#: common/models.py:2824 +msgid "Context data for the barcode scan" +msgstr "" + +#: common/models.py:2831 +msgid "Response" +msgstr "" + +#: common/models.py:2832 +msgid "Response data from the barcode scan" +msgstr "" + +#: common/models.py:2838 report/templates/report/inventree_test_report.html:103 +#: stock/models.py:2970 +msgid "Result" +msgstr "" + +#: common/models.py:2839 +msgid "Was the barcode scan successful?" +msgstr "" + +#: common/models.py:2921 +msgid "An error occurred" +msgstr "" + +#: common/models.py:2942 +msgid "INVE-E8: Email log deletion is protected. Set INVENTREE_PROTECT_EMAIL_LOG to False to allow deletion." +msgstr "" + +#: common/models.py:2989 +msgid "Email Message" +msgstr "" + +#: common/models.py:2990 +msgid "Email Messages" +msgstr "" + +#: common/models.py:2997 +msgid "Announced" +msgstr "" + +#: common/models.py:2999 +msgid "Sent" +msgstr "" + +#: common/models.py:3000 +msgid "Failed" +msgstr "" + +#: common/models.py:3003 +msgid "Delivered" +msgstr "" + +#: common/models.py:3011 +msgid "Confirmed" +msgstr "" + +#: common/models.py:3017 +msgid "Inbound" +msgstr "" + +#: common/models.py:3018 +msgid "Outbound" +msgstr "" + +#: common/models.py:3023 +msgid "No Reply" +msgstr "" + +#: common/models.py:3024 +msgid "Track Delivery" +msgstr "" + +#: common/models.py:3025 +msgid "Track Read" +msgstr "" + +#: common/models.py:3026 +msgid "Track Click" +msgstr "" + +#: common/models.py:3029 common/models.py:3132 +msgid "Global ID" +msgstr "" + +#: common/models.py:3042 +msgid "Identifier for this message (might be supplied by external system)" +msgstr "" + +#: common/models.py:3049 msgid "Thread ID" msgstr "" -#: common/models.py:2630 +#: common/models.py:3051 msgid "Identifier for this message thread (might be supplied by external system)" msgstr "" -#: common/models.py:2639 +#: common/models.py:3060 msgid "Thread" msgstr "" -#: common/models.py:2640 +#: common/models.py:3061 msgid "Linked thread for this message" msgstr "" -#: common/models.py:2656 -msgid "Prioriy" +#: common/models.py:3077 +msgid "Priority" msgstr "" -#: common/models.py:2698 +#: common/models.py:3119 msgid "Email Thread" msgstr "" -#: common/models.py:2699 +#: common/models.py:3120 msgid "Email Threads" msgstr "" -#: common/models.py:2705 generic/states/serializers.py:16 +#: common/models.py:3126 generic/states/serializers.py:16 #: machine/serializers.py:24 plugin/models.py:46 users/models.py:113 msgid "Key" msgstr "" -#: common/models.py:2708 +#: common/models.py:3129 msgid "Unique key for this thread (used to identify the thread)" msgstr "" -#: common/models.py:2712 +#: common/models.py:3133 msgid "Unique identifier for this thread" msgstr "" -#: common/models.py:2719 +#: common/models.py:3140 msgid "Started Internal" msgstr "" -#: common/models.py:2720 +#: common/models.py:3141 msgid "Was this thread started internally?" msgstr "" -#: common/models.py:2725 +#: common/models.py:3146 msgid "Date and time that the thread was created" msgstr "" -#: common/models.py:2730 +#: common/models.py:3151 msgid "Date and time that the thread was last updated" msgstr "" @@ -2199,7 +2339,7 @@ msgstr "" msgid "A order that is assigned to you was canceled" msgstr "" -#: common/notifications.py:73 common/notifications.py:80 order/api.py:594 +#: common/notifications.py:73 common/notifications.py:80 order/api.py:600 msgid "Items Received" msgstr "" @@ -2211,88 +2351,93 @@ msgstr "" msgid "Items have been received against a return order" msgstr "" -#: common/serializers.py:145 +#: common/serializers.py:149 msgid "Indicates if the setting is overridden by an environment variable" msgstr "" -#: common/serializers.py:147 +#: common/serializers.py:151 msgid "Override" msgstr "" -#: common/serializers.py:498 +#: common/serializers.py:502 msgid "Is Running" msgstr "" -#: common/serializers.py:504 +#: common/serializers.py:508 msgid "Pending Tasks" msgstr "" -#: common/serializers.py:510 +#: common/serializers.py:514 msgid "Scheduled Tasks" msgstr "" -#: common/serializers.py:516 +#: common/serializers.py:520 msgid "Failed Tasks" msgstr "" -#: common/serializers.py:531 +#: common/serializers.py:535 msgid "Task ID" msgstr "" -#: common/serializers.py:531 +#: common/serializers.py:535 msgid "Unique task ID" msgstr "" -#: common/serializers.py:533 +#: common/serializers.py:537 msgid "Lock" msgstr "" -#: common/serializers.py:533 +#: common/serializers.py:537 msgid "Lock time" msgstr "" -#: common/serializers.py:535 +#: common/serializers.py:539 msgid "Task name" msgstr "" -#: common/serializers.py:537 +#: common/serializers.py:541 msgid "Function" msgstr "" -#: common/serializers.py:537 +#: common/serializers.py:541 msgid "Function name" msgstr "" -#: common/serializers.py:539 +#: common/serializers.py:543 msgid "Arguments" msgstr "" -#: common/serializers.py:539 +#: common/serializers.py:543 msgid "Task arguments" msgstr "" -#: common/serializers.py:542 +#: common/serializers.py:546 msgid "Keyword Arguments" msgstr "" -#: common/serializers.py:542 +#: common/serializers.py:546 msgid "Task keyword arguments" msgstr "" -#: common/serializers.py:652 +#: common/serializers.py:656 msgid "Filename" msgstr "" -#: common/serializers.py:659 importer/models.py:89 report/api.py:41 +#: common/serializers.py:663 common/serializers.py:730 +#: common/serializers.py:805 importer/models.py:89 report/api.py:41 #: report/models.py:293 report/serializers.py:52 msgid "Model Type" msgstr "" -#: common/serializers.py:687 +#: common/serializers.py:691 msgid "User does not have permission to create or edit attachments for this model" msgstr "" -#: common/serializers.py:731 common/serializers.py:834 +#: common/serializers.py:786 +msgid "User does not have permission to create or edit parameters for this model" +msgstr "" + +#: common/serializers.py:850 common/serializers.py:953 msgid "Selection list is locked" msgstr "" @@ -2368,7 +2513,7 @@ msgstr "" msgid "Show the `about` modal only to superusers" msgstr "" -#: common/setting/system.py:224 company/models.py:144 company/models.py:145 +#: common/setting/system.py:224 company/models.py:145 company/models.py:146 msgid "Company name" msgstr "" @@ -2411,8 +2556,8 @@ msgstr "" #: common/setting/system.py:253 common/setting/system.py:293 #: common/setting/system.py:306 common/setting/system.py:314 #: common/setting/system.py:321 common/setting/system.py:330 -#: common/setting/system.py:339 common/setting/system.py:588 -#: common/setting/system.py:616 common/setting/system.py:707 +#: common/setting/system.py:339 common/setting/system.py:580 +#: common/setting/system.py:608 common/setting/system.py:707 #: common/setting/system.py:1103 common/setting/system.py:1119 msgid "days" msgstr "" @@ -2657,12 +2802,6 @@ msgstr "" msgid "Copy category parameter templates when creating a part" msgstr "" -#: common/setting/system.py:450 part/models.py:4054 report/models.py:373 -#: report/models.py:669 report/serializers.py:94 report/serializers.py:135 -#: stock/serializers.py:234 -msgid "Template" -msgstr "" - #: common/setting/system.py:451 msgid "Parts are templates by default" msgstr "" @@ -2671,8 +2810,8 @@ msgstr "" msgid "Parts can be assembled from other components by default" msgstr "" -#: common/setting/system.py:462 part/models.py:1208 part/serializers.py:1734 -#: part/serializers.py:1741 +#: common/setting/system.py:462 part/models.py:1296 part/serializers.py:1599 +#: part/serializers.py:1606 msgid "Component" msgstr "" @@ -2680,7 +2819,7 @@ msgstr "" msgid "Parts can be used as sub-components by default" msgstr "" -#: common/setting/system.py:468 part/models.py:1226 +#: common/setting/system.py:468 part/models.py:1314 msgid "Purchaseable" msgstr "" @@ -2688,7 +2827,7 @@ msgstr "" msgid "Parts are purchaseable by default" msgstr "" -#: common/setting/system.py:474 part/models.py:1232 stock/api.py:643 +#: common/setting/system.py:474 part/models.py:1320 stock/api.py:643 msgid "Salable" msgstr "" @@ -2700,7 +2839,7 @@ msgstr "" msgid "Parts are trackable by default" msgstr "" -#: common/setting/system.py:486 part/models.py:1248 +#: common/setting/system.py:486 part/models.py:1336 msgid "Virtual" msgstr "" @@ -2749,158 +2888,158 @@ msgid "Part category default icon (empty means no icon)" msgstr "" #: common/setting/system.py:525 -msgid "Enforce Parameter Units" -msgstr "" - -#: common/setting/system.py:527 -msgid "If units are provided, parameter values must match the specified units" -msgstr "" - -#: common/setting/system.py:533 msgid "Minimum Pricing Decimal Places" msgstr "" -#: common/setting/system.py:535 +#: common/setting/system.py:527 msgid "Minimum number of decimal places to display when rendering pricing data" msgstr "" -#: common/setting/system.py:546 +#: common/setting/system.py:538 msgid "Maximum Pricing Decimal Places" msgstr "" -#: common/setting/system.py:548 +#: common/setting/system.py:540 msgid "Maximum number of decimal places to display when rendering pricing data" msgstr "" -#: common/setting/system.py:559 +#: common/setting/system.py:551 msgid "Use Supplier Pricing" msgstr "" -#: common/setting/system.py:561 +#: common/setting/system.py:553 msgid "Include supplier price breaks in overall pricing calculations" msgstr "" -#: common/setting/system.py:567 +#: common/setting/system.py:559 msgid "Purchase History Override" msgstr "" -#: common/setting/system.py:569 +#: common/setting/system.py:561 msgid "Historical purchase order pricing overrides supplier price breaks" msgstr "" -#: common/setting/system.py:575 +#: common/setting/system.py:567 msgid "Use Stock Item Pricing" msgstr "" -#: common/setting/system.py:577 +#: common/setting/system.py:569 msgid "Use pricing from manually entered stock data for pricing calculations" msgstr "" -#: common/setting/system.py:583 +#: common/setting/system.py:575 msgid "Stock Item Pricing Age" msgstr "" -#: common/setting/system.py:585 +#: common/setting/system.py:577 msgid "Exclude stock items older than this number of days from pricing calculations" msgstr "" -#: common/setting/system.py:592 +#: common/setting/system.py:584 msgid "Use Variant Pricing" msgstr "" -#: common/setting/system.py:593 +#: common/setting/system.py:585 msgid "Include variant pricing in overall pricing calculations" msgstr "" -#: common/setting/system.py:598 +#: common/setting/system.py:590 msgid "Active Variants Only" msgstr "" -#: common/setting/system.py:600 +#: common/setting/system.py:592 msgid "Only use active variant parts for calculating variant pricing" msgstr "" -#: common/setting/system.py:606 +#: common/setting/system.py:598 msgid "Auto Update Pricing" msgstr "" -#: common/setting/system.py:608 +#: common/setting/system.py:600 msgid "Automatically update part pricing when internal data changes" msgstr "" -#: common/setting/system.py:614 +#: common/setting/system.py:606 msgid "Pricing Rebuild Interval" msgstr "" -#: common/setting/system.py:615 +#: common/setting/system.py:607 msgid "Number of days before part pricing is automatically updated" msgstr "" -#: common/setting/system.py:621 +#: common/setting/system.py:613 msgid "Internal Prices" msgstr "" -#: common/setting/system.py:622 +#: common/setting/system.py:614 msgid "Enable internal prices for parts" msgstr "" -#: common/setting/system.py:627 +#: common/setting/system.py:619 msgid "Internal Price Override" msgstr "" -#: common/setting/system.py:629 +#: common/setting/system.py:621 msgid "If available, internal prices override price range calculations" msgstr "" -#: common/setting/system.py:635 +#: common/setting/system.py:627 msgid "Enable label printing" msgstr "" -#: common/setting/system.py:636 +#: common/setting/system.py:628 msgid "Enable label printing from the web interface" msgstr "" -#: common/setting/system.py:641 +#: common/setting/system.py:633 msgid "Label Image DPI" msgstr "" -#: common/setting/system.py:643 +#: common/setting/system.py:635 msgid "DPI resolution when generating image files to supply to label printing plugins" msgstr "" -#: common/setting/system.py:649 +#: common/setting/system.py:641 msgid "Enable Reports" msgstr "" -#: common/setting/system.py:650 +#: common/setting/system.py:642 msgid "Enable generation of reports" msgstr "" -#: common/setting/system.py:655 +#: common/setting/system.py:647 msgid "Debug Mode" msgstr "" -#: common/setting/system.py:656 +#: common/setting/system.py:648 msgid "Generate reports in debug mode (HTML output)" msgstr "" -#: common/setting/system.py:661 +#: common/setting/system.py:653 msgid "Log Report Errors" msgstr "" -#: common/setting/system.py:662 +#: common/setting/system.py:654 msgid "Log errors which occur when generating reports" msgstr "" -#: common/setting/system.py:667 plugin/builtin/labels/label_sheet.py:29 +#: common/setting/system.py:659 plugin/builtin/labels/label_sheet.py:29 #: report/models.py:381 msgid "Page Size" msgstr "" -#: common/setting/system.py:668 +#: common/setting/system.py:660 msgid "Default page size for PDF reports" msgstr "" +#: common/setting/system.py:665 +msgid "Enforce Parameter Units" +msgstr "" + +#: common/setting/system.py:667 +msgid "If units are provided, parameter values must match the specified units" +msgstr "" + #: common/setting/system.py:673 msgid "Globally Unique Serials" msgstr "" @@ -3456,688 +3595,677 @@ msgid "Display PDF reports in the browser, instead of downloading as a file" msgstr "" #: common/setting/user.py:45 -msgid "Search Parts" +msgid "Barcode Scanner in Form Fields" msgstr "" #: common/setting/user.py:46 -msgid "Display parts in search preview window" +msgid "Allow barcode scanner input in form fields" msgstr "" #: common/setting/user.py:51 -msgid "Search Supplier Parts" +msgid "Search Parts" msgstr "" #: common/setting/user.py:52 -msgid "Display supplier parts in search preview window" +msgid "Display parts in search preview window" msgstr "" #: common/setting/user.py:57 -msgid "Search Manufacturer Parts" +msgid "Search Supplier Parts" msgstr "" #: common/setting/user.py:58 -msgid "Display manufacturer parts in search preview window" +msgid "Display supplier parts in search preview window" msgstr "" #: common/setting/user.py:63 -msgid "Hide Inactive Parts" +msgid "Search Manufacturer Parts" msgstr "" #: common/setting/user.py:64 -msgid "Excluded inactive parts from search preview window" +msgid "Display manufacturer parts in search preview window" msgstr "" #: common/setting/user.py:69 -msgid "Search Categories" +msgid "Hide Inactive Parts" msgstr "" #: common/setting/user.py:70 -msgid "Display part categories in search preview window" +msgid "Excluded inactive parts from search preview window" msgstr "" #: common/setting/user.py:75 -msgid "Search Stock" +msgid "Search Categories" msgstr "" #: common/setting/user.py:76 -msgid "Display stock items in search preview window" +msgid "Display part categories in search preview window" msgstr "" #: common/setting/user.py:81 +msgid "Search Stock" +msgstr "" + +#: common/setting/user.py:82 +msgid "Display stock items in search preview window" +msgstr "" + +#: common/setting/user.py:87 msgid "Hide Unavailable Stock Items" msgstr "" -#: common/setting/user.py:83 +#: common/setting/user.py:89 msgid "Exclude stock items which are not available from the search preview window" msgstr "" -#: common/setting/user.py:89 +#: common/setting/user.py:95 msgid "Search Locations" msgstr "" -#: common/setting/user.py:90 +#: common/setting/user.py:96 msgid "Display stock locations in search preview window" msgstr "" -#: common/setting/user.py:95 +#: common/setting/user.py:101 msgid "Search Companies" msgstr "" -#: common/setting/user.py:96 +#: common/setting/user.py:102 msgid "Display companies in search preview window" msgstr "" -#: common/setting/user.py:101 +#: common/setting/user.py:107 msgid "Search Build Orders" msgstr "" -#: common/setting/user.py:102 +#: common/setting/user.py:108 msgid "Display build orders in search preview window" msgstr "" -#: common/setting/user.py:107 +#: common/setting/user.py:113 msgid "Search Purchase Orders" msgstr "" -#: common/setting/user.py:108 +#: common/setting/user.py:114 msgid "Display purchase orders in search preview window" msgstr "" -#: common/setting/user.py:113 +#: common/setting/user.py:119 msgid "Exclude Inactive Purchase Orders" msgstr "" -#: common/setting/user.py:114 +#: common/setting/user.py:120 msgid "Exclude inactive purchase orders from search preview window" msgstr "" -#: common/setting/user.py:119 +#: common/setting/user.py:125 msgid "Search Sales Orders" msgstr "" -#: common/setting/user.py:120 +#: common/setting/user.py:126 msgid "Display sales orders in search preview window" msgstr "" -#: common/setting/user.py:125 +#: common/setting/user.py:131 msgid "Exclude Inactive Sales Orders" msgstr "" -#: common/setting/user.py:126 +#: common/setting/user.py:132 msgid "Exclude inactive sales orders from search preview window" msgstr "" -#: common/setting/user.py:131 +#: common/setting/user.py:137 msgid "Search Sales Order Shipments" msgstr "" -#: common/setting/user.py:132 +#: common/setting/user.py:138 msgid "Display sales order shipments in search preview window" msgstr "" -#: common/setting/user.py:137 +#: common/setting/user.py:143 msgid "Search Return Orders" msgstr "" -#: common/setting/user.py:138 +#: common/setting/user.py:144 msgid "Display return orders in search preview window" msgstr "" -#: common/setting/user.py:143 +#: common/setting/user.py:149 msgid "Exclude Inactive Return Orders" msgstr "" -#: common/setting/user.py:144 +#: common/setting/user.py:150 msgid "Exclude inactive return orders from search preview window" msgstr "" -#: common/setting/user.py:149 +#: common/setting/user.py:155 msgid "Search Preview Results" msgstr "" -#: common/setting/user.py:151 +#: common/setting/user.py:157 msgid "Number of results to show in each section of the search preview window" msgstr "" -#: common/setting/user.py:157 +#: common/setting/user.py:163 msgid "Regex Search" msgstr "" -#: common/setting/user.py:158 +#: common/setting/user.py:164 msgid "Enable regular expressions in search queries" msgstr "" -#: common/setting/user.py:163 +#: common/setting/user.py:169 msgid "Whole Word Search" msgstr "" -#: common/setting/user.py:164 +#: common/setting/user.py:170 msgid "Search queries return results for whole word matches" msgstr "" -#: common/setting/user.py:169 +#: common/setting/user.py:175 msgid "Search Notes" msgstr "" -#: common/setting/user.py:171 +#: common/setting/user.py:177 msgid "Search queries return results for matches from the item's notes" msgstr "" -#: common/setting/user.py:177 +#: common/setting/user.py:183 msgid "Escape Key Closes Forms" msgstr "" -#: common/setting/user.py:178 +#: common/setting/user.py:184 msgid "Use the escape key to close modal forms" msgstr "" -#: common/setting/user.py:183 +#: common/setting/user.py:189 msgid "Fixed Navbar" msgstr "" -#: common/setting/user.py:184 +#: common/setting/user.py:190 msgid "The navbar position is fixed to the top of the screen" msgstr "" -#: common/setting/user.py:189 +#: common/setting/user.py:195 msgid "Fixed Table Headers" msgstr "" -#: common/setting/user.py:190 +#: common/setting/user.py:196 msgid "Table headers are fixed to the top of the table" msgstr "" -#: common/setting/user.py:195 +#: common/setting/user.py:201 msgid "Show Spotlight" msgstr "" -#: common/setting/user.py:196 +#: common/setting/user.py:202 msgid "Enable spotlight navigation functionality" msgstr "" -#: common/setting/user.py:201 +#: common/setting/user.py:207 msgid "Navigation Icons" msgstr "" -#: common/setting/user.py:202 +#: common/setting/user.py:208 msgid "Display icons in the navigation bar" msgstr "" -#: common/setting/user.py:207 +#: common/setting/user.py:213 msgid "Date Format" msgstr "" -#: common/setting/user.py:208 +#: common/setting/user.py:214 msgid "Preferred format for displaying dates" msgstr "" -#: common/setting/user.py:221 +#: common/setting/user.py:227 msgid "Show Stock History" msgstr "" -#: common/setting/user.py:222 +#: common/setting/user.py:228 msgid "Display stock history information in the part detail page" msgstr "" -#: common/setting/user.py:227 +#: common/setting/user.py:233 msgid "Show Last Breadcrumb" msgstr "" -#: common/setting/user.py:228 +#: common/setting/user.py:234 msgid "Show the current page in breadcrumbs" msgstr "" -#: common/setting/user.py:233 +#: common/setting/user.py:239 msgid "Show full stock location in tables" msgstr "" -#: common/setting/user.py:235 +#: common/setting/user.py:241 msgid "Disabled: The full location path is displayed as a hover tooltip. Enabled: The full location path is displayed as plain text." msgstr "" -#: common/setting/user.py:241 +#: common/setting/user.py:247 msgid "Show full part categories in tables" msgstr "" -#: common/setting/user.py:243 +#: common/setting/user.py:249 msgid "Disabled: The full category path is displayed as a hover tooltip. Enabled: The full category path is displayed as plain text." msgstr "" -#: common/setting/user.py:249 +#: common/setting/user.py:255 msgid "Receive error reports" msgstr "" -#: common/setting/user.py:250 +#: common/setting/user.py:256 msgid "Receive notifications for system errors" msgstr "" -#: common/setting/user.py:255 +#: common/setting/user.py:261 msgid "Last used printing machines" msgstr "" -#: common/setting/user.py:256 +#: common/setting/user.py:262 msgid "Save the last used printing machines for a user" msgstr "" -#: common/validators.py:34 +#: common/validators.py:38 +msgid "All models" +msgstr "" + +#: common/validators.py:63 msgid "No attachment model type provided" msgstr "" -#: common/validators.py:40 +#: common/validators.py:69 msgid "Invalid attachment model type" msgstr "" -#: common/validators.py:81 +#: common/validators.py:110 msgid "Minimum places cannot be greater than maximum places" msgstr "" -#: common/validators.py:93 +#: common/validators.py:122 msgid "Maximum places cannot be less than minimum places" msgstr "" -#: common/validators.py:104 +#: common/validators.py:133 msgid "An empty domain is not allowed." msgstr "" -#: common/validators.py:106 +#: common/validators.py:135 #, python-brace-format msgid "Invalid domain name: {domain}" msgstr "" -#: common/validators.py:122 +#: common/validators.py:151 msgid "Value must be uppercase" msgstr "" -#: common/validators.py:128 +#: common/validators.py:157 msgid "Value must be a valid variable identifier" msgstr "" -#: company/api.py:147 +#: company/api.py:141 msgid "Part is Active" msgstr "" -#: company/api.py:151 +#: company/api.py:145 msgid "Manufacturer is Active" msgstr "" -#: company/api.py:286 +#: company/api.py:246 msgid "Supplier Part is Active" msgstr "" -#: company/api.py:290 +#: company/api.py:250 msgid "Internal Part is Active" msgstr "" -#: company/api.py:295 +#: company/api.py:255 msgid "Supplier is Active" msgstr "" -#: company/api.py:307 company/models.py:520 company/serializers.py:457 -#: part/serializers.py:566 +#: company/api.py:267 company/models.py:522 company/serializers.py:502 +#: part/serializers.py:477 msgid "Manufacturer" msgstr "" -#: company/api.py:314 company/models.py:121 company/models.py:392 +#: company/api.py:274 company/models.py:122 company/models.py:393 #: stock/api.py:900 msgid "Company" msgstr "" -#: company/api.py:324 +#: company/api.py:284 msgid "Has Stock" msgstr "" -#: company/models.py:122 +#: company/models.py:123 msgid "Companies" msgstr "" -#: company/models.py:150 +#: company/models.py:151 msgid "Company description" msgstr "" -#: company/models.py:151 +#: company/models.py:152 msgid "Description of the company" msgstr "" -#: company/models.py:157 +#: company/models.py:158 msgid "Website" msgstr "" -#: company/models.py:158 +#: company/models.py:159 msgid "Company website URL" msgstr "" -#: company/models.py:164 +#: company/models.py:165 msgid "Phone number" msgstr "" -#: company/models.py:166 +#: company/models.py:167 msgid "Contact phone number" msgstr "" -#: company/models.py:173 +#: company/models.py:174 msgid "Contact email address" msgstr "" -#: company/models.py:178 company/models.py:296 order/models.py:513 +#: company/models.py:179 company/models.py:297 order/models.py:514 #: users/models.py:561 msgid "Contact" msgstr "" -#: company/models.py:180 +#: company/models.py:181 msgid "Point of contact" msgstr "" -#: company/models.py:186 +#: company/models.py:187 msgid "Link to external company information" msgstr "" -#: company/models.py:191 +#: company/models.py:192 msgid "Is this company active?" msgstr "" -#: company/models.py:196 +#: company/models.py:197 msgid "Is customer" msgstr "" -#: company/models.py:197 +#: company/models.py:198 msgid "Do you sell items to this company?" msgstr "" -#: company/models.py:202 +#: company/models.py:203 msgid "Is supplier" msgstr "" -#: company/models.py:203 +#: company/models.py:204 msgid "Do you purchase items from this company?" msgstr "" -#: company/models.py:208 +#: company/models.py:209 msgid "Is manufacturer" msgstr "" -#: company/models.py:209 +#: company/models.py:210 msgid "Does this company manufacture parts?" msgstr "" -#: company/models.py:217 +#: company/models.py:218 msgid "Default currency used for this company" msgstr "" -#: company/models.py:224 +#: company/models.py:225 msgid "Tax ID" msgstr "" -#: company/models.py:225 +#: company/models.py:226 msgid "Company Tax ID" msgstr "" -#: company/models.py:335 order/models.py:523 order/models.py:2288 +#: company/models.py:336 order/models.py:524 order/models.py:2289 msgid "Address" msgstr "" -#: company/models.py:336 +#: company/models.py:337 msgid "Addresses" msgstr "" -#: company/models.py:393 +#: company/models.py:394 msgid "Select company" msgstr "" -#: company/models.py:398 +#: company/models.py:399 msgid "Address title" msgstr "" -#: company/models.py:399 +#: company/models.py:400 msgid "Title describing the address entry" msgstr "" -#: company/models.py:405 +#: company/models.py:406 msgid "Primary address" msgstr "" -#: company/models.py:406 +#: company/models.py:407 msgid "Set as primary address" msgstr "" -#: company/models.py:411 +#: company/models.py:412 msgid "Line 1" msgstr "" -#: company/models.py:412 +#: company/models.py:413 msgid "Address line 1" msgstr "" -#: company/models.py:418 +#: company/models.py:419 msgid "Line 2" msgstr "" -#: company/models.py:419 +#: company/models.py:420 msgid "Address line 2" msgstr "" -#: company/models.py:425 company/models.py:426 +#: company/models.py:426 company/models.py:427 msgid "Postal code" msgstr "" -#: company/models.py:432 +#: company/models.py:433 msgid "City/Region" msgstr "" -#: company/models.py:433 +#: company/models.py:434 msgid "Postal code city/region" msgstr "" -#: company/models.py:439 +#: company/models.py:440 msgid "State/Province" msgstr "" -#: company/models.py:440 +#: company/models.py:441 msgid "State or province" msgstr "" -#: company/models.py:446 +#: company/models.py:447 msgid "Country" msgstr "" -#: company/models.py:447 +#: company/models.py:448 msgid "Address country" msgstr "" -#: company/models.py:453 +#: company/models.py:454 msgid "Courier shipping notes" msgstr "" -#: company/models.py:454 +#: company/models.py:455 msgid "Notes for shipping courier" msgstr "" -#: company/models.py:460 +#: company/models.py:461 msgid "Internal shipping notes" msgstr "" -#: company/models.py:461 +#: company/models.py:462 msgid "Shipping notes for internal use" msgstr "" -#: company/models.py:468 +#: company/models.py:469 msgid "Link to address information (external)" msgstr "" -#: company/models.py:492 company/models.py:609 company/models.py:832 -#: company/serializers.py:471 stock/api.py:561 +#: company/models.py:494 company/models.py:786 company/serializers.py:516 +#: stock/api.py:561 msgid "Manufacturer Part" msgstr "" -#: company/models.py:509 company/models.py:800 stock/models.py:1025 +#: company/models.py:511 company/models.py:754 stock/models.py:1025 #: stock/serializers.py:407 msgid "Base Part" msgstr "" -#: company/models.py:511 company/models.py:802 +#: company/models.py:513 company/models.py:756 msgid "Select part" msgstr "" -#: company/models.py:521 +#: company/models.py:523 msgid "Select manufacturer" msgstr "" -#: company/models.py:527 company/serializers.py:479 order/serializers.py:734 -#: part/serializers.py:576 +#: company/models.py:529 company/serializers.py:524 order/serializers.py:745 +#: part/serializers.py:487 msgid "MPN" msgstr "" -#: company/models.py:528 stock/serializers.py:572 +#: company/models.py:530 stock/serializers.py:572 msgid "Manufacturer Part Number" msgstr "" -#: company/models.py:535 +#: company/models.py:537 msgid "URL for external manufacturer part link" msgstr "" -#: company/models.py:544 +#: company/models.py:546 msgid "Manufacturer part description" msgstr "" -#: company/models.py:597 -msgid "Manufacturer Part Parameter" -msgstr "" - -#: company/models.py:616 -msgid "Parameter name" -msgstr "" - -#: company/models.py:623 -msgid "Parameter value" -msgstr "" - -#: company/models.py:630 part/models.py:1195 part/models.py:3857 -msgid "Units" -msgstr "" - -#: company/models.py:631 -msgid "Parameter units" -msgstr "" - -#: company/models.py:740 +#: company/models.py:694 msgid "Pack units must be compatible with the base part units" msgstr "" -#: company/models.py:747 +#: company/models.py:701 msgid "Pack units must be greater than zero" msgstr "" -#: company/models.py:761 +#: company/models.py:715 msgid "Linked manufacturer part must reference the same base part" msgstr "" -#: company/models.py:810 company/serializers.py:449 company/serializers.py:467 -#: order/models.py:639 part/serializers.py:550 +#: company/models.py:764 company/serializers.py:494 company/serializers.py:512 +#: order/models.py:640 part/serializers.py:461 #: plugin/builtin/suppliers/digikey.py:26 plugin/builtin/suppliers/lcsc.py:27 #: plugin/builtin/suppliers/mouser.py:25 plugin/builtin/suppliers/tme.py:27 #: stock/api.py:567 templates/email/overdue_purchase_order.html:16 msgid "Supplier" msgstr "" -#: company/models.py:811 +#: company/models.py:765 msgid "Select supplier" msgstr "" -#: company/models.py:817 part/serializers.py:561 +#: company/models.py:771 part/serializers.py:472 msgid "Supplier stock keeping unit" msgstr "" -#: company/models.py:823 +#: company/models.py:777 msgid "Is this supplier part active?" msgstr "" -#: company/models.py:833 +#: company/models.py:787 msgid "Select manufacturer part" msgstr "" -#: company/models.py:840 +#: company/models.py:794 msgid "URL for external supplier part link" msgstr "" -#: company/models.py:849 +#: company/models.py:803 msgid "Supplier part description" msgstr "" -#: company/models.py:856 order/serializers.py:883 order/serializers.py:2047 -#: part/models.py:4070 part/models.py:4450 part/models.py:4819 -#: report/templates/report/inventree_bill_of_materials_report.html:140 -#: report/templates/report/inventree_purchase_order_report.html:39 -#: report/templates/report/inventree_return_order_report.html:27 -#: report/templates/report/inventree_sales_order_report.html:32 -#: report/templates/report/inventree_stock_location_report.html:105 -#: stock/serializers.py:813 -msgid "Note" -msgstr "" - -#: company/models.py:865 part/models.py:2250 +#: company/models.py:819 part/models.py:2338 msgid "base cost" msgstr "" -#: company/models.py:866 part/models.py:2251 +#: company/models.py:820 part/models.py:2339 msgid "Minimum charge (e.g. stocking fee)" msgstr "" -#: company/models.py:873 order/serializers.py:875 stock/models.py:1056 +#: company/models.py:827 order/serializers.py:886 stock/models.py:1056 #: stock/serializers.py:1606 msgid "Packaging" msgstr "" -#: company/models.py:874 +#: company/models.py:828 msgid "Part packaging" msgstr "" -#: company/models.py:879 +#: company/models.py:833 msgid "Pack Quantity" msgstr "" -#: company/models.py:881 +#: company/models.py:835 msgid "Total quantity supplied in a single pack. Leave empty for single items." msgstr "" -#: company/models.py:900 part/models.py:2257 +#: company/models.py:854 part/models.py:2345 msgid "multiple" msgstr "" -#: company/models.py:901 +#: company/models.py:855 msgid "Order multiple" msgstr "" -#: company/models.py:913 +#: company/models.py:867 msgid "Quantity available from supplier" msgstr "" -#: company/models.py:919 +#: company/models.py:873 msgid "Availability Updated" msgstr "" -#: company/models.py:920 +#: company/models.py:874 msgid "Date of last update of availability data" msgstr "" -#: company/models.py:1048 +#: company/models.py:1002 msgid "Supplier Price Break" msgstr "" -#: company/serializers.py:181 +#: company/serializers.py:184 +msgid "Primary Address" +msgstr "" + +#: company/serializers.py:186 msgid "Return the string representation for the primary address. This property exists for backwards compatibility." msgstr "" -#: company/serializers.py:212 +#: company/serializers.py:218 msgid "Default currency used for this supplier" msgstr "" -#: company/serializers.py:248 +#: company/serializers.py:260 msgid "Company Name" msgstr "" -#: company/serializers.py:433 part/serializers.py:955 stock/serializers.py:428 +#: company/serializers.py:460 part/serializers.py:840 stock/serializers.py:428 msgid "In Stock" msgstr "" +#: company/serializers.py:477 +msgid "Price Breaks" +msgstr "" + #: data_exporter/mixins.py:325 data_exporter/mixins.py:403 msgid "Error occurred during data export" msgstr "" @@ -4290,7 +4418,7 @@ msgstr "" msgid "Errors" msgstr "" -#: importer/models.py:550 part/serializers.py:1268 +#: importer/models.py:550 part/serializers.py:1133 msgid "Valid" msgstr "" @@ -4402,7 +4530,7 @@ msgstr "" msgid "Connected" msgstr "" -#: machine/machine_types/label_printer.py:232 order/api.py:1795 +#: machine/machine_types/label_printer.py:232 order/api.py:1800 msgid "Unknown" msgstr "" @@ -4530,105 +4658,105 @@ msgstr "" msgid "Maximum value for progress type, required if type=progress" msgstr "" -#: order/api.py:125 +#: order/api.py:130 msgid "Order Reference" msgstr "" -#: order/api.py:153 order/api.py:1207 +#: order/api.py:158 order/api.py:1212 msgid "Outstanding" msgstr "" -#: order/api.py:169 +#: order/api.py:174 msgid "Has Project Code" msgstr "" -#: order/api.py:183 order/models.py:488 +#: order/api.py:188 order/models.py:489 msgid "Created By" msgstr "" -#: order/api.py:187 +#: order/api.py:192 msgid "Created Before" msgstr "" -#: order/api.py:191 +#: order/api.py:196 msgid "Created After" msgstr "" -#: order/api.py:195 +#: order/api.py:200 msgid "Has Start Date" msgstr "" -#: order/api.py:203 +#: order/api.py:208 msgid "Start Date Before" msgstr "" -#: order/api.py:207 +#: order/api.py:212 msgid "Start Date After" msgstr "" -#: order/api.py:211 +#: order/api.py:216 msgid "Has Target Date" msgstr "" -#: order/api.py:219 +#: order/api.py:224 msgid "Target Date Before" msgstr "" -#: order/api.py:223 +#: order/api.py:228 msgid "Target Date After" msgstr "" -#: order/api.py:274 +#: order/api.py:279 msgid "Has Pricing" msgstr "" -#: order/api.py:327 order/api.py:812 order/api.py:1490 +#: order/api.py:332 order/api.py:818 order/api.py:1495 msgid "Completed Before" msgstr "" -#: order/api.py:331 order/api.py:816 order/api.py:1494 +#: order/api.py:336 order/api.py:822 order/api.py:1499 msgid "Completed After" msgstr "" -#: order/api.py:337 order/api.py:341 +#: order/api.py:342 order/api.py:346 msgid "External Build Order" msgstr "" -#: order/api.py:526 order/api.py:914 order/api.py:1170 order/models.py:1922 -#: order/models.py:2049 order/models.py:2099 order/models.py:2279 -#: order/models.py:2477 order/models.py:2999 order/models.py:3065 +#: order/api.py:532 order/api.py:919 order/api.py:1175 order/models.py:1923 +#: order/models.py:2050 order/models.py:2100 order/models.py:2280 +#: order/models.py:2478 order/models.py:3000 order/models.py:3066 msgid "Order" msgstr "" -#: order/api.py:530 order/api.py:982 +#: order/api.py:536 order/api.py:987 msgid "Order Complete" msgstr "" -#: order/api.py:562 order/api.py:566 order/serializers.py:745 +#: order/api.py:568 order/api.py:572 order/serializers.py:756 msgid "Internal Part" msgstr "" -#: order/api.py:584 +#: order/api.py:590 msgid "Order Pending" msgstr "" -#: order/api.py:967 +#: order/api.py:972 msgid "Completed" msgstr "" -#: order/api.py:1223 +#: order/api.py:1228 msgid "Has Shipment" msgstr "" -#: order/api.py:1789 order/models.py:552 order/models.py:1923 -#: order/models.py:2050 +#: order/api.py:1794 order/models.py:553 order/models.py:1924 +#: order/models.py:2051 #: report/templates/report/inventree_purchase_order_report.html:14 #: stock/serializers.py:129 templates/email/overdue_purchase_order.html:15 msgid "Purchase Order" msgstr "" -#: order/api.py:1791 order/models.py:1251 order/models.py:2100 -#: order/models.py:2280 order/models.py:2478 +#: order/api.py:1796 order/models.py:1252 order/models.py:2101 +#: order/models.py:2281 order/models.py:2479 #: report/templates/report/inventree_build_order_report.html:135 #: report/templates/report/inventree_sales_order_report.html:14 #: report/templates/report/inventree_sales_order_shipment_report.html:15 @@ -4636,8 +4764,8 @@ msgstr "" msgid "Sales Order" msgstr "" -#: order/api.py:1793 order/models.py:2649 order/models.py:3000 -#: order/models.py:3066 +#: order/api.py:1798 order/models.py:2650 order/models.py:3001 +#: order/models.py:3067 #: report/templates/report/inventree_return_order_report.html:13 #: templates/email/overdue_return_order.html:15 msgid "Return Order" @@ -4653,722 +4781,722 @@ msgstr "" msgid "Total price for this order" msgstr "" -#: order/models.py:96 order/serializers.py:77 +#: order/models.py:96 order/serializers.py:78 msgid "Order Currency" msgstr "" -#: order/models.py:99 order/serializers.py:78 +#: order/models.py:99 order/serializers.py:79 msgid "Currency for this order (leave blank to use company default)" msgstr "" -#: order/models.py:324 +#: order/models.py:325 msgid "This order is locked and cannot be modified" msgstr "" -#: order/models.py:376 +#: order/models.py:377 msgid "Contact does not match selected company" msgstr "" -#: order/models.py:383 +#: order/models.py:384 msgid "Start date must be before target date" msgstr "" -#: order/models.py:390 +#: order/models.py:391 msgid "Address does not match selected company" msgstr "" -#: order/models.py:443 +#: order/models.py:444 msgid "Order description (optional)" msgstr "" -#: order/models.py:452 order/models.py:1806 +#: order/models.py:453 order/models.py:1807 msgid "Select project code for this order" msgstr "" -#: order/models.py:458 order/models.py:1787 order/models.py:2344 +#: order/models.py:459 order/models.py:1788 order/models.py:2345 msgid "Link to external page" msgstr "" -#: order/models.py:465 +#: order/models.py:466 msgid "Start date" msgstr "" -#: order/models.py:466 +#: order/models.py:467 msgid "Scheduled start date for this order" msgstr "" -#: order/models.py:472 order/models.py:1794 order/serializers.py:309 +#: order/models.py:473 order/models.py:1795 order/serializers.py:317 #: report/templates/report/inventree_build_order_report.html:125 msgid "Target Date" msgstr "" -#: order/models.py:474 +#: order/models.py:475 msgid "Expected date for order delivery. Order will be overdue after this date." msgstr "" -#: order/models.py:494 +#: order/models.py:495 msgid "Issue Date" msgstr "" -#: order/models.py:495 +#: order/models.py:496 msgid "Date order was issued" msgstr "" -#: order/models.py:503 +#: order/models.py:504 msgid "User or group responsible for this order" msgstr "" -#: order/models.py:514 +#: order/models.py:515 msgid "Point of contact for this order" msgstr "" -#: order/models.py:524 +#: order/models.py:525 msgid "Company address for this order" msgstr "" -#: order/models.py:615 order/models.py:1312 +#: order/models.py:616 order/models.py:1313 msgid "Order reference" msgstr "" -#: order/models.py:624 order/models.py:1336 order/models.py:2737 +#: order/models.py:625 order/models.py:1337 order/models.py:2738 #: stock/serializers.py:559 stock/serializers.py:988 users/models.py:542 msgid "Status" msgstr "" -#: order/models.py:625 +#: order/models.py:626 msgid "Purchase order status" msgstr "" -#: order/models.py:640 +#: order/models.py:641 msgid "Company from which the items are being ordered" msgstr "" -#: order/models.py:651 +#: order/models.py:652 msgid "Supplier Reference" msgstr "" -#: order/models.py:652 +#: order/models.py:653 msgid "Supplier order reference code" msgstr "" -#: order/models.py:661 +#: order/models.py:662 msgid "received by" msgstr "" -#: order/models.py:668 order/models.py:2752 +#: order/models.py:669 order/models.py:2753 msgid "Date order was completed" msgstr "" -#: order/models.py:677 order/models.py:1981 +#: order/models.py:678 order/models.py:1982 msgid "Destination" msgstr "" -#: order/models.py:678 order/models.py:1985 +#: order/models.py:679 order/models.py:1986 msgid "Destination for received items" msgstr "" -#: order/models.py:724 +#: order/models.py:725 msgid "Part supplier must match PO supplier" msgstr "" -#: order/models.py:994 +#: order/models.py:995 msgid "Line item does not match purchase order" msgstr "" -#: order/models.py:997 +#: order/models.py:998 msgid "Line item is missing a linked part" msgstr "" -#: order/models.py:1011 +#: order/models.py:1012 msgid "Quantity must be a positive number" msgstr "" -#: order/models.py:1323 order/models.py:2724 stock/models.py:1078 +#: order/models.py:1324 order/models.py:2725 stock/models.py:1078 #: stock/models.py:1079 stock/serializers.py:1322 #: templates/email/overdue_return_order.html:16 #: templates/email/overdue_sales_order.html:16 msgid "Customer" msgstr "" -#: order/models.py:1324 +#: order/models.py:1325 msgid "Company to which the items are being sold" msgstr "" -#: order/models.py:1337 +#: order/models.py:1338 msgid "Sales order status" msgstr "" -#: order/models.py:1348 order/models.py:2744 +#: order/models.py:1349 order/models.py:2745 msgid "Customer Reference " msgstr "" -#: order/models.py:1349 order/models.py:2745 +#: order/models.py:1350 order/models.py:2746 msgid "Customer order reference code" msgstr "" -#: order/models.py:1353 order/models.py:2296 +#: order/models.py:1354 order/models.py:2297 msgid "Shipment Date" msgstr "" -#: order/models.py:1362 +#: order/models.py:1363 msgid "shipped by" msgstr "" -#: order/models.py:1413 +#: order/models.py:1414 msgid "Order is already complete" msgstr "" -#: order/models.py:1416 +#: order/models.py:1417 msgid "Order is already cancelled" msgstr "" -#: order/models.py:1420 +#: order/models.py:1421 msgid "Only an open order can be marked as complete" msgstr "" -#: order/models.py:1424 +#: order/models.py:1425 msgid "Order cannot be completed as there are incomplete shipments" msgstr "" -#: order/models.py:1429 +#: order/models.py:1430 msgid "Order cannot be completed as there are incomplete allocations" msgstr "" -#: order/models.py:1438 +#: order/models.py:1439 msgid "Order cannot be completed as there are incomplete line items" msgstr "" -#: order/models.py:1733 order/models.py:1749 +#: order/models.py:1734 order/models.py:1750 msgid "The order is locked and cannot be modified" msgstr "" -#: order/models.py:1757 +#: order/models.py:1758 msgid "Item quantity" msgstr "" -#: order/models.py:1774 +#: order/models.py:1775 msgid "Line item reference" msgstr "" -#: order/models.py:1781 +#: order/models.py:1782 msgid "Line item notes" msgstr "" -#: order/models.py:1796 +#: order/models.py:1797 msgid "Target date for this line item (leave blank to use the target date from the order)" msgstr "" -#: order/models.py:1826 +#: order/models.py:1827 msgid "Line item description (optional)" msgstr "" -#: order/models.py:1833 +#: order/models.py:1834 msgid "Additional context for this line" msgstr "" -#: order/models.py:1843 +#: order/models.py:1844 msgid "Unit price" msgstr "" -#: order/models.py:1862 +#: order/models.py:1863 msgid "Purchase Order Line Item" msgstr "" -#: order/models.py:1889 +#: order/models.py:1890 msgid "Supplier part must match supplier" msgstr "" -#: order/models.py:1894 +#: order/models.py:1895 msgid "Build order must be marked as external" msgstr "" -#: order/models.py:1901 +#: order/models.py:1902 msgid "Build orders can only be linked to assembly parts" msgstr "" -#: order/models.py:1907 +#: order/models.py:1908 msgid "Build order part must match line item part" msgstr "" -#: order/models.py:1942 +#: order/models.py:1943 msgid "Supplier part" msgstr "" -#: order/models.py:1949 +#: order/models.py:1950 msgid "Received" msgstr "" -#: order/models.py:1950 +#: order/models.py:1951 msgid "Number of items received" msgstr "" -#: order/models.py:1958 stock/models.py:1201 stock/serializers.py:637 +#: order/models.py:1959 stock/models.py:1201 stock/serializers.py:637 msgid "Purchase Price" msgstr "" -#: order/models.py:1959 +#: order/models.py:1960 msgid "Unit purchase price" msgstr "" -#: order/models.py:1975 +#: order/models.py:1976 msgid "External Build Order to be fulfilled by this line item" msgstr "" -#: order/models.py:2038 +#: order/models.py:2039 msgid "Purchase Order Extra Line" msgstr "" -#: order/models.py:2067 +#: order/models.py:2068 msgid "Sales Order Line Item" msgstr "" -#: order/models.py:2092 +#: order/models.py:2093 msgid "Only salable parts can be assigned to a sales order" msgstr "" -#: order/models.py:2118 +#: order/models.py:2119 msgid "Sale Price" msgstr "" -#: order/models.py:2119 +#: order/models.py:2120 msgid "Unit sale price" msgstr "" -#: order/models.py:2128 order/status_codes.py:50 +#: order/models.py:2129 order/status_codes.py:50 msgid "Shipped" msgstr "" -#: order/models.py:2129 +#: order/models.py:2130 msgid "Shipped quantity" msgstr "" -#: order/models.py:2240 +#: order/models.py:2241 msgid "Sales Order Shipment" msgstr "" -#: order/models.py:2253 +#: order/models.py:2254 msgid "Shipment address must match the customer" msgstr "" -#: order/models.py:2289 +#: order/models.py:2290 msgid "Shipping address for this shipment" msgstr "" -#: order/models.py:2297 +#: order/models.py:2298 msgid "Date of shipment" msgstr "" -#: order/models.py:2303 +#: order/models.py:2304 msgid "Delivery Date" msgstr "" -#: order/models.py:2304 +#: order/models.py:2305 msgid "Date of delivery of shipment" msgstr "" -#: order/models.py:2312 +#: order/models.py:2313 msgid "Checked By" msgstr "" -#: order/models.py:2313 +#: order/models.py:2314 msgid "User who checked this shipment" msgstr "" -#: order/models.py:2320 order/models.py:2574 order/serializers.py:1711 -#: order/serializers.py:1835 +#: order/models.py:2321 order/models.py:2575 order/serializers.py:1725 +#: order/serializers.py:1849 #: report/templates/report/inventree_sales_order_shipment_report.html:14 msgid "Shipment" msgstr "" -#: order/models.py:2321 +#: order/models.py:2322 msgid "Shipment number" msgstr "" -#: order/models.py:2329 +#: order/models.py:2330 msgid "Tracking Number" msgstr "" -#: order/models.py:2330 +#: order/models.py:2331 msgid "Shipment tracking information" msgstr "" -#: order/models.py:2337 +#: order/models.py:2338 msgid "Invoice Number" msgstr "" -#: order/models.py:2338 +#: order/models.py:2339 msgid "Reference number for associated invoice" msgstr "" -#: order/models.py:2377 +#: order/models.py:2378 msgid "Shipment has already been sent" msgstr "" -#: order/models.py:2380 +#: order/models.py:2381 msgid "Shipment has no allocated stock items" msgstr "" -#: order/models.py:2387 +#: order/models.py:2388 msgid "Shipment must be checked before it can be completed" msgstr "" -#: order/models.py:2466 +#: order/models.py:2467 msgid "Sales Order Extra Line" msgstr "" -#: order/models.py:2495 +#: order/models.py:2496 msgid "Sales Order Allocation" msgstr "" -#: order/models.py:2518 order/models.py:2520 +#: order/models.py:2519 order/models.py:2521 msgid "Stock item has not been assigned" msgstr "" -#: order/models.py:2527 +#: order/models.py:2528 msgid "Cannot allocate stock item to a line with a different part" msgstr "" -#: order/models.py:2530 +#: order/models.py:2531 msgid "Cannot allocate stock to a line without a part" msgstr "" -#: order/models.py:2533 +#: order/models.py:2534 msgid "Allocation quantity cannot exceed stock quantity" msgstr "" -#: order/models.py:2552 order/serializers.py:1581 +#: order/models.py:2553 order/serializers.py:1595 msgid "Quantity must be 1 for serialized stock item" msgstr "" -#: order/models.py:2555 +#: order/models.py:2556 msgid "Sales order does not match shipment" msgstr "" -#: order/models.py:2556 plugin/base/barcodes/api.py:642 +#: order/models.py:2557 plugin/base/barcodes/api.py:642 msgid "Shipment does not match sales order" msgstr "" -#: order/models.py:2564 +#: order/models.py:2565 msgid "Line" msgstr "" -#: order/models.py:2575 +#: order/models.py:2576 msgid "Sales order shipment reference" msgstr "" -#: order/models.py:2588 order/models.py:3007 +#: order/models.py:2589 order/models.py:3008 msgid "Item" msgstr "" -#: order/models.py:2589 +#: order/models.py:2590 msgid "Select stock item to allocate" msgstr "" -#: order/models.py:2598 +#: order/models.py:2599 msgid "Enter stock allocation quantity" msgstr "" -#: order/models.py:2713 +#: order/models.py:2714 msgid "Return Order reference" msgstr "" -#: order/models.py:2725 +#: order/models.py:2726 msgid "Company from which items are being returned" msgstr "" -#: order/models.py:2738 +#: order/models.py:2739 msgid "Return order status" msgstr "" -#: order/models.py:2965 +#: order/models.py:2966 msgid "Return Order Line Item" msgstr "" -#: order/models.py:2978 +#: order/models.py:2979 msgid "Stock item must be specified" msgstr "" -#: order/models.py:2982 +#: order/models.py:2983 msgid "Return quantity exceeds stock quantity" msgstr "" -#: order/models.py:2987 +#: order/models.py:2988 msgid "Return quantity must be greater than zero" msgstr "" -#: order/models.py:2992 +#: order/models.py:2993 msgid "Invalid quantity for serialized stock item" msgstr "" -#: order/models.py:3008 +#: order/models.py:3009 msgid "Select item to return from customer" msgstr "" -#: order/models.py:3023 +#: order/models.py:3024 msgid "Received Date" msgstr "" -#: order/models.py:3024 +#: order/models.py:3025 msgid "The date this this return item was received" msgstr "" -#: order/models.py:3036 +#: order/models.py:3037 msgid "Outcome" msgstr "" -#: order/models.py:3037 +#: order/models.py:3038 msgid "Outcome for this line item" msgstr "" -#: order/models.py:3044 +#: order/models.py:3045 msgid "Cost associated with return or repair for this line item" msgstr "" -#: order/models.py:3054 +#: order/models.py:3055 msgid "Return Order Extra Line" msgstr "" -#: order/serializers.py:91 +#: order/serializers.py:92 msgid "Order ID" msgstr "" -#: order/serializers.py:91 +#: order/serializers.py:92 msgid "ID of the order to duplicate" msgstr "" -#: order/serializers.py:97 +#: order/serializers.py:98 msgid "Copy Lines" msgstr "" -#: order/serializers.py:98 +#: order/serializers.py:99 msgid "Copy line items from the original order" msgstr "" -#: order/serializers.py:104 +#: order/serializers.py:105 msgid "Copy Extra Lines" msgstr "" -#: order/serializers.py:105 +#: order/serializers.py:106 msgid "Copy extra line items from the original order" msgstr "" -#: order/serializers.py:120 +#: order/serializers.py:121 #: report/templates/report/inventree_purchase_order_report.html:29 #: report/templates/report/inventree_return_order_report.html:19 #: report/templates/report/inventree_sales_order_report.html:22 msgid "Line Items" msgstr "" -#: order/serializers.py:125 +#: order/serializers.py:126 msgid "Completed Lines" msgstr "" -#: order/serializers.py:192 +#: order/serializers.py:199 msgid "Duplicate Order" msgstr "" -#: order/serializers.py:193 +#: order/serializers.py:200 msgid "Specify options for duplicating this order" msgstr "" -#: order/serializers.py:270 +#: order/serializers.py:278 msgid "Invalid order ID" msgstr "" -#: order/serializers.py:466 +#: order/serializers.py:477 msgid "Supplier Name" msgstr "" -#: order/serializers.py:510 +#: order/serializers.py:521 msgid "Order cannot be cancelled" msgstr "" -#: order/serializers.py:525 order/serializers.py:1602 +#: order/serializers.py:536 order/serializers.py:1616 msgid "Allow order to be closed with incomplete line items" msgstr "" -#: order/serializers.py:535 order/serializers.py:1612 +#: order/serializers.py:546 order/serializers.py:1626 msgid "Order has incomplete line items" msgstr "" -#: order/serializers.py:665 +#: order/serializers.py:676 msgid "Order is not open" msgstr "" -#: order/serializers.py:692 +#: order/serializers.py:703 msgid "Auto Pricing" msgstr "" -#: order/serializers.py:694 +#: order/serializers.py:705 msgid "Automatically calculate purchase price based on supplier part data" msgstr "" -#: order/serializers.py:704 +#: order/serializers.py:715 msgid "Purchase price currency" msgstr "" -#: order/serializers.py:718 +#: order/serializers.py:729 msgid "Merge Items" msgstr "" -#: order/serializers.py:720 +#: order/serializers.py:731 msgid "Merge items with the same part, destination and target date into one line item" msgstr "" -#: order/serializers.py:727 part/serializers.py:560 +#: order/serializers.py:738 part/serializers.py:471 msgid "SKU" msgstr "" -#: order/serializers.py:741 part/models.py:1089 part/serializers.py:372 +#: order/serializers.py:752 part/models.py:1177 part/serializers.py:337 msgid "Internal Part Number" msgstr "" -#: order/serializers.py:749 +#: order/serializers.py:760 msgid "Internal Part Name" msgstr "" -#: order/serializers.py:765 +#: order/serializers.py:776 msgid "Supplier part must be specified" msgstr "" -#: order/serializers.py:768 +#: order/serializers.py:779 msgid "Purchase order must be specified" msgstr "" -#: order/serializers.py:776 +#: order/serializers.py:787 msgid "Supplier must match purchase order" msgstr "" -#: order/serializers.py:777 +#: order/serializers.py:788 msgid "Purchase order must match supplier" msgstr "" -#: order/serializers.py:825 order/serializers.py:1682 +#: order/serializers.py:836 order/serializers.py:1696 msgid "Line Item" msgstr "" -#: order/serializers.py:834 order/serializers.py:974 order/serializers.py:2043 +#: order/serializers.py:845 order/serializers.py:985 order/serializers.py:2060 msgid "Select destination location for received items" msgstr "" -#: order/serializers.py:850 +#: order/serializers.py:861 msgid "Enter batch code for incoming stock items" msgstr "" -#: order/serializers.py:857 stock/models.py:1160 +#: order/serializers.py:868 stock/models.py:1160 #: templates/email/stale_stock_notification.html:22 users/models.py:137 msgid "Expiry Date" msgstr "" -#: order/serializers.py:858 +#: order/serializers.py:869 msgid "Enter expiry date for incoming stock items" msgstr "" -#: order/serializers.py:866 +#: order/serializers.py:877 msgid "Enter serial numbers for incoming stock items" msgstr "" -#: order/serializers.py:876 +#: order/serializers.py:887 msgid "Override packaging information for incoming stock items" msgstr "" -#: order/serializers.py:884 order/serializers.py:2048 +#: order/serializers.py:895 order/serializers.py:2065 msgid "Additional note for incoming stock items" msgstr "" -#: order/serializers.py:891 +#: order/serializers.py:902 msgid "Barcode" msgstr "" -#: order/serializers.py:892 +#: order/serializers.py:903 msgid "Scanned barcode" msgstr "" -#: order/serializers.py:908 +#: order/serializers.py:919 msgid "Barcode is already in use" msgstr "" -#: order/serializers.py:991 order/serializers.py:2067 +#: order/serializers.py:1002 order/serializers.py:2084 msgid "Line items must be provided" msgstr "" -#: order/serializers.py:1010 +#: order/serializers.py:1021 msgid "Destination location must be specified" msgstr "" -#: order/serializers.py:1017 +#: order/serializers.py:1028 msgid "Supplied barcode values must be unique" msgstr "" -#: order/serializers.py:1121 +#: order/serializers.py:1135 msgid "Shipments" msgstr "" -#: order/serializers.py:1125 +#: order/serializers.py:1139 msgid "Completed Shipments" msgstr "" -#: order/serializers.py:1293 +#: order/serializers.py:1307 msgid "Sale price currency" msgstr "" -#: order/serializers.py:1339 +#: order/serializers.py:1353 msgid "Allocated Items" msgstr "" -#: order/serializers.py:1484 +#: order/serializers.py:1498 msgid "No shipment details provided" msgstr "" -#: order/serializers.py:1545 order/serializers.py:1691 +#: order/serializers.py:1559 order/serializers.py:1705 msgid "Line item is not associated with this order" msgstr "" -#: order/serializers.py:1564 +#: order/serializers.py:1578 msgid "Quantity must be positive" msgstr "" -#: order/serializers.py:1701 +#: order/serializers.py:1715 msgid "Enter serial numbers to allocate" msgstr "" -#: order/serializers.py:1723 order/serializers.py:1843 +#: order/serializers.py:1737 order/serializers.py:1857 msgid "Shipment has already been shipped" msgstr "" -#: order/serializers.py:1726 order/serializers.py:1846 +#: order/serializers.py:1740 order/serializers.py:1860 msgid "Shipment is not associated with this order" msgstr "" -#: order/serializers.py:1781 +#: order/serializers.py:1795 msgid "No match found for the following serial numbers" msgstr "" -#: order/serializers.py:1788 +#: order/serializers.py:1802 msgid "The following serial numbers are unavailable" msgstr "" -#: order/serializers.py:2009 +#: order/serializers.py:2026 msgid "Return order line item" msgstr "" -#: order/serializers.py:2019 +#: order/serializers.py:2036 msgid "Line item does not match return order" msgstr "" -#: order/serializers.py:2022 +#: order/serializers.py:2039 msgid "Line item has already been received" msgstr "" -#: order/serializers.py:2059 +#: order/serializers.py:2076 msgid "Items can only be received against orders which are in progress" msgstr "" -#: order/serializers.py:2124 +#: order/serializers.py:2141 msgid "Quantity to return" msgstr "" -#: order/serializers.py:2140 +#: order/serializers.py:2157 msgid "Line price currency" msgstr "" @@ -5431,1190 +5559,1109 @@ msgstr "" msgid "Return order {ro} is now overdue" msgstr "" -#: part/api.py:108 +#: part/api.py:103 msgid "Starred" msgstr "" -#: part/api.py:110 +#: part/api.py:105 msgid "Filter by starred categories" msgstr "" -#: part/api.py:127 stock/api.py:288 +#: part/api.py:122 stock/api.py:288 msgid "Depth" msgstr "" -#: part/api.py:127 +#: part/api.py:122 msgid "Filter by category depth" msgstr "" -#: part/api.py:145 stock/api.py:306 +#: part/api.py:140 stock/api.py:306 msgid "Top Level" msgstr "" -#: part/api.py:147 +#: part/api.py:142 msgid "Filter by top-level categories" msgstr "" -#: part/api.py:160 stock/api.py:321 +#: part/api.py:155 stock/api.py:321 msgid "Cascade" msgstr "" -#: part/api.py:162 +#: part/api.py:157 msgid "Include sub-categories in filtered results" msgstr "" -#: part/api.py:182 +#: part/api.py:177 msgid "Parent" msgstr "" -#: part/api.py:184 +#: part/api.py:179 msgid "Filter by parent category" msgstr "" -#: part/api.py:219 +#: part/api.py:214 msgid "Exclude sub-categories under the specified category" msgstr "" -#: part/api.py:445 +#: part/api.py:440 msgid "Has Results" msgstr "" -#: part/api.py:666 +#: part/api.py:661 msgid "Is Variant" msgstr "" -#: part/api.py:674 +#: part/api.py:669 msgid "Is Revision" msgstr "" -#: part/api.py:684 +#: part/api.py:679 msgid "Has Revisions" msgstr "" -#: part/api.py:865 +#: part/api.py:860 msgid "BOM Valid" msgstr "" -#: part/api.py:974 +#: part/api.py:969 msgid "Cascade Categories" msgstr "" -#: part/api.py:975 +#: part/api.py:970 msgid "If true, include items in child categories of the given category" msgstr "" -#: part/api.py:981 +#: part/api.py:976 msgid "Filter by numeric category ID or the literal 'null'" msgstr "" -#: part/api.py:1533 +#: part/api.py:1258 msgid "Assembly part is testable" msgstr "" -#: part/api.py:1542 +#: part/api.py:1267 msgid "Component part is testable" msgstr "" -#: part/api.py:1611 +#: part/api.py:1336 msgid "Uses" msgstr "" -#: part/models.py:96 part/models.py:4163 +#: part/models.py:93 part/models.py:436 #: templates/email/part_event_notification.html:16 msgid "Part Category" msgstr "" -#: part/models.py:97 users/ruleset.py:27 +#: part/models.py:94 users/ruleset.py:27 msgid "Part Categories" msgstr "" -#: part/models.py:115 part/models.py:1125 +#: part/models.py:112 part/models.py:1213 msgid "Default Location" msgstr "" -#: part/models.py:116 +#: part/models.py:113 msgid "Default location for parts in this category" msgstr "" -#: part/models.py:121 stock/models.py:216 +#: part/models.py:118 stock/models.py:216 msgid "Structural" msgstr "" -#: part/models.py:123 +#: part/models.py:120 msgid "Parts may not be directly assigned to a structural category, but may be assigned to child categories." msgstr "" -#: part/models.py:132 +#: part/models.py:129 msgid "Default keywords" msgstr "" -#: part/models.py:133 +#: part/models.py:130 msgid "Default keywords for parts in this category" msgstr "" -#: part/models.py:140 stock/models.py:97 stock/models.py:198 +#: part/models.py:137 stock/models.py:97 stock/models.py:198 msgid "Icon" msgstr "" -#: part/models.py:141 part/serializers.py:148 part/serializers.py:167 +#: part/models.py:138 part/serializers.py:147 part/serializers.py:166 #: stock/models.py:199 msgid "Icon (optional)" msgstr "" -#: part/models.py:185 +#: part/models.py:182 msgid "You cannot make this part category structural because some parts are already assigned to it!" msgstr "" -#: part/models.py:473 part/serializers.py:119 part/serializers.py:310 -#: users/ruleset.py:28 +#: part/models.py:392 +msgid "Part Category Parameter Template" +msgstr "" + +#: part/models.py:448 +msgid "Default Value" +msgstr "" + +#: part/models.py:449 +msgid "Default Parameter Value" +msgstr "" + +#: part/models.py:551 part/serializers.py:118 users/ruleset.py:28 msgid "Parts" msgstr "" -#: part/models.py:525 +#: part/models.py:597 +msgid "Cannot delete parameters of a locked part" +msgstr "" + +#: part/models.py:602 +msgid "Cannot modify parameters of a locked part" +msgstr "" + +#: part/models.py:613 msgid "Cannot delete this part as it is locked" msgstr "" -#: part/models.py:528 +#: part/models.py:616 msgid "Cannot delete this part as it is still active" msgstr "" -#: part/models.py:533 +#: part/models.py:621 msgid "Cannot delete this part as it is used in an assembly" msgstr "" -#: part/models.py:616 part/models.py:623 +#: part/models.py:704 part/models.py:711 #, python-brace-format msgid "Part '{self}' cannot be used in BOM for '{parent}' (recursive)" msgstr "" -#: part/models.py:635 +#: part/models.py:723 #, python-brace-format msgid "Part '{parent}' is used in BOM for '{self}' (recursive)" msgstr "" -#: part/models.py:702 +#: part/models.py:790 #, python-brace-format msgid "IPN must match regex pattern {pattern}" msgstr "" -#: part/models.py:710 +#: part/models.py:798 msgid "Part cannot be a revision of itself" msgstr "" -#: part/models.py:717 +#: part/models.py:805 msgid "Cannot make a revision of a part which is already a revision" msgstr "" -#: part/models.py:724 +#: part/models.py:812 msgid "Revision code must be specified" msgstr "" -#: part/models.py:731 +#: part/models.py:819 msgid "Revisions are only allowed for assembly parts" msgstr "" -#: part/models.py:738 +#: part/models.py:826 msgid "Cannot make a revision of a template part" msgstr "" -#: part/models.py:744 +#: part/models.py:832 msgid "Parent part must point to the same template" msgstr "" -#: part/models.py:841 +#: part/models.py:929 msgid "Stock item with this serial number already exists" msgstr "" -#: part/models.py:971 +#: part/models.py:1059 msgid "Duplicate IPN not allowed in part settings" msgstr "" -#: part/models.py:983 +#: part/models.py:1071 msgid "Duplicate part revision already exists." msgstr "" -#: part/models.py:992 +#: part/models.py:1080 msgid "Part with this Name, IPN and Revision already exists." msgstr "" -#: part/models.py:1007 +#: part/models.py:1095 msgid "Parts cannot be assigned to structural part categories!" msgstr "" -#: part/models.py:1039 +#: part/models.py:1127 msgid "Part name" msgstr "" -#: part/models.py:1044 +#: part/models.py:1132 msgid "Is Template" msgstr "" -#: part/models.py:1045 +#: part/models.py:1133 msgid "Is this part a template part?" msgstr "" -#: part/models.py:1055 +#: part/models.py:1143 msgid "Is this part a variant of another part?" msgstr "" -#: part/models.py:1056 +#: part/models.py:1144 msgid "Variant Of" msgstr "" -#: part/models.py:1063 +#: part/models.py:1151 msgid "Part description (optional)" msgstr "" -#: part/models.py:1070 +#: part/models.py:1158 msgid "Keywords" msgstr "" -#: part/models.py:1071 +#: part/models.py:1159 msgid "Part keywords to improve visibility in search results" msgstr "" -#: part/models.py:1081 +#: part/models.py:1169 msgid "Part category" msgstr "" -#: part/models.py:1088 part/serializers.py:929 +#: part/models.py:1176 part/serializers.py:814 #: report/templates/report/inventree_stock_location_report.html:103 msgid "IPN" msgstr "" -#: part/models.py:1096 +#: part/models.py:1184 msgid "Part revision or version number" msgstr "" -#: part/models.py:1097 report/models.py:228 +#: part/models.py:1185 report/models.py:228 msgid "Revision" msgstr "" -#: part/models.py:1106 +#: part/models.py:1194 msgid "Is this part a revision of another part?" msgstr "" -#: part/models.py:1107 +#: part/models.py:1195 msgid "Revision Of" msgstr "" -#: part/models.py:1123 +#: part/models.py:1211 msgid "Where is this item normally stored?" msgstr "" -#: part/models.py:1169 +#: part/models.py:1257 msgid "Default Supplier" msgstr "" -#: part/models.py:1170 +#: part/models.py:1258 msgid "Default supplier part" msgstr "" -#: part/models.py:1177 +#: part/models.py:1265 msgid "Default Expiry" msgstr "" -#: part/models.py:1178 +#: part/models.py:1266 msgid "Expiry time (in days) for stock items of this part" msgstr "" -#: part/models.py:1186 part/serializers.py:1003 +#: part/models.py:1274 part/serializers.py:888 msgid "Minimum Stock" msgstr "" -#: part/models.py:1187 +#: part/models.py:1275 msgid "Minimum allowed stock level" msgstr "" -#: part/models.py:1196 +#: part/models.py:1284 msgid "Units of measure for this part" msgstr "" -#: part/models.py:1203 +#: part/models.py:1291 msgid "Can this part be built from other parts?" msgstr "" -#: part/models.py:1209 +#: part/models.py:1297 msgid "Can this part be used to build other parts?" msgstr "" -#: part/models.py:1215 +#: part/models.py:1303 msgid "Does this part have tracking for unique items?" msgstr "" -#: part/models.py:1221 +#: part/models.py:1309 msgid "Can this part have test results recorded against it?" msgstr "" -#: part/models.py:1227 +#: part/models.py:1315 msgid "Can this part be purchased from external suppliers?" msgstr "" -#: part/models.py:1233 +#: part/models.py:1321 msgid "Can this part be sold to customers?" msgstr "" -#: part/models.py:1237 +#: part/models.py:1325 msgid "Is this part active?" msgstr "" -#: part/models.py:1243 +#: part/models.py:1331 msgid "Locked parts cannot be edited" msgstr "" -#: part/models.py:1249 +#: part/models.py:1337 msgid "Is this a virtual part, such as a software product or license?" msgstr "" -#: part/models.py:1254 +#: part/models.py:1342 msgid "BOM Validated" msgstr "" -#: part/models.py:1255 +#: part/models.py:1343 msgid "Is the BOM for this part valid?" msgstr "" -#: part/models.py:1261 +#: part/models.py:1349 msgid "BOM checksum" msgstr "" -#: part/models.py:1262 +#: part/models.py:1350 msgid "Stored BOM checksum" msgstr "" -#: part/models.py:1270 +#: part/models.py:1358 msgid "BOM checked by" msgstr "" -#: part/models.py:1275 +#: part/models.py:1363 msgid "BOM checked date" msgstr "" -#: part/models.py:1291 +#: part/models.py:1379 msgid "Creation User" msgstr "" -#: part/models.py:1301 +#: part/models.py:1389 msgid "Owner responsible for this part" msgstr "" -#: part/models.py:2258 +#: part/models.py:2346 msgid "Sell multiple" msgstr "" -#: part/models.py:3286 +#: part/models.py:3350 msgid "Currency used to cache pricing calculations" msgstr "" -#: part/models.py:3302 +#: part/models.py:3366 msgid "Minimum BOM Cost" msgstr "" -#: part/models.py:3303 +#: part/models.py:3367 msgid "Minimum cost of component parts" msgstr "" -#: part/models.py:3309 +#: part/models.py:3373 msgid "Maximum BOM Cost" msgstr "" -#: part/models.py:3310 +#: part/models.py:3374 msgid "Maximum cost of component parts" msgstr "" -#: part/models.py:3316 +#: part/models.py:3380 msgid "Minimum Purchase Cost" msgstr "" -#: part/models.py:3317 +#: part/models.py:3381 msgid "Minimum historical purchase cost" msgstr "" -#: part/models.py:3323 +#: part/models.py:3387 msgid "Maximum Purchase Cost" msgstr "" -#: part/models.py:3324 +#: part/models.py:3388 msgid "Maximum historical purchase cost" msgstr "" -#: part/models.py:3330 +#: part/models.py:3394 msgid "Minimum Internal Price" msgstr "" -#: part/models.py:3331 +#: part/models.py:3395 msgid "Minimum cost based on internal price breaks" msgstr "" -#: part/models.py:3337 +#: part/models.py:3401 msgid "Maximum Internal Price" msgstr "" -#: part/models.py:3338 +#: part/models.py:3402 msgid "Maximum cost based on internal price breaks" msgstr "" -#: part/models.py:3344 +#: part/models.py:3408 msgid "Minimum Supplier Price" msgstr "" -#: part/models.py:3345 +#: part/models.py:3409 msgid "Minimum price of part from external suppliers" msgstr "" -#: part/models.py:3351 +#: part/models.py:3415 msgid "Maximum Supplier Price" msgstr "" -#: part/models.py:3352 +#: part/models.py:3416 msgid "Maximum price of part from external suppliers" msgstr "" -#: part/models.py:3358 +#: part/models.py:3422 msgid "Minimum Variant Cost" msgstr "" -#: part/models.py:3359 +#: part/models.py:3423 msgid "Calculated minimum cost of variant parts" msgstr "" -#: part/models.py:3365 +#: part/models.py:3429 msgid "Maximum Variant Cost" msgstr "" -#: part/models.py:3366 +#: part/models.py:3430 msgid "Calculated maximum cost of variant parts" msgstr "" -#: part/models.py:3372 part/models.py:3386 +#: part/models.py:3436 part/models.py:3450 msgid "Minimum Cost" msgstr "" -#: part/models.py:3373 +#: part/models.py:3437 msgid "Override minimum cost" msgstr "" -#: part/models.py:3379 part/models.py:3393 +#: part/models.py:3443 part/models.py:3457 msgid "Maximum Cost" msgstr "" -#: part/models.py:3380 +#: part/models.py:3444 msgid "Override maximum cost" msgstr "" -#: part/models.py:3387 +#: part/models.py:3451 msgid "Calculated overall minimum cost" msgstr "" -#: part/models.py:3394 +#: part/models.py:3458 msgid "Calculated overall maximum cost" msgstr "" -#: part/models.py:3400 +#: part/models.py:3464 msgid "Minimum Sale Price" msgstr "" -#: part/models.py:3401 +#: part/models.py:3465 msgid "Minimum sale price based on price breaks" msgstr "" -#: part/models.py:3407 +#: part/models.py:3471 msgid "Maximum Sale Price" msgstr "" -#: part/models.py:3408 +#: part/models.py:3472 msgid "Maximum sale price based on price breaks" msgstr "" -#: part/models.py:3414 +#: part/models.py:3478 msgid "Minimum Sale Cost" msgstr "" -#: part/models.py:3415 +#: part/models.py:3479 msgid "Minimum historical sale price" msgstr "" -#: part/models.py:3421 +#: part/models.py:3485 msgid "Maximum Sale Cost" msgstr "" -#: part/models.py:3422 +#: part/models.py:3486 msgid "Maximum historical sale price" msgstr "" -#: part/models.py:3440 +#: part/models.py:3504 msgid "Part for stocktake" msgstr "" -#: part/models.py:3445 +#: part/models.py:3509 msgid "Item Count" msgstr "" -#: part/models.py:3446 +#: part/models.py:3510 msgid "Number of individual stock entries at time of stocktake" msgstr "" -#: part/models.py:3454 +#: part/models.py:3518 msgid "Total available stock at time of stocktake" msgstr "" -#: part/models.py:3458 report/templates/report/inventree_test_report.html:106 +#: part/models.py:3522 report/templates/report/inventree_test_report.html:106 msgid "Date" msgstr "" -#: part/models.py:3459 +#: part/models.py:3523 msgid "Date stocktake was performed" msgstr "" -#: part/models.py:3466 +#: part/models.py:3530 msgid "Minimum Stock Cost" msgstr "" -#: part/models.py:3467 +#: part/models.py:3531 msgid "Estimated minimum cost of stock on hand" msgstr "" -#: part/models.py:3473 +#: part/models.py:3537 msgid "Maximum Stock Cost" msgstr "" -#: part/models.py:3474 +#: part/models.py:3538 msgid "Estimated maximum cost of stock on hand" msgstr "" -#: part/models.py:3484 +#: part/models.py:3548 msgid "Part Sale Price Break" msgstr "" -#: part/models.py:3596 +#: part/models.py:3660 msgid "Part Test Template" msgstr "" -#: part/models.py:3622 +#: part/models.py:3686 msgid "Invalid template name - must include at least one alphanumeric character" msgstr "" -#: part/models.py:3643 part/models.py:3816 -msgid "Choices must be unique" -msgstr "" - -#: part/models.py:3654 +#: part/models.py:3718 msgid "Test templates can only be created for testable parts" msgstr "" -#: part/models.py:3668 +#: part/models.py:3732 msgid "Test template with the same key already exists for part" msgstr "" -#: part/models.py:3685 +#: part/models.py:3749 msgid "Test Name" msgstr "" -#: part/models.py:3686 +#: part/models.py:3750 msgid "Enter a name for the test" msgstr "" -#: part/models.py:3692 +#: part/models.py:3756 msgid "Test Key" msgstr "" -#: part/models.py:3693 +#: part/models.py:3757 msgid "Simplified key for the test" msgstr "" -#: part/models.py:3700 +#: part/models.py:3764 msgid "Test Description" msgstr "" -#: part/models.py:3701 +#: part/models.py:3765 msgid "Enter description for this test" msgstr "" -#: part/models.py:3705 report/models.py:287 -msgid "Enabled" -msgstr "" - -#: part/models.py:3705 +#: part/models.py:3769 msgid "Is this test enabled?" msgstr "" -#: part/models.py:3710 +#: part/models.py:3774 msgid "Required" msgstr "" -#: part/models.py:3711 +#: part/models.py:3775 msgid "Is this test required to pass?" msgstr "" -#: part/models.py:3716 +#: part/models.py:3780 msgid "Requires Value" msgstr "" -#: part/models.py:3717 +#: part/models.py:3781 msgid "Does this test require a value when adding a test result?" msgstr "" -#: part/models.py:3722 +#: part/models.py:3786 msgid "Requires Attachment" msgstr "" -#: part/models.py:3724 +#: part/models.py:3788 msgid "Does this test require a file attachment when adding a test result?" msgstr "" -#: part/models.py:3730 part/models.py:3878 -msgid "Choices" -msgstr "" - -#: part/models.py:3731 +#: part/models.py:3795 msgid "Valid choices for this test (comma-separated)" msgstr "" -#: part/models.py:3764 -msgid "Part Parameter Template" -msgstr "" - -#: part/models.py:3791 -msgid "Checkbox parameters cannot have units" -msgstr "" - -#: part/models.py:3796 -msgid "Checkbox parameters cannot have choices" -msgstr "" - -#: part/models.py:3833 -msgid "Parameter template name must be unique" -msgstr "" - -#: part/models.py:3851 -msgid "Parameter Name" -msgstr "" - -#: part/models.py:3858 -msgid "Physical units for this parameter" -msgstr "" - -#: part/models.py:3866 -msgid "Parameter description" -msgstr "" - -#: part/models.py:3872 -msgid "Checkbox" -msgstr "" - -#: part/models.py:3873 -msgid "Is this parameter a checkbox?" -msgstr "" - -#: part/models.py:3879 -msgid "Valid choices for this parameter (comma-separated)" -msgstr "" - -#: part/models.py:3890 -msgid "Selection list for this parameter" -msgstr "" - -#: part/models.py:3932 -msgid "Part Parameter" -msgstr "" - -#: part/models.py:3958 -msgid "Parameter cannot be modified - part is locked" -msgstr "" - -#: part/models.py:3996 -msgid "Invalid choice for parameter value" -msgstr "" - -#: part/models.py:4047 -msgid "Parent Part" -msgstr "" - -#: part/models.py:4055 part/models.py:4170 part/models.py:4171 -msgid "Parameter Template" -msgstr "" - -#: part/models.py:4061 -msgid "Parameter Value" -msgstr "" - -#: part/models.py:4071 stock/serializers.py:718 -msgid "Optional note field" -msgstr "" - -#: part/models.py:4118 -msgid "Part Category Parameter Template" -msgstr "" - -#: part/models.py:4177 -msgid "Default Value" -msgstr "" - -#: part/models.py:4178 -msgid "Default Parameter Value" -msgstr "" - -#: part/models.py:4352 +#: part/models.py:3977 msgid "BOM item cannot be modified - assembly is locked" msgstr "" -#: part/models.py:4359 +#: part/models.py:3984 msgid "BOM item cannot be modified - variant assembly is locked" msgstr "" -#: part/models.py:4369 +#: part/models.py:3994 msgid "Select parent part" msgstr "" -#: part/models.py:4379 +#: part/models.py:4004 msgid "Sub part" msgstr "" -#: part/models.py:4380 +#: part/models.py:4005 msgid "Select part to be used in BOM" msgstr "" -#: part/models.py:4391 +#: part/models.py:4016 msgid "BOM quantity for this BOM item" msgstr "" -#: part/models.py:4397 +#: part/models.py:4022 msgid "This BOM item is optional" msgstr "" -#: part/models.py:4403 +#: part/models.py:4028 msgid "This BOM item is consumable (it is not tracked in build orders)" msgstr "" -#: part/models.py:4411 +#: part/models.py:4036 msgid "Setup Quantity" msgstr "" -#: part/models.py:4412 +#: part/models.py:4037 msgid "Extra required quantity for a build, to account for setup losses" msgstr "" -#: part/models.py:4420 +#: part/models.py:4045 msgid "Attrition" msgstr "" -#: part/models.py:4422 +#: part/models.py:4047 msgid "Estimated attrition for a build, expressed as a percentage (0-100)" msgstr "" -#: part/models.py:4433 +#: part/models.py:4058 msgid "Rounding Multiple" msgstr "" -#: part/models.py:4435 +#: part/models.py:4060 msgid "Round up required production quantity to nearest multiple of this value" msgstr "" -#: part/models.py:4443 +#: part/models.py:4068 msgid "BOM item reference" msgstr "" -#: part/models.py:4451 +#: part/models.py:4076 msgid "BOM item notes" msgstr "" -#: part/models.py:4457 +#: part/models.py:4082 msgid "Checksum" msgstr "" -#: part/models.py:4458 +#: part/models.py:4083 msgid "BOM line checksum" msgstr "" -#: part/models.py:4463 +#: part/models.py:4088 msgid "Validated" msgstr "" -#: part/models.py:4464 +#: part/models.py:4089 msgid "This BOM item has been validated" msgstr "" -#: part/models.py:4469 +#: part/models.py:4094 msgid "Gets inherited" msgstr "" -#: part/models.py:4470 +#: part/models.py:4095 msgid "This BOM item is inherited by BOMs for variant parts" msgstr "" -#: part/models.py:4476 +#: part/models.py:4101 msgid "Stock items for variant parts can be used for this BOM item" msgstr "" -#: part/models.py:4583 stock/models.py:925 +#: part/models.py:4208 stock/models.py:925 msgid "Quantity must be integer value for trackable parts" msgstr "" -#: part/models.py:4593 part/models.py:4595 +#: part/models.py:4218 part/models.py:4220 msgid "Sub part must be specified" msgstr "" -#: part/models.py:4746 +#: part/models.py:4371 msgid "BOM Item Substitute" msgstr "" -#: part/models.py:4767 +#: part/models.py:4392 msgid "Substitute part cannot be the same as the master part" msgstr "" -#: part/models.py:4780 +#: part/models.py:4405 msgid "Parent BOM item" msgstr "" -#: part/models.py:4788 +#: part/models.py:4413 msgid "Substitute part" msgstr "" -#: part/models.py:4804 +#: part/models.py:4429 msgid "Part 1" msgstr "" -#: part/models.py:4812 +#: part/models.py:4437 msgid "Part 2" msgstr "" -#: part/models.py:4813 +#: part/models.py:4438 msgid "Select Related Part" msgstr "" -#: part/models.py:4820 +#: part/models.py:4445 msgid "Note for this relationship" msgstr "" -#: part/models.py:4839 +#: part/models.py:4464 msgid "Part relationship cannot be created between a part and itself" msgstr "" -#: part/models.py:4844 +#: part/models.py:4469 msgid "Duplicate relationship already exists" msgstr "" -#: part/serializers.py:114 +#: part/serializers.py:113 msgid "Parent Category" msgstr "" -#: part/serializers.py:115 +#: part/serializers.py:114 msgid "Parent part category" msgstr "" -#: part/serializers.py:123 part/serializers.py:164 +#: part/serializers.py:122 part/serializers.py:163 msgid "Subcategories" msgstr "" -#: part/serializers.py:203 +#: part/serializers.py:202 msgid "Results" msgstr "" -#: part/serializers.py:204 +#: part/serializers.py:203 msgid "Number of results recorded against this template" msgstr "" -#: part/serializers.py:235 part/serializers.py:253 stock/serializers.py:643 +#: part/serializers.py:234 part/serializers.py:252 stock/serializers.py:643 msgid "Purchase currency of this stock item" msgstr "" -#: part/serializers.py:280 +#: part/serializers.py:279 msgid "File is not an image" msgstr "" -#: part/serializers.py:311 -msgid "Number of parts using this template" -msgstr "" - -#: part/serializers.py:471 +#: part/serializers.py:382 msgid "Original Part" msgstr "" -#: part/serializers.py:472 +#: part/serializers.py:383 msgid "Select original part to duplicate" msgstr "" -#: part/serializers.py:477 +#: part/serializers.py:388 msgid "Copy Image" msgstr "" -#: part/serializers.py:478 +#: part/serializers.py:389 msgid "Copy image from original part" msgstr "" -#: part/serializers.py:484 +#: part/serializers.py:395 msgid "Copy BOM" msgstr "" -#: part/serializers.py:485 +#: part/serializers.py:396 msgid "Copy bill of materials from original part" msgstr "" -#: part/serializers.py:491 +#: part/serializers.py:402 msgid "Copy Parameters" msgstr "" -#: part/serializers.py:492 +#: part/serializers.py:403 msgid "Copy parameter data from original part" msgstr "" -#: part/serializers.py:498 +#: part/serializers.py:409 msgid "Copy Notes" msgstr "" -#: part/serializers.py:499 +#: part/serializers.py:410 msgid "Copy notes from original part" msgstr "" -#: part/serializers.py:505 +#: part/serializers.py:416 msgid "Copy Tests" msgstr "" -#: part/serializers.py:506 +#: part/serializers.py:417 msgid "Copy test templates from original part" msgstr "" -#: part/serializers.py:524 +#: part/serializers.py:435 msgid "Initial Stock Quantity" msgstr "" -#: part/serializers.py:526 +#: part/serializers.py:437 msgid "Specify initial stock quantity for this Part. If quantity is zero, no stock is added." msgstr "" -#: part/serializers.py:533 +#: part/serializers.py:444 msgid "Initial Stock Location" msgstr "" -#: part/serializers.py:534 +#: part/serializers.py:445 msgid "Specify initial stock location for this Part" msgstr "" -#: part/serializers.py:551 +#: part/serializers.py:462 msgid "Select supplier (or leave blank to skip)" msgstr "" -#: part/serializers.py:567 +#: part/serializers.py:478 msgid "Select manufacturer (or leave blank to skip)" msgstr "" -#: part/serializers.py:577 +#: part/serializers.py:488 msgid "Manufacturer part number" msgstr "" -#: part/serializers.py:584 +#: part/serializers.py:495 msgid "Selected company is not a valid supplier" msgstr "" -#: part/serializers.py:593 +#: part/serializers.py:504 msgid "Selected company is not a valid manufacturer" msgstr "" -#: part/serializers.py:604 +#: part/serializers.py:515 msgid "Manufacturer part matching this MPN already exists" msgstr "" -#: part/serializers.py:611 +#: part/serializers.py:522 msgid "Supplier part matching this SKU already exists" msgstr "" -#: part/serializers.py:914 +#: part/serializers.py:799 msgid "Category Name" msgstr "" -#: part/serializers.py:943 +#: part/serializers.py:828 msgid "Building" msgstr "" -#: part/serializers.py:944 +#: part/serializers.py:829 msgid "Quantity of this part currently being in production" msgstr "" -#: part/serializers.py:951 +#: part/serializers.py:836 msgid "Outstanding quantity of this part scheduled to be built" msgstr "" -#: part/serializers.py:971 stock/serializers.py:1019 stock/serializers.py:1189 +#: part/serializers.py:856 stock/serializers.py:1019 stock/serializers.py:1189 #: users/ruleset.py:30 msgid "Stock Items" msgstr "" -#: part/serializers.py:975 +#: part/serializers.py:860 msgid "Revisions" msgstr "" -#: part/serializers.py:979 +#: part/serializers.py:864 msgid "Suppliers" msgstr "" -#: part/serializers.py:983 part/serializers.py:1297 +#: part/serializers.py:868 part/serializers.py:1162 #: templates/email/low_stock_notification.html:16 #: templates/email/part_event_notification.html:17 msgid "Total Stock" msgstr "" -#: part/serializers.py:991 +#: part/serializers.py:876 msgid "Unallocated Stock" msgstr "" -#: part/serializers.py:999 +#: part/serializers.py:884 msgid "Variant Stock" msgstr "" -#: part/serializers.py:1054 +#: part/serializers.py:943 msgid "Duplicate Part" msgstr "" -#: part/serializers.py:1055 +#: part/serializers.py:944 msgid "Copy initial data from another Part" msgstr "" -#: part/serializers.py:1061 +#: part/serializers.py:950 msgid "Initial Stock" msgstr "" -#: part/serializers.py:1062 +#: part/serializers.py:951 msgid "Create Part with initial stock quantity" msgstr "" -#: part/serializers.py:1068 +#: part/serializers.py:957 msgid "Supplier Information" msgstr "" -#: part/serializers.py:1069 +#: part/serializers.py:958 msgid "Add initial supplier information for this part" msgstr "" -#: part/serializers.py:1077 +#: part/serializers.py:966 msgid "Copy Category Parameters" msgstr "" -#: part/serializers.py:1078 +#: part/serializers.py:967 msgid "Copy parameter templates from selected part category" msgstr "" -#: part/serializers.py:1083 +#: part/serializers.py:972 msgid "Existing Image" msgstr "" -#: part/serializers.py:1084 +#: part/serializers.py:973 msgid "Filename of an existing part image" msgstr "" -#: part/serializers.py:1101 +#: part/serializers.py:990 msgid "Image file does not exist" msgstr "" -#: part/serializers.py:1269 +#: part/serializers.py:1134 msgid "Validate entire Bill of Materials" msgstr "" -#: part/serializers.py:1303 part/serializers.py:1769 +#: part/serializers.py:1168 part/serializers.py:1634 msgid "Can Build" msgstr "" -#: part/serializers.py:1320 +#: part/serializers.py:1185 msgid "Required for Build Orders" msgstr "" -#: part/serializers.py:1325 +#: part/serializers.py:1190 msgid "Allocated to Build Orders" msgstr "" -#: part/serializers.py:1332 +#: part/serializers.py:1197 msgid "Required for Sales Orders" msgstr "" -#: part/serializers.py:1336 +#: part/serializers.py:1201 msgid "Allocated to Sales Orders" msgstr "" -#: part/serializers.py:1475 +#: part/serializers.py:1340 msgid "Minimum Price" msgstr "" -#: part/serializers.py:1476 +#: part/serializers.py:1341 msgid "Override calculated value for minimum price" msgstr "" -#: part/serializers.py:1483 +#: part/serializers.py:1348 msgid "Minimum price currency" msgstr "" -#: part/serializers.py:1490 +#: part/serializers.py:1355 msgid "Maximum Price" msgstr "" -#: part/serializers.py:1491 +#: part/serializers.py:1356 msgid "Override calculated value for maximum price" msgstr "" -#: part/serializers.py:1498 +#: part/serializers.py:1363 msgid "Maximum price currency" msgstr "" -#: part/serializers.py:1527 +#: part/serializers.py:1392 msgid "Update" msgstr "" -#: part/serializers.py:1528 +#: part/serializers.py:1393 msgid "Update pricing for this part" msgstr "" -#: part/serializers.py:1551 +#: part/serializers.py:1416 #, python-brace-format msgid "Could not convert from provided currencies to {default_currency}" msgstr "" -#: part/serializers.py:1558 +#: part/serializers.py:1423 msgid "Minimum price must not be greater than maximum price" msgstr "" -#: part/serializers.py:1561 +#: part/serializers.py:1426 msgid "Maximum price must not be less than minimum price" msgstr "" -#: part/serializers.py:1715 +#: part/serializers.py:1580 msgid "Select the parent assembly" msgstr "" -#: part/serializers.py:1735 +#: part/serializers.py:1600 msgid "Select the component part" msgstr "" -#: part/serializers.py:1929 +#: part/serializers.py:1802 msgid "Select part to copy BOM from" msgstr "" -#: part/serializers.py:1937 +#: part/serializers.py:1810 msgid "Remove Existing Data" msgstr "" -#: part/serializers.py:1938 +#: part/serializers.py:1811 msgid "Remove existing BOM items before copying" msgstr "" -#: part/serializers.py:1943 +#: part/serializers.py:1816 msgid "Include Inherited" msgstr "" -#: part/serializers.py:1944 +#: part/serializers.py:1817 msgid "Include BOM items which are inherited from templated parts" msgstr "" -#: part/serializers.py:1949 +#: part/serializers.py:1822 msgid "Skip Invalid Rows" msgstr "" -#: part/serializers.py:1950 +#: part/serializers.py:1823 msgid "Enable this option to skip invalid rows" msgstr "" -#: part/serializers.py:1955 +#: part/serializers.py:1828 msgid "Copy Substitute Parts" msgstr "" -#: part/serializers.py:1956 +#: part/serializers.py:1829 msgid "Copy substitute parts when duplicate BOM items" msgstr "" @@ -6927,7 +6974,7 @@ msgstr "" #: plugin/builtin/events/auto_issue_orders.py:19 #: plugin/builtin/exporter/bom_exporter.py:73 #: plugin/builtin/exporter/inventree_exporter.py:17 -#: plugin/builtin/exporter/part_parameter_exporter.py:36 +#: plugin/builtin/exporter/parameter_exporter.py:32 #: plugin/builtin/exporter/stocktake_exporter.py:47 #: plugin/builtin/integration/core_notifications.py:25 #: plugin/builtin/integration/core_notifications.py:69 @@ -7041,23 +7088,19 @@ msgid "Include total quantity of each part in the BOM" msgstr "" #: plugin/builtin/exporter/bom_exporter.py:35 -#: plugin/builtin/exporter/part_parameter_exporter.py:17 msgid "Stock Data" msgstr "" #: plugin/builtin/exporter/bom_exporter.py:35 -#: plugin/builtin/exporter/part_parameter_exporter.py:17 msgid "Include part stock data" msgstr "" #: plugin/builtin/exporter/bom_exporter.py:39 -#: plugin/builtin/exporter/part_parameter_exporter.py:21 #: plugin/builtin/exporter/stocktake_exporter.py:20 msgid "Pricing Data" msgstr "" #: plugin/builtin/exporter/bom_exporter.py:39 -#: plugin/builtin/exporter/part_parameter_exporter.py:21 #: plugin/builtin/exporter/stocktake_exporter.py:20 msgid "Include part pricing data" msgstr "" @@ -7144,12 +7187,20 @@ msgstr "" msgid "Provides support for exporting data from InvenTree" msgstr "" -#: plugin/builtin/exporter/part_parameter_exporter.py:33 -msgid "Part Parameter Exporter" +#: plugin/builtin/exporter/parameter_exporter.py:16 +msgid "Exclude Inactive" msgstr "" -#: plugin/builtin/exporter/part_parameter_exporter.py:34 -msgid "Exporter for part parameter data" +#: plugin/builtin/exporter/parameter_exporter.py:17 +msgid "Exclude parameters which are inactive" +msgstr "" + +#: plugin/builtin/exporter/parameter_exporter.py:29 +msgid "Parameter Exporter" +msgstr "" + +#: plugin/builtin/exporter/parameter_exporter.py:30 +msgid "Exporter for model parameter data" msgstr "" #: plugin/builtin/exporter/stocktake_exporter.py:25 @@ -8079,19 +8130,19 @@ msgstr "" msgid "No result" msgstr "" -#: report/templatetags/report.py:167 +#: report/templatetags/report.py:169 msgid "Asset file does not exist" msgstr "" -#: report/templatetags/report.py:224 report/templatetags/report.py:300 +#: report/templatetags/report.py:226 report/templatetags/report.py:302 msgid "Image file not found" msgstr "" -#: report/templatetags/report.py:325 +#: report/templatetags/report.py:327 msgid "part_image tag requires a Part instance" msgstr "" -#: report/templatetags/report.py:362 +#: report/templatetags/report.py:383 msgid "company_image tag requires a Company instance" msgstr "" @@ -8455,115 +8506,119 @@ msgstr "" msgid "Quantity does not match serial numbers" msgstr "" -#: stock/models.py:2012 stock/models.py:2917 +#: stock/models.py:1912 +msgid "Cannot assign stock to structural location" +msgstr "" + +#: stock/models.py:2029 stock/models.py:2934 msgid "Test template does not exist" msgstr "" -#: stock/models.py:2030 +#: stock/models.py:2047 msgid "Stock item has been assigned to a sales order" msgstr "" -#: stock/models.py:2034 +#: stock/models.py:2051 msgid "Stock item is installed in another item" msgstr "" -#: stock/models.py:2037 +#: stock/models.py:2054 msgid "Stock item contains other items" msgstr "" -#: stock/models.py:2040 +#: stock/models.py:2057 msgid "Stock item has been assigned to a customer" msgstr "" -#: stock/models.py:2043 stock/models.py:2226 +#: stock/models.py:2060 stock/models.py:2243 msgid "Stock item is currently in production" msgstr "" -#: stock/models.py:2046 +#: stock/models.py:2063 msgid "Serialized stock cannot be merged" msgstr "" -#: stock/models.py:2053 stock/serializers.py:1462 +#: stock/models.py:2070 stock/serializers.py:1462 msgid "Duplicate stock items" msgstr "" -#: stock/models.py:2057 +#: stock/models.py:2074 msgid "Stock items must refer to the same part" msgstr "" -#: stock/models.py:2065 +#: stock/models.py:2082 msgid "Stock items must refer to the same supplier part" msgstr "" -#: stock/models.py:2070 +#: stock/models.py:2087 msgid "Stock status codes must match" msgstr "" -#: stock/models.py:2349 +#: stock/models.py:2366 msgid "StockItem cannot be moved as it is not in stock" msgstr "" -#: stock/models.py:2818 +#: stock/models.py:2835 msgid "Stock Item Tracking" msgstr "" -#: stock/models.py:2849 +#: stock/models.py:2866 msgid "Entry notes" msgstr "" -#: stock/models.py:2889 +#: stock/models.py:2906 msgid "Stock Item Test Result" msgstr "" -#: stock/models.py:2920 +#: stock/models.py:2937 msgid "Value must be provided for this test" msgstr "" -#: stock/models.py:2924 +#: stock/models.py:2941 msgid "Attachment must be uploaded for this test" msgstr "" -#: stock/models.py:2929 +#: stock/models.py:2946 msgid "Invalid value for this test" msgstr "" -#: stock/models.py:2953 +#: stock/models.py:2970 msgid "Test result" msgstr "" -#: stock/models.py:2960 +#: stock/models.py:2977 msgid "Test output value" msgstr "" -#: stock/models.py:2968 stock/serializers.py:248 +#: stock/models.py:2985 stock/serializers.py:248 msgid "Test result attachment" msgstr "" -#: stock/models.py:2972 +#: stock/models.py:2989 msgid "Test notes" msgstr "" -#: stock/models.py:2980 +#: stock/models.py:2997 msgid "Test station" msgstr "" -#: stock/models.py:2981 +#: stock/models.py:2998 msgid "The identifier of the test station where the test was performed" msgstr "" -#: stock/models.py:2987 +#: stock/models.py:3004 msgid "Started" msgstr "" -#: stock/models.py:2988 +#: stock/models.py:3005 msgid "The timestamp of the test start" msgstr "" -#: stock/models.py:2994 +#: stock/models.py:3011 msgid "Finished" msgstr "" -#: stock/models.py:2995 +#: stock/models.py:3012 msgid "The timestamp of the test finish" msgstr "" @@ -8677,8 +8732,8 @@ msgstr "" msgid "Quantity must not exceed available stock quantity ({q})" msgstr "" -#: stock/serializers.py:711 stock/serializers.py:1419 stock/serializers.py:1732 -#: stock/serializers.py:1781 +#: stock/serializers.py:711 stock/serializers.py:1419 stock/serializers.py:1740 +#: stock/serializers.py:1789 msgid "Destination stock location" msgstr "" @@ -8834,19 +8889,19 @@ msgstr "" msgid "Stock transaction notes" msgstr "" -#: stock/serializers.py:1787 +#: stock/serializers.py:1795 msgid "Merge into existing stock" msgstr "" -#: stock/serializers.py:1788 +#: stock/serializers.py:1796 msgid "Merge returned items into existing stock items if possible" msgstr "" -#: stock/serializers.py:1831 +#: stock/serializers.py:1839 msgid "Next Serial Number" msgstr "" -#: stock/serializers.py:1837 +#: stock/serializers.py:1845 msgid "Previous Serial Number" msgstr "" @@ -8902,83 +8957,87 @@ msgstr "" msgid "Stock manually removed" msgstr "" -#: stock/status_codes.py:57 +#: stock/status_codes.py:56 +msgid "Serialized stock items" +msgstr "" + +#: stock/status_codes.py:58 msgid "Returned to stock" msgstr "" -#: stock/status_codes.py:60 +#: stock/status_codes.py:61 msgid "Location changed" msgstr "" -#: stock/status_codes.py:61 +#: stock/status_codes.py:62 msgid "Stock updated" msgstr "" -#: stock/status_codes.py:64 +#: stock/status_codes.py:65 msgid "Installed into assembly" msgstr "" -#: stock/status_codes.py:65 +#: stock/status_codes.py:66 msgid "Removed from assembly" msgstr "" -#: stock/status_codes.py:67 +#: stock/status_codes.py:68 msgid "Installed component item" msgstr "" -#: stock/status_codes.py:68 +#: stock/status_codes.py:69 msgid "Removed component item" msgstr "" -#: stock/status_codes.py:71 +#: stock/status_codes.py:72 msgid "Split from parent item" msgstr "" -#: stock/status_codes.py:72 +#: stock/status_codes.py:73 msgid "Split child item" msgstr "" -#: stock/status_codes.py:75 +#: stock/status_codes.py:76 msgid "Merged stock items" msgstr "" -#: stock/status_codes.py:78 +#: stock/status_codes.py:79 msgid "Converted to variant" msgstr "" -#: stock/status_codes.py:81 +#: stock/status_codes.py:82 msgid "Build order output created" msgstr "" -#: stock/status_codes.py:82 +#: stock/status_codes.py:83 msgid "Build order output completed" msgstr "" -#: stock/status_codes.py:83 +#: stock/status_codes.py:84 msgid "Build order output rejected" msgstr "" -#: stock/status_codes.py:84 +#: stock/status_codes.py:85 msgid "Consumed by build order" msgstr "" -#: stock/status_codes.py:87 +#: stock/status_codes.py:88 msgid "Shipped against Sales Order" msgstr "" -#: stock/status_codes.py:90 +#: stock/status_codes.py:91 msgid "Received against Purchase Order" msgstr "" -#: stock/status_codes.py:93 +#: stock/status_codes.py:94 msgid "Returned against Return Order" msgstr "" -#: stock/status_codes.py:96 +#: stock/status_codes.py:97 msgid "Sent to customer" msgstr "" -#: stock/status_codes.py:97 +#: stock/status_codes.py:98 msgid "Returned from customer" msgstr "" diff --git a/src/backend/InvenTree/locale/lt/LC_MESSAGES/django.po b/src/backend/InvenTree/locale/lt/LC_MESSAGES/django.po index a97132b8df..c166ce8cbe 100644 --- a/src/backend/InvenTree/locale/lt/LC_MESSAGES/django.po +++ b/src/backend/InvenTree/locale/lt/LC_MESSAGES/django.po @@ -2,8 +2,8 @@ msgid "" msgstr "" "Project-Id-Version: inventree\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-11-19 04:55+0000\n" -"PO-Revision-Date: 2025-11-19 04:59\n" +"POT-Creation-Date: 2025-12-07 07:33+0000\n" +"PO-Revision-Date: 2025-12-07 07:36\n" "Last-Translator: \n" "Language-Team: Lithuanian\n" "Language: lt_LT\n" @@ -57,7 +57,7 @@ msgstr "" msgid "This field must be unique." msgstr "" -#: InvenTree/api.py:775 +#: InvenTree/api.py:803 msgid "User does not have permission to view this model" msgstr "Vartotojas neturi teisių peržiūrėti šio modelio" @@ -81,22 +81,22 @@ msgstr "Pateiktas pagrindinis el. pašto adresas neteisingas." msgid "The provided email domain is not approved." msgstr "Pateiktas el. pašto domenas nepatvirtintas." -#: InvenTree/conversion.py:166 +#: InvenTree/conversion.py:240 #, python-brace-format msgid "Invalid unit provided ({unit})" msgstr "Neteisingai nurodytas vienetas ({unit})" -#: InvenTree/conversion.py:183 +#: InvenTree/conversion.py:257 msgid "No value provided" msgstr "Nepateikta reikšmė" -#: InvenTree/conversion.py:210 +#: InvenTree/conversion.py:284 #, python-brace-format msgid "Could not convert {original} to {unit}" msgstr "Nepavyko konvertuoti {original} į {unit}" -#: InvenTree/conversion.py:212 InvenTree/conversion.py:226 -#: InvenTree/helpers.py:597 order/models.py:720 order/models.py:1015 +#: InvenTree/conversion.py:286 InvenTree/conversion.py:300 +#: InvenTree/helpers.py:597 order/models.py:721 order/models.py:1016 msgid "Invalid quantity provided" msgstr "Pateiktas neteisingas kiekis" @@ -112,11 +112,11 @@ msgstr "Įveskite datą" msgid "Invalid decimal value" msgstr "Neteisinga dešimtainė reikšmė" -#: InvenTree/fields.py:218 InvenTree/models.py:1067 build/serializers.py:509 -#: build/serializers.py:580 build/serializers.py:1788 company/models.py:857 -#: order/models.py:1780 +#: InvenTree/fields.py:218 InvenTree/models.py:1228 build/serializers.py:517 +#: build/serializers.py:588 build/serializers.py:1796 company/models.py:811 +#: order/models.py:1781 #: report/templates/report/inventree_build_order_report.html:172 -#: stock/models.py:2848 stock/models.py:2972 stock/serializers.py:717 +#: stock/models.py:2865 stock/models.py:2989 stock/serializers.py:717 #: stock/serializers.py:893 stock/serializers.py:1035 stock/serializers.py:1336 #: stock/serializers.py:1425 stock/serializers.py:1624 msgid "Notes" @@ -171,35 +171,35 @@ msgstr "Pašalinkite HTML žymes iš šios reikšmės" msgid "Data contains prohibited markdown content" msgstr "Duomenyse yra draudžiamo „markdown“ turinio" -#: InvenTree/helpers_model.py:133 +#: InvenTree/helpers_model.py:134 msgid "Connection error" msgstr "Ryšio klaida" -#: InvenTree/helpers_model.py:138 InvenTree/helpers_model.py:145 +#: InvenTree/helpers_model.py:139 InvenTree/helpers_model.py:146 msgid "Server responded with invalid status code" msgstr "Serveris grąžino netinkamą būsenos kodą" -#: InvenTree/helpers_model.py:141 +#: InvenTree/helpers_model.py:142 msgid "Exception occurred" msgstr "Įvyko išimtis" -#: InvenTree/helpers_model.py:151 +#: InvenTree/helpers_model.py:152 msgid "Server responded with invalid Content-Length value" msgstr "Serveris grąžino neteisingą „Content-Length“ reikšmę" -#: InvenTree/helpers_model.py:154 +#: InvenTree/helpers_model.py:155 msgid "Image size is too large" msgstr "Paveikslėlio dydis per didelis" -#: InvenTree/helpers_model.py:166 +#: InvenTree/helpers_model.py:167 msgid "Image download exceeded maximum size" msgstr "Paveikslėlio atsisiuntimas viršijo maksimalų leistiną dydį" -#: InvenTree/helpers_model.py:171 +#: InvenTree/helpers_model.py:172 msgid "Remote server returned empty response" msgstr "Nutolęs serveris grąžino tuščią atsakymą" -#: InvenTree/helpers_model.py:179 +#: InvenTree/helpers_model.py:180 msgid "Supplied URL is not a valid image file" msgstr "Nurodytas URL nėra tinkamas paveikslėlio failas" @@ -207,7 +207,7 @@ msgstr "Nurodytas URL nėra tinkamas paveikslėlio failas" msgid "Log in to the app" msgstr "Prisijungti prie programos" -#: InvenTree/magic_login.py:41 company/models.py:172 users/serializers.py:198 +#: InvenTree/magic_login.py:41 company/models.py:173 users/serializers.py:198 msgid "Email" msgstr "El. paštas" @@ -215,160 +215,176 @@ msgstr "El. paštas" msgid "You must enable two-factor authentication before doing anything else." msgstr "Prieš atliekant bet kokius veiksmus, privalote įjungti dviejų veiksnių autentifikavimą." -#: InvenTree/models.py:111 +#: InvenTree/models.py:114 msgid "Error running plugin validation" msgstr "Klaida vykdant įskiepio patvirtinimą" -#: InvenTree/models.py:192 +#: InvenTree/models.py:195 msgid "Metadata must be a python dict object" msgstr "Metaduomenys turi būti „Python“ žodyno tipo objektas" -#: InvenTree/models.py:198 +#: InvenTree/models.py:201 msgid "Plugin Metadata" msgstr "Įskiepio metaduomenys" -#: InvenTree/models.py:199 +#: InvenTree/models.py:202 msgid "JSON metadata field, for use by external plugins" msgstr "JSON metaduomenų laukas, skirtas naudoti išoriniams įskiepiams" -#: InvenTree/models.py:382 +#: InvenTree/models.py:385 msgid "Improperly formatted pattern" msgstr "Netinkamai suformuotas šablonas" -#: InvenTree/models.py:389 +#: InvenTree/models.py:392 msgid "Unknown format key specified" msgstr "Nurodytas nežinomas formato raktas" -#: InvenTree/models.py:395 +#: InvenTree/models.py:398 msgid "Missing required format key" msgstr "Trūksta būtino formato rakto" -#: InvenTree/models.py:406 +#: InvenTree/models.py:409 msgid "Reference field cannot be empty" msgstr "\"Nuorodos laukas negali būti tuščias" -#: InvenTree/models.py:414 +#: InvenTree/models.py:417 msgid "Reference must match required pattern" msgstr "Nuoroda turi atitikti reikalaujamą šabloną" -#: InvenTree/models.py:445 +#: InvenTree/models.py:448 msgid "Reference number is too large" msgstr "Nuorodos numeris per didelis" -#: InvenTree/models.py:743 +#: InvenTree/models.py:896 msgid "Invalid choice" msgstr "Neteisingas pasirinkimas" -#: InvenTree/models.py:856 common/models.py:1410 common/models.py:1837 -#: common/models.py:2096 common/models.py:2221 common/serializers.py:535 -#: company/models.py:615 generic/states/serializers.py:20 machine/models.py:25 -#: part/models.py:1039 part/models.py:3850 plugin/models.py:54 +#: InvenTree/models.py:1017 common/models.py:1414 common/models.py:1841 +#: common/models.py:2102 common/models.py:2227 common/models.py:2494 +#: common/serializers.py:539 generic/states/serializers.py:20 +#: machine/models.py:25 part/models.py:1127 plugin/models.py:54 #: report/models.py:216 stock/models.py:84 msgid "Name" msgstr "Pavadinimas" -#: InvenTree/models.py:862 build/models.py:252 common/models.py:171 -#: common/models.py:2228 common/models.py:2341 company/models.py:543 -#: company/models.py:848 order/models.py:442 order/models.py:1825 -#: part/models.py:1062 part/models.py:3865 report/models.py:222 +#: InvenTree/models.py:1023 build/models.py:253 common/models.py:175 +#: common/models.py:2234 common/models.py:2347 common/models.py:2509 +#: company/models.py:545 company/models.py:802 order/models.py:443 +#: order/models.py:1826 part/models.py:1150 report/models.py:222 #: report/models.py:815 report/models.py:841 #: report/templates/report/inventree_build_order_report.html:117 #: stock/models.py:90 msgid "Description" msgstr "Aprašymas" -#: InvenTree/models.py:863 stock/models.py:91 +#: InvenTree/models.py:1024 stock/models.py:91 msgid "Description (optional)" msgstr "Aprašymas (neprivalomas)" -#: InvenTree/models.py:878 common/models.py:2394 +#: InvenTree/models.py:1039 common/models.py:2815 msgid "Path" msgstr "Kelias" -#: InvenTree/models.py:983 +#: InvenTree/models.py:1144 msgid "Duplicate names cannot exist under the same parent" msgstr "Po tuo pačiu pirminiu elementu negali būti pasikartojančių pavadinimų" -#: InvenTree/models.py:1067 +#: InvenTree/models.py:1228 msgid "Markdown notes (optional)" msgstr "Pastabos su „Markdown“ (neprivalomas)" -#: InvenTree/models.py:1098 +#: InvenTree/models.py:1259 msgid "Barcode Data" msgstr "Brūkšninio kodo duomenys" -#: InvenTree/models.py:1099 +#: InvenTree/models.py:1260 msgid "Third party barcode data" msgstr "Trečiosios šalies brūkšninio kodo duomenys" -#: InvenTree/models.py:1105 +#: InvenTree/models.py:1266 msgid "Barcode Hash" msgstr "Brūkšninio kodo maiša" -#: InvenTree/models.py:1106 +#: InvenTree/models.py:1267 msgid "Unique hash of barcode data" msgstr "Unikali brūkšninio kodo duomenų maiša\"" -#: InvenTree/models.py:1187 +#: InvenTree/models.py:1348 msgid "Existing barcode found" msgstr "Rastas esamas brūkšninis kodas" -#: InvenTree/models.py:1269 +#: InvenTree/models.py:1430 msgid "Task Failure" msgstr "Užduoties klaida" -#: InvenTree/models.py:1270 +#: InvenTree/models.py:1431 #, python-brace-format msgid "Background worker task '{f}' failed after {n} attempts" msgstr "Foninė užduotis '{f}' nepavyko po {n} bandymų" -#: InvenTree/models.py:1297 +#: InvenTree/models.py:1458 msgid "Server Error" msgstr "Serverio klaida" -#: InvenTree/models.py:1298 +#: InvenTree/models.py:1459 msgid "An error has been logged by the server." msgstr "Serveris užfiksavo klaidą." -#: InvenTree/models.py:1340 common/models.py:1748 +#: InvenTree/models.py:1501 common/models.py:1752 #: report/templates/report/inventree_bill_of_materials_report.html:126 #: report/templates/report/inventree_bill_of_materials_report.html:148 #: report/templates/report/inventree_return_order_report.html:35 msgid "Image" msgstr "Paveikslėlis" -#: InvenTree/serializers.py:253 part/models.py:4571 +#: InvenTree/serializers.py:255 part/models.py:4196 msgid "Must be a valid number" msgstr "Turi būti teisingas skaičius" -#: InvenTree/serializers.py:295 company/models.py:214 part/models.py:3285 +#: InvenTree/serializers.py:297 company/models.py:215 part/models.py:3349 msgid "Currency" msgstr "Valiuta" -#: InvenTree/serializers.py:298 part/serializers.py:1385 +#: InvenTree/serializers.py:300 part/serializers.py:1250 msgid "Select currency from available options" msgstr "Pasirinkite valiutą iš galimų variantų" -#: InvenTree/serializers.py:653 +#: InvenTree/serializers.py:654 +msgid "This field may not be null." +msgstr "" + +#: InvenTree/serializers.py:660 msgid "Invalid value" msgstr "Neteisinga reikšmė" -#: InvenTree/serializers.py:690 +#: InvenTree/serializers.py:697 msgid "Remote Image" msgstr "Nutolęs paveikslėlis" -#: InvenTree/serializers.py:691 +#: InvenTree/serializers.py:698 msgid "URL of remote image file" msgstr "Nutolusio paveikslėlio failo URL" -#: InvenTree/serializers.py:709 +#: InvenTree/serializers.py:716 msgid "Downloading images from remote URL is not enabled" msgstr "Paveikslėlių atsisiuntimas iš nutolusio URL neįjungtas" -#: InvenTree/serializers.py:716 +#: InvenTree/serializers.py:723 msgid "Failed to download image from remote URL" msgstr "Nepavyko atsisiųsti paveikslėlio iš nutolusio URL" +#: InvenTree/serializers.py:806 +msgid "Invalid content type format" +msgstr "" + +#: InvenTree/serializers.py:809 +msgid "Content type not found" +msgstr "" + +#: InvenTree/serializers.py:815 +msgid "Content type does not match required mixin class" +msgstr "" + #: InvenTree/setting/locales.py:20 msgid "Arabic" msgstr "Arabų" @@ -537,30 +553,30 @@ msgstr "Neteisingas fizinis vienetas" msgid "Not a valid currency code" msgstr "Netinkamas valiutos kodas" -#: build/api.py:54 order/api.py:111 order/api.py:270 order/api.py:1373 -#: order/serializers.py:132 +#: build/api.py:54 order/api.py:116 order/api.py:275 order/api.py:1378 +#: order/serializers.py:133 msgid "Order Status" msgstr "Užsakymo būsena" -#: build/api.py:80 build/models.py:264 +#: build/api.py:80 build/models.py:265 msgid "Parent Build" msgstr "Pirminė gamyba" -#: build/api.py:84 build/api.py:831 order/api.py:547 order/api.py:770 -#: order/api.py:1174 order/api.py:1449 stock/api.py:573 +#: build/api.py:84 build/api.py:837 order/api.py:553 order/api.py:776 +#: order/api.py:1179 order/api.py:1454 stock/api.py:573 msgid "Include Variants" msgstr "Įtraukti variantus" -#: build/api.py:100 build/api.py:466 build/api.py:845 build/models.py:270 -#: build/serializers.py:1225 build/serializers.py:1356 -#: build/serializers.py:1427 company/models.py:1067 company/serializers.py:445 -#: order/api.py:298 order/api.py:302 order/api.py:929 order/api.py:1187 -#: order/api.py:1190 order/models.py:1941 order/models.py:2108 -#: order/models.py:2109 part/api.py:1233 part/api.py:1236 part/api.py:1302 -#: part/api.py:1589 part/models.py:472 part/models.py:3296 part/models.py:3439 -#: part/models.py:3497 part/models.py:3518 part/models.py:3540 -#: part/models.py:3679 part/models.py:4046 part/models.py:4368 -#: part/models.py:4787 part/serializers.py:1928 +#: build/api.py:100 build/api.py:472 build/api.py:851 build/models.py:271 +#: build/serializers.py:1233 build/serializers.py:1364 +#: build/serializers.py:1435 company/models.py:1021 company/serializers.py:490 +#: order/api.py:303 order/api.py:307 order/api.py:934 order/api.py:1192 +#: order/api.py:1195 order/models.py:1942 order/models.py:2109 +#: order/models.py:2110 part/api.py:1160 part/api.py:1163 part/api.py:1314 +#: part/models.py:550 part/models.py:3360 part/models.py:3503 +#: part/models.py:3561 part/models.py:3582 part/models.py:3604 +#: part/models.py:3743 part/models.py:3993 part/models.py:4412 +#: part/serializers.py:1801 #: report/templates/report/inventree_bill_of_materials_report.html:110 #: report/templates/report/inventree_bill_of_materials_report.html:137 #: report/templates/report/inventree_build_order_report.html:109 @@ -580,9 +596,9 @@ msgstr "Įtraukti variantus" msgid "Part" msgstr "Detalė" -#: build/api.py:120 build/api.py:123 build/serializers.py:1438 part/api.py:980 -#: part/api.py:1316 part/api.py:1600 part/models.py:1080 part/models.py:3568 -#: part/models.py:4162 part/serializers.py:1752 stock/api.py:869 +#: build/api.py:120 build/api.py:123 build/serializers.py:1446 part/api.py:975 +#: part/api.py:1325 part/models.py:435 part/models.py:1168 part/models.py:3632 +#: part/serializers.py:1617 stock/api.py:869 msgid "Category" msgstr "Kategorija" @@ -590,7 +606,7 @@ msgstr "Kategorija" msgid "Ancestor Build" msgstr "Ankstesnė gamyba" -#: build/api.py:152 order/api.py:129 +#: build/api.py:152 order/api.py:134 msgid "Assigned to me" msgstr "Priskirta man" @@ -638,134 +654,134 @@ msgstr "Užbaigta prieš" msgid "Completed after" msgstr "Užbaigta po" -#: build/api.py:249 order/api.py:226 +#: build/api.py:249 order/api.py:231 msgid "Min Date" msgstr "Minimali data" -#: build/api.py:272 order/api.py:245 +#: build/api.py:272 order/api.py:250 msgid "Max Date" msgstr "Maksimali data" -#: build/api.py:297 build/api.py:300 part/api.py:217 stock/api.py:961 +#: build/api.py:297 build/api.py:300 part/api.py:212 stock/api.py:961 msgid "Exclude Tree" msgstr "Neįtraukti medžio struktūros" -#: build/api.py:405 +#: build/api.py:411 msgid "Build must be cancelled before it can be deleted" msgstr "Prieš ištrinant gamybą, ji turi būti atšaukta" -#: build/api.py:449 build/serializers.py:1374 part/models.py:4402 +#: build/api.py:455 build/serializers.py:1382 part/models.py:4027 msgid "Consumable" msgstr "Sunaudojama" -#: build/api.py:452 build/serializers.py:1377 part/models.py:4396 +#: build/api.py:458 build/serializers.py:1385 part/models.py:4021 msgid "Optional" msgstr "Pasirinktinai" -#: build/api.py:455 build/serializers.py:1415 common/setting/system.py:456 -#: part/models.py:1202 part/serializers.py:1714 part/serializers.py:1725 +#: build/api.py:461 build/serializers.py:1423 common/setting/system.py:456 +#: part/models.py:1290 part/serializers.py:1579 part/serializers.py:1590 #: stock/api.py:639 msgid "Assembly" msgstr "Surinkimas" -#: build/api.py:458 +#: build/api.py:464 msgid "Tracked" msgstr "Sekama" -#: build/api.py:461 build/serializers.py:1380 part/models.py:1220 +#: build/api.py:467 build/serializers.py:1388 part/models.py:1308 msgid "Testable" msgstr "Testuojama" -#: build/api.py:471 order/api.py:993 order/api.py:1363 +#: build/api.py:477 order/api.py:998 order/api.py:1368 msgid "Order Outstanding" msgstr "Liko neįvykdytų užsakymų" -#: build/api.py:481 build/serializers.py:1464 order/api.py:952 +#: build/api.py:487 build/serializers.py:1472 order/api.py:957 msgid "Allocated" msgstr "Priskirta" -#: build/api.py:490 build/models.py:1672 build/serializers.py:1393 +#: build/api.py:496 build/models.py:1673 build/serializers.py:1401 msgid "Consumed" msgstr "" -#: build/api.py:499 company/models.py:912 company/serializers.py:440 +#: build/api.py:505 company/models.py:866 company/serializers.py:467 #: templates/email/build_order_required_stock.html:19 #: templates/email/low_stock_notification.html:17 #: templates/email/part_event_notification.html:18 msgid "Available" msgstr "Prieinama" -#: build/api.py:523 build/serializers.py:1466 company/serializers.py:437 -#: order/serializers.py:1281 part/serializers.py:959 part/serializers.py:1306 -#: part/serializers.py:1761 +#: build/api.py:529 build/serializers.py:1474 company/serializers.py:464 +#: order/serializers.py:1295 part/serializers.py:844 part/serializers.py:1171 +#: part/serializers.py:1626 msgid "On Order" msgstr "Užsakyta" -#: build/api.py:868 build/models.py:117 order/models.py:1974 +#: build/api.py:874 build/models.py:118 order/models.py:1975 #: report/templates/report/inventree_build_order_report.html:105 #: stock/serializers.py:93 templates/email/build_order_completed.html:16 #: templates/email/overdue_build_order.html:15 msgid "Build Order" msgstr "Gamybos užsakymas" -#: build/api.py:882 build/api.py:886 build/serializers.py:372 -#: build/serializers.py:497 build/serializers.py:567 build/serializers.py:1251 -#: build/serializers.py:1256 order/api.py:1234 order/api.py:1239 -#: order/serializers.py:833 order/serializers.py:973 order/serializers.py:2042 +#: build/api.py:888 build/api.py:892 build/serializers.py:380 +#: build/serializers.py:505 build/serializers.py:575 build/serializers.py:1259 +#: build/serializers.py:1264 order/api.py:1239 order/api.py:1244 +#: order/serializers.py:844 order/serializers.py:984 order/serializers.py:2059 #: stock/api.py:987 stock/serializers.py:111 stock/serializers.py:601 #: stock/serializers.py:710 stock/serializers.py:888 stock/serializers.py:1418 -#: stock/serializers.py:1731 stock/serializers.py:1780 +#: stock/serializers.py:1739 stock/serializers.py:1788 #: templates/email/stale_stock_notification.html:18 users/models.py:549 msgid "Location" msgstr "Vieta" -#: build/api.py:894 +#: build/api.py:900 msgid "Output" msgstr "" -#: build/api.py:896 +#: build/api.py:902 msgid "Filter by output stock item ID. Use 'null' to find uninstalled build items." msgstr "" -#: build/models.py:118 users/ruleset.py:31 +#: build/models.py:119 users/ruleset.py:31 msgid "Build Orders" msgstr "Gamybos užsakymai" -#: build/models.py:168 +#: build/models.py:169 msgid "Assembly BOM has not been validated" msgstr "Surinkimo BOM nėra patvirtintas" -#: build/models.py:175 +#: build/models.py:176 msgid "Build order cannot be created for an inactive part" msgstr "Negalima sukurti gamybos užsakymo neaktyviai detalei" -#: build/models.py:182 +#: build/models.py:183 msgid "Build order cannot be created for an unlocked part" msgstr "Negalima sukurti gamybos užsakymo atrakintai detalei" -#: build/models.py:200 +#: build/models.py:201 msgid "Build orders can only be externally fulfilled for purchaseable parts" msgstr "" -#: build/models.py:207 order/models.py:369 +#: build/models.py:208 order/models.py:370 msgid "Responsible user or group must be specified" msgstr "Turi būti nurodytas atsakingas vartotojas arba grupė" -#: build/models.py:212 +#: build/models.py:213 msgid "Build order part cannot be changed" msgstr "Gamybos užsakymo detalės keisti negalima" -#: build/models.py:217 order/models.py:382 +#: build/models.py:218 order/models.py:383 msgid "Target date must be after start date" msgstr "Tikslinė data turi būti po pradžios datos" -#: build/models.py:245 +#: build/models.py:246 msgid "Build Order Reference" msgstr "Gamybos užsakymo nuoroda" -#: build/models.py:246 build/serializers.py:1371 order/models.py:614 -#: order/models.py:1311 order/models.py:1773 order/models.py:2712 -#: part/models.py:4442 +#: build/models.py:247 build/serializers.py:1379 order/models.py:615 +#: order/models.py:1312 order/models.py:1774 order/models.py:2713 +#: part/models.py:4067 #: report/templates/report/inventree_bill_of_materials_report.html:139 #: report/templates/report/inventree_purchase_order_report.html:35 #: report/templates/report/inventree_return_order_report.html:26 @@ -773,230 +789,230 @@ msgstr "Gamybos užsakymo nuoroda" msgid "Reference" msgstr "Nuoroda" -#: build/models.py:255 +#: build/models.py:256 msgid "Brief description of the build (optional)" msgstr "Trumpas gamybos aprašymas (neprivalomas)" -#: build/models.py:265 +#: build/models.py:266 msgid "BuildOrder to which this build is allocated" msgstr "Gamybos užsakymas, kuriam ši gamyba priskirta" -#: build/models.py:274 +#: build/models.py:275 msgid "Select part to build" msgstr "Pasirinkite detalę gamybai" -#: build/models.py:279 +#: build/models.py:280 msgid "Sales Order Reference" msgstr "Pardavimo užsakymo nuoroda" -#: build/models.py:284 +#: build/models.py:285 msgid "SalesOrder to which this build is allocated" msgstr "Pardavimo užsakymas, kuriam ši gamyba priskirta" -#: build/models.py:289 build/serializers.py:1097 +#: build/models.py:290 build/serializers.py:1105 msgid "Source Location" msgstr "Šaltinio vieta" -#: build/models.py:295 +#: build/models.py:296 msgid "Select location to take stock from for this build (leave blank to take from any stock location)" msgstr "Pasirinkite vietą atsargoms paimti šiai gamybai (palikite tuščią, jei tinka bet kuri vieta)" -#: build/models.py:301 +#: build/models.py:302 msgid "External Build" msgstr "" -#: build/models.py:302 +#: build/models.py:303 msgid "This build order is fulfilled externally" msgstr "" -#: build/models.py:307 +#: build/models.py:308 msgid "Destination Location" msgstr "Paskirties vieta" -#: build/models.py:312 +#: build/models.py:313 msgid "Select location where the completed items will be stored" msgstr "Pasirinkite vietą, kur bus laikomos užbaigtos prekės" -#: build/models.py:316 +#: build/models.py:317 msgid "Build Quantity" msgstr "Gamybos kiekis" -#: build/models.py:319 +#: build/models.py:320 msgid "Number of stock items to build" msgstr "Atsargų kiekis, kurias reikia pagaminti" -#: build/models.py:323 +#: build/models.py:324 msgid "Completed items" msgstr "Užbaigtos prekės" -#: build/models.py:325 +#: build/models.py:326 msgid "Number of stock items which have been completed" msgstr "Užbaigtų atsargų elementų skaičius" -#: build/models.py:329 +#: build/models.py:330 msgid "Build Status" msgstr "Gamybos būsena" -#: build/models.py:334 +#: build/models.py:335 msgid "Build status code" msgstr "Gamybos būsenos kodas" -#: build/models.py:343 build/serializers.py:359 order/serializers.py:849 +#: build/models.py:344 build/serializers.py:367 order/serializers.py:860 #: stock/models.py:1100 stock/serializers.py:85 stock/serializers.py:1591 msgid "Batch Code" msgstr "Partijos kodas" -#: build/models.py:347 build/serializers.py:360 +#: build/models.py:348 build/serializers.py:368 msgid "Batch code for this build output" msgstr "Šios gamybos partijos kodas" -#: build/models.py:351 order/models.py:479 order/serializers.py:186 -#: part/models.py:1283 +#: build/models.py:352 order/models.py:480 order/serializers.py:193 +#: part/models.py:1371 msgid "Creation Date" msgstr "Sukūrimo data" -#: build/models.py:357 +#: build/models.py:358 msgid "Build start date" msgstr "Gamybos pradžios data" -#: build/models.py:358 +#: build/models.py:359 msgid "Scheduled start date for this build order" msgstr "Planuojama šio gamybos užsakymo pradžios data" -#: build/models.py:364 +#: build/models.py:365 msgid "Target completion date" msgstr "Tikslinė užbaigimo data" -#: build/models.py:366 +#: build/models.py:367 msgid "Target date for build completion. Build will be overdue after this date." msgstr "Planuojama gamybos pabaigos data. Po šios datos gamyba bus pavėluota." -#: build/models.py:371 order/models.py:667 order/models.py:2751 +#: build/models.py:372 order/models.py:668 order/models.py:2752 msgid "Completion Date" msgstr "Užbaigimo data" -#: build/models.py:379 +#: build/models.py:380 msgid "completed by" msgstr "Užbaigė" -#: build/models.py:388 +#: build/models.py:389 msgid "Issued by" msgstr "Išdavė" -#: build/models.py:389 +#: build/models.py:390 msgid "User who issued this build order" msgstr "Vartotojas, kuris išdavė šį gamybos užsakymą" -#: build/models.py:398 common/models.py:180 order/api.py:179 -#: order/models.py:504 part/models.py:1300 +#: build/models.py:399 common/models.py:184 order/api.py:184 +#: order/models.py:505 part/models.py:1388 #: report/templates/report/inventree_build_order_report.html:158 msgid "Responsible" msgstr "Atsakingas" -#: build/models.py:399 +#: build/models.py:400 msgid "User or group responsible for this build order" msgstr "Vartotojas ar grupė, atsakinga už šį gamybos užsakymą" -#: build/models.py:404 stock/models.py:1093 +#: build/models.py:405 stock/models.py:1093 msgid "External Link" msgstr "Išorinė nuoroda" -#: build/models.py:406 common/models.py:1984 part/models.py:1114 +#: build/models.py:407 common/models.py:1990 part/models.py:1202 #: stock/models.py:1095 msgid "Link to external URL" msgstr "Nuoroda į išorinį URL" -#: build/models.py:411 +#: build/models.py:412 msgid "Build Priority" msgstr "Gamybos prioritetas" -#: build/models.py:414 +#: build/models.py:415 msgid "Priority of this build order" msgstr "Šio gamybos užsakymo prioritetas" -#: build/models.py:422 common/models.py:150 common/models.py:164 -#: order/api.py:165 order/models.py:451 order/models.py:1805 +#: build/models.py:423 common/models.py:154 common/models.py:168 +#: order/api.py:170 order/models.py:452 order/models.py:1806 msgid "Project Code" msgstr "Projekto kodas" -#: build/models.py:423 +#: build/models.py:424 msgid "Project code for this build order" msgstr "Šio gamybos užsakymo projekto kodas" -#: build/models.py:676 +#: build/models.py:677 msgid "Cannot complete build order with open child builds" msgstr "" -#: build/models.py:681 +#: build/models.py:682 msgid "Cannot complete build order with incomplete outputs" msgstr "" -#: build/models.py:700 build/models.py:830 +#: build/models.py:701 build/models.py:831 msgid "Failed to offload task to complete build allocations" msgstr "Nepavyko perduoti užduoties, kad būtų atlikti gamybos paskirstymai" -#: build/models.py:723 +#: build/models.py:724 #, python-brace-format msgid "Build order {build} has been completed" msgstr "Gamybos užsakymas {build} užbaigtas" -#: build/models.py:729 +#: build/models.py:730 msgid "A build order has been completed" msgstr "Gamybos užsakymas užbaigtas" -#: build/models.py:911 build/serializers.py:407 +#: build/models.py:912 build/serializers.py:415 msgid "Serial numbers must be provided for trackable parts" msgstr "Sekamoms detalėms būtina nurodyti serijos numerius" -#: build/models.py:1042 build/models.py:1129 +#: build/models.py:1043 build/models.py:1130 msgid "No build output specified" msgstr "Nepateiktas gamybos rezultatas" -#: build/models.py:1045 +#: build/models.py:1046 msgid "Build output is already completed" msgstr "Gamybos rezultatas jau užbaigtas" -#: build/models.py:1048 +#: build/models.py:1049 msgid "Build output does not match Build Order" msgstr "Gamybos rezultatas neatitinka gamybos užsakymo" -#: build/models.py:1136 build/models.py:1234 build/serializers.py:285 -#: build/serializers.py:335 build/serializers.py:965 build/serializers.py:1739 -#: order/models.py:717 order/serializers.py:658 order/serializers.py:844 -#: part/serializers.py:1708 stock/models.py:940 stock/models.py:1430 +#: build/models.py:1137 build/models.py:1235 build/serializers.py:293 +#: build/serializers.py:343 build/serializers.py:973 build/serializers.py:1747 +#: order/models.py:718 order/serializers.py:669 order/serializers.py:855 +#: part/serializers.py:1573 stock/models.py:940 stock/models.py:1430 #: stock/models.py:1878 stock/serializers.py:688 stock/serializers.py:1580 msgid "Quantity must be greater than zero" msgstr "Kiekis turi būti didesnis nei nulis" -#: build/models.py:1140 build/models.py:1239 build/serializers.py:290 +#: build/models.py:1141 build/models.py:1240 build/serializers.py:298 msgid "Quantity cannot be greater than the output quantity" msgstr "Kiekis negali viršyti rezultato kiekio" -#: build/models.py:1214 build/serializers.py:606 +#: build/models.py:1215 build/serializers.py:614 msgid "Build output has not passed all required tests" msgstr "" -#: build/models.py:1217 build/serializers.py:601 +#: build/models.py:1218 build/serializers.py:609 #, python-brace-format msgid "Build output {serial} has not passed all required tests" msgstr "Gamybos rezultatas {serial} nepraėjo visų privalomų testų" -#: build/models.py:1229 +#: build/models.py:1230 msgid "Cannot partially complete a build output with allocated items" msgstr "" -#: build/models.py:1627 +#: build/models.py:1628 msgid "Build Order Line Item" msgstr "Gamybos užsakymo eilutės įrašas" -#: build/models.py:1651 +#: build/models.py:1652 msgid "Build object" msgstr "Gamybos objektas" -#: build/models.py:1663 build/models.py:1974 build/serializers.py:271 -#: build/serializers.py:320 build/serializers.py:1392 common/models.py:1340 -#: order/models.py:1756 order/models.py:2597 order/serializers.py:1696 -#: order/serializers.py:2124 part/models.py:3453 part/models.py:4390 +#: build/models.py:1664 build/models.py:1975 build/serializers.py:279 +#: build/serializers.py:328 build/serializers.py:1400 common/models.py:1344 +#: order/models.py:1757 order/models.py:2598 order/serializers.py:1710 +#: order/serializers.py:2141 part/models.py:3517 part/models.py:4015 #: report/templates/report/inventree_bill_of_materials_report.html:138 #: report/templates/report/inventree_build_order_report.html:113 #: report/templates/report/inventree_purchase_order_report.html:36 @@ -1014,427 +1030,427 @@ msgstr "Gamybos objektas" msgid "Quantity" msgstr "Kiekis" -#: build/models.py:1664 +#: build/models.py:1665 msgid "Required quantity for build order" msgstr "Reikalingas kiekis gamybos užsakymui" -#: build/models.py:1673 +#: build/models.py:1674 msgid "Quantity of consumed stock" msgstr "" -#: build/models.py:1772 +#: build/models.py:1773 msgid "Build item must specify a build output, as master part is marked as trackable" msgstr "Gamybos elementas turi nurodyti rezultatą, nes pagrindinė detalė pažymėta kaip sekama" -#: build/models.py:1783 +#: build/models.py:1784 #, python-brace-format msgid "Allocated quantity ({q}) must not exceed available stock quantity ({a})" msgstr "Priskirtas kiekis ({q}) negali viršyti galimo atsargų kiekio ({a})" -#: build/models.py:1804 order/models.py:2546 +#: build/models.py:1805 order/models.py:2547 msgid "Stock item is over-allocated" msgstr "Atsargų elementas per daug paskirstytas" -#: build/models.py:1809 order/models.py:2549 +#: build/models.py:1810 order/models.py:2550 msgid "Allocation quantity must be greater than zero" msgstr "Priskirtas kiekis turi būti didesnis nei nulis" -#: build/models.py:1815 +#: build/models.py:1816 msgid "Quantity must be 1 for serialized stock" msgstr "Atsargoms su serijos numeriais kiekis turi būti 1" -#: build/models.py:1875 +#: build/models.py:1876 msgid "Selected stock item does not match BOM line" msgstr "Pasirinktas atsargų elementas neatitinka BOM eilutės" -#: build/models.py:1913 +#: build/models.py:1914 msgid "Allocated quantity exceeds available stock quantity" msgstr "" -#: build/models.py:1964 build/serializers.py:948 build/serializers.py:1240 -#: order/serializers.py:1533 order/serializers.py:1554 +#: build/models.py:1965 build/serializers.py:956 build/serializers.py:1248 +#: order/serializers.py:1547 order/serializers.py:1568 #: report/templates/report/inventree_sales_order_shipment_report.html:29 #: stock/api.py:1404 stock/models.py:456 stock/serializers.py:102 #: stock/serializers.py:800 stock/serializers.py:1274 stock/serializers.py:1386 msgid "Stock Item" msgstr "Atsargų elementas" -#: build/models.py:1965 +#: build/models.py:1966 msgid "Source stock item" msgstr "Šaltinio atsargų elementas" -#: build/models.py:1975 +#: build/models.py:1976 msgid "Stock quantity to allocate to build" msgstr "Atsargų kiekis, skirtas paskirstyti į gamybą" -#: build/models.py:1984 +#: build/models.py:1985 msgid "Install into" msgstr "Įdiegti į" -#: build/models.py:1985 +#: build/models.py:1986 msgid "Destination stock item" msgstr "Paskirties atsargų elementas" -#: build/serializers.py:118 +#: build/serializers.py:120 msgid "Build Level" msgstr "Gamybos lygis" -#: build/serializers.py:128 +#: build/serializers.py:136 msgid "Part Name" msgstr "Detalės pavadinimas" -#: build/serializers.py:153 +#: build/serializers.py:161 msgid "Project Code Label" msgstr "Projekto kodo etiketė" -#: build/serializers.py:219 build/serializers.py:974 +#: build/serializers.py:227 build/serializers.py:982 msgid "Build Output" msgstr "Gamybos rezultatas" -#: build/serializers.py:231 +#: build/serializers.py:239 msgid "Build output does not match the parent build" msgstr "Gamybos rezultatas neatitinka pirminės gamybos" -#: build/serializers.py:235 +#: build/serializers.py:243 msgid "Output part does not match BuildOrder part" msgstr "Rezultato detalė neatitinka gamybos užsakymo detalės" -#: build/serializers.py:239 +#: build/serializers.py:247 msgid "This build output has already been completed" msgstr "Šis gamybos rezultatas jau užbaigtas" -#: build/serializers.py:253 +#: build/serializers.py:261 msgid "This build output is not fully allocated" msgstr "Šis gamybos rezultatas nėra visiškai paskirstytas" -#: build/serializers.py:272 build/serializers.py:321 +#: build/serializers.py:280 build/serializers.py:329 msgid "Enter quantity for build output" msgstr "Įveskite kiekį gamybos rezultatui" -#: build/serializers.py:343 +#: build/serializers.py:351 msgid "Integer quantity required for trackable parts" msgstr "Sekamoms detalėms reikalingas sveikasis kiekis" -#: build/serializers.py:349 +#: build/serializers.py:357 msgid "Integer quantity required, as the bill of materials contains trackable parts" msgstr "Reikalingas sveikasis kiekis, nes komplektavimo žiniaraštyje yra sekamų detalių" -#: build/serializers.py:366 order/serializers.py:865 order/serializers.py:1700 +#: build/serializers.py:374 order/serializers.py:876 order/serializers.py:1714 #: stock/serializers.py:699 msgid "Serial Numbers" msgstr "Serijos numeriai" -#: build/serializers.py:367 +#: build/serializers.py:375 msgid "Enter serial numbers for build outputs" msgstr "Įveskite serijos numerius gamybos rezultatams" -#: build/serializers.py:373 +#: build/serializers.py:381 msgid "Stock location for build output" msgstr "Atsargų vieta gamybos rezultatams" -#: build/serializers.py:388 +#: build/serializers.py:396 msgid "Auto Allocate Serial Numbers" msgstr "Automatiškai priskirti serijos numerius" -#: build/serializers.py:390 +#: build/serializers.py:398 msgid "Automatically allocate required items with matching serial numbers" msgstr "Automatiškai priskirti reikalingas prekes su atitinkančiais serijos numeriais" -#: build/serializers.py:423 order/serializers.py:951 stock/api.py:1183 +#: build/serializers.py:431 order/serializers.py:962 stock/api.py:1183 #: stock/models.py:1901 msgid "The following serial numbers already exist or are invalid" msgstr "Šie serijos numeriai jau egzistuoja arba yra neteisingi" -#: build/serializers.py:465 build/serializers.py:521 build/serializers.py:613 +#: build/serializers.py:473 build/serializers.py:529 build/serializers.py:621 msgid "A list of build outputs must be provided" msgstr "Turi būti pateiktas gamybos rezultatų sąrašas" -#: build/serializers.py:498 +#: build/serializers.py:506 msgid "Stock location for scrapped outputs" msgstr "Atsargų vieta brokuotiems rezultatams" -#: build/serializers.py:504 +#: build/serializers.py:512 msgid "Discard Allocations" msgstr "Atmesti priskyrimus" -#: build/serializers.py:505 +#: build/serializers.py:513 msgid "Discard any stock allocations for scrapped outputs" msgstr "Atmesti visus atsargų priskyrimus brokuotiems rezultatams" -#: build/serializers.py:510 +#: build/serializers.py:518 msgid "Reason for scrapping build output(s)" msgstr "Priežastis, dėl kurios gamybos rezultatas(-ai) buvo nurašytas(-i)" -#: build/serializers.py:568 +#: build/serializers.py:576 msgid "Location for completed build outputs" msgstr "Vieta, kur laikomi užbaigti gamybos rezultatai" -#: build/serializers.py:576 +#: build/serializers.py:584 msgid "Accept Incomplete Allocation" msgstr "Priimti nepilną priskyrimą" -#: build/serializers.py:577 +#: build/serializers.py:585 msgid "Complete outputs if stock has not been fully allocated" msgstr "Užbaigti rezultatus, net jei atsargos dar nėra pilnai priskirtos" -#: build/serializers.py:702 +#: build/serializers.py:710 msgid "Consume Allocated Stock" msgstr "Sunaudoti priskirtas atsargas" -#: build/serializers.py:703 +#: build/serializers.py:711 msgid "Consume any stock which has already been allocated to this build" msgstr "Sunaudoti bet kokias šiai gamybai jau priskirtas atsargas" -#: build/serializers.py:709 +#: build/serializers.py:717 msgid "Remove Incomplete Outputs" msgstr "Pašalinti nebaigtus rezultatus" -#: build/serializers.py:710 +#: build/serializers.py:718 msgid "Delete any build outputs which have not been completed" msgstr "Ištrinti visus nebaigtus gamybos rezultatus" -#: build/serializers.py:737 +#: build/serializers.py:745 msgid "Not permitted" msgstr "Neleidžiama" -#: build/serializers.py:738 +#: build/serializers.py:746 msgid "Accept as consumed by this build order" msgstr "Priimti kaip sunaudotą šio gamybos užsakymo metu" -#: build/serializers.py:739 +#: build/serializers.py:747 msgid "Deallocate before completing this build order" msgstr "Panaikinkite priskyrimus prieš užbaigiant šį gamybos užsakymą" -#: build/serializers.py:766 +#: build/serializers.py:774 msgid "Overallocated Stock" msgstr "Per daug paskirstytos atsargos" -#: build/serializers.py:769 +#: build/serializers.py:777 msgid "How do you want to handle extra stock items assigned to the build order" msgstr "Kaip norite elgtis su papildomai šiam gamybos užsakymui priskirtomis atsargomis" -#: build/serializers.py:780 +#: build/serializers.py:788 msgid "Some stock items have been overallocated" msgstr "Kai kurios atsargos paskirstytos per daug" -#: build/serializers.py:785 +#: build/serializers.py:793 msgid "Accept Unallocated" msgstr "Priimti nepriskirtą" -#: build/serializers.py:787 +#: build/serializers.py:795 msgid "Accept that stock items have not been fully allocated to this build order" msgstr "Priimti, kad atsargos nebuvo visiškai priskirtos šiam gamybos užsakymui" -#: build/serializers.py:798 +#: build/serializers.py:806 msgid "Required stock has not been fully allocated" msgstr "Reikalingos atsargos nėra visiškai priskirtos" -#: build/serializers.py:803 order/serializers.py:524 order/serializers.py:1601 +#: build/serializers.py:811 order/serializers.py:535 order/serializers.py:1615 msgid "Accept Incomplete" msgstr "Priimti nepilną" -#: build/serializers.py:805 +#: build/serializers.py:813 msgid "Accept that the required number of build outputs have not been completed" msgstr "Priimti, kad ne visi reikalingi gamybos rezultatai buvo užbaigti" -#: build/serializers.py:816 +#: build/serializers.py:824 msgid "Required build quantity has not been completed" msgstr "Reikalingas gamybos kiekis nebuvo užbaigtas" -#: build/serializers.py:828 +#: build/serializers.py:836 msgid "Build order has open child build orders" msgstr "Gamybos užsakymas turi nebaigtų antrinių gamybų" -#: build/serializers.py:831 +#: build/serializers.py:839 msgid "Build order must be in production state" msgstr "Gamybos užsakymas turi būti gamybos būsenoje" -#: build/serializers.py:834 +#: build/serializers.py:842 msgid "Build order has incomplete outputs" msgstr "Gamybos užsakymas turi nebaigtų rezultatų" -#: build/serializers.py:873 +#: build/serializers.py:881 msgid "Build Line" msgstr "Gamybos eilutė" -#: build/serializers.py:881 +#: build/serializers.py:889 msgid "Build output" msgstr "Gamybos rezultatas" -#: build/serializers.py:889 +#: build/serializers.py:897 msgid "Build output must point to the same build" msgstr "Gamybos rezultatas turi būti susietas su ta pačia gamyba" -#: build/serializers.py:920 +#: build/serializers.py:928 msgid "Build Line Item" msgstr "Gamybos eilutės įrašas" -#: build/serializers.py:938 +#: build/serializers.py:946 msgid "bom_item.part must point to the same part as the build order" msgstr "bom_item.part turi būti ta pati detalė kaip ir gamybos užsakyme" -#: build/serializers.py:954 stock/serializers.py:1287 +#: build/serializers.py:962 stock/serializers.py:1287 msgid "Item must be in stock" msgstr "Prekė turi būti atsargose" -#: build/serializers.py:997 order/serializers.py:1587 +#: build/serializers.py:1005 order/serializers.py:1601 #, python-brace-format msgid "Available quantity ({q}) exceeded" msgstr "Viršytas prieinamas kiekis ({q})" -#: build/serializers.py:1003 +#: build/serializers.py:1011 msgid "Build output must be specified for allocation of tracked parts" msgstr "Sekamų detalių priskyrymui turi būti nurodytas gamybos rezultatas" -#: build/serializers.py:1011 +#: build/serializers.py:1019 msgid "Build output cannot be specified for allocation of untracked parts" msgstr "Negalima nurodyti gamybos rezultato nesekamoms detalėms" -#: build/serializers.py:1035 order/serializers.py:1860 +#: build/serializers.py:1043 order/serializers.py:1874 msgid "Allocation items must be provided" msgstr "Turi būti pateikti paskirstymo elementai" -#: build/serializers.py:1099 +#: build/serializers.py:1107 msgid "Stock location where parts are to be sourced (leave blank to take from any location)" msgstr "Atsargų vieta, iš kurios bus imamos detalės (palikite tuščią, jei tinka bet kuri vieta)" -#: build/serializers.py:1108 +#: build/serializers.py:1116 msgid "Exclude Location" msgstr "Neįtraukti vietos" -#: build/serializers.py:1109 +#: build/serializers.py:1117 msgid "Exclude stock items from this selected location" msgstr "Neįtraukti atsargų iš šios pasirinktos vietos" -#: build/serializers.py:1114 +#: build/serializers.py:1122 msgid "Interchangeable Stock" msgstr "Keičiamos atsargos" -#: build/serializers.py:1115 +#: build/serializers.py:1123 msgid "Stock items in multiple locations can be used interchangeably" msgstr "Atsargos iš skirtingų vietų gali būti naudojamos pakaitomis" -#: build/serializers.py:1120 +#: build/serializers.py:1128 msgid "Substitute Stock" msgstr "Pakaitinės atsargos" -#: build/serializers.py:1121 +#: build/serializers.py:1129 msgid "Allow allocation of substitute parts" msgstr "Leisti priskirti pakaitines detales" -#: build/serializers.py:1126 +#: build/serializers.py:1134 msgid "Optional Items" msgstr "Pasirenkami elementai" -#: build/serializers.py:1127 +#: build/serializers.py:1135 msgid "Allocate optional BOM items to build order" msgstr "Priskirti papildomus BOM elementus gamybos užsakymui" -#: build/serializers.py:1148 +#: build/serializers.py:1156 msgid "Failed to start auto-allocation task" msgstr "Nepavyko paleisti automatinio paskirstymo užduoties" -#: build/serializers.py:1200 +#: build/serializers.py:1208 msgid "BOM Reference" msgstr "BOM nuoroda" -#: build/serializers.py:1206 +#: build/serializers.py:1214 msgid "BOM Part ID" msgstr "BOM detalės ID" -#: build/serializers.py:1213 +#: build/serializers.py:1221 msgid "BOM Part Name" msgstr "BOM detalės pavadinimas" -#: build/serializers.py:1266 build/serializers.py:1449 +#: build/serializers.py:1274 build/serializers.py:1457 msgid "Build" msgstr "Gamyba" -#: build/serializers.py:1276 company/models.py:685 order/api.py:311 -#: order/api.py:316 order/api.py:543 order/serializers.py:650 +#: build/serializers.py:1284 company/models.py:639 order/api.py:316 +#: order/api.py:321 order/api.py:549 order/serializers.py:661 #: stock/models.py:1036 stock/serializers.py:579 msgid "Supplier Part" msgstr "Tiekėjo detalė" -#: build/serializers.py:1284 stock/serializers.py:620 +#: build/serializers.py:1292 stock/serializers.py:620 msgid "Allocated Quantity" msgstr "Priskirtas kiekis" -#: build/serializers.py:1351 +#: build/serializers.py:1359 msgid "Build Reference" msgstr "Gamybos nuoroda" -#: build/serializers.py:1361 +#: build/serializers.py:1369 msgid "Part Category Name" msgstr "Detalės kategorijos pavadinimas" -#: build/serializers.py:1383 common/setting/system.py:480 part/models.py:1214 +#: build/serializers.py:1391 common/setting/system.py:480 part/models.py:1302 msgid "Trackable" msgstr "Sekama" -#: build/serializers.py:1386 +#: build/serializers.py:1394 msgid "Inherited" msgstr "Paveldėta" -#: build/serializers.py:1389 part/models.py:4475 +#: build/serializers.py:1397 part/models.py:4100 msgid "Allow Variants" msgstr "Leisti variantus" -#: build/serializers.py:1395 build/serializers.py:1400 part/models.py:4208 -#: part/models.py:4779 stock/api.py:882 +#: build/serializers.py:1403 build/serializers.py:1408 part/models.py:3833 +#: part/models.py:4404 stock/api.py:882 msgid "BOM Item" msgstr "BOM elementas" -#: build/serializers.py:1467 order/serializers.py:1282 part/serializers.py:1310 -#: part/serializers.py:1765 +#: build/serializers.py:1475 order/serializers.py:1296 part/serializers.py:1175 +#: part/serializers.py:1630 msgid "In Production" msgstr "Gamyboje" -#: build/serializers.py:1469 part/serializers.py:950 part/serializers.py:1314 +#: build/serializers.py:1477 part/serializers.py:835 part/serializers.py:1179 msgid "Scheduled to Build" msgstr "" -#: build/serializers.py:1472 part/serializers.py:987 +#: build/serializers.py:1480 part/serializers.py:872 msgid "External Stock" msgstr "Išorinės atsargos" -#: build/serializers.py:1473 part/serializers.py:1300 part/serializers.py:1808 +#: build/serializers.py:1481 part/serializers.py:1165 part/serializers.py:1673 msgid "Available Stock" msgstr "Prieinamos atsargos" -#: build/serializers.py:1475 +#: build/serializers.py:1483 msgid "Available Substitute Stock" msgstr "Prieinamos pakaitinės atsargos" -#: build/serializers.py:1478 +#: build/serializers.py:1486 msgid "Available Variant Stock" msgstr "Prieinamos variantų atsargos" -#: build/serializers.py:1752 +#: build/serializers.py:1760 msgid "Consumed quantity exceeds allocated quantity" msgstr "" -#: build/serializers.py:1789 +#: build/serializers.py:1797 msgid "Optional notes for the stock consumption" msgstr "" -#: build/serializers.py:1806 +#: build/serializers.py:1814 msgid "Build item must point to the correct build order" msgstr "" -#: build/serializers.py:1811 +#: build/serializers.py:1819 msgid "Duplicate build item allocation" msgstr "" -#: build/serializers.py:1829 +#: build/serializers.py:1837 msgid "Build line must point to the correct build order" msgstr "" -#: build/serializers.py:1834 +#: build/serializers.py:1842 msgid "Duplicate build line allocation" msgstr "" -#: build/serializers.py:1846 +#: build/serializers.py:1854 msgid "At least one item or line must be provided" msgstr "" @@ -1482,702 +1498,826 @@ msgstr "Vėluojantis gamybos užsakymas" msgid "Build order {bo} is now overdue" msgstr "Gamybos užsakymas {bo} dabar vėluoja" -#: common/api.py:694 +#: common/api.py:701 msgid "Is Link" msgstr "Yra nuoroda" -#: common/api.py:702 +#: common/api.py:709 msgid "Is File" msgstr "Yra failas" -#: common/api.py:745 +#: common/api.py:756 msgid "User does not have permission to delete these attachments" msgstr "Vartotojas neturi teisės ištrinti šių priedų" -#: common/api.py:762 +#: common/api.py:769 msgid "User does not have permission to delete this attachment" msgstr "Vartotojas neturi teisės ištrinti šio priedo" -#: common/currency.py:122 +#: common/currency.py:130 msgid "Invalid currency code" msgstr "Netinkamas valiutos kodas" -#: common/currency.py:124 +#: common/currency.py:132 msgid "Duplicate currency code" msgstr "Pasikartojantis valiutos kodas" -#: common/currency.py:129 +#: common/currency.py:137 msgid "No valid currency codes provided" msgstr "Nepateikta jokių galiojančių valiutos kodų" -#: common/currency.py:146 +#: common/currency.py:154 msgid "No plugin" msgstr "Nėra papildinio" -#: common/models.py:101 common/models.py:126 common/models.py:2729 +#: common/models.py:105 common/models.py:130 common/models.py:3150 msgid "Updated" msgstr "Atnaujinta" -#: common/models.py:102 common/models.py:127 +#: common/models.py:106 common/models.py:131 msgid "Timestamp of last update" msgstr "Paskutinio atnaujinimo laiko žymė" -#: common/models.py:139 +#: common/models.py:143 msgid "Update By" msgstr "" -#: common/models.py:140 +#: common/models.py:144 msgid "User who last updated this object" msgstr "" -#: common/models.py:165 +#: common/models.py:169 msgid "Unique project code" msgstr "Unikalus projekto kodas" -#: common/models.py:172 +#: common/models.py:176 msgid "Project description" msgstr "Projekto aprašymas" -#: common/models.py:181 +#: common/models.py:185 msgid "User or group responsible for this project" msgstr "Vartotojas arba grupė, atsakinga už šį projektą" -#: common/models.py:771 common/models.py:1272 common/models.py:1310 +#: common/models.py:775 common/models.py:1276 common/models.py:1314 msgid "Settings key" msgstr "Nustatymo raktas" -#: common/models.py:775 +#: common/models.py:779 msgid "Settings value" msgstr "Nustatymo reikšmė" -#: common/models.py:830 +#: common/models.py:834 msgid "Chosen value is not a valid option" msgstr "Pasirinkta reikšmė yra netinkama" -#: common/models.py:846 +#: common/models.py:850 msgid "Value must be a boolean value" msgstr "Reikšmė turi būti loginė (taip/ne)" -#: common/models.py:854 +#: common/models.py:858 msgid "Value must be an integer value" msgstr "Reikšmė turi būti sveikasis skaičius" -#: common/models.py:862 +#: common/models.py:866 msgid "Value must be a valid number" msgstr "Reikšmė turi būti tinkamas skaičius" -#: common/models.py:887 +#: common/models.py:891 msgid "Value does not pass validation checks" msgstr "Reikšmė neatitinka patikros taisyklių" -#: common/models.py:909 +#: common/models.py:913 msgid "Key string must be unique" msgstr "Raktas turi būti unikalus" -#: common/models.py:1318 common/models.py:1319 common/models.py:1423 -#: common/models.py:1424 common/models.py:1669 common/models.py:1670 -#: common/models.py:2000 common/models.py:2001 common/models.py:2382 -#: importer/models.py:100 part/models.py:3547 part/models.py:3575 +#: common/models.py:1322 common/models.py:1323 common/models.py:1427 +#: common/models.py:1428 common/models.py:1673 common/models.py:1674 +#: common/models.py:2006 common/models.py:2007 common/models.py:2803 +#: importer/models.py:100 part/models.py:3611 part/models.py:3639 #: plugin/models.py:355 plugin/models.py:356 #: report/templates/report/inventree_test_report.html:105 users/models.py:124 #: users/models.py:501 msgid "User" msgstr "Vartotojas" -#: common/models.py:1341 +#: common/models.py:1345 msgid "Price break quantity" msgstr "Kiekio ribinis taškas kainai" -#: common/models.py:1348 company/serializers.py:564 order/models.py:1842 -#: order/models.py:3043 +#: common/models.py:1352 company/serializers.py:349 order/models.py:1843 +#: order/models.py:3044 msgid "Price" msgstr "Kaina" -#: common/models.py:1349 +#: common/models.py:1353 msgid "Unit price at specified quantity" msgstr "Vieneto kaina nurodytam kiekiui" -#: common/models.py:1400 common/models.py:1585 +#: common/models.py:1404 common/models.py:1589 msgid "Endpoint" msgstr "Galutinis taškas" -#: common/models.py:1401 +#: common/models.py:1405 msgid "Endpoint at which this webhook is received" msgstr "Galutinis taškas, kuriuo priimamas šis webhook'as" -#: common/models.py:1411 +#: common/models.py:1415 msgid "Name for this webhook" msgstr "Šio webhook'o pavadinimas" -#: common/models.py:1415 common/models.py:2241 common/models.py:2348 -#: company/models.py:191 company/models.py:822 machine/models.py:40 -#: part/models.py:1237 plugin/models.py:69 stock/api.py:642 users/models.py:195 +#: common/models.py:1419 common/models.py:2247 common/models.py:2354 +#: company/models.py:192 company/models.py:776 machine/models.py:40 +#: part/models.py:1325 plugin/models.py:69 stock/api.py:642 users/models.py:195 #: users/models.py:554 users/serializers.py:314 msgid "Active" msgstr "Aktyvus" -#: common/models.py:1415 +#: common/models.py:1419 msgid "Is this webhook active" msgstr "Ar šis webhook'as aktyvus" -#: common/models.py:1431 users/models.py:172 +#: common/models.py:1435 users/models.py:172 msgid "Token" msgstr "Raktas" -#: common/models.py:1432 +#: common/models.py:1436 msgid "Token for access" msgstr "Prieigos raktas" -#: common/models.py:1440 +#: common/models.py:1444 msgid "Secret" msgstr "Slaptas raktas" -#: common/models.py:1441 +#: common/models.py:1445 msgid "Shared secret for HMAC" msgstr "Bendras slaptas HMAC raktas" -#: common/models.py:1549 common/models.py:2619 +#: common/models.py:1553 common/models.py:3040 msgid "Message ID" msgstr "Pranešimo ID" -#: common/models.py:1550 common/models.py:2609 +#: common/models.py:1554 common/models.py:3030 msgid "Unique identifier for this message" msgstr "Unikalus pranešimo identifikatorius" -#: common/models.py:1558 +#: common/models.py:1562 msgid "Host" msgstr "Pagrindinis serveris" -#: common/models.py:1559 +#: common/models.py:1563 msgid "Host from which this message was received" msgstr "Serveris, iš kurio gautas pranešimas" -#: common/models.py:1567 +#: common/models.py:1571 msgid "Header" msgstr "Antraštė" -#: common/models.py:1568 +#: common/models.py:1572 msgid "Header of this message" msgstr "Šio pranešimo antraštė" -#: common/models.py:1575 +#: common/models.py:1579 msgid "Body" msgstr "Turinys" -#: common/models.py:1576 +#: common/models.py:1580 msgid "Body of this message" msgstr "Šio pranešimo turinys" -#: common/models.py:1586 +#: common/models.py:1590 msgid "Endpoint on which this message was received" msgstr "Galutinis taškas, kuriame gautas pranešimas" -#: common/models.py:1591 +#: common/models.py:1595 msgid "Worked on" msgstr "Apdorota" -#: common/models.py:1592 +#: common/models.py:1596 msgid "Was the work on this message finished?" msgstr "Ar darbas su šiuo pranešimu baigtas?" -#: common/models.py:1718 +#: common/models.py:1722 msgid "Id" msgstr "ID" -#: common/models.py:1720 +#: common/models.py:1724 msgid "Title" msgstr "Pavadinimas" -#: common/models.py:1722 common/models.py:1983 company/models.py:185 -#: company/models.py:467 company/models.py:534 company/models.py:839 -#: order/models.py:457 order/models.py:1786 order/models.py:2343 -#: part/models.py:1113 +#: common/models.py:1726 common/models.py:1989 company/models.py:186 +#: company/models.py:468 company/models.py:536 company/models.py:793 +#: order/models.py:458 order/models.py:1787 order/models.py:2344 +#: part/models.py:1201 #: report/templates/report/inventree_build_order_report.html:164 msgid "Link" msgstr "Nuoroda" -#: common/models.py:1724 +#: common/models.py:1728 msgid "Published" msgstr "Paskelbta" -#: common/models.py:1726 +#: common/models.py:1730 msgid "Author" msgstr "Autorius" -#: common/models.py:1728 +#: common/models.py:1732 msgid "Summary" msgstr "Santrauka" -#: common/models.py:1731 common/models.py:2586 +#: common/models.py:1735 common/models.py:3007 msgid "Read" msgstr "Perskaityta" -#: common/models.py:1731 +#: common/models.py:1735 msgid "Was this news item read?" msgstr "Ar ši naujiena buvo perskaityta?" -#: common/models.py:1748 +#: common/models.py:1752 msgid "Image file" msgstr "Paveikslėlio failas" -#: common/models.py:1760 +#: common/models.py:1764 msgid "Target model type for this image" msgstr "Modelio tipas, kuriam priskiriamas šis paveikslėlis" -#: common/models.py:1764 +#: common/models.py:1768 msgid "Target model ID for this image" msgstr "Modelio ID, kuriam priskiriamas šis paveikslėlis" -#: common/models.py:1786 +#: common/models.py:1790 msgid "Custom Unit" msgstr "Pasirinktinis vienetas" -#: common/models.py:1804 +#: common/models.py:1808 msgid "Unit symbol must be unique" msgstr "Vieneto simbolis turi būti unikalus" -#: common/models.py:1819 +#: common/models.py:1823 msgid "Unit name must be a valid identifier" msgstr "Vieneto pavadinimas turi būti tinkamas identifikatorius" -#: common/models.py:1838 +#: common/models.py:1842 msgid "Unit name" msgstr "Vieneto pavadinimas" -#: common/models.py:1845 +#: common/models.py:1849 msgid "Symbol" msgstr "Simbolis" -#: common/models.py:1846 +#: common/models.py:1850 msgid "Optional unit symbol" msgstr "Nebūtinas vieneto simbolis" -#: common/models.py:1852 +#: common/models.py:1856 msgid "Definition" msgstr "Apibrėžimas" -#: common/models.py:1853 +#: common/models.py:1857 msgid "Unit definition" msgstr "Vieneto apibrėžimas" -#: common/models.py:1911 common/models.py:1974 stock/models.py:2967 +#: common/models.py:1917 common/models.py:1980 stock/models.py:2984 #: stock/serializers.py:247 msgid "Attachment" msgstr "Priedas" -#: common/models.py:1928 +#: common/models.py:1934 msgid "Missing file" msgstr "Trūksta failo" -#: common/models.py:1929 +#: common/models.py:1935 msgid "Missing external link" msgstr "Trūksta išorinės nuorodos" -#: common/models.py:1966 +#: common/models.py:1972 common/models.py:2488 msgid "Model type" msgstr "Modelio tipas" -#: common/models.py:1967 +#: common/models.py:1973 msgid "Target model type for image" msgstr "Modelio tipas, kuriam skirtas paveikslėlis" -#: common/models.py:1975 +#: common/models.py:1981 msgid "Select file to attach" msgstr "Pasirinkite failą priedui" -#: common/models.py:1991 +#: common/models.py:1997 msgid "Comment" msgstr "Komentaras" -#: common/models.py:1992 +#: common/models.py:1998 msgid "Attachment comment" msgstr "Komentaras prie priedo" -#: common/models.py:2008 +#: common/models.py:2014 msgid "Upload date" msgstr "Įkėlimo data" -#: common/models.py:2009 +#: common/models.py:2015 msgid "Date the file was uploaded" msgstr "Failo įkėlimo data" -#: common/models.py:2013 +#: common/models.py:2019 msgid "File size" msgstr "Failo dydis" -#: common/models.py:2013 +#: common/models.py:2019 msgid "File size in bytes" msgstr "Failo dydis baitais" -#: common/models.py:2051 common/serializers.py:684 +#: common/models.py:2057 common/serializers.py:688 msgid "Invalid model type specified for attachment" msgstr "Netinkamas modelio tipas priedui" -#: common/models.py:2072 +#: common/models.py:2078 msgid "Custom State" msgstr "Pasirinktinė būsena" -#: common/models.py:2073 +#: common/models.py:2079 msgid "Custom States" msgstr "Pasirinktinės būsenos" -#: common/models.py:2078 +#: common/models.py:2084 msgid "Reference Status Set" msgstr "Nuorodos būsenų rinkinys" -#: common/models.py:2079 +#: common/models.py:2085 msgid "Status set that is extended with this custom state" msgstr "Būsenų rinkinys, papildomas šia pasirinktine būsena" -#: common/models.py:2083 generic/states/serializers.py:18 +#: common/models.py:2089 generic/states/serializers.py:18 msgid "Logical Key" msgstr "Loginis raktas" -#: common/models.py:2085 +#: common/models.py:2091 msgid "State logical key that is equal to this custom state in business logic" msgstr "Loginis būsenos raktas, atitinkantis šią pasirinkitinę būseną" -#: common/models.py:2090 common/models.py:2329 company/models.py:622 -#: machine/serializers.py:27 -#: report/templates/report/inventree_test_report.html:104 stock/models.py:2959 +#: common/models.py:2096 common/models.py:2335 machine/serializers.py:27 +#: report/templates/report/inventree_test_report.html:104 stock/models.py:2976 msgid "Value" msgstr "Reikšmė" -#: common/models.py:2091 +#: common/models.py:2097 msgid "Numerical value that will be saved in the models database" msgstr "Skaitinė reikšmė, saugoma modelio duomenų bazėje" -#: common/models.py:2097 +#: common/models.py:2103 msgid "Name of the state" msgstr "Būsenos pavadinimas" -#: common/models.py:2106 common/models.py:2335 generic/states/serializers.py:22 +#: common/models.py:2112 common/models.py:2341 generic/states/serializers.py:22 msgid "Label" msgstr "Etiketė" -#: common/models.py:2107 +#: common/models.py:2113 msgid "Label that will be displayed in the frontend" msgstr "Etiketė, rodoma vartotojo sąsajoje" -#: common/models.py:2114 generic/states/serializers.py:24 +#: common/models.py:2120 generic/states/serializers.py:24 msgid "Color" msgstr "Spalva" -#: common/models.py:2115 +#: common/models.py:2121 msgid "Color that will be displayed in the frontend" msgstr "Spalva, rodoma vartotojo sąsajoje" -#: common/models.py:2123 +#: common/models.py:2129 msgid "Model" msgstr "Modelis" -#: common/models.py:2124 +#: common/models.py:2130 msgid "Model this state is associated with" msgstr "Modelis, su kuriuo susieta būsena" -#: common/models.py:2139 +#: common/models.py:2145 msgid "Model must be selected" msgstr "Turi būti pasirinktas modelis" -#: common/models.py:2142 +#: common/models.py:2148 msgid "Key must be selected" msgstr "Turi būti pasirinktas raktas" -#: common/models.py:2145 +#: common/models.py:2151 msgid "Logical key must be selected" msgstr "Turi būti pasirinktas loginis raktas" -#: common/models.py:2149 +#: common/models.py:2155 msgid "Key must be different from logical key" msgstr "Raktas turi skirtis nuo loginio rakto" -#: common/models.py:2156 +#: common/models.py:2162 msgid "Valid reference status class must be provided" msgstr "Turi būti pateikta tinkama nuorodos būsenos klasė" -#: common/models.py:2162 +#: common/models.py:2168 msgid "Key must be different from the logical keys of the reference status" msgstr "Raktas turi skirtis nuo nuorodos būsenų loginių raktų" -#: common/models.py:2169 +#: common/models.py:2175 msgid "Logical key must be in the logical keys of the reference status" msgstr "Loginis raktas turi būti tarp nuorodos būsenų loginių raktų" -#: common/models.py:2176 +#: common/models.py:2182 msgid "Name must be different from the names of the reference status" msgstr "Pavadinimas turi skirtis nuo nuorodos būsenų pavadinimų" -#: common/models.py:2216 common/models.py:2323 part/models.py:3889 +#: common/models.py:2222 common/models.py:2329 common/models.py:2533 msgid "Selection List" msgstr "Pasirinkimų sąrašas" -#: common/models.py:2217 +#: common/models.py:2223 msgid "Selection Lists" msgstr "Pasirinkimų sąrašai" -#: common/models.py:2222 +#: common/models.py:2228 msgid "Name of the selection list" msgstr "Pasirinkimų sąrašo pavadinimas" -#: common/models.py:2229 +#: common/models.py:2235 msgid "Description of the selection list" msgstr "Pasirinkimų sąrašo aprašymas" -#: common/models.py:2235 part/models.py:1242 +#: common/models.py:2241 part/models.py:1330 msgid "Locked" msgstr "Užrakinta" -#: common/models.py:2236 +#: common/models.py:2242 msgid "Is this selection list locked?" msgstr "Ar šis sąrašas užrakintas?" -#: common/models.py:2242 +#: common/models.py:2248 msgid "Can this selection list be used?" msgstr "Ar šį pasirinkimų sąrašą galima naudoti?" -#: common/models.py:2250 +#: common/models.py:2256 msgid "Source Plugin" msgstr "Šaltinio papildinys" -#: common/models.py:2251 +#: common/models.py:2257 msgid "Plugin which provides the selection list" msgstr "Papildinys, pateikiantis šį pasirinkimų sąrašą" -#: common/models.py:2256 +#: common/models.py:2262 msgid "Source String" msgstr "Šaltinio eilutė" -#: common/models.py:2257 +#: common/models.py:2263 msgid "Optional string identifying the source used for this list" msgstr "Neprivaloma eilutė, identifikuojanti šaltinį, naudotą šiam sąrašui" -#: common/models.py:2266 +#: common/models.py:2272 msgid "Default Entry" msgstr "Numatytasis įrašas" -#: common/models.py:2267 +#: common/models.py:2273 msgid "Default entry for this selection list" msgstr "Numatytasis šio pasirinkimų sąrašo įrašas" -#: common/models.py:2272 common/models.py:2724 +#: common/models.py:2278 common/models.py:3145 msgid "Created" msgstr "Sukurta" -#: common/models.py:2273 +#: common/models.py:2279 msgid "Date and time that the selection list was created" msgstr "Data ir laikas, kada buvo sukurtas pasirinkimų sąrašas" -#: common/models.py:2278 +#: common/models.py:2284 msgid "Last Updated" msgstr "Paskutinį kartą atnaujinta" -#: common/models.py:2279 +#: common/models.py:2285 msgid "Date and time that the selection list was last updated" msgstr "Data ir laikas, kada paskutinį kartą buvo atnaujintas sąrašas" -#: common/models.py:2313 +#: common/models.py:2319 msgid "Selection List Entry" msgstr "Pasirinkimų sąrašo įrašas" -#: common/models.py:2314 +#: common/models.py:2320 msgid "Selection List Entries" msgstr "Pasirinkimų sąrašo įrašai" -#: common/models.py:2324 +#: common/models.py:2330 msgid "Selection list to which this entry belongs" msgstr "Pasirinkimų sąrašas, kuriam priklauso šis įrašas" -#: common/models.py:2330 +#: common/models.py:2336 msgid "Value of the selection list entry" msgstr "Pasirinkimų sąrašo įrašo reikšmė" -#: common/models.py:2336 +#: common/models.py:2342 msgid "Label for the selection list entry" msgstr "Pasirinkimų įrašo etiketė" -#: common/models.py:2342 +#: common/models.py:2348 msgid "Description of the selection list entry" msgstr "Pasirinkimų įrašo aprašymas" -#: common/models.py:2349 +#: common/models.py:2355 msgid "Is this selection list entry active?" msgstr "Ar šis sąrašo įrašas aktyvus?" -#: common/models.py:2367 -msgid "Barcode Scan" -msgstr "Brūkšninio kodo nuskaitymas" +#: common/models.py:2387 +msgid "Parameter Template" +msgstr "Parametro šablonas" -#: common/models.py:2371 importer/models.py:546 part/models.py:4060 -msgid "Data" -msgstr "Data" - -#: common/models.py:2372 -msgid "Barcode data" -msgstr "Brūkšninio kodo duomenys" - -#: common/models.py:2383 -msgid "User who scanned the barcode" -msgstr "Vartotojas, nuskaitęs brūkšninį kodą" - -#: common/models.py:2388 importer/models.py:69 -msgid "Timestamp" -msgstr "Laiko žymė" - -#: common/models.py:2389 -msgid "Date and time of the barcode scan" -msgstr "Brūkšninio kodo nuskaitymo data ir laikas" - -#: common/models.py:2395 -msgid "URL endpoint which processed the barcode" -msgstr "URL galutinis taškas, kuris apdorojo brūkšninį kodą" - -#: common/models.py:2402 order/models.py:1832 plugin/serializers.py:93 -msgid "Context" -msgstr "Kontekstas" - -#: common/models.py:2403 -msgid "Context data for the barcode scan" -msgstr "Konteksto duomenys brūkšninio kodo nuskaitymui" - -#: common/models.py:2410 -msgid "Response" -msgstr "Atsakas" - -#: common/models.py:2411 -msgid "Response data from the barcode scan" -msgstr "Atsako duomenys iš brūkšninio kodo nuskaitymo" - -#: common/models.py:2417 report/templates/report/inventree_test_report.html:103 -#: stock/models.py:2953 -msgid "Result" -msgstr "Rezultatas" - -#: common/models.py:2418 -msgid "Was the barcode scan successful?" -msgstr "Ar brūkšninio kodo nuskaitymas buvo sėkmingas?" - -#: common/models.py:2500 -msgid "An error occurred" +#: common/models.py:2388 +msgid "Parameter Templates" msgstr "" -#: common/models.py:2521 -msgid "INVE-E8: Email log deletion is protected. Set INVENTREE_PROTECT_EMAIL_LOG to False to allow deletion." +#: common/models.py:2425 +msgid "Checkbox parameters cannot have units" +msgstr "Žymimojo laukelio parametrai negali turėti matavimo vienetų" + +#: common/models.py:2430 +msgid "Checkbox parameters cannot have choices" +msgstr "Žymimojo laukelio parametrai negali turėti pasirinkimų" + +#: common/models.py:2450 part/models.py:3707 +msgid "Choices must be unique" +msgstr "Pasirinkimai turi būti unikalūs" + +#: common/models.py:2467 +msgid "Parameter template name must be unique" +msgstr "Parametro šablono pavadinimas turi būti unikalus" + +#: common/models.py:2489 +msgid "Target model type for this parameter template" msgstr "" -#: common/models.py:2568 -msgid "Email Message" +#: common/models.py:2495 +msgid "Parameter Name" +msgstr "Parametro pavadinimas" + +#: common/models.py:2501 part/models.py:1283 +msgid "Units" +msgstr "Vienetai" + +#: common/models.py:2502 +msgid "Physical units for this parameter" +msgstr "Fiziniai šio parametro vienetai" + +#: common/models.py:2510 +msgid "Parameter description" +msgstr "Parametro aprašymas" + +#: common/models.py:2516 +msgid "Checkbox" +msgstr "Žymimasis laukelis" + +#: common/models.py:2517 +msgid "Is this parameter a checkbox?" +msgstr "Ar šis parametras yra žymimasis laukelis?" + +#: common/models.py:2522 part/models.py:3794 +msgid "Choices" +msgstr "Pasirinkimai" + +#: common/models.py:2523 +msgid "Valid choices for this parameter (comma-separated)" +msgstr "Galimi pasirinkimai šiam parametrui (atskirti kableliais)" + +#: common/models.py:2534 +msgid "Selection list for this parameter" +msgstr "Pasirinkimų sąrašas šiam parametrui" + +#: common/models.py:2539 part/models.py:3769 report/models.py:287 +msgid "Enabled" +msgstr "Įjungta" + +#: common/models.py:2540 +msgid "Is this parameter template enabled?" msgstr "" -#: common/models.py:2569 -msgid "Email Messages" -msgstr "" - -#: common/models.py:2576 -msgid "Announced" -msgstr "" - -#: common/models.py:2578 -msgid "Sent" -msgstr "" - -#: common/models.py:2579 -msgid "Failed" +#: common/models.py:2581 +msgid "Parameter" msgstr "" #: common/models.py:2582 -msgid "Delivered" -msgstr "" - -#: common/models.py:2590 -msgid "Confirmed" -msgstr "" - -#: common/models.py:2596 -msgid "Inbound" -msgstr "" - -#: common/models.py:2597 -msgid "Outbound" -msgstr "" - -#: common/models.py:2602 -msgid "No Reply" -msgstr "" - -#: common/models.py:2603 -msgid "Track Delivery" -msgstr "" - -#: common/models.py:2604 -msgid "Track Read" -msgstr "" - -#: common/models.py:2605 -msgid "Track Click" -msgstr "" - -#: common/models.py:2608 common/models.py:2711 -msgid "Global ID" -msgstr "" - -#: common/models.py:2621 -msgid "Identifier for this message (might be supplied by external system)" +msgid "Parameters" msgstr "" #: common/models.py:2628 +msgid "Invalid choice for parameter value" +msgstr "Neteisingas pasirinkimas parametro reikšmei" + +#: common/models.py:2698 common/serializers.py:783 +msgid "Invalid model type specified for parameter" +msgstr "" + +#: common/models.py:2734 +msgid "Model ID" +msgstr "" + +#: common/models.py:2735 +msgid "ID of the target model for this parameter" +msgstr "" + +#: common/models.py:2744 common/setting/system.py:450 report/models.py:373 +#: report/models.py:669 report/serializers.py:94 report/serializers.py:135 +#: stock/serializers.py:234 +msgid "Template" +msgstr "Šablonas" + +#: common/models.py:2745 +msgid "Parameter template" +msgstr "" + +#: common/models.py:2750 common/models.py:2792 importer/models.py:546 +msgid "Data" +msgstr "Data" + +#: common/models.py:2751 +msgid "Parameter Value" +msgstr "Parametro reikšmė" + +#: common/models.py:2760 company/models.py:810 order/serializers.py:894 +#: order/serializers.py:2064 part/models.py:4075 part/models.py:4444 +#: report/templates/report/inventree_bill_of_materials_report.html:140 +#: report/templates/report/inventree_purchase_order_report.html:39 +#: report/templates/report/inventree_return_order_report.html:27 +#: report/templates/report/inventree_sales_order_report.html:32 +#: report/templates/report/inventree_stock_location_report.html:105 +#: stock/serializers.py:813 +msgid "Note" +msgstr "Pastaba" + +#: common/models.py:2761 stock/serializers.py:718 +msgid "Optional note field" +msgstr "Neprivalomas pastabų laukas" + +#: common/models.py:2788 +msgid "Barcode Scan" +msgstr "Brūkšninio kodo nuskaitymas" + +#: common/models.py:2793 +msgid "Barcode data" +msgstr "Brūkšninio kodo duomenys" + +#: common/models.py:2804 +msgid "User who scanned the barcode" +msgstr "Vartotojas, nuskaitęs brūkšninį kodą" + +#: common/models.py:2809 importer/models.py:69 +msgid "Timestamp" +msgstr "Laiko žymė" + +#: common/models.py:2810 +msgid "Date and time of the barcode scan" +msgstr "Brūkšninio kodo nuskaitymo data ir laikas" + +#: common/models.py:2816 +msgid "URL endpoint which processed the barcode" +msgstr "URL galutinis taškas, kuris apdorojo brūkšninį kodą" + +#: common/models.py:2823 order/models.py:1833 plugin/serializers.py:93 +msgid "Context" +msgstr "Kontekstas" + +#: common/models.py:2824 +msgid "Context data for the barcode scan" +msgstr "Konteksto duomenys brūkšninio kodo nuskaitymui" + +#: common/models.py:2831 +msgid "Response" +msgstr "Atsakas" + +#: common/models.py:2832 +msgid "Response data from the barcode scan" +msgstr "Atsako duomenys iš brūkšninio kodo nuskaitymo" + +#: common/models.py:2838 report/templates/report/inventree_test_report.html:103 +#: stock/models.py:2970 +msgid "Result" +msgstr "Rezultatas" + +#: common/models.py:2839 +msgid "Was the barcode scan successful?" +msgstr "Ar brūkšninio kodo nuskaitymas buvo sėkmingas?" + +#: common/models.py:2921 +msgid "An error occurred" +msgstr "" + +#: common/models.py:2942 +msgid "INVE-E8: Email log deletion is protected. Set INVENTREE_PROTECT_EMAIL_LOG to False to allow deletion." +msgstr "" + +#: common/models.py:2989 +msgid "Email Message" +msgstr "" + +#: common/models.py:2990 +msgid "Email Messages" +msgstr "" + +#: common/models.py:2997 +msgid "Announced" +msgstr "" + +#: common/models.py:2999 +msgid "Sent" +msgstr "" + +#: common/models.py:3000 +msgid "Failed" +msgstr "" + +#: common/models.py:3003 +msgid "Delivered" +msgstr "" + +#: common/models.py:3011 +msgid "Confirmed" +msgstr "" + +#: common/models.py:3017 +msgid "Inbound" +msgstr "" + +#: common/models.py:3018 +msgid "Outbound" +msgstr "" + +#: common/models.py:3023 +msgid "No Reply" +msgstr "" + +#: common/models.py:3024 +msgid "Track Delivery" +msgstr "" + +#: common/models.py:3025 +msgid "Track Read" +msgstr "" + +#: common/models.py:3026 +msgid "Track Click" +msgstr "" + +#: common/models.py:3029 common/models.py:3132 +msgid "Global ID" +msgstr "" + +#: common/models.py:3042 +msgid "Identifier for this message (might be supplied by external system)" +msgstr "" + +#: common/models.py:3049 msgid "Thread ID" msgstr "" -#: common/models.py:2630 +#: common/models.py:3051 msgid "Identifier for this message thread (might be supplied by external system)" msgstr "" -#: common/models.py:2639 +#: common/models.py:3060 msgid "Thread" msgstr "" -#: common/models.py:2640 +#: common/models.py:3061 msgid "Linked thread for this message" msgstr "" -#: common/models.py:2656 -msgid "Prioriy" +#: common/models.py:3077 +msgid "Priority" msgstr "" -#: common/models.py:2698 +#: common/models.py:3119 msgid "Email Thread" msgstr "" -#: common/models.py:2699 +#: common/models.py:3120 msgid "Email Threads" msgstr "" -#: common/models.py:2705 generic/states/serializers.py:16 +#: common/models.py:3126 generic/states/serializers.py:16 #: machine/serializers.py:24 plugin/models.py:46 users/models.py:113 msgid "Key" msgstr "Raktas" -#: common/models.py:2708 +#: common/models.py:3129 msgid "Unique key for this thread (used to identify the thread)" msgstr "" -#: common/models.py:2712 +#: common/models.py:3133 msgid "Unique identifier for this thread" msgstr "" -#: common/models.py:2719 +#: common/models.py:3140 msgid "Started Internal" msgstr "" -#: common/models.py:2720 +#: common/models.py:3141 msgid "Was this thread started internally?" msgstr "" -#: common/models.py:2725 +#: common/models.py:3146 msgid "Date and time that the thread was created" msgstr "" -#: common/models.py:2730 +#: common/models.py:3151 msgid "Date and time that the thread was last updated" msgstr "" @@ -2199,7 +2339,7 @@ msgstr "{verbose_name} atšaukta" msgid "A order that is assigned to you was canceled" msgstr "Užsakymas, kuris buvo jums priskirtas, buvo atšauktas" -#: common/notifications.py:73 common/notifications.py:80 order/api.py:594 +#: common/notifications.py:73 common/notifications.py:80 order/api.py:600 msgid "Items Received" msgstr "Gautos prekės" @@ -2211,88 +2351,93 @@ msgstr "Prekės buvo gautos pagal pirkimo užsakymą" msgid "Items have been received against a return order" msgstr "Prekės buvo gautos pagal grąžinimo užsakymą" -#: common/serializers.py:145 +#: common/serializers.py:149 msgid "Indicates if the setting is overridden by an environment variable" msgstr "Nurodo, ar nustatymą pakeičia aplinkos kintamasis" -#: common/serializers.py:147 +#: common/serializers.py:151 msgid "Override" msgstr "Nepaisyti" -#: common/serializers.py:498 +#: common/serializers.py:502 msgid "Is Running" msgstr "Vykdoma" -#: common/serializers.py:504 +#: common/serializers.py:508 msgid "Pending Tasks" msgstr "Laukiančios užduotys" -#: common/serializers.py:510 +#: common/serializers.py:514 msgid "Scheduled Tasks" msgstr "Suplanuotos užduotys" -#: common/serializers.py:516 +#: common/serializers.py:520 msgid "Failed Tasks" msgstr "Nepavykusios užduotys" -#: common/serializers.py:531 +#: common/serializers.py:535 msgid "Task ID" msgstr "Užduoties ID" -#: common/serializers.py:531 +#: common/serializers.py:535 msgid "Unique task ID" msgstr "Unikalus užduoties ID" -#: common/serializers.py:533 +#: common/serializers.py:537 msgid "Lock" msgstr "Užraktas" -#: common/serializers.py:533 +#: common/serializers.py:537 msgid "Lock time" msgstr "Užrakto laikas" -#: common/serializers.py:535 +#: common/serializers.py:539 msgid "Task name" msgstr "Užduoties pavadinimas" -#: common/serializers.py:537 +#: common/serializers.py:541 msgid "Function" msgstr "Funkcija" -#: common/serializers.py:537 +#: common/serializers.py:541 msgid "Function name" msgstr "Funkcijos pavadinimas" -#: common/serializers.py:539 +#: common/serializers.py:543 msgid "Arguments" msgstr "Argumentai" -#: common/serializers.py:539 +#: common/serializers.py:543 msgid "Task arguments" msgstr "Užduoties argumentai" -#: common/serializers.py:542 +#: common/serializers.py:546 msgid "Keyword Arguments" msgstr "Rakto argumentai" -#: common/serializers.py:542 +#: common/serializers.py:546 msgid "Task keyword arguments" msgstr "Užduoties rakto argumentai" -#: common/serializers.py:652 +#: common/serializers.py:656 msgid "Filename" msgstr "Failo pavadinimas" -#: common/serializers.py:659 importer/models.py:89 report/api.py:41 +#: common/serializers.py:663 common/serializers.py:730 +#: common/serializers.py:805 importer/models.py:89 report/api.py:41 #: report/models.py:293 report/serializers.py:52 msgid "Model Type" msgstr "Modelio tipas" -#: common/serializers.py:687 +#: common/serializers.py:691 msgid "User does not have permission to create or edit attachments for this model" msgstr "Vartotojas neturi leidimo kurti ar redaguoti šio modelio priedų" -#: common/serializers.py:731 common/serializers.py:834 +#: common/serializers.py:786 +msgid "User does not have permission to create or edit parameters for this model" +msgstr "" + +#: common/serializers.py:850 common/serializers.py:953 msgid "Selection list is locked" msgstr "Pasirinkimų sąrašas yra užrakintas" @@ -2368,7 +2513,7 @@ msgstr "Apriboti `apie` rodymą" msgid "Show the `about` modal only to superusers" msgstr "`Apie` langą rodyti tik super-vartotojams" -#: common/setting/system.py:224 company/models.py:144 company/models.py:145 +#: common/setting/system.py:224 company/models.py:145 company/models.py:146 msgid "Company name" msgstr "Įmonės pavadinimas" @@ -2411,8 +2556,8 @@ msgstr "Kaip dažnai atnaujinti valiutų kursus (nulis – išjungti)" #: common/setting/system.py:253 common/setting/system.py:293 #: common/setting/system.py:306 common/setting/system.py:314 #: common/setting/system.py:321 common/setting/system.py:330 -#: common/setting/system.py:339 common/setting/system.py:588 -#: common/setting/system.py:616 common/setting/system.py:707 +#: common/setting/system.py:339 common/setting/system.py:580 +#: common/setting/system.py:608 common/setting/system.py:707 #: common/setting/system.py:1103 common/setting/system.py:1119 msgid "days" msgstr "dienos" @@ -2657,12 +2802,6 @@ msgstr "Kopijuoti kategorijų parametrų šablonus" msgid "Copy category parameter templates when creating a part" msgstr "Kopijuoti kategorijų parametrų šablonus kuriant detalę" -#: common/setting/system.py:450 part/models.py:4054 report/models.py:373 -#: report/models.py:669 report/serializers.py:94 report/serializers.py:135 -#: stock/serializers.py:234 -msgid "Template" -msgstr "Šablonas" - #: common/setting/system.py:451 msgid "Parts are templates by default" msgstr "Detalės pagal nutylėjimą yra šablonai" @@ -2671,8 +2810,8 @@ msgstr "Detalės pagal nutylėjimą yra šablonai" msgid "Parts can be assembled from other components by default" msgstr "Detalės pagal nutylėjimą gali būti surenkamos iš kitų komponentų" -#: common/setting/system.py:462 part/models.py:1208 part/serializers.py:1734 -#: part/serializers.py:1741 +#: common/setting/system.py:462 part/models.py:1296 part/serializers.py:1599 +#: part/serializers.py:1606 msgid "Component" msgstr "Komponentas" @@ -2680,7 +2819,7 @@ msgstr "Komponentas" msgid "Parts can be used as sub-components by default" msgstr "Detalės pagal nutylėjimą gali būti naudojamos kaip sub-komponentai" -#: common/setting/system.py:468 part/models.py:1226 +#: common/setting/system.py:468 part/models.py:1314 msgid "Purchaseable" msgstr "Galima įsigyti" @@ -2688,7 +2827,7 @@ msgstr "Galima įsigyti" msgid "Parts are purchaseable by default" msgstr "Detalės pagal nutylėjimą gali būti įsigyjamos" -#: common/setting/system.py:474 part/models.py:1232 stock/api.py:643 +#: common/setting/system.py:474 part/models.py:1320 stock/api.py:643 msgid "Salable" msgstr "Parduodama" @@ -2700,7 +2839,7 @@ msgstr "Detalės pagal nutylėjimą gali būti parduodamos" msgid "Parts are trackable by default" msgstr "Detalės pagal nutylėjimą gali būti sekamos" -#: common/setting/system.py:486 part/models.py:1248 +#: common/setting/system.py:486 part/models.py:1336 msgid "Virtual" msgstr "Virtuali" @@ -2749,158 +2888,158 @@ msgid "Part category default icon (empty means no icon)" msgstr "Detalės kategorijos numatytoji piktograma (tuščia reiškia, kad nenaudojama)" #: common/setting/system.py:525 -msgid "Enforce Parameter Units" -msgstr "Reikalauti parametrų vienetų" - -#: common/setting/system.py:527 -msgid "If units are provided, parameter values must match the specified units" -msgstr "Jei nurodyti vienetai, parametro reikšmės turi atitikti nurodytus vienetus" - -#: common/setting/system.py:533 msgid "Minimum Pricing Decimal Places" msgstr "Mažiausias kainos dešimtainių skaičių kiekis" -#: common/setting/system.py:535 +#: common/setting/system.py:527 msgid "Minimum number of decimal places to display when rendering pricing data" msgstr "Minimalus dešimtainių skaitmenų skaičius rodomas kainodaros duomenyse" -#: common/setting/system.py:546 +#: common/setting/system.py:538 msgid "Maximum Pricing Decimal Places" msgstr "Didžiausias kainos dešimtainių skaičių kiekis" -#: common/setting/system.py:548 +#: common/setting/system.py:540 msgid "Maximum number of decimal places to display when rendering pricing data" msgstr "Didžiausias dešimtainių skaitmenų skaičius rodomas kainodaros duomenyse" -#: common/setting/system.py:559 +#: common/setting/system.py:551 msgid "Use Supplier Pricing" msgstr "Naudoti tiekėjo kainas" -#: common/setting/system.py:561 +#: common/setting/system.py:553 msgid "Include supplier price breaks in overall pricing calculations" msgstr "Įtraukti tiekėjų kainų lygius į bendrą kainodaros skaičiavimą" -#: common/setting/system.py:567 +#: common/setting/system.py:559 msgid "Purchase History Override" msgstr "Pirkimų istorija keičia kainas" -#: common/setting/system.py:569 +#: common/setting/system.py:561 msgid "Historical purchase order pricing overrides supplier price breaks" msgstr "Istorinės pirkimo kainos pakeičia tiekėjo kainų lygius" -#: common/setting/system.py:575 +#: common/setting/system.py:567 msgid "Use Stock Item Pricing" msgstr "Naudoti atsargų kainas" -#: common/setting/system.py:577 +#: common/setting/system.py:569 msgid "Use pricing from manually entered stock data for pricing calculations" msgstr "Naudoti kainas iš rankiniu būdu įvestų atsargų duomenų kainodaros skaičiavimui" -#: common/setting/system.py:583 +#: common/setting/system.py:575 msgid "Stock Item Pricing Age" msgstr "Atsargų kainų galiojimo trukmė" -#: common/setting/system.py:585 +#: common/setting/system.py:577 msgid "Exclude stock items older than this number of days from pricing calculations" msgstr "Pašalinti senesnes nei nurodytas dienų skaičius atsargas iš kainodaros skaičiavimų" -#: common/setting/system.py:592 +#: common/setting/system.py:584 msgid "Use Variant Pricing" msgstr "Naudoti variantų kainas" -#: common/setting/system.py:593 +#: common/setting/system.py:585 msgid "Include variant pricing in overall pricing calculations" msgstr "Įtraukti variantų kainas į bendrą kainodaros skaičiavimą" -#: common/setting/system.py:598 +#: common/setting/system.py:590 msgid "Active Variants Only" msgstr "Tik aktyvūs variantai" -#: common/setting/system.py:600 +#: common/setting/system.py:592 msgid "Only use active variant parts for calculating variant pricing" msgstr "Naudoti tik aktyvius detalių variantus kainodarai" -#: common/setting/system.py:606 +#: common/setting/system.py:598 msgid "Auto Update Pricing" msgstr "" -#: common/setting/system.py:608 +#: common/setting/system.py:600 msgid "Automatically update part pricing when internal data changes" msgstr "" -#: common/setting/system.py:614 +#: common/setting/system.py:606 msgid "Pricing Rebuild Interval" msgstr "Kainodaros atnaujinimo intervalas" -#: common/setting/system.py:615 +#: common/setting/system.py:607 msgid "Number of days before part pricing is automatically updated" msgstr "Dienų skaičius iki automatinio detalių kainų atnaujinimo" -#: common/setting/system.py:621 +#: common/setting/system.py:613 msgid "Internal Prices" msgstr "Vidinės kainos" -#: common/setting/system.py:622 +#: common/setting/system.py:614 msgid "Enable internal prices for parts" msgstr "Įjungti vidines kainas detalėms" -#: common/setting/system.py:627 +#: common/setting/system.py:619 msgid "Internal Price Override" msgstr "Vidinės kainos viršenybė" -#: common/setting/system.py:629 +#: common/setting/system.py:621 msgid "If available, internal prices override price range calculations" msgstr "Jei yra, vidinės kainos pakeičia bendrus kainodaros skaičiavimus" -#: common/setting/system.py:635 +#: common/setting/system.py:627 msgid "Enable label printing" msgstr "Įjungti etikečių spausdinimą" -#: common/setting/system.py:636 +#: common/setting/system.py:628 msgid "Enable label printing from the web interface" msgstr "Įjungti etikečių spausdinimą iš žiniatinklio sąsajos" -#: common/setting/system.py:641 +#: common/setting/system.py:633 msgid "Label Image DPI" msgstr "Etiketės vaizdo DPI" -#: common/setting/system.py:643 +#: common/setting/system.py:635 msgid "DPI resolution when generating image files to supply to label printing plugins" msgstr "DPI raiška generuojant vaizdus etikečių spausdinimo papildiniams" -#: common/setting/system.py:649 +#: common/setting/system.py:641 msgid "Enable Reports" msgstr "Įjungti ataskaitas" -#: common/setting/system.py:650 +#: common/setting/system.py:642 msgid "Enable generation of reports" msgstr "Įjungti ataskaitų generavimą" -#: common/setting/system.py:655 +#: common/setting/system.py:647 msgid "Debug Mode" msgstr "Derinimo režimas" -#: common/setting/system.py:656 +#: common/setting/system.py:648 msgid "Generate reports in debug mode (HTML output)" msgstr "Generuoti ataskaitas derinimo režimu (HTML išvestis)" -#: common/setting/system.py:661 +#: common/setting/system.py:653 msgid "Log Report Errors" msgstr "Registruoti ataskaitų klaidas" -#: common/setting/system.py:662 +#: common/setting/system.py:654 msgid "Log errors which occur when generating reports" msgstr "Registruoti klaidas, įvykusias generuojant ataskaitas" -#: common/setting/system.py:667 plugin/builtin/labels/label_sheet.py:29 +#: common/setting/system.py:659 plugin/builtin/labels/label_sheet.py:29 #: report/models.py:381 msgid "Page Size" msgstr "Puslapio dydis" -#: common/setting/system.py:668 +#: common/setting/system.py:660 msgid "Default page size for PDF reports" msgstr "Numatytasis PDF ataskaitų puslapio dydis" +#: common/setting/system.py:665 +msgid "Enforce Parameter Units" +msgstr "Reikalauti parametrų vienetų" + +#: common/setting/system.py:667 +msgid "If units are provided, parameter values must match the specified units" +msgstr "Jei nurodyti vienetai, parametro reikšmės turi atitikti nurodytus vienetus" + #: common/setting/system.py:673 msgid "Globally Unique Serials" msgstr "Globaliai unikalūs serijiniai numeriai" @@ -3456,688 +3595,677 @@ msgid "Display PDF reports in the browser, instead of downloading as a file" msgstr "Rodyti PDF ataskaitas naršyklėje vietoje failo atsisiuntimo" #: common/setting/user.py:45 +msgid "Barcode Scanner in Form Fields" +msgstr "" + +#: common/setting/user.py:46 +msgid "Allow barcode scanner input in form fields" +msgstr "" + +#: common/setting/user.py:51 msgid "Search Parts" msgstr "Ieškoti detalių" -#: common/setting/user.py:46 +#: common/setting/user.py:52 msgid "Display parts in search preview window" msgstr "Rodyti detales paieškos peržiūros lange" -#: common/setting/user.py:51 +#: common/setting/user.py:57 msgid "Search Supplier Parts" msgstr "Ieškoti tiekėjų detalių" -#: common/setting/user.py:52 +#: common/setting/user.py:58 msgid "Display supplier parts in search preview window" msgstr "Rodyti tiekėjų detales paieškos peržiūros lange" -#: common/setting/user.py:57 +#: common/setting/user.py:63 msgid "Search Manufacturer Parts" msgstr "Ieškoti gamintojų detalių" -#: common/setting/user.py:58 +#: common/setting/user.py:64 msgid "Display manufacturer parts in search preview window" msgstr "Rodyti gamintojų detales paieškos peržiūros lange" -#: common/setting/user.py:63 +#: common/setting/user.py:69 msgid "Hide Inactive Parts" msgstr "Slėpti neaktyvias detales" -#: common/setting/user.py:64 +#: common/setting/user.py:70 msgid "Excluded inactive parts from search preview window" msgstr "Neaktyvios detalės nebus rodomos paieškos peržiūros lange" -#: common/setting/user.py:69 +#: common/setting/user.py:75 msgid "Search Categories" msgstr "Ieškoti kategorijų" -#: common/setting/user.py:70 +#: common/setting/user.py:76 msgid "Display part categories in search preview window" msgstr "Rodyti detalių kategorijas paieškos peržiūros lange" -#: common/setting/user.py:75 +#: common/setting/user.py:81 msgid "Search Stock" msgstr "Ieškoti atsargų" -#: common/setting/user.py:76 +#: common/setting/user.py:82 msgid "Display stock items in search preview window" msgstr "Rodyti atsargas paieškos peržiūros lange" -#: common/setting/user.py:81 +#: common/setting/user.py:87 msgid "Hide Unavailable Stock Items" msgstr "Slėpti neprieinamas atsargas" -#: common/setting/user.py:83 +#: common/setting/user.py:89 msgid "Exclude stock items which are not available from the search preview window" msgstr "Neprieinamos atsargos nebus rodomos paieškos peržiūros lange" -#: common/setting/user.py:89 +#: common/setting/user.py:95 msgid "Search Locations" msgstr "Ieškoti vietų" -#: common/setting/user.py:90 +#: common/setting/user.py:96 msgid "Display stock locations in search preview window" msgstr "Rodyti atsargų vietas paieškos peržiūros lange" -#: common/setting/user.py:95 +#: common/setting/user.py:101 msgid "Search Companies" msgstr "Ieškoti įmonių" -#: common/setting/user.py:96 +#: common/setting/user.py:102 msgid "Display companies in search preview window" msgstr "Rodyti įmones paieškos peržiūros lange" -#: common/setting/user.py:101 +#: common/setting/user.py:107 msgid "Search Build Orders" msgstr "Ieškoti gamybos užsakymų" -#: common/setting/user.py:102 +#: common/setting/user.py:108 msgid "Display build orders in search preview window" msgstr "Rodyti gamybos užsakymus paieškos peržiūros lange" -#: common/setting/user.py:107 +#: common/setting/user.py:113 msgid "Search Purchase Orders" msgstr "Ieškoti pirkimo užsakymų" -#: common/setting/user.py:108 +#: common/setting/user.py:114 msgid "Display purchase orders in search preview window" msgstr "Rodyti pirkimo užsakymus paieškos peržiūros lange" -#: common/setting/user.py:113 +#: common/setting/user.py:119 msgid "Exclude Inactive Purchase Orders" msgstr "Išskirti neaktyvius pirkimo užsakymus" -#: common/setting/user.py:114 +#: common/setting/user.py:120 msgid "Exclude inactive purchase orders from search preview window" msgstr "Neaktyvūs pirkimo užsakymai nebus rodomi paieškos peržiūros lange" -#: common/setting/user.py:119 +#: common/setting/user.py:125 msgid "Search Sales Orders" msgstr "Ieškoti pardavimo užsakymų" -#: common/setting/user.py:120 +#: common/setting/user.py:126 msgid "Display sales orders in search preview window" msgstr "Rodyti pardavimo užsakymus paieškos peržiūros lange" -#: common/setting/user.py:125 +#: common/setting/user.py:131 msgid "Exclude Inactive Sales Orders" msgstr "Išskirti neaktyvius pardavimo užsakymus" -#: common/setting/user.py:126 +#: common/setting/user.py:132 msgid "Exclude inactive sales orders from search preview window" msgstr "Neaktyvūs pardavimo užsakymai nebus rodomi paieškos peržiūros lange" -#: common/setting/user.py:131 +#: common/setting/user.py:137 msgid "Search Sales Order Shipments" msgstr "Ieškoti pardavimo užsakymų siuntų" -#: common/setting/user.py:132 +#: common/setting/user.py:138 msgid "Display sales order shipments in search preview window" msgstr "Rodyti pardavimo užsakymų siuntas paieškos peržiūros lange" -#: common/setting/user.py:137 +#: common/setting/user.py:143 msgid "Search Return Orders" msgstr "Ieškoti grąžinimo užsakymų" -#: common/setting/user.py:138 +#: common/setting/user.py:144 msgid "Display return orders in search preview window" msgstr "Rodyti grąžinimo užsakymus paieškos peržiūros lange" -#: common/setting/user.py:143 +#: common/setting/user.py:149 msgid "Exclude Inactive Return Orders" msgstr "Išskirti neaktyvius grąžinimo užsakymus" -#: common/setting/user.py:144 +#: common/setting/user.py:150 msgid "Exclude inactive return orders from search preview window" msgstr "Neaktyvūs grąžinimo užsakymai nebus rodomi paieškos peržiūros lange" -#: common/setting/user.py:149 +#: common/setting/user.py:155 msgid "Search Preview Results" msgstr "Paieškos peržiūros rezultatų kiekis" -#: common/setting/user.py:151 +#: common/setting/user.py:157 msgid "Number of results to show in each section of the search preview window" msgstr "Rezultatų skaičius, rodomas kiekviename paieškos peržiūros lango skyriuje" -#: common/setting/user.py:157 +#: common/setting/user.py:163 msgid "Regex Search" msgstr "Reguliariųjų išraiškų paieška" -#: common/setting/user.py:158 +#: common/setting/user.py:164 msgid "Enable regular expressions in search queries" msgstr "Įjungti reguliariųjų išraiškų palaikymą paieškoje" -#: common/setting/user.py:163 +#: common/setting/user.py:169 msgid "Whole Word Search" msgstr "Ieškoti viso žodžio atitikmenų" -#: common/setting/user.py:164 +#: common/setting/user.py:170 msgid "Search queries return results for whole word matches" msgstr "Paieškos užklausos grąžins tik tikslius viso žodžio atitikmenis" -#: common/setting/user.py:169 +#: common/setting/user.py:175 msgid "Search Notes" msgstr "Ieškoti pastabose" -#: common/setting/user.py:171 +#: common/setting/user.py:177 msgid "Search queries return results for matches from the item's notes" msgstr "Paieškos rezultatai apima atitikmenis iš įrašo pastabų" -#: common/setting/user.py:177 +#: common/setting/user.py:183 msgid "Escape Key Closes Forms" msgstr "Escape klavišas uždaro formas" -#: common/setting/user.py:178 +#: common/setting/user.py:184 msgid "Use the escape key to close modal forms" msgstr "Naudoti Escape klavišą modalinių formų uždarymui" -#: common/setting/user.py:183 +#: common/setting/user.py:189 msgid "Fixed Navbar" msgstr "Fiksuotas naršymo meniu" -#: common/setting/user.py:184 +#: common/setting/user.py:190 msgid "The navbar position is fixed to the top of the screen" msgstr "Naršymo meniu pozicija fiksuota ekrano viršuje" -#: common/setting/user.py:189 +#: common/setting/user.py:195 msgid "Fixed Table Headers" msgstr "" -#: common/setting/user.py:190 +#: common/setting/user.py:196 msgid "Table headers are fixed to the top of the table" msgstr "" -#: common/setting/user.py:195 +#: common/setting/user.py:201 msgid "Show Spotlight" msgstr "" -#: common/setting/user.py:196 +#: common/setting/user.py:202 msgid "Enable spotlight navigation functionality" msgstr "" -#: common/setting/user.py:201 +#: common/setting/user.py:207 msgid "Navigation Icons" msgstr "Naršymo piktogramos" -#: common/setting/user.py:202 +#: common/setting/user.py:208 msgid "Display icons in the navigation bar" msgstr "Rodyti piktogramas naršymo juostoje" -#: common/setting/user.py:207 +#: common/setting/user.py:213 msgid "Date Format" msgstr "Datos formatas" -#: common/setting/user.py:208 +#: common/setting/user.py:214 msgid "Preferred format for displaying dates" msgstr "Pageidaujamas datos rodymo formatas" -#: common/setting/user.py:221 +#: common/setting/user.py:227 msgid "Show Stock History" msgstr "" -#: common/setting/user.py:222 +#: common/setting/user.py:228 msgid "Display stock history information in the part detail page" msgstr "" -#: common/setting/user.py:227 +#: common/setting/user.py:233 msgid "Show Last Breadcrumb" msgstr "Rodyti paskutinę naršymo grandį" -#: common/setting/user.py:228 +#: common/setting/user.py:234 msgid "Show the current page in breadcrumbs" msgstr "Rodyti aktyvų puslapį naršymo grandinėje" -#: common/setting/user.py:233 +#: common/setting/user.py:239 msgid "Show full stock location in tables" msgstr "" -#: common/setting/user.py:235 +#: common/setting/user.py:241 msgid "Disabled: The full location path is displayed as a hover tooltip. Enabled: The full location path is displayed as plain text." msgstr "" -#: common/setting/user.py:241 +#: common/setting/user.py:247 msgid "Show full part categories in tables" msgstr "" -#: common/setting/user.py:243 +#: common/setting/user.py:249 msgid "Disabled: The full category path is displayed as a hover tooltip. Enabled: The full category path is displayed as plain text." msgstr "" -#: common/setting/user.py:249 +#: common/setting/user.py:255 msgid "Receive error reports" msgstr "Gauti klaidų ataskaitas" -#: common/setting/user.py:250 +#: common/setting/user.py:256 msgid "Receive notifications for system errors" msgstr "Gauti pranešimus apie sistemos klaidas" -#: common/setting/user.py:255 +#: common/setting/user.py:261 msgid "Last used printing machines" msgstr "Paskutiniai naudoti spausdintuvai" -#: common/setting/user.py:256 +#: common/setting/user.py:262 msgid "Save the last used printing machines for a user" msgstr "Išsaugoti paskutinius naudotojo naudotus spausdintuvus" -#: common/validators.py:34 +#: common/validators.py:38 +msgid "All models" +msgstr "" + +#: common/validators.py:63 msgid "No attachment model type provided" msgstr "Nepateiktas priedų modelio tipas" -#: common/validators.py:40 +#: common/validators.py:69 msgid "Invalid attachment model type" msgstr "Neteisingas priedų modelio tipas" -#: common/validators.py:81 +#: common/validators.py:110 msgid "Minimum places cannot be greater than maximum places" msgstr "Mažiausias vietų skaičius negali būti didesnis nei didžiausias" -#: common/validators.py:93 +#: common/validators.py:122 msgid "Maximum places cannot be less than minimum places" msgstr "Didžiausias vietų skaičius negali būti mažesnis nei mažiausias" -#: common/validators.py:104 +#: common/validators.py:133 msgid "An empty domain is not allowed." msgstr "Tuščias domenas neleidžiamas." -#: common/validators.py:106 +#: common/validators.py:135 #, python-brace-format msgid "Invalid domain name: {domain}" msgstr "Neteisingas domeno pavadinimas: {domain}" -#: common/validators.py:122 +#: common/validators.py:151 msgid "Value must be uppercase" msgstr "Reikšmė turi būti didžiosiomis raidėmis" -#: common/validators.py:128 +#: common/validators.py:157 msgid "Value must be a valid variable identifier" msgstr "Reikšmė turi būti galiojantis kintamojo identifikatorius" -#: company/api.py:147 +#: company/api.py:141 msgid "Part is Active" msgstr "Detalė yra aktyvi" -#: company/api.py:151 +#: company/api.py:145 msgid "Manufacturer is Active" msgstr "Gamintojas yra aktyvus" -#: company/api.py:286 +#: company/api.py:246 msgid "Supplier Part is Active" msgstr "Tiekėjo detalė yra aktyvi" -#: company/api.py:290 +#: company/api.py:250 msgid "Internal Part is Active" msgstr "Vidinė detalė yra aktyvi" -#: company/api.py:295 +#: company/api.py:255 msgid "Supplier is Active" msgstr "Tiekėjas yra aktyvus" -#: company/api.py:307 company/models.py:520 company/serializers.py:457 -#: part/serializers.py:566 +#: company/api.py:267 company/models.py:522 company/serializers.py:502 +#: part/serializers.py:477 msgid "Manufacturer" msgstr "Gamintojas" -#: company/api.py:314 company/models.py:121 company/models.py:392 +#: company/api.py:274 company/models.py:122 company/models.py:393 #: stock/api.py:900 msgid "Company" msgstr "Įmonė" -#: company/api.py:324 +#: company/api.py:284 msgid "Has Stock" msgstr "Turi atsargų" -#: company/models.py:122 +#: company/models.py:123 msgid "Companies" msgstr "Įmonės" -#: company/models.py:150 +#: company/models.py:151 msgid "Company description" msgstr "Įmonės aprašymas" -#: company/models.py:151 +#: company/models.py:152 msgid "Description of the company" msgstr "Įmonės aprašymas" -#: company/models.py:157 +#: company/models.py:158 msgid "Website" msgstr "Tinklalapis" -#: company/models.py:158 +#: company/models.py:159 msgid "Company website URL" msgstr "Įmonės tinklalapio URL" -#: company/models.py:164 +#: company/models.py:165 msgid "Phone number" msgstr "Telefono numeris" -#: company/models.py:166 +#: company/models.py:167 msgid "Contact phone number" msgstr "Kontaininis telefono numeris" -#: company/models.py:173 +#: company/models.py:174 msgid "Contact email address" msgstr "Kontaktinis el. pašto adresas" -#: company/models.py:178 company/models.py:296 order/models.py:513 +#: company/models.py:179 company/models.py:297 order/models.py:514 #: users/models.py:561 msgid "Contact" msgstr "Kontaktinis asmuo" -#: company/models.py:180 +#: company/models.py:181 msgid "Point of contact" msgstr "Kontaktinis asmuo" -#: company/models.py:186 +#: company/models.py:187 msgid "Link to external company information" msgstr "Nuoroda į išorinę įmonės informaciją" -#: company/models.py:191 +#: company/models.py:192 msgid "Is this company active?" msgstr "Ar ši įmonė aktyvi?" -#: company/models.py:196 +#: company/models.py:197 msgid "Is customer" msgstr "Yra klientas" -#: company/models.py:197 +#: company/models.py:198 msgid "Do you sell items to this company?" msgstr "Ar parduodate prekes šiai įmonei?" -#: company/models.py:202 +#: company/models.py:203 msgid "Is supplier" msgstr "Yra tiekėjas" -#: company/models.py:203 +#: company/models.py:204 msgid "Do you purchase items from this company?" msgstr "Ar perkate prekes iš šios įmonės?" -#: company/models.py:208 +#: company/models.py:209 msgid "Is manufacturer" msgstr "Yra gamintojas" -#: company/models.py:209 +#: company/models.py:210 msgid "Does this company manufacture parts?" msgstr "Ar ši įmonė gamina detales?" -#: company/models.py:217 +#: company/models.py:218 msgid "Default currency used for this company" msgstr "Numatytoji valiuta, naudojama šiai įmonei" -#: company/models.py:224 +#: company/models.py:225 msgid "Tax ID" msgstr "" -#: company/models.py:225 +#: company/models.py:226 msgid "Company Tax ID" msgstr "" -#: company/models.py:335 order/models.py:523 order/models.py:2288 +#: company/models.py:336 order/models.py:524 order/models.py:2289 msgid "Address" msgstr "Adresas" -#: company/models.py:336 +#: company/models.py:337 msgid "Addresses" msgstr "Adresai" -#: company/models.py:393 +#: company/models.py:394 msgid "Select company" msgstr "Pasirinkite įmonę" -#: company/models.py:398 +#: company/models.py:399 msgid "Address title" msgstr "Adreso pavadinimas" -#: company/models.py:399 +#: company/models.py:400 msgid "Title describing the address entry" msgstr "Pavadinimas, apibūdinantis adreso įrašą" -#: company/models.py:405 +#: company/models.py:406 msgid "Primary address" msgstr "Pagrindinis adresas" -#: company/models.py:406 +#: company/models.py:407 msgid "Set as primary address" msgstr "Nustatyti kaip pagrindinį adresą" -#: company/models.py:411 +#: company/models.py:412 msgid "Line 1" msgstr "1-a eilutė" -#: company/models.py:412 +#: company/models.py:413 msgid "Address line 1" msgstr "Adreso 1-a eilutė" -#: company/models.py:418 +#: company/models.py:419 msgid "Line 2" msgstr "2-a eilutė" -#: company/models.py:419 +#: company/models.py:420 msgid "Address line 2" msgstr "Adreso 2-a eilutė" -#: company/models.py:425 company/models.py:426 +#: company/models.py:426 company/models.py:427 msgid "Postal code" msgstr "Pašto kodas" -#: company/models.py:432 +#: company/models.py:433 msgid "City/Region" msgstr "Miestas / regionas" -#: company/models.py:433 +#: company/models.py:434 msgid "Postal code city/region" msgstr "Pašto kodas, miestas / regionas" -#: company/models.py:439 +#: company/models.py:440 msgid "State/Province" msgstr "Valstija / provincija" -#: company/models.py:440 +#: company/models.py:441 msgid "State or province" msgstr "Valstija arba provincija" -#: company/models.py:446 +#: company/models.py:447 msgid "Country" msgstr "Šalis" -#: company/models.py:447 +#: company/models.py:448 msgid "Address country" msgstr "Adreso šalis" -#: company/models.py:453 +#: company/models.py:454 msgid "Courier shipping notes" msgstr "Kurjerio siuntos pastabos" -#: company/models.py:454 +#: company/models.py:455 msgid "Notes for shipping courier" msgstr "Pastabos siuntų kurjeriui" -#: company/models.py:460 +#: company/models.py:461 msgid "Internal shipping notes" msgstr "Vidinės siuntos pastabos" -#: company/models.py:461 +#: company/models.py:462 msgid "Shipping notes for internal use" msgstr "Siuntimo pastabos vidiniam naudojimui" -#: company/models.py:468 +#: company/models.py:469 msgid "Link to address information (external)" msgstr "Nuoroda į adreso informaciją (išorinė)" -#: company/models.py:492 company/models.py:609 company/models.py:832 -#: company/serializers.py:471 stock/api.py:561 +#: company/models.py:494 company/models.py:786 company/serializers.py:516 +#: stock/api.py:561 msgid "Manufacturer Part" msgstr "Gamintojo detalė" -#: company/models.py:509 company/models.py:800 stock/models.py:1025 +#: company/models.py:511 company/models.py:754 stock/models.py:1025 #: stock/serializers.py:407 msgid "Base Part" msgstr "Pagrindinė detalė" -#: company/models.py:511 company/models.py:802 +#: company/models.py:513 company/models.py:756 msgid "Select part" msgstr "Pasirinkite detalę" -#: company/models.py:521 +#: company/models.py:523 msgid "Select manufacturer" msgstr "Pasirinkite gamintoją" -#: company/models.py:527 company/serializers.py:479 order/serializers.py:734 -#: part/serializers.py:576 +#: company/models.py:529 company/serializers.py:524 order/serializers.py:745 +#: part/serializers.py:487 msgid "MPN" msgstr "MPN" -#: company/models.py:528 stock/serializers.py:572 +#: company/models.py:530 stock/serializers.py:572 msgid "Manufacturer Part Number" msgstr "Gamintojo detalės numeris (MPN)" -#: company/models.py:535 +#: company/models.py:537 msgid "URL for external manufacturer part link" msgstr "Išorinės nuorodos į gamintojo detalės URL" -#: company/models.py:544 +#: company/models.py:546 msgid "Manufacturer part description" msgstr "Gamintojo detalės aprašymas" -#: company/models.py:597 -msgid "Manufacturer Part Parameter" -msgstr "Gamintojo detalės parametras" - -#: company/models.py:616 -msgid "Parameter name" -msgstr "Parametro pavadinimas" - -#: company/models.py:623 -msgid "Parameter value" -msgstr "Parametro reikšmė" - -#: company/models.py:630 part/models.py:1195 part/models.py:3857 -msgid "Units" -msgstr "Vienetai" - -#: company/models.py:631 -msgid "Parameter units" -msgstr "Parametro vienetai" - -#: company/models.py:740 +#: company/models.py:694 msgid "Pack units must be compatible with the base part units" msgstr "Pakuotės vienetai turi atitikti pagrindinės detalės vienetus" -#: company/models.py:747 +#: company/models.py:701 msgid "Pack units must be greater than zero" msgstr "Pakuotės vienetų kiekis turi būti didesnis už nulį" -#: company/models.py:761 +#: company/models.py:715 msgid "Linked manufacturer part must reference the same base part" msgstr "Susieta gamintojo detalė turi nurodyti tą pačią pagrindinę detalę" -#: company/models.py:810 company/serializers.py:449 company/serializers.py:467 -#: order/models.py:639 part/serializers.py:550 +#: company/models.py:764 company/serializers.py:494 company/serializers.py:512 +#: order/models.py:640 part/serializers.py:461 #: plugin/builtin/suppliers/digikey.py:26 plugin/builtin/suppliers/lcsc.py:27 #: plugin/builtin/suppliers/mouser.py:25 plugin/builtin/suppliers/tme.py:27 #: stock/api.py:567 templates/email/overdue_purchase_order.html:16 msgid "Supplier" msgstr "Tiekėjas" -#: company/models.py:811 +#: company/models.py:765 msgid "Select supplier" msgstr "Pasirinkite tiekėją" -#: company/models.py:817 part/serializers.py:561 +#: company/models.py:771 part/serializers.py:472 msgid "Supplier stock keeping unit" msgstr "Tiekėjo sandėlio numeris (SKU)" -#: company/models.py:823 +#: company/models.py:777 msgid "Is this supplier part active?" msgstr "Ar ši tiekėjo detalė aktyvi?" -#: company/models.py:833 +#: company/models.py:787 msgid "Select manufacturer part" msgstr "Pasirinkite gamintojo detalę" -#: company/models.py:840 +#: company/models.py:794 msgid "URL for external supplier part link" msgstr "Išorinės nuorodos į tiekėjo detalės URL" -#: company/models.py:849 +#: company/models.py:803 msgid "Supplier part description" msgstr "Tiekėjo detalės aprašymas" -#: company/models.py:856 order/serializers.py:883 order/serializers.py:2047 -#: part/models.py:4070 part/models.py:4450 part/models.py:4819 -#: report/templates/report/inventree_bill_of_materials_report.html:140 -#: report/templates/report/inventree_purchase_order_report.html:39 -#: report/templates/report/inventree_return_order_report.html:27 -#: report/templates/report/inventree_sales_order_report.html:32 -#: report/templates/report/inventree_stock_location_report.html:105 -#: stock/serializers.py:813 -msgid "Note" -msgstr "Pastaba" - -#: company/models.py:865 part/models.py:2250 +#: company/models.py:819 part/models.py:2338 msgid "base cost" msgstr "bazinė kaina" -#: company/models.py:866 part/models.py:2251 +#: company/models.py:820 part/models.py:2339 msgid "Minimum charge (e.g. stocking fee)" msgstr "Minimalus mokestis (pvz., sandėliavimo mokestis)" -#: company/models.py:873 order/serializers.py:875 stock/models.py:1056 +#: company/models.py:827 order/serializers.py:886 stock/models.py:1056 #: stock/serializers.py:1606 msgid "Packaging" msgstr "Pakuotė" -#: company/models.py:874 +#: company/models.py:828 msgid "Part packaging" msgstr "Detalės pakuotė" -#: company/models.py:879 +#: company/models.py:833 msgid "Pack Quantity" msgstr "Pakuotės kiekis" -#: company/models.py:881 +#: company/models.py:835 msgid "Total quantity supplied in a single pack. Leave empty for single items." msgstr "Bendras kiekis vienoje pakuotėje. Palikite tuščią, jei prekė tiekiama po vieną." -#: company/models.py:900 part/models.py:2257 +#: company/models.py:854 part/models.py:2345 msgid "multiple" msgstr "daugiklis" -#: company/models.py:901 +#: company/models.py:855 msgid "Order multiple" msgstr "Užsakymo daugiklis" -#: company/models.py:913 +#: company/models.py:867 msgid "Quantity available from supplier" msgstr "Tiekėjo turimas kiekis" -#: company/models.py:919 +#: company/models.py:873 msgid "Availability Updated" msgstr "Prieinamumas atnaujintas" -#: company/models.py:920 +#: company/models.py:874 msgid "Date of last update of availability data" msgstr "Paskutinio prieinamumo duomenų atnaujinimo data" -#: company/models.py:1048 +#: company/models.py:1002 msgid "Supplier Price Break" msgstr "Tiekėjo kainos ribos" -#: company/serializers.py:181 +#: company/serializers.py:184 +msgid "Primary Address" +msgstr "" + +#: company/serializers.py:186 msgid "Return the string representation for the primary address. This property exists for backwards compatibility." msgstr "Grąžina pagrindinio adreso tekstinę išraišką. Ši savybė egzistuoja dėl suderinamumo su ankstesnėmis versijomis." -#: company/serializers.py:212 +#: company/serializers.py:218 msgid "Default currency used for this supplier" msgstr "Numatytoji valiuta, naudojama šiam tiekėjui" -#: company/serializers.py:248 +#: company/serializers.py:260 msgid "Company Name" msgstr "Įmonės pavadinimas" -#: company/serializers.py:433 part/serializers.py:955 stock/serializers.py:428 +#: company/serializers.py:460 part/serializers.py:840 stock/serializers.py:428 msgid "In Stock" msgstr "Sandėlyje" +#: company/serializers.py:477 +msgid "Price Breaks" +msgstr "" + #: data_exporter/mixins.py:325 data_exporter/mixins.py:403 msgid "Error occurred during data export" msgstr "Įvyko klaida eksportuojant duomenis" @@ -4290,7 +4418,7 @@ msgstr "Pradiniai eilutės duomenys" msgid "Errors" msgstr "Klaidos" -#: importer/models.py:550 part/serializers.py:1268 +#: importer/models.py:550 part/serializers.py:1133 msgid "Valid" msgstr "Galiojantis" @@ -4402,7 +4530,7 @@ msgstr "Etiketės spausdinamų kopijų skaičius" msgid "Connected" msgstr "Prijungta" -#: machine/machine_types/label_printer.py:232 order/api.py:1795 +#: machine/machine_types/label_printer.py:232 order/api.py:1800 msgid "Unknown" msgstr "Nežinoma" @@ -4530,105 +4658,105 @@ msgstr "" msgid "Maximum value for progress type, required if type=progress" msgstr "" -#: order/api.py:125 +#: order/api.py:130 msgid "Order Reference" msgstr "Užsakymo nuoroda" -#: order/api.py:153 order/api.py:1207 +#: order/api.py:158 order/api.py:1212 msgid "Outstanding" msgstr "Neįvykdyta" -#: order/api.py:169 +#: order/api.py:174 msgid "Has Project Code" msgstr "Turi projekto kodą" -#: order/api.py:183 order/models.py:488 +#: order/api.py:188 order/models.py:489 msgid "Created By" msgstr "Sukūrė" -#: order/api.py:187 +#: order/api.py:192 msgid "Created Before" msgstr "Sukurta prieš" -#: order/api.py:191 +#: order/api.py:196 msgid "Created After" msgstr "Sukurta po" -#: order/api.py:195 +#: order/api.py:200 msgid "Has Start Date" msgstr "Turi pradžios datą" -#: order/api.py:203 +#: order/api.py:208 msgid "Start Date Before" msgstr "Pradžios data prieš" -#: order/api.py:207 +#: order/api.py:212 msgid "Start Date After" msgstr "Pradžios data po" -#: order/api.py:211 +#: order/api.py:216 msgid "Has Target Date" msgstr "Turi tikslinę datą" -#: order/api.py:219 +#: order/api.py:224 msgid "Target Date Before" msgstr "Tikslinė data prieš" -#: order/api.py:223 +#: order/api.py:228 msgid "Target Date After" msgstr "Tikslinė data po" -#: order/api.py:274 +#: order/api.py:279 msgid "Has Pricing" msgstr "Turi kainodarą" -#: order/api.py:327 order/api.py:812 order/api.py:1490 +#: order/api.py:332 order/api.py:818 order/api.py:1495 msgid "Completed Before" msgstr "Užbaigta prieš" -#: order/api.py:331 order/api.py:816 order/api.py:1494 +#: order/api.py:336 order/api.py:822 order/api.py:1499 msgid "Completed After" msgstr "Užbaigta po" -#: order/api.py:337 order/api.py:341 +#: order/api.py:342 order/api.py:346 msgid "External Build Order" msgstr "" -#: order/api.py:526 order/api.py:914 order/api.py:1170 order/models.py:1922 -#: order/models.py:2049 order/models.py:2099 order/models.py:2279 -#: order/models.py:2477 order/models.py:2999 order/models.py:3065 +#: order/api.py:532 order/api.py:919 order/api.py:1175 order/models.py:1923 +#: order/models.py:2050 order/models.py:2100 order/models.py:2280 +#: order/models.py:2478 order/models.py:3000 order/models.py:3066 msgid "Order" msgstr "Užsakymas" -#: order/api.py:530 order/api.py:982 +#: order/api.py:536 order/api.py:987 msgid "Order Complete" msgstr "Užsakymas įvykdytas" -#: order/api.py:562 order/api.py:566 order/serializers.py:745 +#: order/api.py:568 order/api.py:572 order/serializers.py:756 msgid "Internal Part" msgstr "Vidinė detalė" -#: order/api.py:584 +#: order/api.py:590 msgid "Order Pending" msgstr "Užsakymas laukia vykdymo" -#: order/api.py:967 +#: order/api.py:972 msgid "Completed" msgstr "Užbaigta" -#: order/api.py:1223 +#: order/api.py:1228 msgid "Has Shipment" msgstr "Turi siuntą" -#: order/api.py:1789 order/models.py:552 order/models.py:1923 -#: order/models.py:2050 +#: order/api.py:1794 order/models.py:553 order/models.py:1924 +#: order/models.py:2051 #: report/templates/report/inventree_purchase_order_report.html:14 #: stock/serializers.py:129 templates/email/overdue_purchase_order.html:15 msgid "Purchase Order" msgstr "Pirkimo užsakymas" -#: order/api.py:1791 order/models.py:1251 order/models.py:2100 -#: order/models.py:2280 order/models.py:2478 +#: order/api.py:1796 order/models.py:1252 order/models.py:2101 +#: order/models.py:2281 order/models.py:2479 #: report/templates/report/inventree_build_order_report.html:135 #: report/templates/report/inventree_sales_order_report.html:14 #: report/templates/report/inventree_sales_order_shipment_report.html:15 @@ -4636,8 +4764,8 @@ msgstr "Pirkimo užsakymas" msgid "Sales Order" msgstr "Pardavimo užsakymas" -#: order/api.py:1793 order/models.py:2649 order/models.py:3000 -#: order/models.py:3066 +#: order/api.py:1798 order/models.py:2650 order/models.py:3001 +#: order/models.py:3067 #: report/templates/report/inventree_return_order_report.html:13 #: templates/email/overdue_return_order.html:15 msgid "Return Order" @@ -4653,722 +4781,722 @@ msgstr "Bendra kaina" msgid "Total price for this order" msgstr "Bendra kaina už šį užsakymą" -#: order/models.py:96 order/serializers.py:77 +#: order/models.py:96 order/serializers.py:78 msgid "Order Currency" msgstr "Užsakymo valiuta" -#: order/models.py:99 order/serializers.py:78 +#: order/models.py:99 order/serializers.py:79 msgid "Currency for this order (leave blank to use company default)" msgstr "Užsakymo valiuta (palikite tuščią, jei norite naudoti įmonės numatytąją valiutą)" -#: order/models.py:324 +#: order/models.py:325 msgid "This order is locked and cannot be modified" msgstr "Šis užsakymas užrakintas ir negali būti keičiamas" -#: order/models.py:376 +#: order/models.py:377 msgid "Contact does not match selected company" msgstr "Kontaktas nesutampa su pasirinkta įmone" -#: order/models.py:383 +#: order/models.py:384 msgid "Start date must be before target date" msgstr "Pradžios data turi būti prieš tikslinę datą" -#: order/models.py:390 +#: order/models.py:391 msgid "Address does not match selected company" msgstr "" -#: order/models.py:443 +#: order/models.py:444 msgid "Order description (optional)" msgstr "Užsakymo aprašymas (neprivalomas)" -#: order/models.py:452 order/models.py:1806 +#: order/models.py:453 order/models.py:1807 msgid "Select project code for this order" msgstr "Pasirinkite projekto kodą šiam užsakymui" -#: order/models.py:458 order/models.py:1787 order/models.py:2344 +#: order/models.py:459 order/models.py:1788 order/models.py:2345 msgid "Link to external page" msgstr "Nuoroda į išorinį puslapį" -#: order/models.py:465 +#: order/models.py:466 msgid "Start date" msgstr "Pradžios data" -#: order/models.py:466 +#: order/models.py:467 msgid "Scheduled start date for this order" msgstr "Numatyta pradžios data šiam užsakymui" -#: order/models.py:472 order/models.py:1794 order/serializers.py:309 +#: order/models.py:473 order/models.py:1795 order/serializers.py:317 #: report/templates/report/inventree_build_order_report.html:125 msgid "Target Date" msgstr "Tikslinė data" -#: order/models.py:474 +#: order/models.py:475 msgid "Expected date for order delivery. Order will be overdue after this date." msgstr "Tikėtina užsakymo pristatymo data. Užsakymas bus vėluojantis po šios datos." -#: order/models.py:494 +#: order/models.py:495 msgid "Issue Date" msgstr "Išdavimo data" -#: order/models.py:495 +#: order/models.py:496 msgid "Date order was issued" msgstr "Data, kada užsakymas buvo išduotas" -#: order/models.py:503 +#: order/models.py:504 msgid "User or group responsible for this order" msgstr "Vartotojas arba grupė, atsakinga už šį užsakymą" -#: order/models.py:514 +#: order/models.py:515 msgid "Point of contact for this order" msgstr "Kontaktinis asmuo šiam užsakymui" -#: order/models.py:524 +#: order/models.py:525 msgid "Company address for this order" msgstr "Įmonės adresas šiam užsakymui" -#: order/models.py:615 order/models.py:1312 +#: order/models.py:616 order/models.py:1313 msgid "Order reference" msgstr "Užsakymo nuoroda" -#: order/models.py:624 order/models.py:1336 order/models.py:2737 +#: order/models.py:625 order/models.py:1337 order/models.py:2738 #: stock/serializers.py:559 stock/serializers.py:988 users/models.py:542 msgid "Status" msgstr "Būsena" -#: order/models.py:625 +#: order/models.py:626 msgid "Purchase order status" msgstr "Pirkimo užsakymo būsena" -#: order/models.py:640 +#: order/models.py:641 msgid "Company from which the items are being ordered" msgstr "Įmonė, iš kurios užsakomos prekės" -#: order/models.py:651 +#: order/models.py:652 msgid "Supplier Reference" msgstr "Tiekėjo nuoroda" -#: order/models.py:652 +#: order/models.py:653 msgid "Supplier order reference code" msgstr "Tiekėjo užsakymo nuorodos kodas" -#: order/models.py:661 +#: order/models.py:662 msgid "received by" msgstr "gavo" -#: order/models.py:668 order/models.py:2752 +#: order/models.py:669 order/models.py:2753 msgid "Date order was completed" msgstr "Data, kada užsakymas buvo užbaigtas" -#: order/models.py:677 order/models.py:1981 +#: order/models.py:678 order/models.py:1982 msgid "Destination" msgstr "Paskirties vieta" -#: order/models.py:678 order/models.py:1985 +#: order/models.py:679 order/models.py:1986 msgid "Destination for received items" msgstr "Paskirties vieta gautoms prekėms" -#: order/models.py:724 +#: order/models.py:725 msgid "Part supplier must match PO supplier" msgstr "Detalių tiekėjas turi atitikti pirkimo užsakymo tiekėją" -#: order/models.py:994 +#: order/models.py:995 msgid "Line item does not match purchase order" msgstr "Eilutės įrašas neatitinka pirkimo užsakymo" -#: order/models.py:997 +#: order/models.py:998 msgid "Line item is missing a linked part" msgstr "" -#: order/models.py:1011 +#: order/models.py:1012 msgid "Quantity must be a positive number" msgstr "Kiekis turi būti teigiamas skaičius" -#: order/models.py:1323 order/models.py:2724 stock/models.py:1078 +#: order/models.py:1324 order/models.py:2725 stock/models.py:1078 #: stock/models.py:1079 stock/serializers.py:1322 #: templates/email/overdue_return_order.html:16 #: templates/email/overdue_sales_order.html:16 msgid "Customer" msgstr "Klientas" -#: order/models.py:1324 +#: order/models.py:1325 msgid "Company to which the items are being sold" msgstr "Įmonė, kuriai prekės parduodamos" -#: order/models.py:1337 +#: order/models.py:1338 msgid "Sales order status" msgstr "Pardavimo užsakymo būsena" -#: order/models.py:1348 order/models.py:2744 +#: order/models.py:1349 order/models.py:2745 msgid "Customer Reference " msgstr "Kliento nuoroda" -#: order/models.py:1349 order/models.py:2745 +#: order/models.py:1350 order/models.py:2746 msgid "Customer order reference code" msgstr "Kliento užsakymo nuorodos kodas" -#: order/models.py:1353 order/models.py:2296 +#: order/models.py:1354 order/models.py:2297 msgid "Shipment Date" msgstr "Siuntos data" -#: order/models.py:1362 +#: order/models.py:1363 msgid "shipped by" msgstr "išsiuntė" -#: order/models.py:1413 +#: order/models.py:1414 msgid "Order is already complete" msgstr "Užsakymas jau baigtas" -#: order/models.py:1416 +#: order/models.py:1417 msgid "Order is already cancelled" msgstr "Užsakymas jau atšauktas" -#: order/models.py:1420 +#: order/models.py:1421 msgid "Only an open order can be marked as complete" msgstr "Tik atviras užsakymas gali būti pažymėtas kaip užbaigtas" -#: order/models.py:1424 +#: order/models.py:1425 msgid "Order cannot be completed as there are incomplete shipments" msgstr "Užsakymas negali būti užbaigtas, nes yra neišsiųstų siuntų" -#: order/models.py:1429 +#: order/models.py:1430 msgid "Order cannot be completed as there are incomplete allocations" msgstr "Užsakymas negali būti užbaigtas, nes yra nepriskirtų prekių" -#: order/models.py:1438 +#: order/models.py:1439 msgid "Order cannot be completed as there are incomplete line items" msgstr "Užsakymas negali būti užbaigtas, nes yra neužbaigtų eilučių" -#: order/models.py:1733 order/models.py:1749 +#: order/models.py:1734 order/models.py:1750 msgid "The order is locked and cannot be modified" msgstr "Užsakymas užrakintas ir negali būti keičiamas" -#: order/models.py:1757 +#: order/models.py:1758 msgid "Item quantity" msgstr "Prekės kiekis" -#: order/models.py:1774 +#: order/models.py:1775 msgid "Line item reference" msgstr "Eilutės įrašo nuoroda" -#: order/models.py:1781 +#: order/models.py:1782 msgid "Line item notes" msgstr "Eilutės įrašo pastabos" -#: order/models.py:1796 +#: order/models.py:1797 msgid "Target date for this line item (leave blank to use the target date from the order)" msgstr "Tikslinė šio eilutės įrašo data (palikite tuščią, jei norite naudoti užsakymo tikslinę datą)" -#: order/models.py:1826 +#: order/models.py:1827 msgid "Line item description (optional)" msgstr "Eilutės įrašo aprašymas (neprivalomas)" -#: order/models.py:1833 +#: order/models.py:1834 msgid "Additional context for this line" msgstr "Papildomas kontekstas šiai eilutei" -#: order/models.py:1843 +#: order/models.py:1844 msgid "Unit price" msgstr "Vieneto kaina" -#: order/models.py:1862 +#: order/models.py:1863 msgid "Purchase Order Line Item" msgstr "Pirkimo užsakymo eilutės įrašas" -#: order/models.py:1889 +#: order/models.py:1890 msgid "Supplier part must match supplier" msgstr "Tiekėjo detalė turi atitikti tiekėją" -#: order/models.py:1894 +#: order/models.py:1895 msgid "Build order must be marked as external" msgstr "" -#: order/models.py:1901 +#: order/models.py:1902 msgid "Build orders can only be linked to assembly parts" msgstr "" -#: order/models.py:1907 +#: order/models.py:1908 msgid "Build order part must match line item part" msgstr "" -#: order/models.py:1942 +#: order/models.py:1943 msgid "Supplier part" msgstr "Tiekėjo detalė" -#: order/models.py:1949 +#: order/models.py:1950 msgid "Received" msgstr "Gauta" -#: order/models.py:1950 +#: order/models.py:1951 msgid "Number of items received" msgstr "Gautų prekių kiekis" -#: order/models.py:1958 stock/models.py:1201 stock/serializers.py:637 +#: order/models.py:1959 stock/models.py:1201 stock/serializers.py:637 msgid "Purchase Price" msgstr "Pirkimo kaina" -#: order/models.py:1959 +#: order/models.py:1960 msgid "Unit purchase price" msgstr "Vieneto pirkimo kaina" -#: order/models.py:1975 +#: order/models.py:1976 msgid "External Build Order to be fulfilled by this line item" msgstr "" -#: order/models.py:2038 +#: order/models.py:2039 msgid "Purchase Order Extra Line" msgstr "Pirkimo užsakymo papildoma eilutė" -#: order/models.py:2067 +#: order/models.py:2068 msgid "Sales Order Line Item" msgstr "Pardavimo užsakymo eilutės įrašas" -#: order/models.py:2092 +#: order/models.py:2093 msgid "Only salable parts can be assigned to a sales order" msgstr "Tik parduodamos detalės gali būti priskirtos pardavimo užsakymui" -#: order/models.py:2118 +#: order/models.py:2119 msgid "Sale Price" msgstr "Pardavimo kaina" -#: order/models.py:2119 +#: order/models.py:2120 msgid "Unit sale price" msgstr "Vieneto pardavimo kaina" -#: order/models.py:2128 order/status_codes.py:50 +#: order/models.py:2129 order/status_codes.py:50 msgid "Shipped" msgstr "Išsiųsta" -#: order/models.py:2129 +#: order/models.py:2130 msgid "Shipped quantity" msgstr "Išsiųstas kiekis" -#: order/models.py:2240 +#: order/models.py:2241 msgid "Sales Order Shipment" msgstr "Pardavimo užsakymo siunta" -#: order/models.py:2253 +#: order/models.py:2254 msgid "Shipment address must match the customer" msgstr "" -#: order/models.py:2289 +#: order/models.py:2290 msgid "Shipping address for this shipment" msgstr "" -#: order/models.py:2297 +#: order/models.py:2298 msgid "Date of shipment" msgstr "Siuntos data" -#: order/models.py:2303 +#: order/models.py:2304 msgid "Delivery Date" msgstr "Pristatymo data" -#: order/models.py:2304 +#: order/models.py:2305 msgid "Date of delivery of shipment" msgstr "Siuntos pristatymo data" -#: order/models.py:2312 +#: order/models.py:2313 msgid "Checked By" msgstr "Patikrino" -#: order/models.py:2313 +#: order/models.py:2314 msgid "User who checked this shipment" msgstr "Vartotojas, patikrinęs šią siuntą" -#: order/models.py:2320 order/models.py:2574 order/serializers.py:1711 -#: order/serializers.py:1835 +#: order/models.py:2321 order/models.py:2575 order/serializers.py:1725 +#: order/serializers.py:1849 #: report/templates/report/inventree_sales_order_shipment_report.html:14 msgid "Shipment" msgstr "Siunta" -#: order/models.py:2321 +#: order/models.py:2322 msgid "Shipment number" msgstr "Siuntos numeris" -#: order/models.py:2329 +#: order/models.py:2330 msgid "Tracking Number" msgstr "Sekimo numeris" -#: order/models.py:2330 +#: order/models.py:2331 msgid "Shipment tracking information" msgstr "Siuntos sekimo informacija" -#: order/models.py:2337 +#: order/models.py:2338 msgid "Invoice Number" msgstr "Sąskaitos faktūros numeris" -#: order/models.py:2338 +#: order/models.py:2339 msgid "Reference number for associated invoice" msgstr "Nuorodos numeris susijusiai sąskaitai faktūrai" -#: order/models.py:2377 +#: order/models.py:2378 msgid "Shipment has already been sent" msgstr "Siunta jau buvo išsiųsta" -#: order/models.py:2380 +#: order/models.py:2381 msgid "Shipment has no allocated stock items" msgstr "Siunta neturi priskirtų prekių" -#: order/models.py:2387 +#: order/models.py:2388 msgid "Shipment must be checked before it can be completed" msgstr "" -#: order/models.py:2466 +#: order/models.py:2467 msgid "Sales Order Extra Line" msgstr "Pardavimo užsakymo papildoma eilutė" -#: order/models.py:2495 +#: order/models.py:2496 msgid "Sales Order Allocation" msgstr "Pardavimo užsakymo paskirstymas" -#: order/models.py:2518 order/models.py:2520 +#: order/models.py:2519 order/models.py:2521 msgid "Stock item has not been assigned" msgstr "Prekė nėra priskirta" -#: order/models.py:2527 +#: order/models.py:2528 msgid "Cannot allocate stock item to a line with a different part" msgstr "Negalima priskirti prekių eilutei su skirtinga detale" -#: order/models.py:2530 +#: order/models.py:2531 msgid "Cannot allocate stock to a line without a part" msgstr "Negalima priskirti prekių eilutei, jei joje nėra detalės" -#: order/models.py:2533 +#: order/models.py:2534 msgid "Allocation quantity cannot exceed stock quantity" msgstr "Priskiriamas kiekis negali viršyti atsargų kiekio" -#: order/models.py:2552 order/serializers.py:1581 +#: order/models.py:2553 order/serializers.py:1595 msgid "Quantity must be 1 for serialized stock item" msgstr "Kiekis turi būti 1, jei prekė turi serijos numerį" -#: order/models.py:2555 +#: order/models.py:2556 msgid "Sales order does not match shipment" msgstr "Pardavimo užsakymas nesutampa su siunta" -#: order/models.py:2556 plugin/base/barcodes/api.py:642 +#: order/models.py:2557 plugin/base/barcodes/api.py:642 msgid "Shipment does not match sales order" msgstr "Siunta nesutampa su pardavimo užsakymu" -#: order/models.py:2564 +#: order/models.py:2565 msgid "Line" msgstr "Eilutė" -#: order/models.py:2575 +#: order/models.py:2576 msgid "Sales order shipment reference" msgstr "Pardavimo užsakymo siuntos nuoroda" -#: order/models.py:2588 order/models.py:3007 +#: order/models.py:2589 order/models.py:3008 msgid "Item" msgstr "Prekė" -#: order/models.py:2589 +#: order/models.py:2590 msgid "Select stock item to allocate" msgstr "Pasirinkite atsargų elementą priskyrimui" -#: order/models.py:2598 +#: order/models.py:2599 msgid "Enter stock allocation quantity" msgstr "Įveskite prekių priskyrimo kiekį" -#: order/models.py:2713 +#: order/models.py:2714 msgid "Return Order reference" msgstr "Grąžinimo užsakymo nuoroda" -#: order/models.py:2725 +#: order/models.py:2726 msgid "Company from which items are being returned" msgstr "Įmonė, iš kurios grąžinamos prekės" -#: order/models.py:2738 +#: order/models.py:2739 msgid "Return order status" msgstr "Grąžinimo užsakymo būsena" -#: order/models.py:2965 +#: order/models.py:2966 msgid "Return Order Line Item" msgstr "Grąžinimo užsakymo eilutės įrašas" -#: order/models.py:2978 +#: order/models.py:2979 msgid "Stock item must be specified" msgstr "Turi būti nurodytas atsargų elementas" -#: order/models.py:2982 +#: order/models.py:2983 msgid "Return quantity exceeds stock quantity" msgstr "Grąžinamo kiekis viršija prekių kiekį" -#: order/models.py:2987 +#: order/models.py:2988 msgid "Return quantity must be greater than zero" msgstr "Grąžinamo kiekis turi būti daugiau nei nulis" -#: order/models.py:2992 +#: order/models.py:2993 msgid "Invalid quantity for serialized stock item" msgstr "Neteisingas kiekis serijinio numerio prekei" -#: order/models.py:3008 +#: order/models.py:3009 msgid "Select item to return from customer" msgstr "Pasirinkite prekę grąžinimui iš kliento" -#: order/models.py:3023 +#: order/models.py:3024 msgid "Received Date" msgstr "Gavimo data" -#: order/models.py:3024 +#: order/models.py:3025 msgid "The date this this return item was received" msgstr "Data, kada ši grąžinta prekė buvo gauta" -#: order/models.py:3036 +#: order/models.py:3037 msgid "Outcome" msgstr "Rezultatas" -#: order/models.py:3037 +#: order/models.py:3038 msgid "Outcome for this line item" msgstr "Rezultatas šiam eilutės įrašui" -#: order/models.py:3044 +#: order/models.py:3045 msgid "Cost associated with return or repair for this line item" msgstr "Išlaidos, susijusios su šio eilutės įrašo grąžinimu ar remontu" -#: order/models.py:3054 +#: order/models.py:3055 msgid "Return Order Extra Line" msgstr "Grąžinimo užsakymo papildoma eilutė" -#: order/serializers.py:91 +#: order/serializers.py:92 msgid "Order ID" msgstr "Užsakymo ID" -#: order/serializers.py:91 +#: order/serializers.py:92 msgid "ID of the order to duplicate" msgstr "Užsakymo, kurį reikia dubliuoti, ID" -#: order/serializers.py:97 +#: order/serializers.py:98 msgid "Copy Lines" msgstr "Kopijuoti eilutes" -#: order/serializers.py:98 +#: order/serializers.py:99 msgid "Copy line items from the original order" msgstr "Kopijuoti eilutės įrašus iš pradinio užsakymo" -#: order/serializers.py:104 +#: order/serializers.py:105 msgid "Copy Extra Lines" msgstr "Kopijuoti papildomas eilutes" -#: order/serializers.py:105 +#: order/serializers.py:106 msgid "Copy extra line items from the original order" msgstr "Kopijuoti papildomas eilutes iš pradinio užsakymo" -#: order/serializers.py:120 +#: order/serializers.py:121 #: report/templates/report/inventree_purchase_order_report.html:29 #: report/templates/report/inventree_return_order_report.html:19 #: report/templates/report/inventree_sales_order_report.html:22 msgid "Line Items" msgstr "Eilutės įrašai" -#: order/serializers.py:125 +#: order/serializers.py:126 msgid "Completed Lines" msgstr "Užbaigtos eilutės" -#: order/serializers.py:192 +#: order/serializers.py:199 msgid "Duplicate Order" msgstr "Dubliuoti užsakymą" -#: order/serializers.py:193 +#: order/serializers.py:200 msgid "Specify options for duplicating this order" msgstr "Nurodykite užsakymo dubliavimo parinktis" -#: order/serializers.py:270 +#: order/serializers.py:278 msgid "Invalid order ID" msgstr "Neteisingas užsakymo ID" -#: order/serializers.py:466 +#: order/serializers.py:477 msgid "Supplier Name" msgstr "Tiekėjo pavadinimas" -#: order/serializers.py:510 +#: order/serializers.py:521 msgid "Order cannot be cancelled" msgstr "Užsakymo atšaukti negalima" -#: order/serializers.py:525 order/serializers.py:1602 +#: order/serializers.py:536 order/serializers.py:1616 msgid "Allow order to be closed with incomplete line items" msgstr "Leisti užbaigti užsakymą su neužbaigtais eilutės įrašais" -#: order/serializers.py:535 order/serializers.py:1612 +#: order/serializers.py:546 order/serializers.py:1626 msgid "Order has incomplete line items" msgstr "Užsakyme yra neužbaigtų eilutės įrašų" -#: order/serializers.py:665 +#: order/serializers.py:676 msgid "Order is not open" msgstr "Užsakymas nėra atidarytas" -#: order/serializers.py:692 +#: order/serializers.py:703 msgid "Auto Pricing" msgstr "Automatinis kainų nustatymas" -#: order/serializers.py:694 +#: order/serializers.py:705 msgid "Automatically calculate purchase price based on supplier part data" msgstr "Automatiškai apskaičiuoti pirkimo kainą pagal tiekėjo detalės duomenis" -#: order/serializers.py:704 +#: order/serializers.py:715 msgid "Purchase price currency" msgstr "Pirkimo kainos valiuta" -#: order/serializers.py:718 +#: order/serializers.py:729 msgid "Merge Items" msgstr "Sujungti elementus" -#: order/serializers.py:720 +#: order/serializers.py:731 msgid "Merge items with the same part, destination and target date into one line item" msgstr "Sujungti elementus su ta pačia detale, paskirtimi ir tiksline data į vieną eilutės įrašą" -#: order/serializers.py:727 part/serializers.py:560 +#: order/serializers.py:738 part/serializers.py:471 msgid "SKU" msgstr "SKU" -#: order/serializers.py:741 part/models.py:1089 part/serializers.py:372 +#: order/serializers.py:752 part/models.py:1177 part/serializers.py:337 msgid "Internal Part Number" msgstr "Vidinis detalės numeris" -#: order/serializers.py:749 +#: order/serializers.py:760 msgid "Internal Part Name" msgstr "Vidinis detalės pavadinimas" -#: order/serializers.py:765 +#: order/serializers.py:776 msgid "Supplier part must be specified" msgstr "Turi būti nurodyta tiekėjo detalė" -#: order/serializers.py:768 +#: order/serializers.py:779 msgid "Purchase order must be specified" msgstr "Turi būti nurodytas pirkimo užsakymas" -#: order/serializers.py:776 +#: order/serializers.py:787 msgid "Supplier must match purchase order" msgstr "Tiekėjas turi atitikti pirkimo užsakymą" -#: order/serializers.py:777 +#: order/serializers.py:788 msgid "Purchase order must match supplier" msgstr "Pirkimo užsakymas turi atitikti tiekėją" -#: order/serializers.py:825 order/serializers.py:1682 +#: order/serializers.py:836 order/serializers.py:1696 msgid "Line Item" msgstr "Eilutės įrašas" -#: order/serializers.py:834 order/serializers.py:974 order/serializers.py:2043 +#: order/serializers.py:845 order/serializers.py:985 order/serializers.py:2060 msgid "Select destination location for received items" msgstr "Pasirinkite paskirties vietą gautiems elementams" -#: order/serializers.py:850 +#: order/serializers.py:861 msgid "Enter batch code for incoming stock items" msgstr "Įveskite partijos kodą gaunamoms atsargoms" -#: order/serializers.py:857 stock/models.py:1160 +#: order/serializers.py:868 stock/models.py:1160 #: templates/email/stale_stock_notification.html:22 users/models.py:137 msgid "Expiry Date" msgstr "Galiojimo data" -#: order/serializers.py:858 +#: order/serializers.py:869 msgid "Enter expiry date for incoming stock items" msgstr "Įveskite galiojimo datą gaunamoms atsargoms" -#: order/serializers.py:866 +#: order/serializers.py:877 msgid "Enter serial numbers for incoming stock items" msgstr "Įveskite gaunamų atsargų serijos numerius" -#: order/serializers.py:876 +#: order/serializers.py:887 msgid "Override packaging information for incoming stock items" msgstr "Pakeisti gaunamų atsargų pakavimo informaciją" -#: order/serializers.py:884 order/serializers.py:2048 +#: order/serializers.py:895 order/serializers.py:2065 msgid "Additional note for incoming stock items" msgstr "Papildoma pastaba gaunamoms atsargoms" -#: order/serializers.py:891 +#: order/serializers.py:902 msgid "Barcode" msgstr "Brūkšninis kodas" -#: order/serializers.py:892 +#: order/serializers.py:903 msgid "Scanned barcode" msgstr "Nuskaitytas brūkšninis kodas" -#: order/serializers.py:908 +#: order/serializers.py:919 msgid "Barcode is already in use" msgstr "Brūkšninis kodas jau naudojamas" -#: order/serializers.py:991 order/serializers.py:2067 +#: order/serializers.py:1002 order/serializers.py:2084 msgid "Line items must be provided" msgstr "Turi būti pateikti eilutės įrašai" -#: order/serializers.py:1010 +#: order/serializers.py:1021 msgid "Destination location must be specified" msgstr "Turi būti nurodyta paskirties vieta" -#: order/serializers.py:1017 +#: order/serializers.py:1028 msgid "Supplied barcode values must be unique" msgstr "Pateiktos brūkšninių kodų reikšmės turi būti unikalios" -#: order/serializers.py:1121 +#: order/serializers.py:1135 msgid "Shipments" msgstr "Siuntos" -#: order/serializers.py:1125 +#: order/serializers.py:1139 msgid "Completed Shipments" msgstr "Užbaigtos siuntos" -#: order/serializers.py:1293 +#: order/serializers.py:1307 msgid "Sale price currency" msgstr "Pardavimo kainos valiuta" -#: order/serializers.py:1339 +#: order/serializers.py:1353 msgid "Allocated Items" msgstr "Paskirstyti elementai" -#: order/serializers.py:1484 +#: order/serializers.py:1498 msgid "No shipment details provided" msgstr "Nepateikta siuntos informacija" -#: order/serializers.py:1545 order/serializers.py:1691 +#: order/serializers.py:1559 order/serializers.py:1705 msgid "Line item is not associated with this order" msgstr "Eilutės įrašas nėra susijęs su šiuo užsakymu" -#: order/serializers.py:1564 +#: order/serializers.py:1578 msgid "Quantity must be positive" msgstr "Kiekis turi būti teigiamas" -#: order/serializers.py:1701 +#: order/serializers.py:1715 msgid "Enter serial numbers to allocate" msgstr "Įveskite priskiriamus serijos numerius" -#: order/serializers.py:1723 order/serializers.py:1843 +#: order/serializers.py:1737 order/serializers.py:1857 msgid "Shipment has already been shipped" msgstr "Siunta jau išsiųsta" -#: order/serializers.py:1726 order/serializers.py:1846 +#: order/serializers.py:1740 order/serializers.py:1860 msgid "Shipment is not associated with this order" msgstr "Siunta nėra susieta su šiuo užsakymu" -#: order/serializers.py:1781 +#: order/serializers.py:1795 msgid "No match found for the following serial numbers" msgstr "Nerasta atitikmenų šiems serijos numeriams" -#: order/serializers.py:1788 +#: order/serializers.py:1802 msgid "The following serial numbers are unavailable" msgstr "Šie serijos numeriai nepasiekiami" -#: order/serializers.py:2009 +#: order/serializers.py:2026 msgid "Return order line item" msgstr "Grąžinimo užsakymo eilutės įrašas" -#: order/serializers.py:2019 +#: order/serializers.py:2036 msgid "Line item does not match return order" msgstr "Eilutės įrašas neatitinka grąžinimo užsakymo" -#: order/serializers.py:2022 +#: order/serializers.py:2039 msgid "Line item has already been received" msgstr "Eilutės įrašas jau gautas" -#: order/serializers.py:2059 +#: order/serializers.py:2076 msgid "Items can only be received against orders which are in progress" msgstr "Elementai gali būti priimami tik pagal vykdomus užsakymus" -#: order/serializers.py:2124 +#: order/serializers.py:2141 msgid "Quantity to return" msgstr "Grąžinamas kiekis" -#: order/serializers.py:2140 +#: order/serializers.py:2157 msgid "Line price currency" msgstr "Eilutės kainos valiuta" @@ -5431,1190 +5559,1109 @@ msgstr "Vėluojantis grąžinimo užsakymas" msgid "Return order {ro} is now overdue" msgstr "Grąžinimo užsakymas {ro} dabar vėluoja" -#: part/api.py:108 +#: part/api.py:103 msgid "Starred" msgstr "Pažymėta žvaigždute" -#: part/api.py:110 +#: part/api.py:105 msgid "Filter by starred categories" msgstr "Filtruoti pagal pažymėtas kategorijas" -#: part/api.py:127 stock/api.py:288 +#: part/api.py:122 stock/api.py:288 msgid "Depth" msgstr "Gylis" -#: part/api.py:127 +#: part/api.py:122 msgid "Filter by category depth" msgstr "Filtruoti pagal kategorijos gylį" -#: part/api.py:145 stock/api.py:306 +#: part/api.py:140 stock/api.py:306 msgid "Top Level" msgstr "Aukščiausio lygio" -#: part/api.py:147 +#: part/api.py:142 msgid "Filter by top-level categories" msgstr "Filtruoti pagal aukščiausio lygio kategorijas" -#: part/api.py:160 stock/api.py:321 +#: part/api.py:155 stock/api.py:321 msgid "Cascade" msgstr "Kaskada" -#: part/api.py:162 +#: part/api.py:157 msgid "Include sub-categories in filtered results" msgstr "Įtraukti sub-kategorijas į filtravimo rezultatus" -#: part/api.py:182 +#: part/api.py:177 msgid "Parent" msgstr "Pirminė kategorija" -#: part/api.py:184 +#: part/api.py:179 msgid "Filter by parent category" msgstr "Filtruoti pagal pirminę kategoriją" -#: part/api.py:219 +#: part/api.py:214 msgid "Exclude sub-categories under the specified category" msgstr "Neįtraukti sub-kategorijų po nurodyta kategorija" -#: part/api.py:445 +#: part/api.py:440 msgid "Has Results" msgstr "Turi rezultatų" -#: part/api.py:666 +#: part/api.py:661 msgid "Is Variant" msgstr "Yra variantas" -#: part/api.py:674 +#: part/api.py:669 msgid "Is Revision" msgstr "Yra versija" -#: part/api.py:684 +#: part/api.py:679 msgid "Has Revisions" msgstr "Turi versijų" -#: part/api.py:865 +#: part/api.py:860 msgid "BOM Valid" msgstr "BOM galiojantis" -#: part/api.py:974 +#: part/api.py:969 msgid "Cascade Categories" msgstr "" -#: part/api.py:975 +#: part/api.py:970 msgid "If true, include items in child categories of the given category" msgstr "" -#: part/api.py:981 +#: part/api.py:976 msgid "Filter by numeric category ID or the literal 'null'" msgstr "" -#: part/api.py:1533 +#: part/api.py:1258 msgid "Assembly part is testable" msgstr "Surinkimo detalė gali būti testuojama" -#: part/api.py:1542 +#: part/api.py:1267 msgid "Component part is testable" msgstr "Komponento detalė gali būti testuojama" -#: part/api.py:1611 +#: part/api.py:1336 msgid "Uses" msgstr "Naudoja" -#: part/models.py:96 part/models.py:4163 +#: part/models.py:93 part/models.py:436 #: templates/email/part_event_notification.html:16 msgid "Part Category" msgstr "Detalių kategorija" -#: part/models.py:97 users/ruleset.py:27 +#: part/models.py:94 users/ruleset.py:27 msgid "Part Categories" msgstr "Detalių kategorijos" -#: part/models.py:115 part/models.py:1125 +#: part/models.py:112 part/models.py:1213 msgid "Default Location" msgstr "Numatytoji vieta" -#: part/models.py:116 +#: part/models.py:113 msgid "Default location for parts in this category" msgstr "Numatytoji vieta detalėms šioje kategorijoje" -#: part/models.py:121 stock/models.py:216 +#: part/models.py:118 stock/models.py:216 msgid "Structural" msgstr "Struktūrinė" -#: part/models.py:123 +#: part/models.py:120 msgid "Parts may not be directly assigned to a structural category, but may be assigned to child categories." msgstr "Detalės negali būti priskirtos struktūrinei kategorijai tiesiogiai, bet gali būti priskirtos jos subkategorijoms." -#: part/models.py:132 +#: part/models.py:129 msgid "Default keywords" msgstr "Numatytieji raktažodžiai" -#: part/models.py:133 +#: part/models.py:130 msgid "Default keywords for parts in this category" msgstr "Numatytieji raktažodžiai detalėms šioje kategorijoje" -#: part/models.py:140 stock/models.py:97 stock/models.py:198 +#: part/models.py:137 stock/models.py:97 stock/models.py:198 msgid "Icon" msgstr "Piktograma" -#: part/models.py:141 part/serializers.py:148 part/serializers.py:167 +#: part/models.py:138 part/serializers.py:147 part/serializers.py:166 #: stock/models.py:199 msgid "Icon (optional)" msgstr "Piktograma (neprivaloma)" -#: part/models.py:185 +#: part/models.py:182 msgid "You cannot make this part category structural because some parts are already assigned to it!" msgstr "Negalite paversti šios detalių kategorijos struktūrine, nes kai kurios detalės jau jai priskirtos!" -#: part/models.py:473 part/serializers.py:119 part/serializers.py:310 -#: users/ruleset.py:28 +#: part/models.py:392 +msgid "Part Category Parameter Template" +msgstr "Detalių kategorijos parametro šablonas" + +#: part/models.py:448 +msgid "Default Value" +msgstr "Numatytoji reikšmė" + +#: part/models.py:449 +msgid "Default Parameter Value" +msgstr "Numatytoji parametro reikšmė" + +#: part/models.py:551 part/serializers.py:118 users/ruleset.py:28 msgid "Parts" msgstr "Detalės" -#: part/models.py:525 +#: part/models.py:597 +msgid "Cannot delete parameters of a locked part" +msgstr "" + +#: part/models.py:602 +msgid "Cannot modify parameters of a locked part" +msgstr "" + +#: part/models.py:613 msgid "Cannot delete this part as it is locked" msgstr "Negalima ištrinti šios detalės, nes ji užrakinta" -#: part/models.py:528 +#: part/models.py:616 msgid "Cannot delete this part as it is still active" msgstr "Negalima ištrinti šios detalės, nes ji vis dar aktyvi" -#: part/models.py:533 +#: part/models.py:621 msgid "Cannot delete this part as it is used in an assembly" msgstr "Negalima ištrinti šios detalės, nes ji naudojama sirinkime" -#: part/models.py:616 part/models.py:623 +#: part/models.py:704 part/models.py:711 #, python-brace-format msgid "Part '{self}' cannot be used in BOM for '{parent}' (recursive)" msgstr "Detalė „{self}“ negali būti naudojama detalių sąraše „{parent}“ (rekursyviai)" -#: part/models.py:635 +#: part/models.py:723 #, python-brace-format msgid "Part '{parent}' is used in BOM for '{self}' (recursive)" msgstr "Detalė „{parent}“ naudojama detalių sąraše „{self}“ (rekursyviai)" -#: part/models.py:702 +#: part/models.py:790 #, python-brace-format msgid "IPN must match regex pattern {pattern}" msgstr "IPN turi atitikti regex šabloną {pattern}" -#: part/models.py:710 +#: part/models.py:798 msgid "Part cannot be a revision of itself" msgstr "Detalė negali būti savo pačios versija" -#: part/models.py:717 +#: part/models.py:805 msgid "Cannot make a revision of a part which is already a revision" msgstr "Negalima sukurti detalės versijos, jei tai jau yra kita versija" -#: part/models.py:724 +#: part/models.py:812 msgid "Revision code must be specified" msgstr "Turi būti nurodytas versijos kodas" -#: part/models.py:731 +#: part/models.py:819 msgid "Revisions are only allowed for assembly parts" msgstr "Versijos leidžiamos tik surinkimo detalėms" -#: part/models.py:738 +#: part/models.py:826 msgid "Cannot make a revision of a template part" msgstr "Negalima sukurti šabloninės detalės versijos" -#: part/models.py:744 +#: part/models.py:832 msgid "Parent part must point to the same template" msgstr "Pagrindinė detalė turi būti susieta su tuo pačiu šablonu" -#: part/models.py:841 +#: part/models.py:929 msgid "Stock item with this serial number already exists" msgstr "Atsargų elementas su šiuo serijos numeriu jau egzistuoja" -#: part/models.py:971 +#: part/models.py:1059 msgid "Duplicate IPN not allowed in part settings" msgstr "IPN dublikatų detalių nustatymuose naudoti negalima" -#: part/models.py:983 +#: part/models.py:1071 msgid "Duplicate part revision already exists." msgstr "Tokia detalės versija jau egzistuoja." -#: part/models.py:992 +#: part/models.py:1080 msgid "Part with this Name, IPN and Revision already exists." msgstr "Detalė su tokiu pavadinimu, IPN ir versija jau egzistuoja." -#: part/models.py:1007 +#: part/models.py:1095 msgid "Parts cannot be assigned to structural part categories!" msgstr "Detalės negali būti priskirtos struktūrinėms detalių kategorijoms!" -#: part/models.py:1039 +#: part/models.py:1127 msgid "Part name" msgstr "Detalės pavadinimas" -#: part/models.py:1044 +#: part/models.py:1132 msgid "Is Template" msgstr "Yra šablonas" -#: part/models.py:1045 +#: part/models.py:1133 msgid "Is this part a template part?" msgstr "Ar ši detalė yra šabloninė detalė?" -#: part/models.py:1055 +#: part/models.py:1143 msgid "Is this part a variant of another part?" msgstr "Ar ši detalė yra kitos detalės variantas?" -#: part/models.py:1056 +#: part/models.py:1144 msgid "Variant Of" msgstr "Variantas iš" -#: part/models.py:1063 +#: part/models.py:1151 msgid "Part description (optional)" msgstr "Detalės aprašymas (neprivalomas)" -#: part/models.py:1070 +#: part/models.py:1158 msgid "Keywords" msgstr "Raktažodžiai" -#: part/models.py:1071 +#: part/models.py:1159 msgid "Part keywords to improve visibility in search results" msgstr "Detalės raktažodžiai, skirti pagerinti matomumą paieškos rezultatuose" -#: part/models.py:1081 +#: part/models.py:1169 msgid "Part category" msgstr "Detalės kategorija" -#: part/models.py:1088 part/serializers.py:929 +#: part/models.py:1176 part/serializers.py:814 #: report/templates/report/inventree_stock_location_report.html:103 msgid "IPN" msgstr "IPN" -#: part/models.py:1096 +#: part/models.py:1184 msgid "Part revision or version number" msgstr "Detalės versija arba numeris" -#: part/models.py:1097 report/models.py:228 +#: part/models.py:1185 report/models.py:228 msgid "Revision" msgstr "Versija" -#: part/models.py:1106 +#: part/models.py:1194 msgid "Is this part a revision of another part?" msgstr "Ar ši detalė yra kitos detalės versija?" -#: part/models.py:1107 +#: part/models.py:1195 msgid "Revision Of" msgstr "Versija iš" -#: part/models.py:1123 +#: part/models.py:1211 msgid "Where is this item normally stored?" msgstr "Kur ši detalė paprastai laikoma?" -#: part/models.py:1169 +#: part/models.py:1257 msgid "Default Supplier" msgstr "Numatytasis tiekėjas" -#: part/models.py:1170 +#: part/models.py:1258 msgid "Default supplier part" msgstr "Numatytoji tiekėjo detalė" -#: part/models.py:1177 +#: part/models.py:1265 msgid "Default Expiry" msgstr "Numatytasis galiojimo laikas" -#: part/models.py:1178 +#: part/models.py:1266 msgid "Expiry time (in days) for stock items of this part" msgstr "Šios detalės atsargų galiojimo laikas (dienomis)" -#: part/models.py:1186 part/serializers.py:1003 +#: part/models.py:1274 part/serializers.py:888 msgid "Minimum Stock" msgstr "Minimalus atsargų kiekis" -#: part/models.py:1187 +#: part/models.py:1275 msgid "Minimum allowed stock level" msgstr "Mažiausias leidžiamas atsargų kiekis" -#: part/models.py:1196 +#: part/models.py:1284 msgid "Units of measure for this part" msgstr "Šios detalės matavimo vienetai" -#: part/models.py:1203 +#: part/models.py:1291 msgid "Can this part be built from other parts?" msgstr "Ar ši detalė gali būti pagaminta iš kitų detalių?" -#: part/models.py:1209 +#: part/models.py:1297 msgid "Can this part be used to build other parts?" msgstr "Ar ši detalė gali būti naudojama kitoms detalėms gaminti?" -#: part/models.py:1215 +#: part/models.py:1303 msgid "Does this part have tracking for unique items?" msgstr "Ar ši detalė turi unikalių vienetų sekimą?" -#: part/models.py:1221 +#: part/models.py:1309 msgid "Can this part have test results recorded against it?" msgstr "Ar šiai detalei gali būti priskirti bandymų rezultatai?" -#: part/models.py:1227 +#: part/models.py:1315 msgid "Can this part be purchased from external suppliers?" msgstr "Ar ši detalė gali būti perkama iš išorinių tiekėjų?" -#: part/models.py:1233 +#: part/models.py:1321 msgid "Can this part be sold to customers?" msgstr "Ar ši detalė gali būti parduodama klientams?" -#: part/models.py:1237 +#: part/models.py:1325 msgid "Is this part active?" msgstr "Ar ši detalė yra aktyvi?" -#: part/models.py:1243 +#: part/models.py:1331 msgid "Locked parts cannot be edited" msgstr "Užrakintos detalės negali būti redaguojamos" -#: part/models.py:1249 +#: part/models.py:1337 msgid "Is this a virtual part, such as a software product or license?" msgstr "Ar tai virtuali detalė, pavyzdžiui, programinė įranga ar licencija?" -#: part/models.py:1254 +#: part/models.py:1342 msgid "BOM Validated" msgstr "" -#: part/models.py:1255 +#: part/models.py:1343 msgid "Is the BOM for this part valid?" msgstr "" -#: part/models.py:1261 +#: part/models.py:1349 msgid "BOM checksum" msgstr "BOM kontrolinė suma" -#: part/models.py:1262 +#: part/models.py:1350 msgid "Stored BOM checksum" msgstr "Išsaugota BOM kontrolinė suma" -#: part/models.py:1270 +#: part/models.py:1358 msgid "BOM checked by" msgstr "Detalių sąrašą patikrino" -#: part/models.py:1275 +#: part/models.py:1363 msgid "BOM checked date" msgstr "Detalių sąrašo patikrinimo data" -#: part/models.py:1291 +#: part/models.py:1379 msgid "Creation User" msgstr "Sukūręs vartotojas" -#: part/models.py:1301 +#: part/models.py:1389 msgid "Owner responsible for this part" msgstr "Atsakingas vartotojas už šią detalę" -#: part/models.py:2258 +#: part/models.py:2346 msgid "Sell multiple" msgstr "Parduodamas kiekis" -#: part/models.py:3286 +#: part/models.py:3350 msgid "Currency used to cache pricing calculations" msgstr "Valiuta, naudojama kainų skaičiavimams kaupti" -#: part/models.py:3302 +#: part/models.py:3366 msgid "Minimum BOM Cost" msgstr "Minimali BOM kaina" -#: part/models.py:3303 +#: part/models.py:3367 msgid "Minimum cost of component parts" msgstr "Minimali komponentų detalių kaina" -#: part/models.py:3309 +#: part/models.py:3373 msgid "Maximum BOM Cost" msgstr "Maksimali BOM kaina" -#: part/models.py:3310 +#: part/models.py:3374 msgid "Maximum cost of component parts" msgstr "Maksimali komponentų detalių kaina" -#: part/models.py:3316 +#: part/models.py:3380 msgid "Minimum Purchase Cost" msgstr "Minimali pirkimo kaina" -#: part/models.py:3317 +#: part/models.py:3381 msgid "Minimum historical purchase cost" msgstr "Mažiausia istorinė pirkimo kaina" -#: part/models.py:3323 +#: part/models.py:3387 msgid "Maximum Purchase Cost" msgstr "Maksimali pirkimo kaina" -#: part/models.py:3324 +#: part/models.py:3388 msgid "Maximum historical purchase cost" msgstr "Didžiausia istorinė pirkimo kaina" -#: part/models.py:3330 +#: part/models.py:3394 msgid "Minimum Internal Price" msgstr "Minimali vidinė kaina" -#: part/models.py:3331 +#: part/models.py:3395 msgid "Minimum cost based on internal price breaks" msgstr "Mažiausia kaina pagal vidinius kainų intervalus" -#: part/models.py:3337 +#: part/models.py:3401 msgid "Maximum Internal Price" msgstr "Maksimali vidinė kaina" -#: part/models.py:3338 +#: part/models.py:3402 msgid "Maximum cost based on internal price breaks" msgstr "Didžiausia kaina pagal vidinius kainų intervalus" -#: part/models.py:3344 +#: part/models.py:3408 msgid "Minimum Supplier Price" msgstr "Mažiausia tiekėjo kaina" -#: part/models.py:3345 +#: part/models.py:3409 msgid "Minimum price of part from external suppliers" msgstr "Mažiausia detalės kaina iš išorinių tiekėjų" -#: part/models.py:3351 +#: part/models.py:3415 msgid "Maximum Supplier Price" msgstr "Didžiausia tiekėjo kaina" -#: part/models.py:3352 +#: part/models.py:3416 msgid "Maximum price of part from external suppliers" msgstr "Didžiausia detalės kaina iš išorinių tiekėjų" -#: part/models.py:3358 +#: part/models.py:3422 msgid "Minimum Variant Cost" msgstr "Mažiausia varianto kaina" -#: part/models.py:3359 +#: part/models.py:3423 msgid "Calculated minimum cost of variant parts" msgstr "Apskaičiuota minimali variantų detalių kaina" -#: part/models.py:3365 +#: part/models.py:3429 msgid "Maximum Variant Cost" msgstr "Didžiausia varianto kaina" -#: part/models.py:3366 +#: part/models.py:3430 msgid "Calculated maximum cost of variant parts" msgstr "Apskaičiuota didžiausia variantų detalių kaina" -#: part/models.py:3372 part/models.py:3386 +#: part/models.py:3436 part/models.py:3450 msgid "Minimum Cost" msgstr "Minimali kaina" -#: part/models.py:3373 +#: part/models.py:3437 msgid "Override minimum cost" msgstr "Nepaisyti minimalios kainos" -#: part/models.py:3379 part/models.py:3393 +#: part/models.py:3443 part/models.py:3457 msgid "Maximum Cost" msgstr "Maksimali kaina" -#: part/models.py:3380 +#: part/models.py:3444 msgid "Override maximum cost" msgstr "Nepaisyti maksimalios kainos" -#: part/models.py:3387 +#: part/models.py:3451 msgid "Calculated overall minimum cost" msgstr "Apskaičiuota bendra minimali kaina" -#: part/models.py:3394 +#: part/models.py:3458 msgid "Calculated overall maximum cost" msgstr "Apskaičiuota bendra maksimali kaina" -#: part/models.py:3400 +#: part/models.py:3464 msgid "Minimum Sale Price" msgstr "Minimali pardavimo kaina" -#: part/models.py:3401 +#: part/models.py:3465 msgid "Minimum sale price based on price breaks" msgstr "Mažiausia pardavimo kaina pagal kainų intervalus" -#: part/models.py:3407 +#: part/models.py:3471 msgid "Maximum Sale Price" msgstr "Didžiausia pardavimo kaina" -#: part/models.py:3408 +#: part/models.py:3472 msgid "Maximum sale price based on price breaks" msgstr "Didžiausia pardavimo kaina pagal kainų intervalus" -#: part/models.py:3414 +#: part/models.py:3478 msgid "Minimum Sale Cost" msgstr "Mažiausia pardavimo kaina" -#: part/models.py:3415 +#: part/models.py:3479 msgid "Minimum historical sale price" msgstr "Mažiausia istorinė pardavimo kaina" -#: part/models.py:3421 +#: part/models.py:3485 msgid "Maximum Sale Cost" msgstr "Didžiausia pardavimo kaina" -#: part/models.py:3422 +#: part/models.py:3486 msgid "Maximum historical sale price" msgstr "Didžiausia istorinė pardavimo kaina" -#: part/models.py:3440 +#: part/models.py:3504 msgid "Part for stocktake" msgstr "Detalė inventorizacijai" -#: part/models.py:3445 +#: part/models.py:3509 msgid "Item Count" msgstr "Vienetų skaičius" -#: part/models.py:3446 +#: part/models.py:3510 msgid "Number of individual stock entries at time of stocktake" msgstr "Atsargų įrašų skaičius inventorizacijos metu" -#: part/models.py:3454 +#: part/models.py:3518 msgid "Total available stock at time of stocktake" msgstr "Bendras prieinamas atsargų kiekis inventorizacijos metu" -#: part/models.py:3458 report/templates/report/inventree_test_report.html:106 +#: part/models.py:3522 report/templates/report/inventree_test_report.html:106 msgid "Date" msgstr "Data" -#: part/models.py:3459 +#: part/models.py:3523 msgid "Date stocktake was performed" msgstr "Inventorizacijos atlikimo data" -#: part/models.py:3466 +#: part/models.py:3530 msgid "Minimum Stock Cost" msgstr "Minimali atsargų kaina" -#: part/models.py:3467 +#: part/models.py:3531 msgid "Estimated minimum cost of stock on hand" msgstr "Apytikslė minimali turimų atsargų kaina" -#: part/models.py:3473 +#: part/models.py:3537 msgid "Maximum Stock Cost" msgstr "Maksimali atsargų kaina" -#: part/models.py:3474 +#: part/models.py:3538 msgid "Estimated maximum cost of stock on hand" msgstr "Apytikslė maksimali turimų atsargų kaina" -#: part/models.py:3484 +#: part/models.py:3548 msgid "Part Sale Price Break" msgstr "Detalės kainų intervalai pardavimui" -#: part/models.py:3596 +#: part/models.py:3660 msgid "Part Test Template" msgstr "Detalės bandymų šablonas" -#: part/models.py:3622 +#: part/models.py:3686 msgid "Invalid template name - must include at least one alphanumeric character" msgstr "Netinkamas šablono pavadinimas - turi būti bent vienas raidinis ar skaitinis simbolis" -#: part/models.py:3643 part/models.py:3816 -msgid "Choices must be unique" -msgstr "Pasirinkimai turi būti unikalūs" - -#: part/models.py:3654 +#: part/models.py:3718 msgid "Test templates can only be created for testable parts" msgstr "Bandymų šablonus galima kurti tik testuojamoms detalėms" -#: part/models.py:3668 +#: part/models.py:3732 msgid "Test template with the same key already exists for part" msgstr "Detalė jau turi bandymų šabloną su tokiu pačiu raktu" -#: part/models.py:3685 +#: part/models.py:3749 msgid "Test Name" msgstr "Bandymo pavadinimas" -#: part/models.py:3686 +#: part/models.py:3750 msgid "Enter a name for the test" msgstr "Įveskite bandymo pavadinimą" -#: part/models.py:3692 +#: part/models.py:3756 msgid "Test Key" msgstr "Bandymo raktas" -#: part/models.py:3693 +#: part/models.py:3757 msgid "Simplified key for the test" msgstr "Supaprastintas bandymo raktas" -#: part/models.py:3700 +#: part/models.py:3764 msgid "Test Description" msgstr "Bandymo aprašymas" -#: part/models.py:3701 +#: part/models.py:3765 msgid "Enter description for this test" msgstr "Įveskite šio bandymo aprašymą" -#: part/models.py:3705 report/models.py:287 -msgid "Enabled" -msgstr "Įjungta" - -#: part/models.py:3705 +#: part/models.py:3769 msgid "Is this test enabled?" msgstr "Ar šis bandymas įjungtas?" -#: part/models.py:3710 +#: part/models.py:3774 msgid "Required" msgstr "Privalomas" -#: part/models.py:3711 +#: part/models.py:3775 msgid "Is this test required to pass?" msgstr "Ar šį bandymą būtina išlaikyti?" -#: part/models.py:3716 +#: part/models.py:3780 msgid "Requires Value" msgstr "Reikalauja reikšmės" -#: part/models.py:3717 +#: part/models.py:3781 msgid "Does this test require a value when adding a test result?" msgstr "Ar šiam bandymui reikia įvesti reikšmę pridedant rezultatą?" -#: part/models.py:3722 +#: part/models.py:3786 msgid "Requires Attachment" msgstr "Reikalauja priedo" -#: part/models.py:3724 +#: part/models.py:3788 msgid "Does this test require a file attachment when adding a test result?" msgstr "Ar šiam bandymui reikia pridėti failą su rezultatu?" -#: part/models.py:3730 part/models.py:3878 -msgid "Choices" -msgstr "Pasirinkimai" - -#: part/models.py:3731 +#: part/models.py:3795 msgid "Valid choices for this test (comma-separated)" msgstr "Galimi pasirinkimai šiam bandymui (atskirti kableliais)" -#: part/models.py:3764 -msgid "Part Parameter Template" -msgstr "Detalės parametro šablonas" - -#: part/models.py:3791 -msgid "Checkbox parameters cannot have units" -msgstr "Žymimojo laukelio parametrai negali turėti matavimo vienetų" - -#: part/models.py:3796 -msgid "Checkbox parameters cannot have choices" -msgstr "Žymimojo laukelio parametrai negali turėti pasirinkimų" - -#: part/models.py:3833 -msgid "Parameter template name must be unique" -msgstr "Parametro šablono pavadinimas turi būti unikalus" - -#: part/models.py:3851 -msgid "Parameter Name" -msgstr "Parametro pavadinimas" - -#: part/models.py:3858 -msgid "Physical units for this parameter" -msgstr "Fiziniai šio parametro vienetai" - -#: part/models.py:3866 -msgid "Parameter description" -msgstr "Parametro aprašymas" - -#: part/models.py:3872 -msgid "Checkbox" -msgstr "Žymimasis laukelis" - -#: part/models.py:3873 -msgid "Is this parameter a checkbox?" -msgstr "Ar šis parametras yra žymimasis laukelis?" - -#: part/models.py:3879 -msgid "Valid choices for this parameter (comma-separated)" -msgstr "Galimi pasirinkimai šiam parametrui (atskirti kableliais)" - -#: part/models.py:3890 -msgid "Selection list for this parameter" -msgstr "Pasirinkimų sąrašas šiam parametrui" - -#: part/models.py:3932 -msgid "Part Parameter" -msgstr "Detalės parametras" - -#: part/models.py:3958 -msgid "Parameter cannot be modified - part is locked" -msgstr "Parametro keisti negalima - detalė užrakinta" - -#: part/models.py:3996 -msgid "Invalid choice for parameter value" -msgstr "Neteisingas pasirinkimas parametro reikšmei" - -#: part/models.py:4047 -msgid "Parent Part" -msgstr "Pirminė detalė" - -#: part/models.py:4055 part/models.py:4170 part/models.py:4171 -msgid "Parameter Template" -msgstr "Parametro šablonas" - -#: part/models.py:4061 -msgid "Parameter Value" -msgstr "Parametro reikšmė" - -#: part/models.py:4071 stock/serializers.py:718 -msgid "Optional note field" -msgstr "Neprivalomas pastabų laukas" - -#: part/models.py:4118 -msgid "Part Category Parameter Template" -msgstr "Detalių kategorijos parametro šablonas" - -#: part/models.py:4177 -msgid "Default Value" -msgstr "Numatytoji reikšmė" - -#: part/models.py:4178 -msgid "Default Parameter Value" -msgstr "Numatytoji parametro reikšmė" - -#: part/models.py:4352 +#: part/models.py:3977 msgid "BOM item cannot be modified - assembly is locked" msgstr "BOM elemento keisti negalima - surinkimas užrakintas" -#: part/models.py:4359 +#: part/models.py:3984 msgid "BOM item cannot be modified - variant assembly is locked" msgstr "BOM elemento keisti negalima - varianto surinkimas užrakintas" -#: part/models.py:4369 +#: part/models.py:3994 msgid "Select parent part" msgstr "Pasirinkite pirminę detalę" -#: part/models.py:4379 +#: part/models.py:4004 msgid "Sub part" msgstr "Pavaldi detalė" -#: part/models.py:4380 +#: part/models.py:4005 msgid "Select part to be used in BOM" msgstr "Pasirinkite detalę, naudojamą BOM" -#: part/models.py:4391 +#: part/models.py:4016 msgid "BOM quantity for this BOM item" msgstr "BOM reikalingas šios detalės kiekis" -#: part/models.py:4397 +#: part/models.py:4022 msgid "This BOM item is optional" msgstr "Šis BOM elementas yra pasirenkamas" -#: part/models.py:4403 +#: part/models.py:4028 msgid "This BOM item is consumable (it is not tracked in build orders)" msgstr "Šis BOM elementas yra sunaudojamas (nesekamas gamybos užsakymuose)" -#: part/models.py:4411 +#: part/models.py:4036 msgid "Setup Quantity" msgstr "" -#: part/models.py:4412 +#: part/models.py:4037 msgid "Extra required quantity for a build, to account for setup losses" msgstr "" -#: part/models.py:4420 +#: part/models.py:4045 msgid "Attrition" msgstr "" -#: part/models.py:4422 +#: part/models.py:4047 msgid "Estimated attrition for a build, expressed as a percentage (0-100)" msgstr "" -#: part/models.py:4433 +#: part/models.py:4058 msgid "Rounding Multiple" msgstr "" -#: part/models.py:4435 +#: part/models.py:4060 msgid "Round up required production quantity to nearest multiple of this value" msgstr "" -#: part/models.py:4443 +#: part/models.py:4068 msgid "BOM item reference" msgstr "BOM nuoroda" -#: part/models.py:4451 +#: part/models.py:4076 msgid "BOM item notes" msgstr "BOM pastabos" -#: part/models.py:4457 +#: part/models.py:4082 msgid "Checksum" msgstr "Kontrolinė suma" -#: part/models.py:4458 +#: part/models.py:4083 msgid "BOM line checksum" msgstr "BOM eilutės kontrolinė suma" -#: part/models.py:4463 +#: part/models.py:4088 msgid "Validated" msgstr "Patvirtinta" -#: part/models.py:4464 +#: part/models.py:4089 msgid "This BOM item has been validated" msgstr "Šis BOM elementas patvirtintas" -#: part/models.py:4469 +#: part/models.py:4094 msgid "Gets inherited" msgstr "Paveldima" -#: part/models.py:4470 +#: part/models.py:4095 msgid "This BOM item is inherited by BOMs for variant parts" msgstr "Šį BOM elementą paveldi variantų sąrašai" -#: part/models.py:4476 +#: part/models.py:4101 msgid "Stock items for variant parts can be used for this BOM item" msgstr "Šiam BOM elementui galima naudoti variantinių detalių atsargas" -#: part/models.py:4583 stock/models.py:925 +#: part/models.py:4208 stock/models.py:925 msgid "Quantity must be integer value for trackable parts" msgstr "Sekamoms detalėms kiekis turi būti sveikasis skaičius" -#: part/models.py:4593 part/models.py:4595 +#: part/models.py:4218 part/models.py:4220 msgid "Sub part must be specified" msgstr "Turi būti nurodyta pavaldi detalė" -#: part/models.py:4746 +#: part/models.py:4371 msgid "BOM Item Substitute" msgstr "BOM elemento pakaitalas" -#: part/models.py:4767 +#: part/models.py:4392 msgid "Substitute part cannot be the same as the master part" msgstr "Pakaitinė detalė negali būti tokia pati kaip pagrindinė detalė" -#: part/models.py:4780 +#: part/models.py:4405 msgid "Parent BOM item" msgstr "Pagrindinis BOM elementas" -#: part/models.py:4788 +#: part/models.py:4413 msgid "Substitute part" msgstr "Pakaitinė detalė" -#: part/models.py:4804 +#: part/models.py:4429 msgid "Part 1" msgstr "Detalė 1" -#: part/models.py:4812 +#: part/models.py:4437 msgid "Part 2" msgstr "Detalė 2" -#: part/models.py:4813 +#: part/models.py:4438 msgid "Select Related Part" msgstr "Pasirinkite susijusią detalę" -#: part/models.py:4820 +#: part/models.py:4445 msgid "Note for this relationship" msgstr "Pastaba šiam ryšiui" -#: part/models.py:4839 +#: part/models.py:4464 msgid "Part relationship cannot be created between a part and itself" msgstr "Detalių ryšio negalima sukurti tarp detalės ir jos pačios" -#: part/models.py:4844 +#: part/models.py:4469 msgid "Duplicate relationship already exists" msgstr "Toks ryšys jau egzistuoja" -#: part/serializers.py:114 +#: part/serializers.py:113 msgid "Parent Category" msgstr "Pagrindinė kategorija" -#: part/serializers.py:115 +#: part/serializers.py:114 msgid "Parent part category" msgstr "Pagrindinė detalių kategorija" -#: part/serializers.py:123 part/serializers.py:164 +#: part/serializers.py:122 part/serializers.py:163 msgid "Subcategories" msgstr "Subkategorijos" -#: part/serializers.py:203 +#: part/serializers.py:202 msgid "Results" msgstr "Rezultatai" -#: part/serializers.py:204 +#: part/serializers.py:203 msgid "Number of results recorded against this template" msgstr "Rezultatų skaičius, susietas su šiuo šablonu" -#: part/serializers.py:235 part/serializers.py:253 stock/serializers.py:643 +#: part/serializers.py:234 part/serializers.py:252 stock/serializers.py:643 msgid "Purchase currency of this stock item" msgstr "Šio atsargų elemento pirkimo valiuta" -#: part/serializers.py:280 +#: part/serializers.py:279 msgid "File is not an image" msgstr "Failas nėra paveikslėlis" -#: part/serializers.py:311 -msgid "Number of parts using this template" -msgstr "Detalių, naudojančių šį šabloną, skaičius" - -#: part/serializers.py:471 +#: part/serializers.py:382 msgid "Original Part" msgstr "Pradinė detalė" -#: part/serializers.py:472 +#: part/serializers.py:383 msgid "Select original part to duplicate" msgstr "Pasirinkite pradinę detalę kopijavimui" -#: part/serializers.py:477 +#: part/serializers.py:388 msgid "Copy Image" msgstr "Kopijuoti paveikslėlį" -#: part/serializers.py:478 +#: part/serializers.py:389 msgid "Copy image from original part" msgstr "Kopijuoti paveikslėlį iš pradinės detalės" -#: part/serializers.py:484 +#: part/serializers.py:395 msgid "Copy BOM" msgstr "Kopijuoti BOM" -#: part/serializers.py:485 +#: part/serializers.py:396 msgid "Copy bill of materials from original part" msgstr "Kopijuoti komplektavimo žiniaraštį iš pradinės detalės" -#: part/serializers.py:491 +#: part/serializers.py:402 msgid "Copy Parameters" msgstr "Kopijuoti parametrus" -#: part/serializers.py:492 +#: part/serializers.py:403 msgid "Copy parameter data from original part" msgstr "Kopijuoti parametrų duomenis iš pradinės detalės" -#: part/serializers.py:498 +#: part/serializers.py:409 msgid "Copy Notes" msgstr "Kopijuoti pastabas" -#: part/serializers.py:499 +#: part/serializers.py:410 msgid "Copy notes from original part" msgstr "Kopijuoti pastabas iš pradinės detalės" -#: part/serializers.py:505 +#: part/serializers.py:416 msgid "Copy Tests" msgstr "" -#: part/serializers.py:506 +#: part/serializers.py:417 msgid "Copy test templates from original part" msgstr "" -#: part/serializers.py:524 +#: part/serializers.py:435 msgid "Initial Stock Quantity" msgstr "Pradinis atsargų kiekis" -#: part/serializers.py:526 +#: part/serializers.py:437 msgid "Specify initial stock quantity for this Part. If quantity is zero, no stock is added." msgstr "Nurodykite pradinį atsargų kiekį šiai detalei. Jei kiekis nulis - atsargos nebus pridėtos." -#: part/serializers.py:533 +#: part/serializers.py:444 msgid "Initial Stock Location" msgstr "Pradinė atsargų vieta" -#: part/serializers.py:534 +#: part/serializers.py:445 msgid "Specify initial stock location for this Part" msgstr "Nurodykite pradinę atsargų vietą šiai detalei" -#: part/serializers.py:551 +#: part/serializers.py:462 msgid "Select supplier (or leave blank to skip)" msgstr "Pasirinkite tiekėją (arba palikite tuščią, jei nenorite nurodyti)" -#: part/serializers.py:567 +#: part/serializers.py:478 msgid "Select manufacturer (or leave blank to skip)" msgstr "Pasirinkite gamintoją (arba palikite tuščią, jei nenorite nurodyti)" -#: part/serializers.py:577 +#: part/serializers.py:488 msgid "Manufacturer part number" msgstr "Gamintojo detalės numeris" -#: part/serializers.py:584 +#: part/serializers.py:495 msgid "Selected company is not a valid supplier" msgstr "Pasirinkta įmonė nėra galiojantis tiekėjas" -#: part/serializers.py:593 +#: part/serializers.py:504 msgid "Selected company is not a valid manufacturer" msgstr "Pasirinkta įmonė nėra galiojantis gamintojas" -#: part/serializers.py:604 +#: part/serializers.py:515 msgid "Manufacturer part matching this MPN already exists" msgstr "Detalė su šiuo gamintojo numeriu (MPN) jau egzistuoja" -#: part/serializers.py:611 +#: part/serializers.py:522 msgid "Supplier part matching this SKU already exists" msgstr "Tiekėjo detalė su šiuo SKU jau egzistuoja" -#: part/serializers.py:914 +#: part/serializers.py:799 msgid "Category Name" msgstr "Kategorijos pavadinimas" -#: part/serializers.py:943 +#: part/serializers.py:828 msgid "Building" msgstr "Surinkimas" -#: part/serializers.py:944 +#: part/serializers.py:829 msgid "Quantity of this part currently being in production" msgstr "" -#: part/serializers.py:951 +#: part/serializers.py:836 msgid "Outstanding quantity of this part scheduled to be built" msgstr "" -#: part/serializers.py:971 stock/serializers.py:1019 stock/serializers.py:1189 +#: part/serializers.py:856 stock/serializers.py:1019 stock/serializers.py:1189 #: users/ruleset.py:30 msgid "Stock Items" msgstr "Atsargos" -#: part/serializers.py:975 +#: part/serializers.py:860 msgid "Revisions" msgstr "Versijos" -#: part/serializers.py:979 +#: part/serializers.py:864 msgid "Suppliers" msgstr "Tiekėjai" -#: part/serializers.py:983 part/serializers.py:1297 +#: part/serializers.py:868 part/serializers.py:1162 #: templates/email/low_stock_notification.html:16 #: templates/email/part_event_notification.html:17 msgid "Total Stock" msgstr "Bendros atsargos" -#: part/serializers.py:991 +#: part/serializers.py:876 msgid "Unallocated Stock" msgstr "Nepriskirtos atsargos" -#: part/serializers.py:999 +#: part/serializers.py:884 msgid "Variant Stock" msgstr "Variantų atsargos" -#: part/serializers.py:1054 +#: part/serializers.py:943 msgid "Duplicate Part" msgstr "Kopijuoti detalę" -#: part/serializers.py:1055 +#: part/serializers.py:944 msgid "Copy initial data from another Part" msgstr "Kopijuoti pradinius duomenis iš kitos detalės" -#: part/serializers.py:1061 +#: part/serializers.py:950 msgid "Initial Stock" msgstr "Pradinės atsargos" -#: part/serializers.py:1062 +#: part/serializers.py:951 msgid "Create Part with initial stock quantity" msgstr "Sukurti detalę su pradiniu atsargų kiekiu" -#: part/serializers.py:1068 +#: part/serializers.py:957 msgid "Supplier Information" msgstr "Tiekėjo informacija" -#: part/serializers.py:1069 +#: part/serializers.py:958 msgid "Add initial supplier information for this part" msgstr "Pridėti pradinę tiekėjo informaciją šiai detalei" -#: part/serializers.py:1077 +#: part/serializers.py:966 msgid "Copy Category Parameters" msgstr "Kopijuoti kategorijos parametrus" -#: part/serializers.py:1078 +#: part/serializers.py:967 msgid "Copy parameter templates from selected part category" msgstr "Kopijuoti parametrų šablonus iš pasirinktos detalių kategorijos" -#: part/serializers.py:1083 +#: part/serializers.py:972 msgid "Existing Image" msgstr "Esamas paveikslėlis" -#: part/serializers.py:1084 +#: part/serializers.py:973 msgid "Filename of an existing part image" msgstr "Esamos detalės paveikslėlio failo pavadinimas" -#: part/serializers.py:1101 +#: part/serializers.py:990 msgid "Image file does not exist" msgstr "Paveikslėlio failas neegzistuoja" -#: part/serializers.py:1269 +#: part/serializers.py:1134 msgid "Validate entire Bill of Materials" msgstr "Patvirtinti visą komplektavimo žiniaraštį" -#: part/serializers.py:1303 part/serializers.py:1769 +#: part/serializers.py:1168 part/serializers.py:1634 msgid "Can Build" msgstr "Galima surinkti" -#: part/serializers.py:1320 +#: part/serializers.py:1185 msgid "Required for Build Orders" msgstr "" -#: part/serializers.py:1325 +#: part/serializers.py:1190 msgid "Allocated to Build Orders" msgstr "" -#: part/serializers.py:1332 +#: part/serializers.py:1197 msgid "Required for Sales Orders" msgstr "" -#: part/serializers.py:1336 +#: part/serializers.py:1201 msgid "Allocated to Sales Orders" msgstr "" -#: part/serializers.py:1475 +#: part/serializers.py:1340 msgid "Minimum Price" msgstr "Mažiausia kaina" -#: part/serializers.py:1476 +#: part/serializers.py:1341 msgid "Override calculated value for minimum price" msgstr "Pakeisti apskaičiuotą mažiausią kainą" -#: part/serializers.py:1483 +#: part/serializers.py:1348 msgid "Minimum price currency" msgstr "Mažiausios kainos valiuta" -#: part/serializers.py:1490 +#: part/serializers.py:1355 msgid "Maximum Price" msgstr "Didžiausia kaina" -#: part/serializers.py:1491 +#: part/serializers.py:1356 msgid "Override calculated value for maximum price" msgstr "Pakeisti apskaičiuotą didžiausią kainą" -#: part/serializers.py:1498 +#: part/serializers.py:1363 msgid "Maximum price currency" msgstr "Didžiausios kainos valiuta" -#: part/serializers.py:1527 +#: part/serializers.py:1392 msgid "Update" msgstr "Atnaujinti" -#: part/serializers.py:1528 +#: part/serializers.py:1393 msgid "Update pricing for this part" msgstr "Atnaujinti šios detalės kainodarą" -#: part/serializers.py:1551 +#: part/serializers.py:1416 #, python-brace-format msgid "Could not convert from provided currencies to {default_currency}" msgstr "Nepavyko konvertuoti iš nurodytų valiutų į {default_currency}" -#: part/serializers.py:1558 +#: part/serializers.py:1423 msgid "Minimum price must not be greater than maximum price" msgstr "Mažiausia kaina negali būti didesnė už didžiausią kainą" -#: part/serializers.py:1561 +#: part/serializers.py:1426 msgid "Maximum price must not be less than minimum price" msgstr "Didžiausia kaina negali būti mažesnė už mažiausią kainą" -#: part/serializers.py:1715 +#: part/serializers.py:1580 msgid "Select the parent assembly" msgstr "Pasirinkite pirminį surinkimą" -#: part/serializers.py:1735 +#: part/serializers.py:1600 msgid "Select the component part" msgstr "Pasirinkite komponentinę detalę" -#: part/serializers.py:1929 +#: part/serializers.py:1802 msgid "Select part to copy BOM from" msgstr "Pasirinkite detalę, iš kurios kopijuoti BOM" -#: part/serializers.py:1937 +#: part/serializers.py:1810 msgid "Remove Existing Data" msgstr "Pašalinti esamus duomenis" -#: part/serializers.py:1938 +#: part/serializers.py:1811 msgid "Remove existing BOM items before copying" msgstr "Pašalinti esamus BOM elementus prieš kopijuojant" -#: part/serializers.py:1943 +#: part/serializers.py:1816 msgid "Include Inherited" msgstr "Įtraukti paveldėtus" -#: part/serializers.py:1944 +#: part/serializers.py:1817 msgid "Include BOM items which are inherited from templated parts" msgstr "Įtraukti BOM elementus, paveldėtus iš šabloninių detalių" -#: part/serializers.py:1949 +#: part/serializers.py:1822 msgid "Skip Invalid Rows" msgstr "Praleisti netinkamas eilutes" -#: part/serializers.py:1950 +#: part/serializers.py:1823 msgid "Enable this option to skip invalid rows" msgstr "Įjunkite šią parinktį, jei norite praleisti netinkamas eilutes" -#: part/serializers.py:1955 +#: part/serializers.py:1828 msgid "Copy Substitute Parts" msgstr "Kopijuoti pakaitines detales" -#: part/serializers.py:1956 +#: part/serializers.py:1829 msgid "Copy substitute parts when duplicate BOM items" msgstr "Kopijuoti pakaitines detales, kai kopijuojami BOM elementai" @@ -6927,7 +6974,7 @@ msgstr "Suteikia vietinį brūkšninių kodų palaikymą" #: plugin/builtin/events/auto_issue_orders.py:19 #: plugin/builtin/exporter/bom_exporter.py:73 #: plugin/builtin/exporter/inventree_exporter.py:17 -#: plugin/builtin/exporter/part_parameter_exporter.py:36 +#: plugin/builtin/exporter/parameter_exporter.py:32 #: plugin/builtin/exporter/stocktake_exporter.py:47 #: plugin/builtin/integration/core_notifications.py:25 #: plugin/builtin/integration/core_notifications.py:69 @@ -7041,23 +7088,19 @@ msgid "Include total quantity of each part in the BOM" msgstr "" #: plugin/builtin/exporter/bom_exporter.py:35 -#: plugin/builtin/exporter/part_parameter_exporter.py:17 msgid "Stock Data" msgstr "Atsargų duomenys" #: plugin/builtin/exporter/bom_exporter.py:35 -#: plugin/builtin/exporter/part_parameter_exporter.py:17 msgid "Include part stock data" msgstr "Įtraukti detalių atsargų duomenis" #: plugin/builtin/exporter/bom_exporter.py:39 -#: plugin/builtin/exporter/part_parameter_exporter.py:21 #: plugin/builtin/exporter/stocktake_exporter.py:20 msgid "Pricing Data" msgstr "Kainodaros duomenys" #: plugin/builtin/exporter/bom_exporter.py:39 -#: plugin/builtin/exporter/part_parameter_exporter.py:21 #: plugin/builtin/exporter/stocktake_exporter.py:20 msgid "Include part pricing data" msgstr "Įtraukti detalių kainodaros duomenis" @@ -7144,13 +7187,21 @@ msgstr "InvenTree bendras eksportuotojas" msgid "Provides support for exporting data from InvenTree" msgstr "Suteikia galimybę eksportuoti duomenis iš InvenTree" -#: plugin/builtin/exporter/part_parameter_exporter.py:33 -msgid "Part Parameter Exporter" -msgstr "Detalių parametrų eksportuotojas" +#: plugin/builtin/exporter/parameter_exporter.py:16 +msgid "Exclude Inactive" +msgstr "" -#: plugin/builtin/exporter/part_parameter_exporter.py:34 -msgid "Exporter for part parameter data" -msgstr "Eksportuoja detalių parametrų duomenis" +#: plugin/builtin/exporter/parameter_exporter.py:17 +msgid "Exclude parameters which are inactive" +msgstr "" + +#: plugin/builtin/exporter/parameter_exporter.py:29 +msgid "Parameter Exporter" +msgstr "" + +#: plugin/builtin/exporter/parameter_exporter.py:30 +msgid "Exporter for model parameter data" +msgstr "" #: plugin/builtin/exporter/stocktake_exporter.py:25 msgid "Include External Stock" @@ -8079,19 +8130,19 @@ msgstr "Nėra rezultato (privaloma)" msgid "No result" msgstr "Nėra rezultato" -#: report/templatetags/report.py:167 +#: report/templatetags/report.py:169 msgid "Asset file does not exist" msgstr "Ištekliaus failas neegzistuoja" -#: report/templatetags/report.py:224 report/templatetags/report.py:300 +#: report/templatetags/report.py:226 report/templatetags/report.py:302 msgid "Image file not found" msgstr "Paveikslėlio failas nerastas" -#: report/templatetags/report.py:325 +#: report/templatetags/report.py:327 msgid "part_image tag requires a Part instance" msgstr "Žyma part_image reikalauja detalės (Part) egzemplioriaus" -#: report/templatetags/report.py:362 +#: report/templatetags/report.py:383 msgid "company_image tag requires a Company instance" msgstr "Žyma company_image reikalauja įmonės (Company) egzemplioriaus" @@ -8455,115 +8506,119 @@ msgstr "Serijos numeriai turi būti pateikti sąraše" msgid "Quantity does not match serial numbers" msgstr "Kiekis nesutampa su serijos numeriais" -#: stock/models.py:2012 stock/models.py:2917 +#: stock/models.py:1912 +msgid "Cannot assign stock to structural location" +msgstr "" + +#: stock/models.py:2029 stock/models.py:2934 msgid "Test template does not exist" msgstr "Bandomasis šablonas neegzistuoja" -#: stock/models.py:2030 +#: stock/models.py:2047 msgid "Stock item has been assigned to a sales order" msgstr "Atsargų elementas buvo priskirtas pardavimo užsakymui" -#: stock/models.py:2034 +#: stock/models.py:2051 msgid "Stock item is installed in another item" msgstr "Atsargų elementas sumontuotas kitame elemente" -#: stock/models.py:2037 +#: stock/models.py:2054 msgid "Stock item contains other items" msgstr "Atsargų elementas turi kitų elementų" -#: stock/models.py:2040 +#: stock/models.py:2057 msgid "Stock item has been assigned to a customer" msgstr "Atsargų elementas buvo priskirtas klientui" -#: stock/models.py:2043 stock/models.py:2226 +#: stock/models.py:2060 stock/models.py:2243 msgid "Stock item is currently in production" msgstr "Atsargų elementas šiuo metu gaminamas" -#: stock/models.py:2046 +#: stock/models.py:2063 msgid "Serialized stock cannot be merged" msgstr "Su serijos numeriais pažymėtų atsargų sujungti negalima" -#: stock/models.py:2053 stock/serializers.py:1462 +#: stock/models.py:2070 stock/serializers.py:1462 msgid "Duplicate stock items" msgstr "Pasikartojantys atsargų elementai" -#: stock/models.py:2057 +#: stock/models.py:2074 msgid "Stock items must refer to the same part" msgstr "Atsargų elementai turi būti susiję su ta pačia detale" -#: stock/models.py:2065 +#: stock/models.py:2082 msgid "Stock items must refer to the same supplier part" msgstr "Atsargų elementai turi būti susiję su ta pačia tiekėjo detale" -#: stock/models.py:2070 +#: stock/models.py:2087 msgid "Stock status codes must match" msgstr "Atsargų būsenos kodai turi sutapti" -#: stock/models.py:2349 +#: stock/models.py:2366 msgid "StockItem cannot be moved as it is not in stock" msgstr "Atsargų elemento negalima perkelti, nes jo nėra sandėlyje" -#: stock/models.py:2818 +#: stock/models.py:2835 msgid "Stock Item Tracking" msgstr "Atsargų elemento sekimas" -#: stock/models.py:2849 +#: stock/models.py:2866 msgid "Entry notes" msgstr "Įrašo pastabos" -#: stock/models.py:2889 +#: stock/models.py:2906 msgid "Stock Item Test Result" msgstr "Atsargų elemento bandymo rezultatas" -#: stock/models.py:2920 +#: stock/models.py:2937 msgid "Value must be provided for this test" msgstr "Šiam bandymui turi būti pateikta reikšmė" -#: stock/models.py:2924 +#: stock/models.py:2941 msgid "Attachment must be uploaded for this test" msgstr "Šiam bandymui turi būti įkeltas priedas" -#: stock/models.py:2929 +#: stock/models.py:2946 msgid "Invalid value for this test" msgstr "Netinkama reikšmė šiam bandymui" -#: stock/models.py:2953 +#: stock/models.py:2970 msgid "Test result" msgstr "Bandymo rezultatas" -#: stock/models.py:2960 +#: stock/models.py:2977 msgid "Test output value" msgstr "Bandymo išvesties reikšmė" -#: stock/models.py:2968 stock/serializers.py:248 +#: stock/models.py:2985 stock/serializers.py:248 msgid "Test result attachment" msgstr "Bandymo rezultato priedas" -#: stock/models.py:2972 +#: stock/models.py:2989 msgid "Test notes" msgstr "Bandymo pastabos" -#: stock/models.py:2980 +#: stock/models.py:2997 msgid "Test station" msgstr "Bandymų stotis" -#: stock/models.py:2981 +#: stock/models.py:2998 msgid "The identifier of the test station where the test was performed" msgstr "Bandymų stoties identifikatorius, kurioje atliktas bandymas" -#: stock/models.py:2987 +#: stock/models.py:3004 msgid "Started" msgstr "Pradėta" -#: stock/models.py:2988 +#: stock/models.py:3005 msgid "The timestamp of the test start" msgstr "Bandymo pradžios laiko žyma" -#: stock/models.py:2994 +#: stock/models.py:3011 msgid "Finished" msgstr "Pabaigta" -#: stock/models.py:2995 +#: stock/models.py:3012 msgid "The timestamp of the test finish" msgstr "Bandymo pabaigos laiko žyma" @@ -8677,8 +8732,8 @@ msgstr "" msgid "Quantity must not exceed available stock quantity ({q})" msgstr "Kiekis negali viršyti galimų atsargų kiekio ({q})" -#: stock/serializers.py:711 stock/serializers.py:1419 stock/serializers.py:1732 -#: stock/serializers.py:1781 +#: stock/serializers.py:711 stock/serializers.py:1419 stock/serializers.py:1740 +#: stock/serializers.py:1789 msgid "Destination stock location" msgstr "Paskirties atsargų vieta" @@ -8834,19 +8889,19 @@ msgstr "" msgid "Stock transaction notes" msgstr "Atsargų operacijos pastabos" -#: stock/serializers.py:1787 +#: stock/serializers.py:1795 msgid "Merge into existing stock" msgstr "" -#: stock/serializers.py:1788 +#: stock/serializers.py:1796 msgid "Merge returned items into existing stock items if possible" msgstr "" -#: stock/serializers.py:1831 +#: stock/serializers.py:1839 msgid "Next Serial Number" msgstr "Kitas serijos numeris" -#: stock/serializers.py:1837 +#: stock/serializers.py:1845 msgid "Previous Serial Number" msgstr "Ankstesnis serijos numeris" @@ -8902,83 +8957,87 @@ msgstr "Atsargos pridėtos rankiniu būdu" msgid "Stock manually removed" msgstr "Atsargos pašalintos rankiniu būdu" -#: stock/status_codes.py:57 +#: stock/status_codes.py:56 +msgid "Serialized stock items" +msgstr "" + +#: stock/status_codes.py:58 msgid "Returned to stock" msgstr "" -#: stock/status_codes.py:60 +#: stock/status_codes.py:61 msgid "Location changed" msgstr "Vieta pakeista" -#: stock/status_codes.py:61 +#: stock/status_codes.py:62 msgid "Stock updated" msgstr "Atsargos atnaujintos" -#: stock/status_codes.py:64 +#: stock/status_codes.py:65 msgid "Installed into assembly" msgstr "Sumontuota į surinkimą" -#: stock/status_codes.py:65 +#: stock/status_codes.py:66 msgid "Removed from assembly" msgstr "Pašalinta iš surinkimo" -#: stock/status_codes.py:67 +#: stock/status_codes.py:68 msgid "Installed component item" msgstr "Sumontuotas komponentas" -#: stock/status_codes.py:68 +#: stock/status_codes.py:69 msgid "Removed component item" msgstr "Pašalintas komponentas" -#: stock/status_codes.py:71 +#: stock/status_codes.py:72 msgid "Split from parent item" msgstr "Atskirtas nuo pirminio elemento" -#: stock/status_codes.py:72 +#: stock/status_codes.py:73 msgid "Split child item" msgstr "Atskirtas antrinis elementas" -#: stock/status_codes.py:75 +#: stock/status_codes.py:76 msgid "Merged stock items" msgstr "Sujungti atsargų elementai" -#: stock/status_codes.py:78 +#: stock/status_codes.py:79 msgid "Converted to variant" msgstr "Konvertuota į variantą" -#: stock/status_codes.py:81 +#: stock/status_codes.py:82 msgid "Build order output created" msgstr "Sukurtas gamybos užsakymo rezultatas" -#: stock/status_codes.py:82 +#: stock/status_codes.py:83 msgid "Build order output completed" msgstr "Gamybos užsakymo rezultatas užbaigtas" -#: stock/status_codes.py:83 +#: stock/status_codes.py:84 msgid "Build order output rejected" msgstr "Gamybos užsakymo rezultatas atmestas" -#: stock/status_codes.py:84 +#: stock/status_codes.py:85 msgid "Consumed by build order" msgstr "Sunaudota gamybos užsakyme" -#: stock/status_codes.py:87 +#: stock/status_codes.py:88 msgid "Shipped against Sales Order" msgstr "Išsiųsta pagal pardavimo užsakymą" -#: stock/status_codes.py:90 +#: stock/status_codes.py:91 msgid "Received against Purchase Order" msgstr "Gauta pagal pirkimo užsakymą" -#: stock/status_codes.py:93 +#: stock/status_codes.py:94 msgid "Returned against Return Order" msgstr "Grąžinta pagal grąžinimo užsakymą" -#: stock/status_codes.py:96 +#: stock/status_codes.py:97 msgid "Sent to customer" msgstr "Išsiųsta klientui" -#: stock/status_codes.py:97 +#: stock/status_codes.py:98 msgid "Returned from customer" msgstr "Grąžinta iš kliento" diff --git a/src/backend/InvenTree/locale/lv/LC_MESSAGES/django.po b/src/backend/InvenTree/locale/lv/LC_MESSAGES/django.po index dc1e60844d..db87f23b88 100644 --- a/src/backend/InvenTree/locale/lv/LC_MESSAGES/django.po +++ b/src/backend/InvenTree/locale/lv/LC_MESSAGES/django.po @@ -2,8 +2,8 @@ msgid "" msgstr "" "Project-Id-Version: inventree\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-11-19 04:55+0000\n" -"PO-Revision-Date: 2025-11-19 04:59\n" +"POT-Creation-Date: 2025-12-07 07:33+0000\n" +"PO-Revision-Date: 2025-12-07 07:36\n" "Last-Translator: \n" "Language-Team: Latvian\n" "Language: lv_LV\n" @@ -57,7 +57,7 @@ msgstr "" msgid "This field must be unique." msgstr "" -#: InvenTree/api.py:775 +#: InvenTree/api.py:803 msgid "User does not have permission to view this model" msgstr "Lietotājam nav atļaujas, lai apskatītu šo modeli" @@ -81,22 +81,22 @@ msgstr "Norādītā primārā e-pasta adrese nav derīga." msgid "The provided email domain is not approved." msgstr "Norādītais e-pasta domēns nav apstiprināts." -#: InvenTree/conversion.py:166 +#: InvenTree/conversion.py:240 #, python-brace-format msgid "Invalid unit provided ({unit})" msgstr "Norādīta nederīga vienība ({unit})" -#: InvenTree/conversion.py:183 +#: InvenTree/conversion.py:257 msgid "No value provided" msgstr "Nav norādīta vērtība" -#: InvenTree/conversion.py:210 +#: InvenTree/conversion.py:284 #, python-brace-format msgid "Could not convert {original} to {unit}" msgstr "Nevarēja konvertēt {original} par {unit}" -#: InvenTree/conversion.py:212 InvenTree/conversion.py:226 -#: InvenTree/helpers.py:597 order/models.py:720 order/models.py:1015 +#: InvenTree/conversion.py:286 InvenTree/conversion.py:300 +#: InvenTree/helpers.py:597 order/models.py:721 order/models.py:1016 msgid "Invalid quantity provided" msgstr "Norādītais daudzums nav derīgs" @@ -112,11 +112,11 @@ msgstr "Ievadiet datumu" msgid "Invalid decimal value" msgstr "" -#: InvenTree/fields.py:218 InvenTree/models.py:1067 build/serializers.py:509 -#: build/serializers.py:580 build/serializers.py:1788 company/models.py:857 -#: order/models.py:1780 +#: InvenTree/fields.py:218 InvenTree/models.py:1228 build/serializers.py:517 +#: build/serializers.py:588 build/serializers.py:1796 company/models.py:811 +#: order/models.py:1781 #: report/templates/report/inventree_build_order_report.html:172 -#: stock/models.py:2848 stock/models.py:2972 stock/serializers.py:717 +#: stock/models.py:2865 stock/models.py:2989 stock/serializers.py:717 #: stock/serializers.py:893 stock/serializers.py:1035 stock/serializers.py:1336 #: stock/serializers.py:1425 stock/serializers.py:1624 msgid "Notes" @@ -171,35 +171,35 @@ msgstr "Noņemiet HTML tagus no šīs vērtības" msgid "Data contains prohibited markdown content" msgstr "" -#: InvenTree/helpers_model.py:133 +#: InvenTree/helpers_model.py:134 msgid "Connection error" msgstr "Savienojuma kļūda" -#: InvenTree/helpers_model.py:138 InvenTree/helpers_model.py:145 +#: InvenTree/helpers_model.py:139 InvenTree/helpers_model.py:146 msgid "Server responded with invalid status code" msgstr "Serveris atbildēja ar nederīgu statusa kodu" -#: InvenTree/helpers_model.py:141 +#: InvenTree/helpers_model.py:142 msgid "Exception occurred" msgstr "Radās izņēmums" -#: InvenTree/helpers_model.py:151 +#: InvenTree/helpers_model.py:152 msgid "Server responded with invalid Content-Length value" msgstr "Serveris atbildēja ar nederīgu Content-Length vērtību" -#: InvenTree/helpers_model.py:154 +#: InvenTree/helpers_model.py:155 msgid "Image size is too large" msgstr "Attēla izmērs ir pārāk liels" -#: InvenTree/helpers_model.py:166 +#: InvenTree/helpers_model.py:167 msgid "Image download exceeded maximum size" msgstr "Attēla lejupielāde pārsniedz maksimālo izmēru" -#: InvenTree/helpers_model.py:171 +#: InvenTree/helpers_model.py:172 msgid "Remote server returned empty response" msgstr "Attālais serveris atgrieza tukšu atbildi" -#: InvenTree/helpers_model.py:179 +#: InvenTree/helpers_model.py:180 msgid "Supplied URL is not a valid image file" msgstr "Norādītajā URL nav derīgs attēla fails" @@ -207,7 +207,7 @@ msgstr "Norādītajā URL nav derīgs attēla fails" msgid "Log in to the app" msgstr "" -#: InvenTree/magic_login.py:41 company/models.py:172 users/serializers.py:198 +#: InvenTree/magic_login.py:41 company/models.py:173 users/serializers.py:198 msgid "Email" msgstr "" @@ -215,160 +215,176 @@ msgstr "" msgid "You must enable two-factor authentication before doing anything else." msgstr "" -#: InvenTree/models.py:111 +#: InvenTree/models.py:114 msgid "Error running plugin validation" msgstr "" -#: InvenTree/models.py:192 +#: InvenTree/models.py:195 msgid "Metadata must be a python dict object" msgstr "" -#: InvenTree/models.py:198 +#: InvenTree/models.py:201 msgid "Plugin Metadata" msgstr "" -#: InvenTree/models.py:199 +#: InvenTree/models.py:202 msgid "JSON metadata field, for use by external plugins" msgstr "" -#: InvenTree/models.py:382 +#: InvenTree/models.py:385 msgid "Improperly formatted pattern" msgstr "" -#: InvenTree/models.py:389 +#: InvenTree/models.py:392 msgid "Unknown format key specified" msgstr "" -#: InvenTree/models.py:395 +#: InvenTree/models.py:398 msgid "Missing required format key" msgstr "" -#: InvenTree/models.py:406 +#: InvenTree/models.py:409 msgid "Reference field cannot be empty" msgstr "" -#: InvenTree/models.py:414 +#: InvenTree/models.py:417 msgid "Reference must match required pattern" msgstr "" -#: InvenTree/models.py:445 +#: InvenTree/models.py:448 msgid "Reference number is too large" msgstr "" -#: InvenTree/models.py:743 +#: InvenTree/models.py:896 msgid "Invalid choice" msgstr "" -#: InvenTree/models.py:856 common/models.py:1410 common/models.py:1837 -#: common/models.py:2096 common/models.py:2221 common/serializers.py:535 -#: company/models.py:615 generic/states/serializers.py:20 machine/models.py:25 -#: part/models.py:1039 part/models.py:3850 plugin/models.py:54 +#: InvenTree/models.py:1017 common/models.py:1414 common/models.py:1841 +#: common/models.py:2102 common/models.py:2227 common/models.py:2494 +#: common/serializers.py:539 generic/states/serializers.py:20 +#: machine/models.py:25 part/models.py:1127 plugin/models.py:54 #: report/models.py:216 stock/models.py:84 msgid "Name" msgstr "" -#: InvenTree/models.py:862 build/models.py:252 common/models.py:171 -#: common/models.py:2228 common/models.py:2341 company/models.py:543 -#: company/models.py:848 order/models.py:442 order/models.py:1825 -#: part/models.py:1062 part/models.py:3865 report/models.py:222 +#: InvenTree/models.py:1023 build/models.py:253 common/models.py:175 +#: common/models.py:2234 common/models.py:2347 common/models.py:2509 +#: company/models.py:545 company/models.py:802 order/models.py:443 +#: order/models.py:1826 part/models.py:1150 report/models.py:222 #: report/models.py:815 report/models.py:841 #: report/templates/report/inventree_build_order_report.html:117 #: stock/models.py:90 msgid "Description" msgstr "" -#: InvenTree/models.py:863 stock/models.py:91 +#: InvenTree/models.py:1024 stock/models.py:91 msgid "Description (optional)" msgstr "" -#: InvenTree/models.py:878 common/models.py:2394 +#: InvenTree/models.py:1039 common/models.py:2815 msgid "Path" msgstr "" -#: InvenTree/models.py:983 +#: InvenTree/models.py:1144 msgid "Duplicate names cannot exist under the same parent" msgstr "" -#: InvenTree/models.py:1067 +#: InvenTree/models.py:1228 msgid "Markdown notes (optional)" msgstr "" -#: InvenTree/models.py:1098 +#: InvenTree/models.py:1259 msgid "Barcode Data" msgstr "" -#: InvenTree/models.py:1099 +#: InvenTree/models.py:1260 msgid "Third party barcode data" msgstr "" -#: InvenTree/models.py:1105 +#: InvenTree/models.py:1266 msgid "Barcode Hash" msgstr "" -#: InvenTree/models.py:1106 +#: InvenTree/models.py:1267 msgid "Unique hash of barcode data" msgstr "" -#: InvenTree/models.py:1187 +#: InvenTree/models.py:1348 msgid "Existing barcode found" msgstr "" -#: InvenTree/models.py:1269 +#: InvenTree/models.py:1430 msgid "Task Failure" msgstr "" -#: InvenTree/models.py:1270 +#: InvenTree/models.py:1431 #, python-brace-format msgid "Background worker task '{f}' failed after {n} attempts" msgstr "" -#: InvenTree/models.py:1297 +#: InvenTree/models.py:1458 msgid "Server Error" msgstr "" -#: InvenTree/models.py:1298 +#: InvenTree/models.py:1459 msgid "An error has been logged by the server." msgstr "" -#: InvenTree/models.py:1340 common/models.py:1748 +#: InvenTree/models.py:1501 common/models.py:1752 #: report/templates/report/inventree_bill_of_materials_report.html:126 #: report/templates/report/inventree_bill_of_materials_report.html:148 #: report/templates/report/inventree_return_order_report.html:35 msgid "Image" msgstr "" -#: InvenTree/serializers.py:253 part/models.py:4571 +#: InvenTree/serializers.py:255 part/models.py:4196 msgid "Must be a valid number" msgstr "" -#: InvenTree/serializers.py:295 company/models.py:214 part/models.py:3285 +#: InvenTree/serializers.py:297 company/models.py:215 part/models.py:3349 msgid "Currency" msgstr "" -#: InvenTree/serializers.py:298 part/serializers.py:1385 +#: InvenTree/serializers.py:300 part/serializers.py:1250 msgid "Select currency from available options" msgstr "" -#: InvenTree/serializers.py:653 +#: InvenTree/serializers.py:654 +msgid "This field may not be null." +msgstr "" + +#: InvenTree/serializers.py:660 msgid "Invalid value" msgstr "" -#: InvenTree/serializers.py:690 +#: InvenTree/serializers.py:697 msgid "Remote Image" msgstr "" -#: InvenTree/serializers.py:691 +#: InvenTree/serializers.py:698 msgid "URL of remote image file" msgstr "" -#: InvenTree/serializers.py:709 +#: InvenTree/serializers.py:716 msgid "Downloading images from remote URL is not enabled" msgstr "" -#: InvenTree/serializers.py:716 +#: InvenTree/serializers.py:723 msgid "Failed to download image from remote URL" msgstr "" +#: InvenTree/serializers.py:806 +msgid "Invalid content type format" +msgstr "" + +#: InvenTree/serializers.py:809 +msgid "Content type not found" +msgstr "" + +#: InvenTree/serializers.py:815 +msgid "Content type does not match required mixin class" +msgstr "" + #: InvenTree/setting/locales.py:20 msgid "Arabic" msgstr "" @@ -537,30 +553,30 @@ msgstr "" msgid "Not a valid currency code" msgstr "" -#: build/api.py:54 order/api.py:111 order/api.py:270 order/api.py:1373 -#: order/serializers.py:132 +#: build/api.py:54 order/api.py:116 order/api.py:275 order/api.py:1378 +#: order/serializers.py:133 msgid "Order Status" msgstr "" -#: build/api.py:80 build/models.py:264 +#: build/api.py:80 build/models.py:265 msgid "Parent Build" msgstr "" -#: build/api.py:84 build/api.py:831 order/api.py:547 order/api.py:770 -#: order/api.py:1174 order/api.py:1449 stock/api.py:573 +#: build/api.py:84 build/api.py:837 order/api.py:553 order/api.py:776 +#: order/api.py:1179 order/api.py:1454 stock/api.py:573 msgid "Include Variants" msgstr "" -#: build/api.py:100 build/api.py:466 build/api.py:845 build/models.py:270 -#: build/serializers.py:1225 build/serializers.py:1356 -#: build/serializers.py:1427 company/models.py:1067 company/serializers.py:445 -#: order/api.py:298 order/api.py:302 order/api.py:929 order/api.py:1187 -#: order/api.py:1190 order/models.py:1941 order/models.py:2108 -#: order/models.py:2109 part/api.py:1233 part/api.py:1236 part/api.py:1302 -#: part/api.py:1589 part/models.py:472 part/models.py:3296 part/models.py:3439 -#: part/models.py:3497 part/models.py:3518 part/models.py:3540 -#: part/models.py:3679 part/models.py:4046 part/models.py:4368 -#: part/models.py:4787 part/serializers.py:1928 +#: build/api.py:100 build/api.py:472 build/api.py:851 build/models.py:271 +#: build/serializers.py:1233 build/serializers.py:1364 +#: build/serializers.py:1435 company/models.py:1021 company/serializers.py:490 +#: order/api.py:303 order/api.py:307 order/api.py:934 order/api.py:1192 +#: order/api.py:1195 order/models.py:1942 order/models.py:2109 +#: order/models.py:2110 part/api.py:1160 part/api.py:1163 part/api.py:1314 +#: part/models.py:550 part/models.py:3360 part/models.py:3503 +#: part/models.py:3561 part/models.py:3582 part/models.py:3604 +#: part/models.py:3743 part/models.py:3993 part/models.py:4412 +#: part/serializers.py:1801 #: report/templates/report/inventree_bill_of_materials_report.html:110 #: report/templates/report/inventree_bill_of_materials_report.html:137 #: report/templates/report/inventree_build_order_report.html:109 @@ -580,9 +596,9 @@ msgstr "" msgid "Part" msgstr "" -#: build/api.py:120 build/api.py:123 build/serializers.py:1438 part/api.py:980 -#: part/api.py:1316 part/api.py:1600 part/models.py:1080 part/models.py:3568 -#: part/models.py:4162 part/serializers.py:1752 stock/api.py:869 +#: build/api.py:120 build/api.py:123 build/serializers.py:1446 part/api.py:975 +#: part/api.py:1325 part/models.py:435 part/models.py:1168 part/models.py:3632 +#: part/serializers.py:1617 stock/api.py:869 msgid "Category" msgstr "" @@ -590,7 +606,7 @@ msgstr "" msgid "Ancestor Build" msgstr "" -#: build/api.py:152 order/api.py:129 +#: build/api.py:152 order/api.py:134 msgid "Assigned to me" msgstr "" @@ -638,134 +654,134 @@ msgstr "" msgid "Completed after" msgstr "" -#: build/api.py:249 order/api.py:226 +#: build/api.py:249 order/api.py:231 msgid "Min Date" msgstr "" -#: build/api.py:272 order/api.py:245 +#: build/api.py:272 order/api.py:250 msgid "Max Date" msgstr "" -#: build/api.py:297 build/api.py:300 part/api.py:217 stock/api.py:961 +#: build/api.py:297 build/api.py:300 part/api.py:212 stock/api.py:961 msgid "Exclude Tree" msgstr "" -#: build/api.py:405 +#: build/api.py:411 msgid "Build must be cancelled before it can be deleted" msgstr "" -#: build/api.py:449 build/serializers.py:1374 part/models.py:4402 +#: build/api.py:455 build/serializers.py:1382 part/models.py:4027 msgid "Consumable" msgstr "" -#: build/api.py:452 build/serializers.py:1377 part/models.py:4396 +#: build/api.py:458 build/serializers.py:1385 part/models.py:4021 msgid "Optional" msgstr "" -#: build/api.py:455 build/serializers.py:1415 common/setting/system.py:456 -#: part/models.py:1202 part/serializers.py:1714 part/serializers.py:1725 +#: build/api.py:461 build/serializers.py:1423 common/setting/system.py:456 +#: part/models.py:1290 part/serializers.py:1579 part/serializers.py:1590 #: stock/api.py:639 msgid "Assembly" msgstr "" -#: build/api.py:458 +#: build/api.py:464 msgid "Tracked" msgstr "" -#: build/api.py:461 build/serializers.py:1380 part/models.py:1220 +#: build/api.py:467 build/serializers.py:1388 part/models.py:1308 msgid "Testable" msgstr "" -#: build/api.py:471 order/api.py:993 order/api.py:1363 +#: build/api.py:477 order/api.py:998 order/api.py:1368 msgid "Order Outstanding" msgstr "" -#: build/api.py:481 build/serializers.py:1464 order/api.py:952 +#: build/api.py:487 build/serializers.py:1472 order/api.py:957 msgid "Allocated" msgstr "" -#: build/api.py:490 build/models.py:1672 build/serializers.py:1393 +#: build/api.py:496 build/models.py:1673 build/serializers.py:1401 msgid "Consumed" msgstr "" -#: build/api.py:499 company/models.py:912 company/serializers.py:440 +#: build/api.py:505 company/models.py:866 company/serializers.py:467 #: templates/email/build_order_required_stock.html:19 #: templates/email/low_stock_notification.html:17 #: templates/email/part_event_notification.html:18 msgid "Available" msgstr "" -#: build/api.py:523 build/serializers.py:1466 company/serializers.py:437 -#: order/serializers.py:1281 part/serializers.py:959 part/serializers.py:1306 -#: part/serializers.py:1761 +#: build/api.py:529 build/serializers.py:1474 company/serializers.py:464 +#: order/serializers.py:1295 part/serializers.py:844 part/serializers.py:1171 +#: part/serializers.py:1626 msgid "On Order" msgstr "" -#: build/api.py:868 build/models.py:117 order/models.py:1974 +#: build/api.py:874 build/models.py:118 order/models.py:1975 #: report/templates/report/inventree_build_order_report.html:105 #: stock/serializers.py:93 templates/email/build_order_completed.html:16 #: templates/email/overdue_build_order.html:15 msgid "Build Order" msgstr "" -#: build/api.py:882 build/api.py:886 build/serializers.py:372 -#: build/serializers.py:497 build/serializers.py:567 build/serializers.py:1251 -#: build/serializers.py:1256 order/api.py:1234 order/api.py:1239 -#: order/serializers.py:833 order/serializers.py:973 order/serializers.py:2042 +#: build/api.py:888 build/api.py:892 build/serializers.py:380 +#: build/serializers.py:505 build/serializers.py:575 build/serializers.py:1259 +#: build/serializers.py:1264 order/api.py:1239 order/api.py:1244 +#: order/serializers.py:844 order/serializers.py:984 order/serializers.py:2059 #: stock/api.py:987 stock/serializers.py:111 stock/serializers.py:601 #: stock/serializers.py:710 stock/serializers.py:888 stock/serializers.py:1418 -#: stock/serializers.py:1731 stock/serializers.py:1780 +#: stock/serializers.py:1739 stock/serializers.py:1788 #: templates/email/stale_stock_notification.html:18 users/models.py:549 msgid "Location" msgstr "" -#: build/api.py:894 +#: build/api.py:900 msgid "Output" msgstr "" -#: build/api.py:896 +#: build/api.py:902 msgid "Filter by output stock item ID. Use 'null' to find uninstalled build items." msgstr "" -#: build/models.py:118 users/ruleset.py:31 +#: build/models.py:119 users/ruleset.py:31 msgid "Build Orders" msgstr "" -#: build/models.py:168 +#: build/models.py:169 msgid "Assembly BOM has not been validated" msgstr "" -#: build/models.py:175 +#: build/models.py:176 msgid "Build order cannot be created for an inactive part" msgstr "" -#: build/models.py:182 +#: build/models.py:183 msgid "Build order cannot be created for an unlocked part" msgstr "" -#: build/models.py:200 +#: build/models.py:201 msgid "Build orders can only be externally fulfilled for purchaseable parts" msgstr "" -#: build/models.py:207 order/models.py:369 +#: build/models.py:208 order/models.py:370 msgid "Responsible user or group must be specified" msgstr "" -#: build/models.py:212 +#: build/models.py:213 msgid "Build order part cannot be changed" msgstr "" -#: build/models.py:217 order/models.py:382 +#: build/models.py:218 order/models.py:383 msgid "Target date must be after start date" msgstr "" -#: build/models.py:245 +#: build/models.py:246 msgid "Build Order Reference" msgstr "" -#: build/models.py:246 build/serializers.py:1371 order/models.py:614 -#: order/models.py:1311 order/models.py:1773 order/models.py:2712 -#: part/models.py:4442 +#: build/models.py:247 build/serializers.py:1379 order/models.py:615 +#: order/models.py:1312 order/models.py:1774 order/models.py:2713 +#: part/models.py:4067 #: report/templates/report/inventree_bill_of_materials_report.html:139 #: report/templates/report/inventree_purchase_order_report.html:35 #: report/templates/report/inventree_return_order_report.html:26 @@ -773,230 +789,230 @@ msgstr "" msgid "Reference" msgstr "" -#: build/models.py:255 +#: build/models.py:256 msgid "Brief description of the build (optional)" msgstr "" -#: build/models.py:265 +#: build/models.py:266 msgid "BuildOrder to which this build is allocated" msgstr "" -#: build/models.py:274 +#: build/models.py:275 msgid "Select part to build" msgstr "" -#: build/models.py:279 +#: build/models.py:280 msgid "Sales Order Reference" msgstr "" -#: build/models.py:284 +#: build/models.py:285 msgid "SalesOrder to which this build is allocated" msgstr "" -#: build/models.py:289 build/serializers.py:1097 +#: build/models.py:290 build/serializers.py:1105 msgid "Source Location" msgstr "" -#: build/models.py:295 +#: build/models.py:296 msgid "Select location to take stock from for this build (leave blank to take from any stock location)" msgstr "" -#: build/models.py:301 +#: build/models.py:302 msgid "External Build" msgstr "" -#: build/models.py:302 +#: build/models.py:303 msgid "This build order is fulfilled externally" msgstr "" -#: build/models.py:307 +#: build/models.py:308 msgid "Destination Location" msgstr "" -#: build/models.py:312 +#: build/models.py:313 msgid "Select location where the completed items will be stored" msgstr "" -#: build/models.py:316 +#: build/models.py:317 msgid "Build Quantity" msgstr "" -#: build/models.py:319 +#: build/models.py:320 msgid "Number of stock items to build" msgstr "" -#: build/models.py:323 +#: build/models.py:324 msgid "Completed items" msgstr "" -#: build/models.py:325 +#: build/models.py:326 msgid "Number of stock items which have been completed" msgstr "" -#: build/models.py:329 +#: build/models.py:330 msgid "Build Status" msgstr "" -#: build/models.py:334 +#: build/models.py:335 msgid "Build status code" msgstr "" -#: build/models.py:343 build/serializers.py:359 order/serializers.py:849 +#: build/models.py:344 build/serializers.py:367 order/serializers.py:860 #: stock/models.py:1100 stock/serializers.py:85 stock/serializers.py:1591 msgid "Batch Code" msgstr "" -#: build/models.py:347 build/serializers.py:360 +#: build/models.py:348 build/serializers.py:368 msgid "Batch code for this build output" msgstr "" -#: build/models.py:351 order/models.py:479 order/serializers.py:186 -#: part/models.py:1283 +#: build/models.py:352 order/models.py:480 order/serializers.py:193 +#: part/models.py:1371 msgid "Creation Date" msgstr "" -#: build/models.py:357 +#: build/models.py:358 msgid "Build start date" msgstr "" -#: build/models.py:358 +#: build/models.py:359 msgid "Scheduled start date for this build order" msgstr "" -#: build/models.py:364 +#: build/models.py:365 msgid "Target completion date" msgstr "" -#: build/models.py:366 +#: build/models.py:367 msgid "Target date for build completion. Build will be overdue after this date." msgstr "" -#: build/models.py:371 order/models.py:667 order/models.py:2751 +#: build/models.py:372 order/models.py:668 order/models.py:2752 msgid "Completion Date" msgstr "" -#: build/models.py:379 +#: build/models.py:380 msgid "completed by" msgstr "" -#: build/models.py:388 +#: build/models.py:389 msgid "Issued by" msgstr "" -#: build/models.py:389 +#: build/models.py:390 msgid "User who issued this build order" msgstr "" -#: build/models.py:398 common/models.py:180 order/api.py:179 -#: order/models.py:504 part/models.py:1300 +#: build/models.py:399 common/models.py:184 order/api.py:184 +#: order/models.py:505 part/models.py:1388 #: report/templates/report/inventree_build_order_report.html:158 msgid "Responsible" msgstr "" -#: build/models.py:399 +#: build/models.py:400 msgid "User or group responsible for this build order" msgstr "" -#: build/models.py:404 stock/models.py:1093 +#: build/models.py:405 stock/models.py:1093 msgid "External Link" msgstr "" -#: build/models.py:406 common/models.py:1984 part/models.py:1114 +#: build/models.py:407 common/models.py:1990 part/models.py:1202 #: stock/models.py:1095 msgid "Link to external URL" msgstr "" -#: build/models.py:411 +#: build/models.py:412 msgid "Build Priority" msgstr "" -#: build/models.py:414 +#: build/models.py:415 msgid "Priority of this build order" msgstr "" -#: build/models.py:422 common/models.py:150 common/models.py:164 -#: order/api.py:165 order/models.py:451 order/models.py:1805 +#: build/models.py:423 common/models.py:154 common/models.py:168 +#: order/api.py:170 order/models.py:452 order/models.py:1806 msgid "Project Code" msgstr "" -#: build/models.py:423 +#: build/models.py:424 msgid "Project code for this build order" msgstr "" -#: build/models.py:676 +#: build/models.py:677 msgid "Cannot complete build order with open child builds" msgstr "" -#: build/models.py:681 +#: build/models.py:682 msgid "Cannot complete build order with incomplete outputs" msgstr "" -#: build/models.py:700 build/models.py:830 +#: build/models.py:701 build/models.py:831 msgid "Failed to offload task to complete build allocations" msgstr "" -#: build/models.py:723 +#: build/models.py:724 #, python-brace-format msgid "Build order {build} has been completed" msgstr "" -#: build/models.py:729 +#: build/models.py:730 msgid "A build order has been completed" msgstr "" -#: build/models.py:911 build/serializers.py:407 +#: build/models.py:912 build/serializers.py:415 msgid "Serial numbers must be provided for trackable parts" msgstr "" -#: build/models.py:1042 build/models.py:1129 +#: build/models.py:1043 build/models.py:1130 msgid "No build output specified" msgstr "" -#: build/models.py:1045 +#: build/models.py:1046 msgid "Build output is already completed" msgstr "" -#: build/models.py:1048 +#: build/models.py:1049 msgid "Build output does not match Build Order" msgstr "" -#: build/models.py:1136 build/models.py:1234 build/serializers.py:285 -#: build/serializers.py:335 build/serializers.py:965 build/serializers.py:1739 -#: order/models.py:717 order/serializers.py:658 order/serializers.py:844 -#: part/serializers.py:1708 stock/models.py:940 stock/models.py:1430 +#: build/models.py:1137 build/models.py:1235 build/serializers.py:293 +#: build/serializers.py:343 build/serializers.py:973 build/serializers.py:1747 +#: order/models.py:718 order/serializers.py:669 order/serializers.py:855 +#: part/serializers.py:1573 stock/models.py:940 stock/models.py:1430 #: stock/models.py:1878 stock/serializers.py:688 stock/serializers.py:1580 msgid "Quantity must be greater than zero" msgstr "" -#: build/models.py:1140 build/models.py:1239 build/serializers.py:290 +#: build/models.py:1141 build/models.py:1240 build/serializers.py:298 msgid "Quantity cannot be greater than the output quantity" msgstr "" -#: build/models.py:1214 build/serializers.py:606 +#: build/models.py:1215 build/serializers.py:614 msgid "Build output has not passed all required tests" msgstr "" -#: build/models.py:1217 build/serializers.py:601 +#: build/models.py:1218 build/serializers.py:609 #, python-brace-format msgid "Build output {serial} has not passed all required tests" msgstr "" -#: build/models.py:1229 +#: build/models.py:1230 msgid "Cannot partially complete a build output with allocated items" msgstr "" -#: build/models.py:1627 +#: build/models.py:1628 msgid "Build Order Line Item" msgstr "" -#: build/models.py:1651 +#: build/models.py:1652 msgid "Build object" msgstr "" -#: build/models.py:1663 build/models.py:1974 build/serializers.py:271 -#: build/serializers.py:320 build/serializers.py:1392 common/models.py:1340 -#: order/models.py:1756 order/models.py:2597 order/serializers.py:1696 -#: order/serializers.py:2124 part/models.py:3453 part/models.py:4390 +#: build/models.py:1664 build/models.py:1975 build/serializers.py:279 +#: build/serializers.py:328 build/serializers.py:1400 common/models.py:1344 +#: order/models.py:1757 order/models.py:2598 order/serializers.py:1710 +#: order/serializers.py:2141 part/models.py:3517 part/models.py:4015 #: report/templates/report/inventree_bill_of_materials_report.html:138 #: report/templates/report/inventree_build_order_report.html:113 #: report/templates/report/inventree_purchase_order_report.html:36 @@ -1014,427 +1030,427 @@ msgstr "" msgid "Quantity" msgstr "" -#: build/models.py:1664 +#: build/models.py:1665 msgid "Required quantity for build order" msgstr "" -#: build/models.py:1673 +#: build/models.py:1674 msgid "Quantity of consumed stock" msgstr "" -#: build/models.py:1772 +#: build/models.py:1773 msgid "Build item must specify a build output, as master part is marked as trackable" msgstr "" -#: build/models.py:1783 +#: build/models.py:1784 #, python-brace-format msgid "Allocated quantity ({q}) must not exceed available stock quantity ({a})" msgstr "" -#: build/models.py:1804 order/models.py:2546 +#: build/models.py:1805 order/models.py:2547 msgid "Stock item is over-allocated" msgstr "" -#: build/models.py:1809 order/models.py:2549 +#: build/models.py:1810 order/models.py:2550 msgid "Allocation quantity must be greater than zero" msgstr "" -#: build/models.py:1815 +#: build/models.py:1816 msgid "Quantity must be 1 for serialized stock" msgstr "" -#: build/models.py:1875 +#: build/models.py:1876 msgid "Selected stock item does not match BOM line" msgstr "" -#: build/models.py:1913 +#: build/models.py:1914 msgid "Allocated quantity exceeds available stock quantity" msgstr "" -#: build/models.py:1964 build/serializers.py:948 build/serializers.py:1240 -#: order/serializers.py:1533 order/serializers.py:1554 +#: build/models.py:1965 build/serializers.py:956 build/serializers.py:1248 +#: order/serializers.py:1547 order/serializers.py:1568 #: report/templates/report/inventree_sales_order_shipment_report.html:29 #: stock/api.py:1404 stock/models.py:456 stock/serializers.py:102 #: stock/serializers.py:800 stock/serializers.py:1274 stock/serializers.py:1386 msgid "Stock Item" msgstr "" -#: build/models.py:1965 +#: build/models.py:1966 msgid "Source stock item" msgstr "" -#: build/models.py:1975 +#: build/models.py:1976 msgid "Stock quantity to allocate to build" msgstr "" -#: build/models.py:1984 +#: build/models.py:1985 msgid "Install into" msgstr "" -#: build/models.py:1985 +#: build/models.py:1986 msgid "Destination stock item" msgstr "" -#: build/serializers.py:118 +#: build/serializers.py:120 msgid "Build Level" msgstr "" -#: build/serializers.py:128 +#: build/serializers.py:136 msgid "Part Name" msgstr "" -#: build/serializers.py:153 +#: build/serializers.py:161 msgid "Project Code Label" msgstr "" -#: build/serializers.py:219 build/serializers.py:974 +#: build/serializers.py:227 build/serializers.py:982 msgid "Build Output" msgstr "" -#: build/serializers.py:231 +#: build/serializers.py:239 msgid "Build output does not match the parent build" msgstr "" -#: build/serializers.py:235 +#: build/serializers.py:243 msgid "Output part does not match BuildOrder part" msgstr "" -#: build/serializers.py:239 +#: build/serializers.py:247 msgid "This build output has already been completed" msgstr "" -#: build/serializers.py:253 +#: build/serializers.py:261 msgid "This build output is not fully allocated" msgstr "" -#: build/serializers.py:272 build/serializers.py:321 +#: build/serializers.py:280 build/serializers.py:329 msgid "Enter quantity for build output" msgstr "" -#: build/serializers.py:343 +#: build/serializers.py:351 msgid "Integer quantity required for trackable parts" msgstr "" -#: build/serializers.py:349 +#: build/serializers.py:357 msgid "Integer quantity required, as the bill of materials contains trackable parts" msgstr "" -#: build/serializers.py:366 order/serializers.py:865 order/serializers.py:1700 +#: build/serializers.py:374 order/serializers.py:876 order/serializers.py:1714 #: stock/serializers.py:699 msgid "Serial Numbers" msgstr "" -#: build/serializers.py:367 +#: build/serializers.py:375 msgid "Enter serial numbers for build outputs" msgstr "" -#: build/serializers.py:373 +#: build/serializers.py:381 msgid "Stock location for build output" msgstr "" -#: build/serializers.py:388 +#: build/serializers.py:396 msgid "Auto Allocate Serial Numbers" msgstr "" -#: build/serializers.py:390 +#: build/serializers.py:398 msgid "Automatically allocate required items with matching serial numbers" msgstr "" -#: build/serializers.py:423 order/serializers.py:951 stock/api.py:1183 +#: build/serializers.py:431 order/serializers.py:962 stock/api.py:1183 #: stock/models.py:1901 msgid "The following serial numbers already exist or are invalid" msgstr "" -#: build/serializers.py:465 build/serializers.py:521 build/serializers.py:613 +#: build/serializers.py:473 build/serializers.py:529 build/serializers.py:621 msgid "A list of build outputs must be provided" msgstr "" -#: build/serializers.py:498 +#: build/serializers.py:506 msgid "Stock location for scrapped outputs" msgstr "" -#: build/serializers.py:504 +#: build/serializers.py:512 msgid "Discard Allocations" msgstr "" -#: build/serializers.py:505 +#: build/serializers.py:513 msgid "Discard any stock allocations for scrapped outputs" msgstr "" -#: build/serializers.py:510 +#: build/serializers.py:518 msgid "Reason for scrapping build output(s)" msgstr "" -#: build/serializers.py:568 +#: build/serializers.py:576 msgid "Location for completed build outputs" msgstr "" -#: build/serializers.py:576 +#: build/serializers.py:584 msgid "Accept Incomplete Allocation" msgstr "" -#: build/serializers.py:577 +#: build/serializers.py:585 msgid "Complete outputs if stock has not been fully allocated" msgstr "" -#: build/serializers.py:702 +#: build/serializers.py:710 msgid "Consume Allocated Stock" msgstr "" -#: build/serializers.py:703 +#: build/serializers.py:711 msgid "Consume any stock which has already been allocated to this build" msgstr "" -#: build/serializers.py:709 +#: build/serializers.py:717 msgid "Remove Incomplete Outputs" msgstr "" -#: build/serializers.py:710 +#: build/serializers.py:718 msgid "Delete any build outputs which have not been completed" msgstr "" -#: build/serializers.py:737 +#: build/serializers.py:745 msgid "Not permitted" msgstr "" -#: build/serializers.py:738 +#: build/serializers.py:746 msgid "Accept as consumed by this build order" msgstr "" -#: build/serializers.py:739 +#: build/serializers.py:747 msgid "Deallocate before completing this build order" msgstr "" -#: build/serializers.py:766 +#: build/serializers.py:774 msgid "Overallocated Stock" msgstr "" -#: build/serializers.py:769 +#: build/serializers.py:777 msgid "How do you want to handle extra stock items assigned to the build order" msgstr "" -#: build/serializers.py:780 +#: build/serializers.py:788 msgid "Some stock items have been overallocated" msgstr "" -#: build/serializers.py:785 +#: build/serializers.py:793 msgid "Accept Unallocated" msgstr "" -#: build/serializers.py:787 +#: build/serializers.py:795 msgid "Accept that stock items have not been fully allocated to this build order" msgstr "" -#: build/serializers.py:798 +#: build/serializers.py:806 msgid "Required stock has not been fully allocated" msgstr "" -#: build/serializers.py:803 order/serializers.py:524 order/serializers.py:1601 +#: build/serializers.py:811 order/serializers.py:535 order/serializers.py:1615 msgid "Accept Incomplete" msgstr "" -#: build/serializers.py:805 +#: build/serializers.py:813 msgid "Accept that the required number of build outputs have not been completed" msgstr "" -#: build/serializers.py:816 +#: build/serializers.py:824 msgid "Required build quantity has not been completed" msgstr "" -#: build/serializers.py:828 +#: build/serializers.py:836 msgid "Build order has open child build orders" msgstr "" -#: build/serializers.py:831 +#: build/serializers.py:839 msgid "Build order must be in production state" msgstr "" -#: build/serializers.py:834 +#: build/serializers.py:842 msgid "Build order has incomplete outputs" msgstr "" -#: build/serializers.py:873 +#: build/serializers.py:881 msgid "Build Line" msgstr "" -#: build/serializers.py:881 +#: build/serializers.py:889 msgid "Build output" msgstr "" -#: build/serializers.py:889 +#: build/serializers.py:897 msgid "Build output must point to the same build" msgstr "" -#: build/serializers.py:920 +#: build/serializers.py:928 msgid "Build Line Item" msgstr "" -#: build/serializers.py:938 +#: build/serializers.py:946 msgid "bom_item.part must point to the same part as the build order" msgstr "" -#: build/serializers.py:954 stock/serializers.py:1287 +#: build/serializers.py:962 stock/serializers.py:1287 msgid "Item must be in stock" msgstr "" -#: build/serializers.py:997 order/serializers.py:1587 +#: build/serializers.py:1005 order/serializers.py:1601 #, python-brace-format msgid "Available quantity ({q}) exceeded" msgstr "" -#: build/serializers.py:1003 +#: build/serializers.py:1011 msgid "Build output must be specified for allocation of tracked parts" msgstr "" -#: build/serializers.py:1011 +#: build/serializers.py:1019 msgid "Build output cannot be specified for allocation of untracked parts" msgstr "" -#: build/serializers.py:1035 order/serializers.py:1860 +#: build/serializers.py:1043 order/serializers.py:1874 msgid "Allocation items must be provided" msgstr "" -#: build/serializers.py:1099 +#: build/serializers.py:1107 msgid "Stock location where parts are to be sourced (leave blank to take from any location)" msgstr "" -#: build/serializers.py:1108 +#: build/serializers.py:1116 msgid "Exclude Location" msgstr "" -#: build/serializers.py:1109 +#: build/serializers.py:1117 msgid "Exclude stock items from this selected location" msgstr "" -#: build/serializers.py:1114 +#: build/serializers.py:1122 msgid "Interchangeable Stock" msgstr "" -#: build/serializers.py:1115 +#: build/serializers.py:1123 msgid "Stock items in multiple locations can be used interchangeably" msgstr "" -#: build/serializers.py:1120 +#: build/serializers.py:1128 msgid "Substitute Stock" msgstr "" -#: build/serializers.py:1121 +#: build/serializers.py:1129 msgid "Allow allocation of substitute parts" msgstr "" -#: build/serializers.py:1126 +#: build/serializers.py:1134 msgid "Optional Items" msgstr "" -#: build/serializers.py:1127 +#: build/serializers.py:1135 msgid "Allocate optional BOM items to build order" msgstr "" -#: build/serializers.py:1148 +#: build/serializers.py:1156 msgid "Failed to start auto-allocation task" msgstr "" -#: build/serializers.py:1200 +#: build/serializers.py:1208 msgid "BOM Reference" msgstr "" -#: build/serializers.py:1206 +#: build/serializers.py:1214 msgid "BOM Part ID" msgstr "" -#: build/serializers.py:1213 +#: build/serializers.py:1221 msgid "BOM Part Name" msgstr "" -#: build/serializers.py:1266 build/serializers.py:1449 +#: build/serializers.py:1274 build/serializers.py:1457 msgid "Build" msgstr "" -#: build/serializers.py:1276 company/models.py:685 order/api.py:311 -#: order/api.py:316 order/api.py:543 order/serializers.py:650 +#: build/serializers.py:1284 company/models.py:639 order/api.py:316 +#: order/api.py:321 order/api.py:549 order/serializers.py:661 #: stock/models.py:1036 stock/serializers.py:579 msgid "Supplier Part" msgstr "" -#: build/serializers.py:1284 stock/serializers.py:620 +#: build/serializers.py:1292 stock/serializers.py:620 msgid "Allocated Quantity" msgstr "" -#: build/serializers.py:1351 +#: build/serializers.py:1359 msgid "Build Reference" msgstr "" -#: build/serializers.py:1361 +#: build/serializers.py:1369 msgid "Part Category Name" msgstr "" -#: build/serializers.py:1383 common/setting/system.py:480 part/models.py:1214 +#: build/serializers.py:1391 common/setting/system.py:480 part/models.py:1302 msgid "Trackable" msgstr "" -#: build/serializers.py:1386 +#: build/serializers.py:1394 msgid "Inherited" msgstr "" -#: build/serializers.py:1389 part/models.py:4475 +#: build/serializers.py:1397 part/models.py:4100 msgid "Allow Variants" msgstr "" -#: build/serializers.py:1395 build/serializers.py:1400 part/models.py:4208 -#: part/models.py:4779 stock/api.py:882 +#: build/serializers.py:1403 build/serializers.py:1408 part/models.py:3833 +#: part/models.py:4404 stock/api.py:882 msgid "BOM Item" msgstr "" -#: build/serializers.py:1467 order/serializers.py:1282 part/serializers.py:1310 -#: part/serializers.py:1765 +#: build/serializers.py:1475 order/serializers.py:1296 part/serializers.py:1175 +#: part/serializers.py:1630 msgid "In Production" msgstr "" -#: build/serializers.py:1469 part/serializers.py:950 part/serializers.py:1314 +#: build/serializers.py:1477 part/serializers.py:835 part/serializers.py:1179 msgid "Scheduled to Build" msgstr "" -#: build/serializers.py:1472 part/serializers.py:987 +#: build/serializers.py:1480 part/serializers.py:872 msgid "External Stock" msgstr "" -#: build/serializers.py:1473 part/serializers.py:1300 part/serializers.py:1808 +#: build/serializers.py:1481 part/serializers.py:1165 part/serializers.py:1673 msgid "Available Stock" msgstr "" -#: build/serializers.py:1475 +#: build/serializers.py:1483 msgid "Available Substitute Stock" msgstr "" -#: build/serializers.py:1478 +#: build/serializers.py:1486 msgid "Available Variant Stock" msgstr "" -#: build/serializers.py:1752 +#: build/serializers.py:1760 msgid "Consumed quantity exceeds allocated quantity" msgstr "" -#: build/serializers.py:1789 +#: build/serializers.py:1797 msgid "Optional notes for the stock consumption" msgstr "" -#: build/serializers.py:1806 +#: build/serializers.py:1814 msgid "Build item must point to the correct build order" msgstr "" -#: build/serializers.py:1811 +#: build/serializers.py:1819 msgid "Duplicate build item allocation" msgstr "" -#: build/serializers.py:1829 +#: build/serializers.py:1837 msgid "Build line must point to the correct build order" msgstr "" -#: build/serializers.py:1834 +#: build/serializers.py:1842 msgid "Duplicate build line allocation" msgstr "" -#: build/serializers.py:1846 +#: build/serializers.py:1854 msgid "At least one item or line must be provided" msgstr "" @@ -1482,702 +1498,826 @@ msgstr "" msgid "Build order {bo} is now overdue" msgstr "" -#: common/api.py:694 +#: common/api.py:701 msgid "Is Link" msgstr "" -#: common/api.py:702 +#: common/api.py:709 msgid "Is File" msgstr "" -#: common/api.py:745 +#: common/api.py:756 msgid "User does not have permission to delete these attachments" msgstr "" -#: common/api.py:762 +#: common/api.py:769 msgid "User does not have permission to delete this attachment" msgstr "" -#: common/currency.py:122 +#: common/currency.py:130 msgid "Invalid currency code" msgstr "" -#: common/currency.py:124 +#: common/currency.py:132 msgid "Duplicate currency code" msgstr "" -#: common/currency.py:129 +#: common/currency.py:137 msgid "No valid currency codes provided" msgstr "" -#: common/currency.py:146 +#: common/currency.py:154 msgid "No plugin" msgstr "" -#: common/models.py:101 common/models.py:126 common/models.py:2729 +#: common/models.py:105 common/models.py:130 common/models.py:3150 msgid "Updated" msgstr "" -#: common/models.py:102 common/models.py:127 +#: common/models.py:106 common/models.py:131 msgid "Timestamp of last update" msgstr "" -#: common/models.py:139 +#: common/models.py:143 msgid "Update By" msgstr "" -#: common/models.py:140 +#: common/models.py:144 msgid "User who last updated this object" msgstr "" -#: common/models.py:165 +#: common/models.py:169 msgid "Unique project code" msgstr "" -#: common/models.py:172 +#: common/models.py:176 msgid "Project description" msgstr "" -#: common/models.py:181 +#: common/models.py:185 msgid "User or group responsible for this project" msgstr "" -#: common/models.py:771 common/models.py:1272 common/models.py:1310 +#: common/models.py:775 common/models.py:1276 common/models.py:1314 msgid "Settings key" msgstr "" -#: common/models.py:775 +#: common/models.py:779 msgid "Settings value" msgstr "" -#: common/models.py:830 +#: common/models.py:834 msgid "Chosen value is not a valid option" msgstr "" -#: common/models.py:846 +#: common/models.py:850 msgid "Value must be a boolean value" msgstr "" -#: common/models.py:854 +#: common/models.py:858 msgid "Value must be an integer value" msgstr "" -#: common/models.py:862 +#: common/models.py:866 msgid "Value must be a valid number" msgstr "" -#: common/models.py:887 +#: common/models.py:891 msgid "Value does not pass validation checks" msgstr "" -#: common/models.py:909 +#: common/models.py:913 msgid "Key string must be unique" msgstr "" -#: common/models.py:1318 common/models.py:1319 common/models.py:1423 -#: common/models.py:1424 common/models.py:1669 common/models.py:1670 -#: common/models.py:2000 common/models.py:2001 common/models.py:2382 -#: importer/models.py:100 part/models.py:3547 part/models.py:3575 +#: common/models.py:1322 common/models.py:1323 common/models.py:1427 +#: common/models.py:1428 common/models.py:1673 common/models.py:1674 +#: common/models.py:2006 common/models.py:2007 common/models.py:2803 +#: importer/models.py:100 part/models.py:3611 part/models.py:3639 #: plugin/models.py:355 plugin/models.py:356 #: report/templates/report/inventree_test_report.html:105 users/models.py:124 #: users/models.py:501 msgid "User" msgstr "" -#: common/models.py:1341 +#: common/models.py:1345 msgid "Price break quantity" msgstr "" -#: common/models.py:1348 company/serializers.py:564 order/models.py:1842 -#: order/models.py:3043 +#: common/models.py:1352 company/serializers.py:349 order/models.py:1843 +#: order/models.py:3044 msgid "Price" msgstr "" -#: common/models.py:1349 +#: common/models.py:1353 msgid "Unit price at specified quantity" msgstr "" -#: common/models.py:1400 common/models.py:1585 +#: common/models.py:1404 common/models.py:1589 msgid "Endpoint" msgstr "" -#: common/models.py:1401 +#: common/models.py:1405 msgid "Endpoint at which this webhook is received" msgstr "" -#: common/models.py:1411 +#: common/models.py:1415 msgid "Name for this webhook" msgstr "" -#: common/models.py:1415 common/models.py:2241 common/models.py:2348 -#: company/models.py:191 company/models.py:822 machine/models.py:40 -#: part/models.py:1237 plugin/models.py:69 stock/api.py:642 users/models.py:195 +#: common/models.py:1419 common/models.py:2247 common/models.py:2354 +#: company/models.py:192 company/models.py:776 machine/models.py:40 +#: part/models.py:1325 plugin/models.py:69 stock/api.py:642 users/models.py:195 #: users/models.py:554 users/serializers.py:314 msgid "Active" msgstr "" -#: common/models.py:1415 +#: common/models.py:1419 msgid "Is this webhook active" msgstr "" -#: common/models.py:1431 users/models.py:172 +#: common/models.py:1435 users/models.py:172 msgid "Token" msgstr "" -#: common/models.py:1432 +#: common/models.py:1436 msgid "Token for access" msgstr "" -#: common/models.py:1440 +#: common/models.py:1444 msgid "Secret" msgstr "" -#: common/models.py:1441 +#: common/models.py:1445 msgid "Shared secret for HMAC" msgstr "" -#: common/models.py:1549 common/models.py:2619 +#: common/models.py:1553 common/models.py:3040 msgid "Message ID" msgstr "" -#: common/models.py:1550 common/models.py:2609 +#: common/models.py:1554 common/models.py:3030 msgid "Unique identifier for this message" msgstr "" -#: common/models.py:1558 +#: common/models.py:1562 msgid "Host" msgstr "" -#: common/models.py:1559 +#: common/models.py:1563 msgid "Host from which this message was received" msgstr "" -#: common/models.py:1567 +#: common/models.py:1571 msgid "Header" msgstr "" -#: common/models.py:1568 +#: common/models.py:1572 msgid "Header of this message" msgstr "" -#: common/models.py:1575 +#: common/models.py:1579 msgid "Body" msgstr "" -#: common/models.py:1576 +#: common/models.py:1580 msgid "Body of this message" msgstr "" -#: common/models.py:1586 +#: common/models.py:1590 msgid "Endpoint on which this message was received" msgstr "" -#: common/models.py:1591 +#: common/models.py:1595 msgid "Worked on" msgstr "" -#: common/models.py:1592 +#: common/models.py:1596 msgid "Was the work on this message finished?" msgstr "" -#: common/models.py:1718 +#: common/models.py:1722 msgid "Id" msgstr "" -#: common/models.py:1720 +#: common/models.py:1724 msgid "Title" msgstr "" -#: common/models.py:1722 common/models.py:1983 company/models.py:185 -#: company/models.py:467 company/models.py:534 company/models.py:839 -#: order/models.py:457 order/models.py:1786 order/models.py:2343 -#: part/models.py:1113 +#: common/models.py:1726 common/models.py:1989 company/models.py:186 +#: company/models.py:468 company/models.py:536 company/models.py:793 +#: order/models.py:458 order/models.py:1787 order/models.py:2344 +#: part/models.py:1201 #: report/templates/report/inventree_build_order_report.html:164 msgid "Link" msgstr "" -#: common/models.py:1724 +#: common/models.py:1728 msgid "Published" msgstr "" -#: common/models.py:1726 +#: common/models.py:1730 msgid "Author" msgstr "" -#: common/models.py:1728 +#: common/models.py:1732 msgid "Summary" msgstr "" -#: common/models.py:1731 common/models.py:2586 +#: common/models.py:1735 common/models.py:3007 msgid "Read" msgstr "" -#: common/models.py:1731 +#: common/models.py:1735 msgid "Was this news item read?" msgstr "" -#: common/models.py:1748 +#: common/models.py:1752 msgid "Image file" msgstr "" -#: common/models.py:1760 +#: common/models.py:1764 msgid "Target model type for this image" msgstr "" -#: common/models.py:1764 +#: common/models.py:1768 msgid "Target model ID for this image" msgstr "" -#: common/models.py:1786 +#: common/models.py:1790 msgid "Custom Unit" msgstr "" -#: common/models.py:1804 +#: common/models.py:1808 msgid "Unit symbol must be unique" msgstr "" -#: common/models.py:1819 +#: common/models.py:1823 msgid "Unit name must be a valid identifier" msgstr "" -#: common/models.py:1838 +#: common/models.py:1842 msgid "Unit name" msgstr "" -#: common/models.py:1845 +#: common/models.py:1849 msgid "Symbol" msgstr "" -#: common/models.py:1846 +#: common/models.py:1850 msgid "Optional unit symbol" msgstr "" -#: common/models.py:1852 +#: common/models.py:1856 msgid "Definition" msgstr "" -#: common/models.py:1853 +#: common/models.py:1857 msgid "Unit definition" msgstr "" -#: common/models.py:1911 common/models.py:1974 stock/models.py:2967 +#: common/models.py:1917 common/models.py:1980 stock/models.py:2984 #: stock/serializers.py:247 msgid "Attachment" msgstr "" -#: common/models.py:1928 +#: common/models.py:1934 msgid "Missing file" msgstr "" -#: common/models.py:1929 +#: common/models.py:1935 msgid "Missing external link" msgstr "" -#: common/models.py:1966 +#: common/models.py:1972 common/models.py:2488 msgid "Model type" msgstr "" -#: common/models.py:1967 +#: common/models.py:1973 msgid "Target model type for image" msgstr "" -#: common/models.py:1975 +#: common/models.py:1981 msgid "Select file to attach" msgstr "" -#: common/models.py:1991 +#: common/models.py:1997 msgid "Comment" msgstr "" -#: common/models.py:1992 +#: common/models.py:1998 msgid "Attachment comment" msgstr "" -#: common/models.py:2008 +#: common/models.py:2014 msgid "Upload date" msgstr "" -#: common/models.py:2009 +#: common/models.py:2015 msgid "Date the file was uploaded" msgstr "" -#: common/models.py:2013 +#: common/models.py:2019 msgid "File size" msgstr "" -#: common/models.py:2013 +#: common/models.py:2019 msgid "File size in bytes" msgstr "" -#: common/models.py:2051 common/serializers.py:684 +#: common/models.py:2057 common/serializers.py:688 msgid "Invalid model type specified for attachment" msgstr "" -#: common/models.py:2072 +#: common/models.py:2078 msgid "Custom State" msgstr "" -#: common/models.py:2073 +#: common/models.py:2079 msgid "Custom States" msgstr "" -#: common/models.py:2078 +#: common/models.py:2084 msgid "Reference Status Set" msgstr "" -#: common/models.py:2079 +#: common/models.py:2085 msgid "Status set that is extended with this custom state" msgstr "" -#: common/models.py:2083 generic/states/serializers.py:18 +#: common/models.py:2089 generic/states/serializers.py:18 msgid "Logical Key" msgstr "" -#: common/models.py:2085 +#: common/models.py:2091 msgid "State logical key that is equal to this custom state in business logic" msgstr "" -#: common/models.py:2090 common/models.py:2329 company/models.py:622 -#: machine/serializers.py:27 -#: report/templates/report/inventree_test_report.html:104 stock/models.py:2959 +#: common/models.py:2096 common/models.py:2335 machine/serializers.py:27 +#: report/templates/report/inventree_test_report.html:104 stock/models.py:2976 msgid "Value" msgstr "" -#: common/models.py:2091 +#: common/models.py:2097 msgid "Numerical value that will be saved in the models database" msgstr "" -#: common/models.py:2097 +#: common/models.py:2103 msgid "Name of the state" msgstr "" -#: common/models.py:2106 common/models.py:2335 generic/states/serializers.py:22 +#: common/models.py:2112 common/models.py:2341 generic/states/serializers.py:22 msgid "Label" msgstr "" -#: common/models.py:2107 +#: common/models.py:2113 msgid "Label that will be displayed in the frontend" msgstr "" -#: common/models.py:2114 generic/states/serializers.py:24 +#: common/models.py:2120 generic/states/serializers.py:24 msgid "Color" msgstr "" -#: common/models.py:2115 +#: common/models.py:2121 msgid "Color that will be displayed in the frontend" msgstr "" -#: common/models.py:2123 +#: common/models.py:2129 msgid "Model" msgstr "" -#: common/models.py:2124 +#: common/models.py:2130 msgid "Model this state is associated with" msgstr "" -#: common/models.py:2139 +#: common/models.py:2145 msgid "Model must be selected" msgstr "" -#: common/models.py:2142 +#: common/models.py:2148 msgid "Key must be selected" msgstr "" -#: common/models.py:2145 +#: common/models.py:2151 msgid "Logical key must be selected" msgstr "" -#: common/models.py:2149 +#: common/models.py:2155 msgid "Key must be different from logical key" msgstr "" -#: common/models.py:2156 +#: common/models.py:2162 msgid "Valid reference status class must be provided" msgstr "" -#: common/models.py:2162 +#: common/models.py:2168 msgid "Key must be different from the logical keys of the reference status" msgstr "" -#: common/models.py:2169 +#: common/models.py:2175 msgid "Logical key must be in the logical keys of the reference status" msgstr "" -#: common/models.py:2176 +#: common/models.py:2182 msgid "Name must be different from the names of the reference status" msgstr "" -#: common/models.py:2216 common/models.py:2323 part/models.py:3889 +#: common/models.py:2222 common/models.py:2329 common/models.py:2533 msgid "Selection List" msgstr "" -#: common/models.py:2217 +#: common/models.py:2223 msgid "Selection Lists" msgstr "" -#: common/models.py:2222 +#: common/models.py:2228 msgid "Name of the selection list" msgstr "" -#: common/models.py:2229 +#: common/models.py:2235 msgid "Description of the selection list" msgstr "" -#: common/models.py:2235 part/models.py:1242 +#: common/models.py:2241 part/models.py:1330 msgid "Locked" msgstr "" -#: common/models.py:2236 +#: common/models.py:2242 msgid "Is this selection list locked?" msgstr "" -#: common/models.py:2242 +#: common/models.py:2248 msgid "Can this selection list be used?" msgstr "" -#: common/models.py:2250 +#: common/models.py:2256 msgid "Source Plugin" msgstr "" -#: common/models.py:2251 +#: common/models.py:2257 msgid "Plugin which provides the selection list" msgstr "" -#: common/models.py:2256 +#: common/models.py:2262 msgid "Source String" msgstr "" -#: common/models.py:2257 +#: common/models.py:2263 msgid "Optional string identifying the source used for this list" msgstr "" -#: common/models.py:2266 +#: common/models.py:2272 msgid "Default Entry" msgstr "" -#: common/models.py:2267 +#: common/models.py:2273 msgid "Default entry for this selection list" msgstr "" -#: common/models.py:2272 common/models.py:2724 +#: common/models.py:2278 common/models.py:3145 msgid "Created" msgstr "" -#: common/models.py:2273 +#: common/models.py:2279 msgid "Date and time that the selection list was created" msgstr "" -#: common/models.py:2278 +#: common/models.py:2284 msgid "Last Updated" msgstr "" -#: common/models.py:2279 +#: common/models.py:2285 msgid "Date and time that the selection list was last updated" msgstr "" -#: common/models.py:2313 +#: common/models.py:2319 msgid "Selection List Entry" msgstr "" -#: common/models.py:2314 +#: common/models.py:2320 msgid "Selection List Entries" msgstr "" -#: common/models.py:2324 +#: common/models.py:2330 msgid "Selection list to which this entry belongs" msgstr "" -#: common/models.py:2330 +#: common/models.py:2336 msgid "Value of the selection list entry" msgstr "" -#: common/models.py:2336 +#: common/models.py:2342 msgid "Label for the selection list entry" msgstr "" -#: common/models.py:2342 +#: common/models.py:2348 msgid "Description of the selection list entry" msgstr "" -#: common/models.py:2349 +#: common/models.py:2355 msgid "Is this selection list entry active?" msgstr "" -#: common/models.py:2367 -msgid "Barcode Scan" +#: common/models.py:2387 +msgid "Parameter Template" msgstr "" -#: common/models.py:2371 importer/models.py:546 part/models.py:4060 -msgid "Data" +#: common/models.py:2388 +msgid "Parameter Templates" msgstr "" -#: common/models.py:2372 -msgid "Barcode data" +#: common/models.py:2425 +msgid "Checkbox parameters cannot have units" msgstr "" -#: common/models.py:2383 -msgid "User who scanned the barcode" +#: common/models.py:2430 +msgid "Checkbox parameters cannot have choices" msgstr "" -#: common/models.py:2388 importer/models.py:69 -msgid "Timestamp" +#: common/models.py:2450 part/models.py:3707 +msgid "Choices must be unique" msgstr "" -#: common/models.py:2389 -msgid "Date and time of the barcode scan" +#: common/models.py:2467 +msgid "Parameter template name must be unique" msgstr "" -#: common/models.py:2395 -msgid "URL endpoint which processed the barcode" +#: common/models.py:2489 +msgid "Target model type for this parameter template" msgstr "" -#: common/models.py:2402 order/models.py:1832 plugin/serializers.py:93 -msgid "Context" +#: common/models.py:2495 +msgid "Parameter Name" msgstr "" -#: common/models.py:2403 -msgid "Context data for the barcode scan" +#: common/models.py:2501 part/models.py:1283 +msgid "Units" msgstr "" -#: common/models.py:2410 -msgid "Response" +#: common/models.py:2502 +msgid "Physical units for this parameter" msgstr "" -#: common/models.py:2411 -msgid "Response data from the barcode scan" +#: common/models.py:2510 +msgid "Parameter description" msgstr "" -#: common/models.py:2417 report/templates/report/inventree_test_report.html:103 -#: stock/models.py:2953 -msgid "Result" +#: common/models.py:2516 +msgid "Checkbox" msgstr "" -#: common/models.py:2418 -msgid "Was the barcode scan successful?" +#: common/models.py:2517 +msgid "Is this parameter a checkbox?" msgstr "" -#: common/models.py:2500 -msgid "An error occurred" +#: common/models.py:2522 part/models.py:3794 +msgid "Choices" msgstr "" -#: common/models.py:2521 -msgid "INVE-E8: Email log deletion is protected. Set INVENTREE_PROTECT_EMAIL_LOG to False to allow deletion." +#: common/models.py:2523 +msgid "Valid choices for this parameter (comma-separated)" msgstr "" -#: common/models.py:2568 -msgid "Email Message" +#: common/models.py:2534 +msgid "Selection list for this parameter" msgstr "" -#: common/models.py:2569 -msgid "Email Messages" +#: common/models.py:2539 part/models.py:3769 report/models.py:287 +msgid "Enabled" msgstr "" -#: common/models.py:2576 -msgid "Announced" +#: common/models.py:2540 +msgid "Is this parameter template enabled?" msgstr "" -#: common/models.py:2578 -msgid "Sent" -msgstr "" - -#: common/models.py:2579 -msgid "Failed" +#: common/models.py:2581 +msgid "Parameter" msgstr "" #: common/models.py:2582 -msgid "Delivered" -msgstr "" - -#: common/models.py:2590 -msgid "Confirmed" -msgstr "" - -#: common/models.py:2596 -msgid "Inbound" -msgstr "" - -#: common/models.py:2597 -msgid "Outbound" -msgstr "" - -#: common/models.py:2602 -msgid "No Reply" -msgstr "" - -#: common/models.py:2603 -msgid "Track Delivery" -msgstr "" - -#: common/models.py:2604 -msgid "Track Read" -msgstr "" - -#: common/models.py:2605 -msgid "Track Click" -msgstr "" - -#: common/models.py:2608 common/models.py:2711 -msgid "Global ID" -msgstr "" - -#: common/models.py:2621 -msgid "Identifier for this message (might be supplied by external system)" +msgid "Parameters" msgstr "" #: common/models.py:2628 +msgid "Invalid choice for parameter value" +msgstr "" + +#: common/models.py:2698 common/serializers.py:783 +msgid "Invalid model type specified for parameter" +msgstr "" + +#: common/models.py:2734 +msgid "Model ID" +msgstr "" + +#: common/models.py:2735 +msgid "ID of the target model for this parameter" +msgstr "" + +#: common/models.py:2744 common/setting/system.py:450 report/models.py:373 +#: report/models.py:669 report/serializers.py:94 report/serializers.py:135 +#: stock/serializers.py:234 +msgid "Template" +msgstr "" + +#: common/models.py:2745 +msgid "Parameter template" +msgstr "" + +#: common/models.py:2750 common/models.py:2792 importer/models.py:546 +msgid "Data" +msgstr "" + +#: common/models.py:2751 +msgid "Parameter Value" +msgstr "" + +#: common/models.py:2760 company/models.py:810 order/serializers.py:894 +#: order/serializers.py:2064 part/models.py:4075 part/models.py:4444 +#: report/templates/report/inventree_bill_of_materials_report.html:140 +#: report/templates/report/inventree_purchase_order_report.html:39 +#: report/templates/report/inventree_return_order_report.html:27 +#: report/templates/report/inventree_sales_order_report.html:32 +#: report/templates/report/inventree_stock_location_report.html:105 +#: stock/serializers.py:813 +msgid "Note" +msgstr "" + +#: common/models.py:2761 stock/serializers.py:718 +msgid "Optional note field" +msgstr "" + +#: common/models.py:2788 +msgid "Barcode Scan" +msgstr "" + +#: common/models.py:2793 +msgid "Barcode data" +msgstr "" + +#: common/models.py:2804 +msgid "User who scanned the barcode" +msgstr "" + +#: common/models.py:2809 importer/models.py:69 +msgid "Timestamp" +msgstr "" + +#: common/models.py:2810 +msgid "Date and time of the barcode scan" +msgstr "" + +#: common/models.py:2816 +msgid "URL endpoint which processed the barcode" +msgstr "" + +#: common/models.py:2823 order/models.py:1833 plugin/serializers.py:93 +msgid "Context" +msgstr "" + +#: common/models.py:2824 +msgid "Context data for the barcode scan" +msgstr "" + +#: common/models.py:2831 +msgid "Response" +msgstr "" + +#: common/models.py:2832 +msgid "Response data from the barcode scan" +msgstr "" + +#: common/models.py:2838 report/templates/report/inventree_test_report.html:103 +#: stock/models.py:2970 +msgid "Result" +msgstr "" + +#: common/models.py:2839 +msgid "Was the barcode scan successful?" +msgstr "" + +#: common/models.py:2921 +msgid "An error occurred" +msgstr "" + +#: common/models.py:2942 +msgid "INVE-E8: Email log deletion is protected. Set INVENTREE_PROTECT_EMAIL_LOG to False to allow deletion." +msgstr "" + +#: common/models.py:2989 +msgid "Email Message" +msgstr "" + +#: common/models.py:2990 +msgid "Email Messages" +msgstr "" + +#: common/models.py:2997 +msgid "Announced" +msgstr "" + +#: common/models.py:2999 +msgid "Sent" +msgstr "" + +#: common/models.py:3000 +msgid "Failed" +msgstr "" + +#: common/models.py:3003 +msgid "Delivered" +msgstr "" + +#: common/models.py:3011 +msgid "Confirmed" +msgstr "" + +#: common/models.py:3017 +msgid "Inbound" +msgstr "" + +#: common/models.py:3018 +msgid "Outbound" +msgstr "" + +#: common/models.py:3023 +msgid "No Reply" +msgstr "" + +#: common/models.py:3024 +msgid "Track Delivery" +msgstr "" + +#: common/models.py:3025 +msgid "Track Read" +msgstr "" + +#: common/models.py:3026 +msgid "Track Click" +msgstr "" + +#: common/models.py:3029 common/models.py:3132 +msgid "Global ID" +msgstr "" + +#: common/models.py:3042 +msgid "Identifier for this message (might be supplied by external system)" +msgstr "" + +#: common/models.py:3049 msgid "Thread ID" msgstr "" -#: common/models.py:2630 +#: common/models.py:3051 msgid "Identifier for this message thread (might be supplied by external system)" msgstr "" -#: common/models.py:2639 +#: common/models.py:3060 msgid "Thread" msgstr "" -#: common/models.py:2640 +#: common/models.py:3061 msgid "Linked thread for this message" msgstr "" -#: common/models.py:2656 -msgid "Prioriy" +#: common/models.py:3077 +msgid "Priority" msgstr "" -#: common/models.py:2698 +#: common/models.py:3119 msgid "Email Thread" msgstr "" -#: common/models.py:2699 +#: common/models.py:3120 msgid "Email Threads" msgstr "" -#: common/models.py:2705 generic/states/serializers.py:16 +#: common/models.py:3126 generic/states/serializers.py:16 #: machine/serializers.py:24 plugin/models.py:46 users/models.py:113 msgid "Key" msgstr "" -#: common/models.py:2708 +#: common/models.py:3129 msgid "Unique key for this thread (used to identify the thread)" msgstr "" -#: common/models.py:2712 +#: common/models.py:3133 msgid "Unique identifier for this thread" msgstr "" -#: common/models.py:2719 +#: common/models.py:3140 msgid "Started Internal" msgstr "" -#: common/models.py:2720 +#: common/models.py:3141 msgid "Was this thread started internally?" msgstr "" -#: common/models.py:2725 +#: common/models.py:3146 msgid "Date and time that the thread was created" msgstr "" -#: common/models.py:2730 +#: common/models.py:3151 msgid "Date and time that the thread was last updated" msgstr "" @@ -2199,7 +2339,7 @@ msgstr "" msgid "A order that is assigned to you was canceled" msgstr "" -#: common/notifications.py:73 common/notifications.py:80 order/api.py:594 +#: common/notifications.py:73 common/notifications.py:80 order/api.py:600 msgid "Items Received" msgstr "" @@ -2211,88 +2351,93 @@ msgstr "" msgid "Items have been received against a return order" msgstr "" -#: common/serializers.py:145 +#: common/serializers.py:149 msgid "Indicates if the setting is overridden by an environment variable" msgstr "" -#: common/serializers.py:147 +#: common/serializers.py:151 msgid "Override" msgstr "" -#: common/serializers.py:498 +#: common/serializers.py:502 msgid "Is Running" msgstr "" -#: common/serializers.py:504 +#: common/serializers.py:508 msgid "Pending Tasks" msgstr "" -#: common/serializers.py:510 +#: common/serializers.py:514 msgid "Scheduled Tasks" msgstr "" -#: common/serializers.py:516 +#: common/serializers.py:520 msgid "Failed Tasks" msgstr "" -#: common/serializers.py:531 +#: common/serializers.py:535 msgid "Task ID" msgstr "" -#: common/serializers.py:531 +#: common/serializers.py:535 msgid "Unique task ID" msgstr "" -#: common/serializers.py:533 +#: common/serializers.py:537 msgid "Lock" msgstr "" -#: common/serializers.py:533 +#: common/serializers.py:537 msgid "Lock time" msgstr "" -#: common/serializers.py:535 +#: common/serializers.py:539 msgid "Task name" msgstr "" -#: common/serializers.py:537 +#: common/serializers.py:541 msgid "Function" msgstr "" -#: common/serializers.py:537 +#: common/serializers.py:541 msgid "Function name" msgstr "" -#: common/serializers.py:539 +#: common/serializers.py:543 msgid "Arguments" msgstr "" -#: common/serializers.py:539 +#: common/serializers.py:543 msgid "Task arguments" msgstr "" -#: common/serializers.py:542 +#: common/serializers.py:546 msgid "Keyword Arguments" msgstr "" -#: common/serializers.py:542 +#: common/serializers.py:546 msgid "Task keyword arguments" msgstr "" -#: common/serializers.py:652 +#: common/serializers.py:656 msgid "Filename" msgstr "" -#: common/serializers.py:659 importer/models.py:89 report/api.py:41 +#: common/serializers.py:663 common/serializers.py:730 +#: common/serializers.py:805 importer/models.py:89 report/api.py:41 #: report/models.py:293 report/serializers.py:52 msgid "Model Type" msgstr "" -#: common/serializers.py:687 +#: common/serializers.py:691 msgid "User does not have permission to create or edit attachments for this model" msgstr "" -#: common/serializers.py:731 common/serializers.py:834 +#: common/serializers.py:786 +msgid "User does not have permission to create or edit parameters for this model" +msgstr "" + +#: common/serializers.py:850 common/serializers.py:953 msgid "Selection list is locked" msgstr "" @@ -2368,7 +2513,7 @@ msgstr "" msgid "Show the `about` modal only to superusers" msgstr "" -#: common/setting/system.py:224 company/models.py:144 company/models.py:145 +#: common/setting/system.py:224 company/models.py:145 company/models.py:146 msgid "Company name" msgstr "" @@ -2411,8 +2556,8 @@ msgstr "" #: common/setting/system.py:253 common/setting/system.py:293 #: common/setting/system.py:306 common/setting/system.py:314 #: common/setting/system.py:321 common/setting/system.py:330 -#: common/setting/system.py:339 common/setting/system.py:588 -#: common/setting/system.py:616 common/setting/system.py:707 +#: common/setting/system.py:339 common/setting/system.py:580 +#: common/setting/system.py:608 common/setting/system.py:707 #: common/setting/system.py:1103 common/setting/system.py:1119 msgid "days" msgstr "" @@ -2657,12 +2802,6 @@ msgstr "" msgid "Copy category parameter templates when creating a part" msgstr "" -#: common/setting/system.py:450 part/models.py:4054 report/models.py:373 -#: report/models.py:669 report/serializers.py:94 report/serializers.py:135 -#: stock/serializers.py:234 -msgid "Template" -msgstr "" - #: common/setting/system.py:451 msgid "Parts are templates by default" msgstr "" @@ -2671,8 +2810,8 @@ msgstr "" msgid "Parts can be assembled from other components by default" msgstr "" -#: common/setting/system.py:462 part/models.py:1208 part/serializers.py:1734 -#: part/serializers.py:1741 +#: common/setting/system.py:462 part/models.py:1296 part/serializers.py:1599 +#: part/serializers.py:1606 msgid "Component" msgstr "" @@ -2680,7 +2819,7 @@ msgstr "" msgid "Parts can be used as sub-components by default" msgstr "" -#: common/setting/system.py:468 part/models.py:1226 +#: common/setting/system.py:468 part/models.py:1314 msgid "Purchaseable" msgstr "" @@ -2688,7 +2827,7 @@ msgstr "" msgid "Parts are purchaseable by default" msgstr "" -#: common/setting/system.py:474 part/models.py:1232 stock/api.py:643 +#: common/setting/system.py:474 part/models.py:1320 stock/api.py:643 msgid "Salable" msgstr "" @@ -2700,7 +2839,7 @@ msgstr "" msgid "Parts are trackable by default" msgstr "" -#: common/setting/system.py:486 part/models.py:1248 +#: common/setting/system.py:486 part/models.py:1336 msgid "Virtual" msgstr "" @@ -2749,158 +2888,158 @@ msgid "Part category default icon (empty means no icon)" msgstr "" #: common/setting/system.py:525 -msgid "Enforce Parameter Units" -msgstr "" - -#: common/setting/system.py:527 -msgid "If units are provided, parameter values must match the specified units" -msgstr "" - -#: common/setting/system.py:533 msgid "Minimum Pricing Decimal Places" msgstr "" -#: common/setting/system.py:535 +#: common/setting/system.py:527 msgid "Minimum number of decimal places to display when rendering pricing data" msgstr "" -#: common/setting/system.py:546 +#: common/setting/system.py:538 msgid "Maximum Pricing Decimal Places" msgstr "" -#: common/setting/system.py:548 +#: common/setting/system.py:540 msgid "Maximum number of decimal places to display when rendering pricing data" msgstr "" -#: common/setting/system.py:559 +#: common/setting/system.py:551 msgid "Use Supplier Pricing" msgstr "" -#: common/setting/system.py:561 +#: common/setting/system.py:553 msgid "Include supplier price breaks in overall pricing calculations" msgstr "" -#: common/setting/system.py:567 +#: common/setting/system.py:559 msgid "Purchase History Override" msgstr "" -#: common/setting/system.py:569 +#: common/setting/system.py:561 msgid "Historical purchase order pricing overrides supplier price breaks" msgstr "" -#: common/setting/system.py:575 +#: common/setting/system.py:567 msgid "Use Stock Item Pricing" msgstr "" -#: common/setting/system.py:577 +#: common/setting/system.py:569 msgid "Use pricing from manually entered stock data for pricing calculations" msgstr "" -#: common/setting/system.py:583 +#: common/setting/system.py:575 msgid "Stock Item Pricing Age" msgstr "" -#: common/setting/system.py:585 +#: common/setting/system.py:577 msgid "Exclude stock items older than this number of days from pricing calculations" msgstr "" -#: common/setting/system.py:592 +#: common/setting/system.py:584 msgid "Use Variant Pricing" msgstr "" -#: common/setting/system.py:593 +#: common/setting/system.py:585 msgid "Include variant pricing in overall pricing calculations" msgstr "" -#: common/setting/system.py:598 +#: common/setting/system.py:590 msgid "Active Variants Only" msgstr "" -#: common/setting/system.py:600 +#: common/setting/system.py:592 msgid "Only use active variant parts for calculating variant pricing" msgstr "" -#: common/setting/system.py:606 +#: common/setting/system.py:598 msgid "Auto Update Pricing" msgstr "" -#: common/setting/system.py:608 +#: common/setting/system.py:600 msgid "Automatically update part pricing when internal data changes" msgstr "" -#: common/setting/system.py:614 +#: common/setting/system.py:606 msgid "Pricing Rebuild Interval" msgstr "" -#: common/setting/system.py:615 +#: common/setting/system.py:607 msgid "Number of days before part pricing is automatically updated" msgstr "" -#: common/setting/system.py:621 +#: common/setting/system.py:613 msgid "Internal Prices" msgstr "" -#: common/setting/system.py:622 +#: common/setting/system.py:614 msgid "Enable internal prices for parts" msgstr "" -#: common/setting/system.py:627 +#: common/setting/system.py:619 msgid "Internal Price Override" msgstr "" -#: common/setting/system.py:629 +#: common/setting/system.py:621 msgid "If available, internal prices override price range calculations" msgstr "" -#: common/setting/system.py:635 +#: common/setting/system.py:627 msgid "Enable label printing" msgstr "" -#: common/setting/system.py:636 +#: common/setting/system.py:628 msgid "Enable label printing from the web interface" msgstr "" -#: common/setting/system.py:641 +#: common/setting/system.py:633 msgid "Label Image DPI" msgstr "" -#: common/setting/system.py:643 +#: common/setting/system.py:635 msgid "DPI resolution when generating image files to supply to label printing plugins" msgstr "" -#: common/setting/system.py:649 +#: common/setting/system.py:641 msgid "Enable Reports" msgstr "" -#: common/setting/system.py:650 +#: common/setting/system.py:642 msgid "Enable generation of reports" msgstr "" -#: common/setting/system.py:655 +#: common/setting/system.py:647 msgid "Debug Mode" msgstr "" -#: common/setting/system.py:656 +#: common/setting/system.py:648 msgid "Generate reports in debug mode (HTML output)" msgstr "" -#: common/setting/system.py:661 +#: common/setting/system.py:653 msgid "Log Report Errors" msgstr "" -#: common/setting/system.py:662 +#: common/setting/system.py:654 msgid "Log errors which occur when generating reports" msgstr "" -#: common/setting/system.py:667 plugin/builtin/labels/label_sheet.py:29 +#: common/setting/system.py:659 plugin/builtin/labels/label_sheet.py:29 #: report/models.py:381 msgid "Page Size" msgstr "" -#: common/setting/system.py:668 +#: common/setting/system.py:660 msgid "Default page size for PDF reports" msgstr "" +#: common/setting/system.py:665 +msgid "Enforce Parameter Units" +msgstr "" + +#: common/setting/system.py:667 +msgid "If units are provided, parameter values must match the specified units" +msgstr "" + #: common/setting/system.py:673 msgid "Globally Unique Serials" msgstr "" @@ -3456,688 +3595,677 @@ msgid "Display PDF reports in the browser, instead of downloading as a file" msgstr "" #: common/setting/user.py:45 -msgid "Search Parts" +msgid "Barcode Scanner in Form Fields" msgstr "" #: common/setting/user.py:46 -msgid "Display parts in search preview window" +msgid "Allow barcode scanner input in form fields" msgstr "" #: common/setting/user.py:51 -msgid "Search Supplier Parts" +msgid "Search Parts" msgstr "" #: common/setting/user.py:52 -msgid "Display supplier parts in search preview window" +msgid "Display parts in search preview window" msgstr "" #: common/setting/user.py:57 -msgid "Search Manufacturer Parts" +msgid "Search Supplier Parts" msgstr "" #: common/setting/user.py:58 -msgid "Display manufacturer parts in search preview window" +msgid "Display supplier parts in search preview window" msgstr "" #: common/setting/user.py:63 -msgid "Hide Inactive Parts" +msgid "Search Manufacturer Parts" msgstr "" #: common/setting/user.py:64 -msgid "Excluded inactive parts from search preview window" +msgid "Display manufacturer parts in search preview window" msgstr "" #: common/setting/user.py:69 -msgid "Search Categories" +msgid "Hide Inactive Parts" msgstr "" #: common/setting/user.py:70 -msgid "Display part categories in search preview window" +msgid "Excluded inactive parts from search preview window" msgstr "" #: common/setting/user.py:75 -msgid "Search Stock" +msgid "Search Categories" msgstr "" #: common/setting/user.py:76 -msgid "Display stock items in search preview window" +msgid "Display part categories in search preview window" msgstr "" #: common/setting/user.py:81 +msgid "Search Stock" +msgstr "" + +#: common/setting/user.py:82 +msgid "Display stock items in search preview window" +msgstr "" + +#: common/setting/user.py:87 msgid "Hide Unavailable Stock Items" msgstr "" -#: common/setting/user.py:83 +#: common/setting/user.py:89 msgid "Exclude stock items which are not available from the search preview window" msgstr "" -#: common/setting/user.py:89 +#: common/setting/user.py:95 msgid "Search Locations" msgstr "" -#: common/setting/user.py:90 +#: common/setting/user.py:96 msgid "Display stock locations in search preview window" msgstr "" -#: common/setting/user.py:95 +#: common/setting/user.py:101 msgid "Search Companies" msgstr "" -#: common/setting/user.py:96 +#: common/setting/user.py:102 msgid "Display companies in search preview window" msgstr "" -#: common/setting/user.py:101 +#: common/setting/user.py:107 msgid "Search Build Orders" msgstr "" -#: common/setting/user.py:102 +#: common/setting/user.py:108 msgid "Display build orders in search preview window" msgstr "" -#: common/setting/user.py:107 +#: common/setting/user.py:113 msgid "Search Purchase Orders" msgstr "" -#: common/setting/user.py:108 +#: common/setting/user.py:114 msgid "Display purchase orders in search preview window" msgstr "" -#: common/setting/user.py:113 +#: common/setting/user.py:119 msgid "Exclude Inactive Purchase Orders" msgstr "" -#: common/setting/user.py:114 +#: common/setting/user.py:120 msgid "Exclude inactive purchase orders from search preview window" msgstr "" -#: common/setting/user.py:119 +#: common/setting/user.py:125 msgid "Search Sales Orders" msgstr "" -#: common/setting/user.py:120 +#: common/setting/user.py:126 msgid "Display sales orders in search preview window" msgstr "" -#: common/setting/user.py:125 +#: common/setting/user.py:131 msgid "Exclude Inactive Sales Orders" msgstr "" -#: common/setting/user.py:126 +#: common/setting/user.py:132 msgid "Exclude inactive sales orders from search preview window" msgstr "" -#: common/setting/user.py:131 +#: common/setting/user.py:137 msgid "Search Sales Order Shipments" msgstr "" -#: common/setting/user.py:132 +#: common/setting/user.py:138 msgid "Display sales order shipments in search preview window" msgstr "" -#: common/setting/user.py:137 +#: common/setting/user.py:143 msgid "Search Return Orders" msgstr "" -#: common/setting/user.py:138 +#: common/setting/user.py:144 msgid "Display return orders in search preview window" msgstr "" -#: common/setting/user.py:143 +#: common/setting/user.py:149 msgid "Exclude Inactive Return Orders" msgstr "" -#: common/setting/user.py:144 +#: common/setting/user.py:150 msgid "Exclude inactive return orders from search preview window" msgstr "" -#: common/setting/user.py:149 +#: common/setting/user.py:155 msgid "Search Preview Results" msgstr "" -#: common/setting/user.py:151 +#: common/setting/user.py:157 msgid "Number of results to show in each section of the search preview window" msgstr "" -#: common/setting/user.py:157 +#: common/setting/user.py:163 msgid "Regex Search" msgstr "" -#: common/setting/user.py:158 +#: common/setting/user.py:164 msgid "Enable regular expressions in search queries" msgstr "" -#: common/setting/user.py:163 +#: common/setting/user.py:169 msgid "Whole Word Search" msgstr "" -#: common/setting/user.py:164 +#: common/setting/user.py:170 msgid "Search queries return results for whole word matches" msgstr "" -#: common/setting/user.py:169 +#: common/setting/user.py:175 msgid "Search Notes" msgstr "" -#: common/setting/user.py:171 +#: common/setting/user.py:177 msgid "Search queries return results for matches from the item's notes" msgstr "" -#: common/setting/user.py:177 +#: common/setting/user.py:183 msgid "Escape Key Closes Forms" msgstr "" -#: common/setting/user.py:178 +#: common/setting/user.py:184 msgid "Use the escape key to close modal forms" msgstr "" -#: common/setting/user.py:183 +#: common/setting/user.py:189 msgid "Fixed Navbar" msgstr "" -#: common/setting/user.py:184 +#: common/setting/user.py:190 msgid "The navbar position is fixed to the top of the screen" msgstr "" -#: common/setting/user.py:189 +#: common/setting/user.py:195 msgid "Fixed Table Headers" msgstr "" -#: common/setting/user.py:190 +#: common/setting/user.py:196 msgid "Table headers are fixed to the top of the table" msgstr "" -#: common/setting/user.py:195 +#: common/setting/user.py:201 msgid "Show Spotlight" msgstr "" -#: common/setting/user.py:196 +#: common/setting/user.py:202 msgid "Enable spotlight navigation functionality" msgstr "" -#: common/setting/user.py:201 +#: common/setting/user.py:207 msgid "Navigation Icons" msgstr "" -#: common/setting/user.py:202 +#: common/setting/user.py:208 msgid "Display icons in the navigation bar" msgstr "" -#: common/setting/user.py:207 +#: common/setting/user.py:213 msgid "Date Format" msgstr "" -#: common/setting/user.py:208 +#: common/setting/user.py:214 msgid "Preferred format for displaying dates" msgstr "" -#: common/setting/user.py:221 +#: common/setting/user.py:227 msgid "Show Stock History" msgstr "" -#: common/setting/user.py:222 +#: common/setting/user.py:228 msgid "Display stock history information in the part detail page" msgstr "" -#: common/setting/user.py:227 +#: common/setting/user.py:233 msgid "Show Last Breadcrumb" msgstr "" -#: common/setting/user.py:228 +#: common/setting/user.py:234 msgid "Show the current page in breadcrumbs" msgstr "" -#: common/setting/user.py:233 +#: common/setting/user.py:239 msgid "Show full stock location in tables" msgstr "" -#: common/setting/user.py:235 +#: common/setting/user.py:241 msgid "Disabled: The full location path is displayed as a hover tooltip. Enabled: The full location path is displayed as plain text." msgstr "" -#: common/setting/user.py:241 +#: common/setting/user.py:247 msgid "Show full part categories in tables" msgstr "" -#: common/setting/user.py:243 +#: common/setting/user.py:249 msgid "Disabled: The full category path is displayed as a hover tooltip. Enabled: The full category path is displayed as plain text." msgstr "" -#: common/setting/user.py:249 +#: common/setting/user.py:255 msgid "Receive error reports" msgstr "" -#: common/setting/user.py:250 +#: common/setting/user.py:256 msgid "Receive notifications for system errors" msgstr "" -#: common/setting/user.py:255 +#: common/setting/user.py:261 msgid "Last used printing machines" msgstr "" -#: common/setting/user.py:256 +#: common/setting/user.py:262 msgid "Save the last used printing machines for a user" msgstr "" -#: common/validators.py:34 +#: common/validators.py:38 +msgid "All models" +msgstr "" + +#: common/validators.py:63 msgid "No attachment model type provided" msgstr "" -#: common/validators.py:40 +#: common/validators.py:69 msgid "Invalid attachment model type" msgstr "" -#: common/validators.py:81 +#: common/validators.py:110 msgid "Minimum places cannot be greater than maximum places" msgstr "" -#: common/validators.py:93 +#: common/validators.py:122 msgid "Maximum places cannot be less than minimum places" msgstr "" -#: common/validators.py:104 +#: common/validators.py:133 msgid "An empty domain is not allowed." msgstr "" -#: common/validators.py:106 +#: common/validators.py:135 #, python-brace-format msgid "Invalid domain name: {domain}" msgstr "" -#: common/validators.py:122 +#: common/validators.py:151 msgid "Value must be uppercase" msgstr "" -#: common/validators.py:128 +#: common/validators.py:157 msgid "Value must be a valid variable identifier" msgstr "" -#: company/api.py:147 +#: company/api.py:141 msgid "Part is Active" msgstr "" -#: company/api.py:151 +#: company/api.py:145 msgid "Manufacturer is Active" msgstr "" -#: company/api.py:286 +#: company/api.py:246 msgid "Supplier Part is Active" msgstr "" -#: company/api.py:290 +#: company/api.py:250 msgid "Internal Part is Active" msgstr "" -#: company/api.py:295 +#: company/api.py:255 msgid "Supplier is Active" msgstr "" -#: company/api.py:307 company/models.py:520 company/serializers.py:457 -#: part/serializers.py:566 +#: company/api.py:267 company/models.py:522 company/serializers.py:502 +#: part/serializers.py:477 msgid "Manufacturer" msgstr "" -#: company/api.py:314 company/models.py:121 company/models.py:392 +#: company/api.py:274 company/models.py:122 company/models.py:393 #: stock/api.py:900 msgid "Company" msgstr "" -#: company/api.py:324 +#: company/api.py:284 msgid "Has Stock" msgstr "" -#: company/models.py:122 +#: company/models.py:123 msgid "Companies" msgstr "" -#: company/models.py:150 +#: company/models.py:151 msgid "Company description" msgstr "" -#: company/models.py:151 +#: company/models.py:152 msgid "Description of the company" msgstr "" -#: company/models.py:157 +#: company/models.py:158 msgid "Website" msgstr "" -#: company/models.py:158 +#: company/models.py:159 msgid "Company website URL" msgstr "" -#: company/models.py:164 +#: company/models.py:165 msgid "Phone number" msgstr "" -#: company/models.py:166 +#: company/models.py:167 msgid "Contact phone number" msgstr "" -#: company/models.py:173 +#: company/models.py:174 msgid "Contact email address" msgstr "" -#: company/models.py:178 company/models.py:296 order/models.py:513 +#: company/models.py:179 company/models.py:297 order/models.py:514 #: users/models.py:561 msgid "Contact" msgstr "" -#: company/models.py:180 +#: company/models.py:181 msgid "Point of contact" msgstr "" -#: company/models.py:186 +#: company/models.py:187 msgid "Link to external company information" msgstr "" -#: company/models.py:191 +#: company/models.py:192 msgid "Is this company active?" msgstr "" -#: company/models.py:196 +#: company/models.py:197 msgid "Is customer" msgstr "" -#: company/models.py:197 +#: company/models.py:198 msgid "Do you sell items to this company?" msgstr "" -#: company/models.py:202 +#: company/models.py:203 msgid "Is supplier" msgstr "" -#: company/models.py:203 +#: company/models.py:204 msgid "Do you purchase items from this company?" msgstr "" -#: company/models.py:208 +#: company/models.py:209 msgid "Is manufacturer" msgstr "" -#: company/models.py:209 +#: company/models.py:210 msgid "Does this company manufacture parts?" msgstr "" -#: company/models.py:217 +#: company/models.py:218 msgid "Default currency used for this company" msgstr "" -#: company/models.py:224 +#: company/models.py:225 msgid "Tax ID" msgstr "" -#: company/models.py:225 +#: company/models.py:226 msgid "Company Tax ID" msgstr "" -#: company/models.py:335 order/models.py:523 order/models.py:2288 +#: company/models.py:336 order/models.py:524 order/models.py:2289 msgid "Address" msgstr "" -#: company/models.py:336 +#: company/models.py:337 msgid "Addresses" msgstr "" -#: company/models.py:393 +#: company/models.py:394 msgid "Select company" msgstr "" -#: company/models.py:398 +#: company/models.py:399 msgid "Address title" msgstr "" -#: company/models.py:399 +#: company/models.py:400 msgid "Title describing the address entry" msgstr "" -#: company/models.py:405 +#: company/models.py:406 msgid "Primary address" msgstr "" -#: company/models.py:406 +#: company/models.py:407 msgid "Set as primary address" msgstr "" -#: company/models.py:411 +#: company/models.py:412 msgid "Line 1" msgstr "" -#: company/models.py:412 +#: company/models.py:413 msgid "Address line 1" msgstr "" -#: company/models.py:418 +#: company/models.py:419 msgid "Line 2" msgstr "" -#: company/models.py:419 +#: company/models.py:420 msgid "Address line 2" msgstr "" -#: company/models.py:425 company/models.py:426 +#: company/models.py:426 company/models.py:427 msgid "Postal code" msgstr "" -#: company/models.py:432 +#: company/models.py:433 msgid "City/Region" msgstr "" -#: company/models.py:433 +#: company/models.py:434 msgid "Postal code city/region" msgstr "" -#: company/models.py:439 +#: company/models.py:440 msgid "State/Province" msgstr "" -#: company/models.py:440 +#: company/models.py:441 msgid "State or province" msgstr "" -#: company/models.py:446 +#: company/models.py:447 msgid "Country" msgstr "" -#: company/models.py:447 +#: company/models.py:448 msgid "Address country" msgstr "" -#: company/models.py:453 +#: company/models.py:454 msgid "Courier shipping notes" msgstr "" -#: company/models.py:454 +#: company/models.py:455 msgid "Notes for shipping courier" msgstr "" -#: company/models.py:460 +#: company/models.py:461 msgid "Internal shipping notes" msgstr "" -#: company/models.py:461 +#: company/models.py:462 msgid "Shipping notes for internal use" msgstr "" -#: company/models.py:468 +#: company/models.py:469 msgid "Link to address information (external)" msgstr "" -#: company/models.py:492 company/models.py:609 company/models.py:832 -#: company/serializers.py:471 stock/api.py:561 +#: company/models.py:494 company/models.py:786 company/serializers.py:516 +#: stock/api.py:561 msgid "Manufacturer Part" msgstr "" -#: company/models.py:509 company/models.py:800 stock/models.py:1025 +#: company/models.py:511 company/models.py:754 stock/models.py:1025 #: stock/serializers.py:407 msgid "Base Part" msgstr "" -#: company/models.py:511 company/models.py:802 +#: company/models.py:513 company/models.py:756 msgid "Select part" msgstr "" -#: company/models.py:521 +#: company/models.py:523 msgid "Select manufacturer" msgstr "" -#: company/models.py:527 company/serializers.py:479 order/serializers.py:734 -#: part/serializers.py:576 +#: company/models.py:529 company/serializers.py:524 order/serializers.py:745 +#: part/serializers.py:487 msgid "MPN" msgstr "" -#: company/models.py:528 stock/serializers.py:572 +#: company/models.py:530 stock/serializers.py:572 msgid "Manufacturer Part Number" msgstr "" -#: company/models.py:535 +#: company/models.py:537 msgid "URL for external manufacturer part link" msgstr "" -#: company/models.py:544 +#: company/models.py:546 msgid "Manufacturer part description" msgstr "" -#: company/models.py:597 -msgid "Manufacturer Part Parameter" -msgstr "" - -#: company/models.py:616 -msgid "Parameter name" -msgstr "" - -#: company/models.py:623 -msgid "Parameter value" -msgstr "" - -#: company/models.py:630 part/models.py:1195 part/models.py:3857 -msgid "Units" -msgstr "" - -#: company/models.py:631 -msgid "Parameter units" -msgstr "" - -#: company/models.py:740 +#: company/models.py:694 msgid "Pack units must be compatible with the base part units" msgstr "" -#: company/models.py:747 +#: company/models.py:701 msgid "Pack units must be greater than zero" msgstr "" -#: company/models.py:761 +#: company/models.py:715 msgid "Linked manufacturer part must reference the same base part" msgstr "" -#: company/models.py:810 company/serializers.py:449 company/serializers.py:467 -#: order/models.py:639 part/serializers.py:550 +#: company/models.py:764 company/serializers.py:494 company/serializers.py:512 +#: order/models.py:640 part/serializers.py:461 #: plugin/builtin/suppliers/digikey.py:26 plugin/builtin/suppliers/lcsc.py:27 #: plugin/builtin/suppliers/mouser.py:25 plugin/builtin/suppliers/tme.py:27 #: stock/api.py:567 templates/email/overdue_purchase_order.html:16 msgid "Supplier" msgstr "" -#: company/models.py:811 +#: company/models.py:765 msgid "Select supplier" msgstr "" -#: company/models.py:817 part/serializers.py:561 +#: company/models.py:771 part/serializers.py:472 msgid "Supplier stock keeping unit" msgstr "" -#: company/models.py:823 +#: company/models.py:777 msgid "Is this supplier part active?" msgstr "" -#: company/models.py:833 +#: company/models.py:787 msgid "Select manufacturer part" msgstr "" -#: company/models.py:840 +#: company/models.py:794 msgid "URL for external supplier part link" msgstr "" -#: company/models.py:849 +#: company/models.py:803 msgid "Supplier part description" msgstr "" -#: company/models.py:856 order/serializers.py:883 order/serializers.py:2047 -#: part/models.py:4070 part/models.py:4450 part/models.py:4819 -#: report/templates/report/inventree_bill_of_materials_report.html:140 -#: report/templates/report/inventree_purchase_order_report.html:39 -#: report/templates/report/inventree_return_order_report.html:27 -#: report/templates/report/inventree_sales_order_report.html:32 -#: report/templates/report/inventree_stock_location_report.html:105 -#: stock/serializers.py:813 -msgid "Note" -msgstr "" - -#: company/models.py:865 part/models.py:2250 +#: company/models.py:819 part/models.py:2338 msgid "base cost" msgstr "" -#: company/models.py:866 part/models.py:2251 +#: company/models.py:820 part/models.py:2339 msgid "Minimum charge (e.g. stocking fee)" msgstr "" -#: company/models.py:873 order/serializers.py:875 stock/models.py:1056 +#: company/models.py:827 order/serializers.py:886 stock/models.py:1056 #: stock/serializers.py:1606 msgid "Packaging" msgstr "" -#: company/models.py:874 +#: company/models.py:828 msgid "Part packaging" msgstr "" -#: company/models.py:879 +#: company/models.py:833 msgid "Pack Quantity" msgstr "" -#: company/models.py:881 +#: company/models.py:835 msgid "Total quantity supplied in a single pack. Leave empty for single items." msgstr "" -#: company/models.py:900 part/models.py:2257 +#: company/models.py:854 part/models.py:2345 msgid "multiple" msgstr "" -#: company/models.py:901 +#: company/models.py:855 msgid "Order multiple" msgstr "" -#: company/models.py:913 +#: company/models.py:867 msgid "Quantity available from supplier" msgstr "" -#: company/models.py:919 +#: company/models.py:873 msgid "Availability Updated" msgstr "" -#: company/models.py:920 +#: company/models.py:874 msgid "Date of last update of availability data" msgstr "" -#: company/models.py:1048 +#: company/models.py:1002 msgid "Supplier Price Break" msgstr "" -#: company/serializers.py:181 +#: company/serializers.py:184 +msgid "Primary Address" +msgstr "" + +#: company/serializers.py:186 msgid "Return the string representation for the primary address. This property exists for backwards compatibility." msgstr "" -#: company/serializers.py:212 +#: company/serializers.py:218 msgid "Default currency used for this supplier" msgstr "" -#: company/serializers.py:248 +#: company/serializers.py:260 msgid "Company Name" msgstr "" -#: company/serializers.py:433 part/serializers.py:955 stock/serializers.py:428 +#: company/serializers.py:460 part/serializers.py:840 stock/serializers.py:428 msgid "In Stock" msgstr "" +#: company/serializers.py:477 +msgid "Price Breaks" +msgstr "" + #: data_exporter/mixins.py:325 data_exporter/mixins.py:403 msgid "Error occurred during data export" msgstr "" @@ -4290,7 +4418,7 @@ msgstr "" msgid "Errors" msgstr "" -#: importer/models.py:550 part/serializers.py:1268 +#: importer/models.py:550 part/serializers.py:1133 msgid "Valid" msgstr "" @@ -4402,7 +4530,7 @@ msgstr "" msgid "Connected" msgstr "" -#: machine/machine_types/label_printer.py:232 order/api.py:1795 +#: machine/machine_types/label_printer.py:232 order/api.py:1800 msgid "Unknown" msgstr "" @@ -4530,105 +4658,105 @@ msgstr "" msgid "Maximum value for progress type, required if type=progress" msgstr "" -#: order/api.py:125 +#: order/api.py:130 msgid "Order Reference" msgstr "" -#: order/api.py:153 order/api.py:1207 +#: order/api.py:158 order/api.py:1212 msgid "Outstanding" msgstr "" -#: order/api.py:169 +#: order/api.py:174 msgid "Has Project Code" msgstr "" -#: order/api.py:183 order/models.py:488 +#: order/api.py:188 order/models.py:489 msgid "Created By" msgstr "" -#: order/api.py:187 +#: order/api.py:192 msgid "Created Before" msgstr "" -#: order/api.py:191 +#: order/api.py:196 msgid "Created After" msgstr "" -#: order/api.py:195 +#: order/api.py:200 msgid "Has Start Date" msgstr "" -#: order/api.py:203 +#: order/api.py:208 msgid "Start Date Before" msgstr "" -#: order/api.py:207 +#: order/api.py:212 msgid "Start Date After" msgstr "" -#: order/api.py:211 +#: order/api.py:216 msgid "Has Target Date" msgstr "" -#: order/api.py:219 +#: order/api.py:224 msgid "Target Date Before" msgstr "" -#: order/api.py:223 +#: order/api.py:228 msgid "Target Date After" msgstr "" -#: order/api.py:274 +#: order/api.py:279 msgid "Has Pricing" msgstr "" -#: order/api.py:327 order/api.py:812 order/api.py:1490 +#: order/api.py:332 order/api.py:818 order/api.py:1495 msgid "Completed Before" msgstr "" -#: order/api.py:331 order/api.py:816 order/api.py:1494 +#: order/api.py:336 order/api.py:822 order/api.py:1499 msgid "Completed After" msgstr "" -#: order/api.py:337 order/api.py:341 +#: order/api.py:342 order/api.py:346 msgid "External Build Order" msgstr "" -#: order/api.py:526 order/api.py:914 order/api.py:1170 order/models.py:1922 -#: order/models.py:2049 order/models.py:2099 order/models.py:2279 -#: order/models.py:2477 order/models.py:2999 order/models.py:3065 +#: order/api.py:532 order/api.py:919 order/api.py:1175 order/models.py:1923 +#: order/models.py:2050 order/models.py:2100 order/models.py:2280 +#: order/models.py:2478 order/models.py:3000 order/models.py:3066 msgid "Order" msgstr "" -#: order/api.py:530 order/api.py:982 +#: order/api.py:536 order/api.py:987 msgid "Order Complete" msgstr "" -#: order/api.py:562 order/api.py:566 order/serializers.py:745 +#: order/api.py:568 order/api.py:572 order/serializers.py:756 msgid "Internal Part" msgstr "" -#: order/api.py:584 +#: order/api.py:590 msgid "Order Pending" msgstr "" -#: order/api.py:967 +#: order/api.py:972 msgid "Completed" msgstr "" -#: order/api.py:1223 +#: order/api.py:1228 msgid "Has Shipment" msgstr "" -#: order/api.py:1789 order/models.py:552 order/models.py:1923 -#: order/models.py:2050 +#: order/api.py:1794 order/models.py:553 order/models.py:1924 +#: order/models.py:2051 #: report/templates/report/inventree_purchase_order_report.html:14 #: stock/serializers.py:129 templates/email/overdue_purchase_order.html:15 msgid "Purchase Order" msgstr "" -#: order/api.py:1791 order/models.py:1251 order/models.py:2100 -#: order/models.py:2280 order/models.py:2478 +#: order/api.py:1796 order/models.py:1252 order/models.py:2101 +#: order/models.py:2281 order/models.py:2479 #: report/templates/report/inventree_build_order_report.html:135 #: report/templates/report/inventree_sales_order_report.html:14 #: report/templates/report/inventree_sales_order_shipment_report.html:15 @@ -4636,8 +4764,8 @@ msgstr "" msgid "Sales Order" msgstr "" -#: order/api.py:1793 order/models.py:2649 order/models.py:3000 -#: order/models.py:3066 +#: order/api.py:1798 order/models.py:2650 order/models.py:3001 +#: order/models.py:3067 #: report/templates/report/inventree_return_order_report.html:13 #: templates/email/overdue_return_order.html:15 msgid "Return Order" @@ -4653,722 +4781,722 @@ msgstr "" msgid "Total price for this order" msgstr "" -#: order/models.py:96 order/serializers.py:77 +#: order/models.py:96 order/serializers.py:78 msgid "Order Currency" msgstr "" -#: order/models.py:99 order/serializers.py:78 +#: order/models.py:99 order/serializers.py:79 msgid "Currency for this order (leave blank to use company default)" msgstr "" -#: order/models.py:324 +#: order/models.py:325 msgid "This order is locked and cannot be modified" msgstr "" -#: order/models.py:376 +#: order/models.py:377 msgid "Contact does not match selected company" msgstr "" -#: order/models.py:383 +#: order/models.py:384 msgid "Start date must be before target date" msgstr "" -#: order/models.py:390 +#: order/models.py:391 msgid "Address does not match selected company" msgstr "" -#: order/models.py:443 +#: order/models.py:444 msgid "Order description (optional)" msgstr "" -#: order/models.py:452 order/models.py:1806 +#: order/models.py:453 order/models.py:1807 msgid "Select project code for this order" msgstr "" -#: order/models.py:458 order/models.py:1787 order/models.py:2344 +#: order/models.py:459 order/models.py:1788 order/models.py:2345 msgid "Link to external page" msgstr "" -#: order/models.py:465 +#: order/models.py:466 msgid "Start date" msgstr "" -#: order/models.py:466 +#: order/models.py:467 msgid "Scheduled start date for this order" msgstr "" -#: order/models.py:472 order/models.py:1794 order/serializers.py:309 +#: order/models.py:473 order/models.py:1795 order/serializers.py:317 #: report/templates/report/inventree_build_order_report.html:125 msgid "Target Date" msgstr "" -#: order/models.py:474 +#: order/models.py:475 msgid "Expected date for order delivery. Order will be overdue after this date." msgstr "" -#: order/models.py:494 +#: order/models.py:495 msgid "Issue Date" msgstr "" -#: order/models.py:495 +#: order/models.py:496 msgid "Date order was issued" msgstr "" -#: order/models.py:503 +#: order/models.py:504 msgid "User or group responsible for this order" msgstr "" -#: order/models.py:514 +#: order/models.py:515 msgid "Point of contact for this order" msgstr "" -#: order/models.py:524 +#: order/models.py:525 msgid "Company address for this order" msgstr "" -#: order/models.py:615 order/models.py:1312 +#: order/models.py:616 order/models.py:1313 msgid "Order reference" msgstr "" -#: order/models.py:624 order/models.py:1336 order/models.py:2737 +#: order/models.py:625 order/models.py:1337 order/models.py:2738 #: stock/serializers.py:559 stock/serializers.py:988 users/models.py:542 msgid "Status" msgstr "" -#: order/models.py:625 +#: order/models.py:626 msgid "Purchase order status" msgstr "" -#: order/models.py:640 +#: order/models.py:641 msgid "Company from which the items are being ordered" msgstr "" -#: order/models.py:651 +#: order/models.py:652 msgid "Supplier Reference" msgstr "" -#: order/models.py:652 +#: order/models.py:653 msgid "Supplier order reference code" msgstr "" -#: order/models.py:661 +#: order/models.py:662 msgid "received by" msgstr "" -#: order/models.py:668 order/models.py:2752 +#: order/models.py:669 order/models.py:2753 msgid "Date order was completed" msgstr "" -#: order/models.py:677 order/models.py:1981 +#: order/models.py:678 order/models.py:1982 msgid "Destination" msgstr "" -#: order/models.py:678 order/models.py:1985 +#: order/models.py:679 order/models.py:1986 msgid "Destination for received items" msgstr "" -#: order/models.py:724 +#: order/models.py:725 msgid "Part supplier must match PO supplier" msgstr "" -#: order/models.py:994 +#: order/models.py:995 msgid "Line item does not match purchase order" msgstr "" -#: order/models.py:997 +#: order/models.py:998 msgid "Line item is missing a linked part" msgstr "" -#: order/models.py:1011 +#: order/models.py:1012 msgid "Quantity must be a positive number" msgstr "" -#: order/models.py:1323 order/models.py:2724 stock/models.py:1078 +#: order/models.py:1324 order/models.py:2725 stock/models.py:1078 #: stock/models.py:1079 stock/serializers.py:1322 #: templates/email/overdue_return_order.html:16 #: templates/email/overdue_sales_order.html:16 msgid "Customer" msgstr "" -#: order/models.py:1324 +#: order/models.py:1325 msgid "Company to which the items are being sold" msgstr "" -#: order/models.py:1337 +#: order/models.py:1338 msgid "Sales order status" msgstr "" -#: order/models.py:1348 order/models.py:2744 +#: order/models.py:1349 order/models.py:2745 msgid "Customer Reference " msgstr "" -#: order/models.py:1349 order/models.py:2745 +#: order/models.py:1350 order/models.py:2746 msgid "Customer order reference code" msgstr "" -#: order/models.py:1353 order/models.py:2296 +#: order/models.py:1354 order/models.py:2297 msgid "Shipment Date" msgstr "" -#: order/models.py:1362 +#: order/models.py:1363 msgid "shipped by" msgstr "" -#: order/models.py:1413 +#: order/models.py:1414 msgid "Order is already complete" msgstr "" -#: order/models.py:1416 +#: order/models.py:1417 msgid "Order is already cancelled" msgstr "" -#: order/models.py:1420 +#: order/models.py:1421 msgid "Only an open order can be marked as complete" msgstr "" -#: order/models.py:1424 +#: order/models.py:1425 msgid "Order cannot be completed as there are incomplete shipments" msgstr "" -#: order/models.py:1429 +#: order/models.py:1430 msgid "Order cannot be completed as there are incomplete allocations" msgstr "" -#: order/models.py:1438 +#: order/models.py:1439 msgid "Order cannot be completed as there are incomplete line items" msgstr "" -#: order/models.py:1733 order/models.py:1749 +#: order/models.py:1734 order/models.py:1750 msgid "The order is locked and cannot be modified" msgstr "" -#: order/models.py:1757 +#: order/models.py:1758 msgid "Item quantity" msgstr "" -#: order/models.py:1774 +#: order/models.py:1775 msgid "Line item reference" msgstr "" -#: order/models.py:1781 +#: order/models.py:1782 msgid "Line item notes" msgstr "" -#: order/models.py:1796 +#: order/models.py:1797 msgid "Target date for this line item (leave blank to use the target date from the order)" msgstr "" -#: order/models.py:1826 +#: order/models.py:1827 msgid "Line item description (optional)" msgstr "" -#: order/models.py:1833 +#: order/models.py:1834 msgid "Additional context for this line" msgstr "" -#: order/models.py:1843 +#: order/models.py:1844 msgid "Unit price" msgstr "" -#: order/models.py:1862 +#: order/models.py:1863 msgid "Purchase Order Line Item" msgstr "" -#: order/models.py:1889 +#: order/models.py:1890 msgid "Supplier part must match supplier" msgstr "" -#: order/models.py:1894 +#: order/models.py:1895 msgid "Build order must be marked as external" msgstr "" -#: order/models.py:1901 +#: order/models.py:1902 msgid "Build orders can only be linked to assembly parts" msgstr "" -#: order/models.py:1907 +#: order/models.py:1908 msgid "Build order part must match line item part" msgstr "" -#: order/models.py:1942 +#: order/models.py:1943 msgid "Supplier part" msgstr "" -#: order/models.py:1949 +#: order/models.py:1950 msgid "Received" msgstr "" -#: order/models.py:1950 +#: order/models.py:1951 msgid "Number of items received" msgstr "" -#: order/models.py:1958 stock/models.py:1201 stock/serializers.py:637 +#: order/models.py:1959 stock/models.py:1201 stock/serializers.py:637 msgid "Purchase Price" msgstr "" -#: order/models.py:1959 +#: order/models.py:1960 msgid "Unit purchase price" msgstr "" -#: order/models.py:1975 +#: order/models.py:1976 msgid "External Build Order to be fulfilled by this line item" msgstr "" -#: order/models.py:2038 +#: order/models.py:2039 msgid "Purchase Order Extra Line" msgstr "" -#: order/models.py:2067 +#: order/models.py:2068 msgid "Sales Order Line Item" msgstr "" -#: order/models.py:2092 +#: order/models.py:2093 msgid "Only salable parts can be assigned to a sales order" msgstr "" -#: order/models.py:2118 +#: order/models.py:2119 msgid "Sale Price" msgstr "" -#: order/models.py:2119 +#: order/models.py:2120 msgid "Unit sale price" msgstr "" -#: order/models.py:2128 order/status_codes.py:50 +#: order/models.py:2129 order/status_codes.py:50 msgid "Shipped" msgstr "" -#: order/models.py:2129 +#: order/models.py:2130 msgid "Shipped quantity" msgstr "" -#: order/models.py:2240 +#: order/models.py:2241 msgid "Sales Order Shipment" msgstr "" -#: order/models.py:2253 +#: order/models.py:2254 msgid "Shipment address must match the customer" msgstr "" -#: order/models.py:2289 +#: order/models.py:2290 msgid "Shipping address for this shipment" msgstr "" -#: order/models.py:2297 +#: order/models.py:2298 msgid "Date of shipment" msgstr "" -#: order/models.py:2303 +#: order/models.py:2304 msgid "Delivery Date" msgstr "" -#: order/models.py:2304 +#: order/models.py:2305 msgid "Date of delivery of shipment" msgstr "" -#: order/models.py:2312 +#: order/models.py:2313 msgid "Checked By" msgstr "" -#: order/models.py:2313 +#: order/models.py:2314 msgid "User who checked this shipment" msgstr "" -#: order/models.py:2320 order/models.py:2574 order/serializers.py:1711 -#: order/serializers.py:1835 +#: order/models.py:2321 order/models.py:2575 order/serializers.py:1725 +#: order/serializers.py:1849 #: report/templates/report/inventree_sales_order_shipment_report.html:14 msgid "Shipment" msgstr "" -#: order/models.py:2321 +#: order/models.py:2322 msgid "Shipment number" msgstr "" -#: order/models.py:2329 +#: order/models.py:2330 msgid "Tracking Number" msgstr "" -#: order/models.py:2330 +#: order/models.py:2331 msgid "Shipment tracking information" msgstr "" -#: order/models.py:2337 +#: order/models.py:2338 msgid "Invoice Number" msgstr "" -#: order/models.py:2338 +#: order/models.py:2339 msgid "Reference number for associated invoice" msgstr "" -#: order/models.py:2377 +#: order/models.py:2378 msgid "Shipment has already been sent" msgstr "" -#: order/models.py:2380 +#: order/models.py:2381 msgid "Shipment has no allocated stock items" msgstr "" -#: order/models.py:2387 +#: order/models.py:2388 msgid "Shipment must be checked before it can be completed" msgstr "" -#: order/models.py:2466 +#: order/models.py:2467 msgid "Sales Order Extra Line" msgstr "" -#: order/models.py:2495 +#: order/models.py:2496 msgid "Sales Order Allocation" msgstr "" -#: order/models.py:2518 order/models.py:2520 +#: order/models.py:2519 order/models.py:2521 msgid "Stock item has not been assigned" msgstr "" -#: order/models.py:2527 +#: order/models.py:2528 msgid "Cannot allocate stock item to a line with a different part" msgstr "" -#: order/models.py:2530 +#: order/models.py:2531 msgid "Cannot allocate stock to a line without a part" msgstr "" -#: order/models.py:2533 +#: order/models.py:2534 msgid "Allocation quantity cannot exceed stock quantity" msgstr "" -#: order/models.py:2552 order/serializers.py:1581 +#: order/models.py:2553 order/serializers.py:1595 msgid "Quantity must be 1 for serialized stock item" msgstr "" -#: order/models.py:2555 +#: order/models.py:2556 msgid "Sales order does not match shipment" msgstr "" -#: order/models.py:2556 plugin/base/barcodes/api.py:642 +#: order/models.py:2557 plugin/base/barcodes/api.py:642 msgid "Shipment does not match sales order" msgstr "" -#: order/models.py:2564 +#: order/models.py:2565 msgid "Line" msgstr "" -#: order/models.py:2575 +#: order/models.py:2576 msgid "Sales order shipment reference" msgstr "" -#: order/models.py:2588 order/models.py:3007 +#: order/models.py:2589 order/models.py:3008 msgid "Item" msgstr "" -#: order/models.py:2589 +#: order/models.py:2590 msgid "Select stock item to allocate" msgstr "" -#: order/models.py:2598 +#: order/models.py:2599 msgid "Enter stock allocation quantity" msgstr "" -#: order/models.py:2713 +#: order/models.py:2714 msgid "Return Order reference" msgstr "" -#: order/models.py:2725 +#: order/models.py:2726 msgid "Company from which items are being returned" msgstr "" -#: order/models.py:2738 +#: order/models.py:2739 msgid "Return order status" msgstr "" -#: order/models.py:2965 +#: order/models.py:2966 msgid "Return Order Line Item" msgstr "" -#: order/models.py:2978 +#: order/models.py:2979 msgid "Stock item must be specified" msgstr "" -#: order/models.py:2982 +#: order/models.py:2983 msgid "Return quantity exceeds stock quantity" msgstr "" -#: order/models.py:2987 +#: order/models.py:2988 msgid "Return quantity must be greater than zero" msgstr "" -#: order/models.py:2992 +#: order/models.py:2993 msgid "Invalid quantity for serialized stock item" msgstr "" -#: order/models.py:3008 +#: order/models.py:3009 msgid "Select item to return from customer" msgstr "" -#: order/models.py:3023 +#: order/models.py:3024 msgid "Received Date" msgstr "" -#: order/models.py:3024 +#: order/models.py:3025 msgid "The date this this return item was received" msgstr "" -#: order/models.py:3036 +#: order/models.py:3037 msgid "Outcome" msgstr "" -#: order/models.py:3037 +#: order/models.py:3038 msgid "Outcome for this line item" msgstr "" -#: order/models.py:3044 +#: order/models.py:3045 msgid "Cost associated with return or repair for this line item" msgstr "" -#: order/models.py:3054 +#: order/models.py:3055 msgid "Return Order Extra Line" msgstr "" -#: order/serializers.py:91 +#: order/serializers.py:92 msgid "Order ID" msgstr "" -#: order/serializers.py:91 +#: order/serializers.py:92 msgid "ID of the order to duplicate" msgstr "" -#: order/serializers.py:97 +#: order/serializers.py:98 msgid "Copy Lines" msgstr "" -#: order/serializers.py:98 +#: order/serializers.py:99 msgid "Copy line items from the original order" msgstr "" -#: order/serializers.py:104 +#: order/serializers.py:105 msgid "Copy Extra Lines" msgstr "" -#: order/serializers.py:105 +#: order/serializers.py:106 msgid "Copy extra line items from the original order" msgstr "" -#: order/serializers.py:120 +#: order/serializers.py:121 #: report/templates/report/inventree_purchase_order_report.html:29 #: report/templates/report/inventree_return_order_report.html:19 #: report/templates/report/inventree_sales_order_report.html:22 msgid "Line Items" msgstr "" -#: order/serializers.py:125 +#: order/serializers.py:126 msgid "Completed Lines" msgstr "" -#: order/serializers.py:192 +#: order/serializers.py:199 msgid "Duplicate Order" msgstr "" -#: order/serializers.py:193 +#: order/serializers.py:200 msgid "Specify options for duplicating this order" msgstr "" -#: order/serializers.py:270 +#: order/serializers.py:278 msgid "Invalid order ID" msgstr "" -#: order/serializers.py:466 +#: order/serializers.py:477 msgid "Supplier Name" msgstr "" -#: order/serializers.py:510 +#: order/serializers.py:521 msgid "Order cannot be cancelled" msgstr "" -#: order/serializers.py:525 order/serializers.py:1602 +#: order/serializers.py:536 order/serializers.py:1616 msgid "Allow order to be closed with incomplete line items" msgstr "" -#: order/serializers.py:535 order/serializers.py:1612 +#: order/serializers.py:546 order/serializers.py:1626 msgid "Order has incomplete line items" msgstr "" -#: order/serializers.py:665 +#: order/serializers.py:676 msgid "Order is not open" msgstr "" -#: order/serializers.py:692 +#: order/serializers.py:703 msgid "Auto Pricing" msgstr "" -#: order/serializers.py:694 +#: order/serializers.py:705 msgid "Automatically calculate purchase price based on supplier part data" msgstr "" -#: order/serializers.py:704 +#: order/serializers.py:715 msgid "Purchase price currency" msgstr "" -#: order/serializers.py:718 +#: order/serializers.py:729 msgid "Merge Items" msgstr "" -#: order/serializers.py:720 +#: order/serializers.py:731 msgid "Merge items with the same part, destination and target date into one line item" msgstr "" -#: order/serializers.py:727 part/serializers.py:560 +#: order/serializers.py:738 part/serializers.py:471 msgid "SKU" msgstr "" -#: order/serializers.py:741 part/models.py:1089 part/serializers.py:372 +#: order/serializers.py:752 part/models.py:1177 part/serializers.py:337 msgid "Internal Part Number" msgstr "" -#: order/serializers.py:749 +#: order/serializers.py:760 msgid "Internal Part Name" msgstr "" -#: order/serializers.py:765 +#: order/serializers.py:776 msgid "Supplier part must be specified" msgstr "" -#: order/serializers.py:768 +#: order/serializers.py:779 msgid "Purchase order must be specified" msgstr "" -#: order/serializers.py:776 +#: order/serializers.py:787 msgid "Supplier must match purchase order" msgstr "" -#: order/serializers.py:777 +#: order/serializers.py:788 msgid "Purchase order must match supplier" msgstr "" -#: order/serializers.py:825 order/serializers.py:1682 +#: order/serializers.py:836 order/serializers.py:1696 msgid "Line Item" msgstr "" -#: order/serializers.py:834 order/serializers.py:974 order/serializers.py:2043 +#: order/serializers.py:845 order/serializers.py:985 order/serializers.py:2060 msgid "Select destination location for received items" msgstr "" -#: order/serializers.py:850 +#: order/serializers.py:861 msgid "Enter batch code for incoming stock items" msgstr "" -#: order/serializers.py:857 stock/models.py:1160 +#: order/serializers.py:868 stock/models.py:1160 #: templates/email/stale_stock_notification.html:22 users/models.py:137 msgid "Expiry Date" msgstr "" -#: order/serializers.py:858 +#: order/serializers.py:869 msgid "Enter expiry date for incoming stock items" msgstr "" -#: order/serializers.py:866 +#: order/serializers.py:877 msgid "Enter serial numbers for incoming stock items" msgstr "" -#: order/serializers.py:876 +#: order/serializers.py:887 msgid "Override packaging information for incoming stock items" msgstr "" -#: order/serializers.py:884 order/serializers.py:2048 +#: order/serializers.py:895 order/serializers.py:2065 msgid "Additional note for incoming stock items" msgstr "" -#: order/serializers.py:891 +#: order/serializers.py:902 msgid "Barcode" msgstr "" -#: order/serializers.py:892 +#: order/serializers.py:903 msgid "Scanned barcode" msgstr "" -#: order/serializers.py:908 +#: order/serializers.py:919 msgid "Barcode is already in use" msgstr "" -#: order/serializers.py:991 order/serializers.py:2067 +#: order/serializers.py:1002 order/serializers.py:2084 msgid "Line items must be provided" msgstr "" -#: order/serializers.py:1010 +#: order/serializers.py:1021 msgid "Destination location must be specified" msgstr "" -#: order/serializers.py:1017 +#: order/serializers.py:1028 msgid "Supplied barcode values must be unique" msgstr "" -#: order/serializers.py:1121 +#: order/serializers.py:1135 msgid "Shipments" msgstr "" -#: order/serializers.py:1125 +#: order/serializers.py:1139 msgid "Completed Shipments" msgstr "" -#: order/serializers.py:1293 +#: order/serializers.py:1307 msgid "Sale price currency" msgstr "" -#: order/serializers.py:1339 +#: order/serializers.py:1353 msgid "Allocated Items" msgstr "" -#: order/serializers.py:1484 +#: order/serializers.py:1498 msgid "No shipment details provided" msgstr "" -#: order/serializers.py:1545 order/serializers.py:1691 +#: order/serializers.py:1559 order/serializers.py:1705 msgid "Line item is not associated with this order" msgstr "" -#: order/serializers.py:1564 +#: order/serializers.py:1578 msgid "Quantity must be positive" msgstr "" -#: order/serializers.py:1701 +#: order/serializers.py:1715 msgid "Enter serial numbers to allocate" msgstr "" -#: order/serializers.py:1723 order/serializers.py:1843 +#: order/serializers.py:1737 order/serializers.py:1857 msgid "Shipment has already been shipped" msgstr "" -#: order/serializers.py:1726 order/serializers.py:1846 +#: order/serializers.py:1740 order/serializers.py:1860 msgid "Shipment is not associated with this order" msgstr "" -#: order/serializers.py:1781 +#: order/serializers.py:1795 msgid "No match found for the following serial numbers" msgstr "" -#: order/serializers.py:1788 +#: order/serializers.py:1802 msgid "The following serial numbers are unavailable" msgstr "" -#: order/serializers.py:2009 +#: order/serializers.py:2026 msgid "Return order line item" msgstr "" -#: order/serializers.py:2019 +#: order/serializers.py:2036 msgid "Line item does not match return order" msgstr "" -#: order/serializers.py:2022 +#: order/serializers.py:2039 msgid "Line item has already been received" msgstr "" -#: order/serializers.py:2059 +#: order/serializers.py:2076 msgid "Items can only be received against orders which are in progress" msgstr "" -#: order/serializers.py:2124 +#: order/serializers.py:2141 msgid "Quantity to return" msgstr "" -#: order/serializers.py:2140 +#: order/serializers.py:2157 msgid "Line price currency" msgstr "" @@ -5431,1190 +5559,1109 @@ msgstr "" msgid "Return order {ro} is now overdue" msgstr "" -#: part/api.py:108 +#: part/api.py:103 msgid "Starred" msgstr "" -#: part/api.py:110 +#: part/api.py:105 msgid "Filter by starred categories" msgstr "" -#: part/api.py:127 stock/api.py:288 +#: part/api.py:122 stock/api.py:288 msgid "Depth" msgstr "" -#: part/api.py:127 +#: part/api.py:122 msgid "Filter by category depth" msgstr "" -#: part/api.py:145 stock/api.py:306 +#: part/api.py:140 stock/api.py:306 msgid "Top Level" msgstr "" -#: part/api.py:147 +#: part/api.py:142 msgid "Filter by top-level categories" msgstr "" -#: part/api.py:160 stock/api.py:321 +#: part/api.py:155 stock/api.py:321 msgid "Cascade" msgstr "" -#: part/api.py:162 +#: part/api.py:157 msgid "Include sub-categories in filtered results" msgstr "" -#: part/api.py:182 +#: part/api.py:177 msgid "Parent" msgstr "" -#: part/api.py:184 +#: part/api.py:179 msgid "Filter by parent category" msgstr "" -#: part/api.py:219 +#: part/api.py:214 msgid "Exclude sub-categories under the specified category" msgstr "" -#: part/api.py:445 +#: part/api.py:440 msgid "Has Results" msgstr "" -#: part/api.py:666 +#: part/api.py:661 msgid "Is Variant" msgstr "" -#: part/api.py:674 +#: part/api.py:669 msgid "Is Revision" msgstr "" -#: part/api.py:684 +#: part/api.py:679 msgid "Has Revisions" msgstr "" -#: part/api.py:865 +#: part/api.py:860 msgid "BOM Valid" msgstr "" -#: part/api.py:974 +#: part/api.py:969 msgid "Cascade Categories" msgstr "" -#: part/api.py:975 +#: part/api.py:970 msgid "If true, include items in child categories of the given category" msgstr "" -#: part/api.py:981 +#: part/api.py:976 msgid "Filter by numeric category ID or the literal 'null'" msgstr "" -#: part/api.py:1533 +#: part/api.py:1258 msgid "Assembly part is testable" msgstr "" -#: part/api.py:1542 +#: part/api.py:1267 msgid "Component part is testable" msgstr "" -#: part/api.py:1611 +#: part/api.py:1336 msgid "Uses" msgstr "" -#: part/models.py:96 part/models.py:4163 +#: part/models.py:93 part/models.py:436 #: templates/email/part_event_notification.html:16 msgid "Part Category" msgstr "" -#: part/models.py:97 users/ruleset.py:27 +#: part/models.py:94 users/ruleset.py:27 msgid "Part Categories" msgstr "" -#: part/models.py:115 part/models.py:1125 +#: part/models.py:112 part/models.py:1213 msgid "Default Location" msgstr "" -#: part/models.py:116 +#: part/models.py:113 msgid "Default location for parts in this category" msgstr "" -#: part/models.py:121 stock/models.py:216 +#: part/models.py:118 stock/models.py:216 msgid "Structural" msgstr "" -#: part/models.py:123 +#: part/models.py:120 msgid "Parts may not be directly assigned to a structural category, but may be assigned to child categories." msgstr "" -#: part/models.py:132 +#: part/models.py:129 msgid "Default keywords" msgstr "" -#: part/models.py:133 +#: part/models.py:130 msgid "Default keywords for parts in this category" msgstr "" -#: part/models.py:140 stock/models.py:97 stock/models.py:198 +#: part/models.py:137 stock/models.py:97 stock/models.py:198 msgid "Icon" msgstr "" -#: part/models.py:141 part/serializers.py:148 part/serializers.py:167 +#: part/models.py:138 part/serializers.py:147 part/serializers.py:166 #: stock/models.py:199 msgid "Icon (optional)" msgstr "" -#: part/models.py:185 +#: part/models.py:182 msgid "You cannot make this part category structural because some parts are already assigned to it!" msgstr "" -#: part/models.py:473 part/serializers.py:119 part/serializers.py:310 -#: users/ruleset.py:28 +#: part/models.py:392 +msgid "Part Category Parameter Template" +msgstr "" + +#: part/models.py:448 +msgid "Default Value" +msgstr "" + +#: part/models.py:449 +msgid "Default Parameter Value" +msgstr "" + +#: part/models.py:551 part/serializers.py:118 users/ruleset.py:28 msgid "Parts" msgstr "" -#: part/models.py:525 +#: part/models.py:597 +msgid "Cannot delete parameters of a locked part" +msgstr "" + +#: part/models.py:602 +msgid "Cannot modify parameters of a locked part" +msgstr "" + +#: part/models.py:613 msgid "Cannot delete this part as it is locked" msgstr "" -#: part/models.py:528 +#: part/models.py:616 msgid "Cannot delete this part as it is still active" msgstr "" -#: part/models.py:533 +#: part/models.py:621 msgid "Cannot delete this part as it is used in an assembly" msgstr "" -#: part/models.py:616 part/models.py:623 +#: part/models.py:704 part/models.py:711 #, python-brace-format msgid "Part '{self}' cannot be used in BOM for '{parent}' (recursive)" msgstr "" -#: part/models.py:635 +#: part/models.py:723 #, python-brace-format msgid "Part '{parent}' is used in BOM for '{self}' (recursive)" msgstr "" -#: part/models.py:702 +#: part/models.py:790 #, python-brace-format msgid "IPN must match regex pattern {pattern}" msgstr "" -#: part/models.py:710 +#: part/models.py:798 msgid "Part cannot be a revision of itself" msgstr "" -#: part/models.py:717 +#: part/models.py:805 msgid "Cannot make a revision of a part which is already a revision" msgstr "" -#: part/models.py:724 +#: part/models.py:812 msgid "Revision code must be specified" msgstr "" -#: part/models.py:731 +#: part/models.py:819 msgid "Revisions are only allowed for assembly parts" msgstr "" -#: part/models.py:738 +#: part/models.py:826 msgid "Cannot make a revision of a template part" msgstr "" -#: part/models.py:744 +#: part/models.py:832 msgid "Parent part must point to the same template" msgstr "" -#: part/models.py:841 +#: part/models.py:929 msgid "Stock item with this serial number already exists" msgstr "" -#: part/models.py:971 +#: part/models.py:1059 msgid "Duplicate IPN not allowed in part settings" msgstr "" -#: part/models.py:983 +#: part/models.py:1071 msgid "Duplicate part revision already exists." msgstr "" -#: part/models.py:992 +#: part/models.py:1080 msgid "Part with this Name, IPN and Revision already exists." msgstr "" -#: part/models.py:1007 +#: part/models.py:1095 msgid "Parts cannot be assigned to structural part categories!" msgstr "" -#: part/models.py:1039 +#: part/models.py:1127 msgid "Part name" msgstr "" -#: part/models.py:1044 +#: part/models.py:1132 msgid "Is Template" msgstr "" -#: part/models.py:1045 +#: part/models.py:1133 msgid "Is this part a template part?" msgstr "" -#: part/models.py:1055 +#: part/models.py:1143 msgid "Is this part a variant of another part?" msgstr "" -#: part/models.py:1056 +#: part/models.py:1144 msgid "Variant Of" msgstr "" -#: part/models.py:1063 +#: part/models.py:1151 msgid "Part description (optional)" msgstr "" -#: part/models.py:1070 +#: part/models.py:1158 msgid "Keywords" msgstr "" -#: part/models.py:1071 +#: part/models.py:1159 msgid "Part keywords to improve visibility in search results" msgstr "" -#: part/models.py:1081 +#: part/models.py:1169 msgid "Part category" msgstr "" -#: part/models.py:1088 part/serializers.py:929 +#: part/models.py:1176 part/serializers.py:814 #: report/templates/report/inventree_stock_location_report.html:103 msgid "IPN" msgstr "" -#: part/models.py:1096 +#: part/models.py:1184 msgid "Part revision or version number" msgstr "" -#: part/models.py:1097 report/models.py:228 +#: part/models.py:1185 report/models.py:228 msgid "Revision" msgstr "" -#: part/models.py:1106 +#: part/models.py:1194 msgid "Is this part a revision of another part?" msgstr "" -#: part/models.py:1107 +#: part/models.py:1195 msgid "Revision Of" msgstr "" -#: part/models.py:1123 +#: part/models.py:1211 msgid "Where is this item normally stored?" msgstr "" -#: part/models.py:1169 +#: part/models.py:1257 msgid "Default Supplier" msgstr "" -#: part/models.py:1170 +#: part/models.py:1258 msgid "Default supplier part" msgstr "" -#: part/models.py:1177 +#: part/models.py:1265 msgid "Default Expiry" msgstr "" -#: part/models.py:1178 +#: part/models.py:1266 msgid "Expiry time (in days) for stock items of this part" msgstr "" -#: part/models.py:1186 part/serializers.py:1003 +#: part/models.py:1274 part/serializers.py:888 msgid "Minimum Stock" msgstr "" -#: part/models.py:1187 +#: part/models.py:1275 msgid "Minimum allowed stock level" msgstr "" -#: part/models.py:1196 +#: part/models.py:1284 msgid "Units of measure for this part" msgstr "" -#: part/models.py:1203 +#: part/models.py:1291 msgid "Can this part be built from other parts?" msgstr "" -#: part/models.py:1209 +#: part/models.py:1297 msgid "Can this part be used to build other parts?" msgstr "" -#: part/models.py:1215 +#: part/models.py:1303 msgid "Does this part have tracking for unique items?" msgstr "" -#: part/models.py:1221 +#: part/models.py:1309 msgid "Can this part have test results recorded against it?" msgstr "" -#: part/models.py:1227 +#: part/models.py:1315 msgid "Can this part be purchased from external suppliers?" msgstr "" -#: part/models.py:1233 +#: part/models.py:1321 msgid "Can this part be sold to customers?" msgstr "" -#: part/models.py:1237 +#: part/models.py:1325 msgid "Is this part active?" msgstr "" -#: part/models.py:1243 +#: part/models.py:1331 msgid "Locked parts cannot be edited" msgstr "" -#: part/models.py:1249 +#: part/models.py:1337 msgid "Is this a virtual part, such as a software product or license?" msgstr "" -#: part/models.py:1254 +#: part/models.py:1342 msgid "BOM Validated" msgstr "" -#: part/models.py:1255 +#: part/models.py:1343 msgid "Is the BOM for this part valid?" msgstr "" -#: part/models.py:1261 +#: part/models.py:1349 msgid "BOM checksum" msgstr "" -#: part/models.py:1262 +#: part/models.py:1350 msgid "Stored BOM checksum" msgstr "" -#: part/models.py:1270 +#: part/models.py:1358 msgid "BOM checked by" msgstr "" -#: part/models.py:1275 +#: part/models.py:1363 msgid "BOM checked date" msgstr "" -#: part/models.py:1291 +#: part/models.py:1379 msgid "Creation User" msgstr "" -#: part/models.py:1301 +#: part/models.py:1389 msgid "Owner responsible for this part" msgstr "" -#: part/models.py:2258 +#: part/models.py:2346 msgid "Sell multiple" msgstr "" -#: part/models.py:3286 +#: part/models.py:3350 msgid "Currency used to cache pricing calculations" msgstr "" -#: part/models.py:3302 +#: part/models.py:3366 msgid "Minimum BOM Cost" msgstr "" -#: part/models.py:3303 +#: part/models.py:3367 msgid "Minimum cost of component parts" msgstr "" -#: part/models.py:3309 +#: part/models.py:3373 msgid "Maximum BOM Cost" msgstr "" -#: part/models.py:3310 +#: part/models.py:3374 msgid "Maximum cost of component parts" msgstr "" -#: part/models.py:3316 +#: part/models.py:3380 msgid "Minimum Purchase Cost" msgstr "" -#: part/models.py:3317 +#: part/models.py:3381 msgid "Minimum historical purchase cost" msgstr "" -#: part/models.py:3323 +#: part/models.py:3387 msgid "Maximum Purchase Cost" msgstr "" -#: part/models.py:3324 +#: part/models.py:3388 msgid "Maximum historical purchase cost" msgstr "" -#: part/models.py:3330 +#: part/models.py:3394 msgid "Minimum Internal Price" msgstr "" -#: part/models.py:3331 +#: part/models.py:3395 msgid "Minimum cost based on internal price breaks" msgstr "" -#: part/models.py:3337 +#: part/models.py:3401 msgid "Maximum Internal Price" msgstr "" -#: part/models.py:3338 +#: part/models.py:3402 msgid "Maximum cost based on internal price breaks" msgstr "" -#: part/models.py:3344 +#: part/models.py:3408 msgid "Minimum Supplier Price" msgstr "" -#: part/models.py:3345 +#: part/models.py:3409 msgid "Minimum price of part from external suppliers" msgstr "" -#: part/models.py:3351 +#: part/models.py:3415 msgid "Maximum Supplier Price" msgstr "" -#: part/models.py:3352 +#: part/models.py:3416 msgid "Maximum price of part from external suppliers" msgstr "" -#: part/models.py:3358 +#: part/models.py:3422 msgid "Minimum Variant Cost" msgstr "" -#: part/models.py:3359 +#: part/models.py:3423 msgid "Calculated minimum cost of variant parts" msgstr "" -#: part/models.py:3365 +#: part/models.py:3429 msgid "Maximum Variant Cost" msgstr "" -#: part/models.py:3366 +#: part/models.py:3430 msgid "Calculated maximum cost of variant parts" msgstr "" -#: part/models.py:3372 part/models.py:3386 +#: part/models.py:3436 part/models.py:3450 msgid "Minimum Cost" msgstr "" -#: part/models.py:3373 +#: part/models.py:3437 msgid "Override minimum cost" msgstr "" -#: part/models.py:3379 part/models.py:3393 +#: part/models.py:3443 part/models.py:3457 msgid "Maximum Cost" msgstr "" -#: part/models.py:3380 +#: part/models.py:3444 msgid "Override maximum cost" msgstr "" -#: part/models.py:3387 +#: part/models.py:3451 msgid "Calculated overall minimum cost" msgstr "" -#: part/models.py:3394 +#: part/models.py:3458 msgid "Calculated overall maximum cost" msgstr "" -#: part/models.py:3400 +#: part/models.py:3464 msgid "Minimum Sale Price" msgstr "" -#: part/models.py:3401 +#: part/models.py:3465 msgid "Minimum sale price based on price breaks" msgstr "" -#: part/models.py:3407 +#: part/models.py:3471 msgid "Maximum Sale Price" msgstr "" -#: part/models.py:3408 +#: part/models.py:3472 msgid "Maximum sale price based on price breaks" msgstr "" -#: part/models.py:3414 +#: part/models.py:3478 msgid "Minimum Sale Cost" msgstr "" -#: part/models.py:3415 +#: part/models.py:3479 msgid "Minimum historical sale price" msgstr "" -#: part/models.py:3421 +#: part/models.py:3485 msgid "Maximum Sale Cost" msgstr "" -#: part/models.py:3422 +#: part/models.py:3486 msgid "Maximum historical sale price" msgstr "" -#: part/models.py:3440 +#: part/models.py:3504 msgid "Part for stocktake" msgstr "" -#: part/models.py:3445 +#: part/models.py:3509 msgid "Item Count" msgstr "" -#: part/models.py:3446 +#: part/models.py:3510 msgid "Number of individual stock entries at time of stocktake" msgstr "" -#: part/models.py:3454 +#: part/models.py:3518 msgid "Total available stock at time of stocktake" msgstr "" -#: part/models.py:3458 report/templates/report/inventree_test_report.html:106 +#: part/models.py:3522 report/templates/report/inventree_test_report.html:106 msgid "Date" msgstr "" -#: part/models.py:3459 +#: part/models.py:3523 msgid "Date stocktake was performed" msgstr "" -#: part/models.py:3466 +#: part/models.py:3530 msgid "Minimum Stock Cost" msgstr "" -#: part/models.py:3467 +#: part/models.py:3531 msgid "Estimated minimum cost of stock on hand" msgstr "" -#: part/models.py:3473 +#: part/models.py:3537 msgid "Maximum Stock Cost" msgstr "" -#: part/models.py:3474 +#: part/models.py:3538 msgid "Estimated maximum cost of stock on hand" msgstr "" -#: part/models.py:3484 +#: part/models.py:3548 msgid "Part Sale Price Break" msgstr "" -#: part/models.py:3596 +#: part/models.py:3660 msgid "Part Test Template" msgstr "" -#: part/models.py:3622 +#: part/models.py:3686 msgid "Invalid template name - must include at least one alphanumeric character" msgstr "" -#: part/models.py:3643 part/models.py:3816 -msgid "Choices must be unique" -msgstr "" - -#: part/models.py:3654 +#: part/models.py:3718 msgid "Test templates can only be created for testable parts" msgstr "" -#: part/models.py:3668 +#: part/models.py:3732 msgid "Test template with the same key already exists for part" msgstr "" -#: part/models.py:3685 +#: part/models.py:3749 msgid "Test Name" msgstr "" -#: part/models.py:3686 +#: part/models.py:3750 msgid "Enter a name for the test" msgstr "" -#: part/models.py:3692 +#: part/models.py:3756 msgid "Test Key" msgstr "" -#: part/models.py:3693 +#: part/models.py:3757 msgid "Simplified key for the test" msgstr "" -#: part/models.py:3700 +#: part/models.py:3764 msgid "Test Description" msgstr "" -#: part/models.py:3701 +#: part/models.py:3765 msgid "Enter description for this test" msgstr "" -#: part/models.py:3705 report/models.py:287 -msgid "Enabled" -msgstr "" - -#: part/models.py:3705 +#: part/models.py:3769 msgid "Is this test enabled?" msgstr "" -#: part/models.py:3710 +#: part/models.py:3774 msgid "Required" msgstr "" -#: part/models.py:3711 +#: part/models.py:3775 msgid "Is this test required to pass?" msgstr "" -#: part/models.py:3716 +#: part/models.py:3780 msgid "Requires Value" msgstr "" -#: part/models.py:3717 +#: part/models.py:3781 msgid "Does this test require a value when adding a test result?" msgstr "" -#: part/models.py:3722 +#: part/models.py:3786 msgid "Requires Attachment" msgstr "" -#: part/models.py:3724 +#: part/models.py:3788 msgid "Does this test require a file attachment when adding a test result?" msgstr "" -#: part/models.py:3730 part/models.py:3878 -msgid "Choices" -msgstr "" - -#: part/models.py:3731 +#: part/models.py:3795 msgid "Valid choices for this test (comma-separated)" msgstr "" -#: part/models.py:3764 -msgid "Part Parameter Template" -msgstr "" - -#: part/models.py:3791 -msgid "Checkbox parameters cannot have units" -msgstr "" - -#: part/models.py:3796 -msgid "Checkbox parameters cannot have choices" -msgstr "" - -#: part/models.py:3833 -msgid "Parameter template name must be unique" -msgstr "" - -#: part/models.py:3851 -msgid "Parameter Name" -msgstr "" - -#: part/models.py:3858 -msgid "Physical units for this parameter" -msgstr "" - -#: part/models.py:3866 -msgid "Parameter description" -msgstr "" - -#: part/models.py:3872 -msgid "Checkbox" -msgstr "" - -#: part/models.py:3873 -msgid "Is this parameter a checkbox?" -msgstr "" - -#: part/models.py:3879 -msgid "Valid choices for this parameter (comma-separated)" -msgstr "" - -#: part/models.py:3890 -msgid "Selection list for this parameter" -msgstr "" - -#: part/models.py:3932 -msgid "Part Parameter" -msgstr "" - -#: part/models.py:3958 -msgid "Parameter cannot be modified - part is locked" -msgstr "" - -#: part/models.py:3996 -msgid "Invalid choice for parameter value" -msgstr "" - -#: part/models.py:4047 -msgid "Parent Part" -msgstr "" - -#: part/models.py:4055 part/models.py:4170 part/models.py:4171 -msgid "Parameter Template" -msgstr "" - -#: part/models.py:4061 -msgid "Parameter Value" -msgstr "" - -#: part/models.py:4071 stock/serializers.py:718 -msgid "Optional note field" -msgstr "" - -#: part/models.py:4118 -msgid "Part Category Parameter Template" -msgstr "" - -#: part/models.py:4177 -msgid "Default Value" -msgstr "" - -#: part/models.py:4178 -msgid "Default Parameter Value" -msgstr "" - -#: part/models.py:4352 +#: part/models.py:3977 msgid "BOM item cannot be modified - assembly is locked" msgstr "" -#: part/models.py:4359 +#: part/models.py:3984 msgid "BOM item cannot be modified - variant assembly is locked" msgstr "" -#: part/models.py:4369 +#: part/models.py:3994 msgid "Select parent part" msgstr "" -#: part/models.py:4379 +#: part/models.py:4004 msgid "Sub part" msgstr "" -#: part/models.py:4380 +#: part/models.py:4005 msgid "Select part to be used in BOM" msgstr "" -#: part/models.py:4391 +#: part/models.py:4016 msgid "BOM quantity for this BOM item" msgstr "" -#: part/models.py:4397 +#: part/models.py:4022 msgid "This BOM item is optional" msgstr "" -#: part/models.py:4403 +#: part/models.py:4028 msgid "This BOM item is consumable (it is not tracked in build orders)" msgstr "" -#: part/models.py:4411 +#: part/models.py:4036 msgid "Setup Quantity" msgstr "" -#: part/models.py:4412 +#: part/models.py:4037 msgid "Extra required quantity for a build, to account for setup losses" msgstr "" -#: part/models.py:4420 +#: part/models.py:4045 msgid "Attrition" msgstr "" -#: part/models.py:4422 +#: part/models.py:4047 msgid "Estimated attrition for a build, expressed as a percentage (0-100)" msgstr "" -#: part/models.py:4433 +#: part/models.py:4058 msgid "Rounding Multiple" msgstr "" -#: part/models.py:4435 +#: part/models.py:4060 msgid "Round up required production quantity to nearest multiple of this value" msgstr "" -#: part/models.py:4443 +#: part/models.py:4068 msgid "BOM item reference" msgstr "" -#: part/models.py:4451 +#: part/models.py:4076 msgid "BOM item notes" msgstr "" -#: part/models.py:4457 +#: part/models.py:4082 msgid "Checksum" msgstr "" -#: part/models.py:4458 +#: part/models.py:4083 msgid "BOM line checksum" msgstr "" -#: part/models.py:4463 +#: part/models.py:4088 msgid "Validated" msgstr "" -#: part/models.py:4464 +#: part/models.py:4089 msgid "This BOM item has been validated" msgstr "" -#: part/models.py:4469 +#: part/models.py:4094 msgid "Gets inherited" msgstr "" -#: part/models.py:4470 +#: part/models.py:4095 msgid "This BOM item is inherited by BOMs for variant parts" msgstr "" -#: part/models.py:4476 +#: part/models.py:4101 msgid "Stock items for variant parts can be used for this BOM item" msgstr "" -#: part/models.py:4583 stock/models.py:925 +#: part/models.py:4208 stock/models.py:925 msgid "Quantity must be integer value for trackable parts" msgstr "" -#: part/models.py:4593 part/models.py:4595 +#: part/models.py:4218 part/models.py:4220 msgid "Sub part must be specified" msgstr "" -#: part/models.py:4746 +#: part/models.py:4371 msgid "BOM Item Substitute" msgstr "" -#: part/models.py:4767 +#: part/models.py:4392 msgid "Substitute part cannot be the same as the master part" msgstr "" -#: part/models.py:4780 +#: part/models.py:4405 msgid "Parent BOM item" msgstr "" -#: part/models.py:4788 +#: part/models.py:4413 msgid "Substitute part" msgstr "" -#: part/models.py:4804 +#: part/models.py:4429 msgid "Part 1" msgstr "" -#: part/models.py:4812 +#: part/models.py:4437 msgid "Part 2" msgstr "" -#: part/models.py:4813 +#: part/models.py:4438 msgid "Select Related Part" msgstr "" -#: part/models.py:4820 +#: part/models.py:4445 msgid "Note for this relationship" msgstr "" -#: part/models.py:4839 +#: part/models.py:4464 msgid "Part relationship cannot be created between a part and itself" msgstr "" -#: part/models.py:4844 +#: part/models.py:4469 msgid "Duplicate relationship already exists" msgstr "" -#: part/serializers.py:114 +#: part/serializers.py:113 msgid "Parent Category" msgstr "" -#: part/serializers.py:115 +#: part/serializers.py:114 msgid "Parent part category" msgstr "" -#: part/serializers.py:123 part/serializers.py:164 +#: part/serializers.py:122 part/serializers.py:163 msgid "Subcategories" msgstr "" -#: part/serializers.py:203 +#: part/serializers.py:202 msgid "Results" msgstr "" -#: part/serializers.py:204 +#: part/serializers.py:203 msgid "Number of results recorded against this template" msgstr "" -#: part/serializers.py:235 part/serializers.py:253 stock/serializers.py:643 +#: part/serializers.py:234 part/serializers.py:252 stock/serializers.py:643 msgid "Purchase currency of this stock item" msgstr "" -#: part/serializers.py:280 +#: part/serializers.py:279 msgid "File is not an image" msgstr "" -#: part/serializers.py:311 -msgid "Number of parts using this template" -msgstr "" - -#: part/serializers.py:471 +#: part/serializers.py:382 msgid "Original Part" msgstr "" -#: part/serializers.py:472 +#: part/serializers.py:383 msgid "Select original part to duplicate" msgstr "" -#: part/serializers.py:477 +#: part/serializers.py:388 msgid "Copy Image" msgstr "" -#: part/serializers.py:478 +#: part/serializers.py:389 msgid "Copy image from original part" msgstr "" -#: part/serializers.py:484 +#: part/serializers.py:395 msgid "Copy BOM" msgstr "" -#: part/serializers.py:485 +#: part/serializers.py:396 msgid "Copy bill of materials from original part" msgstr "" -#: part/serializers.py:491 +#: part/serializers.py:402 msgid "Copy Parameters" msgstr "" -#: part/serializers.py:492 +#: part/serializers.py:403 msgid "Copy parameter data from original part" msgstr "" -#: part/serializers.py:498 +#: part/serializers.py:409 msgid "Copy Notes" msgstr "" -#: part/serializers.py:499 +#: part/serializers.py:410 msgid "Copy notes from original part" msgstr "" -#: part/serializers.py:505 +#: part/serializers.py:416 msgid "Copy Tests" msgstr "" -#: part/serializers.py:506 +#: part/serializers.py:417 msgid "Copy test templates from original part" msgstr "" -#: part/serializers.py:524 +#: part/serializers.py:435 msgid "Initial Stock Quantity" msgstr "" -#: part/serializers.py:526 +#: part/serializers.py:437 msgid "Specify initial stock quantity for this Part. If quantity is zero, no stock is added." msgstr "" -#: part/serializers.py:533 +#: part/serializers.py:444 msgid "Initial Stock Location" msgstr "" -#: part/serializers.py:534 +#: part/serializers.py:445 msgid "Specify initial stock location for this Part" msgstr "" -#: part/serializers.py:551 +#: part/serializers.py:462 msgid "Select supplier (or leave blank to skip)" msgstr "" -#: part/serializers.py:567 +#: part/serializers.py:478 msgid "Select manufacturer (or leave blank to skip)" msgstr "" -#: part/serializers.py:577 +#: part/serializers.py:488 msgid "Manufacturer part number" msgstr "" -#: part/serializers.py:584 +#: part/serializers.py:495 msgid "Selected company is not a valid supplier" msgstr "" -#: part/serializers.py:593 +#: part/serializers.py:504 msgid "Selected company is not a valid manufacturer" msgstr "" -#: part/serializers.py:604 +#: part/serializers.py:515 msgid "Manufacturer part matching this MPN already exists" msgstr "" -#: part/serializers.py:611 +#: part/serializers.py:522 msgid "Supplier part matching this SKU already exists" msgstr "" -#: part/serializers.py:914 +#: part/serializers.py:799 msgid "Category Name" msgstr "" -#: part/serializers.py:943 +#: part/serializers.py:828 msgid "Building" msgstr "" -#: part/serializers.py:944 +#: part/serializers.py:829 msgid "Quantity of this part currently being in production" msgstr "" -#: part/serializers.py:951 +#: part/serializers.py:836 msgid "Outstanding quantity of this part scheduled to be built" msgstr "" -#: part/serializers.py:971 stock/serializers.py:1019 stock/serializers.py:1189 +#: part/serializers.py:856 stock/serializers.py:1019 stock/serializers.py:1189 #: users/ruleset.py:30 msgid "Stock Items" msgstr "" -#: part/serializers.py:975 +#: part/serializers.py:860 msgid "Revisions" msgstr "" -#: part/serializers.py:979 +#: part/serializers.py:864 msgid "Suppliers" msgstr "" -#: part/serializers.py:983 part/serializers.py:1297 +#: part/serializers.py:868 part/serializers.py:1162 #: templates/email/low_stock_notification.html:16 #: templates/email/part_event_notification.html:17 msgid "Total Stock" msgstr "" -#: part/serializers.py:991 +#: part/serializers.py:876 msgid "Unallocated Stock" msgstr "" -#: part/serializers.py:999 +#: part/serializers.py:884 msgid "Variant Stock" msgstr "" -#: part/serializers.py:1054 +#: part/serializers.py:943 msgid "Duplicate Part" msgstr "" -#: part/serializers.py:1055 +#: part/serializers.py:944 msgid "Copy initial data from another Part" msgstr "" -#: part/serializers.py:1061 +#: part/serializers.py:950 msgid "Initial Stock" msgstr "" -#: part/serializers.py:1062 +#: part/serializers.py:951 msgid "Create Part with initial stock quantity" msgstr "" -#: part/serializers.py:1068 +#: part/serializers.py:957 msgid "Supplier Information" msgstr "" -#: part/serializers.py:1069 +#: part/serializers.py:958 msgid "Add initial supplier information for this part" msgstr "" -#: part/serializers.py:1077 +#: part/serializers.py:966 msgid "Copy Category Parameters" msgstr "" -#: part/serializers.py:1078 +#: part/serializers.py:967 msgid "Copy parameter templates from selected part category" msgstr "" -#: part/serializers.py:1083 +#: part/serializers.py:972 msgid "Existing Image" msgstr "" -#: part/serializers.py:1084 +#: part/serializers.py:973 msgid "Filename of an existing part image" msgstr "" -#: part/serializers.py:1101 +#: part/serializers.py:990 msgid "Image file does not exist" msgstr "" -#: part/serializers.py:1269 +#: part/serializers.py:1134 msgid "Validate entire Bill of Materials" msgstr "" -#: part/serializers.py:1303 part/serializers.py:1769 +#: part/serializers.py:1168 part/serializers.py:1634 msgid "Can Build" msgstr "" -#: part/serializers.py:1320 +#: part/serializers.py:1185 msgid "Required for Build Orders" msgstr "" -#: part/serializers.py:1325 +#: part/serializers.py:1190 msgid "Allocated to Build Orders" msgstr "" -#: part/serializers.py:1332 +#: part/serializers.py:1197 msgid "Required for Sales Orders" msgstr "" -#: part/serializers.py:1336 +#: part/serializers.py:1201 msgid "Allocated to Sales Orders" msgstr "" -#: part/serializers.py:1475 +#: part/serializers.py:1340 msgid "Minimum Price" msgstr "" -#: part/serializers.py:1476 +#: part/serializers.py:1341 msgid "Override calculated value for minimum price" msgstr "" -#: part/serializers.py:1483 +#: part/serializers.py:1348 msgid "Minimum price currency" msgstr "" -#: part/serializers.py:1490 +#: part/serializers.py:1355 msgid "Maximum Price" msgstr "" -#: part/serializers.py:1491 +#: part/serializers.py:1356 msgid "Override calculated value for maximum price" msgstr "" -#: part/serializers.py:1498 +#: part/serializers.py:1363 msgid "Maximum price currency" msgstr "" -#: part/serializers.py:1527 +#: part/serializers.py:1392 msgid "Update" msgstr "" -#: part/serializers.py:1528 +#: part/serializers.py:1393 msgid "Update pricing for this part" msgstr "" -#: part/serializers.py:1551 +#: part/serializers.py:1416 #, python-brace-format msgid "Could not convert from provided currencies to {default_currency}" msgstr "" -#: part/serializers.py:1558 +#: part/serializers.py:1423 msgid "Minimum price must not be greater than maximum price" msgstr "" -#: part/serializers.py:1561 +#: part/serializers.py:1426 msgid "Maximum price must not be less than minimum price" msgstr "" -#: part/serializers.py:1715 +#: part/serializers.py:1580 msgid "Select the parent assembly" msgstr "" -#: part/serializers.py:1735 +#: part/serializers.py:1600 msgid "Select the component part" msgstr "" -#: part/serializers.py:1929 +#: part/serializers.py:1802 msgid "Select part to copy BOM from" msgstr "" -#: part/serializers.py:1937 +#: part/serializers.py:1810 msgid "Remove Existing Data" msgstr "" -#: part/serializers.py:1938 +#: part/serializers.py:1811 msgid "Remove existing BOM items before copying" msgstr "" -#: part/serializers.py:1943 +#: part/serializers.py:1816 msgid "Include Inherited" msgstr "" -#: part/serializers.py:1944 +#: part/serializers.py:1817 msgid "Include BOM items which are inherited from templated parts" msgstr "" -#: part/serializers.py:1949 +#: part/serializers.py:1822 msgid "Skip Invalid Rows" msgstr "" -#: part/serializers.py:1950 +#: part/serializers.py:1823 msgid "Enable this option to skip invalid rows" msgstr "" -#: part/serializers.py:1955 +#: part/serializers.py:1828 msgid "Copy Substitute Parts" msgstr "" -#: part/serializers.py:1956 +#: part/serializers.py:1829 msgid "Copy substitute parts when duplicate BOM items" msgstr "" @@ -6927,7 +6974,7 @@ msgstr "" #: plugin/builtin/events/auto_issue_orders.py:19 #: plugin/builtin/exporter/bom_exporter.py:73 #: plugin/builtin/exporter/inventree_exporter.py:17 -#: plugin/builtin/exporter/part_parameter_exporter.py:36 +#: plugin/builtin/exporter/parameter_exporter.py:32 #: plugin/builtin/exporter/stocktake_exporter.py:47 #: plugin/builtin/integration/core_notifications.py:25 #: plugin/builtin/integration/core_notifications.py:69 @@ -7041,23 +7088,19 @@ msgid "Include total quantity of each part in the BOM" msgstr "" #: plugin/builtin/exporter/bom_exporter.py:35 -#: plugin/builtin/exporter/part_parameter_exporter.py:17 msgid "Stock Data" msgstr "" #: plugin/builtin/exporter/bom_exporter.py:35 -#: plugin/builtin/exporter/part_parameter_exporter.py:17 msgid "Include part stock data" msgstr "" #: plugin/builtin/exporter/bom_exporter.py:39 -#: plugin/builtin/exporter/part_parameter_exporter.py:21 #: plugin/builtin/exporter/stocktake_exporter.py:20 msgid "Pricing Data" msgstr "" #: plugin/builtin/exporter/bom_exporter.py:39 -#: plugin/builtin/exporter/part_parameter_exporter.py:21 #: plugin/builtin/exporter/stocktake_exporter.py:20 msgid "Include part pricing data" msgstr "" @@ -7144,12 +7187,20 @@ msgstr "" msgid "Provides support for exporting data from InvenTree" msgstr "" -#: plugin/builtin/exporter/part_parameter_exporter.py:33 -msgid "Part Parameter Exporter" +#: plugin/builtin/exporter/parameter_exporter.py:16 +msgid "Exclude Inactive" msgstr "" -#: plugin/builtin/exporter/part_parameter_exporter.py:34 -msgid "Exporter for part parameter data" +#: plugin/builtin/exporter/parameter_exporter.py:17 +msgid "Exclude parameters which are inactive" +msgstr "" + +#: plugin/builtin/exporter/parameter_exporter.py:29 +msgid "Parameter Exporter" +msgstr "" + +#: plugin/builtin/exporter/parameter_exporter.py:30 +msgid "Exporter for model parameter data" msgstr "" #: plugin/builtin/exporter/stocktake_exporter.py:25 @@ -8079,19 +8130,19 @@ msgstr "" msgid "No result" msgstr "" -#: report/templatetags/report.py:167 +#: report/templatetags/report.py:169 msgid "Asset file does not exist" msgstr "" -#: report/templatetags/report.py:224 report/templatetags/report.py:300 +#: report/templatetags/report.py:226 report/templatetags/report.py:302 msgid "Image file not found" msgstr "" -#: report/templatetags/report.py:325 +#: report/templatetags/report.py:327 msgid "part_image tag requires a Part instance" msgstr "" -#: report/templatetags/report.py:362 +#: report/templatetags/report.py:383 msgid "company_image tag requires a Company instance" msgstr "" @@ -8455,115 +8506,119 @@ msgstr "" msgid "Quantity does not match serial numbers" msgstr "" -#: stock/models.py:2012 stock/models.py:2917 +#: stock/models.py:1912 +msgid "Cannot assign stock to structural location" +msgstr "" + +#: stock/models.py:2029 stock/models.py:2934 msgid "Test template does not exist" msgstr "" -#: stock/models.py:2030 +#: stock/models.py:2047 msgid "Stock item has been assigned to a sales order" msgstr "" -#: stock/models.py:2034 +#: stock/models.py:2051 msgid "Stock item is installed in another item" msgstr "" -#: stock/models.py:2037 +#: stock/models.py:2054 msgid "Stock item contains other items" msgstr "" -#: stock/models.py:2040 +#: stock/models.py:2057 msgid "Stock item has been assigned to a customer" msgstr "" -#: stock/models.py:2043 stock/models.py:2226 +#: stock/models.py:2060 stock/models.py:2243 msgid "Stock item is currently in production" msgstr "" -#: stock/models.py:2046 +#: stock/models.py:2063 msgid "Serialized stock cannot be merged" msgstr "" -#: stock/models.py:2053 stock/serializers.py:1462 +#: stock/models.py:2070 stock/serializers.py:1462 msgid "Duplicate stock items" msgstr "" -#: stock/models.py:2057 +#: stock/models.py:2074 msgid "Stock items must refer to the same part" msgstr "" -#: stock/models.py:2065 +#: stock/models.py:2082 msgid "Stock items must refer to the same supplier part" msgstr "" -#: stock/models.py:2070 +#: stock/models.py:2087 msgid "Stock status codes must match" msgstr "" -#: stock/models.py:2349 +#: stock/models.py:2366 msgid "StockItem cannot be moved as it is not in stock" msgstr "" -#: stock/models.py:2818 +#: stock/models.py:2835 msgid "Stock Item Tracking" msgstr "" -#: stock/models.py:2849 +#: stock/models.py:2866 msgid "Entry notes" msgstr "" -#: stock/models.py:2889 +#: stock/models.py:2906 msgid "Stock Item Test Result" msgstr "" -#: stock/models.py:2920 +#: stock/models.py:2937 msgid "Value must be provided for this test" msgstr "" -#: stock/models.py:2924 +#: stock/models.py:2941 msgid "Attachment must be uploaded for this test" msgstr "" -#: stock/models.py:2929 +#: stock/models.py:2946 msgid "Invalid value for this test" msgstr "" -#: stock/models.py:2953 +#: stock/models.py:2970 msgid "Test result" msgstr "" -#: stock/models.py:2960 +#: stock/models.py:2977 msgid "Test output value" msgstr "" -#: stock/models.py:2968 stock/serializers.py:248 +#: stock/models.py:2985 stock/serializers.py:248 msgid "Test result attachment" msgstr "" -#: stock/models.py:2972 +#: stock/models.py:2989 msgid "Test notes" msgstr "" -#: stock/models.py:2980 +#: stock/models.py:2997 msgid "Test station" msgstr "" -#: stock/models.py:2981 +#: stock/models.py:2998 msgid "The identifier of the test station where the test was performed" msgstr "" -#: stock/models.py:2987 +#: stock/models.py:3004 msgid "Started" msgstr "" -#: stock/models.py:2988 +#: stock/models.py:3005 msgid "The timestamp of the test start" msgstr "" -#: stock/models.py:2994 +#: stock/models.py:3011 msgid "Finished" msgstr "" -#: stock/models.py:2995 +#: stock/models.py:3012 msgid "The timestamp of the test finish" msgstr "" @@ -8677,8 +8732,8 @@ msgstr "" msgid "Quantity must not exceed available stock quantity ({q})" msgstr "" -#: stock/serializers.py:711 stock/serializers.py:1419 stock/serializers.py:1732 -#: stock/serializers.py:1781 +#: stock/serializers.py:711 stock/serializers.py:1419 stock/serializers.py:1740 +#: stock/serializers.py:1789 msgid "Destination stock location" msgstr "" @@ -8834,19 +8889,19 @@ msgstr "" msgid "Stock transaction notes" msgstr "" -#: stock/serializers.py:1787 +#: stock/serializers.py:1795 msgid "Merge into existing stock" msgstr "" -#: stock/serializers.py:1788 +#: stock/serializers.py:1796 msgid "Merge returned items into existing stock items if possible" msgstr "" -#: stock/serializers.py:1831 +#: stock/serializers.py:1839 msgid "Next Serial Number" msgstr "" -#: stock/serializers.py:1837 +#: stock/serializers.py:1845 msgid "Previous Serial Number" msgstr "" @@ -8902,83 +8957,87 @@ msgstr "" msgid "Stock manually removed" msgstr "" -#: stock/status_codes.py:57 +#: stock/status_codes.py:56 +msgid "Serialized stock items" +msgstr "" + +#: stock/status_codes.py:58 msgid "Returned to stock" msgstr "" -#: stock/status_codes.py:60 +#: stock/status_codes.py:61 msgid "Location changed" msgstr "" -#: stock/status_codes.py:61 +#: stock/status_codes.py:62 msgid "Stock updated" msgstr "" -#: stock/status_codes.py:64 +#: stock/status_codes.py:65 msgid "Installed into assembly" msgstr "" -#: stock/status_codes.py:65 +#: stock/status_codes.py:66 msgid "Removed from assembly" msgstr "" -#: stock/status_codes.py:67 +#: stock/status_codes.py:68 msgid "Installed component item" msgstr "" -#: stock/status_codes.py:68 +#: stock/status_codes.py:69 msgid "Removed component item" msgstr "" -#: stock/status_codes.py:71 +#: stock/status_codes.py:72 msgid "Split from parent item" msgstr "" -#: stock/status_codes.py:72 +#: stock/status_codes.py:73 msgid "Split child item" msgstr "" -#: stock/status_codes.py:75 +#: stock/status_codes.py:76 msgid "Merged stock items" msgstr "" -#: stock/status_codes.py:78 +#: stock/status_codes.py:79 msgid "Converted to variant" msgstr "" -#: stock/status_codes.py:81 +#: stock/status_codes.py:82 msgid "Build order output created" msgstr "" -#: stock/status_codes.py:82 +#: stock/status_codes.py:83 msgid "Build order output completed" msgstr "" -#: stock/status_codes.py:83 +#: stock/status_codes.py:84 msgid "Build order output rejected" msgstr "" -#: stock/status_codes.py:84 +#: stock/status_codes.py:85 msgid "Consumed by build order" msgstr "" -#: stock/status_codes.py:87 +#: stock/status_codes.py:88 msgid "Shipped against Sales Order" msgstr "" -#: stock/status_codes.py:90 +#: stock/status_codes.py:91 msgid "Received against Purchase Order" msgstr "" -#: stock/status_codes.py:93 +#: stock/status_codes.py:94 msgid "Returned against Return Order" msgstr "" -#: stock/status_codes.py:96 +#: stock/status_codes.py:97 msgid "Sent to customer" msgstr "" -#: stock/status_codes.py:97 +#: stock/status_codes.py:98 msgid "Returned from customer" msgstr "" diff --git a/src/backend/InvenTree/locale/nl/LC_MESSAGES/django.po b/src/backend/InvenTree/locale/nl/LC_MESSAGES/django.po index f33faf926e..9ec3041053 100644 --- a/src/backend/InvenTree/locale/nl/LC_MESSAGES/django.po +++ b/src/backend/InvenTree/locale/nl/LC_MESSAGES/django.po @@ -2,8 +2,8 @@ msgid "" msgstr "" "Project-Id-Version: inventree\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-11-19 04:55+0000\n" -"PO-Revision-Date: 2025-11-19 04:59\n" +"POT-Creation-Date: 2025-12-07 07:33+0000\n" +"PO-Revision-Date: 2025-12-07 07:36\n" "Last-Translator: \n" "Language-Team: Dutch\n" "Language: nl_NL\n" @@ -57,7 +57,7 @@ msgstr "Geen gegevens verstrekt" msgid "This field must be unique." msgstr "" -#: InvenTree/api.py:775 +#: InvenTree/api.py:803 msgid "User does not have permission to view this model" msgstr "Gebruiker heeft geen rechten om dit model te bekijken" @@ -81,22 +81,22 @@ msgstr "Het opgegeven primaire e-mailadres is ongeldig." msgid "The provided email domain is not approved." msgstr "Het ingevoerde e-maildomein is niet goedgekeurd." -#: InvenTree/conversion.py:166 +#: InvenTree/conversion.py:240 #, python-brace-format msgid "Invalid unit provided ({unit})" msgstr "Ongeldige eenheid opgegeven ({unit})" -#: InvenTree/conversion.py:183 +#: InvenTree/conversion.py:257 msgid "No value provided" msgstr "Geen waarde opgegeven" -#: InvenTree/conversion.py:210 +#: InvenTree/conversion.py:284 #, python-brace-format msgid "Could not convert {original} to {unit}" msgstr "{original} kon niet worden omgezet naar {unit}" -#: InvenTree/conversion.py:212 InvenTree/conversion.py:226 -#: InvenTree/helpers.py:597 order/models.py:720 order/models.py:1015 +#: InvenTree/conversion.py:286 InvenTree/conversion.py:300 +#: InvenTree/helpers.py:597 order/models.py:721 order/models.py:1016 msgid "Invalid quantity provided" msgstr "Ongeldige hoeveelheid ingevoerd" @@ -112,11 +112,11 @@ msgstr "Voer datum in" msgid "Invalid decimal value" msgstr "Ongeldige decimale waarde" -#: InvenTree/fields.py:218 InvenTree/models.py:1067 build/serializers.py:509 -#: build/serializers.py:580 build/serializers.py:1788 company/models.py:857 -#: order/models.py:1780 +#: InvenTree/fields.py:218 InvenTree/models.py:1228 build/serializers.py:517 +#: build/serializers.py:588 build/serializers.py:1796 company/models.py:811 +#: order/models.py:1781 #: report/templates/report/inventree_build_order_report.html:172 -#: stock/models.py:2848 stock/models.py:2972 stock/serializers.py:717 +#: stock/models.py:2865 stock/models.py:2989 stock/serializers.py:717 #: stock/serializers.py:893 stock/serializers.py:1035 stock/serializers.py:1336 #: stock/serializers.py:1425 stock/serializers.py:1624 msgid "Notes" @@ -171,35 +171,35 @@ msgstr "Verwijder HTML tags van deze waarde" msgid "Data contains prohibited markdown content" msgstr "Gegevens bevatten verboden markdown inhoud" -#: InvenTree/helpers_model.py:133 +#: InvenTree/helpers_model.py:134 msgid "Connection error" msgstr "Verbindingsfout" -#: InvenTree/helpers_model.py:138 InvenTree/helpers_model.py:145 +#: InvenTree/helpers_model.py:139 InvenTree/helpers_model.py:146 msgid "Server responded with invalid status code" msgstr "Server reageerde met ongeldige statuscode" -#: InvenTree/helpers_model.py:141 +#: InvenTree/helpers_model.py:142 msgid "Exception occurred" msgstr "Uitzondering opgetreden" -#: InvenTree/helpers_model.py:151 +#: InvenTree/helpers_model.py:152 msgid "Server responded with invalid Content-Length value" msgstr "Server reageerde met ongeldige Content-Length waarde" -#: InvenTree/helpers_model.py:154 +#: InvenTree/helpers_model.py:155 msgid "Image size is too large" msgstr "Afbeeldingsformaat is te groot" -#: InvenTree/helpers_model.py:166 +#: InvenTree/helpers_model.py:167 msgid "Image download exceeded maximum size" msgstr "Beelddownload overschrijdt de maximale grootte" -#: InvenTree/helpers_model.py:171 +#: InvenTree/helpers_model.py:172 msgid "Remote server returned empty response" msgstr "Externe server heeft lege reactie teruggegeven" -#: InvenTree/helpers_model.py:179 +#: InvenTree/helpers_model.py:180 msgid "Supplied URL is not a valid image file" msgstr "Opgegeven URL is geen geldig afbeeldingsbestand" @@ -207,7 +207,7 @@ msgstr "Opgegeven URL is geen geldig afbeeldingsbestand" msgid "Log in to the app" msgstr "Log in op de app" -#: InvenTree/magic_login.py:41 company/models.py:172 users/serializers.py:198 +#: InvenTree/magic_login.py:41 company/models.py:173 users/serializers.py:198 msgid "Email" msgstr "E-mail" @@ -215,160 +215,176 @@ msgstr "E-mail" msgid "You must enable two-factor authentication before doing anything else." msgstr "Schakel tweestapsverificatie in voordat je iets anders kunt doen." -#: InvenTree/models.py:111 +#: InvenTree/models.py:114 msgid "Error running plugin validation" msgstr "Fout bij uitvoeren plug-in validatie" -#: InvenTree/models.py:192 +#: InvenTree/models.py:195 msgid "Metadata must be a python dict object" msgstr "Metadata moeten een python dict object zijn" -#: InvenTree/models.py:198 +#: InvenTree/models.py:201 msgid "Plugin Metadata" msgstr "Plug-in metadata" -#: InvenTree/models.py:199 +#: InvenTree/models.py:202 msgid "JSON metadata field, for use by external plugins" msgstr "JSON metadata veld, voor gebruik door externe plugins" -#: InvenTree/models.py:382 +#: InvenTree/models.py:385 msgid "Improperly formatted pattern" msgstr "Onjuist opgemaakt patroon" -#: InvenTree/models.py:389 +#: InvenTree/models.py:392 msgid "Unknown format key specified" msgstr "Onbekende opmaaksleutel gespecificeerd" -#: InvenTree/models.py:395 +#: InvenTree/models.py:398 msgid "Missing required format key" msgstr "Vereiste opmaaksleutel ontbreekt" -#: InvenTree/models.py:406 +#: InvenTree/models.py:409 msgid "Reference field cannot be empty" msgstr "Referentieveld mag niet leeg zijn" -#: InvenTree/models.py:414 +#: InvenTree/models.py:417 msgid "Reference must match required pattern" msgstr "Referentie moet overeenkomen met verplicht patroon" -#: InvenTree/models.py:445 +#: InvenTree/models.py:448 msgid "Reference number is too large" msgstr "Referentienummer is te groot" -#: InvenTree/models.py:743 +#: InvenTree/models.py:896 msgid "Invalid choice" msgstr "Ongeldige keuze" -#: InvenTree/models.py:856 common/models.py:1410 common/models.py:1837 -#: common/models.py:2096 common/models.py:2221 common/serializers.py:535 -#: company/models.py:615 generic/states/serializers.py:20 machine/models.py:25 -#: part/models.py:1039 part/models.py:3850 plugin/models.py:54 +#: InvenTree/models.py:1017 common/models.py:1414 common/models.py:1841 +#: common/models.py:2102 common/models.py:2227 common/models.py:2494 +#: common/serializers.py:539 generic/states/serializers.py:20 +#: machine/models.py:25 part/models.py:1127 plugin/models.py:54 #: report/models.py:216 stock/models.py:84 msgid "Name" msgstr "Naam" -#: InvenTree/models.py:862 build/models.py:252 common/models.py:171 -#: common/models.py:2228 common/models.py:2341 company/models.py:543 -#: company/models.py:848 order/models.py:442 order/models.py:1825 -#: part/models.py:1062 part/models.py:3865 report/models.py:222 +#: InvenTree/models.py:1023 build/models.py:253 common/models.py:175 +#: common/models.py:2234 common/models.py:2347 common/models.py:2509 +#: company/models.py:545 company/models.py:802 order/models.py:443 +#: order/models.py:1826 part/models.py:1150 report/models.py:222 #: report/models.py:815 report/models.py:841 #: report/templates/report/inventree_build_order_report.html:117 #: stock/models.py:90 msgid "Description" msgstr "Omschrijving" -#: InvenTree/models.py:863 stock/models.py:91 +#: InvenTree/models.py:1024 stock/models.py:91 msgid "Description (optional)" msgstr "Omschrijving (optioneel)" -#: InvenTree/models.py:878 common/models.py:2394 +#: InvenTree/models.py:1039 common/models.py:2815 msgid "Path" msgstr "Pad" -#: InvenTree/models.py:983 +#: InvenTree/models.py:1144 msgid "Duplicate names cannot exist under the same parent" msgstr "Dubbele namen kunnen niet bestaan onder hetzelfde bovenliggende object" -#: InvenTree/models.py:1067 +#: InvenTree/models.py:1228 msgid "Markdown notes (optional)" msgstr "Markdown notitie (optioneel)" -#: InvenTree/models.py:1098 +#: InvenTree/models.py:1259 msgid "Barcode Data" msgstr "Streepjescode gegevens" -#: InvenTree/models.py:1099 +#: InvenTree/models.py:1260 msgid "Third party barcode data" msgstr "Streepjescode van derden" -#: InvenTree/models.py:1105 +#: InvenTree/models.py:1266 msgid "Barcode Hash" msgstr "Hash van Streepjescode" -#: InvenTree/models.py:1106 +#: InvenTree/models.py:1267 msgid "Unique hash of barcode data" msgstr "Unieke hash van barcode gegevens" -#: InvenTree/models.py:1187 +#: InvenTree/models.py:1348 msgid "Existing barcode found" msgstr "Bestaande barcode gevonden" -#: InvenTree/models.py:1269 +#: InvenTree/models.py:1430 msgid "Task Failure" msgstr "Taak mislukt" -#: InvenTree/models.py:1270 +#: InvenTree/models.py:1431 #, python-brace-format msgid "Background worker task '{f}' failed after {n} attempts" msgstr "Achtergrondtaak '{f}' is mislukt na {n} pogingen" -#: InvenTree/models.py:1297 +#: InvenTree/models.py:1458 msgid "Server Error" msgstr "Serverfout" -#: InvenTree/models.py:1298 +#: InvenTree/models.py:1459 msgid "An error has been logged by the server." msgstr "Er is een fout gelogd door de server." -#: InvenTree/models.py:1340 common/models.py:1748 +#: InvenTree/models.py:1501 common/models.py:1752 #: report/templates/report/inventree_bill_of_materials_report.html:126 #: report/templates/report/inventree_bill_of_materials_report.html:148 #: report/templates/report/inventree_return_order_report.html:35 msgid "Image" msgstr "Afbeelding" -#: InvenTree/serializers.py:253 part/models.py:4571 +#: InvenTree/serializers.py:255 part/models.py:4196 msgid "Must be a valid number" msgstr "Moet een geldig nummer zijn" -#: InvenTree/serializers.py:295 company/models.py:214 part/models.py:3285 +#: InvenTree/serializers.py:297 company/models.py:215 part/models.py:3349 msgid "Currency" msgstr "Valuta" -#: InvenTree/serializers.py:298 part/serializers.py:1385 +#: InvenTree/serializers.py:300 part/serializers.py:1250 msgid "Select currency from available options" msgstr "Selecteer valuta uit beschikbare opties" -#: InvenTree/serializers.py:653 +#: InvenTree/serializers.py:654 +msgid "This field may not be null." +msgstr "" + +#: InvenTree/serializers.py:660 msgid "Invalid value" msgstr "Ongeldige waarde" -#: InvenTree/serializers.py:690 +#: InvenTree/serializers.py:697 msgid "Remote Image" msgstr "Externe afbeelding" -#: InvenTree/serializers.py:691 +#: InvenTree/serializers.py:698 msgid "URL of remote image file" msgstr "URL van extern afbeeldingsbestand" -#: InvenTree/serializers.py:709 +#: InvenTree/serializers.py:716 msgid "Downloading images from remote URL is not enabled" msgstr "Afbeeldingen van externe URL downloaden is niet ingeschakeld" -#: InvenTree/serializers.py:716 +#: InvenTree/serializers.py:723 msgid "Failed to download image from remote URL" msgstr "Fout bij het downloaden van afbeelding van externe URL" +#: InvenTree/serializers.py:806 +msgid "Invalid content type format" +msgstr "" + +#: InvenTree/serializers.py:809 +msgid "Content type not found" +msgstr "" + +#: InvenTree/serializers.py:815 +msgid "Content type does not match required mixin class" +msgstr "" + #: InvenTree/setting/locales.py:20 msgid "Arabic" msgstr "Arabisch" @@ -537,30 +553,30 @@ msgstr "Ongeldige fysieke eenheid" msgid "Not a valid currency code" msgstr "Geen geldige valutacode" -#: build/api.py:54 order/api.py:111 order/api.py:270 order/api.py:1373 -#: order/serializers.py:132 +#: build/api.py:54 order/api.py:116 order/api.py:275 order/api.py:1378 +#: order/serializers.py:133 msgid "Order Status" msgstr "Status van bestelling" -#: build/api.py:80 build/models.py:264 +#: build/api.py:80 build/models.py:265 msgid "Parent Build" msgstr "Bovenliggende Productie" -#: build/api.py:84 build/api.py:831 order/api.py:547 order/api.py:770 -#: order/api.py:1174 order/api.py:1449 stock/api.py:573 +#: build/api.py:84 build/api.py:837 order/api.py:553 order/api.py:776 +#: order/api.py:1179 order/api.py:1454 stock/api.py:573 msgid "Include Variants" msgstr "Inclusief varianten" -#: build/api.py:100 build/api.py:466 build/api.py:845 build/models.py:270 -#: build/serializers.py:1225 build/serializers.py:1356 -#: build/serializers.py:1427 company/models.py:1067 company/serializers.py:445 -#: order/api.py:298 order/api.py:302 order/api.py:929 order/api.py:1187 -#: order/api.py:1190 order/models.py:1941 order/models.py:2108 -#: order/models.py:2109 part/api.py:1233 part/api.py:1236 part/api.py:1302 -#: part/api.py:1589 part/models.py:472 part/models.py:3296 part/models.py:3439 -#: part/models.py:3497 part/models.py:3518 part/models.py:3540 -#: part/models.py:3679 part/models.py:4046 part/models.py:4368 -#: part/models.py:4787 part/serializers.py:1928 +#: build/api.py:100 build/api.py:472 build/api.py:851 build/models.py:271 +#: build/serializers.py:1233 build/serializers.py:1364 +#: build/serializers.py:1435 company/models.py:1021 company/serializers.py:490 +#: order/api.py:303 order/api.py:307 order/api.py:934 order/api.py:1192 +#: order/api.py:1195 order/models.py:1942 order/models.py:2109 +#: order/models.py:2110 part/api.py:1160 part/api.py:1163 part/api.py:1314 +#: part/models.py:550 part/models.py:3360 part/models.py:3503 +#: part/models.py:3561 part/models.py:3582 part/models.py:3604 +#: part/models.py:3743 part/models.py:3993 part/models.py:4412 +#: part/serializers.py:1801 #: report/templates/report/inventree_bill_of_materials_report.html:110 #: report/templates/report/inventree_bill_of_materials_report.html:137 #: report/templates/report/inventree_build_order_report.html:109 @@ -580,9 +596,9 @@ msgstr "Inclusief varianten" msgid "Part" msgstr "Onderdeel" -#: build/api.py:120 build/api.py:123 build/serializers.py:1438 part/api.py:980 -#: part/api.py:1316 part/api.py:1600 part/models.py:1080 part/models.py:3568 -#: part/models.py:4162 part/serializers.py:1752 stock/api.py:869 +#: build/api.py:120 build/api.py:123 build/serializers.py:1446 part/api.py:975 +#: part/api.py:1325 part/models.py:435 part/models.py:1168 part/models.py:3632 +#: part/serializers.py:1617 stock/api.py:869 msgid "Category" msgstr "Categorie" @@ -590,7 +606,7 @@ msgstr "Categorie" msgid "Ancestor Build" msgstr "Voorouderlijke bouw" -#: build/api.py:152 order/api.py:129 +#: build/api.py:152 order/api.py:134 msgid "Assigned to me" msgstr "Toegewezen aan mij" @@ -638,134 +654,134 @@ msgstr "Voltooid voor" msgid "Completed after" msgstr "Voltooid na" -#: build/api.py:249 order/api.py:226 +#: build/api.py:249 order/api.py:231 msgid "Min Date" msgstr "Min. datum" -#: build/api.py:272 order/api.py:245 +#: build/api.py:272 order/api.py:250 msgid "Max Date" msgstr "Max. datum" -#: build/api.py:297 build/api.py:300 part/api.py:217 stock/api.py:961 +#: build/api.py:297 build/api.py:300 part/api.py:212 stock/api.py:961 msgid "Exclude Tree" msgstr "Boomstructuur uitsluiten" -#: build/api.py:405 +#: build/api.py:411 msgid "Build must be cancelled before it can be deleted" msgstr "Productie moet geannuleerd worden voordat het kan worden verwijderd" -#: build/api.py:449 build/serializers.py:1374 part/models.py:4402 +#: build/api.py:455 build/serializers.py:1382 part/models.py:4027 msgid "Consumable" msgstr "Verbruiksartikelen" -#: build/api.py:452 build/serializers.py:1377 part/models.py:4396 +#: build/api.py:458 build/serializers.py:1385 part/models.py:4021 msgid "Optional" msgstr "Optioneel" -#: build/api.py:455 build/serializers.py:1415 common/setting/system.py:456 -#: part/models.py:1202 part/serializers.py:1714 part/serializers.py:1725 +#: build/api.py:461 build/serializers.py:1423 common/setting/system.py:456 +#: part/models.py:1290 part/serializers.py:1579 part/serializers.py:1590 #: stock/api.py:639 msgid "Assembly" msgstr "Samenstelling" -#: build/api.py:458 +#: build/api.py:464 msgid "Tracked" msgstr "Gevolgd" -#: build/api.py:461 build/serializers.py:1380 part/models.py:1220 +#: build/api.py:467 build/serializers.py:1388 part/models.py:1308 msgid "Testable" msgstr "Testbaar" -#: build/api.py:471 order/api.py:993 order/api.py:1363 +#: build/api.py:477 order/api.py:998 order/api.py:1368 msgid "Order Outstanding" msgstr "Openstaande order" -#: build/api.py:481 build/serializers.py:1464 order/api.py:952 +#: build/api.py:487 build/serializers.py:1472 order/api.py:957 msgid "Allocated" msgstr "Toegewezen" -#: build/api.py:490 build/models.py:1672 build/serializers.py:1393 +#: build/api.py:496 build/models.py:1673 build/serializers.py:1401 msgid "Consumed" msgstr "Verbruikt" -#: build/api.py:499 company/models.py:912 company/serializers.py:440 +#: build/api.py:505 company/models.py:866 company/serializers.py:467 #: templates/email/build_order_required_stock.html:19 #: templates/email/low_stock_notification.html:17 #: templates/email/part_event_notification.html:18 msgid "Available" msgstr "Beschikbaar" -#: build/api.py:523 build/serializers.py:1466 company/serializers.py:437 -#: order/serializers.py:1281 part/serializers.py:959 part/serializers.py:1306 -#: part/serializers.py:1761 +#: build/api.py:529 build/serializers.py:1474 company/serializers.py:464 +#: order/serializers.py:1295 part/serializers.py:844 part/serializers.py:1171 +#: part/serializers.py:1626 msgid "On Order" msgstr "In bestelling" -#: build/api.py:868 build/models.py:117 order/models.py:1974 +#: build/api.py:874 build/models.py:118 order/models.py:1975 #: report/templates/report/inventree_build_order_report.html:105 #: stock/serializers.py:93 templates/email/build_order_completed.html:16 #: templates/email/overdue_build_order.html:15 msgid "Build Order" msgstr "Productieorder" -#: build/api.py:882 build/api.py:886 build/serializers.py:372 -#: build/serializers.py:497 build/serializers.py:567 build/serializers.py:1251 -#: build/serializers.py:1256 order/api.py:1234 order/api.py:1239 -#: order/serializers.py:833 order/serializers.py:973 order/serializers.py:2042 +#: build/api.py:888 build/api.py:892 build/serializers.py:380 +#: build/serializers.py:505 build/serializers.py:575 build/serializers.py:1259 +#: build/serializers.py:1264 order/api.py:1239 order/api.py:1244 +#: order/serializers.py:844 order/serializers.py:984 order/serializers.py:2059 #: stock/api.py:987 stock/serializers.py:111 stock/serializers.py:601 #: stock/serializers.py:710 stock/serializers.py:888 stock/serializers.py:1418 -#: stock/serializers.py:1731 stock/serializers.py:1780 +#: stock/serializers.py:1739 stock/serializers.py:1788 #: templates/email/stale_stock_notification.html:18 users/models.py:549 msgid "Location" msgstr "Locatie" -#: build/api.py:894 +#: build/api.py:900 msgid "Output" msgstr "Uitvoer" -#: build/api.py:896 +#: build/api.py:902 msgid "Filter by output stock item ID. Use 'null' to find uninstalled build items." msgstr "Filter op uitvoer standaard item ID. Gebruik 'null' om niet geïnstalleerde build items te vinden." -#: build/models.py:118 users/ruleset.py:31 +#: build/models.py:119 users/ruleset.py:31 msgid "Build Orders" msgstr "Productieorders" -#: build/models.py:168 +#: build/models.py:169 msgid "Assembly BOM has not been validated" msgstr "Assemblage stuklijst is niet gevalideerd" -#: build/models.py:175 +#: build/models.py:176 msgid "Build order cannot be created for an inactive part" msgstr "Bouw bestelling kan niet worden aangemaakt voor een inactief onderdeel" -#: build/models.py:182 +#: build/models.py:183 msgid "Build order cannot be created for an unlocked part" msgstr "Maken opdracht kan niet worden gemaakt voor een ontgrendeld onderdeel" -#: build/models.py:200 +#: build/models.py:201 msgid "Build orders can only be externally fulfilled for purchaseable parts" msgstr "Bestellingen bouwen kan alleen extern worden vervuld voor aankochte onderdelen" -#: build/models.py:207 order/models.py:369 +#: build/models.py:208 order/models.py:370 msgid "Responsible user or group must be specified" msgstr "Verantwoorde gebruiker of groep moet worden opgegeven" -#: build/models.py:212 +#: build/models.py:213 msgid "Build order part cannot be changed" msgstr "Bouworder onderdeel kan niet worden gewijzigd" -#: build/models.py:217 order/models.py:382 +#: build/models.py:218 order/models.py:383 msgid "Target date must be after start date" msgstr "Doeldatum moet na startdatum zijn" -#: build/models.py:245 +#: build/models.py:246 msgid "Build Order Reference" msgstr "Productieorderreferentie" -#: build/models.py:246 build/serializers.py:1371 order/models.py:614 -#: order/models.py:1311 order/models.py:1773 order/models.py:2712 -#: part/models.py:4442 +#: build/models.py:247 build/serializers.py:1379 order/models.py:615 +#: order/models.py:1312 order/models.py:1774 order/models.py:2713 +#: part/models.py:4067 #: report/templates/report/inventree_bill_of_materials_report.html:139 #: report/templates/report/inventree_purchase_order_report.html:35 #: report/templates/report/inventree_return_order_report.html:26 @@ -773,230 +789,230 @@ msgstr "Productieorderreferentie" msgid "Reference" msgstr "Referentie" -#: build/models.py:255 +#: build/models.py:256 msgid "Brief description of the build (optional)" msgstr "Korte beschrijving van de build (optioneel)" -#: build/models.py:265 +#: build/models.py:266 msgid "BuildOrder to which this build is allocated" msgstr "Productieorder waar deze productie aan is toegewezen" -#: build/models.py:274 +#: build/models.py:275 msgid "Select part to build" msgstr "Selecteer onderdeel om te produceren" -#: build/models.py:279 +#: build/models.py:280 msgid "Sales Order Reference" msgstr "Verkooporder Referentie" -#: build/models.py:284 +#: build/models.py:285 msgid "SalesOrder to which this build is allocated" msgstr "Verkooporder waar deze productie aan is toegewezen" -#: build/models.py:289 build/serializers.py:1097 +#: build/models.py:290 build/serializers.py:1105 msgid "Source Location" msgstr "Bronlocatie" -#: build/models.py:295 +#: build/models.py:296 msgid "Select location to take stock from for this build (leave blank to take from any stock location)" msgstr "Selecteer de locatie waar de voorraad van de productie vandaan moet komen (laat leeg om vanaf elke standaard locatie te nemen)" -#: build/models.py:301 +#: build/models.py:302 msgid "External Build" msgstr "Externe bouw" -#: build/models.py:302 +#: build/models.py:303 msgid "This build order is fulfilled externally" msgstr "Deze bouw opdracht is extern uitgevoerd" -#: build/models.py:307 +#: build/models.py:308 msgid "Destination Location" msgstr "Bestemmings Locatie" -#: build/models.py:312 +#: build/models.py:313 msgid "Select location where the completed items will be stored" msgstr "Selecteer locatie waar de voltooide items zullen worden opgeslagen" -#: build/models.py:316 +#: build/models.py:317 msgid "Build Quantity" msgstr "Productiehoeveelheid" -#: build/models.py:319 +#: build/models.py:320 msgid "Number of stock items to build" msgstr "Aantal voorraaditems om te produceren" -#: build/models.py:323 +#: build/models.py:324 msgid "Completed items" msgstr "Voltooide voorraadartikelen" -#: build/models.py:325 +#: build/models.py:326 msgid "Number of stock items which have been completed" msgstr "Aantal voorraadartikelen die zijn voltooid" -#: build/models.py:329 +#: build/models.py:330 msgid "Build Status" msgstr "Productiestatus" -#: build/models.py:334 +#: build/models.py:335 msgid "Build status code" msgstr "Productiestatuscode" -#: build/models.py:343 build/serializers.py:359 order/serializers.py:849 +#: build/models.py:344 build/serializers.py:367 order/serializers.py:860 #: stock/models.py:1100 stock/serializers.py:85 stock/serializers.py:1591 msgid "Batch Code" msgstr "Batchcode" -#: build/models.py:347 build/serializers.py:360 +#: build/models.py:348 build/serializers.py:368 msgid "Batch code for this build output" msgstr "Batchcode voor deze productieuitvoer" -#: build/models.py:351 order/models.py:479 order/serializers.py:186 -#: part/models.py:1283 +#: build/models.py:352 order/models.py:480 order/serializers.py:193 +#: part/models.py:1371 msgid "Creation Date" msgstr "Aanmaakdatum" -#: build/models.py:357 +#: build/models.py:358 msgid "Build start date" msgstr "Bouw start datum" -#: build/models.py:358 +#: build/models.py:359 msgid "Scheduled start date for this build order" msgstr "Geplande startdatum voor deze bestelling" -#: build/models.py:364 +#: build/models.py:365 msgid "Target completion date" msgstr "Verwachte opleveringsdatum" -#: build/models.py:366 +#: build/models.py:367 msgid "Target date for build completion. Build will be overdue after this date." msgstr "Doeldatum voor productie voltooiing. Productie zal achterstallig zijn na deze datum." -#: build/models.py:371 order/models.py:667 order/models.py:2751 +#: build/models.py:372 order/models.py:668 order/models.py:2752 msgid "Completion Date" msgstr "Opleveringsdatum" -#: build/models.py:379 +#: build/models.py:380 msgid "completed by" msgstr "voltooid door" -#: build/models.py:388 +#: build/models.py:389 msgid "Issued by" msgstr "Uitgegeven door" -#: build/models.py:389 +#: build/models.py:390 msgid "User who issued this build order" msgstr "Gebruiker die de productieorder heeft gegeven" -#: build/models.py:398 common/models.py:180 order/api.py:179 -#: order/models.py:504 part/models.py:1300 +#: build/models.py:399 common/models.py:184 order/api.py:184 +#: order/models.py:505 part/models.py:1388 #: report/templates/report/inventree_build_order_report.html:158 msgid "Responsible" msgstr "Verantwoordelijke" -#: build/models.py:399 +#: build/models.py:400 msgid "User or group responsible for this build order" msgstr "Gebruiker of groep verantwoordelijk voor deze bouwopdracht" -#: build/models.py:404 stock/models.py:1093 +#: build/models.py:405 stock/models.py:1093 msgid "External Link" msgstr "Externe Link" -#: build/models.py:406 common/models.py:1984 part/models.py:1114 +#: build/models.py:407 common/models.py:1990 part/models.py:1202 #: stock/models.py:1095 msgid "Link to external URL" msgstr "Link naar externe URL" -#: build/models.py:411 +#: build/models.py:412 msgid "Build Priority" msgstr "Bouw prioriteit" -#: build/models.py:414 +#: build/models.py:415 msgid "Priority of this build order" msgstr "Prioriteit van deze bouwopdracht" -#: build/models.py:422 common/models.py:150 common/models.py:164 -#: order/api.py:165 order/models.py:451 order/models.py:1805 +#: build/models.py:423 common/models.py:154 common/models.py:168 +#: order/api.py:170 order/models.py:452 order/models.py:1806 msgid "Project Code" msgstr "Project code" -#: build/models.py:423 +#: build/models.py:424 msgid "Project code for this build order" msgstr "Project code voor deze build order" -#: build/models.py:676 +#: build/models.py:677 msgid "Cannot complete build order with open child builds" msgstr "Kan de bouwopdracht niet voltooien zolang onderliggende bouwopdrachten nog openstaan" -#: build/models.py:681 +#: build/models.py:682 msgid "Cannot complete build order with incomplete outputs" msgstr "Kan de bouwopdracht niet voltooien zolang de output onvolledig is" -#: build/models.py:700 build/models.py:830 +#: build/models.py:701 build/models.py:831 msgid "Failed to offload task to complete build allocations" msgstr "Verwijderen van taak om toewijzingen te voltooien mislukt" -#: build/models.py:723 +#: build/models.py:724 #, python-brace-format msgid "Build order {build} has been completed" msgstr "Productieorder {build} is voltooid" -#: build/models.py:729 +#: build/models.py:730 msgid "A build order has been completed" msgstr "Een productieorder is voltooid" -#: build/models.py:911 build/serializers.py:407 +#: build/models.py:912 build/serializers.py:415 msgid "Serial numbers must be provided for trackable parts" msgstr "Serienummers moeten worden opgegeven voor traceerbare onderdelen" -#: build/models.py:1042 build/models.py:1129 +#: build/models.py:1043 build/models.py:1130 msgid "No build output specified" msgstr "Geen productie uitvoer opgegeven" -#: build/models.py:1045 +#: build/models.py:1046 msgid "Build output is already completed" msgstr "Productie uitvoer is al voltooid" -#: build/models.py:1048 +#: build/models.py:1049 msgid "Build output does not match Build Order" msgstr "Productuitvoer komt niet overeen met de Productieorder" -#: build/models.py:1136 build/models.py:1234 build/serializers.py:285 -#: build/serializers.py:335 build/serializers.py:965 build/serializers.py:1739 -#: order/models.py:717 order/serializers.py:658 order/serializers.py:844 -#: part/serializers.py:1708 stock/models.py:940 stock/models.py:1430 +#: build/models.py:1137 build/models.py:1235 build/serializers.py:293 +#: build/serializers.py:343 build/serializers.py:973 build/serializers.py:1747 +#: order/models.py:718 order/serializers.py:669 order/serializers.py:855 +#: part/serializers.py:1573 stock/models.py:940 stock/models.py:1430 #: stock/models.py:1878 stock/serializers.py:688 stock/serializers.py:1580 msgid "Quantity must be greater than zero" msgstr "Hoeveelheid moet groter zijn dan nul" -#: build/models.py:1140 build/models.py:1239 build/serializers.py:290 +#: build/models.py:1141 build/models.py:1240 build/serializers.py:298 msgid "Quantity cannot be greater than the output quantity" msgstr "Hoeveelheid kan niet groter zijn dan aantal" -#: build/models.py:1214 build/serializers.py:606 +#: build/models.py:1215 build/serializers.py:614 msgid "Build output has not passed all required tests" msgstr "Build output heeft niet alle vereiste tests doorstaan" -#: build/models.py:1217 build/serializers.py:601 +#: build/models.py:1218 build/serializers.py:609 #, python-brace-format msgid "Build output {serial} has not passed all required tests" msgstr "Build output {serial} heeft niet alle vereiste tests doorstaan" -#: build/models.py:1229 +#: build/models.py:1230 msgid "Cannot partially complete a build output with allocated items" msgstr "" -#: build/models.py:1627 +#: build/models.py:1628 msgid "Build Order Line Item" msgstr "Bouw order regel item" -#: build/models.py:1651 +#: build/models.py:1652 msgid "Build object" msgstr "Bouw object" -#: build/models.py:1663 build/models.py:1974 build/serializers.py:271 -#: build/serializers.py:320 build/serializers.py:1392 common/models.py:1340 -#: order/models.py:1756 order/models.py:2597 order/serializers.py:1696 -#: order/serializers.py:2124 part/models.py:3453 part/models.py:4390 +#: build/models.py:1664 build/models.py:1975 build/serializers.py:279 +#: build/serializers.py:328 build/serializers.py:1400 common/models.py:1344 +#: order/models.py:1757 order/models.py:2598 order/serializers.py:1710 +#: order/serializers.py:2141 part/models.py:3517 part/models.py:4015 #: report/templates/report/inventree_bill_of_materials_report.html:138 #: report/templates/report/inventree_build_order_report.html:113 #: report/templates/report/inventree_purchase_order_report.html:36 @@ -1014,427 +1030,427 @@ msgstr "Bouw object" msgid "Quantity" msgstr "Hoeveelheid" -#: build/models.py:1664 +#: build/models.py:1665 msgid "Required quantity for build order" msgstr "Vereiste hoeveelheid voor bouwopdracht" -#: build/models.py:1673 +#: build/models.py:1674 msgid "Quantity of consumed stock" msgstr "Aantal van verbruikte voorraad" -#: build/models.py:1772 +#: build/models.py:1773 msgid "Build item must specify a build output, as master part is marked as trackable" msgstr "Productieartikel moet een productieuitvoer specificeren, omdat het hoofdonderdeel gemarkeerd is als traceerbaar" -#: build/models.py:1783 +#: build/models.py:1784 #, python-brace-format msgid "Allocated quantity ({q}) must not exceed available stock quantity ({a})" msgstr "Toegewezen hoeveelheid ({q}) mag de beschikbare voorraad ({a}) niet overschrijden" -#: build/models.py:1804 order/models.py:2546 +#: build/models.py:1805 order/models.py:2547 msgid "Stock item is over-allocated" msgstr "Voorraad item is te veel toegewezen" -#: build/models.py:1809 order/models.py:2549 +#: build/models.py:1810 order/models.py:2550 msgid "Allocation quantity must be greater than zero" msgstr "Toewijzing hoeveelheid moet groter zijn dan nul" -#: build/models.py:1815 +#: build/models.py:1816 msgid "Quantity must be 1 for serialized stock" msgstr "Hoeveelheid moet 1 zijn voor geserialiseerde voorraad" -#: build/models.py:1875 +#: build/models.py:1876 msgid "Selected stock item does not match BOM line" msgstr "Geselecteerde voorraadartikelen komen niet overeen met de BOM-regel" -#: build/models.py:1913 +#: build/models.py:1914 msgid "Allocated quantity exceeds available stock quantity" msgstr "Toegewezen hoeveelheid overschrijdt de beschikbare voorraad hoeveelheid" -#: build/models.py:1964 build/serializers.py:948 build/serializers.py:1240 -#: order/serializers.py:1533 order/serializers.py:1554 +#: build/models.py:1965 build/serializers.py:956 build/serializers.py:1248 +#: order/serializers.py:1547 order/serializers.py:1568 #: report/templates/report/inventree_sales_order_shipment_report.html:29 #: stock/api.py:1404 stock/models.py:456 stock/serializers.py:102 #: stock/serializers.py:800 stock/serializers.py:1274 stock/serializers.py:1386 msgid "Stock Item" msgstr "Voorraadartikel" -#: build/models.py:1965 +#: build/models.py:1966 msgid "Source stock item" msgstr "Bron voorraadartikel" -#: build/models.py:1975 +#: build/models.py:1976 msgid "Stock quantity to allocate to build" msgstr "Voorraad hoeveelheid toe te wijzen aan productie" -#: build/models.py:1984 +#: build/models.py:1985 msgid "Install into" msgstr "Installeren in" -#: build/models.py:1985 +#: build/models.py:1986 msgid "Destination stock item" msgstr "Bestemming voorraadartikel" -#: build/serializers.py:118 +#: build/serializers.py:120 msgid "Build Level" msgstr "Bouw level" -#: build/serializers.py:128 +#: build/serializers.py:136 msgid "Part Name" msgstr "Onderdeel naam" -#: build/serializers.py:153 +#: build/serializers.py:161 msgid "Project Code Label" msgstr "Projectcode label" -#: build/serializers.py:219 build/serializers.py:974 +#: build/serializers.py:227 build/serializers.py:982 msgid "Build Output" msgstr "Productieuitvoer" -#: build/serializers.py:231 +#: build/serializers.py:239 msgid "Build output does not match the parent build" msgstr "Productieuitvoer komt niet overeen met de bovenliggende productie" -#: build/serializers.py:235 +#: build/serializers.py:243 msgid "Output part does not match BuildOrder part" msgstr "Uitvoeronderdeel komt niet overeen met productieorderonderdeel" -#: build/serializers.py:239 +#: build/serializers.py:247 msgid "This build output has already been completed" msgstr "Deze productieuitvoer is al voltooid" -#: build/serializers.py:253 +#: build/serializers.py:261 msgid "This build output is not fully allocated" msgstr "Deze productieuitvoer is niet volledig toegewezen" -#: build/serializers.py:272 build/serializers.py:321 +#: build/serializers.py:280 build/serializers.py:329 msgid "Enter quantity for build output" msgstr "Voer hoeveelheid in voor productie uitvoer" -#: build/serializers.py:343 +#: build/serializers.py:351 msgid "Integer quantity required for trackable parts" msgstr "Hoeveelheid als geheel getal vereist voor traceerbare onderdelen" -#: build/serializers.py:349 +#: build/serializers.py:357 msgid "Integer quantity required, as the bill of materials contains trackable parts" msgstr "Geheel getal vereist omdat de stuklijst traceerbare onderdelen bevat" -#: build/serializers.py:366 order/serializers.py:865 order/serializers.py:1700 +#: build/serializers.py:374 order/serializers.py:876 order/serializers.py:1714 #: stock/serializers.py:699 msgid "Serial Numbers" msgstr "Serienummers" -#: build/serializers.py:367 +#: build/serializers.py:375 msgid "Enter serial numbers for build outputs" msgstr "Voer serienummers in voor productieuitvoeren" -#: build/serializers.py:373 +#: build/serializers.py:381 msgid "Stock location for build output" msgstr "Voorraad locatie voor project uitvoer" -#: build/serializers.py:388 +#: build/serializers.py:396 msgid "Auto Allocate Serial Numbers" msgstr "Serienummers automatisch toewijzen" -#: build/serializers.py:390 +#: build/serializers.py:398 msgid "Automatically allocate required items with matching serial numbers" msgstr "Vereiste artikelen automatisch toewijzen met overeenkomende serienummers" -#: build/serializers.py:423 order/serializers.py:951 stock/api.py:1183 +#: build/serializers.py:431 order/serializers.py:962 stock/api.py:1183 #: stock/models.py:1901 msgid "The following serial numbers already exist or are invalid" msgstr "De volgende serienummers bestaan al of zijn ongeldig" -#: build/serializers.py:465 build/serializers.py:521 build/serializers.py:613 +#: build/serializers.py:473 build/serializers.py:529 build/serializers.py:621 msgid "A list of build outputs must be provided" msgstr "Een lijst van productieuitvoeren moet worden verstrekt" -#: build/serializers.py:498 +#: build/serializers.py:506 msgid "Stock location for scrapped outputs" msgstr "Voorraadlocatie voor geannuleerde outputs" -#: build/serializers.py:504 +#: build/serializers.py:512 msgid "Discard Allocations" msgstr "Toewijzingen weggooien" -#: build/serializers.py:505 +#: build/serializers.py:513 msgid "Discard any stock allocations for scrapped outputs" msgstr "Verwijder alle voorraadtoewijzingen voor geannuleerde outputs" -#: build/serializers.py:510 +#: build/serializers.py:518 msgid "Reason for scrapping build output(s)" msgstr "Reden voor annulering van bouworder(s)" -#: build/serializers.py:568 +#: build/serializers.py:576 msgid "Location for completed build outputs" msgstr "Locatie van voltooide productieuitvoeren" -#: build/serializers.py:576 +#: build/serializers.py:584 msgid "Accept Incomplete Allocation" msgstr "Incomplete Toewijzing Accepteren" -#: build/serializers.py:577 +#: build/serializers.py:585 msgid "Complete outputs if stock has not been fully allocated" msgstr "Voltooi de uitvoer als de voorraad niet volledig is toegewezen" -#: build/serializers.py:702 +#: build/serializers.py:710 msgid "Consume Allocated Stock" msgstr "Toegewezen voorraad gebruiken" -#: build/serializers.py:703 +#: build/serializers.py:711 msgid "Consume any stock which has already been allocated to this build" msgstr "Verbruik elke voorraad die al is toegewezen aan deze build" -#: build/serializers.py:709 +#: build/serializers.py:717 msgid "Remove Incomplete Outputs" msgstr "Verwijder Incomplete Uitvoeren" -#: build/serializers.py:710 +#: build/serializers.py:718 msgid "Delete any build outputs which have not been completed" msgstr "Verwijder alle productieuitvoeren die niet zijn voltooid" -#: build/serializers.py:737 +#: build/serializers.py:745 msgid "Not permitted" msgstr "Niet toegestaan" -#: build/serializers.py:738 +#: build/serializers.py:746 msgid "Accept as consumed by this build order" msgstr "Accepteer zoals geconsumeerd onder deze bouwopdracht" -#: build/serializers.py:739 +#: build/serializers.py:747 msgid "Deallocate before completing this build order" msgstr "De-alloceren voordat deze bouwopdracht voltooid wordt" -#: build/serializers.py:766 +#: build/serializers.py:774 msgid "Overallocated Stock" msgstr "Overgealloceerde voorraad" -#: build/serializers.py:769 +#: build/serializers.py:777 msgid "How do you want to handle extra stock items assigned to the build order" msgstr "Hoe wilt u omgaan met extra voorraaditems toegewezen aan de bouworder" -#: build/serializers.py:780 +#: build/serializers.py:788 msgid "Some stock items have been overallocated" msgstr "Sommige voorraadartikelen zijn overalloceerd" -#: build/serializers.py:785 +#: build/serializers.py:793 msgid "Accept Unallocated" msgstr "Accepteer Niet-toegewezen" -#: build/serializers.py:787 +#: build/serializers.py:795 msgid "Accept that stock items have not been fully allocated to this build order" msgstr "Accepteer dat voorraadartikelen niet volledig zijn toegewezen aan deze productieorder" -#: build/serializers.py:798 +#: build/serializers.py:806 msgid "Required stock has not been fully allocated" msgstr "Vereiste voorraad is niet volledig toegewezen" -#: build/serializers.py:803 order/serializers.py:524 order/serializers.py:1601 +#: build/serializers.py:811 order/serializers.py:535 order/serializers.py:1615 msgid "Accept Incomplete" msgstr "Accepteer Onvolledig" -#: build/serializers.py:805 +#: build/serializers.py:813 msgid "Accept that the required number of build outputs have not been completed" msgstr "Accepteer dat het vereist aantal productieuitvoeren niet is voltooid" -#: build/serializers.py:816 +#: build/serializers.py:824 msgid "Required build quantity has not been completed" msgstr "Vereiste productiehoeveelheid is voltooid" -#: build/serializers.py:828 +#: build/serializers.py:836 msgid "Build order has open child build orders" msgstr "Bouw opdracht heeft open sub bouw orders" -#: build/serializers.py:831 +#: build/serializers.py:839 msgid "Build order must be in production state" msgstr "Bouwen moet in de productiestatus staan" -#: build/serializers.py:834 +#: build/serializers.py:842 msgid "Build order has incomplete outputs" msgstr "Productieorder heeft onvolledige uitvoeren" -#: build/serializers.py:873 +#: build/serializers.py:881 msgid "Build Line" msgstr "Productielijn" -#: build/serializers.py:881 +#: build/serializers.py:889 msgid "Build output" msgstr "Productieuitvoer" -#: build/serializers.py:889 +#: build/serializers.py:897 msgid "Build output must point to the same build" msgstr "Productieuitvoer moet naar dezelfde productie wijzen" -#: build/serializers.py:920 +#: build/serializers.py:928 msgid "Build Line Item" msgstr "Bouw lijn-item" -#: build/serializers.py:938 +#: build/serializers.py:946 msgid "bom_item.part must point to the same part as the build order" msgstr "bom_item.part moet naar hetzelfde onderdeel wijzen als de productieorder" -#: build/serializers.py:954 stock/serializers.py:1287 +#: build/serializers.py:962 stock/serializers.py:1287 msgid "Item must be in stock" msgstr "Artikel moet op voorraad zijn" -#: build/serializers.py:997 order/serializers.py:1587 +#: build/serializers.py:1005 order/serializers.py:1601 #, python-brace-format msgid "Available quantity ({q}) exceeded" msgstr "Beschikbare hoeveelheid ({q}) overschreden" -#: build/serializers.py:1003 +#: build/serializers.py:1011 msgid "Build output must be specified for allocation of tracked parts" msgstr "Productieuitvoer moet worden opgegeven voor de toewijzing van gevolgde onderdelen" -#: build/serializers.py:1011 +#: build/serializers.py:1019 msgid "Build output cannot be specified for allocation of untracked parts" msgstr "Productieuitvoer kan niet worden gespecificeerd voor de toewijzing van niet gevolgde onderdelen" -#: build/serializers.py:1035 order/serializers.py:1860 +#: build/serializers.py:1043 order/serializers.py:1874 msgid "Allocation items must be provided" msgstr "Allocaties voor artikelen moeten worden opgegeven" -#: build/serializers.py:1099 +#: build/serializers.py:1107 msgid "Stock location where parts are to be sourced (leave blank to take from any location)" msgstr "Voorraadlocatie waar onderdelen afkomstig zijn (laat leeg om van elke locatie te nemen)" -#: build/serializers.py:1108 +#: build/serializers.py:1116 msgid "Exclude Location" msgstr "Locatie uitsluiten" -#: build/serializers.py:1109 +#: build/serializers.py:1117 msgid "Exclude stock items from this selected location" msgstr "Voorraadartikelen van deze geselecteerde locatie uitsluiten" -#: build/serializers.py:1114 +#: build/serializers.py:1122 msgid "Interchangeable Stock" msgstr "Uitwisselbare voorraad" -#: build/serializers.py:1115 +#: build/serializers.py:1123 msgid "Stock items in multiple locations can be used interchangeably" msgstr "Voorraadartikelen op meerdere locaties kunnen uitwisselbaar worden gebruikt" -#: build/serializers.py:1120 +#: build/serializers.py:1128 msgid "Substitute Stock" msgstr "Vervangende Voorraad" -#: build/serializers.py:1121 +#: build/serializers.py:1129 msgid "Allow allocation of substitute parts" msgstr "Toewijzing van vervangende onderdelen toestaan" -#: build/serializers.py:1126 +#: build/serializers.py:1134 msgid "Optional Items" msgstr "Optionele Items" -#: build/serializers.py:1127 +#: build/serializers.py:1135 msgid "Allocate optional BOM items to build order" msgstr "Alloceer optionele BOM items om bestelling te bouwen" -#: build/serializers.py:1148 +#: build/serializers.py:1156 msgid "Failed to start auto-allocation task" msgstr "Starten van automatische toewijzing taak mislukt" -#: build/serializers.py:1200 +#: build/serializers.py:1208 msgid "BOM Reference" msgstr "BOM referentie" -#: build/serializers.py:1206 +#: build/serializers.py:1214 msgid "BOM Part ID" msgstr "BOM onderdeel ID" -#: build/serializers.py:1213 +#: build/serializers.py:1221 msgid "BOM Part Name" msgstr "BOM onderdeel naam" -#: build/serializers.py:1266 build/serializers.py:1449 +#: build/serializers.py:1274 build/serializers.py:1457 msgid "Build" msgstr "Bouwen" -#: build/serializers.py:1276 company/models.py:685 order/api.py:311 -#: order/api.py:316 order/api.py:543 order/serializers.py:650 +#: build/serializers.py:1284 company/models.py:639 order/api.py:316 +#: order/api.py:321 order/api.py:549 order/serializers.py:661 #: stock/models.py:1036 stock/serializers.py:579 msgid "Supplier Part" msgstr "Leveranciersonderdeel" -#: build/serializers.py:1284 stock/serializers.py:620 +#: build/serializers.py:1292 stock/serializers.py:620 msgid "Allocated Quantity" msgstr "Toegewezen hoeveelheid" -#: build/serializers.py:1351 +#: build/serializers.py:1359 msgid "Build Reference" msgstr "Bouw referentie" -#: build/serializers.py:1361 +#: build/serializers.py:1369 msgid "Part Category Name" msgstr "Naam categorie onderdeel" -#: build/serializers.py:1383 common/setting/system.py:480 part/models.py:1214 +#: build/serializers.py:1391 common/setting/system.py:480 part/models.py:1302 msgid "Trackable" msgstr "Volgbaar" -#: build/serializers.py:1386 +#: build/serializers.py:1394 msgid "Inherited" msgstr "Overgenomen" -#: build/serializers.py:1389 part/models.py:4475 +#: build/serializers.py:1397 part/models.py:4100 msgid "Allow Variants" msgstr "Varianten toestaan" -#: build/serializers.py:1395 build/serializers.py:1400 part/models.py:4208 -#: part/models.py:4779 stock/api.py:882 +#: build/serializers.py:1403 build/serializers.py:1408 part/models.py:3833 +#: part/models.py:4404 stock/api.py:882 msgid "BOM Item" msgstr "Stuklijstartikel" -#: build/serializers.py:1467 order/serializers.py:1282 part/serializers.py:1310 -#: part/serializers.py:1765 +#: build/serializers.py:1475 order/serializers.py:1296 part/serializers.py:1175 +#: part/serializers.py:1630 msgid "In Production" msgstr "In productie" -#: build/serializers.py:1469 part/serializers.py:950 part/serializers.py:1314 +#: build/serializers.py:1477 part/serializers.py:835 part/serializers.py:1179 msgid "Scheduled to Build" msgstr "Gepland om te bouwen" -#: build/serializers.py:1472 part/serializers.py:987 +#: build/serializers.py:1480 part/serializers.py:872 msgid "External Stock" msgstr "Externe voorraad" -#: build/serializers.py:1473 part/serializers.py:1300 part/serializers.py:1808 +#: build/serializers.py:1481 part/serializers.py:1165 part/serializers.py:1673 msgid "Available Stock" msgstr "Beschikbare Voorraad" -#: build/serializers.py:1475 +#: build/serializers.py:1483 msgid "Available Substitute Stock" msgstr "Beschikbare vervanging voorraad" -#: build/serializers.py:1478 +#: build/serializers.py:1486 msgid "Available Variant Stock" msgstr "Beschikbare varianten voorraad" -#: build/serializers.py:1752 +#: build/serializers.py:1760 msgid "Consumed quantity exceeds allocated quantity" msgstr "Verbruikte hoeveelheid overschrijdt toegewezen hoeveelheid" -#: build/serializers.py:1789 +#: build/serializers.py:1797 msgid "Optional notes for the stock consumption" msgstr "Optionele notities voor voorraadverbruik" -#: build/serializers.py:1806 +#: build/serializers.py:1814 msgid "Build item must point to the correct build order" msgstr "Het bouwelement moet verwijzen naar de juiste bouwopdracht" -#: build/serializers.py:1811 +#: build/serializers.py:1819 msgid "Duplicate build item allocation" msgstr "Dupliceer build item allocatie" -#: build/serializers.py:1829 +#: build/serializers.py:1837 msgid "Build line must point to the correct build order" msgstr "Build line moet verwijzen naar de juiste bouwopdracht" -#: build/serializers.py:1834 +#: build/serializers.py:1842 msgid "Duplicate build line allocation" msgstr "Dupliceer build line toewijzing" -#: build/serializers.py:1846 +#: build/serializers.py:1854 msgid "At least one item or line must be provided" msgstr "Ten minste één item of regel moet worden opgegeven" @@ -1482,702 +1498,826 @@ msgstr "Achterstallige Productieorder" msgid "Build order {bo} is now overdue" msgstr "Productieorder {bo} is nu achterstallig" -#: common/api.py:694 +#: common/api.py:701 msgid "Is Link" msgstr "Is koppeling" -#: common/api.py:702 +#: common/api.py:709 msgid "Is File" msgstr "Is een bestand" -#: common/api.py:745 +#: common/api.py:756 msgid "User does not have permission to delete these attachments" msgstr "Gebruiker heeft geen toestemming om deze bijlagen te verwijderen" -#: common/api.py:762 +#: common/api.py:769 msgid "User does not have permission to delete this attachment" msgstr "Gebruiker heeft geen toestemming om deze bijlage te verwijderen." -#: common/currency.py:122 +#: common/currency.py:130 msgid "Invalid currency code" msgstr "Ongeldige valuta code" -#: common/currency.py:124 +#: common/currency.py:132 msgid "Duplicate currency code" msgstr "Dubbele valutacode" -#: common/currency.py:129 +#: common/currency.py:137 msgid "No valid currency codes provided" msgstr "Geen geldige valuta codes opgegeven" -#: common/currency.py:146 +#: common/currency.py:154 msgid "No plugin" msgstr "Geen plug-in gevonden" -#: common/models.py:101 common/models.py:126 common/models.py:2729 +#: common/models.py:105 common/models.py:130 common/models.py:3150 msgid "Updated" msgstr "Bijgewerkt" -#: common/models.py:102 common/models.py:127 +#: common/models.py:106 common/models.py:131 msgid "Timestamp of last update" msgstr "Tijdstempel van laatste update" -#: common/models.py:139 +#: common/models.py:143 msgid "Update By" msgstr "Bijgewerkt door" -#: common/models.py:140 +#: common/models.py:144 msgid "User who last updated this object" msgstr "Gebruiker die dit object voor het laatst heeft bijgewerkt" -#: common/models.py:165 +#: common/models.py:169 msgid "Unique project code" msgstr "Unieke projectcode" -#: common/models.py:172 +#: common/models.py:176 msgid "Project description" msgstr "Projectbeschrijving" -#: common/models.py:181 +#: common/models.py:185 msgid "User or group responsible for this project" msgstr "Gebruiker of groep die verantwoordelijk is voor dit project" -#: common/models.py:771 common/models.py:1272 common/models.py:1310 +#: common/models.py:775 common/models.py:1276 common/models.py:1314 msgid "Settings key" msgstr "Instellingen" -#: common/models.py:775 +#: common/models.py:779 msgid "Settings value" msgstr "Instellingswaarde" -#: common/models.py:830 +#: common/models.py:834 msgid "Chosen value is not a valid option" msgstr "Gekozen waarde is geen geldige optie" -#: common/models.py:846 +#: common/models.py:850 msgid "Value must be a boolean value" msgstr "Waarde moet een booleaanse waarde zijn" -#: common/models.py:854 +#: common/models.py:858 msgid "Value must be an integer value" msgstr "Waarde moet een geheel getal zijn" -#: common/models.py:862 +#: common/models.py:866 msgid "Value must be a valid number" msgstr "Waarde moet een geldig getal zijn" -#: common/models.py:887 +#: common/models.py:891 msgid "Value does not pass validation checks" msgstr "Waarde is niet geldig voor validatiecontrole" -#: common/models.py:909 +#: common/models.py:913 msgid "Key string must be unique" msgstr "Sleutelreeks moet uniek zijn" -#: common/models.py:1318 common/models.py:1319 common/models.py:1423 -#: common/models.py:1424 common/models.py:1669 common/models.py:1670 -#: common/models.py:2000 common/models.py:2001 common/models.py:2382 -#: importer/models.py:100 part/models.py:3547 part/models.py:3575 +#: common/models.py:1322 common/models.py:1323 common/models.py:1427 +#: common/models.py:1428 common/models.py:1673 common/models.py:1674 +#: common/models.py:2006 common/models.py:2007 common/models.py:2803 +#: importer/models.py:100 part/models.py:3611 part/models.py:3639 #: plugin/models.py:355 plugin/models.py:356 #: report/templates/report/inventree_test_report.html:105 users/models.py:124 #: users/models.py:501 msgid "User" msgstr "Gebruiker" -#: common/models.py:1341 +#: common/models.py:1345 msgid "Price break quantity" msgstr "Prijs pauze hoeveelheid" -#: common/models.py:1348 company/serializers.py:564 order/models.py:1842 -#: order/models.py:3043 +#: common/models.py:1352 company/serializers.py:349 order/models.py:1843 +#: order/models.py:3044 msgid "Price" msgstr "Prijs" -#: common/models.py:1349 +#: common/models.py:1353 msgid "Unit price at specified quantity" msgstr "Stukprijs op opgegeven hoeveelheid" -#: common/models.py:1400 common/models.py:1585 +#: common/models.py:1404 common/models.py:1589 msgid "Endpoint" msgstr "Eindpunt" -#: common/models.py:1401 +#: common/models.py:1405 msgid "Endpoint at which this webhook is received" msgstr "Eindpunt waarop deze webhook wordt ontvangen" -#: common/models.py:1411 +#: common/models.py:1415 msgid "Name for this webhook" msgstr "Naam van deze webhook" -#: common/models.py:1415 common/models.py:2241 common/models.py:2348 -#: company/models.py:191 company/models.py:822 machine/models.py:40 -#: part/models.py:1237 plugin/models.py:69 stock/api.py:642 users/models.py:195 +#: common/models.py:1419 common/models.py:2247 common/models.py:2354 +#: company/models.py:192 company/models.py:776 machine/models.py:40 +#: part/models.py:1325 plugin/models.py:69 stock/api.py:642 users/models.py:195 #: users/models.py:554 users/serializers.py:314 msgid "Active" msgstr "Actief" -#: common/models.py:1415 +#: common/models.py:1419 msgid "Is this webhook active" msgstr "Is deze webhook actief" -#: common/models.py:1431 users/models.py:172 +#: common/models.py:1435 users/models.py:172 msgid "Token" msgstr "Sleutel" -#: common/models.py:1432 +#: common/models.py:1436 msgid "Token for access" msgstr "Token voor toegang" -#: common/models.py:1440 +#: common/models.py:1444 msgid "Secret" msgstr "Geheim" -#: common/models.py:1441 +#: common/models.py:1445 msgid "Shared secret for HMAC" msgstr "Gedeeld geheim voor HMAC" -#: common/models.py:1549 common/models.py:2619 +#: common/models.py:1553 common/models.py:3040 msgid "Message ID" msgstr "Bericht ID" -#: common/models.py:1550 common/models.py:2609 +#: common/models.py:1554 common/models.py:3030 msgid "Unique identifier for this message" msgstr "Unieke identificatie voor dit bericht" -#: common/models.py:1558 +#: common/models.py:1562 msgid "Host" msgstr "Host" -#: common/models.py:1559 +#: common/models.py:1563 msgid "Host from which this message was received" msgstr "Host waarvan dit bericht is ontvangen" -#: common/models.py:1567 +#: common/models.py:1571 msgid "Header" msgstr "Koptekst" -#: common/models.py:1568 +#: common/models.py:1572 msgid "Header of this message" msgstr "Koptekst van dit bericht" -#: common/models.py:1575 +#: common/models.py:1579 msgid "Body" msgstr "Berichtinhoud" -#: common/models.py:1576 +#: common/models.py:1580 msgid "Body of this message" msgstr "Inhoud van dit bericht" -#: common/models.py:1586 +#: common/models.py:1590 msgid "Endpoint on which this message was received" msgstr "Eindpunt waarop dit bericht is ontvangen" -#: common/models.py:1591 +#: common/models.py:1595 msgid "Worked on" msgstr "Aan gewerkt" -#: common/models.py:1592 +#: common/models.py:1596 msgid "Was the work on this message finished?" msgstr "Is het werk aan dit bericht voltooid?" -#: common/models.py:1718 +#: common/models.py:1722 msgid "Id" msgstr "Id" -#: common/models.py:1720 +#: common/models.py:1724 msgid "Title" msgstr "Titel" -#: common/models.py:1722 common/models.py:1983 company/models.py:185 -#: company/models.py:467 company/models.py:534 company/models.py:839 -#: order/models.py:457 order/models.py:1786 order/models.py:2343 -#: part/models.py:1113 +#: common/models.py:1726 common/models.py:1989 company/models.py:186 +#: company/models.py:468 company/models.py:536 company/models.py:793 +#: order/models.py:458 order/models.py:1787 order/models.py:2344 +#: part/models.py:1201 #: report/templates/report/inventree_build_order_report.html:164 msgid "Link" msgstr "Koppeling" -#: common/models.py:1724 +#: common/models.py:1728 msgid "Published" msgstr "Gepubliceerd" -#: common/models.py:1726 +#: common/models.py:1730 msgid "Author" msgstr "Auteur" -#: common/models.py:1728 +#: common/models.py:1732 msgid "Summary" msgstr "Samenvatting" -#: common/models.py:1731 common/models.py:2586 +#: common/models.py:1735 common/models.py:3007 msgid "Read" msgstr "Gelezen" -#: common/models.py:1731 +#: common/models.py:1735 msgid "Was this news item read?" msgstr "Is dit nieuwsitem gelezen?" -#: common/models.py:1748 +#: common/models.py:1752 msgid "Image file" msgstr "Afbeelding" -#: common/models.py:1760 +#: common/models.py:1764 msgid "Target model type for this image" msgstr "Doel type voor deze afbeelding" -#: common/models.py:1764 +#: common/models.py:1768 msgid "Target model ID for this image" msgstr "Doel modelnummer voor deze afbeelding" -#: common/models.py:1786 +#: common/models.py:1790 msgid "Custom Unit" msgstr "Aangepaste eenheid" -#: common/models.py:1804 +#: common/models.py:1808 msgid "Unit symbol must be unique" msgstr "Eenheid symbool moet uniek zijn" -#: common/models.py:1819 +#: common/models.py:1823 msgid "Unit name must be a valid identifier" msgstr "Naam van de unit moet een geldig id zijn" -#: common/models.py:1838 +#: common/models.py:1842 msgid "Unit name" msgstr "Naam van eenheid" -#: common/models.py:1845 +#: common/models.py:1849 msgid "Symbol" msgstr "Symbool" -#: common/models.py:1846 +#: common/models.py:1850 msgid "Optional unit symbol" msgstr "Optionele eenheid symbool" -#: common/models.py:1852 +#: common/models.py:1856 msgid "Definition" msgstr "Definitie" -#: common/models.py:1853 +#: common/models.py:1857 msgid "Unit definition" msgstr "Definitie van eenheid" -#: common/models.py:1911 common/models.py:1974 stock/models.py:2967 +#: common/models.py:1917 common/models.py:1980 stock/models.py:2984 #: stock/serializers.py:247 msgid "Attachment" msgstr "Bijlage" -#: common/models.py:1928 +#: common/models.py:1934 msgid "Missing file" msgstr "Ontbrekend bestand" -#: common/models.py:1929 +#: common/models.py:1935 msgid "Missing external link" msgstr "Externe link ontbreekt" -#: common/models.py:1966 +#: common/models.py:1972 common/models.py:2488 msgid "Model type" msgstr "Model type" -#: common/models.py:1967 +#: common/models.py:1973 msgid "Target model type for image" msgstr "Doel type voor afbeelding" -#: common/models.py:1975 +#: common/models.py:1981 msgid "Select file to attach" msgstr "Bestand als bijlage selecteren" -#: common/models.py:1991 +#: common/models.py:1997 msgid "Comment" msgstr "Opmerking" -#: common/models.py:1992 +#: common/models.py:1998 msgid "Attachment comment" msgstr "Opmerking van bijlage" -#: common/models.py:2008 +#: common/models.py:2014 msgid "Upload date" msgstr "Uploaddatum" -#: common/models.py:2009 +#: common/models.py:2015 msgid "Date the file was uploaded" msgstr "Datum waarop het bestand is geüpload" -#: common/models.py:2013 +#: common/models.py:2019 msgid "File size" msgstr "Bestandsgrootte" -#: common/models.py:2013 +#: common/models.py:2019 msgid "File size in bytes" msgstr "Bestandsgrootte in bytes" -#: common/models.py:2051 common/serializers.py:684 +#: common/models.py:2057 common/serializers.py:688 msgid "Invalid model type specified for attachment" msgstr "Ongeldig modeltype opgegeven voor bijlage" -#: common/models.py:2072 +#: common/models.py:2078 msgid "Custom State" msgstr "Aangepaste staat" -#: common/models.py:2073 +#: common/models.py:2079 msgid "Custom States" msgstr "Aangepaste statussen" -#: common/models.py:2078 +#: common/models.py:2084 msgid "Reference Status Set" msgstr "Referentie status set" -#: common/models.py:2079 +#: common/models.py:2085 msgid "Status set that is extended with this custom state" msgstr "Status set die met deze aangepaste status wordt uitgebreid" -#: common/models.py:2083 generic/states/serializers.py:18 +#: common/models.py:2089 generic/states/serializers.py:18 msgid "Logical Key" msgstr "Logische sleutel" -#: common/models.py:2085 +#: common/models.py:2091 msgid "State logical key that is equal to this custom state in business logic" msgstr "Staat logische sleutel die gelijk is aan deze staat in zakelijke logica" -#: common/models.py:2090 common/models.py:2329 company/models.py:622 -#: machine/serializers.py:27 -#: report/templates/report/inventree_test_report.html:104 stock/models.py:2959 +#: common/models.py:2096 common/models.py:2335 machine/serializers.py:27 +#: report/templates/report/inventree_test_report.html:104 stock/models.py:2976 msgid "Value" msgstr "Waarde" -#: common/models.py:2091 +#: common/models.py:2097 msgid "Numerical value that will be saved in the models database" msgstr "De numerieke waarde die wordt opgeslagen in de modellendatabase" -#: common/models.py:2097 +#: common/models.py:2103 msgid "Name of the state" msgstr "Naam van de toestand" -#: common/models.py:2106 common/models.py:2335 generic/states/serializers.py:22 +#: common/models.py:2112 common/models.py:2341 generic/states/serializers.py:22 msgid "Label" msgstr "Label" -#: common/models.py:2107 +#: common/models.py:2113 msgid "Label that will be displayed in the frontend" msgstr "Label dat in de frontend getoond wordt" -#: common/models.py:2114 generic/states/serializers.py:24 +#: common/models.py:2120 generic/states/serializers.py:24 msgid "Color" msgstr "Kleur" -#: common/models.py:2115 +#: common/models.py:2121 msgid "Color that will be displayed in the frontend" msgstr "Kleur die in de frontend getoond wordt" -#: common/models.py:2123 +#: common/models.py:2129 msgid "Model" msgstr "Model" -#: common/models.py:2124 +#: common/models.py:2130 msgid "Model this state is associated with" msgstr "Model met deze staat is gekoppeld aan" -#: common/models.py:2139 +#: common/models.py:2145 msgid "Model must be selected" msgstr "Het model moet worden gekozen" -#: common/models.py:2142 +#: common/models.py:2148 msgid "Key must be selected" msgstr "Sleutel moet worden geselecteerd" -#: common/models.py:2145 +#: common/models.py:2151 msgid "Logical key must be selected" msgstr "Logische sleutel moet worden geselecteerd" -#: common/models.py:2149 +#: common/models.py:2155 msgid "Key must be different from logical key" msgstr "Sleutel moet anders zijn dan logische sleutel" -#: common/models.py:2156 +#: common/models.py:2162 msgid "Valid reference status class must be provided" msgstr "Geldige referentie status klasse moet worden opgegeven" -#: common/models.py:2162 +#: common/models.py:2168 msgid "Key must be different from the logical keys of the reference status" msgstr "Sleutel moet verschillen van de logische sleutels van de referentie status" -#: common/models.py:2169 +#: common/models.py:2175 msgid "Logical key must be in the logical keys of the reference status" msgstr "Logische sleutel moet in de logische sleutels van de referentiestatus staan" -#: common/models.py:2176 +#: common/models.py:2182 msgid "Name must be different from the names of the reference status" msgstr "Naam moet anders zijn dan de namen van de referentie status" -#: common/models.py:2216 common/models.py:2323 part/models.py:3889 +#: common/models.py:2222 common/models.py:2329 common/models.py:2533 msgid "Selection List" msgstr "Keuzelijst" -#: common/models.py:2217 +#: common/models.py:2223 msgid "Selection Lists" msgstr "Selectielijst" -#: common/models.py:2222 +#: common/models.py:2228 msgid "Name of the selection list" msgstr "Naam van de selectielijst" -#: common/models.py:2229 +#: common/models.py:2235 msgid "Description of the selection list" msgstr "Beschrijving van de selectielijst" -#: common/models.py:2235 part/models.py:1242 +#: common/models.py:2241 part/models.py:1330 msgid "Locked" msgstr "Vergrendeld" -#: common/models.py:2236 +#: common/models.py:2242 msgid "Is this selection list locked?" msgstr "Is deze selectielijst vergrendeld?" -#: common/models.py:2242 +#: common/models.py:2248 msgid "Can this selection list be used?" msgstr "Kan deze selectielijst worden gebruikt?" -#: common/models.py:2250 +#: common/models.py:2256 msgid "Source Plugin" msgstr "Bron plug-in" -#: common/models.py:2251 +#: common/models.py:2257 msgid "Plugin which provides the selection list" msgstr "Plug-in die de selectielijst biedt" -#: common/models.py:2256 +#: common/models.py:2262 msgid "Source String" msgstr "Bron tekenreeks" -#: common/models.py:2257 +#: common/models.py:2263 msgid "Optional string identifying the source used for this list" msgstr "Optionele tekenreeks die de bron identificeert die voor deze lijst wordt gebruikt" -#: common/models.py:2266 +#: common/models.py:2272 msgid "Default Entry" msgstr "Standaard vermelding" -#: common/models.py:2267 +#: common/models.py:2273 msgid "Default entry for this selection list" msgstr "Standaard vermelding voor deze selectielijst" -#: common/models.py:2272 common/models.py:2724 +#: common/models.py:2278 common/models.py:3145 msgid "Created" msgstr "Gecreëerd" -#: common/models.py:2273 +#: common/models.py:2279 msgid "Date and time that the selection list was created" msgstr "Datum en tijd waarop de selectielijst is aangemaakt" -#: common/models.py:2278 +#: common/models.py:2284 msgid "Last Updated" msgstr "Laatst bijgewerkt" -#: common/models.py:2279 +#: common/models.py:2285 msgid "Date and time that the selection list was last updated" msgstr "Datum en tijd waarop de selectielijst voor het laatst is bijgewerkt" -#: common/models.py:2313 +#: common/models.py:2319 msgid "Selection List Entry" msgstr "Selectielijst item" -#: common/models.py:2314 +#: common/models.py:2320 msgid "Selection List Entries" msgstr "Selectielijst item" -#: common/models.py:2324 +#: common/models.py:2330 msgid "Selection list to which this entry belongs" msgstr "Selectielijst waaraan dit item hoort" -#: common/models.py:2330 +#: common/models.py:2336 msgid "Value of the selection list entry" msgstr "Naam van de selectielijst" -#: common/models.py:2336 +#: common/models.py:2342 msgid "Label for the selection list entry" msgstr "Label voor het item in de selectielijst" -#: common/models.py:2342 +#: common/models.py:2348 msgid "Description of the selection list entry" msgstr "Beschrijving van het item in de selectielijst" -#: common/models.py:2349 +#: common/models.py:2355 msgid "Is this selection list entry active?" msgstr "Is dit item in deze lijst actief?" -#: common/models.py:2367 -msgid "Barcode Scan" -msgstr "Barcode Scan" +#: common/models.py:2387 +msgid "Parameter Template" +msgstr "Parameter sjabloon" -#: common/models.py:2371 importer/models.py:546 part/models.py:4060 +#: common/models.py:2388 +msgid "Parameter Templates" +msgstr "" + +#: common/models.py:2425 +msgid "Checkbox parameters cannot have units" +msgstr "Checkbox parameters kunnen geen eenheden bevatten" + +#: common/models.py:2430 +msgid "Checkbox parameters cannot have choices" +msgstr "Checkbox parameters kunnen geen eenheden bevatten" + +#: common/models.py:2450 part/models.py:3707 +msgid "Choices must be unique" +msgstr "Keuzes moeten uniek zijn" + +#: common/models.py:2467 +msgid "Parameter template name must be unique" +msgstr "De template van de parameter moet uniek zijn" + +#: common/models.py:2489 +msgid "Target model type for this parameter template" +msgstr "" + +#: common/models.py:2495 +msgid "Parameter Name" +msgstr "Parameternaam" + +#: common/models.py:2501 part/models.py:1283 +msgid "Units" +msgstr "Eenheden" + +#: common/models.py:2502 +msgid "Physical units for this parameter" +msgstr "Fysieke eenheden voor deze parameter" + +#: common/models.py:2510 +msgid "Parameter description" +msgstr "Parameter omschrijving" + +#: common/models.py:2516 +msgid "Checkbox" +msgstr "Selectievakje" + +#: common/models.py:2517 +msgid "Is this parameter a checkbox?" +msgstr "Is deze parameter een selectievak?" + +#: common/models.py:2522 part/models.py:3794 +msgid "Choices" +msgstr "Keuzes" + +#: common/models.py:2523 +msgid "Valid choices for this parameter (comma-separated)" +msgstr "Geldige keuzes voor deze parameter (komma gescheiden)" + +#: common/models.py:2534 +msgid "Selection list for this parameter" +msgstr "Lijst met selecties voor deze parameter" + +#: common/models.py:2539 part/models.py:3769 report/models.py:287 +msgid "Enabled" +msgstr "Ingeschakeld" + +#: common/models.py:2540 +msgid "Is this parameter template enabled?" +msgstr "" + +#: common/models.py:2581 +msgid "Parameter" +msgstr "" + +#: common/models.py:2582 +msgid "Parameters" +msgstr "" + +#: common/models.py:2628 +msgid "Invalid choice for parameter value" +msgstr "Ongeldige keuze voor parameter waarde" + +#: common/models.py:2698 common/serializers.py:783 +msgid "Invalid model type specified for parameter" +msgstr "" + +#: common/models.py:2734 +msgid "Model ID" +msgstr "" + +#: common/models.py:2735 +msgid "ID of the target model for this parameter" +msgstr "" + +#: common/models.py:2744 common/setting/system.py:450 report/models.py:373 +#: report/models.py:669 report/serializers.py:94 report/serializers.py:135 +#: stock/serializers.py:234 +msgid "Template" +msgstr "Sjabloon" + +#: common/models.py:2745 +msgid "Parameter template" +msgstr "" + +#: common/models.py:2750 common/models.py:2792 importer/models.py:546 msgid "Data" msgstr "Gegevens" -#: common/models.py:2372 +#: common/models.py:2751 +msgid "Parameter Value" +msgstr "Parameterwaarde" + +#: common/models.py:2760 company/models.py:810 order/serializers.py:894 +#: order/serializers.py:2064 part/models.py:4075 part/models.py:4444 +#: report/templates/report/inventree_bill_of_materials_report.html:140 +#: report/templates/report/inventree_purchase_order_report.html:39 +#: report/templates/report/inventree_return_order_report.html:27 +#: report/templates/report/inventree_sales_order_report.html:32 +#: report/templates/report/inventree_stock_location_report.html:105 +#: stock/serializers.py:813 +msgid "Note" +msgstr "Opmerking" + +#: common/models.py:2761 stock/serializers.py:718 +msgid "Optional note field" +msgstr "Optioneel notities veld" + +#: common/models.py:2788 +msgid "Barcode Scan" +msgstr "Barcode Scan" + +#: common/models.py:2793 msgid "Barcode data" msgstr "Barcode gegevens" -#: common/models.py:2383 +#: common/models.py:2804 msgid "User who scanned the barcode" msgstr "Gebruiker die de barcode gescand heeft" -#: common/models.py:2388 importer/models.py:69 +#: common/models.py:2809 importer/models.py:69 msgid "Timestamp" msgstr "Tijdstempel" -#: common/models.py:2389 +#: common/models.py:2810 msgid "Date and time of the barcode scan" msgstr "Datum en tijd van de streepjescode scan" -#: common/models.py:2395 +#: common/models.py:2816 msgid "URL endpoint which processed the barcode" msgstr "Adres eindpunt dat de streepjescode verwerkt" -#: common/models.py:2402 order/models.py:1832 plugin/serializers.py:93 +#: common/models.py:2823 order/models.py:1833 plugin/serializers.py:93 msgid "Context" msgstr "Inhoud" -#: common/models.py:2403 +#: common/models.py:2824 msgid "Context data for the barcode scan" msgstr "Contextgegevens voor de barcode scan" -#: common/models.py:2410 +#: common/models.py:2831 msgid "Response" msgstr "Reactie" -#: common/models.py:2411 +#: common/models.py:2832 msgid "Response data from the barcode scan" msgstr "Reactiegegevens van de barcode scan" -#: common/models.py:2417 report/templates/report/inventree_test_report.html:103 -#: stock/models.py:2953 +#: common/models.py:2838 report/templates/report/inventree_test_report.html:103 +#: stock/models.py:2970 msgid "Result" msgstr "Resultaat" -#: common/models.py:2418 +#: common/models.py:2839 msgid "Was the barcode scan successful?" msgstr "Was de barcode succesvol gescand?" -#: common/models.py:2500 +#: common/models.py:2921 msgid "An error occurred" msgstr "Er is een fout opgetreden" -#: common/models.py:2521 +#: common/models.py:2942 msgid "INVE-E8: Email log deletion is protected. Set INVENTREE_PROTECT_EMAIL_LOG to False to allow deletion." msgstr "INVE-E8: E-maillog verwijderen wordt beschermd. Zet INVENTREE_PROTECT_EMAIL_LOG naar False om verwijdering toe te staan." -#: common/models.py:2568 +#: common/models.py:2989 msgid "Email Message" msgstr "E-mailbericht" -#: common/models.py:2569 +#: common/models.py:2990 msgid "Email Messages" msgstr "E-mail berichten" -#: common/models.py:2576 +#: common/models.py:2997 msgid "Announced" msgstr "Aangekondigd" -#: common/models.py:2578 +#: common/models.py:2999 msgid "Sent" msgstr "Verzonden" -#: common/models.py:2579 +#: common/models.py:3000 msgid "Failed" msgstr "Mislukt" -#: common/models.py:2582 +#: common/models.py:3003 msgid "Delivered" msgstr "Geleverd" -#: common/models.py:2590 +#: common/models.py:3011 msgid "Confirmed" msgstr "Bevestigd" -#: common/models.py:2596 +#: common/models.py:3017 msgid "Inbound" msgstr "Inkomend" -#: common/models.py:2597 +#: common/models.py:3018 msgid "Outbound" msgstr "Uitgaand" -#: common/models.py:2602 +#: common/models.py:3023 msgid "No Reply" msgstr "Geen antwoord" -#: common/models.py:2603 +#: common/models.py:3024 msgid "Track Delivery" msgstr "Track levering" -#: common/models.py:2604 +#: common/models.py:3025 msgid "Track Read" msgstr "Track gelezen" -#: common/models.py:2605 +#: common/models.py:3026 msgid "Track Click" msgstr "Track Klik" -#: common/models.py:2608 common/models.py:2711 +#: common/models.py:3029 common/models.py:3132 msgid "Global ID" msgstr "Globaal ID" -#: common/models.py:2621 +#: common/models.py:3042 msgid "Identifier for this message (might be supplied by external system)" msgstr "Identificatie voor dit bericht (kan worden geleverd door een extern systeem)" -#: common/models.py:2628 +#: common/models.py:3049 msgid "Thread ID" msgstr "Discussie ID" -#: common/models.py:2630 +#: common/models.py:3051 msgid "Identifier for this message thread (might be supplied by external system)" msgstr "Identificatie voor deze bericht draad (kan worden geleverd door een extern systeem)" -#: common/models.py:2639 +#: common/models.py:3060 msgid "Thread" msgstr "Gesprek" -#: common/models.py:2640 +#: common/models.py:3061 msgid "Linked thread for this message" msgstr "Gekoppeld onderwerp voor dit bericht" -#: common/models.py:2656 -msgid "Prioriy" -msgstr "Prioriteit" +#: common/models.py:3077 +msgid "Priority" +msgstr "" -#: common/models.py:2698 +#: common/models.py:3119 msgid "Email Thread" msgstr "E-mail gesprekken" -#: common/models.py:2699 +#: common/models.py:3120 msgid "Email Threads" msgstr "E-mail gesprekken" -#: common/models.py:2705 generic/states/serializers.py:16 +#: common/models.py:3126 generic/states/serializers.py:16 #: machine/serializers.py:24 plugin/models.py:46 users/models.py:113 msgid "Key" msgstr "Sleutel" -#: common/models.py:2708 +#: common/models.py:3129 msgid "Unique key for this thread (used to identify the thread)" msgstr "Unieke sleutel voor deze thread (gebruikt om de conversatie te identificeren)" -#: common/models.py:2712 +#: common/models.py:3133 msgid "Unique identifier for this thread" msgstr "Unieke identificatie voor dit bericht" -#: common/models.py:2719 +#: common/models.py:3140 msgid "Started Internal" msgstr "Intern gestart" -#: common/models.py:2720 +#: common/models.py:3141 msgid "Was this thread started internally?" msgstr "Is dit onderwerp intern gestart?" -#: common/models.py:2725 +#: common/models.py:3146 msgid "Date and time that the thread was created" msgstr "Datum en tijd waarop de conversatie voor het laatst is bijgewerkt" -#: common/models.py:2730 +#: common/models.py:3151 msgid "Date and time that the thread was last updated" msgstr "Datum en tijd waarop de conversatie voor het laatst is bijgewerkt" @@ -2199,7 +2339,7 @@ msgstr "{verbose_name} is geannuleerd" msgid "A order that is assigned to you was canceled" msgstr "Een bestelling die aan u is toegewezen is geannuleerd" -#: common/notifications.py:73 common/notifications.py:80 order/api.py:594 +#: common/notifications.py:73 common/notifications.py:80 order/api.py:600 msgid "Items Received" msgstr "Ontvangen items" @@ -2211,88 +2351,93 @@ msgstr "Artikelen zijn ontvangen tegen een inkooporder" msgid "Items have been received against a return order" msgstr "Items zijn ontvangen tegen een retour bestelling" -#: common/serializers.py:145 +#: common/serializers.py:149 msgid "Indicates if the setting is overridden by an environment variable" msgstr "Geeft aan of de instelling overschreven wordt door een omgevingsvariabele" -#: common/serializers.py:147 +#: common/serializers.py:151 msgid "Override" msgstr "Overschrijven" -#: common/serializers.py:498 +#: common/serializers.py:502 msgid "Is Running" msgstr "Is actief" -#: common/serializers.py:504 +#: common/serializers.py:508 msgid "Pending Tasks" msgstr "Openstaande taken" -#: common/serializers.py:510 +#: common/serializers.py:514 msgid "Scheduled Tasks" msgstr "Geplande taken" -#: common/serializers.py:516 +#: common/serializers.py:520 msgid "Failed Tasks" msgstr "Mislukte taken" -#: common/serializers.py:531 +#: common/serializers.py:535 msgid "Task ID" msgstr "Taak ID" -#: common/serializers.py:531 +#: common/serializers.py:535 msgid "Unique task ID" msgstr "Unieke taak ID" -#: common/serializers.py:533 +#: common/serializers.py:537 msgid "Lock" msgstr "Vergrendel" -#: common/serializers.py:533 +#: common/serializers.py:537 msgid "Lock time" msgstr "Tijdstip van vergrendeling" -#: common/serializers.py:535 +#: common/serializers.py:539 msgid "Task name" msgstr "Naam van de taak" -#: common/serializers.py:537 +#: common/serializers.py:541 msgid "Function" msgstr "Functie" -#: common/serializers.py:537 +#: common/serializers.py:541 msgid "Function name" msgstr "Functie naam" -#: common/serializers.py:539 +#: common/serializers.py:543 msgid "Arguments" msgstr "Argumenten" -#: common/serializers.py:539 +#: common/serializers.py:543 msgid "Task arguments" msgstr "Taak argumenten" -#: common/serializers.py:542 +#: common/serializers.py:546 msgid "Keyword Arguments" msgstr "Trefwoord argumenten" -#: common/serializers.py:542 +#: common/serializers.py:546 msgid "Task keyword arguments" msgstr "Taak trefwoord argumenten" -#: common/serializers.py:652 +#: common/serializers.py:656 msgid "Filename" msgstr "Bestandsnaam" -#: common/serializers.py:659 importer/models.py:89 report/api.py:41 +#: common/serializers.py:663 common/serializers.py:730 +#: common/serializers.py:805 importer/models.py:89 report/api.py:41 #: report/models.py:293 report/serializers.py:52 msgid "Model Type" msgstr "Model type" -#: common/serializers.py:687 +#: common/serializers.py:691 msgid "User does not have permission to create or edit attachments for this model" msgstr "Gebruiker heeft geen toestemming om bijlagen voor dit model te maken of te bewerken" -#: common/serializers.py:731 common/serializers.py:834 +#: common/serializers.py:786 +msgid "User does not have permission to create or edit parameters for this model" +msgstr "" + +#: common/serializers.py:850 common/serializers.py:953 msgid "Selection list is locked" msgstr "Lijst met selecties is vergrendeld" @@ -2368,7 +2513,7 @@ msgstr "Tonen `over` beperken" msgid "Show the `about` modal only to superusers" msgstr "Toon de `over` modal alleen aan superusers" -#: common/setting/system.py:224 company/models.py:144 company/models.py:145 +#: common/setting/system.py:224 company/models.py:145 company/models.py:146 msgid "Company name" msgstr "Bedrijfsnaam" @@ -2411,8 +2556,8 @@ msgstr "Hoe vaak te controleren op updates (nul om uit te schakelen)" #: common/setting/system.py:253 common/setting/system.py:293 #: common/setting/system.py:306 common/setting/system.py:314 #: common/setting/system.py:321 common/setting/system.py:330 -#: common/setting/system.py:339 common/setting/system.py:588 -#: common/setting/system.py:616 common/setting/system.py:707 +#: common/setting/system.py:339 common/setting/system.py:580 +#: common/setting/system.py:608 common/setting/system.py:707 #: common/setting/system.py:1103 common/setting/system.py:1119 msgid "days" msgstr "dagen" @@ -2657,12 +2802,6 @@ msgstr "Kopiëer Categorieparameter Sjablonen" msgid "Copy category parameter templates when creating a part" msgstr "Kopieer categorieparameter sjablonen bij het aanmaken van een onderdeel" -#: common/setting/system.py:450 part/models.py:4054 report/models.py:373 -#: report/models.py:669 report/serializers.py:94 report/serializers.py:135 -#: stock/serializers.py:234 -msgid "Template" -msgstr "Sjabloon" - #: common/setting/system.py:451 msgid "Parts are templates by default" msgstr "Onderdelen zijn standaard sjablonen" @@ -2671,8 +2810,8 @@ msgstr "Onderdelen zijn standaard sjablonen" msgid "Parts can be assembled from other components by default" msgstr "Onderdelen kunnen standaard vanuit andere componenten worden samengesteld" -#: common/setting/system.py:462 part/models.py:1208 part/serializers.py:1734 -#: part/serializers.py:1741 +#: common/setting/system.py:462 part/models.py:1296 part/serializers.py:1599 +#: part/serializers.py:1606 msgid "Component" msgstr "Onderdeel" @@ -2680,7 +2819,7 @@ msgstr "Onderdeel" msgid "Parts can be used as sub-components by default" msgstr "Onderdelen kunnen standaard worden gebruikt als subcomponenten" -#: common/setting/system.py:468 part/models.py:1226 +#: common/setting/system.py:468 part/models.py:1314 msgid "Purchaseable" msgstr "Koopbaar" @@ -2688,7 +2827,7 @@ msgstr "Koopbaar" msgid "Parts are purchaseable by default" msgstr "Onderdelen kunnen standaard gekocht worden" -#: common/setting/system.py:474 part/models.py:1232 stock/api.py:643 +#: common/setting/system.py:474 part/models.py:1320 stock/api.py:643 msgid "Salable" msgstr "Verkoopbaar" @@ -2700,7 +2839,7 @@ msgstr "Onderdelen kunnen standaard verkocht worden" msgid "Parts are trackable by default" msgstr "Onderdelen kunnen standaard gevolgd worden" -#: common/setting/system.py:486 part/models.py:1248 +#: common/setting/system.py:486 part/models.py:1336 msgid "Virtual" msgstr "Virtueel" @@ -2749,158 +2888,158 @@ msgid "Part category default icon (empty means no icon)" msgstr "Standaardicoon voor onderdeel catagorie (leeg betekent geen pictogram)" #: common/setting/system.py:525 -msgid "Enforce Parameter Units" -msgstr "Forceer Parameter Eenheden" - -#: common/setting/system.py:527 -msgid "If units are provided, parameter values must match the specified units" -msgstr "Als er eenheden worden opgegeven, moeten parameterwaarden overeenkomen met de opgegeven eenheden" - -#: common/setting/system.py:533 msgid "Minimum Pricing Decimal Places" msgstr "Minimaal aantal prijs decimalen" -#: common/setting/system.py:535 +#: common/setting/system.py:527 msgid "Minimum number of decimal places to display when rendering pricing data" msgstr "Minimaal aantal decimalen om weer te geven bij het weergeven van prijsgegevens" -#: common/setting/system.py:546 +#: common/setting/system.py:538 msgid "Maximum Pricing Decimal Places" msgstr "Maximum prijs decimalen" -#: common/setting/system.py:548 +#: common/setting/system.py:540 msgid "Maximum number of decimal places to display when rendering pricing data" msgstr "Maximum aantal decimalen om weer te geven bij het weergeven van prijsgegevens" -#: common/setting/system.py:559 +#: common/setting/system.py:551 msgid "Use Supplier Pricing" msgstr "Gebruik leveranciersprijzen" -#: common/setting/system.py:561 +#: common/setting/system.py:553 msgid "Include supplier price breaks in overall pricing calculations" msgstr "Prijsvoordelen leveranciers opnemen in de totale prijsberekening" -#: common/setting/system.py:567 +#: common/setting/system.py:559 msgid "Purchase History Override" msgstr "Aankoopgeschiedenis overschrijven" -#: common/setting/system.py:569 +#: common/setting/system.py:561 msgid "Historical purchase order pricing overrides supplier price breaks" msgstr "Historische order prijzen overschrijven de prijzen van de leverancier" -#: common/setting/system.py:575 +#: common/setting/system.py:567 msgid "Use Stock Item Pricing" msgstr "Gebruik voorraaditem prijzen" -#: common/setting/system.py:577 +#: common/setting/system.py:569 msgid "Use pricing from manually entered stock data for pricing calculations" msgstr "Gebruik prijzen van handmatig ingevoerde voorraadgegevens voor prijsberekeningen" -#: common/setting/system.py:583 +#: common/setting/system.py:575 msgid "Stock Item Pricing Age" msgstr "Voorraad artikelprijs leeftijd" -#: common/setting/system.py:585 +#: common/setting/system.py:577 msgid "Exclude stock items older than this number of days from pricing calculations" msgstr "Voorraaditems ouder dan dit aantal dagen uitsluiten van prijsberekeningen" -#: common/setting/system.py:592 +#: common/setting/system.py:584 msgid "Use Variant Pricing" msgstr "Gebruik variantprijzen" -#: common/setting/system.py:593 +#: common/setting/system.py:585 msgid "Include variant pricing in overall pricing calculations" msgstr "Variantenprijzen opnemen in de totale prijsberekening" -#: common/setting/system.py:598 +#: common/setting/system.py:590 msgid "Active Variants Only" msgstr "Alleen actieve varianten" -#: common/setting/system.py:600 +#: common/setting/system.py:592 msgid "Only use active variant parts for calculating variant pricing" msgstr "Gebruik alleen actieve variantonderdelen voor het berekenen van variantprijzen" -#: common/setting/system.py:606 +#: common/setting/system.py:598 msgid "Auto Update Pricing" msgstr "Prijzen automatisch bijwerken" -#: common/setting/system.py:608 +#: common/setting/system.py:600 msgid "Automatically update part pricing when internal data changes" msgstr "Automatisch prijzen van onderdelen bijwerken wanneer interne gegevens veranderen" -#: common/setting/system.py:614 +#: common/setting/system.py:606 msgid "Pricing Rebuild Interval" msgstr "Prijzen Herbouw interval" -#: common/setting/system.py:615 +#: common/setting/system.py:607 msgid "Number of days before part pricing is automatically updated" msgstr "Aantal dagen voordat de prijzen voor onderdelen automatisch worden bijgewerkt" -#: common/setting/system.py:621 +#: common/setting/system.py:613 msgid "Internal Prices" msgstr "Interne Prijzen" -#: common/setting/system.py:622 +#: common/setting/system.py:614 msgid "Enable internal prices for parts" msgstr "Inschakelen van interne prijzen voor onderdelen" -#: common/setting/system.py:627 +#: common/setting/system.py:619 msgid "Internal Price Override" msgstr "Interne prijs overschrijven" -#: common/setting/system.py:629 +#: common/setting/system.py:621 msgid "If available, internal prices override price range calculations" msgstr "Indien beschikbaar, interne prijzen overschrijven berekeningen van prijsbereik" -#: common/setting/system.py:635 +#: common/setting/system.py:627 msgid "Enable label printing" msgstr "Printen van labels Inschakelen" -#: common/setting/system.py:636 +#: common/setting/system.py:628 msgid "Enable label printing from the web interface" msgstr "Printen van labels via de webinterface inschakelen" -#: common/setting/system.py:641 +#: common/setting/system.py:633 msgid "Label Image DPI" msgstr "Label Afbeelding DPI" -#: common/setting/system.py:643 +#: common/setting/system.py:635 msgid "DPI resolution when generating image files to supply to label printing plugins" msgstr "DPI resolutie bij het genereren van afbeelginsbestanden voor label printer plugins" -#: common/setting/system.py:649 +#: common/setting/system.py:641 msgid "Enable Reports" msgstr "Activeer Rapportages" -#: common/setting/system.py:650 +#: common/setting/system.py:642 msgid "Enable generation of reports" msgstr "Activeer het genereren van rapporten" -#: common/setting/system.py:655 +#: common/setting/system.py:647 msgid "Debug Mode" msgstr "Foutopsporingsmodus" -#: common/setting/system.py:656 +#: common/setting/system.py:648 msgid "Generate reports in debug mode (HTML output)" msgstr "Rapporten genereren in debug modus (HTML uitvoer)" -#: common/setting/system.py:661 +#: common/setting/system.py:653 msgid "Log Report Errors" msgstr "Log fouten" -#: common/setting/system.py:662 +#: common/setting/system.py:654 msgid "Log errors which occur when generating reports" msgstr "Registreer fouten die optreden bij het genereren van rapporten" -#: common/setting/system.py:667 plugin/builtin/labels/label_sheet.py:29 +#: common/setting/system.py:659 plugin/builtin/labels/label_sheet.py:29 #: report/models.py:381 msgid "Page Size" msgstr "Paginagrootte" -#: common/setting/system.py:668 +#: common/setting/system.py:660 msgid "Default page size for PDF reports" msgstr "Standaard paginagrootte voor PDF rapporten" +#: common/setting/system.py:665 +msgid "Enforce Parameter Units" +msgstr "Forceer Parameter Eenheden" + +#: common/setting/system.py:667 +msgid "If units are provided, parameter values must match the specified units" +msgstr "Als er eenheden worden opgegeven, moeten parameterwaarden overeenkomen met de opgegeven eenheden" + #: common/setting/system.py:673 msgid "Globally Unique Serials" msgstr "Globaal unieke serienummers" @@ -3456,688 +3595,677 @@ msgid "Display PDF reports in the browser, instead of downloading as a file" msgstr "PDF-rapporten in de browser weergeven, in plaats van als bestand te downloaden" #: common/setting/user.py:45 +msgid "Barcode Scanner in Form Fields" +msgstr "" + +#: common/setting/user.py:46 +msgid "Allow barcode scanner input in form fields" +msgstr "" + +#: common/setting/user.py:51 msgid "Search Parts" msgstr "Zoek Onderdelen" -#: common/setting/user.py:46 +#: common/setting/user.py:52 msgid "Display parts in search preview window" msgstr "Onderdelen weergeven in zoekscherm" -#: common/setting/user.py:51 +#: common/setting/user.py:57 msgid "Search Supplier Parts" msgstr "Zoek leveranciersonderdelen" -#: common/setting/user.py:52 +#: common/setting/user.py:58 msgid "Display supplier parts in search preview window" msgstr "Leveranciersonderdelen weergeven in zoekscherm" -#: common/setting/user.py:57 +#: common/setting/user.py:63 msgid "Search Manufacturer Parts" msgstr "Fabrikant onderdelen zoeken" -#: common/setting/user.py:58 +#: common/setting/user.py:64 msgid "Display manufacturer parts in search preview window" msgstr "Fabrikant onderdelen weergeven in zoekscherm" -#: common/setting/user.py:63 +#: common/setting/user.py:69 msgid "Hide Inactive Parts" msgstr "Inactieve Onderdelen Verbergen" -#: common/setting/user.py:64 +#: common/setting/user.py:70 msgid "Excluded inactive parts from search preview window" msgstr "Inactieve verkooporders weglaten in het zoekvenster" -#: common/setting/user.py:69 +#: common/setting/user.py:75 msgid "Search Categories" msgstr "Zoek categorieën" -#: common/setting/user.py:70 +#: common/setting/user.py:76 msgid "Display part categories in search preview window" msgstr "Toon onderdeelcategorieën in zoekvenster" -#: common/setting/user.py:75 +#: common/setting/user.py:81 msgid "Search Stock" msgstr "Zoek in Voorraad" -#: common/setting/user.py:76 +#: common/setting/user.py:82 msgid "Display stock items in search preview window" msgstr "Toon voorraad items in zoekvenster" -#: common/setting/user.py:81 +#: common/setting/user.py:87 msgid "Hide Unavailable Stock Items" msgstr "Verberg niet beschikbare voorraad items" -#: common/setting/user.py:83 +#: common/setting/user.py:89 msgid "Exclude stock items which are not available from the search preview window" msgstr "Voorraadartikelen die niet beschikbaar zijn niet in het zoekvenster weergeven" -#: common/setting/user.py:89 +#: common/setting/user.py:95 msgid "Search Locations" msgstr "Locaties doorzoeken" -#: common/setting/user.py:90 +#: common/setting/user.py:96 msgid "Display stock locations in search preview window" msgstr "Toon voorraadlocaties in zoekvenster" -#: common/setting/user.py:95 +#: common/setting/user.py:101 msgid "Search Companies" msgstr "Zoek bedrijven" -#: common/setting/user.py:96 +#: common/setting/user.py:102 msgid "Display companies in search preview window" msgstr "Toon bedrijven in zoekvenster" -#: common/setting/user.py:101 +#: common/setting/user.py:107 msgid "Search Build Orders" msgstr "Zoek Bouworders" -#: common/setting/user.py:102 +#: common/setting/user.py:108 msgid "Display build orders in search preview window" msgstr "Toon bouworders in zoekvenster" -#: common/setting/user.py:107 +#: common/setting/user.py:113 msgid "Search Purchase Orders" msgstr "Inkooporders Zoeken" -#: common/setting/user.py:108 +#: common/setting/user.py:114 msgid "Display purchase orders in search preview window" msgstr "Toon inkooporders in het zoekvenster" -#: common/setting/user.py:113 +#: common/setting/user.py:119 msgid "Exclude Inactive Purchase Orders" msgstr "Inactieve Inkooporders Weglaten" -#: common/setting/user.py:114 +#: common/setting/user.py:120 msgid "Exclude inactive purchase orders from search preview window" msgstr "Inactieve inkooporders weglaten in het zoekvenster" -#: common/setting/user.py:119 +#: common/setting/user.py:125 msgid "Search Sales Orders" msgstr "Verkooporders zoeken" -#: common/setting/user.py:120 +#: common/setting/user.py:126 msgid "Display sales orders in search preview window" msgstr "Toon verkooporders in het zoekvenster" -#: common/setting/user.py:125 +#: common/setting/user.py:131 msgid "Exclude Inactive Sales Orders" msgstr "Inactieve Verkooporders Weglaten" -#: common/setting/user.py:126 +#: common/setting/user.py:132 msgid "Exclude inactive sales orders from search preview window" msgstr "Inactieve verkooporders weglaten in het zoekvenster" -#: common/setting/user.py:131 +#: common/setting/user.py:137 msgid "Search Sales Order Shipments" msgstr "Verzendingen verkooporder doorzoeken" -#: common/setting/user.py:132 +#: common/setting/user.py:138 msgid "Display sales order shipments in search preview window" msgstr "Toon verkooporders in het zoekvenster" -#: common/setting/user.py:137 +#: common/setting/user.py:143 msgid "Search Return Orders" msgstr "Zoek retourorders" -#: common/setting/user.py:138 +#: common/setting/user.py:144 msgid "Display return orders in search preview window" msgstr "Toon bouworders in zoekvenster" -#: common/setting/user.py:143 +#: common/setting/user.py:149 msgid "Exclude Inactive Return Orders" msgstr "Inactieve retourbestellingen weglaten" -#: common/setting/user.py:144 +#: common/setting/user.py:150 msgid "Exclude inactive return orders from search preview window" msgstr "Inactieve retourorders uitsluiten in zoekvenster" -#: common/setting/user.py:149 +#: common/setting/user.py:155 msgid "Search Preview Results" msgstr "Zoekvoorbeeld resultaten" -#: common/setting/user.py:151 +#: common/setting/user.py:157 msgid "Number of results to show in each section of the search preview window" msgstr "Aantal resultaten om weer te geven in elk gedeelte van het zoekvenster" -#: common/setting/user.py:157 +#: common/setting/user.py:163 msgid "Regex Search" msgstr "Regex zoeken" -#: common/setting/user.py:158 +#: common/setting/user.py:164 msgid "Enable regular expressions in search queries" msgstr "Schakel reguliere expressies in zoekopdrachten in" -#: common/setting/user.py:163 +#: common/setting/user.py:169 msgid "Whole Word Search" msgstr "Hele woorden zoeken" -#: common/setting/user.py:164 +#: common/setting/user.py:170 msgid "Search queries return results for whole word matches" msgstr "Zoekopdrachten geven resultaat voor hele woord overeenkomsten" -#: common/setting/user.py:169 +#: common/setting/user.py:175 msgid "Search Notes" msgstr "Zoek notities" -#: common/setting/user.py:171 +#: common/setting/user.py:177 msgid "Search queries return results for matches from the item's notes" msgstr "Zoekopdrachten geven resultaten voor overeenkomsten met artikel notities" -#: common/setting/user.py:177 +#: common/setting/user.py:183 msgid "Escape Key Closes Forms" msgstr "Escape-toets sluit formulieren" -#: common/setting/user.py:178 +#: common/setting/user.py:184 msgid "Use the escape key to close modal forms" msgstr "Gebruik de Escape-toets om standaard formulieren te sluiten" -#: common/setting/user.py:183 +#: common/setting/user.py:189 msgid "Fixed Navbar" msgstr "Vaste navigatiebalk" -#: common/setting/user.py:184 +#: common/setting/user.py:190 msgid "The navbar position is fixed to the top of the screen" msgstr "De navigatiebalk positie is gefixeerd aan de bovenkant van het scherm" -#: common/setting/user.py:189 +#: common/setting/user.py:195 msgid "Fixed Table Headers" msgstr "Vaste tabelkoppen" -#: common/setting/user.py:190 +#: common/setting/user.py:196 msgid "Table headers are fixed to the top of the table" msgstr "Tabelkoppen zijn vast aan de bovenkant van de tabel" -#: common/setting/user.py:195 +#: common/setting/user.py:201 msgid "Show Spotlight" msgstr "Spotlight tonen" -#: common/setting/user.py:196 +#: common/setting/user.py:202 msgid "Enable spotlight navigation functionality" msgstr "Spotlight navigatie functie inschakelen" -#: common/setting/user.py:201 +#: common/setting/user.py:207 msgid "Navigation Icons" msgstr "Navigatiepictogrammen" -#: common/setting/user.py:202 +#: common/setting/user.py:208 msgid "Display icons in the navigation bar" msgstr "Pictogrammen weergeven in de navigatiebalk" -#: common/setting/user.py:207 +#: common/setting/user.py:213 msgid "Date Format" msgstr "Datum formaat" -#: common/setting/user.py:208 +#: common/setting/user.py:214 msgid "Preferred format for displaying dates" msgstr "Voorkeursindeling voor weergave van datums" -#: common/setting/user.py:221 +#: common/setting/user.py:227 msgid "Show Stock History" msgstr "Voorraadgeschiedenis weergeven" -#: common/setting/user.py:222 +#: common/setting/user.py:228 msgid "Display stock history information in the part detail page" msgstr "Toon informatie van de voorraadgeschiedenis op de detailpagina van het onderdeel" -#: common/setting/user.py:227 +#: common/setting/user.py:233 msgid "Show Last Breadcrumb" msgstr "Toon laatste broodkruimel" -#: common/setting/user.py:228 +#: common/setting/user.py:234 msgid "Show the current page in breadcrumbs" msgstr "Toon de huidige pagina in het kruimelpad" -#: common/setting/user.py:233 +#: common/setting/user.py:239 msgid "Show full stock location in tables" msgstr "Toon de volledige voorraadlocatie in de tabellen" -#: common/setting/user.py:235 +#: common/setting/user.py:241 msgid "Disabled: The full location path is displayed as a hover tooltip. Enabled: The full location path is displayed as plain text." msgstr "Uitgeschakeld: Het volledige pad van de locatie wordt weergegeven als een zwevende tooltip. Ingeschakeld: Het volledige locatie pad wordt weergegeven als platte tekst." -#: common/setting/user.py:241 +#: common/setting/user.py:247 msgid "Show full part categories in tables" msgstr "Toon alle onderdeel categorieën in tabellen" -#: common/setting/user.py:243 +#: common/setting/user.py:249 msgid "Disabled: The full category path is displayed as a hover tooltip. Enabled: The full category path is displayed as plain text." msgstr "Uitgeschakeld: Het volledige categorie pad wordt weergegeven als hover tooltip. Ingeschakeld: Het pad van de volledige categorie wordt weergegeven als platte tekst." -#: common/setting/user.py:249 +#: common/setting/user.py:255 msgid "Receive error reports" msgstr "Foutrapportages ontvangen" -#: common/setting/user.py:250 +#: common/setting/user.py:256 msgid "Receive notifications for system errors" msgstr "Meldingen ontvangen van systeemfouten" -#: common/setting/user.py:255 +#: common/setting/user.py:261 msgid "Last used printing machines" msgstr "Laatst gebruikte printer" -#: common/setting/user.py:256 +#: common/setting/user.py:262 msgid "Save the last used printing machines for a user" msgstr "Sla de laatst gebruikte printer op voor een gebruiker" -#: common/validators.py:34 +#: common/validators.py:38 +msgid "All models" +msgstr "" + +#: common/validators.py:63 msgid "No attachment model type provided" msgstr "Geen bijlage model type opgegeven" -#: common/validators.py:40 +#: common/validators.py:69 msgid "Invalid attachment model type" msgstr "Ongeldig bijlage type" -#: common/validators.py:81 +#: common/validators.py:110 msgid "Minimum places cannot be greater than maximum places" msgstr "Minimale plaatsen mogen niet groter zijn dan het maximum" -#: common/validators.py:93 +#: common/validators.py:122 msgid "Maximum places cannot be less than minimum places" msgstr "Maximum aantal plaatsen kan niet minder zijn dan minimaal" -#: common/validators.py:104 +#: common/validators.py:133 msgid "An empty domain is not allowed." msgstr "Een leeg domein is niet toegestaan." -#: common/validators.py:106 +#: common/validators.py:135 #, python-brace-format msgid "Invalid domain name: {domain}" msgstr "Ongeldige domeinnaam: {domain}" -#: common/validators.py:122 +#: common/validators.py:151 msgid "Value must be uppercase" msgstr "De waarde moet hoofdletters zijn" -#: common/validators.py:128 +#: common/validators.py:157 msgid "Value must be a valid variable identifier" msgstr "Waarde moet een geldige variabele id zijn" -#: company/api.py:147 +#: company/api.py:141 msgid "Part is Active" msgstr "Onderdeel is actief" -#: company/api.py:151 +#: company/api.py:145 msgid "Manufacturer is Active" msgstr "Fabrikant is actief" -#: company/api.py:286 +#: company/api.py:246 msgid "Supplier Part is Active" msgstr "Leveranciersonderdelen is actief" -#: company/api.py:290 +#: company/api.py:250 msgid "Internal Part is Active" msgstr "Intern onderdeel is actief" -#: company/api.py:295 +#: company/api.py:255 msgid "Supplier is Active" msgstr "Leverancier is actief" -#: company/api.py:307 company/models.py:520 company/serializers.py:457 -#: part/serializers.py:566 +#: company/api.py:267 company/models.py:522 company/serializers.py:502 +#: part/serializers.py:477 msgid "Manufacturer" msgstr "Fabrikant" -#: company/api.py:314 company/models.py:121 company/models.py:392 +#: company/api.py:274 company/models.py:122 company/models.py:393 #: stock/api.py:900 msgid "Company" msgstr "Bedrijf" -#: company/api.py:324 +#: company/api.py:284 msgid "Has Stock" msgstr "Heeft voorraad" -#: company/models.py:122 +#: company/models.py:123 msgid "Companies" msgstr "Bedrijven" -#: company/models.py:150 +#: company/models.py:151 msgid "Company description" msgstr "Bedrijf omschrijving" -#: company/models.py:151 +#: company/models.py:152 msgid "Description of the company" msgstr "Omschrijving van het bedrijf" -#: company/models.py:157 +#: company/models.py:158 msgid "Website" msgstr "Website" -#: company/models.py:158 +#: company/models.py:159 msgid "Company website URL" msgstr "URL bedrijfswebsite" -#: company/models.py:164 +#: company/models.py:165 msgid "Phone number" msgstr "Telefoonnummer" -#: company/models.py:166 +#: company/models.py:167 msgid "Contact phone number" msgstr "Telefoonnummer voor contact" -#: company/models.py:173 +#: company/models.py:174 msgid "Contact email address" msgstr "Contact e-mailadres" -#: company/models.py:178 company/models.py:296 order/models.py:513 +#: company/models.py:179 company/models.py:297 order/models.py:514 #: users/models.py:561 msgid "Contact" msgstr "Contact" -#: company/models.py:180 +#: company/models.py:181 msgid "Point of contact" msgstr "Contactpunt" -#: company/models.py:186 +#: company/models.py:187 msgid "Link to external company information" msgstr "Link naar externe bedrijfsinformatie" -#: company/models.py:191 +#: company/models.py:192 msgid "Is this company active?" msgstr "Is dit bedrijf actief?" -#: company/models.py:196 +#: company/models.py:197 msgid "Is customer" msgstr "Is klant" -#: company/models.py:197 +#: company/models.py:198 msgid "Do you sell items to this company?" msgstr "Verkoop je artikelen aan dit bedrijf?" -#: company/models.py:202 +#: company/models.py:203 msgid "Is supplier" msgstr "Is leverancier" -#: company/models.py:203 +#: company/models.py:204 msgid "Do you purchase items from this company?" msgstr "Koop je artikelen van dit bedrijf?" -#: company/models.py:208 +#: company/models.py:209 msgid "Is manufacturer" msgstr "Is fabrikant" -#: company/models.py:209 +#: company/models.py:210 msgid "Does this company manufacture parts?" msgstr "Fabriceert dit bedrijf onderdelen?" -#: company/models.py:217 +#: company/models.py:218 msgid "Default currency used for this company" msgstr "Standaardvaluta die gebruikt wordt voor dit bedrijf" -#: company/models.py:224 +#: company/models.py:225 msgid "Tax ID" msgstr "Btw-nr" -#: company/models.py:225 +#: company/models.py:226 msgid "Company Tax ID" msgstr "BTW-nummer van bedrijf" -#: company/models.py:335 order/models.py:523 order/models.py:2288 +#: company/models.py:336 order/models.py:524 order/models.py:2289 msgid "Address" msgstr "Adres" -#: company/models.py:336 +#: company/models.py:337 msgid "Addresses" msgstr "Adres" -#: company/models.py:393 +#: company/models.py:394 msgid "Select company" msgstr "Selecteer bedrijf" -#: company/models.py:398 +#: company/models.py:399 msgid "Address title" msgstr "Adres titel" -#: company/models.py:399 +#: company/models.py:400 msgid "Title describing the address entry" msgstr "Titel die het adres beschrijft" -#: company/models.py:405 +#: company/models.py:406 msgid "Primary address" msgstr "Primair adres" -#: company/models.py:406 +#: company/models.py:407 msgid "Set as primary address" msgstr "Instellen als primair adres" -#: company/models.py:411 +#: company/models.py:412 msgid "Line 1" msgstr "Lijn 1" -#: company/models.py:412 +#: company/models.py:413 msgid "Address line 1" msgstr "Adresregel 1" -#: company/models.py:418 +#: company/models.py:419 msgid "Line 2" msgstr "Lijn 2" -#: company/models.py:419 +#: company/models.py:420 msgid "Address line 2" msgstr "Adresregel 2" -#: company/models.py:425 company/models.py:426 +#: company/models.py:426 company/models.py:427 msgid "Postal code" msgstr "Post code" -#: company/models.py:432 +#: company/models.py:433 msgid "City/Region" msgstr "Plaats/regio" -#: company/models.py:433 +#: company/models.py:434 msgid "Postal code city/region" msgstr "Postcode plaats/regio" -#: company/models.py:439 +#: company/models.py:440 msgid "State/Province" msgstr "Staat/provincie" -#: company/models.py:440 +#: company/models.py:441 msgid "State or province" msgstr "Staat of provincie" -#: company/models.py:446 +#: company/models.py:447 msgid "Country" msgstr "Land" -#: company/models.py:447 +#: company/models.py:448 msgid "Address country" msgstr "Adres land" -#: company/models.py:453 +#: company/models.py:454 msgid "Courier shipping notes" msgstr "Koerier verzend notities" -#: company/models.py:454 +#: company/models.py:455 msgid "Notes for shipping courier" msgstr "Opmerkingen voor verzending koerier" -#: company/models.py:460 +#: company/models.py:461 msgid "Internal shipping notes" msgstr "Interne verzend notities" -#: company/models.py:461 +#: company/models.py:462 msgid "Shipping notes for internal use" msgstr "Verzend notities voor intern gebruik" -#: company/models.py:468 +#: company/models.py:469 msgid "Link to address information (external)" msgstr "Link naar adres gegevens (extern)" -#: company/models.py:492 company/models.py:609 company/models.py:832 -#: company/serializers.py:471 stock/api.py:561 +#: company/models.py:494 company/models.py:786 company/serializers.py:516 +#: stock/api.py:561 msgid "Manufacturer Part" msgstr "Fabrikant onderdeel" -#: company/models.py:509 company/models.py:800 stock/models.py:1025 +#: company/models.py:511 company/models.py:754 stock/models.py:1025 #: stock/serializers.py:407 msgid "Base Part" msgstr "Basis onderdeel" -#: company/models.py:511 company/models.py:802 +#: company/models.py:513 company/models.py:756 msgid "Select part" msgstr "Onderdeel selecteren" -#: company/models.py:521 +#: company/models.py:523 msgid "Select manufacturer" msgstr "Fabrikant selecteren" -#: company/models.py:527 company/serializers.py:479 order/serializers.py:734 -#: part/serializers.py:576 +#: company/models.py:529 company/serializers.py:524 order/serializers.py:745 +#: part/serializers.py:487 msgid "MPN" msgstr "Fabrikant artikel nummer" -#: company/models.py:528 stock/serializers.py:572 +#: company/models.py:530 stock/serializers.py:572 msgid "Manufacturer Part Number" msgstr "Fabrikant artikel nummer (MPN)" -#: company/models.py:535 +#: company/models.py:537 msgid "URL for external manufacturer part link" msgstr "URL voor externe link van het fabrikant onderdeel" -#: company/models.py:544 +#: company/models.py:546 msgid "Manufacturer part description" msgstr "Omschrijving onderdeel fabrikant" -#: company/models.py:597 -msgid "Manufacturer Part Parameter" -msgstr "Fabrikant onderdeel parameter" - -#: company/models.py:616 -msgid "Parameter name" -msgstr "Parameternaam" - -#: company/models.py:623 -msgid "Parameter value" -msgstr "Parameterwaarde" - -#: company/models.py:630 part/models.py:1195 part/models.py:3857 -msgid "Units" -msgstr "Eenheden" - -#: company/models.py:631 -msgid "Parameter units" -msgstr "Parameter eenheden" - -#: company/models.py:740 +#: company/models.py:694 msgid "Pack units must be compatible with the base part units" msgstr "Pakket eenheden moeten compatibel zijn met de basis onderdeel eenheden" -#: company/models.py:747 +#: company/models.py:701 msgid "Pack units must be greater than zero" msgstr "Hoeveelheid moet groter zijn dan nul" -#: company/models.py:761 +#: company/models.py:715 msgid "Linked manufacturer part must reference the same base part" msgstr "Gekoppeld fabrikant onderdeel moet verwijzen naar hetzelfde basis onderdeel" -#: company/models.py:810 company/serializers.py:449 company/serializers.py:467 -#: order/models.py:639 part/serializers.py:550 +#: company/models.py:764 company/serializers.py:494 company/serializers.py:512 +#: order/models.py:640 part/serializers.py:461 #: plugin/builtin/suppliers/digikey.py:26 plugin/builtin/suppliers/lcsc.py:27 #: plugin/builtin/suppliers/mouser.py:25 plugin/builtin/suppliers/tme.py:27 #: stock/api.py:567 templates/email/overdue_purchase_order.html:16 msgid "Supplier" msgstr "Leverancier" -#: company/models.py:811 +#: company/models.py:765 msgid "Select supplier" msgstr "Leverancier selecteren" -#: company/models.py:817 part/serializers.py:561 +#: company/models.py:771 part/serializers.py:472 msgid "Supplier stock keeping unit" msgstr "Voorraad beheers eenheid voor leveranciers" -#: company/models.py:823 +#: company/models.py:777 msgid "Is this supplier part active?" msgstr "Is dit leveranciersdeel actief?" -#: company/models.py:833 +#: company/models.py:787 msgid "Select manufacturer part" msgstr "Selecteer fabrikant onderdeel" -#: company/models.py:840 +#: company/models.py:794 msgid "URL for external supplier part link" msgstr "URL voor link externe leveranciers onderdeel" -#: company/models.py:849 +#: company/models.py:803 msgid "Supplier part description" msgstr "Omschrijving leveranciersdeel" -#: company/models.py:856 order/serializers.py:883 order/serializers.py:2047 -#: part/models.py:4070 part/models.py:4450 part/models.py:4819 -#: report/templates/report/inventree_bill_of_materials_report.html:140 -#: report/templates/report/inventree_purchase_order_report.html:39 -#: report/templates/report/inventree_return_order_report.html:27 -#: report/templates/report/inventree_sales_order_report.html:32 -#: report/templates/report/inventree_stock_location_report.html:105 -#: stock/serializers.py:813 -msgid "Note" -msgstr "Opmerking" - -#: company/models.py:865 part/models.py:2250 +#: company/models.py:819 part/models.py:2338 msgid "base cost" msgstr "basisprijs" -#: company/models.py:866 part/models.py:2251 +#: company/models.py:820 part/models.py:2339 msgid "Minimum charge (e.g. stocking fee)" msgstr "Minimale kosten (bijv. voorraadkosten)" -#: company/models.py:873 order/serializers.py:875 stock/models.py:1056 +#: company/models.py:827 order/serializers.py:886 stock/models.py:1056 #: stock/serializers.py:1606 msgid "Packaging" msgstr "Verpakking" -#: company/models.py:874 +#: company/models.py:828 msgid "Part packaging" msgstr "Onderdeel verpakking" -#: company/models.py:879 +#: company/models.py:833 msgid "Pack Quantity" msgstr "Pakket hoeveelheid" -#: company/models.py:881 +#: company/models.py:835 msgid "Total quantity supplied in a single pack. Leave empty for single items." msgstr "Totale hoeveelheid geleverd in één pakket. Laat leeg voor enkele afzonderlijke items." -#: company/models.py:900 part/models.py:2257 +#: company/models.py:854 part/models.py:2345 msgid "multiple" msgstr "meerdere" -#: company/models.py:901 +#: company/models.py:855 msgid "Order multiple" msgstr "Order meerdere" -#: company/models.py:913 +#: company/models.py:867 msgid "Quantity available from supplier" msgstr "Beschikbare hoeveelheid van leverancier" -#: company/models.py:919 +#: company/models.py:873 msgid "Availability Updated" msgstr "Beschikbaarheid bijgewerkt" -#: company/models.py:920 +#: company/models.py:874 msgid "Date of last update of availability data" msgstr "Datum van de laatste update van de beschikbaarheid gegevens" -#: company/models.py:1048 +#: company/models.py:1002 msgid "Supplier Price Break" msgstr "Prijsverschil van leverancier" -#: company/serializers.py:181 +#: company/serializers.py:184 +msgid "Primary Address" +msgstr "" + +#: company/serializers.py:186 msgid "Return the string representation for the primary address. This property exists for backwards compatibility." msgstr "Geeft als resultaat de string representatie voor het primaire adres. Deze eigenschap bestaat voor achterwaartse compatibiliteit." -#: company/serializers.py:212 +#: company/serializers.py:218 msgid "Default currency used for this supplier" msgstr "Standaardvaluta die gebruikt wordt voor deze leverancier" -#: company/serializers.py:248 +#: company/serializers.py:260 msgid "Company Name" msgstr "Bedrijfsnaam" -#: company/serializers.py:433 part/serializers.py:955 stock/serializers.py:428 +#: company/serializers.py:460 part/serializers.py:840 stock/serializers.py:428 msgid "In Stock" msgstr "Op voorraad" +#: company/serializers.py:477 +msgid "Price Breaks" +msgstr "" + #: data_exporter/mixins.py:325 data_exporter/mixins.py:403 msgid "Error occurred during data export" msgstr "Fout opgetreden tijdens data export" @@ -4290,7 +4418,7 @@ msgstr "Oorspronkelijke rij gegevens" msgid "Errors" msgstr "Fouten" -#: importer/models.py:550 part/serializers.py:1268 +#: importer/models.py:550 part/serializers.py:1133 msgid "Valid" msgstr "Geldig" @@ -4402,7 +4530,7 @@ msgstr "Aantal afdrukken voor elk label" msgid "Connected" msgstr "Verbonden" -#: machine/machine_types/label_printer.py:232 order/api.py:1795 +#: machine/machine_types/label_printer.py:232 order/api.py:1800 msgid "Unknown" msgstr "Onbekend" @@ -4530,105 +4658,105 @@ msgstr "" msgid "Maximum value for progress type, required if type=progress" msgstr "" -#: order/api.py:125 +#: order/api.py:130 msgid "Order Reference" msgstr "Order Referentie" -#: order/api.py:153 order/api.py:1207 +#: order/api.py:158 order/api.py:1212 msgid "Outstanding" msgstr "Uitmuntend" -#: order/api.py:169 +#: order/api.py:174 msgid "Has Project Code" msgstr "Heeft een projectcode" -#: order/api.py:183 order/models.py:488 +#: order/api.py:188 order/models.py:489 msgid "Created By" msgstr "Aangemaakt Door" -#: order/api.py:187 +#: order/api.py:192 msgid "Created Before" msgstr "Gemaakt vóór" -#: order/api.py:191 +#: order/api.py:196 msgid "Created After" msgstr "Gemaakt na" -#: order/api.py:195 +#: order/api.py:200 msgid "Has Start Date" msgstr "Heeft vervaldatum" -#: order/api.py:203 +#: order/api.py:208 msgid "Start Date Before" msgstr "Vervaldatum voor" -#: order/api.py:207 +#: order/api.py:212 msgid "Start Date After" msgstr "Vervaldatum na" -#: order/api.py:211 +#: order/api.py:216 msgid "Has Target Date" msgstr "Heeft doel datum" -#: order/api.py:219 +#: order/api.py:224 msgid "Target Date Before" msgstr "Doel datum voor" -#: order/api.py:223 +#: order/api.py:228 msgid "Target Date After" msgstr "Doel datum na" -#: order/api.py:274 +#: order/api.py:279 msgid "Has Pricing" msgstr "Heeft prijsstelling" -#: order/api.py:327 order/api.py:812 order/api.py:1490 +#: order/api.py:332 order/api.py:818 order/api.py:1495 msgid "Completed Before" msgstr "Voltooid voor" -#: order/api.py:331 order/api.py:816 order/api.py:1494 +#: order/api.py:336 order/api.py:822 order/api.py:1499 msgid "Completed After" msgstr "Voltooid na" -#: order/api.py:337 order/api.py:341 +#: order/api.py:342 order/api.py:346 msgid "External Build Order" msgstr "Externe Bouw Opdracht" -#: order/api.py:526 order/api.py:914 order/api.py:1170 order/models.py:1922 -#: order/models.py:2049 order/models.py:2099 order/models.py:2279 -#: order/models.py:2477 order/models.py:2999 order/models.py:3065 +#: order/api.py:532 order/api.py:919 order/api.py:1175 order/models.py:1923 +#: order/models.py:2050 order/models.py:2100 order/models.py:2280 +#: order/models.py:2478 order/models.py:3000 order/models.py:3066 msgid "Order" msgstr "Bestellen" -#: order/api.py:530 order/api.py:982 +#: order/api.py:536 order/api.py:987 msgid "Order Complete" msgstr "Bestelling voltooid" -#: order/api.py:562 order/api.py:566 order/serializers.py:745 +#: order/api.py:568 order/api.py:572 order/serializers.py:756 msgid "Internal Part" msgstr "Intern onderdeel" -#: order/api.py:584 +#: order/api.py:590 msgid "Order Pending" msgstr "Bestelling in behandeling" -#: order/api.py:967 +#: order/api.py:972 msgid "Completed" msgstr "Voltooid" -#: order/api.py:1223 +#: order/api.py:1228 msgid "Has Shipment" msgstr "Heeft verzending" -#: order/api.py:1789 order/models.py:552 order/models.py:1923 -#: order/models.py:2050 +#: order/api.py:1794 order/models.py:553 order/models.py:1924 +#: order/models.py:2051 #: report/templates/report/inventree_purchase_order_report.html:14 #: stock/serializers.py:129 templates/email/overdue_purchase_order.html:15 msgid "Purchase Order" msgstr "Inkooporder" -#: order/api.py:1791 order/models.py:1251 order/models.py:2100 -#: order/models.py:2280 order/models.py:2478 +#: order/api.py:1796 order/models.py:1252 order/models.py:2101 +#: order/models.py:2281 order/models.py:2479 #: report/templates/report/inventree_build_order_report.html:135 #: report/templates/report/inventree_sales_order_report.html:14 #: report/templates/report/inventree_sales_order_shipment_report.html:15 @@ -4636,8 +4764,8 @@ msgstr "Inkooporder" msgid "Sales Order" msgstr "Verkooporder" -#: order/api.py:1793 order/models.py:2649 order/models.py:3000 -#: order/models.py:3066 +#: order/api.py:1798 order/models.py:2650 order/models.py:3001 +#: order/models.py:3067 #: report/templates/report/inventree_return_order_report.html:13 #: templates/email/overdue_return_order.html:15 msgid "Return Order" @@ -4653,723 +4781,723 @@ msgstr "Totaalprijs" msgid "Total price for this order" msgstr "Totaalprijs van deze bestelling" -#: order/models.py:96 order/serializers.py:77 +#: order/models.py:96 order/serializers.py:78 msgid "Order Currency" msgstr "Valuta bestelling" -#: order/models.py:99 order/serializers.py:78 +#: order/models.py:99 order/serializers.py:79 msgid "Currency for this order (leave blank to use company default)" msgstr "Valuta voor deze order (laat leeg om de standaard van het bedrijf te gebruiken)" -#: order/models.py:324 +#: order/models.py:325 msgid "This order is locked and cannot be modified" msgstr "Deze bestelling is vergrendeld en kan niet worden gewijzigd" -#: order/models.py:376 +#: order/models.py:377 msgid "Contact does not match selected company" msgstr "Contact komt niet overeen met het geselecteerde bedrijf" -#: order/models.py:383 +#: order/models.py:384 msgid "Start date must be before target date" msgstr "Startdatum moet voor einddatum liggen" -#: order/models.py:390 +#: order/models.py:391 msgid "Address does not match selected company" msgstr "" -#: order/models.py:443 +#: order/models.py:444 msgid "Order description (optional)" msgstr "Bestelling beschrijving (optioneel)" -#: order/models.py:452 order/models.py:1806 +#: order/models.py:453 order/models.py:1807 msgid "Select project code for this order" msgstr "Selecteer projectcode voor deze bestelling" -#: order/models.py:458 order/models.py:1787 order/models.py:2344 +#: order/models.py:459 order/models.py:1788 order/models.py:2345 msgid "Link to external page" msgstr "Link naar externe pagina" -#: order/models.py:465 +#: order/models.py:466 msgid "Start date" msgstr "Start datum" -#: order/models.py:466 +#: order/models.py:467 msgid "Scheduled start date for this order" msgstr "Geplande startdatum voor deze bestelling" -#: order/models.py:472 order/models.py:1794 order/serializers.py:309 +#: order/models.py:473 order/models.py:1795 order/serializers.py:317 #: report/templates/report/inventree_build_order_report.html:125 msgid "Target Date" msgstr "Streefdatum" -#: order/models.py:474 +#: order/models.py:475 msgid "Expected date for order delivery. Order will be overdue after this date." msgstr "Verwachte datum voor levering van de bestelling. De bestelling wordt achterstallig na deze datum." -#: order/models.py:494 +#: order/models.py:495 msgid "Issue Date" msgstr "Datum van uitgifte" -#: order/models.py:495 +#: order/models.py:496 msgid "Date order was issued" msgstr "Order uitgegeven op datum" -#: order/models.py:503 +#: order/models.py:504 msgid "User or group responsible for this order" msgstr "Gebruiker of groep verantwoordelijk voor deze order" -#: order/models.py:514 +#: order/models.py:515 msgid "Point of contact for this order" msgstr "Contactpunt voor deze volgorde" -#: order/models.py:524 +#: order/models.py:525 msgid "Company address for this order" msgstr "Bedrijf adres voor deze bestelling" -#: order/models.py:615 order/models.py:1312 +#: order/models.py:616 order/models.py:1313 msgid "Order reference" msgstr "Orderreferentie" -#: order/models.py:624 order/models.py:1336 order/models.py:2737 +#: order/models.py:625 order/models.py:1337 order/models.py:2738 #: stock/serializers.py:559 stock/serializers.py:988 users/models.py:542 msgid "Status" msgstr "Status" -#: order/models.py:625 +#: order/models.py:626 msgid "Purchase order status" msgstr "Inkooporder status" -#: order/models.py:640 +#: order/models.py:641 msgid "Company from which the items are being ordered" msgstr "Bedrijf waar de artikelen van worden besteld" -#: order/models.py:651 +#: order/models.py:652 msgid "Supplier Reference" msgstr "Leveranciersreferentie" -#: order/models.py:652 +#: order/models.py:653 msgid "Supplier order reference code" msgstr "Order referentiecode van leverancier" -#: order/models.py:661 +#: order/models.py:662 msgid "received by" msgstr "ontvangen door" -#: order/models.py:668 order/models.py:2752 +#: order/models.py:669 order/models.py:2753 msgid "Date order was completed" msgstr "Order voltooid op datum" -#: order/models.py:677 order/models.py:1981 +#: order/models.py:678 order/models.py:1982 msgid "Destination" msgstr "Bestemming" -#: order/models.py:678 order/models.py:1985 +#: order/models.py:679 order/models.py:1986 msgid "Destination for received items" msgstr "Bestemming voor ontvangen items" -#: order/models.py:724 +#: order/models.py:725 msgid "Part supplier must match PO supplier" msgstr "Onderdeelleverancier moet overeenkomen met de Inkooporderleverancier" -#: order/models.py:994 +#: order/models.py:995 msgid "Line item does not match purchase order" msgstr "Artikelregel komt niet overeen met inkooporder" -#: order/models.py:997 +#: order/models.py:998 msgid "Line item is missing a linked part" msgstr "Regelitem mist een gekoppeld deel" -#: order/models.py:1011 +#: order/models.py:1012 msgid "Quantity must be a positive number" msgstr "Hoeveelheid moet een positief getal zijn" -#: order/models.py:1323 order/models.py:2724 stock/models.py:1078 +#: order/models.py:1324 order/models.py:2725 stock/models.py:1078 #: stock/models.py:1079 stock/serializers.py:1322 #: templates/email/overdue_return_order.html:16 #: templates/email/overdue_sales_order.html:16 msgid "Customer" msgstr "Klant" -#: order/models.py:1324 +#: order/models.py:1325 msgid "Company to which the items are being sold" msgstr "Bedrijf waaraan de artikelen worden verkocht" -#: order/models.py:1337 +#: order/models.py:1338 msgid "Sales order status" msgstr "Verkooporder status" -#: order/models.py:1348 order/models.py:2744 +#: order/models.py:1349 order/models.py:2745 msgid "Customer Reference " msgstr "Klantreferentie " -#: order/models.py:1349 order/models.py:2745 +#: order/models.py:1350 order/models.py:2746 msgid "Customer order reference code" msgstr "Klant order referentiecode" -#: order/models.py:1353 order/models.py:2296 +#: order/models.py:1354 order/models.py:2297 msgid "Shipment Date" msgstr "Verzenddatum" -#: order/models.py:1362 +#: order/models.py:1363 msgid "shipped by" msgstr "verzonden door" -#: order/models.py:1413 +#: order/models.py:1414 msgid "Order is already complete" msgstr "Bestelling is al afgerond" -#: order/models.py:1416 +#: order/models.py:1417 msgid "Order is already cancelled" msgstr "Order is al geannuleerd" -#: order/models.py:1420 +#: order/models.py:1421 msgid "Only an open order can be marked as complete" msgstr "Alleen een open bestelling kan als voltooid worden gemarkeerd" -#: order/models.py:1424 +#: order/models.py:1425 msgid "Order cannot be completed as there are incomplete shipments" msgstr "Bestelling kan niet worden voltooid omdat er onvolledige verzendingen aanwezig zijn" -#: order/models.py:1429 +#: order/models.py:1430 msgid "Order cannot be completed as there are incomplete allocations" msgstr "Order kan niet worden voltooid omdat er onvolledige artikelen aanwezig zijn" -#: order/models.py:1438 +#: order/models.py:1439 msgid "Order cannot be completed as there are incomplete line items" msgstr "Order kan niet worden voltooid omdat er onvolledige artikelen aanwezig zijn" -#: order/models.py:1733 order/models.py:1749 +#: order/models.py:1734 order/models.py:1750 msgid "The order is locked and cannot be modified" msgstr "De bestelling is vergrendeld en kan niet worden gewijzigd" -#: order/models.py:1757 +#: order/models.py:1758 msgid "Item quantity" msgstr "Hoeveelheid artikelen" -#: order/models.py:1774 +#: order/models.py:1775 msgid "Line item reference" msgstr "Artikelregel referentie" -#: order/models.py:1781 +#: order/models.py:1782 msgid "Line item notes" msgstr "Artikel notities" -#: order/models.py:1796 +#: order/models.py:1797 msgid "Target date for this line item (leave blank to use the target date from the order)" msgstr "Doeldatum voor dit regelitem (laat leeg om de doeldatum van de bestelling te gebruiken)" -#: order/models.py:1826 +#: order/models.py:1827 msgid "Line item description (optional)" msgstr "Regelomschrijving (optioneel)" -#: order/models.py:1833 +#: order/models.py:1834 msgid "Additional context for this line" msgstr "Additionele context voor deze regel" -#: order/models.py:1843 +#: order/models.py:1844 msgid "Unit price" msgstr "Stukprijs" -#: order/models.py:1862 +#: order/models.py:1863 msgid "Purchase Order Line Item" msgstr "Inkooporder regel item" -#: order/models.py:1889 +#: order/models.py:1890 msgid "Supplier part must match supplier" msgstr "Leveranciersonderdeel moet overeenkomen met leverancier" -#: order/models.py:1894 +#: order/models.py:1895 msgid "Build order must be marked as external" msgstr "Bouw bestelling moet worden gemarkeerd als extern" -#: order/models.py:1901 +#: order/models.py:1902 msgid "Build orders can only be linked to assembly parts" msgstr "Bestellingen kunnen alleen aan assemblageonderdelen worden gekoppeld" -#: order/models.py:1907 +#: order/models.py:1908 msgid "Build order part must match line item part" msgstr "De bouw van het order deel moet overeenkomen met regel onderdeel" -#: order/models.py:1942 +#: order/models.py:1943 msgid "Supplier part" msgstr "Leveranciersonderdeel" -#: order/models.py:1949 +#: order/models.py:1950 msgid "Received" msgstr "Ontvangen" -#: order/models.py:1950 +#: order/models.py:1951 msgid "Number of items received" msgstr "Aantal ontvangen artikelen" -#: order/models.py:1958 stock/models.py:1201 stock/serializers.py:637 +#: order/models.py:1959 stock/models.py:1201 stock/serializers.py:637 msgid "Purchase Price" msgstr "Inkoopprijs" -#: order/models.py:1959 +#: order/models.py:1960 msgid "Unit purchase price" msgstr "Aankoopprijs per stuk" -#: order/models.py:1975 +#: order/models.py:1976 msgid "External Build Order to be fulfilled by this line item" msgstr "Externe Build Order moet aan deze regel voldoen" -#: order/models.py:2038 +#: order/models.py:2039 msgid "Purchase Order Extra Line" msgstr "Extra regel inkooporder" -#: order/models.py:2067 +#: order/models.py:2068 msgid "Sales Order Line Item" msgstr "Verkooporder regel item" -#: order/models.py:2092 +#: order/models.py:2093 msgid "Only salable parts can be assigned to a sales order" msgstr "Alleen verkoopbare onderdelen kunnen aan een verkooporder worden toegewezen" -#: order/models.py:2118 +#: order/models.py:2119 msgid "Sale Price" msgstr "Verkoopprijs" -#: order/models.py:2119 +#: order/models.py:2120 msgid "Unit sale price" msgstr "Prijs per stuk" -#: order/models.py:2128 order/status_codes.py:50 +#: order/models.py:2129 order/status_codes.py:50 msgid "Shipped" msgstr "Verzonden" -#: order/models.py:2129 +#: order/models.py:2130 msgid "Shipped quantity" msgstr "Verzonden hoeveelheid" -#: order/models.py:2240 +#: order/models.py:2241 msgid "Sales Order Shipment" msgstr "Verzending van verkooporder" -#: order/models.py:2253 +#: order/models.py:2254 msgid "Shipment address must match the customer" msgstr "" -#: order/models.py:2289 +#: order/models.py:2290 msgid "Shipping address for this shipment" msgstr "" -#: order/models.py:2297 +#: order/models.py:2298 msgid "Date of shipment" msgstr "Datum van verzending" -#: order/models.py:2303 +#: order/models.py:2304 msgid "Delivery Date" msgstr "Leveringsdatum" -#: order/models.py:2304 +#: order/models.py:2305 msgid "Date of delivery of shipment" msgstr "Datum van levering van zending" -#: order/models.py:2312 +#: order/models.py:2313 msgid "Checked By" msgstr "Gecontroleerd door" -#: order/models.py:2313 +#: order/models.py:2314 msgid "User who checked this shipment" msgstr "Gebruiker die deze zending gecontroleerd heeft" -#: order/models.py:2320 order/models.py:2574 order/serializers.py:1711 -#: order/serializers.py:1835 +#: order/models.py:2321 order/models.py:2575 order/serializers.py:1725 +#: order/serializers.py:1849 #: report/templates/report/inventree_sales_order_shipment_report.html:14 msgid "Shipment" msgstr "Zending" -#: order/models.py:2321 +#: order/models.py:2322 msgid "Shipment number" msgstr "Zendingsnummer" -#: order/models.py:2329 +#: order/models.py:2330 msgid "Tracking Number" msgstr "Volgnummer" -#: order/models.py:2330 +#: order/models.py:2331 msgid "Shipment tracking information" msgstr "Zending volginformatie" -#: order/models.py:2337 +#: order/models.py:2338 msgid "Invoice Number" msgstr "Factuurnummer" -#: order/models.py:2338 +#: order/models.py:2339 msgid "Reference number for associated invoice" msgstr "Referentienummer voor bijbehorende factuur" -#: order/models.py:2377 +#: order/models.py:2378 msgid "Shipment has already been sent" msgstr "Verzending is al verzonden" -#: order/models.py:2380 +#: order/models.py:2381 msgid "Shipment has no allocated stock items" msgstr "Zending heeft geen toegewezen voorraadartikelen" -#: order/models.py:2387 +#: order/models.py:2388 msgid "Shipment must be checked before it can be completed" msgstr "" -#: order/models.py:2466 +#: order/models.py:2467 msgid "Sales Order Extra Line" msgstr "Verkooporder extra regel" -#: order/models.py:2495 +#: order/models.py:2496 msgid "Sales Order Allocation" msgstr "Toewijzing verkooporder" -#: order/models.py:2518 order/models.py:2520 +#: order/models.py:2519 order/models.py:2521 msgid "Stock item has not been assigned" msgstr "Voorraadartikel is niet toegewezen" -#: order/models.py:2527 +#: order/models.py:2528 msgid "Cannot allocate stock item to a line with a different part" msgstr "Kan het voorraadartikel niet toewijzen aan een regel met een ander onderdeel" -#: order/models.py:2530 +#: order/models.py:2531 msgid "Cannot allocate stock to a line without a part" msgstr "Kan voorraad niet toewijzen aan een regel zonder onderdeel" -#: order/models.py:2533 +#: order/models.py:2534 msgid "Allocation quantity cannot exceed stock quantity" msgstr "Toewijzingshoeveelheid kan niet hoger zijn dan de voorraadhoeveelheid" -#: order/models.py:2552 order/serializers.py:1581 +#: order/models.py:2553 order/serializers.py:1595 msgid "Quantity must be 1 for serialized stock item" msgstr "Hoeveelheid moet 1 zijn voor geserialiseerd voorraadartikel" -#: order/models.py:2555 +#: order/models.py:2556 msgid "Sales order does not match shipment" msgstr "Verkooporder komt niet overeen met zending" -#: order/models.py:2556 plugin/base/barcodes/api.py:642 +#: order/models.py:2557 plugin/base/barcodes/api.py:642 msgid "Shipment does not match sales order" msgstr "Verzending komt niet overeen met verkooporder" -#: order/models.py:2564 +#: order/models.py:2565 msgid "Line" msgstr "Regel" -#: order/models.py:2575 +#: order/models.py:2576 msgid "Sales order shipment reference" msgstr "Verzendreferentie verkooporder" -#: order/models.py:2588 order/models.py:3007 +#: order/models.py:2589 order/models.py:3008 msgid "Item" msgstr "Artikel" -#: order/models.py:2589 +#: order/models.py:2590 msgid "Select stock item to allocate" msgstr "Selecteer voorraadartikel om toe te wijzen" -#: order/models.py:2598 +#: order/models.py:2599 msgid "Enter stock allocation quantity" msgstr "Voer voorraadtoewijzingshoeveelheid in" -#: order/models.py:2713 +#: order/models.py:2714 msgid "Return Order reference" msgstr "Retour order referentie" -#: order/models.py:2725 +#: order/models.py:2726 msgid "Company from which items are being returned" msgstr "Bedrijf van waaruit items worden teruggestuurd" -#: order/models.py:2738 +#: order/models.py:2739 msgid "Return order status" msgstr "Retour bestelling status" -#: order/models.py:2965 +#: order/models.py:2966 msgid "Return Order Line Item" msgstr "Retourneer bestelregel item" -#: order/models.py:2978 +#: order/models.py:2979 msgid "Stock item must be specified" msgstr "Voorraad item moet worden opgegeven" -#: order/models.py:2982 +#: order/models.py:2983 msgid "Return quantity exceeds stock quantity" msgstr "Retour hoeveelheid overschrijdt voorraad hoeveelheid" -#: order/models.py:2987 +#: order/models.py:2988 msgid "Return quantity must be greater than zero" msgstr "Het retour aantal moet groter zijn dan nul" -#: order/models.py:2992 +#: order/models.py:2993 msgid "Invalid quantity for serialized stock item" msgstr "Ongeldige hoeveelheid voor geserialiseerde voorraad" -#: order/models.py:3008 +#: order/models.py:3009 msgid "Select item to return from customer" msgstr "Selecteer te retourneren product van de klant" -#: order/models.py:3023 +#: order/models.py:3024 msgid "Received Date" msgstr "Ontvangst datum" -#: order/models.py:3024 +#: order/models.py:3025 msgid "The date this this return item was received" msgstr "De datum waarop dit retour item is ontvangen" -#: order/models.py:3036 +#: order/models.py:3037 msgid "Outcome" msgstr "Resultaat" -#: order/models.py:3037 +#: order/models.py:3038 msgid "Outcome for this line item" msgstr "Resultaat van deze regel item" -#: order/models.py:3044 +#: order/models.py:3045 msgid "Cost associated with return or repair for this line item" msgstr "Kosten geassocieerd met teruggave of reparatie voor deze regel item" -#: order/models.py:3054 +#: order/models.py:3055 msgid "Return Order Extra Line" msgstr "Retourneren extra regel" -#: order/serializers.py:91 +#: order/serializers.py:92 msgid "Order ID" msgstr "Bestelling ID" -#: order/serializers.py:91 +#: order/serializers.py:92 msgid "ID of the order to duplicate" msgstr "ID van de bestelling om te dupliceren" -#: order/serializers.py:97 +#: order/serializers.py:98 msgid "Copy Lines" msgstr "Kopieer regels" -#: order/serializers.py:98 +#: order/serializers.py:99 msgid "Copy line items from the original order" msgstr "Kopieer regelitems uit de oorspronkelijke bestelling" -#: order/serializers.py:104 +#: order/serializers.py:105 msgid "Copy Extra Lines" msgstr "Extra regels kopiëren" -#: order/serializers.py:105 +#: order/serializers.py:106 msgid "Copy extra line items from the original order" msgstr "Extra regelitems van de oorspronkelijke bestelling kopiëren" -#: order/serializers.py:120 +#: order/serializers.py:121 #: report/templates/report/inventree_purchase_order_report.html:29 #: report/templates/report/inventree_return_order_report.html:19 #: report/templates/report/inventree_sales_order_report.html:22 msgid "Line Items" msgstr "Artikelen" -#: order/serializers.py:125 +#: order/serializers.py:126 msgid "Completed Lines" msgstr "Afgeronde regel items" -#: order/serializers.py:192 +#: order/serializers.py:199 msgid "Duplicate Order" msgstr "Artikel dupliceren" -#: order/serializers.py:193 +#: order/serializers.py:200 msgid "Specify options for duplicating this order" msgstr "Specificeer opties voor het dupliceren van deze bestelling" -#: order/serializers.py:270 +#: order/serializers.py:278 msgid "Invalid order ID" msgstr "Ongeldige order ID" -#: order/serializers.py:466 +#: order/serializers.py:477 msgid "Supplier Name" msgstr "Leveranciers Naam" -#: order/serializers.py:510 +#: order/serializers.py:521 msgid "Order cannot be cancelled" msgstr "Order kan niet worden geannuleerd" -#: order/serializers.py:525 order/serializers.py:1602 +#: order/serializers.py:536 order/serializers.py:1616 msgid "Allow order to be closed with incomplete line items" msgstr "Toestaan order te sluiten met onvolledige regelitems" -#: order/serializers.py:535 order/serializers.py:1612 +#: order/serializers.py:546 order/serializers.py:1626 msgid "Order has incomplete line items" msgstr "Bestelling heeft onvolledige regelitems" -#: order/serializers.py:665 +#: order/serializers.py:676 msgid "Order is not open" msgstr "Order is niet open" -#: order/serializers.py:692 +#: order/serializers.py:703 msgid "Auto Pricing" msgstr "Automatisch prijzen" -#: order/serializers.py:694 +#: order/serializers.py:705 msgid "Automatically calculate purchase price based on supplier part data" msgstr "Koopprijs automatisch berekenen gebaseerd op leveranciers \n" " onderdelen gegevens" -#: order/serializers.py:704 +#: order/serializers.py:715 msgid "Purchase price currency" msgstr "Valuta Inkoopprijs" -#: order/serializers.py:718 +#: order/serializers.py:729 msgid "Merge Items" msgstr "Items samenvoegen" -#: order/serializers.py:720 +#: order/serializers.py:731 msgid "Merge items with the same part, destination and target date into one line item" msgstr "Items met hetzelfde onderdeel, bestemming en doeldatum samenvoegen in één regelitem" -#: order/serializers.py:727 part/serializers.py:560 +#: order/serializers.py:738 part/serializers.py:471 msgid "SKU" msgstr "SKU" -#: order/serializers.py:741 part/models.py:1089 part/serializers.py:372 +#: order/serializers.py:752 part/models.py:1177 part/serializers.py:337 msgid "Internal Part Number" msgstr "Intern Onderdeelnummer" -#: order/serializers.py:749 +#: order/serializers.py:760 msgid "Internal Part Name" msgstr "Interne naam onderdeel" -#: order/serializers.py:765 +#: order/serializers.py:776 msgid "Supplier part must be specified" msgstr "Leveranciersonderdeel moet worden gespecificeerd" -#: order/serializers.py:768 +#: order/serializers.py:779 msgid "Purchase order must be specified" msgstr "Inkooporder moet worden gespecificeerd" -#: order/serializers.py:776 +#: order/serializers.py:787 msgid "Supplier must match purchase order" msgstr "De leverancier moet overeenkomen met de inkooporder" -#: order/serializers.py:777 +#: order/serializers.py:788 msgid "Purchase order must match supplier" msgstr "Inkooporder moet overeenkomen met de leverancier" -#: order/serializers.py:825 order/serializers.py:1682 +#: order/serializers.py:836 order/serializers.py:1696 msgid "Line Item" msgstr "Artikel" -#: order/serializers.py:834 order/serializers.py:974 order/serializers.py:2043 +#: order/serializers.py:845 order/serializers.py:985 order/serializers.py:2060 msgid "Select destination location for received items" msgstr "Selecteer bestemmingslocatie voor ontvangen artikelen" -#: order/serializers.py:850 +#: order/serializers.py:861 msgid "Enter batch code for incoming stock items" msgstr "Voer batch code in voor inkomende voorraad items" -#: order/serializers.py:857 stock/models.py:1160 +#: order/serializers.py:868 stock/models.py:1160 #: templates/email/stale_stock_notification.html:22 users/models.py:137 msgid "Expiry Date" msgstr "Vervaldatum" -#: order/serializers.py:858 +#: order/serializers.py:869 msgid "Enter expiry date for incoming stock items" msgstr "Voer vervaldatum in voor inkomende voorraad items" -#: order/serializers.py:866 +#: order/serializers.py:877 msgid "Enter serial numbers for incoming stock items" msgstr "Voer serienummers in voor inkomende voorraadartikelen" -#: order/serializers.py:876 +#: order/serializers.py:887 msgid "Override packaging information for incoming stock items" msgstr "Overschrijf verpakkingsinformatie voor binnenkomende voorraad" -#: order/serializers.py:884 order/serializers.py:2048 +#: order/serializers.py:895 order/serializers.py:2065 msgid "Additional note for incoming stock items" msgstr "Extra opmerking voor inkomende voorraad items" -#: order/serializers.py:891 +#: order/serializers.py:902 msgid "Barcode" msgstr "Streepjescode" -#: order/serializers.py:892 +#: order/serializers.py:903 msgid "Scanned barcode" msgstr "Gescande streepjescode" -#: order/serializers.py:908 +#: order/serializers.py:919 msgid "Barcode is already in use" msgstr "Streepjescode is al in gebruik" -#: order/serializers.py:991 order/serializers.py:2067 +#: order/serializers.py:1002 order/serializers.py:2084 msgid "Line items must be provided" msgstr "Artikelen moeten worden opgegeven" -#: order/serializers.py:1010 +#: order/serializers.py:1021 msgid "Destination location must be specified" msgstr "Bestemmingslocatie moet worden opgegeven" -#: order/serializers.py:1017 +#: order/serializers.py:1028 msgid "Supplied barcode values must be unique" msgstr "Geleverde streepjescodewaarden moeten uniek zijn" -#: order/serializers.py:1121 +#: order/serializers.py:1135 msgid "Shipments" msgstr "Verzendingen" -#: order/serializers.py:1125 +#: order/serializers.py:1139 msgid "Completed Shipments" msgstr "Voltooide Verzendingen" -#: order/serializers.py:1293 +#: order/serializers.py:1307 msgid "Sale price currency" msgstr "Valuta verkoopprijs" -#: order/serializers.py:1339 +#: order/serializers.py:1353 msgid "Allocated Items" msgstr "Toegewezen items" -#: order/serializers.py:1484 +#: order/serializers.py:1498 msgid "No shipment details provided" msgstr "Geen verzenddetails opgegeven" -#: order/serializers.py:1545 order/serializers.py:1691 +#: order/serializers.py:1559 order/serializers.py:1705 msgid "Line item is not associated with this order" msgstr "Artikelregel is niet gekoppeld aan deze bestelling" -#: order/serializers.py:1564 +#: order/serializers.py:1578 msgid "Quantity must be positive" msgstr "Hoeveelheid moet positief zijn" -#: order/serializers.py:1701 +#: order/serializers.py:1715 msgid "Enter serial numbers to allocate" msgstr "Voer serienummers in om toe te wijzen" -#: order/serializers.py:1723 order/serializers.py:1843 +#: order/serializers.py:1737 order/serializers.py:1857 msgid "Shipment has already been shipped" msgstr "Verzending is al verzonden" -#: order/serializers.py:1726 order/serializers.py:1846 +#: order/serializers.py:1740 order/serializers.py:1860 msgid "Shipment is not associated with this order" msgstr "Zending is niet gekoppeld aan deze bestelling" -#: order/serializers.py:1781 +#: order/serializers.py:1795 msgid "No match found for the following serial numbers" msgstr "Geen overeenkomst gevonden voor de volgende serienummers" -#: order/serializers.py:1788 +#: order/serializers.py:1802 msgid "The following serial numbers are unavailable" msgstr "De volgende serienummers zijn niet beschikbaar" -#: order/serializers.py:2009 +#: order/serializers.py:2026 msgid "Return order line item" msgstr "Retourneer regel item" -#: order/serializers.py:2019 +#: order/serializers.py:2036 msgid "Line item does not match return order" msgstr "Artikelregel komt niet overeen met inkooporder" -#: order/serializers.py:2022 +#: order/serializers.py:2039 msgid "Line item has already been received" msgstr "Regel item is al ontvangen" -#: order/serializers.py:2059 +#: order/serializers.py:2076 msgid "Items can only be received against orders which are in progress" msgstr "Artikelen kunnen alleen worden ontvangen tegen lopende bestellingen" -#: order/serializers.py:2124 +#: order/serializers.py:2141 msgid "Quantity to return" msgstr "Hoeveelheid te retourneren" -#: order/serializers.py:2140 +#: order/serializers.py:2157 msgid "Line price currency" msgstr "Lijn prijs valuta" @@ -5432,1190 +5560,1109 @@ msgstr "Achterstallige retour orders" msgid "Return order {ro} is now overdue" msgstr "Productieorder {ro} is nu achterstallig" -#: part/api.py:108 +#: part/api.py:103 msgid "Starred" msgstr "Favoriet" -#: part/api.py:110 +#: part/api.py:105 msgid "Filter by starred categories" msgstr "Filter op categorieën met ster" -#: part/api.py:127 stock/api.py:288 +#: part/api.py:122 stock/api.py:288 msgid "Depth" msgstr "Diepte" -#: part/api.py:127 +#: part/api.py:122 msgid "Filter by category depth" msgstr "Filteren op categorie diepte" -#: part/api.py:145 stock/api.py:306 +#: part/api.py:140 stock/api.py:306 msgid "Top Level" msgstr "Hoogste niveau" -#: part/api.py:147 +#: part/api.py:142 msgid "Filter by top-level categories" msgstr "Filteren op topniveau categorieën" -#: part/api.py:160 stock/api.py:321 +#: part/api.py:155 stock/api.py:321 msgid "Cascade" msgstr "Stapelen" -#: part/api.py:162 +#: part/api.py:157 msgid "Include sub-categories in filtered results" msgstr "Inclusief subcategorieën in gefilterde resultaten" -#: part/api.py:182 +#: part/api.py:177 msgid "Parent" msgstr "Bovenliggend" -#: part/api.py:184 +#: part/api.py:179 msgid "Filter by parent category" msgstr "Filter op bovenliggende categorie" -#: part/api.py:219 +#: part/api.py:214 msgid "Exclude sub-categories under the specified category" msgstr "Subcategorieën uitsluiten in de opgegeven categorie" -#: part/api.py:445 +#: part/api.py:440 msgid "Has Results" msgstr "Heeft resultaten" -#: part/api.py:666 +#: part/api.py:661 msgid "Is Variant" msgstr "Is een variant" -#: part/api.py:674 +#: part/api.py:669 msgid "Is Revision" msgstr "Is revisie" -#: part/api.py:684 +#: part/api.py:679 msgid "Has Revisions" msgstr "Heeft revisies" -#: part/api.py:865 +#: part/api.py:860 msgid "BOM Valid" msgstr "BOM Valid" -#: part/api.py:974 +#: part/api.py:969 msgid "Cascade Categories" msgstr "" -#: part/api.py:975 +#: part/api.py:970 msgid "If true, include items in child categories of the given category" msgstr "" -#: part/api.py:981 +#: part/api.py:976 msgid "Filter by numeric category ID or the literal 'null'" msgstr "" -#: part/api.py:1533 +#: part/api.py:1258 msgid "Assembly part is testable" msgstr "Assemblage deel is testbaar" -#: part/api.py:1542 +#: part/api.py:1267 msgid "Component part is testable" msgstr "Component onderdeel is testbaar" -#: part/api.py:1611 +#: part/api.py:1336 msgid "Uses" msgstr "Gebruik" -#: part/models.py:96 part/models.py:4163 +#: part/models.py:93 part/models.py:436 #: templates/email/part_event_notification.html:16 msgid "Part Category" msgstr "Onderdeel Categorie" -#: part/models.py:97 users/ruleset.py:27 +#: part/models.py:94 users/ruleset.py:27 msgid "Part Categories" msgstr "Onderdeel Categorieën" -#: part/models.py:115 part/models.py:1125 +#: part/models.py:112 part/models.py:1213 msgid "Default Location" msgstr "Standaard locatie" -#: part/models.py:116 +#: part/models.py:113 msgid "Default location for parts in this category" msgstr "Standaard locatie voor onderdelen in deze categorie" -#: part/models.py:121 stock/models.py:216 +#: part/models.py:118 stock/models.py:216 msgid "Structural" msgstr "Structureel" -#: part/models.py:123 +#: part/models.py:120 msgid "Parts may not be directly assigned to a structural category, but may be assigned to child categories." msgstr "Onderdelen mogen niet rechtstreeks aan een structurele categorie worden toegewezen, maar kunnen worden toegewezen aan subcategorieën." -#: part/models.py:132 +#: part/models.py:129 msgid "Default keywords" msgstr "Standaard trefwoorden" -#: part/models.py:133 +#: part/models.py:130 msgid "Default keywords for parts in this category" msgstr "Standaard trefwoorden voor delen in deze categorie" -#: part/models.py:140 stock/models.py:97 stock/models.py:198 +#: part/models.py:137 stock/models.py:97 stock/models.py:198 msgid "Icon" msgstr "Pictogram" -#: part/models.py:141 part/serializers.py:148 part/serializers.py:167 +#: part/models.py:138 part/serializers.py:147 part/serializers.py:166 #: stock/models.py:199 msgid "Icon (optional)" msgstr "Pictogram (optioneel)" -#: part/models.py:185 +#: part/models.py:182 msgid "You cannot make this part category structural because some parts are already assigned to it!" msgstr "U kunt deze voorraadlocatie niet structureel maken omdat sommige voorraadartikelen er al in liggen!" -#: part/models.py:473 part/serializers.py:119 part/serializers.py:310 -#: users/ruleset.py:28 +#: part/models.py:392 +msgid "Part Category Parameter Template" +msgstr "Sjabloon categorie parameters onderdeel" + +#: part/models.py:448 +msgid "Default Value" +msgstr "Standaard waarde" + +#: part/models.py:449 +msgid "Default Parameter Value" +msgstr "Standaard Parameter Waarde" + +#: part/models.py:551 part/serializers.py:118 users/ruleset.py:28 msgid "Parts" msgstr "Onderdelen" -#: part/models.py:525 +#: part/models.py:597 +msgid "Cannot delete parameters of a locked part" +msgstr "" + +#: part/models.py:602 +msgid "Cannot modify parameters of a locked part" +msgstr "" + +#: part/models.py:613 msgid "Cannot delete this part as it is locked" msgstr "Kan dit deel niet verwijderen omdat het vergrendeld is" -#: part/models.py:528 +#: part/models.py:616 msgid "Cannot delete this part as it is still active" msgstr "Kan dit deel niet verwijderen omdat het nog actief is" -#: part/models.py:533 +#: part/models.py:621 msgid "Cannot delete this part as it is used in an assembly" msgstr "Kan dit deel niet verwijderen omdat het in een groep gebruikt is" -#: part/models.py:616 part/models.py:623 +#: part/models.py:704 part/models.py:711 #, python-brace-format msgid "Part '{self}' cannot be used in BOM for '{parent}' (recursive)" msgstr "{self}' kan niet worden gebruikt in BOM voor '{parent}' (recursief)" -#: part/models.py:635 +#: part/models.py:723 #, python-brace-format msgid "Part '{parent}' is used in BOM for '{self}' (recursive)" msgstr "{parent}' wordt gebruikt in BOM voor '{self}' (recursief)" -#: part/models.py:702 +#: part/models.py:790 #, python-brace-format msgid "IPN must match regex pattern {pattern}" msgstr "IPN moet overeenkomen met regex patroon {pattern}" -#: part/models.py:710 +#: part/models.py:798 msgid "Part cannot be a revision of itself" msgstr "Onderdeel kan geen herziening van zichzelf zijn" -#: part/models.py:717 +#: part/models.py:805 msgid "Cannot make a revision of a part which is already a revision" msgstr "Kan geen revisie maken van een onderdeel dat al een revisie is" -#: part/models.py:724 +#: part/models.py:812 msgid "Revision code must be specified" msgstr "Revisie code moet worden opgegeven" -#: part/models.py:731 +#: part/models.py:819 msgid "Revisions are only allowed for assembly parts" msgstr "Herzieningen zijn alleen toegestaan voor assemblageonderdelen" -#: part/models.py:738 +#: part/models.py:826 msgid "Cannot make a revision of a template part" msgstr "Kan geen revisie maken van een sjabloon onderdeel" -#: part/models.py:744 +#: part/models.py:832 msgid "Parent part must point to the same template" msgstr "Bovenliggend onderdeel moet naar dezelfde sjabloon verwijzen" -#: part/models.py:841 +#: part/models.py:929 msgid "Stock item with this serial number already exists" msgstr "Voorraadartikel met dit serienummer bestaat al" -#: part/models.py:971 +#: part/models.py:1059 msgid "Duplicate IPN not allowed in part settings" msgstr "Dubbele IPN niet toegestaan in deelinstellingen" -#: part/models.py:983 +#: part/models.py:1071 msgid "Duplicate part revision already exists." msgstr "Dubbele onderdeel revisie bestaat al." -#: part/models.py:992 +#: part/models.py:1080 msgid "Part with this Name, IPN and Revision already exists." msgstr "Onderdeel met deze naam, IPN en Revisie bestaat al." -#: part/models.py:1007 +#: part/models.py:1095 msgid "Parts cannot be assigned to structural part categories!" msgstr "Onderdelen kunnen niet worden toegewezen aan categorieën van structurele onderdelen!" -#: part/models.py:1039 +#: part/models.py:1127 msgid "Part name" msgstr "Onderdeel naam" -#: part/models.py:1044 +#: part/models.py:1132 msgid "Is Template" msgstr "Is een sjabloon" -#: part/models.py:1045 +#: part/models.py:1133 msgid "Is this part a template part?" msgstr "Is dit deel van een sjabloon?" -#: part/models.py:1055 +#: part/models.py:1143 msgid "Is this part a variant of another part?" msgstr "Is dit een variant van een ander deel?" -#: part/models.py:1056 +#: part/models.py:1144 msgid "Variant Of" msgstr "Variant van" -#: part/models.py:1063 +#: part/models.py:1151 msgid "Part description (optional)" msgstr "Beschrijving (optioneel)" -#: part/models.py:1070 +#: part/models.py:1158 msgid "Keywords" msgstr "Sleutelwoorden" -#: part/models.py:1071 +#: part/models.py:1159 msgid "Part keywords to improve visibility in search results" msgstr "Deel sleutelwoorden om de zichtbaarheid van de zoekresultaten te verbeteren" -#: part/models.py:1081 +#: part/models.py:1169 msgid "Part category" msgstr "Onderdeel Categorie" -#: part/models.py:1088 part/serializers.py:929 +#: part/models.py:1176 part/serializers.py:814 #: report/templates/report/inventree_stock_location_report.html:103 msgid "IPN" msgstr "IPN" -#: part/models.py:1096 +#: part/models.py:1184 msgid "Part revision or version number" msgstr "Onderdeel revisie of versienummer" -#: part/models.py:1097 report/models.py:228 +#: part/models.py:1185 report/models.py:228 msgid "Revision" msgstr "Revisie" -#: part/models.py:1106 +#: part/models.py:1194 msgid "Is this part a revision of another part?" msgstr "Is dit deel een herziening van een ander deel?" -#: part/models.py:1107 +#: part/models.py:1195 msgid "Revision Of" msgstr "Revisie van" -#: part/models.py:1123 +#: part/models.py:1211 msgid "Where is this item normally stored?" msgstr "Waar wordt dit item normaal opgeslagen?" -#: part/models.py:1169 +#: part/models.py:1257 msgid "Default Supplier" msgstr "Standaard leverancier" -#: part/models.py:1170 +#: part/models.py:1258 msgid "Default supplier part" msgstr "Standaardleverancier" -#: part/models.py:1177 +#: part/models.py:1265 msgid "Default Expiry" msgstr "Standaard verval datum" -#: part/models.py:1178 +#: part/models.py:1266 msgid "Expiry time (in days) for stock items of this part" msgstr "Verlooptijd (in dagen) voor voorraadartikelen van dit deel" -#: part/models.py:1186 part/serializers.py:1003 +#: part/models.py:1274 part/serializers.py:888 msgid "Minimum Stock" msgstr "Minimum voorraad" -#: part/models.py:1187 +#: part/models.py:1275 msgid "Minimum allowed stock level" msgstr "Minimaal toegelaten stock niveau" -#: part/models.py:1196 +#: part/models.py:1284 msgid "Units of measure for this part" msgstr "Eenheden voor dit onderdeel" -#: part/models.py:1203 +#: part/models.py:1291 msgid "Can this part be built from other parts?" msgstr "Kan dit onderdeel uit andere delen worden gebouwd?" -#: part/models.py:1209 +#: part/models.py:1297 msgid "Can this part be used to build other parts?" msgstr "Kan dit onderdeel gebruikt worden om andere onderdelen te bouwen?" -#: part/models.py:1215 +#: part/models.py:1303 msgid "Does this part have tracking for unique items?" msgstr "Heeft dit onderdeel een tracking voor unieke items?" -#: part/models.py:1221 +#: part/models.py:1309 msgid "Can this part have test results recorded against it?" msgstr "Kunnen de testresultaten van dit onderdeel tegen dit onderdeel worden geregistreerd?" -#: part/models.py:1227 +#: part/models.py:1315 msgid "Can this part be purchased from external suppliers?" msgstr "Kan dit onderdeel worden gekocht van externe leveranciers?" -#: part/models.py:1233 +#: part/models.py:1321 msgid "Can this part be sold to customers?" msgstr "Kan dit onderdeel aan klanten worden verkocht?" -#: part/models.py:1237 +#: part/models.py:1325 msgid "Is this part active?" msgstr "Is dit onderdeel actief?" -#: part/models.py:1243 +#: part/models.py:1331 msgid "Locked parts cannot be edited" msgstr "Vergrendelde onderdelen kunnen niet worden bewerkt" -#: part/models.py:1249 +#: part/models.py:1337 msgid "Is this a virtual part, such as a software product or license?" msgstr "Is dit een virtueel onderdeel, zoals een softwareproduct of licentie?" -#: part/models.py:1254 +#: part/models.py:1342 msgid "BOM Validated" msgstr "Stuklijst BOM gecontroleerd" -#: part/models.py:1255 +#: part/models.py:1343 msgid "Is the BOM for this part valid?" msgstr "Is de BOM voor dit deel geldig?" -#: part/models.py:1261 +#: part/models.py:1349 msgid "BOM checksum" msgstr "BOM checksum" -#: part/models.py:1262 +#: part/models.py:1350 msgid "Stored BOM checksum" msgstr "Checksum van BOM opgeslagen" -#: part/models.py:1270 +#: part/models.py:1358 msgid "BOM checked by" msgstr "BOM gecontroleerd door" -#: part/models.py:1275 +#: part/models.py:1363 msgid "BOM checked date" msgstr "BOM gecontroleerd datum" -#: part/models.py:1291 +#: part/models.py:1379 msgid "Creation User" msgstr "Aanmaken gebruiker" -#: part/models.py:1301 +#: part/models.py:1389 msgid "Owner responsible for this part" msgstr "Eigenaar verantwoordelijk voor dit deel" -#: part/models.py:2258 +#: part/models.py:2346 msgid "Sell multiple" msgstr "Verkopen van meerdere" -#: part/models.py:3286 +#: part/models.py:3350 msgid "Currency used to cache pricing calculations" msgstr "Valuta die gebruikt wordt voor de cache berekeningen" -#: part/models.py:3302 +#: part/models.py:3366 msgid "Minimum BOM Cost" msgstr "Minimale BOM kosten" -#: part/models.py:3303 +#: part/models.py:3367 msgid "Minimum cost of component parts" msgstr "Minimale kosten van onderdelen" -#: part/models.py:3309 +#: part/models.py:3373 msgid "Maximum BOM Cost" msgstr "Maximale BOM kosten" -#: part/models.py:3310 +#: part/models.py:3374 msgid "Maximum cost of component parts" msgstr "Maximale kosten van onderdelen" -#: part/models.py:3316 +#: part/models.py:3380 msgid "Minimum Purchase Cost" msgstr "Minimale aankoop kosten" -#: part/models.py:3317 +#: part/models.py:3381 msgid "Minimum historical purchase cost" msgstr "Minimale historische aankoop kosten" -#: part/models.py:3323 +#: part/models.py:3387 msgid "Maximum Purchase Cost" msgstr "Maximale aanschaf kosten" -#: part/models.py:3324 +#: part/models.py:3388 msgid "Maximum historical purchase cost" msgstr "Maximum historische aankoop kosten" -#: part/models.py:3330 +#: part/models.py:3394 msgid "Minimum Internal Price" msgstr "Minimale interne prijs" -#: part/models.py:3331 +#: part/models.py:3395 msgid "Minimum cost based on internal price breaks" msgstr "Minimale kosten op basis van interne prijsschommelingen" -#: part/models.py:3337 +#: part/models.py:3401 msgid "Maximum Internal Price" msgstr "Maximale interne prijs" -#: part/models.py:3338 +#: part/models.py:3402 msgid "Maximum cost based on internal price breaks" msgstr "Maximale kosten gebaseerd op interne prijsvoordelen" -#: part/models.py:3344 +#: part/models.py:3408 msgid "Minimum Supplier Price" msgstr "Minimale leverancier prijs" -#: part/models.py:3345 +#: part/models.py:3409 msgid "Minimum price of part from external suppliers" msgstr "Minimale prijs van onderdeel van externe leveranciers" -#: part/models.py:3351 +#: part/models.py:3415 msgid "Maximum Supplier Price" msgstr "Maximale leverancier prijs" -#: part/models.py:3352 +#: part/models.py:3416 msgid "Maximum price of part from external suppliers" msgstr "Maximale prijs van onderdeel van externe leveranciers" -#: part/models.py:3358 +#: part/models.py:3422 msgid "Minimum Variant Cost" msgstr "Minimale variant kosten" -#: part/models.py:3359 +#: part/models.py:3423 msgid "Calculated minimum cost of variant parts" msgstr "Berekende minimale kosten van variant onderdelen" -#: part/models.py:3365 +#: part/models.py:3429 msgid "Maximum Variant Cost" msgstr "Maximale variant kosten" -#: part/models.py:3366 +#: part/models.py:3430 msgid "Calculated maximum cost of variant parts" msgstr "Berekende maximale kosten van variant onderdelen" -#: part/models.py:3372 part/models.py:3386 +#: part/models.py:3436 part/models.py:3450 msgid "Minimum Cost" msgstr "Minimale kostprijs" -#: part/models.py:3373 +#: part/models.py:3437 msgid "Override minimum cost" msgstr "Overschrijf minimale kosten" -#: part/models.py:3379 part/models.py:3393 +#: part/models.py:3443 part/models.py:3457 msgid "Maximum Cost" msgstr "Maximale kosten" -#: part/models.py:3380 +#: part/models.py:3444 msgid "Override maximum cost" msgstr "Overschrijf maximale kosten" -#: part/models.py:3387 +#: part/models.py:3451 msgid "Calculated overall minimum cost" msgstr "Berekende minimale kosten" -#: part/models.py:3394 +#: part/models.py:3458 msgid "Calculated overall maximum cost" msgstr "Berekende totale maximale kosten" -#: part/models.py:3400 +#: part/models.py:3464 msgid "Minimum Sale Price" msgstr "Minimale verkoop prijs" -#: part/models.py:3401 +#: part/models.py:3465 msgid "Minimum sale price based on price breaks" msgstr "Minimale verkoopprijs gebaseerd op prijsschommelingen" -#: part/models.py:3407 +#: part/models.py:3471 msgid "Maximum Sale Price" msgstr "Maximale verkoop prijs" -#: part/models.py:3408 +#: part/models.py:3472 msgid "Maximum sale price based on price breaks" msgstr "Maximale verkoopprijs gebaseerd op prijsschommelingen" -#: part/models.py:3414 +#: part/models.py:3478 msgid "Minimum Sale Cost" msgstr "Minimale verkoop prijs" -#: part/models.py:3415 +#: part/models.py:3479 msgid "Minimum historical sale price" msgstr "Minimale historische verkoop prijs" -#: part/models.py:3421 +#: part/models.py:3485 msgid "Maximum Sale Cost" msgstr "Maximale verkoop prijs" -#: part/models.py:3422 +#: part/models.py:3486 msgid "Maximum historical sale price" msgstr "Maximale historische verkoop prijs" -#: part/models.py:3440 +#: part/models.py:3504 msgid "Part for stocktake" msgstr "Onderdeel voor voorraadcontrole" -#: part/models.py:3445 +#: part/models.py:3509 msgid "Item Count" msgstr "Getelde items" -#: part/models.py:3446 +#: part/models.py:3510 msgid "Number of individual stock entries at time of stocktake" msgstr "Aantal individuele voorraadvermeldingen op het moment van voorraadcontrole" -#: part/models.py:3454 +#: part/models.py:3518 msgid "Total available stock at time of stocktake" msgstr "Totale voorraad op het moment van voorraadcontrole" -#: part/models.py:3458 report/templates/report/inventree_test_report.html:106 +#: part/models.py:3522 report/templates/report/inventree_test_report.html:106 msgid "Date" msgstr "Datum" -#: part/models.py:3459 +#: part/models.py:3523 msgid "Date stocktake was performed" msgstr "Datum waarop voorraad werd uitgevoerd" -#: part/models.py:3466 +#: part/models.py:3530 msgid "Minimum Stock Cost" msgstr "Minimale voorraadprijs" -#: part/models.py:3467 +#: part/models.py:3531 msgid "Estimated minimum cost of stock on hand" msgstr "Geschatte minimum kosten van de voorraad op de hand" -#: part/models.py:3473 +#: part/models.py:3537 msgid "Maximum Stock Cost" msgstr "Maximale voorraadkosten" -#: part/models.py:3474 +#: part/models.py:3538 msgid "Estimated maximum cost of stock on hand" msgstr "Geschatte maximale kosten van de hand van voorraad" -#: part/models.py:3484 +#: part/models.py:3548 msgid "Part Sale Price Break" msgstr "Periodieke verkoopprijs voor onderdelen" -#: part/models.py:3596 +#: part/models.py:3660 msgid "Part Test Template" msgstr "Sjabloon test onderdeel" -#: part/models.py:3622 +#: part/models.py:3686 msgid "Invalid template name - must include at least one alphanumeric character" msgstr "Ongeldige sjabloonnaam - moet minstens één alfanumeriek teken bevatten" -#: part/models.py:3643 part/models.py:3816 -msgid "Choices must be unique" -msgstr "Keuzes moeten uniek zijn" - -#: part/models.py:3654 +#: part/models.py:3718 msgid "Test templates can only be created for testable parts" msgstr "Test sjablonen kunnen alleen worden gemaakt voor testbare onderdelen" -#: part/models.py:3668 +#: part/models.py:3732 msgid "Test template with the same key already exists for part" msgstr "Test template met dezelfde sleutel bestaat al voor een deel" -#: part/models.py:3685 +#: part/models.py:3749 msgid "Test Name" msgstr "Test naam" -#: part/models.py:3686 +#: part/models.py:3750 msgid "Enter a name for the test" msgstr "Geef een naam op voor de test" -#: part/models.py:3692 +#: part/models.py:3756 msgid "Test Key" msgstr "Test sleutel" -#: part/models.py:3693 +#: part/models.py:3757 msgid "Simplified key for the test" msgstr "Vereenvoudigde sleutel voor de test" -#: part/models.py:3700 +#: part/models.py:3764 msgid "Test Description" msgstr "Test beschrijving" -#: part/models.py:3701 +#: part/models.py:3765 msgid "Enter description for this test" msgstr "Voer beschrijving in voor deze test" -#: part/models.py:3705 report/models.py:287 -msgid "Enabled" -msgstr "Ingeschakeld" - -#: part/models.py:3705 +#: part/models.py:3769 msgid "Is this test enabled?" msgstr "Is deze test ingeschakeld?" -#: part/models.py:3710 +#: part/models.py:3774 msgid "Required" msgstr "Vereist" -#: part/models.py:3711 +#: part/models.py:3775 msgid "Is this test required to pass?" msgstr "Is deze test nodig om te doorlopen?" -#: part/models.py:3716 +#: part/models.py:3780 msgid "Requires Value" msgstr "Waarde vereist" -#: part/models.py:3717 +#: part/models.py:3781 msgid "Does this test require a value when adding a test result?" msgstr "Heeft deze test een waarde nodig bij het toevoegen van een testresultaat?" -#: part/models.py:3722 +#: part/models.py:3786 msgid "Requires Attachment" msgstr "Vereist bijlage" -#: part/models.py:3724 +#: part/models.py:3788 msgid "Does this test require a file attachment when adding a test result?" msgstr "Vereist deze test een bestandsbijlage bij het toevoegen van een testresultaat?" -#: part/models.py:3730 part/models.py:3878 -msgid "Choices" -msgstr "Keuzes" - -#: part/models.py:3731 +#: part/models.py:3795 msgid "Valid choices for this test (comma-separated)" msgstr "Geldige keuzes voor deze parameter (komma gescheiden)" -#: part/models.py:3764 -msgid "Part Parameter Template" -msgstr "Sjabloon deel parameter" - -#: part/models.py:3791 -msgid "Checkbox parameters cannot have units" -msgstr "Checkbox parameters kunnen geen eenheden bevatten" - -#: part/models.py:3796 -msgid "Checkbox parameters cannot have choices" -msgstr "Checkbox parameters kunnen geen eenheden bevatten" - -#: part/models.py:3833 -msgid "Parameter template name must be unique" -msgstr "De template van de parameter moet uniek zijn" - -#: part/models.py:3851 -msgid "Parameter Name" -msgstr "Parameternaam" - -#: part/models.py:3858 -msgid "Physical units for this parameter" -msgstr "Fysieke eenheden voor deze parameter" - -#: part/models.py:3866 -msgid "Parameter description" -msgstr "Parameter omschrijving" - -#: part/models.py:3872 -msgid "Checkbox" -msgstr "Selectievakje" - -#: part/models.py:3873 -msgid "Is this parameter a checkbox?" -msgstr "Is deze parameter een selectievak?" - -#: part/models.py:3879 -msgid "Valid choices for this parameter (comma-separated)" -msgstr "Geldige keuzes voor deze parameter (komma gescheiden)" - -#: part/models.py:3890 -msgid "Selection list for this parameter" -msgstr "Lijst met selecties voor deze parameter" - -#: part/models.py:3932 -msgid "Part Parameter" -msgstr "Onderdeel parameters" - -#: part/models.py:3958 -msgid "Parameter cannot be modified - part is locked" -msgstr "Parameter kan niet worden gewijzigd - onderdeel is vergrendeld" - -#: part/models.py:3996 -msgid "Invalid choice for parameter value" -msgstr "Ongeldige keuze voor parameter waarde" - -#: part/models.py:4047 -msgid "Parent Part" -msgstr "Hoofd onderdeel" - -#: part/models.py:4055 part/models.py:4170 part/models.py:4171 -msgid "Parameter Template" -msgstr "Parameter sjabloon" - -#: part/models.py:4061 -msgid "Parameter Value" -msgstr "Parameterwaarde" - -#: part/models.py:4071 stock/serializers.py:718 -msgid "Optional note field" -msgstr "Optioneel notities veld" - -#: part/models.py:4118 -msgid "Part Category Parameter Template" -msgstr "Sjabloon categorie parameters onderdeel" - -#: part/models.py:4177 -msgid "Default Value" -msgstr "Standaard waarde" - -#: part/models.py:4178 -msgid "Default Parameter Value" -msgstr "Standaard Parameter Waarde" - -#: part/models.py:4352 +#: part/models.py:3977 msgid "BOM item cannot be modified - assembly is locked" msgstr "BOM item kan niet worden gewijzigd - assemblage is vergrendeld " -#: part/models.py:4359 +#: part/models.py:3984 msgid "BOM item cannot be modified - variant assembly is locked" msgstr "BOM item kan niet worden gewijzigd - assemblage is vergrendeld" -#: part/models.py:4369 +#: part/models.py:3994 msgid "Select parent part" msgstr "Selecteer boven liggend onderdeel" -#: part/models.py:4379 +#: part/models.py:4004 msgid "Sub part" msgstr "Sub onderdeel" -#: part/models.py:4380 +#: part/models.py:4005 msgid "Select part to be used in BOM" msgstr "Selecteer onderdeel dat moet worden gebruikt in BOM" -#: part/models.py:4391 +#: part/models.py:4016 msgid "BOM quantity for this BOM item" msgstr "BOM hoeveelheid voor dit BOM item" -#: part/models.py:4397 +#: part/models.py:4022 msgid "This BOM item is optional" msgstr "Dit BOM item is optioneel" -#: part/models.py:4403 +#: part/models.py:4028 msgid "This BOM item is consumable (it is not tracked in build orders)" msgstr "Dit BOM item is verbruikbaar (het wordt niet bijgehouden in build orders)" -#: part/models.py:4411 +#: part/models.py:4036 msgid "Setup Quantity" msgstr "Totale hoeveelheid" -#: part/models.py:4412 +#: part/models.py:4037 msgid "Extra required quantity for a build, to account for setup losses" msgstr "Extra benodigde hoeveelheid voor een build, rekening houdend met verliezen van de setup" -#: part/models.py:4420 +#: part/models.py:4045 msgid "Attrition" msgstr "Attriatie" -#: part/models.py:4422 +#: part/models.py:4047 msgid "Estimated attrition for a build, expressed as a percentage (0-100)" msgstr "Geschatte uitstraling voor een gebouw, uitgedrukt in percentage (0-100)" -#: part/models.py:4433 +#: part/models.py:4058 msgid "Rounding Multiple" msgstr "Afronden meerdere" -#: part/models.py:4435 +#: part/models.py:4060 msgid "Round up required production quantity to nearest multiple of this value" msgstr "Afronden met omhoog vereiste productiehoeveelheid naar dichtstbijzijnde meerdere van deze waarde" -#: part/models.py:4443 +#: part/models.py:4068 msgid "BOM item reference" msgstr "Artikelregel referentie" -#: part/models.py:4451 +#: part/models.py:4076 msgid "BOM item notes" msgstr "BOM item notities" -#: part/models.py:4457 +#: part/models.py:4082 msgid "Checksum" msgstr "Controle som" -#: part/models.py:4458 +#: part/models.py:4083 msgid "BOM line checksum" msgstr "BOM lijn controle som" -#: part/models.py:4463 +#: part/models.py:4088 msgid "Validated" msgstr "Goedgekeurd" -#: part/models.py:4464 +#: part/models.py:4089 msgid "This BOM item has been validated" msgstr "Dit BOM item is goedgekeurd" -#: part/models.py:4469 +#: part/models.py:4094 msgid "Gets inherited" msgstr "Wordt overgenomen" -#: part/models.py:4470 +#: part/models.py:4095 msgid "This BOM item is inherited by BOMs for variant parts" msgstr "Dit BOM item wordt overgenomen door BOMs voor variant onderdelen" -#: part/models.py:4476 +#: part/models.py:4101 msgid "Stock items for variant parts can be used for this BOM item" msgstr "Voorraaditems voor variant onderdelen kunnen worden gebruikt voor dit BOM artikel" -#: part/models.py:4583 stock/models.py:925 +#: part/models.py:4208 stock/models.py:925 msgid "Quantity must be integer value for trackable parts" msgstr "Hoeveelheid moet een geheel getal zijn voor trackable onderdelen" -#: part/models.py:4593 part/models.py:4595 +#: part/models.py:4218 part/models.py:4220 msgid "Sub part must be specified" msgstr "Onderdeel moet gespecificeerd worden" -#: part/models.py:4746 +#: part/models.py:4371 msgid "BOM Item Substitute" msgstr "BOM Item vervangingen bewerken" -#: part/models.py:4767 +#: part/models.py:4392 msgid "Substitute part cannot be the same as the master part" msgstr "Vervanging onderdeel kan niet hetzelfde zijn als het hoofddeel" -#: part/models.py:4780 +#: part/models.py:4405 msgid "Parent BOM item" msgstr "Bovenliggend BOM item" -#: part/models.py:4788 +#: part/models.py:4413 msgid "Substitute part" msgstr "Vervanging onderdeel" -#: part/models.py:4804 +#: part/models.py:4429 msgid "Part 1" msgstr "Eerste deel" -#: part/models.py:4812 +#: part/models.py:4437 msgid "Part 2" msgstr "Tweede deel" -#: part/models.py:4813 +#: part/models.py:4438 msgid "Select Related Part" msgstr "Selecteer gerelateerd onderdeel" -#: part/models.py:4820 +#: part/models.py:4445 msgid "Note for this relationship" msgstr "Opmerking voor deze relatie" -#: part/models.py:4839 +#: part/models.py:4464 msgid "Part relationship cannot be created between a part and itself" msgstr "Onderdeel relatie kan niet worden gecreëerd tussen een deel en zichzelf" -#: part/models.py:4844 +#: part/models.py:4469 msgid "Duplicate relationship already exists" msgstr "Dubbele relatie bestaat al" -#: part/serializers.py:114 +#: part/serializers.py:113 msgid "Parent Category" msgstr "Bovenliggende categorie" -#: part/serializers.py:115 +#: part/serializers.py:114 msgid "Parent part category" msgstr "Bovenliggende onderdeel categorie" -#: part/serializers.py:123 part/serializers.py:164 +#: part/serializers.py:122 part/serializers.py:163 msgid "Subcategories" msgstr "Subcategorieën" -#: part/serializers.py:203 +#: part/serializers.py:202 msgid "Results" msgstr "Resultaten" -#: part/serializers.py:204 +#: part/serializers.py:203 msgid "Number of results recorded against this template" msgstr "Aantal resultaten opgenomen ten opzichte van deze template" -#: part/serializers.py:235 part/serializers.py:253 stock/serializers.py:643 +#: part/serializers.py:234 part/serializers.py:252 stock/serializers.py:643 msgid "Purchase currency of this stock item" msgstr "Inkooporder voor dit voorraadartikel" -#: part/serializers.py:280 +#: part/serializers.py:279 msgid "File is not an image" msgstr "Bestand is geen afbeelding" -#: part/serializers.py:311 -msgid "Number of parts using this template" -msgstr "Aantal onderdelen die deze sjabloon gebruiken" - -#: part/serializers.py:471 +#: part/serializers.py:382 msgid "Original Part" msgstr "Oorspronkelijk onderdeel" -#: part/serializers.py:472 +#: part/serializers.py:383 msgid "Select original part to duplicate" msgstr "Selecteer origineel onderdeel om te dupliceren" -#: part/serializers.py:477 +#: part/serializers.py:388 msgid "Copy Image" msgstr "Afbeelding kopiëren" -#: part/serializers.py:478 +#: part/serializers.py:389 msgid "Copy image from original part" msgstr "Afbeelding kopiëren van het oorspronkelijke onderdeel" -#: part/serializers.py:484 +#: part/serializers.py:395 msgid "Copy BOM" msgstr "Copy BOM" -#: part/serializers.py:485 +#: part/serializers.py:396 msgid "Copy bill of materials from original part" msgstr "Kopieer materiaal van het oorspronkelijke deel" -#: part/serializers.py:491 +#: part/serializers.py:402 msgid "Copy Parameters" msgstr "Parameters kopiëren" -#: part/serializers.py:492 +#: part/serializers.py:403 msgid "Copy parameter data from original part" msgstr "Parameter data kopiëren van het originele onderdeel" -#: part/serializers.py:498 +#: part/serializers.py:409 msgid "Copy Notes" msgstr "Notities kopiëren" -#: part/serializers.py:499 +#: part/serializers.py:410 msgid "Copy notes from original part" msgstr "Kopieer notities van het originele deel" -#: part/serializers.py:505 +#: part/serializers.py:416 msgid "Copy Tests" msgstr "Tests kopiëren" -#: part/serializers.py:506 +#: part/serializers.py:417 msgid "Copy test templates from original part" msgstr "Test sjablonen kopiëren van het originele deel" -#: part/serializers.py:524 +#: part/serializers.py:435 msgid "Initial Stock Quantity" msgstr "Eerste voorraad hoeveelheid" -#: part/serializers.py:526 +#: part/serializers.py:437 msgid "Specify initial stock quantity for this Part. If quantity is zero, no stock is added." msgstr "Specificeer de initiële voorraad hoeveelheid voor dit onderdeel. Als het aantal nul is, wordt er geen voorraad toegevoegd." -#: part/serializers.py:533 +#: part/serializers.py:444 msgid "Initial Stock Location" msgstr "Eerste voorraad locatie" -#: part/serializers.py:534 +#: part/serializers.py:445 msgid "Specify initial stock location for this Part" msgstr "Specificeer locatie van de eerste voorraad voor dit onderdeel" -#: part/serializers.py:551 +#: part/serializers.py:462 msgid "Select supplier (or leave blank to skip)" msgstr "Selecteer leverancier (of laat leeg om niets in te vullen)" -#: part/serializers.py:567 +#: part/serializers.py:478 msgid "Select manufacturer (or leave blank to skip)" msgstr "Selecteer fabrikant (of laat leeg om niets in te vullen)" -#: part/serializers.py:577 +#: part/serializers.py:488 msgid "Manufacturer part number" msgstr "Fabrikant artikel nummer" -#: part/serializers.py:584 +#: part/serializers.py:495 msgid "Selected company is not a valid supplier" msgstr "Geselecteerde onderneming is geen geldige leverancier" -#: part/serializers.py:593 +#: part/serializers.py:504 msgid "Selected company is not a valid manufacturer" msgstr "Geselecteerde bedrijf is geen geldige fabrikant" -#: part/serializers.py:604 +#: part/serializers.py:515 msgid "Manufacturer part matching this MPN already exists" msgstr "Fabrikant deel dat overeenkomt met deze MPN bestaat al" -#: part/serializers.py:611 +#: part/serializers.py:522 msgid "Supplier part matching this SKU already exists" msgstr "Leveranciersdeel dat overeenkomt met deze SKU bestaat al" -#: part/serializers.py:914 +#: part/serializers.py:799 msgid "Category Name" msgstr "Categorie naam" -#: part/serializers.py:943 +#: part/serializers.py:828 msgid "Building" msgstr "Bouwen" -#: part/serializers.py:944 +#: part/serializers.py:829 msgid "Quantity of this part currently being in production" msgstr "Hoeveelheid van dit deel dat momenteel in productie is" -#: part/serializers.py:951 +#: part/serializers.py:836 msgid "Outstanding quantity of this part scheduled to be built" msgstr "Er zal een onuitputtelijke hoeveelheid van dit deel worden gebouwd" -#: part/serializers.py:971 stock/serializers.py:1019 stock/serializers.py:1189 +#: part/serializers.py:856 stock/serializers.py:1019 stock/serializers.py:1189 #: users/ruleset.py:30 msgid "Stock Items" msgstr "Voorraadartikelen" -#: part/serializers.py:975 +#: part/serializers.py:860 msgid "Revisions" msgstr "Revisies" -#: part/serializers.py:979 +#: part/serializers.py:864 msgid "Suppliers" msgstr "Leveranciers" -#: part/serializers.py:983 part/serializers.py:1297 +#: part/serializers.py:868 part/serializers.py:1162 #: templates/email/low_stock_notification.html:16 #: templates/email/part_event_notification.html:17 msgid "Total Stock" msgstr "Totale Voorraad" -#: part/serializers.py:991 +#: part/serializers.py:876 msgid "Unallocated Stock" msgstr "Niet toegewezen voorraad" -#: part/serializers.py:999 +#: part/serializers.py:884 msgid "Variant Stock" msgstr "Variant voorraad" -#: part/serializers.py:1054 +#: part/serializers.py:943 msgid "Duplicate Part" msgstr "Dupliceer onderdeel" -#: part/serializers.py:1055 +#: part/serializers.py:944 msgid "Copy initial data from another Part" msgstr "Kopieer eerste gegevens uit een ander onderdeel" -#: part/serializers.py:1061 +#: part/serializers.py:950 msgid "Initial Stock" msgstr "Eerste voorraad" -#: part/serializers.py:1062 +#: part/serializers.py:951 msgid "Create Part with initial stock quantity" msgstr "Maak onderdeel met eerste voorraad" -#: part/serializers.py:1068 +#: part/serializers.py:957 msgid "Supplier Information" msgstr "Leveranciersgegevens" -#: part/serializers.py:1069 +#: part/serializers.py:958 msgid "Add initial supplier information for this part" msgstr "Aanvankelijke leveranciersinformatie voor dit deel toevoegen" -#: part/serializers.py:1077 +#: part/serializers.py:966 msgid "Copy Category Parameters" msgstr "Categorie parameters kopiëren" -#: part/serializers.py:1078 +#: part/serializers.py:967 msgid "Copy parameter templates from selected part category" msgstr "Parameter sjablonen kopiëren uit geselecteerde onderdeel categorie" -#: part/serializers.py:1083 +#: part/serializers.py:972 msgid "Existing Image" msgstr "Bestaande afbeelding" -#: part/serializers.py:1084 +#: part/serializers.py:973 msgid "Filename of an existing part image" msgstr "Bestandsnaam van een bestaande onderdeel afbeelding" -#: part/serializers.py:1101 +#: part/serializers.py:990 msgid "Image file does not exist" msgstr "Afbeeldingsbestand bestaat niet" -#: part/serializers.py:1269 +#: part/serializers.py:1134 msgid "Validate entire Bill of Materials" msgstr "Valideer de gehele materiaalbon" -#: part/serializers.py:1303 part/serializers.py:1769 +#: part/serializers.py:1168 part/serializers.py:1634 msgid "Can Build" msgstr "Kan bouwen" -#: part/serializers.py:1320 +#: part/serializers.py:1185 msgid "Required for Build Orders" msgstr "Vereist voor bouworders" -#: part/serializers.py:1325 +#: part/serializers.py:1190 msgid "Allocated to Build Orders" msgstr "Toegewezen aan bouwen van orders" -#: part/serializers.py:1332 +#: part/serializers.py:1197 msgid "Required for Sales Orders" msgstr "Vereist voor verkooporders" -#: part/serializers.py:1336 +#: part/serializers.py:1201 msgid "Allocated to Sales Orders" msgstr "Toegewezen aan verkooporders" -#: part/serializers.py:1475 +#: part/serializers.py:1340 msgid "Minimum Price" msgstr "Minimale prijs" -#: part/serializers.py:1476 +#: part/serializers.py:1341 msgid "Override calculated value for minimum price" msgstr "Overschrijf berekende waarde voor minimale prijs" -#: part/serializers.py:1483 +#: part/serializers.py:1348 msgid "Minimum price currency" msgstr "Minimale prijs valuta" -#: part/serializers.py:1490 +#: part/serializers.py:1355 msgid "Maximum Price" msgstr "Maximale prijs" -#: part/serializers.py:1491 +#: part/serializers.py:1356 msgid "Override calculated value for maximum price" msgstr "Overschrijf de berekende waarde voor de maximale prijs" -#: part/serializers.py:1498 +#: part/serializers.py:1363 msgid "Maximum price currency" msgstr "Maximale prijs valuta" -#: part/serializers.py:1527 +#: part/serializers.py:1392 msgid "Update" msgstr "Bijwerken" -#: part/serializers.py:1528 +#: part/serializers.py:1393 msgid "Update pricing for this part" msgstr "Prijzen voor dit onderdeel bijwerken" -#: part/serializers.py:1551 +#: part/serializers.py:1416 #, python-brace-format msgid "Could not convert from provided currencies to {default_currency}" msgstr "Kan niet converteren van de verstrekte valuta naar {default_currency}" -#: part/serializers.py:1558 +#: part/serializers.py:1423 msgid "Minimum price must not be greater than maximum price" msgstr "Minimumprijs mag niet hoger zijn dan de maximale prijs" -#: part/serializers.py:1561 +#: part/serializers.py:1426 msgid "Maximum price must not be less than minimum price" msgstr "Maximale prijs mag niet lager zijn dan de minimale prijs" -#: part/serializers.py:1715 +#: part/serializers.py:1580 msgid "Select the parent assembly" msgstr "Selecteer de bovenliggende assemblage" -#: part/serializers.py:1735 +#: part/serializers.py:1600 msgid "Select the component part" msgstr "Selecteer het onderdeel" -#: part/serializers.py:1929 +#: part/serializers.py:1802 msgid "Select part to copy BOM from" msgstr "Selecteer onderdeel om BOM van te kopiëren" -#: part/serializers.py:1937 +#: part/serializers.py:1810 msgid "Remove Existing Data" msgstr "Bestaande gegevens verwijderen" -#: part/serializers.py:1938 +#: part/serializers.py:1811 msgid "Remove existing BOM items before copying" msgstr "Verwijder bestaande BOM items voor het kopiëren" -#: part/serializers.py:1943 +#: part/serializers.py:1816 msgid "Include Inherited" msgstr "Inclusief overgenomen" -#: part/serializers.py:1944 +#: part/serializers.py:1817 msgid "Include BOM items which are inherited from templated parts" msgstr "Inclusief stuklijst BOM items die worden overgenomen van getemplated onderdelen" -#: part/serializers.py:1949 +#: part/serializers.py:1822 msgid "Skip Invalid Rows" msgstr "Ongeldige regels overslaan" -#: part/serializers.py:1950 +#: part/serializers.py:1823 msgid "Enable this option to skip invalid rows" msgstr "Schakel deze optie in om ongeldige rijen over te slaan" -#: part/serializers.py:1955 +#: part/serializers.py:1828 msgid "Copy Substitute Parts" msgstr "Verwijder vervangend deel" -#: part/serializers.py:1956 +#: part/serializers.py:1829 msgid "Copy substitute parts when duplicate BOM items" msgstr "Kopieer vervangende onderdelen bij dubbele stuklijst BOM items" @@ -6928,7 +6975,7 @@ msgstr "Biedt ondersteuning voor barcodes" #: plugin/builtin/events/auto_issue_orders.py:19 #: plugin/builtin/exporter/bom_exporter.py:73 #: plugin/builtin/exporter/inventree_exporter.py:17 -#: plugin/builtin/exporter/part_parameter_exporter.py:36 +#: plugin/builtin/exporter/parameter_exporter.py:32 #: plugin/builtin/exporter/stocktake_exporter.py:47 #: plugin/builtin/integration/core_notifications.py:25 #: plugin/builtin/integration/core_notifications.py:69 @@ -7042,23 +7089,19 @@ msgid "Include total quantity of each part in the BOM" msgstr "De totale hoeveelheid van elk onderdeel in de BOM opnemen" #: plugin/builtin/exporter/bom_exporter.py:35 -#: plugin/builtin/exporter/part_parameter_exporter.py:17 msgid "Stock Data" msgstr "Voorraad gegevens" #: plugin/builtin/exporter/bom_exporter.py:35 -#: plugin/builtin/exporter/part_parameter_exporter.py:17 msgid "Include part stock data" msgstr "Inclusief voorraadgegevens" #: plugin/builtin/exporter/bom_exporter.py:39 -#: plugin/builtin/exporter/part_parameter_exporter.py:21 #: plugin/builtin/exporter/stocktake_exporter.py:20 msgid "Pricing Data" msgstr "Prijs gegevens" #: plugin/builtin/exporter/bom_exporter.py:39 -#: plugin/builtin/exporter/part_parameter_exporter.py:21 #: plugin/builtin/exporter/stocktake_exporter.py:20 msgid "Include part pricing data" msgstr "Inclusief prijsgegevens" @@ -7145,13 +7188,21 @@ msgstr "InvenTree generieke exporteur" msgid "Provides support for exporting data from InvenTree" msgstr "Biedt ondersteuning voor het exporteren van gegevens van InvenTree" -#: plugin/builtin/exporter/part_parameter_exporter.py:33 -msgid "Part Parameter Exporter" -msgstr "Exporteer onderdeel parameter" +#: plugin/builtin/exporter/parameter_exporter.py:16 +msgid "Exclude Inactive" +msgstr "" -#: plugin/builtin/exporter/part_parameter_exporter.py:34 -msgid "Exporter for part parameter data" -msgstr "Exporteerder voor gegevens van gedeeltelijke parameter" +#: plugin/builtin/exporter/parameter_exporter.py:17 +msgid "Exclude parameters which are inactive" +msgstr "" + +#: plugin/builtin/exporter/parameter_exporter.py:29 +msgid "Parameter Exporter" +msgstr "" + +#: plugin/builtin/exporter/parameter_exporter.py:30 +msgid "Exporter for model parameter data" +msgstr "" #: plugin/builtin/exporter/stocktake_exporter.py:25 msgid "Include External Stock" @@ -8080,19 +8131,19 @@ msgstr "Geen resultaat (verplicht)" msgid "No result" msgstr "Geen resultaat" -#: report/templatetags/report.py:167 +#: report/templatetags/report.py:169 msgid "Asset file does not exist" msgstr "Asset bestand bestaat niet" -#: report/templatetags/report.py:224 report/templatetags/report.py:300 +#: report/templatetags/report.py:226 report/templatetags/report.py:302 msgid "Image file not found" msgstr "Afbeelding bestand niet gevonden" -#: report/templatetags/report.py:325 +#: report/templatetags/report.py:327 msgid "part_image tag requires a Part instance" msgstr "part_image tag vereist een onderdeel instantie" -#: report/templatetags/report.py:362 +#: report/templatetags/report.py:383 msgid "company_image tag requires a Company instance" msgstr "bedrijf_imagetag vereist een bedrijfsinstantie" @@ -8456,115 +8507,119 @@ msgstr "Serienummers moeten als lijst worden opgegeven" msgid "Quantity does not match serial numbers" msgstr "Hoeveelheid komt niet overeen met serienummers" -#: stock/models.py:2012 stock/models.py:2917 +#: stock/models.py:1912 +msgid "Cannot assign stock to structural location" +msgstr "" + +#: stock/models.py:2029 stock/models.py:2934 msgid "Test template does not exist" msgstr "Testsjabloon bestaat niet" -#: stock/models.py:2030 +#: stock/models.py:2047 msgid "Stock item has been assigned to a sales order" msgstr "Voorraadartikel is toegewezen aan een verkooporder" -#: stock/models.py:2034 +#: stock/models.py:2051 msgid "Stock item is installed in another item" msgstr "Voorraad item is geïnstalleerd in een ander item" -#: stock/models.py:2037 +#: stock/models.py:2054 msgid "Stock item contains other items" msgstr "Voorraadartikel bevat andere producten" -#: stock/models.py:2040 +#: stock/models.py:2057 msgid "Stock item has been assigned to a customer" msgstr "Voorraadartikel is aan een klant toegewezen" -#: stock/models.py:2043 stock/models.py:2226 +#: stock/models.py:2060 stock/models.py:2243 msgid "Stock item is currently in production" msgstr "Voorraad item is momenteel in productie" -#: stock/models.py:2046 +#: stock/models.py:2063 msgid "Serialized stock cannot be merged" msgstr "Geserialiseerde voorraad kan niet worden samengevoegd" -#: stock/models.py:2053 stock/serializers.py:1462 +#: stock/models.py:2070 stock/serializers.py:1462 msgid "Duplicate stock items" msgstr "Dupliceer voorraadartikelen" -#: stock/models.py:2057 +#: stock/models.py:2074 msgid "Stock items must refer to the same part" msgstr "Voorraadartikelen moeten hetzelfde onderdeel verwijzen" -#: stock/models.py:2065 +#: stock/models.py:2082 msgid "Stock items must refer to the same supplier part" msgstr "Voorraadartikelen moeten verwijzen naar dezelfde leveranciersdeel" -#: stock/models.py:2070 +#: stock/models.py:2087 msgid "Stock status codes must match" msgstr "De voorraad statuscodes moeten overeenkomen" -#: stock/models.py:2349 +#: stock/models.py:2366 msgid "StockItem cannot be moved as it is not in stock" msgstr "Voorraadartikel kan niet worden verplaatst omdat het niet op voorraad is" -#: stock/models.py:2818 +#: stock/models.py:2835 msgid "Stock Item Tracking" msgstr "Voorraad item volgen" -#: stock/models.py:2849 +#: stock/models.py:2866 msgid "Entry notes" msgstr "Item notities" -#: stock/models.py:2889 +#: stock/models.py:2906 msgid "Stock Item Test Result" msgstr "Resultaat voorraad test resultaten" -#: stock/models.py:2920 +#: stock/models.py:2937 msgid "Value must be provided for this test" msgstr "Waarde moet voor deze test worden opgegeven" -#: stock/models.py:2924 +#: stock/models.py:2941 msgid "Attachment must be uploaded for this test" msgstr "Bijlage moet worden geüpload voor deze test" -#: stock/models.py:2929 +#: stock/models.py:2946 msgid "Invalid value for this test" msgstr "Ongeldige waarde voor deze test" -#: stock/models.py:2953 +#: stock/models.py:2970 msgid "Test result" msgstr "Test resultaat" -#: stock/models.py:2960 +#: stock/models.py:2977 msgid "Test output value" msgstr "Test uitvoer waarde" -#: stock/models.py:2968 stock/serializers.py:248 +#: stock/models.py:2985 stock/serializers.py:248 msgid "Test result attachment" msgstr "Test resultaat bijlage" -#: stock/models.py:2972 +#: stock/models.py:2989 msgid "Test notes" msgstr "Test notities" -#: stock/models.py:2980 +#: stock/models.py:2997 msgid "Test station" msgstr "Test station" -#: stock/models.py:2981 +#: stock/models.py:2998 msgid "The identifier of the test station where the test was performed" msgstr "De identificatie van het teststation waar de test werd uitgevoerd" -#: stock/models.py:2987 +#: stock/models.py:3004 msgid "Started" msgstr "Gestart" -#: stock/models.py:2988 +#: stock/models.py:3005 msgid "The timestamp of the test start" msgstr "Het tijdstip van de start test" -#: stock/models.py:2994 +#: stock/models.py:3011 msgid "Finished" msgstr "Afgerond" -#: stock/models.py:2995 +#: stock/models.py:3012 msgid "The timestamp of the test finish" msgstr "Het tijdstip van de afgeronde test" @@ -8678,8 +8733,8 @@ msgstr "Geen voorraad item opgegeven" msgid "Quantity must not exceed available stock quantity ({q})" msgstr "Hoeveelheid mag niet hoger zijn dan de beschikbare voorraad ({q})" -#: stock/serializers.py:711 stock/serializers.py:1419 stock/serializers.py:1732 -#: stock/serializers.py:1781 +#: stock/serializers.py:711 stock/serializers.py:1419 stock/serializers.py:1740 +#: stock/serializers.py:1789 msgid "Destination stock location" msgstr "Locatie van bestemming" @@ -8835,19 +8890,19 @@ msgstr "Hoeveelheid mag niet negatief zijn" msgid "Stock transaction notes" msgstr "Voorraad transactie notities" -#: stock/serializers.py:1787 +#: stock/serializers.py:1795 msgid "Merge into existing stock" msgstr "Samenvoegen in bestaande voorraad" -#: stock/serializers.py:1788 +#: stock/serializers.py:1796 msgid "Merge returned items into existing stock items if possible" msgstr "Voeg indien mogelijk geretourneerde items samen in bestaande voorraad" -#: stock/serializers.py:1831 +#: stock/serializers.py:1839 msgid "Next Serial Number" msgstr "Volgend serienummer" -#: stock/serializers.py:1837 +#: stock/serializers.py:1845 msgid "Previous Serial Number" msgstr "Vorig serienummer" @@ -8903,83 +8958,87 @@ msgstr "Voorraad handmatig toegevoegd" msgid "Stock manually removed" msgstr "Voorraad handmatig verwijderd" -#: stock/status_codes.py:57 +#: stock/status_codes.py:56 +msgid "Serialized stock items" +msgstr "" + +#: stock/status_codes.py:58 msgid "Returned to stock" msgstr "Terug naar voorraad" -#: stock/status_codes.py:60 +#: stock/status_codes.py:61 msgid "Location changed" msgstr "Locatie veranderd" -#: stock/status_codes.py:61 +#: stock/status_codes.py:62 msgid "Stock updated" msgstr "Voorraad bijgewerkt" -#: stock/status_codes.py:64 +#: stock/status_codes.py:65 msgid "Installed into assembly" msgstr "Gemonteerd" -#: stock/status_codes.py:65 +#: stock/status_codes.py:66 msgid "Removed from assembly" msgstr "Gedemonteerd" -#: stock/status_codes.py:67 +#: stock/status_codes.py:68 msgid "Installed component item" msgstr "Geïnstalleerd componentartikel" -#: stock/status_codes.py:68 +#: stock/status_codes.py:69 msgid "Removed component item" msgstr "Verwijderd componentartikel" -#: stock/status_codes.py:71 +#: stock/status_codes.py:72 msgid "Split from parent item" msgstr "Splits van bovenliggend item" -#: stock/status_codes.py:72 +#: stock/status_codes.py:73 msgid "Split child item" msgstr "Splits onderliggende item" -#: stock/status_codes.py:75 +#: stock/status_codes.py:76 msgid "Merged stock items" msgstr "Samengevoegde voorraadartikelen" -#: stock/status_codes.py:78 +#: stock/status_codes.py:79 msgid "Converted to variant" msgstr "Geconverteerd naar variant" -#: stock/status_codes.py:81 +#: stock/status_codes.py:82 msgid "Build order output created" msgstr "Product aangemaakt" -#: stock/status_codes.py:82 +#: stock/status_codes.py:83 msgid "Build order output completed" msgstr "Product voltooid" -#: stock/status_codes.py:83 +#: stock/status_codes.py:84 msgid "Build order output rejected" msgstr "Build order uitvoer afgewezen" -#: stock/status_codes.py:84 +#: stock/status_codes.py:85 msgid "Consumed by build order" msgstr "Verbruikt door productieorder" -#: stock/status_codes.py:87 +#: stock/status_codes.py:88 msgid "Shipped against Sales Order" msgstr "Verzonden onder verkooporder" -#: stock/status_codes.py:90 +#: stock/status_codes.py:91 msgid "Received against Purchase Order" msgstr "Ontvangen onder verkooporder" -#: stock/status_codes.py:93 +#: stock/status_codes.py:94 msgid "Returned against Return Order" msgstr "Geretourneerd onder retourorder" -#: stock/status_codes.py:96 +#: stock/status_codes.py:97 msgid "Sent to customer" msgstr "Naar klant verzonden" -#: stock/status_codes.py:97 +#: stock/status_codes.py:98 msgid "Returned from customer" msgstr "Geretourneerd door klant" diff --git a/src/backend/InvenTree/locale/no/LC_MESSAGES/django.po b/src/backend/InvenTree/locale/no/LC_MESSAGES/django.po index f0fcde6791..97d2525c34 100644 --- a/src/backend/InvenTree/locale/no/LC_MESSAGES/django.po +++ b/src/backend/InvenTree/locale/no/LC_MESSAGES/django.po @@ -2,8 +2,8 @@ msgid "" msgstr "" "Project-Id-Version: inventree\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-11-19 04:55+0000\n" -"PO-Revision-Date: 2025-11-19 04:59\n" +"POT-Creation-Date: 2025-12-07 07:33+0000\n" +"PO-Revision-Date: 2025-12-07 07:36\n" "Last-Translator: \n" "Language-Team: Norwegian\n" "Language: no_NO\n" @@ -57,7 +57,7 @@ msgstr "" msgid "This field must be unique." msgstr "" -#: InvenTree/api.py:775 +#: InvenTree/api.py:803 msgid "User does not have permission to view this model" msgstr "Brukeren har ikke rettigheter til å se denne modellen" @@ -81,22 +81,22 @@ msgstr "Den oppgitte primære e-postadressen er ikke gyldig." msgid "The provided email domain is not approved." msgstr "Det oppgitte e-postdomenet er ikke godkjent." -#: InvenTree/conversion.py:166 +#: InvenTree/conversion.py:240 #, python-brace-format msgid "Invalid unit provided ({unit})" msgstr "Ugyldig enhet angitt ({unit})" -#: InvenTree/conversion.py:183 +#: InvenTree/conversion.py:257 msgid "No value provided" msgstr "Ingen verdi angitt" -#: InvenTree/conversion.py:210 +#: InvenTree/conversion.py:284 #, python-brace-format msgid "Could not convert {original} to {unit}" msgstr "Kunne ikke konvertere {original} til {unit}" -#: InvenTree/conversion.py:212 InvenTree/conversion.py:226 -#: InvenTree/helpers.py:597 order/models.py:720 order/models.py:1015 +#: InvenTree/conversion.py:286 InvenTree/conversion.py:300 +#: InvenTree/helpers.py:597 order/models.py:721 order/models.py:1016 msgid "Invalid quantity provided" msgstr "Ugyldig mengde oppgitt" @@ -112,11 +112,11 @@ msgstr "Oppgi dato" msgid "Invalid decimal value" msgstr "" -#: InvenTree/fields.py:218 InvenTree/models.py:1067 build/serializers.py:509 -#: build/serializers.py:580 build/serializers.py:1788 company/models.py:857 -#: order/models.py:1780 +#: InvenTree/fields.py:218 InvenTree/models.py:1228 build/serializers.py:517 +#: build/serializers.py:588 build/serializers.py:1796 company/models.py:811 +#: order/models.py:1781 #: report/templates/report/inventree_build_order_report.html:172 -#: stock/models.py:2848 stock/models.py:2972 stock/serializers.py:717 +#: stock/models.py:2865 stock/models.py:2989 stock/serializers.py:717 #: stock/serializers.py:893 stock/serializers.py:1035 stock/serializers.py:1336 #: stock/serializers.py:1425 stock/serializers.py:1624 msgid "Notes" @@ -171,35 +171,35 @@ msgstr "Fjern HTML-tagger fra denne verdien" msgid "Data contains prohibited markdown content" msgstr "" -#: InvenTree/helpers_model.py:133 +#: InvenTree/helpers_model.py:134 msgid "Connection error" msgstr "Tilkoblingsfeil" -#: InvenTree/helpers_model.py:138 InvenTree/helpers_model.py:145 +#: InvenTree/helpers_model.py:139 InvenTree/helpers_model.py:146 msgid "Server responded with invalid status code" msgstr "Serveren svarte med ugyldig statuskode" -#: InvenTree/helpers_model.py:141 +#: InvenTree/helpers_model.py:142 msgid "Exception occurred" msgstr "Det har oppstått et unntak" -#: InvenTree/helpers_model.py:151 +#: InvenTree/helpers_model.py:152 msgid "Server responded with invalid Content-Length value" msgstr "Serveren svarte med ugyldig \"Content-Length\"-verdi" -#: InvenTree/helpers_model.py:154 +#: InvenTree/helpers_model.py:155 msgid "Image size is too large" msgstr "Bildestørrelsen er for stor" -#: InvenTree/helpers_model.py:166 +#: InvenTree/helpers_model.py:167 msgid "Image download exceeded maximum size" msgstr "Bildenedlasting overskred maksimal størrelse" -#: InvenTree/helpers_model.py:171 +#: InvenTree/helpers_model.py:172 msgid "Remote server returned empty response" msgstr "Ekstern server returnerte tomt svar" -#: InvenTree/helpers_model.py:179 +#: InvenTree/helpers_model.py:180 msgid "Supplied URL is not a valid image file" msgstr "Angitt URL er ikke en gyldig bildefil" @@ -207,7 +207,7 @@ msgstr "Angitt URL er ikke en gyldig bildefil" msgid "Log in to the app" msgstr "" -#: InvenTree/magic_login.py:41 company/models.py:172 users/serializers.py:198 +#: InvenTree/magic_login.py:41 company/models.py:173 users/serializers.py:198 msgid "Email" msgstr "E-post" @@ -215,160 +215,176 @@ msgstr "E-post" msgid "You must enable two-factor authentication before doing anything else." msgstr "" -#: InvenTree/models.py:111 +#: InvenTree/models.py:114 msgid "Error running plugin validation" msgstr "Feil under validering av utvidelse" -#: InvenTree/models.py:192 +#: InvenTree/models.py:195 msgid "Metadata must be a python dict object" msgstr "Metadata må være et python dict-objekt" -#: InvenTree/models.py:198 +#: InvenTree/models.py:201 msgid "Plugin Metadata" msgstr "Utvidelse-metadata" -#: InvenTree/models.py:199 +#: InvenTree/models.py:202 msgid "JSON metadata field, for use by external plugins" msgstr "JSON-metadatafelt, for bruk av eksterne utvidelser" -#: InvenTree/models.py:382 +#: InvenTree/models.py:385 msgid "Improperly formatted pattern" msgstr "Uriktig formatert mønster" -#: InvenTree/models.py:389 +#: InvenTree/models.py:392 msgid "Unknown format key specified" msgstr "Ukjent formatnøkkel spesifisert" -#: InvenTree/models.py:395 +#: InvenTree/models.py:398 msgid "Missing required format key" msgstr "Mangler nødvendig formatnøkkel" -#: InvenTree/models.py:406 +#: InvenTree/models.py:409 msgid "Reference field cannot be empty" msgstr "Referansefeltet kan ikke være tomt" -#: InvenTree/models.py:414 +#: InvenTree/models.py:417 msgid "Reference must match required pattern" msgstr "Referansen må samsvare påkrevd mønster" -#: InvenTree/models.py:445 +#: InvenTree/models.py:448 msgid "Reference number is too large" msgstr "Referansenummeret er for stort" -#: InvenTree/models.py:743 +#: InvenTree/models.py:896 msgid "Invalid choice" msgstr "Ugyldig valg" -#: InvenTree/models.py:856 common/models.py:1410 common/models.py:1837 -#: common/models.py:2096 common/models.py:2221 common/serializers.py:535 -#: company/models.py:615 generic/states/serializers.py:20 machine/models.py:25 -#: part/models.py:1039 part/models.py:3850 plugin/models.py:54 +#: InvenTree/models.py:1017 common/models.py:1414 common/models.py:1841 +#: common/models.py:2102 common/models.py:2227 common/models.py:2494 +#: common/serializers.py:539 generic/states/serializers.py:20 +#: machine/models.py:25 part/models.py:1127 plugin/models.py:54 #: report/models.py:216 stock/models.py:84 msgid "Name" msgstr "Navn" -#: InvenTree/models.py:862 build/models.py:252 common/models.py:171 -#: common/models.py:2228 common/models.py:2341 company/models.py:543 -#: company/models.py:848 order/models.py:442 order/models.py:1825 -#: part/models.py:1062 part/models.py:3865 report/models.py:222 +#: InvenTree/models.py:1023 build/models.py:253 common/models.py:175 +#: common/models.py:2234 common/models.py:2347 common/models.py:2509 +#: company/models.py:545 company/models.py:802 order/models.py:443 +#: order/models.py:1826 part/models.py:1150 report/models.py:222 #: report/models.py:815 report/models.py:841 #: report/templates/report/inventree_build_order_report.html:117 #: stock/models.py:90 msgid "Description" msgstr "Beskrivelse" -#: InvenTree/models.py:863 stock/models.py:91 +#: InvenTree/models.py:1024 stock/models.py:91 msgid "Description (optional)" msgstr "Beskrivelse (valgfritt)" -#: InvenTree/models.py:878 common/models.py:2394 +#: InvenTree/models.py:1039 common/models.py:2815 msgid "Path" msgstr "Sti" -#: InvenTree/models.py:983 +#: InvenTree/models.py:1144 msgid "Duplicate names cannot exist under the same parent" msgstr "Duplikatnavn kan ikke eksistere under samme overordnede" -#: InvenTree/models.py:1067 +#: InvenTree/models.py:1228 msgid "Markdown notes (optional)" msgstr "Markdown-notater (valgfritt)" -#: InvenTree/models.py:1098 +#: InvenTree/models.py:1259 msgid "Barcode Data" msgstr "Strekkodedata" -#: InvenTree/models.py:1099 +#: InvenTree/models.py:1260 msgid "Third party barcode data" msgstr "Tredjeparts strekkodedata" -#: InvenTree/models.py:1105 +#: InvenTree/models.py:1266 msgid "Barcode Hash" msgstr "Strekkode-hash" -#: InvenTree/models.py:1106 +#: InvenTree/models.py:1267 msgid "Unique hash of barcode data" msgstr "Unik hash av strekkodedata" -#: InvenTree/models.py:1187 +#: InvenTree/models.py:1348 msgid "Existing barcode found" msgstr "Eksisterende strekkode funnet" -#: InvenTree/models.py:1269 +#: InvenTree/models.py:1430 msgid "Task Failure" msgstr "" -#: InvenTree/models.py:1270 +#: InvenTree/models.py:1431 #, python-brace-format msgid "Background worker task '{f}' failed after {n} attempts" msgstr "" -#: InvenTree/models.py:1297 +#: InvenTree/models.py:1458 msgid "Server Error" msgstr "Serverfeil" -#: InvenTree/models.py:1298 +#: InvenTree/models.py:1459 msgid "An error has been logged by the server." msgstr "En feil har blitt logget av serveren." -#: InvenTree/models.py:1340 common/models.py:1748 +#: InvenTree/models.py:1501 common/models.py:1752 #: report/templates/report/inventree_bill_of_materials_report.html:126 #: report/templates/report/inventree_bill_of_materials_report.html:148 #: report/templates/report/inventree_return_order_report.html:35 msgid "Image" msgstr "Bilde" -#: InvenTree/serializers.py:253 part/models.py:4571 +#: InvenTree/serializers.py:255 part/models.py:4196 msgid "Must be a valid number" msgstr "Må være et gyldig tall" -#: InvenTree/serializers.py:295 company/models.py:214 part/models.py:3285 +#: InvenTree/serializers.py:297 company/models.py:215 part/models.py:3349 msgid "Currency" msgstr "Valuta" -#: InvenTree/serializers.py:298 part/serializers.py:1385 +#: InvenTree/serializers.py:300 part/serializers.py:1250 msgid "Select currency from available options" msgstr "Velg valuta ut fra tilgjengelige alternativer" -#: InvenTree/serializers.py:653 +#: InvenTree/serializers.py:654 +msgid "This field may not be null." +msgstr "" + +#: InvenTree/serializers.py:660 msgid "Invalid value" msgstr "Ugyldig verdi" -#: InvenTree/serializers.py:690 +#: InvenTree/serializers.py:697 msgid "Remote Image" msgstr "Eksternt bilde" -#: InvenTree/serializers.py:691 +#: InvenTree/serializers.py:698 msgid "URL of remote image file" msgstr "URLtil ekstern bildefil" -#: InvenTree/serializers.py:709 +#: InvenTree/serializers.py:716 msgid "Downloading images from remote URL is not enabled" msgstr "Nedlasting av bilder fra ekstern URL er ikke aktivert" -#: InvenTree/serializers.py:716 +#: InvenTree/serializers.py:723 msgid "Failed to download image from remote URL" msgstr "" +#: InvenTree/serializers.py:806 +msgid "Invalid content type format" +msgstr "" + +#: InvenTree/serializers.py:809 +msgid "Content type not found" +msgstr "" + +#: InvenTree/serializers.py:815 +msgid "Content type does not match required mixin class" +msgstr "" + #: InvenTree/setting/locales.py:20 msgid "Arabic" msgstr "Arabisk" @@ -537,30 +553,30 @@ msgstr "Ugyldig fysisk enhet" msgid "Not a valid currency code" msgstr "Ikke en gyldig valutakode" -#: build/api.py:54 order/api.py:111 order/api.py:270 order/api.py:1373 -#: order/serializers.py:132 +#: build/api.py:54 order/api.py:116 order/api.py:275 order/api.py:1378 +#: order/serializers.py:133 msgid "Order Status" msgstr "Ordrestatus" -#: build/api.py:80 build/models.py:264 +#: build/api.py:80 build/models.py:265 msgid "Parent Build" msgstr "Overordnet produksjon" -#: build/api.py:84 build/api.py:831 order/api.py:547 order/api.py:770 -#: order/api.py:1174 order/api.py:1449 stock/api.py:573 +#: build/api.py:84 build/api.py:837 order/api.py:553 order/api.py:776 +#: order/api.py:1179 order/api.py:1454 stock/api.py:573 msgid "Include Variants" msgstr "" -#: build/api.py:100 build/api.py:466 build/api.py:845 build/models.py:270 -#: build/serializers.py:1225 build/serializers.py:1356 -#: build/serializers.py:1427 company/models.py:1067 company/serializers.py:445 -#: order/api.py:298 order/api.py:302 order/api.py:929 order/api.py:1187 -#: order/api.py:1190 order/models.py:1941 order/models.py:2108 -#: order/models.py:2109 part/api.py:1233 part/api.py:1236 part/api.py:1302 -#: part/api.py:1589 part/models.py:472 part/models.py:3296 part/models.py:3439 -#: part/models.py:3497 part/models.py:3518 part/models.py:3540 -#: part/models.py:3679 part/models.py:4046 part/models.py:4368 -#: part/models.py:4787 part/serializers.py:1928 +#: build/api.py:100 build/api.py:472 build/api.py:851 build/models.py:271 +#: build/serializers.py:1233 build/serializers.py:1364 +#: build/serializers.py:1435 company/models.py:1021 company/serializers.py:490 +#: order/api.py:303 order/api.py:307 order/api.py:934 order/api.py:1192 +#: order/api.py:1195 order/models.py:1942 order/models.py:2109 +#: order/models.py:2110 part/api.py:1160 part/api.py:1163 part/api.py:1314 +#: part/models.py:550 part/models.py:3360 part/models.py:3503 +#: part/models.py:3561 part/models.py:3582 part/models.py:3604 +#: part/models.py:3743 part/models.py:3993 part/models.py:4412 +#: part/serializers.py:1801 #: report/templates/report/inventree_bill_of_materials_report.html:110 #: report/templates/report/inventree_bill_of_materials_report.html:137 #: report/templates/report/inventree_build_order_report.html:109 @@ -580,9 +596,9 @@ msgstr "" msgid "Part" msgstr "Del" -#: build/api.py:120 build/api.py:123 build/serializers.py:1438 part/api.py:980 -#: part/api.py:1316 part/api.py:1600 part/models.py:1080 part/models.py:3568 -#: part/models.py:4162 part/serializers.py:1752 stock/api.py:869 +#: build/api.py:120 build/api.py:123 build/serializers.py:1446 part/api.py:975 +#: part/api.py:1325 part/models.py:435 part/models.py:1168 part/models.py:3632 +#: part/serializers.py:1617 stock/api.py:869 msgid "Category" msgstr "Kategori" @@ -590,7 +606,7 @@ msgstr "Kategori" msgid "Ancestor Build" msgstr "" -#: build/api.py:152 order/api.py:129 +#: build/api.py:152 order/api.py:134 msgid "Assigned to me" msgstr "" @@ -638,134 +654,134 @@ msgstr "" msgid "Completed after" msgstr "" -#: build/api.py:249 order/api.py:226 +#: build/api.py:249 order/api.py:231 msgid "Min Date" msgstr "" -#: build/api.py:272 order/api.py:245 +#: build/api.py:272 order/api.py:250 msgid "Max Date" msgstr "" -#: build/api.py:297 build/api.py:300 part/api.py:217 stock/api.py:961 +#: build/api.py:297 build/api.py:300 part/api.py:212 stock/api.py:961 msgid "Exclude Tree" msgstr "" -#: build/api.py:405 +#: build/api.py:411 msgid "Build must be cancelled before it can be deleted" msgstr "Produksjonen må avbrytes før den kan slettes" -#: build/api.py:449 build/serializers.py:1374 part/models.py:4402 +#: build/api.py:455 build/serializers.py:1382 part/models.py:4027 msgid "Consumable" msgstr "Forbruksvare" -#: build/api.py:452 build/serializers.py:1377 part/models.py:4396 +#: build/api.py:458 build/serializers.py:1385 part/models.py:4021 msgid "Optional" msgstr "Valgfritt" -#: build/api.py:455 build/serializers.py:1415 common/setting/system.py:456 -#: part/models.py:1202 part/serializers.py:1714 part/serializers.py:1725 +#: build/api.py:461 build/serializers.py:1423 common/setting/system.py:456 +#: part/models.py:1290 part/serializers.py:1579 part/serializers.py:1590 #: stock/api.py:639 msgid "Assembly" msgstr "Sammenstilling" -#: build/api.py:458 +#: build/api.py:464 msgid "Tracked" msgstr "Spores" -#: build/api.py:461 build/serializers.py:1380 part/models.py:1220 +#: build/api.py:467 build/serializers.py:1388 part/models.py:1308 msgid "Testable" msgstr "" -#: build/api.py:471 order/api.py:993 order/api.py:1363 +#: build/api.py:477 order/api.py:998 order/api.py:1368 msgid "Order Outstanding" msgstr "" -#: build/api.py:481 build/serializers.py:1464 order/api.py:952 +#: build/api.py:487 build/serializers.py:1472 order/api.py:957 msgid "Allocated" msgstr "Tildelt" -#: build/api.py:490 build/models.py:1672 build/serializers.py:1393 +#: build/api.py:496 build/models.py:1673 build/serializers.py:1401 msgid "Consumed" msgstr "" -#: build/api.py:499 company/models.py:912 company/serializers.py:440 +#: build/api.py:505 company/models.py:866 company/serializers.py:467 #: templates/email/build_order_required_stock.html:19 #: templates/email/low_stock_notification.html:17 #: templates/email/part_event_notification.html:18 msgid "Available" msgstr "Tilgjengelig" -#: build/api.py:523 build/serializers.py:1466 company/serializers.py:437 -#: order/serializers.py:1281 part/serializers.py:959 part/serializers.py:1306 -#: part/serializers.py:1761 +#: build/api.py:529 build/serializers.py:1474 company/serializers.py:464 +#: order/serializers.py:1295 part/serializers.py:844 part/serializers.py:1171 +#: part/serializers.py:1626 msgid "On Order" msgstr "I bestilling" -#: build/api.py:868 build/models.py:117 order/models.py:1974 +#: build/api.py:874 build/models.py:118 order/models.py:1975 #: report/templates/report/inventree_build_order_report.html:105 #: stock/serializers.py:93 templates/email/build_order_completed.html:16 #: templates/email/overdue_build_order.html:15 msgid "Build Order" msgstr "Produksjonsordre" -#: build/api.py:882 build/api.py:886 build/serializers.py:372 -#: build/serializers.py:497 build/serializers.py:567 build/serializers.py:1251 -#: build/serializers.py:1256 order/api.py:1234 order/api.py:1239 -#: order/serializers.py:833 order/serializers.py:973 order/serializers.py:2042 +#: build/api.py:888 build/api.py:892 build/serializers.py:380 +#: build/serializers.py:505 build/serializers.py:575 build/serializers.py:1259 +#: build/serializers.py:1264 order/api.py:1239 order/api.py:1244 +#: order/serializers.py:844 order/serializers.py:984 order/serializers.py:2059 #: stock/api.py:987 stock/serializers.py:111 stock/serializers.py:601 #: stock/serializers.py:710 stock/serializers.py:888 stock/serializers.py:1418 -#: stock/serializers.py:1731 stock/serializers.py:1780 +#: stock/serializers.py:1739 stock/serializers.py:1788 #: templates/email/stale_stock_notification.html:18 users/models.py:549 msgid "Location" msgstr "Plassering" -#: build/api.py:894 +#: build/api.py:900 msgid "Output" msgstr "" -#: build/api.py:896 +#: build/api.py:902 msgid "Filter by output stock item ID. Use 'null' to find uninstalled build items." msgstr "" -#: build/models.py:118 users/ruleset.py:31 +#: build/models.py:119 users/ruleset.py:31 msgid "Build Orders" msgstr "Produksjonsordrer" -#: build/models.py:168 +#: build/models.py:169 msgid "Assembly BOM has not been validated" msgstr "Sammenstillings-BOMen er ikke godkjent" -#: build/models.py:175 +#: build/models.py:176 msgid "Build order cannot be created for an inactive part" msgstr "Produksjonsordre kan ikke opprettes for en inaktiv del" -#: build/models.py:182 +#: build/models.py:183 msgid "Build order cannot be created for an unlocked part" msgstr "Produksjonsordre kan ikke opprettes for en ulåst del" -#: build/models.py:200 +#: build/models.py:201 msgid "Build orders can only be externally fulfilled for purchaseable parts" msgstr "" -#: build/models.py:207 order/models.py:369 +#: build/models.py:208 order/models.py:370 msgid "Responsible user or group must be specified" msgstr "Ansvarlig bruker eller gruppe må spesifiseres" -#: build/models.py:212 +#: build/models.py:213 msgid "Build order part cannot be changed" msgstr "Produksjonsordrens del kan ikke endres" -#: build/models.py:217 order/models.py:382 +#: build/models.py:218 order/models.py:383 msgid "Target date must be after start date" msgstr "" -#: build/models.py:245 +#: build/models.py:246 msgid "Build Order Reference" msgstr "Produksjonsordre-referanse" -#: build/models.py:246 build/serializers.py:1371 order/models.py:614 -#: order/models.py:1311 order/models.py:1773 order/models.py:2712 -#: part/models.py:4442 +#: build/models.py:247 build/serializers.py:1379 order/models.py:615 +#: order/models.py:1312 order/models.py:1774 order/models.py:2713 +#: part/models.py:4067 #: report/templates/report/inventree_bill_of_materials_report.html:139 #: report/templates/report/inventree_purchase_order_report.html:35 #: report/templates/report/inventree_return_order_report.html:26 @@ -773,230 +789,230 @@ msgstr "Produksjonsordre-referanse" msgid "Reference" msgstr "Referanse" -#: build/models.py:255 +#: build/models.py:256 msgid "Brief description of the build (optional)" msgstr "Kort beskrivelse av produksjonen (valgfritt)" -#: build/models.py:265 +#: build/models.py:266 msgid "BuildOrder to which this build is allocated" msgstr "Produksjonsordre som denne produksjonen er tildelt" -#: build/models.py:274 +#: build/models.py:275 msgid "Select part to build" msgstr "Velg del å produsere" -#: build/models.py:279 +#: build/models.py:280 msgid "Sales Order Reference" msgstr "Salgsordrereferanse" -#: build/models.py:284 +#: build/models.py:285 msgid "SalesOrder to which this build is allocated" msgstr "Salgsordren denne produksjonen er tildelt til" -#: build/models.py:289 build/serializers.py:1097 +#: build/models.py:290 build/serializers.py:1105 msgid "Source Location" msgstr "Kildeplassering" -#: build/models.py:295 +#: build/models.py:296 msgid "Select location to take stock from for this build (leave blank to take from any stock location)" msgstr "Velg plassering å ta lagerbeholdning fra for denne produksjonen (la stå tomt for a ta fra alle lagerplasseringer)" -#: build/models.py:301 +#: build/models.py:302 msgid "External Build" msgstr "" -#: build/models.py:302 +#: build/models.py:303 msgid "This build order is fulfilled externally" msgstr "" -#: build/models.py:307 +#: build/models.py:308 msgid "Destination Location" msgstr "Fullført plassering" -#: build/models.py:312 +#: build/models.py:313 msgid "Select location where the completed items will be stored" msgstr "Velg plassering der fullførte artikler vil bli lagret" -#: build/models.py:316 +#: build/models.py:317 msgid "Build Quantity" msgstr "Produksjonsmengde" -#: build/models.py:319 +#: build/models.py:320 msgid "Number of stock items to build" msgstr "Antall lagervarer å produsere" -#: build/models.py:323 +#: build/models.py:324 msgid "Completed items" msgstr "Fullførte artikler" -#: build/models.py:325 +#: build/models.py:326 msgid "Number of stock items which have been completed" msgstr "Antall lagervarer som er fullført" -#: build/models.py:329 +#: build/models.py:330 msgid "Build Status" msgstr "Produksjonsstatus" -#: build/models.py:334 +#: build/models.py:335 msgid "Build status code" msgstr "Produksjonsstatuskode" -#: build/models.py:343 build/serializers.py:359 order/serializers.py:849 +#: build/models.py:344 build/serializers.py:367 order/serializers.py:860 #: stock/models.py:1100 stock/serializers.py:85 stock/serializers.py:1591 msgid "Batch Code" msgstr "Batchkode" -#: build/models.py:347 build/serializers.py:360 +#: build/models.py:348 build/serializers.py:368 msgid "Batch code for this build output" msgstr "Batchkode for denne produksjonsartikkelen" -#: build/models.py:351 order/models.py:479 order/serializers.py:186 -#: part/models.py:1283 +#: build/models.py:352 order/models.py:480 order/serializers.py:193 +#: part/models.py:1371 msgid "Creation Date" msgstr "Opprettelsesdato" -#: build/models.py:357 +#: build/models.py:358 msgid "Build start date" msgstr "" -#: build/models.py:358 +#: build/models.py:359 msgid "Scheduled start date for this build order" msgstr "" -#: build/models.py:364 +#: build/models.py:365 msgid "Target completion date" msgstr "Forventet sluttdato" -#: build/models.py:366 +#: build/models.py:367 msgid "Target date for build completion. Build will be overdue after this date." msgstr "Måldato for ferdigstillelse. Produksjonen vil være forfalt etter denne datoen." -#: build/models.py:371 order/models.py:667 order/models.py:2751 +#: build/models.py:372 order/models.py:668 order/models.py:2752 msgid "Completion Date" msgstr "Fullført dato" -#: build/models.py:379 +#: build/models.py:380 msgid "completed by" msgstr "fullført av" -#: build/models.py:388 +#: build/models.py:389 msgid "Issued by" msgstr "Utstedt av" -#: build/models.py:389 +#: build/models.py:390 msgid "User who issued this build order" msgstr "Brukeren som utstedte denne produksjonsordren" -#: build/models.py:398 common/models.py:180 order/api.py:179 -#: order/models.py:504 part/models.py:1300 +#: build/models.py:399 common/models.py:184 order/api.py:184 +#: order/models.py:505 part/models.py:1388 #: report/templates/report/inventree_build_order_report.html:158 msgid "Responsible" msgstr "Ansvarlig" -#: build/models.py:399 +#: build/models.py:400 msgid "User or group responsible for this build order" msgstr "Bruker eller gruppe ansvarlig for produksjonsordren" -#: build/models.py:404 stock/models.py:1093 +#: build/models.py:405 stock/models.py:1093 msgid "External Link" msgstr "Ekstern lenke" -#: build/models.py:406 common/models.py:1984 part/models.py:1114 +#: build/models.py:407 common/models.py:1990 part/models.py:1202 #: stock/models.py:1095 msgid "Link to external URL" msgstr "Lenke til ekstern URL" -#: build/models.py:411 +#: build/models.py:412 msgid "Build Priority" msgstr "Produksjonsprioritet" -#: build/models.py:414 +#: build/models.py:415 msgid "Priority of this build order" msgstr "Produksjonsordrens prioritet" -#: build/models.py:422 common/models.py:150 common/models.py:164 -#: order/api.py:165 order/models.py:451 order/models.py:1805 +#: build/models.py:423 common/models.py:154 common/models.py:168 +#: order/api.py:170 order/models.py:452 order/models.py:1806 msgid "Project Code" msgstr "Prosjektkode" -#: build/models.py:423 +#: build/models.py:424 msgid "Project code for this build order" msgstr "Prosjektkode for denne produksjonsordren" -#: build/models.py:676 +#: build/models.py:677 msgid "Cannot complete build order with open child builds" msgstr "" -#: build/models.py:681 +#: build/models.py:682 msgid "Cannot complete build order with incomplete outputs" msgstr "" -#: build/models.py:700 build/models.py:830 +#: build/models.py:701 build/models.py:831 msgid "Failed to offload task to complete build allocations" msgstr "Kunne ikke delegere bort oppgaven for å fullføre tildelinger" -#: build/models.py:723 +#: build/models.py:724 #, python-brace-format msgid "Build order {build} has been completed" msgstr "Produksjonsordre {build} er fullført" -#: build/models.py:729 +#: build/models.py:730 msgid "A build order has been completed" msgstr "En produksjonsordre er fullført" -#: build/models.py:911 build/serializers.py:407 +#: build/models.py:912 build/serializers.py:415 msgid "Serial numbers must be provided for trackable parts" msgstr "Serienumre må angis for sporbare deler" -#: build/models.py:1042 build/models.py:1129 +#: build/models.py:1043 build/models.py:1130 msgid "No build output specified" msgstr "Ingen produksjonsartikkel spesifisert" -#: build/models.py:1045 +#: build/models.py:1046 msgid "Build output is already completed" msgstr "Produksjonsartikkelen er allerede fullført" -#: build/models.py:1048 +#: build/models.py:1049 msgid "Build output does not match Build Order" msgstr "Produksjonsartikkelen samsvarer ikke med produksjonsordren" -#: build/models.py:1136 build/models.py:1234 build/serializers.py:285 -#: build/serializers.py:335 build/serializers.py:965 build/serializers.py:1739 -#: order/models.py:717 order/serializers.py:658 order/serializers.py:844 -#: part/serializers.py:1708 stock/models.py:940 stock/models.py:1430 +#: build/models.py:1137 build/models.py:1235 build/serializers.py:293 +#: build/serializers.py:343 build/serializers.py:973 build/serializers.py:1747 +#: order/models.py:718 order/serializers.py:669 order/serializers.py:855 +#: part/serializers.py:1573 stock/models.py:940 stock/models.py:1430 #: stock/models.py:1878 stock/serializers.py:688 stock/serializers.py:1580 msgid "Quantity must be greater than zero" msgstr "Mengden må være større enn null" -#: build/models.py:1140 build/models.py:1239 build/serializers.py:290 +#: build/models.py:1141 build/models.py:1240 build/serializers.py:298 msgid "Quantity cannot be greater than the output quantity" msgstr "Kvantitet kan ikke være større enn utgangsantallet" -#: build/models.py:1214 build/serializers.py:606 +#: build/models.py:1215 build/serializers.py:614 msgid "Build output has not passed all required tests" msgstr "" -#: build/models.py:1217 build/serializers.py:601 +#: build/models.py:1218 build/serializers.py:609 #, python-brace-format msgid "Build output {serial} has not passed all required tests" msgstr "Produksjonsartikkel {serial} har ikke bestått alle påkrevde tester" -#: build/models.py:1229 +#: build/models.py:1230 msgid "Cannot partially complete a build output with allocated items" msgstr "" -#: build/models.py:1627 +#: build/models.py:1628 msgid "Build Order Line Item" msgstr "Produksjonsartikkel" -#: build/models.py:1651 +#: build/models.py:1652 msgid "Build object" msgstr "Produksjonsobjekt" -#: build/models.py:1663 build/models.py:1974 build/serializers.py:271 -#: build/serializers.py:320 build/serializers.py:1392 common/models.py:1340 -#: order/models.py:1756 order/models.py:2597 order/serializers.py:1696 -#: order/serializers.py:2124 part/models.py:3453 part/models.py:4390 +#: build/models.py:1664 build/models.py:1975 build/serializers.py:279 +#: build/serializers.py:328 build/serializers.py:1400 common/models.py:1344 +#: order/models.py:1757 order/models.py:2598 order/serializers.py:1710 +#: order/serializers.py:2141 part/models.py:3517 part/models.py:4015 #: report/templates/report/inventree_bill_of_materials_report.html:138 #: report/templates/report/inventree_build_order_report.html:113 #: report/templates/report/inventree_purchase_order_report.html:36 @@ -1014,427 +1030,427 @@ msgstr "Produksjonsobjekt" msgid "Quantity" msgstr "Antall" -#: build/models.py:1664 +#: build/models.py:1665 msgid "Required quantity for build order" msgstr "Påkrevd antall for produksjonsordre" -#: build/models.py:1673 +#: build/models.py:1674 msgid "Quantity of consumed stock" msgstr "" -#: build/models.py:1772 +#: build/models.py:1773 msgid "Build item must specify a build output, as master part is marked as trackable" msgstr "Produksjonselement må spesifisere en produksjonsartikkel, da master-del er merket som sporbar" -#: build/models.py:1783 +#: build/models.py:1784 #, python-brace-format msgid "Allocated quantity ({q}) must not exceed available stock quantity ({a})" msgstr "Tildelt antall ({q}) kan ikke overstige tilgjengelig lagerbeholdning ({a})" -#: build/models.py:1804 order/models.py:2546 +#: build/models.py:1805 order/models.py:2547 msgid "Stock item is over-allocated" msgstr "Lagervaren er overtildelt" -#: build/models.py:1809 order/models.py:2549 +#: build/models.py:1810 order/models.py:2550 msgid "Allocation quantity must be greater than zero" msgstr "Tildelingsantall må være større enn null" -#: build/models.py:1815 +#: build/models.py:1816 msgid "Quantity must be 1 for serialized stock" msgstr "Mengden må være 1 for serialisert lagervare" -#: build/models.py:1875 +#: build/models.py:1876 msgid "Selected stock item does not match BOM line" msgstr "Valgt lagervare samsvarer ikke med BOM-linjen" -#: build/models.py:1913 +#: build/models.py:1914 msgid "Allocated quantity exceeds available stock quantity" msgstr "" -#: build/models.py:1964 build/serializers.py:948 build/serializers.py:1240 -#: order/serializers.py:1533 order/serializers.py:1554 +#: build/models.py:1965 build/serializers.py:956 build/serializers.py:1248 +#: order/serializers.py:1547 order/serializers.py:1568 #: report/templates/report/inventree_sales_order_shipment_report.html:29 #: stock/api.py:1404 stock/models.py:456 stock/serializers.py:102 #: stock/serializers.py:800 stock/serializers.py:1274 stock/serializers.py:1386 msgid "Stock Item" msgstr "Lagervare" -#: build/models.py:1965 +#: build/models.py:1966 msgid "Source stock item" msgstr "Kildelagervare" -#: build/models.py:1975 +#: build/models.py:1976 msgid "Stock quantity to allocate to build" msgstr "Lagerantall å tildele til produksjonen" -#: build/models.py:1984 +#: build/models.py:1985 msgid "Install into" msgstr "Monteres i" -#: build/models.py:1985 +#: build/models.py:1986 msgid "Destination stock item" msgstr "Lagervare for montering" -#: build/serializers.py:118 +#: build/serializers.py:120 msgid "Build Level" msgstr "" -#: build/serializers.py:128 +#: build/serializers.py:136 msgid "Part Name" msgstr "Delnavn" -#: build/serializers.py:153 +#: build/serializers.py:161 msgid "Project Code Label" msgstr "Etikett for prosjektkode" -#: build/serializers.py:219 build/serializers.py:974 +#: build/serializers.py:227 build/serializers.py:982 msgid "Build Output" msgstr "Produksjonsartikkel" -#: build/serializers.py:231 +#: build/serializers.py:239 msgid "Build output does not match the parent build" msgstr "Produksjonsartikkel samsvarer ikke med overordnet produksjon" -#: build/serializers.py:235 +#: build/serializers.py:243 msgid "Output part does not match BuildOrder part" msgstr "Resultatdel samsvarer ikke med produksjonsordredel" -#: build/serializers.py:239 +#: build/serializers.py:247 msgid "This build output has already been completed" msgstr "Denne produksjonsartikkelen er allerede fullført" -#: build/serializers.py:253 +#: build/serializers.py:261 msgid "This build output is not fully allocated" msgstr "Denne produksjonsartikkelen er ikke fullt tildelt" -#: build/serializers.py:272 build/serializers.py:321 +#: build/serializers.py:280 build/serializers.py:329 msgid "Enter quantity for build output" msgstr "Angi antall for produksjonsartikkel" -#: build/serializers.py:343 +#: build/serializers.py:351 msgid "Integer quantity required for trackable parts" msgstr "Heltallsverdi kreves for sporbare deler" -#: build/serializers.py:349 +#: build/serializers.py:357 msgid "Integer quantity required, as the bill of materials contains trackable parts" msgstr "Heltallsverdi kreves, da stykklisten inneholder sporbare deler" -#: build/serializers.py:366 order/serializers.py:865 order/serializers.py:1700 +#: build/serializers.py:374 order/serializers.py:876 order/serializers.py:1714 #: stock/serializers.py:699 msgid "Serial Numbers" msgstr "Serienummer" -#: build/serializers.py:367 +#: build/serializers.py:375 msgid "Enter serial numbers for build outputs" msgstr "Angi serienummer for produksjonsartikler" -#: build/serializers.py:373 +#: build/serializers.py:381 msgid "Stock location for build output" msgstr "Lagerplassering for produksjonsartikkel" -#: build/serializers.py:388 +#: build/serializers.py:396 msgid "Auto Allocate Serial Numbers" msgstr "Automatisk tildeling av serienummer" -#: build/serializers.py:390 +#: build/serializers.py:398 msgid "Automatically allocate required items with matching serial numbers" msgstr "Automatisk tildeling av nødvendige artikler med tilsvarende serienummer" -#: build/serializers.py:423 order/serializers.py:951 stock/api.py:1183 +#: build/serializers.py:431 order/serializers.py:962 stock/api.py:1183 #: stock/models.py:1901 msgid "The following serial numbers already exist or are invalid" msgstr "Følgende serienummer finnes allerede eller er ugyldige" -#: build/serializers.py:465 build/serializers.py:521 build/serializers.py:613 +#: build/serializers.py:473 build/serializers.py:529 build/serializers.py:621 msgid "A list of build outputs must be provided" msgstr "En liste over produksjonsartikler må oppgis" -#: build/serializers.py:498 +#: build/serializers.py:506 msgid "Stock location for scrapped outputs" msgstr "Lagerplassering for skrotede produksjonsartikler" -#: build/serializers.py:504 +#: build/serializers.py:512 msgid "Discard Allocations" msgstr "Forkast tildelinger" -#: build/serializers.py:505 +#: build/serializers.py:513 msgid "Discard any stock allocations for scrapped outputs" msgstr "Forkast tildelinger fra skrotede produksjonsartikler" -#: build/serializers.py:510 +#: build/serializers.py:518 msgid "Reason for scrapping build output(s)" msgstr "Grunn for skroting av produksjonsartikler" -#: build/serializers.py:568 +#: build/serializers.py:576 msgid "Location for completed build outputs" msgstr "Plassering for ferdige produksjonsartikler" -#: build/serializers.py:576 +#: build/serializers.py:584 msgid "Accept Incomplete Allocation" msgstr "Godta ufullstendig tildeling" -#: build/serializers.py:577 +#: build/serializers.py:585 msgid "Complete outputs if stock has not been fully allocated" msgstr "Fullfør artikler dersom lagerbeholdning ikke er fullt tildelt" -#: build/serializers.py:702 +#: build/serializers.py:710 msgid "Consume Allocated Stock" msgstr "Bruk tildelt lagerbeholdning" -#: build/serializers.py:703 +#: build/serializers.py:711 msgid "Consume any stock which has already been allocated to this build" msgstr "Bruk all lagerbeholdning som allerede er tildelt denne produksjonen" -#: build/serializers.py:709 +#: build/serializers.py:717 msgid "Remove Incomplete Outputs" msgstr "Fjern ufullstendige artikler" -#: build/serializers.py:710 +#: build/serializers.py:718 msgid "Delete any build outputs which have not been completed" msgstr "Slett alle produksjonsartikler som ikke er fullført" -#: build/serializers.py:737 +#: build/serializers.py:745 msgid "Not permitted" msgstr "Ikke tillatt" -#: build/serializers.py:738 +#: build/serializers.py:746 msgid "Accept as consumed by this build order" msgstr "Godta som brukt av denne produksjonsordren" -#: build/serializers.py:739 +#: build/serializers.py:747 msgid "Deallocate before completing this build order" msgstr "Fjern tildeling før produksjonsordren fullføres" -#: build/serializers.py:766 +#: build/serializers.py:774 msgid "Overallocated Stock" msgstr "Overtildelt lagerbeholdning" -#: build/serializers.py:769 +#: build/serializers.py:777 msgid "How do you want to handle extra stock items assigned to the build order" msgstr "Hvordan vil du håndtere ekstra lagervarer tildelt produksjonsordren" -#: build/serializers.py:780 +#: build/serializers.py:788 msgid "Some stock items have been overallocated" msgstr "Noen lagervarer har blitt overtildelt" -#: build/serializers.py:785 +#: build/serializers.py:793 msgid "Accept Unallocated" msgstr "Godta ikke tildelt" -#: build/serializers.py:787 +#: build/serializers.py:795 msgid "Accept that stock items have not been fully allocated to this build order" msgstr "Godta at lagervarer ikke er fullt tildelt til denne produksjonsordren" -#: build/serializers.py:798 +#: build/serializers.py:806 msgid "Required stock has not been fully allocated" msgstr "Nøvendig lagerbeholdning er ikke fullt tildelt" -#: build/serializers.py:803 order/serializers.py:524 order/serializers.py:1601 +#: build/serializers.py:811 order/serializers.py:535 order/serializers.py:1615 msgid "Accept Incomplete" msgstr "Godta uferdig" -#: build/serializers.py:805 +#: build/serializers.py:813 msgid "Accept that the required number of build outputs have not been completed" msgstr "Godta at nødvendig antall fullførte produksjonsartikler ikke er nådd" -#: build/serializers.py:816 +#: build/serializers.py:824 msgid "Required build quantity has not been completed" msgstr "Nødvendig produksjonsmengde er ikke nådd" -#: build/serializers.py:828 +#: build/serializers.py:836 msgid "Build order has open child build orders" msgstr "" -#: build/serializers.py:831 +#: build/serializers.py:839 msgid "Build order must be in production state" msgstr "" -#: build/serializers.py:834 +#: build/serializers.py:842 msgid "Build order has incomplete outputs" msgstr "Produksjonsordren har uferdige artikler" -#: build/serializers.py:873 +#: build/serializers.py:881 msgid "Build Line" msgstr "Produksjonslinje" -#: build/serializers.py:881 +#: build/serializers.py:889 msgid "Build output" msgstr "Produksjonsartikkel" -#: build/serializers.py:889 +#: build/serializers.py:897 msgid "Build output must point to the same build" msgstr "Produksjonsartikkel må peke til samme produksjon" -#: build/serializers.py:920 +#: build/serializers.py:928 msgid "Build Line Item" msgstr "Produksjonsartikkel" -#: build/serializers.py:938 +#: build/serializers.py:946 msgid "bom_item.part must point to the same part as the build order" msgstr "bom_item.part må peke på den samme delen som produksjonsordren" -#: build/serializers.py:954 stock/serializers.py:1287 +#: build/serializers.py:962 stock/serializers.py:1287 msgid "Item must be in stock" msgstr "Artikkelen må være på lager" -#: build/serializers.py:997 order/serializers.py:1587 +#: build/serializers.py:1005 order/serializers.py:1601 #, python-brace-format msgid "Available quantity ({q}) exceeded" msgstr "Tilgjengelig antall ({q}) overskredet" -#: build/serializers.py:1003 +#: build/serializers.py:1011 msgid "Build output must be specified for allocation of tracked parts" msgstr "Produksjonsartikkel må spesifiseres for tildeling av sporede deler" -#: build/serializers.py:1011 +#: build/serializers.py:1019 msgid "Build output cannot be specified for allocation of untracked parts" msgstr "Produksjonsartikkel kan ikke spesifiseres for tildeling av usporede deler" -#: build/serializers.py:1035 order/serializers.py:1860 +#: build/serializers.py:1043 order/serializers.py:1874 msgid "Allocation items must be provided" msgstr "Tildelingsartikler må oppgis" -#: build/serializers.py:1099 +#: build/serializers.py:1107 msgid "Stock location where parts are to be sourced (leave blank to take from any location)" msgstr "Lagerplassering hvor deler skal hentes (la stå tomt for å ta fra alle plasseringer)" -#: build/serializers.py:1108 +#: build/serializers.py:1116 msgid "Exclude Location" msgstr "Eksluderer plassering" -#: build/serializers.py:1109 +#: build/serializers.py:1117 msgid "Exclude stock items from this selected location" msgstr "Ekskluder lagervarer fra denne valgte plasseringen" -#: build/serializers.py:1114 +#: build/serializers.py:1122 msgid "Interchangeable Stock" msgstr "Utskiftbar lagerbeholdning" -#: build/serializers.py:1115 +#: build/serializers.py:1123 msgid "Stock items in multiple locations can be used interchangeably" msgstr "Lagervarer ved flere plasseringer kan brukes om hverandre" -#: build/serializers.py:1120 +#: build/serializers.py:1128 msgid "Substitute Stock" msgstr "Erstatning-lagerbeholdning" -#: build/serializers.py:1121 +#: build/serializers.py:1129 msgid "Allow allocation of substitute parts" msgstr "Tilatt tildelling av erstatningsdeler" -#: build/serializers.py:1126 +#: build/serializers.py:1134 msgid "Optional Items" msgstr "Valgfrie artikler" -#: build/serializers.py:1127 +#: build/serializers.py:1135 msgid "Allocate optional BOM items to build order" msgstr "Tildel valgfrie BOM-artikler til produksjonsordre" -#: build/serializers.py:1148 +#: build/serializers.py:1156 msgid "Failed to start auto-allocation task" msgstr "Kunne ikke starte auto-tideling" -#: build/serializers.py:1200 +#: build/serializers.py:1208 msgid "BOM Reference" msgstr "BOM-referanse" -#: build/serializers.py:1206 +#: build/serializers.py:1214 msgid "BOM Part ID" msgstr "" -#: build/serializers.py:1213 +#: build/serializers.py:1221 msgid "BOM Part Name" msgstr "" -#: build/serializers.py:1266 build/serializers.py:1449 +#: build/serializers.py:1274 build/serializers.py:1457 msgid "Build" msgstr "" -#: build/serializers.py:1276 company/models.py:685 order/api.py:311 -#: order/api.py:316 order/api.py:543 order/serializers.py:650 +#: build/serializers.py:1284 company/models.py:639 order/api.py:316 +#: order/api.py:321 order/api.py:549 order/serializers.py:661 #: stock/models.py:1036 stock/serializers.py:579 msgid "Supplier Part" msgstr "Leverandørdel" -#: build/serializers.py:1284 stock/serializers.py:620 +#: build/serializers.py:1292 stock/serializers.py:620 msgid "Allocated Quantity" msgstr "Tildelt antall" -#: build/serializers.py:1351 +#: build/serializers.py:1359 msgid "Build Reference" msgstr "Produksjonsreferanse" -#: build/serializers.py:1361 +#: build/serializers.py:1369 msgid "Part Category Name" msgstr "Delkategorinavn" -#: build/serializers.py:1383 common/setting/system.py:480 part/models.py:1214 +#: build/serializers.py:1391 common/setting/system.py:480 part/models.py:1302 msgid "Trackable" msgstr "Sporbar" -#: build/serializers.py:1386 +#: build/serializers.py:1394 msgid "Inherited" msgstr "Nedarvet" -#: build/serializers.py:1389 part/models.py:4475 +#: build/serializers.py:1397 part/models.py:4100 msgid "Allow Variants" msgstr "Tillat Varianter" -#: build/serializers.py:1395 build/serializers.py:1400 part/models.py:4208 -#: part/models.py:4779 stock/api.py:882 +#: build/serializers.py:1403 build/serializers.py:1408 part/models.py:3833 +#: part/models.py:4404 stock/api.py:882 msgid "BOM Item" msgstr "BOM-artikkel" -#: build/serializers.py:1467 order/serializers.py:1282 part/serializers.py:1310 -#: part/serializers.py:1765 +#: build/serializers.py:1475 order/serializers.py:1296 part/serializers.py:1175 +#: part/serializers.py:1630 msgid "In Production" msgstr "I produksjon" -#: build/serializers.py:1469 part/serializers.py:950 part/serializers.py:1314 +#: build/serializers.py:1477 part/serializers.py:835 part/serializers.py:1179 msgid "Scheduled to Build" msgstr "" -#: build/serializers.py:1472 part/serializers.py:987 +#: build/serializers.py:1480 part/serializers.py:872 msgid "External Stock" msgstr "Ekstern lagerbeholdning" -#: build/serializers.py:1473 part/serializers.py:1300 part/serializers.py:1808 +#: build/serializers.py:1481 part/serializers.py:1165 part/serializers.py:1673 msgid "Available Stock" msgstr "Tilgjengelig lagerbeholdning" -#: build/serializers.py:1475 +#: build/serializers.py:1483 msgid "Available Substitute Stock" msgstr "Tilgjengelige erstatningsvarer" -#: build/serializers.py:1478 +#: build/serializers.py:1486 msgid "Available Variant Stock" msgstr "Tilgjengelige variantvarer" -#: build/serializers.py:1752 +#: build/serializers.py:1760 msgid "Consumed quantity exceeds allocated quantity" msgstr "" -#: build/serializers.py:1789 +#: build/serializers.py:1797 msgid "Optional notes for the stock consumption" msgstr "" -#: build/serializers.py:1806 +#: build/serializers.py:1814 msgid "Build item must point to the correct build order" msgstr "" -#: build/serializers.py:1811 +#: build/serializers.py:1819 msgid "Duplicate build item allocation" msgstr "" -#: build/serializers.py:1829 +#: build/serializers.py:1837 msgid "Build line must point to the correct build order" msgstr "" -#: build/serializers.py:1834 +#: build/serializers.py:1842 msgid "Duplicate build line allocation" msgstr "" -#: build/serializers.py:1846 +#: build/serializers.py:1854 msgid "At least one item or line must be provided" msgstr "" @@ -1482,702 +1498,826 @@ msgstr "Forfalt produksjonsordre" msgid "Build order {bo} is now overdue" msgstr "Produksjonsordre {bo} er nå forfalt" -#: common/api.py:694 +#: common/api.py:701 msgid "Is Link" msgstr "Er lenke" -#: common/api.py:702 +#: common/api.py:709 msgid "Is File" msgstr "Er fil" -#: common/api.py:745 +#: common/api.py:756 msgid "User does not have permission to delete these attachments" msgstr "" -#: common/api.py:762 +#: common/api.py:769 msgid "User does not have permission to delete this attachment" msgstr "Brukeren har ikke tillatelse til å slette dette vedlegget" -#: common/currency.py:122 +#: common/currency.py:130 msgid "Invalid currency code" msgstr "Ugyldig valutakode" -#: common/currency.py:124 +#: common/currency.py:132 msgid "Duplicate currency code" msgstr "Valutakode eksisterer allerede" -#: common/currency.py:129 +#: common/currency.py:137 msgid "No valid currency codes provided" msgstr "Ingen gyldige valutakoder angitt" -#: common/currency.py:146 +#: common/currency.py:154 msgid "No plugin" msgstr "Ingen programtillegg" -#: common/models.py:101 common/models.py:126 common/models.py:2729 +#: common/models.py:105 common/models.py:130 common/models.py:3150 msgid "Updated" msgstr "Oppdatert" -#: common/models.py:102 common/models.py:127 +#: common/models.py:106 common/models.py:131 msgid "Timestamp of last update" msgstr "Tidsstempel for forrige oppdatering" -#: common/models.py:139 +#: common/models.py:143 msgid "Update By" msgstr "" -#: common/models.py:140 +#: common/models.py:144 msgid "User who last updated this object" msgstr "" -#: common/models.py:165 +#: common/models.py:169 msgid "Unique project code" msgstr "Unik prosjektkode" -#: common/models.py:172 +#: common/models.py:176 msgid "Project description" msgstr "Prosjektbeskrivelse" -#: common/models.py:181 +#: common/models.py:185 msgid "User or group responsible for this project" msgstr "Bruker eller gruppe ansvarlig for dette prosjektet" -#: common/models.py:771 common/models.py:1272 common/models.py:1310 +#: common/models.py:775 common/models.py:1276 common/models.py:1314 msgid "Settings key" msgstr "" -#: common/models.py:775 +#: common/models.py:779 msgid "Settings value" msgstr "Innstillings verdi" -#: common/models.py:830 +#: common/models.py:834 msgid "Chosen value is not a valid option" msgstr "Valgt verdi er ikke et gyldig alternativ" -#: common/models.py:846 +#: common/models.py:850 msgid "Value must be a boolean value" msgstr "Verdien må være en boolsk verdi" -#: common/models.py:854 +#: common/models.py:858 msgid "Value must be an integer value" msgstr "Verdien må være et heltall" -#: common/models.py:862 +#: common/models.py:866 msgid "Value must be a valid number" msgstr "" -#: common/models.py:887 +#: common/models.py:891 msgid "Value does not pass validation checks" msgstr "" -#: common/models.py:909 +#: common/models.py:913 msgid "Key string must be unique" msgstr "Nøkkelstreng må være unik" -#: common/models.py:1318 common/models.py:1319 common/models.py:1423 -#: common/models.py:1424 common/models.py:1669 common/models.py:1670 -#: common/models.py:2000 common/models.py:2001 common/models.py:2382 -#: importer/models.py:100 part/models.py:3547 part/models.py:3575 +#: common/models.py:1322 common/models.py:1323 common/models.py:1427 +#: common/models.py:1428 common/models.py:1673 common/models.py:1674 +#: common/models.py:2006 common/models.py:2007 common/models.py:2803 +#: importer/models.py:100 part/models.py:3611 part/models.py:3639 #: plugin/models.py:355 plugin/models.py:356 #: report/templates/report/inventree_test_report.html:105 users/models.py:124 #: users/models.py:501 msgid "User" msgstr "Bruker" -#: common/models.py:1341 +#: common/models.py:1345 msgid "Price break quantity" msgstr "Antall for prisbrudd" -#: common/models.py:1348 company/serializers.py:564 order/models.py:1842 -#: order/models.py:3043 +#: common/models.py:1352 company/serializers.py:349 order/models.py:1843 +#: order/models.py:3044 msgid "Price" msgstr "Pris" -#: common/models.py:1349 +#: common/models.py:1353 msgid "Unit price at specified quantity" msgstr "Enhetspris på spesifisert antall" -#: common/models.py:1400 common/models.py:1585 +#: common/models.py:1404 common/models.py:1589 msgid "Endpoint" msgstr "Endepunkt" -#: common/models.py:1401 +#: common/models.py:1405 msgid "Endpoint at which this webhook is received" msgstr "Endepunktet hvor denne webhooken er mottatt" -#: common/models.py:1411 +#: common/models.py:1415 msgid "Name for this webhook" msgstr "Navn for webhooken" -#: common/models.py:1415 common/models.py:2241 common/models.py:2348 -#: company/models.py:191 company/models.py:822 machine/models.py:40 -#: part/models.py:1237 plugin/models.py:69 stock/api.py:642 users/models.py:195 +#: common/models.py:1419 common/models.py:2247 common/models.py:2354 +#: company/models.py:192 company/models.py:776 machine/models.py:40 +#: part/models.py:1325 plugin/models.py:69 stock/api.py:642 users/models.py:195 #: users/models.py:554 users/serializers.py:314 msgid "Active" msgstr "Aktiv" -#: common/models.py:1415 +#: common/models.py:1419 msgid "Is this webhook active" msgstr "Er webhooken aktiv" -#: common/models.py:1431 users/models.py:172 +#: common/models.py:1435 users/models.py:172 msgid "Token" msgstr "Sjetong" -#: common/models.py:1432 +#: common/models.py:1436 msgid "Token for access" msgstr "Nøkkel for tilgang" -#: common/models.py:1440 +#: common/models.py:1444 msgid "Secret" msgstr "Hemmelig" -#: common/models.py:1441 +#: common/models.py:1445 msgid "Shared secret for HMAC" msgstr "Delt hemmlighet for HMAC" -#: common/models.py:1549 common/models.py:2619 +#: common/models.py:1553 common/models.py:3040 msgid "Message ID" msgstr "Melding ID" -#: common/models.py:1550 common/models.py:2609 +#: common/models.py:1554 common/models.py:3030 msgid "Unique identifier for this message" msgstr "Unik Id for denne meldingen" -#: common/models.py:1558 +#: common/models.py:1562 msgid "Host" msgstr "Vert" -#: common/models.py:1559 +#: common/models.py:1563 msgid "Host from which this message was received" msgstr "Verten denne meldingen ble mottatt fra" -#: common/models.py:1567 +#: common/models.py:1571 msgid "Header" msgstr "Tittel" -#: common/models.py:1568 +#: common/models.py:1572 msgid "Header of this message" msgstr "Overskrift for denne meldingen" -#: common/models.py:1575 +#: common/models.py:1579 msgid "Body" msgstr "Brødtekst" -#: common/models.py:1576 +#: common/models.py:1580 msgid "Body of this message" msgstr "Innholdet i meldingen" -#: common/models.py:1586 +#: common/models.py:1590 msgid "Endpoint on which this message was received" msgstr "Endepunktet meldingen ble mottatt fra" -#: common/models.py:1591 +#: common/models.py:1595 msgid "Worked on" msgstr "Arbeidet med" -#: common/models.py:1592 +#: common/models.py:1596 msgid "Was the work on this message finished?" msgstr "Var arbeidet med denne meldingen ferdig?" -#: common/models.py:1718 +#: common/models.py:1722 msgid "Id" msgstr "" -#: common/models.py:1720 +#: common/models.py:1724 msgid "Title" msgstr "Tittel" -#: common/models.py:1722 common/models.py:1983 company/models.py:185 -#: company/models.py:467 company/models.py:534 company/models.py:839 -#: order/models.py:457 order/models.py:1786 order/models.py:2343 -#: part/models.py:1113 +#: common/models.py:1726 common/models.py:1989 company/models.py:186 +#: company/models.py:468 company/models.py:536 company/models.py:793 +#: order/models.py:458 order/models.py:1787 order/models.py:2344 +#: part/models.py:1201 #: report/templates/report/inventree_build_order_report.html:164 msgid "Link" msgstr "Lenke" -#: common/models.py:1724 +#: common/models.py:1728 msgid "Published" msgstr "Publisert" -#: common/models.py:1726 +#: common/models.py:1730 msgid "Author" msgstr "Forfatter" -#: common/models.py:1728 +#: common/models.py:1732 msgid "Summary" msgstr "Sammendrag" -#: common/models.py:1731 common/models.py:2586 +#: common/models.py:1735 common/models.py:3007 msgid "Read" msgstr "Les" -#: common/models.py:1731 +#: common/models.py:1735 msgid "Was this news item read?" msgstr "Er dette nyhetselementet lest?" -#: common/models.py:1748 +#: common/models.py:1752 msgid "Image file" msgstr "Bildefil" -#: common/models.py:1760 +#: common/models.py:1764 msgid "Target model type for this image" msgstr "" -#: common/models.py:1764 +#: common/models.py:1768 msgid "Target model ID for this image" msgstr "" -#: common/models.py:1786 +#: common/models.py:1790 msgid "Custom Unit" msgstr "" -#: common/models.py:1804 +#: common/models.py:1808 msgid "Unit symbol must be unique" msgstr "Enhetssymbolet må være unikt" -#: common/models.py:1819 +#: common/models.py:1823 msgid "Unit name must be a valid identifier" msgstr "Enhetsnavn må være en gyldig identifikator" -#: common/models.py:1838 +#: common/models.py:1842 msgid "Unit name" msgstr "Enhetsnavn" -#: common/models.py:1845 +#: common/models.py:1849 msgid "Symbol" msgstr "Symbol" -#: common/models.py:1846 +#: common/models.py:1850 msgid "Optional unit symbol" msgstr "Valgfritt enhetssymbol" -#: common/models.py:1852 +#: common/models.py:1856 msgid "Definition" msgstr "Definisjon" -#: common/models.py:1853 +#: common/models.py:1857 msgid "Unit definition" msgstr "Enhetsdefinisjon" -#: common/models.py:1911 common/models.py:1974 stock/models.py:2967 +#: common/models.py:1917 common/models.py:1980 stock/models.py:2984 #: stock/serializers.py:247 msgid "Attachment" msgstr "Vedlegg" -#: common/models.py:1928 +#: common/models.py:1934 msgid "Missing file" msgstr "Fil mangler" -#: common/models.py:1929 +#: common/models.py:1935 msgid "Missing external link" msgstr "Mangler eksternlenke" -#: common/models.py:1966 +#: common/models.py:1972 common/models.py:2488 msgid "Model type" msgstr "" -#: common/models.py:1967 +#: common/models.py:1973 msgid "Target model type for image" msgstr "" -#: common/models.py:1975 +#: common/models.py:1981 msgid "Select file to attach" msgstr "Velg fil å legge ved" -#: common/models.py:1991 +#: common/models.py:1997 msgid "Comment" msgstr "Kommentar" -#: common/models.py:1992 +#: common/models.py:1998 msgid "Attachment comment" msgstr "Vedleggskommentar" -#: common/models.py:2008 +#: common/models.py:2014 msgid "Upload date" msgstr "Opplastet dato" -#: common/models.py:2009 +#: common/models.py:2015 msgid "Date the file was uploaded" msgstr "Datoen som filen ble lastet opp" -#: common/models.py:2013 +#: common/models.py:2019 msgid "File size" msgstr "Filstørrelse" -#: common/models.py:2013 +#: common/models.py:2019 msgid "File size in bytes" msgstr "Filstørrelse i byte" -#: common/models.py:2051 common/serializers.py:684 +#: common/models.py:2057 common/serializers.py:688 msgid "Invalid model type specified for attachment" msgstr "Ugyldig modelltype spesifisert for vedlegg" -#: common/models.py:2072 +#: common/models.py:2078 msgid "Custom State" msgstr "" -#: common/models.py:2073 +#: common/models.py:2079 msgid "Custom States" msgstr "" -#: common/models.py:2078 +#: common/models.py:2084 msgid "Reference Status Set" msgstr "" -#: common/models.py:2079 +#: common/models.py:2085 msgid "Status set that is extended with this custom state" msgstr "" -#: common/models.py:2083 generic/states/serializers.py:18 +#: common/models.py:2089 generic/states/serializers.py:18 msgid "Logical Key" msgstr "" -#: common/models.py:2085 +#: common/models.py:2091 msgid "State logical key that is equal to this custom state in business logic" msgstr "" -#: common/models.py:2090 common/models.py:2329 company/models.py:622 -#: machine/serializers.py:27 -#: report/templates/report/inventree_test_report.html:104 stock/models.py:2959 +#: common/models.py:2096 common/models.py:2335 machine/serializers.py:27 +#: report/templates/report/inventree_test_report.html:104 stock/models.py:2976 msgid "Value" msgstr "Verdi" -#: common/models.py:2091 +#: common/models.py:2097 msgid "Numerical value that will be saved in the models database" msgstr "" -#: common/models.py:2097 +#: common/models.py:2103 msgid "Name of the state" msgstr "" -#: common/models.py:2106 common/models.py:2335 generic/states/serializers.py:22 +#: common/models.py:2112 common/models.py:2341 generic/states/serializers.py:22 msgid "Label" msgstr "" -#: common/models.py:2107 +#: common/models.py:2113 msgid "Label that will be displayed in the frontend" msgstr "" -#: common/models.py:2114 generic/states/serializers.py:24 +#: common/models.py:2120 generic/states/serializers.py:24 msgid "Color" msgstr "" -#: common/models.py:2115 +#: common/models.py:2121 msgid "Color that will be displayed in the frontend" msgstr "" -#: common/models.py:2123 +#: common/models.py:2129 msgid "Model" msgstr "" -#: common/models.py:2124 +#: common/models.py:2130 msgid "Model this state is associated with" msgstr "" -#: common/models.py:2139 +#: common/models.py:2145 msgid "Model must be selected" msgstr "" -#: common/models.py:2142 +#: common/models.py:2148 msgid "Key must be selected" msgstr "" -#: common/models.py:2145 +#: common/models.py:2151 msgid "Logical key must be selected" msgstr "" -#: common/models.py:2149 +#: common/models.py:2155 msgid "Key must be different from logical key" msgstr "" -#: common/models.py:2156 +#: common/models.py:2162 msgid "Valid reference status class must be provided" msgstr "" -#: common/models.py:2162 +#: common/models.py:2168 msgid "Key must be different from the logical keys of the reference status" msgstr "" -#: common/models.py:2169 +#: common/models.py:2175 msgid "Logical key must be in the logical keys of the reference status" msgstr "" -#: common/models.py:2176 +#: common/models.py:2182 msgid "Name must be different from the names of the reference status" msgstr "" -#: common/models.py:2216 common/models.py:2323 part/models.py:3889 +#: common/models.py:2222 common/models.py:2329 common/models.py:2533 msgid "Selection List" msgstr "" -#: common/models.py:2217 +#: common/models.py:2223 msgid "Selection Lists" msgstr "" -#: common/models.py:2222 +#: common/models.py:2228 msgid "Name of the selection list" msgstr "" -#: common/models.py:2229 +#: common/models.py:2235 msgid "Description of the selection list" msgstr "" -#: common/models.py:2235 part/models.py:1242 +#: common/models.py:2241 part/models.py:1330 msgid "Locked" msgstr "" -#: common/models.py:2236 +#: common/models.py:2242 msgid "Is this selection list locked?" msgstr "" -#: common/models.py:2242 +#: common/models.py:2248 msgid "Can this selection list be used?" msgstr "" -#: common/models.py:2250 +#: common/models.py:2256 msgid "Source Plugin" msgstr "" -#: common/models.py:2251 +#: common/models.py:2257 msgid "Plugin which provides the selection list" msgstr "" -#: common/models.py:2256 +#: common/models.py:2262 msgid "Source String" msgstr "" -#: common/models.py:2257 +#: common/models.py:2263 msgid "Optional string identifying the source used for this list" msgstr "" -#: common/models.py:2266 +#: common/models.py:2272 msgid "Default Entry" msgstr "" -#: common/models.py:2267 +#: common/models.py:2273 msgid "Default entry for this selection list" msgstr "" -#: common/models.py:2272 common/models.py:2724 +#: common/models.py:2278 common/models.py:3145 msgid "Created" msgstr "Opprettet" -#: common/models.py:2273 +#: common/models.py:2279 msgid "Date and time that the selection list was created" msgstr "" -#: common/models.py:2278 +#: common/models.py:2284 msgid "Last Updated" msgstr "Sist oppdatert" -#: common/models.py:2279 +#: common/models.py:2285 msgid "Date and time that the selection list was last updated" msgstr "" -#: common/models.py:2313 +#: common/models.py:2319 msgid "Selection List Entry" msgstr "" -#: common/models.py:2314 +#: common/models.py:2320 msgid "Selection List Entries" msgstr "" -#: common/models.py:2324 +#: common/models.py:2330 msgid "Selection list to which this entry belongs" msgstr "" -#: common/models.py:2330 +#: common/models.py:2336 msgid "Value of the selection list entry" msgstr "" -#: common/models.py:2336 +#: common/models.py:2342 msgid "Label for the selection list entry" msgstr "" -#: common/models.py:2342 +#: common/models.py:2348 msgid "Description of the selection list entry" msgstr "" -#: common/models.py:2349 +#: common/models.py:2355 msgid "Is this selection list entry active?" msgstr "" -#: common/models.py:2367 -msgid "Barcode Scan" +#: common/models.py:2387 +msgid "Parameter Template" +msgstr "Parametermal" + +#: common/models.py:2388 +msgid "Parameter Templates" msgstr "" -#: common/models.py:2371 importer/models.py:546 part/models.py:4060 -msgid "Data" +#: common/models.py:2425 +msgid "Checkbox parameters cannot have units" +msgstr "Sjekkboksparameter kan ikke ha enheter" + +#: common/models.py:2430 +msgid "Checkbox parameters cannot have choices" +msgstr "Sjekkboksparameter kan ikke ha valg" + +#: common/models.py:2450 part/models.py:3707 +msgid "Choices must be unique" +msgstr "Valg må være unike" + +#: common/models.py:2467 +msgid "Parameter template name must be unique" +msgstr "Navn på parametermal må være unikt" + +#: common/models.py:2489 +msgid "Target model type for this parameter template" msgstr "" -#: common/models.py:2372 -msgid "Barcode data" +#: common/models.py:2495 +msgid "Parameter Name" +msgstr "Parameternavn" + +#: common/models.py:2501 part/models.py:1283 +msgid "Units" +msgstr "Enheter" + +#: common/models.py:2502 +msgid "Physical units for this parameter" +msgstr "Fysisk enheter for denne parameteren" + +#: common/models.py:2510 +msgid "Parameter description" +msgstr "Parameterbeskrivelse" + +#: common/models.py:2516 +msgid "Checkbox" +msgstr "Sjekkboks" + +#: common/models.py:2517 +msgid "Is this parameter a checkbox?" +msgstr "Er dette parameteret en sjekkboks?" + +#: common/models.py:2522 part/models.py:3794 +msgid "Choices" +msgstr "Valg" + +#: common/models.py:2523 +msgid "Valid choices for this parameter (comma-separated)" +msgstr "Gyldige valg for denne parameteren (kommaseparert)" + +#: common/models.py:2534 +msgid "Selection list for this parameter" msgstr "" -#: common/models.py:2383 -msgid "User who scanned the barcode" +#: common/models.py:2539 part/models.py:3769 report/models.py:287 +msgid "Enabled" +msgstr "Aktivert" + +#: common/models.py:2540 +msgid "Is this parameter template enabled?" msgstr "" -#: common/models.py:2388 importer/models.py:69 -msgid "Timestamp" -msgstr "" - -#: common/models.py:2389 -msgid "Date and time of the barcode scan" -msgstr "" - -#: common/models.py:2395 -msgid "URL endpoint which processed the barcode" -msgstr "" - -#: common/models.py:2402 order/models.py:1832 plugin/serializers.py:93 -msgid "Context" -msgstr "Kontekst" - -#: common/models.py:2403 -msgid "Context data for the barcode scan" -msgstr "" - -#: common/models.py:2410 -msgid "Response" -msgstr "" - -#: common/models.py:2411 -msgid "Response data from the barcode scan" -msgstr "" - -#: common/models.py:2417 report/templates/report/inventree_test_report.html:103 -#: stock/models.py:2953 -msgid "Result" -msgstr "Resultat" - -#: common/models.py:2418 -msgid "Was the barcode scan successful?" -msgstr "" - -#: common/models.py:2500 -msgid "An error occurred" -msgstr "" - -#: common/models.py:2521 -msgid "INVE-E8: Email log deletion is protected. Set INVENTREE_PROTECT_EMAIL_LOG to False to allow deletion." -msgstr "" - -#: common/models.py:2568 -msgid "Email Message" -msgstr "" - -#: common/models.py:2569 -msgid "Email Messages" -msgstr "" - -#: common/models.py:2576 -msgid "Announced" -msgstr "" - -#: common/models.py:2578 -msgid "Sent" -msgstr "" - -#: common/models.py:2579 -msgid "Failed" +#: common/models.py:2581 +msgid "Parameter" msgstr "" #: common/models.py:2582 -msgid "Delivered" -msgstr "" - -#: common/models.py:2590 -msgid "Confirmed" -msgstr "" - -#: common/models.py:2596 -msgid "Inbound" -msgstr "" - -#: common/models.py:2597 -msgid "Outbound" -msgstr "" - -#: common/models.py:2602 -msgid "No Reply" -msgstr "" - -#: common/models.py:2603 -msgid "Track Delivery" -msgstr "" - -#: common/models.py:2604 -msgid "Track Read" -msgstr "" - -#: common/models.py:2605 -msgid "Track Click" -msgstr "" - -#: common/models.py:2608 common/models.py:2711 -msgid "Global ID" -msgstr "" - -#: common/models.py:2621 -msgid "Identifier for this message (might be supplied by external system)" +msgid "Parameters" msgstr "" #: common/models.py:2628 +msgid "Invalid choice for parameter value" +msgstr "Ugyldig valg for parameterverdi" + +#: common/models.py:2698 common/serializers.py:783 +msgid "Invalid model type specified for parameter" +msgstr "" + +#: common/models.py:2734 +msgid "Model ID" +msgstr "" + +#: common/models.py:2735 +msgid "ID of the target model for this parameter" +msgstr "" + +#: common/models.py:2744 common/setting/system.py:450 report/models.py:373 +#: report/models.py:669 report/serializers.py:94 report/serializers.py:135 +#: stock/serializers.py:234 +msgid "Template" +msgstr "Mal" + +#: common/models.py:2745 +msgid "Parameter template" +msgstr "" + +#: common/models.py:2750 common/models.py:2792 importer/models.py:546 +msgid "Data" +msgstr "" + +#: common/models.py:2751 +msgid "Parameter Value" +msgstr "Parameterverdi" + +#: common/models.py:2760 company/models.py:810 order/serializers.py:894 +#: order/serializers.py:2064 part/models.py:4075 part/models.py:4444 +#: report/templates/report/inventree_bill_of_materials_report.html:140 +#: report/templates/report/inventree_purchase_order_report.html:39 +#: report/templates/report/inventree_return_order_report.html:27 +#: report/templates/report/inventree_sales_order_report.html:32 +#: report/templates/report/inventree_stock_location_report.html:105 +#: stock/serializers.py:813 +msgid "Note" +msgstr "Notat" + +#: common/models.py:2761 stock/serializers.py:718 +msgid "Optional note field" +msgstr "Valgfritt notatfelt" + +#: common/models.py:2788 +msgid "Barcode Scan" +msgstr "" + +#: common/models.py:2793 +msgid "Barcode data" +msgstr "" + +#: common/models.py:2804 +msgid "User who scanned the barcode" +msgstr "" + +#: common/models.py:2809 importer/models.py:69 +msgid "Timestamp" +msgstr "" + +#: common/models.py:2810 +msgid "Date and time of the barcode scan" +msgstr "" + +#: common/models.py:2816 +msgid "URL endpoint which processed the barcode" +msgstr "" + +#: common/models.py:2823 order/models.py:1833 plugin/serializers.py:93 +msgid "Context" +msgstr "Kontekst" + +#: common/models.py:2824 +msgid "Context data for the barcode scan" +msgstr "" + +#: common/models.py:2831 +msgid "Response" +msgstr "" + +#: common/models.py:2832 +msgid "Response data from the barcode scan" +msgstr "" + +#: common/models.py:2838 report/templates/report/inventree_test_report.html:103 +#: stock/models.py:2970 +msgid "Result" +msgstr "Resultat" + +#: common/models.py:2839 +msgid "Was the barcode scan successful?" +msgstr "" + +#: common/models.py:2921 +msgid "An error occurred" +msgstr "" + +#: common/models.py:2942 +msgid "INVE-E8: Email log deletion is protected. Set INVENTREE_PROTECT_EMAIL_LOG to False to allow deletion." +msgstr "" + +#: common/models.py:2989 +msgid "Email Message" +msgstr "" + +#: common/models.py:2990 +msgid "Email Messages" +msgstr "" + +#: common/models.py:2997 +msgid "Announced" +msgstr "" + +#: common/models.py:2999 +msgid "Sent" +msgstr "" + +#: common/models.py:3000 +msgid "Failed" +msgstr "" + +#: common/models.py:3003 +msgid "Delivered" +msgstr "" + +#: common/models.py:3011 +msgid "Confirmed" +msgstr "" + +#: common/models.py:3017 +msgid "Inbound" +msgstr "" + +#: common/models.py:3018 +msgid "Outbound" +msgstr "" + +#: common/models.py:3023 +msgid "No Reply" +msgstr "" + +#: common/models.py:3024 +msgid "Track Delivery" +msgstr "" + +#: common/models.py:3025 +msgid "Track Read" +msgstr "" + +#: common/models.py:3026 +msgid "Track Click" +msgstr "" + +#: common/models.py:3029 common/models.py:3132 +msgid "Global ID" +msgstr "" + +#: common/models.py:3042 +msgid "Identifier for this message (might be supplied by external system)" +msgstr "" + +#: common/models.py:3049 msgid "Thread ID" msgstr "" -#: common/models.py:2630 +#: common/models.py:3051 msgid "Identifier for this message thread (might be supplied by external system)" msgstr "" -#: common/models.py:2639 +#: common/models.py:3060 msgid "Thread" msgstr "" -#: common/models.py:2640 +#: common/models.py:3061 msgid "Linked thread for this message" msgstr "" -#: common/models.py:2656 -msgid "Prioriy" +#: common/models.py:3077 +msgid "Priority" msgstr "" -#: common/models.py:2698 +#: common/models.py:3119 msgid "Email Thread" msgstr "" -#: common/models.py:2699 +#: common/models.py:3120 msgid "Email Threads" msgstr "" -#: common/models.py:2705 generic/states/serializers.py:16 +#: common/models.py:3126 generic/states/serializers.py:16 #: machine/serializers.py:24 plugin/models.py:46 users/models.py:113 msgid "Key" msgstr "Nøkkel" -#: common/models.py:2708 +#: common/models.py:3129 msgid "Unique key for this thread (used to identify the thread)" msgstr "" -#: common/models.py:2712 +#: common/models.py:3133 msgid "Unique identifier for this thread" msgstr "" -#: common/models.py:2719 +#: common/models.py:3140 msgid "Started Internal" msgstr "" -#: common/models.py:2720 +#: common/models.py:3141 msgid "Was this thread started internally?" msgstr "" -#: common/models.py:2725 +#: common/models.py:3146 msgid "Date and time that the thread was created" msgstr "" -#: common/models.py:2730 +#: common/models.py:3151 msgid "Date and time that the thread was last updated" msgstr "" @@ -2199,7 +2339,7 @@ msgstr "{verbose_name} kansellert" msgid "A order that is assigned to you was canceled" msgstr "En ordre som er tildelt til deg ble kansellert" -#: common/notifications.py:73 common/notifications.py:80 order/api.py:594 +#: common/notifications.py:73 common/notifications.py:80 order/api.py:600 msgid "Items Received" msgstr "Artikler mottatt" @@ -2211,88 +2351,93 @@ msgstr "Artikler har blitt mottatt mot en innkjøpsordre" msgid "Items have been received against a return order" msgstr "Artikler har blitt mottatt mot en returordre" -#: common/serializers.py:145 +#: common/serializers.py:149 msgid "Indicates if the setting is overridden by an environment variable" msgstr "" -#: common/serializers.py:147 +#: common/serializers.py:151 msgid "Override" msgstr "" -#: common/serializers.py:498 +#: common/serializers.py:502 msgid "Is Running" msgstr "Kjører" -#: common/serializers.py:504 +#: common/serializers.py:508 msgid "Pending Tasks" msgstr "Ventende oppgaver" -#: common/serializers.py:510 +#: common/serializers.py:514 msgid "Scheduled Tasks" msgstr "Planlagte oppgaver" -#: common/serializers.py:516 +#: common/serializers.py:520 msgid "Failed Tasks" msgstr "Mislykkede oppgaver" -#: common/serializers.py:531 +#: common/serializers.py:535 msgid "Task ID" msgstr "Oppgave-ID" -#: common/serializers.py:531 +#: common/serializers.py:535 msgid "Unique task ID" msgstr "Unik oppgave-ID" -#: common/serializers.py:533 +#: common/serializers.py:537 msgid "Lock" msgstr "Lås" -#: common/serializers.py:533 +#: common/serializers.py:537 msgid "Lock time" msgstr "Låsetidspunkt" -#: common/serializers.py:535 +#: common/serializers.py:539 msgid "Task name" msgstr "Oppgavenavn" -#: common/serializers.py:537 +#: common/serializers.py:541 msgid "Function" msgstr "Funksjon" -#: common/serializers.py:537 +#: common/serializers.py:541 msgid "Function name" msgstr "Funksjonsnavn" -#: common/serializers.py:539 +#: common/serializers.py:543 msgid "Arguments" msgstr "Argumenter" -#: common/serializers.py:539 +#: common/serializers.py:543 msgid "Task arguments" msgstr "Oppgaveargumenter" -#: common/serializers.py:542 +#: common/serializers.py:546 msgid "Keyword Arguments" msgstr "Nøkkelordargumenter" -#: common/serializers.py:542 +#: common/serializers.py:546 msgid "Task keyword arguments" msgstr "Nøkkelordargumenter for oppgave" -#: common/serializers.py:652 +#: common/serializers.py:656 msgid "Filename" msgstr "Filnavn" -#: common/serializers.py:659 importer/models.py:89 report/api.py:41 +#: common/serializers.py:663 common/serializers.py:730 +#: common/serializers.py:805 importer/models.py:89 report/api.py:41 #: report/models.py:293 report/serializers.py:52 msgid "Model Type" msgstr "Modelltype" -#: common/serializers.py:687 +#: common/serializers.py:691 msgid "User does not have permission to create or edit attachments for this model" msgstr "Brukeren har ikke tillatelse tillatelse å opprette eller endre vedlegg for denne modellen" -#: common/serializers.py:731 common/serializers.py:834 +#: common/serializers.py:786 +msgid "User does not have permission to create or edit parameters for this model" +msgstr "" + +#: common/serializers.py:850 common/serializers.py:953 msgid "Selection list is locked" msgstr "" @@ -2368,7 +2513,7 @@ msgstr "Begrens visning av 'om'" msgid "Show the `about` modal only to superusers" msgstr "Vis `about`-modal kun til superbrukere" -#: common/setting/system.py:224 company/models.py:144 company/models.py:145 +#: common/setting/system.py:224 company/models.py:145 company/models.py:146 msgid "Company name" msgstr "Firmanavn" @@ -2411,8 +2556,8 @@ msgstr "Hvor ofte valutakurser skal oppdateres (sett til null for å deaktiverer #: common/setting/system.py:253 common/setting/system.py:293 #: common/setting/system.py:306 common/setting/system.py:314 #: common/setting/system.py:321 common/setting/system.py:330 -#: common/setting/system.py:339 common/setting/system.py:588 -#: common/setting/system.py:616 common/setting/system.py:707 +#: common/setting/system.py:339 common/setting/system.py:580 +#: common/setting/system.py:608 common/setting/system.py:707 #: common/setting/system.py:1103 common/setting/system.py:1119 msgid "days" msgstr "dager" @@ -2657,12 +2802,6 @@ msgstr "Kopier designmaler for kategoriparametere" msgid "Copy category parameter templates when creating a part" msgstr "Kopier parametermaler for kategori ved oppretting av en del" -#: common/setting/system.py:450 part/models.py:4054 report/models.py:373 -#: report/models.py:669 report/serializers.py:94 report/serializers.py:135 -#: stock/serializers.py:234 -msgid "Template" -msgstr "Mal" - #: common/setting/system.py:451 msgid "Parts are templates by default" msgstr "Deler er maler som standard" @@ -2671,8 +2810,8 @@ msgstr "Deler er maler som standard" msgid "Parts can be assembled from other components by default" msgstr "Deler kan settes sammen fra andre komponenter som standard" -#: common/setting/system.py:462 part/models.py:1208 part/serializers.py:1734 -#: part/serializers.py:1741 +#: common/setting/system.py:462 part/models.py:1296 part/serializers.py:1599 +#: part/serializers.py:1606 msgid "Component" msgstr "Komponent" @@ -2680,7 +2819,7 @@ msgstr "Komponent" msgid "Parts can be used as sub-components by default" msgstr "Deler kan bli brukt som underkomponenter som standard" -#: common/setting/system.py:468 part/models.py:1226 +#: common/setting/system.py:468 part/models.py:1314 msgid "Purchaseable" msgstr "Kjøpbar" @@ -2688,7 +2827,7 @@ msgstr "Kjøpbar" msgid "Parts are purchaseable by default" msgstr "Deler er kjøpbare som standard" -#: common/setting/system.py:474 part/models.py:1232 stock/api.py:643 +#: common/setting/system.py:474 part/models.py:1320 stock/api.py:643 msgid "Salable" msgstr "Salgbar" @@ -2700,7 +2839,7 @@ msgstr "Deler er salgbare som standard" msgid "Parts are trackable by default" msgstr "Deler er sporbare som standard" -#: common/setting/system.py:486 part/models.py:1248 +#: common/setting/system.py:486 part/models.py:1336 msgid "Virtual" msgstr "Virtuelle" @@ -2749,158 +2888,158 @@ msgid "Part category default icon (empty means no icon)" msgstr "Standardikon for delkategorier (tomt betyr ingen ikon)" #: common/setting/system.py:525 -msgid "Enforce Parameter Units" -msgstr "Tving parameterenheter" - -#: common/setting/system.py:527 -msgid "If units are provided, parameter values must match the specified units" -msgstr "Hvis det er angitt en enhet, skal parameterverdiene samsvare med de angitte enhetene" - -#: common/setting/system.py:533 msgid "Minimum Pricing Decimal Places" msgstr "Minimum antall desimalplasser for priser" -#: common/setting/system.py:535 +#: common/setting/system.py:527 msgid "Minimum number of decimal places to display when rendering pricing data" msgstr "Minimum antall desimalplasser som skal vises når man gjengir prisdata" -#: common/setting/system.py:546 +#: common/setting/system.py:538 msgid "Maximum Pricing Decimal Places" msgstr "Maksimalt antall desimalplasser for priser" -#: common/setting/system.py:548 +#: common/setting/system.py:540 msgid "Maximum number of decimal places to display when rendering pricing data" msgstr "Maksimalt antall desimalplasser som skal vises når man gjengir prisdata" -#: common/setting/system.py:559 +#: common/setting/system.py:551 msgid "Use Supplier Pricing" msgstr "Bruk leverandørpriser" -#: common/setting/system.py:561 +#: common/setting/system.py:553 msgid "Include supplier price breaks in overall pricing calculations" msgstr "Inkluder leverandørprisbrudd i beregninger av totalpriser" -#: common/setting/system.py:567 +#: common/setting/system.py:559 msgid "Purchase History Override" msgstr "Innkjøpshistorikkoverstyring" -#: common/setting/system.py:569 +#: common/setting/system.py:561 msgid "Historical purchase order pricing overrides supplier price breaks" msgstr "Historiske innkjøpspriser overstyrer leverandørprisnivåer" -#: common/setting/system.py:575 +#: common/setting/system.py:567 msgid "Use Stock Item Pricing" msgstr "Bruk lagervarepriser" -#: common/setting/system.py:577 +#: common/setting/system.py:569 msgid "Use pricing from manually entered stock data for pricing calculations" msgstr "Bruk priser fra manuelt innlagte lagervarer for prisberegninger" -#: common/setting/system.py:583 +#: common/setting/system.py:575 msgid "Stock Item Pricing Age" msgstr "Lagervare prisalder" -#: common/setting/system.py:585 +#: common/setting/system.py:577 msgid "Exclude stock items older than this number of days from pricing calculations" msgstr "Unnta lagervarer som er eldre enn dette antall dager fra prisberegninger" -#: common/setting/system.py:592 +#: common/setting/system.py:584 msgid "Use Variant Pricing" msgstr "Bruk Variantpriser" -#: common/setting/system.py:593 +#: common/setting/system.py:585 msgid "Include variant pricing in overall pricing calculations" msgstr "Inkluder variantpriser i beregninger av totale priser" -#: common/setting/system.py:598 +#: common/setting/system.py:590 msgid "Active Variants Only" msgstr "Kun aktive varianter" -#: common/setting/system.py:600 +#: common/setting/system.py:592 msgid "Only use active variant parts for calculating variant pricing" msgstr "Bruk kun aktive variantdeler til beregning av variantprising" -#: common/setting/system.py:606 +#: common/setting/system.py:598 msgid "Auto Update Pricing" msgstr "" -#: common/setting/system.py:608 +#: common/setting/system.py:600 msgid "Automatically update part pricing when internal data changes" msgstr "" -#: common/setting/system.py:614 +#: common/setting/system.py:606 msgid "Pricing Rebuild Interval" msgstr "Intervall for rekalkulering av priser" -#: common/setting/system.py:615 +#: common/setting/system.py:607 msgid "Number of days before part pricing is automatically updated" msgstr "Antall dager før delpriser blir automatisk oppdatert" -#: common/setting/system.py:621 +#: common/setting/system.py:613 msgid "Internal Prices" msgstr "Interne Priser" -#: common/setting/system.py:622 +#: common/setting/system.py:614 msgid "Enable internal prices for parts" msgstr "Aktiver interne priser for deler" -#: common/setting/system.py:627 +#: common/setting/system.py:619 msgid "Internal Price Override" msgstr "Intern prisoverstyring" -#: common/setting/system.py:629 +#: common/setting/system.py:621 msgid "If available, internal prices override price range calculations" msgstr "Hvis tilgjengelig, overstyrer interne priser kalkulering av prisområde" -#: common/setting/system.py:635 +#: common/setting/system.py:627 msgid "Enable label printing" msgstr "Aktiver etikettutskrift" -#: common/setting/system.py:636 +#: common/setting/system.py:628 msgid "Enable label printing from the web interface" msgstr "Aktiver utskrift av etiketter fra nettleseren" -#: common/setting/system.py:641 +#: common/setting/system.py:633 msgid "Label Image DPI" msgstr "Etikettbilde-DPI" -#: common/setting/system.py:643 +#: common/setting/system.py:635 msgid "DPI resolution when generating image files to supply to label printing plugins" msgstr "DPI-oppløsning når når det genereres bildefiler for sending til utvidelser for etikettutskrift" -#: common/setting/system.py:649 +#: common/setting/system.py:641 msgid "Enable Reports" msgstr "Aktiver Rapporter" -#: common/setting/system.py:650 +#: common/setting/system.py:642 msgid "Enable generation of reports" msgstr "Aktiver generering av rapporter" -#: common/setting/system.py:655 +#: common/setting/system.py:647 msgid "Debug Mode" msgstr "Feilsøkingsmodus" -#: common/setting/system.py:656 +#: common/setting/system.py:648 msgid "Generate reports in debug mode (HTML output)" msgstr "Generer rapporter i feilsøkingsmodus (HTML-output)" -#: common/setting/system.py:661 +#: common/setting/system.py:653 msgid "Log Report Errors" msgstr "" -#: common/setting/system.py:662 +#: common/setting/system.py:654 msgid "Log errors which occur when generating reports" msgstr "" -#: common/setting/system.py:667 plugin/builtin/labels/label_sheet.py:29 +#: common/setting/system.py:659 plugin/builtin/labels/label_sheet.py:29 #: report/models.py:381 msgid "Page Size" msgstr "Sidestørrelse" -#: common/setting/system.py:668 +#: common/setting/system.py:660 msgid "Default page size for PDF reports" msgstr "Standard sidestørrelse for PDF-rapporter" +#: common/setting/system.py:665 +msgid "Enforce Parameter Units" +msgstr "Tving parameterenheter" + +#: common/setting/system.py:667 +msgid "If units are provided, parameter values must match the specified units" +msgstr "Hvis det er angitt en enhet, skal parameterverdiene samsvare med de angitte enhetene" + #: common/setting/system.py:673 msgid "Globally Unique Serials" msgstr "Globalt Unike Serienummer" @@ -3456,688 +3595,677 @@ msgid "Display PDF reports in the browser, instead of downloading as a file" msgstr "Vis PDF-rapporter i nettleseren fremfor å lastes ned som en fil" #: common/setting/user.py:45 +msgid "Barcode Scanner in Form Fields" +msgstr "" + +#: common/setting/user.py:46 +msgid "Allow barcode scanner input in form fields" +msgstr "" + +#: common/setting/user.py:51 msgid "Search Parts" msgstr "Søk i Deler" -#: common/setting/user.py:46 +#: common/setting/user.py:52 msgid "Display parts in search preview window" msgstr "Vis deler i forhåndsvsningsvinduet for søk" -#: common/setting/user.py:51 +#: common/setting/user.py:57 msgid "Search Supplier Parts" msgstr "Søk i Leverandørdeler" -#: common/setting/user.py:52 +#: common/setting/user.py:58 msgid "Display supplier parts in search preview window" msgstr "Vis leverandørdeler i forhåndsvisningsvinduet for søk" -#: common/setting/user.py:57 +#: common/setting/user.py:63 msgid "Search Manufacturer Parts" msgstr "Søk i Produsentdeler" -#: common/setting/user.py:58 +#: common/setting/user.py:64 msgid "Display manufacturer parts in search preview window" msgstr "Vis produsentdeler i forhåndsvisningsvinduet for søk" -#: common/setting/user.py:63 +#: common/setting/user.py:69 msgid "Hide Inactive Parts" msgstr "Skjul Inaktive Deler" -#: common/setting/user.py:64 +#: common/setting/user.py:70 msgid "Excluded inactive parts from search preview window" msgstr "Ekskluder inaktive deler fra forhåndsvisningsvinduet for søk" -#: common/setting/user.py:69 +#: common/setting/user.py:75 msgid "Search Categories" msgstr "Søk i kategorier" -#: common/setting/user.py:70 +#: common/setting/user.py:76 msgid "Display part categories in search preview window" msgstr "Vis delkategorier i forhåndsvisningsvinduet for søk" -#: common/setting/user.py:75 +#: common/setting/user.py:81 msgid "Search Stock" msgstr "Søk i lagerbeholdning" -#: common/setting/user.py:76 +#: common/setting/user.py:82 msgid "Display stock items in search preview window" msgstr "Vis lagervarer i forhåndsvisningsvinduet for søk" -#: common/setting/user.py:81 +#: common/setting/user.py:87 msgid "Hide Unavailable Stock Items" msgstr "Skjul utilgjengelige Lagervarer" -#: common/setting/user.py:83 +#: common/setting/user.py:89 msgid "Exclude stock items which are not available from the search preview window" msgstr "Ekskluder lagervarer som ikke er tilgjengelige fra forhåndsvisningsvinduet for søk" -#: common/setting/user.py:89 +#: common/setting/user.py:95 msgid "Search Locations" msgstr "Søk i Plasseringer" -#: common/setting/user.py:90 +#: common/setting/user.py:96 msgid "Display stock locations in search preview window" msgstr "Vis lagerplasseringer i forhåndsvisningsvinduet for søk" -#: common/setting/user.py:95 +#: common/setting/user.py:101 msgid "Search Companies" msgstr "Søk i Firma" -#: common/setting/user.py:96 +#: common/setting/user.py:102 msgid "Display companies in search preview window" msgstr "Vis firma i forhåndsvsningsvinduet for søk" -#: common/setting/user.py:101 +#: common/setting/user.py:107 msgid "Search Build Orders" msgstr "Søk i Produksjonsordrer" -#: common/setting/user.py:102 +#: common/setting/user.py:108 msgid "Display build orders in search preview window" msgstr "Vis produksjonsordrer i forhåndsvisningsvinduet for søk" -#: common/setting/user.py:107 +#: common/setting/user.py:113 msgid "Search Purchase Orders" msgstr "Søk i Innkjøpsordrer" -#: common/setting/user.py:108 +#: common/setting/user.py:114 msgid "Display purchase orders in search preview window" msgstr "Vis innkjøpsordrer i forhåndsvisningsvinduet for søk" -#: common/setting/user.py:113 +#: common/setting/user.py:119 msgid "Exclude Inactive Purchase Orders" msgstr "Ekskluder inaktive Innkjøpsordrer" -#: common/setting/user.py:114 +#: common/setting/user.py:120 msgid "Exclude inactive purchase orders from search preview window" msgstr "Ekskluder inaktive innkjøpsordrer fra forhåndsvisningsvinduet for søk" -#: common/setting/user.py:119 +#: common/setting/user.py:125 msgid "Search Sales Orders" msgstr "Søk i Salgsordrer" -#: common/setting/user.py:120 +#: common/setting/user.py:126 msgid "Display sales orders in search preview window" msgstr "Vis salgsordrer i forhåndsvisningsvinduet for søk" -#: common/setting/user.py:125 +#: common/setting/user.py:131 msgid "Exclude Inactive Sales Orders" msgstr "Ekskluder Inaktive Salgsordrer" -#: common/setting/user.py:126 +#: common/setting/user.py:132 msgid "Exclude inactive sales orders from search preview window" msgstr "Ekskluder inaktive salgsordrer fra forhåndsvisningsvinduet for søk" -#: common/setting/user.py:131 +#: common/setting/user.py:137 msgid "Search Sales Order Shipments" msgstr "" -#: common/setting/user.py:132 +#: common/setting/user.py:138 msgid "Display sales order shipments in search preview window" msgstr "" -#: common/setting/user.py:137 +#: common/setting/user.py:143 msgid "Search Return Orders" msgstr "Søk i Returordrer" -#: common/setting/user.py:138 +#: common/setting/user.py:144 msgid "Display return orders in search preview window" msgstr "Vis returordrer i forhåndsvisningsvinduet for søk" -#: common/setting/user.py:143 +#: common/setting/user.py:149 msgid "Exclude Inactive Return Orders" msgstr "Ekskluder Inaktive Returordrer" -#: common/setting/user.py:144 +#: common/setting/user.py:150 msgid "Exclude inactive return orders from search preview window" msgstr "Ekskluder inaktive returordrer fra forhåndsvisningsvinduet for søk" -#: common/setting/user.py:149 +#: common/setting/user.py:155 msgid "Search Preview Results" msgstr "Forhåndsvisning av søkeresultater" -#: common/setting/user.py:151 +#: common/setting/user.py:157 msgid "Number of results to show in each section of the search preview window" msgstr "Antall resultater å vise i hver seksjon av søkeresultatsforhåndsvisningen" -#: common/setting/user.py:157 +#: common/setting/user.py:163 msgid "Regex Search" msgstr "Regex-søk" -#: common/setting/user.py:158 +#: common/setting/user.py:164 msgid "Enable regular expressions in search queries" msgstr "Aktiver regulære uttrykk i søkeord" -#: common/setting/user.py:163 +#: common/setting/user.py:169 msgid "Whole Word Search" msgstr "Helordsøk" -#: common/setting/user.py:164 +#: common/setting/user.py:170 msgid "Search queries return results for whole word matches" msgstr "Søk returnerer resultater for treff med hele ord" -#: common/setting/user.py:169 +#: common/setting/user.py:175 msgid "Search Notes" msgstr "" -#: common/setting/user.py:171 +#: common/setting/user.py:177 msgid "Search queries return results for matches from the item's notes" msgstr "" -#: common/setting/user.py:177 +#: common/setting/user.py:183 msgid "Escape Key Closes Forms" msgstr "Escape-knappen lukker skjemaer" -#: common/setting/user.py:178 +#: common/setting/user.py:184 msgid "Use the escape key to close modal forms" msgstr "Bruk Escape-knappen for å lukke modal-skjemaer" -#: common/setting/user.py:183 +#: common/setting/user.py:189 msgid "Fixed Navbar" msgstr "Fast navigasjonsbar" -#: common/setting/user.py:184 +#: common/setting/user.py:190 msgid "The navbar position is fixed to the top of the screen" msgstr "Navigasjonsbarens posisjon er fast på toppen av skjermen" -#: common/setting/user.py:189 +#: common/setting/user.py:195 msgid "Fixed Table Headers" msgstr "" -#: common/setting/user.py:190 +#: common/setting/user.py:196 msgid "Table headers are fixed to the top of the table" msgstr "" -#: common/setting/user.py:195 +#: common/setting/user.py:201 msgid "Show Spotlight" msgstr "" -#: common/setting/user.py:196 +#: common/setting/user.py:202 msgid "Enable spotlight navigation functionality" msgstr "" -#: common/setting/user.py:201 +#: common/setting/user.py:207 msgid "Navigation Icons" msgstr "" -#: common/setting/user.py:202 +#: common/setting/user.py:208 msgid "Display icons in the navigation bar" msgstr "" -#: common/setting/user.py:207 +#: common/setting/user.py:213 msgid "Date Format" msgstr "Datoformat" -#: common/setting/user.py:208 +#: common/setting/user.py:214 msgid "Preferred format for displaying dates" msgstr "Foretrukket format for å vise datoer" -#: common/setting/user.py:221 +#: common/setting/user.py:227 msgid "Show Stock History" msgstr "" -#: common/setting/user.py:222 +#: common/setting/user.py:228 msgid "Display stock history information in the part detail page" msgstr "" -#: common/setting/user.py:227 +#: common/setting/user.py:233 msgid "Show Last Breadcrumb" msgstr "" -#: common/setting/user.py:228 +#: common/setting/user.py:234 msgid "Show the current page in breadcrumbs" msgstr "" -#: common/setting/user.py:233 +#: common/setting/user.py:239 msgid "Show full stock location in tables" msgstr "" -#: common/setting/user.py:235 +#: common/setting/user.py:241 msgid "Disabled: The full location path is displayed as a hover tooltip. Enabled: The full location path is displayed as plain text." msgstr "" -#: common/setting/user.py:241 +#: common/setting/user.py:247 msgid "Show full part categories in tables" msgstr "" -#: common/setting/user.py:243 +#: common/setting/user.py:249 msgid "Disabled: The full category path is displayed as a hover tooltip. Enabled: The full category path is displayed as plain text." msgstr "" -#: common/setting/user.py:249 +#: common/setting/user.py:255 msgid "Receive error reports" msgstr "Motta feilrapporter" -#: common/setting/user.py:250 +#: common/setting/user.py:256 msgid "Receive notifications for system errors" msgstr "Motta varsler om systemfeil" -#: common/setting/user.py:255 +#: common/setting/user.py:261 msgid "Last used printing machines" msgstr "" -#: common/setting/user.py:256 +#: common/setting/user.py:262 msgid "Save the last used printing machines for a user" msgstr "" -#: common/validators.py:34 +#: common/validators.py:38 +msgid "All models" +msgstr "" + +#: common/validators.py:63 msgid "No attachment model type provided" msgstr "Ingen modelltype angitt for vedlegg" -#: common/validators.py:40 +#: common/validators.py:69 msgid "Invalid attachment model type" msgstr "Ugyldig modelltype for vedlegg" -#: common/validators.py:81 +#: common/validators.py:110 msgid "Minimum places cannot be greater than maximum places" msgstr "Minste antall plasser kan ikke være mer enn største antall plasser" -#: common/validators.py:93 +#: common/validators.py:122 msgid "Maximum places cannot be less than minimum places" msgstr "Største antall plasser kan ikke være mindre enn minste antall plasser" -#: common/validators.py:104 +#: common/validators.py:133 msgid "An empty domain is not allowed." msgstr "Et tomt domene er ikke tillatt." -#: common/validators.py:106 +#: common/validators.py:135 #, python-brace-format msgid "Invalid domain name: {domain}" msgstr "Ugyldig domenenavn: {domain}" -#: common/validators.py:122 +#: common/validators.py:151 msgid "Value must be uppercase" msgstr "" -#: common/validators.py:128 +#: common/validators.py:157 msgid "Value must be a valid variable identifier" msgstr "" -#: company/api.py:147 +#: company/api.py:141 msgid "Part is Active" msgstr "Delen er aktiv" -#: company/api.py:151 +#: company/api.py:145 msgid "Manufacturer is Active" msgstr "Leverandør er aktiv" -#: company/api.py:286 +#: company/api.py:246 msgid "Supplier Part is Active" msgstr "Leverandørdel er aktiv" -#: company/api.py:290 +#: company/api.py:250 msgid "Internal Part is Active" msgstr "Intern del er aktiv" -#: company/api.py:295 +#: company/api.py:255 msgid "Supplier is Active" msgstr "Leverandør er aktiv" -#: company/api.py:307 company/models.py:520 company/serializers.py:457 -#: part/serializers.py:566 +#: company/api.py:267 company/models.py:522 company/serializers.py:502 +#: part/serializers.py:477 msgid "Manufacturer" msgstr "Produsent" -#: company/api.py:314 company/models.py:121 company/models.py:392 +#: company/api.py:274 company/models.py:122 company/models.py:393 #: stock/api.py:900 msgid "Company" msgstr "Firma" -#: company/api.py:324 +#: company/api.py:284 msgid "Has Stock" msgstr "" -#: company/models.py:122 +#: company/models.py:123 msgid "Companies" msgstr "Firmaer" -#: company/models.py:150 +#: company/models.py:151 msgid "Company description" msgstr "Beskrivelse av firma" -#: company/models.py:151 +#: company/models.py:152 msgid "Description of the company" msgstr "Beskrivelse av firmaet" -#: company/models.py:157 +#: company/models.py:158 msgid "Website" msgstr "Nettside" -#: company/models.py:158 +#: company/models.py:159 msgid "Company website URL" msgstr "Bedriftens nettside URL" -#: company/models.py:164 +#: company/models.py:165 msgid "Phone number" msgstr "Telefonnummer" -#: company/models.py:166 +#: company/models.py:167 msgid "Contact phone number" msgstr "Kontakt-telefonnummer" -#: company/models.py:173 +#: company/models.py:174 msgid "Contact email address" msgstr "Kontakt e-post" -#: company/models.py:178 company/models.py:296 order/models.py:513 +#: company/models.py:179 company/models.py:297 order/models.py:514 #: users/models.py:561 msgid "Contact" msgstr "Kontakt" -#: company/models.py:180 +#: company/models.py:181 msgid "Point of contact" msgstr "Kontaktpunkt" -#: company/models.py:186 +#: company/models.py:187 msgid "Link to external company information" msgstr "Link til ekstern bedriftsinformasjon" -#: company/models.py:191 +#: company/models.py:192 msgid "Is this company active?" msgstr "Er firmaet aktivt?" -#: company/models.py:196 +#: company/models.py:197 msgid "Is customer" msgstr "Er kunde" -#: company/models.py:197 +#: company/models.py:198 msgid "Do you sell items to this company?" msgstr "Selger du varer til dette firmaet?" -#: company/models.py:202 +#: company/models.py:203 msgid "Is supplier" msgstr "Er leverandør" -#: company/models.py:203 +#: company/models.py:204 msgid "Do you purchase items from this company?" msgstr "Kjøper du varer fra dette firmaet?" -#: company/models.py:208 +#: company/models.py:209 msgid "Is manufacturer" msgstr "Er produsent" -#: company/models.py:209 +#: company/models.py:210 msgid "Does this company manufacture parts?" msgstr "Produserer dette firmaet deler?" -#: company/models.py:217 +#: company/models.py:218 msgid "Default currency used for this company" msgstr "Standardvaluta brukt for dette firmaet" -#: company/models.py:224 +#: company/models.py:225 msgid "Tax ID" msgstr "" -#: company/models.py:225 +#: company/models.py:226 msgid "Company Tax ID" msgstr "" -#: company/models.py:335 order/models.py:523 order/models.py:2288 +#: company/models.py:336 order/models.py:524 order/models.py:2289 msgid "Address" msgstr "Adresse" -#: company/models.py:336 +#: company/models.py:337 msgid "Addresses" msgstr "Adresser" -#: company/models.py:393 +#: company/models.py:394 msgid "Select company" msgstr "Velg selskap" -#: company/models.py:398 +#: company/models.py:399 msgid "Address title" msgstr "Adressetittel" -#: company/models.py:399 +#: company/models.py:400 msgid "Title describing the address entry" msgstr "Tittel som beskriver addressen" -#: company/models.py:405 +#: company/models.py:406 msgid "Primary address" msgstr "Hovedadresse" -#: company/models.py:406 +#: company/models.py:407 msgid "Set as primary address" msgstr "Sett som hovedadresse" -#: company/models.py:411 +#: company/models.py:412 msgid "Line 1" msgstr "Linje 1" -#: company/models.py:412 +#: company/models.py:413 msgid "Address line 1" msgstr "Adresselinje 1" -#: company/models.py:418 +#: company/models.py:419 msgid "Line 2" msgstr "Linje 2" -#: company/models.py:419 +#: company/models.py:420 msgid "Address line 2" msgstr "Adresselinje 2" -#: company/models.py:425 company/models.py:426 +#: company/models.py:426 company/models.py:427 msgid "Postal code" msgstr "Postnummer" -#: company/models.py:432 +#: company/models.py:433 msgid "City/Region" msgstr "Poststed/område" -#: company/models.py:433 +#: company/models.py:434 msgid "Postal code city/region" msgstr "Postnummerets by/område" -#: company/models.py:439 +#: company/models.py:440 msgid "State/Province" msgstr "Delstat/provins" -#: company/models.py:440 +#: company/models.py:441 msgid "State or province" msgstr "Delstat eller provins" -#: company/models.py:446 +#: company/models.py:447 msgid "Country" msgstr "Land" -#: company/models.py:447 +#: company/models.py:448 msgid "Address country" msgstr "Adressens land" -#: company/models.py:453 +#: company/models.py:454 msgid "Courier shipping notes" msgstr "Notater til transportør" -#: company/models.py:454 +#: company/models.py:455 msgid "Notes for shipping courier" msgstr "Notater for transportør" -#: company/models.py:460 +#: company/models.py:461 msgid "Internal shipping notes" msgstr "Interne fraktnotater" -#: company/models.py:461 +#: company/models.py:462 msgid "Shipping notes for internal use" msgstr "Fraktnotater for internt bruk" -#: company/models.py:468 +#: company/models.py:469 msgid "Link to address information (external)" msgstr "Lenke til adresseinformasjon (ekstern)" -#: company/models.py:492 company/models.py:609 company/models.py:832 -#: company/serializers.py:471 stock/api.py:561 +#: company/models.py:494 company/models.py:786 company/serializers.py:516 +#: stock/api.py:561 msgid "Manufacturer Part" msgstr "Produsentdeler" -#: company/models.py:509 company/models.py:800 stock/models.py:1025 +#: company/models.py:511 company/models.py:754 stock/models.py:1025 #: stock/serializers.py:407 msgid "Base Part" msgstr "Basisdel" -#: company/models.py:511 company/models.py:802 +#: company/models.py:513 company/models.py:756 msgid "Select part" msgstr "Velg del" -#: company/models.py:521 +#: company/models.py:523 msgid "Select manufacturer" msgstr "Velg produsent" -#: company/models.py:527 company/serializers.py:479 order/serializers.py:734 -#: part/serializers.py:576 +#: company/models.py:529 company/serializers.py:524 order/serializers.py:745 +#: part/serializers.py:487 msgid "MPN" msgstr "MPN" -#: company/models.py:528 stock/serializers.py:572 +#: company/models.py:530 stock/serializers.py:572 msgid "Manufacturer Part Number" msgstr "Produsentens varenummer" -#: company/models.py:535 +#: company/models.py:537 msgid "URL for external manufacturer part link" msgstr "URL for ekstern produsentdel-lenke" -#: company/models.py:544 +#: company/models.py:546 msgid "Manufacturer part description" msgstr "Produsentens delbeskrivelse" -#: company/models.py:597 -msgid "Manufacturer Part Parameter" -msgstr "Produsentdel parameter" - -#: company/models.py:616 -msgid "Parameter name" -msgstr "Parameternavn" - -#: company/models.py:623 -msgid "Parameter value" -msgstr "Parameterverdi" - -#: company/models.py:630 part/models.py:1195 part/models.py:3857 -msgid "Units" -msgstr "Enheter" - -#: company/models.py:631 -msgid "Parameter units" -msgstr "Parameterenheter" - -#: company/models.py:740 +#: company/models.py:694 msgid "Pack units must be compatible with the base part units" msgstr "Pakkeenhetene må være komptible med delens basisenhet" -#: company/models.py:747 +#: company/models.py:701 msgid "Pack units must be greater than zero" msgstr "Pakkeenhet må være mer enn null" -#: company/models.py:761 +#: company/models.py:715 msgid "Linked manufacturer part must reference the same base part" msgstr "Den sammenkoblede produsentdelen må referere til samme basisdel" -#: company/models.py:810 company/serializers.py:449 company/serializers.py:467 -#: order/models.py:639 part/serializers.py:550 +#: company/models.py:764 company/serializers.py:494 company/serializers.py:512 +#: order/models.py:640 part/serializers.py:461 #: plugin/builtin/suppliers/digikey.py:26 plugin/builtin/suppliers/lcsc.py:27 #: plugin/builtin/suppliers/mouser.py:25 plugin/builtin/suppliers/tme.py:27 #: stock/api.py:567 templates/email/overdue_purchase_order.html:16 msgid "Supplier" msgstr "Leverandør" -#: company/models.py:811 +#: company/models.py:765 msgid "Select supplier" msgstr "Velg leverandør" -#: company/models.py:817 part/serializers.py:561 +#: company/models.py:771 part/serializers.py:472 msgid "Supplier stock keeping unit" msgstr "Leverandørens lagerbeholdningsenhet" -#: company/models.py:823 +#: company/models.py:777 msgid "Is this supplier part active?" msgstr "Er denne leverandørdelen aktiv?" -#: company/models.py:833 +#: company/models.py:787 msgid "Select manufacturer part" msgstr "Velg produsentdel" -#: company/models.py:840 +#: company/models.py:794 msgid "URL for external supplier part link" msgstr "URL for ekstern leverandørdel-lenke" -#: company/models.py:849 +#: company/models.py:803 msgid "Supplier part description" msgstr "Leverandørens delbeskrivelse" -#: company/models.py:856 order/serializers.py:883 order/serializers.py:2047 -#: part/models.py:4070 part/models.py:4450 part/models.py:4819 -#: report/templates/report/inventree_bill_of_materials_report.html:140 -#: report/templates/report/inventree_purchase_order_report.html:39 -#: report/templates/report/inventree_return_order_report.html:27 -#: report/templates/report/inventree_sales_order_report.html:32 -#: report/templates/report/inventree_stock_location_report.html:105 -#: stock/serializers.py:813 -msgid "Note" -msgstr "Notat" - -#: company/models.py:865 part/models.py:2250 +#: company/models.py:819 part/models.py:2338 msgid "base cost" msgstr "grunnkostnad" -#: company/models.py:866 part/models.py:2251 +#: company/models.py:820 part/models.py:2339 msgid "Minimum charge (e.g. stocking fee)" msgstr "Minimum betaling (f.eks. lageravgift)" -#: company/models.py:873 order/serializers.py:875 stock/models.py:1056 +#: company/models.py:827 order/serializers.py:886 stock/models.py:1056 #: stock/serializers.py:1606 msgid "Packaging" msgstr "Emballasje" -#: company/models.py:874 +#: company/models.py:828 msgid "Part packaging" msgstr "Delemballasje" -#: company/models.py:879 +#: company/models.py:833 msgid "Pack Quantity" msgstr "Pakkeantall" -#: company/models.py:881 +#: company/models.py:835 msgid "Total quantity supplied in a single pack. Leave empty for single items." msgstr "Totalt antall i en enkelt pakke. La være tom for enkeltenheter." -#: company/models.py:900 part/models.py:2257 +#: company/models.py:854 part/models.py:2345 msgid "multiple" msgstr "flere" -#: company/models.py:901 +#: company/models.py:855 msgid "Order multiple" msgstr "Bestill flere" -#: company/models.py:913 +#: company/models.py:867 msgid "Quantity available from supplier" msgstr "Antall tilgjengelig fra leverandør" -#: company/models.py:919 +#: company/models.py:873 msgid "Availability Updated" msgstr "Tilgjengelighet oppdatert" -#: company/models.py:920 +#: company/models.py:874 msgid "Date of last update of availability data" msgstr "Dato for siste oppdatering av tilgjengelighetsdata" -#: company/models.py:1048 +#: company/models.py:1002 msgid "Supplier Price Break" msgstr "Leverandørens prisbrudd" -#: company/serializers.py:181 +#: company/serializers.py:184 +msgid "Primary Address" +msgstr "" + +#: company/serializers.py:186 msgid "Return the string representation for the primary address. This property exists for backwards compatibility." msgstr "" -#: company/serializers.py:212 +#: company/serializers.py:218 msgid "Default currency used for this supplier" msgstr "Standardvaluta brukt for denne leverandøren" -#: company/serializers.py:248 +#: company/serializers.py:260 msgid "Company Name" msgstr "Bedriftsnavn" -#: company/serializers.py:433 part/serializers.py:955 stock/serializers.py:428 +#: company/serializers.py:460 part/serializers.py:840 stock/serializers.py:428 msgid "In Stock" msgstr "På lager" +#: company/serializers.py:477 +msgid "Price Breaks" +msgstr "" + #: data_exporter/mixins.py:325 data_exporter/mixins.py:403 msgid "Error occurred during data export" msgstr "" @@ -4290,7 +4418,7 @@ msgstr "" msgid "Errors" msgstr "" -#: importer/models.py:550 part/serializers.py:1268 +#: importer/models.py:550 part/serializers.py:1133 msgid "Valid" msgstr "Gyldig" @@ -4402,7 +4530,7 @@ msgstr "" msgid "Connected" msgstr "" -#: machine/machine_types/label_printer.py:232 order/api.py:1795 +#: machine/machine_types/label_printer.py:232 order/api.py:1800 msgid "Unknown" msgstr "Ukjent" @@ -4530,105 +4658,105 @@ msgstr "" msgid "Maximum value for progress type, required if type=progress" msgstr "" -#: order/api.py:125 +#: order/api.py:130 msgid "Order Reference" msgstr "Ordrereferanse" -#: order/api.py:153 order/api.py:1207 +#: order/api.py:158 order/api.py:1212 msgid "Outstanding" msgstr "" -#: order/api.py:169 +#: order/api.py:174 msgid "Has Project Code" msgstr "" -#: order/api.py:183 order/models.py:488 +#: order/api.py:188 order/models.py:489 msgid "Created By" msgstr "Opprettet av" -#: order/api.py:187 +#: order/api.py:192 msgid "Created Before" msgstr "" -#: order/api.py:191 +#: order/api.py:196 msgid "Created After" msgstr "" -#: order/api.py:195 +#: order/api.py:200 msgid "Has Start Date" msgstr "" -#: order/api.py:203 +#: order/api.py:208 msgid "Start Date Before" msgstr "" -#: order/api.py:207 +#: order/api.py:212 msgid "Start Date After" msgstr "" -#: order/api.py:211 +#: order/api.py:216 msgid "Has Target Date" msgstr "" -#: order/api.py:219 +#: order/api.py:224 msgid "Target Date Before" msgstr "" -#: order/api.py:223 +#: order/api.py:228 msgid "Target Date After" msgstr "" -#: order/api.py:274 +#: order/api.py:279 msgid "Has Pricing" msgstr "" -#: order/api.py:327 order/api.py:812 order/api.py:1490 +#: order/api.py:332 order/api.py:818 order/api.py:1495 msgid "Completed Before" msgstr "" -#: order/api.py:331 order/api.py:816 order/api.py:1494 +#: order/api.py:336 order/api.py:822 order/api.py:1499 msgid "Completed After" msgstr "" -#: order/api.py:337 order/api.py:341 +#: order/api.py:342 order/api.py:346 msgid "External Build Order" msgstr "" -#: order/api.py:526 order/api.py:914 order/api.py:1170 order/models.py:1922 -#: order/models.py:2049 order/models.py:2099 order/models.py:2279 -#: order/models.py:2477 order/models.py:2999 order/models.py:3065 +#: order/api.py:532 order/api.py:919 order/api.py:1175 order/models.py:1923 +#: order/models.py:2050 order/models.py:2100 order/models.py:2280 +#: order/models.py:2478 order/models.py:3000 order/models.py:3066 msgid "Order" msgstr "Ordre" -#: order/api.py:530 order/api.py:982 +#: order/api.py:536 order/api.py:987 msgid "Order Complete" msgstr "" -#: order/api.py:562 order/api.py:566 order/serializers.py:745 +#: order/api.py:568 order/api.py:572 order/serializers.py:756 msgid "Internal Part" msgstr "Intern del" -#: order/api.py:584 +#: order/api.py:590 msgid "Order Pending" msgstr "" -#: order/api.py:967 +#: order/api.py:972 msgid "Completed" msgstr "Fullført" -#: order/api.py:1223 +#: order/api.py:1228 msgid "Has Shipment" msgstr "" -#: order/api.py:1789 order/models.py:552 order/models.py:1923 -#: order/models.py:2050 +#: order/api.py:1794 order/models.py:553 order/models.py:1924 +#: order/models.py:2051 #: report/templates/report/inventree_purchase_order_report.html:14 #: stock/serializers.py:129 templates/email/overdue_purchase_order.html:15 msgid "Purchase Order" msgstr "Innkjøpsordre" -#: order/api.py:1791 order/models.py:1251 order/models.py:2100 -#: order/models.py:2280 order/models.py:2478 +#: order/api.py:1796 order/models.py:1252 order/models.py:2101 +#: order/models.py:2281 order/models.py:2479 #: report/templates/report/inventree_build_order_report.html:135 #: report/templates/report/inventree_sales_order_report.html:14 #: report/templates/report/inventree_sales_order_shipment_report.html:15 @@ -4636,8 +4764,8 @@ msgstr "Innkjøpsordre" msgid "Sales Order" msgstr "Salgsordre" -#: order/api.py:1793 order/models.py:2649 order/models.py:3000 -#: order/models.py:3066 +#: order/api.py:1798 order/models.py:2650 order/models.py:3001 +#: order/models.py:3067 #: report/templates/report/inventree_return_order_report.html:13 #: templates/email/overdue_return_order.html:15 msgid "Return Order" @@ -4653,722 +4781,722 @@ msgstr "Total pris" msgid "Total price for this order" msgstr "Total pris for denne ordren" -#: order/models.py:96 order/serializers.py:77 +#: order/models.py:96 order/serializers.py:78 msgid "Order Currency" msgstr "Ordrevaluta" -#: order/models.py:99 order/serializers.py:78 +#: order/models.py:99 order/serializers.py:79 msgid "Currency for this order (leave blank to use company default)" msgstr "Valuta for denne ordren (la stå tom for å bruke firmastandard)" -#: order/models.py:324 +#: order/models.py:325 msgid "This order is locked and cannot be modified" msgstr "" -#: order/models.py:376 +#: order/models.py:377 msgid "Contact does not match selected company" msgstr "Kontakten samsvarer ikke med valgt firma" -#: order/models.py:383 +#: order/models.py:384 msgid "Start date must be before target date" msgstr "" -#: order/models.py:390 +#: order/models.py:391 msgid "Address does not match selected company" msgstr "" -#: order/models.py:443 +#: order/models.py:444 msgid "Order description (optional)" msgstr "Ordrebeskrivelse (valgfritt)" -#: order/models.py:452 order/models.py:1806 +#: order/models.py:453 order/models.py:1807 msgid "Select project code for this order" msgstr "Velg prosjektkode for denne ordren" -#: order/models.py:458 order/models.py:1787 order/models.py:2344 +#: order/models.py:459 order/models.py:1788 order/models.py:2345 msgid "Link to external page" msgstr "Lenke til ekstern side" -#: order/models.py:465 +#: order/models.py:466 msgid "Start date" msgstr "" -#: order/models.py:466 +#: order/models.py:467 msgid "Scheduled start date for this order" msgstr "" -#: order/models.py:472 order/models.py:1794 order/serializers.py:309 +#: order/models.py:473 order/models.py:1795 order/serializers.py:317 #: report/templates/report/inventree_build_order_report.html:125 msgid "Target Date" msgstr "Måldato" -#: order/models.py:474 +#: order/models.py:475 msgid "Expected date for order delivery. Order will be overdue after this date." msgstr "Forventet dato for levering av ordre. Bestillingen vil være forfalt etter denne datoen." -#: order/models.py:494 +#: order/models.py:495 msgid "Issue Date" msgstr "Sendt dato" -#: order/models.py:495 +#: order/models.py:496 msgid "Date order was issued" msgstr "Dato bestillingen ble sendt" -#: order/models.py:503 +#: order/models.py:504 msgid "User or group responsible for this order" msgstr "Bruker eller gruppe ansvarlig for ordren" -#: order/models.py:514 +#: order/models.py:515 msgid "Point of contact for this order" msgstr "Kontaktpunkt for denne ordren" -#: order/models.py:524 +#: order/models.py:525 msgid "Company address for this order" msgstr "Selskapsadresse for denne ordren" -#: order/models.py:615 order/models.py:1312 +#: order/models.py:616 order/models.py:1313 msgid "Order reference" msgstr "Ordrereferanse" -#: order/models.py:624 order/models.py:1336 order/models.py:2737 +#: order/models.py:625 order/models.py:1337 order/models.py:2738 #: stock/serializers.py:559 stock/serializers.py:988 users/models.py:542 msgid "Status" msgstr "Status" -#: order/models.py:625 +#: order/models.py:626 msgid "Purchase order status" msgstr "Status for innkjøpsordre" -#: order/models.py:640 +#: order/models.py:641 msgid "Company from which the items are being ordered" msgstr "Firma som varene blir bestilt fra" -#: order/models.py:651 +#: order/models.py:652 msgid "Supplier Reference" msgstr "Leverandørreferanse" -#: order/models.py:652 +#: order/models.py:653 msgid "Supplier order reference code" msgstr "Leverandørens ordrereferanse" -#: order/models.py:661 +#: order/models.py:662 msgid "received by" msgstr "mottatt av" -#: order/models.py:668 order/models.py:2752 +#: order/models.py:669 order/models.py:2753 msgid "Date order was completed" msgstr "Dato ordre ble fullført" -#: order/models.py:677 order/models.py:1981 +#: order/models.py:678 order/models.py:1982 msgid "Destination" msgstr "Destinasjon" -#: order/models.py:678 order/models.py:1985 +#: order/models.py:679 order/models.py:1986 msgid "Destination for received items" msgstr "" -#: order/models.py:724 +#: order/models.py:725 msgid "Part supplier must match PO supplier" msgstr "Delleverandør må matche PO-leverandør" -#: order/models.py:994 +#: order/models.py:995 msgid "Line item does not match purchase order" msgstr "Linjeelementet samsvarer ikke med innkjøpsordre" -#: order/models.py:997 +#: order/models.py:998 msgid "Line item is missing a linked part" msgstr "" -#: order/models.py:1011 +#: order/models.py:1012 msgid "Quantity must be a positive number" msgstr "Mengde må være positiv" -#: order/models.py:1323 order/models.py:2724 stock/models.py:1078 +#: order/models.py:1324 order/models.py:2725 stock/models.py:1078 #: stock/models.py:1079 stock/serializers.py:1322 #: templates/email/overdue_return_order.html:16 #: templates/email/overdue_sales_order.html:16 msgid "Customer" msgstr "Kunde" -#: order/models.py:1324 +#: order/models.py:1325 msgid "Company to which the items are being sold" msgstr "Firma som varene selges til" -#: order/models.py:1337 +#: order/models.py:1338 msgid "Sales order status" msgstr "" -#: order/models.py:1348 order/models.py:2744 +#: order/models.py:1349 order/models.py:2745 msgid "Customer Reference " msgstr "Kundereferanse " -#: order/models.py:1349 order/models.py:2745 +#: order/models.py:1350 order/models.py:2746 msgid "Customer order reference code" msgstr "Kundens ordrereferanse" -#: order/models.py:1353 order/models.py:2296 +#: order/models.py:1354 order/models.py:2297 msgid "Shipment Date" msgstr "Forsendelsesdato" -#: order/models.py:1362 +#: order/models.py:1363 msgid "shipped by" msgstr "sendt av" -#: order/models.py:1413 +#: order/models.py:1414 msgid "Order is already complete" msgstr "" -#: order/models.py:1416 +#: order/models.py:1417 msgid "Order is already cancelled" msgstr "" -#: order/models.py:1420 +#: order/models.py:1421 msgid "Only an open order can be marked as complete" msgstr "Kun en åpen ordre kan merkes som fullført" -#: order/models.py:1424 +#: order/models.py:1425 msgid "Order cannot be completed as there are incomplete shipments" msgstr "Bestillingen kan ikke fullføres da det finnes ufullstendige forsendelser" -#: order/models.py:1429 +#: order/models.py:1430 msgid "Order cannot be completed as there are incomplete allocations" msgstr "" -#: order/models.py:1438 +#: order/models.py:1439 msgid "Order cannot be completed as there are incomplete line items" msgstr "Denne ordren kan ikke fullføres da det fortsatt er ufullstendige artikler" -#: order/models.py:1733 order/models.py:1749 +#: order/models.py:1734 order/models.py:1750 msgid "The order is locked and cannot be modified" msgstr "" -#: order/models.py:1757 +#: order/models.py:1758 msgid "Item quantity" msgstr "Antall" -#: order/models.py:1774 +#: order/models.py:1775 msgid "Line item reference" msgstr "Linjereferanse" -#: order/models.py:1781 +#: order/models.py:1782 msgid "Line item notes" msgstr "Linjenotater" -#: order/models.py:1796 +#: order/models.py:1797 msgid "Target date for this line item (leave blank to use the target date from the order)" msgstr "Måldato for denne linjen (la stå tomt for å bruke måldatoen fra ordren)" -#: order/models.py:1826 +#: order/models.py:1827 msgid "Line item description (optional)" msgstr "Linjeelementbeskrivelse (valgfritt)" -#: order/models.py:1833 +#: order/models.py:1834 msgid "Additional context for this line" msgstr "Ytterligere kontekst for denne linjen" -#: order/models.py:1843 +#: order/models.py:1844 msgid "Unit price" msgstr "Enhetspris" -#: order/models.py:1862 +#: order/models.py:1863 msgid "Purchase Order Line Item" msgstr "" -#: order/models.py:1889 +#: order/models.py:1890 msgid "Supplier part must match supplier" msgstr "Delens leverandør må samsvare med leverandør" -#: order/models.py:1894 +#: order/models.py:1895 msgid "Build order must be marked as external" msgstr "" -#: order/models.py:1901 +#: order/models.py:1902 msgid "Build orders can only be linked to assembly parts" msgstr "" -#: order/models.py:1907 +#: order/models.py:1908 msgid "Build order part must match line item part" msgstr "" -#: order/models.py:1942 +#: order/models.py:1943 msgid "Supplier part" msgstr "Leverandørdel" -#: order/models.py:1949 +#: order/models.py:1950 msgid "Received" msgstr "Mottatt" -#: order/models.py:1950 +#: order/models.py:1951 msgid "Number of items received" msgstr "Antall enheter mottatt" -#: order/models.py:1958 stock/models.py:1201 stock/serializers.py:637 +#: order/models.py:1959 stock/models.py:1201 stock/serializers.py:637 msgid "Purchase Price" msgstr "Innkjøpspris" -#: order/models.py:1959 +#: order/models.py:1960 msgid "Unit purchase price" msgstr "Enhet-innkjøpspris" -#: order/models.py:1975 +#: order/models.py:1976 msgid "External Build Order to be fulfilled by this line item" msgstr "" -#: order/models.py:2038 +#: order/models.py:2039 msgid "Purchase Order Extra Line" msgstr "" -#: order/models.py:2067 +#: order/models.py:2068 msgid "Sales Order Line Item" msgstr "" -#: order/models.py:2092 +#: order/models.py:2093 msgid "Only salable parts can be assigned to a sales order" msgstr "Kun salgbare deler kan tildeles en salgsordre" -#: order/models.py:2118 +#: order/models.py:2119 msgid "Sale Price" msgstr "Salgspris" -#: order/models.py:2119 +#: order/models.py:2120 msgid "Unit sale price" msgstr "Enhets-salgspris" -#: order/models.py:2128 order/status_codes.py:50 +#: order/models.py:2129 order/status_codes.py:50 msgid "Shipped" msgstr "Sendt" -#: order/models.py:2129 +#: order/models.py:2130 msgid "Shipped quantity" msgstr "Sendt antall" -#: order/models.py:2240 +#: order/models.py:2241 msgid "Sales Order Shipment" msgstr "" -#: order/models.py:2253 +#: order/models.py:2254 msgid "Shipment address must match the customer" msgstr "" -#: order/models.py:2289 +#: order/models.py:2290 msgid "Shipping address for this shipment" msgstr "" -#: order/models.py:2297 +#: order/models.py:2298 msgid "Date of shipment" msgstr "Dato for forsendelse" -#: order/models.py:2303 +#: order/models.py:2304 msgid "Delivery Date" msgstr "Leveringsdato" -#: order/models.py:2304 +#: order/models.py:2305 msgid "Date of delivery of shipment" msgstr "Dato for levering av forsendelse" -#: order/models.py:2312 +#: order/models.py:2313 msgid "Checked By" msgstr "Sjekket Av" -#: order/models.py:2313 +#: order/models.py:2314 msgid "User who checked this shipment" msgstr "Brukeren som sjekket forsendelsen" -#: order/models.py:2320 order/models.py:2574 order/serializers.py:1711 -#: order/serializers.py:1835 +#: order/models.py:2321 order/models.py:2575 order/serializers.py:1725 +#: order/serializers.py:1849 #: report/templates/report/inventree_sales_order_shipment_report.html:14 msgid "Shipment" msgstr "Forsendelse" -#: order/models.py:2321 +#: order/models.py:2322 msgid "Shipment number" msgstr "Forsendelsesnummer" -#: order/models.py:2329 +#: order/models.py:2330 msgid "Tracking Number" msgstr "Sporingsnummer" -#: order/models.py:2330 +#: order/models.py:2331 msgid "Shipment tracking information" msgstr "Sporingsinformasjon for forsendelse" -#: order/models.py:2337 +#: order/models.py:2338 msgid "Invoice Number" msgstr "Fakturanummer" -#: order/models.py:2338 +#: order/models.py:2339 msgid "Reference number for associated invoice" msgstr "Referansenummer for tilknyttet faktura" -#: order/models.py:2377 +#: order/models.py:2378 msgid "Shipment has already been sent" msgstr "Forsendelsen er allerede sendt" -#: order/models.py:2380 +#: order/models.py:2381 msgid "Shipment has no allocated stock items" msgstr "Forsendelsen har ingen tildelte lagervarer" -#: order/models.py:2387 +#: order/models.py:2388 msgid "Shipment must be checked before it can be completed" msgstr "" -#: order/models.py:2466 +#: order/models.py:2467 msgid "Sales Order Extra Line" msgstr "" -#: order/models.py:2495 +#: order/models.py:2496 msgid "Sales Order Allocation" msgstr "" -#: order/models.py:2518 order/models.py:2520 +#: order/models.py:2519 order/models.py:2521 msgid "Stock item has not been assigned" msgstr "Lagervarer er ikke blitt tildelt" -#: order/models.py:2527 +#: order/models.py:2528 msgid "Cannot allocate stock item to a line with a different part" msgstr "Kan ikke tildele lagervare til en linje med annen del" -#: order/models.py:2530 +#: order/models.py:2531 msgid "Cannot allocate stock to a line without a part" msgstr "Kan ikke tildele lagerbeholdning til en linje uten en del" -#: order/models.py:2533 +#: order/models.py:2534 msgid "Allocation quantity cannot exceed stock quantity" msgstr "Tildelingsantall kan ikke overstige tilgjengelig lagerbeholdning" -#: order/models.py:2552 order/serializers.py:1581 +#: order/models.py:2553 order/serializers.py:1595 msgid "Quantity must be 1 for serialized stock item" msgstr "Antall må være 1 for serialisert lagervare" -#: order/models.py:2555 +#: order/models.py:2556 msgid "Sales order does not match shipment" msgstr "Salgsordre samsvarer ikke med forsendelse" -#: order/models.py:2556 plugin/base/barcodes/api.py:642 +#: order/models.py:2557 plugin/base/barcodes/api.py:642 msgid "Shipment does not match sales order" msgstr "Forsendelsen samsvarer ikke med salgsordre" -#: order/models.py:2564 +#: order/models.py:2565 msgid "Line" msgstr "Linje" -#: order/models.py:2575 +#: order/models.py:2576 msgid "Sales order shipment reference" msgstr "Forsendelsesreferanse for salgsordre" -#: order/models.py:2588 order/models.py:3007 +#: order/models.py:2589 order/models.py:3008 msgid "Item" msgstr "Artikkel" -#: order/models.py:2589 +#: order/models.py:2590 msgid "Select stock item to allocate" msgstr "Velg lagervare å tildele" -#: order/models.py:2598 +#: order/models.py:2599 msgid "Enter stock allocation quantity" msgstr "Angi lagertildelingsmengde" -#: order/models.py:2713 +#: order/models.py:2714 msgid "Return Order reference" msgstr "Returordre-referanse" -#: order/models.py:2725 +#: order/models.py:2726 msgid "Company from which items are being returned" msgstr "Firmaet delen skal returneres fra" -#: order/models.py:2738 +#: order/models.py:2739 msgid "Return order status" msgstr "Returordrestatus" -#: order/models.py:2965 +#: order/models.py:2966 msgid "Return Order Line Item" msgstr "" -#: order/models.py:2978 +#: order/models.py:2979 msgid "Stock item must be specified" msgstr "" -#: order/models.py:2982 +#: order/models.py:2983 msgid "Return quantity exceeds stock quantity" msgstr "" -#: order/models.py:2987 +#: order/models.py:2988 msgid "Return quantity must be greater than zero" msgstr "" -#: order/models.py:2992 +#: order/models.py:2993 msgid "Invalid quantity for serialized stock item" msgstr "" -#: order/models.py:3008 +#: order/models.py:3009 msgid "Select item to return from customer" msgstr "Velg artikkel som skal returneres fra kunde" -#: order/models.py:3023 +#: order/models.py:3024 msgid "Received Date" msgstr "Mottatt Dato" -#: order/models.py:3024 +#: order/models.py:3025 msgid "The date this this return item was received" msgstr "Datoen denne returartikkelen ble mottatt" -#: order/models.py:3036 +#: order/models.py:3037 msgid "Outcome" msgstr "Utfall" -#: order/models.py:3037 +#: order/models.py:3038 msgid "Outcome for this line item" msgstr "Utfall for dette linjeelementet" -#: order/models.py:3044 +#: order/models.py:3045 msgid "Cost associated with return or repair for this line item" msgstr "Kostnad forbundet med retur eller reparasjon for dette linjeelementet" -#: order/models.py:3054 +#: order/models.py:3055 msgid "Return Order Extra Line" msgstr "" -#: order/serializers.py:91 +#: order/serializers.py:92 msgid "Order ID" msgstr "" -#: order/serializers.py:91 +#: order/serializers.py:92 msgid "ID of the order to duplicate" msgstr "" -#: order/serializers.py:97 +#: order/serializers.py:98 msgid "Copy Lines" msgstr "" -#: order/serializers.py:98 +#: order/serializers.py:99 msgid "Copy line items from the original order" msgstr "" -#: order/serializers.py:104 +#: order/serializers.py:105 msgid "Copy Extra Lines" msgstr "" -#: order/serializers.py:105 +#: order/serializers.py:106 msgid "Copy extra line items from the original order" msgstr "" -#: order/serializers.py:120 +#: order/serializers.py:121 #: report/templates/report/inventree_purchase_order_report.html:29 #: report/templates/report/inventree_return_order_report.html:19 #: report/templates/report/inventree_sales_order_report.html:22 msgid "Line Items" msgstr "Linjeelementer" -#: order/serializers.py:125 +#: order/serializers.py:126 msgid "Completed Lines" msgstr "" -#: order/serializers.py:192 +#: order/serializers.py:199 msgid "Duplicate Order" msgstr "" -#: order/serializers.py:193 +#: order/serializers.py:200 msgid "Specify options for duplicating this order" msgstr "" -#: order/serializers.py:270 +#: order/serializers.py:278 msgid "Invalid order ID" msgstr "" -#: order/serializers.py:466 +#: order/serializers.py:477 msgid "Supplier Name" msgstr "Leverandørnavn" -#: order/serializers.py:510 +#: order/serializers.py:521 msgid "Order cannot be cancelled" msgstr "Ordren kan ikke kanselleres" -#: order/serializers.py:525 order/serializers.py:1602 +#: order/serializers.py:536 order/serializers.py:1616 msgid "Allow order to be closed with incomplete line items" msgstr "Tillat ordre å lukkes med ufullstendige linjeelementer" -#: order/serializers.py:535 order/serializers.py:1612 +#: order/serializers.py:546 order/serializers.py:1626 msgid "Order has incomplete line items" msgstr "Ordren har ufullstendige linjeelementer" -#: order/serializers.py:665 +#: order/serializers.py:676 msgid "Order is not open" msgstr "Ordren er ikke åpen" -#: order/serializers.py:692 +#: order/serializers.py:703 msgid "Auto Pricing" msgstr "" -#: order/serializers.py:694 +#: order/serializers.py:705 msgid "Automatically calculate purchase price based on supplier part data" msgstr "" -#: order/serializers.py:704 +#: order/serializers.py:715 msgid "Purchase price currency" msgstr "Innkjøpsvaluta" -#: order/serializers.py:718 +#: order/serializers.py:729 msgid "Merge Items" msgstr "" -#: order/serializers.py:720 +#: order/serializers.py:731 msgid "Merge items with the same part, destination and target date into one line item" msgstr "" -#: order/serializers.py:727 part/serializers.py:560 +#: order/serializers.py:738 part/serializers.py:471 msgid "SKU" msgstr "SKU-kode" -#: order/serializers.py:741 part/models.py:1089 part/serializers.py:372 +#: order/serializers.py:752 part/models.py:1177 part/serializers.py:337 msgid "Internal Part Number" msgstr "Internt delnummer" -#: order/serializers.py:749 +#: order/serializers.py:760 msgid "Internal Part Name" msgstr "" -#: order/serializers.py:765 +#: order/serializers.py:776 msgid "Supplier part must be specified" msgstr "Leverandørdel må angis" -#: order/serializers.py:768 +#: order/serializers.py:779 msgid "Purchase order must be specified" msgstr "Innkjøpsordre må angis" -#: order/serializers.py:776 +#: order/serializers.py:787 msgid "Supplier must match purchase order" msgstr "Leverandør må samsvare med innkjøpsordre" -#: order/serializers.py:777 +#: order/serializers.py:788 msgid "Purchase order must match supplier" msgstr "Innkjøpsordre må samsvare med leverandør" -#: order/serializers.py:825 order/serializers.py:1682 +#: order/serializers.py:836 order/serializers.py:1696 msgid "Line Item" msgstr "Ordrelinje" -#: order/serializers.py:834 order/serializers.py:974 order/serializers.py:2043 +#: order/serializers.py:845 order/serializers.py:985 order/serializers.py:2060 msgid "Select destination location for received items" msgstr "Velg lagerplassering for mottatte enheter" -#: order/serializers.py:850 +#: order/serializers.py:861 msgid "Enter batch code for incoming stock items" msgstr "Angi batchkode for innkommende lagervarer" -#: order/serializers.py:857 stock/models.py:1160 +#: order/serializers.py:868 stock/models.py:1160 #: templates/email/stale_stock_notification.html:22 users/models.py:137 msgid "Expiry Date" msgstr "Utløpsdato" -#: order/serializers.py:858 +#: order/serializers.py:869 msgid "Enter expiry date for incoming stock items" msgstr "" -#: order/serializers.py:866 +#: order/serializers.py:877 msgid "Enter serial numbers for incoming stock items" msgstr "Angi serienummer for innkommende lagervarer" -#: order/serializers.py:876 +#: order/serializers.py:887 msgid "Override packaging information for incoming stock items" msgstr "" -#: order/serializers.py:884 order/serializers.py:2048 +#: order/serializers.py:895 order/serializers.py:2065 msgid "Additional note for incoming stock items" msgstr "" -#: order/serializers.py:891 +#: order/serializers.py:902 msgid "Barcode" msgstr "Strekkode" -#: order/serializers.py:892 +#: order/serializers.py:903 msgid "Scanned barcode" msgstr "Skannet strekkode" -#: order/serializers.py:908 +#: order/serializers.py:919 msgid "Barcode is already in use" msgstr "Strekkode allerede i bruk" -#: order/serializers.py:991 order/serializers.py:2067 +#: order/serializers.py:1002 order/serializers.py:2084 msgid "Line items must be provided" msgstr "Linjeelementer må være oppgitt" -#: order/serializers.py:1010 +#: order/serializers.py:1021 msgid "Destination location must be specified" msgstr "Målplassering må angis" -#: order/serializers.py:1017 +#: order/serializers.py:1028 msgid "Supplied barcode values must be unique" msgstr "Angitte strekkodeverdier må være unike" -#: order/serializers.py:1121 +#: order/serializers.py:1135 msgid "Shipments" msgstr "" -#: order/serializers.py:1125 +#: order/serializers.py:1139 msgid "Completed Shipments" msgstr "Fullførte forsendelser" -#: order/serializers.py:1293 +#: order/serializers.py:1307 msgid "Sale price currency" msgstr "Valuta for salgspris" -#: order/serializers.py:1339 +#: order/serializers.py:1353 msgid "Allocated Items" msgstr "" -#: order/serializers.py:1484 +#: order/serializers.py:1498 msgid "No shipment details provided" msgstr "Ingen forsendelsesopplysninger oppgitt" -#: order/serializers.py:1545 order/serializers.py:1691 +#: order/serializers.py:1559 order/serializers.py:1705 msgid "Line item is not associated with this order" msgstr "Linjeelement er ikke knyttet til denne ordren" -#: order/serializers.py:1564 +#: order/serializers.py:1578 msgid "Quantity must be positive" msgstr "Mengden må være positiv" -#: order/serializers.py:1701 +#: order/serializers.py:1715 msgid "Enter serial numbers to allocate" msgstr "Skriv inn serienummer for å tildele" -#: order/serializers.py:1723 order/serializers.py:1843 +#: order/serializers.py:1737 order/serializers.py:1857 msgid "Shipment has already been shipped" msgstr "Forsendelsen er allerede sendt" -#: order/serializers.py:1726 order/serializers.py:1846 +#: order/serializers.py:1740 order/serializers.py:1860 msgid "Shipment is not associated with this order" msgstr "Forsendelsen er ikke knyttet til denne ordren" -#: order/serializers.py:1781 +#: order/serializers.py:1795 msgid "No match found for the following serial numbers" msgstr "Ingen treff funnet for følgende serienummer" -#: order/serializers.py:1788 +#: order/serializers.py:1802 msgid "The following serial numbers are unavailable" msgstr "" -#: order/serializers.py:2009 +#: order/serializers.py:2026 msgid "Return order line item" msgstr "Returordrelinje" -#: order/serializers.py:2019 +#: order/serializers.py:2036 msgid "Line item does not match return order" msgstr "Linjeelementet samsvarer ikke med returordre" -#: order/serializers.py:2022 +#: order/serializers.py:2039 msgid "Line item has already been received" msgstr "Linjeelementet er allerede mottatt" -#: order/serializers.py:2059 +#: order/serializers.py:2076 msgid "Items can only be received against orders which are in progress" msgstr "Artikler kan bare mottas mot ordrer som pågår" -#: order/serializers.py:2124 +#: order/serializers.py:2141 msgid "Quantity to return" msgstr "" -#: order/serializers.py:2140 +#: order/serializers.py:2157 msgid "Line price currency" msgstr "Valuta for linje" @@ -5431,1190 +5559,1109 @@ msgstr "" msgid "Return order {ro} is now overdue" msgstr "" -#: part/api.py:108 +#: part/api.py:103 msgid "Starred" msgstr "" -#: part/api.py:110 +#: part/api.py:105 msgid "Filter by starred categories" msgstr "" -#: part/api.py:127 stock/api.py:288 +#: part/api.py:122 stock/api.py:288 msgid "Depth" msgstr "" -#: part/api.py:127 +#: part/api.py:122 msgid "Filter by category depth" msgstr "" -#: part/api.py:145 stock/api.py:306 +#: part/api.py:140 stock/api.py:306 msgid "Top Level" msgstr "" -#: part/api.py:147 +#: part/api.py:142 msgid "Filter by top-level categories" msgstr "" -#: part/api.py:160 stock/api.py:321 +#: part/api.py:155 stock/api.py:321 msgid "Cascade" msgstr "" -#: part/api.py:162 +#: part/api.py:157 msgid "Include sub-categories in filtered results" msgstr "" -#: part/api.py:182 +#: part/api.py:177 msgid "Parent" msgstr "" -#: part/api.py:184 +#: part/api.py:179 msgid "Filter by parent category" msgstr "" -#: part/api.py:219 +#: part/api.py:214 msgid "Exclude sub-categories under the specified category" msgstr "" -#: part/api.py:445 +#: part/api.py:440 msgid "Has Results" msgstr "" -#: part/api.py:666 +#: part/api.py:661 msgid "Is Variant" msgstr "" -#: part/api.py:674 +#: part/api.py:669 msgid "Is Revision" msgstr "" -#: part/api.py:684 +#: part/api.py:679 msgid "Has Revisions" msgstr "" -#: part/api.py:865 +#: part/api.py:860 msgid "BOM Valid" msgstr "" -#: part/api.py:974 +#: part/api.py:969 msgid "Cascade Categories" msgstr "" -#: part/api.py:975 +#: part/api.py:970 msgid "If true, include items in child categories of the given category" msgstr "" -#: part/api.py:981 +#: part/api.py:976 msgid "Filter by numeric category ID or the literal 'null'" msgstr "" -#: part/api.py:1533 +#: part/api.py:1258 msgid "Assembly part is testable" msgstr "" -#: part/api.py:1542 +#: part/api.py:1267 msgid "Component part is testable" msgstr "" -#: part/api.py:1611 +#: part/api.py:1336 msgid "Uses" msgstr "" -#: part/models.py:96 part/models.py:4163 +#: part/models.py:93 part/models.py:436 #: templates/email/part_event_notification.html:16 msgid "Part Category" msgstr "Delkategori" -#: part/models.py:97 users/ruleset.py:27 +#: part/models.py:94 users/ruleset.py:27 msgid "Part Categories" msgstr "Delkategorier" -#: part/models.py:115 part/models.py:1125 +#: part/models.py:112 part/models.py:1213 msgid "Default Location" msgstr "Standard plassering" -#: part/models.py:116 +#: part/models.py:113 msgid "Default location for parts in this category" msgstr "Standardplassering for deler i denne kategorien" -#: part/models.py:121 stock/models.py:216 +#: part/models.py:118 stock/models.py:216 msgid "Structural" msgstr "Strukturell" -#: part/models.py:123 +#: part/models.py:120 msgid "Parts may not be directly assigned to a structural category, but may be assigned to child categories." msgstr "Deler kan ikke tilordnes direkte til en strukturell kategori, men kan tilordnes til underkategorier." -#: part/models.py:132 +#: part/models.py:129 msgid "Default keywords" msgstr "Standard nøkkelord" -#: part/models.py:133 +#: part/models.py:130 msgid "Default keywords for parts in this category" msgstr "Standard nøkkelord for deler i denne kategorien" -#: part/models.py:140 stock/models.py:97 stock/models.py:198 +#: part/models.py:137 stock/models.py:97 stock/models.py:198 msgid "Icon" msgstr "Ikon" -#: part/models.py:141 part/serializers.py:148 part/serializers.py:167 +#: part/models.py:138 part/serializers.py:147 part/serializers.py:166 #: stock/models.py:199 msgid "Icon (optional)" msgstr "Ikon (valgfritt)" -#: part/models.py:185 +#: part/models.py:182 msgid "You cannot make this part category structural because some parts are already assigned to it!" msgstr "Du kan ikke gjøre denne delkategorien strukturell fordi noen deler allerede er tilordnet den!" -#: part/models.py:473 part/serializers.py:119 part/serializers.py:310 -#: users/ruleset.py:28 +#: part/models.py:392 +msgid "Part Category Parameter Template" +msgstr "" + +#: part/models.py:448 +msgid "Default Value" +msgstr "Standardverdi" + +#: part/models.py:449 +msgid "Default Parameter Value" +msgstr "Standard Parameterverdi" + +#: part/models.py:551 part/serializers.py:118 users/ruleset.py:28 msgid "Parts" msgstr "Deler" -#: part/models.py:525 +#: part/models.py:597 +msgid "Cannot delete parameters of a locked part" +msgstr "" + +#: part/models.py:602 +msgid "Cannot modify parameters of a locked part" +msgstr "" + +#: part/models.py:613 msgid "Cannot delete this part as it is locked" msgstr "" -#: part/models.py:528 +#: part/models.py:616 msgid "Cannot delete this part as it is still active" msgstr "" -#: part/models.py:533 +#: part/models.py:621 msgid "Cannot delete this part as it is used in an assembly" msgstr "" -#: part/models.py:616 part/models.py:623 +#: part/models.py:704 part/models.py:711 #, python-brace-format msgid "Part '{self}' cannot be used in BOM for '{parent}' (recursive)" msgstr "Delen '{self}' kan ikke brukes i BOM for '{parent}' (rekursiv)" -#: part/models.py:635 +#: part/models.py:723 #, python-brace-format msgid "Part '{parent}' is used in BOM for '{self}' (recursive)" msgstr "Delen '{parent}' er brukt i BOM for '{self}' (rekursiv)" -#: part/models.py:702 +#: part/models.py:790 #, python-brace-format msgid "IPN must match regex pattern {pattern}" msgstr "IPN må samsvare med regex-mønsteret {pattern}" -#: part/models.py:710 +#: part/models.py:798 msgid "Part cannot be a revision of itself" msgstr "" -#: part/models.py:717 +#: part/models.py:805 msgid "Cannot make a revision of a part which is already a revision" msgstr "" -#: part/models.py:724 +#: part/models.py:812 msgid "Revision code must be specified" msgstr "" -#: part/models.py:731 +#: part/models.py:819 msgid "Revisions are only allowed for assembly parts" msgstr "" -#: part/models.py:738 +#: part/models.py:826 msgid "Cannot make a revision of a template part" msgstr "" -#: part/models.py:744 +#: part/models.py:832 msgid "Parent part must point to the same template" msgstr "" -#: part/models.py:841 +#: part/models.py:929 msgid "Stock item with this serial number already exists" msgstr "Lagervare med dette serienummeret eksisterer allerede" -#: part/models.py:971 +#: part/models.py:1059 msgid "Duplicate IPN not allowed in part settings" msgstr "Duplikat av internt delnummer er ikke tillatt i delinnstillinger" -#: part/models.py:983 +#: part/models.py:1071 msgid "Duplicate part revision already exists." msgstr "" -#: part/models.py:992 +#: part/models.py:1080 msgid "Part with this Name, IPN and Revision already exists." msgstr "Del med dette Navnet, internt delnummer og Revisjon eksisterer allerede." -#: part/models.py:1007 +#: part/models.py:1095 msgid "Parts cannot be assigned to structural part categories!" msgstr "Deler kan ikke tilordnes strukturelle delkategorier!" -#: part/models.py:1039 +#: part/models.py:1127 msgid "Part name" msgstr "Delnavn" -#: part/models.py:1044 +#: part/models.py:1132 msgid "Is Template" msgstr "Er Mal" -#: part/models.py:1045 +#: part/models.py:1133 msgid "Is this part a template part?" msgstr "Er delen en maldel?" -#: part/models.py:1055 +#: part/models.py:1143 msgid "Is this part a variant of another part?" msgstr "Er delen en variant av en annen del?" -#: part/models.py:1056 +#: part/models.py:1144 msgid "Variant Of" msgstr "Variant av" -#: part/models.py:1063 +#: part/models.py:1151 msgid "Part description (optional)" msgstr "Delbeskrivelse (valgfritt)" -#: part/models.py:1070 +#: part/models.py:1158 msgid "Keywords" msgstr "Nøkkelord" -#: part/models.py:1071 +#: part/models.py:1159 msgid "Part keywords to improve visibility in search results" msgstr "Del-nøkkelord for å øke synligheten i søkeresultater" -#: part/models.py:1081 +#: part/models.py:1169 msgid "Part category" msgstr "Delkategori" -#: part/models.py:1088 part/serializers.py:929 +#: part/models.py:1176 part/serializers.py:814 #: report/templates/report/inventree_stock_location_report.html:103 msgid "IPN" msgstr "" -#: part/models.py:1096 +#: part/models.py:1184 msgid "Part revision or version number" msgstr "Delrevisjon eller versjonsnummer" -#: part/models.py:1097 report/models.py:228 +#: part/models.py:1185 report/models.py:228 msgid "Revision" msgstr "Revisjon" -#: part/models.py:1106 +#: part/models.py:1194 msgid "Is this part a revision of another part?" msgstr "" -#: part/models.py:1107 +#: part/models.py:1195 msgid "Revision Of" msgstr "" -#: part/models.py:1123 +#: part/models.py:1211 msgid "Where is this item normally stored?" msgstr "Hvor er denne artikkelen vanligvis lagret?" -#: part/models.py:1169 +#: part/models.py:1257 msgid "Default Supplier" msgstr "Standard leverandør" -#: part/models.py:1170 +#: part/models.py:1258 msgid "Default supplier part" msgstr "Standard leverandørdel" -#: part/models.py:1177 +#: part/models.py:1265 msgid "Default Expiry" msgstr "Standard utløp" -#: part/models.py:1178 +#: part/models.py:1266 msgid "Expiry time (in days) for stock items of this part" msgstr "Utløpstid (i dager) for lagervarer av denne delen" -#: part/models.py:1186 part/serializers.py:1003 +#: part/models.py:1274 part/serializers.py:888 msgid "Minimum Stock" msgstr "Minimal lagerbeholdning" -#: part/models.py:1187 +#: part/models.py:1275 msgid "Minimum allowed stock level" msgstr "Minimum tillatt lagernivå" -#: part/models.py:1196 +#: part/models.py:1284 msgid "Units of measure for this part" msgstr "Måleenheter for denne delen" -#: part/models.py:1203 +#: part/models.py:1291 msgid "Can this part be built from other parts?" msgstr "Kan denne delen bygges fra andre deler?" -#: part/models.py:1209 +#: part/models.py:1297 msgid "Can this part be used to build other parts?" msgstr "Kan denne delen brukes til å bygge andre deler?" -#: part/models.py:1215 +#: part/models.py:1303 msgid "Does this part have tracking for unique items?" msgstr "Har denne delen sporing av unike artikler?" -#: part/models.py:1221 +#: part/models.py:1309 msgid "Can this part have test results recorded against it?" msgstr "" -#: part/models.py:1227 +#: part/models.py:1315 msgid "Can this part be purchased from external suppliers?" msgstr "Kan denne delen kjøpes inn fra eksterne leverandører?" -#: part/models.py:1233 +#: part/models.py:1321 msgid "Can this part be sold to customers?" msgstr "Kan denne delen selges til kunder?" -#: part/models.py:1237 +#: part/models.py:1325 msgid "Is this part active?" msgstr "Er denne delen aktiv?" -#: part/models.py:1243 +#: part/models.py:1331 msgid "Locked parts cannot be edited" msgstr "" -#: part/models.py:1249 +#: part/models.py:1337 msgid "Is this a virtual part, such as a software product or license?" msgstr "Er dette en virtuell del, som et softwareprodukt eller en lisens?" -#: part/models.py:1254 +#: part/models.py:1342 msgid "BOM Validated" msgstr "" -#: part/models.py:1255 +#: part/models.py:1343 msgid "Is the BOM for this part valid?" msgstr "" -#: part/models.py:1261 +#: part/models.py:1349 msgid "BOM checksum" msgstr "Kontrollsum for BOM" -#: part/models.py:1262 +#: part/models.py:1350 msgid "Stored BOM checksum" msgstr "Lagret BOM-kontrollsum" -#: part/models.py:1270 +#: part/models.py:1358 msgid "BOM checked by" msgstr "Stykkliste sjekket av" -#: part/models.py:1275 +#: part/models.py:1363 msgid "BOM checked date" msgstr "Stykkliste sjekket dato" -#: part/models.py:1291 +#: part/models.py:1379 msgid "Creation User" msgstr "Opprettingsbruker" -#: part/models.py:1301 +#: part/models.py:1389 msgid "Owner responsible for this part" msgstr "Eier ansvarlig for denne delen" -#: part/models.py:2258 +#: part/models.py:2346 msgid "Sell multiple" msgstr "Selg flere" -#: part/models.py:3286 +#: part/models.py:3350 msgid "Currency used to cache pricing calculations" msgstr "Valuta som brukes til å bufre prisberegninger" -#: part/models.py:3302 +#: part/models.py:3366 msgid "Minimum BOM Cost" msgstr "Minimal BOM-kostnad" -#: part/models.py:3303 +#: part/models.py:3367 msgid "Minimum cost of component parts" msgstr "Minste kostnad for komponentdeler" -#: part/models.py:3309 +#: part/models.py:3373 msgid "Maximum BOM Cost" msgstr "Maksimal BOM-kostnad" -#: part/models.py:3310 +#: part/models.py:3374 msgid "Maximum cost of component parts" msgstr "Maksimal kostnad for komponentdeler" -#: part/models.py:3316 +#: part/models.py:3380 msgid "Minimum Purchase Cost" msgstr "Minimal innkjøpskostnad" -#: part/models.py:3317 +#: part/models.py:3381 msgid "Minimum historical purchase cost" msgstr "Minimal historisk innkjøpskostnad" -#: part/models.py:3323 +#: part/models.py:3387 msgid "Maximum Purchase Cost" msgstr "Maksimal innkjøpskostnad" -#: part/models.py:3324 +#: part/models.py:3388 msgid "Maximum historical purchase cost" msgstr "Maksimal historisk innkjøpskostnad" -#: part/models.py:3330 +#: part/models.py:3394 msgid "Minimum Internal Price" msgstr "Minimal intern pris" -#: part/models.py:3331 +#: part/models.py:3395 msgid "Minimum cost based on internal price breaks" msgstr "Minimal kostnad basert på interne prisbrudd" -#: part/models.py:3337 +#: part/models.py:3401 msgid "Maximum Internal Price" msgstr "Maksimal intern pris" -#: part/models.py:3338 +#: part/models.py:3402 msgid "Maximum cost based on internal price breaks" msgstr "Maksimal kostnad basert på interne prisbrudd" -#: part/models.py:3344 +#: part/models.py:3408 msgid "Minimum Supplier Price" msgstr "Minimal leverandørpris" -#: part/models.py:3345 +#: part/models.py:3409 msgid "Minimum price of part from external suppliers" msgstr "Minimumspris for del fra eksterne leverandører" -#: part/models.py:3351 +#: part/models.py:3415 msgid "Maximum Supplier Price" msgstr "Maksimal leverandørpris" -#: part/models.py:3352 +#: part/models.py:3416 msgid "Maximum price of part from external suppliers" msgstr "Maksimalpris for del fra eksterne leverandører" -#: part/models.py:3358 +#: part/models.py:3422 msgid "Minimum Variant Cost" msgstr "Minimal Variantkostnad" -#: part/models.py:3359 +#: part/models.py:3423 msgid "Calculated minimum cost of variant parts" msgstr "Beregnet minimal kostnad for variantdeler" -#: part/models.py:3365 +#: part/models.py:3429 msgid "Maximum Variant Cost" msgstr "Maksimal Variantkostnad" -#: part/models.py:3366 +#: part/models.py:3430 msgid "Calculated maximum cost of variant parts" msgstr "Beregnet maksimal kostnad for variantdeler" -#: part/models.py:3372 part/models.py:3386 +#: part/models.py:3436 part/models.py:3450 msgid "Minimum Cost" msgstr "Minimal kostnad" -#: part/models.py:3373 +#: part/models.py:3437 msgid "Override minimum cost" msgstr "Overstyr minstekostnad" -#: part/models.py:3379 part/models.py:3393 +#: part/models.py:3443 part/models.py:3457 msgid "Maximum Cost" msgstr "Maksimal kostnad" -#: part/models.py:3380 +#: part/models.py:3444 msgid "Override maximum cost" msgstr "Overstyr maksimal kostnad" -#: part/models.py:3387 +#: part/models.py:3451 msgid "Calculated overall minimum cost" msgstr "Beregnet samlet minimal kostnad" -#: part/models.py:3394 +#: part/models.py:3458 msgid "Calculated overall maximum cost" msgstr "Beregnet samlet maksimal kostnad" -#: part/models.py:3400 +#: part/models.py:3464 msgid "Minimum Sale Price" msgstr "Minimal salgspris" -#: part/models.py:3401 +#: part/models.py:3465 msgid "Minimum sale price based on price breaks" msgstr "Minimal salgspris basert på prisbrudd" -#: part/models.py:3407 +#: part/models.py:3471 msgid "Maximum Sale Price" msgstr "Maksimal Salgspris" -#: part/models.py:3408 +#: part/models.py:3472 msgid "Maximum sale price based on price breaks" msgstr "Maksimal salgspris basert på prisbrudd" -#: part/models.py:3414 +#: part/models.py:3478 msgid "Minimum Sale Cost" msgstr "Minimal Salgskostnad" -#: part/models.py:3415 +#: part/models.py:3479 msgid "Minimum historical sale price" msgstr "Minimal historisk salgspris" -#: part/models.py:3421 +#: part/models.py:3485 msgid "Maximum Sale Cost" msgstr "Maksimal Salgskostnad" -#: part/models.py:3422 +#: part/models.py:3486 msgid "Maximum historical sale price" msgstr "Maksimal historisk salgspris" -#: part/models.py:3440 +#: part/models.py:3504 msgid "Part for stocktake" msgstr "Del for varetelling" -#: part/models.py:3445 +#: part/models.py:3509 msgid "Item Count" msgstr "Antall" -#: part/models.py:3446 +#: part/models.py:3510 msgid "Number of individual stock entries at time of stocktake" msgstr "Antall individuelle lagerenheter på tidspunkt for varetelling" -#: part/models.py:3454 +#: part/models.py:3518 msgid "Total available stock at time of stocktake" msgstr "Total tilgjengelig lagerbeholdning på tidspunkt for varetelling" -#: part/models.py:3458 report/templates/report/inventree_test_report.html:106 +#: part/models.py:3522 report/templates/report/inventree_test_report.html:106 msgid "Date" msgstr "Dato" -#: part/models.py:3459 +#: part/models.py:3523 msgid "Date stocktake was performed" msgstr "Dato for utført lagertelling" -#: part/models.py:3466 +#: part/models.py:3530 msgid "Minimum Stock Cost" msgstr "Minimal lagerkostnad" -#: part/models.py:3467 +#: part/models.py:3531 msgid "Estimated minimum cost of stock on hand" msgstr "Estimert minimal kostnad for lagerbeholdning" -#: part/models.py:3473 +#: part/models.py:3537 msgid "Maximum Stock Cost" msgstr "Maksimal lagerkostnad" -#: part/models.py:3474 +#: part/models.py:3538 msgid "Estimated maximum cost of stock on hand" msgstr "Estimert maksimal kostnad for lagerbeholdning" -#: part/models.py:3484 +#: part/models.py:3548 msgid "Part Sale Price Break" msgstr "" -#: part/models.py:3596 +#: part/models.py:3660 msgid "Part Test Template" msgstr "" -#: part/models.py:3622 +#: part/models.py:3686 msgid "Invalid template name - must include at least one alphanumeric character" msgstr "" -#: part/models.py:3643 part/models.py:3816 -msgid "Choices must be unique" -msgstr "Valg må være unike" - -#: part/models.py:3654 +#: part/models.py:3718 msgid "Test templates can only be created for testable parts" msgstr "" -#: part/models.py:3668 +#: part/models.py:3732 msgid "Test template with the same key already exists for part" msgstr "" -#: part/models.py:3685 +#: part/models.py:3749 msgid "Test Name" msgstr "Testnavn" -#: part/models.py:3686 +#: part/models.py:3750 msgid "Enter a name for the test" msgstr "Angi et navn for testen" -#: part/models.py:3692 +#: part/models.py:3756 msgid "Test Key" msgstr "" -#: part/models.py:3693 +#: part/models.py:3757 msgid "Simplified key for the test" msgstr "" -#: part/models.py:3700 +#: part/models.py:3764 msgid "Test Description" msgstr "Testbeskrivelse" -#: part/models.py:3701 +#: part/models.py:3765 msgid "Enter description for this test" msgstr "Legg inn beskrivelse for denne testen" -#: part/models.py:3705 report/models.py:287 -msgid "Enabled" -msgstr "Aktivert" - -#: part/models.py:3705 +#: part/models.py:3769 msgid "Is this test enabled?" msgstr "" -#: part/models.py:3710 +#: part/models.py:3774 msgid "Required" msgstr "Påkrevd" -#: part/models.py:3711 +#: part/models.py:3775 msgid "Is this test required to pass?" msgstr "Er det påkrevd at denne testen bestås?" -#: part/models.py:3716 +#: part/models.py:3780 msgid "Requires Value" msgstr "Krever verdi" -#: part/models.py:3717 +#: part/models.py:3781 msgid "Does this test require a value when adding a test result?" msgstr "Krever denne testen en verdi når det legges til et testresultat?" -#: part/models.py:3722 +#: part/models.py:3786 msgid "Requires Attachment" msgstr "Krever vedlegg" -#: part/models.py:3724 +#: part/models.py:3788 msgid "Does this test require a file attachment when adding a test result?" msgstr "Krever denne testen et filvedlegg når du legger inn et testresultat?" -#: part/models.py:3730 part/models.py:3878 -msgid "Choices" -msgstr "Valg" - -#: part/models.py:3731 +#: part/models.py:3795 msgid "Valid choices for this test (comma-separated)" msgstr "" -#: part/models.py:3764 -msgid "Part Parameter Template" -msgstr "" - -#: part/models.py:3791 -msgid "Checkbox parameters cannot have units" -msgstr "Sjekkboksparameter kan ikke ha enheter" - -#: part/models.py:3796 -msgid "Checkbox parameters cannot have choices" -msgstr "Sjekkboksparameter kan ikke ha valg" - -#: part/models.py:3833 -msgid "Parameter template name must be unique" -msgstr "Navn på parametermal må være unikt" - -#: part/models.py:3851 -msgid "Parameter Name" -msgstr "Parameternavn" - -#: part/models.py:3858 -msgid "Physical units for this parameter" -msgstr "Fysisk enheter for denne parameteren" - -#: part/models.py:3866 -msgid "Parameter description" -msgstr "Parameterbeskrivelse" - -#: part/models.py:3872 -msgid "Checkbox" -msgstr "Sjekkboks" - -#: part/models.py:3873 -msgid "Is this parameter a checkbox?" -msgstr "Er dette parameteret en sjekkboks?" - -#: part/models.py:3879 -msgid "Valid choices for this parameter (comma-separated)" -msgstr "Gyldige valg for denne parameteren (kommaseparert)" - -#: part/models.py:3890 -msgid "Selection list for this parameter" -msgstr "" - -#: part/models.py:3932 -msgid "Part Parameter" -msgstr "" - -#: part/models.py:3958 -msgid "Parameter cannot be modified - part is locked" -msgstr "" - -#: part/models.py:3996 -msgid "Invalid choice for parameter value" -msgstr "Ugyldig valg for parameterverdi" - -#: part/models.py:4047 -msgid "Parent Part" -msgstr "Overordnet del" - -#: part/models.py:4055 part/models.py:4170 part/models.py:4171 -msgid "Parameter Template" -msgstr "Parametermal" - -#: part/models.py:4061 -msgid "Parameter Value" -msgstr "Parameterverdi" - -#: part/models.py:4071 stock/serializers.py:718 -msgid "Optional note field" -msgstr "Valgfritt notatfelt" - -#: part/models.py:4118 -msgid "Part Category Parameter Template" -msgstr "" - -#: part/models.py:4177 -msgid "Default Value" -msgstr "Standardverdi" - -#: part/models.py:4178 -msgid "Default Parameter Value" -msgstr "Standard Parameterverdi" - -#: part/models.py:4352 +#: part/models.py:3977 msgid "BOM item cannot be modified - assembly is locked" msgstr "" -#: part/models.py:4359 +#: part/models.py:3984 msgid "BOM item cannot be modified - variant assembly is locked" msgstr "" -#: part/models.py:4369 +#: part/models.py:3994 msgid "Select parent part" msgstr "Velg overordnet del" -#: part/models.py:4379 +#: part/models.py:4004 msgid "Sub part" msgstr "Underordnet del" -#: part/models.py:4380 +#: part/models.py:4005 msgid "Select part to be used in BOM" msgstr "Velg del som skal brukes i BOM" -#: part/models.py:4391 +#: part/models.py:4016 msgid "BOM quantity for this BOM item" msgstr "BOM-antall for denne BOM-artikkelen" -#: part/models.py:4397 +#: part/models.py:4022 msgid "This BOM item is optional" msgstr "Denne BOM-artikkelen er valgfri" -#: part/models.py:4403 +#: part/models.py:4028 msgid "This BOM item is consumable (it is not tracked in build orders)" msgstr "Denne BOM-artikkelen er forbruksvare (den spores ikke i produksjonsordrer)" -#: part/models.py:4411 +#: part/models.py:4036 msgid "Setup Quantity" msgstr "" -#: part/models.py:4412 +#: part/models.py:4037 msgid "Extra required quantity for a build, to account for setup losses" msgstr "" -#: part/models.py:4420 +#: part/models.py:4045 msgid "Attrition" msgstr "" -#: part/models.py:4422 +#: part/models.py:4047 msgid "Estimated attrition for a build, expressed as a percentage (0-100)" msgstr "" -#: part/models.py:4433 +#: part/models.py:4058 msgid "Rounding Multiple" msgstr "" -#: part/models.py:4435 +#: part/models.py:4060 msgid "Round up required production quantity to nearest multiple of this value" msgstr "" -#: part/models.py:4443 +#: part/models.py:4068 msgid "BOM item reference" msgstr "BOM-artikkelreferanse" -#: part/models.py:4451 +#: part/models.py:4076 msgid "BOM item notes" msgstr "BOM-artikkelnotater" -#: part/models.py:4457 +#: part/models.py:4082 msgid "Checksum" msgstr "Kontrollsum" -#: part/models.py:4458 +#: part/models.py:4083 msgid "BOM line checksum" msgstr "BOM-linje kontrollsum" -#: part/models.py:4463 +#: part/models.py:4088 msgid "Validated" msgstr "Godkjent" -#: part/models.py:4464 +#: part/models.py:4089 msgid "This BOM item has been validated" msgstr "Denne BOM-artikkelen er godkjent" -#: part/models.py:4469 +#: part/models.py:4094 msgid "Gets inherited" msgstr "Arves" -#: part/models.py:4470 +#: part/models.py:4095 msgid "This BOM item is inherited by BOMs for variant parts" msgstr "Denne BOM-artikkelen er arvet fra stykkliste for variantdeler" -#: part/models.py:4476 +#: part/models.py:4101 msgid "Stock items for variant parts can be used for this BOM item" msgstr "Lagervarer for variantdeler kan brukes for denne BOM-artikkelen" -#: part/models.py:4583 stock/models.py:925 +#: part/models.py:4208 stock/models.py:925 msgid "Quantity must be integer value for trackable parts" msgstr "Antall må være heltallsverdi for sporbare deler" -#: part/models.py:4593 part/models.py:4595 +#: part/models.py:4218 part/models.py:4220 msgid "Sub part must be specified" msgstr "Underordnet del må angis" -#: part/models.py:4746 +#: part/models.py:4371 msgid "BOM Item Substitute" msgstr "BOM-artikkel erstatning" -#: part/models.py:4767 +#: part/models.py:4392 msgid "Substitute part cannot be the same as the master part" msgstr "Erstatningsdel kan ikke være samme som hoveddelen" -#: part/models.py:4780 +#: part/models.py:4405 msgid "Parent BOM item" msgstr "Overordnet BOM-artikkel" -#: part/models.py:4788 +#: part/models.py:4413 msgid "Substitute part" msgstr "Erstatningsdel" -#: part/models.py:4804 +#: part/models.py:4429 msgid "Part 1" msgstr "Del 1" -#: part/models.py:4812 +#: part/models.py:4437 msgid "Part 2" msgstr "Del 2" -#: part/models.py:4813 +#: part/models.py:4438 msgid "Select Related Part" msgstr "Velg relatert del" -#: part/models.py:4820 +#: part/models.py:4445 msgid "Note for this relationship" msgstr "" -#: part/models.py:4839 +#: part/models.py:4464 msgid "Part relationship cannot be created between a part and itself" msgstr "Del-forhold kan ikke opprettes mellom en del og seg selv" -#: part/models.py:4844 +#: part/models.py:4469 msgid "Duplicate relationship already exists" msgstr "Duplikatforhold eksisterer allerede" -#: part/serializers.py:114 +#: part/serializers.py:113 msgid "Parent Category" msgstr "" -#: part/serializers.py:115 +#: part/serializers.py:114 msgid "Parent part category" msgstr "" -#: part/serializers.py:123 part/serializers.py:164 +#: part/serializers.py:122 part/serializers.py:163 msgid "Subcategories" msgstr "Underkategorier" -#: part/serializers.py:203 +#: part/serializers.py:202 msgid "Results" msgstr "" -#: part/serializers.py:204 +#: part/serializers.py:203 msgid "Number of results recorded against this template" msgstr "" -#: part/serializers.py:235 part/serializers.py:253 stock/serializers.py:643 +#: part/serializers.py:234 part/serializers.py:252 stock/serializers.py:643 msgid "Purchase currency of this stock item" msgstr "Innkjøpsvaluta for lagervaren" -#: part/serializers.py:280 +#: part/serializers.py:279 msgid "File is not an image" msgstr "" -#: part/serializers.py:311 -msgid "Number of parts using this template" -msgstr "" - -#: part/serializers.py:471 +#: part/serializers.py:382 msgid "Original Part" msgstr "Original Del" -#: part/serializers.py:472 +#: part/serializers.py:383 msgid "Select original part to duplicate" msgstr "Velg original del å duplisere" -#: part/serializers.py:477 +#: part/serializers.py:388 msgid "Copy Image" msgstr "Kopier Bilde" -#: part/serializers.py:478 +#: part/serializers.py:389 msgid "Copy image from original part" msgstr "Kopier bilde fra originaldel" -#: part/serializers.py:484 +#: part/serializers.py:395 msgid "Copy BOM" msgstr "Kopier Stykkliste" -#: part/serializers.py:485 +#: part/serializers.py:396 msgid "Copy bill of materials from original part" msgstr "Kopier stykkliste fra original del" -#: part/serializers.py:491 +#: part/serializers.py:402 msgid "Copy Parameters" msgstr "Kopier parametere" -#: part/serializers.py:492 +#: part/serializers.py:403 msgid "Copy parameter data from original part" msgstr "Kopier parameterdata fra originaldel" -#: part/serializers.py:498 +#: part/serializers.py:409 msgid "Copy Notes" msgstr "Kopier notater" -#: part/serializers.py:499 +#: part/serializers.py:410 msgid "Copy notes from original part" msgstr "Kopier notater fra originaldel" -#: part/serializers.py:505 +#: part/serializers.py:416 msgid "Copy Tests" msgstr "" -#: part/serializers.py:506 +#: part/serializers.py:417 msgid "Copy test templates from original part" msgstr "" -#: part/serializers.py:524 +#: part/serializers.py:435 msgid "Initial Stock Quantity" msgstr "Innledende lagerbeholdning" -#: part/serializers.py:526 +#: part/serializers.py:437 msgid "Specify initial stock quantity for this Part. If quantity is zero, no stock is added." msgstr "Angi initiell lagermengde for denne delen. Hvis antall er null, er ingen lagerbeholdning lagt til." -#: part/serializers.py:533 +#: part/serializers.py:444 msgid "Initial Stock Location" msgstr "Innledende lagerplassering" -#: part/serializers.py:534 +#: part/serializers.py:445 msgid "Specify initial stock location for this Part" msgstr "Angi initiell lagerplasering for denne delen" -#: part/serializers.py:551 +#: part/serializers.py:462 msgid "Select supplier (or leave blank to skip)" msgstr "Velg leverandør (eller la stå tom for å hoppe over)" -#: part/serializers.py:567 +#: part/serializers.py:478 msgid "Select manufacturer (or leave blank to skip)" msgstr "Velg produsent (eller la stå tom for å hoppe over)" -#: part/serializers.py:577 +#: part/serializers.py:488 msgid "Manufacturer part number" msgstr "Produsentens delenummer" -#: part/serializers.py:584 +#: part/serializers.py:495 msgid "Selected company is not a valid supplier" msgstr "Valgt firma er ikke en gyldig leverandør" -#: part/serializers.py:593 +#: part/serializers.py:504 msgid "Selected company is not a valid manufacturer" msgstr "Valgt firma er ikke en gyldig produsent" -#: part/serializers.py:604 +#: part/serializers.py:515 msgid "Manufacturer part matching this MPN already exists" msgstr "Produsentdel som matcher dette MPN-et, finnes allerede" -#: part/serializers.py:611 +#: part/serializers.py:522 msgid "Supplier part matching this SKU already exists" msgstr "Leverandørdel som matcher denne SKU-en, finnes allerede" -#: part/serializers.py:914 +#: part/serializers.py:799 msgid "Category Name" msgstr "Kategorinavn" -#: part/serializers.py:943 +#: part/serializers.py:828 msgid "Building" msgstr "Produseres" -#: part/serializers.py:944 +#: part/serializers.py:829 msgid "Quantity of this part currently being in production" msgstr "" -#: part/serializers.py:951 +#: part/serializers.py:836 msgid "Outstanding quantity of this part scheduled to be built" msgstr "" -#: part/serializers.py:971 stock/serializers.py:1019 stock/serializers.py:1189 +#: part/serializers.py:856 stock/serializers.py:1019 stock/serializers.py:1189 #: users/ruleset.py:30 msgid "Stock Items" msgstr "Lagervarer" -#: part/serializers.py:975 +#: part/serializers.py:860 msgid "Revisions" msgstr "" -#: part/serializers.py:979 +#: part/serializers.py:864 msgid "Suppliers" msgstr "Leverandører" -#: part/serializers.py:983 part/serializers.py:1297 +#: part/serializers.py:868 part/serializers.py:1162 #: templates/email/low_stock_notification.html:16 #: templates/email/part_event_notification.html:17 msgid "Total Stock" msgstr "Total lagerbeholdning" -#: part/serializers.py:991 +#: part/serializers.py:876 msgid "Unallocated Stock" msgstr "" -#: part/serializers.py:999 +#: part/serializers.py:884 msgid "Variant Stock" msgstr "" -#: part/serializers.py:1054 +#: part/serializers.py:943 msgid "Duplicate Part" msgstr "Dupliser del" -#: part/serializers.py:1055 +#: part/serializers.py:944 msgid "Copy initial data from another Part" msgstr "Kopier innledende data fra en annen del" -#: part/serializers.py:1061 +#: part/serializers.py:950 msgid "Initial Stock" msgstr "Innledende lagerbeholdning" -#: part/serializers.py:1062 +#: part/serializers.py:951 msgid "Create Part with initial stock quantity" msgstr "Lag en del med innledende lagermengde" -#: part/serializers.py:1068 +#: part/serializers.py:957 msgid "Supplier Information" msgstr "Leverandøropplysninger" -#: part/serializers.py:1069 +#: part/serializers.py:958 msgid "Add initial supplier information for this part" msgstr "Legg til innledende leverandørinformasjon for denne delen" -#: part/serializers.py:1077 +#: part/serializers.py:966 msgid "Copy Category Parameters" msgstr "Kopier kategoriparametre" -#: part/serializers.py:1078 +#: part/serializers.py:967 msgid "Copy parameter templates from selected part category" msgstr "Kopier parametermaler fra valgt delkategori" -#: part/serializers.py:1083 +#: part/serializers.py:972 msgid "Existing Image" msgstr "Eksisterende bilde" -#: part/serializers.py:1084 +#: part/serializers.py:973 msgid "Filename of an existing part image" msgstr "Filnavn for et eksisterende del-bilde" -#: part/serializers.py:1101 +#: part/serializers.py:990 msgid "Image file does not exist" msgstr "Bildefilen finnes ikke" -#: part/serializers.py:1269 +#: part/serializers.py:1134 msgid "Validate entire Bill of Materials" msgstr "Godkjenn hele Stykklisten" -#: part/serializers.py:1303 part/serializers.py:1769 +#: part/serializers.py:1168 part/serializers.py:1634 msgid "Can Build" msgstr "Kan Produsere" -#: part/serializers.py:1320 +#: part/serializers.py:1185 msgid "Required for Build Orders" msgstr "" -#: part/serializers.py:1325 +#: part/serializers.py:1190 msgid "Allocated to Build Orders" msgstr "" -#: part/serializers.py:1332 +#: part/serializers.py:1197 msgid "Required for Sales Orders" msgstr "" -#: part/serializers.py:1336 +#: part/serializers.py:1201 msgid "Allocated to Sales Orders" msgstr "" -#: part/serializers.py:1475 +#: part/serializers.py:1340 msgid "Minimum Price" msgstr "Minstepris" -#: part/serializers.py:1476 +#: part/serializers.py:1341 msgid "Override calculated value for minimum price" msgstr "Overstyr beregnet verdi for minimumspris" -#: part/serializers.py:1483 +#: part/serializers.py:1348 msgid "Minimum price currency" msgstr "Valuta for minstepris" -#: part/serializers.py:1490 +#: part/serializers.py:1355 msgid "Maximum Price" msgstr "Makspris" -#: part/serializers.py:1491 +#: part/serializers.py:1356 msgid "Override calculated value for maximum price" msgstr "Overstyr beregnet verdi for maksimal pris" -#: part/serializers.py:1498 +#: part/serializers.py:1363 msgid "Maximum price currency" msgstr "Valuta for maksimal pris" -#: part/serializers.py:1527 +#: part/serializers.py:1392 msgid "Update" msgstr "Oppdater" -#: part/serializers.py:1528 +#: part/serializers.py:1393 msgid "Update pricing for this part" msgstr "Oppdater priser for denne delen" -#: part/serializers.py:1551 +#: part/serializers.py:1416 #, python-brace-format msgid "Could not convert from provided currencies to {default_currency}" msgstr "Kan ikke konvertere fra gitte valutaer til {default_currency}" -#: part/serializers.py:1558 +#: part/serializers.py:1423 msgid "Minimum price must not be greater than maximum price" msgstr "Minsteprisen kan ikke være større enn maksimal pris" -#: part/serializers.py:1561 +#: part/serializers.py:1426 msgid "Maximum price must not be less than minimum price" msgstr "Maksimal pris kan ikke være mindre enn minstepris" -#: part/serializers.py:1715 +#: part/serializers.py:1580 msgid "Select the parent assembly" msgstr "" -#: part/serializers.py:1735 +#: part/serializers.py:1600 msgid "Select the component part" msgstr "" -#: part/serializers.py:1929 +#: part/serializers.py:1802 msgid "Select part to copy BOM from" msgstr "Velg del å kopiere BOM fra" -#: part/serializers.py:1937 +#: part/serializers.py:1810 msgid "Remove Existing Data" msgstr "Fjern eksisterende data" -#: part/serializers.py:1938 +#: part/serializers.py:1811 msgid "Remove existing BOM items before copying" msgstr "Fjern eksisterende BOM-artikler før kopiering" -#: part/serializers.py:1943 +#: part/serializers.py:1816 msgid "Include Inherited" msgstr "Inkluder arvede" -#: part/serializers.py:1944 +#: part/serializers.py:1817 msgid "Include BOM items which are inherited from templated parts" msgstr "Inkluder BOM-artikler som er arvet fra maldeler" -#: part/serializers.py:1949 +#: part/serializers.py:1822 msgid "Skip Invalid Rows" msgstr "Hopp over ugyldige rader" -#: part/serializers.py:1950 +#: part/serializers.py:1823 msgid "Enable this option to skip invalid rows" msgstr "Aktiver dette alternativet for å hoppe over ugyldige rader" -#: part/serializers.py:1955 +#: part/serializers.py:1828 msgid "Copy Substitute Parts" msgstr "Kopier erstatningsdeler" -#: part/serializers.py:1956 +#: part/serializers.py:1829 msgid "Copy substitute parts when duplicate BOM items" msgstr "Kopier erstatningsdeler når BOM-elementer dupliseres" @@ -6927,7 +6974,7 @@ msgstr "Gir innebygd støtte for strekkoder" #: plugin/builtin/events/auto_issue_orders.py:19 #: plugin/builtin/exporter/bom_exporter.py:73 #: plugin/builtin/exporter/inventree_exporter.py:17 -#: plugin/builtin/exporter/part_parameter_exporter.py:36 +#: plugin/builtin/exporter/parameter_exporter.py:32 #: plugin/builtin/exporter/stocktake_exporter.py:47 #: plugin/builtin/integration/core_notifications.py:25 #: plugin/builtin/integration/core_notifications.py:69 @@ -7041,23 +7088,19 @@ msgid "Include total quantity of each part in the BOM" msgstr "" #: plugin/builtin/exporter/bom_exporter.py:35 -#: plugin/builtin/exporter/part_parameter_exporter.py:17 msgid "Stock Data" msgstr "" #: plugin/builtin/exporter/bom_exporter.py:35 -#: plugin/builtin/exporter/part_parameter_exporter.py:17 msgid "Include part stock data" msgstr "" #: plugin/builtin/exporter/bom_exporter.py:39 -#: plugin/builtin/exporter/part_parameter_exporter.py:21 #: plugin/builtin/exporter/stocktake_exporter.py:20 msgid "Pricing Data" msgstr "" #: plugin/builtin/exporter/bom_exporter.py:39 -#: plugin/builtin/exporter/part_parameter_exporter.py:21 #: plugin/builtin/exporter/stocktake_exporter.py:20 msgid "Include part pricing data" msgstr "" @@ -7144,12 +7187,20 @@ msgstr "" msgid "Provides support for exporting data from InvenTree" msgstr "" -#: plugin/builtin/exporter/part_parameter_exporter.py:33 -msgid "Part Parameter Exporter" +#: plugin/builtin/exporter/parameter_exporter.py:16 +msgid "Exclude Inactive" msgstr "" -#: plugin/builtin/exporter/part_parameter_exporter.py:34 -msgid "Exporter for part parameter data" +#: plugin/builtin/exporter/parameter_exporter.py:17 +msgid "Exclude parameters which are inactive" +msgstr "" + +#: plugin/builtin/exporter/parameter_exporter.py:29 +msgid "Parameter Exporter" +msgstr "" + +#: plugin/builtin/exporter/parameter_exporter.py:30 +msgid "Exporter for model parameter data" msgstr "" #: plugin/builtin/exporter/stocktake_exporter.py:25 @@ -8079,19 +8130,19 @@ msgstr "Ingen resultat (obligatorisk)" msgid "No result" msgstr "Ingen resultat" -#: report/templatetags/report.py:167 +#: report/templatetags/report.py:169 msgid "Asset file does not exist" msgstr "Asset-filen eksisterer ikke" -#: report/templatetags/report.py:224 report/templatetags/report.py:300 +#: report/templatetags/report.py:226 report/templatetags/report.py:302 msgid "Image file not found" msgstr "Bildefil ikke funnet" -#: report/templatetags/report.py:325 +#: report/templatetags/report.py:327 msgid "part_image tag requires a Part instance" msgstr "part_image-taggen krever en Part-instans" -#: report/templatetags/report.py:362 +#: report/templatetags/report.py:383 msgid "company_image tag requires a Company instance" msgstr "company_image-taggen krever en Company-instans" @@ -8455,115 +8506,119 @@ msgstr "" msgid "Quantity does not match serial numbers" msgstr "Antallet stemmer ikke overens med serienumrene" -#: stock/models.py:2012 stock/models.py:2917 +#: stock/models.py:1912 +msgid "Cannot assign stock to structural location" +msgstr "" + +#: stock/models.py:2029 stock/models.py:2934 msgid "Test template does not exist" msgstr "" -#: stock/models.py:2030 +#: stock/models.py:2047 msgid "Stock item has been assigned to a sales order" msgstr "Lagervare har blitt tildelt en salgsordre" -#: stock/models.py:2034 +#: stock/models.py:2051 msgid "Stock item is installed in another item" msgstr "Lagervare er montert i en annen artikkel" -#: stock/models.py:2037 +#: stock/models.py:2054 msgid "Stock item contains other items" msgstr "Lagervare inneholder andre artikler" -#: stock/models.py:2040 +#: stock/models.py:2057 msgid "Stock item has been assigned to a customer" msgstr "Lagervare har blitt tildelt til en kunde" -#: stock/models.py:2043 stock/models.py:2226 +#: stock/models.py:2060 stock/models.py:2243 msgid "Stock item is currently in production" msgstr "Lagervare er for tiden i produksjon" -#: stock/models.py:2046 +#: stock/models.py:2063 msgid "Serialized stock cannot be merged" msgstr "Serialisert lagerbeholdning kan ikke slås sammen" -#: stock/models.py:2053 stock/serializers.py:1462 +#: stock/models.py:2070 stock/serializers.py:1462 msgid "Duplicate stock items" msgstr "Duplisert lagervare" -#: stock/models.py:2057 +#: stock/models.py:2074 msgid "Stock items must refer to the same part" msgstr "Lagervarer må referere til samme del" -#: stock/models.py:2065 +#: stock/models.py:2082 msgid "Stock items must refer to the same supplier part" msgstr "Lagervarer må referere til samme leverandørdel" -#: stock/models.py:2070 +#: stock/models.py:2087 msgid "Stock status codes must match" msgstr "Lagerstatuskoder må være like" -#: stock/models.py:2349 +#: stock/models.py:2366 msgid "StockItem cannot be moved as it is not in stock" msgstr "Lagervare kan ikke flyttes fordi den ikke er på lager" -#: stock/models.py:2818 +#: stock/models.py:2835 msgid "Stock Item Tracking" msgstr "" -#: stock/models.py:2849 +#: stock/models.py:2866 msgid "Entry notes" msgstr "Oppføringsnotater" -#: stock/models.py:2889 +#: stock/models.py:2906 msgid "Stock Item Test Result" msgstr "" -#: stock/models.py:2920 +#: stock/models.py:2937 msgid "Value must be provided for this test" msgstr "Verdi må angis for denne testen" -#: stock/models.py:2924 +#: stock/models.py:2941 msgid "Attachment must be uploaded for this test" msgstr "Vedlegg må lastes opp for denne testen" -#: stock/models.py:2929 +#: stock/models.py:2946 msgid "Invalid value for this test" msgstr "" -#: stock/models.py:2953 +#: stock/models.py:2970 msgid "Test result" msgstr "Testresultat" -#: stock/models.py:2960 +#: stock/models.py:2977 msgid "Test output value" msgstr "Testens verdi" -#: stock/models.py:2968 stock/serializers.py:248 +#: stock/models.py:2985 stock/serializers.py:248 msgid "Test result attachment" msgstr "Vedlegg til testresultat" -#: stock/models.py:2972 +#: stock/models.py:2989 msgid "Test notes" msgstr "Testnotater" -#: stock/models.py:2980 +#: stock/models.py:2997 msgid "Test station" msgstr "" -#: stock/models.py:2981 +#: stock/models.py:2998 msgid "The identifier of the test station where the test was performed" msgstr "" -#: stock/models.py:2987 +#: stock/models.py:3004 msgid "Started" msgstr "" -#: stock/models.py:2988 +#: stock/models.py:3005 msgid "The timestamp of the test start" msgstr "" -#: stock/models.py:2994 +#: stock/models.py:3011 msgid "Finished" msgstr "" -#: stock/models.py:2995 +#: stock/models.py:3012 msgid "The timestamp of the test finish" msgstr "" @@ -8677,8 +8732,8 @@ msgstr "" msgid "Quantity must not exceed available stock quantity ({q})" msgstr "Antall kan ikke overstige tilgjengelig lagerbeholdning ({q})" -#: stock/serializers.py:711 stock/serializers.py:1419 stock/serializers.py:1732 -#: stock/serializers.py:1781 +#: stock/serializers.py:711 stock/serializers.py:1419 stock/serializers.py:1740 +#: stock/serializers.py:1789 msgid "Destination stock location" msgstr "Til Lagerplassering" @@ -8834,19 +8889,19 @@ msgstr "" msgid "Stock transaction notes" msgstr "Lager transaksjonsnotater" -#: stock/serializers.py:1787 +#: stock/serializers.py:1795 msgid "Merge into existing stock" msgstr "" -#: stock/serializers.py:1788 +#: stock/serializers.py:1796 msgid "Merge returned items into existing stock items if possible" msgstr "" -#: stock/serializers.py:1831 +#: stock/serializers.py:1839 msgid "Next Serial Number" msgstr "" -#: stock/serializers.py:1837 +#: stock/serializers.py:1845 msgid "Previous Serial Number" msgstr "" @@ -8902,83 +8957,87 @@ msgstr "Lagerbeholdning manuelt lagt til" msgid "Stock manually removed" msgstr "Lagerbeholdning manuelt fjernet" -#: stock/status_codes.py:57 +#: stock/status_codes.py:56 +msgid "Serialized stock items" +msgstr "" + +#: stock/status_codes.py:58 msgid "Returned to stock" msgstr "" -#: stock/status_codes.py:60 +#: stock/status_codes.py:61 msgid "Location changed" msgstr "Posisjon endret" -#: stock/status_codes.py:61 +#: stock/status_codes.py:62 msgid "Stock updated" msgstr "Lagerbeholdning oppdatert" -#: stock/status_codes.py:64 +#: stock/status_codes.py:65 msgid "Installed into assembly" msgstr "Montert i sammenstilling" -#: stock/status_codes.py:65 +#: stock/status_codes.py:66 msgid "Removed from assembly" msgstr "Fjernet fra sammenstilling" -#: stock/status_codes.py:67 +#: stock/status_codes.py:68 msgid "Installed component item" msgstr "Montert komponentartikkel" -#: stock/status_codes.py:68 +#: stock/status_codes.py:69 msgid "Removed component item" msgstr "Fjernet komponentartikkel" -#: stock/status_codes.py:71 +#: stock/status_codes.py:72 msgid "Split from parent item" msgstr "Skill ut fra overordnet artikkel" -#: stock/status_codes.py:72 +#: stock/status_codes.py:73 msgid "Split child item" msgstr "Skill ut fra underartikkel" -#: stock/status_codes.py:75 +#: stock/status_codes.py:76 msgid "Merged stock items" msgstr "Sammenslåtte lagervarer" -#: stock/status_codes.py:78 +#: stock/status_codes.py:79 msgid "Converted to variant" msgstr "Konvertert til variant" -#: stock/status_codes.py:81 +#: stock/status_codes.py:82 msgid "Build order output created" msgstr "Produksjonsartikkel opprettet" -#: stock/status_codes.py:82 +#: stock/status_codes.py:83 msgid "Build order output completed" msgstr "Produksjonsartikkel fullført" -#: stock/status_codes.py:83 +#: stock/status_codes.py:84 msgid "Build order output rejected" msgstr "Produksjonsartikkel avvist" -#: stock/status_codes.py:84 +#: stock/status_codes.py:85 msgid "Consumed by build order" msgstr "Brukt av produksjonsordre" -#: stock/status_codes.py:87 +#: stock/status_codes.py:88 msgid "Shipped against Sales Order" msgstr "Sendt mot salgsordre" -#: stock/status_codes.py:90 +#: stock/status_codes.py:91 msgid "Received against Purchase Order" msgstr "Mottatt mot innkjøpsordre" -#: stock/status_codes.py:93 +#: stock/status_codes.py:94 msgid "Returned against Return Order" msgstr "Returnert mot returordre" -#: stock/status_codes.py:96 +#: stock/status_codes.py:97 msgid "Sent to customer" msgstr "Sendt til kunde" -#: stock/status_codes.py:97 +#: stock/status_codes.py:98 msgid "Returned from customer" msgstr "Returnert av kunde" diff --git a/src/backend/InvenTree/locale/pl/LC_MESSAGES/django.po b/src/backend/InvenTree/locale/pl/LC_MESSAGES/django.po index c354840f3f..806279a514 100644 --- a/src/backend/InvenTree/locale/pl/LC_MESSAGES/django.po +++ b/src/backend/InvenTree/locale/pl/LC_MESSAGES/django.po @@ -2,8 +2,8 @@ msgid "" msgstr "" "Project-Id-Version: inventree\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-11-19 04:55+0000\n" -"PO-Revision-Date: 2025-11-19 04:59\n" +"POT-Creation-Date: 2025-12-07 07:33+0000\n" +"PO-Revision-Date: 2025-12-07 07:36\n" "Last-Translator: \n" "Language-Team: Polish\n" "Language: pl_PL\n" @@ -57,7 +57,7 @@ msgstr "Nie dostarczono danych" msgid "This field must be unique." msgstr "" -#: InvenTree/api.py:775 +#: InvenTree/api.py:803 msgid "User does not have permission to view this model" msgstr "Użytkownik nie ma uprawnień do przeglądania tego modelu" @@ -81,22 +81,22 @@ msgstr "Podany podstawowy adres e-mail jest nieprawidłowy." msgid "The provided email domain is not approved." msgstr "Podany e-mail domeny nie został zatwierdzony." -#: InvenTree/conversion.py:166 +#: InvenTree/conversion.py:240 #, python-brace-format msgid "Invalid unit provided ({unit})" msgstr "Nieprawidłowa jednostka ({unit})" -#: InvenTree/conversion.py:183 +#: InvenTree/conversion.py:257 msgid "No value provided" msgstr "Nie podano wartości" -#: InvenTree/conversion.py:210 +#: InvenTree/conversion.py:284 #, python-brace-format msgid "Could not convert {original} to {unit}" msgstr "Nie udało się przeliczyć {original} na {unit}" -#: InvenTree/conversion.py:212 InvenTree/conversion.py:226 -#: InvenTree/helpers.py:597 order/models.py:720 order/models.py:1015 +#: InvenTree/conversion.py:286 InvenTree/conversion.py:300 +#: InvenTree/helpers.py:597 order/models.py:721 order/models.py:1016 msgid "Invalid quantity provided" msgstr "Podano nieprawidłową ilość" @@ -112,11 +112,11 @@ msgstr "Wprowadź dane" msgid "Invalid decimal value" msgstr "Niepoprawna wartość dziesiętna" -#: InvenTree/fields.py:218 InvenTree/models.py:1067 build/serializers.py:509 -#: build/serializers.py:580 build/serializers.py:1788 company/models.py:857 -#: order/models.py:1780 +#: InvenTree/fields.py:218 InvenTree/models.py:1228 build/serializers.py:517 +#: build/serializers.py:588 build/serializers.py:1796 company/models.py:811 +#: order/models.py:1781 #: report/templates/report/inventree_build_order_report.html:172 -#: stock/models.py:2848 stock/models.py:2972 stock/serializers.py:717 +#: stock/models.py:2865 stock/models.py:2989 stock/serializers.py:717 #: stock/serializers.py:893 stock/serializers.py:1035 stock/serializers.py:1336 #: stock/serializers.py:1425 stock/serializers.py:1624 msgid "Notes" @@ -171,35 +171,35 @@ msgstr "Usuń znaczniki HTML z tej wartości" msgid "Data contains prohibited markdown content" msgstr "Dane zawierają zabronione treści znacznika" -#: InvenTree/helpers_model.py:133 +#: InvenTree/helpers_model.py:134 msgid "Connection error" msgstr "Błąd połączenia" -#: InvenTree/helpers_model.py:138 InvenTree/helpers_model.py:145 +#: InvenTree/helpers_model.py:139 InvenTree/helpers_model.py:146 msgid "Server responded with invalid status code" msgstr "Serwer odpowiedział z nieprawidłowym kodem statusu" -#: InvenTree/helpers_model.py:141 +#: InvenTree/helpers_model.py:142 msgid "Exception occurred" msgstr "Wystąpił wyjątek" -#: InvenTree/helpers_model.py:151 +#: InvenTree/helpers_model.py:152 msgid "Server responded with invalid Content-Length value" msgstr "Serwer odpowiedział z nieprawidłową wartością Content-Length" -#: InvenTree/helpers_model.py:154 +#: InvenTree/helpers_model.py:155 msgid "Image size is too large" msgstr "Rozmiar obrazu jest zbyt duży" -#: InvenTree/helpers_model.py:166 +#: InvenTree/helpers_model.py:167 msgid "Image download exceeded maximum size" msgstr "Przekroczono maksymalny rozmiar pobieranego obrazu" -#: InvenTree/helpers_model.py:171 +#: InvenTree/helpers_model.py:172 msgid "Remote server returned empty response" msgstr "Zdalny serwer zwrócił pustą odpowiedź" -#: InvenTree/helpers_model.py:179 +#: InvenTree/helpers_model.py:180 msgid "Supplied URL is not a valid image file" msgstr "Podany adres URL nie jest poprawnym plikiem obrazu" @@ -207,7 +207,7 @@ msgstr "Podany adres URL nie jest poprawnym plikiem obrazu" msgid "Log in to the app" msgstr "Logowanie do aplikacji" -#: InvenTree/magic_login.py:41 company/models.py:172 users/serializers.py:198 +#: InvenTree/magic_login.py:41 company/models.py:173 users/serializers.py:198 msgid "Email" msgstr "Adres E-Mail" @@ -215,160 +215,176 @@ msgstr "Adres E-Mail" msgid "You must enable two-factor authentication before doing anything else." msgstr "Musisz włączyć uwierzytelnianie dwuskładnikowe przed wykonaniem czegokolwiek innego." -#: InvenTree/models.py:111 +#: InvenTree/models.py:114 msgid "Error running plugin validation" msgstr "Błąd podczas walidacji wtyczki" -#: InvenTree/models.py:192 +#: InvenTree/models.py:195 msgid "Metadata must be a python dict object" msgstr "Metadane muszą być obiektem typu dict w Python" -#: InvenTree/models.py:198 +#: InvenTree/models.py:201 msgid "Plugin Metadata" msgstr "Wtyczka Metadane" -#: InvenTree/models.py:199 +#: InvenTree/models.py:202 msgid "JSON metadata field, for use by external plugins" msgstr "Pole metadanych JSON, do użycia przez wtyczki zewnętrzne" -#: InvenTree/models.py:382 +#: InvenTree/models.py:385 msgid "Improperly formatted pattern" msgstr "Nieprawidłowo sformatowany wzór" -#: InvenTree/models.py:389 +#: InvenTree/models.py:392 msgid "Unknown format key specified" msgstr "Określono nieznany format klucza" -#: InvenTree/models.py:395 +#: InvenTree/models.py:398 msgid "Missing required format key" msgstr "Brak wymaganego formatu klucza" -#: InvenTree/models.py:406 +#: InvenTree/models.py:409 msgid "Reference field cannot be empty" msgstr "Pole odniesienia nie może być puste" -#: InvenTree/models.py:414 +#: InvenTree/models.py:417 msgid "Reference must match required pattern" msgstr "Odniesienie musi być zgodne z wymaganym wzorem" -#: InvenTree/models.py:445 +#: InvenTree/models.py:448 msgid "Reference number is too large" msgstr "Numer odniesienia jest zbyt duży" -#: InvenTree/models.py:743 +#: InvenTree/models.py:896 msgid "Invalid choice" msgstr "Błędny wybór" -#: InvenTree/models.py:856 common/models.py:1410 common/models.py:1837 -#: common/models.py:2096 common/models.py:2221 common/serializers.py:535 -#: company/models.py:615 generic/states/serializers.py:20 machine/models.py:25 -#: part/models.py:1039 part/models.py:3850 plugin/models.py:54 +#: InvenTree/models.py:1017 common/models.py:1414 common/models.py:1841 +#: common/models.py:2102 common/models.py:2227 common/models.py:2494 +#: common/serializers.py:539 generic/states/serializers.py:20 +#: machine/models.py:25 part/models.py:1127 plugin/models.py:54 #: report/models.py:216 stock/models.py:84 msgid "Name" msgstr "Nazwa" -#: InvenTree/models.py:862 build/models.py:252 common/models.py:171 -#: common/models.py:2228 common/models.py:2341 company/models.py:543 -#: company/models.py:848 order/models.py:442 order/models.py:1825 -#: part/models.py:1062 part/models.py:3865 report/models.py:222 +#: InvenTree/models.py:1023 build/models.py:253 common/models.py:175 +#: common/models.py:2234 common/models.py:2347 common/models.py:2509 +#: company/models.py:545 company/models.py:802 order/models.py:443 +#: order/models.py:1826 part/models.py:1150 report/models.py:222 #: report/models.py:815 report/models.py:841 #: report/templates/report/inventree_build_order_report.html:117 #: stock/models.py:90 msgid "Description" msgstr "Opis" -#: InvenTree/models.py:863 stock/models.py:91 +#: InvenTree/models.py:1024 stock/models.py:91 msgid "Description (optional)" msgstr "Opis (opcjonalny)" -#: InvenTree/models.py:878 common/models.py:2394 +#: InvenTree/models.py:1039 common/models.py:2815 msgid "Path" msgstr "Ścieżka" -#: InvenTree/models.py:983 +#: InvenTree/models.py:1144 msgid "Duplicate names cannot exist under the same parent" msgstr "Duplikaty nazw nie mogą istnieć pod tym samym rodzicem" -#: InvenTree/models.py:1067 +#: InvenTree/models.py:1228 msgid "Markdown notes (optional)" msgstr "Notatki Markdown (opcjonalne)" -#: InvenTree/models.py:1098 +#: InvenTree/models.py:1259 msgid "Barcode Data" msgstr "Dane kodu kreskowego" -#: InvenTree/models.py:1099 +#: InvenTree/models.py:1260 msgid "Third party barcode data" msgstr "Dane kodu kreskowego stron trzecich" -#: InvenTree/models.py:1105 +#: InvenTree/models.py:1266 msgid "Barcode Hash" msgstr "Hasz kodu kreskowego" -#: InvenTree/models.py:1106 +#: InvenTree/models.py:1267 msgid "Unique hash of barcode data" msgstr "Unikalny hasz danych kodu kreskowego" -#: InvenTree/models.py:1187 +#: InvenTree/models.py:1348 msgid "Existing barcode found" msgstr "Znaleziono istniejący kod kreskowy" -#: InvenTree/models.py:1269 +#: InvenTree/models.py:1430 msgid "Task Failure" msgstr "Niepowodzenie zadania" -#: InvenTree/models.py:1270 +#: InvenTree/models.py:1431 #, python-brace-format msgid "Background worker task '{f}' failed after {n} attempts" msgstr "Zadanie pracownika w tle '{f}' nie powiodło się po próbach {n}" -#: InvenTree/models.py:1297 +#: InvenTree/models.py:1458 msgid "Server Error" msgstr "Błąd serwera" -#: InvenTree/models.py:1298 +#: InvenTree/models.py:1459 msgid "An error has been logged by the server." msgstr "Błąd został zapisany w logach serwera." -#: InvenTree/models.py:1340 common/models.py:1748 +#: InvenTree/models.py:1501 common/models.py:1752 #: report/templates/report/inventree_bill_of_materials_report.html:126 #: report/templates/report/inventree_bill_of_materials_report.html:148 #: report/templates/report/inventree_return_order_report.html:35 msgid "Image" msgstr "Obraz" -#: InvenTree/serializers.py:253 part/models.py:4571 +#: InvenTree/serializers.py:255 part/models.py:4196 msgid "Must be a valid number" msgstr "Numer musi być prawidłowy" -#: InvenTree/serializers.py:295 company/models.py:214 part/models.py:3285 +#: InvenTree/serializers.py:297 company/models.py:215 part/models.py:3349 msgid "Currency" msgstr "Waluta" -#: InvenTree/serializers.py:298 part/serializers.py:1385 +#: InvenTree/serializers.py:300 part/serializers.py:1250 msgid "Select currency from available options" msgstr "Wybierz walutę z dostępnych opcji" -#: InvenTree/serializers.py:653 +#: InvenTree/serializers.py:654 +msgid "This field may not be null." +msgstr "" + +#: InvenTree/serializers.py:660 msgid "Invalid value" msgstr "Nieprawidłowa wartość" -#: InvenTree/serializers.py:690 +#: InvenTree/serializers.py:697 msgid "Remote Image" msgstr "Obrazek zewnętrzny" -#: InvenTree/serializers.py:691 +#: InvenTree/serializers.py:698 msgid "URL of remote image file" msgstr "Adres URL zdalnego pliku obrazu" -#: InvenTree/serializers.py:709 +#: InvenTree/serializers.py:716 msgid "Downloading images from remote URL is not enabled" msgstr "Pobieranie obrazów ze zdalnego URL nie jest włączone" -#: InvenTree/serializers.py:716 +#: InvenTree/serializers.py:723 msgid "Failed to download image from remote URL" msgstr "Nie udało się pobrać obrazu ze zdalnego adresu URL" +#: InvenTree/serializers.py:806 +msgid "Invalid content type format" +msgstr "" + +#: InvenTree/serializers.py:809 +msgid "Content type not found" +msgstr "" + +#: InvenTree/serializers.py:815 +msgid "Content type does not match required mixin class" +msgstr "" + #: InvenTree/setting/locales.py:20 msgid "Arabic" msgstr "Arabski" @@ -537,30 +553,30 @@ msgstr "Niewłaściwa jednostka fizyczna" msgid "Not a valid currency code" msgstr "Nieprawidłowy kod waluty" -#: build/api.py:54 order/api.py:111 order/api.py:270 order/api.py:1373 -#: order/serializers.py:132 +#: build/api.py:54 order/api.py:116 order/api.py:275 order/api.py:1378 +#: order/serializers.py:133 msgid "Order Status" msgstr "Status zamówienia" -#: build/api.py:80 build/models.py:264 +#: build/api.py:80 build/models.py:265 msgid "Parent Build" msgstr "Budowa nadrzędna" -#: build/api.py:84 build/api.py:831 order/api.py:547 order/api.py:770 -#: order/api.py:1174 order/api.py:1449 stock/api.py:573 +#: build/api.py:84 build/api.py:837 order/api.py:553 order/api.py:776 +#: order/api.py:1179 order/api.py:1454 stock/api.py:573 msgid "Include Variants" msgstr "Obejmuje warianty" -#: build/api.py:100 build/api.py:466 build/api.py:845 build/models.py:270 -#: build/serializers.py:1225 build/serializers.py:1356 -#: build/serializers.py:1427 company/models.py:1067 company/serializers.py:445 -#: order/api.py:298 order/api.py:302 order/api.py:929 order/api.py:1187 -#: order/api.py:1190 order/models.py:1941 order/models.py:2108 -#: order/models.py:2109 part/api.py:1233 part/api.py:1236 part/api.py:1302 -#: part/api.py:1589 part/models.py:472 part/models.py:3296 part/models.py:3439 -#: part/models.py:3497 part/models.py:3518 part/models.py:3540 -#: part/models.py:3679 part/models.py:4046 part/models.py:4368 -#: part/models.py:4787 part/serializers.py:1928 +#: build/api.py:100 build/api.py:472 build/api.py:851 build/models.py:271 +#: build/serializers.py:1233 build/serializers.py:1364 +#: build/serializers.py:1435 company/models.py:1021 company/serializers.py:490 +#: order/api.py:303 order/api.py:307 order/api.py:934 order/api.py:1192 +#: order/api.py:1195 order/models.py:1942 order/models.py:2109 +#: order/models.py:2110 part/api.py:1160 part/api.py:1163 part/api.py:1314 +#: part/models.py:550 part/models.py:3360 part/models.py:3503 +#: part/models.py:3561 part/models.py:3582 part/models.py:3604 +#: part/models.py:3743 part/models.py:3993 part/models.py:4412 +#: part/serializers.py:1801 #: report/templates/report/inventree_bill_of_materials_report.html:110 #: report/templates/report/inventree_bill_of_materials_report.html:137 #: report/templates/report/inventree_build_order_report.html:109 @@ -580,9 +596,9 @@ msgstr "Obejmuje warianty" msgid "Part" msgstr "Komponent" -#: build/api.py:120 build/api.py:123 build/serializers.py:1438 part/api.py:980 -#: part/api.py:1316 part/api.py:1600 part/models.py:1080 part/models.py:3568 -#: part/models.py:4162 part/serializers.py:1752 stock/api.py:869 +#: build/api.py:120 build/api.py:123 build/serializers.py:1446 part/api.py:975 +#: part/api.py:1325 part/models.py:435 part/models.py:1168 part/models.py:3632 +#: part/serializers.py:1617 stock/api.py:869 msgid "Category" msgstr "Kategoria" @@ -590,7 +606,7 @@ msgstr "Kategoria" msgid "Ancestor Build" msgstr "Budowa poprzednika" -#: build/api.py:152 order/api.py:129 +#: build/api.py:152 order/api.py:134 msgid "Assigned to me" msgstr "Przypisane do mnie" @@ -638,134 +654,134 @@ msgstr "Zakończone przed" msgid "Completed after" msgstr "Zakończone po" -#: build/api.py:249 order/api.py:226 +#: build/api.py:249 order/api.py:231 msgid "Min Date" msgstr "Minimalna data" -#: build/api.py:272 order/api.py:245 +#: build/api.py:272 order/api.py:250 msgid "Max Date" msgstr "Maksymalna data" -#: build/api.py:297 build/api.py:300 part/api.py:217 stock/api.py:961 +#: build/api.py:297 build/api.py:300 part/api.py:212 stock/api.py:961 msgid "Exclude Tree" msgstr "Wyklucz drzewo" -#: build/api.py:405 +#: build/api.py:411 msgid "Build must be cancelled before it can be deleted" msgstr "Kompilacja musi zostać anulowana, zanim będzie mogła zostać usunięta" -#: build/api.py:449 build/serializers.py:1374 part/models.py:4402 +#: build/api.py:455 build/serializers.py:1382 part/models.py:4027 msgid "Consumable" msgstr "Materiał eksploatacyjny" -#: build/api.py:452 build/serializers.py:1377 part/models.py:4396 +#: build/api.py:458 build/serializers.py:1385 part/models.py:4021 msgid "Optional" msgstr "Opcjonalne" -#: build/api.py:455 build/serializers.py:1415 common/setting/system.py:456 -#: part/models.py:1202 part/serializers.py:1714 part/serializers.py:1725 +#: build/api.py:461 build/serializers.py:1423 common/setting/system.py:456 +#: part/models.py:1290 part/serializers.py:1579 part/serializers.py:1590 #: stock/api.py:639 msgid "Assembly" msgstr "Złożenie" -#: build/api.py:458 +#: build/api.py:464 msgid "Tracked" msgstr "Śledzony" -#: build/api.py:461 build/serializers.py:1380 part/models.py:1220 +#: build/api.py:467 build/serializers.py:1388 part/models.py:1308 msgid "Testable" msgstr "Testowalne" -#: build/api.py:471 order/api.py:993 order/api.py:1363 +#: build/api.py:477 order/api.py:998 order/api.py:1368 msgid "Order Outstanding" msgstr "Zaległe zamówienie" -#: build/api.py:481 build/serializers.py:1464 order/api.py:952 +#: build/api.py:487 build/serializers.py:1472 order/api.py:957 msgid "Allocated" msgstr "Przydzielono" -#: build/api.py:490 build/models.py:1672 build/serializers.py:1393 +#: build/api.py:496 build/models.py:1673 build/serializers.py:1401 msgid "Consumed" msgstr "" -#: build/api.py:499 company/models.py:912 company/serializers.py:440 +#: build/api.py:505 company/models.py:866 company/serializers.py:467 #: templates/email/build_order_required_stock.html:19 #: templates/email/low_stock_notification.html:17 #: templates/email/part_event_notification.html:18 msgid "Available" msgstr "Dostępne" -#: build/api.py:523 build/serializers.py:1466 company/serializers.py:437 -#: order/serializers.py:1281 part/serializers.py:959 part/serializers.py:1306 -#: part/serializers.py:1761 +#: build/api.py:529 build/serializers.py:1474 company/serializers.py:464 +#: order/serializers.py:1295 part/serializers.py:844 part/serializers.py:1171 +#: part/serializers.py:1626 msgid "On Order" msgstr "W Zamówieniu" -#: build/api.py:868 build/models.py:117 order/models.py:1974 +#: build/api.py:874 build/models.py:118 order/models.py:1975 #: report/templates/report/inventree_build_order_report.html:105 #: stock/serializers.py:93 templates/email/build_order_completed.html:16 #: templates/email/overdue_build_order.html:15 msgid "Build Order" msgstr "Zlecenie Budowy" -#: build/api.py:882 build/api.py:886 build/serializers.py:372 -#: build/serializers.py:497 build/serializers.py:567 build/serializers.py:1251 -#: build/serializers.py:1256 order/api.py:1234 order/api.py:1239 -#: order/serializers.py:833 order/serializers.py:973 order/serializers.py:2042 +#: build/api.py:888 build/api.py:892 build/serializers.py:380 +#: build/serializers.py:505 build/serializers.py:575 build/serializers.py:1259 +#: build/serializers.py:1264 order/api.py:1239 order/api.py:1244 +#: order/serializers.py:844 order/serializers.py:984 order/serializers.py:2059 #: stock/api.py:987 stock/serializers.py:111 stock/serializers.py:601 #: stock/serializers.py:710 stock/serializers.py:888 stock/serializers.py:1418 -#: stock/serializers.py:1731 stock/serializers.py:1780 +#: stock/serializers.py:1739 stock/serializers.py:1788 #: templates/email/stale_stock_notification.html:18 users/models.py:549 msgid "Location" msgstr "Lokalizacja" -#: build/api.py:894 +#: build/api.py:900 msgid "Output" msgstr "Wyjście" -#: build/api.py:896 +#: build/api.py:902 msgid "Filter by output stock item ID. Use 'null' to find uninstalled build items." msgstr "" -#: build/models.py:118 users/ruleset.py:31 +#: build/models.py:119 users/ruleset.py:31 msgid "Build Orders" msgstr "Zlecenia budowy" -#: build/models.py:168 +#: build/models.py:169 msgid "Assembly BOM has not been validated" msgstr "Zbiór BOM nie został zatwierdzony" -#: build/models.py:175 +#: build/models.py:176 msgid "Build order cannot be created for an inactive part" msgstr "Zlecenie budowy nie może być utworzone dla nieaktywnej części" -#: build/models.py:182 +#: build/models.py:183 msgid "Build order cannot be created for an unlocked part" msgstr "Zlecenie budowy nie może zostać utworzone dla odblokowanej części" -#: build/models.py:200 +#: build/models.py:201 msgid "Build orders can only be externally fulfilled for purchaseable parts" msgstr "" -#: build/models.py:207 order/models.py:369 +#: build/models.py:208 order/models.py:370 msgid "Responsible user or group must be specified" msgstr "Odpowiedzialny użytkownik lub grupa muszą być określone" -#: build/models.py:212 +#: build/models.py:213 msgid "Build order part cannot be changed" msgstr "Nie można zmienić elementu kompletacji" -#: build/models.py:217 order/models.py:382 +#: build/models.py:218 order/models.py:383 msgid "Target date must be after start date" msgstr "Data docelowa musi być po dacie rozpoczęcia" -#: build/models.py:245 +#: build/models.py:246 msgid "Build Order Reference" msgstr "Odwołanie do zamówienia wykonania" -#: build/models.py:246 build/serializers.py:1371 order/models.py:614 -#: order/models.py:1311 order/models.py:1773 order/models.py:2712 -#: part/models.py:4442 +#: build/models.py:247 build/serializers.py:1379 order/models.py:615 +#: order/models.py:1312 order/models.py:1774 order/models.py:2713 +#: part/models.py:4067 #: report/templates/report/inventree_bill_of_materials_report.html:139 #: report/templates/report/inventree_purchase_order_report.html:35 #: report/templates/report/inventree_return_order_report.html:26 @@ -773,230 +789,230 @@ msgstr "Odwołanie do zamówienia wykonania" msgid "Reference" msgstr "Referencja" -#: build/models.py:255 +#: build/models.py:256 msgid "Brief description of the build (optional)" msgstr "Krótki opis produkcji (opcjonalny)" -#: build/models.py:265 +#: build/models.py:266 msgid "BuildOrder to which this build is allocated" msgstr "Zamówienie budowy, do którego budowa jest przypisana" -#: build/models.py:274 +#: build/models.py:275 msgid "Select part to build" msgstr "Wybierz część do budowy" -#: build/models.py:279 +#: build/models.py:280 msgid "Sales Order Reference" msgstr "Odwołanie do zamówienia sprzedaży" -#: build/models.py:284 +#: build/models.py:285 msgid "SalesOrder to which this build is allocated" msgstr "Zamówienie sprzedaży, do którego budowa jest przypisana" -#: build/models.py:289 build/serializers.py:1097 +#: build/models.py:290 build/serializers.py:1105 msgid "Source Location" msgstr "Lokalizacja źródła" -#: build/models.py:295 +#: build/models.py:296 msgid "Select location to take stock from for this build (leave blank to take from any stock location)" msgstr "Wybierz lokalizację, z której pobrać element do budowy (pozostaw puste, aby wziąć z dowolnej lokalizacji)" -#: build/models.py:301 +#: build/models.py:302 msgid "External Build" msgstr "Budowa zewnętrzna" -#: build/models.py:302 +#: build/models.py:303 msgid "This build order is fulfilled externally" msgstr "" -#: build/models.py:307 +#: build/models.py:308 msgid "Destination Location" msgstr "Lokalizacja docelowa" -#: build/models.py:312 +#: build/models.py:313 msgid "Select location where the completed items will be stored" msgstr "Wybierz lokalizację, w której będą przechowywane ukończone elementy" -#: build/models.py:316 +#: build/models.py:317 msgid "Build Quantity" msgstr "Ilość do stworzenia" -#: build/models.py:319 +#: build/models.py:320 msgid "Number of stock items to build" msgstr "Ilość przedmiotów do zbudowania" -#: build/models.py:323 +#: build/models.py:324 msgid "Completed items" msgstr "Ukończone elementy" -#: build/models.py:325 +#: build/models.py:326 msgid "Number of stock items which have been completed" msgstr "Ilość produktów magazynowych które zostały ukończone" -#: build/models.py:329 +#: build/models.py:330 msgid "Build Status" msgstr "Status budowania" -#: build/models.py:334 +#: build/models.py:335 msgid "Build status code" msgstr "Kod statusu budowania" -#: build/models.py:343 build/serializers.py:359 order/serializers.py:849 +#: build/models.py:344 build/serializers.py:367 order/serializers.py:860 #: stock/models.py:1100 stock/serializers.py:85 stock/serializers.py:1591 msgid "Batch Code" msgstr "Kod partii" -#: build/models.py:347 build/serializers.py:360 +#: build/models.py:348 build/serializers.py:368 msgid "Batch code for this build output" msgstr "Kod partii dla wyjścia budowy" -#: build/models.py:351 order/models.py:479 order/serializers.py:186 -#: part/models.py:1283 +#: build/models.py:352 order/models.py:480 order/serializers.py:193 +#: part/models.py:1371 msgid "Creation Date" msgstr "Data utworzenia" -#: build/models.py:357 +#: build/models.py:358 msgid "Build start date" msgstr "Data rozpoczęcia budowy" -#: build/models.py:358 +#: build/models.py:359 msgid "Scheduled start date for this build order" msgstr "Zaplanowana data rozpoczęcia dla tego zamówienia budowy" -#: build/models.py:364 +#: build/models.py:365 msgid "Target completion date" msgstr "Docelowy termin zakończenia" -#: build/models.py:366 +#: build/models.py:367 msgid "Target date for build completion. Build will be overdue after this date." msgstr "Docelowa data zakończenia kompilacji. Po tej dacie kompilacja będzie zaległa." -#: build/models.py:371 order/models.py:667 order/models.py:2751 +#: build/models.py:372 order/models.py:668 order/models.py:2752 msgid "Completion Date" msgstr "Data zakończenia" -#: build/models.py:379 +#: build/models.py:380 msgid "completed by" msgstr "zrealizowane przez" -#: build/models.py:388 +#: build/models.py:389 msgid "Issued by" msgstr "Wydany przez" -#: build/models.py:389 +#: build/models.py:390 msgid "User who issued this build order" msgstr "Użytkownik, który wydał to zamówienie" -#: build/models.py:398 common/models.py:180 order/api.py:179 -#: order/models.py:504 part/models.py:1300 +#: build/models.py:399 common/models.py:184 order/api.py:184 +#: order/models.py:505 part/models.py:1388 #: report/templates/report/inventree_build_order_report.html:158 msgid "Responsible" msgstr "Odpowiedzialny" -#: build/models.py:399 +#: build/models.py:400 msgid "User or group responsible for this build order" msgstr "Użytkownik lub grupa odpowiedzialna za te zlecenie produkcji" -#: build/models.py:404 stock/models.py:1093 +#: build/models.py:405 stock/models.py:1093 msgid "External Link" msgstr "Link Zewnętrzny" -#: build/models.py:406 common/models.py:1984 part/models.py:1114 +#: build/models.py:407 common/models.py:1990 part/models.py:1202 #: stock/models.py:1095 msgid "Link to external URL" msgstr "Link do zewnętrznego adresu URL" -#: build/models.py:411 +#: build/models.py:412 msgid "Build Priority" msgstr "Priorytet budowy" -#: build/models.py:414 +#: build/models.py:415 msgid "Priority of this build order" msgstr "Priorytet tego zamówienia produkcji" -#: build/models.py:422 common/models.py:150 common/models.py:164 -#: order/api.py:165 order/models.py:451 order/models.py:1805 +#: build/models.py:423 common/models.py:154 common/models.py:168 +#: order/api.py:170 order/models.py:452 order/models.py:1806 msgid "Project Code" msgstr "Kod projektu" -#: build/models.py:423 +#: build/models.py:424 msgid "Project code for this build order" msgstr "Kod projektu dla tego zlecenia produkcji" -#: build/models.py:676 +#: build/models.py:677 msgid "Cannot complete build order with open child builds" msgstr "" -#: build/models.py:681 +#: build/models.py:682 msgid "Cannot complete build order with incomplete outputs" msgstr "" -#: build/models.py:700 build/models.py:830 +#: build/models.py:701 build/models.py:831 msgid "Failed to offload task to complete build allocations" msgstr "Nie udało się wyładować zadania, aby ukończyć alokację budowli" -#: build/models.py:723 +#: build/models.py:724 #, python-brace-format msgid "Build order {build} has been completed" msgstr "Kolejność kompilacji {build} została zakończona" -#: build/models.py:729 +#: build/models.py:730 msgid "A build order has been completed" msgstr "Kolejność kompilacji została zakończona" -#: build/models.py:911 build/serializers.py:407 +#: build/models.py:912 build/serializers.py:415 msgid "Serial numbers must be provided for trackable parts" msgstr "Należy podać numery seryjne dla lokalizowania części" -#: build/models.py:1042 build/models.py:1129 +#: build/models.py:1043 build/models.py:1130 msgid "No build output specified" msgstr "Nie określono danych wyjściowych budowy" -#: build/models.py:1045 +#: build/models.py:1046 msgid "Build output is already completed" msgstr "Budowanie wyjścia jest już ukończone" -#: build/models.py:1048 +#: build/models.py:1049 msgid "Build output does not match Build Order" msgstr "Skompilowane dane wyjściowe nie pasują do kolejności kompilacji" -#: build/models.py:1136 build/models.py:1234 build/serializers.py:285 -#: build/serializers.py:335 build/serializers.py:965 build/serializers.py:1739 -#: order/models.py:717 order/serializers.py:658 order/serializers.py:844 -#: part/serializers.py:1708 stock/models.py:940 stock/models.py:1430 +#: build/models.py:1137 build/models.py:1235 build/serializers.py:293 +#: build/serializers.py:343 build/serializers.py:973 build/serializers.py:1747 +#: order/models.py:718 order/serializers.py:669 order/serializers.py:855 +#: part/serializers.py:1573 stock/models.py:940 stock/models.py:1430 #: stock/models.py:1878 stock/serializers.py:688 stock/serializers.py:1580 msgid "Quantity must be greater than zero" msgstr "Ilość musi być większa niż zero" -#: build/models.py:1140 build/models.py:1239 build/serializers.py:290 +#: build/models.py:1141 build/models.py:1240 build/serializers.py:298 msgid "Quantity cannot be greater than the output quantity" msgstr "Ilość nie może być większa niż ilość wyjściowa" -#: build/models.py:1214 build/serializers.py:606 +#: build/models.py:1215 build/serializers.py:614 msgid "Build output has not passed all required tests" msgstr "" -#: build/models.py:1217 build/serializers.py:601 +#: build/models.py:1218 build/serializers.py:609 #, python-brace-format msgid "Build output {serial} has not passed all required tests" msgstr "Wyjście budowy {serial} nie przeszło wszystkich testów" -#: build/models.py:1229 +#: build/models.py:1230 msgid "Cannot partially complete a build output with allocated items" msgstr "" -#: build/models.py:1627 +#: build/models.py:1628 msgid "Build Order Line Item" msgstr "" -#: build/models.py:1651 +#: build/models.py:1652 msgid "Build object" msgstr "Zbuduj obiekt" -#: build/models.py:1663 build/models.py:1974 build/serializers.py:271 -#: build/serializers.py:320 build/serializers.py:1392 common/models.py:1340 -#: order/models.py:1756 order/models.py:2597 order/serializers.py:1696 -#: order/serializers.py:2124 part/models.py:3453 part/models.py:4390 +#: build/models.py:1664 build/models.py:1975 build/serializers.py:279 +#: build/serializers.py:328 build/serializers.py:1400 common/models.py:1344 +#: order/models.py:1757 order/models.py:2598 order/serializers.py:1710 +#: order/serializers.py:2141 part/models.py:3517 part/models.py:4015 #: report/templates/report/inventree_bill_of_materials_report.html:138 #: report/templates/report/inventree_build_order_report.html:113 #: report/templates/report/inventree_purchase_order_report.html:36 @@ -1014,427 +1030,427 @@ msgstr "Zbuduj obiekt" msgid "Quantity" msgstr "Ilość" -#: build/models.py:1664 +#: build/models.py:1665 msgid "Required quantity for build order" msgstr "Wymagana ilość dla zlecenia produkcji" -#: build/models.py:1673 +#: build/models.py:1674 msgid "Quantity of consumed stock" msgstr "" -#: build/models.py:1772 +#: build/models.py:1773 msgid "Build item must specify a build output, as master part is marked as trackable" msgstr "Element kompilacji musi określać dane wyjściowe kompilacji, ponieważ część główna jest oznaczona jako możliwa do śledzenia" -#: build/models.py:1783 +#: build/models.py:1784 #, python-brace-format msgid "Allocated quantity ({q}) must not exceed available stock quantity ({a})" msgstr "Przydzielona ilość ({q}) nie może przekraczać dostępnej ilości zapasów magazynowych ({a})" -#: build/models.py:1804 order/models.py:2546 +#: build/models.py:1805 order/models.py:2547 msgid "Stock item is over-allocated" msgstr "Pozycja magazynowa jest nadmiernie przydzielona" -#: build/models.py:1809 order/models.py:2549 +#: build/models.py:1810 order/models.py:2550 msgid "Allocation quantity must be greater than zero" msgstr "Alokowana ilość musi być większa niż zero" -#: build/models.py:1815 +#: build/models.py:1816 msgid "Quantity must be 1 for serialized stock" msgstr "Ilość musi wynosić 1 dla serializowanych zasobów" -#: build/models.py:1875 +#: build/models.py:1876 msgid "Selected stock item does not match BOM line" msgstr "Wybrana pozycja magazynowa nie pasuje do pozycji w zestawieniu BOM" -#: build/models.py:1913 +#: build/models.py:1914 msgid "Allocated quantity exceeds available stock quantity" msgstr "Przydzielona ilość przekracza dostępną ilość zapasów" -#: build/models.py:1964 build/serializers.py:948 build/serializers.py:1240 -#: order/serializers.py:1533 order/serializers.py:1554 +#: build/models.py:1965 build/serializers.py:956 build/serializers.py:1248 +#: order/serializers.py:1547 order/serializers.py:1568 #: report/templates/report/inventree_sales_order_shipment_report.html:29 #: stock/api.py:1404 stock/models.py:456 stock/serializers.py:102 #: stock/serializers.py:800 stock/serializers.py:1274 stock/serializers.py:1386 msgid "Stock Item" msgstr "Element magazynowy" -#: build/models.py:1965 +#: build/models.py:1966 msgid "Source stock item" msgstr "Lokalizacja magazynowania przedmiotu" -#: build/models.py:1975 +#: build/models.py:1976 msgid "Stock quantity to allocate to build" msgstr "Ilość zapasów do przydzielenia do produkcji" -#: build/models.py:1984 +#: build/models.py:1985 msgid "Install into" msgstr "Zainstaluj do" -#: build/models.py:1985 +#: build/models.py:1986 msgid "Destination stock item" msgstr "Docelowa lokalizacja magazynowa przedmiotu" -#: build/serializers.py:118 +#: build/serializers.py:120 msgid "Build Level" msgstr "Poziom budowania" -#: build/serializers.py:128 +#: build/serializers.py:136 msgid "Part Name" msgstr "Nazwa komponentu" -#: build/serializers.py:153 +#: build/serializers.py:161 msgid "Project Code Label" msgstr "" -#: build/serializers.py:219 build/serializers.py:974 +#: build/serializers.py:227 build/serializers.py:982 msgid "Build Output" msgstr "" -#: build/serializers.py:231 +#: build/serializers.py:239 msgid "Build output does not match the parent build" msgstr "" -#: build/serializers.py:235 +#: build/serializers.py:243 msgid "Output part does not match BuildOrder part" msgstr "" -#: build/serializers.py:239 +#: build/serializers.py:247 msgid "This build output has already been completed" msgstr "" -#: build/serializers.py:253 +#: build/serializers.py:261 msgid "This build output is not fully allocated" msgstr "" -#: build/serializers.py:272 build/serializers.py:321 +#: build/serializers.py:280 build/serializers.py:329 msgid "Enter quantity for build output" msgstr "" -#: build/serializers.py:343 +#: build/serializers.py:351 msgid "Integer quantity required for trackable parts" msgstr "" -#: build/serializers.py:349 +#: build/serializers.py:357 msgid "Integer quantity required, as the bill of materials contains trackable parts" msgstr "" -#: build/serializers.py:366 order/serializers.py:865 order/serializers.py:1700 +#: build/serializers.py:374 order/serializers.py:876 order/serializers.py:1714 #: stock/serializers.py:699 msgid "Serial Numbers" msgstr "Numer seryjny" -#: build/serializers.py:367 +#: build/serializers.py:375 msgid "Enter serial numbers for build outputs" msgstr "" -#: build/serializers.py:373 +#: build/serializers.py:381 msgid "Stock location for build output" msgstr "" -#: build/serializers.py:388 +#: build/serializers.py:396 msgid "Auto Allocate Serial Numbers" msgstr "Automatycznie przydzielaj numery seryjne" -#: build/serializers.py:390 +#: build/serializers.py:398 msgid "Automatically allocate required items with matching serial numbers" msgstr "Automatycznie przydzielaj wymagane elementy z pasującymi numerami seryjnymi" -#: build/serializers.py:423 order/serializers.py:951 stock/api.py:1183 +#: build/serializers.py:431 order/serializers.py:962 stock/api.py:1183 #: stock/models.py:1901 msgid "The following serial numbers already exist or are invalid" msgstr "Poniższe numery seryjne już istnieją lub są nieprawidłowe" -#: build/serializers.py:465 build/serializers.py:521 build/serializers.py:613 +#: build/serializers.py:473 build/serializers.py:529 build/serializers.py:621 msgid "A list of build outputs must be provided" msgstr "" -#: build/serializers.py:498 +#: build/serializers.py:506 msgid "Stock location for scrapped outputs" msgstr "" -#: build/serializers.py:504 +#: build/serializers.py:512 msgid "Discard Allocations" msgstr "Odrzuć przydziały" -#: build/serializers.py:505 +#: build/serializers.py:513 msgid "Discard any stock allocations for scrapped outputs" msgstr "" -#: build/serializers.py:510 +#: build/serializers.py:518 msgid "Reason for scrapping build output(s)" msgstr "" -#: build/serializers.py:568 +#: build/serializers.py:576 msgid "Location for completed build outputs" msgstr "" -#: build/serializers.py:576 +#: build/serializers.py:584 msgid "Accept Incomplete Allocation" msgstr "Zaakceptuj niekompletną alokację" -#: build/serializers.py:577 +#: build/serializers.py:585 msgid "Complete outputs if stock has not been fully allocated" msgstr "" -#: build/serializers.py:702 +#: build/serializers.py:710 msgid "Consume Allocated Stock" msgstr "" -#: build/serializers.py:703 +#: build/serializers.py:711 msgid "Consume any stock which has already been allocated to this build" msgstr "" -#: build/serializers.py:709 +#: build/serializers.py:717 msgid "Remove Incomplete Outputs" msgstr "" -#: build/serializers.py:710 +#: build/serializers.py:718 msgid "Delete any build outputs which have not been completed" msgstr "Usuń produkcje, które nie zostały zakończone" -#: build/serializers.py:737 +#: build/serializers.py:745 msgid "Not permitted" msgstr "Niedozwolone" -#: build/serializers.py:738 +#: build/serializers.py:746 msgid "Accept as consumed by this build order" msgstr "Zaakceptuj jako zużyte przez zlecenie produkcji" -#: build/serializers.py:739 +#: build/serializers.py:747 msgid "Deallocate before completing this build order" msgstr "" -#: build/serializers.py:766 +#: build/serializers.py:774 msgid "Overallocated Stock" msgstr "Nadmierny przydział zasobów" -#: build/serializers.py:769 +#: build/serializers.py:777 msgid "How do you want to handle extra stock items assigned to the build order" msgstr "" -#: build/serializers.py:780 +#: build/serializers.py:788 msgid "Some stock items have been overallocated" msgstr "" -#: build/serializers.py:785 +#: build/serializers.py:793 msgid "Accept Unallocated" msgstr "Zaakceptuj nieprzydzielone" -#: build/serializers.py:787 +#: build/serializers.py:795 msgid "Accept that stock items have not been fully allocated to this build order" msgstr "Zaakceptuj, że przedmioty magazynowe nie zostały w pełni przypisane do tego zlecenia budowy" -#: build/serializers.py:798 +#: build/serializers.py:806 msgid "Required stock has not been fully allocated" msgstr "Wymagany stan nie został w pełni przypisany" -#: build/serializers.py:803 order/serializers.py:524 order/serializers.py:1601 +#: build/serializers.py:811 order/serializers.py:535 order/serializers.py:1615 msgid "Accept Incomplete" msgstr "Akceptuj niekompletne" -#: build/serializers.py:805 +#: build/serializers.py:813 msgid "Accept that the required number of build outputs have not been completed" msgstr "" -#: build/serializers.py:816 +#: build/serializers.py:824 msgid "Required build quantity has not been completed" msgstr "" -#: build/serializers.py:828 +#: build/serializers.py:836 msgid "Build order has open child build orders" msgstr "" -#: build/serializers.py:831 +#: build/serializers.py:839 msgid "Build order must be in production state" msgstr "" -#: build/serializers.py:834 +#: build/serializers.py:842 msgid "Build order has incomplete outputs" msgstr "" -#: build/serializers.py:873 +#: build/serializers.py:881 msgid "Build Line" msgstr "" -#: build/serializers.py:881 +#: build/serializers.py:889 msgid "Build output" msgstr "" -#: build/serializers.py:889 +#: build/serializers.py:897 msgid "Build output must point to the same build" msgstr "" -#: build/serializers.py:920 +#: build/serializers.py:928 msgid "Build Line Item" msgstr "" -#: build/serializers.py:938 +#: build/serializers.py:946 msgid "bom_item.part must point to the same part as the build order" msgstr "" -#: build/serializers.py:954 stock/serializers.py:1287 +#: build/serializers.py:962 stock/serializers.py:1287 msgid "Item must be in stock" msgstr "Towar musi znajdować się w magazynie" -#: build/serializers.py:997 order/serializers.py:1587 +#: build/serializers.py:1005 order/serializers.py:1601 #, python-brace-format msgid "Available quantity ({q}) exceeded" msgstr "Dostępna ilość ({q}) przekroczona" -#: build/serializers.py:1003 +#: build/serializers.py:1011 msgid "Build output must be specified for allocation of tracked parts" msgstr "" -#: build/serializers.py:1011 +#: build/serializers.py:1019 msgid "Build output cannot be specified for allocation of untracked parts" msgstr "" -#: build/serializers.py:1035 order/serializers.py:1860 +#: build/serializers.py:1043 order/serializers.py:1874 msgid "Allocation items must be provided" msgstr "" -#: build/serializers.py:1099 +#: build/serializers.py:1107 msgid "Stock location where parts are to be sourced (leave blank to take from any location)" msgstr "Magazyn, z którego mają być pozyskane elementy (pozostaw puste, aby pobrać z dowolnej lokalizacji)" -#: build/serializers.py:1108 +#: build/serializers.py:1116 msgid "Exclude Location" msgstr "Wyklucz lokalizację" -#: build/serializers.py:1109 +#: build/serializers.py:1117 msgid "Exclude stock items from this selected location" msgstr "Wyklucz produkty magazynowe z wybranej lokalizacji" -#: build/serializers.py:1114 +#: build/serializers.py:1122 msgid "Interchangeable Stock" msgstr "Magazyn wymienny" -#: build/serializers.py:1115 +#: build/serializers.py:1123 msgid "Stock items in multiple locations can be used interchangeably" msgstr "Towary magazynowe w wielu lokalizacjach mogą być stosowane zamiennie" -#: build/serializers.py:1120 +#: build/serializers.py:1128 msgid "Substitute Stock" msgstr "Zastępczy magazyn" -#: build/serializers.py:1121 +#: build/serializers.py:1129 msgid "Allow allocation of substitute parts" msgstr "" -#: build/serializers.py:1126 +#: build/serializers.py:1134 msgid "Optional Items" msgstr "Przedmiot opcjonalny" -#: build/serializers.py:1127 +#: build/serializers.py:1135 msgid "Allocate optional BOM items to build order" msgstr "Przydziel opcjonalne elementy BOM do zbudowania zamówienia" -#: build/serializers.py:1148 +#: build/serializers.py:1156 msgid "Failed to start auto-allocation task" msgstr "" -#: build/serializers.py:1200 +#: build/serializers.py:1208 msgid "BOM Reference" msgstr "Odniesienie BOM" -#: build/serializers.py:1206 +#: build/serializers.py:1214 msgid "BOM Part ID" msgstr "ID części BOM" -#: build/serializers.py:1213 +#: build/serializers.py:1221 msgid "BOM Part Name" msgstr "Nazwa części BOM" -#: build/serializers.py:1266 build/serializers.py:1449 +#: build/serializers.py:1274 build/serializers.py:1457 msgid "Build" msgstr "Wersja" -#: build/serializers.py:1276 company/models.py:685 order/api.py:311 -#: order/api.py:316 order/api.py:543 order/serializers.py:650 +#: build/serializers.py:1284 company/models.py:639 order/api.py:316 +#: order/api.py:321 order/api.py:549 order/serializers.py:661 #: stock/models.py:1036 stock/serializers.py:579 msgid "Supplier Part" msgstr "Część dostawcy" -#: build/serializers.py:1284 stock/serializers.py:620 +#: build/serializers.py:1292 stock/serializers.py:620 msgid "Allocated Quantity" msgstr "Ilość zarezerwowana" -#: build/serializers.py:1351 +#: build/serializers.py:1359 msgid "Build Reference" msgstr "" -#: build/serializers.py:1361 +#: build/serializers.py:1369 msgid "Part Category Name" msgstr "" -#: build/serializers.py:1383 common/setting/system.py:480 part/models.py:1214 +#: build/serializers.py:1391 common/setting/system.py:480 part/models.py:1302 msgid "Trackable" msgstr "Możliwość śledzenia" -#: build/serializers.py:1386 +#: build/serializers.py:1394 msgid "Inherited" msgstr "" -#: build/serializers.py:1389 part/models.py:4475 +#: build/serializers.py:1397 part/models.py:4100 msgid "Allow Variants" msgstr "Zezwalaj na warianty" -#: build/serializers.py:1395 build/serializers.py:1400 part/models.py:4208 -#: part/models.py:4779 stock/api.py:882 +#: build/serializers.py:1403 build/serializers.py:1408 part/models.py:3833 +#: part/models.py:4404 stock/api.py:882 msgid "BOM Item" msgstr "Element BOM" -#: build/serializers.py:1467 order/serializers.py:1282 part/serializers.py:1310 -#: part/serializers.py:1765 +#: build/serializers.py:1475 order/serializers.py:1296 part/serializers.py:1175 +#: part/serializers.py:1630 msgid "In Production" msgstr "W produkcji" -#: build/serializers.py:1469 part/serializers.py:950 part/serializers.py:1314 +#: build/serializers.py:1477 part/serializers.py:835 part/serializers.py:1179 msgid "Scheduled to Build" msgstr "" -#: build/serializers.py:1472 part/serializers.py:987 +#: build/serializers.py:1480 part/serializers.py:872 msgid "External Stock" msgstr "Zew. zasoby magazynowe" -#: build/serializers.py:1473 part/serializers.py:1300 part/serializers.py:1808 +#: build/serializers.py:1481 part/serializers.py:1165 part/serializers.py:1673 msgid "Available Stock" msgstr "Dostępna ilość" -#: build/serializers.py:1475 +#: build/serializers.py:1483 msgid "Available Substitute Stock" msgstr "Dostępny magazyn zastępczy" -#: build/serializers.py:1478 +#: build/serializers.py:1486 msgid "Available Variant Stock" msgstr "" -#: build/serializers.py:1752 +#: build/serializers.py:1760 msgid "Consumed quantity exceeds allocated quantity" msgstr "" -#: build/serializers.py:1789 +#: build/serializers.py:1797 msgid "Optional notes for the stock consumption" msgstr "" -#: build/serializers.py:1806 +#: build/serializers.py:1814 msgid "Build item must point to the correct build order" msgstr "" -#: build/serializers.py:1811 +#: build/serializers.py:1819 msgid "Duplicate build item allocation" msgstr "" -#: build/serializers.py:1829 +#: build/serializers.py:1837 msgid "Build line must point to the correct build order" msgstr "" -#: build/serializers.py:1834 +#: build/serializers.py:1842 msgid "Duplicate build line allocation" msgstr "" -#: build/serializers.py:1846 +#: build/serializers.py:1854 msgid "At least one item or line must be provided" msgstr "" @@ -1482,702 +1498,826 @@ msgstr "" msgid "Build order {bo} is now overdue" msgstr "" -#: common/api.py:694 +#: common/api.py:701 msgid "Is Link" msgstr "" -#: common/api.py:702 +#: common/api.py:709 msgid "Is File" msgstr "Jest plikiem" -#: common/api.py:745 +#: common/api.py:756 msgid "User does not have permission to delete these attachments" msgstr "" -#: common/api.py:762 +#: common/api.py:769 msgid "User does not have permission to delete this attachment" msgstr "" -#: common/currency.py:122 +#: common/currency.py:130 msgid "Invalid currency code" msgstr "" -#: common/currency.py:124 +#: common/currency.py:132 msgid "Duplicate currency code" msgstr "" -#: common/currency.py:129 +#: common/currency.py:137 msgid "No valid currency codes provided" msgstr "" -#: common/currency.py:146 +#: common/currency.py:154 msgid "No plugin" msgstr "Brak wtyczki" -#: common/models.py:101 common/models.py:126 common/models.py:2729 +#: common/models.py:105 common/models.py:130 common/models.py:3150 msgid "Updated" msgstr "Zaktualizowany" -#: common/models.py:102 common/models.py:127 +#: common/models.py:106 common/models.py:131 msgid "Timestamp of last update" msgstr "Data ostatniej aktualizacji" -#: common/models.py:139 +#: common/models.py:143 msgid "Update By" msgstr "Zaktualizowano przez" -#: common/models.py:140 +#: common/models.py:144 msgid "User who last updated this object" msgstr "Użytkownik, który ostatnio zaktualizował ten obiekt" -#: common/models.py:165 +#: common/models.py:169 msgid "Unique project code" msgstr "Unikalny kod projektu" -#: common/models.py:172 +#: common/models.py:176 msgid "Project description" msgstr "Opis projektu" -#: common/models.py:181 +#: common/models.py:185 msgid "User or group responsible for this project" msgstr "Użytkownik lub grupa odpowiedzialna za to zamówienie" -#: common/models.py:771 common/models.py:1272 common/models.py:1310 +#: common/models.py:775 common/models.py:1276 common/models.py:1314 msgid "Settings key" msgstr "Klucz ustawień" -#: common/models.py:775 +#: common/models.py:779 msgid "Settings value" msgstr "Ustawienia wartości" -#: common/models.py:830 +#: common/models.py:834 msgid "Chosen value is not a valid option" msgstr "Wybrana wartość nie jest poprawną opcją" -#: common/models.py:846 +#: common/models.py:850 msgid "Value must be a boolean value" msgstr "Wartość musi być wartością binarną" -#: common/models.py:854 +#: common/models.py:858 msgid "Value must be an integer value" msgstr "Wartość musi być liczbą całkowitą" -#: common/models.py:862 +#: common/models.py:866 msgid "Value must be a valid number" msgstr "Wartość musi być poprawną liczbą" -#: common/models.py:887 +#: common/models.py:891 msgid "Value does not pass validation checks" msgstr "Wartość nie zgadza się z kontrolą poprawności" -#: common/models.py:909 +#: common/models.py:913 msgid "Key string must be unique" msgstr "Ciąg musi być unikatowy" -#: common/models.py:1318 common/models.py:1319 common/models.py:1423 -#: common/models.py:1424 common/models.py:1669 common/models.py:1670 -#: common/models.py:2000 common/models.py:2001 common/models.py:2382 -#: importer/models.py:100 part/models.py:3547 part/models.py:3575 +#: common/models.py:1322 common/models.py:1323 common/models.py:1427 +#: common/models.py:1428 common/models.py:1673 common/models.py:1674 +#: common/models.py:2006 common/models.py:2007 common/models.py:2803 +#: importer/models.py:100 part/models.py:3611 part/models.py:3639 #: plugin/models.py:355 plugin/models.py:356 #: report/templates/report/inventree_test_report.html:105 users/models.py:124 #: users/models.py:501 msgid "User" msgstr "Użytkownik" -#: common/models.py:1341 +#: common/models.py:1345 msgid "Price break quantity" msgstr "" -#: common/models.py:1348 company/serializers.py:564 order/models.py:1842 -#: order/models.py:3043 +#: common/models.py:1352 company/serializers.py:349 order/models.py:1843 +#: order/models.py:3044 msgid "Price" msgstr "Cena" -#: common/models.py:1349 +#: common/models.py:1353 msgid "Unit price at specified quantity" msgstr "Cena jednostkowa po określonej ilości" -#: common/models.py:1400 common/models.py:1585 +#: common/models.py:1404 common/models.py:1589 msgid "Endpoint" msgstr "Punkt końcowy" -#: common/models.py:1401 +#: common/models.py:1405 msgid "Endpoint at which this webhook is received" msgstr "" -#: common/models.py:1411 +#: common/models.py:1415 msgid "Name for this webhook" msgstr "" -#: common/models.py:1415 common/models.py:2241 common/models.py:2348 -#: company/models.py:191 company/models.py:822 machine/models.py:40 -#: part/models.py:1237 plugin/models.py:69 stock/api.py:642 users/models.py:195 +#: common/models.py:1419 common/models.py:2247 common/models.py:2354 +#: company/models.py:192 company/models.py:776 machine/models.py:40 +#: part/models.py:1325 plugin/models.py:69 stock/api.py:642 users/models.py:195 #: users/models.py:554 users/serializers.py:314 msgid "Active" msgstr "Aktywny" -#: common/models.py:1415 +#: common/models.py:1419 msgid "Is this webhook active" msgstr "" -#: common/models.py:1431 users/models.py:172 +#: common/models.py:1435 users/models.py:172 msgid "Token" msgstr "Token" -#: common/models.py:1432 +#: common/models.py:1436 msgid "Token for access" msgstr "Token dostępu" -#: common/models.py:1440 +#: common/models.py:1444 msgid "Secret" msgstr "Sekret" -#: common/models.py:1441 +#: common/models.py:1445 msgid "Shared secret for HMAC" msgstr "Współdzielony sekret dla HMAC" -#: common/models.py:1549 common/models.py:2619 +#: common/models.py:1553 common/models.py:3040 msgid "Message ID" msgstr "Id wiadomości" -#: common/models.py:1550 common/models.py:2609 +#: common/models.py:1554 common/models.py:3030 msgid "Unique identifier for this message" msgstr "Unikalny identyfikator dla tej wiadomości" -#: common/models.py:1558 +#: common/models.py:1562 msgid "Host" msgstr "Host" -#: common/models.py:1559 +#: common/models.py:1563 msgid "Host from which this message was received" msgstr "Host, od którego otrzymano tę wiadomość" -#: common/models.py:1567 +#: common/models.py:1571 msgid "Header" msgstr "Nagłówek" -#: common/models.py:1568 +#: common/models.py:1572 msgid "Header of this message" msgstr "Nagłówek tej wiadomości" -#: common/models.py:1575 +#: common/models.py:1579 msgid "Body" msgstr "Zawartość" -#: common/models.py:1576 +#: common/models.py:1580 msgid "Body of this message" msgstr "Treść tej wiadomości" -#: common/models.py:1586 +#: common/models.py:1590 msgid "Endpoint on which this message was received" msgstr "" -#: common/models.py:1591 +#: common/models.py:1595 msgid "Worked on" msgstr "Opracowany na" -#: common/models.py:1592 +#: common/models.py:1596 msgid "Was the work on this message finished?" msgstr "Czy prace nad tą wiadomością zostały zakończone?" -#: common/models.py:1718 +#: common/models.py:1722 msgid "Id" msgstr "Id" -#: common/models.py:1720 +#: common/models.py:1724 msgid "Title" msgstr "Tytuł" -#: common/models.py:1722 common/models.py:1983 company/models.py:185 -#: company/models.py:467 company/models.py:534 company/models.py:839 -#: order/models.py:457 order/models.py:1786 order/models.py:2343 -#: part/models.py:1113 +#: common/models.py:1726 common/models.py:1989 company/models.py:186 +#: company/models.py:468 company/models.py:536 company/models.py:793 +#: order/models.py:458 order/models.py:1787 order/models.py:2344 +#: part/models.py:1201 #: report/templates/report/inventree_build_order_report.html:164 msgid "Link" msgstr "Łącze" -#: common/models.py:1724 +#: common/models.py:1728 msgid "Published" msgstr "Opublikowano" -#: common/models.py:1726 +#: common/models.py:1730 msgid "Author" msgstr "Autor" -#: common/models.py:1728 +#: common/models.py:1732 msgid "Summary" msgstr "Podsumowanie" -#: common/models.py:1731 common/models.py:2586 +#: common/models.py:1735 common/models.py:3007 msgid "Read" msgstr "Czytaj" -#: common/models.py:1731 +#: common/models.py:1735 msgid "Was this news item read?" msgstr "Czy ta wiadomość była przeczytana?" -#: common/models.py:1748 +#: common/models.py:1752 msgid "Image file" msgstr "Plik obrazu" -#: common/models.py:1760 +#: common/models.py:1764 msgid "Target model type for this image" msgstr "" -#: common/models.py:1764 +#: common/models.py:1768 msgid "Target model ID for this image" msgstr "" -#: common/models.py:1786 +#: common/models.py:1790 msgid "Custom Unit" msgstr "Jednostka Niestandardowa" -#: common/models.py:1804 +#: common/models.py:1808 msgid "Unit symbol must be unique" msgstr "Symbol jednostki musi być unikalny" -#: common/models.py:1819 +#: common/models.py:1823 msgid "Unit name must be a valid identifier" msgstr "Nazwa jednostki musi być prawidłowym identyfikatorem" -#: common/models.py:1838 +#: common/models.py:1842 msgid "Unit name" msgstr "Nazwa jednostki" -#: common/models.py:1845 +#: common/models.py:1849 msgid "Symbol" msgstr "Symbol" -#: common/models.py:1846 +#: common/models.py:1850 msgid "Optional unit symbol" msgstr "Opcjonalny symbol jednostki" -#: common/models.py:1852 +#: common/models.py:1856 msgid "Definition" msgstr "Definicja" -#: common/models.py:1853 +#: common/models.py:1857 msgid "Unit definition" msgstr "Definicja jednostki" -#: common/models.py:1911 common/models.py:1974 stock/models.py:2967 +#: common/models.py:1917 common/models.py:1980 stock/models.py:2984 #: stock/serializers.py:247 msgid "Attachment" msgstr "Załącznik" -#: common/models.py:1928 +#: common/models.py:1934 msgid "Missing file" msgstr "Brak pliku" -#: common/models.py:1929 +#: common/models.py:1935 msgid "Missing external link" msgstr "Brak zewnętrznego odnośnika" -#: common/models.py:1966 +#: common/models.py:1972 common/models.py:2488 msgid "Model type" msgstr "Typ modelu" -#: common/models.py:1967 +#: common/models.py:1973 msgid "Target model type for image" msgstr "Docelowy typ modelu dla obrazu" -#: common/models.py:1975 +#: common/models.py:1981 msgid "Select file to attach" msgstr "Wybierz plik do załączenia" -#: common/models.py:1991 +#: common/models.py:1997 msgid "Comment" msgstr "Komentarz" -#: common/models.py:1992 +#: common/models.py:1998 msgid "Attachment comment" msgstr "Komentarz do załącznika" -#: common/models.py:2008 +#: common/models.py:2014 msgid "Upload date" msgstr "Data dodania" -#: common/models.py:2009 +#: common/models.py:2015 msgid "Date the file was uploaded" msgstr "Data przesłania pliku" -#: common/models.py:2013 +#: common/models.py:2019 msgid "File size" msgstr "Rozmiar pliku" -#: common/models.py:2013 +#: common/models.py:2019 msgid "File size in bytes" msgstr "Rozmiar pliku w bajtach" -#: common/models.py:2051 common/serializers.py:684 +#: common/models.py:2057 common/serializers.py:688 msgid "Invalid model type specified for attachment" msgstr "" -#: common/models.py:2072 +#: common/models.py:2078 msgid "Custom State" msgstr "" -#: common/models.py:2073 +#: common/models.py:2079 msgid "Custom States" msgstr "" -#: common/models.py:2078 +#: common/models.py:2084 msgid "Reference Status Set" msgstr "" -#: common/models.py:2079 +#: common/models.py:2085 msgid "Status set that is extended with this custom state" msgstr "" -#: common/models.py:2083 generic/states/serializers.py:18 +#: common/models.py:2089 generic/states/serializers.py:18 msgid "Logical Key" msgstr "" -#: common/models.py:2085 +#: common/models.py:2091 msgid "State logical key that is equal to this custom state in business logic" msgstr "" -#: common/models.py:2090 common/models.py:2329 company/models.py:622 -#: machine/serializers.py:27 -#: report/templates/report/inventree_test_report.html:104 stock/models.py:2959 +#: common/models.py:2096 common/models.py:2335 machine/serializers.py:27 +#: report/templates/report/inventree_test_report.html:104 stock/models.py:2976 msgid "Value" msgstr "Wartość" -#: common/models.py:2091 +#: common/models.py:2097 msgid "Numerical value that will be saved in the models database" msgstr "" -#: common/models.py:2097 +#: common/models.py:2103 msgid "Name of the state" msgstr "" -#: common/models.py:2106 common/models.py:2335 generic/states/serializers.py:22 +#: common/models.py:2112 common/models.py:2341 generic/states/serializers.py:22 msgid "Label" msgstr "Etykieta" -#: common/models.py:2107 +#: common/models.py:2113 msgid "Label that will be displayed in the frontend" msgstr "" -#: common/models.py:2114 generic/states/serializers.py:24 +#: common/models.py:2120 generic/states/serializers.py:24 msgid "Color" msgstr "Kolor" -#: common/models.py:2115 +#: common/models.py:2121 msgid "Color that will be displayed in the frontend" msgstr "" -#: common/models.py:2123 +#: common/models.py:2129 msgid "Model" msgstr "Model" -#: common/models.py:2124 +#: common/models.py:2130 msgid "Model this state is associated with" msgstr "" -#: common/models.py:2139 +#: common/models.py:2145 msgid "Model must be selected" msgstr "Model musi być wybrany" -#: common/models.py:2142 +#: common/models.py:2148 msgid "Key must be selected" msgstr "Klucz musi być wybrany" -#: common/models.py:2145 +#: common/models.py:2151 msgid "Logical key must be selected" msgstr "" -#: common/models.py:2149 +#: common/models.py:2155 msgid "Key must be different from logical key" msgstr "" -#: common/models.py:2156 +#: common/models.py:2162 msgid "Valid reference status class must be provided" msgstr "" -#: common/models.py:2162 +#: common/models.py:2168 msgid "Key must be different from the logical keys of the reference status" msgstr "" -#: common/models.py:2169 +#: common/models.py:2175 msgid "Logical key must be in the logical keys of the reference status" msgstr "" -#: common/models.py:2176 +#: common/models.py:2182 msgid "Name must be different from the names of the reference status" msgstr "" -#: common/models.py:2216 common/models.py:2323 part/models.py:3889 +#: common/models.py:2222 common/models.py:2329 common/models.py:2533 msgid "Selection List" msgstr "" -#: common/models.py:2217 +#: common/models.py:2223 msgid "Selection Lists" msgstr "" -#: common/models.py:2222 +#: common/models.py:2228 msgid "Name of the selection list" msgstr "" -#: common/models.py:2229 +#: common/models.py:2235 msgid "Description of the selection list" msgstr "" -#: common/models.py:2235 part/models.py:1242 +#: common/models.py:2241 part/models.py:1330 msgid "Locked" msgstr "Zablokowany" -#: common/models.py:2236 +#: common/models.py:2242 msgid "Is this selection list locked?" msgstr "" -#: common/models.py:2242 +#: common/models.py:2248 msgid "Can this selection list be used?" msgstr "" -#: common/models.py:2250 +#: common/models.py:2256 msgid "Source Plugin" msgstr "" -#: common/models.py:2251 +#: common/models.py:2257 msgid "Plugin which provides the selection list" msgstr "" -#: common/models.py:2256 +#: common/models.py:2262 msgid "Source String" msgstr "" -#: common/models.py:2257 +#: common/models.py:2263 msgid "Optional string identifying the source used for this list" msgstr "" -#: common/models.py:2266 +#: common/models.py:2272 msgid "Default Entry" msgstr "" -#: common/models.py:2267 +#: common/models.py:2273 msgid "Default entry for this selection list" msgstr "" -#: common/models.py:2272 common/models.py:2724 +#: common/models.py:2278 common/models.py:3145 msgid "Created" msgstr "Utworzony" -#: common/models.py:2273 +#: common/models.py:2279 msgid "Date and time that the selection list was created" msgstr "" -#: common/models.py:2278 +#: common/models.py:2284 msgid "Last Updated" msgstr "Ostatnia aktualizacja" -#: common/models.py:2279 +#: common/models.py:2285 msgid "Date and time that the selection list was last updated" msgstr "" -#: common/models.py:2313 +#: common/models.py:2319 msgid "Selection List Entry" msgstr "" -#: common/models.py:2314 +#: common/models.py:2320 msgid "Selection List Entries" msgstr "" -#: common/models.py:2324 +#: common/models.py:2330 msgid "Selection list to which this entry belongs" msgstr "" -#: common/models.py:2330 +#: common/models.py:2336 msgid "Value of the selection list entry" msgstr "" -#: common/models.py:2336 +#: common/models.py:2342 msgid "Label for the selection list entry" msgstr "" -#: common/models.py:2342 +#: common/models.py:2348 msgid "Description of the selection list entry" msgstr "" -#: common/models.py:2349 +#: common/models.py:2355 msgid "Is this selection list entry active?" msgstr "" -#: common/models.py:2367 -msgid "Barcode Scan" +#: common/models.py:2387 +msgid "Parameter Template" msgstr "" -#: common/models.py:2371 importer/models.py:546 part/models.py:4060 -msgid "Data" -msgstr "Dane" - -#: common/models.py:2372 -msgid "Barcode data" +#: common/models.py:2388 +msgid "Parameter Templates" msgstr "" -#: common/models.py:2383 -msgid "User who scanned the barcode" +#: common/models.py:2425 +msgid "Checkbox parameters cannot have units" msgstr "" -#: common/models.py:2388 importer/models.py:69 -msgid "Timestamp" +#: common/models.py:2430 +msgid "Checkbox parameters cannot have choices" msgstr "" -#: common/models.py:2389 -msgid "Date and time of the barcode scan" +#: common/models.py:2450 part/models.py:3707 +msgid "Choices must be unique" msgstr "" -#: common/models.py:2395 -msgid "URL endpoint which processed the barcode" +#: common/models.py:2467 +msgid "Parameter template name must be unique" msgstr "" -#: common/models.py:2402 order/models.py:1832 plugin/serializers.py:93 -msgid "Context" +#: common/models.py:2489 +msgid "Target model type for this parameter template" msgstr "" -#: common/models.py:2403 -msgid "Context data for the barcode scan" +#: common/models.py:2495 +msgid "Parameter Name" msgstr "" -#: common/models.py:2410 -msgid "Response" +#: common/models.py:2501 part/models.py:1283 +msgid "Units" +msgstr "Jednostki" + +#: common/models.py:2502 +msgid "Physical units for this parameter" msgstr "" -#: common/models.py:2411 -msgid "Response data from the barcode scan" +#: common/models.py:2510 +msgid "Parameter description" msgstr "" -#: common/models.py:2417 report/templates/report/inventree_test_report.html:103 -#: stock/models.py:2953 -msgid "Result" -msgstr "Wynik" - -#: common/models.py:2418 -msgid "Was the barcode scan successful?" +#: common/models.py:2516 +msgid "Checkbox" msgstr "" -#: common/models.py:2500 -msgid "An error occurred" +#: common/models.py:2517 +msgid "Is this parameter a checkbox?" msgstr "" -#: common/models.py:2521 -msgid "INVE-E8: Email log deletion is protected. Set INVENTREE_PROTECT_EMAIL_LOG to False to allow deletion." +#: common/models.py:2522 part/models.py:3794 +msgid "Choices" msgstr "" -#: common/models.py:2568 -msgid "Email Message" +#: common/models.py:2523 +msgid "Valid choices for this parameter (comma-separated)" msgstr "" -#: common/models.py:2569 -msgid "Email Messages" +#: common/models.py:2534 +msgid "Selection list for this parameter" msgstr "" -#: common/models.py:2576 -msgid "Announced" +#: common/models.py:2539 part/models.py:3769 report/models.py:287 +msgid "Enabled" +msgstr "Aktywne" + +#: common/models.py:2540 +msgid "Is this parameter template enabled?" msgstr "" -#: common/models.py:2578 -msgid "Sent" -msgstr "" - -#: common/models.py:2579 -msgid "Failed" +#: common/models.py:2581 +msgid "Parameter" msgstr "" #: common/models.py:2582 -msgid "Delivered" -msgstr "Doręczono" - -#: common/models.py:2590 -msgid "Confirmed" -msgstr "" - -#: common/models.py:2596 -msgid "Inbound" -msgstr "" - -#: common/models.py:2597 -msgid "Outbound" -msgstr "" - -#: common/models.py:2602 -msgid "No Reply" -msgstr "" - -#: common/models.py:2603 -msgid "Track Delivery" -msgstr "" - -#: common/models.py:2604 -msgid "Track Read" -msgstr "" - -#: common/models.py:2605 -msgid "Track Click" -msgstr "" - -#: common/models.py:2608 common/models.py:2711 -msgid "Global ID" -msgstr "" - -#: common/models.py:2621 -msgid "Identifier for this message (might be supplied by external system)" +msgid "Parameters" msgstr "" #: common/models.py:2628 +msgid "Invalid choice for parameter value" +msgstr "" + +#: common/models.py:2698 common/serializers.py:783 +msgid "Invalid model type specified for parameter" +msgstr "" + +#: common/models.py:2734 +msgid "Model ID" +msgstr "" + +#: common/models.py:2735 +msgid "ID of the target model for this parameter" +msgstr "" + +#: common/models.py:2744 common/setting/system.py:450 report/models.py:373 +#: report/models.py:669 report/serializers.py:94 report/serializers.py:135 +#: stock/serializers.py:234 +msgid "Template" +msgstr "Szablon" + +#: common/models.py:2745 +msgid "Parameter template" +msgstr "" + +#: common/models.py:2750 common/models.py:2792 importer/models.py:546 +msgid "Data" +msgstr "Dane" + +#: common/models.py:2751 +msgid "Parameter Value" +msgstr "Wartość parametru" + +#: common/models.py:2760 company/models.py:810 order/serializers.py:894 +#: order/serializers.py:2064 part/models.py:4075 part/models.py:4444 +#: report/templates/report/inventree_bill_of_materials_report.html:140 +#: report/templates/report/inventree_purchase_order_report.html:39 +#: report/templates/report/inventree_return_order_report.html:27 +#: report/templates/report/inventree_sales_order_report.html:32 +#: report/templates/report/inventree_stock_location_report.html:105 +#: stock/serializers.py:813 +msgid "Note" +msgstr "Uwaga" + +#: common/models.py:2761 stock/serializers.py:718 +msgid "Optional note field" +msgstr "" + +#: common/models.py:2788 +msgid "Barcode Scan" +msgstr "" + +#: common/models.py:2793 +msgid "Barcode data" +msgstr "" + +#: common/models.py:2804 +msgid "User who scanned the barcode" +msgstr "" + +#: common/models.py:2809 importer/models.py:69 +msgid "Timestamp" +msgstr "" + +#: common/models.py:2810 +msgid "Date and time of the barcode scan" +msgstr "" + +#: common/models.py:2816 +msgid "URL endpoint which processed the barcode" +msgstr "" + +#: common/models.py:2823 order/models.py:1833 plugin/serializers.py:93 +msgid "Context" +msgstr "" + +#: common/models.py:2824 +msgid "Context data for the barcode scan" +msgstr "" + +#: common/models.py:2831 +msgid "Response" +msgstr "" + +#: common/models.py:2832 +msgid "Response data from the barcode scan" +msgstr "" + +#: common/models.py:2838 report/templates/report/inventree_test_report.html:103 +#: stock/models.py:2970 +msgid "Result" +msgstr "Wynik" + +#: common/models.py:2839 +msgid "Was the barcode scan successful?" +msgstr "" + +#: common/models.py:2921 +msgid "An error occurred" +msgstr "" + +#: common/models.py:2942 +msgid "INVE-E8: Email log deletion is protected. Set INVENTREE_PROTECT_EMAIL_LOG to False to allow deletion." +msgstr "" + +#: common/models.py:2989 +msgid "Email Message" +msgstr "" + +#: common/models.py:2990 +msgid "Email Messages" +msgstr "" + +#: common/models.py:2997 +msgid "Announced" +msgstr "" + +#: common/models.py:2999 +msgid "Sent" +msgstr "" + +#: common/models.py:3000 +msgid "Failed" +msgstr "" + +#: common/models.py:3003 +msgid "Delivered" +msgstr "Doręczono" + +#: common/models.py:3011 +msgid "Confirmed" +msgstr "" + +#: common/models.py:3017 +msgid "Inbound" +msgstr "" + +#: common/models.py:3018 +msgid "Outbound" +msgstr "" + +#: common/models.py:3023 +msgid "No Reply" +msgstr "" + +#: common/models.py:3024 +msgid "Track Delivery" +msgstr "" + +#: common/models.py:3025 +msgid "Track Read" +msgstr "" + +#: common/models.py:3026 +msgid "Track Click" +msgstr "" + +#: common/models.py:3029 common/models.py:3132 +msgid "Global ID" +msgstr "" + +#: common/models.py:3042 +msgid "Identifier for this message (might be supplied by external system)" +msgstr "" + +#: common/models.py:3049 msgid "Thread ID" msgstr "" -#: common/models.py:2630 +#: common/models.py:3051 msgid "Identifier for this message thread (might be supplied by external system)" msgstr "" -#: common/models.py:2639 +#: common/models.py:3060 msgid "Thread" msgstr "" -#: common/models.py:2640 +#: common/models.py:3061 msgid "Linked thread for this message" msgstr "" -#: common/models.py:2656 -msgid "Prioriy" -msgstr "Priorytet" +#: common/models.py:3077 +msgid "Priority" +msgstr "" -#: common/models.py:2698 +#: common/models.py:3119 msgid "Email Thread" msgstr "" -#: common/models.py:2699 +#: common/models.py:3120 msgid "Email Threads" msgstr "" -#: common/models.py:2705 generic/states/serializers.py:16 +#: common/models.py:3126 generic/states/serializers.py:16 #: machine/serializers.py:24 plugin/models.py:46 users/models.py:113 msgid "Key" msgstr "Klucz" -#: common/models.py:2708 +#: common/models.py:3129 msgid "Unique key for this thread (used to identify the thread)" msgstr "" -#: common/models.py:2712 +#: common/models.py:3133 msgid "Unique identifier for this thread" msgstr "" -#: common/models.py:2719 +#: common/models.py:3140 msgid "Started Internal" msgstr "" -#: common/models.py:2720 +#: common/models.py:3141 msgid "Was this thread started internally?" msgstr "" -#: common/models.py:2725 +#: common/models.py:3146 msgid "Date and time that the thread was created" msgstr "" -#: common/models.py:2730 +#: common/models.py:3151 msgid "Date and time that the thread was last updated" msgstr "" @@ -2199,7 +2339,7 @@ msgstr "{verbose_name} anulowany" msgid "A order that is assigned to you was canceled" msgstr "" -#: common/notifications.py:73 common/notifications.py:80 order/api.py:594 +#: common/notifications.py:73 common/notifications.py:80 order/api.py:600 msgid "Items Received" msgstr "" @@ -2211,88 +2351,93 @@ msgstr "" msgid "Items have been received against a return order" msgstr "" -#: common/serializers.py:145 +#: common/serializers.py:149 msgid "Indicates if the setting is overridden by an environment variable" msgstr "" -#: common/serializers.py:147 +#: common/serializers.py:151 msgid "Override" msgstr "Nadpisz" -#: common/serializers.py:498 +#: common/serializers.py:502 msgid "Is Running" msgstr "Jest uruchomiony" -#: common/serializers.py:504 +#: common/serializers.py:508 msgid "Pending Tasks" msgstr "Oczekujce zadania" -#: common/serializers.py:510 +#: common/serializers.py:514 msgid "Scheduled Tasks" msgstr "Zaplanowane zadania" -#: common/serializers.py:516 +#: common/serializers.py:520 msgid "Failed Tasks" msgstr "Zadania zakończone błędem" -#: common/serializers.py:531 +#: common/serializers.py:535 msgid "Task ID" msgstr "ID zadania" -#: common/serializers.py:531 +#: common/serializers.py:535 msgid "Unique task ID" msgstr "Unikalny identyfikator zadania" -#: common/serializers.py:533 +#: common/serializers.py:537 msgid "Lock" msgstr "Blokada" -#: common/serializers.py:533 +#: common/serializers.py:537 msgid "Lock time" msgstr "Czas blokady" -#: common/serializers.py:535 +#: common/serializers.py:539 msgid "Task name" msgstr "Nazwa zadania" -#: common/serializers.py:537 +#: common/serializers.py:541 msgid "Function" msgstr "Funkcja" -#: common/serializers.py:537 +#: common/serializers.py:541 msgid "Function name" msgstr "Nazwa funkcji" -#: common/serializers.py:539 +#: common/serializers.py:543 msgid "Arguments" msgstr "Argumenty" -#: common/serializers.py:539 +#: common/serializers.py:543 msgid "Task arguments" msgstr "Argumenty zadania" -#: common/serializers.py:542 +#: common/serializers.py:546 msgid "Keyword Arguments" msgstr "" -#: common/serializers.py:542 +#: common/serializers.py:546 msgid "Task keyword arguments" msgstr "" -#: common/serializers.py:652 +#: common/serializers.py:656 msgid "Filename" msgstr "Nazwa pliku" -#: common/serializers.py:659 importer/models.py:89 report/api.py:41 +#: common/serializers.py:663 common/serializers.py:730 +#: common/serializers.py:805 importer/models.py:89 report/api.py:41 #: report/models.py:293 report/serializers.py:52 msgid "Model Type" msgstr "Typ modelu" -#: common/serializers.py:687 +#: common/serializers.py:691 msgid "User does not have permission to create or edit attachments for this model" msgstr "Użytkownik nie ma uprawnień do tworzenia lub edytowania załączników dla tego modelu" -#: common/serializers.py:731 common/serializers.py:834 +#: common/serializers.py:786 +msgid "User does not have permission to create or edit parameters for this model" +msgstr "" + +#: common/serializers.py:850 common/serializers.py:953 msgid "Selection list is locked" msgstr "Lista wyboru jest zablokowana" @@ -2368,7 +2513,7 @@ msgstr "" msgid "Show the `about` modal only to superusers" msgstr "" -#: common/setting/system.py:224 company/models.py:144 company/models.py:145 +#: common/setting/system.py:224 company/models.py:145 company/models.py:146 msgid "Company name" msgstr "Nazwa firmy" @@ -2411,8 +2556,8 @@ msgstr "Jak często aktualizować kursy wymiany walut (ustaw zero aby wyłączy #: common/setting/system.py:253 common/setting/system.py:293 #: common/setting/system.py:306 common/setting/system.py:314 #: common/setting/system.py:321 common/setting/system.py:330 -#: common/setting/system.py:339 common/setting/system.py:588 -#: common/setting/system.py:616 common/setting/system.py:707 +#: common/setting/system.py:339 common/setting/system.py:580 +#: common/setting/system.py:608 common/setting/system.py:707 #: common/setting/system.py:1103 common/setting/system.py:1119 msgid "days" msgstr "dni" @@ -2657,12 +2802,6 @@ msgstr "" msgid "Copy category parameter templates when creating a part" msgstr "" -#: common/setting/system.py:450 part/models.py:4054 report/models.py:373 -#: report/models.py:669 report/serializers.py:94 report/serializers.py:135 -#: stock/serializers.py:234 -msgid "Template" -msgstr "Szablon" - #: common/setting/system.py:451 msgid "Parts are templates by default" msgstr "" @@ -2671,8 +2810,8 @@ msgstr "" msgid "Parts can be assembled from other components by default" msgstr "" -#: common/setting/system.py:462 part/models.py:1208 part/serializers.py:1734 -#: part/serializers.py:1741 +#: common/setting/system.py:462 part/models.py:1296 part/serializers.py:1599 +#: part/serializers.py:1606 msgid "Component" msgstr "Komponent" @@ -2680,7 +2819,7 @@ msgstr "Komponent" msgid "Parts can be used as sub-components by default" msgstr "" -#: common/setting/system.py:468 part/models.py:1226 +#: common/setting/system.py:468 part/models.py:1314 msgid "Purchaseable" msgstr "Możliwość zakupu" @@ -2688,7 +2827,7 @@ msgstr "Możliwość zakupu" msgid "Parts are purchaseable by default" msgstr "Części są domyślnie z możliwością zakupu" -#: common/setting/system.py:474 part/models.py:1232 stock/api.py:643 +#: common/setting/system.py:474 part/models.py:1320 stock/api.py:643 msgid "Salable" msgstr "Możliwość sprzedaży" @@ -2700,7 +2839,7 @@ msgstr "Części są domyślnie z możliwością sprzedaży" msgid "Parts are trackable by default" msgstr "Części są domyślnie z możliwością śledzenia" -#: common/setting/system.py:486 part/models.py:1248 +#: common/setting/system.py:486 part/models.py:1336 msgid "Virtual" msgstr "Wirtualny" @@ -2749,158 +2888,158 @@ msgid "Part category default icon (empty means no icon)" msgstr "" #: common/setting/system.py:525 -msgid "Enforce Parameter Units" -msgstr "" - -#: common/setting/system.py:527 -msgid "If units are provided, parameter values must match the specified units" -msgstr "" - -#: common/setting/system.py:533 msgid "Minimum Pricing Decimal Places" msgstr "" -#: common/setting/system.py:535 +#: common/setting/system.py:527 msgid "Minimum number of decimal places to display when rendering pricing data" msgstr "" -#: common/setting/system.py:546 +#: common/setting/system.py:538 msgid "Maximum Pricing Decimal Places" msgstr "" -#: common/setting/system.py:548 +#: common/setting/system.py:540 msgid "Maximum number of decimal places to display when rendering pricing data" msgstr "" -#: common/setting/system.py:559 +#: common/setting/system.py:551 msgid "Use Supplier Pricing" msgstr "Użyj cennika dostawcy" -#: common/setting/system.py:561 +#: common/setting/system.py:553 msgid "Include supplier price breaks in overall pricing calculations" msgstr "" -#: common/setting/system.py:567 +#: common/setting/system.py:559 msgid "Purchase History Override" msgstr "Nadpisanie historii zakupów" -#: common/setting/system.py:569 +#: common/setting/system.py:561 msgid "Historical purchase order pricing overrides supplier price breaks" msgstr "" -#: common/setting/system.py:575 +#: common/setting/system.py:567 msgid "Use Stock Item Pricing" msgstr "" -#: common/setting/system.py:577 +#: common/setting/system.py:569 msgid "Use pricing from manually entered stock data for pricing calculations" msgstr "" -#: common/setting/system.py:583 +#: common/setting/system.py:575 msgid "Stock Item Pricing Age" msgstr "" -#: common/setting/system.py:585 +#: common/setting/system.py:577 msgid "Exclude stock items older than this number of days from pricing calculations" msgstr "" -#: common/setting/system.py:592 +#: common/setting/system.py:584 msgid "Use Variant Pricing" msgstr "" -#: common/setting/system.py:593 +#: common/setting/system.py:585 msgid "Include variant pricing in overall pricing calculations" msgstr "" -#: common/setting/system.py:598 +#: common/setting/system.py:590 msgid "Active Variants Only" msgstr "" -#: common/setting/system.py:600 +#: common/setting/system.py:592 msgid "Only use active variant parts for calculating variant pricing" msgstr "" -#: common/setting/system.py:606 +#: common/setting/system.py:598 msgid "Auto Update Pricing" msgstr "" -#: common/setting/system.py:608 +#: common/setting/system.py:600 msgid "Automatically update part pricing when internal data changes" msgstr "" -#: common/setting/system.py:614 +#: common/setting/system.py:606 msgid "Pricing Rebuild Interval" msgstr "" -#: common/setting/system.py:615 +#: common/setting/system.py:607 msgid "Number of days before part pricing is automatically updated" msgstr "" -#: common/setting/system.py:621 +#: common/setting/system.py:613 msgid "Internal Prices" msgstr "Ceny wewnętrzne" -#: common/setting/system.py:622 +#: common/setting/system.py:614 msgid "Enable internal prices for parts" msgstr "" -#: common/setting/system.py:627 +#: common/setting/system.py:619 msgid "Internal Price Override" msgstr "" -#: common/setting/system.py:629 +#: common/setting/system.py:621 msgid "If available, internal prices override price range calculations" msgstr "" -#: common/setting/system.py:635 +#: common/setting/system.py:627 msgid "Enable label printing" msgstr "Włącz drukowanie etykiet" -#: common/setting/system.py:636 +#: common/setting/system.py:628 msgid "Enable label printing from the web interface" msgstr "Włącz drukowanie etykiet z interfejsu WWW" -#: common/setting/system.py:641 +#: common/setting/system.py:633 msgid "Label Image DPI" msgstr "DPI etykiety" -#: common/setting/system.py:643 +#: common/setting/system.py:635 msgid "DPI resolution when generating image files to supply to label printing plugins" msgstr "" -#: common/setting/system.py:649 +#: common/setting/system.py:641 msgid "Enable Reports" msgstr "Włącz raporty" -#: common/setting/system.py:650 +#: common/setting/system.py:642 msgid "Enable generation of reports" msgstr "" -#: common/setting/system.py:655 +#: common/setting/system.py:647 msgid "Debug Mode" msgstr "Tryb Debugowania" -#: common/setting/system.py:656 +#: common/setting/system.py:648 msgid "Generate reports in debug mode (HTML output)" msgstr "" -#: common/setting/system.py:661 +#: common/setting/system.py:653 msgid "Log Report Errors" msgstr "" -#: common/setting/system.py:662 +#: common/setting/system.py:654 msgid "Log errors which occur when generating reports" msgstr "" -#: common/setting/system.py:667 plugin/builtin/labels/label_sheet.py:29 +#: common/setting/system.py:659 plugin/builtin/labels/label_sheet.py:29 #: report/models.py:381 msgid "Page Size" msgstr "Rozmiar strony" -#: common/setting/system.py:668 +#: common/setting/system.py:660 msgid "Default page size for PDF reports" msgstr "Domyślna wielkość strony dla raportów PDF" +#: common/setting/system.py:665 +msgid "Enforce Parameter Units" +msgstr "" + +#: common/setting/system.py:667 +msgid "If units are provided, parameter values must match the specified units" +msgstr "" + #: common/setting/system.py:673 msgid "Globally Unique Serials" msgstr "" @@ -3456,688 +3595,677 @@ msgid "Display PDF reports in the browser, instead of downloading as a file" msgstr "" #: common/setting/user.py:45 -msgid "Search Parts" -msgstr "Szukaj części" +msgid "Barcode Scanner in Form Fields" +msgstr "" #: common/setting/user.py:46 -msgid "Display parts in search preview window" +msgid "Allow barcode scanner input in form fields" msgstr "" #: common/setting/user.py:51 -msgid "Search Supplier Parts" -msgstr "" +msgid "Search Parts" +msgstr "Szukaj części" #: common/setting/user.py:52 -msgid "Display supplier parts in search preview window" +msgid "Display parts in search preview window" msgstr "" #: common/setting/user.py:57 -msgid "Search Manufacturer Parts" +msgid "Search Supplier Parts" msgstr "" #: common/setting/user.py:58 -msgid "Display manufacturer parts in search preview window" +msgid "Display supplier parts in search preview window" msgstr "" #: common/setting/user.py:63 -msgid "Hide Inactive Parts" -msgstr "Ukryj nieaktywne części" +msgid "Search Manufacturer Parts" +msgstr "" #: common/setting/user.py:64 -msgid "Excluded inactive parts from search preview window" +msgid "Display manufacturer parts in search preview window" msgstr "" #: common/setting/user.py:69 -msgid "Search Categories" -msgstr "" +msgid "Hide Inactive Parts" +msgstr "Ukryj nieaktywne części" #: common/setting/user.py:70 -msgid "Display part categories in search preview window" +msgid "Excluded inactive parts from search preview window" msgstr "" #: common/setting/user.py:75 -msgid "Search Stock" +msgid "Search Categories" msgstr "" #: common/setting/user.py:76 -msgid "Display stock items in search preview window" +msgid "Display part categories in search preview window" msgstr "" #: common/setting/user.py:81 +msgid "Search Stock" +msgstr "" + +#: common/setting/user.py:82 +msgid "Display stock items in search preview window" +msgstr "" + +#: common/setting/user.py:87 msgid "Hide Unavailable Stock Items" msgstr "" -#: common/setting/user.py:83 +#: common/setting/user.py:89 msgid "Exclude stock items which are not available from the search preview window" msgstr "" -#: common/setting/user.py:89 +#: common/setting/user.py:95 msgid "Search Locations" msgstr "" -#: common/setting/user.py:90 +#: common/setting/user.py:96 msgid "Display stock locations in search preview window" msgstr "" -#: common/setting/user.py:95 +#: common/setting/user.py:101 msgid "Search Companies" msgstr "" -#: common/setting/user.py:96 +#: common/setting/user.py:102 msgid "Display companies in search preview window" msgstr "" -#: common/setting/user.py:101 +#: common/setting/user.py:107 msgid "Search Build Orders" msgstr "" -#: common/setting/user.py:102 +#: common/setting/user.py:108 msgid "Display build orders in search preview window" msgstr "" -#: common/setting/user.py:107 +#: common/setting/user.py:113 msgid "Search Purchase Orders" msgstr "Wyszukaj zlecenia zakupu" -#: common/setting/user.py:108 +#: common/setting/user.py:114 msgid "Display purchase orders in search preview window" msgstr "" -#: common/setting/user.py:113 +#: common/setting/user.py:119 msgid "Exclude Inactive Purchase Orders" msgstr "Wyklucz nieaktywne zlecenia zakupu" -#: common/setting/user.py:114 +#: common/setting/user.py:120 msgid "Exclude inactive purchase orders from search preview window" msgstr "" -#: common/setting/user.py:119 +#: common/setting/user.py:125 msgid "Search Sales Orders" msgstr "" -#: common/setting/user.py:120 +#: common/setting/user.py:126 msgid "Display sales orders in search preview window" msgstr "" -#: common/setting/user.py:125 +#: common/setting/user.py:131 msgid "Exclude Inactive Sales Orders" msgstr "" -#: common/setting/user.py:126 +#: common/setting/user.py:132 msgid "Exclude inactive sales orders from search preview window" msgstr "" -#: common/setting/user.py:131 +#: common/setting/user.py:137 msgid "Search Sales Order Shipments" msgstr "" -#: common/setting/user.py:132 +#: common/setting/user.py:138 msgid "Display sales order shipments in search preview window" msgstr "" -#: common/setting/user.py:137 +#: common/setting/user.py:143 msgid "Search Return Orders" msgstr "" -#: common/setting/user.py:138 +#: common/setting/user.py:144 msgid "Display return orders in search preview window" msgstr "" -#: common/setting/user.py:143 +#: common/setting/user.py:149 msgid "Exclude Inactive Return Orders" msgstr "" -#: common/setting/user.py:144 +#: common/setting/user.py:150 msgid "Exclude inactive return orders from search preview window" msgstr "" -#: common/setting/user.py:149 +#: common/setting/user.py:155 msgid "Search Preview Results" msgstr "" -#: common/setting/user.py:151 +#: common/setting/user.py:157 msgid "Number of results to show in each section of the search preview window" msgstr "" -#: common/setting/user.py:157 +#: common/setting/user.py:163 msgid "Regex Search" msgstr "" -#: common/setting/user.py:158 +#: common/setting/user.py:164 msgid "Enable regular expressions in search queries" msgstr "" -#: common/setting/user.py:163 +#: common/setting/user.py:169 msgid "Whole Word Search" msgstr "" -#: common/setting/user.py:164 +#: common/setting/user.py:170 msgid "Search queries return results for whole word matches" msgstr "" -#: common/setting/user.py:169 +#: common/setting/user.py:175 msgid "Search Notes" msgstr "" -#: common/setting/user.py:171 +#: common/setting/user.py:177 msgid "Search queries return results for matches from the item's notes" msgstr "" -#: common/setting/user.py:177 +#: common/setting/user.py:183 msgid "Escape Key Closes Forms" msgstr "" -#: common/setting/user.py:178 +#: common/setting/user.py:184 msgid "Use the escape key to close modal forms" msgstr "" -#: common/setting/user.py:183 +#: common/setting/user.py:189 msgid "Fixed Navbar" msgstr "Stały pasek nawigacyjny" -#: common/setting/user.py:184 +#: common/setting/user.py:190 msgid "The navbar position is fixed to the top of the screen" msgstr "" -#: common/setting/user.py:189 +#: common/setting/user.py:195 msgid "Fixed Table Headers" msgstr "" -#: common/setting/user.py:190 +#: common/setting/user.py:196 msgid "Table headers are fixed to the top of the table" msgstr "" -#: common/setting/user.py:195 +#: common/setting/user.py:201 msgid "Show Spotlight" msgstr "" -#: common/setting/user.py:196 +#: common/setting/user.py:202 msgid "Enable spotlight navigation functionality" msgstr "" -#: common/setting/user.py:201 +#: common/setting/user.py:207 msgid "Navigation Icons" msgstr "" -#: common/setting/user.py:202 +#: common/setting/user.py:208 msgid "Display icons in the navigation bar" msgstr "" -#: common/setting/user.py:207 +#: common/setting/user.py:213 msgid "Date Format" msgstr "Format daty" -#: common/setting/user.py:208 +#: common/setting/user.py:214 msgid "Preferred format for displaying dates" msgstr "Preferowany format wyświetlania dat" -#: common/setting/user.py:221 +#: common/setting/user.py:227 msgid "Show Stock History" msgstr "" -#: common/setting/user.py:222 +#: common/setting/user.py:228 msgid "Display stock history information in the part detail page" msgstr "" -#: common/setting/user.py:227 +#: common/setting/user.py:233 msgid "Show Last Breadcrumb" msgstr "" -#: common/setting/user.py:228 +#: common/setting/user.py:234 msgid "Show the current page in breadcrumbs" msgstr "" -#: common/setting/user.py:233 +#: common/setting/user.py:239 msgid "Show full stock location in tables" msgstr "" -#: common/setting/user.py:235 +#: common/setting/user.py:241 msgid "Disabled: The full location path is displayed as a hover tooltip. Enabled: The full location path is displayed as plain text." msgstr "" -#: common/setting/user.py:241 +#: common/setting/user.py:247 msgid "Show full part categories in tables" msgstr "" -#: common/setting/user.py:243 +#: common/setting/user.py:249 msgid "Disabled: The full category path is displayed as a hover tooltip. Enabled: The full category path is displayed as plain text." msgstr "" -#: common/setting/user.py:249 +#: common/setting/user.py:255 msgid "Receive error reports" msgstr "" -#: common/setting/user.py:250 +#: common/setting/user.py:256 msgid "Receive notifications for system errors" msgstr "" -#: common/setting/user.py:255 +#: common/setting/user.py:261 msgid "Last used printing machines" msgstr "" -#: common/setting/user.py:256 +#: common/setting/user.py:262 msgid "Save the last used printing machines for a user" msgstr "" -#: common/validators.py:34 +#: common/validators.py:38 +msgid "All models" +msgstr "" + +#: common/validators.py:63 msgid "No attachment model type provided" msgstr "" -#: common/validators.py:40 +#: common/validators.py:69 msgid "Invalid attachment model type" msgstr "" -#: common/validators.py:81 +#: common/validators.py:110 msgid "Minimum places cannot be greater than maximum places" msgstr "" -#: common/validators.py:93 +#: common/validators.py:122 msgid "Maximum places cannot be less than minimum places" msgstr "" -#: common/validators.py:104 +#: common/validators.py:133 msgid "An empty domain is not allowed." msgstr "Pusta domena nie jest dozwolona." -#: common/validators.py:106 +#: common/validators.py:135 #, python-brace-format msgid "Invalid domain name: {domain}" msgstr "Niepoprawna nazwa domeny: {domain}" -#: common/validators.py:122 +#: common/validators.py:151 msgid "Value must be uppercase" msgstr "" -#: common/validators.py:128 +#: common/validators.py:157 msgid "Value must be a valid variable identifier" msgstr "" -#: company/api.py:147 +#: company/api.py:141 msgid "Part is Active" msgstr "Komponent jest aktywny" -#: company/api.py:151 +#: company/api.py:145 msgid "Manufacturer is Active" msgstr "Producent jest aktywny" -#: company/api.py:286 +#: company/api.py:246 msgid "Supplier Part is Active" msgstr "" -#: company/api.py:290 +#: company/api.py:250 msgid "Internal Part is Active" msgstr "" -#: company/api.py:295 +#: company/api.py:255 msgid "Supplier is Active" msgstr "" -#: company/api.py:307 company/models.py:520 company/serializers.py:457 -#: part/serializers.py:566 +#: company/api.py:267 company/models.py:522 company/serializers.py:502 +#: part/serializers.py:477 msgid "Manufacturer" msgstr "Producent" -#: company/api.py:314 company/models.py:121 company/models.py:392 +#: company/api.py:274 company/models.py:122 company/models.py:393 #: stock/api.py:900 msgid "Company" msgstr "Firma" -#: company/api.py:324 +#: company/api.py:284 msgid "Has Stock" msgstr "" -#: company/models.py:122 +#: company/models.py:123 msgid "Companies" msgstr "Firmy" -#: company/models.py:150 +#: company/models.py:151 msgid "Company description" msgstr "Opis firmy" -#: company/models.py:151 +#: company/models.py:152 msgid "Description of the company" msgstr "Opis firmy" -#: company/models.py:157 +#: company/models.py:158 msgid "Website" msgstr "Strona WWW" -#: company/models.py:158 +#: company/models.py:159 msgid "Company website URL" msgstr "Witryna internetowa firmy" -#: company/models.py:164 +#: company/models.py:165 msgid "Phone number" msgstr "Numer telefonu" -#: company/models.py:166 +#: company/models.py:167 msgid "Contact phone number" msgstr "Numer telefonu kontaktowego" -#: company/models.py:173 +#: company/models.py:174 msgid "Contact email address" msgstr "Kontaktowy adres e-mail" -#: company/models.py:178 company/models.py:296 order/models.py:513 +#: company/models.py:179 company/models.py:297 order/models.py:514 #: users/models.py:561 msgid "Contact" msgstr "Kontakt" -#: company/models.py:180 +#: company/models.py:181 msgid "Point of contact" msgstr "Punkt kontaktowy" -#: company/models.py:186 +#: company/models.py:187 msgid "Link to external company information" msgstr "Link do informacji o zewnętrznym przedsiębiorstwie" -#: company/models.py:191 +#: company/models.py:192 msgid "Is this company active?" msgstr "" -#: company/models.py:196 +#: company/models.py:197 msgid "Is customer" msgstr "" -#: company/models.py:197 +#: company/models.py:198 msgid "Do you sell items to this company?" msgstr "Czy sprzedajesz produkty tej firmie?" -#: company/models.py:202 +#: company/models.py:203 msgid "Is supplier" msgstr "" -#: company/models.py:203 +#: company/models.py:204 msgid "Do you purchase items from this company?" msgstr "Czy kupujesz przedmioty od tej firmy?" -#: company/models.py:208 +#: company/models.py:209 msgid "Is manufacturer" msgstr "" -#: company/models.py:209 +#: company/models.py:210 msgid "Does this company manufacture parts?" msgstr "Czy to przedsiębiorstwo produkuje części?" -#: company/models.py:217 +#: company/models.py:218 msgid "Default currency used for this company" msgstr "" -#: company/models.py:224 +#: company/models.py:225 msgid "Tax ID" msgstr "" -#: company/models.py:225 +#: company/models.py:226 msgid "Company Tax ID" msgstr "" -#: company/models.py:335 order/models.py:523 order/models.py:2288 +#: company/models.py:336 order/models.py:524 order/models.py:2289 msgid "Address" msgstr "Adres" -#: company/models.py:336 +#: company/models.py:337 msgid "Addresses" msgstr "" -#: company/models.py:393 +#: company/models.py:394 msgid "Select company" msgstr "" -#: company/models.py:398 +#: company/models.py:399 msgid "Address title" msgstr "" -#: company/models.py:399 +#: company/models.py:400 msgid "Title describing the address entry" msgstr "" -#: company/models.py:405 +#: company/models.py:406 msgid "Primary address" msgstr "" -#: company/models.py:406 +#: company/models.py:407 msgid "Set as primary address" msgstr "" -#: company/models.py:411 +#: company/models.py:412 msgid "Line 1" msgstr "" -#: company/models.py:412 +#: company/models.py:413 msgid "Address line 1" msgstr "" -#: company/models.py:418 +#: company/models.py:419 msgid "Line 2" msgstr "" -#: company/models.py:419 +#: company/models.py:420 msgid "Address line 2" msgstr "" -#: company/models.py:425 company/models.py:426 +#: company/models.py:426 company/models.py:427 msgid "Postal code" msgstr "" -#: company/models.py:432 +#: company/models.py:433 msgid "City/Region" msgstr "Miasto/Region" -#: company/models.py:433 +#: company/models.py:434 msgid "Postal code city/region" msgstr "Kod pocztowy miasto/region" -#: company/models.py:439 +#: company/models.py:440 msgid "State/Province" msgstr "Stan/Województwo" -#: company/models.py:440 +#: company/models.py:441 msgid "State or province" msgstr "Stan lub województwo" -#: company/models.py:446 +#: company/models.py:447 msgid "Country" msgstr "Kraj" -#: company/models.py:447 +#: company/models.py:448 msgid "Address country" msgstr "Kraj" -#: company/models.py:453 +#: company/models.py:454 msgid "Courier shipping notes" msgstr "Notatki przewozowe kuriera" -#: company/models.py:454 +#: company/models.py:455 msgid "Notes for shipping courier" msgstr "Notatki dla kuriera" -#: company/models.py:460 +#: company/models.py:461 msgid "Internal shipping notes" msgstr "Wewnętrzne notatki przewozowe" -#: company/models.py:461 +#: company/models.py:462 msgid "Shipping notes for internal use" msgstr "Notatki wysyłkowe do użytku wewnętrznego" -#: company/models.py:468 +#: company/models.py:469 msgid "Link to address information (external)" msgstr "" -#: company/models.py:492 company/models.py:609 company/models.py:832 -#: company/serializers.py:471 stock/api.py:561 +#: company/models.py:494 company/models.py:786 company/serializers.py:516 +#: stock/api.py:561 msgid "Manufacturer Part" msgstr "Komponent producenta" -#: company/models.py:509 company/models.py:800 stock/models.py:1025 +#: company/models.py:511 company/models.py:754 stock/models.py:1025 #: stock/serializers.py:407 msgid "Base Part" msgstr "Część bazowa" -#: company/models.py:511 company/models.py:802 +#: company/models.py:513 company/models.py:756 msgid "Select part" msgstr "Wybierz część" -#: company/models.py:521 +#: company/models.py:523 msgid "Select manufacturer" msgstr "Wybierz producenta" -#: company/models.py:527 company/serializers.py:479 order/serializers.py:734 -#: part/serializers.py:576 +#: company/models.py:529 company/serializers.py:524 order/serializers.py:745 +#: part/serializers.py:487 msgid "MPN" msgstr "" -#: company/models.py:528 stock/serializers.py:572 +#: company/models.py:530 stock/serializers.py:572 msgid "Manufacturer Part Number" msgstr "Numer producenta komponentu" -#: company/models.py:535 +#: company/models.py:537 msgid "URL for external manufacturer part link" msgstr "" -#: company/models.py:544 +#: company/models.py:546 msgid "Manufacturer part description" msgstr "" -#: company/models.py:597 -msgid "Manufacturer Part Parameter" -msgstr "" - -#: company/models.py:616 -msgid "Parameter name" -msgstr "Nazwa parametru" - -#: company/models.py:623 -msgid "Parameter value" -msgstr "Wartość parametru" - -#: company/models.py:630 part/models.py:1195 part/models.py:3857 -msgid "Units" -msgstr "Jednostki" - -#: company/models.py:631 -msgid "Parameter units" -msgstr "Jednostki parametru" - -#: company/models.py:740 +#: company/models.py:694 msgid "Pack units must be compatible with the base part units" msgstr "" -#: company/models.py:747 +#: company/models.py:701 msgid "Pack units must be greater than zero" msgstr "" -#: company/models.py:761 +#: company/models.py:715 msgid "Linked manufacturer part must reference the same base part" msgstr "" -#: company/models.py:810 company/serializers.py:449 company/serializers.py:467 -#: order/models.py:639 part/serializers.py:550 +#: company/models.py:764 company/serializers.py:494 company/serializers.py:512 +#: order/models.py:640 part/serializers.py:461 #: plugin/builtin/suppliers/digikey.py:26 plugin/builtin/suppliers/lcsc.py:27 #: plugin/builtin/suppliers/mouser.py:25 plugin/builtin/suppliers/tme.py:27 #: stock/api.py:567 templates/email/overdue_purchase_order.html:16 msgid "Supplier" msgstr "Dostawca" -#: company/models.py:811 +#: company/models.py:765 msgid "Select supplier" msgstr "Wybierz dostawcę" -#: company/models.py:817 part/serializers.py:561 +#: company/models.py:771 part/serializers.py:472 msgid "Supplier stock keeping unit" msgstr "" -#: company/models.py:823 +#: company/models.py:777 msgid "Is this supplier part active?" msgstr "" -#: company/models.py:833 +#: company/models.py:787 msgid "Select manufacturer part" msgstr "" -#: company/models.py:840 +#: company/models.py:794 msgid "URL for external supplier part link" msgstr "" -#: company/models.py:849 +#: company/models.py:803 msgid "Supplier part description" msgstr "" -#: company/models.py:856 order/serializers.py:883 order/serializers.py:2047 -#: part/models.py:4070 part/models.py:4450 part/models.py:4819 -#: report/templates/report/inventree_bill_of_materials_report.html:140 -#: report/templates/report/inventree_purchase_order_report.html:39 -#: report/templates/report/inventree_return_order_report.html:27 -#: report/templates/report/inventree_sales_order_report.html:32 -#: report/templates/report/inventree_stock_location_report.html:105 -#: stock/serializers.py:813 -msgid "Note" -msgstr "Uwaga" - -#: company/models.py:865 part/models.py:2250 +#: company/models.py:819 part/models.py:2338 msgid "base cost" msgstr "koszt podstawowy" -#: company/models.py:866 part/models.py:2251 +#: company/models.py:820 part/models.py:2339 msgid "Minimum charge (e.g. stocking fee)" msgstr "" -#: company/models.py:873 order/serializers.py:875 stock/models.py:1056 +#: company/models.py:827 order/serializers.py:886 stock/models.py:1056 #: stock/serializers.py:1606 msgid "Packaging" msgstr "Opakowanie" -#: company/models.py:874 +#: company/models.py:828 msgid "Part packaging" msgstr "Opakowanie części" -#: company/models.py:879 +#: company/models.py:833 msgid "Pack Quantity" msgstr "Ilość w opakowaniu" -#: company/models.py:881 +#: company/models.py:835 msgid "Total quantity supplied in a single pack. Leave empty for single items." msgstr "" -#: company/models.py:900 part/models.py:2257 +#: company/models.py:854 part/models.py:2345 msgid "multiple" msgstr "wielokrotność" -#: company/models.py:901 +#: company/models.py:855 msgid "Order multiple" msgstr "Zamów wiele" -#: company/models.py:913 +#: company/models.py:867 msgid "Quantity available from supplier" msgstr "" -#: company/models.py:919 +#: company/models.py:873 msgid "Availability Updated" msgstr "Dostępność zaktualizowana" -#: company/models.py:920 +#: company/models.py:874 msgid "Date of last update of availability data" msgstr "" -#: company/models.py:1048 +#: company/models.py:1002 msgid "Supplier Price Break" msgstr "" -#: company/serializers.py:181 +#: company/serializers.py:184 +msgid "Primary Address" +msgstr "" + +#: company/serializers.py:186 msgid "Return the string representation for the primary address. This property exists for backwards compatibility." msgstr "" -#: company/serializers.py:212 +#: company/serializers.py:218 msgid "Default currency used for this supplier" msgstr "Domyślna waluta używana dla tego dostawcy" -#: company/serializers.py:248 +#: company/serializers.py:260 msgid "Company Name" msgstr "" -#: company/serializers.py:433 part/serializers.py:955 stock/serializers.py:428 +#: company/serializers.py:460 part/serializers.py:840 stock/serializers.py:428 msgid "In Stock" msgstr "Na stanie" +#: company/serializers.py:477 +msgid "Price Breaks" +msgstr "" + #: data_exporter/mixins.py:325 data_exporter/mixins.py:403 msgid "Error occurred during data export" msgstr "" @@ -4290,7 +4418,7 @@ msgstr "" msgid "Errors" msgstr "" -#: importer/models.py:550 part/serializers.py:1268 +#: importer/models.py:550 part/serializers.py:1133 msgid "Valid" msgstr "Ważny" @@ -4402,7 +4530,7 @@ msgstr "Liczba kopii do wydrukowania dla każdej etykiety" msgid "Connected" msgstr "Połączono" -#: machine/machine_types/label_printer.py:232 order/api.py:1795 +#: machine/machine_types/label_printer.py:232 order/api.py:1800 msgid "Unknown" msgstr "Nieznany" @@ -4530,105 +4658,105 @@ msgstr "" msgid "Maximum value for progress type, required if type=progress" msgstr "" -#: order/api.py:125 +#: order/api.py:130 msgid "Order Reference" msgstr "Numer zamówienia" -#: order/api.py:153 order/api.py:1207 +#: order/api.py:158 order/api.py:1212 msgid "Outstanding" msgstr "" -#: order/api.py:169 +#: order/api.py:174 msgid "Has Project Code" msgstr "" -#: order/api.py:183 order/models.py:488 +#: order/api.py:188 order/models.py:489 msgid "Created By" msgstr "Utworzony przez" -#: order/api.py:187 +#: order/api.py:192 msgid "Created Before" msgstr "" -#: order/api.py:191 +#: order/api.py:196 msgid "Created After" msgstr "" -#: order/api.py:195 +#: order/api.py:200 msgid "Has Start Date" msgstr "" -#: order/api.py:203 +#: order/api.py:208 msgid "Start Date Before" msgstr "" -#: order/api.py:207 +#: order/api.py:212 msgid "Start Date After" msgstr "" -#: order/api.py:211 +#: order/api.py:216 msgid "Has Target Date" msgstr "" -#: order/api.py:219 +#: order/api.py:224 msgid "Target Date Before" msgstr "" -#: order/api.py:223 +#: order/api.py:228 msgid "Target Date After" msgstr "" -#: order/api.py:274 +#: order/api.py:279 msgid "Has Pricing" msgstr "Posiada ceny" -#: order/api.py:327 order/api.py:812 order/api.py:1490 +#: order/api.py:332 order/api.py:818 order/api.py:1495 msgid "Completed Before" msgstr "" -#: order/api.py:331 order/api.py:816 order/api.py:1494 +#: order/api.py:336 order/api.py:822 order/api.py:1499 msgid "Completed After" msgstr "" -#: order/api.py:337 order/api.py:341 +#: order/api.py:342 order/api.py:346 msgid "External Build Order" msgstr "" -#: order/api.py:526 order/api.py:914 order/api.py:1170 order/models.py:1922 -#: order/models.py:2049 order/models.py:2099 order/models.py:2279 -#: order/models.py:2477 order/models.py:2999 order/models.py:3065 +#: order/api.py:532 order/api.py:919 order/api.py:1175 order/models.py:1923 +#: order/models.py:2050 order/models.py:2100 order/models.py:2280 +#: order/models.py:2478 order/models.py:3000 order/models.py:3066 msgid "Order" msgstr "Zamówienie" -#: order/api.py:530 order/api.py:982 +#: order/api.py:536 order/api.py:987 msgid "Order Complete" msgstr "" -#: order/api.py:562 order/api.py:566 order/serializers.py:745 +#: order/api.py:568 order/api.py:572 order/serializers.py:756 msgid "Internal Part" msgstr "Komponent wewnętrzny" -#: order/api.py:584 +#: order/api.py:590 msgid "Order Pending" msgstr "Zamówienie oczekujące" -#: order/api.py:967 +#: order/api.py:972 msgid "Completed" msgstr "Zakończone" -#: order/api.py:1223 +#: order/api.py:1228 msgid "Has Shipment" msgstr "" -#: order/api.py:1789 order/models.py:552 order/models.py:1923 -#: order/models.py:2050 +#: order/api.py:1794 order/models.py:553 order/models.py:1924 +#: order/models.py:2051 #: report/templates/report/inventree_purchase_order_report.html:14 #: stock/serializers.py:129 templates/email/overdue_purchase_order.html:15 msgid "Purchase Order" msgstr "Zlecenie zakupu" -#: order/api.py:1791 order/models.py:1251 order/models.py:2100 -#: order/models.py:2280 order/models.py:2478 +#: order/api.py:1796 order/models.py:1252 order/models.py:2101 +#: order/models.py:2281 order/models.py:2479 #: report/templates/report/inventree_build_order_report.html:135 #: report/templates/report/inventree_sales_order_report.html:14 #: report/templates/report/inventree_sales_order_shipment_report.html:15 @@ -4636,8 +4764,8 @@ msgstr "Zlecenie zakupu" msgid "Sales Order" msgstr "Zamówienie zakupu" -#: order/api.py:1793 order/models.py:2649 order/models.py:3000 -#: order/models.py:3066 +#: order/api.py:1798 order/models.py:2650 order/models.py:3001 +#: order/models.py:3067 #: report/templates/report/inventree_return_order_report.html:13 #: templates/email/overdue_return_order.html:15 msgid "Return Order" @@ -4653,722 +4781,722 @@ msgstr "Cena całkowita" msgid "Total price for this order" msgstr "" -#: order/models.py:96 order/serializers.py:77 +#: order/models.py:96 order/serializers.py:78 msgid "Order Currency" msgstr "" -#: order/models.py:99 order/serializers.py:78 +#: order/models.py:99 order/serializers.py:79 msgid "Currency for this order (leave blank to use company default)" msgstr "" -#: order/models.py:324 +#: order/models.py:325 msgid "This order is locked and cannot be modified" msgstr "" -#: order/models.py:376 +#: order/models.py:377 msgid "Contact does not match selected company" msgstr "" -#: order/models.py:383 +#: order/models.py:384 msgid "Start date must be before target date" msgstr "" -#: order/models.py:390 +#: order/models.py:391 msgid "Address does not match selected company" msgstr "" -#: order/models.py:443 +#: order/models.py:444 msgid "Order description (optional)" msgstr "" -#: order/models.py:452 order/models.py:1806 +#: order/models.py:453 order/models.py:1807 msgid "Select project code for this order" msgstr "" -#: order/models.py:458 order/models.py:1787 order/models.py:2344 +#: order/models.py:459 order/models.py:1788 order/models.py:2345 msgid "Link to external page" msgstr "Link do zewnętrznej witryny" -#: order/models.py:465 +#: order/models.py:466 msgid "Start date" msgstr "" -#: order/models.py:466 +#: order/models.py:467 msgid "Scheduled start date for this order" msgstr "" -#: order/models.py:472 order/models.py:1794 order/serializers.py:309 +#: order/models.py:473 order/models.py:1795 order/serializers.py:317 #: report/templates/report/inventree_build_order_report.html:125 msgid "Target Date" msgstr "Data docelowa" -#: order/models.py:474 +#: order/models.py:475 msgid "Expected date for order delivery. Order will be overdue after this date." msgstr "" -#: order/models.py:494 +#: order/models.py:495 msgid "Issue Date" msgstr "Data wydania" -#: order/models.py:495 +#: order/models.py:496 msgid "Date order was issued" msgstr "Data wystawienia zamówienia" -#: order/models.py:503 +#: order/models.py:504 msgid "User or group responsible for this order" msgstr "Użytkownik lub grupa odpowiedzialna za to zamówienie" -#: order/models.py:514 +#: order/models.py:515 msgid "Point of contact for this order" msgstr "" -#: order/models.py:524 +#: order/models.py:525 msgid "Company address for this order" msgstr "" -#: order/models.py:615 order/models.py:1312 +#: order/models.py:616 order/models.py:1313 msgid "Order reference" msgstr "Odniesienie zamówienia" -#: order/models.py:624 order/models.py:1336 order/models.py:2737 +#: order/models.py:625 order/models.py:1337 order/models.py:2738 #: stock/serializers.py:559 stock/serializers.py:988 users/models.py:542 msgid "Status" msgstr "Status" -#: order/models.py:625 +#: order/models.py:626 msgid "Purchase order status" msgstr "Status zamówienia zakupu" -#: order/models.py:640 +#: order/models.py:641 msgid "Company from which the items are being ordered" msgstr "" -#: order/models.py:651 +#: order/models.py:652 msgid "Supplier Reference" msgstr "" -#: order/models.py:652 +#: order/models.py:653 msgid "Supplier order reference code" msgstr "" -#: order/models.py:661 +#: order/models.py:662 msgid "received by" msgstr "odebrane przez" -#: order/models.py:668 order/models.py:2752 +#: order/models.py:669 order/models.py:2753 msgid "Date order was completed" msgstr "" -#: order/models.py:677 order/models.py:1981 +#: order/models.py:678 order/models.py:1982 msgid "Destination" msgstr "Przeznaczenie" -#: order/models.py:678 order/models.py:1985 +#: order/models.py:679 order/models.py:1986 msgid "Destination for received items" msgstr "" -#: order/models.py:724 +#: order/models.py:725 msgid "Part supplier must match PO supplier" msgstr "" -#: order/models.py:994 +#: order/models.py:995 msgid "Line item does not match purchase order" msgstr "Pozycja nie pasuje do zlecenia zakupu" -#: order/models.py:997 +#: order/models.py:998 msgid "Line item is missing a linked part" msgstr "" -#: order/models.py:1011 +#: order/models.py:1012 msgid "Quantity must be a positive number" msgstr "Wartość musi być liczbą dodatnią" -#: order/models.py:1323 order/models.py:2724 stock/models.py:1078 +#: order/models.py:1324 order/models.py:2725 stock/models.py:1078 #: stock/models.py:1079 stock/serializers.py:1322 #: templates/email/overdue_return_order.html:16 #: templates/email/overdue_sales_order.html:16 msgid "Customer" msgstr "Klient" -#: order/models.py:1324 +#: order/models.py:1325 msgid "Company to which the items are being sold" msgstr "" -#: order/models.py:1337 +#: order/models.py:1338 msgid "Sales order status" msgstr "" -#: order/models.py:1348 order/models.py:2744 +#: order/models.py:1349 order/models.py:2745 msgid "Customer Reference " msgstr "" -#: order/models.py:1349 order/models.py:2745 +#: order/models.py:1350 order/models.py:2746 msgid "Customer order reference code" msgstr "" -#: order/models.py:1353 order/models.py:2296 +#: order/models.py:1354 order/models.py:2297 msgid "Shipment Date" msgstr "Data wysyłki" -#: order/models.py:1362 +#: order/models.py:1363 msgid "shipped by" msgstr "wysłane przez" -#: order/models.py:1413 +#: order/models.py:1414 msgid "Order is already complete" msgstr "" -#: order/models.py:1416 +#: order/models.py:1417 msgid "Order is already cancelled" msgstr "" -#: order/models.py:1420 +#: order/models.py:1421 msgid "Only an open order can be marked as complete" msgstr "" -#: order/models.py:1424 +#: order/models.py:1425 msgid "Order cannot be completed as there are incomplete shipments" msgstr "" -#: order/models.py:1429 +#: order/models.py:1430 msgid "Order cannot be completed as there are incomplete allocations" msgstr "" -#: order/models.py:1438 +#: order/models.py:1439 msgid "Order cannot be completed as there are incomplete line items" msgstr "" -#: order/models.py:1733 order/models.py:1749 +#: order/models.py:1734 order/models.py:1750 msgid "The order is locked and cannot be modified" msgstr "" -#: order/models.py:1757 +#: order/models.py:1758 msgid "Item quantity" msgstr "Ilość elementów" -#: order/models.py:1774 +#: order/models.py:1775 msgid "Line item reference" msgstr "" -#: order/models.py:1781 +#: order/models.py:1782 msgid "Line item notes" msgstr "" -#: order/models.py:1796 +#: order/models.py:1797 msgid "Target date for this line item (leave blank to use the target date from the order)" msgstr "" -#: order/models.py:1826 +#: order/models.py:1827 msgid "Line item description (optional)" msgstr "" -#: order/models.py:1833 +#: order/models.py:1834 msgid "Additional context for this line" msgstr "" -#: order/models.py:1843 +#: order/models.py:1844 msgid "Unit price" msgstr "" -#: order/models.py:1862 +#: order/models.py:1863 msgid "Purchase Order Line Item" msgstr "" -#: order/models.py:1889 +#: order/models.py:1890 msgid "Supplier part must match supplier" msgstr "" -#: order/models.py:1894 +#: order/models.py:1895 msgid "Build order must be marked as external" msgstr "" -#: order/models.py:1901 +#: order/models.py:1902 msgid "Build orders can only be linked to assembly parts" msgstr "" -#: order/models.py:1907 +#: order/models.py:1908 msgid "Build order part must match line item part" msgstr "" -#: order/models.py:1942 +#: order/models.py:1943 msgid "Supplier part" msgstr "" -#: order/models.py:1949 +#: order/models.py:1950 msgid "Received" msgstr "Odebrane" -#: order/models.py:1950 +#: order/models.py:1951 msgid "Number of items received" msgstr "" -#: order/models.py:1958 stock/models.py:1201 stock/serializers.py:637 +#: order/models.py:1959 stock/models.py:1201 stock/serializers.py:637 msgid "Purchase Price" msgstr "Cena zakupu" -#: order/models.py:1959 +#: order/models.py:1960 msgid "Unit purchase price" msgstr "Cena zakupu jednostkowego" -#: order/models.py:1975 +#: order/models.py:1976 msgid "External Build Order to be fulfilled by this line item" msgstr "" -#: order/models.py:2038 +#: order/models.py:2039 msgid "Purchase Order Extra Line" msgstr "" -#: order/models.py:2067 +#: order/models.py:2068 msgid "Sales Order Line Item" msgstr "" -#: order/models.py:2092 +#: order/models.py:2093 msgid "Only salable parts can be assigned to a sales order" msgstr "" -#: order/models.py:2118 +#: order/models.py:2119 msgid "Sale Price" msgstr "Cena sprzedaży" -#: order/models.py:2119 +#: order/models.py:2120 msgid "Unit sale price" msgstr "Jednostkowa cena sprzedaży" -#: order/models.py:2128 order/status_codes.py:50 +#: order/models.py:2129 order/status_codes.py:50 msgid "Shipped" msgstr "Wysłane" -#: order/models.py:2129 +#: order/models.py:2130 msgid "Shipped quantity" msgstr "Wysłana ilość" -#: order/models.py:2240 +#: order/models.py:2241 msgid "Sales Order Shipment" msgstr "" -#: order/models.py:2253 +#: order/models.py:2254 msgid "Shipment address must match the customer" msgstr "" -#: order/models.py:2289 +#: order/models.py:2290 msgid "Shipping address for this shipment" msgstr "" -#: order/models.py:2297 +#: order/models.py:2298 msgid "Date of shipment" msgstr "Data wysyłki" -#: order/models.py:2303 +#: order/models.py:2304 msgid "Delivery Date" msgstr "" -#: order/models.py:2304 +#: order/models.py:2305 msgid "Date of delivery of shipment" msgstr "" -#: order/models.py:2312 +#: order/models.py:2313 msgid "Checked By" msgstr "Sprawdzone przez" -#: order/models.py:2313 +#: order/models.py:2314 msgid "User who checked this shipment" msgstr "Użytkownik, który sprawdził tę wysyłkę" -#: order/models.py:2320 order/models.py:2574 order/serializers.py:1711 -#: order/serializers.py:1835 +#: order/models.py:2321 order/models.py:2575 order/serializers.py:1725 +#: order/serializers.py:1849 #: report/templates/report/inventree_sales_order_shipment_report.html:14 msgid "Shipment" msgstr "Przesyłka" -#: order/models.py:2321 +#: order/models.py:2322 msgid "Shipment number" msgstr "Numer przesyłki" -#: order/models.py:2329 +#: order/models.py:2330 msgid "Tracking Number" msgstr "Numer śledzenia" -#: order/models.py:2330 +#: order/models.py:2331 msgid "Shipment tracking information" msgstr "Informacje o śledzeniu przesyłki" -#: order/models.py:2337 +#: order/models.py:2338 msgid "Invoice Number" msgstr "" -#: order/models.py:2338 +#: order/models.py:2339 msgid "Reference number for associated invoice" msgstr "" -#: order/models.py:2377 +#: order/models.py:2378 msgid "Shipment has already been sent" msgstr "Przesyłka została już wysłana" -#: order/models.py:2380 +#: order/models.py:2381 msgid "Shipment has no allocated stock items" msgstr "" -#: order/models.py:2387 +#: order/models.py:2388 msgid "Shipment must be checked before it can be completed" msgstr "" -#: order/models.py:2466 +#: order/models.py:2467 msgid "Sales Order Extra Line" msgstr "" -#: order/models.py:2495 +#: order/models.py:2496 msgid "Sales Order Allocation" msgstr "" -#: order/models.py:2518 order/models.py:2520 +#: order/models.py:2519 order/models.py:2521 msgid "Stock item has not been assigned" msgstr "" -#: order/models.py:2527 +#: order/models.py:2528 msgid "Cannot allocate stock item to a line with a different part" msgstr "" -#: order/models.py:2530 +#: order/models.py:2531 msgid "Cannot allocate stock to a line without a part" msgstr "" -#: order/models.py:2533 +#: order/models.py:2534 msgid "Allocation quantity cannot exceed stock quantity" msgstr "Zarezerwowana ilość nie może przekraczać ilości na stanie" -#: order/models.py:2552 order/serializers.py:1581 +#: order/models.py:2553 order/serializers.py:1595 msgid "Quantity must be 1 for serialized stock item" msgstr "" -#: order/models.py:2555 +#: order/models.py:2556 msgid "Sales order does not match shipment" msgstr "" -#: order/models.py:2556 plugin/base/barcodes/api.py:642 +#: order/models.py:2557 plugin/base/barcodes/api.py:642 msgid "Shipment does not match sales order" msgstr "" -#: order/models.py:2564 +#: order/models.py:2565 msgid "Line" msgstr "Linia" -#: order/models.py:2575 +#: order/models.py:2576 msgid "Sales order shipment reference" msgstr "" -#: order/models.py:2588 order/models.py:3007 +#: order/models.py:2589 order/models.py:3008 msgid "Item" msgstr "Komponent" -#: order/models.py:2589 +#: order/models.py:2590 msgid "Select stock item to allocate" msgstr "" -#: order/models.py:2598 +#: order/models.py:2599 msgid "Enter stock allocation quantity" msgstr "" -#: order/models.py:2713 +#: order/models.py:2714 msgid "Return Order reference" msgstr "" -#: order/models.py:2725 +#: order/models.py:2726 msgid "Company from which items are being returned" msgstr "" -#: order/models.py:2738 +#: order/models.py:2739 msgid "Return order status" msgstr "" -#: order/models.py:2965 +#: order/models.py:2966 msgid "Return Order Line Item" msgstr "" -#: order/models.py:2978 +#: order/models.py:2979 msgid "Stock item must be specified" msgstr "" -#: order/models.py:2982 +#: order/models.py:2983 msgid "Return quantity exceeds stock quantity" msgstr "" -#: order/models.py:2987 +#: order/models.py:2988 msgid "Return quantity must be greater than zero" msgstr "" -#: order/models.py:2992 +#: order/models.py:2993 msgid "Invalid quantity for serialized stock item" msgstr "" -#: order/models.py:3008 +#: order/models.py:3009 msgid "Select item to return from customer" msgstr "" -#: order/models.py:3023 +#: order/models.py:3024 msgid "Received Date" msgstr "" -#: order/models.py:3024 +#: order/models.py:3025 msgid "The date this this return item was received" msgstr "" -#: order/models.py:3036 +#: order/models.py:3037 msgid "Outcome" msgstr "" -#: order/models.py:3037 +#: order/models.py:3038 msgid "Outcome for this line item" msgstr "" -#: order/models.py:3044 +#: order/models.py:3045 msgid "Cost associated with return or repair for this line item" msgstr "" -#: order/models.py:3054 +#: order/models.py:3055 msgid "Return Order Extra Line" msgstr "" -#: order/serializers.py:91 +#: order/serializers.py:92 msgid "Order ID" msgstr "" -#: order/serializers.py:91 +#: order/serializers.py:92 msgid "ID of the order to duplicate" msgstr "" -#: order/serializers.py:97 +#: order/serializers.py:98 msgid "Copy Lines" msgstr "" -#: order/serializers.py:98 +#: order/serializers.py:99 msgid "Copy line items from the original order" msgstr "" -#: order/serializers.py:104 +#: order/serializers.py:105 msgid "Copy Extra Lines" msgstr "" -#: order/serializers.py:105 +#: order/serializers.py:106 msgid "Copy extra line items from the original order" msgstr "" -#: order/serializers.py:120 +#: order/serializers.py:121 #: report/templates/report/inventree_purchase_order_report.html:29 #: report/templates/report/inventree_return_order_report.html:19 #: report/templates/report/inventree_sales_order_report.html:22 msgid "Line Items" msgstr "" -#: order/serializers.py:125 +#: order/serializers.py:126 msgid "Completed Lines" msgstr "" -#: order/serializers.py:192 +#: order/serializers.py:199 msgid "Duplicate Order" msgstr "" -#: order/serializers.py:193 +#: order/serializers.py:200 msgid "Specify options for duplicating this order" msgstr "" -#: order/serializers.py:270 +#: order/serializers.py:278 msgid "Invalid order ID" msgstr "" -#: order/serializers.py:466 +#: order/serializers.py:477 msgid "Supplier Name" msgstr "" -#: order/serializers.py:510 +#: order/serializers.py:521 msgid "Order cannot be cancelled" msgstr "Zamówienie nie może zostać anulowane" -#: order/serializers.py:525 order/serializers.py:1602 +#: order/serializers.py:536 order/serializers.py:1616 msgid "Allow order to be closed with incomplete line items" msgstr "" -#: order/serializers.py:535 order/serializers.py:1612 +#: order/serializers.py:546 order/serializers.py:1626 msgid "Order has incomplete line items" msgstr "" -#: order/serializers.py:665 +#: order/serializers.py:676 msgid "Order is not open" msgstr "" -#: order/serializers.py:692 +#: order/serializers.py:703 msgid "Auto Pricing" msgstr "" -#: order/serializers.py:694 +#: order/serializers.py:705 msgid "Automatically calculate purchase price based on supplier part data" msgstr "" -#: order/serializers.py:704 +#: order/serializers.py:715 msgid "Purchase price currency" msgstr "" -#: order/serializers.py:718 +#: order/serializers.py:729 msgid "Merge Items" msgstr "" -#: order/serializers.py:720 +#: order/serializers.py:731 msgid "Merge items with the same part, destination and target date into one line item" msgstr "" -#: order/serializers.py:727 part/serializers.py:560 +#: order/serializers.py:738 part/serializers.py:471 msgid "SKU" msgstr "" -#: order/serializers.py:741 part/models.py:1089 part/serializers.py:372 +#: order/serializers.py:752 part/models.py:1177 part/serializers.py:337 msgid "Internal Part Number" msgstr "" -#: order/serializers.py:749 +#: order/serializers.py:760 msgid "Internal Part Name" msgstr "" -#: order/serializers.py:765 +#: order/serializers.py:776 msgid "Supplier part must be specified" msgstr "" -#: order/serializers.py:768 +#: order/serializers.py:779 msgid "Purchase order must be specified" msgstr "Zlecenie zakupu musi być określone" -#: order/serializers.py:776 +#: order/serializers.py:787 msgid "Supplier must match purchase order" msgstr "Dostawca musi być zgodny ze zleceniem zakupu" -#: order/serializers.py:777 +#: order/serializers.py:788 msgid "Purchase order must match supplier" msgstr "Zlecenie zakupu musi być zgodne z dostawcą" -#: order/serializers.py:825 order/serializers.py:1682 +#: order/serializers.py:836 order/serializers.py:1696 msgid "Line Item" msgstr "" -#: order/serializers.py:834 order/serializers.py:974 order/serializers.py:2043 +#: order/serializers.py:845 order/serializers.py:985 order/serializers.py:2060 msgid "Select destination location for received items" msgstr "" -#: order/serializers.py:850 +#: order/serializers.py:861 msgid "Enter batch code for incoming stock items" msgstr "" -#: order/serializers.py:857 stock/models.py:1160 +#: order/serializers.py:868 stock/models.py:1160 #: templates/email/stale_stock_notification.html:22 users/models.py:137 msgid "Expiry Date" msgstr "Data ważności" -#: order/serializers.py:858 +#: order/serializers.py:869 msgid "Enter expiry date for incoming stock items" msgstr "" -#: order/serializers.py:866 +#: order/serializers.py:877 msgid "Enter serial numbers for incoming stock items" msgstr "" -#: order/serializers.py:876 +#: order/serializers.py:887 msgid "Override packaging information for incoming stock items" msgstr "" -#: order/serializers.py:884 order/serializers.py:2048 +#: order/serializers.py:895 order/serializers.py:2065 msgid "Additional note for incoming stock items" msgstr "" -#: order/serializers.py:891 +#: order/serializers.py:902 msgid "Barcode" msgstr "Kod kreskowy" -#: order/serializers.py:892 +#: order/serializers.py:903 msgid "Scanned barcode" msgstr "" -#: order/serializers.py:908 +#: order/serializers.py:919 msgid "Barcode is already in use" msgstr "" -#: order/serializers.py:991 order/serializers.py:2067 +#: order/serializers.py:1002 order/serializers.py:2084 msgid "Line items must be provided" msgstr "" -#: order/serializers.py:1010 +#: order/serializers.py:1021 msgid "Destination location must be specified" msgstr "" -#: order/serializers.py:1017 +#: order/serializers.py:1028 msgid "Supplied barcode values must be unique" msgstr "" -#: order/serializers.py:1121 +#: order/serializers.py:1135 msgid "Shipments" msgstr "" -#: order/serializers.py:1125 +#: order/serializers.py:1139 msgid "Completed Shipments" msgstr "" -#: order/serializers.py:1293 +#: order/serializers.py:1307 msgid "Sale price currency" msgstr "" -#: order/serializers.py:1339 +#: order/serializers.py:1353 msgid "Allocated Items" msgstr "" -#: order/serializers.py:1484 +#: order/serializers.py:1498 msgid "No shipment details provided" msgstr "" -#: order/serializers.py:1545 order/serializers.py:1691 +#: order/serializers.py:1559 order/serializers.py:1705 msgid "Line item is not associated with this order" msgstr "" -#: order/serializers.py:1564 +#: order/serializers.py:1578 msgid "Quantity must be positive" msgstr "" -#: order/serializers.py:1701 +#: order/serializers.py:1715 msgid "Enter serial numbers to allocate" msgstr "" -#: order/serializers.py:1723 order/serializers.py:1843 +#: order/serializers.py:1737 order/serializers.py:1857 msgid "Shipment has already been shipped" msgstr "" -#: order/serializers.py:1726 order/serializers.py:1846 +#: order/serializers.py:1740 order/serializers.py:1860 msgid "Shipment is not associated with this order" msgstr "" -#: order/serializers.py:1781 +#: order/serializers.py:1795 msgid "No match found for the following serial numbers" msgstr "" -#: order/serializers.py:1788 +#: order/serializers.py:1802 msgid "The following serial numbers are unavailable" msgstr "" -#: order/serializers.py:2009 +#: order/serializers.py:2026 msgid "Return order line item" msgstr "" -#: order/serializers.py:2019 +#: order/serializers.py:2036 msgid "Line item does not match return order" msgstr "" -#: order/serializers.py:2022 +#: order/serializers.py:2039 msgid "Line item has already been received" msgstr "" -#: order/serializers.py:2059 +#: order/serializers.py:2076 msgid "Items can only be received against orders which are in progress" msgstr "" -#: order/serializers.py:2124 +#: order/serializers.py:2141 msgid "Quantity to return" msgstr "" -#: order/serializers.py:2140 +#: order/serializers.py:2157 msgid "Line price currency" msgstr "" @@ -5431,1190 +5559,1109 @@ msgstr "" msgid "Return order {ro} is now overdue" msgstr "" -#: part/api.py:108 +#: part/api.py:103 msgid "Starred" msgstr "" -#: part/api.py:110 +#: part/api.py:105 msgid "Filter by starred categories" msgstr "" -#: part/api.py:127 stock/api.py:288 +#: part/api.py:122 stock/api.py:288 msgid "Depth" msgstr "" -#: part/api.py:127 +#: part/api.py:122 msgid "Filter by category depth" msgstr "" -#: part/api.py:145 stock/api.py:306 +#: part/api.py:140 stock/api.py:306 msgid "Top Level" msgstr "" -#: part/api.py:147 +#: part/api.py:142 msgid "Filter by top-level categories" msgstr "" -#: part/api.py:160 stock/api.py:321 +#: part/api.py:155 stock/api.py:321 msgid "Cascade" msgstr "" -#: part/api.py:162 +#: part/api.py:157 msgid "Include sub-categories in filtered results" msgstr "" -#: part/api.py:182 +#: part/api.py:177 msgid "Parent" msgstr "" -#: part/api.py:184 +#: part/api.py:179 msgid "Filter by parent category" msgstr "" -#: part/api.py:219 +#: part/api.py:214 msgid "Exclude sub-categories under the specified category" msgstr "" -#: part/api.py:445 +#: part/api.py:440 msgid "Has Results" msgstr "" -#: part/api.py:666 +#: part/api.py:661 msgid "Is Variant" msgstr "" -#: part/api.py:674 +#: part/api.py:669 msgid "Is Revision" msgstr "" -#: part/api.py:684 +#: part/api.py:679 msgid "Has Revisions" msgstr "" -#: part/api.py:865 +#: part/api.py:860 msgid "BOM Valid" msgstr "" -#: part/api.py:974 +#: part/api.py:969 msgid "Cascade Categories" msgstr "" -#: part/api.py:975 +#: part/api.py:970 msgid "If true, include items in child categories of the given category" msgstr "" -#: part/api.py:981 +#: part/api.py:976 msgid "Filter by numeric category ID or the literal 'null'" msgstr "" -#: part/api.py:1533 +#: part/api.py:1258 msgid "Assembly part is testable" msgstr "" -#: part/api.py:1542 +#: part/api.py:1267 msgid "Component part is testable" msgstr "" -#: part/api.py:1611 +#: part/api.py:1336 msgid "Uses" msgstr "" -#: part/models.py:96 part/models.py:4163 +#: part/models.py:93 part/models.py:436 #: templates/email/part_event_notification.html:16 msgid "Part Category" msgstr "Kategoria komponentu" -#: part/models.py:97 users/ruleset.py:27 +#: part/models.py:94 users/ruleset.py:27 msgid "Part Categories" msgstr "Kategorie części" -#: part/models.py:115 part/models.py:1125 +#: part/models.py:112 part/models.py:1213 msgid "Default Location" msgstr "Domyślna lokalizacja" -#: part/models.py:116 +#: part/models.py:113 msgid "Default location for parts in this category" msgstr "Domyślna lokalizacja dla komponentów w tej kategorii" -#: part/models.py:121 stock/models.py:216 +#: part/models.py:118 stock/models.py:216 msgid "Structural" msgstr "" -#: part/models.py:123 +#: part/models.py:120 msgid "Parts may not be directly assigned to a structural category, but may be assigned to child categories." msgstr "" -#: part/models.py:132 +#: part/models.py:129 msgid "Default keywords" msgstr "Domyślne słowa kluczowe" -#: part/models.py:133 +#: part/models.py:130 msgid "Default keywords for parts in this category" msgstr "" -#: part/models.py:140 stock/models.py:97 stock/models.py:198 +#: part/models.py:137 stock/models.py:97 stock/models.py:198 msgid "Icon" msgstr "" -#: part/models.py:141 part/serializers.py:148 part/serializers.py:167 +#: part/models.py:138 part/serializers.py:147 part/serializers.py:166 #: stock/models.py:199 msgid "Icon (optional)" msgstr "" -#: part/models.py:185 +#: part/models.py:182 msgid "You cannot make this part category structural because some parts are already assigned to it!" msgstr "" -#: part/models.py:473 part/serializers.py:119 part/serializers.py:310 -#: users/ruleset.py:28 +#: part/models.py:392 +msgid "Part Category Parameter Template" +msgstr "" + +#: part/models.py:448 +msgid "Default Value" +msgstr "Wartość domyślna" + +#: part/models.py:449 +msgid "Default Parameter Value" +msgstr "" + +#: part/models.py:551 part/serializers.py:118 users/ruleset.py:28 msgid "Parts" msgstr "Części" -#: part/models.py:525 +#: part/models.py:597 +msgid "Cannot delete parameters of a locked part" +msgstr "" + +#: part/models.py:602 +msgid "Cannot modify parameters of a locked part" +msgstr "" + +#: part/models.py:613 msgid "Cannot delete this part as it is locked" msgstr "" -#: part/models.py:528 +#: part/models.py:616 msgid "Cannot delete this part as it is still active" msgstr "" -#: part/models.py:533 +#: part/models.py:621 msgid "Cannot delete this part as it is used in an assembly" msgstr "" -#: part/models.py:616 part/models.py:623 +#: part/models.py:704 part/models.py:711 #, python-brace-format msgid "Part '{self}' cannot be used in BOM for '{parent}' (recursive)" msgstr "" -#: part/models.py:635 +#: part/models.py:723 #, python-brace-format msgid "Part '{parent}' is used in BOM for '{self}' (recursive)" msgstr "" -#: part/models.py:702 +#: part/models.py:790 #, python-brace-format msgid "IPN must match regex pattern {pattern}" msgstr "" -#: part/models.py:710 +#: part/models.py:798 msgid "Part cannot be a revision of itself" msgstr "" -#: part/models.py:717 +#: part/models.py:805 msgid "Cannot make a revision of a part which is already a revision" msgstr "" -#: part/models.py:724 +#: part/models.py:812 msgid "Revision code must be specified" msgstr "" -#: part/models.py:731 +#: part/models.py:819 msgid "Revisions are only allowed for assembly parts" msgstr "" -#: part/models.py:738 +#: part/models.py:826 msgid "Cannot make a revision of a template part" msgstr "" -#: part/models.py:744 +#: part/models.py:832 msgid "Parent part must point to the same template" msgstr "" -#: part/models.py:841 +#: part/models.py:929 msgid "Stock item with this serial number already exists" msgstr "" -#: part/models.py:971 +#: part/models.py:1059 msgid "Duplicate IPN not allowed in part settings" msgstr "" -#: part/models.py:983 +#: part/models.py:1071 msgid "Duplicate part revision already exists." msgstr "" -#: part/models.py:992 +#: part/models.py:1080 msgid "Part with this Name, IPN and Revision already exists." msgstr "" -#: part/models.py:1007 +#: part/models.py:1095 msgid "Parts cannot be assigned to structural part categories!" msgstr "" -#: part/models.py:1039 +#: part/models.py:1127 msgid "Part name" msgstr "Nazwa komponentu" -#: part/models.py:1044 +#: part/models.py:1132 msgid "Is Template" msgstr "Czy szablon" -#: part/models.py:1045 +#: part/models.py:1133 msgid "Is this part a template part?" msgstr "Czy ta część stanowi szablon części?" -#: part/models.py:1055 +#: part/models.py:1143 msgid "Is this part a variant of another part?" msgstr "Czy ta część jest wariantem innej części?" -#: part/models.py:1056 +#: part/models.py:1144 msgid "Variant Of" msgstr "Wariant" -#: part/models.py:1063 +#: part/models.py:1151 msgid "Part description (optional)" msgstr "" -#: part/models.py:1070 +#: part/models.py:1158 msgid "Keywords" msgstr "Słowa kluczowe" -#: part/models.py:1071 +#: part/models.py:1159 msgid "Part keywords to improve visibility in search results" msgstr "" -#: part/models.py:1081 +#: part/models.py:1169 msgid "Part category" msgstr "" -#: part/models.py:1088 part/serializers.py:929 +#: part/models.py:1176 part/serializers.py:814 #: report/templates/report/inventree_stock_location_report.html:103 msgid "IPN" msgstr "" -#: part/models.py:1096 +#: part/models.py:1184 msgid "Part revision or version number" msgstr "" -#: part/models.py:1097 report/models.py:228 +#: part/models.py:1185 report/models.py:228 msgid "Revision" msgstr "Wersja" -#: part/models.py:1106 +#: part/models.py:1194 msgid "Is this part a revision of another part?" msgstr "" -#: part/models.py:1107 +#: part/models.py:1195 msgid "Revision Of" msgstr "" -#: part/models.py:1123 +#: part/models.py:1211 msgid "Where is this item normally stored?" msgstr "" -#: part/models.py:1169 +#: part/models.py:1257 msgid "Default Supplier" msgstr "" -#: part/models.py:1170 +#: part/models.py:1258 msgid "Default supplier part" msgstr "" -#: part/models.py:1177 +#: part/models.py:1265 msgid "Default Expiry" msgstr "Domyślne wygasanie" -#: part/models.py:1178 +#: part/models.py:1266 msgid "Expiry time (in days) for stock items of this part" msgstr "" -#: part/models.py:1186 part/serializers.py:1003 +#: part/models.py:1274 part/serializers.py:888 msgid "Minimum Stock" msgstr "Minimalny stan magazynowy" -#: part/models.py:1187 +#: part/models.py:1275 msgid "Minimum allowed stock level" msgstr "" -#: part/models.py:1196 +#: part/models.py:1284 msgid "Units of measure for this part" msgstr "" -#: part/models.py:1203 +#: part/models.py:1291 msgid "Can this part be built from other parts?" msgstr "Czy ten komponent może być zbudowany z innych komponentów?" -#: part/models.py:1209 +#: part/models.py:1297 msgid "Can this part be used to build other parts?" msgstr "Czy ta część może być użyta do budowy innych części?" -#: part/models.py:1215 +#: part/models.py:1303 msgid "Does this part have tracking for unique items?" msgstr "Czy ta część wymaga śledzenia każdego towaru z osobna?" -#: part/models.py:1221 +#: part/models.py:1309 msgid "Can this part have test results recorded against it?" msgstr "" -#: part/models.py:1227 +#: part/models.py:1315 msgid "Can this part be purchased from external suppliers?" msgstr "" -#: part/models.py:1233 +#: part/models.py:1321 msgid "Can this part be sold to customers?" msgstr "" -#: part/models.py:1237 +#: part/models.py:1325 msgid "Is this part active?" msgstr "Czy ta część jest aktywna?" -#: part/models.py:1243 +#: part/models.py:1331 msgid "Locked parts cannot be edited" msgstr "" -#: part/models.py:1249 +#: part/models.py:1337 msgid "Is this a virtual part, such as a software product or license?" msgstr "Czy to wirtualna część, taka jak oprogramowanie lub licencja?" -#: part/models.py:1254 +#: part/models.py:1342 msgid "BOM Validated" msgstr "" -#: part/models.py:1255 +#: part/models.py:1343 msgid "Is the BOM for this part valid?" msgstr "" -#: part/models.py:1261 +#: part/models.py:1349 msgid "BOM checksum" msgstr "" -#: part/models.py:1262 +#: part/models.py:1350 msgid "Stored BOM checksum" msgstr "" -#: part/models.py:1270 +#: part/models.py:1358 msgid "BOM checked by" msgstr "" -#: part/models.py:1275 +#: part/models.py:1363 msgid "BOM checked date" msgstr "" -#: part/models.py:1291 +#: part/models.py:1379 msgid "Creation User" msgstr "Tworzenie użytkownika" -#: part/models.py:1301 +#: part/models.py:1389 msgid "Owner responsible for this part" msgstr "" -#: part/models.py:2258 +#: part/models.py:2346 msgid "Sell multiple" msgstr "Sprzedaj wiele" -#: part/models.py:3286 +#: part/models.py:3350 msgid "Currency used to cache pricing calculations" msgstr "" -#: part/models.py:3302 +#: part/models.py:3366 msgid "Minimum BOM Cost" msgstr "" -#: part/models.py:3303 +#: part/models.py:3367 msgid "Minimum cost of component parts" msgstr "" -#: part/models.py:3309 +#: part/models.py:3373 msgid "Maximum BOM Cost" msgstr "" -#: part/models.py:3310 +#: part/models.py:3374 msgid "Maximum cost of component parts" msgstr "" -#: part/models.py:3316 +#: part/models.py:3380 msgid "Minimum Purchase Cost" msgstr "" -#: part/models.py:3317 +#: part/models.py:3381 msgid "Minimum historical purchase cost" msgstr "" -#: part/models.py:3323 +#: part/models.py:3387 msgid "Maximum Purchase Cost" msgstr "" -#: part/models.py:3324 +#: part/models.py:3388 msgid "Maximum historical purchase cost" msgstr "" -#: part/models.py:3330 +#: part/models.py:3394 msgid "Minimum Internal Price" msgstr "" -#: part/models.py:3331 +#: part/models.py:3395 msgid "Minimum cost based on internal price breaks" msgstr "" -#: part/models.py:3337 +#: part/models.py:3401 msgid "Maximum Internal Price" msgstr "" -#: part/models.py:3338 +#: part/models.py:3402 msgid "Maximum cost based on internal price breaks" msgstr "" -#: part/models.py:3344 +#: part/models.py:3408 msgid "Minimum Supplier Price" msgstr "" -#: part/models.py:3345 +#: part/models.py:3409 msgid "Minimum price of part from external suppliers" msgstr "" -#: part/models.py:3351 +#: part/models.py:3415 msgid "Maximum Supplier Price" msgstr "" -#: part/models.py:3352 +#: part/models.py:3416 msgid "Maximum price of part from external suppliers" msgstr "" -#: part/models.py:3358 +#: part/models.py:3422 msgid "Minimum Variant Cost" msgstr "" -#: part/models.py:3359 +#: part/models.py:3423 msgid "Calculated minimum cost of variant parts" msgstr "" -#: part/models.py:3365 +#: part/models.py:3429 msgid "Maximum Variant Cost" msgstr "" -#: part/models.py:3366 +#: part/models.py:3430 msgid "Calculated maximum cost of variant parts" msgstr "" -#: part/models.py:3372 part/models.py:3386 +#: part/models.py:3436 part/models.py:3450 msgid "Minimum Cost" msgstr "" -#: part/models.py:3373 +#: part/models.py:3437 msgid "Override minimum cost" msgstr "" -#: part/models.py:3379 part/models.py:3393 +#: part/models.py:3443 part/models.py:3457 msgid "Maximum Cost" msgstr "" -#: part/models.py:3380 +#: part/models.py:3444 msgid "Override maximum cost" msgstr "" -#: part/models.py:3387 +#: part/models.py:3451 msgid "Calculated overall minimum cost" msgstr "" -#: part/models.py:3394 +#: part/models.py:3458 msgid "Calculated overall maximum cost" msgstr "" -#: part/models.py:3400 +#: part/models.py:3464 msgid "Minimum Sale Price" msgstr "" -#: part/models.py:3401 +#: part/models.py:3465 msgid "Minimum sale price based on price breaks" msgstr "" -#: part/models.py:3407 +#: part/models.py:3471 msgid "Maximum Sale Price" msgstr "" -#: part/models.py:3408 +#: part/models.py:3472 msgid "Maximum sale price based on price breaks" msgstr "" -#: part/models.py:3414 +#: part/models.py:3478 msgid "Minimum Sale Cost" msgstr "" -#: part/models.py:3415 +#: part/models.py:3479 msgid "Minimum historical sale price" msgstr "" -#: part/models.py:3421 +#: part/models.py:3485 msgid "Maximum Sale Cost" msgstr "" -#: part/models.py:3422 +#: part/models.py:3486 msgid "Maximum historical sale price" msgstr "" -#: part/models.py:3440 +#: part/models.py:3504 msgid "Part for stocktake" msgstr "" -#: part/models.py:3445 +#: part/models.py:3509 msgid "Item Count" msgstr "" -#: part/models.py:3446 +#: part/models.py:3510 msgid "Number of individual stock entries at time of stocktake" msgstr "" -#: part/models.py:3454 +#: part/models.py:3518 msgid "Total available stock at time of stocktake" msgstr "" -#: part/models.py:3458 report/templates/report/inventree_test_report.html:106 +#: part/models.py:3522 report/templates/report/inventree_test_report.html:106 msgid "Date" msgstr "Data" -#: part/models.py:3459 +#: part/models.py:3523 msgid "Date stocktake was performed" msgstr "" -#: part/models.py:3466 +#: part/models.py:3530 msgid "Minimum Stock Cost" msgstr "" -#: part/models.py:3467 +#: part/models.py:3531 msgid "Estimated minimum cost of stock on hand" msgstr "" -#: part/models.py:3473 +#: part/models.py:3537 msgid "Maximum Stock Cost" msgstr "" -#: part/models.py:3474 +#: part/models.py:3538 msgid "Estimated maximum cost of stock on hand" msgstr "" -#: part/models.py:3484 +#: part/models.py:3548 msgid "Part Sale Price Break" msgstr "" -#: part/models.py:3596 +#: part/models.py:3660 msgid "Part Test Template" msgstr "" -#: part/models.py:3622 +#: part/models.py:3686 msgid "Invalid template name - must include at least one alphanumeric character" msgstr "" -#: part/models.py:3643 part/models.py:3816 -msgid "Choices must be unique" -msgstr "" - -#: part/models.py:3654 +#: part/models.py:3718 msgid "Test templates can only be created for testable parts" msgstr "" -#: part/models.py:3668 +#: part/models.py:3732 msgid "Test template with the same key already exists for part" msgstr "" -#: part/models.py:3685 +#: part/models.py:3749 msgid "Test Name" msgstr "Nazwa testu" -#: part/models.py:3686 +#: part/models.py:3750 msgid "Enter a name for the test" msgstr "" -#: part/models.py:3692 +#: part/models.py:3756 msgid "Test Key" msgstr "" -#: part/models.py:3693 +#: part/models.py:3757 msgid "Simplified key for the test" msgstr "" -#: part/models.py:3700 +#: part/models.py:3764 msgid "Test Description" msgstr "Testowy opis" -#: part/models.py:3701 +#: part/models.py:3765 msgid "Enter description for this test" msgstr "Wprowadź opis do tego testu" -#: part/models.py:3705 report/models.py:287 -msgid "Enabled" -msgstr "Aktywne" - -#: part/models.py:3705 +#: part/models.py:3769 msgid "Is this test enabled?" msgstr "" -#: part/models.py:3710 +#: part/models.py:3774 msgid "Required" msgstr "Wymagane" -#: part/models.py:3711 +#: part/models.py:3775 msgid "Is this test required to pass?" msgstr "" -#: part/models.py:3716 +#: part/models.py:3780 msgid "Requires Value" msgstr "Wymaga wartości" -#: part/models.py:3717 +#: part/models.py:3781 msgid "Does this test require a value when adding a test result?" msgstr "" -#: part/models.py:3722 +#: part/models.py:3786 msgid "Requires Attachment" msgstr "Wymaga załącznika" -#: part/models.py:3724 +#: part/models.py:3788 msgid "Does this test require a file attachment when adding a test result?" msgstr "" -#: part/models.py:3730 part/models.py:3878 -msgid "Choices" -msgstr "" - -#: part/models.py:3731 +#: part/models.py:3795 msgid "Valid choices for this test (comma-separated)" msgstr "" -#: part/models.py:3764 -msgid "Part Parameter Template" -msgstr "" - -#: part/models.py:3791 -msgid "Checkbox parameters cannot have units" -msgstr "" - -#: part/models.py:3796 -msgid "Checkbox parameters cannot have choices" -msgstr "" - -#: part/models.py:3833 -msgid "Parameter template name must be unique" -msgstr "" - -#: part/models.py:3851 -msgid "Parameter Name" -msgstr "" - -#: part/models.py:3858 -msgid "Physical units for this parameter" -msgstr "" - -#: part/models.py:3866 -msgid "Parameter description" -msgstr "" - -#: part/models.py:3872 -msgid "Checkbox" -msgstr "" - -#: part/models.py:3873 -msgid "Is this parameter a checkbox?" -msgstr "" - -#: part/models.py:3879 -msgid "Valid choices for this parameter (comma-separated)" -msgstr "" - -#: part/models.py:3890 -msgid "Selection list for this parameter" -msgstr "" - -#: part/models.py:3932 -msgid "Part Parameter" -msgstr "" - -#: part/models.py:3958 -msgid "Parameter cannot be modified - part is locked" -msgstr "" - -#: part/models.py:3996 -msgid "Invalid choice for parameter value" -msgstr "" - -#: part/models.py:4047 -msgid "Parent Part" -msgstr "Część nadrzędna" - -#: part/models.py:4055 part/models.py:4170 part/models.py:4171 -msgid "Parameter Template" -msgstr "" - -#: part/models.py:4061 -msgid "Parameter Value" -msgstr "Wartość parametru" - -#: part/models.py:4071 stock/serializers.py:718 -msgid "Optional note field" -msgstr "" - -#: part/models.py:4118 -msgid "Part Category Parameter Template" -msgstr "" - -#: part/models.py:4177 -msgid "Default Value" -msgstr "Wartość domyślna" - -#: part/models.py:4178 -msgid "Default Parameter Value" -msgstr "" - -#: part/models.py:4352 +#: part/models.py:3977 msgid "BOM item cannot be modified - assembly is locked" msgstr "" -#: part/models.py:4359 +#: part/models.py:3984 msgid "BOM item cannot be modified - variant assembly is locked" msgstr "" -#: part/models.py:4369 +#: part/models.py:3994 msgid "Select parent part" msgstr "Wybierz część nadrzędną" -#: part/models.py:4379 +#: part/models.py:4004 msgid "Sub part" msgstr "Podczęść" -#: part/models.py:4380 +#: part/models.py:4005 msgid "Select part to be used in BOM" msgstr "" -#: part/models.py:4391 +#: part/models.py:4016 msgid "BOM quantity for this BOM item" msgstr "" -#: part/models.py:4397 +#: part/models.py:4022 msgid "This BOM item is optional" msgstr "Ten element BOM jest opcjonalny" -#: part/models.py:4403 +#: part/models.py:4028 msgid "This BOM item is consumable (it is not tracked in build orders)" msgstr "" -#: part/models.py:4411 +#: part/models.py:4036 msgid "Setup Quantity" msgstr "" -#: part/models.py:4412 +#: part/models.py:4037 msgid "Extra required quantity for a build, to account for setup losses" msgstr "" -#: part/models.py:4420 +#: part/models.py:4045 msgid "Attrition" msgstr "" -#: part/models.py:4422 +#: part/models.py:4047 msgid "Estimated attrition for a build, expressed as a percentage (0-100)" msgstr "" -#: part/models.py:4433 +#: part/models.py:4058 msgid "Rounding Multiple" msgstr "" -#: part/models.py:4435 +#: part/models.py:4060 msgid "Round up required production quantity to nearest multiple of this value" msgstr "" -#: part/models.py:4443 +#: part/models.py:4068 msgid "BOM item reference" msgstr "" -#: part/models.py:4451 +#: part/models.py:4076 msgid "BOM item notes" msgstr "Notatki pozycji BOM" -#: part/models.py:4457 +#: part/models.py:4082 msgid "Checksum" msgstr "Suma kontrolna" -#: part/models.py:4458 +#: part/models.py:4083 msgid "BOM line checksum" msgstr "" -#: part/models.py:4463 +#: part/models.py:4088 msgid "Validated" msgstr "Zatwierdzone" -#: part/models.py:4464 +#: part/models.py:4089 msgid "This BOM item has been validated" msgstr "" -#: part/models.py:4469 +#: part/models.py:4094 msgid "Gets inherited" msgstr "" -#: part/models.py:4470 +#: part/models.py:4095 msgid "This BOM item is inherited by BOMs for variant parts" msgstr "" -#: part/models.py:4476 +#: part/models.py:4101 msgid "Stock items for variant parts can be used for this BOM item" msgstr "" -#: part/models.py:4583 stock/models.py:925 +#: part/models.py:4208 stock/models.py:925 msgid "Quantity must be integer value for trackable parts" msgstr "" -#: part/models.py:4593 part/models.py:4595 +#: part/models.py:4218 part/models.py:4220 msgid "Sub part must be specified" msgstr "" -#: part/models.py:4746 +#: part/models.py:4371 msgid "BOM Item Substitute" msgstr "" -#: part/models.py:4767 +#: part/models.py:4392 msgid "Substitute part cannot be the same as the master part" msgstr "" -#: part/models.py:4780 +#: part/models.py:4405 msgid "Parent BOM item" msgstr "" -#: part/models.py:4788 +#: part/models.py:4413 msgid "Substitute part" msgstr "Część zastępcza" -#: part/models.py:4804 +#: part/models.py:4429 msgid "Part 1" msgstr "Część 1" -#: part/models.py:4812 +#: part/models.py:4437 msgid "Part 2" msgstr "Część 2" -#: part/models.py:4813 +#: part/models.py:4438 msgid "Select Related Part" msgstr "Wybierz powiązaną część" -#: part/models.py:4820 +#: part/models.py:4445 msgid "Note for this relationship" msgstr "" -#: part/models.py:4839 +#: part/models.py:4464 msgid "Part relationship cannot be created between a part and itself" msgstr "" -#: part/models.py:4844 +#: part/models.py:4469 msgid "Duplicate relationship already exists" msgstr "" -#: part/serializers.py:114 +#: part/serializers.py:113 msgid "Parent Category" msgstr "" -#: part/serializers.py:115 +#: part/serializers.py:114 msgid "Parent part category" msgstr "" -#: part/serializers.py:123 part/serializers.py:164 +#: part/serializers.py:122 part/serializers.py:163 msgid "Subcategories" msgstr "Podkategorie" -#: part/serializers.py:203 +#: part/serializers.py:202 msgid "Results" msgstr "" -#: part/serializers.py:204 +#: part/serializers.py:203 msgid "Number of results recorded against this template" msgstr "" -#: part/serializers.py:235 part/serializers.py:253 stock/serializers.py:643 +#: part/serializers.py:234 part/serializers.py:252 stock/serializers.py:643 msgid "Purchase currency of this stock item" msgstr "Waluta zakupu tego towaru" -#: part/serializers.py:280 +#: part/serializers.py:279 msgid "File is not an image" msgstr "" -#: part/serializers.py:311 -msgid "Number of parts using this template" -msgstr "" - -#: part/serializers.py:471 +#: part/serializers.py:382 msgid "Original Part" msgstr "" -#: part/serializers.py:472 +#: part/serializers.py:383 msgid "Select original part to duplicate" msgstr "" -#: part/serializers.py:477 +#: part/serializers.py:388 msgid "Copy Image" msgstr "Kopiuj obraz" -#: part/serializers.py:478 +#: part/serializers.py:389 msgid "Copy image from original part" msgstr "" -#: part/serializers.py:484 +#: part/serializers.py:395 msgid "Copy BOM" msgstr "Kopiuj BOM" -#: part/serializers.py:485 +#: part/serializers.py:396 msgid "Copy bill of materials from original part" msgstr "" -#: part/serializers.py:491 +#: part/serializers.py:402 msgid "Copy Parameters" msgstr "Kopiuj parametry" -#: part/serializers.py:492 +#: part/serializers.py:403 msgid "Copy parameter data from original part" msgstr "" -#: part/serializers.py:498 +#: part/serializers.py:409 msgid "Copy Notes" msgstr "" -#: part/serializers.py:499 +#: part/serializers.py:410 msgid "Copy notes from original part" msgstr "" -#: part/serializers.py:505 +#: part/serializers.py:416 msgid "Copy Tests" msgstr "" -#: part/serializers.py:506 +#: part/serializers.py:417 msgid "Copy test templates from original part" msgstr "" -#: part/serializers.py:524 +#: part/serializers.py:435 msgid "Initial Stock Quantity" msgstr "" -#: part/serializers.py:526 +#: part/serializers.py:437 msgid "Specify initial stock quantity for this Part. If quantity is zero, no stock is added." msgstr "" -#: part/serializers.py:533 +#: part/serializers.py:444 msgid "Initial Stock Location" msgstr "" -#: part/serializers.py:534 +#: part/serializers.py:445 msgid "Specify initial stock location for this Part" msgstr "" -#: part/serializers.py:551 +#: part/serializers.py:462 msgid "Select supplier (or leave blank to skip)" msgstr "" -#: part/serializers.py:567 +#: part/serializers.py:478 msgid "Select manufacturer (or leave blank to skip)" msgstr "" -#: part/serializers.py:577 +#: part/serializers.py:488 msgid "Manufacturer part number" msgstr "" -#: part/serializers.py:584 +#: part/serializers.py:495 msgid "Selected company is not a valid supplier" msgstr "" -#: part/serializers.py:593 +#: part/serializers.py:504 msgid "Selected company is not a valid manufacturer" msgstr "" -#: part/serializers.py:604 +#: part/serializers.py:515 msgid "Manufacturer part matching this MPN already exists" msgstr "" -#: part/serializers.py:611 +#: part/serializers.py:522 msgid "Supplier part matching this SKU already exists" msgstr "" -#: part/serializers.py:914 +#: part/serializers.py:799 msgid "Category Name" msgstr "" -#: part/serializers.py:943 +#: part/serializers.py:828 msgid "Building" msgstr "" -#: part/serializers.py:944 +#: part/serializers.py:829 msgid "Quantity of this part currently being in production" msgstr "" -#: part/serializers.py:951 +#: part/serializers.py:836 msgid "Outstanding quantity of this part scheduled to be built" msgstr "" -#: part/serializers.py:971 stock/serializers.py:1019 stock/serializers.py:1189 +#: part/serializers.py:856 stock/serializers.py:1019 stock/serializers.py:1189 #: users/ruleset.py:30 msgid "Stock Items" msgstr "Towary" -#: part/serializers.py:975 +#: part/serializers.py:860 msgid "Revisions" msgstr "" -#: part/serializers.py:979 +#: part/serializers.py:864 msgid "Suppliers" msgstr "Dostawcy" -#: part/serializers.py:983 part/serializers.py:1297 +#: part/serializers.py:868 part/serializers.py:1162 #: templates/email/low_stock_notification.html:16 #: templates/email/part_event_notification.html:17 msgid "Total Stock" msgstr "" -#: part/serializers.py:991 +#: part/serializers.py:876 msgid "Unallocated Stock" msgstr "" -#: part/serializers.py:999 +#: part/serializers.py:884 msgid "Variant Stock" msgstr "" -#: part/serializers.py:1054 +#: part/serializers.py:943 msgid "Duplicate Part" msgstr "Duplikuj część" -#: part/serializers.py:1055 +#: part/serializers.py:944 msgid "Copy initial data from another Part" msgstr "" -#: part/serializers.py:1061 +#: part/serializers.py:950 msgid "Initial Stock" msgstr "" -#: part/serializers.py:1062 +#: part/serializers.py:951 msgid "Create Part with initial stock quantity" msgstr "" -#: part/serializers.py:1068 +#: part/serializers.py:957 msgid "Supplier Information" msgstr "" -#: part/serializers.py:1069 +#: part/serializers.py:958 msgid "Add initial supplier information for this part" msgstr "" -#: part/serializers.py:1077 +#: part/serializers.py:966 msgid "Copy Category Parameters" msgstr "" -#: part/serializers.py:1078 +#: part/serializers.py:967 msgid "Copy parameter templates from selected part category" msgstr "" -#: part/serializers.py:1083 +#: part/serializers.py:972 msgid "Existing Image" msgstr "" -#: part/serializers.py:1084 +#: part/serializers.py:973 msgid "Filename of an existing part image" msgstr "" -#: part/serializers.py:1101 +#: part/serializers.py:990 msgid "Image file does not exist" msgstr "" -#: part/serializers.py:1269 +#: part/serializers.py:1134 msgid "Validate entire Bill of Materials" msgstr "" -#: part/serializers.py:1303 part/serializers.py:1769 +#: part/serializers.py:1168 part/serializers.py:1634 msgid "Can Build" msgstr "" -#: part/serializers.py:1320 +#: part/serializers.py:1185 msgid "Required for Build Orders" msgstr "" -#: part/serializers.py:1325 +#: part/serializers.py:1190 msgid "Allocated to Build Orders" msgstr "" -#: part/serializers.py:1332 +#: part/serializers.py:1197 msgid "Required for Sales Orders" msgstr "" -#: part/serializers.py:1336 +#: part/serializers.py:1201 msgid "Allocated to Sales Orders" msgstr "" -#: part/serializers.py:1475 +#: part/serializers.py:1340 msgid "Minimum Price" msgstr "" -#: part/serializers.py:1476 +#: part/serializers.py:1341 msgid "Override calculated value for minimum price" msgstr "" -#: part/serializers.py:1483 +#: part/serializers.py:1348 msgid "Minimum price currency" msgstr "" -#: part/serializers.py:1490 +#: part/serializers.py:1355 msgid "Maximum Price" msgstr "" -#: part/serializers.py:1491 +#: part/serializers.py:1356 msgid "Override calculated value for maximum price" msgstr "" -#: part/serializers.py:1498 +#: part/serializers.py:1363 msgid "Maximum price currency" msgstr "" -#: part/serializers.py:1527 +#: part/serializers.py:1392 msgid "Update" msgstr "" -#: part/serializers.py:1528 +#: part/serializers.py:1393 msgid "Update pricing for this part" msgstr "" -#: part/serializers.py:1551 +#: part/serializers.py:1416 #, python-brace-format msgid "Could not convert from provided currencies to {default_currency}" msgstr "" -#: part/serializers.py:1558 +#: part/serializers.py:1423 msgid "Minimum price must not be greater than maximum price" msgstr "" -#: part/serializers.py:1561 +#: part/serializers.py:1426 msgid "Maximum price must not be less than minimum price" msgstr "" -#: part/serializers.py:1715 +#: part/serializers.py:1580 msgid "Select the parent assembly" msgstr "" -#: part/serializers.py:1735 +#: part/serializers.py:1600 msgid "Select the component part" msgstr "" -#: part/serializers.py:1929 +#: part/serializers.py:1802 msgid "Select part to copy BOM from" msgstr "" -#: part/serializers.py:1937 +#: part/serializers.py:1810 msgid "Remove Existing Data" msgstr "Usuń istniejące dane" -#: part/serializers.py:1938 +#: part/serializers.py:1811 msgid "Remove existing BOM items before copying" msgstr "" -#: part/serializers.py:1943 +#: part/serializers.py:1816 msgid "Include Inherited" msgstr "" -#: part/serializers.py:1944 +#: part/serializers.py:1817 msgid "Include BOM items which are inherited from templated parts" msgstr "" -#: part/serializers.py:1949 +#: part/serializers.py:1822 msgid "Skip Invalid Rows" msgstr "Pomiń nieprawidłowe wiersze" -#: part/serializers.py:1950 +#: part/serializers.py:1823 msgid "Enable this option to skip invalid rows" msgstr "Włącz tę opcję, aby pominąć nieprawidłowe wiersze" -#: part/serializers.py:1955 +#: part/serializers.py:1828 msgid "Copy Substitute Parts" msgstr "" -#: part/serializers.py:1956 +#: part/serializers.py:1829 msgid "Copy substitute parts when duplicate BOM items" msgstr "" @@ -6927,7 +6974,7 @@ msgstr "" #: plugin/builtin/events/auto_issue_orders.py:19 #: plugin/builtin/exporter/bom_exporter.py:73 #: plugin/builtin/exporter/inventree_exporter.py:17 -#: plugin/builtin/exporter/part_parameter_exporter.py:36 +#: plugin/builtin/exporter/parameter_exporter.py:32 #: plugin/builtin/exporter/stocktake_exporter.py:47 #: plugin/builtin/integration/core_notifications.py:25 #: plugin/builtin/integration/core_notifications.py:69 @@ -7041,23 +7088,19 @@ msgid "Include total quantity of each part in the BOM" msgstr "" #: plugin/builtin/exporter/bom_exporter.py:35 -#: plugin/builtin/exporter/part_parameter_exporter.py:17 msgid "Stock Data" msgstr "" #: plugin/builtin/exporter/bom_exporter.py:35 -#: plugin/builtin/exporter/part_parameter_exporter.py:17 msgid "Include part stock data" msgstr "" #: plugin/builtin/exporter/bom_exporter.py:39 -#: plugin/builtin/exporter/part_parameter_exporter.py:21 #: plugin/builtin/exporter/stocktake_exporter.py:20 msgid "Pricing Data" msgstr "" #: plugin/builtin/exporter/bom_exporter.py:39 -#: plugin/builtin/exporter/part_parameter_exporter.py:21 #: plugin/builtin/exporter/stocktake_exporter.py:20 msgid "Include part pricing data" msgstr "" @@ -7144,12 +7187,20 @@ msgstr "" msgid "Provides support for exporting data from InvenTree" msgstr "" -#: plugin/builtin/exporter/part_parameter_exporter.py:33 -msgid "Part Parameter Exporter" +#: plugin/builtin/exporter/parameter_exporter.py:16 +msgid "Exclude Inactive" msgstr "" -#: plugin/builtin/exporter/part_parameter_exporter.py:34 -msgid "Exporter for part parameter data" +#: plugin/builtin/exporter/parameter_exporter.py:17 +msgid "Exclude parameters which are inactive" +msgstr "" + +#: plugin/builtin/exporter/parameter_exporter.py:29 +msgid "Parameter Exporter" +msgstr "" + +#: plugin/builtin/exporter/parameter_exporter.py:30 +msgid "Exporter for model parameter data" msgstr "" #: plugin/builtin/exporter/stocktake_exporter.py:25 @@ -8079,19 +8130,19 @@ msgstr "" msgid "No result" msgstr "" -#: report/templatetags/report.py:167 +#: report/templatetags/report.py:169 msgid "Asset file does not exist" msgstr "" -#: report/templatetags/report.py:224 report/templatetags/report.py:300 +#: report/templatetags/report.py:226 report/templatetags/report.py:302 msgid "Image file not found" msgstr "" -#: report/templatetags/report.py:325 +#: report/templatetags/report.py:327 msgid "part_image tag requires a Part instance" msgstr "" -#: report/templatetags/report.py:362 +#: report/templatetags/report.py:383 msgid "company_image tag requires a Company instance" msgstr "" @@ -8455,115 +8506,119 @@ msgstr "" msgid "Quantity does not match serial numbers" msgstr "" -#: stock/models.py:2012 stock/models.py:2917 +#: stock/models.py:1912 +msgid "Cannot assign stock to structural location" +msgstr "" + +#: stock/models.py:2029 stock/models.py:2934 msgid "Test template does not exist" msgstr "" -#: stock/models.py:2030 +#: stock/models.py:2047 msgid "Stock item has been assigned to a sales order" msgstr "" -#: stock/models.py:2034 +#: stock/models.py:2051 msgid "Stock item is installed in another item" msgstr "" -#: stock/models.py:2037 +#: stock/models.py:2054 msgid "Stock item contains other items" msgstr "" -#: stock/models.py:2040 +#: stock/models.py:2057 msgid "Stock item has been assigned to a customer" msgstr "" -#: stock/models.py:2043 stock/models.py:2226 +#: stock/models.py:2060 stock/models.py:2243 msgid "Stock item is currently in production" msgstr "" -#: stock/models.py:2046 +#: stock/models.py:2063 msgid "Serialized stock cannot be merged" msgstr "" -#: stock/models.py:2053 stock/serializers.py:1462 +#: stock/models.py:2070 stock/serializers.py:1462 msgid "Duplicate stock items" msgstr "" -#: stock/models.py:2057 +#: stock/models.py:2074 msgid "Stock items must refer to the same part" msgstr "" -#: stock/models.py:2065 +#: stock/models.py:2082 msgid "Stock items must refer to the same supplier part" msgstr "" -#: stock/models.py:2070 +#: stock/models.py:2087 msgid "Stock status codes must match" msgstr "" -#: stock/models.py:2349 +#: stock/models.py:2366 msgid "StockItem cannot be moved as it is not in stock" msgstr "" -#: stock/models.py:2818 +#: stock/models.py:2835 msgid "Stock Item Tracking" msgstr "" -#: stock/models.py:2849 +#: stock/models.py:2866 msgid "Entry notes" msgstr "Notatki do wpisu" -#: stock/models.py:2889 +#: stock/models.py:2906 msgid "Stock Item Test Result" msgstr "" -#: stock/models.py:2920 +#: stock/models.py:2937 msgid "Value must be provided for this test" msgstr "Należy podać wartość dla tego testu" -#: stock/models.py:2924 +#: stock/models.py:2941 msgid "Attachment must be uploaded for this test" msgstr "" -#: stock/models.py:2929 +#: stock/models.py:2946 msgid "Invalid value for this test" msgstr "" -#: stock/models.py:2953 +#: stock/models.py:2970 msgid "Test result" msgstr "Wynik testu" -#: stock/models.py:2960 +#: stock/models.py:2977 msgid "Test output value" msgstr "" -#: stock/models.py:2968 stock/serializers.py:248 +#: stock/models.py:2985 stock/serializers.py:248 msgid "Test result attachment" msgstr "" -#: stock/models.py:2972 +#: stock/models.py:2989 msgid "Test notes" msgstr "" -#: stock/models.py:2980 +#: stock/models.py:2997 msgid "Test station" msgstr "" -#: stock/models.py:2981 +#: stock/models.py:2998 msgid "The identifier of the test station where the test was performed" msgstr "" -#: stock/models.py:2987 +#: stock/models.py:3004 msgid "Started" msgstr "" -#: stock/models.py:2988 +#: stock/models.py:3005 msgid "The timestamp of the test start" msgstr "" -#: stock/models.py:2994 +#: stock/models.py:3011 msgid "Finished" msgstr "" -#: stock/models.py:2995 +#: stock/models.py:3012 msgid "The timestamp of the test finish" msgstr "" @@ -8677,8 +8732,8 @@ msgstr "" msgid "Quantity must not exceed available stock quantity ({q})" msgstr "" -#: stock/serializers.py:711 stock/serializers.py:1419 stock/serializers.py:1732 -#: stock/serializers.py:1781 +#: stock/serializers.py:711 stock/serializers.py:1419 stock/serializers.py:1740 +#: stock/serializers.py:1789 msgid "Destination stock location" msgstr "" @@ -8834,19 +8889,19 @@ msgstr "" msgid "Stock transaction notes" msgstr "" -#: stock/serializers.py:1787 +#: stock/serializers.py:1795 msgid "Merge into existing stock" msgstr "" -#: stock/serializers.py:1788 +#: stock/serializers.py:1796 msgid "Merge returned items into existing stock items if possible" msgstr "" -#: stock/serializers.py:1831 +#: stock/serializers.py:1839 msgid "Next Serial Number" msgstr "" -#: stock/serializers.py:1837 +#: stock/serializers.py:1845 msgid "Previous Serial Number" msgstr "" @@ -8902,83 +8957,87 @@ msgstr "Zapas dodany ręcznie" msgid "Stock manually removed" msgstr "Zapas usunięty ręcznie" -#: stock/status_codes.py:57 +#: stock/status_codes.py:56 +msgid "Serialized stock items" +msgstr "" + +#: stock/status_codes.py:58 msgid "Returned to stock" msgstr "" -#: stock/status_codes.py:60 +#: stock/status_codes.py:61 msgid "Location changed" msgstr "Lokalizacja zmieniona" -#: stock/status_codes.py:61 +#: stock/status_codes.py:62 msgid "Stock updated" msgstr "Zaktualizowano stan magazynu" -#: stock/status_codes.py:64 +#: stock/status_codes.py:65 msgid "Installed into assembly" msgstr "Zainstalowano do montażu" -#: stock/status_codes.py:65 +#: stock/status_codes.py:66 msgid "Removed from assembly" msgstr "Usunięto z montażu" -#: stock/status_codes.py:67 +#: stock/status_codes.py:68 msgid "Installed component item" msgstr "Zainstalowano element komponentu" -#: stock/status_codes.py:68 +#: stock/status_codes.py:69 msgid "Removed component item" msgstr "Usunięto element komponentu" -#: stock/status_codes.py:71 +#: stock/status_codes.py:72 msgid "Split from parent item" msgstr "Podziel z pozycji nadrzędnej" -#: stock/status_codes.py:72 +#: stock/status_codes.py:73 msgid "Split child item" msgstr "Podziel element podrzędny" -#: stock/status_codes.py:75 +#: stock/status_codes.py:76 msgid "Merged stock items" msgstr "Scalone przedmioty magazynowe" -#: stock/status_codes.py:78 +#: stock/status_codes.py:79 msgid "Converted to variant" msgstr "Przekonwertowano na wariant" -#: stock/status_codes.py:81 +#: stock/status_codes.py:82 msgid "Build order output created" msgstr "Dane wyjściowe kolejności kompilacji utworzone" -#: stock/status_codes.py:82 +#: stock/status_codes.py:83 msgid "Build order output completed" msgstr "Dane wyjściowe kolejności kompilacji ukończone" -#: stock/status_codes.py:83 +#: stock/status_codes.py:84 msgid "Build order output rejected" msgstr "Odrzucono wynik zlecenia produkcji" -#: stock/status_codes.py:84 +#: stock/status_codes.py:85 msgid "Consumed by build order" msgstr "Zużyte przez kolejność kompilacji" -#: stock/status_codes.py:87 +#: stock/status_codes.py:88 msgid "Shipped against Sales Order" msgstr "Wysłane na podstawie zlecenia sprzedaży" -#: stock/status_codes.py:90 +#: stock/status_codes.py:91 msgid "Received against Purchase Order" msgstr "Otrzymane na podstawie zlecenia zakupu" -#: stock/status_codes.py:93 +#: stock/status_codes.py:94 msgid "Returned against Return Order" msgstr "Zwrócone na podstawie zlecenia zwrotu" -#: stock/status_codes.py:96 +#: stock/status_codes.py:97 msgid "Sent to customer" msgstr "Wyślij do klienta" -#: stock/status_codes.py:97 +#: stock/status_codes.py:98 msgid "Returned from customer" msgstr "Zwrócony od klienta" diff --git a/src/backend/InvenTree/locale/pt/LC_MESSAGES/django.po b/src/backend/InvenTree/locale/pt/LC_MESSAGES/django.po index 3f975302fc..55b18c4787 100644 --- a/src/backend/InvenTree/locale/pt/LC_MESSAGES/django.po +++ b/src/backend/InvenTree/locale/pt/LC_MESSAGES/django.po @@ -2,8 +2,8 @@ msgid "" msgstr "" "Project-Id-Version: inventree\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-11-19 04:55+0000\n" -"PO-Revision-Date: 2025-11-19 04:59\n" +"POT-Creation-Date: 2025-12-07 07:33+0000\n" +"PO-Revision-Date: 2025-12-07 07:36\n" "Last-Translator: \n" "Language-Team: Portuguese\n" "Language: pt_PT\n" @@ -57,7 +57,7 @@ msgstr "" msgid "This field must be unique." msgstr "" -#: InvenTree/api.py:775 +#: InvenTree/api.py:803 msgid "User does not have permission to view this model" msgstr "Usuário não tem permissão para ver este modelo" @@ -81,22 +81,22 @@ msgstr "O endereço primário de e-mail não é válido." msgid "The provided email domain is not approved." msgstr "O domínio de e-mail providenciado não foi aprovado." -#: InvenTree/conversion.py:166 +#: InvenTree/conversion.py:240 #, python-brace-format msgid "Invalid unit provided ({unit})" msgstr "Unidade inválida fornecida ({unit})" -#: InvenTree/conversion.py:183 +#: InvenTree/conversion.py:257 msgid "No value provided" msgstr "Nenhum valor fornecido" -#: InvenTree/conversion.py:210 +#: InvenTree/conversion.py:284 #, python-brace-format msgid "Could not convert {original} to {unit}" msgstr "Não foi possível converter {original} para {unit}" -#: InvenTree/conversion.py:212 InvenTree/conversion.py:226 -#: InvenTree/helpers.py:597 order/models.py:720 order/models.py:1015 +#: InvenTree/conversion.py:286 InvenTree/conversion.py:300 +#: InvenTree/helpers.py:597 order/models.py:721 order/models.py:1016 msgid "Invalid quantity provided" msgstr "Quantidade fornecida inválida" @@ -112,11 +112,11 @@ msgstr "Insira uma Data" msgid "Invalid decimal value" msgstr "" -#: InvenTree/fields.py:218 InvenTree/models.py:1067 build/serializers.py:509 -#: build/serializers.py:580 build/serializers.py:1788 company/models.py:857 -#: order/models.py:1780 +#: InvenTree/fields.py:218 InvenTree/models.py:1228 build/serializers.py:517 +#: build/serializers.py:588 build/serializers.py:1796 company/models.py:811 +#: order/models.py:1781 #: report/templates/report/inventree_build_order_report.html:172 -#: stock/models.py:2848 stock/models.py:2972 stock/serializers.py:717 +#: stock/models.py:2865 stock/models.py:2989 stock/serializers.py:717 #: stock/serializers.py:893 stock/serializers.py:1035 stock/serializers.py:1336 #: stock/serializers.py:1425 stock/serializers.py:1624 msgid "Notes" @@ -171,35 +171,35 @@ msgstr "Remova as \"tags\" HTML deste valor" msgid "Data contains prohibited markdown content" msgstr "" -#: InvenTree/helpers_model.py:133 +#: InvenTree/helpers_model.py:134 msgid "Connection error" msgstr "Erro de conexão" -#: InvenTree/helpers_model.py:138 InvenTree/helpers_model.py:145 +#: InvenTree/helpers_model.py:139 InvenTree/helpers_model.py:146 msgid "Server responded with invalid status code" msgstr "O servidor respondeu com código estado inválido" -#: InvenTree/helpers_model.py:141 +#: InvenTree/helpers_model.py:142 msgid "Exception occurred" msgstr "Ocorreu uma exceção" -#: InvenTree/helpers_model.py:151 +#: InvenTree/helpers_model.py:152 msgid "Server responded with invalid Content-Length value" msgstr "O servidor respondeu com valor inválido do tamanho de conteúdo" -#: InvenTree/helpers_model.py:154 +#: InvenTree/helpers_model.py:155 msgid "Image size is too large" msgstr "Tamanho da imagem muito grande" -#: InvenTree/helpers_model.py:166 +#: InvenTree/helpers_model.py:167 msgid "Image download exceeded maximum size" msgstr "O download da imagem excedeu o tamanho máximo" -#: InvenTree/helpers_model.py:171 +#: InvenTree/helpers_model.py:172 msgid "Remote server returned empty response" msgstr "O servidor remoto retornou resposta vazia" -#: InvenTree/helpers_model.py:179 +#: InvenTree/helpers_model.py:180 msgid "Supplied URL is not a valid image file" msgstr "A URL fornecida não é um arquivo de imagem válido" @@ -207,7 +207,7 @@ msgstr "A URL fornecida não é um arquivo de imagem válido" msgid "Log in to the app" msgstr "" -#: InvenTree/magic_login.py:41 company/models.py:172 users/serializers.py:198 +#: InvenTree/magic_login.py:41 company/models.py:173 users/serializers.py:198 msgid "Email" msgstr "Email" @@ -215,160 +215,176 @@ msgstr "Email" msgid "You must enable two-factor authentication before doing anything else." msgstr "" -#: InvenTree/models.py:111 +#: InvenTree/models.py:114 msgid "Error running plugin validation" msgstr "Erro ao executar validação do plugin" -#: InvenTree/models.py:192 +#: InvenTree/models.py:195 msgid "Metadata must be a python dict object" msgstr "Metadados deve ser um objeto dict python" -#: InvenTree/models.py:198 +#: InvenTree/models.py:201 msgid "Plugin Metadata" msgstr "Metadados da Extensão" -#: InvenTree/models.py:199 +#: InvenTree/models.py:202 msgid "JSON metadata field, for use by external plugins" msgstr "Campo de metadados JSON, para uso por extensões externas" -#: InvenTree/models.py:382 +#: InvenTree/models.py:385 msgid "Improperly formatted pattern" msgstr "Padrão formatado incorretamente" -#: InvenTree/models.py:389 +#: InvenTree/models.py:392 msgid "Unknown format key specified" msgstr "Chave de formato desconhecida especificada" -#: InvenTree/models.py:395 +#: InvenTree/models.py:398 msgid "Missing required format key" msgstr "Chave de formato obrigatória ausente" -#: InvenTree/models.py:406 +#: InvenTree/models.py:409 msgid "Reference field cannot be empty" msgstr "O campo de referência não pode ficar vazio" -#: InvenTree/models.py:414 +#: InvenTree/models.py:417 msgid "Reference must match required pattern" msgstr "A referência deve corresponder ao padrão exigido" -#: InvenTree/models.py:445 +#: InvenTree/models.py:448 msgid "Reference number is too large" msgstr "O número de referência é muito grande" -#: InvenTree/models.py:743 +#: InvenTree/models.py:896 msgid "Invalid choice" msgstr "Escolha inválida" -#: InvenTree/models.py:856 common/models.py:1410 common/models.py:1837 -#: common/models.py:2096 common/models.py:2221 common/serializers.py:535 -#: company/models.py:615 generic/states/serializers.py:20 machine/models.py:25 -#: part/models.py:1039 part/models.py:3850 plugin/models.py:54 +#: InvenTree/models.py:1017 common/models.py:1414 common/models.py:1841 +#: common/models.py:2102 common/models.py:2227 common/models.py:2494 +#: common/serializers.py:539 generic/states/serializers.py:20 +#: machine/models.py:25 part/models.py:1127 plugin/models.py:54 #: report/models.py:216 stock/models.py:84 msgid "Name" msgstr "Nome" -#: InvenTree/models.py:862 build/models.py:252 common/models.py:171 -#: common/models.py:2228 common/models.py:2341 company/models.py:543 -#: company/models.py:848 order/models.py:442 order/models.py:1825 -#: part/models.py:1062 part/models.py:3865 report/models.py:222 +#: InvenTree/models.py:1023 build/models.py:253 common/models.py:175 +#: common/models.py:2234 common/models.py:2347 common/models.py:2509 +#: company/models.py:545 company/models.py:802 order/models.py:443 +#: order/models.py:1826 part/models.py:1150 report/models.py:222 #: report/models.py:815 report/models.py:841 #: report/templates/report/inventree_build_order_report.html:117 #: stock/models.py:90 msgid "Description" msgstr "Descrição" -#: InvenTree/models.py:863 stock/models.py:91 +#: InvenTree/models.py:1024 stock/models.py:91 msgid "Description (optional)" msgstr "Descrição (opcional)" -#: InvenTree/models.py:878 common/models.py:2394 +#: InvenTree/models.py:1039 common/models.py:2815 msgid "Path" msgstr "Caminho" -#: InvenTree/models.py:983 +#: InvenTree/models.py:1144 msgid "Duplicate names cannot exist under the same parent" msgstr "Nomes duplicados não podem existir sob o mesmo parental" -#: InvenTree/models.py:1067 +#: InvenTree/models.py:1228 msgid "Markdown notes (optional)" msgstr "Notas Markdown (opcional)" -#: InvenTree/models.py:1098 +#: InvenTree/models.py:1259 msgid "Barcode Data" msgstr "Dados de código de barras" -#: InvenTree/models.py:1099 +#: InvenTree/models.py:1260 msgid "Third party barcode data" msgstr "Dados de código de barras de terceiros" -#: InvenTree/models.py:1105 +#: InvenTree/models.py:1266 msgid "Barcode Hash" msgstr "Hash de código de barras" -#: InvenTree/models.py:1106 +#: InvenTree/models.py:1267 msgid "Unique hash of barcode data" msgstr "Hash exclusivo de dados de código de barras" -#: InvenTree/models.py:1187 +#: InvenTree/models.py:1348 msgid "Existing barcode found" msgstr "Código de barras existente encontrado" -#: InvenTree/models.py:1269 +#: InvenTree/models.py:1430 msgid "Task Failure" msgstr "" -#: InvenTree/models.py:1270 +#: InvenTree/models.py:1431 #, python-brace-format msgid "Background worker task '{f}' failed after {n} attempts" msgstr "" -#: InvenTree/models.py:1297 +#: InvenTree/models.py:1458 msgid "Server Error" msgstr "Erro de servidor" -#: InvenTree/models.py:1298 +#: InvenTree/models.py:1459 msgid "An error has been logged by the server." msgstr "Log de erro salvo pelo servidor." -#: InvenTree/models.py:1340 common/models.py:1748 +#: InvenTree/models.py:1501 common/models.py:1752 #: report/templates/report/inventree_bill_of_materials_report.html:126 #: report/templates/report/inventree_bill_of_materials_report.html:148 #: report/templates/report/inventree_return_order_report.html:35 msgid "Image" msgstr "Imagem" -#: InvenTree/serializers.py:253 part/models.py:4571 +#: InvenTree/serializers.py:255 part/models.py:4196 msgid "Must be a valid number" msgstr "Preicsa ser um numero valido" -#: InvenTree/serializers.py:295 company/models.py:214 part/models.py:3285 +#: InvenTree/serializers.py:297 company/models.py:215 part/models.py:3349 msgid "Currency" msgstr "Moeda" -#: InvenTree/serializers.py:298 part/serializers.py:1385 +#: InvenTree/serializers.py:300 part/serializers.py:1250 msgid "Select currency from available options" msgstr "Selecione a Moeda nas opções disponíveis" -#: InvenTree/serializers.py:653 +#: InvenTree/serializers.py:654 +msgid "This field may not be null." +msgstr "" + +#: InvenTree/serializers.py:660 msgid "Invalid value" msgstr "Valor inválido" -#: InvenTree/serializers.py:690 +#: InvenTree/serializers.py:697 msgid "Remote Image" msgstr "Imagens Remota" -#: InvenTree/serializers.py:691 +#: InvenTree/serializers.py:698 msgid "URL of remote image file" msgstr "URL do arquivo de imagem remoto" -#: InvenTree/serializers.py:709 +#: InvenTree/serializers.py:716 msgid "Downloading images from remote URL is not enabled" msgstr "Baixar imagens de URL remota não está habilitado" -#: InvenTree/serializers.py:716 +#: InvenTree/serializers.py:723 msgid "Failed to download image from remote URL" msgstr "" +#: InvenTree/serializers.py:806 +msgid "Invalid content type format" +msgstr "" + +#: InvenTree/serializers.py:809 +msgid "Content type not found" +msgstr "" + +#: InvenTree/serializers.py:815 +msgid "Content type does not match required mixin class" +msgstr "" + #: InvenTree/setting/locales.py:20 msgid "Arabic" msgstr "" @@ -537,30 +553,30 @@ msgstr "Unidade física inválida" msgid "Not a valid currency code" msgstr "Não é um código de moeda válido" -#: build/api.py:54 order/api.py:111 order/api.py:270 order/api.py:1373 -#: order/serializers.py:132 +#: build/api.py:54 order/api.py:116 order/api.py:275 order/api.py:1378 +#: order/serializers.py:133 msgid "Order Status" msgstr "Situação do pedido" -#: build/api.py:80 build/models.py:264 +#: build/api.py:80 build/models.py:265 msgid "Parent Build" msgstr "Produção Progenitor" -#: build/api.py:84 build/api.py:831 order/api.py:547 order/api.py:770 -#: order/api.py:1174 order/api.py:1449 stock/api.py:573 +#: build/api.py:84 build/api.py:837 order/api.py:553 order/api.py:776 +#: order/api.py:1179 order/api.py:1454 stock/api.py:573 msgid "Include Variants" msgstr "" -#: build/api.py:100 build/api.py:466 build/api.py:845 build/models.py:270 -#: build/serializers.py:1225 build/serializers.py:1356 -#: build/serializers.py:1427 company/models.py:1067 company/serializers.py:445 -#: order/api.py:298 order/api.py:302 order/api.py:929 order/api.py:1187 -#: order/api.py:1190 order/models.py:1941 order/models.py:2108 -#: order/models.py:2109 part/api.py:1233 part/api.py:1236 part/api.py:1302 -#: part/api.py:1589 part/models.py:472 part/models.py:3296 part/models.py:3439 -#: part/models.py:3497 part/models.py:3518 part/models.py:3540 -#: part/models.py:3679 part/models.py:4046 part/models.py:4368 -#: part/models.py:4787 part/serializers.py:1928 +#: build/api.py:100 build/api.py:472 build/api.py:851 build/models.py:271 +#: build/serializers.py:1233 build/serializers.py:1364 +#: build/serializers.py:1435 company/models.py:1021 company/serializers.py:490 +#: order/api.py:303 order/api.py:307 order/api.py:934 order/api.py:1192 +#: order/api.py:1195 order/models.py:1942 order/models.py:2109 +#: order/models.py:2110 part/api.py:1160 part/api.py:1163 part/api.py:1314 +#: part/models.py:550 part/models.py:3360 part/models.py:3503 +#: part/models.py:3561 part/models.py:3582 part/models.py:3604 +#: part/models.py:3743 part/models.py:3993 part/models.py:4412 +#: part/serializers.py:1801 #: report/templates/report/inventree_bill_of_materials_report.html:110 #: report/templates/report/inventree_bill_of_materials_report.html:137 #: report/templates/report/inventree_build_order_report.html:109 @@ -580,9 +596,9 @@ msgstr "" msgid "Part" msgstr "Peça" -#: build/api.py:120 build/api.py:123 build/serializers.py:1438 part/api.py:980 -#: part/api.py:1316 part/api.py:1600 part/models.py:1080 part/models.py:3568 -#: part/models.py:4162 part/serializers.py:1752 stock/api.py:869 +#: build/api.py:120 build/api.py:123 build/serializers.py:1446 part/api.py:975 +#: part/api.py:1325 part/models.py:435 part/models.py:1168 part/models.py:3632 +#: part/serializers.py:1617 stock/api.py:869 msgid "Category" msgstr "Categoria" @@ -590,7 +606,7 @@ msgstr "Categoria" msgid "Ancestor Build" msgstr "" -#: build/api.py:152 order/api.py:129 +#: build/api.py:152 order/api.py:134 msgid "Assigned to me" msgstr "" @@ -638,134 +654,134 @@ msgstr "" msgid "Completed after" msgstr "" -#: build/api.py:249 order/api.py:226 +#: build/api.py:249 order/api.py:231 msgid "Min Date" msgstr "" -#: build/api.py:272 order/api.py:245 +#: build/api.py:272 order/api.py:250 msgid "Max Date" msgstr "" -#: build/api.py:297 build/api.py:300 part/api.py:217 stock/api.py:961 +#: build/api.py:297 build/api.py:300 part/api.py:212 stock/api.py:961 msgid "Exclude Tree" msgstr "" -#: build/api.py:405 +#: build/api.py:411 msgid "Build must be cancelled before it can be deleted" msgstr "Produção deve ser cancelada antes de ser deletada" -#: build/api.py:449 build/serializers.py:1374 part/models.py:4402 +#: build/api.py:455 build/serializers.py:1382 part/models.py:4027 msgid "Consumable" msgstr "Consumível" -#: build/api.py:452 build/serializers.py:1377 part/models.py:4396 +#: build/api.py:458 build/serializers.py:1385 part/models.py:4021 msgid "Optional" msgstr "Opcional" -#: build/api.py:455 build/serializers.py:1415 common/setting/system.py:456 -#: part/models.py:1202 part/serializers.py:1714 part/serializers.py:1725 +#: build/api.py:461 build/serializers.py:1423 common/setting/system.py:456 +#: part/models.py:1290 part/serializers.py:1579 part/serializers.py:1590 #: stock/api.py:639 msgid "Assembly" msgstr "Montagem" -#: build/api.py:458 +#: build/api.py:464 msgid "Tracked" msgstr "Monitorado" -#: build/api.py:461 build/serializers.py:1380 part/models.py:1220 +#: build/api.py:467 build/serializers.py:1388 part/models.py:1308 msgid "Testable" msgstr "" -#: build/api.py:471 order/api.py:993 order/api.py:1363 +#: build/api.py:477 order/api.py:998 order/api.py:1368 msgid "Order Outstanding" msgstr "" -#: build/api.py:481 build/serializers.py:1464 order/api.py:952 +#: build/api.py:487 build/serializers.py:1472 order/api.py:957 msgid "Allocated" msgstr "Alocado" -#: build/api.py:490 build/models.py:1672 build/serializers.py:1393 +#: build/api.py:496 build/models.py:1673 build/serializers.py:1401 msgid "Consumed" msgstr "" -#: build/api.py:499 company/models.py:912 company/serializers.py:440 +#: build/api.py:505 company/models.py:866 company/serializers.py:467 #: templates/email/build_order_required_stock.html:19 #: templates/email/low_stock_notification.html:17 #: templates/email/part_event_notification.html:18 msgid "Available" msgstr "Disponível" -#: build/api.py:523 build/serializers.py:1466 company/serializers.py:437 -#: order/serializers.py:1281 part/serializers.py:959 part/serializers.py:1306 -#: part/serializers.py:1761 +#: build/api.py:529 build/serializers.py:1474 company/serializers.py:464 +#: order/serializers.py:1295 part/serializers.py:844 part/serializers.py:1171 +#: part/serializers.py:1626 msgid "On Order" msgstr "No pedido" -#: build/api.py:868 build/models.py:117 order/models.py:1974 +#: build/api.py:874 build/models.py:118 order/models.py:1975 #: report/templates/report/inventree_build_order_report.html:105 #: stock/serializers.py:93 templates/email/build_order_completed.html:16 #: templates/email/overdue_build_order.html:15 msgid "Build Order" msgstr "Ordem de Produção" -#: build/api.py:882 build/api.py:886 build/serializers.py:372 -#: build/serializers.py:497 build/serializers.py:567 build/serializers.py:1251 -#: build/serializers.py:1256 order/api.py:1234 order/api.py:1239 -#: order/serializers.py:833 order/serializers.py:973 order/serializers.py:2042 +#: build/api.py:888 build/api.py:892 build/serializers.py:380 +#: build/serializers.py:505 build/serializers.py:575 build/serializers.py:1259 +#: build/serializers.py:1264 order/api.py:1239 order/api.py:1244 +#: order/serializers.py:844 order/serializers.py:984 order/serializers.py:2059 #: stock/api.py:987 stock/serializers.py:111 stock/serializers.py:601 #: stock/serializers.py:710 stock/serializers.py:888 stock/serializers.py:1418 -#: stock/serializers.py:1731 stock/serializers.py:1780 +#: stock/serializers.py:1739 stock/serializers.py:1788 #: templates/email/stale_stock_notification.html:18 users/models.py:549 msgid "Location" msgstr "Local" -#: build/api.py:894 +#: build/api.py:900 msgid "Output" msgstr "" -#: build/api.py:896 +#: build/api.py:902 msgid "Filter by output stock item ID. Use 'null' to find uninstalled build items." msgstr "" -#: build/models.py:118 users/ruleset.py:31 +#: build/models.py:119 users/ruleset.py:31 msgid "Build Orders" msgstr "Ordens de Produções" -#: build/models.py:168 +#: build/models.py:169 msgid "Assembly BOM has not been validated" msgstr "" -#: build/models.py:175 +#: build/models.py:176 msgid "Build order cannot be created for an inactive part" msgstr "" -#: build/models.py:182 +#: build/models.py:183 msgid "Build order cannot be created for an unlocked part" msgstr "" -#: build/models.py:200 +#: build/models.py:201 msgid "Build orders can only be externally fulfilled for purchaseable parts" msgstr "" -#: build/models.py:207 order/models.py:369 +#: build/models.py:208 order/models.py:370 msgid "Responsible user or group must be specified" msgstr "Usuário ou grupo responsável deve ser especificado" -#: build/models.py:212 +#: build/models.py:213 msgid "Build order part cannot be changed" msgstr "Peça da ordem de produção não pode ser alterada" -#: build/models.py:217 order/models.py:382 +#: build/models.py:218 order/models.py:383 msgid "Target date must be after start date" msgstr "" -#: build/models.py:245 +#: build/models.py:246 msgid "Build Order Reference" msgstr "Referência do pedido de produção" -#: build/models.py:246 build/serializers.py:1371 order/models.py:614 -#: order/models.py:1311 order/models.py:1773 order/models.py:2712 -#: part/models.py:4442 +#: build/models.py:247 build/serializers.py:1379 order/models.py:615 +#: order/models.py:1312 order/models.py:1774 order/models.py:2713 +#: part/models.py:4067 #: report/templates/report/inventree_bill_of_materials_report.html:139 #: report/templates/report/inventree_purchase_order_report.html:35 #: report/templates/report/inventree_return_order_report.html:26 @@ -773,230 +789,230 @@ msgstr "Referência do pedido de produção" msgid "Reference" msgstr "Referência" -#: build/models.py:255 +#: build/models.py:256 msgid "Brief description of the build (optional)" msgstr "Breve descrição da produção (opcional)" -#: build/models.py:265 +#: build/models.py:266 msgid "BuildOrder to which this build is allocated" msgstr "Pedido de produção para qual este serviço está alocado" -#: build/models.py:274 +#: build/models.py:275 msgid "Select part to build" msgstr "Selecionar peça para produção" -#: build/models.py:279 +#: build/models.py:280 msgid "Sales Order Reference" msgstr "Referência do pedido de venda" -#: build/models.py:284 +#: build/models.py:285 msgid "SalesOrder to which this build is allocated" msgstr "Pedido de Venda para qual esta produção está alocada" -#: build/models.py:289 build/serializers.py:1097 +#: build/models.py:290 build/serializers.py:1105 msgid "Source Location" msgstr "Local de Origem" -#: build/models.py:295 +#: build/models.py:296 msgid "Select location to take stock from for this build (leave blank to take from any stock location)" msgstr "Selecione a localização para pegar do estoque para esta produção (deixe em branco para tirar a partir de qualquer local de estoque)" -#: build/models.py:301 +#: build/models.py:302 msgid "External Build" msgstr "" -#: build/models.py:302 +#: build/models.py:303 msgid "This build order is fulfilled externally" msgstr "" -#: build/models.py:307 +#: build/models.py:308 msgid "Destination Location" msgstr "Local de Destino" -#: build/models.py:312 +#: build/models.py:313 msgid "Select location where the completed items will be stored" msgstr "Selecione o local onde os itens concluídos serão armazenados" -#: build/models.py:316 +#: build/models.py:317 msgid "Build Quantity" msgstr "Quantidade de Produção" -#: build/models.py:319 +#: build/models.py:320 msgid "Number of stock items to build" msgstr "Número de itens em estoque para produzir" -#: build/models.py:323 +#: build/models.py:324 msgid "Completed items" msgstr "Itens concluídos" -#: build/models.py:325 +#: build/models.py:326 msgid "Number of stock items which have been completed" msgstr "Número de itens em estoque concluídos" -#: build/models.py:329 +#: build/models.py:330 msgid "Build Status" msgstr "Progresso da produção" -#: build/models.py:334 +#: build/models.py:335 msgid "Build status code" msgstr "Código de situação da produção" -#: build/models.py:343 build/serializers.py:359 order/serializers.py:849 +#: build/models.py:344 build/serializers.py:367 order/serializers.py:860 #: stock/models.py:1100 stock/serializers.py:85 stock/serializers.py:1591 msgid "Batch Code" msgstr "Código de Lote" -#: build/models.py:347 build/serializers.py:360 +#: build/models.py:348 build/serializers.py:368 msgid "Batch code for this build output" msgstr "Código do lote para esta saída de produção" -#: build/models.py:351 order/models.py:479 order/serializers.py:186 -#: part/models.py:1283 +#: build/models.py:352 order/models.py:480 order/serializers.py:193 +#: part/models.py:1371 msgid "Creation Date" msgstr "Criado em" -#: build/models.py:357 +#: build/models.py:358 msgid "Build start date" msgstr "" -#: build/models.py:358 +#: build/models.py:359 msgid "Scheduled start date for this build order" msgstr "" -#: build/models.py:364 +#: build/models.py:365 msgid "Target completion date" msgstr "Data alvo final" -#: build/models.py:366 +#: build/models.py:367 msgid "Target date for build completion. Build will be overdue after this date." msgstr "Data alvo para finalização de produção. Estará atrasado a partir deste dia." -#: build/models.py:371 order/models.py:667 order/models.py:2751 +#: build/models.py:372 order/models.py:668 order/models.py:2752 msgid "Completion Date" msgstr "Data de conclusão" -#: build/models.py:379 +#: build/models.py:380 msgid "completed by" msgstr "Concluído por" -#: build/models.py:388 +#: build/models.py:389 msgid "Issued by" msgstr "Emitido por" -#: build/models.py:389 +#: build/models.py:390 msgid "User who issued this build order" msgstr "Usuário que emitiu este pedido de produção" -#: build/models.py:398 common/models.py:180 order/api.py:179 -#: order/models.py:504 part/models.py:1300 +#: build/models.py:399 common/models.py:184 order/api.py:184 +#: order/models.py:505 part/models.py:1388 #: report/templates/report/inventree_build_order_report.html:158 msgid "Responsible" msgstr "Responsável" -#: build/models.py:399 +#: build/models.py:400 msgid "User or group responsible for this build order" msgstr "Usuário ou grupo responsável para este pedido de produção" -#: build/models.py:404 stock/models.py:1093 +#: build/models.py:405 stock/models.py:1093 msgid "External Link" msgstr "Link Externo" -#: build/models.py:406 common/models.py:1984 part/models.py:1114 +#: build/models.py:407 common/models.py:1990 part/models.py:1202 #: stock/models.py:1095 msgid "Link to external URL" msgstr "Link para URL externa" -#: build/models.py:411 +#: build/models.py:412 msgid "Build Priority" msgstr "Prioridade de Produção" -#: build/models.py:414 +#: build/models.py:415 msgid "Priority of this build order" msgstr "Prioridade deste pedido de produção" -#: build/models.py:422 common/models.py:150 common/models.py:164 -#: order/api.py:165 order/models.py:451 order/models.py:1805 +#: build/models.py:423 common/models.py:154 common/models.py:168 +#: order/api.py:170 order/models.py:452 order/models.py:1806 msgid "Project Code" msgstr "Código do projeto" -#: build/models.py:423 +#: build/models.py:424 msgid "Project code for this build order" msgstr "Código do projeto para este pedido de produção" -#: build/models.py:676 +#: build/models.py:677 msgid "Cannot complete build order with open child builds" msgstr "" -#: build/models.py:681 +#: build/models.py:682 msgid "Cannot complete build order with incomplete outputs" msgstr "" -#: build/models.py:700 build/models.py:830 +#: build/models.py:701 build/models.py:831 msgid "Failed to offload task to complete build allocations" msgstr "Falha ao descarregar tarefa para concluir alocações de construção" -#: build/models.py:723 +#: build/models.py:724 #, python-brace-format msgid "Build order {build} has been completed" msgstr "O Pedido de produção {build} foi concluído!" -#: build/models.py:729 +#: build/models.py:730 msgid "A build order has been completed" msgstr "Um pedido de produção foi concluído" -#: build/models.py:911 build/serializers.py:407 +#: build/models.py:912 build/serializers.py:415 msgid "Serial numbers must be provided for trackable parts" msgstr "Números de série devem ser fornecidos para peças rastreáveis" -#: build/models.py:1042 build/models.py:1129 +#: build/models.py:1043 build/models.py:1130 msgid "No build output specified" msgstr "Nenhuma saída de produção especificada" -#: build/models.py:1045 +#: build/models.py:1046 msgid "Build output is already completed" msgstr "Saída de produção já completada" -#: build/models.py:1048 +#: build/models.py:1049 msgid "Build output does not match Build Order" msgstr "Saída da produção não corresponde ao Pedido de Produção" -#: build/models.py:1136 build/models.py:1234 build/serializers.py:285 -#: build/serializers.py:335 build/serializers.py:965 build/serializers.py:1739 -#: order/models.py:717 order/serializers.py:658 order/serializers.py:844 -#: part/serializers.py:1708 stock/models.py:940 stock/models.py:1430 +#: build/models.py:1137 build/models.py:1235 build/serializers.py:293 +#: build/serializers.py:343 build/serializers.py:973 build/serializers.py:1747 +#: order/models.py:718 order/serializers.py:669 order/serializers.py:855 +#: part/serializers.py:1573 stock/models.py:940 stock/models.py:1430 #: stock/models.py:1878 stock/serializers.py:688 stock/serializers.py:1580 msgid "Quantity must be greater than zero" msgstr "Quantidade deve ser maior que zero" -#: build/models.py:1140 build/models.py:1239 build/serializers.py:290 +#: build/models.py:1141 build/models.py:1240 build/serializers.py:298 msgid "Quantity cannot be greater than the output quantity" msgstr "Quantidade não pode ser maior do que a quantidade de saída" -#: build/models.py:1214 build/serializers.py:606 +#: build/models.py:1215 build/serializers.py:614 msgid "Build output has not passed all required tests" msgstr "" -#: build/models.py:1217 build/serializers.py:601 +#: build/models.py:1218 build/serializers.py:609 #, python-brace-format msgid "Build output {serial} has not passed all required tests" msgstr "O item de produção {serial} não passou todos os testes necessários" -#: build/models.py:1229 +#: build/models.py:1230 msgid "Cannot partially complete a build output with allocated items" msgstr "" -#: build/models.py:1627 +#: build/models.py:1628 msgid "Build Order Line Item" msgstr "Item da linha de Produção" -#: build/models.py:1651 +#: build/models.py:1652 msgid "Build object" msgstr "Objeto de produção" -#: build/models.py:1663 build/models.py:1974 build/serializers.py:271 -#: build/serializers.py:320 build/serializers.py:1392 common/models.py:1340 -#: order/models.py:1756 order/models.py:2597 order/serializers.py:1696 -#: order/serializers.py:2124 part/models.py:3453 part/models.py:4390 +#: build/models.py:1664 build/models.py:1975 build/serializers.py:279 +#: build/serializers.py:328 build/serializers.py:1400 common/models.py:1344 +#: order/models.py:1757 order/models.py:2598 order/serializers.py:1710 +#: order/serializers.py:2141 part/models.py:3517 part/models.py:4015 #: report/templates/report/inventree_bill_of_materials_report.html:138 #: report/templates/report/inventree_build_order_report.html:113 #: report/templates/report/inventree_purchase_order_report.html:36 @@ -1014,427 +1030,427 @@ msgstr "Objeto de produção" msgid "Quantity" msgstr "Quantidade" -#: build/models.py:1664 +#: build/models.py:1665 msgid "Required quantity for build order" msgstr "Quantidade necessária para o pedido de produção" -#: build/models.py:1673 +#: build/models.py:1674 msgid "Quantity of consumed stock" msgstr "" -#: build/models.py:1772 +#: build/models.py:1773 msgid "Build item must specify a build output, as master part is marked as trackable" msgstr "Item de produção deve especificar a saída, pois peças mestres estão marcadas como rastreáveis" -#: build/models.py:1783 +#: build/models.py:1784 #, python-brace-format msgid "Allocated quantity ({q}) must not exceed available stock quantity ({a})" msgstr "Quantidade alocada ({q}) não deve exceder a quantidade disponível em estoque ({a})" -#: build/models.py:1804 order/models.py:2546 +#: build/models.py:1805 order/models.py:2547 msgid "Stock item is over-allocated" msgstr "O item do estoque está sobre-alocado" -#: build/models.py:1809 order/models.py:2549 +#: build/models.py:1810 order/models.py:2550 msgid "Allocation quantity must be greater than zero" msgstr "Quantidade alocada deve ser maior que zero" -#: build/models.py:1815 +#: build/models.py:1816 msgid "Quantity must be 1 for serialized stock" msgstr "Quantidade deve ser 1 para estoque serializado" -#: build/models.py:1875 +#: build/models.py:1876 msgid "Selected stock item does not match BOM line" msgstr "Item estoque selecionado não coincide com linha da LDM" -#: build/models.py:1913 +#: build/models.py:1914 msgid "Allocated quantity exceeds available stock quantity" msgstr "" -#: build/models.py:1964 build/serializers.py:948 build/serializers.py:1240 -#: order/serializers.py:1533 order/serializers.py:1554 +#: build/models.py:1965 build/serializers.py:956 build/serializers.py:1248 +#: order/serializers.py:1547 order/serializers.py:1568 #: report/templates/report/inventree_sales_order_shipment_report.html:29 #: stock/api.py:1404 stock/models.py:456 stock/serializers.py:102 #: stock/serializers.py:800 stock/serializers.py:1274 stock/serializers.py:1386 msgid "Stock Item" msgstr "Item de estoque" -#: build/models.py:1965 +#: build/models.py:1966 msgid "Source stock item" msgstr "Origem do item em estoque" -#: build/models.py:1975 +#: build/models.py:1976 msgid "Stock quantity to allocate to build" msgstr "Quantidade do estoque para alocar à produção" -#: build/models.py:1984 +#: build/models.py:1985 msgid "Install into" msgstr "Instalar em" -#: build/models.py:1985 +#: build/models.py:1986 msgid "Destination stock item" msgstr "Destino do Item do Estoque" -#: build/serializers.py:118 +#: build/serializers.py:120 msgid "Build Level" msgstr "" -#: build/serializers.py:128 +#: build/serializers.py:136 msgid "Part Name" msgstr "Nome da Peça" -#: build/serializers.py:153 +#: build/serializers.py:161 msgid "Project Code Label" msgstr "" -#: build/serializers.py:219 build/serializers.py:974 +#: build/serializers.py:227 build/serializers.py:982 msgid "Build Output" msgstr "Saída da Produção" -#: build/serializers.py:231 +#: build/serializers.py:239 msgid "Build output does not match the parent build" msgstr "Saída de produção não coincide com a produção progenitora" -#: build/serializers.py:235 +#: build/serializers.py:243 msgid "Output part does not match BuildOrder part" msgstr "Peça de saída não coincide com a peça da ordem de produção" -#: build/serializers.py:239 +#: build/serializers.py:247 msgid "This build output has already been completed" msgstr "Esta saída de produção já foi concluída" -#: build/serializers.py:253 +#: build/serializers.py:261 msgid "This build output is not fully allocated" msgstr "A saída de produção não está completamente alocada" -#: build/serializers.py:272 build/serializers.py:321 +#: build/serializers.py:280 build/serializers.py:329 msgid "Enter quantity for build output" msgstr "Entre a quantidade da saída de produção" -#: build/serializers.py:343 +#: build/serializers.py:351 msgid "Integer quantity required for trackable parts" msgstr "Quantidade inteira necessária para peças rastreáveis" -#: build/serializers.py:349 +#: build/serializers.py:357 msgid "Integer quantity required, as the bill of materials contains trackable parts" msgstr "Quantidade inteira necessária, pois a lista de materiais contém peças rastreáveis" -#: build/serializers.py:366 order/serializers.py:865 order/serializers.py:1700 +#: build/serializers.py:374 order/serializers.py:876 order/serializers.py:1714 #: stock/serializers.py:699 msgid "Serial Numbers" msgstr "Números de Série" -#: build/serializers.py:367 +#: build/serializers.py:375 msgid "Enter serial numbers for build outputs" msgstr "Digite os números de série para saídas de produção" -#: build/serializers.py:373 +#: build/serializers.py:381 msgid "Stock location for build output" msgstr "Local de estoque para a produção" -#: build/serializers.py:388 +#: build/serializers.py:396 msgid "Auto Allocate Serial Numbers" msgstr "Alocar Números de Série Automaticamente" -#: build/serializers.py:390 +#: build/serializers.py:398 msgid "Automatically allocate required items with matching serial numbers" msgstr "Alocar automaticamente os itens necessários com os números de série correspondentes" -#: build/serializers.py:423 order/serializers.py:951 stock/api.py:1183 +#: build/serializers.py:431 order/serializers.py:962 stock/api.py:1183 #: stock/models.py:1901 msgid "The following serial numbers already exist or are invalid" msgstr "Os seguintes números de série já existem ou são inválidos" -#: build/serializers.py:465 build/serializers.py:521 build/serializers.py:613 +#: build/serializers.py:473 build/serializers.py:529 build/serializers.py:621 msgid "A list of build outputs must be provided" msgstr "Uma lista de saídas de produção deve ser fornecida" -#: build/serializers.py:498 +#: build/serializers.py:506 msgid "Stock location for scrapped outputs" msgstr "Local de estoque para saídas recicladas" -#: build/serializers.py:504 +#: build/serializers.py:512 msgid "Discard Allocations" msgstr "Descartar alocações" -#: build/serializers.py:505 +#: build/serializers.py:513 msgid "Discard any stock allocations for scrapped outputs" msgstr "Descartar quaisquer alocações de estoque para saídas sucateadas" -#: build/serializers.py:510 +#: build/serializers.py:518 msgid "Reason for scrapping build output(s)" msgstr "Motivo para sucatear saída(s) de produção" -#: build/serializers.py:568 +#: build/serializers.py:576 msgid "Location for completed build outputs" msgstr "Local para saídas de produção concluídas" -#: build/serializers.py:576 +#: build/serializers.py:584 msgid "Accept Incomplete Allocation" msgstr "Aceitar Alocação Incompleta" -#: build/serializers.py:577 +#: build/serializers.py:585 msgid "Complete outputs if stock has not been fully allocated" msgstr "Concluir saídas se o estoque não tiver sido totalmente alocado" -#: build/serializers.py:702 +#: build/serializers.py:710 msgid "Consume Allocated Stock" msgstr "Consumir Estoque Alocado" -#: build/serializers.py:703 +#: build/serializers.py:711 msgid "Consume any stock which has already been allocated to this build" msgstr "Consumir qualquer estoque que já tenha sido alocado para esta produção" -#: build/serializers.py:709 +#: build/serializers.py:717 msgid "Remove Incomplete Outputs" msgstr "Remover Saídas Incompletas" -#: build/serializers.py:710 +#: build/serializers.py:718 msgid "Delete any build outputs which have not been completed" msgstr "Excluir quaisquer saídas de produção que não tenham sido completadas" -#: build/serializers.py:737 +#: build/serializers.py:745 msgid "Not permitted" msgstr "Não permitido" -#: build/serializers.py:738 +#: build/serializers.py:746 msgid "Accept as consumed by this build order" msgstr "Aceitar conforme consumido por esta ordem de produção" -#: build/serializers.py:739 +#: build/serializers.py:747 msgid "Deallocate before completing this build order" msgstr "Desatribua antes de completar este pedido de produção" -#: build/serializers.py:766 +#: build/serializers.py:774 msgid "Overallocated Stock" msgstr "Estoque sobrealocado" -#: build/serializers.py:769 +#: build/serializers.py:777 msgid "How do you want to handle extra stock items assigned to the build order" msgstr "Como deseja manejar itens de estoque extras atribuídos ao pedido de produção" -#: build/serializers.py:780 +#: build/serializers.py:788 msgid "Some stock items have been overallocated" msgstr "Alguns itens de estoque foram sobrealocados" -#: build/serializers.py:785 +#: build/serializers.py:793 msgid "Accept Unallocated" msgstr "Aceitar não alocados" -#: build/serializers.py:787 +#: build/serializers.py:795 msgid "Accept that stock items have not been fully allocated to this build order" msgstr "Aceitar que os itens de estoque não foram totalmente alocados para esta produção" -#: build/serializers.py:798 +#: build/serializers.py:806 msgid "Required stock has not been fully allocated" msgstr "Estoque obrigatório não foi totalmente alocado" -#: build/serializers.py:803 order/serializers.py:524 order/serializers.py:1601 +#: build/serializers.py:811 order/serializers.py:535 order/serializers.py:1615 msgid "Accept Incomplete" msgstr "Aceitar Incompleto" -#: build/serializers.py:805 +#: build/serializers.py:813 msgid "Accept that the required number of build outputs have not been completed" msgstr "Aceitar que o número requerido de saídas de produção não foi concluído" -#: build/serializers.py:816 +#: build/serializers.py:824 msgid "Required build quantity has not been completed" msgstr "Quantidade de produção requerida não foi concluída" -#: build/serializers.py:828 +#: build/serializers.py:836 msgid "Build order has open child build orders" msgstr "" -#: build/serializers.py:831 +#: build/serializers.py:839 msgid "Build order must be in production state" msgstr "" -#: build/serializers.py:834 +#: build/serializers.py:842 msgid "Build order has incomplete outputs" msgstr "Pedido de produção tem saídas incompletas" -#: build/serializers.py:873 +#: build/serializers.py:881 msgid "Build Line" msgstr "Linha de produção" -#: build/serializers.py:881 +#: build/serializers.py:889 msgid "Build output" msgstr "Saída da Produção" -#: build/serializers.py:889 +#: build/serializers.py:897 msgid "Build output must point to the same build" msgstr "Saída de produção deve indicar a mesma produção" -#: build/serializers.py:920 +#: build/serializers.py:928 msgid "Build Line Item" msgstr "Item da linha de produção" -#: build/serializers.py:938 +#: build/serializers.py:946 msgid "bom_item.part must point to the same part as the build order" msgstr "bin_item.part deve indicar a mesma peça do pedido de produção" -#: build/serializers.py:954 stock/serializers.py:1287 +#: build/serializers.py:962 stock/serializers.py:1287 msgid "Item must be in stock" msgstr "Item deve estar em estoque" -#: build/serializers.py:997 order/serializers.py:1587 +#: build/serializers.py:1005 order/serializers.py:1601 #, python-brace-format msgid "Available quantity ({q}) exceeded" msgstr "Quantidade disponível ({q}) excedida" -#: build/serializers.py:1003 +#: build/serializers.py:1011 msgid "Build output must be specified for allocation of tracked parts" msgstr "Saída de produção deve ser definida para alocação de peças rastreadas" -#: build/serializers.py:1011 +#: build/serializers.py:1019 msgid "Build output cannot be specified for allocation of untracked parts" msgstr "Saída de produção deve ser definida para alocação de peças não rastreadas" -#: build/serializers.py:1035 order/serializers.py:1860 +#: build/serializers.py:1043 order/serializers.py:1874 msgid "Allocation items must be provided" msgstr "Alocação do Item precisa ser fornecida" -#: build/serializers.py:1099 +#: build/serializers.py:1107 msgid "Stock location where parts are to be sourced (leave blank to take from any location)" msgstr "Local de estoque onde peças serão extraídas (deixar em branco para qualquer local)" -#: build/serializers.py:1108 +#: build/serializers.py:1116 msgid "Exclude Location" msgstr "Local não incluso" -#: build/serializers.py:1109 +#: build/serializers.py:1117 msgid "Exclude stock items from this selected location" msgstr "Não incluir itens de estoque deste local" -#: build/serializers.py:1114 +#: build/serializers.py:1122 msgid "Interchangeable Stock" msgstr "Estoque permutável" -#: build/serializers.py:1115 +#: build/serializers.py:1123 msgid "Stock items in multiple locations can be used interchangeably" msgstr "Itens de estoque em múltiplos locais pode ser permutável" -#: build/serializers.py:1120 +#: build/serializers.py:1128 msgid "Substitute Stock" msgstr "Substituir Estoque" -#: build/serializers.py:1121 +#: build/serializers.py:1129 msgid "Allow allocation of substitute parts" msgstr "Permitir alocação de peças substitutas" -#: build/serializers.py:1126 +#: build/serializers.py:1134 msgid "Optional Items" msgstr "Itens opcionais" -#: build/serializers.py:1127 +#: build/serializers.py:1135 msgid "Allocate optional BOM items to build order" msgstr "Alocar itens LDM opcionais para o pedido de produção" -#: build/serializers.py:1148 +#: build/serializers.py:1156 msgid "Failed to start auto-allocation task" msgstr "Falha ao iniciar tarefa de auto-alocação" -#: build/serializers.py:1200 +#: build/serializers.py:1208 msgid "BOM Reference" msgstr "" -#: build/serializers.py:1206 +#: build/serializers.py:1214 msgid "BOM Part ID" msgstr "" -#: build/serializers.py:1213 +#: build/serializers.py:1221 msgid "BOM Part Name" msgstr "" -#: build/serializers.py:1266 build/serializers.py:1449 +#: build/serializers.py:1274 build/serializers.py:1457 msgid "Build" msgstr "" -#: build/serializers.py:1276 company/models.py:685 order/api.py:311 -#: order/api.py:316 order/api.py:543 order/serializers.py:650 +#: build/serializers.py:1284 company/models.py:639 order/api.py:316 +#: order/api.py:321 order/api.py:549 order/serializers.py:661 #: stock/models.py:1036 stock/serializers.py:579 msgid "Supplier Part" msgstr "Fornecedor da Peça" -#: build/serializers.py:1284 stock/serializers.py:620 +#: build/serializers.py:1292 stock/serializers.py:620 msgid "Allocated Quantity" msgstr "Quantidade Alocada" -#: build/serializers.py:1351 +#: build/serializers.py:1359 msgid "Build Reference" msgstr "" -#: build/serializers.py:1361 +#: build/serializers.py:1369 msgid "Part Category Name" msgstr "" -#: build/serializers.py:1383 common/setting/system.py:480 part/models.py:1214 +#: build/serializers.py:1391 common/setting/system.py:480 part/models.py:1302 msgid "Trackable" msgstr "Rastreável" -#: build/serializers.py:1386 +#: build/serializers.py:1394 msgid "Inherited" msgstr "" -#: build/serializers.py:1389 part/models.py:4475 +#: build/serializers.py:1397 part/models.py:4100 msgid "Allow Variants" msgstr "Permitir variações" -#: build/serializers.py:1395 build/serializers.py:1400 part/models.py:4208 -#: part/models.py:4779 stock/api.py:882 +#: build/serializers.py:1403 build/serializers.py:1408 part/models.py:3833 +#: part/models.py:4404 stock/api.py:882 msgid "BOM Item" msgstr "Item LDM" -#: build/serializers.py:1467 order/serializers.py:1282 part/serializers.py:1310 -#: part/serializers.py:1765 +#: build/serializers.py:1475 order/serializers.py:1296 part/serializers.py:1175 +#: part/serializers.py:1630 msgid "In Production" msgstr "Em Produção" -#: build/serializers.py:1469 part/serializers.py:950 part/serializers.py:1314 +#: build/serializers.py:1477 part/serializers.py:835 part/serializers.py:1179 msgid "Scheduled to Build" msgstr "" -#: build/serializers.py:1472 part/serializers.py:987 +#: build/serializers.py:1480 part/serializers.py:872 msgid "External Stock" msgstr "" -#: build/serializers.py:1473 part/serializers.py:1300 part/serializers.py:1808 +#: build/serializers.py:1481 part/serializers.py:1165 part/serializers.py:1673 msgid "Available Stock" msgstr "Estoque Disponível" -#: build/serializers.py:1475 +#: build/serializers.py:1483 msgid "Available Substitute Stock" msgstr "" -#: build/serializers.py:1478 +#: build/serializers.py:1486 msgid "Available Variant Stock" msgstr "" -#: build/serializers.py:1752 +#: build/serializers.py:1760 msgid "Consumed quantity exceeds allocated quantity" msgstr "" -#: build/serializers.py:1789 +#: build/serializers.py:1797 msgid "Optional notes for the stock consumption" msgstr "" -#: build/serializers.py:1806 +#: build/serializers.py:1814 msgid "Build item must point to the correct build order" msgstr "" -#: build/serializers.py:1811 +#: build/serializers.py:1819 msgid "Duplicate build item allocation" msgstr "" -#: build/serializers.py:1829 +#: build/serializers.py:1837 msgid "Build line must point to the correct build order" msgstr "" -#: build/serializers.py:1834 +#: build/serializers.py:1842 msgid "Duplicate build line allocation" msgstr "" -#: build/serializers.py:1846 +#: build/serializers.py:1854 msgid "At least one item or line must be provided" msgstr "" @@ -1482,702 +1498,826 @@ msgstr "Pedido de produção vencido" msgid "Build order {bo} is now overdue" msgstr "Pedido de produção {bo} está atrasada" -#: common/api.py:694 +#: common/api.py:701 msgid "Is Link" msgstr "É uma Ligação" -#: common/api.py:702 +#: common/api.py:709 msgid "Is File" msgstr "É um arquivo" -#: common/api.py:745 +#: common/api.py:756 msgid "User does not have permission to delete these attachments" msgstr "" -#: common/api.py:762 +#: common/api.py:769 msgid "User does not have permission to delete this attachment" msgstr "O Utilizador não tem permissão para remover este anexo" -#: common/currency.py:122 +#: common/currency.py:130 msgid "Invalid currency code" msgstr "Código da Moeda invalida" -#: common/currency.py:124 +#: common/currency.py:132 msgid "Duplicate currency code" msgstr "Código da Moeda duplicada" -#: common/currency.py:129 +#: common/currency.py:137 msgid "No valid currency codes provided" msgstr "Nenhum código de moeda válido foi fornecido" -#: common/currency.py:146 +#: common/currency.py:154 msgid "No plugin" msgstr "Sem extensão" -#: common/models.py:101 common/models.py:126 common/models.py:2729 +#: common/models.py:105 common/models.py:130 common/models.py:3150 msgid "Updated" msgstr "Atualizado" -#: common/models.py:102 common/models.py:127 +#: common/models.py:106 common/models.py:131 msgid "Timestamp of last update" msgstr "Tempo da última atualização" -#: common/models.py:139 +#: common/models.py:143 msgid "Update By" msgstr "" -#: common/models.py:140 +#: common/models.py:144 msgid "User who last updated this object" msgstr "" -#: common/models.py:165 +#: common/models.py:169 msgid "Unique project code" msgstr "Código único do projeto" -#: common/models.py:172 +#: common/models.py:176 msgid "Project description" msgstr "Descrição do projeto" -#: common/models.py:181 +#: common/models.py:185 msgid "User or group responsible for this project" msgstr "Usuário ou grupo responsável por este projeto" -#: common/models.py:771 common/models.py:1272 common/models.py:1310 +#: common/models.py:775 common/models.py:1276 common/models.py:1314 msgid "Settings key" msgstr "" -#: common/models.py:775 +#: common/models.py:779 msgid "Settings value" msgstr "Valor da Configuração" -#: common/models.py:830 +#: common/models.py:834 msgid "Chosen value is not a valid option" msgstr "Valor escolhido não é uma opção válida" -#: common/models.py:846 +#: common/models.py:850 msgid "Value must be a boolean value" msgstr "Valor deve ser um valor booleano" -#: common/models.py:854 +#: common/models.py:858 msgid "Value must be an integer value" msgstr "Valor deve ser um número inteiro" -#: common/models.py:862 +#: common/models.py:866 msgid "Value must be a valid number" msgstr "" -#: common/models.py:887 +#: common/models.py:891 msgid "Value does not pass validation checks" msgstr "" -#: common/models.py:909 +#: common/models.py:913 msgid "Key string must be unique" msgstr "A frase senha deve ser diferenciada" -#: common/models.py:1318 common/models.py:1319 common/models.py:1423 -#: common/models.py:1424 common/models.py:1669 common/models.py:1670 -#: common/models.py:2000 common/models.py:2001 common/models.py:2382 -#: importer/models.py:100 part/models.py:3547 part/models.py:3575 +#: common/models.py:1322 common/models.py:1323 common/models.py:1427 +#: common/models.py:1428 common/models.py:1673 common/models.py:1674 +#: common/models.py:2006 common/models.py:2007 common/models.py:2803 +#: importer/models.py:100 part/models.py:3611 part/models.py:3639 #: plugin/models.py:355 plugin/models.py:356 #: report/templates/report/inventree_test_report.html:105 users/models.py:124 #: users/models.py:501 msgid "User" msgstr "Usuario" -#: common/models.py:1341 +#: common/models.py:1345 msgid "Price break quantity" msgstr "Quantidade de Parcelamentos" -#: common/models.py:1348 company/serializers.py:564 order/models.py:1842 -#: order/models.py:3043 +#: common/models.py:1352 company/serializers.py:349 order/models.py:1843 +#: order/models.py:3044 msgid "Price" msgstr "Preço" -#: common/models.py:1349 +#: common/models.py:1353 msgid "Unit price at specified quantity" msgstr "Preço unitário na quantidade especificada" -#: common/models.py:1400 common/models.py:1585 +#: common/models.py:1404 common/models.py:1589 msgid "Endpoint" msgstr "Ponto final" -#: common/models.py:1401 +#: common/models.py:1405 msgid "Endpoint at which this webhook is received" msgstr "Ponto final em qual o gancho web foi recebido" -#: common/models.py:1411 +#: common/models.py:1415 msgid "Name for this webhook" msgstr "Nome para este webhook" -#: common/models.py:1415 common/models.py:2241 common/models.py:2348 -#: company/models.py:191 company/models.py:822 machine/models.py:40 -#: part/models.py:1237 plugin/models.py:69 stock/api.py:642 users/models.py:195 +#: common/models.py:1419 common/models.py:2247 common/models.py:2354 +#: company/models.py:192 company/models.py:776 machine/models.py:40 +#: part/models.py:1325 plugin/models.py:69 stock/api.py:642 users/models.py:195 #: users/models.py:554 users/serializers.py:314 msgid "Active" msgstr "Ativo" -#: common/models.py:1415 +#: common/models.py:1419 msgid "Is this webhook active" msgstr "Este gancho web está ativo" -#: common/models.py:1431 users/models.py:172 +#: common/models.py:1435 users/models.py:172 msgid "Token" msgstr "" -#: common/models.py:1432 +#: common/models.py:1436 msgid "Token for access" msgstr "Token de acesso" -#: common/models.py:1440 +#: common/models.py:1444 msgid "Secret" msgstr "Segredo" -#: common/models.py:1441 +#: common/models.py:1445 msgid "Shared secret for HMAC" msgstr "Segredo compartilhado para HMAC" -#: common/models.py:1549 common/models.py:2619 +#: common/models.py:1553 common/models.py:3040 msgid "Message ID" msgstr "ID da Mensagem" -#: common/models.py:1550 common/models.py:2609 +#: common/models.py:1554 common/models.py:3030 msgid "Unique identifier for this message" msgstr "Identificador exclusivo desta mensagem" -#: common/models.py:1558 +#: common/models.py:1562 msgid "Host" msgstr "Servidor" -#: common/models.py:1559 +#: common/models.py:1563 msgid "Host from which this message was received" msgstr "Servidor do qual esta mensagem foi recebida" -#: common/models.py:1567 +#: common/models.py:1571 msgid "Header" msgstr "Cabeçalho" -#: common/models.py:1568 +#: common/models.py:1572 msgid "Header of this message" msgstr "Cabeçalho da mensagem" -#: common/models.py:1575 +#: common/models.py:1579 msgid "Body" msgstr "Corpo" -#: common/models.py:1576 +#: common/models.py:1580 msgid "Body of this message" msgstr "Corpo da mensagem" -#: common/models.py:1586 +#: common/models.py:1590 msgid "Endpoint on which this message was received" msgstr "Ponto do qual esta mensagem foi recebida" -#: common/models.py:1591 +#: common/models.py:1595 msgid "Worked on" msgstr "Trabalhado em" -#: common/models.py:1592 +#: common/models.py:1596 msgid "Was the work on this message finished?" msgstr "O trabalho desta mensagem foi concluído?" -#: common/models.py:1718 +#: common/models.py:1722 msgid "Id" msgstr "" -#: common/models.py:1720 +#: common/models.py:1724 msgid "Title" msgstr "Título" -#: common/models.py:1722 common/models.py:1983 company/models.py:185 -#: company/models.py:467 company/models.py:534 company/models.py:839 -#: order/models.py:457 order/models.py:1786 order/models.py:2343 -#: part/models.py:1113 +#: common/models.py:1726 common/models.py:1989 company/models.py:186 +#: company/models.py:468 company/models.py:536 company/models.py:793 +#: order/models.py:458 order/models.py:1787 order/models.py:2344 +#: part/models.py:1201 #: report/templates/report/inventree_build_order_report.html:164 msgid "Link" msgstr "Ligação" -#: common/models.py:1724 +#: common/models.py:1728 msgid "Published" msgstr "Publicado" -#: common/models.py:1726 +#: common/models.py:1730 msgid "Author" msgstr "Autor" -#: common/models.py:1728 +#: common/models.py:1732 msgid "Summary" msgstr "Resumo" -#: common/models.py:1731 common/models.py:2586 +#: common/models.py:1735 common/models.py:3007 msgid "Read" msgstr "Lida" -#: common/models.py:1731 +#: common/models.py:1735 msgid "Was this news item read?" msgstr "Esta notícia do item foi lida?" -#: common/models.py:1748 +#: common/models.py:1752 msgid "Image file" msgstr "Arquivo de imagem" -#: common/models.py:1760 +#: common/models.py:1764 msgid "Target model type for this image" msgstr "" -#: common/models.py:1764 +#: common/models.py:1768 msgid "Target model ID for this image" msgstr "" -#: common/models.py:1786 +#: common/models.py:1790 msgid "Custom Unit" msgstr "" -#: common/models.py:1804 +#: common/models.py:1808 msgid "Unit symbol must be unique" msgstr "" -#: common/models.py:1819 +#: common/models.py:1823 msgid "Unit name must be a valid identifier" msgstr "Nome da unidade deve ser um identificador válido" -#: common/models.py:1838 +#: common/models.py:1842 msgid "Unit name" msgstr "Nome da unidade" -#: common/models.py:1845 +#: common/models.py:1849 msgid "Symbol" msgstr "Símbolo" -#: common/models.py:1846 +#: common/models.py:1850 msgid "Optional unit symbol" msgstr "Símbolo de unidade opcional" -#: common/models.py:1852 +#: common/models.py:1856 msgid "Definition" msgstr "Definição" -#: common/models.py:1853 +#: common/models.py:1857 msgid "Unit definition" msgstr "Definição de unidade" -#: common/models.py:1911 common/models.py:1974 stock/models.py:2967 +#: common/models.py:1917 common/models.py:1980 stock/models.py:2984 #: stock/serializers.py:247 msgid "Attachment" msgstr "Anexo" -#: common/models.py:1928 +#: common/models.py:1934 msgid "Missing file" msgstr "Arquivo ausente" -#: common/models.py:1929 +#: common/models.py:1935 msgid "Missing external link" msgstr "Link externo não encontrado" -#: common/models.py:1966 +#: common/models.py:1972 common/models.py:2488 msgid "Model type" msgstr "" -#: common/models.py:1967 +#: common/models.py:1973 msgid "Target model type for image" msgstr "" -#: common/models.py:1975 +#: common/models.py:1981 msgid "Select file to attach" msgstr "Selecione arquivo para anexar" -#: common/models.py:1991 +#: common/models.py:1997 msgid "Comment" msgstr "Comentario" -#: common/models.py:1992 +#: common/models.py:1998 msgid "Attachment comment" msgstr "" -#: common/models.py:2008 +#: common/models.py:2014 msgid "Upload date" msgstr "" -#: common/models.py:2009 +#: common/models.py:2015 msgid "Date the file was uploaded" msgstr "" -#: common/models.py:2013 +#: common/models.py:2019 msgid "File size" msgstr "" -#: common/models.py:2013 +#: common/models.py:2019 msgid "File size in bytes" msgstr "" -#: common/models.py:2051 common/serializers.py:684 +#: common/models.py:2057 common/serializers.py:688 msgid "Invalid model type specified for attachment" msgstr "" -#: common/models.py:2072 +#: common/models.py:2078 msgid "Custom State" msgstr "" -#: common/models.py:2073 +#: common/models.py:2079 msgid "Custom States" msgstr "" -#: common/models.py:2078 +#: common/models.py:2084 msgid "Reference Status Set" msgstr "" -#: common/models.py:2079 +#: common/models.py:2085 msgid "Status set that is extended with this custom state" msgstr "" -#: common/models.py:2083 generic/states/serializers.py:18 +#: common/models.py:2089 generic/states/serializers.py:18 msgid "Logical Key" msgstr "" -#: common/models.py:2085 +#: common/models.py:2091 msgid "State logical key that is equal to this custom state in business logic" msgstr "" -#: common/models.py:2090 common/models.py:2329 company/models.py:622 -#: machine/serializers.py:27 -#: report/templates/report/inventree_test_report.html:104 stock/models.py:2959 +#: common/models.py:2096 common/models.py:2335 machine/serializers.py:27 +#: report/templates/report/inventree_test_report.html:104 stock/models.py:2976 msgid "Value" msgstr "Valor" -#: common/models.py:2091 +#: common/models.py:2097 msgid "Numerical value that will be saved in the models database" msgstr "" -#: common/models.py:2097 +#: common/models.py:2103 msgid "Name of the state" msgstr "" -#: common/models.py:2106 common/models.py:2335 generic/states/serializers.py:22 +#: common/models.py:2112 common/models.py:2341 generic/states/serializers.py:22 msgid "Label" msgstr "" -#: common/models.py:2107 +#: common/models.py:2113 msgid "Label that will be displayed in the frontend" msgstr "" -#: common/models.py:2114 generic/states/serializers.py:24 +#: common/models.py:2120 generic/states/serializers.py:24 msgid "Color" msgstr "" -#: common/models.py:2115 +#: common/models.py:2121 msgid "Color that will be displayed in the frontend" msgstr "" -#: common/models.py:2123 +#: common/models.py:2129 msgid "Model" msgstr "" -#: common/models.py:2124 +#: common/models.py:2130 msgid "Model this state is associated with" msgstr "" -#: common/models.py:2139 +#: common/models.py:2145 msgid "Model must be selected" msgstr "" -#: common/models.py:2142 +#: common/models.py:2148 msgid "Key must be selected" msgstr "" -#: common/models.py:2145 +#: common/models.py:2151 msgid "Logical key must be selected" msgstr "" -#: common/models.py:2149 +#: common/models.py:2155 msgid "Key must be different from logical key" msgstr "" -#: common/models.py:2156 +#: common/models.py:2162 msgid "Valid reference status class must be provided" msgstr "" -#: common/models.py:2162 +#: common/models.py:2168 msgid "Key must be different from the logical keys of the reference status" msgstr "" -#: common/models.py:2169 +#: common/models.py:2175 msgid "Logical key must be in the logical keys of the reference status" msgstr "" -#: common/models.py:2176 +#: common/models.py:2182 msgid "Name must be different from the names of the reference status" msgstr "" -#: common/models.py:2216 common/models.py:2323 part/models.py:3889 +#: common/models.py:2222 common/models.py:2329 common/models.py:2533 msgid "Selection List" msgstr "" -#: common/models.py:2217 +#: common/models.py:2223 msgid "Selection Lists" msgstr "" -#: common/models.py:2222 +#: common/models.py:2228 msgid "Name of the selection list" msgstr "" -#: common/models.py:2229 +#: common/models.py:2235 msgid "Description of the selection list" msgstr "" -#: common/models.py:2235 part/models.py:1242 +#: common/models.py:2241 part/models.py:1330 msgid "Locked" msgstr "" -#: common/models.py:2236 +#: common/models.py:2242 msgid "Is this selection list locked?" msgstr "" -#: common/models.py:2242 +#: common/models.py:2248 msgid "Can this selection list be used?" msgstr "" -#: common/models.py:2250 +#: common/models.py:2256 msgid "Source Plugin" msgstr "" -#: common/models.py:2251 +#: common/models.py:2257 msgid "Plugin which provides the selection list" msgstr "" -#: common/models.py:2256 +#: common/models.py:2262 msgid "Source String" msgstr "" -#: common/models.py:2257 +#: common/models.py:2263 msgid "Optional string identifying the source used for this list" msgstr "" -#: common/models.py:2266 +#: common/models.py:2272 msgid "Default Entry" msgstr "" -#: common/models.py:2267 +#: common/models.py:2273 msgid "Default entry for this selection list" msgstr "" -#: common/models.py:2272 common/models.py:2724 +#: common/models.py:2278 common/models.py:3145 msgid "Created" msgstr "Criado" -#: common/models.py:2273 +#: common/models.py:2279 msgid "Date and time that the selection list was created" msgstr "" -#: common/models.py:2278 +#: common/models.py:2284 msgid "Last Updated" msgstr "Última atualização" -#: common/models.py:2279 +#: common/models.py:2285 msgid "Date and time that the selection list was last updated" msgstr "" -#: common/models.py:2313 +#: common/models.py:2319 msgid "Selection List Entry" msgstr "" -#: common/models.py:2314 +#: common/models.py:2320 msgid "Selection List Entries" msgstr "" -#: common/models.py:2324 +#: common/models.py:2330 msgid "Selection list to which this entry belongs" msgstr "" -#: common/models.py:2330 +#: common/models.py:2336 msgid "Value of the selection list entry" msgstr "" -#: common/models.py:2336 +#: common/models.py:2342 msgid "Label for the selection list entry" msgstr "" -#: common/models.py:2342 +#: common/models.py:2348 msgid "Description of the selection list entry" msgstr "" -#: common/models.py:2349 +#: common/models.py:2355 msgid "Is this selection list entry active?" msgstr "" -#: common/models.py:2367 -msgid "Barcode Scan" +#: common/models.py:2387 +msgid "Parameter Template" +msgstr "Modelo de parâmetro" + +#: common/models.py:2388 +msgid "Parameter Templates" msgstr "" -#: common/models.py:2371 importer/models.py:546 part/models.py:4060 -msgid "Data" -msgstr "Dados" +#: common/models.py:2425 +msgid "Checkbox parameters cannot have units" +msgstr "Parâmetros da caixa de seleção não podem ter unidades" -#: common/models.py:2372 -msgid "Barcode data" +#: common/models.py:2430 +msgid "Checkbox parameters cannot have choices" +msgstr "Os parâmetros da caixa de seleção não podem ter escolhas" + +#: common/models.py:2450 part/models.py:3707 +msgid "Choices must be unique" +msgstr "Escolhas devem ser únicas" + +#: common/models.py:2467 +msgid "Parameter template name must be unique" +msgstr "Nome do modelo de parâmetro deve ser único" + +#: common/models.py:2489 +msgid "Target model type for this parameter template" msgstr "" -#: common/models.py:2383 -msgid "User who scanned the barcode" +#: common/models.py:2495 +msgid "Parameter Name" +msgstr "Nome do Parâmetro" + +#: common/models.py:2501 part/models.py:1283 +msgid "Units" +msgstr "Unidades" + +#: common/models.py:2502 +msgid "Physical units for this parameter" +msgstr "Unidades físicas para este parâmetro" + +#: common/models.py:2510 +msgid "Parameter description" +msgstr "Descrição do Parâmetro" + +#: common/models.py:2516 +msgid "Checkbox" +msgstr "Caixa de seleção" + +#: common/models.py:2517 +msgid "Is this parameter a checkbox?" +msgstr "Este parâmetro é uma caixa de seleção?" + +#: common/models.py:2522 part/models.py:3794 +msgid "Choices" +msgstr "Escolhas" + +#: common/models.py:2523 +msgid "Valid choices for this parameter (comma-separated)" +msgstr "Opções válidas para este parâmetro (separadas por vírgulas)" + +#: common/models.py:2534 +msgid "Selection list for this parameter" msgstr "" -#: common/models.py:2388 importer/models.py:69 -msgid "Timestamp" +#: common/models.py:2539 part/models.py:3769 report/models.py:287 +msgid "Enabled" +msgstr "Habilitado" + +#: common/models.py:2540 +msgid "Is this parameter template enabled?" msgstr "" -#: common/models.py:2389 -msgid "Date and time of the barcode scan" -msgstr "" - -#: common/models.py:2395 -msgid "URL endpoint which processed the barcode" -msgstr "" - -#: common/models.py:2402 order/models.py:1832 plugin/serializers.py:93 -msgid "Context" -msgstr "Contexto" - -#: common/models.py:2403 -msgid "Context data for the barcode scan" -msgstr "" - -#: common/models.py:2410 -msgid "Response" -msgstr "" - -#: common/models.py:2411 -msgid "Response data from the barcode scan" -msgstr "" - -#: common/models.py:2417 report/templates/report/inventree_test_report.html:103 -#: stock/models.py:2953 -msgid "Result" -msgstr "Resultado" - -#: common/models.py:2418 -msgid "Was the barcode scan successful?" -msgstr "" - -#: common/models.py:2500 -msgid "An error occurred" -msgstr "" - -#: common/models.py:2521 -msgid "INVE-E8: Email log deletion is protected. Set INVENTREE_PROTECT_EMAIL_LOG to False to allow deletion." -msgstr "" - -#: common/models.py:2568 -msgid "Email Message" -msgstr "" - -#: common/models.py:2569 -msgid "Email Messages" -msgstr "" - -#: common/models.py:2576 -msgid "Announced" -msgstr "" - -#: common/models.py:2578 -msgid "Sent" -msgstr "" - -#: common/models.py:2579 -msgid "Failed" +#: common/models.py:2581 +msgid "Parameter" msgstr "" #: common/models.py:2582 -msgid "Delivered" -msgstr "" - -#: common/models.py:2590 -msgid "Confirmed" -msgstr "" - -#: common/models.py:2596 -msgid "Inbound" -msgstr "" - -#: common/models.py:2597 -msgid "Outbound" -msgstr "" - -#: common/models.py:2602 -msgid "No Reply" -msgstr "" - -#: common/models.py:2603 -msgid "Track Delivery" -msgstr "" - -#: common/models.py:2604 -msgid "Track Read" -msgstr "" - -#: common/models.py:2605 -msgid "Track Click" -msgstr "" - -#: common/models.py:2608 common/models.py:2711 -msgid "Global ID" -msgstr "" - -#: common/models.py:2621 -msgid "Identifier for this message (might be supplied by external system)" +msgid "Parameters" msgstr "" #: common/models.py:2628 +msgid "Invalid choice for parameter value" +msgstr "Escolha inválida para valor do parâmetro" + +#: common/models.py:2698 common/serializers.py:783 +msgid "Invalid model type specified for parameter" +msgstr "" + +#: common/models.py:2734 +msgid "Model ID" +msgstr "" + +#: common/models.py:2735 +msgid "ID of the target model for this parameter" +msgstr "" + +#: common/models.py:2744 common/setting/system.py:450 report/models.py:373 +#: report/models.py:669 report/serializers.py:94 report/serializers.py:135 +#: stock/serializers.py:234 +msgid "Template" +msgstr "Modelo" + +#: common/models.py:2745 +msgid "Parameter template" +msgstr "" + +#: common/models.py:2750 common/models.py:2792 importer/models.py:546 +msgid "Data" +msgstr "Dados" + +#: common/models.py:2751 +msgid "Parameter Value" +msgstr "Valor do Parâmetro" + +#: common/models.py:2760 company/models.py:810 order/serializers.py:894 +#: order/serializers.py:2064 part/models.py:4075 part/models.py:4444 +#: report/templates/report/inventree_bill_of_materials_report.html:140 +#: report/templates/report/inventree_purchase_order_report.html:39 +#: report/templates/report/inventree_return_order_report.html:27 +#: report/templates/report/inventree_sales_order_report.html:32 +#: report/templates/report/inventree_stock_location_report.html:105 +#: stock/serializers.py:813 +msgid "Note" +msgstr "Anotação" + +#: common/models.py:2761 stock/serializers.py:718 +msgid "Optional note field" +msgstr "Campo opcional de notas" + +#: common/models.py:2788 +msgid "Barcode Scan" +msgstr "" + +#: common/models.py:2793 +msgid "Barcode data" +msgstr "" + +#: common/models.py:2804 +msgid "User who scanned the barcode" +msgstr "" + +#: common/models.py:2809 importer/models.py:69 +msgid "Timestamp" +msgstr "" + +#: common/models.py:2810 +msgid "Date and time of the barcode scan" +msgstr "" + +#: common/models.py:2816 +msgid "URL endpoint which processed the barcode" +msgstr "" + +#: common/models.py:2823 order/models.py:1833 plugin/serializers.py:93 +msgid "Context" +msgstr "Contexto" + +#: common/models.py:2824 +msgid "Context data for the barcode scan" +msgstr "" + +#: common/models.py:2831 +msgid "Response" +msgstr "" + +#: common/models.py:2832 +msgid "Response data from the barcode scan" +msgstr "" + +#: common/models.py:2838 report/templates/report/inventree_test_report.html:103 +#: stock/models.py:2970 +msgid "Result" +msgstr "Resultado" + +#: common/models.py:2839 +msgid "Was the barcode scan successful?" +msgstr "" + +#: common/models.py:2921 +msgid "An error occurred" +msgstr "" + +#: common/models.py:2942 +msgid "INVE-E8: Email log deletion is protected. Set INVENTREE_PROTECT_EMAIL_LOG to False to allow deletion." +msgstr "" + +#: common/models.py:2989 +msgid "Email Message" +msgstr "" + +#: common/models.py:2990 +msgid "Email Messages" +msgstr "" + +#: common/models.py:2997 +msgid "Announced" +msgstr "" + +#: common/models.py:2999 +msgid "Sent" +msgstr "" + +#: common/models.py:3000 +msgid "Failed" +msgstr "" + +#: common/models.py:3003 +msgid "Delivered" +msgstr "" + +#: common/models.py:3011 +msgid "Confirmed" +msgstr "" + +#: common/models.py:3017 +msgid "Inbound" +msgstr "" + +#: common/models.py:3018 +msgid "Outbound" +msgstr "" + +#: common/models.py:3023 +msgid "No Reply" +msgstr "" + +#: common/models.py:3024 +msgid "Track Delivery" +msgstr "" + +#: common/models.py:3025 +msgid "Track Read" +msgstr "" + +#: common/models.py:3026 +msgid "Track Click" +msgstr "" + +#: common/models.py:3029 common/models.py:3132 +msgid "Global ID" +msgstr "" + +#: common/models.py:3042 +msgid "Identifier for this message (might be supplied by external system)" +msgstr "" + +#: common/models.py:3049 msgid "Thread ID" msgstr "" -#: common/models.py:2630 +#: common/models.py:3051 msgid "Identifier for this message thread (might be supplied by external system)" msgstr "" -#: common/models.py:2639 +#: common/models.py:3060 msgid "Thread" msgstr "" -#: common/models.py:2640 +#: common/models.py:3061 msgid "Linked thread for this message" msgstr "" -#: common/models.py:2656 -msgid "Prioriy" +#: common/models.py:3077 +msgid "Priority" msgstr "" -#: common/models.py:2698 +#: common/models.py:3119 msgid "Email Thread" msgstr "" -#: common/models.py:2699 +#: common/models.py:3120 msgid "Email Threads" msgstr "" -#: common/models.py:2705 generic/states/serializers.py:16 +#: common/models.py:3126 generic/states/serializers.py:16 #: machine/serializers.py:24 plugin/models.py:46 users/models.py:113 msgid "Key" msgstr "Chave" -#: common/models.py:2708 +#: common/models.py:3129 msgid "Unique key for this thread (used to identify the thread)" msgstr "" -#: common/models.py:2712 +#: common/models.py:3133 msgid "Unique identifier for this thread" msgstr "" -#: common/models.py:2719 +#: common/models.py:3140 msgid "Started Internal" msgstr "" -#: common/models.py:2720 +#: common/models.py:3141 msgid "Was this thread started internally?" msgstr "" -#: common/models.py:2725 +#: common/models.py:3146 msgid "Date and time that the thread was created" msgstr "" -#: common/models.py:2730 +#: common/models.py:3151 msgid "Date and time that the thread was last updated" msgstr "" @@ -2199,7 +2339,7 @@ msgstr "{verbose_name} cancelado" msgid "A order that is assigned to you was canceled" msgstr "Um pedido atribuído a você foi cancelado" -#: common/notifications.py:73 common/notifications.py:80 order/api.py:594 +#: common/notifications.py:73 common/notifications.py:80 order/api.py:600 msgid "Items Received" msgstr "Itens Recebidos" @@ -2211,88 +2351,93 @@ msgstr "Os itens de um pedido de compra foram recebidos" msgid "Items have been received against a return order" msgstr "Os itens de um pedido de devolução foram recebidos" -#: common/serializers.py:145 +#: common/serializers.py:149 msgid "Indicates if the setting is overridden by an environment variable" msgstr "" -#: common/serializers.py:147 +#: common/serializers.py:151 msgid "Override" msgstr "" -#: common/serializers.py:498 +#: common/serializers.py:502 msgid "Is Running" msgstr "Executando" -#: common/serializers.py:504 +#: common/serializers.py:508 msgid "Pending Tasks" msgstr "Tarefas Pendentes" -#: common/serializers.py:510 +#: common/serializers.py:514 msgid "Scheduled Tasks" msgstr "Tarefas Agendadas" -#: common/serializers.py:516 +#: common/serializers.py:520 msgid "Failed Tasks" msgstr "Tarefas com Falhas" -#: common/serializers.py:531 +#: common/serializers.py:535 msgid "Task ID" msgstr "ID da Tarefa" -#: common/serializers.py:531 +#: common/serializers.py:535 msgid "Unique task ID" msgstr "ID Único da Tarefa" -#: common/serializers.py:533 +#: common/serializers.py:537 msgid "Lock" msgstr "Bloquear" -#: common/serializers.py:533 +#: common/serializers.py:537 msgid "Lock time" msgstr "Tempo de bloqueio" -#: common/serializers.py:535 +#: common/serializers.py:539 msgid "Task name" msgstr "Nome da tarefa" -#: common/serializers.py:537 +#: common/serializers.py:541 msgid "Function" msgstr "Função" -#: common/serializers.py:537 +#: common/serializers.py:541 msgid "Function name" msgstr "Nome da função" -#: common/serializers.py:539 +#: common/serializers.py:543 msgid "Arguments" msgstr "Argumentos" -#: common/serializers.py:539 +#: common/serializers.py:543 msgid "Task arguments" msgstr "Argumentos da tarefa" -#: common/serializers.py:542 +#: common/serializers.py:546 msgid "Keyword Arguments" msgstr "Argumentos de Palavra-chave" -#: common/serializers.py:542 +#: common/serializers.py:546 msgid "Task keyword arguments" msgstr "Argumentos Palavra-chave da Tarefa" -#: common/serializers.py:652 +#: common/serializers.py:656 msgid "Filename" msgstr "Nome do arquivo" -#: common/serializers.py:659 importer/models.py:89 report/api.py:41 +#: common/serializers.py:663 common/serializers.py:730 +#: common/serializers.py:805 importer/models.py:89 report/api.py:41 #: report/models.py:293 report/serializers.py:52 msgid "Model Type" msgstr "" -#: common/serializers.py:687 +#: common/serializers.py:691 msgid "User does not have permission to create or edit attachments for this model" msgstr "" -#: common/serializers.py:731 common/serializers.py:834 +#: common/serializers.py:786 +msgid "User does not have permission to create or edit parameters for this model" +msgstr "" + +#: common/serializers.py:850 common/serializers.py:953 msgid "Selection list is locked" msgstr "" @@ -2368,7 +2513,7 @@ msgstr "Restringir a exibição 'sobre'" msgid "Show the `about` modal only to superusers" msgstr "Mostrar 'sobre' modal apenas para superusuários" -#: common/setting/system.py:224 company/models.py:144 company/models.py:145 +#: common/setting/system.py:224 company/models.py:145 company/models.py:146 msgid "Company name" msgstr "Nome da empresa" @@ -2411,8 +2556,8 @@ msgstr "Com que frequência atualizar as taxas de câmbio (defina como zero para #: common/setting/system.py:253 common/setting/system.py:293 #: common/setting/system.py:306 common/setting/system.py:314 #: common/setting/system.py:321 common/setting/system.py:330 -#: common/setting/system.py:339 common/setting/system.py:588 -#: common/setting/system.py:616 common/setting/system.py:707 +#: common/setting/system.py:339 common/setting/system.py:580 +#: common/setting/system.py:608 common/setting/system.py:707 #: common/setting/system.py:1103 common/setting/system.py:1119 msgid "days" msgstr "dias" @@ -2657,12 +2802,6 @@ msgstr "Copiar Parâmetros dos Modelos de Categoria" msgid "Copy category parameter templates when creating a part" msgstr "Copiar parâmetros do modelo de categoria quando criar uma peça" -#: common/setting/system.py:450 part/models.py:4054 report/models.py:373 -#: report/models.py:669 report/serializers.py:94 report/serializers.py:135 -#: stock/serializers.py:234 -msgid "Template" -msgstr "Modelo" - #: common/setting/system.py:451 msgid "Parts are templates by default" msgstr "Peças são modelos por padrão" @@ -2671,8 +2810,8 @@ msgstr "Peças são modelos por padrão" msgid "Parts can be assembled from other components by default" msgstr "Peças podem ser montadas a partir de outros componentes por padrão" -#: common/setting/system.py:462 part/models.py:1208 part/serializers.py:1734 -#: part/serializers.py:1741 +#: common/setting/system.py:462 part/models.py:1296 part/serializers.py:1599 +#: part/serializers.py:1606 msgid "Component" msgstr "Componente" @@ -2680,7 +2819,7 @@ msgstr "Componente" msgid "Parts can be used as sub-components by default" msgstr "Peças podem ser usadas como sub-componentes por padrão" -#: common/setting/system.py:468 part/models.py:1226 +#: common/setting/system.py:468 part/models.py:1314 msgid "Purchaseable" msgstr "Comprável" @@ -2688,7 +2827,7 @@ msgstr "Comprável" msgid "Parts are purchaseable by default" msgstr "Peças são compráveis por padrão" -#: common/setting/system.py:474 part/models.py:1232 stock/api.py:643 +#: common/setting/system.py:474 part/models.py:1320 stock/api.py:643 msgid "Salable" msgstr "Vendível" @@ -2700,7 +2839,7 @@ msgstr "Peças vão vendíveis por padrão" msgid "Parts are trackable by default" msgstr "Peças vão rastreáveis por padrão" -#: common/setting/system.py:486 part/models.py:1248 +#: common/setting/system.py:486 part/models.py:1336 msgid "Virtual" msgstr "Virtual" @@ -2749,158 +2888,158 @@ msgid "Part category default icon (empty means no icon)" msgstr "Ícone padrão de categoria de peça (vazio significa sem ícone)" #: common/setting/system.py:525 -msgid "Enforce Parameter Units" -msgstr "Forçar Unidades de Parâmetro" - -#: common/setting/system.py:527 -msgid "If units are provided, parameter values must match the specified units" -msgstr "Se as unidades são fornecidas, os valores do parâmetro devem corresponder às unidades especificadas" - -#: common/setting/system.py:533 msgid "Minimum Pricing Decimal Places" msgstr "Mínimo de Casas Decimais do Preço" -#: common/setting/system.py:535 +#: common/setting/system.py:527 msgid "Minimum number of decimal places to display when rendering pricing data" msgstr "Mínimo número de casas decimais a exibir quando renderizar dados de preços" -#: common/setting/system.py:546 +#: common/setting/system.py:538 msgid "Maximum Pricing Decimal Places" msgstr "Máximo Casas Decimais de Preço" -#: common/setting/system.py:548 +#: common/setting/system.py:540 msgid "Maximum number of decimal places to display when rendering pricing data" msgstr "Número máximo de casas decimais a exibir quando renderizar dados de preços" -#: common/setting/system.py:559 +#: common/setting/system.py:551 msgid "Use Supplier Pricing" msgstr "Usar Preços do Fornecedor" -#: common/setting/system.py:561 +#: common/setting/system.py:553 msgid "Include supplier price breaks in overall pricing calculations" msgstr "Incluir quebras de preço do fornecedor nos cálculos de preços globais" -#: common/setting/system.py:567 +#: common/setting/system.py:559 msgid "Purchase History Override" msgstr "Sobrescrever histórico de compra" -#: common/setting/system.py:569 +#: common/setting/system.py:561 msgid "Historical purchase order pricing overrides supplier price breaks" msgstr "Histórico do pedido de compra substitui os intervalos dos preços do fornecedor" -#: common/setting/system.py:575 +#: common/setting/system.py:567 msgid "Use Stock Item Pricing" msgstr "Usar Preços do Item em Estoque" -#: common/setting/system.py:577 +#: common/setting/system.py:569 msgid "Use pricing from manually entered stock data for pricing calculations" msgstr "Usar preço inserido manualmente no estoque para cálculos de valores" -#: common/setting/system.py:583 +#: common/setting/system.py:575 msgid "Stock Item Pricing Age" msgstr "Idade do preço do Item em Estoque" -#: common/setting/system.py:585 +#: common/setting/system.py:577 msgid "Exclude stock items older than this number of days from pricing calculations" msgstr "Não incluir itens em estoque mais velhos que este número de dias no cálculo de preços" -#: common/setting/system.py:592 +#: common/setting/system.py:584 msgid "Use Variant Pricing" msgstr "Usar Preço Variável" -#: common/setting/system.py:593 +#: common/setting/system.py:585 msgid "Include variant pricing in overall pricing calculations" msgstr "Incluir preços variáveis nos cálculos de valores gerais" -#: common/setting/system.py:598 +#: common/setting/system.py:590 msgid "Active Variants Only" msgstr "Apenas Ativar Variáveis" -#: common/setting/system.py:600 +#: common/setting/system.py:592 msgid "Only use active variant parts for calculating variant pricing" msgstr "Apenas usar peças variáveis ativas para calcular preço variáveis" -#: common/setting/system.py:606 +#: common/setting/system.py:598 msgid "Auto Update Pricing" msgstr "" -#: common/setting/system.py:608 +#: common/setting/system.py:600 msgid "Automatically update part pricing when internal data changes" msgstr "" -#: common/setting/system.py:614 +#: common/setting/system.py:606 msgid "Pricing Rebuild Interval" msgstr "Intervalo de Reconstrução de Preços" -#: common/setting/system.py:615 +#: common/setting/system.py:607 msgid "Number of days before part pricing is automatically updated" msgstr "Número de dias antes da atualização automática dos preços das peças" -#: common/setting/system.py:621 +#: common/setting/system.py:613 msgid "Internal Prices" msgstr "Preços Internos" -#: common/setting/system.py:622 +#: common/setting/system.py:614 msgid "Enable internal prices for parts" msgstr "Habilitar preços internos para peças" -#: common/setting/system.py:627 +#: common/setting/system.py:619 msgid "Internal Price Override" msgstr "Sobrepor Valor Interno" -#: common/setting/system.py:629 +#: common/setting/system.py:621 msgid "If available, internal prices override price range calculations" msgstr "Se disponível, preços internos sobrepõe variação de cálculos de preço" -#: common/setting/system.py:635 +#: common/setting/system.py:627 msgid "Enable label printing" msgstr "Ativar impressão de etiquetas" -#: common/setting/system.py:636 +#: common/setting/system.py:628 msgid "Enable label printing from the web interface" msgstr "Ativar impressão de etiqueta pela interface da internet" -#: common/setting/system.py:641 +#: common/setting/system.py:633 msgid "Label Image DPI" msgstr "DPI da Imagem na Etiqueta" -#: common/setting/system.py:643 +#: common/setting/system.py:635 msgid "DPI resolution when generating image files to supply to label printing plugins" msgstr "Resolução de DPI quando gerar arquivo de imagens para fornecer à extensão de impressão de etiquetas" -#: common/setting/system.py:649 +#: common/setting/system.py:641 msgid "Enable Reports" msgstr "Habilitar Relatórios" -#: common/setting/system.py:650 +#: common/setting/system.py:642 msgid "Enable generation of reports" msgstr "Ativar geração de relatórios" -#: common/setting/system.py:655 +#: common/setting/system.py:647 msgid "Debug Mode" msgstr "Modo de depuração" -#: common/setting/system.py:656 +#: common/setting/system.py:648 msgid "Generate reports in debug mode (HTML output)" msgstr "Gerar relatórios em modo de depuração (saída HTML)" -#: common/setting/system.py:661 +#: common/setting/system.py:653 msgid "Log Report Errors" msgstr "Relatório de erros" -#: common/setting/system.py:662 +#: common/setting/system.py:654 msgid "Log errors which occur when generating reports" msgstr "Registro de erros que ocorrem ao gerar relatórios" -#: common/setting/system.py:667 plugin/builtin/labels/label_sheet.py:29 +#: common/setting/system.py:659 plugin/builtin/labels/label_sheet.py:29 #: report/models.py:381 msgid "Page Size" msgstr "Tamanho da página" -#: common/setting/system.py:668 +#: common/setting/system.py:660 msgid "Default page size for PDF reports" msgstr "Tamanho padrão da página PDF para relatórios" +#: common/setting/system.py:665 +msgid "Enforce Parameter Units" +msgstr "Forçar Unidades de Parâmetro" + +#: common/setting/system.py:667 +msgid "If units are provided, parameter values must match the specified units" +msgstr "Se as unidades são fornecidas, os valores do parâmetro devem corresponder às unidades especificadas" + #: common/setting/system.py:673 msgid "Globally Unique Serials" msgstr "Seriais Únicos Globais" @@ -3456,688 +3595,677 @@ msgid "Display PDF reports in the browser, instead of downloading as a file" msgstr "Mostrar relatórios em PDF no navegador, ao invés de baixar o arquivo" #: common/setting/user.py:45 +msgid "Barcode Scanner in Form Fields" +msgstr "" + +#: common/setting/user.py:46 +msgid "Allow barcode scanner input in form fields" +msgstr "" + +#: common/setting/user.py:51 msgid "Search Parts" msgstr "Procurar Peças" -#: common/setting/user.py:46 +#: common/setting/user.py:52 msgid "Display parts in search preview window" msgstr "Mostrar peças na janela de visualização de pesquisa" -#: common/setting/user.py:51 +#: common/setting/user.py:57 msgid "Search Supplier Parts" msgstr "Buscar Peças do Fornecedor" -#: common/setting/user.py:52 +#: common/setting/user.py:58 msgid "Display supplier parts in search preview window" msgstr "Mostrar fornecedor de peças na janela de visualização de pesquisa" -#: common/setting/user.py:57 +#: common/setting/user.py:63 msgid "Search Manufacturer Parts" msgstr "Buscar peças do fabricante" -#: common/setting/user.py:58 +#: common/setting/user.py:64 msgid "Display manufacturer parts in search preview window" msgstr "Mostrar fabricante de peças na janela de visualização de pesquisa" -#: common/setting/user.py:63 +#: common/setting/user.py:69 msgid "Hide Inactive Parts" msgstr "Ocultar peças inativas" -#: common/setting/user.py:64 +#: common/setting/user.py:70 msgid "Excluded inactive parts from search preview window" msgstr "Não incluir peças inativas na janela de visualização de pesquisa" -#: common/setting/user.py:69 +#: common/setting/user.py:75 msgid "Search Categories" msgstr "Pesquisar Categorias" -#: common/setting/user.py:70 +#: common/setting/user.py:76 msgid "Display part categories in search preview window" msgstr "Mostrar categoria das peças na janela de visualização de pesquisa" -#: common/setting/user.py:75 +#: common/setting/user.py:81 msgid "Search Stock" msgstr "Pesquisar Estoque" -#: common/setting/user.py:76 +#: common/setting/user.py:82 msgid "Display stock items in search preview window" msgstr "Mostrar itens do estoque na janela de visualização de pesquisa" -#: common/setting/user.py:81 +#: common/setting/user.py:87 msgid "Hide Unavailable Stock Items" msgstr "Ocultar itens do estoque indisponíveis" -#: common/setting/user.py:83 +#: common/setting/user.py:89 msgid "Exclude stock items which are not available from the search preview window" msgstr "Não incluir itens de estoque que não estão disponíveis na janela de visualização de pesquisa" -#: common/setting/user.py:89 +#: common/setting/user.py:95 msgid "Search Locations" msgstr "Procurar Locais" -#: common/setting/user.py:90 +#: common/setting/user.py:96 msgid "Display stock locations in search preview window" msgstr "Mostrar locais de estoque na janela de visualização de pesquisa" -#: common/setting/user.py:95 +#: common/setting/user.py:101 msgid "Search Companies" msgstr "Pesquisar empresas" -#: common/setting/user.py:96 +#: common/setting/user.py:102 msgid "Display companies in search preview window" msgstr "Mostrar empresas na janela de visualização de pesquisa" -#: common/setting/user.py:101 +#: common/setting/user.py:107 msgid "Search Build Orders" msgstr "Procurar Pedidos de Produção" -#: common/setting/user.py:102 +#: common/setting/user.py:108 msgid "Display build orders in search preview window" msgstr "Mostrar pedidos de produção na janela de visualização de pesquisa" -#: common/setting/user.py:107 +#: common/setting/user.py:113 msgid "Search Purchase Orders" msgstr "Mostrar Pedido de Compras" -#: common/setting/user.py:108 +#: common/setting/user.py:114 msgid "Display purchase orders in search preview window" msgstr "Mostrar pedidos de compra na janela de visualização de pesquisa" -#: common/setting/user.py:113 +#: common/setting/user.py:119 msgid "Exclude Inactive Purchase Orders" msgstr "Não incluir Pedidos de Compras Inativos" -#: common/setting/user.py:114 +#: common/setting/user.py:120 msgid "Exclude inactive purchase orders from search preview window" msgstr "Não incluir pedidos de compras inativos na janela de visualização de pesquisa" -#: common/setting/user.py:119 +#: common/setting/user.py:125 msgid "Search Sales Orders" msgstr "Procurar Pedidos de Vendas" -#: common/setting/user.py:120 +#: common/setting/user.py:126 msgid "Display sales orders in search preview window" msgstr "Mostrar pedidos de vendas na janela de visualização de pesquisa" -#: common/setting/user.py:125 +#: common/setting/user.py:131 msgid "Exclude Inactive Sales Orders" msgstr "Não Incluir Pedidos de Compras Inativas" -#: common/setting/user.py:126 +#: common/setting/user.py:132 msgid "Exclude inactive sales orders from search preview window" msgstr "Não incluir pedidos de vendas inativos na janela de visualização de pesquisa" -#: common/setting/user.py:131 +#: common/setting/user.py:137 msgid "Search Sales Order Shipments" msgstr "" -#: common/setting/user.py:132 +#: common/setting/user.py:138 msgid "Display sales order shipments in search preview window" msgstr "" -#: common/setting/user.py:137 +#: common/setting/user.py:143 msgid "Search Return Orders" msgstr "Procurar Pedidos de Devolução" -#: common/setting/user.py:138 +#: common/setting/user.py:144 msgid "Display return orders in search preview window" msgstr "Mostrar pedidos de devolução na janela de visualização de pesquisa" -#: common/setting/user.py:143 +#: common/setting/user.py:149 msgid "Exclude Inactive Return Orders" msgstr "Não Incluir Pedidos de Devolução Inativas" -#: common/setting/user.py:144 +#: common/setting/user.py:150 msgid "Exclude inactive return orders from search preview window" msgstr "Não incluir pedidos de devolução inativos na janela de visualização de pesquisa" -#: common/setting/user.py:149 +#: common/setting/user.py:155 msgid "Search Preview Results" msgstr "Mostrar Resultados Anteriores" -#: common/setting/user.py:151 +#: common/setting/user.py:157 msgid "Number of results to show in each section of the search preview window" msgstr "Número de resultados mostrados em cada seção da janela de visualização de pesquisa" -#: common/setting/user.py:157 +#: common/setting/user.py:163 msgid "Regex Search" msgstr "Pesquisa de Regex" -#: common/setting/user.py:158 +#: common/setting/user.py:164 msgid "Enable regular expressions in search queries" msgstr "Permitir expressôes comuns nas conultas de pesquisas" -#: common/setting/user.py:163 +#: common/setting/user.py:169 msgid "Whole Word Search" msgstr "Busca de Palavras Inteira" -#: common/setting/user.py:164 +#: common/setting/user.py:170 msgid "Search queries return results for whole word matches" msgstr "Pesquisa retorna que palavra inteira coincide" -#: common/setting/user.py:169 +#: common/setting/user.py:175 msgid "Search Notes" msgstr "" -#: common/setting/user.py:171 +#: common/setting/user.py:177 msgid "Search queries return results for matches from the item's notes" msgstr "" -#: common/setting/user.py:177 +#: common/setting/user.py:183 msgid "Escape Key Closes Forms" msgstr "Tecla Esc Fecha Formulários" -#: common/setting/user.py:178 +#: common/setting/user.py:184 msgid "Use the escape key to close modal forms" msgstr "Usar a tecla Esc para fechar fomulários modais" -#: common/setting/user.py:183 +#: common/setting/user.py:189 msgid "Fixed Navbar" msgstr "Fixar Navbar" -#: common/setting/user.py:184 +#: common/setting/user.py:190 msgid "The navbar position is fixed to the top of the screen" msgstr "A posição do Navbar é fixa no topo da tela" -#: common/setting/user.py:189 +#: common/setting/user.py:195 msgid "Fixed Table Headers" msgstr "" -#: common/setting/user.py:190 +#: common/setting/user.py:196 msgid "Table headers are fixed to the top of the table" msgstr "" -#: common/setting/user.py:195 +#: common/setting/user.py:201 msgid "Show Spotlight" msgstr "" -#: common/setting/user.py:196 +#: common/setting/user.py:202 msgid "Enable spotlight navigation functionality" msgstr "" -#: common/setting/user.py:201 +#: common/setting/user.py:207 msgid "Navigation Icons" msgstr "" -#: common/setting/user.py:202 +#: common/setting/user.py:208 msgid "Display icons in the navigation bar" msgstr "" -#: common/setting/user.py:207 +#: common/setting/user.py:213 msgid "Date Format" msgstr "Formato da data" -#: common/setting/user.py:208 +#: common/setting/user.py:214 msgid "Preferred format for displaying dates" msgstr "Formato preferido para mostrar datas" -#: common/setting/user.py:221 +#: common/setting/user.py:227 msgid "Show Stock History" msgstr "" -#: common/setting/user.py:222 +#: common/setting/user.py:228 msgid "Display stock history information in the part detail page" msgstr "" -#: common/setting/user.py:227 +#: common/setting/user.py:233 msgid "Show Last Breadcrumb" msgstr "" -#: common/setting/user.py:228 +#: common/setting/user.py:234 msgid "Show the current page in breadcrumbs" msgstr "" -#: common/setting/user.py:233 +#: common/setting/user.py:239 msgid "Show full stock location in tables" msgstr "" -#: common/setting/user.py:235 +#: common/setting/user.py:241 msgid "Disabled: The full location path is displayed as a hover tooltip. Enabled: The full location path is displayed as plain text." msgstr "" -#: common/setting/user.py:241 +#: common/setting/user.py:247 msgid "Show full part categories in tables" msgstr "" -#: common/setting/user.py:243 +#: common/setting/user.py:249 msgid "Disabled: The full category path is displayed as a hover tooltip. Enabled: The full category path is displayed as plain text." msgstr "" -#: common/setting/user.py:249 +#: common/setting/user.py:255 msgid "Receive error reports" msgstr "Receber relatório de erros" -#: common/setting/user.py:250 +#: common/setting/user.py:256 msgid "Receive notifications for system errors" msgstr "Receber notificações para erros do sistema" -#: common/setting/user.py:255 +#: common/setting/user.py:261 msgid "Last used printing machines" msgstr "Últimas máquinas de impressão utilizadas" -#: common/setting/user.py:256 +#: common/setting/user.py:262 msgid "Save the last used printing machines for a user" msgstr "Salvar as últimas máquinas de impressão usadas para um usuário" -#: common/validators.py:34 +#: common/validators.py:38 +msgid "All models" +msgstr "" + +#: common/validators.py:63 msgid "No attachment model type provided" msgstr "" -#: common/validators.py:40 +#: common/validators.py:69 msgid "Invalid attachment model type" msgstr "" -#: common/validators.py:81 +#: common/validators.py:110 msgid "Minimum places cannot be greater than maximum places" msgstr "" -#: common/validators.py:93 +#: common/validators.py:122 msgid "Maximum places cannot be less than minimum places" msgstr "" -#: common/validators.py:104 +#: common/validators.py:133 msgid "An empty domain is not allowed." msgstr "Um domínio vazio não é permitido." -#: common/validators.py:106 +#: common/validators.py:135 #, python-brace-format msgid "Invalid domain name: {domain}" msgstr "Nome de domínio inválido: {domain}" -#: common/validators.py:122 +#: common/validators.py:151 msgid "Value must be uppercase" msgstr "" -#: common/validators.py:128 +#: common/validators.py:157 msgid "Value must be a valid variable identifier" msgstr "" -#: company/api.py:147 +#: company/api.py:141 msgid "Part is Active" msgstr "" -#: company/api.py:151 +#: company/api.py:145 msgid "Manufacturer is Active" msgstr "" -#: company/api.py:286 +#: company/api.py:246 msgid "Supplier Part is Active" msgstr "" -#: company/api.py:290 +#: company/api.py:250 msgid "Internal Part is Active" msgstr "" -#: company/api.py:295 +#: company/api.py:255 msgid "Supplier is Active" msgstr "" -#: company/api.py:307 company/models.py:520 company/serializers.py:457 -#: part/serializers.py:566 +#: company/api.py:267 company/models.py:522 company/serializers.py:502 +#: part/serializers.py:477 msgid "Manufacturer" msgstr "Fabricante" -#: company/api.py:314 company/models.py:121 company/models.py:392 +#: company/api.py:274 company/models.py:122 company/models.py:393 #: stock/api.py:900 msgid "Company" msgstr "Empresa" -#: company/api.py:324 +#: company/api.py:284 msgid "Has Stock" msgstr "" -#: company/models.py:122 +#: company/models.py:123 msgid "Companies" msgstr "Empresas" -#: company/models.py:150 +#: company/models.py:151 msgid "Company description" msgstr "Descrição da empresa" -#: company/models.py:151 +#: company/models.py:152 msgid "Description of the company" msgstr "Descrição da empresa" -#: company/models.py:157 +#: company/models.py:158 msgid "Website" msgstr "Página Web" -#: company/models.py:158 +#: company/models.py:159 msgid "Company website URL" msgstr "URL do Site da empresa" -#: company/models.py:164 +#: company/models.py:165 msgid "Phone number" msgstr "Número de telefone" -#: company/models.py:166 +#: company/models.py:167 msgid "Contact phone number" msgstr "Número de telefone do contato" -#: company/models.py:173 +#: company/models.py:174 msgid "Contact email address" msgstr "Endereço de e-mail do contato" -#: company/models.py:178 company/models.py:296 order/models.py:513 +#: company/models.py:179 company/models.py:297 order/models.py:514 #: users/models.py:561 msgid "Contact" msgstr "Contato" -#: company/models.py:180 +#: company/models.py:181 msgid "Point of contact" msgstr "Ponto de contato" -#: company/models.py:186 +#: company/models.py:187 msgid "Link to external company information" msgstr "Link para informações externas da empresa" -#: company/models.py:191 +#: company/models.py:192 msgid "Is this company active?" msgstr "" -#: company/models.py:196 +#: company/models.py:197 msgid "Is customer" msgstr "" -#: company/models.py:197 +#: company/models.py:198 msgid "Do you sell items to this company?" msgstr "Você vende itens para esta empresa?" -#: company/models.py:202 +#: company/models.py:203 msgid "Is supplier" msgstr "" -#: company/models.py:203 +#: company/models.py:204 msgid "Do you purchase items from this company?" msgstr "Você compra itens desta empresa?" -#: company/models.py:208 +#: company/models.py:209 msgid "Is manufacturer" msgstr "" -#: company/models.py:209 +#: company/models.py:210 msgid "Does this company manufacture parts?" msgstr "Esta empresa fabrica peças?" -#: company/models.py:217 +#: company/models.py:218 msgid "Default currency used for this company" msgstr "Moeda padrão utilizada para esta empresa" -#: company/models.py:224 +#: company/models.py:225 msgid "Tax ID" msgstr "" -#: company/models.py:225 +#: company/models.py:226 msgid "Company Tax ID" msgstr "" -#: company/models.py:335 order/models.py:523 order/models.py:2288 +#: company/models.py:336 order/models.py:524 order/models.py:2289 msgid "Address" msgstr "Endereço" -#: company/models.py:336 +#: company/models.py:337 msgid "Addresses" msgstr "Endereços" -#: company/models.py:393 +#: company/models.py:394 msgid "Select company" msgstr "Selecione a Empresa" -#: company/models.py:398 +#: company/models.py:399 msgid "Address title" msgstr "Título do endereço" -#: company/models.py:399 +#: company/models.py:400 msgid "Title describing the address entry" msgstr "Título descrevendo a entrada de endereço" -#: company/models.py:405 +#: company/models.py:406 msgid "Primary address" msgstr "Endereço Principal" -#: company/models.py:406 +#: company/models.py:407 msgid "Set as primary address" msgstr "Definir como endereço principal" -#: company/models.py:411 +#: company/models.py:412 msgid "Line 1" msgstr "Linha 1" -#: company/models.py:412 +#: company/models.py:413 msgid "Address line 1" msgstr "Linha de endereço 1" -#: company/models.py:418 +#: company/models.py:419 msgid "Line 2" msgstr "Linha 2" -#: company/models.py:419 +#: company/models.py:420 msgid "Address line 2" msgstr "Linha de endereço 2" -#: company/models.py:425 company/models.py:426 +#: company/models.py:426 company/models.py:427 msgid "Postal code" msgstr "Código Postal" -#: company/models.py:432 +#: company/models.py:433 msgid "City/Region" msgstr "Cidade/Região" -#: company/models.py:433 +#: company/models.py:434 msgid "Postal code city/region" msgstr "Código Postal Cidade / Região" -#: company/models.py:439 +#: company/models.py:440 msgid "State/Province" msgstr "Estado/Provincia" -#: company/models.py:440 +#: company/models.py:441 msgid "State or province" msgstr "Estado ou Província" -#: company/models.py:446 +#: company/models.py:447 msgid "Country" msgstr "País" -#: company/models.py:447 +#: company/models.py:448 msgid "Address country" msgstr "País do endereço" -#: company/models.py:453 +#: company/models.py:454 msgid "Courier shipping notes" msgstr "Notas de envio da transportadora" -#: company/models.py:454 +#: company/models.py:455 msgid "Notes for shipping courier" msgstr "Notas para o envio da transportadora" -#: company/models.py:460 +#: company/models.py:461 msgid "Internal shipping notes" msgstr "Notas de envio interno" -#: company/models.py:461 +#: company/models.py:462 msgid "Shipping notes for internal use" msgstr "Notas de envio para uso interno" -#: company/models.py:468 +#: company/models.py:469 msgid "Link to address information (external)" msgstr "Link para as informações do endereço (externo)" -#: company/models.py:492 company/models.py:609 company/models.py:832 -#: company/serializers.py:471 stock/api.py:561 +#: company/models.py:494 company/models.py:786 company/serializers.py:516 +#: stock/api.py:561 msgid "Manufacturer Part" msgstr "Peça do Fabricante" -#: company/models.py:509 company/models.py:800 stock/models.py:1025 +#: company/models.py:511 company/models.py:754 stock/models.py:1025 #: stock/serializers.py:407 msgid "Base Part" msgstr "Peça base" -#: company/models.py:511 company/models.py:802 +#: company/models.py:513 company/models.py:756 msgid "Select part" msgstr "Selecionar peça" -#: company/models.py:521 +#: company/models.py:523 msgid "Select manufacturer" msgstr "Selecionar fabricante" -#: company/models.py:527 company/serializers.py:479 order/serializers.py:734 -#: part/serializers.py:576 +#: company/models.py:529 company/serializers.py:524 order/serializers.py:745 +#: part/serializers.py:487 msgid "MPN" msgstr "NPF" -#: company/models.py:528 stock/serializers.py:572 +#: company/models.py:530 stock/serializers.py:572 msgid "Manufacturer Part Number" msgstr "Número de Peça do Fabricante" -#: company/models.py:535 +#: company/models.py:537 msgid "URL for external manufacturer part link" msgstr "URL do link externo da peça do fabricante" -#: company/models.py:544 +#: company/models.py:546 msgid "Manufacturer part description" msgstr "Descrição da peça do fabricante" -#: company/models.py:597 -msgid "Manufacturer Part Parameter" -msgstr "" - -#: company/models.py:616 -msgid "Parameter name" -msgstr "Nome do parâmetro" - -#: company/models.py:623 -msgid "Parameter value" -msgstr "Valor do Parâmetro" - -#: company/models.py:630 part/models.py:1195 part/models.py:3857 -msgid "Units" -msgstr "Unidades" - -#: company/models.py:631 -msgid "Parameter units" -msgstr "Unidades do parâmetro" - -#: company/models.py:740 +#: company/models.py:694 msgid "Pack units must be compatible with the base part units" msgstr "Unidades de pacote devem ser compatíveis com as unidades de peça base" -#: company/models.py:747 +#: company/models.py:701 msgid "Pack units must be greater than zero" msgstr "Unidades de pacote deve ser maior do que zero" -#: company/models.py:761 +#: company/models.py:715 msgid "Linked manufacturer part must reference the same base part" msgstr "Parte do fabricante vinculado deve fazer referência à mesma peça base" -#: company/models.py:810 company/serializers.py:449 company/serializers.py:467 -#: order/models.py:639 part/serializers.py:550 +#: company/models.py:764 company/serializers.py:494 company/serializers.py:512 +#: order/models.py:640 part/serializers.py:461 #: plugin/builtin/suppliers/digikey.py:26 plugin/builtin/suppliers/lcsc.py:27 #: plugin/builtin/suppliers/mouser.py:25 plugin/builtin/suppliers/tme.py:27 #: stock/api.py:567 templates/email/overdue_purchase_order.html:16 msgid "Supplier" msgstr "Fornecedor" -#: company/models.py:811 +#: company/models.py:765 msgid "Select supplier" msgstr "Selecione o fornecedor" -#: company/models.py:817 part/serializers.py:561 +#: company/models.py:771 part/serializers.py:472 msgid "Supplier stock keeping unit" msgstr "Unidade de reserva de estoque fornecedor" -#: company/models.py:823 +#: company/models.py:777 msgid "Is this supplier part active?" msgstr "" -#: company/models.py:833 +#: company/models.py:787 msgid "Select manufacturer part" msgstr "Selecionar peça do fabricante" -#: company/models.py:840 +#: company/models.py:794 msgid "URL for external supplier part link" msgstr "URL do link externo da peça do fabricante" -#: company/models.py:849 +#: company/models.py:803 msgid "Supplier part description" msgstr "Descrição da peça fornecedor" -#: company/models.py:856 order/serializers.py:883 order/serializers.py:2047 -#: part/models.py:4070 part/models.py:4450 part/models.py:4819 -#: report/templates/report/inventree_bill_of_materials_report.html:140 -#: report/templates/report/inventree_purchase_order_report.html:39 -#: report/templates/report/inventree_return_order_report.html:27 -#: report/templates/report/inventree_sales_order_report.html:32 -#: report/templates/report/inventree_stock_location_report.html:105 -#: stock/serializers.py:813 -msgid "Note" -msgstr "Anotação" - -#: company/models.py:865 part/models.py:2250 +#: company/models.py:819 part/models.py:2338 msgid "base cost" msgstr "preço base" -#: company/models.py:866 part/models.py:2251 +#: company/models.py:820 part/models.py:2339 msgid "Minimum charge (e.g. stocking fee)" msgstr "Taxa mínima (ex.: taxa de estoque)" -#: company/models.py:873 order/serializers.py:875 stock/models.py:1056 +#: company/models.py:827 order/serializers.py:886 stock/models.py:1056 #: stock/serializers.py:1606 msgid "Packaging" msgstr "Embalagem" -#: company/models.py:874 +#: company/models.py:828 msgid "Part packaging" msgstr "Embalagem de peças" -#: company/models.py:879 +#: company/models.py:833 msgid "Pack Quantity" msgstr "Quantidade de embalagens" -#: company/models.py:881 +#: company/models.py:835 msgid "Total quantity supplied in a single pack. Leave empty for single items." msgstr "Quantidade total fornecida em um único pacote. Deixe em branco para itens únicos." -#: company/models.py:900 part/models.py:2257 +#: company/models.py:854 part/models.py:2345 msgid "multiple" msgstr "múltiplo" -#: company/models.py:901 +#: company/models.py:855 msgid "Order multiple" msgstr "Pedir múltiplos" -#: company/models.py:913 +#: company/models.py:867 msgid "Quantity available from supplier" msgstr "Quantidade disponível do fornecedor" -#: company/models.py:919 +#: company/models.py:873 msgid "Availability Updated" msgstr "Disponibilidade Atualizada" -#: company/models.py:920 +#: company/models.py:874 msgid "Date of last update of availability data" msgstr "Data da última atualização da disponibilidade dos dados" -#: company/models.py:1048 +#: company/models.py:1002 msgid "Supplier Price Break" msgstr "" -#: company/serializers.py:181 +#: company/serializers.py:184 +msgid "Primary Address" +msgstr "" + +#: company/serializers.py:186 msgid "Return the string representation for the primary address. This property exists for backwards compatibility." msgstr "" -#: company/serializers.py:212 +#: company/serializers.py:218 msgid "Default currency used for this supplier" msgstr "Moeda padrão utilizada para este fornecedor" -#: company/serializers.py:248 +#: company/serializers.py:260 msgid "Company Name" msgstr "" -#: company/serializers.py:433 part/serializers.py:955 stock/serializers.py:428 +#: company/serializers.py:460 part/serializers.py:840 stock/serializers.py:428 msgid "In Stock" msgstr "Em Estoque" +#: company/serializers.py:477 +msgid "Price Breaks" +msgstr "" + #: data_exporter/mixins.py:325 data_exporter/mixins.py:403 msgid "Error occurred during data export" msgstr "" @@ -4290,7 +4418,7 @@ msgstr "" msgid "Errors" msgstr "" -#: importer/models.py:550 part/serializers.py:1268 +#: importer/models.py:550 part/serializers.py:1133 msgid "Valid" msgstr "Válido" @@ -4402,7 +4530,7 @@ msgstr "" msgid "Connected" msgstr "" -#: machine/machine_types/label_printer.py:232 order/api.py:1795 +#: machine/machine_types/label_printer.py:232 order/api.py:1800 msgid "Unknown" msgstr "Desconhecido" @@ -4530,105 +4658,105 @@ msgstr "" msgid "Maximum value for progress type, required if type=progress" msgstr "" -#: order/api.py:125 +#: order/api.py:130 msgid "Order Reference" msgstr "Referência do Pedido" -#: order/api.py:153 order/api.py:1207 +#: order/api.py:158 order/api.py:1212 msgid "Outstanding" msgstr "" -#: order/api.py:169 +#: order/api.py:174 msgid "Has Project Code" msgstr "" -#: order/api.py:183 order/models.py:488 +#: order/api.py:188 order/models.py:489 msgid "Created By" msgstr "Criado por" -#: order/api.py:187 +#: order/api.py:192 msgid "Created Before" msgstr "" -#: order/api.py:191 +#: order/api.py:196 msgid "Created After" msgstr "" -#: order/api.py:195 +#: order/api.py:200 msgid "Has Start Date" msgstr "" -#: order/api.py:203 +#: order/api.py:208 msgid "Start Date Before" msgstr "" -#: order/api.py:207 +#: order/api.py:212 msgid "Start Date After" msgstr "" -#: order/api.py:211 +#: order/api.py:216 msgid "Has Target Date" msgstr "" -#: order/api.py:219 +#: order/api.py:224 msgid "Target Date Before" msgstr "" -#: order/api.py:223 +#: order/api.py:228 msgid "Target Date After" msgstr "" -#: order/api.py:274 +#: order/api.py:279 msgid "Has Pricing" msgstr "" -#: order/api.py:327 order/api.py:812 order/api.py:1490 +#: order/api.py:332 order/api.py:818 order/api.py:1495 msgid "Completed Before" msgstr "" -#: order/api.py:331 order/api.py:816 order/api.py:1494 +#: order/api.py:336 order/api.py:822 order/api.py:1499 msgid "Completed After" msgstr "" -#: order/api.py:337 order/api.py:341 +#: order/api.py:342 order/api.py:346 msgid "External Build Order" msgstr "" -#: order/api.py:526 order/api.py:914 order/api.py:1170 order/models.py:1922 -#: order/models.py:2049 order/models.py:2099 order/models.py:2279 -#: order/models.py:2477 order/models.py:2999 order/models.py:3065 +#: order/api.py:532 order/api.py:919 order/api.py:1175 order/models.py:1923 +#: order/models.py:2050 order/models.py:2100 order/models.py:2280 +#: order/models.py:2478 order/models.py:3000 order/models.py:3066 msgid "Order" msgstr "Pedido" -#: order/api.py:530 order/api.py:982 +#: order/api.py:536 order/api.py:987 msgid "Order Complete" msgstr "" -#: order/api.py:562 order/api.py:566 order/serializers.py:745 +#: order/api.py:568 order/api.py:572 order/serializers.py:756 msgid "Internal Part" msgstr "Peça Interna" -#: order/api.py:584 +#: order/api.py:590 msgid "Order Pending" msgstr "" -#: order/api.py:967 +#: order/api.py:972 msgid "Completed" msgstr "Concluído" -#: order/api.py:1223 +#: order/api.py:1228 msgid "Has Shipment" msgstr "" -#: order/api.py:1789 order/models.py:552 order/models.py:1923 -#: order/models.py:2050 +#: order/api.py:1794 order/models.py:553 order/models.py:1924 +#: order/models.py:2051 #: report/templates/report/inventree_purchase_order_report.html:14 #: stock/serializers.py:129 templates/email/overdue_purchase_order.html:15 msgid "Purchase Order" msgstr "Pedido de Compra" -#: order/api.py:1791 order/models.py:1251 order/models.py:2100 -#: order/models.py:2280 order/models.py:2478 +#: order/api.py:1796 order/models.py:1252 order/models.py:2101 +#: order/models.py:2281 order/models.py:2479 #: report/templates/report/inventree_build_order_report.html:135 #: report/templates/report/inventree_sales_order_report.html:14 #: report/templates/report/inventree_sales_order_shipment_report.html:15 @@ -4636,8 +4764,8 @@ msgstr "Pedido de Compra" msgid "Sales Order" msgstr "Pedido de Venda" -#: order/api.py:1793 order/models.py:2649 order/models.py:3000 -#: order/models.py:3066 +#: order/api.py:1798 order/models.py:2650 order/models.py:3001 +#: order/models.py:3067 #: report/templates/report/inventree_return_order_report.html:13 #: templates/email/overdue_return_order.html:15 msgid "Return Order" @@ -4653,722 +4781,722 @@ msgstr "Preço Total" msgid "Total price for this order" msgstr "Preço total deste pedido" -#: order/models.py:96 order/serializers.py:77 +#: order/models.py:96 order/serializers.py:78 msgid "Order Currency" msgstr "Moeda do pedido" -#: order/models.py:99 order/serializers.py:78 +#: order/models.py:99 order/serializers.py:79 msgid "Currency for this order (leave blank to use company default)" msgstr "Moeda para este pedido (deixe em branco para usar o padrão da empresa)" -#: order/models.py:324 +#: order/models.py:325 msgid "This order is locked and cannot be modified" msgstr "" -#: order/models.py:376 +#: order/models.py:377 msgid "Contact does not match selected company" msgstr "O contato não corresponde à empresa selecionada" -#: order/models.py:383 +#: order/models.py:384 msgid "Start date must be before target date" msgstr "" -#: order/models.py:390 +#: order/models.py:391 msgid "Address does not match selected company" msgstr "" -#: order/models.py:443 +#: order/models.py:444 msgid "Order description (optional)" msgstr "Descrição do pedido (opcional)" -#: order/models.py:452 order/models.py:1806 +#: order/models.py:453 order/models.py:1807 msgid "Select project code for this order" msgstr "Selecione o código do projeto para este pedido" -#: order/models.py:458 order/models.py:1787 order/models.py:2344 +#: order/models.py:459 order/models.py:1788 order/models.py:2345 msgid "Link to external page" msgstr "Link para página externa" -#: order/models.py:465 +#: order/models.py:466 msgid "Start date" msgstr "" -#: order/models.py:466 +#: order/models.py:467 msgid "Scheduled start date for this order" msgstr "" -#: order/models.py:472 order/models.py:1794 order/serializers.py:309 +#: order/models.py:473 order/models.py:1795 order/serializers.py:317 #: report/templates/report/inventree_build_order_report.html:125 msgid "Target Date" msgstr "Data alvo" -#: order/models.py:474 +#: order/models.py:475 msgid "Expected date for order delivery. Order will be overdue after this date." msgstr "Data esperada para entrega do pedido. O Pedido estará atrasado após esta data." -#: order/models.py:494 +#: order/models.py:495 msgid "Issue Date" msgstr "Data de emissão" -#: order/models.py:495 +#: order/models.py:496 msgid "Date order was issued" msgstr "Dia que o pedido foi feito" -#: order/models.py:503 +#: order/models.py:504 msgid "User or group responsible for this order" msgstr "Usuário ou grupo responsável para este pedido" -#: order/models.py:514 +#: order/models.py:515 msgid "Point of contact for this order" msgstr "Ponto de contato para este pedido" -#: order/models.py:524 +#: order/models.py:525 msgid "Company address for this order" msgstr "Endereço da empresa para este pedido" -#: order/models.py:615 order/models.py:1312 +#: order/models.py:616 order/models.py:1313 msgid "Order reference" msgstr "Referência do pedido" -#: order/models.py:624 order/models.py:1336 order/models.py:2737 +#: order/models.py:625 order/models.py:1337 order/models.py:2738 #: stock/serializers.py:559 stock/serializers.py:988 users/models.py:542 msgid "Status" msgstr "Situação" -#: order/models.py:625 +#: order/models.py:626 msgid "Purchase order status" msgstr "Situação do pedido de compra" -#: order/models.py:640 +#: order/models.py:641 msgid "Company from which the items are being ordered" msgstr "Empresa da qual os itens estão sendo encomendados" -#: order/models.py:651 +#: order/models.py:652 msgid "Supplier Reference" msgstr "Referencia do fornecedor" -#: order/models.py:652 +#: order/models.py:653 msgid "Supplier order reference code" msgstr "Código de referência do pedido fornecedor" -#: order/models.py:661 +#: order/models.py:662 msgid "received by" msgstr "recebido por" -#: order/models.py:668 order/models.py:2752 +#: order/models.py:669 order/models.py:2753 msgid "Date order was completed" msgstr "Dia que o pedido foi concluído" -#: order/models.py:677 order/models.py:1981 +#: order/models.py:678 order/models.py:1982 msgid "Destination" msgstr "Destino" -#: order/models.py:678 order/models.py:1985 +#: order/models.py:679 order/models.py:1986 msgid "Destination for received items" msgstr "" -#: order/models.py:724 +#: order/models.py:725 msgid "Part supplier must match PO supplier" msgstr "Fornecedor de peça deve corresponder a fornecedor da OC" -#: order/models.py:994 +#: order/models.py:995 msgid "Line item does not match purchase order" msgstr "O item de linha não corresponde ao pedido de compra" -#: order/models.py:997 +#: order/models.py:998 msgid "Line item is missing a linked part" msgstr "" -#: order/models.py:1011 +#: order/models.py:1012 msgid "Quantity must be a positive number" msgstr "Quantidade deve ser um número positivo" -#: order/models.py:1323 order/models.py:2724 stock/models.py:1078 +#: order/models.py:1324 order/models.py:2725 stock/models.py:1078 #: stock/models.py:1079 stock/serializers.py:1322 #: templates/email/overdue_return_order.html:16 #: templates/email/overdue_sales_order.html:16 msgid "Customer" msgstr "Cliente" -#: order/models.py:1324 +#: order/models.py:1325 msgid "Company to which the items are being sold" msgstr "Empresa para qual os itens foi vendidos" -#: order/models.py:1337 +#: order/models.py:1338 msgid "Sales order status" msgstr "" -#: order/models.py:1348 order/models.py:2744 +#: order/models.py:1349 order/models.py:2745 msgid "Customer Reference " msgstr "Referência do Cliente " -#: order/models.py:1349 order/models.py:2745 +#: order/models.py:1350 order/models.py:2746 msgid "Customer order reference code" msgstr "Código de Referência do pedido do cliente" -#: order/models.py:1353 order/models.py:2296 +#: order/models.py:1354 order/models.py:2297 msgid "Shipment Date" msgstr "Data de Envio" -#: order/models.py:1362 +#: order/models.py:1363 msgid "shipped by" msgstr "enviado por" -#: order/models.py:1413 +#: order/models.py:1414 msgid "Order is already complete" msgstr "" -#: order/models.py:1416 +#: order/models.py:1417 msgid "Order is already cancelled" msgstr "" -#: order/models.py:1420 +#: order/models.py:1421 msgid "Only an open order can be marked as complete" msgstr "Apenas um pedido aberto pode ser marcado como completo" -#: order/models.py:1424 +#: order/models.py:1425 msgid "Order cannot be completed as there are incomplete shipments" msgstr "Pedido não pode ser concluído, pois, há envios incompletos" -#: order/models.py:1429 +#: order/models.py:1430 msgid "Order cannot be completed as there are incomplete allocations" msgstr "" -#: order/models.py:1438 +#: order/models.py:1439 msgid "Order cannot be completed as there are incomplete line items" msgstr "Pedido não pode ser concluído, pois, há itens na linha incompletos" -#: order/models.py:1733 order/models.py:1749 +#: order/models.py:1734 order/models.py:1750 msgid "The order is locked and cannot be modified" msgstr "" -#: order/models.py:1757 +#: order/models.py:1758 msgid "Item quantity" msgstr "Quantidade do item" -#: order/models.py:1774 +#: order/models.py:1775 msgid "Line item reference" msgstr "Referência do Item em Linha" -#: order/models.py:1781 +#: order/models.py:1782 msgid "Line item notes" msgstr "Observações do Item de Linha" -#: order/models.py:1796 +#: order/models.py:1797 msgid "Target date for this line item (leave blank to use the target date from the order)" msgstr "Data alvo para este item de linha (deixe em branco para usar a data alvo do pedido)" -#: order/models.py:1826 +#: order/models.py:1827 msgid "Line item description (optional)" msgstr "Descrição item de linha (opcional)" -#: order/models.py:1833 +#: order/models.py:1834 msgid "Additional context for this line" msgstr "Contexto adicional para esta linha" -#: order/models.py:1843 +#: order/models.py:1844 msgid "Unit price" msgstr "Preço Unitário" -#: order/models.py:1862 +#: order/models.py:1863 msgid "Purchase Order Line Item" msgstr "" -#: order/models.py:1889 +#: order/models.py:1890 msgid "Supplier part must match supplier" msgstr "A peça do fornecedor deve corresponder ao fornecedor" -#: order/models.py:1894 +#: order/models.py:1895 msgid "Build order must be marked as external" msgstr "" -#: order/models.py:1901 +#: order/models.py:1902 msgid "Build orders can only be linked to assembly parts" msgstr "" -#: order/models.py:1907 +#: order/models.py:1908 msgid "Build order part must match line item part" msgstr "" -#: order/models.py:1942 +#: order/models.py:1943 msgid "Supplier part" msgstr "Fornecedor da Peça" -#: order/models.py:1949 +#: order/models.py:1950 msgid "Received" msgstr "Recebido" -#: order/models.py:1950 +#: order/models.py:1951 msgid "Number of items received" msgstr "Número de itens recebidos" -#: order/models.py:1958 stock/models.py:1201 stock/serializers.py:637 +#: order/models.py:1959 stock/models.py:1201 stock/serializers.py:637 msgid "Purchase Price" msgstr "Preço de Compra" -#: order/models.py:1959 +#: order/models.py:1960 msgid "Unit purchase price" msgstr "Preço unitário de compra" -#: order/models.py:1975 +#: order/models.py:1976 msgid "External Build Order to be fulfilled by this line item" msgstr "" -#: order/models.py:2038 +#: order/models.py:2039 msgid "Purchase Order Extra Line" msgstr "" -#: order/models.py:2067 +#: order/models.py:2068 msgid "Sales Order Line Item" msgstr "" -#: order/models.py:2092 +#: order/models.py:2093 msgid "Only salable parts can be assigned to a sales order" msgstr "Apenas peças vendáveis podem ser atribuídas a um pedido de venda" -#: order/models.py:2118 +#: order/models.py:2119 msgid "Sale Price" msgstr "Preço de Venda" -#: order/models.py:2119 +#: order/models.py:2120 msgid "Unit sale price" msgstr "Preço de venda unitário" -#: order/models.py:2128 order/status_codes.py:50 +#: order/models.py:2129 order/status_codes.py:50 msgid "Shipped" msgstr "Enviado" -#: order/models.py:2129 +#: order/models.py:2130 msgid "Shipped quantity" msgstr "Quantidade enviada" -#: order/models.py:2240 +#: order/models.py:2241 msgid "Sales Order Shipment" msgstr "" -#: order/models.py:2253 +#: order/models.py:2254 msgid "Shipment address must match the customer" msgstr "" -#: order/models.py:2289 +#: order/models.py:2290 msgid "Shipping address for this shipment" msgstr "" -#: order/models.py:2297 +#: order/models.py:2298 msgid "Date of shipment" msgstr "Data do envio" -#: order/models.py:2303 +#: order/models.py:2304 msgid "Delivery Date" msgstr "Data de Entrega" -#: order/models.py:2304 +#: order/models.py:2305 msgid "Date of delivery of shipment" msgstr "Data da entrega do envio" -#: order/models.py:2312 +#: order/models.py:2313 msgid "Checked By" msgstr "Verificado por" -#: order/models.py:2313 +#: order/models.py:2314 msgid "User who checked this shipment" msgstr "Usuário que verificou esta remessa" -#: order/models.py:2320 order/models.py:2574 order/serializers.py:1711 -#: order/serializers.py:1835 +#: order/models.py:2321 order/models.py:2575 order/serializers.py:1725 +#: order/serializers.py:1849 #: report/templates/report/inventree_sales_order_shipment_report.html:14 msgid "Shipment" msgstr "Remessa" -#: order/models.py:2321 +#: order/models.py:2322 msgid "Shipment number" msgstr "Número do Envio" -#: order/models.py:2329 +#: order/models.py:2330 msgid "Tracking Number" msgstr "Número de Rastreamento" -#: order/models.py:2330 +#: order/models.py:2331 msgid "Shipment tracking information" msgstr "Informação de rastreamento da remessa" -#: order/models.py:2337 +#: order/models.py:2338 msgid "Invoice Number" msgstr "Número da Fatura" -#: order/models.py:2338 +#: order/models.py:2339 msgid "Reference number for associated invoice" msgstr "Número de referência para fatura associada" -#: order/models.py:2377 +#: order/models.py:2378 msgid "Shipment has already been sent" msgstr "O pedido já foi enviado" -#: order/models.py:2380 +#: order/models.py:2381 msgid "Shipment has no allocated stock items" msgstr "Remessa não foi alocada nos itens de estoque" -#: order/models.py:2387 +#: order/models.py:2388 msgid "Shipment must be checked before it can be completed" msgstr "" -#: order/models.py:2466 +#: order/models.py:2467 msgid "Sales Order Extra Line" msgstr "" -#: order/models.py:2495 +#: order/models.py:2496 msgid "Sales Order Allocation" msgstr "" -#: order/models.py:2518 order/models.py:2520 +#: order/models.py:2519 order/models.py:2521 msgid "Stock item has not been assigned" msgstr "O item do estoque não foi atribuído" -#: order/models.py:2527 +#: order/models.py:2528 msgid "Cannot allocate stock item to a line with a different part" msgstr "Não é possível alocar o item de estoque para uma linha de uma peça diferente" -#: order/models.py:2530 +#: order/models.py:2531 msgid "Cannot allocate stock to a line without a part" msgstr "Não é possível alocar uma linha sem uma peça" -#: order/models.py:2533 +#: order/models.py:2534 msgid "Allocation quantity cannot exceed stock quantity" msgstr "A quantidade de alocação não pode exceder a quantidade em estoque" -#: order/models.py:2552 order/serializers.py:1581 +#: order/models.py:2553 order/serializers.py:1595 msgid "Quantity must be 1 for serialized stock item" msgstr "Quantidade deve ser 1 para item de estoque serializado" -#: order/models.py:2555 +#: order/models.py:2556 msgid "Sales order does not match shipment" msgstr "Pedidos de venda não coincidem com a remessa" -#: order/models.py:2556 plugin/base/barcodes/api.py:642 +#: order/models.py:2557 plugin/base/barcodes/api.py:642 msgid "Shipment does not match sales order" msgstr "Remessa não coincide com pedido de venda" -#: order/models.py:2564 +#: order/models.py:2565 msgid "Line" msgstr "Linha" -#: order/models.py:2575 +#: order/models.py:2576 msgid "Sales order shipment reference" msgstr "Referência de remessa do pedido de venda" -#: order/models.py:2588 order/models.py:3007 +#: order/models.py:2589 order/models.py:3008 msgid "Item" msgstr "" -#: order/models.py:2589 +#: order/models.py:2590 msgid "Select stock item to allocate" msgstr "Selecione o item de estoque para alocar" -#: order/models.py:2598 +#: order/models.py:2599 msgid "Enter stock allocation quantity" msgstr "Insira a quantidade de atribuição de estoque" -#: order/models.py:2713 +#: order/models.py:2714 msgid "Return Order reference" msgstr "Referência de Pedidos de Devolução" -#: order/models.py:2725 +#: order/models.py:2726 msgid "Company from which items are being returned" msgstr "Empresa da qual os itens estão sendo retornados" -#: order/models.py:2738 +#: order/models.py:2739 msgid "Return order status" msgstr "Estado do pedido de retorno" -#: order/models.py:2965 +#: order/models.py:2966 msgid "Return Order Line Item" msgstr "" -#: order/models.py:2978 +#: order/models.py:2979 msgid "Stock item must be specified" msgstr "" -#: order/models.py:2982 +#: order/models.py:2983 msgid "Return quantity exceeds stock quantity" msgstr "" -#: order/models.py:2987 +#: order/models.py:2988 msgid "Return quantity must be greater than zero" msgstr "" -#: order/models.py:2992 +#: order/models.py:2993 msgid "Invalid quantity for serialized stock item" msgstr "" -#: order/models.py:3008 +#: order/models.py:3009 msgid "Select item to return from customer" msgstr "Selecione o item a ser devolvido pelo cliente" -#: order/models.py:3023 +#: order/models.py:3024 msgid "Received Date" msgstr "Data de Recebimento" -#: order/models.py:3024 +#: order/models.py:3025 msgid "The date this this return item was received" msgstr "Data que o pedido a ser devolvido foi recebido" -#: order/models.py:3036 +#: order/models.py:3037 msgid "Outcome" msgstr "Despesa/gastos" -#: order/models.py:3037 +#: order/models.py:3038 msgid "Outcome for this line item" msgstr "Gastos com esta linha de itens" -#: order/models.py:3044 +#: order/models.py:3045 msgid "Cost associated with return or repair for this line item" msgstr "Gastos para reparar e/ou devolver esta linha de itens" -#: order/models.py:3054 +#: order/models.py:3055 msgid "Return Order Extra Line" msgstr "" -#: order/serializers.py:91 +#: order/serializers.py:92 msgid "Order ID" msgstr "" -#: order/serializers.py:91 +#: order/serializers.py:92 msgid "ID of the order to duplicate" msgstr "" -#: order/serializers.py:97 +#: order/serializers.py:98 msgid "Copy Lines" msgstr "" -#: order/serializers.py:98 +#: order/serializers.py:99 msgid "Copy line items from the original order" msgstr "" -#: order/serializers.py:104 +#: order/serializers.py:105 msgid "Copy Extra Lines" msgstr "" -#: order/serializers.py:105 +#: order/serializers.py:106 msgid "Copy extra line items from the original order" msgstr "" -#: order/serializers.py:120 +#: order/serializers.py:121 #: report/templates/report/inventree_purchase_order_report.html:29 #: report/templates/report/inventree_return_order_report.html:19 #: report/templates/report/inventree_sales_order_report.html:22 msgid "Line Items" msgstr "Itens de linha" -#: order/serializers.py:125 +#: order/serializers.py:126 msgid "Completed Lines" msgstr "" -#: order/serializers.py:192 +#: order/serializers.py:199 msgid "Duplicate Order" msgstr "" -#: order/serializers.py:193 +#: order/serializers.py:200 msgid "Specify options for duplicating this order" msgstr "" -#: order/serializers.py:270 +#: order/serializers.py:278 msgid "Invalid order ID" msgstr "" -#: order/serializers.py:466 +#: order/serializers.py:477 msgid "Supplier Name" msgstr "Nome do Fornecedor" -#: order/serializers.py:510 +#: order/serializers.py:521 msgid "Order cannot be cancelled" msgstr "Pedido não pode ser cancelado" -#: order/serializers.py:525 order/serializers.py:1602 +#: order/serializers.py:536 order/serializers.py:1616 msgid "Allow order to be closed with incomplete line items" msgstr "Permitir que o pedido seja fechado com itens de linha incompletos" -#: order/serializers.py:535 order/serializers.py:1612 +#: order/serializers.py:546 order/serializers.py:1626 msgid "Order has incomplete line items" msgstr "O pedido tem itens da linha incompletos" -#: order/serializers.py:665 +#: order/serializers.py:676 msgid "Order is not open" msgstr "O pedido não está aberto" -#: order/serializers.py:692 +#: order/serializers.py:703 msgid "Auto Pricing" msgstr "" -#: order/serializers.py:694 +#: order/serializers.py:705 msgid "Automatically calculate purchase price based on supplier part data" msgstr "" -#: order/serializers.py:704 +#: order/serializers.py:715 msgid "Purchase price currency" msgstr "Moeda de preço de compra" -#: order/serializers.py:718 +#: order/serializers.py:729 msgid "Merge Items" msgstr "" -#: order/serializers.py:720 +#: order/serializers.py:731 msgid "Merge items with the same part, destination and target date into one line item" msgstr "" -#: order/serializers.py:727 part/serializers.py:560 +#: order/serializers.py:738 part/serializers.py:471 msgid "SKU" msgstr "Código (SKU)" -#: order/serializers.py:741 part/models.py:1089 part/serializers.py:372 +#: order/serializers.py:752 part/models.py:1177 part/serializers.py:337 msgid "Internal Part Number" msgstr "Numero interno do produto" -#: order/serializers.py:749 +#: order/serializers.py:760 msgid "Internal Part Name" msgstr "" -#: order/serializers.py:765 +#: order/serializers.py:776 msgid "Supplier part must be specified" msgstr "A peça do fornecedor deve ser especificada" -#: order/serializers.py:768 +#: order/serializers.py:779 msgid "Purchase order must be specified" msgstr "O pedido de compra deve ser especificado" -#: order/serializers.py:776 +#: order/serializers.py:787 msgid "Supplier must match purchase order" msgstr "O fornecedor deve corresponder o pedido de compra" -#: order/serializers.py:777 +#: order/serializers.py:788 msgid "Purchase order must match supplier" msgstr "Pedido de compra deve corresponder ao fornecedor" -#: order/serializers.py:825 order/serializers.py:1682 +#: order/serializers.py:836 order/serializers.py:1696 msgid "Line Item" msgstr "Itens de linha" -#: order/serializers.py:834 order/serializers.py:974 order/serializers.py:2043 +#: order/serializers.py:845 order/serializers.py:985 order/serializers.py:2060 msgid "Select destination location for received items" msgstr "Selecione o local de destino para os itens recebidos" -#: order/serializers.py:850 +#: order/serializers.py:861 msgid "Enter batch code for incoming stock items" msgstr "Digite o código do lote para itens de estoque recebidos" -#: order/serializers.py:857 stock/models.py:1160 +#: order/serializers.py:868 stock/models.py:1160 #: templates/email/stale_stock_notification.html:22 users/models.py:137 msgid "Expiry Date" msgstr "Data de validade" -#: order/serializers.py:858 +#: order/serializers.py:869 msgid "Enter expiry date for incoming stock items" msgstr "" -#: order/serializers.py:866 +#: order/serializers.py:877 msgid "Enter serial numbers for incoming stock items" msgstr "Digite o número de série para itens de estoque recebidos" -#: order/serializers.py:876 +#: order/serializers.py:887 msgid "Override packaging information for incoming stock items" msgstr "" -#: order/serializers.py:884 order/serializers.py:2048 +#: order/serializers.py:895 order/serializers.py:2065 msgid "Additional note for incoming stock items" msgstr "" -#: order/serializers.py:891 +#: order/serializers.py:902 msgid "Barcode" msgstr "Código de barras" -#: order/serializers.py:892 +#: order/serializers.py:903 msgid "Scanned barcode" msgstr "Código de barras lido" -#: order/serializers.py:908 +#: order/serializers.py:919 msgid "Barcode is already in use" msgstr "Código de barras já em uso" -#: order/serializers.py:991 order/serializers.py:2067 +#: order/serializers.py:1002 order/serializers.py:2084 msgid "Line items must be provided" msgstr "Itens de linha deve ser providenciados" -#: order/serializers.py:1010 +#: order/serializers.py:1021 msgid "Destination location must be specified" msgstr "Loca de destino deve ser especificado" -#: order/serializers.py:1017 +#: order/serializers.py:1028 msgid "Supplied barcode values must be unique" msgstr "Código de barras fornecido deve ser único" -#: order/serializers.py:1121 +#: order/serializers.py:1135 msgid "Shipments" msgstr "" -#: order/serializers.py:1125 +#: order/serializers.py:1139 msgid "Completed Shipments" msgstr "Envios concluídos" -#: order/serializers.py:1293 +#: order/serializers.py:1307 msgid "Sale price currency" msgstr "Moeda de preço de venda" -#: order/serializers.py:1339 +#: order/serializers.py:1353 msgid "Allocated Items" msgstr "" -#: order/serializers.py:1484 +#: order/serializers.py:1498 msgid "No shipment details provided" msgstr "Nenhum detalhe da remessa fornecido" -#: order/serializers.py:1545 order/serializers.py:1691 +#: order/serializers.py:1559 order/serializers.py:1705 msgid "Line item is not associated with this order" msgstr "Item de linha não está associado a este pedido" -#: order/serializers.py:1564 +#: order/serializers.py:1578 msgid "Quantity must be positive" msgstr "Quantidade deve ser positiva" -#: order/serializers.py:1701 +#: order/serializers.py:1715 msgid "Enter serial numbers to allocate" msgstr "Digite números de série para alocar" -#: order/serializers.py:1723 order/serializers.py:1843 +#: order/serializers.py:1737 order/serializers.py:1857 msgid "Shipment has already been shipped" msgstr "O pedido já foi enviado" -#: order/serializers.py:1726 order/serializers.py:1846 +#: order/serializers.py:1740 order/serializers.py:1860 msgid "Shipment is not associated with this order" msgstr "O envio não está associado a este pedido" -#: order/serializers.py:1781 +#: order/serializers.py:1795 msgid "No match found for the following serial numbers" msgstr "Nenhuma correspondência encontrada para os seguintes números de série" -#: order/serializers.py:1788 +#: order/serializers.py:1802 msgid "The following serial numbers are unavailable" msgstr "" -#: order/serializers.py:2009 +#: order/serializers.py:2026 msgid "Return order line item" msgstr "Devolver item do pedido" -#: order/serializers.py:2019 +#: order/serializers.py:2036 msgid "Line item does not match return order" msgstr "Item do pedido não bate com o pedido de devolução" -#: order/serializers.py:2022 +#: order/serializers.py:2039 msgid "Line item has already been received" msgstr "Item do pedido já foi recebido" -#: order/serializers.py:2059 +#: order/serializers.py:2076 msgid "Items can only be received against orders which are in progress" msgstr "Itens só podem ser recebidos de pedidos em processamento" -#: order/serializers.py:2124 +#: order/serializers.py:2141 msgid "Quantity to return" msgstr "" -#: order/serializers.py:2140 +#: order/serializers.py:2157 msgid "Line price currency" msgstr "Tipo de moeda para o item do pedido" @@ -5431,1190 +5559,1109 @@ msgstr "" msgid "Return order {ro} is now overdue" msgstr "" -#: part/api.py:108 +#: part/api.py:103 msgid "Starred" msgstr "" -#: part/api.py:110 +#: part/api.py:105 msgid "Filter by starred categories" msgstr "" -#: part/api.py:127 stock/api.py:288 +#: part/api.py:122 stock/api.py:288 msgid "Depth" msgstr "" -#: part/api.py:127 +#: part/api.py:122 msgid "Filter by category depth" msgstr "" -#: part/api.py:145 stock/api.py:306 +#: part/api.py:140 stock/api.py:306 msgid "Top Level" msgstr "" -#: part/api.py:147 +#: part/api.py:142 msgid "Filter by top-level categories" msgstr "" -#: part/api.py:160 stock/api.py:321 +#: part/api.py:155 stock/api.py:321 msgid "Cascade" msgstr "" -#: part/api.py:162 +#: part/api.py:157 msgid "Include sub-categories in filtered results" msgstr "" -#: part/api.py:182 +#: part/api.py:177 msgid "Parent" msgstr "" -#: part/api.py:184 +#: part/api.py:179 msgid "Filter by parent category" msgstr "" -#: part/api.py:219 +#: part/api.py:214 msgid "Exclude sub-categories under the specified category" msgstr "" -#: part/api.py:445 +#: part/api.py:440 msgid "Has Results" msgstr "" -#: part/api.py:666 +#: part/api.py:661 msgid "Is Variant" msgstr "" -#: part/api.py:674 +#: part/api.py:669 msgid "Is Revision" msgstr "" -#: part/api.py:684 +#: part/api.py:679 msgid "Has Revisions" msgstr "" -#: part/api.py:865 +#: part/api.py:860 msgid "BOM Valid" msgstr "" -#: part/api.py:974 +#: part/api.py:969 msgid "Cascade Categories" msgstr "" -#: part/api.py:975 +#: part/api.py:970 msgid "If true, include items in child categories of the given category" msgstr "" -#: part/api.py:981 +#: part/api.py:976 msgid "Filter by numeric category ID or the literal 'null'" msgstr "" -#: part/api.py:1533 +#: part/api.py:1258 msgid "Assembly part is testable" msgstr "" -#: part/api.py:1542 +#: part/api.py:1267 msgid "Component part is testable" msgstr "" -#: part/api.py:1611 +#: part/api.py:1336 msgid "Uses" msgstr "" -#: part/models.py:96 part/models.py:4163 +#: part/models.py:93 part/models.py:436 #: templates/email/part_event_notification.html:16 msgid "Part Category" msgstr "Categoria da Peça" -#: part/models.py:97 users/ruleset.py:27 +#: part/models.py:94 users/ruleset.py:27 msgid "Part Categories" msgstr "Categorias de Peça" -#: part/models.py:115 part/models.py:1125 +#: part/models.py:112 part/models.py:1213 msgid "Default Location" msgstr "Local Padrão" -#: part/models.py:116 +#: part/models.py:113 msgid "Default location for parts in this category" msgstr "Local padrão para peças desta categoria" -#: part/models.py:121 stock/models.py:216 +#: part/models.py:118 stock/models.py:216 msgid "Structural" msgstr "Estrutural" -#: part/models.py:123 +#: part/models.py:120 msgid "Parts may not be directly assigned to a structural category, but may be assigned to child categories." msgstr "Peças não podem ser diretamente atribuídas a uma categoria estrutural, mas podem ser atribuídas a categorias filhas." -#: part/models.py:132 +#: part/models.py:129 msgid "Default keywords" msgstr "Palavras-chave Padrão" -#: part/models.py:133 +#: part/models.py:130 msgid "Default keywords for parts in this category" msgstr "Palavras-chave padrão para peças nesta categoria" -#: part/models.py:140 stock/models.py:97 stock/models.py:198 +#: part/models.py:137 stock/models.py:97 stock/models.py:198 msgid "Icon" msgstr "Ícone" -#: part/models.py:141 part/serializers.py:148 part/serializers.py:167 +#: part/models.py:138 part/serializers.py:147 part/serializers.py:166 #: stock/models.py:199 msgid "Icon (optional)" msgstr "Ícone (opcional)" -#: part/models.py:185 +#: part/models.py:182 msgid "You cannot make this part category structural because some parts are already assigned to it!" msgstr "Você não pode tornar esta categoria em estrutural, pois, algumas partes já estão alocadas!" -#: part/models.py:473 part/serializers.py:119 part/serializers.py:310 -#: users/ruleset.py:28 +#: part/models.py:392 +msgid "Part Category Parameter Template" +msgstr "" + +#: part/models.py:448 +msgid "Default Value" +msgstr "Valor Padrão" + +#: part/models.py:449 +msgid "Default Parameter Value" +msgstr "Valor Padrão do Parâmetro" + +#: part/models.py:551 part/serializers.py:118 users/ruleset.py:28 msgid "Parts" msgstr "Peças" -#: part/models.py:525 +#: part/models.py:597 +msgid "Cannot delete parameters of a locked part" +msgstr "" + +#: part/models.py:602 +msgid "Cannot modify parameters of a locked part" +msgstr "" + +#: part/models.py:613 msgid "Cannot delete this part as it is locked" msgstr "" -#: part/models.py:528 +#: part/models.py:616 msgid "Cannot delete this part as it is still active" msgstr "" -#: part/models.py:533 +#: part/models.py:621 msgid "Cannot delete this part as it is used in an assembly" msgstr "" -#: part/models.py:616 part/models.py:623 +#: part/models.py:704 part/models.py:711 #, python-brace-format msgid "Part '{self}' cannot be used in BOM for '{parent}' (recursive)" msgstr "Peça '{self}' não pode ser utilizada na BOM para '{parent}' (recursiva)" -#: part/models.py:635 +#: part/models.py:723 #, python-brace-format msgid "Part '{parent}' is used in BOM for '{self}' (recursive)" msgstr "Peça '{parent}' é usada na BOM para '{self}' (recursiva)" -#: part/models.py:702 +#: part/models.py:790 #, python-brace-format msgid "IPN must match regex pattern {pattern}" msgstr "IPN deve corresponder ao padrão regex {pattern}" -#: part/models.py:710 +#: part/models.py:798 msgid "Part cannot be a revision of itself" msgstr "" -#: part/models.py:717 +#: part/models.py:805 msgid "Cannot make a revision of a part which is already a revision" msgstr "" -#: part/models.py:724 +#: part/models.py:812 msgid "Revision code must be specified" msgstr "" -#: part/models.py:731 +#: part/models.py:819 msgid "Revisions are only allowed for assembly parts" msgstr "" -#: part/models.py:738 +#: part/models.py:826 msgid "Cannot make a revision of a template part" msgstr "" -#: part/models.py:744 +#: part/models.py:832 msgid "Parent part must point to the same template" msgstr "" -#: part/models.py:841 +#: part/models.py:929 msgid "Stock item with this serial number already exists" msgstr "Item em estoque com este número de série já existe" -#: part/models.py:971 +#: part/models.py:1059 msgid "Duplicate IPN not allowed in part settings" msgstr "Não é permitido duplicar IPN em configurações de partes" -#: part/models.py:983 +#: part/models.py:1071 msgid "Duplicate part revision already exists." msgstr "" -#: part/models.py:992 +#: part/models.py:1080 msgid "Part with this Name, IPN and Revision already exists." msgstr "Uma parte com este Nome, IPN e Revisão já existe." -#: part/models.py:1007 +#: part/models.py:1095 msgid "Parts cannot be assigned to structural part categories!" msgstr "Peças não podem ser atribuídas a categorias estruturais!" -#: part/models.py:1039 +#: part/models.py:1127 msgid "Part name" msgstr "Nome da peça" -#: part/models.py:1044 +#: part/models.py:1132 msgid "Is Template" msgstr "É um modelo" -#: part/models.py:1045 +#: part/models.py:1133 msgid "Is this part a template part?" msgstr "Esta peça é uma peça modelo?" -#: part/models.py:1055 +#: part/models.py:1143 msgid "Is this part a variant of another part?" msgstr "Esta peça é variante de outra peça?" -#: part/models.py:1056 +#: part/models.py:1144 msgid "Variant Of" msgstr "Variante de" -#: part/models.py:1063 +#: part/models.py:1151 msgid "Part description (optional)" msgstr "Descrição da peça (opcional)" -#: part/models.py:1070 +#: part/models.py:1158 msgid "Keywords" msgstr "Palavras chave" -#: part/models.py:1071 +#: part/models.py:1159 msgid "Part keywords to improve visibility in search results" msgstr "Palavras-chave para melhorar a visibilidade nos resultados da pesquisa" -#: part/models.py:1081 +#: part/models.py:1169 msgid "Part category" msgstr "Categoria da Peça" -#: part/models.py:1088 part/serializers.py:929 +#: part/models.py:1176 part/serializers.py:814 #: report/templates/report/inventree_stock_location_report.html:103 msgid "IPN" msgstr "" -#: part/models.py:1096 +#: part/models.py:1184 msgid "Part revision or version number" msgstr "Revisão de peça ou número de versão" -#: part/models.py:1097 report/models.py:228 +#: part/models.py:1185 report/models.py:228 msgid "Revision" msgstr "Revisão" -#: part/models.py:1106 +#: part/models.py:1194 msgid "Is this part a revision of another part?" msgstr "" -#: part/models.py:1107 +#: part/models.py:1195 msgid "Revision Of" msgstr "" -#: part/models.py:1123 +#: part/models.py:1211 msgid "Where is this item normally stored?" msgstr "Onde este item é armazenado normalmente?" -#: part/models.py:1169 +#: part/models.py:1257 msgid "Default Supplier" msgstr "Fornecedor Padrão" -#: part/models.py:1170 +#: part/models.py:1258 msgid "Default supplier part" msgstr "Fornecedor padrão da peça" -#: part/models.py:1177 +#: part/models.py:1265 msgid "Default Expiry" msgstr "Validade Padrão" -#: part/models.py:1178 +#: part/models.py:1266 msgid "Expiry time (in days) for stock items of this part" msgstr "Validade (em dias) para itens do estoque desta peça" -#: part/models.py:1186 part/serializers.py:1003 +#: part/models.py:1274 part/serializers.py:888 msgid "Minimum Stock" msgstr "Estoque Mínimo" -#: part/models.py:1187 +#: part/models.py:1275 msgid "Minimum allowed stock level" msgstr "Nível mínimo de estoque permitido" -#: part/models.py:1196 +#: part/models.py:1284 msgid "Units of measure for this part" msgstr "Unidade de medida para esta peça" -#: part/models.py:1203 +#: part/models.py:1291 msgid "Can this part be built from other parts?" msgstr "Essa peça pode ser construída a partir de outras peças?" -#: part/models.py:1209 +#: part/models.py:1297 msgid "Can this part be used to build other parts?" msgstr "Essa peça pode ser usada para construir outras peças?" -#: part/models.py:1215 +#: part/models.py:1303 msgid "Does this part have tracking for unique items?" msgstr "Esta parte tem rastreamento para itens únicos?" -#: part/models.py:1221 +#: part/models.py:1309 msgid "Can this part have test results recorded against it?" msgstr "" -#: part/models.py:1227 +#: part/models.py:1315 msgid "Can this part be purchased from external suppliers?" msgstr "Esta peça pode ser comprada de fornecedores externos?" -#: part/models.py:1233 +#: part/models.py:1321 msgid "Can this part be sold to customers?" msgstr "Esta peça pode ser vendida a clientes?" -#: part/models.py:1237 +#: part/models.py:1325 msgid "Is this part active?" msgstr "Esta parte está ativa?" -#: part/models.py:1243 +#: part/models.py:1331 msgid "Locked parts cannot be edited" msgstr "" -#: part/models.py:1249 +#: part/models.py:1337 msgid "Is this a virtual part, such as a software product or license?" msgstr "Esta é uma peça virtual, como um software de produto ou licença?" -#: part/models.py:1254 +#: part/models.py:1342 msgid "BOM Validated" msgstr "" -#: part/models.py:1255 +#: part/models.py:1343 msgid "Is the BOM for this part valid?" msgstr "" -#: part/models.py:1261 +#: part/models.py:1349 msgid "BOM checksum" msgstr "Soma de Verificação da LDM" -#: part/models.py:1262 +#: part/models.py:1350 msgid "Stored BOM checksum" msgstr "Soma de verificação da LDM armazenada" -#: part/models.py:1270 +#: part/models.py:1358 msgid "BOM checked by" msgstr "LDM conferida por" -#: part/models.py:1275 +#: part/models.py:1363 msgid "BOM checked date" msgstr "LDM verificada no dia" -#: part/models.py:1291 +#: part/models.py:1379 msgid "Creation User" msgstr "Criação de Usuário" -#: part/models.py:1301 +#: part/models.py:1389 msgid "Owner responsible for this part" msgstr "Proprietário responsável por esta peça" -#: part/models.py:2258 +#: part/models.py:2346 msgid "Sell multiple" msgstr "Venda múltipla" -#: part/models.py:3286 +#: part/models.py:3350 msgid "Currency used to cache pricing calculations" msgstr "Moeda usada para armazenar os cálculos de preços" -#: part/models.py:3302 +#: part/models.py:3366 msgid "Minimum BOM Cost" msgstr "Custo Mínimo da LDM" -#: part/models.py:3303 +#: part/models.py:3367 msgid "Minimum cost of component parts" msgstr "Custo mínimo das peças componentes" -#: part/models.py:3309 +#: part/models.py:3373 msgid "Maximum BOM Cost" msgstr "Custo Máximo da LDM" -#: part/models.py:3310 +#: part/models.py:3374 msgid "Maximum cost of component parts" msgstr "Custo máximo das peças componentes" -#: part/models.py:3316 +#: part/models.py:3380 msgid "Minimum Purchase Cost" msgstr "Custo Mínimo de Compra" -#: part/models.py:3317 +#: part/models.py:3381 msgid "Minimum historical purchase cost" msgstr "Custo mínimo histórico de compra" -#: part/models.py:3323 +#: part/models.py:3387 msgid "Maximum Purchase Cost" msgstr "Custo Máximo de Compra" -#: part/models.py:3324 +#: part/models.py:3388 msgid "Maximum historical purchase cost" msgstr "Custo máximo histórico de compra" -#: part/models.py:3330 +#: part/models.py:3394 msgid "Minimum Internal Price" msgstr "Preço Interno Mínimo" -#: part/models.py:3331 +#: part/models.py:3395 msgid "Minimum cost based on internal price breaks" msgstr "Custo mínimo baseado nos intervalos de preço internos" -#: part/models.py:3337 +#: part/models.py:3401 msgid "Maximum Internal Price" msgstr "Preço Interno Máximo" -#: part/models.py:3338 +#: part/models.py:3402 msgid "Maximum cost based on internal price breaks" msgstr "Custo máximo baseado nos intervalos de preço internos" -#: part/models.py:3344 +#: part/models.py:3408 msgid "Minimum Supplier Price" msgstr "Preço Mínimo do Fornecedor" -#: part/models.py:3345 +#: part/models.py:3409 msgid "Minimum price of part from external suppliers" msgstr "Preço mínimo da peça de fornecedores externos" -#: part/models.py:3351 +#: part/models.py:3415 msgid "Maximum Supplier Price" msgstr "Preço Máximo do Fornecedor" -#: part/models.py:3352 +#: part/models.py:3416 msgid "Maximum price of part from external suppliers" msgstr "Preço máximo da peça de fornecedores externos" -#: part/models.py:3358 +#: part/models.py:3422 msgid "Minimum Variant Cost" msgstr "Custo Mínimo variável" -#: part/models.py:3359 +#: part/models.py:3423 msgid "Calculated minimum cost of variant parts" msgstr "Custo mínimo calculado das peças variáveis" -#: part/models.py:3365 +#: part/models.py:3429 msgid "Maximum Variant Cost" msgstr "Custo Máximo Variável" -#: part/models.py:3366 +#: part/models.py:3430 msgid "Calculated maximum cost of variant parts" msgstr "Custo máximo calculado das peças variáveis" -#: part/models.py:3372 part/models.py:3386 +#: part/models.py:3436 part/models.py:3450 msgid "Minimum Cost" msgstr "Custo Mínimo" -#: part/models.py:3373 +#: part/models.py:3437 msgid "Override minimum cost" msgstr "Sobrepor o custo mínimo" -#: part/models.py:3379 part/models.py:3393 +#: part/models.py:3443 part/models.py:3457 msgid "Maximum Cost" msgstr "Custo Máximo" -#: part/models.py:3380 +#: part/models.py:3444 msgid "Override maximum cost" msgstr "Sobrepor o custo máximo" -#: part/models.py:3387 +#: part/models.py:3451 msgid "Calculated overall minimum cost" msgstr "Custo total mínimo calculado" -#: part/models.py:3394 +#: part/models.py:3458 msgid "Calculated overall maximum cost" msgstr "Custo total máximo calculado" -#: part/models.py:3400 +#: part/models.py:3464 msgid "Minimum Sale Price" msgstr "Preço Mínimo de Venda" -#: part/models.py:3401 +#: part/models.py:3465 msgid "Minimum sale price based on price breaks" msgstr "Preço mínimo de venda baseado nos intervalos de preço" -#: part/models.py:3407 +#: part/models.py:3471 msgid "Maximum Sale Price" msgstr "Preço Máximo de Venda" -#: part/models.py:3408 +#: part/models.py:3472 msgid "Maximum sale price based on price breaks" msgstr "Preço máximo de venda baseado nos intervalos de preço" -#: part/models.py:3414 +#: part/models.py:3478 msgid "Minimum Sale Cost" msgstr "Custo Mínimo de Venda" -#: part/models.py:3415 +#: part/models.py:3479 msgid "Minimum historical sale price" msgstr "Preço histórico mínimo de venda" -#: part/models.py:3421 +#: part/models.py:3485 msgid "Maximum Sale Cost" msgstr "Custo Máximo de Venda" -#: part/models.py:3422 +#: part/models.py:3486 msgid "Maximum historical sale price" msgstr "Preço histórico máximo de venda" -#: part/models.py:3440 +#: part/models.py:3504 msgid "Part for stocktake" msgstr "Peça para Balanço" -#: part/models.py:3445 +#: part/models.py:3509 msgid "Item Count" msgstr "Total de Itens" -#: part/models.py:3446 +#: part/models.py:3510 msgid "Number of individual stock entries at time of stocktake" msgstr "Número de entradas de estoques individuais no momento do balanço" -#: part/models.py:3454 +#: part/models.py:3518 msgid "Total available stock at time of stocktake" msgstr "Estoque total disponível no momento do balanço" -#: part/models.py:3458 report/templates/report/inventree_test_report.html:106 +#: part/models.py:3522 report/templates/report/inventree_test_report.html:106 msgid "Date" msgstr "Data" -#: part/models.py:3459 +#: part/models.py:3523 msgid "Date stocktake was performed" msgstr "Data de realização do balanço" -#: part/models.py:3466 +#: part/models.py:3530 msgid "Minimum Stock Cost" msgstr "Custo Mínimo de Estoque" -#: part/models.py:3467 +#: part/models.py:3531 msgid "Estimated minimum cost of stock on hand" msgstr "Custo mínimo estimado de estoque disponível" -#: part/models.py:3473 +#: part/models.py:3537 msgid "Maximum Stock Cost" msgstr "Custo Máximo de Estoque" -#: part/models.py:3474 +#: part/models.py:3538 msgid "Estimated maximum cost of stock on hand" msgstr "Custo máximo estimado de estoque disponível" -#: part/models.py:3484 +#: part/models.py:3548 msgid "Part Sale Price Break" msgstr "" -#: part/models.py:3596 +#: part/models.py:3660 msgid "Part Test Template" msgstr "" -#: part/models.py:3622 +#: part/models.py:3686 msgid "Invalid template name - must include at least one alphanumeric character" msgstr "" -#: part/models.py:3643 part/models.py:3816 -msgid "Choices must be unique" -msgstr "Escolhas devem ser únicas" - -#: part/models.py:3654 +#: part/models.py:3718 msgid "Test templates can only be created for testable parts" msgstr "" -#: part/models.py:3668 +#: part/models.py:3732 msgid "Test template with the same key already exists for part" msgstr "" -#: part/models.py:3685 +#: part/models.py:3749 msgid "Test Name" msgstr "Nome de Teste" -#: part/models.py:3686 +#: part/models.py:3750 msgid "Enter a name for the test" msgstr "Insira um nome para o teste" -#: part/models.py:3692 +#: part/models.py:3756 msgid "Test Key" msgstr "" -#: part/models.py:3693 +#: part/models.py:3757 msgid "Simplified key for the test" msgstr "" -#: part/models.py:3700 +#: part/models.py:3764 msgid "Test Description" msgstr "Descrição do Teste" -#: part/models.py:3701 +#: part/models.py:3765 msgid "Enter description for this test" msgstr "Digite a descrição para este teste" -#: part/models.py:3705 report/models.py:287 -msgid "Enabled" -msgstr "Habilitado" - -#: part/models.py:3705 +#: part/models.py:3769 msgid "Is this test enabled?" msgstr "" -#: part/models.py:3710 +#: part/models.py:3774 msgid "Required" msgstr "Requerido" -#: part/models.py:3711 +#: part/models.py:3775 msgid "Is this test required to pass?" msgstr "Este teste é obrigatório passar?" -#: part/models.py:3716 +#: part/models.py:3780 msgid "Requires Value" msgstr "Requer Valor" -#: part/models.py:3717 +#: part/models.py:3781 msgid "Does this test require a value when adding a test result?" msgstr "Este teste requer um valor ao adicionar um resultado de teste?" -#: part/models.py:3722 +#: part/models.py:3786 msgid "Requires Attachment" msgstr "Anexo obrigatório" -#: part/models.py:3724 +#: part/models.py:3788 msgid "Does this test require a file attachment when adding a test result?" msgstr "Este teste requer um anexo ao adicionar um resultado de teste?" -#: part/models.py:3730 part/models.py:3878 -msgid "Choices" -msgstr "Escolhas" - -#: part/models.py:3731 +#: part/models.py:3795 msgid "Valid choices for this test (comma-separated)" msgstr "" -#: part/models.py:3764 -msgid "Part Parameter Template" -msgstr "" - -#: part/models.py:3791 -msgid "Checkbox parameters cannot have units" -msgstr "Parâmetros da caixa de seleção não podem ter unidades" - -#: part/models.py:3796 -msgid "Checkbox parameters cannot have choices" -msgstr "Os parâmetros da caixa de seleção não podem ter escolhas" - -#: part/models.py:3833 -msgid "Parameter template name must be unique" -msgstr "Nome do modelo de parâmetro deve ser único" - -#: part/models.py:3851 -msgid "Parameter Name" -msgstr "Nome do Parâmetro" - -#: part/models.py:3858 -msgid "Physical units for this parameter" -msgstr "Unidades físicas para este parâmetro" - -#: part/models.py:3866 -msgid "Parameter description" -msgstr "Descrição do Parâmetro" - -#: part/models.py:3872 -msgid "Checkbox" -msgstr "Caixa de seleção" - -#: part/models.py:3873 -msgid "Is this parameter a checkbox?" -msgstr "Este parâmetro é uma caixa de seleção?" - -#: part/models.py:3879 -msgid "Valid choices for this parameter (comma-separated)" -msgstr "Opções válidas para este parâmetro (separadas por vírgulas)" - -#: part/models.py:3890 -msgid "Selection list for this parameter" -msgstr "" - -#: part/models.py:3932 -msgid "Part Parameter" -msgstr "" - -#: part/models.py:3958 -msgid "Parameter cannot be modified - part is locked" -msgstr "" - -#: part/models.py:3996 -msgid "Invalid choice for parameter value" -msgstr "Escolha inválida para valor do parâmetro" - -#: part/models.py:4047 -msgid "Parent Part" -msgstr "Peça Paternal" - -#: part/models.py:4055 part/models.py:4170 part/models.py:4171 -msgid "Parameter Template" -msgstr "Modelo de parâmetro" - -#: part/models.py:4061 -msgid "Parameter Value" -msgstr "Valor do Parâmetro" - -#: part/models.py:4071 stock/serializers.py:718 -msgid "Optional note field" -msgstr "Campo opcional de notas" - -#: part/models.py:4118 -msgid "Part Category Parameter Template" -msgstr "" - -#: part/models.py:4177 -msgid "Default Value" -msgstr "Valor Padrão" - -#: part/models.py:4178 -msgid "Default Parameter Value" -msgstr "Valor Padrão do Parâmetro" - -#: part/models.py:4352 +#: part/models.py:3977 msgid "BOM item cannot be modified - assembly is locked" msgstr "" -#: part/models.py:4359 +#: part/models.py:3984 msgid "BOM item cannot be modified - variant assembly is locked" msgstr "" -#: part/models.py:4369 +#: part/models.py:3994 msgid "Select parent part" msgstr "Selecione a Peça Parental" -#: part/models.py:4379 +#: part/models.py:4004 msgid "Sub part" msgstr "Sub peça" -#: part/models.py:4380 +#: part/models.py:4005 msgid "Select part to be used in BOM" msgstr "Selecionar peça a ser usada na LDM" -#: part/models.py:4391 +#: part/models.py:4016 msgid "BOM quantity for this BOM item" msgstr "Quantidade de LDM para este item LDM" -#: part/models.py:4397 +#: part/models.py:4022 msgid "This BOM item is optional" msgstr "Este item LDM é opcional" -#: part/models.py:4403 +#: part/models.py:4028 msgid "This BOM item is consumable (it is not tracked in build orders)" msgstr "Este item LDM é consumível (não é rastreado nos pedidos de construção)" -#: part/models.py:4411 +#: part/models.py:4036 msgid "Setup Quantity" msgstr "" -#: part/models.py:4412 +#: part/models.py:4037 msgid "Extra required quantity for a build, to account for setup losses" msgstr "" -#: part/models.py:4420 +#: part/models.py:4045 msgid "Attrition" msgstr "" -#: part/models.py:4422 +#: part/models.py:4047 msgid "Estimated attrition for a build, expressed as a percentage (0-100)" msgstr "" -#: part/models.py:4433 +#: part/models.py:4058 msgid "Rounding Multiple" msgstr "" -#: part/models.py:4435 +#: part/models.py:4060 msgid "Round up required production quantity to nearest multiple of this value" msgstr "" -#: part/models.py:4443 +#: part/models.py:4068 msgid "BOM item reference" msgstr "Referência do Item LDM" -#: part/models.py:4451 +#: part/models.py:4076 msgid "BOM item notes" msgstr "Notas do Item LDM" -#: part/models.py:4457 +#: part/models.py:4082 msgid "Checksum" msgstr "Soma de verificação" -#: part/models.py:4458 +#: part/models.py:4083 msgid "BOM line checksum" msgstr "Soma de Verificação da LDM da linha" -#: part/models.py:4463 +#: part/models.py:4088 msgid "Validated" msgstr "Validado" -#: part/models.py:4464 +#: part/models.py:4089 msgid "This BOM item has been validated" msgstr "O item da LDM foi validado" -#: part/models.py:4469 +#: part/models.py:4094 msgid "Gets inherited" msgstr "Obtém herdados" -#: part/models.py:4470 +#: part/models.py:4095 msgid "This BOM item is inherited by BOMs for variant parts" msgstr "Este item da LDM é herdado por LDMs para peças variáveis" -#: part/models.py:4476 +#: part/models.py:4101 msgid "Stock items for variant parts can be used for this BOM item" msgstr "Itens de estoque para as peças das variantes podem ser usados para este item LDM" -#: part/models.py:4583 stock/models.py:925 +#: part/models.py:4208 stock/models.py:925 msgid "Quantity must be integer value for trackable parts" msgstr "Quantidade deve ser valor inteiro para peças rastreáveis" -#: part/models.py:4593 part/models.py:4595 +#: part/models.py:4218 part/models.py:4220 msgid "Sub part must be specified" msgstr "Sub peça deve ser especificada" -#: part/models.py:4746 +#: part/models.py:4371 msgid "BOM Item Substitute" msgstr "Substituir Item da LDM" -#: part/models.py:4767 +#: part/models.py:4392 msgid "Substitute part cannot be the same as the master part" msgstr "A peça de substituição não pode ser a mesma que a peça mestre" -#: part/models.py:4780 +#: part/models.py:4405 msgid "Parent BOM item" msgstr "Item LDM Parental" -#: part/models.py:4788 +#: part/models.py:4413 msgid "Substitute part" msgstr "Substituir peça" -#: part/models.py:4804 +#: part/models.py:4429 msgid "Part 1" msgstr "Parte 1" -#: part/models.py:4812 +#: part/models.py:4437 msgid "Part 2" msgstr "Parte 2" -#: part/models.py:4813 +#: part/models.py:4438 msgid "Select Related Part" msgstr "Selecionar Peça Relacionada" -#: part/models.py:4820 +#: part/models.py:4445 msgid "Note for this relationship" msgstr "" -#: part/models.py:4839 +#: part/models.py:4464 msgid "Part relationship cannot be created between a part and itself" msgstr "Relacionamento da peça não pode ser criada com ela mesma" -#: part/models.py:4844 +#: part/models.py:4469 msgid "Duplicate relationship already exists" msgstr "Relação duplicada já existe" -#: part/serializers.py:114 +#: part/serializers.py:113 msgid "Parent Category" msgstr "" -#: part/serializers.py:115 +#: part/serializers.py:114 msgid "Parent part category" msgstr "Categoria de peça pai" -#: part/serializers.py:123 part/serializers.py:164 +#: part/serializers.py:122 part/serializers.py:163 msgid "Subcategories" msgstr "Sub-categorias" -#: part/serializers.py:203 +#: part/serializers.py:202 msgid "Results" msgstr "" -#: part/serializers.py:204 +#: part/serializers.py:203 msgid "Number of results recorded against this template" msgstr "" -#: part/serializers.py:235 part/serializers.py:253 stock/serializers.py:643 +#: part/serializers.py:234 part/serializers.py:252 stock/serializers.py:643 msgid "Purchase currency of this stock item" msgstr "Moeda de compra deste item de estoque" -#: part/serializers.py:280 +#: part/serializers.py:279 msgid "File is not an image" msgstr "" -#: part/serializers.py:311 -msgid "Number of parts using this template" -msgstr "" - -#: part/serializers.py:471 +#: part/serializers.py:382 msgid "Original Part" msgstr "Peça Original" -#: part/serializers.py:472 +#: part/serializers.py:383 msgid "Select original part to duplicate" msgstr "Selecione a peça original para duplicar" -#: part/serializers.py:477 +#: part/serializers.py:388 msgid "Copy Image" msgstr "Copiar imagem" -#: part/serializers.py:478 +#: part/serializers.py:389 msgid "Copy image from original part" msgstr "Copiar imagem da peça original" -#: part/serializers.py:484 +#: part/serializers.py:395 msgid "Copy BOM" msgstr "Copiar LDM" -#: part/serializers.py:485 +#: part/serializers.py:396 msgid "Copy bill of materials from original part" msgstr "Copiar lista de materiais da peça original" -#: part/serializers.py:491 +#: part/serializers.py:402 msgid "Copy Parameters" msgstr "Copiar Parâmetros" -#: part/serializers.py:492 +#: part/serializers.py:403 msgid "Copy parameter data from original part" msgstr "Copiar dados do parâmetro da peça original" -#: part/serializers.py:498 +#: part/serializers.py:409 msgid "Copy Notes" msgstr "Copiar Notas" -#: part/serializers.py:499 +#: part/serializers.py:410 msgid "Copy notes from original part" msgstr "Copiar imagem da peça original" -#: part/serializers.py:505 +#: part/serializers.py:416 msgid "Copy Tests" msgstr "" -#: part/serializers.py:506 +#: part/serializers.py:417 msgid "Copy test templates from original part" msgstr "" -#: part/serializers.py:524 +#: part/serializers.py:435 msgid "Initial Stock Quantity" msgstr "Quantidade Inicial de Estoque" -#: part/serializers.py:526 +#: part/serializers.py:437 msgid "Specify initial stock quantity for this Part. If quantity is zero, no stock is added." msgstr "Especificar a quantidade inicial de estoque para a peça. Se for zero, nenhum estoque é adicionado." -#: part/serializers.py:533 +#: part/serializers.py:444 msgid "Initial Stock Location" msgstr "Local Inicial do Estoque" -#: part/serializers.py:534 +#: part/serializers.py:445 msgid "Specify initial stock location for this Part" msgstr "Especifique o local do estoque inicial para esta Peça" -#: part/serializers.py:551 +#: part/serializers.py:462 msgid "Select supplier (or leave blank to skip)" msgstr "Selecione o fornecedor (ou deixe em branco para pular)" -#: part/serializers.py:567 +#: part/serializers.py:478 msgid "Select manufacturer (or leave blank to skip)" msgstr "Selecione fabricante (ou deixe em branco para pular)" -#: part/serializers.py:577 +#: part/serializers.py:488 msgid "Manufacturer part number" msgstr "Número de Peça do Fabricante" -#: part/serializers.py:584 +#: part/serializers.py:495 msgid "Selected company is not a valid supplier" msgstr "A empresa selecionada não é um fornecedor válido" -#: part/serializers.py:593 +#: part/serializers.py:504 msgid "Selected company is not a valid manufacturer" msgstr "A empresa selecionada não é um fabricante válido" -#: part/serializers.py:604 +#: part/serializers.py:515 msgid "Manufacturer part matching this MPN already exists" msgstr "A peça do fabricante que corresponde a essa MPN já existe" -#: part/serializers.py:611 +#: part/serializers.py:522 msgid "Supplier part matching this SKU already exists" msgstr "A peça do fornecedor que corresponde a essa SKU já existe" -#: part/serializers.py:914 +#: part/serializers.py:799 msgid "Category Name" msgstr "Nome da Categoria" -#: part/serializers.py:943 +#: part/serializers.py:828 msgid "Building" msgstr "Produzindo" -#: part/serializers.py:944 +#: part/serializers.py:829 msgid "Quantity of this part currently being in production" msgstr "" -#: part/serializers.py:951 +#: part/serializers.py:836 msgid "Outstanding quantity of this part scheduled to be built" msgstr "" -#: part/serializers.py:971 stock/serializers.py:1019 stock/serializers.py:1189 +#: part/serializers.py:856 stock/serializers.py:1019 stock/serializers.py:1189 #: users/ruleset.py:30 msgid "Stock Items" msgstr "Itens de Estoque" -#: part/serializers.py:975 +#: part/serializers.py:860 msgid "Revisions" msgstr "" -#: part/serializers.py:979 +#: part/serializers.py:864 msgid "Suppliers" msgstr "Fornecedores" -#: part/serializers.py:983 part/serializers.py:1297 +#: part/serializers.py:868 part/serializers.py:1162 #: templates/email/low_stock_notification.html:16 #: templates/email/part_event_notification.html:17 msgid "Total Stock" msgstr "Estoque Total" -#: part/serializers.py:991 +#: part/serializers.py:876 msgid "Unallocated Stock" msgstr "" -#: part/serializers.py:999 +#: part/serializers.py:884 msgid "Variant Stock" msgstr "" -#: part/serializers.py:1054 +#: part/serializers.py:943 msgid "Duplicate Part" msgstr "Peça duplicada" -#: part/serializers.py:1055 +#: part/serializers.py:944 msgid "Copy initial data from another Part" msgstr "Copiar dados iniciais de outra peça" -#: part/serializers.py:1061 +#: part/serializers.py:950 msgid "Initial Stock" msgstr "Estoque inicial" -#: part/serializers.py:1062 +#: part/serializers.py:951 msgid "Create Part with initial stock quantity" msgstr "Criar peça com a quantidade inicial de estoque" -#: part/serializers.py:1068 +#: part/serializers.py:957 msgid "Supplier Information" msgstr "Informações do Fornecedor" -#: part/serializers.py:1069 +#: part/serializers.py:958 msgid "Add initial supplier information for this part" msgstr "Adicionar informação inicial de fornecedor para esta peça" -#: part/serializers.py:1077 +#: part/serializers.py:966 msgid "Copy Category Parameters" msgstr "Copiar Parâmetros da Categoria" -#: part/serializers.py:1078 +#: part/serializers.py:967 msgid "Copy parameter templates from selected part category" msgstr "Copiar modelos de parâmetros a partir de categoria de peça selecionada" -#: part/serializers.py:1083 +#: part/serializers.py:972 msgid "Existing Image" msgstr "Imagem Existente" -#: part/serializers.py:1084 +#: part/serializers.py:973 msgid "Filename of an existing part image" msgstr "Nome de arquivo de uma imagem de peça existente" -#: part/serializers.py:1101 +#: part/serializers.py:990 msgid "Image file does not exist" msgstr "A imagem não existe" -#: part/serializers.py:1269 +#: part/serializers.py:1134 msgid "Validate entire Bill of Materials" msgstr "Validar a Lista de Materiais completa" -#: part/serializers.py:1303 part/serializers.py:1769 +#: part/serializers.py:1168 part/serializers.py:1634 msgid "Can Build" msgstr "Pode Produzir" -#: part/serializers.py:1320 +#: part/serializers.py:1185 msgid "Required for Build Orders" msgstr "" -#: part/serializers.py:1325 +#: part/serializers.py:1190 msgid "Allocated to Build Orders" msgstr "" -#: part/serializers.py:1332 +#: part/serializers.py:1197 msgid "Required for Sales Orders" msgstr "" -#: part/serializers.py:1336 +#: part/serializers.py:1201 msgid "Allocated to Sales Orders" msgstr "" -#: part/serializers.py:1475 +#: part/serializers.py:1340 msgid "Minimum Price" msgstr "Preço Mínimo" -#: part/serializers.py:1476 +#: part/serializers.py:1341 msgid "Override calculated value for minimum price" msgstr "Sobrepor valor calculado para preço mínimo" -#: part/serializers.py:1483 +#: part/serializers.py:1348 msgid "Minimum price currency" msgstr "Moeda do preço mínimo" -#: part/serializers.py:1490 +#: part/serializers.py:1355 msgid "Maximum Price" msgstr "Preço Máximo" -#: part/serializers.py:1491 +#: part/serializers.py:1356 msgid "Override calculated value for maximum price" msgstr "Sobrepor valor calculado para preço máximo" -#: part/serializers.py:1498 +#: part/serializers.py:1363 msgid "Maximum price currency" msgstr "Moeda do preço máximo" -#: part/serializers.py:1527 +#: part/serializers.py:1392 msgid "Update" msgstr "Atualizar" -#: part/serializers.py:1528 +#: part/serializers.py:1393 msgid "Update pricing for this part" msgstr "Atualizar preços desta peça" -#: part/serializers.py:1551 +#: part/serializers.py:1416 #, python-brace-format msgid "Could not convert from provided currencies to {default_currency}" msgstr "Não foi possível converter das moedas fornecidas para {default_currency}" -#: part/serializers.py:1558 +#: part/serializers.py:1423 msgid "Minimum price must not be greater than maximum price" msgstr "Preço mínimo não pode ser maior que o preço máximo" -#: part/serializers.py:1561 +#: part/serializers.py:1426 msgid "Maximum price must not be less than minimum price" msgstr "Preço máximo não pode ser menor que o preço mínimo" -#: part/serializers.py:1715 +#: part/serializers.py:1580 msgid "Select the parent assembly" msgstr "" -#: part/serializers.py:1735 +#: part/serializers.py:1600 msgid "Select the component part" msgstr "" -#: part/serializers.py:1929 +#: part/serializers.py:1802 msgid "Select part to copy BOM from" msgstr "Selecionar peça para copiar a LDM" -#: part/serializers.py:1937 +#: part/serializers.py:1810 msgid "Remove Existing Data" msgstr "Remover Dado Existente" -#: part/serializers.py:1938 +#: part/serializers.py:1811 msgid "Remove existing BOM items before copying" msgstr "Remova itens LDM existentes antes de copiar" -#: part/serializers.py:1943 +#: part/serializers.py:1816 msgid "Include Inherited" msgstr "Incluir Herdados" -#: part/serializers.py:1944 +#: part/serializers.py:1817 msgid "Include BOM items which are inherited from templated parts" msgstr "Incluir itens LDM que são herdados de peças modelo" -#: part/serializers.py:1949 +#: part/serializers.py:1822 msgid "Skip Invalid Rows" msgstr "Pular Linhas inválidas" -#: part/serializers.py:1950 +#: part/serializers.py:1823 msgid "Enable this option to skip invalid rows" msgstr "Habilitar esta opção para pular linhas inválidas" -#: part/serializers.py:1955 +#: part/serializers.py:1828 msgid "Copy Substitute Parts" msgstr "Copiar Peças Substitutas" -#: part/serializers.py:1956 +#: part/serializers.py:1829 msgid "Copy substitute parts when duplicate BOM items" msgstr "Copiar peças de substitutas quando duplicar itens de LDM" @@ -6927,7 +6974,7 @@ msgstr "Fornece suporte nativo para códigos de barras" #: plugin/builtin/events/auto_issue_orders.py:19 #: plugin/builtin/exporter/bom_exporter.py:73 #: plugin/builtin/exporter/inventree_exporter.py:17 -#: plugin/builtin/exporter/part_parameter_exporter.py:36 +#: plugin/builtin/exporter/parameter_exporter.py:32 #: plugin/builtin/exporter/stocktake_exporter.py:47 #: plugin/builtin/integration/core_notifications.py:25 #: plugin/builtin/integration/core_notifications.py:69 @@ -7041,23 +7088,19 @@ msgid "Include total quantity of each part in the BOM" msgstr "" #: plugin/builtin/exporter/bom_exporter.py:35 -#: plugin/builtin/exporter/part_parameter_exporter.py:17 msgid "Stock Data" msgstr "" #: plugin/builtin/exporter/bom_exporter.py:35 -#: plugin/builtin/exporter/part_parameter_exporter.py:17 msgid "Include part stock data" msgstr "" #: plugin/builtin/exporter/bom_exporter.py:39 -#: plugin/builtin/exporter/part_parameter_exporter.py:21 #: plugin/builtin/exporter/stocktake_exporter.py:20 msgid "Pricing Data" msgstr "" #: plugin/builtin/exporter/bom_exporter.py:39 -#: plugin/builtin/exporter/part_parameter_exporter.py:21 #: plugin/builtin/exporter/stocktake_exporter.py:20 msgid "Include part pricing data" msgstr "" @@ -7144,12 +7187,20 @@ msgstr "" msgid "Provides support for exporting data from InvenTree" msgstr "" -#: plugin/builtin/exporter/part_parameter_exporter.py:33 -msgid "Part Parameter Exporter" +#: plugin/builtin/exporter/parameter_exporter.py:16 +msgid "Exclude Inactive" msgstr "" -#: plugin/builtin/exporter/part_parameter_exporter.py:34 -msgid "Exporter for part parameter data" +#: plugin/builtin/exporter/parameter_exporter.py:17 +msgid "Exclude parameters which are inactive" +msgstr "" + +#: plugin/builtin/exporter/parameter_exporter.py:29 +msgid "Parameter Exporter" +msgstr "" + +#: plugin/builtin/exporter/parameter_exporter.py:30 +msgid "Exporter for model parameter data" msgstr "" #: plugin/builtin/exporter/stocktake_exporter.py:25 @@ -8079,19 +8130,19 @@ msgstr "Sem resultado (obrigatório)" msgid "No result" msgstr "Nenhum resultado" -#: report/templatetags/report.py:167 +#: report/templatetags/report.py:169 msgid "Asset file does not exist" msgstr "O arquivo não existe" -#: report/templatetags/report.py:224 report/templatetags/report.py:300 +#: report/templatetags/report.py:226 report/templatetags/report.py:302 msgid "Image file not found" msgstr "Arquivo de imagem não encontrado" -#: report/templatetags/report.py:325 +#: report/templatetags/report.py:327 msgid "part_image tag requires a Part instance" msgstr "Tag part_image necessita de uma instância de Peça" -#: report/templatetags/report.py:362 +#: report/templatetags/report.py:383 msgid "company_image tag requires a Company instance" msgstr "Tag company_image necessita de uma instância de Empresa" @@ -8455,115 +8506,119 @@ msgstr "" msgid "Quantity does not match serial numbers" msgstr "A quantidade não corresponde aos números de série" -#: stock/models.py:2012 stock/models.py:2917 +#: stock/models.py:1912 +msgid "Cannot assign stock to structural location" +msgstr "" + +#: stock/models.py:2029 stock/models.py:2934 msgid "Test template does not exist" msgstr "" -#: stock/models.py:2030 +#: stock/models.py:2047 msgid "Stock item has been assigned to a sales order" msgstr "Item em estoque foi reservado para um pedido" -#: stock/models.py:2034 +#: stock/models.py:2051 msgid "Stock item is installed in another item" msgstr "Item em estoque está instalado em outro item" -#: stock/models.py:2037 +#: stock/models.py:2054 msgid "Stock item contains other items" msgstr "item em estoque contem outro(s) items" -#: stock/models.py:2040 +#: stock/models.py:2057 msgid "Stock item has been assigned to a customer" msgstr "Item em estoque foi reservado para outro cliente" -#: stock/models.py:2043 stock/models.py:2226 +#: stock/models.py:2060 stock/models.py:2243 msgid "Stock item is currently in production" msgstr "Item no estoque está em produção no momento" -#: stock/models.py:2046 +#: stock/models.py:2063 msgid "Serialized stock cannot be merged" msgstr "Itens de série não podem ser mesclados" -#: stock/models.py:2053 stock/serializers.py:1462 +#: stock/models.py:2070 stock/serializers.py:1462 msgid "Duplicate stock items" msgstr "Item de estoque duplicado" -#: stock/models.py:2057 +#: stock/models.py:2074 msgid "Stock items must refer to the same part" msgstr "Itens de estoque devem se referir à mesma peça" -#: stock/models.py:2065 +#: stock/models.py:2082 msgid "Stock items must refer to the same supplier part" msgstr "Itens de estoque devem se referir à mesma peça do fornecedor" -#: stock/models.py:2070 +#: stock/models.py:2087 msgid "Stock status codes must match" msgstr "Códigos de estado do estoque devem corresponder" -#: stock/models.py:2349 +#: stock/models.py:2366 msgid "StockItem cannot be moved as it is not in stock" msgstr "Item do estoque não pode ser realocado se não houver estoque da mesma" -#: stock/models.py:2818 +#: stock/models.py:2835 msgid "Stock Item Tracking" msgstr "" -#: stock/models.py:2849 +#: stock/models.py:2866 msgid "Entry notes" msgstr "Observações de entrada" -#: stock/models.py:2889 +#: stock/models.py:2906 msgid "Stock Item Test Result" msgstr "" -#: stock/models.py:2920 +#: stock/models.py:2937 msgid "Value must be provided for this test" msgstr "Deve-se fornecer o valor desse teste" -#: stock/models.py:2924 +#: stock/models.py:2941 msgid "Attachment must be uploaded for this test" msgstr "O anexo deve ser enviado para este teste" -#: stock/models.py:2929 +#: stock/models.py:2946 msgid "Invalid value for this test" msgstr "" -#: stock/models.py:2953 +#: stock/models.py:2970 msgid "Test result" msgstr "Resultado do teste" -#: stock/models.py:2960 +#: stock/models.py:2977 msgid "Test output value" msgstr "Valor da saída do teste" -#: stock/models.py:2968 stock/serializers.py:248 +#: stock/models.py:2985 stock/serializers.py:248 msgid "Test result attachment" msgstr "Anexo do resultado do teste" -#: stock/models.py:2972 +#: stock/models.py:2989 msgid "Test notes" msgstr "Notas do teste" -#: stock/models.py:2980 +#: stock/models.py:2997 msgid "Test station" msgstr "" -#: stock/models.py:2981 +#: stock/models.py:2998 msgid "The identifier of the test station where the test was performed" msgstr "" -#: stock/models.py:2987 +#: stock/models.py:3004 msgid "Started" msgstr "" -#: stock/models.py:2988 +#: stock/models.py:3005 msgid "The timestamp of the test start" msgstr "" -#: stock/models.py:2994 +#: stock/models.py:3011 msgid "Finished" msgstr "" -#: stock/models.py:2995 +#: stock/models.py:3012 msgid "The timestamp of the test finish" msgstr "" @@ -8677,8 +8732,8 @@ msgstr "" msgid "Quantity must not exceed available stock quantity ({q})" msgstr "Quantidade não deve exceder a quantidade disponível em estoque ({q})" -#: stock/serializers.py:711 stock/serializers.py:1419 stock/serializers.py:1732 -#: stock/serializers.py:1781 +#: stock/serializers.py:711 stock/serializers.py:1419 stock/serializers.py:1740 +#: stock/serializers.py:1789 msgid "Destination stock location" msgstr "Local de destino do estoque" @@ -8834,19 +8889,19 @@ msgstr "" msgid "Stock transaction notes" msgstr "Notas da transação de estoque" -#: stock/serializers.py:1787 +#: stock/serializers.py:1795 msgid "Merge into existing stock" msgstr "" -#: stock/serializers.py:1788 +#: stock/serializers.py:1796 msgid "Merge returned items into existing stock items if possible" msgstr "" -#: stock/serializers.py:1831 +#: stock/serializers.py:1839 msgid "Next Serial Number" msgstr "" -#: stock/serializers.py:1837 +#: stock/serializers.py:1845 msgid "Previous Serial Number" msgstr "" @@ -8902,83 +8957,87 @@ msgstr "Estoque adicionado manualmente" msgid "Stock manually removed" msgstr "Estoque removido manualmente" -#: stock/status_codes.py:57 +#: stock/status_codes.py:56 +msgid "Serialized stock items" +msgstr "" + +#: stock/status_codes.py:58 msgid "Returned to stock" msgstr "" -#: stock/status_codes.py:60 +#: stock/status_codes.py:61 msgid "Location changed" msgstr "Local alterado" -#: stock/status_codes.py:61 +#: stock/status_codes.py:62 msgid "Stock updated" msgstr "Estoque atualizado" -#: stock/status_codes.py:64 +#: stock/status_codes.py:65 msgid "Installed into assembly" msgstr "Instalado na montagem" -#: stock/status_codes.py:65 +#: stock/status_codes.py:66 msgid "Removed from assembly" msgstr "Removido da montagem" -#: stock/status_codes.py:67 +#: stock/status_codes.py:68 msgid "Installed component item" msgstr "Instalado componente do Item" -#: stock/status_codes.py:68 +#: stock/status_codes.py:69 msgid "Removed component item" msgstr "Removido componente do Item" -#: stock/status_codes.py:71 +#: stock/status_codes.py:72 msgid "Split from parent item" msgstr "Separado do Item Paternal" -#: stock/status_codes.py:72 +#: stock/status_codes.py:73 msgid "Split child item" msgstr "Separar o Item filho" -#: stock/status_codes.py:75 +#: stock/status_codes.py:76 msgid "Merged stock items" msgstr "Itens de estoque mesclados" -#: stock/status_codes.py:78 +#: stock/status_codes.py:79 msgid "Converted to variant" msgstr "Convertido para variável" -#: stock/status_codes.py:81 +#: stock/status_codes.py:82 msgid "Build order output created" msgstr "Criação dos pedidos de produção criado" -#: stock/status_codes.py:82 +#: stock/status_codes.py:83 msgid "Build order output completed" msgstr "Criação do pedido de produção completado" -#: stock/status_codes.py:83 +#: stock/status_codes.py:84 msgid "Build order output rejected" msgstr "Saída do pedido de produção rejeitada" -#: stock/status_codes.py:84 +#: stock/status_codes.py:85 msgid "Consumed by build order" msgstr "Usado no pedido de produção" -#: stock/status_codes.py:87 +#: stock/status_codes.py:88 msgid "Shipped against Sales Order" msgstr "Enviado contra o Pedido de Venda" -#: stock/status_codes.py:90 +#: stock/status_codes.py:91 msgid "Received against Purchase Order" msgstr "Recebido referente ao Pedido de Compra" -#: stock/status_codes.py:93 +#: stock/status_codes.py:94 msgid "Returned against Return Order" msgstr "Devolvido contra Pedido de Retorno" -#: stock/status_codes.py:96 +#: stock/status_codes.py:97 msgid "Sent to customer" msgstr "Enviado ao cliente" -#: stock/status_codes.py:97 +#: stock/status_codes.py:98 msgid "Returned from customer" msgstr "Devolvido pelo cliente" diff --git a/src/backend/InvenTree/locale/pt_BR/LC_MESSAGES/django.po b/src/backend/InvenTree/locale/pt_BR/LC_MESSAGES/django.po index 76177bf7c5..a73f534a50 100644 --- a/src/backend/InvenTree/locale/pt_BR/LC_MESSAGES/django.po +++ b/src/backend/InvenTree/locale/pt_BR/LC_MESSAGES/django.po @@ -2,8 +2,8 @@ msgid "" msgstr "" "Project-Id-Version: inventree\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-11-19 04:55+0000\n" -"PO-Revision-Date: 2025-11-19 04:59\n" +"POT-Creation-Date: 2025-12-07 07:33+0000\n" +"PO-Revision-Date: 2025-12-07 07:36\n" "Last-Translator: \n" "Language-Team: Portuguese, Brazilian\n" "Language: pt_BR\n" @@ -57,7 +57,7 @@ msgstr "Nenhum dado fornecido" msgid "This field must be unique." msgstr "" -#: InvenTree/api.py:775 +#: InvenTree/api.py:803 msgid "User does not have permission to view this model" msgstr "O usuário não tem permissão para visualizar esse modelo" @@ -81,22 +81,22 @@ msgstr "O endereço de e-mail fornecido não é válido." msgid "The provided email domain is not approved." msgstr "O domínio de e-mail fornecido não foi aprovado." -#: InvenTree/conversion.py:166 +#: InvenTree/conversion.py:240 #, python-brace-format msgid "Invalid unit provided ({unit})" msgstr "Unidade fornecida inválida ({unit})" -#: InvenTree/conversion.py:183 +#: InvenTree/conversion.py:257 msgid "No value provided" msgstr "Nenhum valor fornecido" -#: InvenTree/conversion.py:210 +#: InvenTree/conversion.py:284 #, python-brace-format msgid "Could not convert {original} to {unit}" msgstr "Não foi possível converter {original} para {unit}" -#: InvenTree/conversion.py:212 InvenTree/conversion.py:226 -#: InvenTree/helpers.py:597 order/models.py:720 order/models.py:1015 +#: InvenTree/conversion.py:286 InvenTree/conversion.py:300 +#: InvenTree/helpers.py:597 order/models.py:721 order/models.py:1016 msgid "Invalid quantity provided" msgstr "Quantidade inválida" @@ -112,11 +112,11 @@ msgstr "Informe a data" msgid "Invalid decimal value" msgstr "Valor decimal inválido" -#: InvenTree/fields.py:218 InvenTree/models.py:1067 build/serializers.py:509 -#: build/serializers.py:580 build/serializers.py:1788 company/models.py:857 -#: order/models.py:1780 +#: InvenTree/fields.py:218 InvenTree/models.py:1228 build/serializers.py:517 +#: build/serializers.py:588 build/serializers.py:1796 company/models.py:811 +#: order/models.py:1781 #: report/templates/report/inventree_build_order_report.html:172 -#: stock/models.py:2848 stock/models.py:2972 stock/serializers.py:717 +#: stock/models.py:2865 stock/models.py:2989 stock/serializers.py:717 #: stock/serializers.py:893 stock/serializers.py:1035 stock/serializers.py:1336 #: stock/serializers.py:1425 stock/serializers.py:1624 msgid "Notes" @@ -171,35 +171,35 @@ msgstr "Remover as \"tags\" HTML deste valor" msgid "Data contains prohibited markdown content" msgstr "Os dados contêm conteúdo de marcação proibido" -#: InvenTree/helpers_model.py:133 +#: InvenTree/helpers_model.py:134 msgid "Connection error" msgstr "Erro de conexão" -#: InvenTree/helpers_model.py:138 InvenTree/helpers_model.py:145 +#: InvenTree/helpers_model.py:139 InvenTree/helpers_model.py:146 msgid "Server responded with invalid status code" msgstr "O servidor respondeu com código de estado inválido" -#: InvenTree/helpers_model.py:141 +#: InvenTree/helpers_model.py:142 msgid "Exception occurred" msgstr "Ocorreu uma exceção" -#: InvenTree/helpers_model.py:151 +#: InvenTree/helpers_model.py:152 msgid "Server responded with invalid Content-Length value" msgstr "O servidor respondeu com valor inválido do tamanho de conteúdo" -#: InvenTree/helpers_model.py:154 +#: InvenTree/helpers_model.py:155 msgid "Image size is too large" msgstr "" -#: InvenTree/helpers_model.py:166 +#: InvenTree/helpers_model.py:167 msgid "Image download exceeded maximum size" msgstr "O download da imagem excedeu seu tamanho máximo" -#: InvenTree/helpers_model.py:171 +#: InvenTree/helpers_model.py:172 msgid "Remote server returned empty response" msgstr "O servidor remoto retornou uma resposta vazia" -#: InvenTree/helpers_model.py:179 +#: InvenTree/helpers_model.py:180 msgid "Supplied URL is not a valid image file" msgstr "A URL fornecida não é um arquivo de imagem válido" @@ -207,7 +207,7 @@ msgstr "A URL fornecida não é um arquivo de imagem válido" msgid "Log in to the app" msgstr "Entrar no aplicativo" -#: InvenTree/magic_login.py:41 company/models.py:172 users/serializers.py:198 +#: InvenTree/magic_login.py:41 company/models.py:173 users/serializers.py:198 msgid "Email" msgstr "E-mail" @@ -215,160 +215,176 @@ msgstr "E-mail" msgid "You must enable two-factor authentication before doing anything else." msgstr "Você deve habilitar a autenticação de dois fatores antes de fazer qualquer coisa." -#: InvenTree/models.py:111 +#: InvenTree/models.py:114 msgid "Error running plugin validation" msgstr "" -#: InvenTree/models.py:192 +#: InvenTree/models.py:195 msgid "Metadata must be a python dict object" msgstr "Metadados deve ser um objeto dict python" -#: InvenTree/models.py:198 +#: InvenTree/models.py:201 msgid "Plugin Metadata" msgstr "Plugin de Metadados" -#: InvenTree/models.py:199 +#: InvenTree/models.py:202 msgid "JSON metadata field, for use by external plugins" msgstr "Campo de metadados JSON, para uso de plugins externos" -#: InvenTree/models.py:382 +#: InvenTree/models.py:385 msgid "Improperly formatted pattern" msgstr "Padrão formatado incorretamente" -#: InvenTree/models.py:389 +#: InvenTree/models.py:392 msgid "Unknown format key specified" msgstr "Chave de formato desconhecida especificada" -#: InvenTree/models.py:395 +#: InvenTree/models.py:398 msgid "Missing required format key" msgstr "Chave de formato obrigatório ausente" -#: InvenTree/models.py:406 +#: InvenTree/models.py:409 msgid "Reference field cannot be empty" msgstr "O campo de referência não deve ficar vazio" -#: InvenTree/models.py:414 +#: InvenTree/models.py:417 msgid "Reference must match required pattern" msgstr "A referência deve corresponder ao padrão exigido" -#: InvenTree/models.py:445 +#: InvenTree/models.py:448 msgid "Reference number is too large" msgstr "O número de referência é muito longo" -#: InvenTree/models.py:743 +#: InvenTree/models.py:896 msgid "Invalid choice" msgstr "Escolha inválida" -#: InvenTree/models.py:856 common/models.py:1410 common/models.py:1837 -#: common/models.py:2096 common/models.py:2221 common/serializers.py:535 -#: company/models.py:615 generic/states/serializers.py:20 machine/models.py:25 -#: part/models.py:1039 part/models.py:3850 plugin/models.py:54 +#: InvenTree/models.py:1017 common/models.py:1414 common/models.py:1841 +#: common/models.py:2102 common/models.py:2227 common/models.py:2494 +#: common/serializers.py:539 generic/states/serializers.py:20 +#: machine/models.py:25 part/models.py:1127 plugin/models.py:54 #: report/models.py:216 stock/models.py:84 msgid "Name" msgstr "Nome" -#: InvenTree/models.py:862 build/models.py:252 common/models.py:171 -#: common/models.py:2228 common/models.py:2341 company/models.py:543 -#: company/models.py:848 order/models.py:442 order/models.py:1825 -#: part/models.py:1062 part/models.py:3865 report/models.py:222 +#: InvenTree/models.py:1023 build/models.py:253 common/models.py:175 +#: common/models.py:2234 common/models.py:2347 common/models.py:2509 +#: company/models.py:545 company/models.py:802 order/models.py:443 +#: order/models.py:1826 part/models.py:1150 report/models.py:222 #: report/models.py:815 report/models.py:841 #: report/templates/report/inventree_build_order_report.html:117 #: stock/models.py:90 msgid "Description" msgstr "Descrição" -#: InvenTree/models.py:863 stock/models.py:91 +#: InvenTree/models.py:1024 stock/models.py:91 msgid "Description (optional)" msgstr "Descrição (opcional)" -#: InvenTree/models.py:878 common/models.py:2394 +#: InvenTree/models.py:1039 common/models.py:2815 msgid "Path" msgstr "Caminho" -#: InvenTree/models.py:983 +#: InvenTree/models.py:1144 msgid "Duplicate names cannot exist under the same parent" msgstr "Nomes duplicados não podem existir sob o mesmo parental" -#: InvenTree/models.py:1067 +#: InvenTree/models.py:1228 msgid "Markdown notes (optional)" msgstr "Notas Markdown (opcional)" -#: InvenTree/models.py:1098 +#: InvenTree/models.py:1259 msgid "Barcode Data" msgstr "Dados de código de barras" -#: InvenTree/models.py:1099 +#: InvenTree/models.py:1260 msgid "Third party barcode data" msgstr "Dados de código de barras de terceiros" -#: InvenTree/models.py:1105 +#: InvenTree/models.py:1266 msgid "Barcode Hash" msgstr "Hash de código de barras" -#: InvenTree/models.py:1106 +#: InvenTree/models.py:1267 msgid "Unique hash of barcode data" msgstr "Hash exclusivo de dados de código de barras" -#: InvenTree/models.py:1187 +#: InvenTree/models.py:1348 msgid "Existing barcode found" msgstr "Código de barras existente encontrado" -#: InvenTree/models.py:1269 +#: InvenTree/models.py:1430 msgid "Task Failure" msgstr "Falha na Tarefa" -#: InvenTree/models.py:1270 +#: InvenTree/models.py:1431 #, python-brace-format msgid "Background worker task '{f}' failed after {n} attempts" msgstr "Falha na tarefa de trabalho '{f}' em segundo plano após tentativas {n}" -#: InvenTree/models.py:1297 +#: InvenTree/models.py:1458 msgid "Server Error" msgstr "Erro de servidor" -#: InvenTree/models.py:1298 +#: InvenTree/models.py:1459 msgid "An error has been logged by the server." msgstr "Um erro foi registrado pelo servidor." -#: InvenTree/models.py:1340 common/models.py:1748 +#: InvenTree/models.py:1501 common/models.py:1752 #: report/templates/report/inventree_bill_of_materials_report.html:126 #: report/templates/report/inventree_bill_of_materials_report.html:148 #: report/templates/report/inventree_return_order_report.html:35 msgid "Image" msgstr "Imagem" -#: InvenTree/serializers.py:253 part/models.py:4571 +#: InvenTree/serializers.py:255 part/models.py:4196 msgid "Must be a valid number" msgstr "Deve ser um número válido" -#: InvenTree/serializers.py:295 company/models.py:214 part/models.py:3285 +#: InvenTree/serializers.py:297 company/models.py:215 part/models.py:3349 msgid "Currency" msgstr "Moeda" -#: InvenTree/serializers.py:298 part/serializers.py:1385 +#: InvenTree/serializers.py:300 part/serializers.py:1250 msgid "Select currency from available options" msgstr "Selecione a moeda entre as opções disponíveis" -#: InvenTree/serializers.py:653 +#: InvenTree/serializers.py:654 +msgid "This field may not be null." +msgstr "" + +#: InvenTree/serializers.py:660 msgid "Invalid value" msgstr "Valor inválido" -#: InvenTree/serializers.py:690 +#: InvenTree/serializers.py:697 msgid "Remote Image" msgstr "Imagem remota" -#: InvenTree/serializers.py:691 +#: InvenTree/serializers.py:698 msgid "URL of remote image file" msgstr "URL do arquivo da imagem remota" -#: InvenTree/serializers.py:709 +#: InvenTree/serializers.py:716 msgid "Downloading images from remote URL is not enabled" msgstr "Baixar imagens de URL remota não está habilitado" -#: InvenTree/serializers.py:716 +#: InvenTree/serializers.py:723 msgid "Failed to download image from remote URL" msgstr "Falha ao baixar a imagem da URL remota" +#: InvenTree/serializers.py:806 +msgid "Invalid content type format" +msgstr "" + +#: InvenTree/serializers.py:809 +msgid "Content type not found" +msgstr "" + +#: InvenTree/serializers.py:815 +msgid "Content type does not match required mixin class" +msgstr "" + #: InvenTree/setting/locales.py:20 msgid "Arabic" msgstr "Árabe" @@ -537,30 +553,30 @@ msgstr "Unidade física inválida" msgid "Not a valid currency code" msgstr "O código de moeda não é válido" -#: build/api.py:54 order/api.py:111 order/api.py:270 order/api.py:1373 -#: order/serializers.py:132 +#: build/api.py:54 order/api.py:116 order/api.py:275 order/api.py:1378 +#: order/serializers.py:133 msgid "Order Status" msgstr "Situação de pedido" -#: build/api.py:80 build/models.py:264 +#: build/api.py:80 build/models.py:265 msgid "Parent Build" msgstr "Produção Progenitora" -#: build/api.py:84 build/api.py:831 order/api.py:547 order/api.py:770 -#: order/api.py:1174 order/api.py:1449 stock/api.py:573 +#: build/api.py:84 build/api.py:837 order/api.py:553 order/api.py:776 +#: order/api.py:1179 order/api.py:1454 stock/api.py:573 msgid "Include Variants" msgstr "Incluir Variáveis" -#: build/api.py:100 build/api.py:466 build/api.py:845 build/models.py:270 -#: build/serializers.py:1225 build/serializers.py:1356 -#: build/serializers.py:1427 company/models.py:1067 company/serializers.py:445 -#: order/api.py:298 order/api.py:302 order/api.py:929 order/api.py:1187 -#: order/api.py:1190 order/models.py:1941 order/models.py:2108 -#: order/models.py:2109 part/api.py:1233 part/api.py:1236 part/api.py:1302 -#: part/api.py:1589 part/models.py:472 part/models.py:3296 part/models.py:3439 -#: part/models.py:3497 part/models.py:3518 part/models.py:3540 -#: part/models.py:3679 part/models.py:4046 part/models.py:4368 -#: part/models.py:4787 part/serializers.py:1928 +#: build/api.py:100 build/api.py:472 build/api.py:851 build/models.py:271 +#: build/serializers.py:1233 build/serializers.py:1364 +#: build/serializers.py:1435 company/models.py:1021 company/serializers.py:490 +#: order/api.py:303 order/api.py:307 order/api.py:934 order/api.py:1192 +#: order/api.py:1195 order/models.py:1942 order/models.py:2109 +#: order/models.py:2110 part/api.py:1160 part/api.py:1163 part/api.py:1314 +#: part/models.py:550 part/models.py:3360 part/models.py:3503 +#: part/models.py:3561 part/models.py:3582 part/models.py:3604 +#: part/models.py:3743 part/models.py:3993 part/models.py:4412 +#: part/serializers.py:1801 #: report/templates/report/inventree_bill_of_materials_report.html:110 #: report/templates/report/inventree_bill_of_materials_report.html:137 #: report/templates/report/inventree_build_order_report.html:109 @@ -580,9 +596,9 @@ msgstr "Incluir Variáveis" msgid "Part" msgstr "Parte" -#: build/api.py:120 build/api.py:123 build/serializers.py:1438 part/api.py:980 -#: part/api.py:1316 part/api.py:1600 part/models.py:1080 part/models.py:3568 -#: part/models.py:4162 part/serializers.py:1752 stock/api.py:869 +#: build/api.py:120 build/api.py:123 build/serializers.py:1446 part/api.py:975 +#: part/api.py:1325 part/models.py:435 part/models.py:1168 part/models.py:3632 +#: part/serializers.py:1617 stock/api.py:869 msgid "Category" msgstr "Categoria" @@ -590,7 +606,7 @@ msgstr "Categoria" msgid "Ancestor Build" msgstr "Construção de Ancestrais" -#: build/api.py:152 order/api.py:129 +#: build/api.py:152 order/api.py:134 msgid "Assigned to me" msgstr "Atribuído a mim" @@ -638,134 +654,134 @@ msgstr "Concluído antes" msgid "Completed after" msgstr "Concluído após" -#: build/api.py:249 order/api.py:226 +#: build/api.py:249 order/api.py:231 msgid "Min Date" msgstr "Data Mínima" -#: build/api.py:272 order/api.py:245 +#: build/api.py:272 order/api.py:250 msgid "Max Date" msgstr "Data máxima" -#: build/api.py:297 build/api.py:300 part/api.py:217 stock/api.py:961 +#: build/api.py:297 build/api.py:300 part/api.py:212 stock/api.py:961 msgid "Exclude Tree" msgstr "Excluir árvore" -#: build/api.py:405 +#: build/api.py:411 msgid "Build must be cancelled before it can be deleted" msgstr "A compilação deve ser cancelada antes de ser excluída" -#: build/api.py:449 build/serializers.py:1374 part/models.py:4402 +#: build/api.py:455 build/serializers.py:1382 part/models.py:4027 msgid "Consumable" msgstr "Consumível" -#: build/api.py:452 build/serializers.py:1377 part/models.py:4396 +#: build/api.py:458 build/serializers.py:1385 part/models.py:4021 msgid "Optional" msgstr "Opcional" -#: build/api.py:455 build/serializers.py:1415 common/setting/system.py:456 -#: part/models.py:1202 part/serializers.py:1714 part/serializers.py:1725 +#: build/api.py:461 build/serializers.py:1423 common/setting/system.py:456 +#: part/models.py:1290 part/serializers.py:1579 part/serializers.py:1590 #: stock/api.py:639 msgid "Assembly" msgstr "Montagem" -#: build/api.py:458 +#: build/api.py:464 msgid "Tracked" msgstr "Rastreado" -#: build/api.py:461 build/serializers.py:1380 part/models.py:1220 +#: build/api.py:467 build/serializers.py:1388 part/models.py:1308 msgid "Testable" msgstr "Testável" -#: build/api.py:471 order/api.py:993 order/api.py:1363 +#: build/api.py:477 order/api.py:998 order/api.py:1368 msgid "Order Outstanding" msgstr "Pedido pendente" -#: build/api.py:481 build/serializers.py:1464 order/api.py:952 +#: build/api.py:487 build/serializers.py:1472 order/api.py:957 msgid "Allocated" msgstr "Alocado" -#: build/api.py:490 build/models.py:1672 build/serializers.py:1393 +#: build/api.py:496 build/models.py:1673 build/serializers.py:1401 msgid "Consumed" msgstr "" -#: build/api.py:499 company/models.py:912 company/serializers.py:440 +#: build/api.py:505 company/models.py:866 company/serializers.py:467 #: templates/email/build_order_required_stock.html:19 #: templates/email/low_stock_notification.html:17 #: templates/email/part_event_notification.html:18 msgid "Available" msgstr "Disponível" -#: build/api.py:523 build/serializers.py:1466 company/serializers.py:437 -#: order/serializers.py:1281 part/serializers.py:959 part/serializers.py:1306 -#: part/serializers.py:1761 +#: build/api.py:529 build/serializers.py:1474 company/serializers.py:464 +#: order/serializers.py:1295 part/serializers.py:844 part/serializers.py:1171 +#: part/serializers.py:1626 msgid "On Order" msgstr "Em pedido" -#: build/api.py:868 build/models.py:117 order/models.py:1974 +#: build/api.py:874 build/models.py:118 order/models.py:1975 #: report/templates/report/inventree_build_order_report.html:105 #: stock/serializers.py:93 templates/email/build_order_completed.html:16 #: templates/email/overdue_build_order.html:15 msgid "Build Order" msgstr "Ordem da compilação" -#: build/api.py:882 build/api.py:886 build/serializers.py:372 -#: build/serializers.py:497 build/serializers.py:567 build/serializers.py:1251 -#: build/serializers.py:1256 order/api.py:1234 order/api.py:1239 -#: order/serializers.py:833 order/serializers.py:973 order/serializers.py:2042 +#: build/api.py:888 build/api.py:892 build/serializers.py:380 +#: build/serializers.py:505 build/serializers.py:575 build/serializers.py:1259 +#: build/serializers.py:1264 order/api.py:1239 order/api.py:1244 +#: order/serializers.py:844 order/serializers.py:984 order/serializers.py:2059 #: stock/api.py:987 stock/serializers.py:111 stock/serializers.py:601 #: stock/serializers.py:710 stock/serializers.py:888 stock/serializers.py:1418 -#: stock/serializers.py:1731 stock/serializers.py:1780 +#: stock/serializers.py:1739 stock/serializers.py:1788 #: templates/email/stale_stock_notification.html:18 users/models.py:549 msgid "Location" msgstr "Local" -#: build/api.py:894 +#: build/api.py:900 msgid "Output" msgstr "" -#: build/api.py:896 +#: build/api.py:902 msgid "Filter by output stock item ID. Use 'null' to find uninstalled build items." msgstr "" -#: build/models.py:118 users/ruleset.py:31 +#: build/models.py:119 users/ruleset.py:31 msgid "Build Orders" msgstr "Ordens de Produções" -#: build/models.py:168 +#: build/models.py:169 msgid "Assembly BOM has not been validated" msgstr "O BOM da montagem não foi validado" -#: build/models.py:175 +#: build/models.py:176 msgid "Build order cannot be created for an inactive part" msgstr "Ordem de compilação não pode ser criada para uma parte inativa" -#: build/models.py:182 +#: build/models.py:183 msgid "Build order cannot be created for an unlocked part" msgstr "Ordem de compilação não pode ser criado para uma parte desbloqueada" -#: build/models.py:200 +#: build/models.py:201 msgid "Build orders can only be externally fulfilled for purchaseable parts" msgstr "Criar ordens só pode ser realizado externamente para partes compráveis" -#: build/models.py:207 order/models.py:369 +#: build/models.py:208 order/models.py:370 msgid "Responsible user or group must be specified" msgstr "Usuário ou grupo responsável deve ser especificado" -#: build/models.py:212 +#: build/models.py:213 msgid "Build order part cannot be changed" msgstr "Parte do pedido de compilação não pode ser alterada" -#: build/models.py:217 order/models.py:382 +#: build/models.py:218 order/models.py:383 msgid "Target date must be after start date" msgstr "A data limite deve ser posterior à data inicial" -#: build/models.py:245 +#: build/models.py:246 msgid "Build Order Reference" msgstr "Referência do pedido de produção" -#: build/models.py:246 build/serializers.py:1371 order/models.py:614 -#: order/models.py:1311 order/models.py:1773 order/models.py:2712 -#: part/models.py:4442 +#: build/models.py:247 build/serializers.py:1379 order/models.py:615 +#: order/models.py:1312 order/models.py:1774 order/models.py:2713 +#: part/models.py:4067 #: report/templates/report/inventree_bill_of_materials_report.html:139 #: report/templates/report/inventree_purchase_order_report.html:35 #: report/templates/report/inventree_return_order_report.html:26 @@ -773,230 +789,230 @@ msgstr "Referência do pedido de produção" msgid "Reference" msgstr "Referência" -#: build/models.py:255 +#: build/models.py:256 msgid "Brief description of the build (optional)" msgstr "Breve descrição da produção (opcional)" -#: build/models.py:265 +#: build/models.py:266 msgid "BuildOrder to which this build is allocated" msgstr "Ordem de produção para qual este serviço está alocado" -#: build/models.py:274 +#: build/models.py:275 msgid "Select part to build" msgstr "Selecione a peça para construir" -#: build/models.py:279 +#: build/models.py:280 msgid "Sales Order Reference" msgstr "Referência do pedido de venda" -#: build/models.py:284 +#: build/models.py:285 msgid "SalesOrder to which this build is allocated" msgstr "Ordem de Venda para qual esta produção está alocada" -#: build/models.py:289 build/serializers.py:1097 +#: build/models.py:290 build/serializers.py:1105 msgid "Source Location" msgstr "Local de Origem" -#: build/models.py:295 +#: build/models.py:296 msgid "Select location to take stock from for this build (leave blank to take from any stock location)" msgstr "Selecione o local para fazer estoque para esta compilação (deixe em branco para tirar a partir de qualquer local de estoque)" -#: build/models.py:301 +#: build/models.py:302 msgid "External Build" msgstr "Produção Externa" -#: build/models.py:302 +#: build/models.py:303 msgid "This build order is fulfilled externally" msgstr "Esta ordem de compilação é atendida externamente" -#: build/models.py:307 +#: build/models.py:308 msgid "Destination Location" msgstr "Local de Destino" -#: build/models.py:312 +#: build/models.py:313 msgid "Select location where the completed items will be stored" msgstr "Selecione o local onde os itens concluídos serão armazenados" -#: build/models.py:316 +#: build/models.py:317 msgid "Build Quantity" msgstr "Quantidade de Produção" -#: build/models.py:319 +#: build/models.py:320 msgid "Number of stock items to build" msgstr "Número de itens em estoque para produzir" -#: build/models.py:323 +#: build/models.py:324 msgid "Completed items" msgstr "Itens concluídos" -#: build/models.py:325 +#: build/models.py:326 msgid "Number of stock items which have been completed" msgstr "Número de itens em estoque concluídos" -#: build/models.py:329 +#: build/models.py:330 msgid "Build Status" msgstr "Progresso da produção" -#: build/models.py:334 +#: build/models.py:335 msgid "Build status code" msgstr "Código de situação da produção" -#: build/models.py:343 build/serializers.py:359 order/serializers.py:849 +#: build/models.py:344 build/serializers.py:367 order/serializers.py:860 #: stock/models.py:1100 stock/serializers.py:85 stock/serializers.py:1591 msgid "Batch Code" msgstr "Código do lote" -#: build/models.py:347 build/serializers.py:360 +#: build/models.py:348 build/serializers.py:368 msgid "Batch code for this build output" msgstr "Código do lote para esta saída de produção" -#: build/models.py:351 order/models.py:479 order/serializers.py:186 -#: part/models.py:1283 +#: build/models.py:352 order/models.py:480 order/serializers.py:193 +#: part/models.py:1371 msgid "Creation Date" msgstr "Criado em" -#: build/models.py:357 +#: build/models.py:358 msgid "Build start date" msgstr "Data inicial da produção" -#: build/models.py:358 +#: build/models.py:359 msgid "Scheduled start date for this build order" msgstr "Data de início agendada para esta ordem de produção" -#: build/models.py:364 +#: build/models.py:365 msgid "Target completion date" msgstr "Data alvo final" -#: build/models.py:366 +#: build/models.py:367 msgid "Target date for build completion. Build will be overdue after this date." msgstr "Data limite para finalização de produção. Estará atrasado a partir deste dia." -#: build/models.py:371 order/models.py:667 order/models.py:2751 +#: build/models.py:372 order/models.py:668 order/models.py:2752 msgid "Completion Date" msgstr "Data de conclusão" -#: build/models.py:379 +#: build/models.py:380 msgid "completed by" msgstr "concluído por" -#: build/models.py:388 +#: build/models.py:389 msgid "Issued by" msgstr "Emitido por" -#: build/models.py:389 +#: build/models.py:390 msgid "User who issued this build order" msgstr "Usuário que emitiu esta ordem de produção" -#: build/models.py:398 common/models.py:180 order/api.py:179 -#: order/models.py:504 part/models.py:1300 +#: build/models.py:399 common/models.py:184 order/api.py:184 +#: order/models.py:505 part/models.py:1388 #: report/templates/report/inventree_build_order_report.html:158 msgid "Responsible" msgstr "Responsável" -#: build/models.py:399 +#: build/models.py:400 msgid "User or group responsible for this build order" msgstr "Usuário ou grupo responsável para esta ordem de produção" -#: build/models.py:404 stock/models.py:1093 +#: build/models.py:405 stock/models.py:1093 msgid "External Link" msgstr "Link Externo" -#: build/models.py:406 common/models.py:1984 part/models.py:1114 +#: build/models.py:407 common/models.py:1990 part/models.py:1202 #: stock/models.py:1095 msgid "Link to external URL" msgstr "Link para URL externa" -#: build/models.py:411 +#: build/models.py:412 msgid "Build Priority" msgstr "Prioridade de Produção" -#: build/models.py:414 +#: build/models.py:415 msgid "Priority of this build order" msgstr "Prioridade desta ordem de compilação" -#: build/models.py:422 common/models.py:150 common/models.py:164 -#: order/api.py:165 order/models.py:451 order/models.py:1805 +#: build/models.py:423 common/models.py:154 common/models.py:168 +#: order/api.py:170 order/models.py:452 order/models.py:1806 msgid "Project Code" msgstr "Código do Projeto" -#: build/models.py:423 +#: build/models.py:424 msgid "Project code for this build order" msgstr "Código do projeto para esta ordem de compilação" -#: build/models.py:676 +#: build/models.py:677 msgid "Cannot complete build order with open child builds" msgstr "Não é possível concluir o pedido de produção com pedidos secundários abertos" -#: build/models.py:681 +#: build/models.py:682 msgid "Cannot complete build order with incomplete outputs" msgstr "Não é possível concluir o pedido com saídas incompletas" -#: build/models.py:700 build/models.py:830 +#: build/models.py:701 build/models.py:831 msgid "Failed to offload task to complete build allocations" msgstr "Falha ao descarregar tarefa para concluir alocações de compilação" -#: build/models.py:723 +#: build/models.py:724 #, python-brace-format msgid "Build order {build} has been completed" msgstr "O Pedido de produção {build} foi concluído" -#: build/models.py:729 +#: build/models.py:730 msgid "A build order has been completed" msgstr "Um pedido de produção foi concluído" -#: build/models.py:911 build/serializers.py:407 +#: build/models.py:912 build/serializers.py:415 msgid "Serial numbers must be provided for trackable parts" msgstr "Números de série devem ser fornecidos para peças rastreáveis" -#: build/models.py:1042 build/models.py:1129 +#: build/models.py:1043 build/models.py:1130 msgid "No build output specified" msgstr "Nenhuma saída de produção especificada" -#: build/models.py:1045 +#: build/models.py:1046 msgid "Build output is already completed" msgstr "Saída da produção já está concluída" -#: build/models.py:1048 +#: build/models.py:1049 msgid "Build output does not match Build Order" msgstr "Saída da produção não corresponde à Ordem de Produção" -#: build/models.py:1136 build/models.py:1234 build/serializers.py:285 -#: build/serializers.py:335 build/serializers.py:965 build/serializers.py:1739 -#: order/models.py:717 order/serializers.py:658 order/serializers.py:844 -#: part/serializers.py:1708 stock/models.py:940 stock/models.py:1430 +#: build/models.py:1137 build/models.py:1235 build/serializers.py:293 +#: build/serializers.py:343 build/serializers.py:973 build/serializers.py:1747 +#: order/models.py:718 order/serializers.py:669 order/serializers.py:855 +#: part/serializers.py:1573 stock/models.py:940 stock/models.py:1430 #: stock/models.py:1878 stock/serializers.py:688 stock/serializers.py:1580 msgid "Quantity must be greater than zero" msgstr "Quantidade deve ser maior que zero" -#: build/models.py:1140 build/models.py:1239 build/serializers.py:290 +#: build/models.py:1141 build/models.py:1240 build/serializers.py:298 msgid "Quantity cannot be greater than the output quantity" msgstr "A quantidade não pode ser maior que a quantidade de saída" -#: build/models.py:1214 build/serializers.py:606 +#: build/models.py:1215 build/serializers.py:614 msgid "Build output has not passed all required tests" msgstr "A saída da produção não passou em todos os testes necessários" -#: build/models.py:1217 build/serializers.py:601 +#: build/models.py:1218 build/serializers.py:609 #, python-brace-format msgid "Build output {serial} has not passed all required tests" msgstr "A saída da produção {serial} não passou em todos os testes necessários" -#: build/models.py:1229 +#: build/models.py:1230 msgid "Cannot partially complete a build output with allocated items" msgstr "" -#: build/models.py:1627 +#: build/models.py:1628 msgid "Build Order Line Item" msgstr "Item da ordem de produção" -#: build/models.py:1651 +#: build/models.py:1652 msgid "Build object" msgstr "Compilar objeto" -#: build/models.py:1663 build/models.py:1974 build/serializers.py:271 -#: build/serializers.py:320 build/serializers.py:1392 common/models.py:1340 -#: order/models.py:1756 order/models.py:2597 order/serializers.py:1696 -#: order/serializers.py:2124 part/models.py:3453 part/models.py:4390 +#: build/models.py:1664 build/models.py:1975 build/serializers.py:279 +#: build/serializers.py:328 build/serializers.py:1400 common/models.py:1344 +#: order/models.py:1757 order/models.py:2598 order/serializers.py:1710 +#: order/serializers.py:2141 part/models.py:3517 part/models.py:4015 #: report/templates/report/inventree_bill_of_materials_report.html:138 #: report/templates/report/inventree_build_order_report.html:113 #: report/templates/report/inventree_purchase_order_report.html:36 @@ -1014,427 +1030,427 @@ msgstr "Compilar objeto" msgid "Quantity" msgstr "Quantidade" -#: build/models.py:1664 +#: build/models.py:1665 msgid "Required quantity for build order" msgstr "Quantidade necessária para o pedido de produção" -#: build/models.py:1673 +#: build/models.py:1674 msgid "Quantity of consumed stock" msgstr "" -#: build/models.py:1772 +#: build/models.py:1773 msgid "Build item must specify a build output, as master part is marked as trackable" msgstr "Item de produção deve especificar a saída, pois peças mestres estão marcadas como rastreáveis" -#: build/models.py:1783 +#: build/models.py:1784 #, python-brace-format msgid "Allocated quantity ({q}) must not exceed available stock quantity ({a})" msgstr "Quantidade alocada ({q}) não deve exceder a quantidade disponível em estoque ({a})" -#: build/models.py:1804 order/models.py:2546 +#: build/models.py:1805 order/models.py:2547 msgid "Stock item is over-allocated" msgstr "O item do estoque está sobre-alocado" -#: build/models.py:1809 order/models.py:2549 +#: build/models.py:1810 order/models.py:2550 msgid "Allocation quantity must be greater than zero" msgstr "Quantidade alocada deve ser maior que zero" -#: build/models.py:1815 +#: build/models.py:1816 msgid "Quantity must be 1 for serialized stock" msgstr "Quantidade deve ser 1 para estoque serializado" -#: build/models.py:1875 +#: build/models.py:1876 msgid "Selected stock item does not match BOM line" msgstr "O item de estoque selecionado não coincide com linha da BOM" -#: build/models.py:1913 +#: build/models.py:1914 msgid "Allocated quantity exceeds available stock quantity" msgstr "" -#: build/models.py:1964 build/serializers.py:948 build/serializers.py:1240 -#: order/serializers.py:1533 order/serializers.py:1554 +#: build/models.py:1965 build/serializers.py:956 build/serializers.py:1248 +#: order/serializers.py:1547 order/serializers.py:1568 #: report/templates/report/inventree_sales_order_shipment_report.html:29 #: stock/api.py:1404 stock/models.py:456 stock/serializers.py:102 #: stock/serializers.py:800 stock/serializers.py:1274 stock/serializers.py:1386 msgid "Stock Item" msgstr "Item de Estoque" -#: build/models.py:1965 +#: build/models.py:1966 msgid "Source stock item" msgstr "Origem do item em estoque" -#: build/models.py:1975 +#: build/models.py:1976 msgid "Stock quantity to allocate to build" msgstr "Quantidade do estoque para alocar à produção" -#: build/models.py:1984 +#: build/models.py:1985 msgid "Install into" msgstr "Instalar em" -#: build/models.py:1985 +#: build/models.py:1986 msgid "Destination stock item" msgstr "Destino do Item do Estoque" -#: build/serializers.py:118 +#: build/serializers.py:120 msgid "Build Level" msgstr "Nível de produção" -#: build/serializers.py:128 +#: build/serializers.py:136 msgid "Part Name" msgstr "Nome da Peça" -#: build/serializers.py:153 +#: build/serializers.py:161 msgid "Project Code Label" msgstr "Rótulo de código do projeto" -#: build/serializers.py:219 build/serializers.py:974 +#: build/serializers.py:227 build/serializers.py:982 msgid "Build Output" msgstr "Saída da Produção" -#: build/serializers.py:231 +#: build/serializers.py:239 msgid "Build output does not match the parent build" msgstr "Saída de produção não coincide com a produção progenitora" -#: build/serializers.py:235 +#: build/serializers.py:243 msgid "Output part does not match BuildOrder part" msgstr "Peça de saída não coincide com a peça da ordem de produção" -#: build/serializers.py:239 +#: build/serializers.py:247 msgid "This build output has already been completed" msgstr "Esta saída de produção já foi concluída" -#: build/serializers.py:253 +#: build/serializers.py:261 msgid "This build output is not fully allocated" msgstr "Esta saída de produção não está totalmente alocada" -#: build/serializers.py:272 build/serializers.py:321 +#: build/serializers.py:280 build/serializers.py:329 msgid "Enter quantity for build output" msgstr "Insira a quantidade para construir a saída de produção" -#: build/serializers.py:343 +#: build/serializers.py:351 msgid "Integer quantity required for trackable parts" msgstr "Quantidade inteira necessária para peças rastreáveis" -#: build/serializers.py:349 +#: build/serializers.py:357 msgid "Integer quantity required, as the bill of materials contains trackable parts" msgstr "Quantidade inteira necessária, pois a lista de materiais contém peças rastreáveis" -#: build/serializers.py:366 order/serializers.py:865 order/serializers.py:1700 +#: build/serializers.py:374 order/serializers.py:876 order/serializers.py:1714 #: stock/serializers.py:699 msgid "Serial Numbers" msgstr "Números de Série" -#: build/serializers.py:367 +#: build/serializers.py:375 msgid "Enter serial numbers for build outputs" msgstr "Digite os números de série para saídas de produção" -#: build/serializers.py:373 +#: build/serializers.py:381 msgid "Stock location for build output" msgstr "Local de estoque para saídas de produção" -#: build/serializers.py:388 +#: build/serializers.py:396 msgid "Auto Allocate Serial Numbers" msgstr "Alocar Números de Série Automaticamente" -#: build/serializers.py:390 +#: build/serializers.py:398 msgid "Automatically allocate required items with matching serial numbers" msgstr "Alocar automaticamente os itens necessários com os números de série correspondentes" -#: build/serializers.py:423 order/serializers.py:951 stock/api.py:1183 +#: build/serializers.py:431 order/serializers.py:962 stock/api.py:1183 #: stock/models.py:1901 msgid "The following serial numbers already exist or are invalid" msgstr "Os seguintes números de série já existem ou são inválidos" -#: build/serializers.py:465 build/serializers.py:521 build/serializers.py:613 +#: build/serializers.py:473 build/serializers.py:529 build/serializers.py:621 msgid "A list of build outputs must be provided" msgstr "Uma lista de saídas de produção deve ser fornecida" -#: build/serializers.py:498 +#: build/serializers.py:506 msgid "Stock location for scrapped outputs" msgstr "Local de estoque para saídas eliminadas" -#: build/serializers.py:504 +#: build/serializers.py:512 msgid "Discard Allocations" msgstr "Descartar alocações" -#: build/serializers.py:505 +#: build/serializers.py:513 msgid "Discard any stock allocations for scrapped outputs" msgstr "Descartar quaisquer alocações de estoque para saídas eliminadas" -#: build/serializers.py:510 +#: build/serializers.py:518 msgid "Reason for scrapping build output(s)" msgstr "Motivo para eliminar saída(s) de produção" -#: build/serializers.py:568 +#: build/serializers.py:576 msgid "Location for completed build outputs" msgstr "Local para saídas de produção concluídas" -#: build/serializers.py:576 +#: build/serializers.py:584 msgid "Accept Incomplete Allocation" msgstr "Aceitar Alocação Incompleta" -#: build/serializers.py:577 +#: build/serializers.py:585 msgid "Complete outputs if stock has not been fully allocated" msgstr "Concluir saídas se o estoque não tiver sido totalmente alocado" -#: build/serializers.py:702 +#: build/serializers.py:710 msgid "Consume Allocated Stock" msgstr "Consumir Estoque Alocado" -#: build/serializers.py:703 +#: build/serializers.py:711 msgid "Consume any stock which has already been allocated to this build" msgstr "Consumir qualquer estoque que já tenha sido alocado para esta produção" -#: build/serializers.py:709 +#: build/serializers.py:717 msgid "Remove Incomplete Outputs" msgstr "Remover Saídas Incompletas" -#: build/serializers.py:710 +#: build/serializers.py:718 msgid "Delete any build outputs which have not been completed" msgstr "Excluir quaisquer saídas de produção que não tenham sido completadas" -#: build/serializers.py:737 +#: build/serializers.py:745 msgid "Not permitted" msgstr "Não permitido" -#: build/serializers.py:738 +#: build/serializers.py:746 msgid "Accept as consumed by this build order" msgstr "Aceitar conforme consumido por esta ordem de produção" -#: build/serializers.py:739 +#: build/serializers.py:747 msgid "Deallocate before completing this build order" msgstr "Desatribua antes de completar esta ordem de produção" -#: build/serializers.py:766 +#: build/serializers.py:774 msgid "Overallocated Stock" msgstr "" -#: build/serializers.py:769 +#: build/serializers.py:777 msgid "How do you want to handle extra stock items assigned to the build order" msgstr "Como deseja manejar itens de estoque extras atribuídos ao pedido de produção" -#: build/serializers.py:780 +#: build/serializers.py:788 msgid "Some stock items have been overallocated" msgstr "Alguns itens de estoque foram sobrecarregados" -#: build/serializers.py:785 +#: build/serializers.py:793 msgid "Accept Unallocated" msgstr "Aceitar não alocados" -#: build/serializers.py:787 +#: build/serializers.py:795 msgid "Accept that stock items have not been fully allocated to this build order" msgstr "Aceitar que os itens de estoque não foram totalmente alocados para esta encomenda" -#: build/serializers.py:798 +#: build/serializers.py:806 msgid "Required stock has not been fully allocated" msgstr "Estoque obrigatório não foi totalmente alocado" -#: build/serializers.py:803 order/serializers.py:524 order/serializers.py:1601 +#: build/serializers.py:811 order/serializers.py:535 order/serializers.py:1615 msgid "Accept Incomplete" msgstr "Aceitar Incompleto" -#: build/serializers.py:805 +#: build/serializers.py:813 msgid "Accept that the required number of build outputs have not been completed" msgstr "Aceitar que o número requerido de saídas de produção não foi concluído" -#: build/serializers.py:816 +#: build/serializers.py:824 msgid "Required build quantity has not been completed" msgstr "Quantidade de produção requerida não foi concluída" -#: build/serializers.py:828 +#: build/serializers.py:836 msgid "Build order has open child build orders" msgstr "A ordem de produção tem ordens de produção secundárias abertas" -#: build/serializers.py:831 +#: build/serializers.py:839 msgid "Build order must be in production state" msgstr "Ordem de produção deve estar no estado de produção" -#: build/serializers.py:834 +#: build/serializers.py:842 msgid "Build order has incomplete outputs" msgstr "Ordem de produção tem saídas incompletas" -#: build/serializers.py:873 +#: build/serializers.py:881 msgid "Build Line" msgstr "Linha de Produção" -#: build/serializers.py:881 +#: build/serializers.py:889 msgid "Build output" msgstr "Saída da Produção" -#: build/serializers.py:889 +#: build/serializers.py:897 msgid "Build output must point to the same build" msgstr "Saída de produção deve indicar a mesma produção" -#: build/serializers.py:920 +#: build/serializers.py:928 msgid "Build Line Item" msgstr "Item da linha de produção" -#: build/serializers.py:938 +#: build/serializers.py:946 msgid "bom_item.part must point to the same part as the build order" msgstr "bom_item.part deve apontar para a mesma parte que a ordem de produção" -#: build/serializers.py:954 stock/serializers.py:1287 +#: build/serializers.py:962 stock/serializers.py:1287 msgid "Item must be in stock" msgstr "O item deve estar em estoque" -#: build/serializers.py:997 order/serializers.py:1587 +#: build/serializers.py:1005 order/serializers.py:1601 #, python-brace-format msgid "Available quantity ({q}) exceeded" msgstr "Quantidade disponível ({q}) excedida" -#: build/serializers.py:1003 +#: build/serializers.py:1011 msgid "Build output must be specified for allocation of tracked parts" msgstr "Saída de produção deve ser definida para alocação de peças rastreadas" -#: build/serializers.py:1011 +#: build/serializers.py:1019 msgid "Build output cannot be specified for allocation of untracked parts" msgstr "Saída de produção não pode ser definida para alocação de peças não rastreadas" -#: build/serializers.py:1035 order/serializers.py:1860 +#: build/serializers.py:1043 order/serializers.py:1874 msgid "Allocation items must be provided" msgstr "Alocação de itens precisam ser fornecidos" -#: build/serializers.py:1099 +#: build/serializers.py:1107 msgid "Stock location where parts are to be sourced (leave blank to take from any location)" msgstr "Localização do estoque onde as peças devem ser originadas (deixe em branco a partir de qualquer local)" -#: build/serializers.py:1108 +#: build/serializers.py:1116 msgid "Exclude Location" msgstr "Excluir Local" -#: build/serializers.py:1109 +#: build/serializers.py:1117 msgid "Exclude stock items from this selected location" msgstr "Excluir itens de estoque desta localização selecionada" -#: build/serializers.py:1114 +#: build/serializers.py:1122 msgid "Interchangeable Stock" msgstr "Estoque Intercambiável" -#: build/serializers.py:1115 +#: build/serializers.py:1123 msgid "Stock items in multiple locations can be used interchangeably" msgstr "Itens de estoque em múltiplos locais podem ser intercambiáveis" -#: build/serializers.py:1120 +#: build/serializers.py:1128 msgid "Substitute Stock" msgstr "Estoque Substituto" -#: build/serializers.py:1121 +#: build/serializers.py:1129 msgid "Allow allocation of substitute parts" msgstr "Permitir alocação de peças substitutas" -#: build/serializers.py:1126 +#: build/serializers.py:1134 msgid "Optional Items" msgstr "Itens opcionais" -#: build/serializers.py:1127 +#: build/serializers.py:1135 msgid "Allocate optional BOM items to build order" msgstr "Alocar itens BOM opcionais para ordem de produção" -#: build/serializers.py:1148 +#: build/serializers.py:1156 msgid "Failed to start auto-allocation task" msgstr "Falha ao iniciar tarefa de alocação automática" -#: build/serializers.py:1200 +#: build/serializers.py:1208 msgid "BOM Reference" msgstr "Referência do BOM" -#: build/serializers.py:1206 +#: build/serializers.py:1214 msgid "BOM Part ID" msgstr "ID da parte BOM" -#: build/serializers.py:1213 +#: build/serializers.py:1221 msgid "BOM Part Name" msgstr "Nome da peça BOM" -#: build/serializers.py:1266 build/serializers.py:1449 +#: build/serializers.py:1274 build/serializers.py:1457 msgid "Build" msgstr "Produção" -#: build/serializers.py:1276 company/models.py:685 order/api.py:311 -#: order/api.py:316 order/api.py:543 order/serializers.py:650 +#: build/serializers.py:1284 company/models.py:639 order/api.py:316 +#: order/api.py:321 order/api.py:549 order/serializers.py:661 #: stock/models.py:1036 stock/serializers.py:579 msgid "Supplier Part" msgstr "Fornecedor da Peça" -#: build/serializers.py:1284 stock/serializers.py:620 +#: build/serializers.py:1292 stock/serializers.py:620 msgid "Allocated Quantity" msgstr "Quantidade Alocada" -#: build/serializers.py:1351 +#: build/serializers.py:1359 msgid "Build Reference" msgstr "Referência da produção" -#: build/serializers.py:1361 +#: build/serializers.py:1369 msgid "Part Category Name" msgstr "Nome da Categoria" -#: build/serializers.py:1383 common/setting/system.py:480 part/models.py:1214 +#: build/serializers.py:1391 common/setting/system.py:480 part/models.py:1302 msgid "Trackable" msgstr "Rastreável" -#: build/serializers.py:1386 +#: build/serializers.py:1394 msgid "Inherited" msgstr "Herdado" -#: build/serializers.py:1389 part/models.py:4475 +#: build/serializers.py:1397 part/models.py:4100 msgid "Allow Variants" msgstr "Permitir variantes" -#: build/serializers.py:1395 build/serializers.py:1400 part/models.py:4208 -#: part/models.py:4779 stock/api.py:882 +#: build/serializers.py:1403 build/serializers.py:1408 part/models.py:3833 +#: part/models.py:4404 stock/api.py:882 msgid "BOM Item" msgstr "Item BOM" -#: build/serializers.py:1467 order/serializers.py:1282 part/serializers.py:1310 -#: part/serializers.py:1765 +#: build/serializers.py:1475 order/serializers.py:1296 part/serializers.py:1175 +#: part/serializers.py:1630 msgid "In Production" msgstr "Em Produção" -#: build/serializers.py:1469 part/serializers.py:950 part/serializers.py:1314 +#: build/serializers.py:1477 part/serializers.py:835 part/serializers.py:1179 msgid "Scheduled to Build" msgstr "Agendado para produção" -#: build/serializers.py:1472 part/serializers.py:987 +#: build/serializers.py:1480 part/serializers.py:872 msgid "External Stock" msgstr "Estoque Externo" -#: build/serializers.py:1473 part/serializers.py:1300 part/serializers.py:1808 +#: build/serializers.py:1481 part/serializers.py:1165 part/serializers.py:1673 msgid "Available Stock" msgstr "Estoque Disponível" -#: build/serializers.py:1475 +#: build/serializers.py:1483 msgid "Available Substitute Stock" msgstr "Estoque Substituto Disponível" -#: build/serializers.py:1478 +#: build/serializers.py:1486 msgid "Available Variant Stock" msgstr "Estoque de Variantes Disponível" -#: build/serializers.py:1752 +#: build/serializers.py:1760 msgid "Consumed quantity exceeds allocated quantity" msgstr "" -#: build/serializers.py:1789 +#: build/serializers.py:1797 msgid "Optional notes for the stock consumption" msgstr "" -#: build/serializers.py:1806 +#: build/serializers.py:1814 msgid "Build item must point to the correct build order" msgstr "" -#: build/serializers.py:1811 +#: build/serializers.py:1819 msgid "Duplicate build item allocation" msgstr "" -#: build/serializers.py:1829 +#: build/serializers.py:1837 msgid "Build line must point to the correct build order" msgstr "" -#: build/serializers.py:1834 +#: build/serializers.py:1842 msgid "Duplicate build line allocation" msgstr "" -#: build/serializers.py:1846 +#: build/serializers.py:1854 msgid "At least one item or line must be provided" msgstr "" @@ -1482,702 +1498,826 @@ msgstr "Ordem de produção vencido" msgid "Build order {bo} is now overdue" msgstr "Ordem de produção {bo} está atrasada" -#: common/api.py:694 +#: common/api.py:701 msgid "Is Link" msgstr "É um link" -#: common/api.py:702 +#: common/api.py:709 msgid "Is File" msgstr "É um arquivo" -#: common/api.py:745 +#: common/api.py:756 msgid "User does not have permission to delete these attachments" msgstr "O usuário não tem permissão para deletar esses anexos" -#: common/api.py:762 +#: common/api.py:769 msgid "User does not have permission to delete this attachment" msgstr "O usuário não tem permissão para deletar esse anexo" -#: common/currency.py:122 +#: common/currency.py:130 msgid "Invalid currency code" msgstr "Código de moeda inválido" -#: common/currency.py:124 +#: common/currency.py:132 msgid "Duplicate currency code" msgstr "Código de moeda duplicado" -#: common/currency.py:129 +#: common/currency.py:137 msgid "No valid currency codes provided" msgstr "Nenhum código de moeda válido fornecido" -#: common/currency.py:146 +#: common/currency.py:154 msgid "No plugin" msgstr "Sem extensão" -#: common/models.py:101 common/models.py:126 common/models.py:2729 +#: common/models.py:105 common/models.py:130 common/models.py:3150 msgid "Updated" msgstr "Atualizado" -#: common/models.py:102 common/models.py:127 +#: common/models.py:106 common/models.py:131 msgid "Timestamp of last update" msgstr "Tempo da última atualização" -#: common/models.py:139 +#: common/models.py:143 msgid "Update By" msgstr "Atualizado Por" -#: common/models.py:140 +#: common/models.py:144 msgid "User who last updated this object" msgstr "Usuário que atualizou este objeto pela última vez" -#: common/models.py:165 +#: common/models.py:169 msgid "Unique project code" msgstr "Código único do projeto" -#: common/models.py:172 +#: common/models.py:176 msgid "Project description" msgstr "Descrição do projeto" -#: common/models.py:181 +#: common/models.py:185 msgid "User or group responsible for this project" msgstr "Usuário ou grupo responsável por este projeto" -#: common/models.py:771 common/models.py:1272 common/models.py:1310 +#: common/models.py:775 common/models.py:1276 common/models.py:1314 msgid "Settings key" msgstr "Chave de configurações" -#: common/models.py:775 +#: common/models.py:779 msgid "Settings value" msgstr "Valor da Configuração" -#: common/models.py:830 +#: common/models.py:834 msgid "Chosen value is not a valid option" msgstr "Valor escolhido não é uma opção válida" -#: common/models.py:846 +#: common/models.py:850 msgid "Value must be a boolean value" msgstr "Valor deve ser um valor booleano" -#: common/models.py:854 +#: common/models.py:858 msgid "Value must be an integer value" msgstr "Valor deve ser um número inteiro" -#: common/models.py:862 +#: common/models.py:866 msgid "Value must be a valid number" msgstr "O valor deve ser um número válido" -#: common/models.py:887 +#: common/models.py:891 msgid "Value does not pass validation checks" msgstr "O valor não passa em verificações de validação" -#: common/models.py:909 +#: common/models.py:913 msgid "Key string must be unique" msgstr "A frase senha deve ser diferenciada" -#: common/models.py:1318 common/models.py:1319 common/models.py:1423 -#: common/models.py:1424 common/models.py:1669 common/models.py:1670 -#: common/models.py:2000 common/models.py:2001 common/models.py:2382 -#: importer/models.py:100 part/models.py:3547 part/models.py:3575 +#: common/models.py:1322 common/models.py:1323 common/models.py:1427 +#: common/models.py:1428 common/models.py:1673 common/models.py:1674 +#: common/models.py:2006 common/models.py:2007 common/models.py:2803 +#: importer/models.py:100 part/models.py:3611 part/models.py:3639 #: plugin/models.py:355 plugin/models.py:356 #: report/templates/report/inventree_test_report.html:105 users/models.py:124 #: users/models.py:501 msgid "User" msgstr "Usuário" -#: common/models.py:1341 +#: common/models.py:1345 msgid "Price break quantity" msgstr "Quantidade de Parcelamentos" -#: common/models.py:1348 company/serializers.py:564 order/models.py:1842 -#: order/models.py:3043 +#: common/models.py:1352 company/serializers.py:349 order/models.py:1843 +#: order/models.py:3044 msgid "Price" msgstr "Preço" -#: common/models.py:1349 +#: common/models.py:1353 msgid "Unit price at specified quantity" msgstr "Preço unitário na quantidade especificada" -#: common/models.py:1400 common/models.py:1585 +#: common/models.py:1404 common/models.py:1589 msgid "Endpoint" msgstr "Ponto final" -#: common/models.py:1401 +#: common/models.py:1405 msgid "Endpoint at which this webhook is received" msgstr "Ponto final em qual o webhook foi recebido" -#: common/models.py:1411 +#: common/models.py:1415 msgid "Name for this webhook" msgstr "Nome para este webhook" -#: common/models.py:1415 common/models.py:2241 common/models.py:2348 -#: company/models.py:191 company/models.py:822 machine/models.py:40 -#: part/models.py:1237 plugin/models.py:69 stock/api.py:642 users/models.py:195 +#: common/models.py:1419 common/models.py:2247 common/models.py:2354 +#: company/models.py:192 company/models.py:776 machine/models.py:40 +#: part/models.py:1325 plugin/models.py:69 stock/api.py:642 users/models.py:195 #: users/models.py:554 users/serializers.py:314 msgid "Active" msgstr "Ativo" -#: common/models.py:1415 +#: common/models.py:1419 msgid "Is this webhook active" msgstr "Este webhook está ativo" -#: common/models.py:1431 users/models.py:172 +#: common/models.py:1435 users/models.py:172 msgid "Token" msgstr "Ficha" -#: common/models.py:1432 +#: common/models.py:1436 msgid "Token for access" msgstr "Ficha para acesso" -#: common/models.py:1440 +#: common/models.py:1444 msgid "Secret" msgstr "Secreto" -#: common/models.py:1441 +#: common/models.py:1445 msgid "Shared secret for HMAC" msgstr "Segredo compartilhado para HMAC" -#: common/models.py:1549 common/models.py:2619 +#: common/models.py:1553 common/models.py:3040 msgid "Message ID" msgstr "ID da Mensagem" -#: common/models.py:1550 common/models.py:2609 +#: common/models.py:1554 common/models.py:3030 msgid "Unique identifier for this message" msgstr "Identificador exclusivo desta mensagem" -#: common/models.py:1558 +#: common/models.py:1562 msgid "Host" msgstr "Servidor" -#: common/models.py:1559 +#: common/models.py:1563 msgid "Host from which this message was received" msgstr "Servidor do qual esta mensagem foi recebida" -#: common/models.py:1567 +#: common/models.py:1571 msgid "Header" msgstr "Cabeçalho" -#: common/models.py:1568 +#: common/models.py:1572 msgid "Header of this message" msgstr "Cabeçalho da mensagem" -#: common/models.py:1575 +#: common/models.py:1579 msgid "Body" msgstr "Corpo" -#: common/models.py:1576 +#: common/models.py:1580 msgid "Body of this message" msgstr "Corpo da mensagem" -#: common/models.py:1586 +#: common/models.py:1590 msgid "Endpoint on which this message was received" msgstr "Ponto do qual esta mensagem foi recebida" -#: common/models.py:1591 +#: common/models.py:1595 msgid "Worked on" msgstr "Trabalhado em" -#: common/models.py:1592 +#: common/models.py:1596 msgid "Was the work on this message finished?" msgstr "O trabalho desta mensagem foi concluído?" -#: common/models.py:1718 +#: common/models.py:1722 msgid "Id" msgstr "Id" -#: common/models.py:1720 +#: common/models.py:1724 msgid "Title" msgstr "Título" -#: common/models.py:1722 common/models.py:1983 company/models.py:185 -#: company/models.py:467 company/models.py:534 company/models.py:839 -#: order/models.py:457 order/models.py:1786 order/models.py:2343 -#: part/models.py:1113 +#: common/models.py:1726 common/models.py:1989 company/models.py:186 +#: company/models.py:468 company/models.py:536 company/models.py:793 +#: order/models.py:458 order/models.py:1787 order/models.py:2344 +#: part/models.py:1201 #: report/templates/report/inventree_build_order_report.html:164 msgid "Link" msgstr "Link" -#: common/models.py:1724 +#: common/models.py:1728 msgid "Published" msgstr "Publicado" -#: common/models.py:1726 +#: common/models.py:1730 msgid "Author" msgstr "Autor" -#: common/models.py:1728 +#: common/models.py:1732 msgid "Summary" msgstr "Resumo" -#: common/models.py:1731 common/models.py:2586 +#: common/models.py:1735 common/models.py:3007 msgid "Read" msgstr "Lida" -#: common/models.py:1731 +#: common/models.py:1735 msgid "Was this news item read?" msgstr "Esta notícia do item foi lida?" -#: common/models.py:1748 +#: common/models.py:1752 msgid "Image file" msgstr "Arquivo de imagem" -#: common/models.py:1760 +#: common/models.py:1764 msgid "Target model type for this image" msgstr "Tipo modelo de destino para esta imagem" -#: common/models.py:1764 +#: common/models.py:1768 msgid "Target model ID for this image" msgstr "ID do modelo de destino para esta imagem" -#: common/models.py:1786 +#: common/models.py:1790 msgid "Custom Unit" msgstr "Unidade Personalizada" -#: common/models.py:1804 +#: common/models.py:1808 msgid "Unit symbol must be unique" msgstr "O símbolo da unidade deve ser único" -#: common/models.py:1819 +#: common/models.py:1823 msgid "Unit name must be a valid identifier" msgstr "Nome da unidade deve ser um identificador válido" -#: common/models.py:1838 +#: common/models.py:1842 msgid "Unit name" msgstr "Nome da unidade" -#: common/models.py:1845 +#: common/models.py:1849 msgid "Symbol" msgstr "Símbolo" -#: common/models.py:1846 +#: common/models.py:1850 msgid "Optional unit symbol" msgstr "Símbolo de unidade opcional" -#: common/models.py:1852 +#: common/models.py:1856 msgid "Definition" msgstr "Definição" -#: common/models.py:1853 +#: common/models.py:1857 msgid "Unit definition" msgstr "Definição de unidade" -#: common/models.py:1911 common/models.py:1974 stock/models.py:2967 +#: common/models.py:1917 common/models.py:1980 stock/models.py:2984 #: stock/serializers.py:247 msgid "Attachment" msgstr "Anexo" -#: common/models.py:1928 +#: common/models.py:1934 msgid "Missing file" msgstr "Arquivo ausente" -#: common/models.py:1929 +#: common/models.py:1935 msgid "Missing external link" msgstr "Link externo não encontrado" -#: common/models.py:1966 +#: common/models.py:1972 common/models.py:2488 msgid "Model type" msgstr "Categoria de Modelo" -#: common/models.py:1967 +#: common/models.py:1973 msgid "Target model type for image" msgstr "Tipo modelo de destino para esta imagem" -#: common/models.py:1975 +#: common/models.py:1981 msgid "Select file to attach" msgstr "Selecione arquivo para anexar" -#: common/models.py:1991 +#: common/models.py:1997 msgid "Comment" msgstr "Comentário" -#: common/models.py:1992 +#: common/models.py:1998 msgid "Attachment comment" msgstr "Comentário de anexo" -#: common/models.py:2008 +#: common/models.py:2014 msgid "Upload date" msgstr "Data de envio" -#: common/models.py:2009 +#: common/models.py:2015 msgid "Date the file was uploaded" msgstr "Data em que o arquivo foi enviado" -#: common/models.py:2013 +#: common/models.py:2019 msgid "File size" msgstr "Tamanho do arquivo" -#: common/models.py:2013 +#: common/models.py:2019 msgid "File size in bytes" msgstr "Tamanho do arquivo em bytes" -#: common/models.py:2051 common/serializers.py:684 +#: common/models.py:2057 common/serializers.py:688 msgid "Invalid model type specified for attachment" msgstr "Categoria de modelo especificado inválido para anexo" -#: common/models.py:2072 +#: common/models.py:2078 msgid "Custom State" msgstr "Estado personalizado" -#: common/models.py:2073 +#: common/models.py:2079 msgid "Custom States" msgstr "Estados personalizados" -#: common/models.py:2078 +#: common/models.py:2084 msgid "Reference Status Set" msgstr "Status Referência Definido" -#: common/models.py:2079 +#: common/models.py:2085 msgid "Status set that is extended with this custom state" msgstr "Conjunto de status estendido com este estado personalizado" -#: common/models.py:2083 generic/states/serializers.py:18 +#: common/models.py:2089 generic/states/serializers.py:18 msgid "Logical Key" msgstr "Chave lógica" -#: common/models.py:2085 +#: common/models.py:2091 msgid "State logical key that is equal to this custom state in business logic" msgstr "Chave lógica de estado que é igual a este estado personalizado na lógica de negócios" -#: common/models.py:2090 common/models.py:2329 company/models.py:622 -#: machine/serializers.py:27 -#: report/templates/report/inventree_test_report.html:104 stock/models.py:2959 +#: common/models.py:2096 common/models.py:2335 machine/serializers.py:27 +#: report/templates/report/inventree_test_report.html:104 stock/models.py:2976 msgid "Value" msgstr "Valor" -#: common/models.py:2091 +#: common/models.py:2097 msgid "Numerical value that will be saved in the models database" msgstr "Valor numérico que será salvo no banco de dados dos modelos" -#: common/models.py:2097 +#: common/models.py:2103 msgid "Name of the state" msgstr "Nome do estado" -#: common/models.py:2106 common/models.py:2335 generic/states/serializers.py:22 +#: common/models.py:2112 common/models.py:2341 generic/states/serializers.py:22 msgid "Label" msgstr "Etiqueta" -#: common/models.py:2107 +#: common/models.py:2113 msgid "Label that will be displayed in the frontend" msgstr "Etiqueta que será exibida no frontend" -#: common/models.py:2114 generic/states/serializers.py:24 +#: common/models.py:2120 generic/states/serializers.py:24 msgid "Color" msgstr "Cor" -#: common/models.py:2115 +#: common/models.py:2121 msgid "Color that will be displayed in the frontend" msgstr "Cor que será exibida no frontend" -#: common/models.py:2123 +#: common/models.py:2129 msgid "Model" msgstr "Modelo" -#: common/models.py:2124 +#: common/models.py:2130 msgid "Model this state is associated with" msgstr "Modelo que este estado está associado a" -#: common/models.py:2139 +#: common/models.py:2145 msgid "Model must be selected" msgstr "Modelo deve ser selecionado" -#: common/models.py:2142 +#: common/models.py:2148 msgid "Key must be selected" msgstr "A chave deve ser selecionada" -#: common/models.py:2145 +#: common/models.py:2151 msgid "Logical key must be selected" msgstr "Chave lógica deve ser selecionada" -#: common/models.py:2149 +#: common/models.py:2155 msgid "Key must be different from logical key" msgstr "A chave deve diferir da chave lógica" -#: common/models.py:2156 +#: common/models.py:2162 msgid "Valid reference status class must be provided" msgstr "Uma classe de estado de referência válida deve ser fornecida" -#: common/models.py:2162 +#: common/models.py:2168 msgid "Key must be different from the logical keys of the reference status" msgstr "A chave deve diferir das chaves lógicas do estado de referência" -#: common/models.py:2169 +#: common/models.py:2175 msgid "Logical key must be in the logical keys of the reference status" msgstr "A chave lógica deve estar nas chaves lógicas do estado de referência" -#: common/models.py:2176 +#: common/models.py:2182 msgid "Name must be different from the names of the reference status" msgstr "O nome deve diferir dos nomes do estado de referência" -#: common/models.py:2216 common/models.py:2323 part/models.py:3889 +#: common/models.py:2222 common/models.py:2329 common/models.py:2533 msgid "Selection List" msgstr "Lista de Seleção" -#: common/models.py:2217 +#: common/models.py:2223 msgid "Selection Lists" msgstr "Listas de Seleção" -#: common/models.py:2222 +#: common/models.py:2228 msgid "Name of the selection list" msgstr "Nome da lista de seleção" -#: common/models.py:2229 +#: common/models.py:2235 msgid "Description of the selection list" msgstr "Descrição da lista de seleção" -#: common/models.py:2235 part/models.py:1242 +#: common/models.py:2241 part/models.py:1330 msgid "Locked" msgstr "Bloqueado" -#: common/models.py:2236 +#: common/models.py:2242 msgid "Is this selection list locked?" msgstr "Esta lista de seleção está bloqueada?" -#: common/models.py:2242 +#: common/models.py:2248 msgid "Can this selection list be used?" msgstr "Esta lista de seleção pode ser usada?" -#: common/models.py:2250 +#: common/models.py:2256 msgid "Source Plugin" msgstr "Extensão de origem" -#: common/models.py:2251 +#: common/models.py:2257 msgid "Plugin which provides the selection list" msgstr "Extensão que fornece a lista de seleção" -#: common/models.py:2256 +#: common/models.py:2262 msgid "Source String" msgstr "Série de Origem" -#: common/models.py:2257 +#: common/models.py:2263 msgid "Optional string identifying the source used for this list" msgstr "Série opcional identificando a fonte usada para esta lista" -#: common/models.py:2266 +#: common/models.py:2272 msgid "Default Entry" msgstr "Entrada Padrão" -#: common/models.py:2267 +#: common/models.py:2273 msgid "Default entry for this selection list" msgstr "Entrada padrão para esta lista de seleção" -#: common/models.py:2272 common/models.py:2724 +#: common/models.py:2278 common/models.py:3145 msgid "Created" msgstr "Criado em" -#: common/models.py:2273 +#: common/models.py:2279 msgid "Date and time that the selection list was created" msgstr "Data e hora em que a lista de seleção foi criada" -#: common/models.py:2278 +#: common/models.py:2284 msgid "Last Updated" msgstr "Última Atualização" -#: common/models.py:2279 +#: common/models.py:2285 msgid "Date and time that the selection list was last updated" msgstr "Data e hora da última atualização da lista de seleção" -#: common/models.py:2313 +#: common/models.py:2319 msgid "Selection List Entry" msgstr "Entrada na lista de seleção" -#: common/models.py:2314 +#: common/models.py:2320 msgid "Selection List Entries" msgstr "Entradas na Lista de Seleção" -#: common/models.py:2324 +#: common/models.py:2330 msgid "Selection list to which this entry belongs" msgstr "Lista de seleção à qual esta entrada pertence" -#: common/models.py:2330 +#: common/models.py:2336 msgid "Value of the selection list entry" msgstr "Valor da entrada da lista de seleção" -#: common/models.py:2336 +#: common/models.py:2342 msgid "Label for the selection list entry" msgstr "Rótulo para a entrada da lista de seleção" -#: common/models.py:2342 +#: common/models.py:2348 msgid "Description of the selection list entry" msgstr "Descrição da entrada da lista de seleção" -#: common/models.py:2349 +#: common/models.py:2355 msgid "Is this selection list entry active?" msgstr "Esta entrada da lista de seleção está ativa?" -#: common/models.py:2367 -msgid "Barcode Scan" -msgstr "Escaneamento de Código de Barras" +#: common/models.py:2387 +msgid "Parameter Template" +msgstr "" -#: common/models.py:2371 importer/models.py:546 part/models.py:4060 +#: common/models.py:2388 +msgid "Parameter Templates" +msgstr "" + +#: common/models.py:2425 +msgid "Checkbox parameters cannot have units" +msgstr "" + +#: common/models.py:2430 +msgid "Checkbox parameters cannot have choices" +msgstr "" + +#: common/models.py:2450 part/models.py:3707 +msgid "Choices must be unique" +msgstr "" + +#: common/models.py:2467 +msgid "Parameter template name must be unique" +msgstr "" + +#: common/models.py:2489 +msgid "Target model type for this parameter template" +msgstr "" + +#: common/models.py:2495 +msgid "Parameter Name" +msgstr "Nome do Parâmetro" + +#: common/models.py:2501 part/models.py:1283 +msgid "Units" +msgstr "Unidades" + +#: common/models.py:2502 +msgid "Physical units for this parameter" +msgstr "" + +#: common/models.py:2510 +msgid "Parameter description" +msgstr "" + +#: common/models.py:2516 +msgid "Checkbox" +msgstr "Caixa de seleção" + +#: common/models.py:2517 +msgid "Is this parameter a checkbox?" +msgstr "" + +#: common/models.py:2522 part/models.py:3794 +msgid "Choices" +msgstr "" + +#: common/models.py:2523 +msgid "Valid choices for this parameter (comma-separated)" +msgstr "" + +#: common/models.py:2534 +msgid "Selection list for this parameter" +msgstr "" + +#: common/models.py:2539 part/models.py:3769 report/models.py:287 +msgid "Enabled" +msgstr "Habilitado" + +#: common/models.py:2540 +msgid "Is this parameter template enabled?" +msgstr "" + +#: common/models.py:2581 +msgid "Parameter" +msgstr "" + +#: common/models.py:2582 +msgid "Parameters" +msgstr "" + +#: common/models.py:2628 +msgid "Invalid choice for parameter value" +msgstr "" + +#: common/models.py:2698 common/serializers.py:783 +msgid "Invalid model type specified for parameter" +msgstr "" + +#: common/models.py:2734 +msgid "Model ID" +msgstr "" + +#: common/models.py:2735 +msgid "ID of the target model for this parameter" +msgstr "" + +#: common/models.py:2744 common/setting/system.py:450 report/models.py:373 +#: report/models.py:669 report/serializers.py:94 report/serializers.py:135 +#: stock/serializers.py:234 +msgid "Template" +msgstr "Modelo" + +#: common/models.py:2745 +msgid "Parameter template" +msgstr "" + +#: common/models.py:2750 common/models.py:2792 importer/models.py:546 msgid "Data" msgstr "Dados" -#: common/models.py:2372 +#: common/models.py:2751 +msgid "Parameter Value" +msgstr "" + +#: common/models.py:2760 company/models.py:810 order/serializers.py:894 +#: order/serializers.py:2064 part/models.py:4075 part/models.py:4444 +#: report/templates/report/inventree_bill_of_materials_report.html:140 +#: report/templates/report/inventree_purchase_order_report.html:39 +#: report/templates/report/inventree_return_order_report.html:27 +#: report/templates/report/inventree_sales_order_report.html:32 +#: report/templates/report/inventree_stock_location_report.html:105 +#: stock/serializers.py:813 +msgid "Note" +msgstr "Anotação" + +#: common/models.py:2761 stock/serializers.py:718 +msgid "Optional note field" +msgstr "" + +#: common/models.py:2788 +msgid "Barcode Scan" +msgstr "Escaneamento de Código de Barras" + +#: common/models.py:2793 msgid "Barcode data" msgstr "Dados de código de barras" -#: common/models.py:2383 +#: common/models.py:2804 msgid "User who scanned the barcode" msgstr "Usuário que escaneou o código de barras" -#: common/models.py:2388 importer/models.py:69 +#: common/models.py:2809 importer/models.py:69 msgid "Timestamp" msgstr "Marcador de hora" -#: common/models.py:2389 +#: common/models.py:2810 msgid "Date and time of the barcode scan" msgstr "Data e hora da verificação do código de barras" -#: common/models.py:2395 +#: common/models.py:2816 msgid "URL endpoint which processed the barcode" msgstr "O endpoint da URL que processou o código de barras" -#: common/models.py:2402 order/models.py:1832 plugin/serializers.py:93 +#: common/models.py:2823 order/models.py:1833 plugin/serializers.py:93 msgid "Context" msgstr "Contexto" -#: common/models.py:2403 +#: common/models.py:2824 msgid "Context data for the barcode scan" msgstr "Dados de contexto para escanear código de barras" -#: common/models.py:2410 +#: common/models.py:2831 msgid "Response" msgstr "Resposta" -#: common/models.py:2411 +#: common/models.py:2832 msgid "Response data from the barcode scan" msgstr "Dados de resposta da verificação de código de barras" -#: common/models.py:2417 report/templates/report/inventree_test_report.html:103 -#: stock/models.py:2953 +#: common/models.py:2838 report/templates/report/inventree_test_report.html:103 +#: stock/models.py:2970 msgid "Result" msgstr "Resultado" -#: common/models.py:2418 +#: common/models.py:2839 msgid "Was the barcode scan successful?" msgstr "O código de barras foi digitalizado com sucesso?" -#: common/models.py:2500 +#: common/models.py:2921 msgid "An error occurred" msgstr "Ocorreu um erro" -#: common/models.py:2521 +#: common/models.py:2942 msgid "INVE-E8: Email log deletion is protected. Set INVENTREE_PROTECT_EMAIL_LOG to False to allow deletion." msgstr "INVE-E8: exclusão de registro de e-mail está protegida. Defina INVENTREE_PROTECT_EMAIL_LOG para Falso para permitir a exclusão." -#: common/models.py:2568 +#: common/models.py:2989 msgid "Email Message" msgstr "Mensagem de e-mail" -#: common/models.py:2569 +#: common/models.py:2990 msgid "Email Messages" msgstr "Mensagens de Email" -#: common/models.py:2576 +#: common/models.py:2997 msgid "Announced" msgstr "Anunciado" -#: common/models.py:2578 +#: common/models.py:2999 msgid "Sent" msgstr "Enviado" -#: common/models.py:2579 +#: common/models.py:3000 msgid "Failed" msgstr "Falhou" -#: common/models.py:2582 +#: common/models.py:3003 msgid "Delivered" msgstr "Entregue" -#: common/models.py:2590 +#: common/models.py:3011 msgid "Confirmed" msgstr "Confirmado" -#: common/models.py:2596 +#: common/models.py:3017 msgid "Inbound" msgstr "Entrada" -#: common/models.py:2597 +#: common/models.py:3018 msgid "Outbound" msgstr "Saída" -#: common/models.py:2602 +#: common/models.py:3023 msgid "No Reply" msgstr "Não responder" -#: common/models.py:2603 +#: common/models.py:3024 msgid "Track Delivery" msgstr "Rastrear Entrega" -#: common/models.py:2604 +#: common/models.py:3025 msgid "Track Read" msgstr "Monitorado" -#: common/models.py:2605 +#: common/models.py:3026 msgid "Track Click" msgstr "Clique no caminho" -#: common/models.py:2608 common/models.py:2711 +#: common/models.py:3029 common/models.py:3132 msgid "Global ID" msgstr "ID Global" -#: common/models.py:2621 +#: common/models.py:3042 msgid "Identifier for this message (might be supplied by external system)" msgstr "Identificador para esta mensagem (pode ser fornecido por sistema externo)" -#: common/models.py:2628 +#: common/models.py:3049 msgid "Thread ID" msgstr "ID do Tópico" -#: common/models.py:2630 +#: common/models.py:3051 msgid "Identifier for this message thread (might be supplied by external system)" msgstr "Identificador deste tópico de mensagem (pode ser fornecido por sistema externo)" -#: common/models.py:2639 +#: common/models.py:3060 msgid "Thread" msgstr "Tópico" -#: common/models.py:2640 +#: common/models.py:3061 msgid "Linked thread for this message" msgstr "Tópico vinculado para esta mensagem" -#: common/models.py:2656 -msgid "Prioriy" -msgstr "Prioridade" +#: common/models.py:3077 +msgid "Priority" +msgstr "" -#: common/models.py:2698 +#: common/models.py:3119 msgid "Email Thread" msgstr "Tópico do e-mail" -#: common/models.py:2699 +#: common/models.py:3120 msgid "Email Threads" msgstr "Tópicos de e-mail" -#: common/models.py:2705 generic/states/serializers.py:16 +#: common/models.py:3126 generic/states/serializers.py:16 #: machine/serializers.py:24 plugin/models.py:46 users/models.py:113 msgid "Key" msgstr "Chave" -#: common/models.py:2708 +#: common/models.py:3129 msgid "Unique key for this thread (used to identify the thread)" msgstr "Chave única para este tópico (usada para identificar o tópico)" -#: common/models.py:2712 +#: common/models.py:3133 msgid "Unique identifier for this thread" msgstr "Identificador exclusivo deste tópico" -#: common/models.py:2719 +#: common/models.py:3140 msgid "Started Internal" msgstr "Iniciado interno" -#: common/models.py:2720 +#: common/models.py:3141 msgid "Was this thread started internally?" msgstr "Este tópico foi iniciado internamente?" -#: common/models.py:2725 +#: common/models.py:3146 msgid "Date and time that the thread was created" msgstr "Data e hora em que o tópico foi criado" -#: common/models.py:2730 +#: common/models.py:3151 msgid "Date and time that the thread was last updated" msgstr "Data e hora da última atualização do tópico" @@ -2199,7 +2339,7 @@ msgstr "{verbose_name} cancelado" msgid "A order that is assigned to you was canceled" msgstr "Um pedido atribuído a você foi cancelado" -#: common/notifications.py:73 common/notifications.py:80 order/api.py:594 +#: common/notifications.py:73 common/notifications.py:80 order/api.py:600 msgid "Items Received" msgstr "Itens Recebidos" @@ -2211,88 +2351,93 @@ msgstr "Os itens de um pedido de compra foram recebidos" msgid "Items have been received against a return order" msgstr "Os itens de um pedido de devolução foram recebidos" -#: common/serializers.py:145 +#: common/serializers.py:149 msgid "Indicates if the setting is overridden by an environment variable" msgstr "É indicado se a configuração é substituída por uma variável de ambiente" -#: common/serializers.py:147 +#: common/serializers.py:151 msgid "Override" msgstr "Substituir" -#: common/serializers.py:498 +#: common/serializers.py:502 msgid "Is Running" msgstr "Está em execução" -#: common/serializers.py:504 +#: common/serializers.py:508 msgid "Pending Tasks" msgstr "Tarefas Pendentes" -#: common/serializers.py:510 +#: common/serializers.py:514 msgid "Scheduled Tasks" msgstr "Tarefas Agendadas" -#: common/serializers.py:516 +#: common/serializers.py:520 msgid "Failed Tasks" msgstr "Tarefas com Falhas" -#: common/serializers.py:531 +#: common/serializers.py:535 msgid "Task ID" msgstr "ID da Tarefa" -#: common/serializers.py:531 +#: common/serializers.py:535 msgid "Unique task ID" msgstr "ID Único da Tarefa" -#: common/serializers.py:533 +#: common/serializers.py:537 msgid "Lock" msgstr "Bloquear" -#: common/serializers.py:533 +#: common/serializers.py:537 msgid "Lock time" msgstr "Congelar tempo" -#: common/serializers.py:535 +#: common/serializers.py:539 msgid "Task name" msgstr "Nome da tarefa" -#: common/serializers.py:537 +#: common/serializers.py:541 msgid "Function" msgstr "Função" -#: common/serializers.py:537 +#: common/serializers.py:541 msgid "Function name" msgstr "Nome da função" -#: common/serializers.py:539 +#: common/serializers.py:543 msgid "Arguments" msgstr "Argumentos" -#: common/serializers.py:539 +#: common/serializers.py:543 msgid "Task arguments" msgstr "Argumentos da tarefa" -#: common/serializers.py:542 +#: common/serializers.py:546 msgid "Keyword Arguments" msgstr "Argumentos de Palavra-chave" -#: common/serializers.py:542 +#: common/serializers.py:546 msgid "Task keyword arguments" msgstr "Argumentos Palavra-chave da Tarefa" -#: common/serializers.py:652 +#: common/serializers.py:656 msgid "Filename" msgstr "Nome do arquivo" -#: common/serializers.py:659 importer/models.py:89 report/api.py:41 +#: common/serializers.py:663 common/serializers.py:730 +#: common/serializers.py:805 importer/models.py:89 report/api.py:41 #: report/models.py:293 report/serializers.py:52 msgid "Model Type" msgstr "Categoria de Modelo" -#: common/serializers.py:687 +#: common/serializers.py:691 msgid "User does not have permission to create or edit attachments for this model" msgstr "Usuário não tem permissão para criar ou editar anexos para este modelo" -#: common/serializers.py:731 common/serializers.py:834 +#: common/serializers.py:786 +msgid "User does not have permission to create or edit parameters for this model" +msgstr "" + +#: common/serializers.py:850 common/serializers.py:953 msgid "Selection list is locked" msgstr "Lista de seleção bloqueada" @@ -2368,7 +2513,7 @@ msgstr "Restringir a exibição 'sobre'" msgid "Show the `about` modal only to superusers" msgstr "Mostrar 'sobre' modal apenas para superusuários" -#: common/setting/system.py:224 company/models.py:144 company/models.py:145 +#: common/setting/system.py:224 company/models.py:145 company/models.py:146 msgid "Company name" msgstr "Nome da empresa" @@ -2411,8 +2556,8 @@ msgstr "Com que frequência atualizar as taxas de câmbio (defina como zero para #: common/setting/system.py:253 common/setting/system.py:293 #: common/setting/system.py:306 common/setting/system.py:314 #: common/setting/system.py:321 common/setting/system.py:330 -#: common/setting/system.py:339 common/setting/system.py:588 -#: common/setting/system.py:616 common/setting/system.py:707 +#: common/setting/system.py:339 common/setting/system.py:580 +#: common/setting/system.py:608 common/setting/system.py:707 #: common/setting/system.py:1103 common/setting/system.py:1119 msgid "days" msgstr "dias" @@ -2657,12 +2802,6 @@ msgstr "Copiar Parâmetros dos Modelos de Categoria" msgid "Copy category parameter templates when creating a part" msgstr "Copiar parâmetros do modelo de categoria quando criar uma peça" -#: common/setting/system.py:450 part/models.py:4054 report/models.py:373 -#: report/models.py:669 report/serializers.py:94 report/serializers.py:135 -#: stock/serializers.py:234 -msgid "Template" -msgstr "Modelo" - #: common/setting/system.py:451 msgid "Parts are templates by default" msgstr "Peças são modelos por padrão" @@ -2671,8 +2810,8 @@ msgstr "Peças são modelos por padrão" msgid "Parts can be assembled from other components by default" msgstr "Peças podem ser montadas a partir de outros componentes por padrão" -#: common/setting/system.py:462 part/models.py:1208 part/serializers.py:1734 -#: part/serializers.py:1741 +#: common/setting/system.py:462 part/models.py:1296 part/serializers.py:1599 +#: part/serializers.py:1606 msgid "Component" msgstr "Componente" @@ -2680,7 +2819,7 @@ msgstr "Componente" msgid "Parts can be used as sub-components by default" msgstr "Peças podem ser usadas como sub-componentes por padrão" -#: common/setting/system.py:468 part/models.py:1226 +#: common/setting/system.py:468 part/models.py:1314 msgid "Purchaseable" msgstr "Comprável" @@ -2688,7 +2827,7 @@ msgstr "Comprável" msgid "Parts are purchaseable by default" msgstr "Peças são compráveis por padrão" -#: common/setting/system.py:474 part/models.py:1232 stock/api.py:643 +#: common/setting/system.py:474 part/models.py:1320 stock/api.py:643 msgid "Salable" msgstr "Comercializável" @@ -2700,7 +2839,7 @@ msgstr "Peças vão vendíveis por padrão" msgid "Parts are trackable by default" msgstr "Peças vão rastreáveis por padrão" -#: common/setting/system.py:486 part/models.py:1248 +#: common/setting/system.py:486 part/models.py:1336 msgid "Virtual" msgstr "Virtual" @@ -2749,158 +2888,158 @@ msgid "Part category default icon (empty means no icon)" msgstr "Ícone padrão de categoria de peça (vazio significa sem ícone)" #: common/setting/system.py:525 -msgid "Enforce Parameter Units" -msgstr "Forçar Unidades de Parâmetro" - -#: common/setting/system.py:527 -msgid "If units are provided, parameter values must match the specified units" -msgstr "Se as unidades são fornecidas, os valores do parâmetro devem corresponder às unidades especificadas" - -#: common/setting/system.py:533 msgid "Minimum Pricing Decimal Places" msgstr "Mínimo de Casas Decimais do Preço" -#: common/setting/system.py:535 +#: common/setting/system.py:527 msgid "Minimum number of decimal places to display when rendering pricing data" msgstr "Mínimo número de casas decimais a exibir quando renderizar dados de preços" -#: common/setting/system.py:546 +#: common/setting/system.py:538 msgid "Maximum Pricing Decimal Places" msgstr "Máximo Casas Decimais de Preço" -#: common/setting/system.py:548 +#: common/setting/system.py:540 msgid "Maximum number of decimal places to display when rendering pricing data" msgstr "Número máximo de casas decimais a exibir quando renderizar dados de preços" -#: common/setting/system.py:559 +#: common/setting/system.py:551 msgid "Use Supplier Pricing" msgstr "Usar Preços do Fornecedor" -#: common/setting/system.py:561 +#: common/setting/system.py:553 msgid "Include supplier price breaks in overall pricing calculations" msgstr "Incluir quebras de preço do fornecedor nos cálculos de preços globais" -#: common/setting/system.py:567 +#: common/setting/system.py:559 msgid "Purchase History Override" msgstr "Substituir Histórico de Compras" -#: common/setting/system.py:569 +#: common/setting/system.py:561 msgid "Historical purchase order pricing overrides supplier price breaks" msgstr "Histórico do pedido de compra substitui os intervalos dos preços do fornecedor" -#: common/setting/system.py:575 +#: common/setting/system.py:567 msgid "Use Stock Item Pricing" msgstr "Usar Preços do Item em Estoque" -#: common/setting/system.py:577 +#: common/setting/system.py:569 msgid "Use pricing from manually entered stock data for pricing calculations" msgstr "Usar preço inserido manualmente no estoque para cálculos de valores" -#: common/setting/system.py:583 +#: common/setting/system.py:575 msgid "Stock Item Pricing Age" msgstr "Idade do preço do Item em Estoque" -#: common/setting/system.py:585 +#: common/setting/system.py:577 msgid "Exclude stock items older than this number of days from pricing calculations" msgstr "Não incluir itens em estoque mais velhos que este número de dias no cálculo de preços" -#: common/setting/system.py:592 +#: common/setting/system.py:584 msgid "Use Variant Pricing" msgstr "Usar Preço Variável" -#: common/setting/system.py:593 +#: common/setting/system.py:585 msgid "Include variant pricing in overall pricing calculations" msgstr "Incluir preços variáveis nos cálculos de valores gerais" -#: common/setting/system.py:598 +#: common/setting/system.py:590 msgid "Active Variants Only" msgstr "Apenas Ativar Variáveis" -#: common/setting/system.py:600 +#: common/setting/system.py:592 msgid "Only use active variant parts for calculating variant pricing" msgstr "Apenas usar peças variáveis ativas para calcular preço variáveis" -#: common/setting/system.py:606 +#: common/setting/system.py:598 msgid "Auto Update Pricing" msgstr "Atualização automática dos preços" -#: common/setting/system.py:608 +#: common/setting/system.py:600 msgid "Automatically update part pricing when internal data changes" msgstr "Atualizar automaticamente o preço da peça quando dados internos forem alterados" -#: common/setting/system.py:614 +#: common/setting/system.py:606 msgid "Pricing Rebuild Interval" msgstr "Intervalo de Reconstrução de Preços" -#: common/setting/system.py:615 +#: common/setting/system.py:607 msgid "Number of days before part pricing is automatically updated" msgstr "Número de dias antes da atualização automática dos preços das peças" -#: common/setting/system.py:621 +#: common/setting/system.py:613 msgid "Internal Prices" msgstr "Preços Internos" -#: common/setting/system.py:622 +#: common/setting/system.py:614 msgid "Enable internal prices for parts" msgstr "Habilitar preços internos para peças" -#: common/setting/system.py:627 +#: common/setting/system.py:619 msgid "Internal Price Override" msgstr "Substituição de preço interno" -#: common/setting/system.py:629 +#: common/setting/system.py:621 msgid "If available, internal prices override price range calculations" msgstr "Se disponível, os preços internos substituem os cálculos da faixa de preços" -#: common/setting/system.py:635 +#: common/setting/system.py:627 msgid "Enable label printing" msgstr "Habilitar Impressão de Etiqueta" -#: common/setting/system.py:636 +#: common/setting/system.py:628 msgid "Enable label printing from the web interface" msgstr "Ativar impressão de etiqueta pela interface da internet" -#: common/setting/system.py:641 +#: common/setting/system.py:633 msgid "Label Image DPI" msgstr "DPI da Imagem na Etiqueta" -#: common/setting/system.py:643 +#: common/setting/system.py:635 msgid "DPI resolution when generating image files to supply to label printing plugins" msgstr "Resolução de DPI quando gerar arquivo de imagens para fornecer à extensão de impressão de etiquetas" -#: common/setting/system.py:649 +#: common/setting/system.py:641 msgid "Enable Reports" msgstr "Ativar Relatórios" -#: common/setting/system.py:650 +#: common/setting/system.py:642 msgid "Enable generation of reports" msgstr "Ativar geração de relatórios" -#: common/setting/system.py:655 +#: common/setting/system.py:647 msgid "Debug Mode" msgstr "Modo de depuração" -#: common/setting/system.py:656 +#: common/setting/system.py:648 msgid "Generate reports in debug mode (HTML output)" msgstr "Gerar relatórios em modo de depuração (saída HTML)" -#: common/setting/system.py:661 +#: common/setting/system.py:653 msgid "Log Report Errors" msgstr "Registro de erros" -#: common/setting/system.py:662 +#: common/setting/system.py:654 msgid "Log errors which occur when generating reports" msgstr "Registrar erros que ocorrem ao gerar relatórios" -#: common/setting/system.py:667 plugin/builtin/labels/label_sheet.py:29 +#: common/setting/system.py:659 plugin/builtin/labels/label_sheet.py:29 #: report/models.py:381 msgid "Page Size" msgstr "Tamanho da página" -#: common/setting/system.py:668 +#: common/setting/system.py:660 msgid "Default page size for PDF reports" msgstr "Tamanho padrão da página PDF para relatórios" +#: common/setting/system.py:665 +msgid "Enforce Parameter Units" +msgstr "Forçar Unidades de Parâmetro" + +#: common/setting/system.py:667 +msgid "If units are provided, parameter values must match the specified units" +msgstr "Se as unidades são fornecidas, os valores do parâmetro devem corresponder às unidades especificadas" + #: common/setting/system.py:673 msgid "Globally Unique Serials" msgstr "Seriais Únicos Globais" @@ -3456,688 +3595,677 @@ msgid "Display PDF reports in the browser, instead of downloading as a file" msgstr "Mostrar relatórios em PDF no navegador, ao invés de baixar o arquivo" #: common/setting/user.py:45 +msgid "Barcode Scanner in Form Fields" +msgstr "" + +#: common/setting/user.py:46 +msgid "Allow barcode scanner input in form fields" +msgstr "" + +#: common/setting/user.py:51 msgid "Search Parts" msgstr "Procurar Peças" -#: common/setting/user.py:46 +#: common/setting/user.py:52 msgid "Display parts in search preview window" msgstr "Mostrar peças na janela de visualização de pesquisa" -#: common/setting/user.py:51 +#: common/setting/user.py:57 msgid "Search Supplier Parts" msgstr "Buscar Peças do Fornecedor" -#: common/setting/user.py:52 +#: common/setting/user.py:58 msgid "Display supplier parts in search preview window" msgstr "Mostrar fornecedor de peças na janela de visualização de pesquisa" -#: common/setting/user.py:57 +#: common/setting/user.py:63 msgid "Search Manufacturer Parts" msgstr "Buscar peças do fabricante" -#: common/setting/user.py:58 +#: common/setting/user.py:64 msgid "Display manufacturer parts in search preview window" msgstr "Mostrar fabricante de peças na janela de visualização de pesquisa" -#: common/setting/user.py:63 +#: common/setting/user.py:69 msgid "Hide Inactive Parts" msgstr "Ocultar peças inativas" -#: common/setting/user.py:64 +#: common/setting/user.py:70 msgid "Excluded inactive parts from search preview window" msgstr "Não incluir peças inativas na janela de visualização de pesquisa" -#: common/setting/user.py:69 +#: common/setting/user.py:75 msgid "Search Categories" msgstr "Pesquisar Categorias" -#: common/setting/user.py:70 +#: common/setting/user.py:76 msgid "Display part categories in search preview window" msgstr "Mostrar categoria das peças na janela de visualização de pesquisa" -#: common/setting/user.py:75 +#: common/setting/user.py:81 msgid "Search Stock" msgstr "Pesquisar Estoque" -#: common/setting/user.py:76 +#: common/setting/user.py:82 msgid "Display stock items in search preview window" msgstr "Mostrar itens do estoque na janela de visualização de pesquisa" -#: common/setting/user.py:81 +#: common/setting/user.py:87 msgid "Hide Unavailable Stock Items" msgstr "Ocultar itens do estoque indisponíveis" -#: common/setting/user.py:83 +#: common/setting/user.py:89 msgid "Exclude stock items which are not available from the search preview window" msgstr "Não incluir itens de estoque que não estão disponíveis na janela de visualização de pesquisa" -#: common/setting/user.py:89 +#: common/setting/user.py:95 msgid "Search Locations" msgstr "Procurar Locais" -#: common/setting/user.py:90 +#: common/setting/user.py:96 msgid "Display stock locations in search preview window" msgstr "Mostrar locais de estoque na janela de visualização de pesquisa" -#: common/setting/user.py:95 +#: common/setting/user.py:101 msgid "Search Companies" msgstr "Pesquisar empresas" -#: common/setting/user.py:96 +#: common/setting/user.py:102 msgid "Display companies in search preview window" msgstr "Mostrar empresas na janela de visualização de pesquisa" -#: common/setting/user.py:101 +#: common/setting/user.py:107 msgid "Search Build Orders" msgstr "Pesquisar Pedidos de Produção" -#: common/setting/user.py:102 +#: common/setting/user.py:108 msgid "Display build orders in search preview window" msgstr "Mostrar pedidos de produção na janela de visualização de pesquisa" -#: common/setting/user.py:107 +#: common/setting/user.py:113 msgid "Search Purchase Orders" msgstr "Pesquisar Pedido de Compras" -#: common/setting/user.py:108 +#: common/setting/user.py:114 msgid "Display purchase orders in search preview window" msgstr "Mostrar pedidos de compra na janela de visualização de pesquisa" -#: common/setting/user.py:113 +#: common/setting/user.py:119 msgid "Exclude Inactive Purchase Orders" msgstr "Não incluir Pedidos de Compras Inativos" -#: common/setting/user.py:114 +#: common/setting/user.py:120 msgid "Exclude inactive purchase orders from search preview window" msgstr "Não incluir pedidos de compras inativos na janela de visualização de pesquisa" -#: common/setting/user.py:119 +#: common/setting/user.py:125 msgid "Search Sales Orders" msgstr "Pesquisar Pedidos de Vendas" -#: common/setting/user.py:120 +#: common/setting/user.py:126 msgid "Display sales orders in search preview window" msgstr "Exibir pedidos de vendas na janela de visualização de pesquisa" -#: common/setting/user.py:125 +#: common/setting/user.py:131 msgid "Exclude Inactive Sales Orders" msgstr "Não Incluir Pedidos de Compras Inativas" -#: common/setting/user.py:126 +#: common/setting/user.py:132 msgid "Exclude inactive sales orders from search preview window" msgstr "Não incluir pedidos de vendas inativos na janela de visualização de pesquisa" -#: common/setting/user.py:131 +#: common/setting/user.py:137 msgid "Search Sales Order Shipments" msgstr "Pesquisar envios do Pedido de Venda" -#: common/setting/user.py:132 +#: common/setting/user.py:138 msgid "Display sales order shipments in search preview window" msgstr "Exibir envios do pedido de venda na janela de pré-visualização" -#: common/setting/user.py:137 +#: common/setting/user.py:143 msgid "Search Return Orders" msgstr "Procurar Pedidos de Devolução" -#: common/setting/user.py:138 +#: common/setting/user.py:144 msgid "Display return orders in search preview window" msgstr "Exibir pedidos de devolução na janela de pré-visualização de pesquisa" -#: common/setting/user.py:143 +#: common/setting/user.py:149 msgid "Exclude Inactive Return Orders" msgstr "Não Incluir Pedidos de Devolução Inativas" -#: common/setting/user.py:144 +#: common/setting/user.py:150 msgid "Exclude inactive return orders from search preview window" msgstr "Não incluir pedidos de devolução inativos na janela de visualização de pesquisa" -#: common/setting/user.py:149 +#: common/setting/user.py:155 msgid "Search Preview Results" msgstr "Ver resultados da pesquisa" -#: common/setting/user.py:151 +#: common/setting/user.py:157 msgid "Number of results to show in each section of the search preview window" msgstr "Número de resultados mostrados em cada seção da janela de visualização de pesquisa" -#: common/setting/user.py:157 +#: common/setting/user.py:163 msgid "Regex Search" msgstr "Pesquisa de Regex" -#: common/setting/user.py:158 +#: common/setting/user.py:164 msgid "Enable regular expressions in search queries" msgstr "Ativar expressões regulares nas consultas de pesquisa" -#: common/setting/user.py:163 +#: common/setting/user.py:169 msgid "Whole Word Search" msgstr "Pesquisar Palavras Inteiras" -#: common/setting/user.py:164 +#: common/setting/user.py:170 msgid "Search queries return results for whole word matches" msgstr "Consultas de pesquisa retornam resultados para partidas de palavra inteira" -#: common/setting/user.py:169 +#: common/setting/user.py:175 msgid "Search Notes" msgstr "Pesquisar Notas" -#: common/setting/user.py:171 +#: common/setting/user.py:177 msgid "Search queries return results for matches from the item's notes" msgstr "Resultados das consultas de pesquisa para correspondências das notas do item" -#: common/setting/user.py:177 +#: common/setting/user.py:183 msgid "Escape Key Closes Forms" msgstr "Tecla Esc Fecha Formulários" -#: common/setting/user.py:178 +#: common/setting/user.py:184 msgid "Use the escape key to close modal forms" msgstr "Usar a tecla Esc para fechar fomulários modais" -#: common/setting/user.py:183 +#: common/setting/user.py:189 msgid "Fixed Navbar" msgstr "Barra de navegação fixa" -#: common/setting/user.py:184 +#: common/setting/user.py:190 msgid "The navbar position is fixed to the top of the screen" msgstr "A posição da barra de navegação está fixa no topo da tela" -#: common/setting/user.py:189 +#: common/setting/user.py:195 msgid "Fixed Table Headers" msgstr "Cabeçalhos da Tabela Fixa" -#: common/setting/user.py:190 +#: common/setting/user.py:196 msgid "Table headers are fixed to the top of the table" msgstr "Cabeçalhos de tabela são fixos no topo da tabela" -#: common/setting/user.py:195 +#: common/setting/user.py:201 msgid "Show Spotlight" msgstr "" -#: common/setting/user.py:196 +#: common/setting/user.py:202 msgid "Enable spotlight navigation functionality" msgstr "" -#: common/setting/user.py:201 +#: common/setting/user.py:207 msgid "Navigation Icons" msgstr "Ícones de Navegação" -#: common/setting/user.py:202 +#: common/setting/user.py:208 msgid "Display icons in the navigation bar" msgstr "Exibir ícones na barra de navegação" -#: common/setting/user.py:207 +#: common/setting/user.py:213 msgid "Date Format" msgstr "Formato da data" -#: common/setting/user.py:208 +#: common/setting/user.py:214 msgid "Preferred format for displaying dates" msgstr "Formato preferido para exibir datas" -#: common/setting/user.py:221 +#: common/setting/user.py:227 msgid "Show Stock History" msgstr "Mostrar histórico de ações" -#: common/setting/user.py:222 +#: common/setting/user.py:228 msgid "Display stock history information in the part detail page" msgstr "Mostrar informações do histórico de estoque na página de detalhes do capítulo" -#: common/setting/user.py:227 +#: common/setting/user.py:233 msgid "Show Last Breadcrumb" msgstr "Mostrar última navegação" -#: common/setting/user.py:228 +#: common/setting/user.py:234 msgid "Show the current page in breadcrumbs" msgstr "Mostrar a página atual em breadcrumbs" -#: common/setting/user.py:233 +#: common/setting/user.py:239 msgid "Show full stock location in tables" msgstr "Mostrar localização completa do estoque nas tabelas" -#: common/setting/user.py:235 +#: common/setting/user.py:241 msgid "Disabled: The full location path is displayed as a hover tooltip. Enabled: The full location path is displayed as plain text." msgstr "Desativado: O caminho completo da localização é exibido como uma dica do mouse. Ativado: O caminho completo da localização é exibido como texto sem formatação." -#: common/setting/user.py:241 +#: common/setting/user.py:247 msgid "Show full part categories in tables" msgstr "Mostrar categorias completas do capítulo nas tabelas" -#: common/setting/user.py:243 +#: common/setting/user.py:249 msgid "Disabled: The full category path is displayed as a hover tooltip. Enabled: The full category path is displayed as plain text." msgstr "Desativado: O caminho completo da categoria é exibido como uma dica do mouse. Habilitado: O caminho completo da categoria é exibido como texto sem formatação." -#: common/setting/user.py:249 +#: common/setting/user.py:255 msgid "Receive error reports" msgstr "Receber relatório de erros" -#: common/setting/user.py:250 +#: common/setting/user.py:256 msgid "Receive notifications for system errors" msgstr "Receber notificações para erros do sistema" -#: common/setting/user.py:255 +#: common/setting/user.py:261 msgid "Last used printing machines" msgstr "Últimas máquinas de impressão utilizadas" -#: common/setting/user.py:256 +#: common/setting/user.py:262 msgid "Save the last used printing machines for a user" msgstr "Salvar as últimas máquinas de impressão usadas para um usuário" -#: common/validators.py:34 +#: common/validators.py:38 +msgid "All models" +msgstr "" + +#: common/validators.py:63 msgid "No attachment model type provided" msgstr "Nenhum modelo de anexo fornecido" -#: common/validators.py:40 +#: common/validators.py:69 msgid "Invalid attachment model type" msgstr "Categoria de modelo de anexo inválido" -#: common/validators.py:81 +#: common/validators.py:110 msgid "Minimum places cannot be greater than maximum places" msgstr "Os lugares mínimos não podem ser maiores que os máximos" -#: common/validators.py:93 +#: common/validators.py:122 msgid "Maximum places cannot be less than minimum places" msgstr "Os lugares maiores não podem ser menores que os máximos" -#: common/validators.py:104 +#: common/validators.py:133 msgid "An empty domain is not allowed." msgstr "Um domínio vazio não é permitido." -#: common/validators.py:106 +#: common/validators.py:135 #, python-brace-format msgid "Invalid domain name: {domain}" msgstr "Nome de domínio inválido: {domain}" -#: common/validators.py:122 +#: common/validators.py:151 msgid "Value must be uppercase" msgstr "Valor deve ser maiúsculo" -#: common/validators.py:128 +#: common/validators.py:157 msgid "Value must be a valid variable identifier" msgstr "O valor deve ser um identificador de variável válido" -#: company/api.py:147 +#: company/api.py:141 msgid "Part is Active" msgstr "A peça está ativa" -#: company/api.py:151 +#: company/api.py:145 msgid "Manufacturer is Active" msgstr "Fabricante está ativo" -#: company/api.py:286 +#: company/api.py:246 msgid "Supplier Part is Active" msgstr "A peça do Fornecedor está ativa" -#: company/api.py:290 +#: company/api.py:250 msgid "Internal Part is Active" msgstr "A peça interna está ativa" -#: company/api.py:295 +#: company/api.py:255 msgid "Supplier is Active" msgstr "O fornecedor está Ativo" -#: company/api.py:307 company/models.py:520 company/serializers.py:457 -#: part/serializers.py:566 +#: company/api.py:267 company/models.py:522 company/serializers.py:502 +#: part/serializers.py:477 msgid "Manufacturer" msgstr "Fabricante" -#: company/api.py:314 company/models.py:121 company/models.py:392 +#: company/api.py:274 company/models.py:122 company/models.py:393 #: stock/api.py:900 msgid "Company" msgstr "Empresa" -#: company/api.py:324 +#: company/api.py:284 msgid "Has Stock" msgstr "Tem estoque" -#: company/models.py:122 +#: company/models.py:123 msgid "Companies" msgstr "Empresas" -#: company/models.py:150 +#: company/models.py:151 msgid "Company description" msgstr "Descrição da empresa" -#: company/models.py:151 +#: company/models.py:152 msgid "Description of the company" msgstr "Descrição da empresa" -#: company/models.py:157 +#: company/models.py:158 msgid "Website" msgstr "Página Web" -#: company/models.py:158 +#: company/models.py:159 msgid "Company website URL" msgstr "URL do Site da empresa" -#: company/models.py:164 +#: company/models.py:165 msgid "Phone number" msgstr "Número de telefone" -#: company/models.py:166 +#: company/models.py:167 msgid "Contact phone number" msgstr "Número de telefone do contato" -#: company/models.py:173 +#: company/models.py:174 msgid "Contact email address" msgstr "Endereço de e-mail do contato" -#: company/models.py:178 company/models.py:296 order/models.py:513 +#: company/models.py:179 company/models.py:297 order/models.py:514 #: users/models.py:561 msgid "Contact" msgstr "Contato" -#: company/models.py:180 +#: company/models.py:181 msgid "Point of contact" msgstr "Ponto de contato" -#: company/models.py:186 +#: company/models.py:187 msgid "Link to external company information" msgstr "Link para informações externas da empresa" -#: company/models.py:191 +#: company/models.py:192 msgid "Is this company active?" msgstr "Esta empresa está ativa?" -#: company/models.py:196 +#: company/models.py:197 msgid "Is customer" msgstr "É um cliente" -#: company/models.py:197 +#: company/models.py:198 msgid "Do you sell items to this company?" msgstr "Você vende itens para esta empresa?" -#: company/models.py:202 +#: company/models.py:203 msgid "Is supplier" msgstr "É fornecedor" -#: company/models.py:203 +#: company/models.py:204 msgid "Do you purchase items from this company?" msgstr "Você compra itens desta empresa?" -#: company/models.py:208 +#: company/models.py:209 msgid "Is manufacturer" msgstr "É fabricante" -#: company/models.py:209 +#: company/models.py:210 msgid "Does this company manufacture parts?" msgstr "Esta empresa fabrica peças?" -#: company/models.py:217 +#: company/models.py:218 msgid "Default currency used for this company" msgstr "Moeda padrão utilizada para esta empresa" -#: company/models.py:224 +#: company/models.py:225 msgid "Tax ID" msgstr "CNPJ" -#: company/models.py:225 +#: company/models.py:226 msgid "Company Tax ID" msgstr "CNPJ da empresa" -#: company/models.py:335 order/models.py:523 order/models.py:2288 +#: company/models.py:336 order/models.py:524 order/models.py:2289 msgid "Address" msgstr "Endereço" -#: company/models.py:336 +#: company/models.py:337 msgid "Addresses" msgstr "Endereços" -#: company/models.py:393 +#: company/models.py:394 msgid "Select company" msgstr "Selecione a Empresa" -#: company/models.py:398 +#: company/models.py:399 msgid "Address title" msgstr "Título do endereço" -#: company/models.py:399 +#: company/models.py:400 msgid "Title describing the address entry" msgstr "Título descrevendo a entrada do endereço" -#: company/models.py:405 +#: company/models.py:406 msgid "Primary address" msgstr "Endereço Principal" -#: company/models.py:406 +#: company/models.py:407 msgid "Set as primary address" msgstr "Definir como endereço principal" -#: company/models.py:411 +#: company/models.py:412 msgid "Line 1" msgstr "Linha 1" -#: company/models.py:412 +#: company/models.py:413 msgid "Address line 1" msgstr "Linha de endereço 1" -#: company/models.py:418 +#: company/models.py:419 msgid "Line 2" msgstr "Linha 2" -#: company/models.py:419 +#: company/models.py:420 msgid "Address line 2" msgstr "Linha de endereço 2" -#: company/models.py:425 company/models.py:426 +#: company/models.py:426 company/models.py:427 msgid "Postal code" msgstr "CEP" -#: company/models.py:432 +#: company/models.py:433 msgid "City/Region" msgstr "Cidade/Região" -#: company/models.py:433 +#: company/models.py:434 msgid "Postal code city/region" msgstr "Cidade CEP / região" -#: company/models.py:439 +#: company/models.py:440 msgid "State/Province" msgstr "Estado/Provincia" -#: company/models.py:440 +#: company/models.py:441 msgid "State or province" msgstr "Estado ou Província" -#: company/models.py:446 +#: company/models.py:447 msgid "Country" msgstr "País" -#: company/models.py:447 +#: company/models.py:448 msgid "Address country" msgstr "País do endereço" -#: company/models.py:453 +#: company/models.py:454 msgid "Courier shipping notes" msgstr "Notas de envio por correio" -#: company/models.py:454 +#: company/models.py:455 msgid "Notes for shipping courier" msgstr "Notas para o envio da transportadora" -#: company/models.py:460 +#: company/models.py:461 msgid "Internal shipping notes" msgstr "Notas de envio interno" -#: company/models.py:461 +#: company/models.py:462 msgid "Shipping notes for internal use" msgstr "Notas de envio para uso interno" -#: company/models.py:468 +#: company/models.py:469 msgid "Link to address information (external)" msgstr "Link para as informações do endereço (externo)" -#: company/models.py:492 company/models.py:609 company/models.py:832 -#: company/serializers.py:471 stock/api.py:561 +#: company/models.py:494 company/models.py:786 company/serializers.py:516 +#: stock/api.py:561 msgid "Manufacturer Part" msgstr "Fabricante da peça" -#: company/models.py:509 company/models.py:800 stock/models.py:1025 +#: company/models.py:511 company/models.py:754 stock/models.py:1025 #: stock/serializers.py:407 msgid "Base Part" msgstr "Peça base" -#: company/models.py:511 company/models.py:802 +#: company/models.py:513 company/models.py:756 msgid "Select part" msgstr "Selecionar peça" -#: company/models.py:521 +#: company/models.py:523 msgid "Select manufacturer" msgstr "Selecionar fabricante" -#: company/models.py:527 company/serializers.py:479 order/serializers.py:734 -#: part/serializers.py:576 +#: company/models.py:529 company/serializers.py:524 order/serializers.py:745 +#: part/serializers.py:487 msgid "MPN" msgstr "NPF" -#: company/models.py:528 stock/serializers.py:572 +#: company/models.py:530 stock/serializers.py:572 msgid "Manufacturer Part Number" msgstr "Número de Peça do Fabricante" -#: company/models.py:535 +#: company/models.py:537 msgid "URL for external manufacturer part link" msgstr "URL do link externo da peça do fabricante" -#: company/models.py:544 +#: company/models.py:546 msgid "Manufacturer part description" msgstr "Descrição da peça do fabricante" -#: company/models.py:597 -msgid "Manufacturer Part Parameter" -msgstr "Parâmetro da peça do fabricante" - -#: company/models.py:616 -msgid "Parameter name" -msgstr "Nome do parâmetro" - -#: company/models.py:623 -msgid "Parameter value" -msgstr "Valor do Parâmetro" - -#: company/models.py:630 part/models.py:1195 part/models.py:3857 -msgid "Units" -msgstr "Unidades" - -#: company/models.py:631 -msgid "Parameter units" -msgstr "Unidades do parâmetro" - -#: company/models.py:740 +#: company/models.py:694 msgid "Pack units must be compatible with the base part units" msgstr "Unidades de pacote devem ser compatíveis com as unidades de peça base" -#: company/models.py:747 +#: company/models.py:701 msgid "Pack units must be greater than zero" msgstr "Unidades de pacote devem ser maior que zero" -#: company/models.py:761 +#: company/models.py:715 msgid "Linked manufacturer part must reference the same base part" msgstr "Parte do fabricante vinculado deve fazer referência à mesma peça base" -#: company/models.py:810 company/serializers.py:449 company/serializers.py:467 -#: order/models.py:639 part/serializers.py:550 +#: company/models.py:764 company/serializers.py:494 company/serializers.py:512 +#: order/models.py:640 part/serializers.py:461 #: plugin/builtin/suppliers/digikey.py:26 plugin/builtin/suppliers/lcsc.py:27 #: plugin/builtin/suppliers/mouser.py:25 plugin/builtin/suppliers/tme.py:27 #: stock/api.py:567 templates/email/overdue_purchase_order.html:16 msgid "Supplier" msgstr "Fornecedor" -#: company/models.py:811 +#: company/models.py:765 msgid "Select supplier" msgstr "Selecione o fornecedor" -#: company/models.py:817 part/serializers.py:561 +#: company/models.py:771 part/serializers.py:472 msgid "Supplier stock keeping unit" msgstr "Unidade de reserva de estoque fornecedor" -#: company/models.py:823 +#: company/models.py:777 msgid "Is this supplier part active?" msgstr "Esta parte de fornecedor está ativa?" -#: company/models.py:833 +#: company/models.py:787 msgid "Select manufacturer part" msgstr "Selecionar peça do fabricante" -#: company/models.py:840 +#: company/models.py:794 msgid "URL for external supplier part link" msgstr "URL do link externo da peça do fabricante" -#: company/models.py:849 +#: company/models.py:803 msgid "Supplier part description" msgstr "Descrição da peça fornecedor" -#: company/models.py:856 order/serializers.py:883 order/serializers.py:2047 -#: part/models.py:4070 part/models.py:4450 part/models.py:4819 -#: report/templates/report/inventree_bill_of_materials_report.html:140 -#: report/templates/report/inventree_purchase_order_report.html:39 -#: report/templates/report/inventree_return_order_report.html:27 -#: report/templates/report/inventree_sales_order_report.html:32 -#: report/templates/report/inventree_stock_location_report.html:105 -#: stock/serializers.py:813 -msgid "Note" -msgstr "Anotação" - -#: company/models.py:865 part/models.py:2250 +#: company/models.py:819 part/models.py:2338 msgid "base cost" msgstr "preço base" -#: company/models.py:866 part/models.py:2251 +#: company/models.py:820 part/models.py:2339 msgid "Minimum charge (e.g. stocking fee)" msgstr "Taxa mínima (ex.: taxa de estoque)" -#: company/models.py:873 order/serializers.py:875 stock/models.py:1056 +#: company/models.py:827 order/serializers.py:886 stock/models.py:1056 #: stock/serializers.py:1606 msgid "Packaging" msgstr "Embalagem" -#: company/models.py:874 +#: company/models.py:828 msgid "Part packaging" msgstr "Embalagem de peças" -#: company/models.py:879 +#: company/models.py:833 msgid "Pack Quantity" msgstr "Quantidade de embalagens" -#: company/models.py:881 +#: company/models.py:835 msgid "Total quantity supplied in a single pack. Leave empty for single items." msgstr "Quantidade total fornecida em um único pacote. Deixe em branco para itens individuais." -#: company/models.py:900 part/models.py:2257 +#: company/models.py:854 part/models.py:2345 msgid "multiple" msgstr "múltiplo" -#: company/models.py:901 +#: company/models.py:855 msgid "Order multiple" msgstr "Pedido múltiplo" -#: company/models.py:913 +#: company/models.py:867 msgid "Quantity available from supplier" msgstr "Quantidade disponível do fornecedor" -#: company/models.py:919 +#: company/models.py:873 msgid "Availability Updated" msgstr "Disponibilidade Atualizada" -#: company/models.py:920 +#: company/models.py:874 msgid "Date of last update of availability data" msgstr "Data da última atualização de dados disponíveis" -#: company/models.py:1048 +#: company/models.py:1002 msgid "Supplier Price Break" msgstr "Parcelamento de Preço do Fornecedor" -#: company/serializers.py:181 +#: company/serializers.py:184 +msgid "Primary Address" +msgstr "" + +#: company/serializers.py:186 msgid "Return the string representation for the primary address. This property exists for backwards compatibility." msgstr "Retorna a representação de cadeia de caracteres para o endereço primário. Esta propriedade existe para compatibilidade retroativa." -#: company/serializers.py:212 +#: company/serializers.py:218 msgid "Default currency used for this supplier" msgstr "Moeda padrão utilizada para este fornecedor" -#: company/serializers.py:248 +#: company/serializers.py:260 msgid "Company Name" msgstr "Nome da Empresa" -#: company/serializers.py:433 part/serializers.py:955 stock/serializers.py:428 +#: company/serializers.py:460 part/serializers.py:840 stock/serializers.py:428 msgid "In Stock" msgstr "Em Estoque" +#: company/serializers.py:477 +msgid "Price Breaks" +msgstr "" + #: data_exporter/mixins.py:325 data_exporter/mixins.py:403 msgid "Error occurred during data export" msgstr "Ocorreu um erro ao exportar os dados" @@ -4290,7 +4418,7 @@ msgstr "Dados da linha original" msgid "Errors" msgstr "Erros" -#: importer/models.py:550 part/serializers.py:1268 +#: importer/models.py:550 part/serializers.py:1133 msgid "Valid" msgstr "Válido" @@ -4402,7 +4530,7 @@ msgstr "Número de cópias para cada rótulo" msgid "Connected" msgstr "Conectado" -#: machine/machine_types/label_printer.py:232 order/api.py:1795 +#: machine/machine_types/label_printer.py:232 order/api.py:1800 msgid "Unknown" msgstr "Desconhecido" @@ -4530,105 +4658,105 @@ msgstr "" msgid "Maximum value for progress type, required if type=progress" msgstr "" -#: order/api.py:125 +#: order/api.py:130 msgid "Order Reference" msgstr "Referência do Pedido" -#: order/api.py:153 order/api.py:1207 +#: order/api.py:158 order/api.py:1212 msgid "Outstanding" msgstr "Pendente" -#: order/api.py:169 +#: order/api.py:174 msgid "Has Project Code" msgstr "Tem código do projeto" -#: order/api.py:183 order/models.py:488 +#: order/api.py:188 order/models.py:489 msgid "Created By" msgstr "Criado por" -#: order/api.py:187 +#: order/api.py:192 msgid "Created Before" msgstr "Criado Antes" -#: order/api.py:191 +#: order/api.py:196 msgid "Created After" msgstr "Criado Após" -#: order/api.py:195 +#: order/api.py:200 msgid "Has Start Date" msgstr "Tem Data Inicial" -#: order/api.py:203 +#: order/api.py:208 msgid "Start Date Before" msgstr "Data Inicial Antes" -#: order/api.py:207 +#: order/api.py:212 msgid "Start Date After" msgstr "Data Inicial Após" -#: order/api.py:211 +#: order/api.py:216 msgid "Has Target Date" msgstr "Tem Data Prevista" -#: order/api.py:219 +#: order/api.py:224 msgid "Target Date Before" msgstr "Data Prevista Antes" -#: order/api.py:223 +#: order/api.py:228 msgid "Target Date After" msgstr "Data Prevista Antes" -#: order/api.py:274 +#: order/api.py:279 msgid "Has Pricing" msgstr "Tem Preço" -#: order/api.py:327 order/api.py:812 order/api.py:1490 +#: order/api.py:332 order/api.py:818 order/api.py:1495 msgid "Completed Before" msgstr "Concluído Antes" -#: order/api.py:331 order/api.py:816 order/api.py:1494 +#: order/api.py:336 order/api.py:822 order/api.py:1499 msgid "Completed After" msgstr "Concluído Após" -#: order/api.py:337 order/api.py:341 +#: order/api.py:342 order/api.py:346 msgid "External Build Order" msgstr "Pedido de Produção Vencido" -#: order/api.py:526 order/api.py:914 order/api.py:1170 order/models.py:1922 -#: order/models.py:2049 order/models.py:2099 order/models.py:2279 -#: order/models.py:2477 order/models.py:2999 order/models.py:3065 +#: order/api.py:532 order/api.py:919 order/api.py:1175 order/models.py:1923 +#: order/models.py:2050 order/models.py:2100 order/models.py:2280 +#: order/models.py:2478 order/models.py:3000 order/models.py:3066 msgid "Order" msgstr "Pedido" -#: order/api.py:530 order/api.py:982 +#: order/api.py:536 order/api.py:987 msgid "Order Complete" msgstr "Pedido Completo" -#: order/api.py:562 order/api.py:566 order/serializers.py:745 +#: order/api.py:568 order/api.py:572 order/serializers.py:756 msgid "Internal Part" msgstr "Peça Interna" -#: order/api.py:584 +#: order/api.py:590 msgid "Order Pending" msgstr "Pedido pendente" -#: order/api.py:967 +#: order/api.py:972 msgid "Completed" msgstr "Concluído" -#: order/api.py:1223 +#: order/api.py:1228 msgid "Has Shipment" msgstr "Possui Envio" -#: order/api.py:1789 order/models.py:552 order/models.py:1923 -#: order/models.py:2050 +#: order/api.py:1794 order/models.py:553 order/models.py:1924 +#: order/models.py:2051 #: report/templates/report/inventree_purchase_order_report.html:14 #: stock/serializers.py:129 templates/email/overdue_purchase_order.html:15 msgid "Purchase Order" msgstr "Pedido de Compra" -#: order/api.py:1791 order/models.py:1251 order/models.py:2100 -#: order/models.py:2280 order/models.py:2478 +#: order/api.py:1796 order/models.py:1252 order/models.py:2101 +#: order/models.py:2281 order/models.py:2479 #: report/templates/report/inventree_build_order_report.html:135 #: report/templates/report/inventree_sales_order_report.html:14 #: report/templates/report/inventree_sales_order_shipment_report.html:15 @@ -4636,8 +4764,8 @@ msgstr "Pedido de Compra" msgid "Sales Order" msgstr "Pedido de Venda" -#: order/api.py:1793 order/models.py:2649 order/models.py:3000 -#: order/models.py:3066 +#: order/api.py:1798 order/models.py:2650 order/models.py:3001 +#: order/models.py:3067 #: report/templates/report/inventree_return_order_report.html:13 #: templates/email/overdue_return_order.html:15 msgid "Return Order" @@ -4653,722 +4781,722 @@ msgstr "Preço Total" msgid "Total price for this order" msgstr "Preço total deste pedido" -#: order/models.py:96 order/serializers.py:77 +#: order/models.py:96 order/serializers.py:78 msgid "Order Currency" msgstr "Moeda do Pedido" -#: order/models.py:99 order/serializers.py:78 +#: order/models.py:99 order/serializers.py:79 msgid "Currency for this order (leave blank to use company default)" msgstr "Moeda para este pedido (deixe em branco para usar o padrão da empresa)" -#: order/models.py:324 +#: order/models.py:325 msgid "This order is locked and cannot be modified" msgstr "Este pedido está bloqueado e não pode ser modificado" -#: order/models.py:376 +#: order/models.py:377 msgid "Contact does not match selected company" msgstr "O contato não corresponde à empresa selecionada" -#: order/models.py:383 +#: order/models.py:384 msgid "Start date must be before target date" msgstr "Data inicial deve ser anterior à data limite" -#: order/models.py:390 +#: order/models.py:391 msgid "Address does not match selected company" msgstr "" -#: order/models.py:443 +#: order/models.py:444 msgid "Order description (optional)" msgstr "Descrição do pedido (opcional)" -#: order/models.py:452 order/models.py:1806 +#: order/models.py:453 order/models.py:1807 msgid "Select project code for this order" msgstr "Selecione o código do projeto para este pedido" -#: order/models.py:458 order/models.py:1787 order/models.py:2344 +#: order/models.py:459 order/models.py:1788 order/models.py:2345 msgid "Link to external page" msgstr "Link para página externa" -#: order/models.py:465 +#: order/models.py:466 msgid "Start date" msgstr "Data inicial" -#: order/models.py:466 +#: order/models.py:467 msgid "Scheduled start date for this order" msgstr "Data de início programada para esta encomenda" -#: order/models.py:472 order/models.py:1794 order/serializers.py:309 +#: order/models.py:473 order/models.py:1795 order/serializers.py:317 #: report/templates/report/inventree_build_order_report.html:125 msgid "Target Date" msgstr "Data Prevista" -#: order/models.py:474 +#: order/models.py:475 msgid "Expected date for order delivery. Order will be overdue after this date." msgstr "Data esperada para entrega do pedido. O Pedido estará atrasado após esta data." -#: order/models.py:494 +#: order/models.py:495 msgid "Issue Date" msgstr "Data de emissão" -#: order/models.py:495 +#: order/models.py:496 msgid "Date order was issued" msgstr "Dia que o pedido foi feito" -#: order/models.py:503 +#: order/models.py:504 msgid "User or group responsible for this order" msgstr "Usuário ou grupo responsável para este pedido" -#: order/models.py:514 +#: order/models.py:515 msgid "Point of contact for this order" msgstr "Ponto de contato para este pedido" -#: order/models.py:524 +#: order/models.py:525 msgid "Company address for this order" msgstr "Endereço da empresa para este pedido" -#: order/models.py:615 order/models.py:1312 +#: order/models.py:616 order/models.py:1313 msgid "Order reference" msgstr "Referência do pedido" -#: order/models.py:624 order/models.py:1336 order/models.py:2737 +#: order/models.py:625 order/models.py:1337 order/models.py:2738 #: stock/serializers.py:559 stock/serializers.py:988 users/models.py:542 msgid "Status" msgstr "Situação" -#: order/models.py:625 +#: order/models.py:626 msgid "Purchase order status" msgstr "Estado do pedido" -#: order/models.py:640 +#: order/models.py:641 msgid "Company from which the items are being ordered" msgstr "Empresa da qual os itens estão sendo encomendados" -#: order/models.py:651 +#: order/models.py:652 msgid "Supplier Reference" msgstr "Referencia do fornecedor" -#: order/models.py:652 +#: order/models.py:653 msgid "Supplier order reference code" msgstr "Código de referência do pedido fornecedor" -#: order/models.py:661 +#: order/models.py:662 msgid "received by" msgstr "recebido por" -#: order/models.py:668 order/models.py:2752 +#: order/models.py:669 order/models.py:2753 msgid "Date order was completed" msgstr "Dia que o pedido foi concluído" -#: order/models.py:677 order/models.py:1981 +#: order/models.py:678 order/models.py:1982 msgid "Destination" msgstr "Destino" -#: order/models.py:678 order/models.py:1985 +#: order/models.py:679 order/models.py:1986 msgid "Destination for received items" msgstr "Destino para os itens recebidos" -#: order/models.py:724 +#: order/models.py:725 msgid "Part supplier must match PO supplier" msgstr "Fornecedor de peça deve corresponder a fornecedor da OC" -#: order/models.py:994 +#: order/models.py:995 msgid "Line item does not match purchase order" msgstr "" -#: order/models.py:997 +#: order/models.py:998 msgid "Line item is missing a linked part" msgstr "" -#: order/models.py:1011 +#: order/models.py:1012 msgid "Quantity must be a positive number" msgstr "Quantidade deve ser um número positivo" -#: order/models.py:1323 order/models.py:2724 stock/models.py:1078 +#: order/models.py:1324 order/models.py:2725 stock/models.py:1078 #: stock/models.py:1079 stock/serializers.py:1322 #: templates/email/overdue_return_order.html:16 #: templates/email/overdue_sales_order.html:16 msgid "Customer" msgstr "Cliente" -#: order/models.py:1324 +#: order/models.py:1325 msgid "Company to which the items are being sold" msgstr "Empresa para qual os itens foi vendidos" -#: order/models.py:1337 +#: order/models.py:1338 msgid "Sales order status" msgstr "Situação do Pedido de Venda" -#: order/models.py:1348 order/models.py:2744 +#: order/models.py:1349 order/models.py:2745 msgid "Customer Reference " msgstr "Referência do Cliente " -#: order/models.py:1349 order/models.py:2745 +#: order/models.py:1350 order/models.py:2746 msgid "Customer order reference code" msgstr "Código de Referência do pedido do cliente" -#: order/models.py:1353 order/models.py:2296 +#: order/models.py:1354 order/models.py:2297 msgid "Shipment Date" msgstr "Data de envio" -#: order/models.py:1362 +#: order/models.py:1363 msgid "shipped by" msgstr "enviado por" -#: order/models.py:1413 +#: order/models.py:1414 msgid "Order is already complete" msgstr "O pedido já está completo" -#: order/models.py:1416 +#: order/models.py:1417 msgid "Order is already cancelled" msgstr "O pedido já está cancelado" -#: order/models.py:1420 +#: order/models.py:1421 msgid "Only an open order can be marked as complete" msgstr "Apenas um pedido aberto pode ser marcado como completo" -#: order/models.py:1424 +#: order/models.py:1425 msgid "Order cannot be completed as there are incomplete shipments" msgstr "Pedido não pode ser concluído, pois, há envios incompletos" -#: order/models.py:1429 +#: order/models.py:1430 msgid "Order cannot be completed as there are incomplete allocations" msgstr "O pedido não pode ser concluído, pois, há alocações incompletas" -#: order/models.py:1438 +#: order/models.py:1439 msgid "Order cannot be completed as there are incomplete line items" msgstr "O pedido não pode ser concluído, pois, há itens de linha incompletos" -#: order/models.py:1733 order/models.py:1749 +#: order/models.py:1734 order/models.py:1750 msgid "The order is locked and cannot be modified" msgstr "O pedido está bloqueado e não pode ser modificado" -#: order/models.py:1757 +#: order/models.py:1758 msgid "Item quantity" msgstr "Quantidade do item" -#: order/models.py:1774 +#: order/models.py:1775 msgid "Line item reference" msgstr "Referência do Item em Linha" -#: order/models.py:1781 +#: order/models.py:1782 msgid "Line item notes" msgstr "Observações do Item de Linha" -#: order/models.py:1796 +#: order/models.py:1797 msgid "Target date for this line item (leave blank to use the target date from the order)" msgstr "Data limite para este item de linha (deixe em branco para usar a data limite do pedido)" -#: order/models.py:1826 +#: order/models.py:1827 msgid "Line item description (optional)" msgstr "Descrição do item de linha (opcional)" -#: order/models.py:1833 +#: order/models.py:1834 msgid "Additional context for this line" msgstr "Contexto adicional para esta linha" -#: order/models.py:1843 +#: order/models.py:1844 msgid "Unit price" msgstr "Preço Unitário" -#: order/models.py:1862 +#: order/models.py:1863 msgid "Purchase Order Line Item" msgstr "Item de linha de pedido de compra" -#: order/models.py:1889 +#: order/models.py:1890 msgid "Supplier part must match supplier" msgstr "A peça do fornecedor deve corresponder ao fornecedor" -#: order/models.py:1894 +#: order/models.py:1895 msgid "Build order must be marked as external" msgstr "Pedido de produção deve ser marcada como externa" -#: order/models.py:1901 +#: order/models.py:1902 msgid "Build orders can only be linked to assembly parts" msgstr "Os pedidos de produção só podem ser vinculados a partes de montagem" -#: order/models.py:1907 +#: order/models.py:1908 msgid "Build order part must match line item part" msgstr "Criar parte do pedido deve combinar a parte do item de linha" -#: order/models.py:1942 +#: order/models.py:1943 msgid "Supplier part" msgstr "Fornecedor da Peça" -#: order/models.py:1949 +#: order/models.py:1950 msgid "Received" msgstr "Recebido" -#: order/models.py:1950 +#: order/models.py:1951 msgid "Number of items received" msgstr "Número de itens recebidos" -#: order/models.py:1958 stock/models.py:1201 stock/serializers.py:637 +#: order/models.py:1959 stock/models.py:1201 stock/serializers.py:637 msgid "Purchase Price" msgstr "Preço de Compra" -#: order/models.py:1959 +#: order/models.py:1960 msgid "Unit purchase price" msgstr "Preço unitário de compra" -#: order/models.py:1975 +#: order/models.py:1976 msgid "External Build Order to be fulfilled by this line item" msgstr "Pedido de produção externa para ser preenchida por este item de linha" -#: order/models.py:2038 +#: order/models.py:2039 msgid "Purchase Order Extra Line" msgstr "Linha Extra do Pedido de Compra" -#: order/models.py:2067 +#: order/models.py:2068 msgid "Sales Order Line Item" msgstr "Item de Linha de Pedido de Vendas" -#: order/models.py:2092 +#: order/models.py:2093 msgid "Only salable parts can be assigned to a sales order" msgstr "Apenas peças vendáveis podem ser atribuídas a um pedido de venda" -#: order/models.py:2118 +#: order/models.py:2119 msgid "Sale Price" msgstr "Preço de Venda" -#: order/models.py:2119 +#: order/models.py:2120 msgid "Unit sale price" msgstr "Preço de venda unitário" -#: order/models.py:2128 order/status_codes.py:50 +#: order/models.py:2129 order/status_codes.py:50 msgid "Shipped" msgstr "Enviado" -#: order/models.py:2129 +#: order/models.py:2130 msgid "Shipped quantity" msgstr "Quantidade enviada" -#: order/models.py:2240 +#: order/models.py:2241 msgid "Sales Order Shipment" msgstr "Envio do Pedido de Venda" -#: order/models.py:2253 +#: order/models.py:2254 msgid "Shipment address must match the customer" msgstr "" -#: order/models.py:2289 +#: order/models.py:2290 msgid "Shipping address for this shipment" msgstr "" -#: order/models.py:2297 +#: order/models.py:2298 msgid "Date of shipment" msgstr "Data do envio" -#: order/models.py:2303 +#: order/models.py:2304 msgid "Delivery Date" msgstr "Data de Entrega" -#: order/models.py:2304 +#: order/models.py:2305 msgid "Date of delivery of shipment" msgstr "Data da entrega do envio" -#: order/models.py:2312 +#: order/models.py:2313 msgid "Checked By" msgstr "Verificado por" -#: order/models.py:2313 +#: order/models.py:2314 msgid "User who checked this shipment" msgstr "Usuário que verificou este envio" -#: order/models.py:2320 order/models.py:2574 order/serializers.py:1711 -#: order/serializers.py:1835 +#: order/models.py:2321 order/models.py:2575 order/serializers.py:1725 +#: order/serializers.py:1849 #: report/templates/report/inventree_sales_order_shipment_report.html:14 msgid "Shipment" msgstr "Envio" -#: order/models.py:2321 +#: order/models.py:2322 msgid "Shipment number" msgstr "Número do Envio" -#: order/models.py:2329 +#: order/models.py:2330 msgid "Tracking Number" msgstr "Número de rastreio" -#: order/models.py:2330 +#: order/models.py:2331 msgid "Shipment tracking information" msgstr "Informação de rastreamento" -#: order/models.py:2337 +#: order/models.py:2338 msgid "Invoice Number" msgstr "" -#: order/models.py:2338 +#: order/models.py:2339 msgid "Reference number for associated invoice" msgstr "" -#: order/models.py:2377 +#: order/models.py:2378 msgid "Shipment has already been sent" msgstr "" -#: order/models.py:2380 +#: order/models.py:2381 msgid "Shipment has no allocated stock items" msgstr "" -#: order/models.py:2387 +#: order/models.py:2388 msgid "Shipment must be checked before it can be completed" msgstr "" -#: order/models.py:2466 +#: order/models.py:2467 msgid "Sales Order Extra Line" msgstr "" -#: order/models.py:2495 +#: order/models.py:2496 msgid "Sales Order Allocation" msgstr "" -#: order/models.py:2518 order/models.py:2520 +#: order/models.py:2519 order/models.py:2521 msgid "Stock item has not been assigned" msgstr "" -#: order/models.py:2527 +#: order/models.py:2528 msgid "Cannot allocate stock item to a line with a different part" msgstr "" -#: order/models.py:2530 +#: order/models.py:2531 msgid "Cannot allocate stock to a line without a part" msgstr "" -#: order/models.py:2533 +#: order/models.py:2534 msgid "Allocation quantity cannot exceed stock quantity" msgstr "" -#: order/models.py:2552 order/serializers.py:1581 +#: order/models.py:2553 order/serializers.py:1595 msgid "Quantity must be 1 for serialized stock item" msgstr "" -#: order/models.py:2555 +#: order/models.py:2556 msgid "Sales order does not match shipment" msgstr "" -#: order/models.py:2556 plugin/base/barcodes/api.py:642 +#: order/models.py:2557 plugin/base/barcodes/api.py:642 msgid "Shipment does not match sales order" msgstr "" -#: order/models.py:2564 +#: order/models.py:2565 msgid "Line" msgstr "Linha" -#: order/models.py:2575 +#: order/models.py:2576 msgid "Sales order shipment reference" msgstr "" -#: order/models.py:2588 order/models.py:3007 +#: order/models.py:2589 order/models.py:3008 msgid "Item" msgstr "Item" -#: order/models.py:2589 +#: order/models.py:2590 msgid "Select stock item to allocate" msgstr "" -#: order/models.py:2598 +#: order/models.py:2599 msgid "Enter stock allocation quantity" msgstr "" -#: order/models.py:2713 +#: order/models.py:2714 msgid "Return Order reference" msgstr "" -#: order/models.py:2725 +#: order/models.py:2726 msgid "Company from which items are being returned" msgstr "" -#: order/models.py:2738 +#: order/models.py:2739 msgid "Return order status" msgstr "" -#: order/models.py:2965 +#: order/models.py:2966 msgid "Return Order Line Item" msgstr "" -#: order/models.py:2978 +#: order/models.py:2979 msgid "Stock item must be specified" msgstr "" -#: order/models.py:2982 +#: order/models.py:2983 msgid "Return quantity exceeds stock quantity" msgstr "" -#: order/models.py:2987 +#: order/models.py:2988 msgid "Return quantity must be greater than zero" msgstr "" -#: order/models.py:2992 +#: order/models.py:2993 msgid "Invalid quantity for serialized stock item" msgstr "" -#: order/models.py:3008 +#: order/models.py:3009 msgid "Select item to return from customer" msgstr "" -#: order/models.py:3023 +#: order/models.py:3024 msgid "Received Date" msgstr "" -#: order/models.py:3024 +#: order/models.py:3025 msgid "The date this this return item was received" msgstr "" -#: order/models.py:3036 +#: order/models.py:3037 msgid "Outcome" msgstr "" -#: order/models.py:3037 +#: order/models.py:3038 msgid "Outcome for this line item" msgstr "" -#: order/models.py:3044 +#: order/models.py:3045 msgid "Cost associated with return or repair for this line item" msgstr "" -#: order/models.py:3054 +#: order/models.py:3055 msgid "Return Order Extra Line" msgstr "" -#: order/serializers.py:91 +#: order/serializers.py:92 msgid "Order ID" msgstr "" -#: order/serializers.py:91 +#: order/serializers.py:92 msgid "ID of the order to duplicate" msgstr "" -#: order/serializers.py:97 +#: order/serializers.py:98 msgid "Copy Lines" msgstr "Copiar linhas" -#: order/serializers.py:98 +#: order/serializers.py:99 msgid "Copy line items from the original order" msgstr "" -#: order/serializers.py:104 +#: order/serializers.py:105 msgid "Copy Extra Lines" msgstr "" -#: order/serializers.py:105 +#: order/serializers.py:106 msgid "Copy extra line items from the original order" msgstr "" -#: order/serializers.py:120 +#: order/serializers.py:121 #: report/templates/report/inventree_purchase_order_report.html:29 #: report/templates/report/inventree_return_order_report.html:19 #: report/templates/report/inventree_sales_order_report.html:22 msgid "Line Items" msgstr "" -#: order/serializers.py:125 +#: order/serializers.py:126 msgid "Completed Lines" msgstr "" -#: order/serializers.py:192 +#: order/serializers.py:199 msgid "Duplicate Order" msgstr "Duplicar Pedido" -#: order/serializers.py:193 +#: order/serializers.py:200 msgid "Specify options for duplicating this order" msgstr "" -#: order/serializers.py:270 +#: order/serializers.py:278 msgid "Invalid order ID" msgstr "ID do pedido inválido" -#: order/serializers.py:466 +#: order/serializers.py:477 msgid "Supplier Name" msgstr "" -#: order/serializers.py:510 +#: order/serializers.py:521 msgid "Order cannot be cancelled" msgstr "O pedido não pode ser cancelado" -#: order/serializers.py:525 order/serializers.py:1602 +#: order/serializers.py:536 order/serializers.py:1616 msgid "Allow order to be closed with incomplete line items" msgstr "" -#: order/serializers.py:535 order/serializers.py:1612 +#: order/serializers.py:546 order/serializers.py:1626 msgid "Order has incomplete line items" msgstr "" -#: order/serializers.py:665 +#: order/serializers.py:676 msgid "Order is not open" msgstr "" -#: order/serializers.py:692 +#: order/serializers.py:703 msgid "Auto Pricing" msgstr "" -#: order/serializers.py:694 +#: order/serializers.py:705 msgid "Automatically calculate purchase price based on supplier part data" msgstr "" -#: order/serializers.py:704 +#: order/serializers.py:715 msgid "Purchase price currency" msgstr "" -#: order/serializers.py:718 +#: order/serializers.py:729 msgid "Merge Items" msgstr "Mesclar Itens" -#: order/serializers.py:720 +#: order/serializers.py:731 msgid "Merge items with the same part, destination and target date into one line item" msgstr "" -#: order/serializers.py:727 part/serializers.py:560 +#: order/serializers.py:738 part/serializers.py:471 msgid "SKU" msgstr "Código (SKU)" -#: order/serializers.py:741 part/models.py:1089 part/serializers.py:372 +#: order/serializers.py:752 part/models.py:1177 part/serializers.py:337 msgid "Internal Part Number" msgstr "Número Interno da Peça" -#: order/serializers.py:749 +#: order/serializers.py:760 msgid "Internal Part Name" msgstr "Nome Interno da Peça" -#: order/serializers.py:765 +#: order/serializers.py:776 msgid "Supplier part must be specified" msgstr "" -#: order/serializers.py:768 +#: order/serializers.py:779 msgid "Purchase order must be specified" msgstr "" -#: order/serializers.py:776 +#: order/serializers.py:787 msgid "Supplier must match purchase order" msgstr "" -#: order/serializers.py:777 +#: order/serializers.py:788 msgid "Purchase order must match supplier" msgstr "" -#: order/serializers.py:825 order/serializers.py:1682 +#: order/serializers.py:836 order/serializers.py:1696 msgid "Line Item" msgstr "" -#: order/serializers.py:834 order/serializers.py:974 order/serializers.py:2043 +#: order/serializers.py:845 order/serializers.py:985 order/serializers.py:2060 msgid "Select destination location for received items" msgstr "" -#: order/serializers.py:850 +#: order/serializers.py:861 msgid "Enter batch code for incoming stock items" msgstr "" -#: order/serializers.py:857 stock/models.py:1160 +#: order/serializers.py:868 stock/models.py:1160 #: templates/email/stale_stock_notification.html:22 users/models.py:137 msgid "Expiry Date" msgstr "" -#: order/serializers.py:858 +#: order/serializers.py:869 msgid "Enter expiry date for incoming stock items" msgstr "" -#: order/serializers.py:866 +#: order/serializers.py:877 msgid "Enter serial numbers for incoming stock items" msgstr "" -#: order/serializers.py:876 +#: order/serializers.py:887 msgid "Override packaging information for incoming stock items" msgstr "" -#: order/serializers.py:884 order/serializers.py:2048 +#: order/serializers.py:895 order/serializers.py:2065 msgid "Additional note for incoming stock items" msgstr "" -#: order/serializers.py:891 +#: order/serializers.py:902 msgid "Barcode" msgstr "Código de barras" -#: order/serializers.py:892 +#: order/serializers.py:903 msgid "Scanned barcode" msgstr "Código de barras lido" -#: order/serializers.py:908 +#: order/serializers.py:919 msgid "Barcode is already in use" msgstr "Código de barras já está em uso" -#: order/serializers.py:991 order/serializers.py:2067 +#: order/serializers.py:1002 order/serializers.py:2084 msgid "Line items must be provided" msgstr "" -#: order/serializers.py:1010 +#: order/serializers.py:1021 msgid "Destination location must be specified" msgstr "" -#: order/serializers.py:1017 +#: order/serializers.py:1028 msgid "Supplied barcode values must be unique" msgstr "" -#: order/serializers.py:1121 +#: order/serializers.py:1135 msgid "Shipments" msgstr "" -#: order/serializers.py:1125 +#: order/serializers.py:1139 msgid "Completed Shipments" msgstr "" -#: order/serializers.py:1293 +#: order/serializers.py:1307 msgid "Sale price currency" msgstr "" -#: order/serializers.py:1339 +#: order/serializers.py:1353 msgid "Allocated Items" msgstr "Itens Alocados" -#: order/serializers.py:1484 +#: order/serializers.py:1498 msgid "No shipment details provided" msgstr "" -#: order/serializers.py:1545 order/serializers.py:1691 +#: order/serializers.py:1559 order/serializers.py:1705 msgid "Line item is not associated with this order" msgstr "" -#: order/serializers.py:1564 +#: order/serializers.py:1578 msgid "Quantity must be positive" msgstr "" -#: order/serializers.py:1701 +#: order/serializers.py:1715 msgid "Enter serial numbers to allocate" msgstr "" -#: order/serializers.py:1723 order/serializers.py:1843 +#: order/serializers.py:1737 order/serializers.py:1857 msgid "Shipment has already been shipped" msgstr "" -#: order/serializers.py:1726 order/serializers.py:1846 +#: order/serializers.py:1740 order/serializers.py:1860 msgid "Shipment is not associated with this order" msgstr "" -#: order/serializers.py:1781 +#: order/serializers.py:1795 msgid "No match found for the following serial numbers" msgstr "" -#: order/serializers.py:1788 +#: order/serializers.py:1802 msgid "The following serial numbers are unavailable" msgstr "Os seguintes números de série não estão disponíveis" -#: order/serializers.py:2009 +#: order/serializers.py:2026 msgid "Return order line item" msgstr "" -#: order/serializers.py:2019 +#: order/serializers.py:2036 msgid "Line item does not match return order" msgstr "" -#: order/serializers.py:2022 +#: order/serializers.py:2039 msgid "Line item has already been received" msgstr "" -#: order/serializers.py:2059 +#: order/serializers.py:2076 msgid "Items can only be received against orders which are in progress" msgstr "" -#: order/serializers.py:2124 +#: order/serializers.py:2141 msgid "Quantity to return" msgstr "" -#: order/serializers.py:2140 +#: order/serializers.py:2157 msgid "Line price currency" msgstr "" @@ -5431,1190 +5559,1109 @@ msgstr "" msgid "Return order {ro} is now overdue" msgstr "" -#: part/api.py:108 +#: part/api.py:103 msgid "Starred" msgstr "" -#: part/api.py:110 +#: part/api.py:105 msgid "Filter by starred categories" msgstr "" -#: part/api.py:127 stock/api.py:288 +#: part/api.py:122 stock/api.py:288 msgid "Depth" msgstr "" -#: part/api.py:127 +#: part/api.py:122 msgid "Filter by category depth" msgstr "" -#: part/api.py:145 stock/api.py:306 +#: part/api.py:140 stock/api.py:306 msgid "Top Level" msgstr "" -#: part/api.py:147 +#: part/api.py:142 msgid "Filter by top-level categories" msgstr "" -#: part/api.py:160 stock/api.py:321 +#: part/api.py:155 stock/api.py:321 msgid "Cascade" msgstr "" -#: part/api.py:162 +#: part/api.py:157 msgid "Include sub-categories in filtered results" msgstr "" -#: part/api.py:182 +#: part/api.py:177 msgid "Parent" msgstr "" -#: part/api.py:184 +#: part/api.py:179 msgid "Filter by parent category" msgstr "" -#: part/api.py:219 +#: part/api.py:214 msgid "Exclude sub-categories under the specified category" msgstr "" -#: part/api.py:445 +#: part/api.py:440 msgid "Has Results" msgstr "" -#: part/api.py:666 +#: part/api.py:661 msgid "Is Variant" msgstr "" -#: part/api.py:674 +#: part/api.py:669 msgid "Is Revision" msgstr "" -#: part/api.py:684 +#: part/api.py:679 msgid "Has Revisions" msgstr "" -#: part/api.py:865 +#: part/api.py:860 msgid "BOM Valid" msgstr "" -#: part/api.py:974 +#: part/api.py:969 msgid "Cascade Categories" msgstr "" -#: part/api.py:975 +#: part/api.py:970 msgid "If true, include items in child categories of the given category" msgstr "" -#: part/api.py:981 +#: part/api.py:976 msgid "Filter by numeric category ID or the literal 'null'" msgstr "" -#: part/api.py:1533 +#: part/api.py:1258 msgid "Assembly part is testable" msgstr "" -#: part/api.py:1542 +#: part/api.py:1267 msgid "Component part is testable" msgstr "" -#: part/api.py:1611 +#: part/api.py:1336 msgid "Uses" msgstr "" -#: part/models.py:96 part/models.py:4163 +#: part/models.py:93 part/models.py:436 #: templates/email/part_event_notification.html:16 msgid "Part Category" msgstr "Categoria da Peça" -#: part/models.py:97 users/ruleset.py:27 +#: part/models.py:94 users/ruleset.py:27 msgid "Part Categories" msgstr "Categorias de Peça" -#: part/models.py:115 part/models.py:1125 +#: part/models.py:112 part/models.py:1213 msgid "Default Location" msgstr "Local Padrão" -#: part/models.py:116 +#: part/models.py:113 msgid "Default location for parts in this category" msgstr "Local padrão para peças desta categoria" -#: part/models.py:121 stock/models.py:216 +#: part/models.py:118 stock/models.py:216 msgid "Structural" msgstr "" -#: part/models.py:123 +#: part/models.py:120 msgid "Parts may not be directly assigned to a structural category, but may be assigned to child categories." msgstr "" -#: part/models.py:132 +#: part/models.py:129 msgid "Default keywords" msgstr "Palavras-chave Padrão" -#: part/models.py:133 +#: part/models.py:130 msgid "Default keywords for parts in this category" msgstr "Palavras-chave padrão para peças nesta categoria" -#: part/models.py:140 stock/models.py:97 stock/models.py:198 +#: part/models.py:137 stock/models.py:97 stock/models.py:198 msgid "Icon" msgstr "Ícone" -#: part/models.py:141 part/serializers.py:148 part/serializers.py:167 +#: part/models.py:138 part/serializers.py:147 part/serializers.py:166 #: stock/models.py:199 msgid "Icon (optional)" msgstr "Ícone (opcional)" -#: part/models.py:185 +#: part/models.py:182 msgid "You cannot make this part category structural because some parts are already assigned to it!" msgstr "" -#: part/models.py:473 part/serializers.py:119 part/serializers.py:310 -#: users/ruleset.py:28 +#: part/models.py:392 +msgid "Part Category Parameter Template" +msgstr "" + +#: part/models.py:448 +msgid "Default Value" +msgstr "Valor Padrão" + +#: part/models.py:449 +msgid "Default Parameter Value" +msgstr "Valor Padrão do Parâmetro" + +#: part/models.py:551 part/serializers.py:118 users/ruleset.py:28 msgid "Parts" msgstr "Peças" -#: part/models.py:525 +#: part/models.py:597 +msgid "Cannot delete parameters of a locked part" +msgstr "" + +#: part/models.py:602 +msgid "Cannot modify parameters of a locked part" +msgstr "" + +#: part/models.py:613 msgid "Cannot delete this part as it is locked" msgstr "" -#: part/models.py:528 +#: part/models.py:616 msgid "Cannot delete this part as it is still active" msgstr "" -#: part/models.py:533 +#: part/models.py:621 msgid "Cannot delete this part as it is used in an assembly" msgstr "" -#: part/models.py:616 part/models.py:623 +#: part/models.py:704 part/models.py:711 #, python-brace-format msgid "Part '{self}' cannot be used in BOM for '{parent}' (recursive)" msgstr "" -#: part/models.py:635 +#: part/models.py:723 #, python-brace-format msgid "Part '{parent}' is used in BOM for '{self}' (recursive)" msgstr "" -#: part/models.py:702 +#: part/models.py:790 #, python-brace-format msgid "IPN must match regex pattern {pattern}" msgstr "" -#: part/models.py:710 +#: part/models.py:798 msgid "Part cannot be a revision of itself" msgstr "" -#: part/models.py:717 +#: part/models.py:805 msgid "Cannot make a revision of a part which is already a revision" msgstr "" -#: part/models.py:724 +#: part/models.py:812 msgid "Revision code must be specified" msgstr "" -#: part/models.py:731 +#: part/models.py:819 msgid "Revisions are only allowed for assembly parts" msgstr "" -#: part/models.py:738 +#: part/models.py:826 msgid "Cannot make a revision of a template part" msgstr "" -#: part/models.py:744 +#: part/models.py:832 msgid "Parent part must point to the same template" msgstr "" -#: part/models.py:841 +#: part/models.py:929 msgid "Stock item with this serial number already exists" msgstr "" -#: part/models.py:971 +#: part/models.py:1059 msgid "Duplicate IPN not allowed in part settings" msgstr "" -#: part/models.py:983 +#: part/models.py:1071 msgid "Duplicate part revision already exists." msgstr "" -#: part/models.py:992 +#: part/models.py:1080 msgid "Part with this Name, IPN and Revision already exists." msgstr "" -#: part/models.py:1007 +#: part/models.py:1095 msgid "Parts cannot be assigned to structural part categories!" msgstr "" -#: part/models.py:1039 +#: part/models.py:1127 msgid "Part name" msgstr "Nome da peça" -#: part/models.py:1044 +#: part/models.py:1132 msgid "Is Template" msgstr "É um modelo" -#: part/models.py:1045 +#: part/models.py:1133 msgid "Is this part a template part?" msgstr "" -#: part/models.py:1055 +#: part/models.py:1143 msgid "Is this part a variant of another part?" msgstr "" -#: part/models.py:1056 +#: part/models.py:1144 msgid "Variant Of" msgstr "" -#: part/models.py:1063 +#: part/models.py:1151 msgid "Part description (optional)" msgstr "Descrição da peça (opcional)" -#: part/models.py:1070 +#: part/models.py:1158 msgid "Keywords" msgstr "Palavras-chaves" -#: part/models.py:1071 +#: part/models.py:1159 msgid "Part keywords to improve visibility in search results" msgstr "" -#: part/models.py:1081 +#: part/models.py:1169 msgid "Part category" msgstr "Categoria da Peça" -#: part/models.py:1088 part/serializers.py:929 +#: part/models.py:1176 part/serializers.py:814 #: report/templates/report/inventree_stock_location_report.html:103 msgid "IPN" msgstr "" -#: part/models.py:1096 +#: part/models.py:1184 msgid "Part revision or version number" msgstr "" -#: part/models.py:1097 report/models.py:228 +#: part/models.py:1185 report/models.py:228 msgid "Revision" msgstr "" -#: part/models.py:1106 +#: part/models.py:1194 msgid "Is this part a revision of another part?" msgstr "" -#: part/models.py:1107 +#: part/models.py:1195 msgid "Revision Of" msgstr "" -#: part/models.py:1123 +#: part/models.py:1211 msgid "Where is this item normally stored?" msgstr "" -#: part/models.py:1169 +#: part/models.py:1257 msgid "Default Supplier" msgstr "Fornecedor Padrão" -#: part/models.py:1170 +#: part/models.py:1258 msgid "Default supplier part" msgstr "Fornecedor padrão da peça" -#: part/models.py:1177 +#: part/models.py:1265 msgid "Default Expiry" msgstr "Validade Padrão" -#: part/models.py:1178 +#: part/models.py:1266 msgid "Expiry time (in days) for stock items of this part" msgstr "Validade (em dias) para itens do estoque desta peça" -#: part/models.py:1186 part/serializers.py:1003 +#: part/models.py:1274 part/serializers.py:888 msgid "Minimum Stock" msgstr "Estoque Mínimo" -#: part/models.py:1187 +#: part/models.py:1275 msgid "Minimum allowed stock level" msgstr "" -#: part/models.py:1196 +#: part/models.py:1284 msgid "Units of measure for this part" msgstr "" -#: part/models.py:1203 +#: part/models.py:1291 msgid "Can this part be built from other parts?" msgstr "" -#: part/models.py:1209 +#: part/models.py:1297 msgid "Can this part be used to build other parts?" msgstr "" -#: part/models.py:1215 +#: part/models.py:1303 msgid "Does this part have tracking for unique items?" msgstr "" -#: part/models.py:1221 +#: part/models.py:1309 msgid "Can this part have test results recorded against it?" msgstr "" -#: part/models.py:1227 +#: part/models.py:1315 msgid "Can this part be purchased from external suppliers?" msgstr "" -#: part/models.py:1233 +#: part/models.py:1321 msgid "Can this part be sold to customers?" msgstr "" -#: part/models.py:1237 +#: part/models.py:1325 msgid "Is this part active?" msgstr "" -#: part/models.py:1243 +#: part/models.py:1331 msgid "Locked parts cannot be edited" msgstr "" -#: part/models.py:1249 +#: part/models.py:1337 msgid "Is this a virtual part, such as a software product or license?" msgstr "" -#: part/models.py:1254 +#: part/models.py:1342 msgid "BOM Validated" msgstr "" -#: part/models.py:1255 +#: part/models.py:1343 msgid "Is the BOM for this part valid?" msgstr "" -#: part/models.py:1261 +#: part/models.py:1349 msgid "BOM checksum" msgstr "" -#: part/models.py:1262 +#: part/models.py:1350 msgid "Stored BOM checksum" msgstr "" -#: part/models.py:1270 +#: part/models.py:1358 msgid "BOM checked by" msgstr "" -#: part/models.py:1275 +#: part/models.py:1363 msgid "BOM checked date" msgstr "" -#: part/models.py:1291 +#: part/models.py:1379 msgid "Creation User" msgstr "Criação de Usuário" -#: part/models.py:1301 +#: part/models.py:1389 msgid "Owner responsible for this part" msgstr "" -#: part/models.py:2258 +#: part/models.py:2346 msgid "Sell multiple" msgstr "" -#: part/models.py:3286 +#: part/models.py:3350 msgid "Currency used to cache pricing calculations" msgstr "" -#: part/models.py:3302 +#: part/models.py:3366 msgid "Minimum BOM Cost" msgstr "" -#: part/models.py:3303 +#: part/models.py:3367 msgid "Minimum cost of component parts" msgstr "" -#: part/models.py:3309 +#: part/models.py:3373 msgid "Maximum BOM Cost" msgstr "" -#: part/models.py:3310 +#: part/models.py:3374 msgid "Maximum cost of component parts" msgstr "" -#: part/models.py:3316 +#: part/models.py:3380 msgid "Minimum Purchase Cost" msgstr "" -#: part/models.py:3317 +#: part/models.py:3381 msgid "Minimum historical purchase cost" msgstr "" -#: part/models.py:3323 +#: part/models.py:3387 msgid "Maximum Purchase Cost" msgstr "" -#: part/models.py:3324 +#: part/models.py:3388 msgid "Maximum historical purchase cost" msgstr "" -#: part/models.py:3330 +#: part/models.py:3394 msgid "Minimum Internal Price" msgstr "" -#: part/models.py:3331 +#: part/models.py:3395 msgid "Minimum cost based on internal price breaks" msgstr "" -#: part/models.py:3337 +#: part/models.py:3401 msgid "Maximum Internal Price" msgstr "" -#: part/models.py:3338 +#: part/models.py:3402 msgid "Maximum cost based on internal price breaks" msgstr "" -#: part/models.py:3344 +#: part/models.py:3408 msgid "Minimum Supplier Price" msgstr "" -#: part/models.py:3345 +#: part/models.py:3409 msgid "Minimum price of part from external suppliers" msgstr "" -#: part/models.py:3351 +#: part/models.py:3415 msgid "Maximum Supplier Price" msgstr "" -#: part/models.py:3352 +#: part/models.py:3416 msgid "Maximum price of part from external suppliers" msgstr "" -#: part/models.py:3358 +#: part/models.py:3422 msgid "Minimum Variant Cost" msgstr "" -#: part/models.py:3359 +#: part/models.py:3423 msgid "Calculated minimum cost of variant parts" msgstr "" -#: part/models.py:3365 +#: part/models.py:3429 msgid "Maximum Variant Cost" msgstr "" -#: part/models.py:3366 +#: part/models.py:3430 msgid "Calculated maximum cost of variant parts" msgstr "" -#: part/models.py:3372 part/models.py:3386 +#: part/models.py:3436 part/models.py:3450 msgid "Minimum Cost" msgstr "" -#: part/models.py:3373 +#: part/models.py:3437 msgid "Override minimum cost" msgstr "" -#: part/models.py:3379 part/models.py:3393 +#: part/models.py:3443 part/models.py:3457 msgid "Maximum Cost" msgstr "" -#: part/models.py:3380 +#: part/models.py:3444 msgid "Override maximum cost" msgstr "" -#: part/models.py:3387 +#: part/models.py:3451 msgid "Calculated overall minimum cost" msgstr "" -#: part/models.py:3394 +#: part/models.py:3458 msgid "Calculated overall maximum cost" msgstr "" -#: part/models.py:3400 +#: part/models.py:3464 msgid "Minimum Sale Price" msgstr "" -#: part/models.py:3401 +#: part/models.py:3465 msgid "Minimum sale price based on price breaks" msgstr "" -#: part/models.py:3407 +#: part/models.py:3471 msgid "Maximum Sale Price" msgstr "" -#: part/models.py:3408 +#: part/models.py:3472 msgid "Maximum sale price based on price breaks" msgstr "" -#: part/models.py:3414 +#: part/models.py:3478 msgid "Minimum Sale Cost" msgstr "" -#: part/models.py:3415 +#: part/models.py:3479 msgid "Minimum historical sale price" msgstr "" -#: part/models.py:3421 +#: part/models.py:3485 msgid "Maximum Sale Cost" msgstr "" -#: part/models.py:3422 +#: part/models.py:3486 msgid "Maximum historical sale price" msgstr "" -#: part/models.py:3440 +#: part/models.py:3504 msgid "Part for stocktake" msgstr "" -#: part/models.py:3445 +#: part/models.py:3509 msgid "Item Count" msgstr "" -#: part/models.py:3446 +#: part/models.py:3510 msgid "Number of individual stock entries at time of stocktake" msgstr "" -#: part/models.py:3454 +#: part/models.py:3518 msgid "Total available stock at time of stocktake" msgstr "" -#: part/models.py:3458 report/templates/report/inventree_test_report.html:106 +#: part/models.py:3522 report/templates/report/inventree_test_report.html:106 msgid "Date" msgstr "Data" -#: part/models.py:3459 +#: part/models.py:3523 msgid "Date stocktake was performed" msgstr "" -#: part/models.py:3466 +#: part/models.py:3530 msgid "Minimum Stock Cost" msgstr "" -#: part/models.py:3467 +#: part/models.py:3531 msgid "Estimated minimum cost of stock on hand" msgstr "" -#: part/models.py:3473 +#: part/models.py:3537 msgid "Maximum Stock Cost" msgstr "" -#: part/models.py:3474 +#: part/models.py:3538 msgid "Estimated maximum cost of stock on hand" msgstr "" -#: part/models.py:3484 +#: part/models.py:3548 msgid "Part Sale Price Break" msgstr "" -#: part/models.py:3596 +#: part/models.py:3660 msgid "Part Test Template" msgstr "" -#: part/models.py:3622 +#: part/models.py:3686 msgid "Invalid template name - must include at least one alphanumeric character" msgstr "" -#: part/models.py:3643 part/models.py:3816 -msgid "Choices must be unique" -msgstr "" - -#: part/models.py:3654 +#: part/models.py:3718 msgid "Test templates can only be created for testable parts" msgstr "Modelos de teste só podem ser criados para partes testáveis" -#: part/models.py:3668 +#: part/models.py:3732 msgid "Test template with the same key already exists for part" msgstr "" -#: part/models.py:3685 +#: part/models.py:3749 msgid "Test Name" msgstr "" -#: part/models.py:3686 +#: part/models.py:3750 msgid "Enter a name for the test" msgstr "" -#: part/models.py:3692 +#: part/models.py:3756 msgid "Test Key" msgstr "" -#: part/models.py:3693 +#: part/models.py:3757 msgid "Simplified key for the test" msgstr "" -#: part/models.py:3700 +#: part/models.py:3764 msgid "Test Description" msgstr "" -#: part/models.py:3701 +#: part/models.py:3765 msgid "Enter description for this test" msgstr "" -#: part/models.py:3705 report/models.py:287 -msgid "Enabled" -msgstr "Habilitado" - -#: part/models.py:3705 +#: part/models.py:3769 msgid "Is this test enabled?" msgstr "" -#: part/models.py:3710 +#: part/models.py:3774 msgid "Required" msgstr "Obrigatório" -#: part/models.py:3711 +#: part/models.py:3775 msgid "Is this test required to pass?" msgstr "" -#: part/models.py:3716 +#: part/models.py:3780 msgid "Requires Value" msgstr "" -#: part/models.py:3717 +#: part/models.py:3781 msgid "Does this test require a value when adding a test result?" msgstr "" -#: part/models.py:3722 +#: part/models.py:3786 msgid "Requires Attachment" msgstr "" -#: part/models.py:3724 +#: part/models.py:3788 msgid "Does this test require a file attachment when adding a test result?" msgstr "" -#: part/models.py:3730 part/models.py:3878 -msgid "Choices" -msgstr "" - -#: part/models.py:3731 +#: part/models.py:3795 msgid "Valid choices for this test (comma-separated)" msgstr "" -#: part/models.py:3764 -msgid "Part Parameter Template" -msgstr "" - -#: part/models.py:3791 -msgid "Checkbox parameters cannot have units" -msgstr "" - -#: part/models.py:3796 -msgid "Checkbox parameters cannot have choices" -msgstr "" - -#: part/models.py:3833 -msgid "Parameter template name must be unique" -msgstr "" - -#: part/models.py:3851 -msgid "Parameter Name" -msgstr "Nome do Parâmetro" - -#: part/models.py:3858 -msgid "Physical units for this parameter" -msgstr "" - -#: part/models.py:3866 -msgid "Parameter description" -msgstr "" - -#: part/models.py:3872 -msgid "Checkbox" -msgstr "Caixa de seleção" - -#: part/models.py:3873 -msgid "Is this parameter a checkbox?" -msgstr "" - -#: part/models.py:3879 -msgid "Valid choices for this parameter (comma-separated)" -msgstr "" - -#: part/models.py:3890 -msgid "Selection list for this parameter" -msgstr "" - -#: part/models.py:3932 -msgid "Part Parameter" -msgstr "" - -#: part/models.py:3958 -msgid "Parameter cannot be modified - part is locked" -msgstr "" - -#: part/models.py:3996 -msgid "Invalid choice for parameter value" -msgstr "" - -#: part/models.py:4047 -msgid "Parent Part" -msgstr "" - -#: part/models.py:4055 part/models.py:4170 part/models.py:4171 -msgid "Parameter Template" -msgstr "" - -#: part/models.py:4061 -msgid "Parameter Value" -msgstr "" - -#: part/models.py:4071 stock/serializers.py:718 -msgid "Optional note field" -msgstr "" - -#: part/models.py:4118 -msgid "Part Category Parameter Template" -msgstr "" - -#: part/models.py:4177 -msgid "Default Value" -msgstr "Valor Padrão" - -#: part/models.py:4178 -msgid "Default Parameter Value" -msgstr "Valor Padrão do Parâmetro" - -#: part/models.py:4352 +#: part/models.py:3977 msgid "BOM item cannot be modified - assembly is locked" msgstr "" -#: part/models.py:4359 +#: part/models.py:3984 msgid "BOM item cannot be modified - variant assembly is locked" msgstr "" -#: part/models.py:4369 +#: part/models.py:3994 msgid "Select parent part" msgstr "" -#: part/models.py:4379 +#: part/models.py:4004 msgid "Sub part" msgstr "Sub peça" -#: part/models.py:4380 +#: part/models.py:4005 msgid "Select part to be used in BOM" msgstr "" -#: part/models.py:4391 +#: part/models.py:4016 msgid "BOM quantity for this BOM item" msgstr "" -#: part/models.py:4397 +#: part/models.py:4022 msgid "This BOM item is optional" msgstr "" -#: part/models.py:4403 +#: part/models.py:4028 msgid "This BOM item is consumable (it is not tracked in build orders)" msgstr "" -#: part/models.py:4411 +#: part/models.py:4036 msgid "Setup Quantity" msgstr "" -#: part/models.py:4412 +#: part/models.py:4037 msgid "Extra required quantity for a build, to account for setup losses" msgstr "" -#: part/models.py:4420 +#: part/models.py:4045 msgid "Attrition" msgstr "" -#: part/models.py:4422 +#: part/models.py:4047 msgid "Estimated attrition for a build, expressed as a percentage (0-100)" msgstr "" -#: part/models.py:4433 +#: part/models.py:4058 msgid "Rounding Multiple" msgstr "" -#: part/models.py:4435 +#: part/models.py:4060 msgid "Round up required production quantity to nearest multiple of this value" msgstr "" -#: part/models.py:4443 +#: part/models.py:4068 msgid "BOM item reference" msgstr "" -#: part/models.py:4451 +#: part/models.py:4076 msgid "BOM item notes" msgstr "" -#: part/models.py:4457 +#: part/models.py:4082 msgid "Checksum" msgstr "" -#: part/models.py:4458 +#: part/models.py:4083 msgid "BOM line checksum" msgstr "" -#: part/models.py:4463 +#: part/models.py:4088 msgid "Validated" msgstr "" -#: part/models.py:4464 +#: part/models.py:4089 msgid "This BOM item has been validated" msgstr "" -#: part/models.py:4469 +#: part/models.py:4094 msgid "Gets inherited" msgstr "" -#: part/models.py:4470 +#: part/models.py:4095 msgid "This BOM item is inherited by BOMs for variant parts" msgstr "" -#: part/models.py:4476 +#: part/models.py:4101 msgid "Stock items for variant parts can be used for this BOM item" msgstr "" -#: part/models.py:4583 stock/models.py:925 +#: part/models.py:4208 stock/models.py:925 msgid "Quantity must be integer value for trackable parts" msgstr "" -#: part/models.py:4593 part/models.py:4595 +#: part/models.py:4218 part/models.py:4220 msgid "Sub part must be specified" msgstr "" -#: part/models.py:4746 +#: part/models.py:4371 msgid "BOM Item Substitute" msgstr "" -#: part/models.py:4767 +#: part/models.py:4392 msgid "Substitute part cannot be the same as the master part" msgstr "" -#: part/models.py:4780 +#: part/models.py:4405 msgid "Parent BOM item" msgstr "" -#: part/models.py:4788 +#: part/models.py:4413 msgid "Substitute part" msgstr "" -#: part/models.py:4804 +#: part/models.py:4429 msgid "Part 1" msgstr "" -#: part/models.py:4812 +#: part/models.py:4437 msgid "Part 2" msgstr "" -#: part/models.py:4813 +#: part/models.py:4438 msgid "Select Related Part" msgstr "" -#: part/models.py:4820 +#: part/models.py:4445 msgid "Note for this relationship" msgstr "" -#: part/models.py:4839 +#: part/models.py:4464 msgid "Part relationship cannot be created between a part and itself" msgstr "" -#: part/models.py:4844 +#: part/models.py:4469 msgid "Duplicate relationship already exists" msgstr "" -#: part/serializers.py:114 +#: part/serializers.py:113 msgid "Parent Category" msgstr "" -#: part/serializers.py:115 +#: part/serializers.py:114 msgid "Parent part category" msgstr "" -#: part/serializers.py:123 part/serializers.py:164 +#: part/serializers.py:122 part/serializers.py:163 msgid "Subcategories" msgstr "" -#: part/serializers.py:203 +#: part/serializers.py:202 msgid "Results" msgstr "" -#: part/serializers.py:204 +#: part/serializers.py:203 msgid "Number of results recorded against this template" msgstr "" -#: part/serializers.py:235 part/serializers.py:253 stock/serializers.py:643 +#: part/serializers.py:234 part/serializers.py:252 stock/serializers.py:643 msgid "Purchase currency of this stock item" msgstr "" -#: part/serializers.py:280 +#: part/serializers.py:279 msgid "File is not an image" msgstr "" -#: part/serializers.py:311 -msgid "Number of parts using this template" -msgstr "" - -#: part/serializers.py:471 +#: part/serializers.py:382 msgid "Original Part" msgstr "" -#: part/serializers.py:472 +#: part/serializers.py:383 msgid "Select original part to duplicate" msgstr "" -#: part/serializers.py:477 +#: part/serializers.py:388 msgid "Copy Image" msgstr "" -#: part/serializers.py:478 +#: part/serializers.py:389 msgid "Copy image from original part" msgstr "" -#: part/serializers.py:484 +#: part/serializers.py:395 msgid "Copy BOM" msgstr "" -#: part/serializers.py:485 +#: part/serializers.py:396 msgid "Copy bill of materials from original part" msgstr "" -#: part/serializers.py:491 +#: part/serializers.py:402 msgid "Copy Parameters" msgstr "" -#: part/serializers.py:492 +#: part/serializers.py:403 msgid "Copy parameter data from original part" msgstr "" -#: part/serializers.py:498 +#: part/serializers.py:409 msgid "Copy Notes" msgstr "" -#: part/serializers.py:499 +#: part/serializers.py:410 msgid "Copy notes from original part" msgstr "" -#: part/serializers.py:505 +#: part/serializers.py:416 msgid "Copy Tests" msgstr "" -#: part/serializers.py:506 +#: part/serializers.py:417 msgid "Copy test templates from original part" msgstr "" -#: part/serializers.py:524 +#: part/serializers.py:435 msgid "Initial Stock Quantity" msgstr "" -#: part/serializers.py:526 +#: part/serializers.py:437 msgid "Specify initial stock quantity for this Part. If quantity is zero, no stock is added." msgstr "" -#: part/serializers.py:533 +#: part/serializers.py:444 msgid "Initial Stock Location" msgstr "" -#: part/serializers.py:534 +#: part/serializers.py:445 msgid "Specify initial stock location for this Part" msgstr "" -#: part/serializers.py:551 +#: part/serializers.py:462 msgid "Select supplier (or leave blank to skip)" msgstr "" -#: part/serializers.py:567 +#: part/serializers.py:478 msgid "Select manufacturer (or leave blank to skip)" msgstr "" -#: part/serializers.py:577 +#: part/serializers.py:488 msgid "Manufacturer part number" msgstr "" -#: part/serializers.py:584 +#: part/serializers.py:495 msgid "Selected company is not a valid supplier" msgstr "" -#: part/serializers.py:593 +#: part/serializers.py:504 msgid "Selected company is not a valid manufacturer" msgstr "" -#: part/serializers.py:604 +#: part/serializers.py:515 msgid "Manufacturer part matching this MPN already exists" msgstr "" -#: part/serializers.py:611 +#: part/serializers.py:522 msgid "Supplier part matching this SKU already exists" msgstr "" -#: part/serializers.py:914 +#: part/serializers.py:799 msgid "Category Name" msgstr "" -#: part/serializers.py:943 +#: part/serializers.py:828 msgid "Building" msgstr "" -#: part/serializers.py:944 +#: part/serializers.py:829 msgid "Quantity of this part currently being in production" msgstr "" -#: part/serializers.py:951 +#: part/serializers.py:836 msgid "Outstanding quantity of this part scheduled to be built" msgstr "" -#: part/serializers.py:971 stock/serializers.py:1019 stock/serializers.py:1189 +#: part/serializers.py:856 stock/serializers.py:1019 stock/serializers.py:1189 #: users/ruleset.py:30 msgid "Stock Items" msgstr "Itens de Estoque" -#: part/serializers.py:975 +#: part/serializers.py:860 msgid "Revisions" msgstr "" -#: part/serializers.py:979 +#: part/serializers.py:864 msgid "Suppliers" msgstr "" -#: part/serializers.py:983 part/serializers.py:1297 +#: part/serializers.py:868 part/serializers.py:1162 #: templates/email/low_stock_notification.html:16 #: templates/email/part_event_notification.html:17 msgid "Total Stock" msgstr "Estoque Total" -#: part/serializers.py:991 +#: part/serializers.py:876 msgid "Unallocated Stock" msgstr "" -#: part/serializers.py:999 +#: part/serializers.py:884 msgid "Variant Stock" msgstr "" -#: part/serializers.py:1054 +#: part/serializers.py:943 msgid "Duplicate Part" msgstr "" -#: part/serializers.py:1055 +#: part/serializers.py:944 msgid "Copy initial data from another Part" msgstr "" -#: part/serializers.py:1061 +#: part/serializers.py:950 msgid "Initial Stock" msgstr "Estoque Inicial" -#: part/serializers.py:1062 +#: part/serializers.py:951 msgid "Create Part with initial stock quantity" msgstr "" -#: part/serializers.py:1068 +#: part/serializers.py:957 msgid "Supplier Information" msgstr "" -#: part/serializers.py:1069 +#: part/serializers.py:958 msgid "Add initial supplier information for this part" msgstr "" -#: part/serializers.py:1077 +#: part/serializers.py:966 msgid "Copy Category Parameters" msgstr "" -#: part/serializers.py:1078 +#: part/serializers.py:967 msgid "Copy parameter templates from selected part category" msgstr "" -#: part/serializers.py:1083 +#: part/serializers.py:972 msgid "Existing Image" msgstr "" -#: part/serializers.py:1084 +#: part/serializers.py:973 msgid "Filename of an existing part image" msgstr "" -#: part/serializers.py:1101 +#: part/serializers.py:990 msgid "Image file does not exist" msgstr "" -#: part/serializers.py:1269 +#: part/serializers.py:1134 msgid "Validate entire Bill of Materials" msgstr "" -#: part/serializers.py:1303 part/serializers.py:1769 +#: part/serializers.py:1168 part/serializers.py:1634 msgid "Can Build" msgstr "" -#: part/serializers.py:1320 +#: part/serializers.py:1185 msgid "Required for Build Orders" msgstr "" -#: part/serializers.py:1325 +#: part/serializers.py:1190 msgid "Allocated to Build Orders" msgstr "" -#: part/serializers.py:1332 +#: part/serializers.py:1197 msgid "Required for Sales Orders" msgstr "" -#: part/serializers.py:1336 +#: part/serializers.py:1201 msgid "Allocated to Sales Orders" msgstr "" -#: part/serializers.py:1475 +#: part/serializers.py:1340 msgid "Minimum Price" msgstr "" -#: part/serializers.py:1476 +#: part/serializers.py:1341 msgid "Override calculated value for minimum price" msgstr "" -#: part/serializers.py:1483 +#: part/serializers.py:1348 msgid "Minimum price currency" msgstr "" -#: part/serializers.py:1490 +#: part/serializers.py:1355 msgid "Maximum Price" msgstr "" -#: part/serializers.py:1491 +#: part/serializers.py:1356 msgid "Override calculated value for maximum price" msgstr "" -#: part/serializers.py:1498 +#: part/serializers.py:1363 msgid "Maximum price currency" msgstr "" -#: part/serializers.py:1527 +#: part/serializers.py:1392 msgid "Update" msgstr "Atualizar" -#: part/serializers.py:1528 +#: part/serializers.py:1393 msgid "Update pricing for this part" msgstr "" -#: part/serializers.py:1551 +#: part/serializers.py:1416 #, python-brace-format msgid "Could not convert from provided currencies to {default_currency}" msgstr "" -#: part/serializers.py:1558 +#: part/serializers.py:1423 msgid "Minimum price must not be greater than maximum price" msgstr "" -#: part/serializers.py:1561 +#: part/serializers.py:1426 msgid "Maximum price must not be less than minimum price" msgstr "" -#: part/serializers.py:1715 +#: part/serializers.py:1580 msgid "Select the parent assembly" msgstr "" -#: part/serializers.py:1735 +#: part/serializers.py:1600 msgid "Select the component part" msgstr "" -#: part/serializers.py:1929 +#: part/serializers.py:1802 msgid "Select part to copy BOM from" msgstr "" -#: part/serializers.py:1937 +#: part/serializers.py:1810 msgid "Remove Existing Data" msgstr "" -#: part/serializers.py:1938 +#: part/serializers.py:1811 msgid "Remove existing BOM items before copying" msgstr "" -#: part/serializers.py:1943 +#: part/serializers.py:1816 msgid "Include Inherited" msgstr "" -#: part/serializers.py:1944 +#: part/serializers.py:1817 msgid "Include BOM items which are inherited from templated parts" msgstr "" -#: part/serializers.py:1949 +#: part/serializers.py:1822 msgid "Skip Invalid Rows" msgstr "Ignorar Linhas Inválidas" -#: part/serializers.py:1950 +#: part/serializers.py:1823 msgid "Enable this option to skip invalid rows" msgstr "Habilite essa opção para ignorar linhas inválidas" -#: part/serializers.py:1955 +#: part/serializers.py:1828 msgid "Copy Substitute Parts" msgstr "" -#: part/serializers.py:1956 +#: part/serializers.py:1829 msgid "Copy substitute parts when duplicate BOM items" msgstr "" @@ -6927,7 +6974,7 @@ msgstr "" #: plugin/builtin/events/auto_issue_orders.py:19 #: plugin/builtin/exporter/bom_exporter.py:73 #: plugin/builtin/exporter/inventree_exporter.py:17 -#: plugin/builtin/exporter/part_parameter_exporter.py:36 +#: plugin/builtin/exporter/parameter_exporter.py:32 #: plugin/builtin/exporter/stocktake_exporter.py:47 #: plugin/builtin/integration/core_notifications.py:25 #: plugin/builtin/integration/core_notifications.py:69 @@ -7041,23 +7088,19 @@ msgid "Include total quantity of each part in the BOM" msgstr "" #: plugin/builtin/exporter/bom_exporter.py:35 -#: plugin/builtin/exporter/part_parameter_exporter.py:17 msgid "Stock Data" msgstr "" #: plugin/builtin/exporter/bom_exporter.py:35 -#: plugin/builtin/exporter/part_parameter_exporter.py:17 msgid "Include part stock data" msgstr "" #: plugin/builtin/exporter/bom_exporter.py:39 -#: plugin/builtin/exporter/part_parameter_exporter.py:21 #: plugin/builtin/exporter/stocktake_exporter.py:20 msgid "Pricing Data" msgstr "" #: plugin/builtin/exporter/bom_exporter.py:39 -#: plugin/builtin/exporter/part_parameter_exporter.py:21 #: plugin/builtin/exporter/stocktake_exporter.py:20 msgid "Include part pricing data" msgstr "" @@ -7144,12 +7187,20 @@ msgstr "" msgid "Provides support for exporting data from InvenTree" msgstr "" -#: plugin/builtin/exporter/part_parameter_exporter.py:33 -msgid "Part Parameter Exporter" +#: plugin/builtin/exporter/parameter_exporter.py:16 +msgid "Exclude Inactive" msgstr "" -#: plugin/builtin/exporter/part_parameter_exporter.py:34 -msgid "Exporter for part parameter data" +#: plugin/builtin/exporter/parameter_exporter.py:17 +msgid "Exclude parameters which are inactive" +msgstr "" + +#: plugin/builtin/exporter/parameter_exporter.py:29 +msgid "Parameter Exporter" +msgstr "" + +#: plugin/builtin/exporter/parameter_exporter.py:30 +msgid "Exporter for model parameter data" msgstr "" #: plugin/builtin/exporter/stocktake_exporter.py:25 @@ -8079,19 +8130,19 @@ msgstr "" msgid "No result" msgstr "" -#: report/templatetags/report.py:167 +#: report/templatetags/report.py:169 msgid "Asset file does not exist" msgstr "" -#: report/templatetags/report.py:224 report/templatetags/report.py:300 +#: report/templatetags/report.py:226 report/templatetags/report.py:302 msgid "Image file not found" msgstr "" -#: report/templatetags/report.py:325 +#: report/templatetags/report.py:327 msgid "part_image tag requires a Part instance" msgstr "" -#: report/templatetags/report.py:362 +#: report/templatetags/report.py:383 msgid "company_image tag requires a Company instance" msgstr "" @@ -8455,115 +8506,119 @@ msgstr "" msgid "Quantity does not match serial numbers" msgstr "" -#: stock/models.py:2012 stock/models.py:2917 +#: stock/models.py:1912 +msgid "Cannot assign stock to structural location" +msgstr "" + +#: stock/models.py:2029 stock/models.py:2934 msgid "Test template does not exist" msgstr "" -#: stock/models.py:2030 +#: stock/models.py:2047 msgid "Stock item has been assigned to a sales order" msgstr "" -#: stock/models.py:2034 +#: stock/models.py:2051 msgid "Stock item is installed in another item" msgstr "" -#: stock/models.py:2037 +#: stock/models.py:2054 msgid "Stock item contains other items" msgstr "" -#: stock/models.py:2040 +#: stock/models.py:2057 msgid "Stock item has been assigned to a customer" msgstr "" -#: stock/models.py:2043 stock/models.py:2226 +#: stock/models.py:2060 stock/models.py:2243 msgid "Stock item is currently in production" msgstr "" -#: stock/models.py:2046 +#: stock/models.py:2063 msgid "Serialized stock cannot be merged" msgstr "" -#: stock/models.py:2053 stock/serializers.py:1462 +#: stock/models.py:2070 stock/serializers.py:1462 msgid "Duplicate stock items" msgstr "" -#: stock/models.py:2057 +#: stock/models.py:2074 msgid "Stock items must refer to the same part" msgstr "" -#: stock/models.py:2065 +#: stock/models.py:2082 msgid "Stock items must refer to the same supplier part" msgstr "" -#: stock/models.py:2070 +#: stock/models.py:2087 msgid "Stock status codes must match" msgstr "" -#: stock/models.py:2349 +#: stock/models.py:2366 msgid "StockItem cannot be moved as it is not in stock" msgstr "" -#: stock/models.py:2818 +#: stock/models.py:2835 msgid "Stock Item Tracking" msgstr "" -#: stock/models.py:2849 +#: stock/models.py:2866 msgid "Entry notes" msgstr "" -#: stock/models.py:2889 +#: stock/models.py:2906 msgid "Stock Item Test Result" msgstr "" -#: stock/models.py:2920 +#: stock/models.py:2937 msgid "Value must be provided for this test" msgstr "" -#: stock/models.py:2924 +#: stock/models.py:2941 msgid "Attachment must be uploaded for this test" msgstr "" -#: stock/models.py:2929 +#: stock/models.py:2946 msgid "Invalid value for this test" msgstr "" -#: stock/models.py:2953 +#: stock/models.py:2970 msgid "Test result" msgstr "" -#: stock/models.py:2960 +#: stock/models.py:2977 msgid "Test output value" msgstr "" -#: stock/models.py:2968 stock/serializers.py:248 +#: stock/models.py:2985 stock/serializers.py:248 msgid "Test result attachment" msgstr "" -#: stock/models.py:2972 +#: stock/models.py:2989 msgid "Test notes" msgstr "" -#: stock/models.py:2980 +#: stock/models.py:2997 msgid "Test station" msgstr "" -#: stock/models.py:2981 +#: stock/models.py:2998 msgid "The identifier of the test station where the test was performed" msgstr "" -#: stock/models.py:2987 +#: stock/models.py:3004 msgid "Started" msgstr "" -#: stock/models.py:2988 +#: stock/models.py:3005 msgid "The timestamp of the test start" msgstr "" -#: stock/models.py:2994 +#: stock/models.py:3011 msgid "Finished" msgstr "" -#: stock/models.py:2995 +#: stock/models.py:3012 msgid "The timestamp of the test finish" msgstr "" @@ -8677,8 +8732,8 @@ msgstr "" msgid "Quantity must not exceed available stock quantity ({q})" msgstr "" -#: stock/serializers.py:711 stock/serializers.py:1419 stock/serializers.py:1732 -#: stock/serializers.py:1781 +#: stock/serializers.py:711 stock/serializers.py:1419 stock/serializers.py:1740 +#: stock/serializers.py:1789 msgid "Destination stock location" msgstr "" @@ -8834,19 +8889,19 @@ msgstr "" msgid "Stock transaction notes" msgstr "" -#: stock/serializers.py:1787 +#: stock/serializers.py:1795 msgid "Merge into existing stock" msgstr "" -#: stock/serializers.py:1788 +#: stock/serializers.py:1796 msgid "Merge returned items into existing stock items if possible" msgstr "" -#: stock/serializers.py:1831 +#: stock/serializers.py:1839 msgid "Next Serial Number" msgstr "" -#: stock/serializers.py:1837 +#: stock/serializers.py:1845 msgid "Previous Serial Number" msgstr "" @@ -8902,83 +8957,87 @@ msgstr "" msgid "Stock manually removed" msgstr "" -#: stock/status_codes.py:57 +#: stock/status_codes.py:56 +msgid "Serialized stock items" +msgstr "" + +#: stock/status_codes.py:58 msgid "Returned to stock" msgstr "" -#: stock/status_codes.py:60 +#: stock/status_codes.py:61 msgid "Location changed" msgstr "" -#: stock/status_codes.py:61 +#: stock/status_codes.py:62 msgid "Stock updated" msgstr "" -#: stock/status_codes.py:64 +#: stock/status_codes.py:65 msgid "Installed into assembly" msgstr "" -#: stock/status_codes.py:65 +#: stock/status_codes.py:66 msgid "Removed from assembly" msgstr "" -#: stock/status_codes.py:67 +#: stock/status_codes.py:68 msgid "Installed component item" msgstr "" -#: stock/status_codes.py:68 +#: stock/status_codes.py:69 msgid "Removed component item" msgstr "" -#: stock/status_codes.py:71 +#: stock/status_codes.py:72 msgid "Split from parent item" msgstr "" -#: stock/status_codes.py:72 +#: stock/status_codes.py:73 msgid "Split child item" msgstr "" -#: stock/status_codes.py:75 +#: stock/status_codes.py:76 msgid "Merged stock items" msgstr "" -#: stock/status_codes.py:78 +#: stock/status_codes.py:79 msgid "Converted to variant" msgstr "" -#: stock/status_codes.py:81 +#: stock/status_codes.py:82 msgid "Build order output created" msgstr "" -#: stock/status_codes.py:82 +#: stock/status_codes.py:83 msgid "Build order output completed" msgstr "" -#: stock/status_codes.py:83 +#: stock/status_codes.py:84 msgid "Build order output rejected" msgstr "" -#: stock/status_codes.py:84 +#: stock/status_codes.py:85 msgid "Consumed by build order" msgstr "" -#: stock/status_codes.py:87 +#: stock/status_codes.py:88 msgid "Shipped against Sales Order" msgstr "" -#: stock/status_codes.py:90 +#: stock/status_codes.py:91 msgid "Received against Purchase Order" msgstr "" -#: stock/status_codes.py:93 +#: stock/status_codes.py:94 msgid "Returned against Return Order" msgstr "" -#: stock/status_codes.py:96 +#: stock/status_codes.py:97 msgid "Sent to customer" msgstr "" -#: stock/status_codes.py:97 +#: stock/status_codes.py:98 msgid "Returned from customer" msgstr "" diff --git a/src/backend/InvenTree/locale/ro/LC_MESSAGES/django.po b/src/backend/InvenTree/locale/ro/LC_MESSAGES/django.po index 5414710c92..2600bc902b 100644 --- a/src/backend/InvenTree/locale/ro/LC_MESSAGES/django.po +++ b/src/backend/InvenTree/locale/ro/LC_MESSAGES/django.po @@ -2,8 +2,8 @@ msgid "" msgstr "" "Project-Id-Version: inventree\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-11-19 04:55+0000\n" -"PO-Revision-Date: 2025-11-19 04:59\n" +"POT-Creation-Date: 2025-12-07 07:33+0000\n" +"PO-Revision-Date: 2025-12-07 07:36\n" "Last-Translator: \n" "Language-Team: Romanian\n" "Language: ro_RO\n" @@ -57,7 +57,7 @@ msgstr "" msgid "This field must be unique." msgstr "" -#: InvenTree/api.py:775 +#: InvenTree/api.py:803 msgid "User does not have permission to view this model" msgstr "Utilizatorul nu are permisiunea de a vedea acest model" @@ -81,22 +81,22 @@ msgstr "" msgid "The provided email domain is not approved." msgstr "Domeniul de e-mail furnizat nu este aprobat." -#: InvenTree/conversion.py:166 +#: InvenTree/conversion.py:240 #, python-brace-format msgid "Invalid unit provided ({unit})" msgstr "" -#: InvenTree/conversion.py:183 +#: InvenTree/conversion.py:257 msgid "No value provided" msgstr "" -#: InvenTree/conversion.py:210 +#: InvenTree/conversion.py:284 #, python-brace-format msgid "Could not convert {original} to {unit}" msgstr "" -#: InvenTree/conversion.py:212 InvenTree/conversion.py:226 -#: InvenTree/helpers.py:597 order/models.py:720 order/models.py:1015 +#: InvenTree/conversion.py:286 InvenTree/conversion.py:300 +#: InvenTree/helpers.py:597 order/models.py:721 order/models.py:1016 msgid "Invalid quantity provided" msgstr "" @@ -112,11 +112,11 @@ msgstr "" msgid "Invalid decimal value" msgstr "" -#: InvenTree/fields.py:218 InvenTree/models.py:1067 build/serializers.py:509 -#: build/serializers.py:580 build/serializers.py:1788 company/models.py:857 -#: order/models.py:1780 +#: InvenTree/fields.py:218 InvenTree/models.py:1228 build/serializers.py:517 +#: build/serializers.py:588 build/serializers.py:1796 company/models.py:811 +#: order/models.py:1781 #: report/templates/report/inventree_build_order_report.html:172 -#: stock/models.py:2848 stock/models.py:2972 stock/serializers.py:717 +#: stock/models.py:2865 stock/models.py:2989 stock/serializers.py:717 #: stock/serializers.py:893 stock/serializers.py:1035 stock/serializers.py:1336 #: stock/serializers.py:1425 stock/serializers.py:1624 msgid "Notes" @@ -171,35 +171,35 @@ msgstr "" msgid "Data contains prohibited markdown content" msgstr "" -#: InvenTree/helpers_model.py:133 +#: InvenTree/helpers_model.py:134 msgid "Connection error" msgstr "" -#: InvenTree/helpers_model.py:138 InvenTree/helpers_model.py:145 +#: InvenTree/helpers_model.py:139 InvenTree/helpers_model.py:146 msgid "Server responded with invalid status code" msgstr "" -#: InvenTree/helpers_model.py:141 +#: InvenTree/helpers_model.py:142 msgid "Exception occurred" msgstr "" -#: InvenTree/helpers_model.py:151 +#: InvenTree/helpers_model.py:152 msgid "Server responded with invalid Content-Length value" msgstr "" -#: InvenTree/helpers_model.py:154 +#: InvenTree/helpers_model.py:155 msgid "Image size is too large" msgstr "" -#: InvenTree/helpers_model.py:166 +#: InvenTree/helpers_model.py:167 msgid "Image download exceeded maximum size" msgstr "" -#: InvenTree/helpers_model.py:171 +#: InvenTree/helpers_model.py:172 msgid "Remote server returned empty response" msgstr "" -#: InvenTree/helpers_model.py:179 +#: InvenTree/helpers_model.py:180 msgid "Supplied URL is not a valid image file" msgstr "" @@ -207,7 +207,7 @@ msgstr "" msgid "Log in to the app" msgstr "" -#: InvenTree/magic_login.py:41 company/models.py:172 users/serializers.py:198 +#: InvenTree/magic_login.py:41 company/models.py:173 users/serializers.py:198 msgid "Email" msgstr "" @@ -215,160 +215,176 @@ msgstr "" msgid "You must enable two-factor authentication before doing anything else." msgstr "" -#: InvenTree/models.py:111 +#: InvenTree/models.py:114 msgid "Error running plugin validation" msgstr "" -#: InvenTree/models.py:192 +#: InvenTree/models.py:195 msgid "Metadata must be a python dict object" msgstr "" -#: InvenTree/models.py:198 +#: InvenTree/models.py:201 msgid "Plugin Metadata" msgstr "" -#: InvenTree/models.py:199 +#: InvenTree/models.py:202 msgid "JSON metadata field, for use by external plugins" msgstr "" -#: InvenTree/models.py:382 +#: InvenTree/models.py:385 msgid "Improperly formatted pattern" msgstr "" -#: InvenTree/models.py:389 +#: InvenTree/models.py:392 msgid "Unknown format key specified" msgstr "" -#: InvenTree/models.py:395 +#: InvenTree/models.py:398 msgid "Missing required format key" msgstr "" -#: InvenTree/models.py:406 +#: InvenTree/models.py:409 msgid "Reference field cannot be empty" msgstr "" -#: InvenTree/models.py:414 +#: InvenTree/models.py:417 msgid "Reference must match required pattern" msgstr "" -#: InvenTree/models.py:445 +#: InvenTree/models.py:448 msgid "Reference number is too large" msgstr "" -#: InvenTree/models.py:743 +#: InvenTree/models.py:896 msgid "Invalid choice" msgstr "" -#: InvenTree/models.py:856 common/models.py:1410 common/models.py:1837 -#: common/models.py:2096 common/models.py:2221 common/serializers.py:535 -#: company/models.py:615 generic/states/serializers.py:20 machine/models.py:25 -#: part/models.py:1039 part/models.py:3850 plugin/models.py:54 +#: InvenTree/models.py:1017 common/models.py:1414 common/models.py:1841 +#: common/models.py:2102 common/models.py:2227 common/models.py:2494 +#: common/serializers.py:539 generic/states/serializers.py:20 +#: machine/models.py:25 part/models.py:1127 plugin/models.py:54 #: report/models.py:216 stock/models.py:84 msgid "Name" msgstr "" -#: InvenTree/models.py:862 build/models.py:252 common/models.py:171 -#: common/models.py:2228 common/models.py:2341 company/models.py:543 -#: company/models.py:848 order/models.py:442 order/models.py:1825 -#: part/models.py:1062 part/models.py:3865 report/models.py:222 +#: InvenTree/models.py:1023 build/models.py:253 common/models.py:175 +#: common/models.py:2234 common/models.py:2347 common/models.py:2509 +#: company/models.py:545 company/models.py:802 order/models.py:443 +#: order/models.py:1826 part/models.py:1150 report/models.py:222 #: report/models.py:815 report/models.py:841 #: report/templates/report/inventree_build_order_report.html:117 #: stock/models.py:90 msgid "Description" msgstr "" -#: InvenTree/models.py:863 stock/models.py:91 +#: InvenTree/models.py:1024 stock/models.py:91 msgid "Description (optional)" msgstr "" -#: InvenTree/models.py:878 common/models.py:2394 +#: InvenTree/models.py:1039 common/models.py:2815 msgid "Path" msgstr "" -#: InvenTree/models.py:983 +#: InvenTree/models.py:1144 msgid "Duplicate names cannot exist under the same parent" msgstr "" -#: InvenTree/models.py:1067 +#: InvenTree/models.py:1228 msgid "Markdown notes (optional)" msgstr "" -#: InvenTree/models.py:1098 +#: InvenTree/models.py:1259 msgid "Barcode Data" msgstr "" -#: InvenTree/models.py:1099 +#: InvenTree/models.py:1260 msgid "Third party barcode data" msgstr "" -#: InvenTree/models.py:1105 +#: InvenTree/models.py:1266 msgid "Barcode Hash" msgstr "" -#: InvenTree/models.py:1106 +#: InvenTree/models.py:1267 msgid "Unique hash of barcode data" msgstr "" -#: InvenTree/models.py:1187 +#: InvenTree/models.py:1348 msgid "Existing barcode found" msgstr "" -#: InvenTree/models.py:1269 +#: InvenTree/models.py:1430 msgid "Task Failure" msgstr "" -#: InvenTree/models.py:1270 +#: InvenTree/models.py:1431 #, python-brace-format msgid "Background worker task '{f}' failed after {n} attempts" msgstr "" -#: InvenTree/models.py:1297 +#: InvenTree/models.py:1458 msgid "Server Error" msgstr "" -#: InvenTree/models.py:1298 +#: InvenTree/models.py:1459 msgid "An error has been logged by the server." msgstr "" -#: InvenTree/models.py:1340 common/models.py:1748 +#: InvenTree/models.py:1501 common/models.py:1752 #: report/templates/report/inventree_bill_of_materials_report.html:126 #: report/templates/report/inventree_bill_of_materials_report.html:148 #: report/templates/report/inventree_return_order_report.html:35 msgid "Image" msgstr "" -#: InvenTree/serializers.py:253 part/models.py:4571 +#: InvenTree/serializers.py:255 part/models.py:4196 msgid "Must be a valid number" msgstr "" -#: InvenTree/serializers.py:295 company/models.py:214 part/models.py:3285 +#: InvenTree/serializers.py:297 company/models.py:215 part/models.py:3349 msgid "Currency" msgstr "" -#: InvenTree/serializers.py:298 part/serializers.py:1385 +#: InvenTree/serializers.py:300 part/serializers.py:1250 msgid "Select currency from available options" msgstr "" -#: InvenTree/serializers.py:653 +#: InvenTree/serializers.py:654 +msgid "This field may not be null." +msgstr "" + +#: InvenTree/serializers.py:660 msgid "Invalid value" msgstr "" -#: InvenTree/serializers.py:690 +#: InvenTree/serializers.py:697 msgid "Remote Image" msgstr "" -#: InvenTree/serializers.py:691 +#: InvenTree/serializers.py:698 msgid "URL of remote image file" msgstr "" -#: InvenTree/serializers.py:709 +#: InvenTree/serializers.py:716 msgid "Downloading images from remote URL is not enabled" msgstr "" -#: InvenTree/serializers.py:716 +#: InvenTree/serializers.py:723 msgid "Failed to download image from remote URL" msgstr "" +#: InvenTree/serializers.py:806 +msgid "Invalid content type format" +msgstr "" + +#: InvenTree/serializers.py:809 +msgid "Content type not found" +msgstr "" + +#: InvenTree/serializers.py:815 +msgid "Content type does not match required mixin class" +msgstr "" + #: InvenTree/setting/locales.py:20 msgid "Arabic" msgstr "" @@ -537,30 +553,30 @@ msgstr "" msgid "Not a valid currency code" msgstr "" -#: build/api.py:54 order/api.py:111 order/api.py:270 order/api.py:1373 -#: order/serializers.py:132 +#: build/api.py:54 order/api.py:116 order/api.py:275 order/api.py:1378 +#: order/serializers.py:133 msgid "Order Status" msgstr "" -#: build/api.py:80 build/models.py:264 +#: build/api.py:80 build/models.py:265 msgid "Parent Build" msgstr "" -#: build/api.py:84 build/api.py:831 order/api.py:547 order/api.py:770 -#: order/api.py:1174 order/api.py:1449 stock/api.py:573 +#: build/api.py:84 build/api.py:837 order/api.py:553 order/api.py:776 +#: order/api.py:1179 order/api.py:1454 stock/api.py:573 msgid "Include Variants" msgstr "" -#: build/api.py:100 build/api.py:466 build/api.py:845 build/models.py:270 -#: build/serializers.py:1225 build/serializers.py:1356 -#: build/serializers.py:1427 company/models.py:1067 company/serializers.py:445 -#: order/api.py:298 order/api.py:302 order/api.py:929 order/api.py:1187 -#: order/api.py:1190 order/models.py:1941 order/models.py:2108 -#: order/models.py:2109 part/api.py:1233 part/api.py:1236 part/api.py:1302 -#: part/api.py:1589 part/models.py:472 part/models.py:3296 part/models.py:3439 -#: part/models.py:3497 part/models.py:3518 part/models.py:3540 -#: part/models.py:3679 part/models.py:4046 part/models.py:4368 -#: part/models.py:4787 part/serializers.py:1928 +#: build/api.py:100 build/api.py:472 build/api.py:851 build/models.py:271 +#: build/serializers.py:1233 build/serializers.py:1364 +#: build/serializers.py:1435 company/models.py:1021 company/serializers.py:490 +#: order/api.py:303 order/api.py:307 order/api.py:934 order/api.py:1192 +#: order/api.py:1195 order/models.py:1942 order/models.py:2109 +#: order/models.py:2110 part/api.py:1160 part/api.py:1163 part/api.py:1314 +#: part/models.py:550 part/models.py:3360 part/models.py:3503 +#: part/models.py:3561 part/models.py:3582 part/models.py:3604 +#: part/models.py:3743 part/models.py:3993 part/models.py:4412 +#: part/serializers.py:1801 #: report/templates/report/inventree_bill_of_materials_report.html:110 #: report/templates/report/inventree_bill_of_materials_report.html:137 #: report/templates/report/inventree_build_order_report.html:109 @@ -580,9 +596,9 @@ msgstr "" msgid "Part" msgstr "" -#: build/api.py:120 build/api.py:123 build/serializers.py:1438 part/api.py:980 -#: part/api.py:1316 part/api.py:1600 part/models.py:1080 part/models.py:3568 -#: part/models.py:4162 part/serializers.py:1752 stock/api.py:869 +#: build/api.py:120 build/api.py:123 build/serializers.py:1446 part/api.py:975 +#: part/api.py:1325 part/models.py:435 part/models.py:1168 part/models.py:3632 +#: part/serializers.py:1617 stock/api.py:869 msgid "Category" msgstr "" @@ -590,7 +606,7 @@ msgstr "" msgid "Ancestor Build" msgstr "" -#: build/api.py:152 order/api.py:129 +#: build/api.py:152 order/api.py:134 msgid "Assigned to me" msgstr "" @@ -638,134 +654,134 @@ msgstr "" msgid "Completed after" msgstr "" -#: build/api.py:249 order/api.py:226 +#: build/api.py:249 order/api.py:231 msgid "Min Date" msgstr "" -#: build/api.py:272 order/api.py:245 +#: build/api.py:272 order/api.py:250 msgid "Max Date" msgstr "" -#: build/api.py:297 build/api.py:300 part/api.py:217 stock/api.py:961 +#: build/api.py:297 build/api.py:300 part/api.py:212 stock/api.py:961 msgid "Exclude Tree" msgstr "" -#: build/api.py:405 +#: build/api.py:411 msgid "Build must be cancelled before it can be deleted" msgstr "" -#: build/api.py:449 build/serializers.py:1374 part/models.py:4402 +#: build/api.py:455 build/serializers.py:1382 part/models.py:4027 msgid "Consumable" msgstr "" -#: build/api.py:452 build/serializers.py:1377 part/models.py:4396 +#: build/api.py:458 build/serializers.py:1385 part/models.py:4021 msgid "Optional" msgstr "" -#: build/api.py:455 build/serializers.py:1415 common/setting/system.py:456 -#: part/models.py:1202 part/serializers.py:1714 part/serializers.py:1725 +#: build/api.py:461 build/serializers.py:1423 common/setting/system.py:456 +#: part/models.py:1290 part/serializers.py:1579 part/serializers.py:1590 #: stock/api.py:639 msgid "Assembly" msgstr "" -#: build/api.py:458 +#: build/api.py:464 msgid "Tracked" msgstr "" -#: build/api.py:461 build/serializers.py:1380 part/models.py:1220 +#: build/api.py:467 build/serializers.py:1388 part/models.py:1308 msgid "Testable" msgstr "" -#: build/api.py:471 order/api.py:993 order/api.py:1363 +#: build/api.py:477 order/api.py:998 order/api.py:1368 msgid "Order Outstanding" msgstr "" -#: build/api.py:481 build/serializers.py:1464 order/api.py:952 +#: build/api.py:487 build/serializers.py:1472 order/api.py:957 msgid "Allocated" msgstr "" -#: build/api.py:490 build/models.py:1672 build/serializers.py:1393 +#: build/api.py:496 build/models.py:1673 build/serializers.py:1401 msgid "Consumed" msgstr "" -#: build/api.py:499 company/models.py:912 company/serializers.py:440 +#: build/api.py:505 company/models.py:866 company/serializers.py:467 #: templates/email/build_order_required_stock.html:19 #: templates/email/low_stock_notification.html:17 #: templates/email/part_event_notification.html:18 msgid "Available" msgstr "" -#: build/api.py:523 build/serializers.py:1466 company/serializers.py:437 -#: order/serializers.py:1281 part/serializers.py:959 part/serializers.py:1306 -#: part/serializers.py:1761 +#: build/api.py:529 build/serializers.py:1474 company/serializers.py:464 +#: order/serializers.py:1295 part/serializers.py:844 part/serializers.py:1171 +#: part/serializers.py:1626 msgid "On Order" msgstr "" -#: build/api.py:868 build/models.py:117 order/models.py:1974 +#: build/api.py:874 build/models.py:118 order/models.py:1975 #: report/templates/report/inventree_build_order_report.html:105 #: stock/serializers.py:93 templates/email/build_order_completed.html:16 #: templates/email/overdue_build_order.html:15 msgid "Build Order" msgstr "" -#: build/api.py:882 build/api.py:886 build/serializers.py:372 -#: build/serializers.py:497 build/serializers.py:567 build/serializers.py:1251 -#: build/serializers.py:1256 order/api.py:1234 order/api.py:1239 -#: order/serializers.py:833 order/serializers.py:973 order/serializers.py:2042 +#: build/api.py:888 build/api.py:892 build/serializers.py:380 +#: build/serializers.py:505 build/serializers.py:575 build/serializers.py:1259 +#: build/serializers.py:1264 order/api.py:1239 order/api.py:1244 +#: order/serializers.py:844 order/serializers.py:984 order/serializers.py:2059 #: stock/api.py:987 stock/serializers.py:111 stock/serializers.py:601 #: stock/serializers.py:710 stock/serializers.py:888 stock/serializers.py:1418 -#: stock/serializers.py:1731 stock/serializers.py:1780 +#: stock/serializers.py:1739 stock/serializers.py:1788 #: templates/email/stale_stock_notification.html:18 users/models.py:549 msgid "Location" msgstr "" -#: build/api.py:894 +#: build/api.py:900 msgid "Output" msgstr "" -#: build/api.py:896 +#: build/api.py:902 msgid "Filter by output stock item ID. Use 'null' to find uninstalled build items." msgstr "" -#: build/models.py:118 users/ruleset.py:31 +#: build/models.py:119 users/ruleset.py:31 msgid "Build Orders" -msgstr "" +msgstr "Comenzi de Producție" -#: build/models.py:168 +#: build/models.py:169 msgid "Assembly BOM has not been validated" msgstr "" -#: build/models.py:175 +#: build/models.py:176 msgid "Build order cannot be created for an inactive part" msgstr "" -#: build/models.py:182 +#: build/models.py:183 msgid "Build order cannot be created for an unlocked part" msgstr "" -#: build/models.py:200 +#: build/models.py:201 msgid "Build orders can only be externally fulfilled for purchaseable parts" msgstr "" -#: build/models.py:207 order/models.py:369 +#: build/models.py:208 order/models.py:370 msgid "Responsible user or group must be specified" msgstr "" -#: build/models.py:212 +#: build/models.py:213 msgid "Build order part cannot be changed" msgstr "" -#: build/models.py:217 order/models.py:382 +#: build/models.py:218 order/models.py:383 msgid "Target date must be after start date" msgstr "" -#: build/models.py:245 +#: build/models.py:246 msgid "Build Order Reference" msgstr "" -#: build/models.py:246 build/serializers.py:1371 order/models.py:614 -#: order/models.py:1311 order/models.py:1773 order/models.py:2712 -#: part/models.py:4442 +#: build/models.py:247 build/serializers.py:1379 order/models.py:615 +#: order/models.py:1312 order/models.py:1774 order/models.py:2713 +#: part/models.py:4067 #: report/templates/report/inventree_bill_of_materials_report.html:139 #: report/templates/report/inventree_purchase_order_report.html:35 #: report/templates/report/inventree_return_order_report.html:26 @@ -773,230 +789,230 @@ msgstr "" msgid "Reference" msgstr "" -#: build/models.py:255 +#: build/models.py:256 msgid "Brief description of the build (optional)" msgstr "" -#: build/models.py:265 +#: build/models.py:266 msgid "BuildOrder to which this build is allocated" msgstr "" -#: build/models.py:274 +#: build/models.py:275 msgid "Select part to build" msgstr "" -#: build/models.py:279 +#: build/models.py:280 msgid "Sales Order Reference" msgstr "" -#: build/models.py:284 +#: build/models.py:285 msgid "SalesOrder to which this build is allocated" msgstr "" -#: build/models.py:289 build/serializers.py:1097 +#: build/models.py:290 build/serializers.py:1105 msgid "Source Location" msgstr "" -#: build/models.py:295 +#: build/models.py:296 msgid "Select location to take stock from for this build (leave blank to take from any stock location)" msgstr "" -#: build/models.py:301 +#: build/models.py:302 msgid "External Build" msgstr "" -#: build/models.py:302 +#: build/models.py:303 msgid "This build order is fulfilled externally" msgstr "" -#: build/models.py:307 +#: build/models.py:308 msgid "Destination Location" msgstr "" -#: build/models.py:312 +#: build/models.py:313 msgid "Select location where the completed items will be stored" msgstr "" -#: build/models.py:316 +#: build/models.py:317 msgid "Build Quantity" msgstr "" -#: build/models.py:319 +#: build/models.py:320 msgid "Number of stock items to build" msgstr "" -#: build/models.py:323 +#: build/models.py:324 msgid "Completed items" msgstr "" -#: build/models.py:325 +#: build/models.py:326 msgid "Number of stock items which have been completed" msgstr "" -#: build/models.py:329 +#: build/models.py:330 msgid "Build Status" msgstr "" -#: build/models.py:334 +#: build/models.py:335 msgid "Build status code" msgstr "" -#: build/models.py:343 build/serializers.py:359 order/serializers.py:849 +#: build/models.py:344 build/serializers.py:367 order/serializers.py:860 #: stock/models.py:1100 stock/serializers.py:85 stock/serializers.py:1591 msgid "Batch Code" msgstr "" -#: build/models.py:347 build/serializers.py:360 +#: build/models.py:348 build/serializers.py:368 msgid "Batch code for this build output" msgstr "" -#: build/models.py:351 order/models.py:479 order/serializers.py:186 -#: part/models.py:1283 +#: build/models.py:352 order/models.py:480 order/serializers.py:193 +#: part/models.py:1371 msgid "Creation Date" msgstr "" -#: build/models.py:357 +#: build/models.py:358 msgid "Build start date" msgstr "" -#: build/models.py:358 +#: build/models.py:359 msgid "Scheduled start date for this build order" msgstr "" -#: build/models.py:364 +#: build/models.py:365 msgid "Target completion date" msgstr "" -#: build/models.py:366 +#: build/models.py:367 msgid "Target date for build completion. Build will be overdue after this date." msgstr "" -#: build/models.py:371 order/models.py:667 order/models.py:2751 +#: build/models.py:372 order/models.py:668 order/models.py:2752 msgid "Completion Date" msgstr "" -#: build/models.py:379 +#: build/models.py:380 msgid "completed by" msgstr "" -#: build/models.py:388 +#: build/models.py:389 msgid "Issued by" msgstr "" -#: build/models.py:389 +#: build/models.py:390 msgid "User who issued this build order" msgstr "" -#: build/models.py:398 common/models.py:180 order/api.py:179 -#: order/models.py:504 part/models.py:1300 +#: build/models.py:399 common/models.py:184 order/api.py:184 +#: order/models.py:505 part/models.py:1388 #: report/templates/report/inventree_build_order_report.html:158 msgid "Responsible" msgstr "" -#: build/models.py:399 +#: build/models.py:400 msgid "User or group responsible for this build order" msgstr "" -#: build/models.py:404 stock/models.py:1093 +#: build/models.py:405 stock/models.py:1093 msgid "External Link" msgstr "" -#: build/models.py:406 common/models.py:1984 part/models.py:1114 +#: build/models.py:407 common/models.py:1990 part/models.py:1202 #: stock/models.py:1095 msgid "Link to external URL" msgstr "" -#: build/models.py:411 +#: build/models.py:412 msgid "Build Priority" msgstr "" -#: build/models.py:414 +#: build/models.py:415 msgid "Priority of this build order" msgstr "" -#: build/models.py:422 common/models.py:150 common/models.py:164 -#: order/api.py:165 order/models.py:451 order/models.py:1805 +#: build/models.py:423 common/models.py:154 common/models.py:168 +#: order/api.py:170 order/models.py:452 order/models.py:1806 msgid "Project Code" msgstr "" -#: build/models.py:423 +#: build/models.py:424 msgid "Project code for this build order" msgstr "" -#: build/models.py:676 +#: build/models.py:677 msgid "Cannot complete build order with open child builds" msgstr "" -#: build/models.py:681 +#: build/models.py:682 msgid "Cannot complete build order with incomplete outputs" msgstr "" -#: build/models.py:700 build/models.py:830 +#: build/models.py:701 build/models.py:831 msgid "Failed to offload task to complete build allocations" msgstr "" -#: build/models.py:723 +#: build/models.py:724 #, python-brace-format msgid "Build order {build} has been completed" msgstr "" -#: build/models.py:729 +#: build/models.py:730 msgid "A build order has been completed" msgstr "" -#: build/models.py:911 build/serializers.py:407 +#: build/models.py:912 build/serializers.py:415 msgid "Serial numbers must be provided for trackable parts" msgstr "" -#: build/models.py:1042 build/models.py:1129 +#: build/models.py:1043 build/models.py:1130 msgid "No build output specified" msgstr "" -#: build/models.py:1045 +#: build/models.py:1046 msgid "Build output is already completed" msgstr "" -#: build/models.py:1048 +#: build/models.py:1049 msgid "Build output does not match Build Order" msgstr "" -#: build/models.py:1136 build/models.py:1234 build/serializers.py:285 -#: build/serializers.py:335 build/serializers.py:965 build/serializers.py:1739 -#: order/models.py:717 order/serializers.py:658 order/serializers.py:844 -#: part/serializers.py:1708 stock/models.py:940 stock/models.py:1430 +#: build/models.py:1137 build/models.py:1235 build/serializers.py:293 +#: build/serializers.py:343 build/serializers.py:973 build/serializers.py:1747 +#: order/models.py:718 order/serializers.py:669 order/serializers.py:855 +#: part/serializers.py:1573 stock/models.py:940 stock/models.py:1430 #: stock/models.py:1878 stock/serializers.py:688 stock/serializers.py:1580 msgid "Quantity must be greater than zero" msgstr "" -#: build/models.py:1140 build/models.py:1239 build/serializers.py:290 +#: build/models.py:1141 build/models.py:1240 build/serializers.py:298 msgid "Quantity cannot be greater than the output quantity" msgstr "" -#: build/models.py:1214 build/serializers.py:606 +#: build/models.py:1215 build/serializers.py:614 msgid "Build output has not passed all required tests" msgstr "" -#: build/models.py:1217 build/serializers.py:601 +#: build/models.py:1218 build/serializers.py:609 #, python-brace-format msgid "Build output {serial} has not passed all required tests" msgstr "" -#: build/models.py:1229 +#: build/models.py:1230 msgid "Cannot partially complete a build output with allocated items" msgstr "" -#: build/models.py:1627 +#: build/models.py:1628 msgid "Build Order Line Item" msgstr "" -#: build/models.py:1651 +#: build/models.py:1652 msgid "Build object" msgstr "" -#: build/models.py:1663 build/models.py:1974 build/serializers.py:271 -#: build/serializers.py:320 build/serializers.py:1392 common/models.py:1340 -#: order/models.py:1756 order/models.py:2597 order/serializers.py:1696 -#: order/serializers.py:2124 part/models.py:3453 part/models.py:4390 +#: build/models.py:1664 build/models.py:1975 build/serializers.py:279 +#: build/serializers.py:328 build/serializers.py:1400 common/models.py:1344 +#: order/models.py:1757 order/models.py:2598 order/serializers.py:1710 +#: order/serializers.py:2141 part/models.py:3517 part/models.py:4015 #: report/templates/report/inventree_bill_of_materials_report.html:138 #: report/templates/report/inventree_build_order_report.html:113 #: report/templates/report/inventree_purchase_order_report.html:36 @@ -1014,427 +1030,427 @@ msgstr "" msgid "Quantity" msgstr "" -#: build/models.py:1664 +#: build/models.py:1665 msgid "Required quantity for build order" msgstr "" -#: build/models.py:1673 +#: build/models.py:1674 msgid "Quantity of consumed stock" msgstr "" -#: build/models.py:1772 +#: build/models.py:1773 msgid "Build item must specify a build output, as master part is marked as trackable" msgstr "" -#: build/models.py:1783 +#: build/models.py:1784 #, python-brace-format msgid "Allocated quantity ({q}) must not exceed available stock quantity ({a})" msgstr "" -#: build/models.py:1804 order/models.py:2546 +#: build/models.py:1805 order/models.py:2547 msgid "Stock item is over-allocated" msgstr "" -#: build/models.py:1809 order/models.py:2549 +#: build/models.py:1810 order/models.py:2550 msgid "Allocation quantity must be greater than zero" msgstr "" -#: build/models.py:1815 +#: build/models.py:1816 msgid "Quantity must be 1 for serialized stock" msgstr "" -#: build/models.py:1875 +#: build/models.py:1876 msgid "Selected stock item does not match BOM line" msgstr "" -#: build/models.py:1913 +#: build/models.py:1914 msgid "Allocated quantity exceeds available stock quantity" msgstr "" -#: build/models.py:1964 build/serializers.py:948 build/serializers.py:1240 -#: order/serializers.py:1533 order/serializers.py:1554 +#: build/models.py:1965 build/serializers.py:956 build/serializers.py:1248 +#: order/serializers.py:1547 order/serializers.py:1568 #: report/templates/report/inventree_sales_order_shipment_report.html:29 #: stock/api.py:1404 stock/models.py:456 stock/serializers.py:102 #: stock/serializers.py:800 stock/serializers.py:1274 stock/serializers.py:1386 msgid "Stock Item" msgstr "" -#: build/models.py:1965 +#: build/models.py:1966 msgid "Source stock item" msgstr "" -#: build/models.py:1975 +#: build/models.py:1976 msgid "Stock quantity to allocate to build" msgstr "" -#: build/models.py:1984 +#: build/models.py:1985 msgid "Install into" msgstr "" -#: build/models.py:1985 +#: build/models.py:1986 msgid "Destination stock item" msgstr "" -#: build/serializers.py:118 +#: build/serializers.py:120 msgid "Build Level" msgstr "" -#: build/serializers.py:128 +#: build/serializers.py:136 msgid "Part Name" msgstr "" -#: build/serializers.py:153 +#: build/serializers.py:161 msgid "Project Code Label" msgstr "" -#: build/serializers.py:219 build/serializers.py:974 +#: build/serializers.py:227 build/serializers.py:982 msgid "Build Output" msgstr "" -#: build/serializers.py:231 +#: build/serializers.py:239 msgid "Build output does not match the parent build" msgstr "" -#: build/serializers.py:235 +#: build/serializers.py:243 msgid "Output part does not match BuildOrder part" msgstr "" -#: build/serializers.py:239 +#: build/serializers.py:247 msgid "This build output has already been completed" msgstr "" -#: build/serializers.py:253 +#: build/serializers.py:261 msgid "This build output is not fully allocated" msgstr "" -#: build/serializers.py:272 build/serializers.py:321 +#: build/serializers.py:280 build/serializers.py:329 msgid "Enter quantity for build output" msgstr "" -#: build/serializers.py:343 +#: build/serializers.py:351 msgid "Integer quantity required for trackable parts" msgstr "" -#: build/serializers.py:349 +#: build/serializers.py:357 msgid "Integer quantity required, as the bill of materials contains trackable parts" msgstr "" -#: build/serializers.py:366 order/serializers.py:865 order/serializers.py:1700 +#: build/serializers.py:374 order/serializers.py:876 order/serializers.py:1714 #: stock/serializers.py:699 msgid "Serial Numbers" msgstr "" -#: build/serializers.py:367 +#: build/serializers.py:375 msgid "Enter serial numbers for build outputs" msgstr "" -#: build/serializers.py:373 +#: build/serializers.py:381 msgid "Stock location for build output" msgstr "" -#: build/serializers.py:388 +#: build/serializers.py:396 msgid "Auto Allocate Serial Numbers" msgstr "" -#: build/serializers.py:390 +#: build/serializers.py:398 msgid "Automatically allocate required items with matching serial numbers" msgstr "" -#: build/serializers.py:423 order/serializers.py:951 stock/api.py:1183 +#: build/serializers.py:431 order/serializers.py:962 stock/api.py:1183 #: stock/models.py:1901 msgid "The following serial numbers already exist or are invalid" msgstr "" -#: build/serializers.py:465 build/serializers.py:521 build/serializers.py:613 +#: build/serializers.py:473 build/serializers.py:529 build/serializers.py:621 msgid "A list of build outputs must be provided" msgstr "" -#: build/serializers.py:498 +#: build/serializers.py:506 msgid "Stock location for scrapped outputs" msgstr "" -#: build/serializers.py:504 +#: build/serializers.py:512 msgid "Discard Allocations" msgstr "" -#: build/serializers.py:505 +#: build/serializers.py:513 msgid "Discard any stock allocations for scrapped outputs" msgstr "" -#: build/serializers.py:510 +#: build/serializers.py:518 msgid "Reason for scrapping build output(s)" msgstr "" -#: build/serializers.py:568 +#: build/serializers.py:576 msgid "Location for completed build outputs" msgstr "" -#: build/serializers.py:576 +#: build/serializers.py:584 msgid "Accept Incomplete Allocation" msgstr "" -#: build/serializers.py:577 +#: build/serializers.py:585 msgid "Complete outputs if stock has not been fully allocated" msgstr "" -#: build/serializers.py:702 +#: build/serializers.py:710 msgid "Consume Allocated Stock" msgstr "" -#: build/serializers.py:703 +#: build/serializers.py:711 msgid "Consume any stock which has already been allocated to this build" msgstr "" -#: build/serializers.py:709 +#: build/serializers.py:717 msgid "Remove Incomplete Outputs" msgstr "" -#: build/serializers.py:710 +#: build/serializers.py:718 msgid "Delete any build outputs which have not been completed" msgstr "" -#: build/serializers.py:737 +#: build/serializers.py:745 msgid "Not permitted" msgstr "" -#: build/serializers.py:738 +#: build/serializers.py:746 msgid "Accept as consumed by this build order" msgstr "" -#: build/serializers.py:739 +#: build/serializers.py:747 msgid "Deallocate before completing this build order" msgstr "" -#: build/serializers.py:766 +#: build/serializers.py:774 msgid "Overallocated Stock" msgstr "" -#: build/serializers.py:769 +#: build/serializers.py:777 msgid "How do you want to handle extra stock items assigned to the build order" msgstr "" -#: build/serializers.py:780 +#: build/serializers.py:788 msgid "Some stock items have been overallocated" msgstr "" -#: build/serializers.py:785 +#: build/serializers.py:793 msgid "Accept Unallocated" msgstr "" -#: build/serializers.py:787 +#: build/serializers.py:795 msgid "Accept that stock items have not been fully allocated to this build order" msgstr "" -#: build/serializers.py:798 +#: build/serializers.py:806 msgid "Required stock has not been fully allocated" msgstr "" -#: build/serializers.py:803 order/serializers.py:524 order/serializers.py:1601 +#: build/serializers.py:811 order/serializers.py:535 order/serializers.py:1615 msgid "Accept Incomplete" msgstr "" -#: build/serializers.py:805 +#: build/serializers.py:813 msgid "Accept that the required number of build outputs have not been completed" msgstr "" -#: build/serializers.py:816 +#: build/serializers.py:824 msgid "Required build quantity has not been completed" msgstr "" -#: build/serializers.py:828 +#: build/serializers.py:836 msgid "Build order has open child build orders" msgstr "" -#: build/serializers.py:831 +#: build/serializers.py:839 msgid "Build order must be in production state" msgstr "" -#: build/serializers.py:834 +#: build/serializers.py:842 msgid "Build order has incomplete outputs" msgstr "" -#: build/serializers.py:873 +#: build/serializers.py:881 msgid "Build Line" msgstr "" -#: build/serializers.py:881 +#: build/serializers.py:889 msgid "Build output" msgstr "" -#: build/serializers.py:889 +#: build/serializers.py:897 msgid "Build output must point to the same build" msgstr "" -#: build/serializers.py:920 +#: build/serializers.py:928 msgid "Build Line Item" msgstr "" -#: build/serializers.py:938 +#: build/serializers.py:946 msgid "bom_item.part must point to the same part as the build order" msgstr "" -#: build/serializers.py:954 stock/serializers.py:1287 +#: build/serializers.py:962 stock/serializers.py:1287 msgid "Item must be in stock" msgstr "" -#: build/serializers.py:997 order/serializers.py:1587 +#: build/serializers.py:1005 order/serializers.py:1601 #, python-brace-format msgid "Available quantity ({q}) exceeded" msgstr "" -#: build/serializers.py:1003 +#: build/serializers.py:1011 msgid "Build output must be specified for allocation of tracked parts" msgstr "" -#: build/serializers.py:1011 +#: build/serializers.py:1019 msgid "Build output cannot be specified for allocation of untracked parts" msgstr "" -#: build/serializers.py:1035 order/serializers.py:1860 +#: build/serializers.py:1043 order/serializers.py:1874 msgid "Allocation items must be provided" msgstr "" -#: build/serializers.py:1099 +#: build/serializers.py:1107 msgid "Stock location where parts are to be sourced (leave blank to take from any location)" msgstr "" -#: build/serializers.py:1108 +#: build/serializers.py:1116 msgid "Exclude Location" msgstr "" -#: build/serializers.py:1109 +#: build/serializers.py:1117 msgid "Exclude stock items from this selected location" msgstr "" -#: build/serializers.py:1114 +#: build/serializers.py:1122 msgid "Interchangeable Stock" msgstr "" -#: build/serializers.py:1115 +#: build/serializers.py:1123 msgid "Stock items in multiple locations can be used interchangeably" msgstr "" -#: build/serializers.py:1120 +#: build/serializers.py:1128 msgid "Substitute Stock" msgstr "" -#: build/serializers.py:1121 +#: build/serializers.py:1129 msgid "Allow allocation of substitute parts" msgstr "" -#: build/serializers.py:1126 +#: build/serializers.py:1134 msgid "Optional Items" msgstr "" -#: build/serializers.py:1127 +#: build/serializers.py:1135 msgid "Allocate optional BOM items to build order" msgstr "" -#: build/serializers.py:1148 +#: build/serializers.py:1156 msgid "Failed to start auto-allocation task" msgstr "" -#: build/serializers.py:1200 +#: build/serializers.py:1208 msgid "BOM Reference" msgstr "" -#: build/serializers.py:1206 +#: build/serializers.py:1214 msgid "BOM Part ID" msgstr "" -#: build/serializers.py:1213 +#: build/serializers.py:1221 msgid "BOM Part Name" msgstr "" -#: build/serializers.py:1266 build/serializers.py:1449 +#: build/serializers.py:1274 build/serializers.py:1457 msgid "Build" msgstr "" -#: build/serializers.py:1276 company/models.py:685 order/api.py:311 -#: order/api.py:316 order/api.py:543 order/serializers.py:650 +#: build/serializers.py:1284 company/models.py:639 order/api.py:316 +#: order/api.py:321 order/api.py:549 order/serializers.py:661 #: stock/models.py:1036 stock/serializers.py:579 msgid "Supplier Part" msgstr "" -#: build/serializers.py:1284 stock/serializers.py:620 +#: build/serializers.py:1292 stock/serializers.py:620 msgid "Allocated Quantity" msgstr "" -#: build/serializers.py:1351 +#: build/serializers.py:1359 msgid "Build Reference" msgstr "" -#: build/serializers.py:1361 +#: build/serializers.py:1369 msgid "Part Category Name" msgstr "" -#: build/serializers.py:1383 common/setting/system.py:480 part/models.py:1214 +#: build/serializers.py:1391 common/setting/system.py:480 part/models.py:1302 msgid "Trackable" msgstr "" -#: build/serializers.py:1386 +#: build/serializers.py:1394 msgid "Inherited" msgstr "" -#: build/serializers.py:1389 part/models.py:4475 +#: build/serializers.py:1397 part/models.py:4100 msgid "Allow Variants" msgstr "" -#: build/serializers.py:1395 build/serializers.py:1400 part/models.py:4208 -#: part/models.py:4779 stock/api.py:882 +#: build/serializers.py:1403 build/serializers.py:1408 part/models.py:3833 +#: part/models.py:4404 stock/api.py:882 msgid "BOM Item" msgstr "" -#: build/serializers.py:1467 order/serializers.py:1282 part/serializers.py:1310 -#: part/serializers.py:1765 +#: build/serializers.py:1475 order/serializers.py:1296 part/serializers.py:1175 +#: part/serializers.py:1630 msgid "In Production" msgstr "" -#: build/serializers.py:1469 part/serializers.py:950 part/serializers.py:1314 +#: build/serializers.py:1477 part/serializers.py:835 part/serializers.py:1179 msgid "Scheduled to Build" msgstr "" -#: build/serializers.py:1472 part/serializers.py:987 +#: build/serializers.py:1480 part/serializers.py:872 msgid "External Stock" msgstr "" -#: build/serializers.py:1473 part/serializers.py:1300 part/serializers.py:1808 +#: build/serializers.py:1481 part/serializers.py:1165 part/serializers.py:1673 msgid "Available Stock" msgstr "" -#: build/serializers.py:1475 +#: build/serializers.py:1483 msgid "Available Substitute Stock" msgstr "" -#: build/serializers.py:1478 +#: build/serializers.py:1486 msgid "Available Variant Stock" msgstr "" -#: build/serializers.py:1752 +#: build/serializers.py:1760 msgid "Consumed quantity exceeds allocated quantity" msgstr "" -#: build/serializers.py:1789 +#: build/serializers.py:1797 msgid "Optional notes for the stock consumption" msgstr "" -#: build/serializers.py:1806 +#: build/serializers.py:1814 msgid "Build item must point to the correct build order" msgstr "" -#: build/serializers.py:1811 +#: build/serializers.py:1819 msgid "Duplicate build item allocation" msgstr "" -#: build/serializers.py:1829 +#: build/serializers.py:1837 msgid "Build line must point to the correct build order" msgstr "" -#: build/serializers.py:1834 +#: build/serializers.py:1842 msgid "Duplicate build line allocation" msgstr "" -#: build/serializers.py:1846 +#: build/serializers.py:1854 msgid "At least one item or line must be provided" msgstr "" @@ -1482,702 +1498,826 @@ msgstr "" msgid "Build order {bo} is now overdue" msgstr "" -#: common/api.py:694 +#: common/api.py:701 msgid "Is Link" msgstr "" -#: common/api.py:702 +#: common/api.py:709 msgid "Is File" msgstr "" -#: common/api.py:745 +#: common/api.py:756 msgid "User does not have permission to delete these attachments" msgstr "" -#: common/api.py:762 +#: common/api.py:769 msgid "User does not have permission to delete this attachment" msgstr "" -#: common/currency.py:122 +#: common/currency.py:130 msgid "Invalid currency code" msgstr "" -#: common/currency.py:124 +#: common/currency.py:132 msgid "Duplicate currency code" msgstr "" -#: common/currency.py:129 +#: common/currency.py:137 msgid "No valid currency codes provided" msgstr "" -#: common/currency.py:146 +#: common/currency.py:154 msgid "No plugin" msgstr "" -#: common/models.py:101 common/models.py:126 common/models.py:2729 +#: common/models.py:105 common/models.py:130 common/models.py:3150 msgid "Updated" msgstr "" -#: common/models.py:102 common/models.py:127 +#: common/models.py:106 common/models.py:131 msgid "Timestamp of last update" msgstr "" -#: common/models.py:139 +#: common/models.py:143 msgid "Update By" msgstr "" -#: common/models.py:140 +#: common/models.py:144 msgid "User who last updated this object" msgstr "" -#: common/models.py:165 +#: common/models.py:169 msgid "Unique project code" msgstr "" -#: common/models.py:172 +#: common/models.py:176 msgid "Project description" msgstr "" -#: common/models.py:181 +#: common/models.py:185 msgid "User or group responsible for this project" msgstr "" -#: common/models.py:771 common/models.py:1272 common/models.py:1310 +#: common/models.py:775 common/models.py:1276 common/models.py:1314 msgid "Settings key" msgstr "" -#: common/models.py:775 +#: common/models.py:779 msgid "Settings value" msgstr "" -#: common/models.py:830 +#: common/models.py:834 msgid "Chosen value is not a valid option" msgstr "" -#: common/models.py:846 +#: common/models.py:850 msgid "Value must be a boolean value" msgstr "" -#: common/models.py:854 +#: common/models.py:858 msgid "Value must be an integer value" msgstr "" -#: common/models.py:862 +#: common/models.py:866 msgid "Value must be a valid number" msgstr "" -#: common/models.py:887 +#: common/models.py:891 msgid "Value does not pass validation checks" msgstr "" -#: common/models.py:909 +#: common/models.py:913 msgid "Key string must be unique" msgstr "" -#: common/models.py:1318 common/models.py:1319 common/models.py:1423 -#: common/models.py:1424 common/models.py:1669 common/models.py:1670 -#: common/models.py:2000 common/models.py:2001 common/models.py:2382 -#: importer/models.py:100 part/models.py:3547 part/models.py:3575 +#: common/models.py:1322 common/models.py:1323 common/models.py:1427 +#: common/models.py:1428 common/models.py:1673 common/models.py:1674 +#: common/models.py:2006 common/models.py:2007 common/models.py:2803 +#: importer/models.py:100 part/models.py:3611 part/models.py:3639 #: plugin/models.py:355 plugin/models.py:356 #: report/templates/report/inventree_test_report.html:105 users/models.py:124 #: users/models.py:501 msgid "User" msgstr "" -#: common/models.py:1341 +#: common/models.py:1345 msgid "Price break quantity" msgstr "" -#: common/models.py:1348 company/serializers.py:564 order/models.py:1842 -#: order/models.py:3043 +#: common/models.py:1352 company/serializers.py:349 order/models.py:1843 +#: order/models.py:3044 msgid "Price" msgstr "" -#: common/models.py:1349 +#: common/models.py:1353 msgid "Unit price at specified quantity" msgstr "" -#: common/models.py:1400 common/models.py:1585 +#: common/models.py:1404 common/models.py:1589 msgid "Endpoint" msgstr "" -#: common/models.py:1401 +#: common/models.py:1405 msgid "Endpoint at which this webhook is received" msgstr "" -#: common/models.py:1411 +#: common/models.py:1415 msgid "Name for this webhook" msgstr "" -#: common/models.py:1415 common/models.py:2241 common/models.py:2348 -#: company/models.py:191 company/models.py:822 machine/models.py:40 -#: part/models.py:1237 plugin/models.py:69 stock/api.py:642 users/models.py:195 +#: common/models.py:1419 common/models.py:2247 common/models.py:2354 +#: company/models.py:192 company/models.py:776 machine/models.py:40 +#: part/models.py:1325 plugin/models.py:69 stock/api.py:642 users/models.py:195 #: users/models.py:554 users/serializers.py:314 msgid "Active" msgstr "" -#: common/models.py:1415 +#: common/models.py:1419 msgid "Is this webhook active" msgstr "" -#: common/models.py:1431 users/models.py:172 +#: common/models.py:1435 users/models.py:172 msgid "Token" msgstr "" -#: common/models.py:1432 +#: common/models.py:1436 msgid "Token for access" msgstr "" -#: common/models.py:1440 +#: common/models.py:1444 msgid "Secret" msgstr "" -#: common/models.py:1441 +#: common/models.py:1445 msgid "Shared secret for HMAC" msgstr "" -#: common/models.py:1549 common/models.py:2619 +#: common/models.py:1553 common/models.py:3040 msgid "Message ID" msgstr "" -#: common/models.py:1550 common/models.py:2609 +#: common/models.py:1554 common/models.py:3030 msgid "Unique identifier for this message" msgstr "" -#: common/models.py:1558 +#: common/models.py:1562 msgid "Host" msgstr "" -#: common/models.py:1559 +#: common/models.py:1563 msgid "Host from which this message was received" msgstr "" -#: common/models.py:1567 +#: common/models.py:1571 msgid "Header" msgstr "" -#: common/models.py:1568 +#: common/models.py:1572 msgid "Header of this message" msgstr "" -#: common/models.py:1575 +#: common/models.py:1579 msgid "Body" msgstr "" -#: common/models.py:1576 +#: common/models.py:1580 msgid "Body of this message" msgstr "" -#: common/models.py:1586 +#: common/models.py:1590 msgid "Endpoint on which this message was received" msgstr "" -#: common/models.py:1591 +#: common/models.py:1595 msgid "Worked on" msgstr "" -#: common/models.py:1592 +#: common/models.py:1596 msgid "Was the work on this message finished?" msgstr "" -#: common/models.py:1718 +#: common/models.py:1722 msgid "Id" msgstr "" -#: common/models.py:1720 +#: common/models.py:1724 msgid "Title" msgstr "" -#: common/models.py:1722 common/models.py:1983 company/models.py:185 -#: company/models.py:467 company/models.py:534 company/models.py:839 -#: order/models.py:457 order/models.py:1786 order/models.py:2343 -#: part/models.py:1113 +#: common/models.py:1726 common/models.py:1989 company/models.py:186 +#: company/models.py:468 company/models.py:536 company/models.py:793 +#: order/models.py:458 order/models.py:1787 order/models.py:2344 +#: part/models.py:1201 #: report/templates/report/inventree_build_order_report.html:164 msgid "Link" msgstr "" -#: common/models.py:1724 +#: common/models.py:1728 msgid "Published" msgstr "" -#: common/models.py:1726 +#: common/models.py:1730 msgid "Author" msgstr "" -#: common/models.py:1728 +#: common/models.py:1732 msgid "Summary" msgstr "" -#: common/models.py:1731 common/models.py:2586 +#: common/models.py:1735 common/models.py:3007 msgid "Read" msgstr "" -#: common/models.py:1731 +#: common/models.py:1735 msgid "Was this news item read?" msgstr "" -#: common/models.py:1748 +#: common/models.py:1752 msgid "Image file" msgstr "" -#: common/models.py:1760 +#: common/models.py:1764 msgid "Target model type for this image" msgstr "" -#: common/models.py:1764 +#: common/models.py:1768 msgid "Target model ID for this image" msgstr "" -#: common/models.py:1786 +#: common/models.py:1790 msgid "Custom Unit" msgstr "" -#: common/models.py:1804 +#: common/models.py:1808 msgid "Unit symbol must be unique" msgstr "" -#: common/models.py:1819 +#: common/models.py:1823 msgid "Unit name must be a valid identifier" msgstr "" -#: common/models.py:1838 +#: common/models.py:1842 msgid "Unit name" msgstr "" -#: common/models.py:1845 +#: common/models.py:1849 msgid "Symbol" msgstr "" -#: common/models.py:1846 +#: common/models.py:1850 msgid "Optional unit symbol" msgstr "" -#: common/models.py:1852 +#: common/models.py:1856 msgid "Definition" msgstr "" -#: common/models.py:1853 +#: common/models.py:1857 msgid "Unit definition" msgstr "" -#: common/models.py:1911 common/models.py:1974 stock/models.py:2967 +#: common/models.py:1917 common/models.py:1980 stock/models.py:2984 #: stock/serializers.py:247 msgid "Attachment" msgstr "" -#: common/models.py:1928 +#: common/models.py:1934 msgid "Missing file" msgstr "" -#: common/models.py:1929 +#: common/models.py:1935 msgid "Missing external link" msgstr "" -#: common/models.py:1966 +#: common/models.py:1972 common/models.py:2488 msgid "Model type" msgstr "" -#: common/models.py:1967 +#: common/models.py:1973 msgid "Target model type for image" msgstr "" -#: common/models.py:1975 +#: common/models.py:1981 msgid "Select file to attach" msgstr "" -#: common/models.py:1991 +#: common/models.py:1997 msgid "Comment" msgstr "" -#: common/models.py:1992 +#: common/models.py:1998 msgid "Attachment comment" msgstr "" -#: common/models.py:2008 +#: common/models.py:2014 msgid "Upload date" msgstr "" -#: common/models.py:2009 +#: common/models.py:2015 msgid "Date the file was uploaded" msgstr "" -#: common/models.py:2013 +#: common/models.py:2019 msgid "File size" msgstr "" -#: common/models.py:2013 +#: common/models.py:2019 msgid "File size in bytes" msgstr "" -#: common/models.py:2051 common/serializers.py:684 +#: common/models.py:2057 common/serializers.py:688 msgid "Invalid model type specified for attachment" msgstr "" -#: common/models.py:2072 +#: common/models.py:2078 msgid "Custom State" msgstr "" -#: common/models.py:2073 +#: common/models.py:2079 msgid "Custom States" msgstr "" -#: common/models.py:2078 +#: common/models.py:2084 msgid "Reference Status Set" msgstr "" -#: common/models.py:2079 +#: common/models.py:2085 msgid "Status set that is extended with this custom state" msgstr "" -#: common/models.py:2083 generic/states/serializers.py:18 +#: common/models.py:2089 generic/states/serializers.py:18 msgid "Logical Key" msgstr "" -#: common/models.py:2085 +#: common/models.py:2091 msgid "State logical key that is equal to this custom state in business logic" msgstr "" -#: common/models.py:2090 common/models.py:2329 company/models.py:622 -#: machine/serializers.py:27 -#: report/templates/report/inventree_test_report.html:104 stock/models.py:2959 +#: common/models.py:2096 common/models.py:2335 machine/serializers.py:27 +#: report/templates/report/inventree_test_report.html:104 stock/models.py:2976 msgid "Value" msgstr "" -#: common/models.py:2091 +#: common/models.py:2097 msgid "Numerical value that will be saved in the models database" msgstr "" -#: common/models.py:2097 +#: common/models.py:2103 msgid "Name of the state" msgstr "" -#: common/models.py:2106 common/models.py:2335 generic/states/serializers.py:22 +#: common/models.py:2112 common/models.py:2341 generic/states/serializers.py:22 msgid "Label" msgstr "" -#: common/models.py:2107 +#: common/models.py:2113 msgid "Label that will be displayed in the frontend" msgstr "" -#: common/models.py:2114 generic/states/serializers.py:24 +#: common/models.py:2120 generic/states/serializers.py:24 msgid "Color" msgstr "" -#: common/models.py:2115 +#: common/models.py:2121 msgid "Color that will be displayed in the frontend" msgstr "" -#: common/models.py:2123 +#: common/models.py:2129 msgid "Model" msgstr "" -#: common/models.py:2124 +#: common/models.py:2130 msgid "Model this state is associated with" msgstr "" -#: common/models.py:2139 +#: common/models.py:2145 msgid "Model must be selected" msgstr "" -#: common/models.py:2142 +#: common/models.py:2148 msgid "Key must be selected" msgstr "" -#: common/models.py:2145 +#: common/models.py:2151 msgid "Logical key must be selected" msgstr "" -#: common/models.py:2149 +#: common/models.py:2155 msgid "Key must be different from logical key" msgstr "" -#: common/models.py:2156 +#: common/models.py:2162 msgid "Valid reference status class must be provided" msgstr "" -#: common/models.py:2162 +#: common/models.py:2168 msgid "Key must be different from the logical keys of the reference status" msgstr "" -#: common/models.py:2169 +#: common/models.py:2175 msgid "Logical key must be in the logical keys of the reference status" msgstr "" -#: common/models.py:2176 +#: common/models.py:2182 msgid "Name must be different from the names of the reference status" msgstr "" -#: common/models.py:2216 common/models.py:2323 part/models.py:3889 +#: common/models.py:2222 common/models.py:2329 common/models.py:2533 msgid "Selection List" msgstr "" -#: common/models.py:2217 +#: common/models.py:2223 msgid "Selection Lists" msgstr "" -#: common/models.py:2222 +#: common/models.py:2228 msgid "Name of the selection list" msgstr "" -#: common/models.py:2229 +#: common/models.py:2235 msgid "Description of the selection list" msgstr "" -#: common/models.py:2235 part/models.py:1242 +#: common/models.py:2241 part/models.py:1330 msgid "Locked" msgstr "" -#: common/models.py:2236 +#: common/models.py:2242 msgid "Is this selection list locked?" msgstr "" -#: common/models.py:2242 +#: common/models.py:2248 msgid "Can this selection list be used?" msgstr "" -#: common/models.py:2250 +#: common/models.py:2256 msgid "Source Plugin" msgstr "" -#: common/models.py:2251 +#: common/models.py:2257 msgid "Plugin which provides the selection list" msgstr "" -#: common/models.py:2256 +#: common/models.py:2262 msgid "Source String" msgstr "" -#: common/models.py:2257 +#: common/models.py:2263 msgid "Optional string identifying the source used for this list" msgstr "" -#: common/models.py:2266 +#: common/models.py:2272 msgid "Default Entry" msgstr "" -#: common/models.py:2267 +#: common/models.py:2273 msgid "Default entry for this selection list" msgstr "" -#: common/models.py:2272 common/models.py:2724 +#: common/models.py:2278 common/models.py:3145 msgid "Created" msgstr "" -#: common/models.py:2273 +#: common/models.py:2279 msgid "Date and time that the selection list was created" msgstr "" -#: common/models.py:2278 +#: common/models.py:2284 msgid "Last Updated" msgstr "" -#: common/models.py:2279 +#: common/models.py:2285 msgid "Date and time that the selection list was last updated" msgstr "" -#: common/models.py:2313 +#: common/models.py:2319 msgid "Selection List Entry" msgstr "" -#: common/models.py:2314 +#: common/models.py:2320 msgid "Selection List Entries" msgstr "" -#: common/models.py:2324 +#: common/models.py:2330 msgid "Selection list to which this entry belongs" msgstr "" -#: common/models.py:2330 +#: common/models.py:2336 msgid "Value of the selection list entry" msgstr "" -#: common/models.py:2336 +#: common/models.py:2342 msgid "Label for the selection list entry" msgstr "" -#: common/models.py:2342 +#: common/models.py:2348 msgid "Description of the selection list entry" msgstr "" -#: common/models.py:2349 +#: common/models.py:2355 msgid "Is this selection list entry active?" msgstr "" -#: common/models.py:2367 -msgid "Barcode Scan" +#: common/models.py:2387 +msgid "Parameter Template" msgstr "" -#: common/models.py:2371 importer/models.py:546 part/models.py:4060 -msgid "Data" +#: common/models.py:2388 +msgid "Parameter Templates" msgstr "" -#: common/models.py:2372 -msgid "Barcode data" +#: common/models.py:2425 +msgid "Checkbox parameters cannot have units" msgstr "" -#: common/models.py:2383 -msgid "User who scanned the barcode" +#: common/models.py:2430 +msgid "Checkbox parameters cannot have choices" msgstr "" -#: common/models.py:2388 importer/models.py:69 -msgid "Timestamp" +#: common/models.py:2450 part/models.py:3707 +msgid "Choices must be unique" msgstr "" -#: common/models.py:2389 -msgid "Date and time of the barcode scan" +#: common/models.py:2467 +msgid "Parameter template name must be unique" msgstr "" -#: common/models.py:2395 -msgid "URL endpoint which processed the barcode" +#: common/models.py:2489 +msgid "Target model type for this parameter template" msgstr "" -#: common/models.py:2402 order/models.py:1832 plugin/serializers.py:93 -msgid "Context" +#: common/models.py:2495 +msgid "Parameter Name" msgstr "" -#: common/models.py:2403 -msgid "Context data for the barcode scan" +#: common/models.py:2501 part/models.py:1283 +msgid "Units" msgstr "" -#: common/models.py:2410 -msgid "Response" +#: common/models.py:2502 +msgid "Physical units for this parameter" msgstr "" -#: common/models.py:2411 -msgid "Response data from the barcode scan" +#: common/models.py:2510 +msgid "Parameter description" msgstr "" -#: common/models.py:2417 report/templates/report/inventree_test_report.html:103 -#: stock/models.py:2953 -msgid "Result" +#: common/models.py:2516 +msgid "Checkbox" msgstr "" -#: common/models.py:2418 -msgid "Was the barcode scan successful?" +#: common/models.py:2517 +msgid "Is this parameter a checkbox?" msgstr "" -#: common/models.py:2500 -msgid "An error occurred" +#: common/models.py:2522 part/models.py:3794 +msgid "Choices" msgstr "" -#: common/models.py:2521 -msgid "INVE-E8: Email log deletion is protected. Set INVENTREE_PROTECT_EMAIL_LOG to False to allow deletion." +#: common/models.py:2523 +msgid "Valid choices for this parameter (comma-separated)" msgstr "" -#: common/models.py:2568 -msgid "Email Message" +#: common/models.py:2534 +msgid "Selection list for this parameter" msgstr "" -#: common/models.py:2569 -msgid "Email Messages" +#: common/models.py:2539 part/models.py:3769 report/models.py:287 +msgid "Enabled" msgstr "" -#: common/models.py:2576 -msgid "Announced" +#: common/models.py:2540 +msgid "Is this parameter template enabled?" msgstr "" -#: common/models.py:2578 -msgid "Sent" -msgstr "" - -#: common/models.py:2579 -msgid "Failed" +#: common/models.py:2581 +msgid "Parameter" msgstr "" #: common/models.py:2582 -msgid "Delivered" -msgstr "" - -#: common/models.py:2590 -msgid "Confirmed" -msgstr "" - -#: common/models.py:2596 -msgid "Inbound" -msgstr "" - -#: common/models.py:2597 -msgid "Outbound" -msgstr "" - -#: common/models.py:2602 -msgid "No Reply" -msgstr "" - -#: common/models.py:2603 -msgid "Track Delivery" -msgstr "" - -#: common/models.py:2604 -msgid "Track Read" -msgstr "" - -#: common/models.py:2605 -msgid "Track Click" -msgstr "" - -#: common/models.py:2608 common/models.py:2711 -msgid "Global ID" -msgstr "" - -#: common/models.py:2621 -msgid "Identifier for this message (might be supplied by external system)" +msgid "Parameters" msgstr "" #: common/models.py:2628 +msgid "Invalid choice for parameter value" +msgstr "" + +#: common/models.py:2698 common/serializers.py:783 +msgid "Invalid model type specified for parameter" +msgstr "" + +#: common/models.py:2734 +msgid "Model ID" +msgstr "" + +#: common/models.py:2735 +msgid "ID of the target model for this parameter" +msgstr "" + +#: common/models.py:2744 common/setting/system.py:450 report/models.py:373 +#: report/models.py:669 report/serializers.py:94 report/serializers.py:135 +#: stock/serializers.py:234 +msgid "Template" +msgstr "" + +#: common/models.py:2745 +msgid "Parameter template" +msgstr "" + +#: common/models.py:2750 common/models.py:2792 importer/models.py:546 +msgid "Data" +msgstr "" + +#: common/models.py:2751 +msgid "Parameter Value" +msgstr "" + +#: common/models.py:2760 company/models.py:810 order/serializers.py:894 +#: order/serializers.py:2064 part/models.py:4075 part/models.py:4444 +#: report/templates/report/inventree_bill_of_materials_report.html:140 +#: report/templates/report/inventree_purchase_order_report.html:39 +#: report/templates/report/inventree_return_order_report.html:27 +#: report/templates/report/inventree_sales_order_report.html:32 +#: report/templates/report/inventree_stock_location_report.html:105 +#: stock/serializers.py:813 +msgid "Note" +msgstr "" + +#: common/models.py:2761 stock/serializers.py:718 +msgid "Optional note field" +msgstr "" + +#: common/models.py:2788 +msgid "Barcode Scan" +msgstr "" + +#: common/models.py:2793 +msgid "Barcode data" +msgstr "" + +#: common/models.py:2804 +msgid "User who scanned the barcode" +msgstr "" + +#: common/models.py:2809 importer/models.py:69 +msgid "Timestamp" +msgstr "" + +#: common/models.py:2810 +msgid "Date and time of the barcode scan" +msgstr "" + +#: common/models.py:2816 +msgid "URL endpoint which processed the barcode" +msgstr "" + +#: common/models.py:2823 order/models.py:1833 plugin/serializers.py:93 +msgid "Context" +msgstr "" + +#: common/models.py:2824 +msgid "Context data for the barcode scan" +msgstr "" + +#: common/models.py:2831 +msgid "Response" +msgstr "" + +#: common/models.py:2832 +msgid "Response data from the barcode scan" +msgstr "" + +#: common/models.py:2838 report/templates/report/inventree_test_report.html:103 +#: stock/models.py:2970 +msgid "Result" +msgstr "" + +#: common/models.py:2839 +msgid "Was the barcode scan successful?" +msgstr "" + +#: common/models.py:2921 +msgid "An error occurred" +msgstr "" + +#: common/models.py:2942 +msgid "INVE-E8: Email log deletion is protected. Set INVENTREE_PROTECT_EMAIL_LOG to False to allow deletion." +msgstr "" + +#: common/models.py:2989 +msgid "Email Message" +msgstr "" + +#: common/models.py:2990 +msgid "Email Messages" +msgstr "" + +#: common/models.py:2997 +msgid "Announced" +msgstr "" + +#: common/models.py:2999 +msgid "Sent" +msgstr "" + +#: common/models.py:3000 +msgid "Failed" +msgstr "" + +#: common/models.py:3003 +msgid "Delivered" +msgstr "" + +#: common/models.py:3011 +msgid "Confirmed" +msgstr "" + +#: common/models.py:3017 +msgid "Inbound" +msgstr "" + +#: common/models.py:3018 +msgid "Outbound" +msgstr "" + +#: common/models.py:3023 +msgid "No Reply" +msgstr "" + +#: common/models.py:3024 +msgid "Track Delivery" +msgstr "" + +#: common/models.py:3025 +msgid "Track Read" +msgstr "" + +#: common/models.py:3026 +msgid "Track Click" +msgstr "" + +#: common/models.py:3029 common/models.py:3132 +msgid "Global ID" +msgstr "" + +#: common/models.py:3042 +msgid "Identifier for this message (might be supplied by external system)" +msgstr "" + +#: common/models.py:3049 msgid "Thread ID" msgstr "" -#: common/models.py:2630 +#: common/models.py:3051 msgid "Identifier for this message thread (might be supplied by external system)" msgstr "" -#: common/models.py:2639 +#: common/models.py:3060 msgid "Thread" msgstr "" -#: common/models.py:2640 +#: common/models.py:3061 msgid "Linked thread for this message" msgstr "" -#: common/models.py:2656 -msgid "Prioriy" +#: common/models.py:3077 +msgid "Priority" msgstr "" -#: common/models.py:2698 +#: common/models.py:3119 msgid "Email Thread" msgstr "" -#: common/models.py:2699 +#: common/models.py:3120 msgid "Email Threads" msgstr "" -#: common/models.py:2705 generic/states/serializers.py:16 +#: common/models.py:3126 generic/states/serializers.py:16 #: machine/serializers.py:24 plugin/models.py:46 users/models.py:113 msgid "Key" msgstr "" -#: common/models.py:2708 +#: common/models.py:3129 msgid "Unique key for this thread (used to identify the thread)" msgstr "" -#: common/models.py:2712 +#: common/models.py:3133 msgid "Unique identifier for this thread" msgstr "" -#: common/models.py:2719 +#: common/models.py:3140 msgid "Started Internal" msgstr "" -#: common/models.py:2720 +#: common/models.py:3141 msgid "Was this thread started internally?" msgstr "" -#: common/models.py:2725 +#: common/models.py:3146 msgid "Date and time that the thread was created" msgstr "" -#: common/models.py:2730 +#: common/models.py:3151 msgid "Date and time that the thread was last updated" msgstr "" @@ -2199,7 +2339,7 @@ msgstr "" msgid "A order that is assigned to you was canceled" msgstr "" -#: common/notifications.py:73 common/notifications.py:80 order/api.py:594 +#: common/notifications.py:73 common/notifications.py:80 order/api.py:600 msgid "Items Received" msgstr "" @@ -2211,88 +2351,93 @@ msgstr "" msgid "Items have been received against a return order" msgstr "" -#: common/serializers.py:145 +#: common/serializers.py:149 msgid "Indicates if the setting is overridden by an environment variable" msgstr "" -#: common/serializers.py:147 +#: common/serializers.py:151 msgid "Override" msgstr "" -#: common/serializers.py:498 +#: common/serializers.py:502 msgid "Is Running" msgstr "" -#: common/serializers.py:504 +#: common/serializers.py:508 msgid "Pending Tasks" msgstr "" -#: common/serializers.py:510 +#: common/serializers.py:514 msgid "Scheduled Tasks" msgstr "" -#: common/serializers.py:516 +#: common/serializers.py:520 msgid "Failed Tasks" msgstr "" -#: common/serializers.py:531 +#: common/serializers.py:535 msgid "Task ID" msgstr "" -#: common/serializers.py:531 +#: common/serializers.py:535 msgid "Unique task ID" msgstr "" -#: common/serializers.py:533 +#: common/serializers.py:537 msgid "Lock" msgstr "" -#: common/serializers.py:533 +#: common/serializers.py:537 msgid "Lock time" msgstr "" -#: common/serializers.py:535 +#: common/serializers.py:539 msgid "Task name" msgstr "" -#: common/serializers.py:537 +#: common/serializers.py:541 msgid "Function" msgstr "" -#: common/serializers.py:537 +#: common/serializers.py:541 msgid "Function name" msgstr "" -#: common/serializers.py:539 +#: common/serializers.py:543 msgid "Arguments" msgstr "" -#: common/serializers.py:539 +#: common/serializers.py:543 msgid "Task arguments" msgstr "" -#: common/serializers.py:542 +#: common/serializers.py:546 msgid "Keyword Arguments" msgstr "" -#: common/serializers.py:542 +#: common/serializers.py:546 msgid "Task keyword arguments" msgstr "" -#: common/serializers.py:652 +#: common/serializers.py:656 msgid "Filename" msgstr "" -#: common/serializers.py:659 importer/models.py:89 report/api.py:41 +#: common/serializers.py:663 common/serializers.py:730 +#: common/serializers.py:805 importer/models.py:89 report/api.py:41 #: report/models.py:293 report/serializers.py:52 msgid "Model Type" msgstr "" -#: common/serializers.py:687 +#: common/serializers.py:691 msgid "User does not have permission to create or edit attachments for this model" msgstr "" -#: common/serializers.py:731 common/serializers.py:834 +#: common/serializers.py:786 +msgid "User does not have permission to create or edit parameters for this model" +msgstr "" + +#: common/serializers.py:850 common/serializers.py:953 msgid "Selection list is locked" msgstr "" @@ -2368,7 +2513,7 @@ msgstr "" msgid "Show the `about` modal only to superusers" msgstr "" -#: common/setting/system.py:224 company/models.py:144 company/models.py:145 +#: common/setting/system.py:224 company/models.py:145 company/models.py:146 msgid "Company name" msgstr "" @@ -2411,8 +2556,8 @@ msgstr "" #: common/setting/system.py:253 common/setting/system.py:293 #: common/setting/system.py:306 common/setting/system.py:314 #: common/setting/system.py:321 common/setting/system.py:330 -#: common/setting/system.py:339 common/setting/system.py:588 -#: common/setting/system.py:616 common/setting/system.py:707 +#: common/setting/system.py:339 common/setting/system.py:580 +#: common/setting/system.py:608 common/setting/system.py:707 #: common/setting/system.py:1103 common/setting/system.py:1119 msgid "days" msgstr "" @@ -2657,12 +2802,6 @@ msgstr "" msgid "Copy category parameter templates when creating a part" msgstr "" -#: common/setting/system.py:450 part/models.py:4054 report/models.py:373 -#: report/models.py:669 report/serializers.py:94 report/serializers.py:135 -#: stock/serializers.py:234 -msgid "Template" -msgstr "" - #: common/setting/system.py:451 msgid "Parts are templates by default" msgstr "" @@ -2671,8 +2810,8 @@ msgstr "" msgid "Parts can be assembled from other components by default" msgstr "" -#: common/setting/system.py:462 part/models.py:1208 part/serializers.py:1734 -#: part/serializers.py:1741 +#: common/setting/system.py:462 part/models.py:1296 part/serializers.py:1599 +#: part/serializers.py:1606 msgid "Component" msgstr "" @@ -2680,7 +2819,7 @@ msgstr "" msgid "Parts can be used as sub-components by default" msgstr "" -#: common/setting/system.py:468 part/models.py:1226 +#: common/setting/system.py:468 part/models.py:1314 msgid "Purchaseable" msgstr "" @@ -2688,7 +2827,7 @@ msgstr "" msgid "Parts are purchaseable by default" msgstr "" -#: common/setting/system.py:474 part/models.py:1232 stock/api.py:643 +#: common/setting/system.py:474 part/models.py:1320 stock/api.py:643 msgid "Salable" msgstr "" @@ -2700,7 +2839,7 @@ msgstr "" msgid "Parts are trackable by default" msgstr "" -#: common/setting/system.py:486 part/models.py:1248 +#: common/setting/system.py:486 part/models.py:1336 msgid "Virtual" msgstr "" @@ -2749,158 +2888,158 @@ msgid "Part category default icon (empty means no icon)" msgstr "" #: common/setting/system.py:525 -msgid "Enforce Parameter Units" -msgstr "" - -#: common/setting/system.py:527 -msgid "If units are provided, parameter values must match the specified units" -msgstr "" - -#: common/setting/system.py:533 msgid "Minimum Pricing Decimal Places" msgstr "" -#: common/setting/system.py:535 +#: common/setting/system.py:527 msgid "Minimum number of decimal places to display when rendering pricing data" msgstr "" -#: common/setting/system.py:546 +#: common/setting/system.py:538 msgid "Maximum Pricing Decimal Places" msgstr "" -#: common/setting/system.py:548 +#: common/setting/system.py:540 msgid "Maximum number of decimal places to display when rendering pricing data" msgstr "" -#: common/setting/system.py:559 +#: common/setting/system.py:551 msgid "Use Supplier Pricing" msgstr "" -#: common/setting/system.py:561 +#: common/setting/system.py:553 msgid "Include supplier price breaks in overall pricing calculations" msgstr "" -#: common/setting/system.py:567 +#: common/setting/system.py:559 msgid "Purchase History Override" msgstr "" -#: common/setting/system.py:569 +#: common/setting/system.py:561 msgid "Historical purchase order pricing overrides supplier price breaks" msgstr "" -#: common/setting/system.py:575 +#: common/setting/system.py:567 msgid "Use Stock Item Pricing" msgstr "" -#: common/setting/system.py:577 +#: common/setting/system.py:569 msgid "Use pricing from manually entered stock data for pricing calculations" msgstr "" -#: common/setting/system.py:583 +#: common/setting/system.py:575 msgid "Stock Item Pricing Age" msgstr "" -#: common/setting/system.py:585 +#: common/setting/system.py:577 msgid "Exclude stock items older than this number of days from pricing calculations" msgstr "" -#: common/setting/system.py:592 +#: common/setting/system.py:584 msgid "Use Variant Pricing" msgstr "" -#: common/setting/system.py:593 +#: common/setting/system.py:585 msgid "Include variant pricing in overall pricing calculations" msgstr "" -#: common/setting/system.py:598 +#: common/setting/system.py:590 msgid "Active Variants Only" msgstr "" -#: common/setting/system.py:600 +#: common/setting/system.py:592 msgid "Only use active variant parts for calculating variant pricing" msgstr "" -#: common/setting/system.py:606 +#: common/setting/system.py:598 msgid "Auto Update Pricing" msgstr "" -#: common/setting/system.py:608 +#: common/setting/system.py:600 msgid "Automatically update part pricing when internal data changes" msgstr "" -#: common/setting/system.py:614 +#: common/setting/system.py:606 msgid "Pricing Rebuild Interval" msgstr "" -#: common/setting/system.py:615 +#: common/setting/system.py:607 msgid "Number of days before part pricing is automatically updated" msgstr "" -#: common/setting/system.py:621 +#: common/setting/system.py:613 msgid "Internal Prices" msgstr "" -#: common/setting/system.py:622 +#: common/setting/system.py:614 msgid "Enable internal prices for parts" msgstr "" -#: common/setting/system.py:627 +#: common/setting/system.py:619 msgid "Internal Price Override" msgstr "" -#: common/setting/system.py:629 +#: common/setting/system.py:621 msgid "If available, internal prices override price range calculations" msgstr "" -#: common/setting/system.py:635 +#: common/setting/system.py:627 msgid "Enable label printing" msgstr "" -#: common/setting/system.py:636 +#: common/setting/system.py:628 msgid "Enable label printing from the web interface" msgstr "" -#: common/setting/system.py:641 +#: common/setting/system.py:633 msgid "Label Image DPI" msgstr "" -#: common/setting/system.py:643 +#: common/setting/system.py:635 msgid "DPI resolution when generating image files to supply to label printing plugins" msgstr "" -#: common/setting/system.py:649 +#: common/setting/system.py:641 msgid "Enable Reports" msgstr "" -#: common/setting/system.py:650 +#: common/setting/system.py:642 msgid "Enable generation of reports" msgstr "" -#: common/setting/system.py:655 +#: common/setting/system.py:647 msgid "Debug Mode" msgstr "" -#: common/setting/system.py:656 +#: common/setting/system.py:648 msgid "Generate reports in debug mode (HTML output)" msgstr "" -#: common/setting/system.py:661 +#: common/setting/system.py:653 msgid "Log Report Errors" msgstr "" -#: common/setting/system.py:662 +#: common/setting/system.py:654 msgid "Log errors which occur when generating reports" msgstr "" -#: common/setting/system.py:667 plugin/builtin/labels/label_sheet.py:29 +#: common/setting/system.py:659 plugin/builtin/labels/label_sheet.py:29 #: report/models.py:381 msgid "Page Size" msgstr "" -#: common/setting/system.py:668 +#: common/setting/system.py:660 msgid "Default page size for PDF reports" msgstr "" +#: common/setting/system.py:665 +msgid "Enforce Parameter Units" +msgstr "" + +#: common/setting/system.py:667 +msgid "If units are provided, parameter values must match the specified units" +msgstr "" + #: common/setting/system.py:673 msgid "Globally Unique Serials" msgstr "" @@ -3049,7 +3188,7 @@ msgstr "" #: common/setting/system.py:789 msgid "External Build Orders" -msgstr "" +msgstr "Comenzi externe de producție" #: common/setting/system.py:790 msgid "Enable external build order functionality" @@ -3405,7 +3544,7 @@ msgstr "" #: common/setting/system.py:1124 msgid "Display Users full names instead of usernames" -msgstr "" +msgstr "Afișează numele complet al utilizatorilor în loc de nume de utilizator" #: common/setting/system.py:1129 msgid "Display User Profiles" @@ -3456,688 +3595,677 @@ msgid "Display PDF reports in the browser, instead of downloading as a file" msgstr "" #: common/setting/user.py:45 -msgid "Search Parts" +msgid "Barcode Scanner in Form Fields" msgstr "" #: common/setting/user.py:46 -msgid "Display parts in search preview window" +msgid "Allow barcode scanner input in form fields" msgstr "" #: common/setting/user.py:51 -msgid "Search Supplier Parts" +msgid "Search Parts" msgstr "" #: common/setting/user.py:52 -msgid "Display supplier parts in search preview window" +msgid "Display parts in search preview window" msgstr "" #: common/setting/user.py:57 -msgid "Search Manufacturer Parts" +msgid "Search Supplier Parts" msgstr "" #: common/setting/user.py:58 -msgid "Display manufacturer parts in search preview window" +msgid "Display supplier parts in search preview window" msgstr "" #: common/setting/user.py:63 -msgid "Hide Inactive Parts" +msgid "Search Manufacturer Parts" msgstr "" #: common/setting/user.py:64 -msgid "Excluded inactive parts from search preview window" +msgid "Display manufacturer parts in search preview window" msgstr "" #: common/setting/user.py:69 -msgid "Search Categories" +msgid "Hide Inactive Parts" msgstr "" #: common/setting/user.py:70 -msgid "Display part categories in search preview window" +msgid "Excluded inactive parts from search preview window" msgstr "" #: common/setting/user.py:75 -msgid "Search Stock" +msgid "Search Categories" msgstr "" #: common/setting/user.py:76 -msgid "Display stock items in search preview window" +msgid "Display part categories in search preview window" msgstr "" #: common/setting/user.py:81 +msgid "Search Stock" +msgstr "" + +#: common/setting/user.py:82 +msgid "Display stock items in search preview window" +msgstr "" + +#: common/setting/user.py:87 msgid "Hide Unavailable Stock Items" msgstr "" -#: common/setting/user.py:83 +#: common/setting/user.py:89 msgid "Exclude stock items which are not available from the search preview window" msgstr "" -#: common/setting/user.py:89 +#: common/setting/user.py:95 msgid "Search Locations" msgstr "" -#: common/setting/user.py:90 +#: common/setting/user.py:96 msgid "Display stock locations in search preview window" msgstr "" -#: common/setting/user.py:95 +#: common/setting/user.py:101 msgid "Search Companies" msgstr "" -#: common/setting/user.py:96 +#: common/setting/user.py:102 msgid "Display companies in search preview window" msgstr "" -#: common/setting/user.py:101 +#: common/setting/user.py:107 msgid "Search Build Orders" -msgstr "" +msgstr "Căutați comenzi de producție" -#: common/setting/user.py:102 +#: common/setting/user.py:108 msgid "Display build orders in search preview window" msgstr "" -#: common/setting/user.py:107 +#: common/setting/user.py:113 msgid "Search Purchase Orders" msgstr "" -#: common/setting/user.py:108 +#: common/setting/user.py:114 msgid "Display purchase orders in search preview window" msgstr "" -#: common/setting/user.py:113 +#: common/setting/user.py:119 msgid "Exclude Inactive Purchase Orders" msgstr "" -#: common/setting/user.py:114 +#: common/setting/user.py:120 msgid "Exclude inactive purchase orders from search preview window" msgstr "" -#: common/setting/user.py:119 +#: common/setting/user.py:125 msgid "Search Sales Orders" msgstr "" -#: common/setting/user.py:120 +#: common/setting/user.py:126 msgid "Display sales orders in search preview window" msgstr "" -#: common/setting/user.py:125 +#: common/setting/user.py:131 msgid "Exclude Inactive Sales Orders" msgstr "" -#: common/setting/user.py:126 +#: common/setting/user.py:132 msgid "Exclude inactive sales orders from search preview window" msgstr "" -#: common/setting/user.py:131 +#: common/setting/user.py:137 msgid "Search Sales Order Shipments" msgstr "" -#: common/setting/user.py:132 +#: common/setting/user.py:138 msgid "Display sales order shipments in search preview window" msgstr "" -#: common/setting/user.py:137 +#: common/setting/user.py:143 msgid "Search Return Orders" msgstr "" -#: common/setting/user.py:138 +#: common/setting/user.py:144 msgid "Display return orders in search preview window" msgstr "" -#: common/setting/user.py:143 +#: common/setting/user.py:149 msgid "Exclude Inactive Return Orders" msgstr "" -#: common/setting/user.py:144 +#: common/setting/user.py:150 msgid "Exclude inactive return orders from search preview window" msgstr "" -#: common/setting/user.py:149 +#: common/setting/user.py:155 msgid "Search Preview Results" msgstr "" -#: common/setting/user.py:151 +#: common/setting/user.py:157 msgid "Number of results to show in each section of the search preview window" msgstr "" -#: common/setting/user.py:157 +#: common/setting/user.py:163 msgid "Regex Search" msgstr "" -#: common/setting/user.py:158 +#: common/setting/user.py:164 msgid "Enable regular expressions in search queries" msgstr "" -#: common/setting/user.py:163 +#: common/setting/user.py:169 msgid "Whole Word Search" msgstr "" -#: common/setting/user.py:164 +#: common/setting/user.py:170 msgid "Search queries return results for whole word matches" msgstr "" -#: common/setting/user.py:169 +#: common/setting/user.py:175 msgid "Search Notes" msgstr "" -#: common/setting/user.py:171 +#: common/setting/user.py:177 msgid "Search queries return results for matches from the item's notes" msgstr "" -#: common/setting/user.py:177 +#: common/setting/user.py:183 msgid "Escape Key Closes Forms" msgstr "" -#: common/setting/user.py:178 +#: common/setting/user.py:184 msgid "Use the escape key to close modal forms" msgstr "" -#: common/setting/user.py:183 +#: common/setting/user.py:189 msgid "Fixed Navbar" msgstr "" -#: common/setting/user.py:184 +#: common/setting/user.py:190 msgid "The navbar position is fixed to the top of the screen" msgstr "" -#: common/setting/user.py:189 +#: common/setting/user.py:195 msgid "Fixed Table Headers" msgstr "" -#: common/setting/user.py:190 +#: common/setting/user.py:196 msgid "Table headers are fixed to the top of the table" msgstr "" -#: common/setting/user.py:195 +#: common/setting/user.py:201 msgid "Show Spotlight" msgstr "" -#: common/setting/user.py:196 +#: common/setting/user.py:202 msgid "Enable spotlight navigation functionality" msgstr "" -#: common/setting/user.py:201 +#: common/setting/user.py:207 msgid "Navigation Icons" msgstr "" -#: common/setting/user.py:202 +#: common/setting/user.py:208 msgid "Display icons in the navigation bar" msgstr "" -#: common/setting/user.py:207 +#: common/setting/user.py:213 msgid "Date Format" msgstr "" -#: common/setting/user.py:208 +#: common/setting/user.py:214 msgid "Preferred format for displaying dates" msgstr "" -#: common/setting/user.py:221 +#: common/setting/user.py:227 msgid "Show Stock History" msgstr "" -#: common/setting/user.py:222 +#: common/setting/user.py:228 msgid "Display stock history information in the part detail page" msgstr "" -#: common/setting/user.py:227 +#: common/setting/user.py:233 msgid "Show Last Breadcrumb" msgstr "" -#: common/setting/user.py:228 +#: common/setting/user.py:234 msgid "Show the current page in breadcrumbs" msgstr "" -#: common/setting/user.py:233 +#: common/setting/user.py:239 msgid "Show full stock location in tables" msgstr "" -#: common/setting/user.py:235 +#: common/setting/user.py:241 msgid "Disabled: The full location path is displayed as a hover tooltip. Enabled: The full location path is displayed as plain text." msgstr "" -#: common/setting/user.py:241 +#: common/setting/user.py:247 msgid "Show full part categories in tables" msgstr "" -#: common/setting/user.py:243 +#: common/setting/user.py:249 msgid "Disabled: The full category path is displayed as a hover tooltip. Enabled: The full category path is displayed as plain text." msgstr "" -#: common/setting/user.py:249 +#: common/setting/user.py:255 msgid "Receive error reports" msgstr "" -#: common/setting/user.py:250 +#: common/setting/user.py:256 msgid "Receive notifications for system errors" msgstr "" -#: common/setting/user.py:255 +#: common/setting/user.py:261 msgid "Last used printing machines" msgstr "" -#: common/setting/user.py:256 +#: common/setting/user.py:262 msgid "Save the last used printing machines for a user" msgstr "" -#: common/validators.py:34 +#: common/validators.py:38 +msgid "All models" +msgstr "" + +#: common/validators.py:63 msgid "No attachment model type provided" msgstr "" -#: common/validators.py:40 +#: common/validators.py:69 msgid "Invalid attachment model type" msgstr "" -#: common/validators.py:81 +#: common/validators.py:110 msgid "Minimum places cannot be greater than maximum places" msgstr "" -#: common/validators.py:93 +#: common/validators.py:122 msgid "Maximum places cannot be less than minimum places" msgstr "" -#: common/validators.py:104 +#: common/validators.py:133 msgid "An empty domain is not allowed." msgstr "" -#: common/validators.py:106 +#: common/validators.py:135 #, python-brace-format msgid "Invalid domain name: {domain}" msgstr "" -#: common/validators.py:122 +#: common/validators.py:151 msgid "Value must be uppercase" msgstr "" -#: common/validators.py:128 +#: common/validators.py:157 msgid "Value must be a valid variable identifier" msgstr "" -#: company/api.py:147 +#: company/api.py:141 msgid "Part is Active" msgstr "" -#: company/api.py:151 +#: company/api.py:145 msgid "Manufacturer is Active" msgstr "" -#: company/api.py:286 +#: company/api.py:246 msgid "Supplier Part is Active" msgstr "" -#: company/api.py:290 +#: company/api.py:250 msgid "Internal Part is Active" msgstr "" -#: company/api.py:295 +#: company/api.py:255 msgid "Supplier is Active" msgstr "" -#: company/api.py:307 company/models.py:520 company/serializers.py:457 -#: part/serializers.py:566 +#: company/api.py:267 company/models.py:522 company/serializers.py:502 +#: part/serializers.py:477 msgid "Manufacturer" msgstr "" -#: company/api.py:314 company/models.py:121 company/models.py:392 +#: company/api.py:274 company/models.py:122 company/models.py:393 #: stock/api.py:900 msgid "Company" msgstr "" -#: company/api.py:324 +#: company/api.py:284 msgid "Has Stock" msgstr "" -#: company/models.py:122 +#: company/models.py:123 msgid "Companies" msgstr "" -#: company/models.py:150 +#: company/models.py:151 msgid "Company description" msgstr "" -#: company/models.py:151 +#: company/models.py:152 msgid "Description of the company" msgstr "" -#: company/models.py:157 +#: company/models.py:158 msgid "Website" msgstr "" -#: company/models.py:158 +#: company/models.py:159 msgid "Company website URL" msgstr "" -#: company/models.py:164 +#: company/models.py:165 msgid "Phone number" msgstr "" -#: company/models.py:166 +#: company/models.py:167 msgid "Contact phone number" msgstr "" -#: company/models.py:173 +#: company/models.py:174 msgid "Contact email address" msgstr "" -#: company/models.py:178 company/models.py:296 order/models.py:513 +#: company/models.py:179 company/models.py:297 order/models.py:514 #: users/models.py:561 msgid "Contact" msgstr "" -#: company/models.py:180 +#: company/models.py:181 msgid "Point of contact" msgstr "" -#: company/models.py:186 +#: company/models.py:187 msgid "Link to external company information" msgstr "" -#: company/models.py:191 +#: company/models.py:192 msgid "Is this company active?" msgstr "" -#: company/models.py:196 +#: company/models.py:197 msgid "Is customer" msgstr "" -#: company/models.py:197 +#: company/models.py:198 msgid "Do you sell items to this company?" msgstr "" -#: company/models.py:202 +#: company/models.py:203 msgid "Is supplier" msgstr "" -#: company/models.py:203 +#: company/models.py:204 msgid "Do you purchase items from this company?" msgstr "" -#: company/models.py:208 +#: company/models.py:209 msgid "Is manufacturer" msgstr "" -#: company/models.py:209 +#: company/models.py:210 msgid "Does this company manufacture parts?" msgstr "" -#: company/models.py:217 +#: company/models.py:218 msgid "Default currency used for this company" msgstr "" -#: company/models.py:224 +#: company/models.py:225 msgid "Tax ID" msgstr "" -#: company/models.py:225 +#: company/models.py:226 msgid "Company Tax ID" msgstr "" -#: company/models.py:335 order/models.py:523 order/models.py:2288 +#: company/models.py:336 order/models.py:524 order/models.py:2289 msgid "Address" msgstr "" -#: company/models.py:336 +#: company/models.py:337 msgid "Addresses" msgstr "" -#: company/models.py:393 +#: company/models.py:394 msgid "Select company" msgstr "" -#: company/models.py:398 +#: company/models.py:399 msgid "Address title" msgstr "" -#: company/models.py:399 +#: company/models.py:400 msgid "Title describing the address entry" msgstr "" -#: company/models.py:405 +#: company/models.py:406 msgid "Primary address" msgstr "" -#: company/models.py:406 +#: company/models.py:407 msgid "Set as primary address" msgstr "" -#: company/models.py:411 +#: company/models.py:412 msgid "Line 1" msgstr "" -#: company/models.py:412 +#: company/models.py:413 msgid "Address line 1" msgstr "" -#: company/models.py:418 +#: company/models.py:419 msgid "Line 2" msgstr "" -#: company/models.py:419 +#: company/models.py:420 msgid "Address line 2" msgstr "" -#: company/models.py:425 company/models.py:426 +#: company/models.py:426 company/models.py:427 msgid "Postal code" msgstr "" -#: company/models.py:432 +#: company/models.py:433 msgid "City/Region" msgstr "" -#: company/models.py:433 +#: company/models.py:434 msgid "Postal code city/region" msgstr "" -#: company/models.py:439 +#: company/models.py:440 msgid "State/Province" msgstr "" -#: company/models.py:440 +#: company/models.py:441 msgid "State or province" msgstr "" -#: company/models.py:446 +#: company/models.py:447 msgid "Country" msgstr "" -#: company/models.py:447 +#: company/models.py:448 msgid "Address country" msgstr "" -#: company/models.py:453 +#: company/models.py:454 msgid "Courier shipping notes" msgstr "" -#: company/models.py:454 +#: company/models.py:455 msgid "Notes for shipping courier" msgstr "" -#: company/models.py:460 +#: company/models.py:461 msgid "Internal shipping notes" msgstr "" -#: company/models.py:461 +#: company/models.py:462 msgid "Shipping notes for internal use" msgstr "" -#: company/models.py:468 +#: company/models.py:469 msgid "Link to address information (external)" msgstr "" -#: company/models.py:492 company/models.py:609 company/models.py:832 -#: company/serializers.py:471 stock/api.py:561 +#: company/models.py:494 company/models.py:786 company/serializers.py:516 +#: stock/api.py:561 msgid "Manufacturer Part" msgstr "" -#: company/models.py:509 company/models.py:800 stock/models.py:1025 +#: company/models.py:511 company/models.py:754 stock/models.py:1025 #: stock/serializers.py:407 msgid "Base Part" msgstr "" -#: company/models.py:511 company/models.py:802 +#: company/models.py:513 company/models.py:756 msgid "Select part" msgstr "" -#: company/models.py:521 +#: company/models.py:523 msgid "Select manufacturer" msgstr "" -#: company/models.py:527 company/serializers.py:479 order/serializers.py:734 -#: part/serializers.py:576 +#: company/models.py:529 company/serializers.py:524 order/serializers.py:745 +#: part/serializers.py:487 msgid "MPN" msgstr "" -#: company/models.py:528 stock/serializers.py:572 +#: company/models.py:530 stock/serializers.py:572 msgid "Manufacturer Part Number" msgstr "" -#: company/models.py:535 +#: company/models.py:537 msgid "URL for external manufacturer part link" msgstr "" -#: company/models.py:544 +#: company/models.py:546 msgid "Manufacturer part description" msgstr "" -#: company/models.py:597 -msgid "Manufacturer Part Parameter" -msgstr "" - -#: company/models.py:616 -msgid "Parameter name" -msgstr "" - -#: company/models.py:623 -msgid "Parameter value" -msgstr "" - -#: company/models.py:630 part/models.py:1195 part/models.py:3857 -msgid "Units" -msgstr "" - -#: company/models.py:631 -msgid "Parameter units" -msgstr "" - -#: company/models.py:740 +#: company/models.py:694 msgid "Pack units must be compatible with the base part units" msgstr "" -#: company/models.py:747 +#: company/models.py:701 msgid "Pack units must be greater than zero" msgstr "" -#: company/models.py:761 +#: company/models.py:715 msgid "Linked manufacturer part must reference the same base part" msgstr "" -#: company/models.py:810 company/serializers.py:449 company/serializers.py:467 -#: order/models.py:639 part/serializers.py:550 +#: company/models.py:764 company/serializers.py:494 company/serializers.py:512 +#: order/models.py:640 part/serializers.py:461 #: plugin/builtin/suppliers/digikey.py:26 plugin/builtin/suppliers/lcsc.py:27 #: plugin/builtin/suppliers/mouser.py:25 plugin/builtin/suppliers/tme.py:27 #: stock/api.py:567 templates/email/overdue_purchase_order.html:16 msgid "Supplier" msgstr "" -#: company/models.py:811 +#: company/models.py:765 msgid "Select supplier" msgstr "" -#: company/models.py:817 part/serializers.py:561 +#: company/models.py:771 part/serializers.py:472 msgid "Supplier stock keeping unit" msgstr "" -#: company/models.py:823 +#: company/models.py:777 msgid "Is this supplier part active?" msgstr "" -#: company/models.py:833 +#: company/models.py:787 msgid "Select manufacturer part" msgstr "" -#: company/models.py:840 +#: company/models.py:794 msgid "URL for external supplier part link" msgstr "" -#: company/models.py:849 +#: company/models.py:803 msgid "Supplier part description" msgstr "" -#: company/models.py:856 order/serializers.py:883 order/serializers.py:2047 -#: part/models.py:4070 part/models.py:4450 part/models.py:4819 -#: report/templates/report/inventree_bill_of_materials_report.html:140 -#: report/templates/report/inventree_purchase_order_report.html:39 -#: report/templates/report/inventree_return_order_report.html:27 -#: report/templates/report/inventree_sales_order_report.html:32 -#: report/templates/report/inventree_stock_location_report.html:105 -#: stock/serializers.py:813 -msgid "Note" -msgstr "" - -#: company/models.py:865 part/models.py:2250 +#: company/models.py:819 part/models.py:2338 msgid "base cost" msgstr "" -#: company/models.py:866 part/models.py:2251 +#: company/models.py:820 part/models.py:2339 msgid "Minimum charge (e.g. stocking fee)" msgstr "" -#: company/models.py:873 order/serializers.py:875 stock/models.py:1056 +#: company/models.py:827 order/serializers.py:886 stock/models.py:1056 #: stock/serializers.py:1606 msgid "Packaging" msgstr "" -#: company/models.py:874 +#: company/models.py:828 msgid "Part packaging" msgstr "" -#: company/models.py:879 +#: company/models.py:833 msgid "Pack Quantity" msgstr "" -#: company/models.py:881 +#: company/models.py:835 msgid "Total quantity supplied in a single pack. Leave empty for single items." msgstr "" -#: company/models.py:900 part/models.py:2257 +#: company/models.py:854 part/models.py:2345 msgid "multiple" msgstr "" -#: company/models.py:901 +#: company/models.py:855 msgid "Order multiple" msgstr "" -#: company/models.py:913 +#: company/models.py:867 msgid "Quantity available from supplier" msgstr "" -#: company/models.py:919 +#: company/models.py:873 msgid "Availability Updated" msgstr "" -#: company/models.py:920 +#: company/models.py:874 msgid "Date of last update of availability data" msgstr "" -#: company/models.py:1048 +#: company/models.py:1002 msgid "Supplier Price Break" msgstr "" -#: company/serializers.py:181 +#: company/serializers.py:184 +msgid "Primary Address" +msgstr "" + +#: company/serializers.py:186 msgid "Return the string representation for the primary address. This property exists for backwards compatibility." msgstr "" -#: company/serializers.py:212 +#: company/serializers.py:218 msgid "Default currency used for this supplier" msgstr "" -#: company/serializers.py:248 +#: company/serializers.py:260 msgid "Company Name" msgstr "" -#: company/serializers.py:433 part/serializers.py:955 stock/serializers.py:428 +#: company/serializers.py:460 part/serializers.py:840 stock/serializers.py:428 msgid "In Stock" msgstr "" +#: company/serializers.py:477 +msgid "Price Breaks" +msgstr "" + #: data_exporter/mixins.py:325 data_exporter/mixins.py:403 msgid "Error occurred during data export" msgstr "" @@ -4290,7 +4418,7 @@ msgstr "" msgid "Errors" msgstr "" -#: importer/models.py:550 part/serializers.py:1268 +#: importer/models.py:550 part/serializers.py:1133 msgid "Valid" msgstr "" @@ -4402,7 +4530,7 @@ msgstr "" msgid "Connected" msgstr "" -#: machine/machine_types/label_printer.py:232 order/api.py:1795 +#: machine/machine_types/label_printer.py:232 order/api.py:1800 msgid "Unknown" msgstr "" @@ -4530,105 +4658,105 @@ msgstr "" msgid "Maximum value for progress type, required if type=progress" msgstr "" -#: order/api.py:125 +#: order/api.py:130 msgid "Order Reference" msgstr "" -#: order/api.py:153 order/api.py:1207 +#: order/api.py:158 order/api.py:1212 msgid "Outstanding" msgstr "" -#: order/api.py:169 +#: order/api.py:174 msgid "Has Project Code" msgstr "" -#: order/api.py:183 order/models.py:488 +#: order/api.py:188 order/models.py:489 msgid "Created By" msgstr "" -#: order/api.py:187 +#: order/api.py:192 msgid "Created Before" msgstr "" -#: order/api.py:191 +#: order/api.py:196 msgid "Created After" msgstr "" -#: order/api.py:195 +#: order/api.py:200 msgid "Has Start Date" msgstr "" -#: order/api.py:203 +#: order/api.py:208 msgid "Start Date Before" msgstr "" -#: order/api.py:207 +#: order/api.py:212 msgid "Start Date After" msgstr "" -#: order/api.py:211 +#: order/api.py:216 msgid "Has Target Date" msgstr "" -#: order/api.py:219 +#: order/api.py:224 msgid "Target Date Before" msgstr "" -#: order/api.py:223 +#: order/api.py:228 msgid "Target Date After" msgstr "" -#: order/api.py:274 +#: order/api.py:279 msgid "Has Pricing" msgstr "" -#: order/api.py:327 order/api.py:812 order/api.py:1490 +#: order/api.py:332 order/api.py:818 order/api.py:1495 msgid "Completed Before" msgstr "" -#: order/api.py:331 order/api.py:816 order/api.py:1494 +#: order/api.py:336 order/api.py:822 order/api.py:1499 msgid "Completed After" msgstr "" -#: order/api.py:337 order/api.py:341 +#: order/api.py:342 order/api.py:346 msgid "External Build Order" msgstr "" -#: order/api.py:526 order/api.py:914 order/api.py:1170 order/models.py:1922 -#: order/models.py:2049 order/models.py:2099 order/models.py:2279 -#: order/models.py:2477 order/models.py:2999 order/models.py:3065 +#: order/api.py:532 order/api.py:919 order/api.py:1175 order/models.py:1923 +#: order/models.py:2050 order/models.py:2100 order/models.py:2280 +#: order/models.py:2478 order/models.py:3000 order/models.py:3066 msgid "Order" msgstr "" -#: order/api.py:530 order/api.py:982 +#: order/api.py:536 order/api.py:987 msgid "Order Complete" msgstr "" -#: order/api.py:562 order/api.py:566 order/serializers.py:745 +#: order/api.py:568 order/api.py:572 order/serializers.py:756 msgid "Internal Part" msgstr "" -#: order/api.py:584 +#: order/api.py:590 msgid "Order Pending" msgstr "" -#: order/api.py:967 +#: order/api.py:972 msgid "Completed" msgstr "" -#: order/api.py:1223 +#: order/api.py:1228 msgid "Has Shipment" msgstr "" -#: order/api.py:1789 order/models.py:552 order/models.py:1923 -#: order/models.py:2050 +#: order/api.py:1794 order/models.py:553 order/models.py:1924 +#: order/models.py:2051 #: report/templates/report/inventree_purchase_order_report.html:14 #: stock/serializers.py:129 templates/email/overdue_purchase_order.html:15 msgid "Purchase Order" msgstr "" -#: order/api.py:1791 order/models.py:1251 order/models.py:2100 -#: order/models.py:2280 order/models.py:2478 +#: order/api.py:1796 order/models.py:1252 order/models.py:2101 +#: order/models.py:2281 order/models.py:2479 #: report/templates/report/inventree_build_order_report.html:135 #: report/templates/report/inventree_sales_order_report.html:14 #: report/templates/report/inventree_sales_order_shipment_report.html:15 @@ -4636,8 +4764,8 @@ msgstr "" msgid "Sales Order" msgstr "" -#: order/api.py:1793 order/models.py:2649 order/models.py:3000 -#: order/models.py:3066 +#: order/api.py:1798 order/models.py:2650 order/models.py:3001 +#: order/models.py:3067 #: report/templates/report/inventree_return_order_report.html:13 #: templates/email/overdue_return_order.html:15 msgid "Return Order" @@ -4653,722 +4781,722 @@ msgstr "" msgid "Total price for this order" msgstr "" -#: order/models.py:96 order/serializers.py:77 +#: order/models.py:96 order/serializers.py:78 msgid "Order Currency" msgstr "" -#: order/models.py:99 order/serializers.py:78 +#: order/models.py:99 order/serializers.py:79 msgid "Currency for this order (leave blank to use company default)" msgstr "" -#: order/models.py:324 +#: order/models.py:325 msgid "This order is locked and cannot be modified" msgstr "" -#: order/models.py:376 +#: order/models.py:377 msgid "Contact does not match selected company" msgstr "" -#: order/models.py:383 +#: order/models.py:384 msgid "Start date must be before target date" msgstr "" -#: order/models.py:390 +#: order/models.py:391 msgid "Address does not match selected company" msgstr "" -#: order/models.py:443 +#: order/models.py:444 msgid "Order description (optional)" msgstr "" -#: order/models.py:452 order/models.py:1806 +#: order/models.py:453 order/models.py:1807 msgid "Select project code for this order" msgstr "" -#: order/models.py:458 order/models.py:1787 order/models.py:2344 +#: order/models.py:459 order/models.py:1788 order/models.py:2345 msgid "Link to external page" msgstr "" -#: order/models.py:465 +#: order/models.py:466 msgid "Start date" msgstr "" -#: order/models.py:466 +#: order/models.py:467 msgid "Scheduled start date for this order" msgstr "" -#: order/models.py:472 order/models.py:1794 order/serializers.py:309 +#: order/models.py:473 order/models.py:1795 order/serializers.py:317 #: report/templates/report/inventree_build_order_report.html:125 msgid "Target Date" msgstr "" -#: order/models.py:474 +#: order/models.py:475 msgid "Expected date for order delivery. Order will be overdue after this date." msgstr "" -#: order/models.py:494 +#: order/models.py:495 msgid "Issue Date" msgstr "" -#: order/models.py:495 +#: order/models.py:496 msgid "Date order was issued" msgstr "" -#: order/models.py:503 +#: order/models.py:504 msgid "User or group responsible for this order" msgstr "" -#: order/models.py:514 +#: order/models.py:515 msgid "Point of contact for this order" msgstr "" -#: order/models.py:524 +#: order/models.py:525 msgid "Company address for this order" msgstr "" -#: order/models.py:615 order/models.py:1312 +#: order/models.py:616 order/models.py:1313 msgid "Order reference" msgstr "" -#: order/models.py:624 order/models.py:1336 order/models.py:2737 +#: order/models.py:625 order/models.py:1337 order/models.py:2738 #: stock/serializers.py:559 stock/serializers.py:988 users/models.py:542 msgid "Status" msgstr "" -#: order/models.py:625 +#: order/models.py:626 msgid "Purchase order status" msgstr "" -#: order/models.py:640 +#: order/models.py:641 msgid "Company from which the items are being ordered" msgstr "" -#: order/models.py:651 +#: order/models.py:652 msgid "Supplier Reference" msgstr "" -#: order/models.py:652 +#: order/models.py:653 msgid "Supplier order reference code" msgstr "" -#: order/models.py:661 +#: order/models.py:662 msgid "received by" msgstr "" -#: order/models.py:668 order/models.py:2752 +#: order/models.py:669 order/models.py:2753 msgid "Date order was completed" msgstr "" -#: order/models.py:677 order/models.py:1981 +#: order/models.py:678 order/models.py:1982 msgid "Destination" msgstr "" -#: order/models.py:678 order/models.py:1985 +#: order/models.py:679 order/models.py:1986 msgid "Destination for received items" msgstr "" -#: order/models.py:724 +#: order/models.py:725 msgid "Part supplier must match PO supplier" msgstr "" -#: order/models.py:994 +#: order/models.py:995 msgid "Line item does not match purchase order" msgstr "" -#: order/models.py:997 +#: order/models.py:998 msgid "Line item is missing a linked part" msgstr "" -#: order/models.py:1011 +#: order/models.py:1012 msgid "Quantity must be a positive number" msgstr "" -#: order/models.py:1323 order/models.py:2724 stock/models.py:1078 +#: order/models.py:1324 order/models.py:2725 stock/models.py:1078 #: stock/models.py:1079 stock/serializers.py:1322 #: templates/email/overdue_return_order.html:16 #: templates/email/overdue_sales_order.html:16 msgid "Customer" msgstr "" -#: order/models.py:1324 +#: order/models.py:1325 msgid "Company to which the items are being sold" msgstr "" -#: order/models.py:1337 +#: order/models.py:1338 msgid "Sales order status" msgstr "" -#: order/models.py:1348 order/models.py:2744 +#: order/models.py:1349 order/models.py:2745 msgid "Customer Reference " msgstr "" -#: order/models.py:1349 order/models.py:2745 +#: order/models.py:1350 order/models.py:2746 msgid "Customer order reference code" msgstr "" -#: order/models.py:1353 order/models.py:2296 +#: order/models.py:1354 order/models.py:2297 msgid "Shipment Date" msgstr "" -#: order/models.py:1362 +#: order/models.py:1363 msgid "shipped by" msgstr "" -#: order/models.py:1413 +#: order/models.py:1414 msgid "Order is already complete" msgstr "" -#: order/models.py:1416 +#: order/models.py:1417 msgid "Order is already cancelled" msgstr "" -#: order/models.py:1420 +#: order/models.py:1421 msgid "Only an open order can be marked as complete" msgstr "" -#: order/models.py:1424 +#: order/models.py:1425 msgid "Order cannot be completed as there are incomplete shipments" msgstr "" -#: order/models.py:1429 +#: order/models.py:1430 msgid "Order cannot be completed as there are incomplete allocations" msgstr "" -#: order/models.py:1438 +#: order/models.py:1439 msgid "Order cannot be completed as there are incomplete line items" msgstr "" -#: order/models.py:1733 order/models.py:1749 +#: order/models.py:1734 order/models.py:1750 msgid "The order is locked and cannot be modified" msgstr "" -#: order/models.py:1757 +#: order/models.py:1758 msgid "Item quantity" msgstr "" -#: order/models.py:1774 +#: order/models.py:1775 msgid "Line item reference" msgstr "" -#: order/models.py:1781 +#: order/models.py:1782 msgid "Line item notes" msgstr "" -#: order/models.py:1796 +#: order/models.py:1797 msgid "Target date for this line item (leave blank to use the target date from the order)" msgstr "" -#: order/models.py:1826 +#: order/models.py:1827 msgid "Line item description (optional)" msgstr "" -#: order/models.py:1833 +#: order/models.py:1834 msgid "Additional context for this line" msgstr "" -#: order/models.py:1843 +#: order/models.py:1844 msgid "Unit price" msgstr "" -#: order/models.py:1862 +#: order/models.py:1863 msgid "Purchase Order Line Item" msgstr "" -#: order/models.py:1889 +#: order/models.py:1890 msgid "Supplier part must match supplier" msgstr "" -#: order/models.py:1894 +#: order/models.py:1895 msgid "Build order must be marked as external" msgstr "" -#: order/models.py:1901 +#: order/models.py:1902 msgid "Build orders can only be linked to assembly parts" msgstr "" -#: order/models.py:1907 +#: order/models.py:1908 msgid "Build order part must match line item part" msgstr "" -#: order/models.py:1942 +#: order/models.py:1943 msgid "Supplier part" msgstr "" -#: order/models.py:1949 +#: order/models.py:1950 msgid "Received" msgstr "" -#: order/models.py:1950 +#: order/models.py:1951 msgid "Number of items received" msgstr "" -#: order/models.py:1958 stock/models.py:1201 stock/serializers.py:637 +#: order/models.py:1959 stock/models.py:1201 stock/serializers.py:637 msgid "Purchase Price" msgstr "" -#: order/models.py:1959 +#: order/models.py:1960 msgid "Unit purchase price" msgstr "" -#: order/models.py:1975 +#: order/models.py:1976 msgid "External Build Order to be fulfilled by this line item" msgstr "" -#: order/models.py:2038 +#: order/models.py:2039 msgid "Purchase Order Extra Line" msgstr "" -#: order/models.py:2067 +#: order/models.py:2068 msgid "Sales Order Line Item" msgstr "" -#: order/models.py:2092 +#: order/models.py:2093 msgid "Only salable parts can be assigned to a sales order" msgstr "" -#: order/models.py:2118 +#: order/models.py:2119 msgid "Sale Price" msgstr "" -#: order/models.py:2119 +#: order/models.py:2120 msgid "Unit sale price" msgstr "" -#: order/models.py:2128 order/status_codes.py:50 +#: order/models.py:2129 order/status_codes.py:50 msgid "Shipped" msgstr "" -#: order/models.py:2129 +#: order/models.py:2130 msgid "Shipped quantity" msgstr "" -#: order/models.py:2240 +#: order/models.py:2241 msgid "Sales Order Shipment" msgstr "" -#: order/models.py:2253 +#: order/models.py:2254 msgid "Shipment address must match the customer" msgstr "" -#: order/models.py:2289 +#: order/models.py:2290 msgid "Shipping address for this shipment" msgstr "" -#: order/models.py:2297 +#: order/models.py:2298 msgid "Date of shipment" msgstr "" -#: order/models.py:2303 +#: order/models.py:2304 msgid "Delivery Date" msgstr "" -#: order/models.py:2304 +#: order/models.py:2305 msgid "Date of delivery of shipment" msgstr "" -#: order/models.py:2312 +#: order/models.py:2313 msgid "Checked By" msgstr "" -#: order/models.py:2313 +#: order/models.py:2314 msgid "User who checked this shipment" msgstr "" -#: order/models.py:2320 order/models.py:2574 order/serializers.py:1711 -#: order/serializers.py:1835 +#: order/models.py:2321 order/models.py:2575 order/serializers.py:1725 +#: order/serializers.py:1849 #: report/templates/report/inventree_sales_order_shipment_report.html:14 msgid "Shipment" msgstr "" -#: order/models.py:2321 +#: order/models.py:2322 msgid "Shipment number" msgstr "" -#: order/models.py:2329 +#: order/models.py:2330 msgid "Tracking Number" msgstr "" -#: order/models.py:2330 +#: order/models.py:2331 msgid "Shipment tracking information" msgstr "" -#: order/models.py:2337 +#: order/models.py:2338 msgid "Invoice Number" msgstr "" -#: order/models.py:2338 +#: order/models.py:2339 msgid "Reference number for associated invoice" msgstr "" -#: order/models.py:2377 +#: order/models.py:2378 msgid "Shipment has already been sent" msgstr "" -#: order/models.py:2380 +#: order/models.py:2381 msgid "Shipment has no allocated stock items" msgstr "" -#: order/models.py:2387 +#: order/models.py:2388 msgid "Shipment must be checked before it can be completed" msgstr "" -#: order/models.py:2466 +#: order/models.py:2467 msgid "Sales Order Extra Line" msgstr "" -#: order/models.py:2495 +#: order/models.py:2496 msgid "Sales Order Allocation" msgstr "" -#: order/models.py:2518 order/models.py:2520 +#: order/models.py:2519 order/models.py:2521 msgid "Stock item has not been assigned" msgstr "" -#: order/models.py:2527 +#: order/models.py:2528 msgid "Cannot allocate stock item to a line with a different part" msgstr "" -#: order/models.py:2530 +#: order/models.py:2531 msgid "Cannot allocate stock to a line without a part" msgstr "" -#: order/models.py:2533 +#: order/models.py:2534 msgid "Allocation quantity cannot exceed stock quantity" msgstr "" -#: order/models.py:2552 order/serializers.py:1581 +#: order/models.py:2553 order/serializers.py:1595 msgid "Quantity must be 1 for serialized stock item" msgstr "" -#: order/models.py:2555 +#: order/models.py:2556 msgid "Sales order does not match shipment" msgstr "" -#: order/models.py:2556 plugin/base/barcodes/api.py:642 +#: order/models.py:2557 plugin/base/barcodes/api.py:642 msgid "Shipment does not match sales order" msgstr "" -#: order/models.py:2564 +#: order/models.py:2565 msgid "Line" msgstr "" -#: order/models.py:2575 +#: order/models.py:2576 msgid "Sales order shipment reference" msgstr "" -#: order/models.py:2588 order/models.py:3007 +#: order/models.py:2589 order/models.py:3008 msgid "Item" msgstr "" -#: order/models.py:2589 +#: order/models.py:2590 msgid "Select stock item to allocate" msgstr "" -#: order/models.py:2598 +#: order/models.py:2599 msgid "Enter stock allocation quantity" msgstr "" -#: order/models.py:2713 +#: order/models.py:2714 msgid "Return Order reference" msgstr "" -#: order/models.py:2725 +#: order/models.py:2726 msgid "Company from which items are being returned" msgstr "" -#: order/models.py:2738 +#: order/models.py:2739 msgid "Return order status" msgstr "" -#: order/models.py:2965 +#: order/models.py:2966 msgid "Return Order Line Item" msgstr "" -#: order/models.py:2978 +#: order/models.py:2979 msgid "Stock item must be specified" msgstr "" -#: order/models.py:2982 +#: order/models.py:2983 msgid "Return quantity exceeds stock quantity" msgstr "" -#: order/models.py:2987 +#: order/models.py:2988 msgid "Return quantity must be greater than zero" msgstr "" -#: order/models.py:2992 +#: order/models.py:2993 msgid "Invalid quantity for serialized stock item" msgstr "" -#: order/models.py:3008 +#: order/models.py:3009 msgid "Select item to return from customer" msgstr "" -#: order/models.py:3023 +#: order/models.py:3024 msgid "Received Date" msgstr "" -#: order/models.py:3024 +#: order/models.py:3025 msgid "The date this this return item was received" msgstr "" -#: order/models.py:3036 +#: order/models.py:3037 msgid "Outcome" msgstr "" -#: order/models.py:3037 +#: order/models.py:3038 msgid "Outcome for this line item" msgstr "" -#: order/models.py:3044 +#: order/models.py:3045 msgid "Cost associated with return or repair for this line item" msgstr "" -#: order/models.py:3054 +#: order/models.py:3055 msgid "Return Order Extra Line" msgstr "" -#: order/serializers.py:91 +#: order/serializers.py:92 msgid "Order ID" msgstr "" -#: order/serializers.py:91 +#: order/serializers.py:92 msgid "ID of the order to duplicate" msgstr "" -#: order/serializers.py:97 +#: order/serializers.py:98 msgid "Copy Lines" msgstr "" -#: order/serializers.py:98 +#: order/serializers.py:99 msgid "Copy line items from the original order" msgstr "" -#: order/serializers.py:104 +#: order/serializers.py:105 msgid "Copy Extra Lines" msgstr "" -#: order/serializers.py:105 +#: order/serializers.py:106 msgid "Copy extra line items from the original order" msgstr "" -#: order/serializers.py:120 +#: order/serializers.py:121 #: report/templates/report/inventree_purchase_order_report.html:29 #: report/templates/report/inventree_return_order_report.html:19 #: report/templates/report/inventree_sales_order_report.html:22 msgid "Line Items" msgstr "" -#: order/serializers.py:125 +#: order/serializers.py:126 msgid "Completed Lines" msgstr "" -#: order/serializers.py:192 +#: order/serializers.py:199 msgid "Duplicate Order" msgstr "" -#: order/serializers.py:193 +#: order/serializers.py:200 msgid "Specify options for duplicating this order" msgstr "" -#: order/serializers.py:270 +#: order/serializers.py:278 msgid "Invalid order ID" msgstr "" -#: order/serializers.py:466 +#: order/serializers.py:477 msgid "Supplier Name" msgstr "" -#: order/serializers.py:510 +#: order/serializers.py:521 msgid "Order cannot be cancelled" msgstr "" -#: order/serializers.py:525 order/serializers.py:1602 +#: order/serializers.py:536 order/serializers.py:1616 msgid "Allow order to be closed with incomplete line items" msgstr "" -#: order/serializers.py:535 order/serializers.py:1612 +#: order/serializers.py:546 order/serializers.py:1626 msgid "Order has incomplete line items" msgstr "" -#: order/serializers.py:665 +#: order/serializers.py:676 msgid "Order is not open" msgstr "" -#: order/serializers.py:692 +#: order/serializers.py:703 msgid "Auto Pricing" msgstr "" -#: order/serializers.py:694 +#: order/serializers.py:705 msgid "Automatically calculate purchase price based on supplier part data" msgstr "" -#: order/serializers.py:704 +#: order/serializers.py:715 msgid "Purchase price currency" msgstr "" -#: order/serializers.py:718 +#: order/serializers.py:729 msgid "Merge Items" msgstr "" -#: order/serializers.py:720 +#: order/serializers.py:731 msgid "Merge items with the same part, destination and target date into one line item" msgstr "" -#: order/serializers.py:727 part/serializers.py:560 +#: order/serializers.py:738 part/serializers.py:471 msgid "SKU" msgstr "" -#: order/serializers.py:741 part/models.py:1089 part/serializers.py:372 +#: order/serializers.py:752 part/models.py:1177 part/serializers.py:337 msgid "Internal Part Number" msgstr "" -#: order/serializers.py:749 +#: order/serializers.py:760 msgid "Internal Part Name" msgstr "" -#: order/serializers.py:765 +#: order/serializers.py:776 msgid "Supplier part must be specified" msgstr "" -#: order/serializers.py:768 +#: order/serializers.py:779 msgid "Purchase order must be specified" msgstr "" -#: order/serializers.py:776 +#: order/serializers.py:787 msgid "Supplier must match purchase order" msgstr "" -#: order/serializers.py:777 +#: order/serializers.py:788 msgid "Purchase order must match supplier" msgstr "" -#: order/serializers.py:825 order/serializers.py:1682 +#: order/serializers.py:836 order/serializers.py:1696 msgid "Line Item" msgstr "" -#: order/serializers.py:834 order/serializers.py:974 order/serializers.py:2043 +#: order/serializers.py:845 order/serializers.py:985 order/serializers.py:2060 msgid "Select destination location for received items" msgstr "" -#: order/serializers.py:850 +#: order/serializers.py:861 msgid "Enter batch code for incoming stock items" msgstr "" -#: order/serializers.py:857 stock/models.py:1160 +#: order/serializers.py:868 stock/models.py:1160 #: templates/email/stale_stock_notification.html:22 users/models.py:137 msgid "Expiry Date" msgstr "" -#: order/serializers.py:858 +#: order/serializers.py:869 msgid "Enter expiry date for incoming stock items" msgstr "" -#: order/serializers.py:866 +#: order/serializers.py:877 msgid "Enter serial numbers for incoming stock items" msgstr "" -#: order/serializers.py:876 +#: order/serializers.py:887 msgid "Override packaging information for incoming stock items" msgstr "" -#: order/serializers.py:884 order/serializers.py:2048 +#: order/serializers.py:895 order/serializers.py:2065 msgid "Additional note for incoming stock items" msgstr "" -#: order/serializers.py:891 +#: order/serializers.py:902 msgid "Barcode" msgstr "" -#: order/serializers.py:892 +#: order/serializers.py:903 msgid "Scanned barcode" msgstr "" -#: order/serializers.py:908 +#: order/serializers.py:919 msgid "Barcode is already in use" msgstr "" -#: order/serializers.py:991 order/serializers.py:2067 +#: order/serializers.py:1002 order/serializers.py:2084 msgid "Line items must be provided" msgstr "" -#: order/serializers.py:1010 +#: order/serializers.py:1021 msgid "Destination location must be specified" msgstr "" -#: order/serializers.py:1017 +#: order/serializers.py:1028 msgid "Supplied barcode values must be unique" msgstr "" -#: order/serializers.py:1121 +#: order/serializers.py:1135 msgid "Shipments" msgstr "" -#: order/serializers.py:1125 +#: order/serializers.py:1139 msgid "Completed Shipments" msgstr "" -#: order/serializers.py:1293 +#: order/serializers.py:1307 msgid "Sale price currency" msgstr "" -#: order/serializers.py:1339 +#: order/serializers.py:1353 msgid "Allocated Items" msgstr "" -#: order/serializers.py:1484 +#: order/serializers.py:1498 msgid "No shipment details provided" msgstr "" -#: order/serializers.py:1545 order/serializers.py:1691 +#: order/serializers.py:1559 order/serializers.py:1705 msgid "Line item is not associated with this order" msgstr "" -#: order/serializers.py:1564 +#: order/serializers.py:1578 msgid "Quantity must be positive" msgstr "" -#: order/serializers.py:1701 +#: order/serializers.py:1715 msgid "Enter serial numbers to allocate" msgstr "" -#: order/serializers.py:1723 order/serializers.py:1843 +#: order/serializers.py:1737 order/serializers.py:1857 msgid "Shipment has already been shipped" msgstr "" -#: order/serializers.py:1726 order/serializers.py:1846 +#: order/serializers.py:1740 order/serializers.py:1860 msgid "Shipment is not associated with this order" msgstr "" -#: order/serializers.py:1781 +#: order/serializers.py:1795 msgid "No match found for the following serial numbers" msgstr "" -#: order/serializers.py:1788 +#: order/serializers.py:1802 msgid "The following serial numbers are unavailable" msgstr "" -#: order/serializers.py:2009 +#: order/serializers.py:2026 msgid "Return order line item" msgstr "" -#: order/serializers.py:2019 +#: order/serializers.py:2036 msgid "Line item does not match return order" msgstr "" -#: order/serializers.py:2022 +#: order/serializers.py:2039 msgid "Line item has already been received" msgstr "" -#: order/serializers.py:2059 +#: order/serializers.py:2076 msgid "Items can only be received against orders which are in progress" msgstr "" -#: order/serializers.py:2124 +#: order/serializers.py:2141 msgid "Quantity to return" msgstr "" -#: order/serializers.py:2140 +#: order/serializers.py:2157 msgid "Line price currency" msgstr "" @@ -5431,1190 +5559,1109 @@ msgstr "" msgid "Return order {ro} is now overdue" msgstr "" -#: part/api.py:108 +#: part/api.py:103 msgid "Starred" msgstr "" -#: part/api.py:110 +#: part/api.py:105 msgid "Filter by starred categories" msgstr "" -#: part/api.py:127 stock/api.py:288 +#: part/api.py:122 stock/api.py:288 msgid "Depth" msgstr "" -#: part/api.py:127 +#: part/api.py:122 msgid "Filter by category depth" msgstr "" -#: part/api.py:145 stock/api.py:306 +#: part/api.py:140 stock/api.py:306 msgid "Top Level" msgstr "" -#: part/api.py:147 +#: part/api.py:142 msgid "Filter by top-level categories" msgstr "" -#: part/api.py:160 stock/api.py:321 +#: part/api.py:155 stock/api.py:321 msgid "Cascade" msgstr "" -#: part/api.py:162 +#: part/api.py:157 msgid "Include sub-categories in filtered results" msgstr "" -#: part/api.py:182 +#: part/api.py:177 msgid "Parent" msgstr "" -#: part/api.py:184 +#: part/api.py:179 msgid "Filter by parent category" msgstr "" -#: part/api.py:219 +#: part/api.py:214 msgid "Exclude sub-categories under the specified category" msgstr "" -#: part/api.py:445 +#: part/api.py:440 msgid "Has Results" msgstr "" -#: part/api.py:666 +#: part/api.py:661 msgid "Is Variant" msgstr "" -#: part/api.py:674 +#: part/api.py:669 msgid "Is Revision" msgstr "" -#: part/api.py:684 +#: part/api.py:679 msgid "Has Revisions" msgstr "" -#: part/api.py:865 +#: part/api.py:860 msgid "BOM Valid" msgstr "" -#: part/api.py:974 +#: part/api.py:969 msgid "Cascade Categories" msgstr "" -#: part/api.py:975 +#: part/api.py:970 msgid "If true, include items in child categories of the given category" msgstr "" -#: part/api.py:981 +#: part/api.py:976 msgid "Filter by numeric category ID or the literal 'null'" msgstr "" -#: part/api.py:1533 +#: part/api.py:1258 msgid "Assembly part is testable" msgstr "" -#: part/api.py:1542 +#: part/api.py:1267 msgid "Component part is testable" msgstr "" -#: part/api.py:1611 +#: part/api.py:1336 msgid "Uses" msgstr "" -#: part/models.py:96 part/models.py:4163 +#: part/models.py:93 part/models.py:436 #: templates/email/part_event_notification.html:16 msgid "Part Category" msgstr "" -#: part/models.py:97 users/ruleset.py:27 +#: part/models.py:94 users/ruleset.py:27 msgid "Part Categories" msgstr "" -#: part/models.py:115 part/models.py:1125 +#: part/models.py:112 part/models.py:1213 msgid "Default Location" msgstr "" -#: part/models.py:116 +#: part/models.py:113 msgid "Default location for parts in this category" msgstr "" -#: part/models.py:121 stock/models.py:216 +#: part/models.py:118 stock/models.py:216 msgid "Structural" msgstr "" -#: part/models.py:123 +#: part/models.py:120 msgid "Parts may not be directly assigned to a structural category, but may be assigned to child categories." msgstr "" -#: part/models.py:132 +#: part/models.py:129 msgid "Default keywords" msgstr "" -#: part/models.py:133 +#: part/models.py:130 msgid "Default keywords for parts in this category" msgstr "" -#: part/models.py:140 stock/models.py:97 stock/models.py:198 +#: part/models.py:137 stock/models.py:97 stock/models.py:198 msgid "Icon" msgstr "" -#: part/models.py:141 part/serializers.py:148 part/serializers.py:167 +#: part/models.py:138 part/serializers.py:147 part/serializers.py:166 #: stock/models.py:199 msgid "Icon (optional)" msgstr "" -#: part/models.py:185 +#: part/models.py:182 msgid "You cannot make this part category structural because some parts are already assigned to it!" msgstr "" -#: part/models.py:473 part/serializers.py:119 part/serializers.py:310 -#: users/ruleset.py:28 +#: part/models.py:392 +msgid "Part Category Parameter Template" +msgstr "" + +#: part/models.py:448 +msgid "Default Value" +msgstr "" + +#: part/models.py:449 +msgid "Default Parameter Value" +msgstr "" + +#: part/models.py:551 part/serializers.py:118 users/ruleset.py:28 msgid "Parts" msgstr "" -#: part/models.py:525 +#: part/models.py:597 +msgid "Cannot delete parameters of a locked part" +msgstr "" + +#: part/models.py:602 +msgid "Cannot modify parameters of a locked part" +msgstr "" + +#: part/models.py:613 msgid "Cannot delete this part as it is locked" msgstr "" -#: part/models.py:528 +#: part/models.py:616 msgid "Cannot delete this part as it is still active" msgstr "" -#: part/models.py:533 +#: part/models.py:621 msgid "Cannot delete this part as it is used in an assembly" msgstr "" -#: part/models.py:616 part/models.py:623 +#: part/models.py:704 part/models.py:711 #, python-brace-format msgid "Part '{self}' cannot be used in BOM for '{parent}' (recursive)" msgstr "" -#: part/models.py:635 +#: part/models.py:723 #, python-brace-format msgid "Part '{parent}' is used in BOM for '{self}' (recursive)" msgstr "" -#: part/models.py:702 +#: part/models.py:790 #, python-brace-format msgid "IPN must match regex pattern {pattern}" msgstr "" -#: part/models.py:710 +#: part/models.py:798 msgid "Part cannot be a revision of itself" msgstr "" -#: part/models.py:717 +#: part/models.py:805 msgid "Cannot make a revision of a part which is already a revision" msgstr "" -#: part/models.py:724 +#: part/models.py:812 msgid "Revision code must be specified" msgstr "" -#: part/models.py:731 +#: part/models.py:819 msgid "Revisions are only allowed for assembly parts" msgstr "" -#: part/models.py:738 +#: part/models.py:826 msgid "Cannot make a revision of a template part" msgstr "" -#: part/models.py:744 +#: part/models.py:832 msgid "Parent part must point to the same template" msgstr "" -#: part/models.py:841 +#: part/models.py:929 msgid "Stock item with this serial number already exists" msgstr "" -#: part/models.py:971 +#: part/models.py:1059 msgid "Duplicate IPN not allowed in part settings" msgstr "" -#: part/models.py:983 +#: part/models.py:1071 msgid "Duplicate part revision already exists." msgstr "" -#: part/models.py:992 +#: part/models.py:1080 msgid "Part with this Name, IPN and Revision already exists." msgstr "" -#: part/models.py:1007 +#: part/models.py:1095 msgid "Parts cannot be assigned to structural part categories!" msgstr "" -#: part/models.py:1039 +#: part/models.py:1127 msgid "Part name" msgstr "" -#: part/models.py:1044 +#: part/models.py:1132 msgid "Is Template" msgstr "" -#: part/models.py:1045 +#: part/models.py:1133 msgid "Is this part a template part?" msgstr "" -#: part/models.py:1055 +#: part/models.py:1143 msgid "Is this part a variant of another part?" msgstr "" -#: part/models.py:1056 +#: part/models.py:1144 msgid "Variant Of" msgstr "" -#: part/models.py:1063 +#: part/models.py:1151 msgid "Part description (optional)" msgstr "" -#: part/models.py:1070 +#: part/models.py:1158 msgid "Keywords" msgstr "" -#: part/models.py:1071 +#: part/models.py:1159 msgid "Part keywords to improve visibility in search results" msgstr "" -#: part/models.py:1081 +#: part/models.py:1169 msgid "Part category" msgstr "" -#: part/models.py:1088 part/serializers.py:929 +#: part/models.py:1176 part/serializers.py:814 #: report/templates/report/inventree_stock_location_report.html:103 msgid "IPN" msgstr "" -#: part/models.py:1096 +#: part/models.py:1184 msgid "Part revision or version number" msgstr "" -#: part/models.py:1097 report/models.py:228 +#: part/models.py:1185 report/models.py:228 msgid "Revision" msgstr "" -#: part/models.py:1106 +#: part/models.py:1194 msgid "Is this part a revision of another part?" msgstr "" -#: part/models.py:1107 +#: part/models.py:1195 msgid "Revision Of" msgstr "" -#: part/models.py:1123 +#: part/models.py:1211 msgid "Where is this item normally stored?" msgstr "" -#: part/models.py:1169 +#: part/models.py:1257 msgid "Default Supplier" msgstr "" -#: part/models.py:1170 +#: part/models.py:1258 msgid "Default supplier part" msgstr "" -#: part/models.py:1177 +#: part/models.py:1265 msgid "Default Expiry" msgstr "" -#: part/models.py:1178 +#: part/models.py:1266 msgid "Expiry time (in days) for stock items of this part" msgstr "" -#: part/models.py:1186 part/serializers.py:1003 +#: part/models.py:1274 part/serializers.py:888 msgid "Minimum Stock" msgstr "" -#: part/models.py:1187 +#: part/models.py:1275 msgid "Minimum allowed stock level" msgstr "" -#: part/models.py:1196 +#: part/models.py:1284 msgid "Units of measure for this part" msgstr "" -#: part/models.py:1203 +#: part/models.py:1291 msgid "Can this part be built from other parts?" msgstr "" -#: part/models.py:1209 +#: part/models.py:1297 msgid "Can this part be used to build other parts?" msgstr "" -#: part/models.py:1215 +#: part/models.py:1303 msgid "Does this part have tracking for unique items?" msgstr "" -#: part/models.py:1221 +#: part/models.py:1309 msgid "Can this part have test results recorded against it?" msgstr "" -#: part/models.py:1227 +#: part/models.py:1315 msgid "Can this part be purchased from external suppliers?" msgstr "" -#: part/models.py:1233 +#: part/models.py:1321 msgid "Can this part be sold to customers?" msgstr "" -#: part/models.py:1237 +#: part/models.py:1325 msgid "Is this part active?" msgstr "" -#: part/models.py:1243 +#: part/models.py:1331 msgid "Locked parts cannot be edited" msgstr "" -#: part/models.py:1249 +#: part/models.py:1337 msgid "Is this a virtual part, such as a software product or license?" msgstr "" -#: part/models.py:1254 +#: part/models.py:1342 msgid "BOM Validated" msgstr "" -#: part/models.py:1255 +#: part/models.py:1343 msgid "Is the BOM for this part valid?" msgstr "" -#: part/models.py:1261 +#: part/models.py:1349 msgid "BOM checksum" msgstr "" -#: part/models.py:1262 +#: part/models.py:1350 msgid "Stored BOM checksum" msgstr "" -#: part/models.py:1270 +#: part/models.py:1358 msgid "BOM checked by" msgstr "" -#: part/models.py:1275 +#: part/models.py:1363 msgid "BOM checked date" msgstr "" -#: part/models.py:1291 +#: part/models.py:1379 msgid "Creation User" msgstr "" -#: part/models.py:1301 +#: part/models.py:1389 msgid "Owner responsible for this part" msgstr "" -#: part/models.py:2258 +#: part/models.py:2346 msgid "Sell multiple" msgstr "" -#: part/models.py:3286 +#: part/models.py:3350 msgid "Currency used to cache pricing calculations" msgstr "" -#: part/models.py:3302 +#: part/models.py:3366 msgid "Minimum BOM Cost" msgstr "" -#: part/models.py:3303 +#: part/models.py:3367 msgid "Minimum cost of component parts" msgstr "" -#: part/models.py:3309 +#: part/models.py:3373 msgid "Maximum BOM Cost" msgstr "" -#: part/models.py:3310 +#: part/models.py:3374 msgid "Maximum cost of component parts" msgstr "" -#: part/models.py:3316 +#: part/models.py:3380 msgid "Minimum Purchase Cost" msgstr "" -#: part/models.py:3317 +#: part/models.py:3381 msgid "Minimum historical purchase cost" msgstr "" -#: part/models.py:3323 +#: part/models.py:3387 msgid "Maximum Purchase Cost" msgstr "" -#: part/models.py:3324 +#: part/models.py:3388 msgid "Maximum historical purchase cost" msgstr "" -#: part/models.py:3330 +#: part/models.py:3394 msgid "Minimum Internal Price" msgstr "" -#: part/models.py:3331 +#: part/models.py:3395 msgid "Minimum cost based on internal price breaks" msgstr "" -#: part/models.py:3337 +#: part/models.py:3401 msgid "Maximum Internal Price" msgstr "" -#: part/models.py:3338 +#: part/models.py:3402 msgid "Maximum cost based on internal price breaks" msgstr "" -#: part/models.py:3344 +#: part/models.py:3408 msgid "Minimum Supplier Price" msgstr "" -#: part/models.py:3345 +#: part/models.py:3409 msgid "Minimum price of part from external suppliers" msgstr "" -#: part/models.py:3351 +#: part/models.py:3415 msgid "Maximum Supplier Price" msgstr "" -#: part/models.py:3352 +#: part/models.py:3416 msgid "Maximum price of part from external suppliers" msgstr "" -#: part/models.py:3358 +#: part/models.py:3422 msgid "Minimum Variant Cost" msgstr "" -#: part/models.py:3359 +#: part/models.py:3423 msgid "Calculated minimum cost of variant parts" msgstr "" -#: part/models.py:3365 +#: part/models.py:3429 msgid "Maximum Variant Cost" msgstr "" -#: part/models.py:3366 +#: part/models.py:3430 msgid "Calculated maximum cost of variant parts" msgstr "" -#: part/models.py:3372 part/models.py:3386 +#: part/models.py:3436 part/models.py:3450 msgid "Minimum Cost" msgstr "" -#: part/models.py:3373 +#: part/models.py:3437 msgid "Override minimum cost" msgstr "" -#: part/models.py:3379 part/models.py:3393 +#: part/models.py:3443 part/models.py:3457 msgid "Maximum Cost" msgstr "" -#: part/models.py:3380 +#: part/models.py:3444 msgid "Override maximum cost" msgstr "" -#: part/models.py:3387 +#: part/models.py:3451 msgid "Calculated overall minimum cost" msgstr "" -#: part/models.py:3394 +#: part/models.py:3458 msgid "Calculated overall maximum cost" msgstr "" -#: part/models.py:3400 +#: part/models.py:3464 msgid "Minimum Sale Price" msgstr "" -#: part/models.py:3401 +#: part/models.py:3465 msgid "Minimum sale price based on price breaks" msgstr "" -#: part/models.py:3407 +#: part/models.py:3471 msgid "Maximum Sale Price" msgstr "" -#: part/models.py:3408 +#: part/models.py:3472 msgid "Maximum sale price based on price breaks" msgstr "" -#: part/models.py:3414 +#: part/models.py:3478 msgid "Minimum Sale Cost" msgstr "" -#: part/models.py:3415 +#: part/models.py:3479 msgid "Minimum historical sale price" msgstr "" -#: part/models.py:3421 +#: part/models.py:3485 msgid "Maximum Sale Cost" msgstr "" -#: part/models.py:3422 +#: part/models.py:3486 msgid "Maximum historical sale price" msgstr "" -#: part/models.py:3440 +#: part/models.py:3504 msgid "Part for stocktake" msgstr "" -#: part/models.py:3445 +#: part/models.py:3509 msgid "Item Count" msgstr "" -#: part/models.py:3446 +#: part/models.py:3510 msgid "Number of individual stock entries at time of stocktake" msgstr "" -#: part/models.py:3454 +#: part/models.py:3518 msgid "Total available stock at time of stocktake" msgstr "" -#: part/models.py:3458 report/templates/report/inventree_test_report.html:106 +#: part/models.py:3522 report/templates/report/inventree_test_report.html:106 msgid "Date" msgstr "" -#: part/models.py:3459 +#: part/models.py:3523 msgid "Date stocktake was performed" msgstr "" -#: part/models.py:3466 +#: part/models.py:3530 msgid "Minimum Stock Cost" msgstr "" -#: part/models.py:3467 +#: part/models.py:3531 msgid "Estimated minimum cost of stock on hand" msgstr "" -#: part/models.py:3473 +#: part/models.py:3537 msgid "Maximum Stock Cost" msgstr "" -#: part/models.py:3474 +#: part/models.py:3538 msgid "Estimated maximum cost of stock on hand" msgstr "" -#: part/models.py:3484 +#: part/models.py:3548 msgid "Part Sale Price Break" msgstr "" -#: part/models.py:3596 +#: part/models.py:3660 msgid "Part Test Template" msgstr "" -#: part/models.py:3622 +#: part/models.py:3686 msgid "Invalid template name - must include at least one alphanumeric character" msgstr "" -#: part/models.py:3643 part/models.py:3816 -msgid "Choices must be unique" -msgstr "" - -#: part/models.py:3654 +#: part/models.py:3718 msgid "Test templates can only be created for testable parts" msgstr "" -#: part/models.py:3668 +#: part/models.py:3732 msgid "Test template with the same key already exists for part" msgstr "" -#: part/models.py:3685 +#: part/models.py:3749 msgid "Test Name" msgstr "" -#: part/models.py:3686 +#: part/models.py:3750 msgid "Enter a name for the test" msgstr "" -#: part/models.py:3692 +#: part/models.py:3756 msgid "Test Key" msgstr "" -#: part/models.py:3693 +#: part/models.py:3757 msgid "Simplified key for the test" msgstr "" -#: part/models.py:3700 +#: part/models.py:3764 msgid "Test Description" msgstr "" -#: part/models.py:3701 +#: part/models.py:3765 msgid "Enter description for this test" msgstr "" -#: part/models.py:3705 report/models.py:287 -msgid "Enabled" -msgstr "" - -#: part/models.py:3705 +#: part/models.py:3769 msgid "Is this test enabled?" msgstr "" -#: part/models.py:3710 +#: part/models.py:3774 msgid "Required" msgstr "" -#: part/models.py:3711 +#: part/models.py:3775 msgid "Is this test required to pass?" msgstr "" -#: part/models.py:3716 +#: part/models.py:3780 msgid "Requires Value" msgstr "" -#: part/models.py:3717 +#: part/models.py:3781 msgid "Does this test require a value when adding a test result?" msgstr "" -#: part/models.py:3722 +#: part/models.py:3786 msgid "Requires Attachment" msgstr "" -#: part/models.py:3724 +#: part/models.py:3788 msgid "Does this test require a file attachment when adding a test result?" msgstr "" -#: part/models.py:3730 part/models.py:3878 -msgid "Choices" -msgstr "" - -#: part/models.py:3731 +#: part/models.py:3795 msgid "Valid choices for this test (comma-separated)" msgstr "" -#: part/models.py:3764 -msgid "Part Parameter Template" -msgstr "" - -#: part/models.py:3791 -msgid "Checkbox parameters cannot have units" -msgstr "" - -#: part/models.py:3796 -msgid "Checkbox parameters cannot have choices" -msgstr "" - -#: part/models.py:3833 -msgid "Parameter template name must be unique" -msgstr "" - -#: part/models.py:3851 -msgid "Parameter Name" -msgstr "" - -#: part/models.py:3858 -msgid "Physical units for this parameter" -msgstr "" - -#: part/models.py:3866 -msgid "Parameter description" -msgstr "" - -#: part/models.py:3872 -msgid "Checkbox" -msgstr "" - -#: part/models.py:3873 -msgid "Is this parameter a checkbox?" -msgstr "" - -#: part/models.py:3879 -msgid "Valid choices for this parameter (comma-separated)" -msgstr "" - -#: part/models.py:3890 -msgid "Selection list for this parameter" -msgstr "" - -#: part/models.py:3932 -msgid "Part Parameter" -msgstr "" - -#: part/models.py:3958 -msgid "Parameter cannot be modified - part is locked" -msgstr "" - -#: part/models.py:3996 -msgid "Invalid choice for parameter value" -msgstr "" - -#: part/models.py:4047 -msgid "Parent Part" -msgstr "" - -#: part/models.py:4055 part/models.py:4170 part/models.py:4171 -msgid "Parameter Template" -msgstr "" - -#: part/models.py:4061 -msgid "Parameter Value" -msgstr "" - -#: part/models.py:4071 stock/serializers.py:718 -msgid "Optional note field" -msgstr "" - -#: part/models.py:4118 -msgid "Part Category Parameter Template" -msgstr "" - -#: part/models.py:4177 -msgid "Default Value" -msgstr "" - -#: part/models.py:4178 -msgid "Default Parameter Value" -msgstr "" - -#: part/models.py:4352 +#: part/models.py:3977 msgid "BOM item cannot be modified - assembly is locked" msgstr "" -#: part/models.py:4359 +#: part/models.py:3984 msgid "BOM item cannot be modified - variant assembly is locked" msgstr "" -#: part/models.py:4369 +#: part/models.py:3994 msgid "Select parent part" msgstr "" -#: part/models.py:4379 +#: part/models.py:4004 msgid "Sub part" msgstr "" -#: part/models.py:4380 +#: part/models.py:4005 msgid "Select part to be used in BOM" msgstr "" -#: part/models.py:4391 +#: part/models.py:4016 msgid "BOM quantity for this BOM item" msgstr "" -#: part/models.py:4397 +#: part/models.py:4022 msgid "This BOM item is optional" msgstr "" -#: part/models.py:4403 +#: part/models.py:4028 msgid "This BOM item is consumable (it is not tracked in build orders)" msgstr "" -#: part/models.py:4411 +#: part/models.py:4036 msgid "Setup Quantity" msgstr "" -#: part/models.py:4412 +#: part/models.py:4037 msgid "Extra required quantity for a build, to account for setup losses" msgstr "" -#: part/models.py:4420 +#: part/models.py:4045 msgid "Attrition" msgstr "" -#: part/models.py:4422 +#: part/models.py:4047 msgid "Estimated attrition for a build, expressed as a percentage (0-100)" msgstr "" -#: part/models.py:4433 +#: part/models.py:4058 msgid "Rounding Multiple" msgstr "" -#: part/models.py:4435 +#: part/models.py:4060 msgid "Round up required production quantity to nearest multiple of this value" msgstr "" -#: part/models.py:4443 +#: part/models.py:4068 msgid "BOM item reference" msgstr "" -#: part/models.py:4451 +#: part/models.py:4076 msgid "BOM item notes" msgstr "" -#: part/models.py:4457 +#: part/models.py:4082 msgid "Checksum" msgstr "" -#: part/models.py:4458 +#: part/models.py:4083 msgid "BOM line checksum" msgstr "" -#: part/models.py:4463 +#: part/models.py:4088 msgid "Validated" msgstr "" -#: part/models.py:4464 +#: part/models.py:4089 msgid "This BOM item has been validated" msgstr "" -#: part/models.py:4469 +#: part/models.py:4094 msgid "Gets inherited" msgstr "" -#: part/models.py:4470 +#: part/models.py:4095 msgid "This BOM item is inherited by BOMs for variant parts" msgstr "" -#: part/models.py:4476 +#: part/models.py:4101 msgid "Stock items for variant parts can be used for this BOM item" msgstr "" -#: part/models.py:4583 stock/models.py:925 +#: part/models.py:4208 stock/models.py:925 msgid "Quantity must be integer value for trackable parts" msgstr "" -#: part/models.py:4593 part/models.py:4595 +#: part/models.py:4218 part/models.py:4220 msgid "Sub part must be specified" msgstr "" -#: part/models.py:4746 +#: part/models.py:4371 msgid "BOM Item Substitute" msgstr "" -#: part/models.py:4767 +#: part/models.py:4392 msgid "Substitute part cannot be the same as the master part" msgstr "" -#: part/models.py:4780 +#: part/models.py:4405 msgid "Parent BOM item" msgstr "" -#: part/models.py:4788 +#: part/models.py:4413 msgid "Substitute part" msgstr "" -#: part/models.py:4804 +#: part/models.py:4429 msgid "Part 1" msgstr "" -#: part/models.py:4812 +#: part/models.py:4437 msgid "Part 2" msgstr "" -#: part/models.py:4813 +#: part/models.py:4438 msgid "Select Related Part" msgstr "" -#: part/models.py:4820 +#: part/models.py:4445 msgid "Note for this relationship" msgstr "" -#: part/models.py:4839 +#: part/models.py:4464 msgid "Part relationship cannot be created between a part and itself" msgstr "" -#: part/models.py:4844 +#: part/models.py:4469 msgid "Duplicate relationship already exists" msgstr "" -#: part/serializers.py:114 +#: part/serializers.py:113 msgid "Parent Category" msgstr "" -#: part/serializers.py:115 +#: part/serializers.py:114 msgid "Parent part category" msgstr "" -#: part/serializers.py:123 part/serializers.py:164 +#: part/serializers.py:122 part/serializers.py:163 msgid "Subcategories" msgstr "" -#: part/serializers.py:203 +#: part/serializers.py:202 msgid "Results" msgstr "" -#: part/serializers.py:204 +#: part/serializers.py:203 msgid "Number of results recorded against this template" msgstr "" -#: part/serializers.py:235 part/serializers.py:253 stock/serializers.py:643 +#: part/serializers.py:234 part/serializers.py:252 stock/serializers.py:643 msgid "Purchase currency of this stock item" msgstr "" -#: part/serializers.py:280 +#: part/serializers.py:279 msgid "File is not an image" msgstr "" -#: part/serializers.py:311 -msgid "Number of parts using this template" -msgstr "" - -#: part/serializers.py:471 +#: part/serializers.py:382 msgid "Original Part" msgstr "" -#: part/serializers.py:472 +#: part/serializers.py:383 msgid "Select original part to duplicate" msgstr "" -#: part/serializers.py:477 +#: part/serializers.py:388 msgid "Copy Image" msgstr "" -#: part/serializers.py:478 +#: part/serializers.py:389 msgid "Copy image from original part" msgstr "" -#: part/serializers.py:484 +#: part/serializers.py:395 msgid "Copy BOM" msgstr "" -#: part/serializers.py:485 +#: part/serializers.py:396 msgid "Copy bill of materials from original part" msgstr "" -#: part/serializers.py:491 +#: part/serializers.py:402 msgid "Copy Parameters" msgstr "" -#: part/serializers.py:492 +#: part/serializers.py:403 msgid "Copy parameter data from original part" msgstr "" -#: part/serializers.py:498 +#: part/serializers.py:409 msgid "Copy Notes" msgstr "" -#: part/serializers.py:499 +#: part/serializers.py:410 msgid "Copy notes from original part" msgstr "" -#: part/serializers.py:505 +#: part/serializers.py:416 msgid "Copy Tests" msgstr "" -#: part/serializers.py:506 +#: part/serializers.py:417 msgid "Copy test templates from original part" msgstr "" -#: part/serializers.py:524 +#: part/serializers.py:435 msgid "Initial Stock Quantity" msgstr "" -#: part/serializers.py:526 +#: part/serializers.py:437 msgid "Specify initial stock quantity for this Part. If quantity is zero, no stock is added." msgstr "" -#: part/serializers.py:533 +#: part/serializers.py:444 msgid "Initial Stock Location" msgstr "" -#: part/serializers.py:534 +#: part/serializers.py:445 msgid "Specify initial stock location for this Part" msgstr "" -#: part/serializers.py:551 +#: part/serializers.py:462 msgid "Select supplier (or leave blank to skip)" msgstr "" -#: part/serializers.py:567 +#: part/serializers.py:478 msgid "Select manufacturer (or leave blank to skip)" msgstr "" -#: part/serializers.py:577 +#: part/serializers.py:488 msgid "Manufacturer part number" msgstr "" -#: part/serializers.py:584 +#: part/serializers.py:495 msgid "Selected company is not a valid supplier" msgstr "" -#: part/serializers.py:593 +#: part/serializers.py:504 msgid "Selected company is not a valid manufacturer" msgstr "" -#: part/serializers.py:604 +#: part/serializers.py:515 msgid "Manufacturer part matching this MPN already exists" msgstr "" -#: part/serializers.py:611 +#: part/serializers.py:522 msgid "Supplier part matching this SKU already exists" msgstr "" -#: part/serializers.py:914 +#: part/serializers.py:799 msgid "Category Name" msgstr "" -#: part/serializers.py:943 +#: part/serializers.py:828 msgid "Building" msgstr "" -#: part/serializers.py:944 +#: part/serializers.py:829 msgid "Quantity of this part currently being in production" msgstr "" -#: part/serializers.py:951 +#: part/serializers.py:836 msgid "Outstanding quantity of this part scheduled to be built" msgstr "" -#: part/serializers.py:971 stock/serializers.py:1019 stock/serializers.py:1189 +#: part/serializers.py:856 stock/serializers.py:1019 stock/serializers.py:1189 #: users/ruleset.py:30 msgid "Stock Items" msgstr "" -#: part/serializers.py:975 +#: part/serializers.py:860 msgid "Revisions" msgstr "" -#: part/serializers.py:979 +#: part/serializers.py:864 msgid "Suppliers" msgstr "" -#: part/serializers.py:983 part/serializers.py:1297 +#: part/serializers.py:868 part/serializers.py:1162 #: templates/email/low_stock_notification.html:16 #: templates/email/part_event_notification.html:17 msgid "Total Stock" msgstr "" -#: part/serializers.py:991 +#: part/serializers.py:876 msgid "Unallocated Stock" msgstr "" -#: part/serializers.py:999 +#: part/serializers.py:884 msgid "Variant Stock" msgstr "" -#: part/serializers.py:1054 +#: part/serializers.py:943 msgid "Duplicate Part" msgstr "" -#: part/serializers.py:1055 +#: part/serializers.py:944 msgid "Copy initial data from another Part" msgstr "" -#: part/serializers.py:1061 +#: part/serializers.py:950 msgid "Initial Stock" msgstr "" -#: part/serializers.py:1062 +#: part/serializers.py:951 msgid "Create Part with initial stock quantity" msgstr "" -#: part/serializers.py:1068 +#: part/serializers.py:957 msgid "Supplier Information" msgstr "" -#: part/serializers.py:1069 +#: part/serializers.py:958 msgid "Add initial supplier information for this part" msgstr "" -#: part/serializers.py:1077 +#: part/serializers.py:966 msgid "Copy Category Parameters" msgstr "" -#: part/serializers.py:1078 +#: part/serializers.py:967 msgid "Copy parameter templates from selected part category" msgstr "" -#: part/serializers.py:1083 +#: part/serializers.py:972 msgid "Existing Image" msgstr "" -#: part/serializers.py:1084 +#: part/serializers.py:973 msgid "Filename of an existing part image" msgstr "" -#: part/serializers.py:1101 +#: part/serializers.py:990 msgid "Image file does not exist" msgstr "" -#: part/serializers.py:1269 +#: part/serializers.py:1134 msgid "Validate entire Bill of Materials" msgstr "" -#: part/serializers.py:1303 part/serializers.py:1769 +#: part/serializers.py:1168 part/serializers.py:1634 msgid "Can Build" msgstr "" -#: part/serializers.py:1320 +#: part/serializers.py:1185 msgid "Required for Build Orders" msgstr "" -#: part/serializers.py:1325 +#: part/serializers.py:1190 msgid "Allocated to Build Orders" msgstr "" -#: part/serializers.py:1332 +#: part/serializers.py:1197 msgid "Required for Sales Orders" msgstr "" -#: part/serializers.py:1336 +#: part/serializers.py:1201 msgid "Allocated to Sales Orders" msgstr "" -#: part/serializers.py:1475 +#: part/serializers.py:1340 msgid "Minimum Price" msgstr "" -#: part/serializers.py:1476 +#: part/serializers.py:1341 msgid "Override calculated value for minimum price" msgstr "" -#: part/serializers.py:1483 +#: part/serializers.py:1348 msgid "Minimum price currency" msgstr "" -#: part/serializers.py:1490 +#: part/serializers.py:1355 msgid "Maximum Price" msgstr "" -#: part/serializers.py:1491 +#: part/serializers.py:1356 msgid "Override calculated value for maximum price" msgstr "" -#: part/serializers.py:1498 +#: part/serializers.py:1363 msgid "Maximum price currency" msgstr "" -#: part/serializers.py:1527 +#: part/serializers.py:1392 msgid "Update" msgstr "" -#: part/serializers.py:1528 +#: part/serializers.py:1393 msgid "Update pricing for this part" msgstr "" -#: part/serializers.py:1551 +#: part/serializers.py:1416 #, python-brace-format msgid "Could not convert from provided currencies to {default_currency}" msgstr "" -#: part/serializers.py:1558 +#: part/serializers.py:1423 msgid "Minimum price must not be greater than maximum price" msgstr "" -#: part/serializers.py:1561 +#: part/serializers.py:1426 msgid "Maximum price must not be less than minimum price" msgstr "" -#: part/serializers.py:1715 +#: part/serializers.py:1580 msgid "Select the parent assembly" msgstr "" -#: part/serializers.py:1735 +#: part/serializers.py:1600 msgid "Select the component part" msgstr "" -#: part/serializers.py:1929 +#: part/serializers.py:1802 msgid "Select part to copy BOM from" msgstr "" -#: part/serializers.py:1937 +#: part/serializers.py:1810 msgid "Remove Existing Data" msgstr "" -#: part/serializers.py:1938 +#: part/serializers.py:1811 msgid "Remove existing BOM items before copying" msgstr "" -#: part/serializers.py:1943 +#: part/serializers.py:1816 msgid "Include Inherited" msgstr "" -#: part/serializers.py:1944 +#: part/serializers.py:1817 msgid "Include BOM items which are inherited from templated parts" msgstr "" -#: part/serializers.py:1949 +#: part/serializers.py:1822 msgid "Skip Invalid Rows" msgstr "" -#: part/serializers.py:1950 +#: part/serializers.py:1823 msgid "Enable this option to skip invalid rows" msgstr "" -#: part/serializers.py:1955 +#: part/serializers.py:1828 msgid "Copy Substitute Parts" msgstr "" -#: part/serializers.py:1956 +#: part/serializers.py:1829 msgid "Copy substitute parts when duplicate BOM items" msgstr "" @@ -6927,7 +6974,7 @@ msgstr "" #: plugin/builtin/events/auto_issue_orders.py:19 #: plugin/builtin/exporter/bom_exporter.py:73 #: plugin/builtin/exporter/inventree_exporter.py:17 -#: plugin/builtin/exporter/part_parameter_exporter.py:36 +#: plugin/builtin/exporter/parameter_exporter.py:32 #: plugin/builtin/exporter/stocktake_exporter.py:47 #: plugin/builtin/integration/core_notifications.py:25 #: plugin/builtin/integration/core_notifications.py:69 @@ -7041,23 +7088,19 @@ msgid "Include total quantity of each part in the BOM" msgstr "" #: plugin/builtin/exporter/bom_exporter.py:35 -#: plugin/builtin/exporter/part_parameter_exporter.py:17 msgid "Stock Data" msgstr "" #: plugin/builtin/exporter/bom_exporter.py:35 -#: plugin/builtin/exporter/part_parameter_exporter.py:17 msgid "Include part stock data" msgstr "" #: plugin/builtin/exporter/bom_exporter.py:39 -#: plugin/builtin/exporter/part_parameter_exporter.py:21 #: plugin/builtin/exporter/stocktake_exporter.py:20 msgid "Pricing Data" msgstr "" #: plugin/builtin/exporter/bom_exporter.py:39 -#: plugin/builtin/exporter/part_parameter_exporter.py:21 #: plugin/builtin/exporter/stocktake_exporter.py:20 msgid "Include part pricing data" msgstr "" @@ -7144,12 +7187,20 @@ msgstr "" msgid "Provides support for exporting data from InvenTree" msgstr "" -#: plugin/builtin/exporter/part_parameter_exporter.py:33 -msgid "Part Parameter Exporter" +#: plugin/builtin/exporter/parameter_exporter.py:16 +msgid "Exclude Inactive" msgstr "" -#: plugin/builtin/exporter/part_parameter_exporter.py:34 -msgid "Exporter for part parameter data" +#: plugin/builtin/exporter/parameter_exporter.py:17 +msgid "Exclude parameters which are inactive" +msgstr "" + +#: plugin/builtin/exporter/parameter_exporter.py:29 +msgid "Parameter Exporter" +msgstr "" + +#: plugin/builtin/exporter/parameter_exporter.py:30 +msgid "Exporter for model parameter data" msgstr "" #: plugin/builtin/exporter/stocktake_exporter.py:25 @@ -8079,19 +8130,19 @@ msgstr "" msgid "No result" msgstr "" -#: report/templatetags/report.py:167 +#: report/templatetags/report.py:169 msgid "Asset file does not exist" msgstr "" -#: report/templatetags/report.py:224 report/templatetags/report.py:300 +#: report/templatetags/report.py:226 report/templatetags/report.py:302 msgid "Image file not found" msgstr "" -#: report/templatetags/report.py:325 +#: report/templatetags/report.py:327 msgid "part_image tag requires a Part instance" msgstr "" -#: report/templatetags/report.py:362 +#: report/templatetags/report.py:383 msgid "company_image tag requires a Company instance" msgstr "" @@ -8455,115 +8506,119 @@ msgstr "" msgid "Quantity does not match serial numbers" msgstr "" -#: stock/models.py:2012 stock/models.py:2917 +#: stock/models.py:1912 +msgid "Cannot assign stock to structural location" +msgstr "" + +#: stock/models.py:2029 stock/models.py:2934 msgid "Test template does not exist" msgstr "" -#: stock/models.py:2030 +#: stock/models.py:2047 msgid "Stock item has been assigned to a sales order" msgstr "" -#: stock/models.py:2034 +#: stock/models.py:2051 msgid "Stock item is installed in another item" msgstr "" -#: stock/models.py:2037 +#: stock/models.py:2054 msgid "Stock item contains other items" msgstr "" -#: stock/models.py:2040 +#: stock/models.py:2057 msgid "Stock item has been assigned to a customer" msgstr "" -#: stock/models.py:2043 stock/models.py:2226 +#: stock/models.py:2060 stock/models.py:2243 msgid "Stock item is currently in production" msgstr "" -#: stock/models.py:2046 +#: stock/models.py:2063 msgid "Serialized stock cannot be merged" msgstr "" -#: stock/models.py:2053 stock/serializers.py:1462 +#: stock/models.py:2070 stock/serializers.py:1462 msgid "Duplicate stock items" msgstr "" -#: stock/models.py:2057 +#: stock/models.py:2074 msgid "Stock items must refer to the same part" msgstr "" -#: stock/models.py:2065 +#: stock/models.py:2082 msgid "Stock items must refer to the same supplier part" msgstr "" -#: stock/models.py:2070 +#: stock/models.py:2087 msgid "Stock status codes must match" msgstr "" -#: stock/models.py:2349 +#: stock/models.py:2366 msgid "StockItem cannot be moved as it is not in stock" msgstr "" -#: stock/models.py:2818 +#: stock/models.py:2835 msgid "Stock Item Tracking" msgstr "" -#: stock/models.py:2849 +#: stock/models.py:2866 msgid "Entry notes" msgstr "" -#: stock/models.py:2889 +#: stock/models.py:2906 msgid "Stock Item Test Result" msgstr "" -#: stock/models.py:2920 +#: stock/models.py:2937 msgid "Value must be provided for this test" msgstr "" -#: stock/models.py:2924 +#: stock/models.py:2941 msgid "Attachment must be uploaded for this test" msgstr "" -#: stock/models.py:2929 +#: stock/models.py:2946 msgid "Invalid value for this test" msgstr "" -#: stock/models.py:2953 +#: stock/models.py:2970 msgid "Test result" msgstr "" -#: stock/models.py:2960 +#: stock/models.py:2977 msgid "Test output value" msgstr "" -#: stock/models.py:2968 stock/serializers.py:248 +#: stock/models.py:2985 stock/serializers.py:248 msgid "Test result attachment" msgstr "" -#: stock/models.py:2972 +#: stock/models.py:2989 msgid "Test notes" msgstr "" -#: stock/models.py:2980 +#: stock/models.py:2997 msgid "Test station" msgstr "" -#: stock/models.py:2981 +#: stock/models.py:2998 msgid "The identifier of the test station where the test was performed" msgstr "" -#: stock/models.py:2987 +#: stock/models.py:3004 msgid "Started" msgstr "" -#: stock/models.py:2988 +#: stock/models.py:3005 msgid "The timestamp of the test start" msgstr "" -#: stock/models.py:2994 +#: stock/models.py:3011 msgid "Finished" msgstr "" -#: stock/models.py:2995 +#: stock/models.py:3012 msgid "The timestamp of the test finish" msgstr "" @@ -8677,8 +8732,8 @@ msgstr "" msgid "Quantity must not exceed available stock quantity ({q})" msgstr "" -#: stock/serializers.py:711 stock/serializers.py:1419 stock/serializers.py:1732 -#: stock/serializers.py:1781 +#: stock/serializers.py:711 stock/serializers.py:1419 stock/serializers.py:1740 +#: stock/serializers.py:1789 msgid "Destination stock location" msgstr "" @@ -8834,19 +8889,19 @@ msgstr "" msgid "Stock transaction notes" msgstr "" -#: stock/serializers.py:1787 +#: stock/serializers.py:1795 msgid "Merge into existing stock" msgstr "" -#: stock/serializers.py:1788 +#: stock/serializers.py:1796 msgid "Merge returned items into existing stock items if possible" msgstr "" -#: stock/serializers.py:1831 +#: stock/serializers.py:1839 msgid "Next Serial Number" msgstr "" -#: stock/serializers.py:1837 +#: stock/serializers.py:1845 msgid "Previous Serial Number" msgstr "" @@ -8902,83 +8957,87 @@ msgstr "" msgid "Stock manually removed" msgstr "" -#: stock/status_codes.py:57 +#: stock/status_codes.py:56 +msgid "Serialized stock items" +msgstr "" + +#: stock/status_codes.py:58 msgid "Returned to stock" msgstr "" -#: stock/status_codes.py:60 +#: stock/status_codes.py:61 msgid "Location changed" msgstr "" -#: stock/status_codes.py:61 +#: stock/status_codes.py:62 msgid "Stock updated" msgstr "" -#: stock/status_codes.py:64 +#: stock/status_codes.py:65 msgid "Installed into assembly" msgstr "" -#: stock/status_codes.py:65 +#: stock/status_codes.py:66 msgid "Removed from assembly" msgstr "" -#: stock/status_codes.py:67 +#: stock/status_codes.py:68 msgid "Installed component item" msgstr "" -#: stock/status_codes.py:68 +#: stock/status_codes.py:69 msgid "Removed component item" msgstr "" -#: stock/status_codes.py:71 +#: stock/status_codes.py:72 msgid "Split from parent item" msgstr "" -#: stock/status_codes.py:72 +#: stock/status_codes.py:73 msgid "Split child item" msgstr "" -#: stock/status_codes.py:75 +#: stock/status_codes.py:76 msgid "Merged stock items" msgstr "" -#: stock/status_codes.py:78 +#: stock/status_codes.py:79 msgid "Converted to variant" msgstr "" -#: stock/status_codes.py:81 +#: stock/status_codes.py:82 msgid "Build order output created" msgstr "" -#: stock/status_codes.py:82 +#: stock/status_codes.py:83 msgid "Build order output completed" msgstr "" -#: stock/status_codes.py:83 +#: stock/status_codes.py:84 msgid "Build order output rejected" msgstr "" -#: stock/status_codes.py:84 +#: stock/status_codes.py:85 msgid "Consumed by build order" msgstr "" -#: stock/status_codes.py:87 +#: stock/status_codes.py:88 msgid "Shipped against Sales Order" msgstr "" -#: stock/status_codes.py:90 +#: stock/status_codes.py:91 msgid "Received against Purchase Order" msgstr "" -#: stock/status_codes.py:93 +#: stock/status_codes.py:94 msgid "Returned against Return Order" msgstr "" -#: stock/status_codes.py:96 +#: stock/status_codes.py:97 msgid "Sent to customer" msgstr "" -#: stock/status_codes.py:97 +#: stock/status_codes.py:98 msgid "Returned from customer" msgstr "" @@ -9326,15 +9385,15 @@ msgstr "" #: users/serializers.py:187 msgid "Username" -msgstr "" +msgstr "Nume utilizator" #: users/serializers.py:190 msgid "First Name" -msgstr "" +msgstr "Prenumele" #: users/serializers.py:190 msgid "First name of the user" -msgstr "" +msgstr "Prenumele utilizatorului" #: users/serializers.py:194 msgid "Last Name" diff --git a/src/backend/InvenTree/locale/ru/LC_MESSAGES/django.po b/src/backend/InvenTree/locale/ru/LC_MESSAGES/django.po index 3506ea7ed6..5cbd8c8ad0 100644 --- a/src/backend/InvenTree/locale/ru/LC_MESSAGES/django.po +++ b/src/backend/InvenTree/locale/ru/LC_MESSAGES/django.po @@ -2,8 +2,8 @@ msgid "" msgstr "" "Project-Id-Version: inventree\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-11-19 04:55+0000\n" -"PO-Revision-Date: 2025-11-19 04:59\n" +"POT-Creation-Date: 2025-12-07 07:33+0000\n" +"PO-Revision-Date: 2025-12-07 07:36\n" "Last-Translator: \n" "Language-Team: Russian\n" "Language: ru_RU\n" @@ -23,19 +23,19 @@ msgstr "Конечная точка API не обнаружена" #: InvenTree/api.py:435 msgid "List of items or filters must be provided for bulk operation" -msgstr "" +msgstr "Список элементов или фильтров должен быть указан для массовых операций" #: InvenTree/api.py:442 msgid "Items must be provided as a list" -msgstr "" +msgstr "Элементы должны быть представлены в виде списка" #: InvenTree/api.py:450 msgid "Invalid items list provided" -msgstr "" +msgstr "Предоставлен недопустимый список элементов" #: InvenTree/api.py:456 msgid "Filters must be provided as a dict" -msgstr "" +msgstr "Фильтры должны быть предоставлены в виде словаря" #: InvenTree/api.py:463 msgid "Invalid filters provided" @@ -51,13 +51,13 @@ msgstr "Нет элементов, соответствующих заданны #: InvenTree/api.py:497 msgid "No data provided" -msgstr "" +msgstr "Данные не предоставлены" #: InvenTree/api.py:513 msgid "This field must be unique." -msgstr "" +msgstr "Поле должно быть уникальным." -#: InvenTree/api.py:775 +#: InvenTree/api.py:803 msgid "User does not have permission to view this model" msgstr "У пользователя недостаточно прав для просмотра этой модели!" @@ -81,22 +81,22 @@ msgstr "Указанный основной адрес электронной п msgid "The provided email domain is not approved." msgstr "Указанный домен электронной почты не утверждён." -#: InvenTree/conversion.py:166 +#: InvenTree/conversion.py:240 #, python-brace-format msgid "Invalid unit provided ({unit})" msgstr "Предоставлено недопустимое значение ({unit})" -#: InvenTree/conversion.py:183 +#: InvenTree/conversion.py:257 msgid "No value provided" msgstr "Значение не указано" -#: InvenTree/conversion.py:210 +#: InvenTree/conversion.py:284 #, python-brace-format msgid "Could not convert {original} to {unit}" msgstr "Невозможно преобразовать {original} в {unit}" -#: InvenTree/conversion.py:212 InvenTree/conversion.py:226 -#: InvenTree/helpers.py:597 order/models.py:720 order/models.py:1015 +#: InvenTree/conversion.py:286 InvenTree/conversion.py:300 +#: InvenTree/helpers.py:597 order/models.py:721 order/models.py:1016 msgid "Invalid quantity provided" msgstr "недопустимое количество" @@ -112,11 +112,11 @@ msgstr "Введите дату" msgid "Invalid decimal value" msgstr "Не верное десятичное значение" -#: InvenTree/fields.py:218 InvenTree/models.py:1067 build/serializers.py:509 -#: build/serializers.py:580 build/serializers.py:1788 company/models.py:857 -#: order/models.py:1780 +#: InvenTree/fields.py:218 InvenTree/models.py:1228 build/serializers.py:517 +#: build/serializers.py:588 build/serializers.py:1796 company/models.py:811 +#: order/models.py:1781 #: report/templates/report/inventree_build_order_report.html:172 -#: stock/models.py:2848 stock/models.py:2972 stock/serializers.py:717 +#: stock/models.py:2865 stock/models.py:2989 stock/serializers.py:717 #: stock/serializers.py:893 stock/serializers.py:1035 stock/serializers.py:1336 #: stock/serializers.py:1425 stock/serializers.py:1624 msgid "Notes" @@ -171,35 +171,35 @@ msgstr "Удалить HTML теги из этого значения" msgid "Data contains prohibited markdown content" msgstr "Данные содержат недопустимую разметку" -#: InvenTree/helpers_model.py:133 +#: InvenTree/helpers_model.py:134 msgid "Connection error" msgstr "Ошибка соединения" -#: InvenTree/helpers_model.py:138 InvenTree/helpers_model.py:145 +#: InvenTree/helpers_model.py:139 InvenTree/helpers_model.py:146 msgid "Server responded with invalid status code" msgstr "Сервер ответил неверным кодом статуса" -#: InvenTree/helpers_model.py:141 +#: InvenTree/helpers_model.py:142 msgid "Exception occurred" msgstr "Произошло исключение" -#: InvenTree/helpers_model.py:151 +#: InvenTree/helpers_model.py:152 msgid "Server responded with invalid Content-Length value" msgstr "Сервер ответил неверным значением Контент-Длина" -#: InvenTree/helpers_model.py:154 +#: InvenTree/helpers_model.py:155 msgid "Image size is too large" msgstr "Изображение слишком большое" -#: InvenTree/helpers_model.py:166 +#: InvenTree/helpers_model.py:167 msgid "Image download exceeded maximum size" msgstr "Загрузка изображения превышен максимальный размер" -#: InvenTree/helpers_model.py:171 +#: InvenTree/helpers_model.py:172 msgid "Remote server returned empty response" msgstr "Удаленный сервер вернул пустой ответ" -#: InvenTree/helpers_model.py:179 +#: InvenTree/helpers_model.py:180 msgid "Supplied URL is not a valid image file" msgstr "Предоставленный URL не является допустимым файлом изображения" @@ -207,7 +207,7 @@ msgstr "Предоставленный URL не является допусти msgid "Log in to the app" msgstr "Войти в приложение" -#: InvenTree/magic_login.py:41 company/models.py:172 users/serializers.py:198 +#: InvenTree/magic_login.py:41 company/models.py:173 users/serializers.py:198 msgid "Email" msgstr "Электронная почта" @@ -215,160 +215,176 @@ msgstr "Электронная почта" msgid "You must enable two-factor authentication before doing anything else." msgstr "Вы должны включить двухфакторную аутентификацию, прежде чем делать что-нибудь еще." -#: InvenTree/models.py:111 +#: InvenTree/models.py:114 msgid "Error running plugin validation" msgstr "Ошибка запуска проверки плагина" -#: InvenTree/models.py:192 +#: InvenTree/models.py:195 msgid "Metadata must be a python dict object" msgstr "Метаданные должны быть объектом python dict" -#: InvenTree/models.py:198 +#: InvenTree/models.py:201 msgid "Plugin Metadata" msgstr "Метаданные плагина" -#: InvenTree/models.py:199 +#: InvenTree/models.py:202 msgid "JSON metadata field, for use by external plugins" msgstr "Поле метаданных JSON для использования внешними плагинами" -#: InvenTree/models.py:382 +#: InvenTree/models.py:385 msgid "Improperly formatted pattern" msgstr "Неправильно отформатированный шаблон" -#: InvenTree/models.py:389 +#: InvenTree/models.py:392 msgid "Unknown format key specified" msgstr "Указан неизвестный ключ формата" -#: InvenTree/models.py:395 +#: InvenTree/models.py:398 msgid "Missing required format key" msgstr "Отсутствует требуемый ключ формата" -#: InvenTree/models.py:406 +#: InvenTree/models.py:409 msgid "Reference field cannot be empty" msgstr "Ссылочный идентификатор не может быть пустым" -#: InvenTree/models.py:414 +#: InvenTree/models.py:417 msgid "Reference must match required pattern" msgstr "Ссылка должна соответствовать шаблону {pattern}" -#: InvenTree/models.py:445 +#: InvenTree/models.py:448 msgid "Reference number is too large" msgstr "Номер ссылки слишком большой" -#: InvenTree/models.py:743 +#: InvenTree/models.py:896 msgid "Invalid choice" msgstr "Неверный выбор" -#: InvenTree/models.py:856 common/models.py:1410 common/models.py:1837 -#: common/models.py:2096 common/models.py:2221 common/serializers.py:535 -#: company/models.py:615 generic/states/serializers.py:20 machine/models.py:25 -#: part/models.py:1039 part/models.py:3850 plugin/models.py:54 +#: InvenTree/models.py:1017 common/models.py:1414 common/models.py:1841 +#: common/models.py:2102 common/models.py:2227 common/models.py:2494 +#: common/serializers.py:539 generic/states/serializers.py:20 +#: machine/models.py:25 part/models.py:1127 plugin/models.py:54 #: report/models.py:216 stock/models.py:84 msgid "Name" msgstr "Название" -#: InvenTree/models.py:862 build/models.py:252 common/models.py:171 -#: common/models.py:2228 common/models.py:2341 company/models.py:543 -#: company/models.py:848 order/models.py:442 order/models.py:1825 -#: part/models.py:1062 part/models.py:3865 report/models.py:222 +#: InvenTree/models.py:1023 build/models.py:253 common/models.py:175 +#: common/models.py:2234 common/models.py:2347 common/models.py:2509 +#: company/models.py:545 company/models.py:802 order/models.py:443 +#: order/models.py:1826 part/models.py:1150 report/models.py:222 #: report/models.py:815 report/models.py:841 #: report/templates/report/inventree_build_order_report.html:117 #: stock/models.py:90 msgid "Description" msgstr "Описание" -#: InvenTree/models.py:863 stock/models.py:91 +#: InvenTree/models.py:1024 stock/models.py:91 msgid "Description (optional)" msgstr "Описание (необязательно)" -#: InvenTree/models.py:878 common/models.py:2394 +#: InvenTree/models.py:1039 common/models.py:2815 msgid "Path" msgstr "Путь" -#: InvenTree/models.py:983 +#: InvenTree/models.py:1144 msgid "Duplicate names cannot exist under the same parent" msgstr "Повторяющиеся имена не могут существовать под одним и тем же родителем" -#: InvenTree/models.py:1067 +#: InvenTree/models.py:1228 msgid "Markdown notes (optional)" msgstr "Записи о скидке (необязательно)" -#: InvenTree/models.py:1098 +#: InvenTree/models.py:1259 msgid "Barcode Data" msgstr "Данные штрихкода" -#: InvenTree/models.py:1099 +#: InvenTree/models.py:1260 msgid "Third party barcode data" msgstr "Данные стороннего штрих-кода" -#: InvenTree/models.py:1105 +#: InvenTree/models.py:1266 msgid "Barcode Hash" msgstr "Хэш штрих-кода" -#: InvenTree/models.py:1106 +#: InvenTree/models.py:1267 msgid "Unique hash of barcode data" msgstr "Уникальный хэш данных штрих-кода" -#: InvenTree/models.py:1187 +#: InvenTree/models.py:1348 msgid "Existing barcode found" msgstr "Обнаружен существующий штрих-код" -#: InvenTree/models.py:1269 +#: InvenTree/models.py:1430 msgid "Task Failure" msgstr "Задача не удалась" -#: InvenTree/models.py:1270 +#: InvenTree/models.py:1431 #, python-brace-format msgid "Background worker task '{f}' failed after {n} attempts" msgstr "Фоновый процесс '{f}' после {n} попыток завершился с ошибкой" -#: InvenTree/models.py:1297 +#: InvenTree/models.py:1458 msgid "Server Error" msgstr "Ошибка сервера" -#: InvenTree/models.py:1298 +#: InvenTree/models.py:1459 msgid "An error has been logged by the server." msgstr "Сервер зарегистрировал ошибку." -#: InvenTree/models.py:1340 common/models.py:1748 +#: InvenTree/models.py:1501 common/models.py:1752 #: report/templates/report/inventree_bill_of_materials_report.html:126 #: report/templates/report/inventree_bill_of_materials_report.html:148 #: report/templates/report/inventree_return_order_report.html:35 msgid "Image" msgstr "Изображение" -#: InvenTree/serializers.py:253 part/models.py:4571 +#: InvenTree/serializers.py:255 part/models.py:4196 msgid "Must be a valid number" msgstr "Должно быть действительным номером" -#: InvenTree/serializers.py:295 company/models.py:214 part/models.py:3285 +#: InvenTree/serializers.py:297 company/models.py:215 part/models.py:3349 msgid "Currency" msgstr "Валюта" -#: InvenTree/serializers.py:298 part/serializers.py:1385 +#: InvenTree/serializers.py:300 part/serializers.py:1250 msgid "Select currency from available options" msgstr "Выберите валюту из доступных вариантов" -#: InvenTree/serializers.py:653 +#: InvenTree/serializers.py:654 +msgid "This field may not be null." +msgstr "" + +#: InvenTree/serializers.py:660 msgid "Invalid value" msgstr "Неверное значение" -#: InvenTree/serializers.py:690 +#: InvenTree/serializers.py:697 msgid "Remote Image" msgstr "Удаленное изображение" -#: InvenTree/serializers.py:691 +#: InvenTree/serializers.py:698 msgid "URL of remote image file" msgstr "ССЫЛКА файла изображения на удаленном сервере" -#: InvenTree/serializers.py:709 +#: InvenTree/serializers.py:716 msgid "Downloading images from remote URL is not enabled" msgstr "Загрузка изображений с удаленного URL-адреса не включена" -#: InvenTree/serializers.py:716 +#: InvenTree/serializers.py:723 msgid "Failed to download image from remote URL" msgstr "Не удалось загрузить изображение из URL адреса" +#: InvenTree/serializers.py:806 +msgid "Invalid content type format" +msgstr "" + +#: InvenTree/serializers.py:809 +msgid "Content type not found" +msgstr "" + +#: InvenTree/serializers.py:815 +msgid "Content type does not match required mixin class" +msgstr "" + #: InvenTree/setting/locales.py:20 msgid "Arabic" msgstr "Арабский" @@ -447,7 +463,7 @@ msgstr "Корейский" #: InvenTree/setting/locales.py:39 msgid "Lithuanian" -msgstr "" +msgstr "Литовский" #: InvenTree/setting/locales.py:40 msgid "Latvian" @@ -523,11 +539,11 @@ msgstr "Китайский (Традиционный)" #: InvenTree/tasks.py:576 msgid "Update Available" -msgstr "" +msgstr "Доступно обновление" #: InvenTree/tasks.py:577 msgid "An update for InvenTree is available" -msgstr "" +msgstr "Доступно обновление для InvenTree" #: InvenTree/validators.py:28 msgid "Invalid physical unit" @@ -537,30 +553,30 @@ msgstr "Неверная физическая единица" msgid "Not a valid currency code" msgstr "Неверный код валюты" -#: build/api.py:54 order/api.py:111 order/api.py:270 order/api.py:1373 -#: order/serializers.py:132 +#: build/api.py:54 order/api.py:116 order/api.py:275 order/api.py:1378 +#: order/serializers.py:133 msgid "Order Status" msgstr "Статус заказа" -#: build/api.py:80 build/models.py:264 +#: build/api.py:80 build/models.py:265 msgid "Parent Build" msgstr "Родительский заказ на производство" -#: build/api.py:84 build/api.py:831 order/api.py:547 order/api.py:770 -#: order/api.py:1174 order/api.py:1449 stock/api.py:573 +#: build/api.py:84 build/api.py:837 order/api.py:553 order/api.py:776 +#: order/api.py:1179 order/api.py:1454 stock/api.py:573 msgid "Include Variants" -msgstr "" +msgstr "Включая варианты" -#: build/api.py:100 build/api.py:466 build/api.py:845 build/models.py:270 -#: build/serializers.py:1225 build/serializers.py:1356 -#: build/serializers.py:1427 company/models.py:1067 company/serializers.py:445 -#: order/api.py:298 order/api.py:302 order/api.py:929 order/api.py:1187 -#: order/api.py:1190 order/models.py:1941 order/models.py:2108 -#: order/models.py:2109 part/api.py:1233 part/api.py:1236 part/api.py:1302 -#: part/api.py:1589 part/models.py:472 part/models.py:3296 part/models.py:3439 -#: part/models.py:3497 part/models.py:3518 part/models.py:3540 -#: part/models.py:3679 part/models.py:4046 part/models.py:4368 -#: part/models.py:4787 part/serializers.py:1928 +#: build/api.py:100 build/api.py:472 build/api.py:851 build/models.py:271 +#: build/serializers.py:1233 build/serializers.py:1364 +#: build/serializers.py:1435 company/models.py:1021 company/serializers.py:490 +#: order/api.py:303 order/api.py:307 order/api.py:934 order/api.py:1192 +#: order/api.py:1195 order/models.py:1942 order/models.py:2109 +#: order/models.py:2110 part/api.py:1160 part/api.py:1163 part/api.py:1314 +#: part/models.py:550 part/models.py:3360 part/models.py:3503 +#: part/models.py:3561 part/models.py:3582 part/models.py:3604 +#: part/models.py:3743 part/models.py:3993 part/models.py:4412 +#: part/serializers.py:1801 #: report/templates/report/inventree_bill_of_materials_report.html:110 #: report/templates/report/inventree_bill_of_materials_report.html:137 #: report/templates/report/inventree_build_order_report.html:109 @@ -580,192 +596,192 @@ msgstr "" msgid "Part" msgstr "Деталь" -#: build/api.py:120 build/api.py:123 build/serializers.py:1438 part/api.py:980 -#: part/api.py:1316 part/api.py:1600 part/models.py:1080 part/models.py:3568 -#: part/models.py:4162 part/serializers.py:1752 stock/api.py:869 +#: build/api.py:120 build/api.py:123 build/serializers.py:1446 part/api.py:975 +#: part/api.py:1325 part/models.py:435 part/models.py:1168 part/models.py:3632 +#: part/serializers.py:1617 stock/api.py:869 msgid "Category" msgstr "Категория" #: build/api.py:131 build/api.py:135 msgid "Ancestor Build" -msgstr "" +msgstr "Родительская сборка" -#: build/api.py:152 order/api.py:129 +#: build/api.py:152 order/api.py:134 msgid "Assigned to me" msgstr "Назначено мне" #: build/api.py:167 msgid "Assigned To" -msgstr "" +msgstr "Назначено" #: build/api.py:202 msgid "Created before" -msgstr "" +msgstr "Создано до" #: build/api.py:206 msgid "Created after" -msgstr "" +msgstr "Создано после" #: build/api.py:210 msgid "Has start date" -msgstr "" +msgstr "Есть дата начала" #: build/api.py:218 msgid "Start date before" -msgstr "" +msgstr "Дата начала до" #: build/api.py:222 msgid "Start date after" -msgstr "" +msgstr "Дата начала после" #: build/api.py:226 msgid "Has target date" -msgstr "" +msgstr "Есть целевая дата" #: build/api.py:234 msgid "Target date before" -msgstr "" +msgstr "Целевая дата до" #: build/api.py:238 msgid "Target date after" -msgstr "" +msgstr "Целевая дата после" #: build/api.py:242 msgid "Completed before" -msgstr "" +msgstr "Завершено до" #: build/api.py:246 msgid "Completed after" -msgstr "" +msgstr "Завершено после" -#: build/api.py:249 order/api.py:226 +#: build/api.py:249 order/api.py:231 msgid "Min Date" -msgstr "" +msgstr "Минимальная дата" -#: build/api.py:272 order/api.py:245 +#: build/api.py:272 order/api.py:250 msgid "Max Date" -msgstr "" +msgstr "Максимальная дата" -#: build/api.py:297 build/api.py:300 part/api.py:217 stock/api.py:961 +#: build/api.py:297 build/api.py:300 part/api.py:212 stock/api.py:961 msgid "Exclude Tree" -msgstr "" +msgstr "Исключить дерево" -#: build/api.py:405 +#: build/api.py:411 msgid "Build must be cancelled before it can be deleted" msgstr "Заказ на производство должен быть отменен перед удалением" -#: build/api.py:449 build/serializers.py:1374 part/models.py:4402 +#: build/api.py:455 build/serializers.py:1382 part/models.py:4027 msgid "Consumable" msgstr "Расходник" -#: build/api.py:452 build/serializers.py:1377 part/models.py:4396 +#: build/api.py:458 build/serializers.py:1385 part/models.py:4021 msgid "Optional" msgstr "Необязательно" -#: build/api.py:455 build/serializers.py:1415 common/setting/system.py:456 -#: part/models.py:1202 part/serializers.py:1714 part/serializers.py:1725 +#: build/api.py:461 build/serializers.py:1423 common/setting/system.py:456 +#: part/models.py:1290 part/serializers.py:1579 part/serializers.py:1590 #: stock/api.py:639 msgid "Assembly" msgstr "Сборная деталь" -#: build/api.py:458 +#: build/api.py:464 msgid "Tracked" msgstr "Отслеживается" -#: build/api.py:461 build/serializers.py:1380 part/models.py:1220 +#: build/api.py:467 build/serializers.py:1388 part/models.py:1308 msgid "Testable" msgstr "Тестируемая" -#: build/api.py:471 order/api.py:993 order/api.py:1363 +#: build/api.py:477 order/api.py:998 order/api.py:1368 msgid "Order Outstanding" -msgstr "" +msgstr "Невыполненные заказы" -#: build/api.py:481 build/serializers.py:1464 order/api.py:952 +#: build/api.py:487 build/serializers.py:1472 order/api.py:957 msgid "Allocated" msgstr "Зарезервировано" -#: build/api.py:490 build/models.py:1672 build/serializers.py:1393 +#: build/api.py:496 build/models.py:1673 build/serializers.py:1401 msgid "Consumed" -msgstr "" +msgstr "Потреблено" -#: build/api.py:499 company/models.py:912 company/serializers.py:440 +#: build/api.py:505 company/models.py:866 company/serializers.py:467 #: templates/email/build_order_required_stock.html:19 #: templates/email/low_stock_notification.html:17 #: templates/email/part_event_notification.html:18 msgid "Available" msgstr "Доступно" -#: build/api.py:523 build/serializers.py:1466 company/serializers.py:437 -#: order/serializers.py:1281 part/serializers.py:959 part/serializers.py:1306 -#: part/serializers.py:1761 +#: build/api.py:529 build/serializers.py:1474 company/serializers.py:464 +#: order/serializers.py:1295 part/serializers.py:844 part/serializers.py:1171 +#: part/serializers.py:1626 msgid "On Order" msgstr "В заказе" -#: build/api.py:868 build/models.py:117 order/models.py:1974 +#: build/api.py:874 build/models.py:118 order/models.py:1975 #: report/templates/report/inventree_build_order_report.html:105 #: stock/serializers.py:93 templates/email/build_order_completed.html:16 #: templates/email/overdue_build_order.html:15 msgid "Build Order" msgstr "Заказ на производство" -#: build/api.py:882 build/api.py:886 build/serializers.py:372 -#: build/serializers.py:497 build/serializers.py:567 build/serializers.py:1251 -#: build/serializers.py:1256 order/api.py:1234 order/api.py:1239 -#: order/serializers.py:833 order/serializers.py:973 order/serializers.py:2042 +#: build/api.py:888 build/api.py:892 build/serializers.py:380 +#: build/serializers.py:505 build/serializers.py:575 build/serializers.py:1259 +#: build/serializers.py:1264 order/api.py:1239 order/api.py:1244 +#: order/serializers.py:844 order/serializers.py:984 order/serializers.py:2059 #: stock/api.py:987 stock/serializers.py:111 stock/serializers.py:601 #: stock/serializers.py:710 stock/serializers.py:888 stock/serializers.py:1418 -#: stock/serializers.py:1731 stock/serializers.py:1780 +#: stock/serializers.py:1739 stock/serializers.py:1788 #: templates/email/stale_stock_notification.html:18 users/models.py:549 msgid "Location" msgstr "Расположение" -#: build/api.py:894 +#: build/api.py:900 msgid "Output" -msgstr "" +msgstr "Выход" -#: build/api.py:896 +#: build/api.py:902 msgid "Filter by output stock item ID. Use 'null' to find uninstalled build items." -msgstr "" +msgstr "Фильтрация по идентификатору исходящей складской позиции. Используйте 'null', чтобы найти несмонтированные элементы сборки." -#: build/models.py:118 users/ruleset.py:31 +#: build/models.py:119 users/ruleset.py:31 msgid "Build Orders" msgstr "Заказы на производство" -#: build/models.py:168 +#: build/models.py:169 msgid "Assembly BOM has not been validated" msgstr "Сборка BOM не подтверждена" -#: build/models.py:175 +#: build/models.py:176 msgid "Build order cannot be created for an inactive part" msgstr "Порядок сборки не может быть создан для неактивной части" -#: build/models.py:182 +#: build/models.py:183 msgid "Build order cannot be created for an unlocked part" msgstr "Порядок сборки не может быть создан для разблокированной части" -#: build/models.py:200 +#: build/models.py:201 msgid "Build orders can only be externally fulfilled for purchaseable parts" msgstr "Заказ на сборку может быть помечен сторонним только для покупных деталей" -#: build/models.py:207 order/models.py:369 +#: build/models.py:208 order/models.py:370 msgid "Responsible user or group must be specified" msgstr "Должен быть указан ответственный пользователь или группа" -#: build/models.py:212 +#: build/models.py:213 msgid "Build order part cannot be changed" msgstr "Деталь заказа на производства не может быть изменена" -#: build/models.py:217 order/models.py:382 +#: build/models.py:218 order/models.py:383 msgid "Target date must be after start date" -msgstr "" +msgstr "Целевая дата должна быть после даты начала" -#: build/models.py:245 +#: build/models.py:246 msgid "Build Order Reference" msgstr "Ссылка на заказ на производство" -#: build/models.py:246 build/serializers.py:1371 order/models.py:614 -#: order/models.py:1311 order/models.py:1773 order/models.py:2712 -#: part/models.py:4442 +#: build/models.py:247 build/serializers.py:1379 order/models.py:615 +#: order/models.py:1312 order/models.py:1774 order/models.py:2713 +#: part/models.py:4067 #: report/templates/report/inventree_bill_of_materials_report.html:139 #: report/templates/report/inventree_purchase_order_report.html:35 #: report/templates/report/inventree_return_order_report.html:26 @@ -773,230 +789,230 @@ msgstr "Ссылка на заказ на производство" msgid "Reference" msgstr "Номер" -#: build/models.py:255 +#: build/models.py:256 msgid "Brief description of the build (optional)" msgstr "Краткое описание заказа на производство (необязательно)" -#: build/models.py:265 +#: build/models.py:266 msgid "BuildOrder to which this build is allocated" msgstr "Заказ на производство, которому принадлежит этот заказ на производство" -#: build/models.py:274 +#: build/models.py:275 msgid "Select part to build" msgstr "Выберите деталь для производства" -#: build/models.py:279 +#: build/models.py:280 msgid "Sales Order Reference" msgstr "Ссылка на заказ" -#: build/models.py:284 +#: build/models.py:285 msgid "SalesOrder to which this build is allocated" msgstr "Заказ на продажу, которому принадлежит этот заказ на производство" -#: build/models.py:289 build/serializers.py:1097 +#: build/models.py:290 build/serializers.py:1105 msgid "Source Location" msgstr "Место хранения комплектующих" -#: build/models.py:295 +#: build/models.py:296 msgid "Select location to take stock from for this build (leave blank to take from any stock location)" msgstr "Выберите место хранения для этого заказа на производство (оставьте пустым, чтобы взять с любого места на складе)" -#: build/models.py:301 +#: build/models.py:302 msgid "External Build" msgstr "Сторонняя сборка" -#: build/models.py:302 +#: build/models.py:303 msgid "This build order is fulfilled externally" msgstr "Этот заказ на сборку выполнен сторонней компанией" -#: build/models.py:307 +#: build/models.py:308 msgid "Destination Location" msgstr "Место хранения результата" -#: build/models.py:312 +#: build/models.py:313 msgid "Select location where the completed items will be stored" msgstr "Выберите место хранения завершенных элементов" -#: build/models.py:316 +#: build/models.py:317 msgid "Build Quantity" msgstr "Количество производимых деталей" -#: build/models.py:319 +#: build/models.py:320 msgid "Number of stock items to build" msgstr "Количество складских позиций для производства" -#: build/models.py:323 +#: build/models.py:324 msgid "Completed items" msgstr "Произведенные детали" -#: build/models.py:325 +#: build/models.py:326 msgid "Number of stock items which have been completed" msgstr "Количество складских позиций, которые были произведены" -#: build/models.py:329 +#: build/models.py:330 msgid "Build Status" msgstr "Статус заказа на производство" -#: build/models.py:334 +#: build/models.py:335 msgid "Build status code" msgstr "Код статуса заказа на производство" -#: build/models.py:343 build/serializers.py:359 order/serializers.py:849 +#: build/models.py:344 build/serializers.py:367 order/serializers.py:860 #: stock/models.py:1100 stock/serializers.py:85 stock/serializers.py:1591 msgid "Batch Code" msgstr "Код партии" -#: build/models.py:347 build/serializers.py:360 +#: build/models.py:348 build/serializers.py:368 msgid "Batch code for this build output" msgstr "Код партии для продукции" -#: build/models.py:351 order/models.py:479 order/serializers.py:186 -#: part/models.py:1283 +#: build/models.py:352 order/models.py:480 order/serializers.py:193 +#: part/models.py:1371 msgid "Creation Date" msgstr "Дата создания" -#: build/models.py:357 +#: build/models.py:358 msgid "Build start date" msgstr "Дата начала сборки" -#: build/models.py:358 +#: build/models.py:359 msgid "Scheduled start date for this build order" msgstr "Запланированная начальная дата этого заказа на сборку" -#: build/models.py:364 +#: build/models.py:365 msgid "Target completion date" msgstr "Целевая дата завершения" -#: build/models.py:366 +#: build/models.py:367 msgid "Target date for build completion. Build will be overdue after this date." msgstr "Целевая дата для заказа на производства. Заказ будет просрочен после этой даты." -#: build/models.py:371 order/models.py:667 order/models.py:2751 +#: build/models.py:372 order/models.py:668 order/models.py:2752 msgid "Completion Date" msgstr "Дата завершения" -#: build/models.py:379 +#: build/models.py:380 msgid "completed by" msgstr "выполнено" -#: build/models.py:388 +#: build/models.py:389 msgid "Issued by" msgstr "Создано" -#: build/models.py:389 +#: build/models.py:390 msgid "User who issued this build order" msgstr "Пользователь, создавший этот заказ на производство" -#: build/models.py:398 common/models.py:180 order/api.py:179 -#: order/models.py:504 part/models.py:1300 +#: build/models.py:399 common/models.py:184 order/api.py:184 +#: order/models.py:505 part/models.py:1388 #: report/templates/report/inventree_build_order_report.html:158 msgid "Responsible" msgstr "Ответственный" -#: build/models.py:399 +#: build/models.py:400 msgid "User or group responsible for this build order" msgstr "Пользователь, ответственный за этот заказ на производство" -#: build/models.py:404 stock/models.py:1093 +#: build/models.py:405 stock/models.py:1093 msgid "External Link" msgstr "Внешняя ссылка" -#: build/models.py:406 common/models.py:1984 part/models.py:1114 +#: build/models.py:407 common/models.py:1990 part/models.py:1202 #: stock/models.py:1095 msgid "Link to external URL" msgstr "Ссылка на внешний URL" -#: build/models.py:411 +#: build/models.py:412 msgid "Build Priority" msgstr "Приоритет производства" -#: build/models.py:414 +#: build/models.py:415 msgid "Priority of this build order" msgstr "Приоритет этого заказа на производство" -#: build/models.py:422 common/models.py:150 common/models.py:164 -#: order/api.py:165 order/models.py:451 order/models.py:1805 +#: build/models.py:423 common/models.py:154 common/models.py:168 +#: order/api.py:170 order/models.py:452 order/models.py:1806 msgid "Project Code" msgstr "Код проекта" -#: build/models.py:423 +#: build/models.py:424 msgid "Project code for this build order" msgstr "Код проекта для этого заказа на производство" -#: build/models.py:676 +#: build/models.py:677 msgid "Cannot complete build order with open child builds" -msgstr "" +msgstr "Невозможно завершить заказ на сборку при наличии открытых дочерних сборок" -#: build/models.py:681 +#: build/models.py:682 msgid "Cannot complete build order with incomplete outputs" -msgstr "" +msgstr "Невозможно завершить заказ на сборку при незавершенных выходах" -#: build/models.py:700 build/models.py:830 +#: build/models.py:701 build/models.py:831 msgid "Failed to offload task to complete build allocations" msgstr "Не удалось выгрузить задачу для распределения на сборку" -#: build/models.py:723 +#: build/models.py:724 #, python-brace-format msgid "Build order {build} has been completed" msgstr "Заказ на производство {build} был завершен" -#: build/models.py:729 +#: build/models.py:730 msgid "A build order has been completed" msgstr "Заказ на производство был завершен" -#: build/models.py:911 build/serializers.py:407 +#: build/models.py:912 build/serializers.py:415 msgid "Serial numbers must be provided for trackable parts" msgstr "Для отслеживаемых деталей должны быть указаны серийные номера" -#: build/models.py:1042 build/models.py:1129 +#: build/models.py:1043 build/models.py:1130 msgid "No build output specified" msgstr "Продукция не указана" -#: build/models.py:1045 +#: build/models.py:1046 msgid "Build output is already completed" msgstr "Продукция уже произведена" -#: build/models.py:1048 +#: build/models.py:1049 msgid "Build output does not match Build Order" msgstr "Продукция не совпадает с заказом на производство" -#: build/models.py:1136 build/models.py:1234 build/serializers.py:285 -#: build/serializers.py:335 build/serializers.py:965 build/serializers.py:1739 -#: order/models.py:717 order/serializers.py:658 order/serializers.py:844 -#: part/serializers.py:1708 stock/models.py:940 stock/models.py:1430 +#: build/models.py:1137 build/models.py:1235 build/serializers.py:293 +#: build/serializers.py:343 build/serializers.py:973 build/serializers.py:1747 +#: order/models.py:718 order/serializers.py:669 order/serializers.py:855 +#: part/serializers.py:1573 stock/models.py:940 stock/models.py:1430 #: stock/models.py:1878 stock/serializers.py:688 stock/serializers.py:1580 msgid "Quantity must be greater than zero" msgstr "Количество должно быть больше нуля" -#: build/models.py:1140 build/models.py:1239 build/serializers.py:290 +#: build/models.py:1141 build/models.py:1240 build/serializers.py:298 msgid "Quantity cannot be greater than the output quantity" msgstr "Количество не может быть больше количества продукции" -#: build/models.py:1214 build/serializers.py:606 +#: build/models.py:1215 build/serializers.py:614 msgid "Build output has not passed all required tests" -msgstr "" +msgstr "Выход сборки не прошёл все необходимые тесты" -#: build/models.py:1217 build/serializers.py:601 +#: build/models.py:1218 build/serializers.py:609 #, python-brace-format msgid "Build output {serial} has not passed all required tests" msgstr "Сборка {serial} не прошла все необходимые тесты" -#: build/models.py:1229 +#: build/models.py:1230 msgid "Cannot partially complete a build output with allocated items" -msgstr "" +msgstr "Невозможно частично завершить выход сборки с распределёнными элементами" -#: build/models.py:1627 +#: build/models.py:1628 msgid "Build Order Line Item" msgstr "Номер позиции для производства" -#: build/models.py:1651 +#: build/models.py:1652 msgid "Build object" msgstr "Объект производства" -#: build/models.py:1663 build/models.py:1974 build/serializers.py:271 -#: build/serializers.py:320 build/serializers.py:1392 common/models.py:1340 -#: order/models.py:1756 order/models.py:2597 order/serializers.py:1696 -#: order/serializers.py:2124 part/models.py:3453 part/models.py:4390 +#: build/models.py:1664 build/models.py:1975 build/serializers.py:279 +#: build/serializers.py:328 build/serializers.py:1400 common/models.py:1344 +#: order/models.py:1757 order/models.py:2598 order/serializers.py:1710 +#: order/serializers.py:2141 part/models.py:3517 part/models.py:4015 #: report/templates/report/inventree_bill_of_materials_report.html:138 #: report/templates/report/inventree_build_order_report.html:113 #: report/templates/report/inventree_purchase_order_report.html:36 @@ -1014,429 +1030,429 @@ msgstr "Объект производства" msgid "Quantity" msgstr "Количество" -#: build/models.py:1664 +#: build/models.py:1665 msgid "Required quantity for build order" msgstr "Требуемое количество для заказа на производство" -#: build/models.py:1673 +#: build/models.py:1674 msgid "Quantity of consumed stock" -msgstr "" +msgstr "Количество израсходованного запаса" -#: build/models.py:1772 +#: build/models.py:1773 msgid "Build item must specify a build output, as master part is marked as trackable" msgstr "Элемент производства должен указать продукцию, как главную деталь помеченную как отслеживаемая" -#: build/models.py:1783 +#: build/models.py:1784 #, python-brace-format msgid "Allocated quantity ({q}) must not exceed available stock quantity ({a})" msgstr "Резервируемое количество ({q}) не должно превышать доступное количество на складе ({a})" -#: build/models.py:1804 order/models.py:2546 +#: build/models.py:1805 order/models.py:2547 msgid "Stock item is over-allocated" msgstr "Складская позиция перераспределена" -#: build/models.py:1809 order/models.py:2549 +#: build/models.py:1810 order/models.py:2550 msgid "Allocation quantity must be greater than zero" msgstr "Резервируемое количество должно быть больше нуля" -#: build/models.py:1815 +#: build/models.py:1816 msgid "Quantity must be 1 for serialized stock" msgstr "Количество должно быть 1 для сериализованных запасов" -#: build/models.py:1875 +#: build/models.py:1876 msgid "Selected stock item does not match BOM line" msgstr "Выбранная складская позиция не соответствует позиции в BOM" -#: build/models.py:1913 +#: build/models.py:1914 msgid "Allocated quantity exceeds available stock quantity" -msgstr "" +msgstr "Выделенное количество превышает доступный запас" -#: build/models.py:1964 build/serializers.py:948 build/serializers.py:1240 -#: order/serializers.py:1533 order/serializers.py:1554 +#: build/models.py:1965 build/serializers.py:956 build/serializers.py:1248 +#: order/serializers.py:1547 order/serializers.py:1568 #: report/templates/report/inventree_sales_order_shipment_report.html:29 #: stock/api.py:1404 stock/models.py:456 stock/serializers.py:102 #: stock/serializers.py:800 stock/serializers.py:1274 stock/serializers.py:1386 msgid "Stock Item" msgstr "Складская позиция" -#: build/models.py:1965 +#: build/models.py:1966 msgid "Source stock item" msgstr "Исходная складская позиция" -#: build/models.py:1975 +#: build/models.py:1976 msgid "Stock quantity to allocate to build" msgstr "Количество на складе для производства" -#: build/models.py:1984 +#: build/models.py:1985 msgid "Install into" msgstr "Установить в" -#: build/models.py:1985 +#: build/models.py:1986 msgid "Destination stock item" msgstr "Целевая складская позиция" -#: build/serializers.py:118 +#: build/serializers.py:120 msgid "Build Level" -msgstr "" +msgstr "Уровень сборки" -#: build/serializers.py:128 +#: build/serializers.py:136 msgid "Part Name" msgstr "Наименование детали" -#: build/serializers.py:153 +#: build/serializers.py:161 msgid "Project Code Label" msgstr "Название кода проекта" -#: build/serializers.py:219 build/serializers.py:974 +#: build/serializers.py:227 build/serializers.py:982 msgid "Build Output" msgstr "Выход Продукции" -#: build/serializers.py:231 +#: build/serializers.py:239 msgid "Build output does not match the parent build" msgstr "Продукция не совпадает с родительским заказом на производство" -#: build/serializers.py:235 +#: build/serializers.py:243 msgid "Output part does not match BuildOrder part" msgstr "Продукция не соответствует детали заказа на производство" -#: build/serializers.py:239 +#: build/serializers.py:247 msgid "This build output has already been completed" msgstr "Эта продукция уже помечена как завершенная" -#: build/serializers.py:253 +#: build/serializers.py:261 msgid "This build output is not fully allocated" msgstr "Сырье для этой продукции не полностью зарезервировано" -#: build/serializers.py:272 build/serializers.py:321 +#: build/serializers.py:280 build/serializers.py:329 msgid "Enter quantity for build output" msgstr "Введите количество продукции" -#: build/serializers.py:343 +#: build/serializers.py:351 msgid "Integer quantity required for trackable parts" msgstr "Для отслеживаемых деталей должно быть указано целочисленное количество" -#: build/serializers.py:349 +#: build/serializers.py:357 msgid "Integer quantity required, as the bill of materials contains trackable parts" msgstr "Требуется целое количество, так как материал содержит отслеживаемые детали" -#: build/serializers.py:366 order/serializers.py:865 order/serializers.py:1700 +#: build/serializers.py:374 order/serializers.py:876 order/serializers.py:1714 #: stock/serializers.py:699 msgid "Serial Numbers" msgstr "Серийные номера" -#: build/serializers.py:367 +#: build/serializers.py:375 msgid "Enter serial numbers for build outputs" msgstr "Введите серийные номера для продукции" -#: build/serializers.py:373 +#: build/serializers.py:381 msgid "Stock location for build output" -msgstr "" +msgstr "Местоположение склада для результата сборки" -#: build/serializers.py:388 +#: build/serializers.py:396 msgid "Auto Allocate Serial Numbers" msgstr "Автоматически выделить серийные номера" -#: build/serializers.py:390 +#: build/serializers.py:398 msgid "Automatically allocate required items with matching serial numbers" msgstr "Автоматически зарезервировать необходимые элементы с соответствующими серийными номерами" -#: build/serializers.py:423 order/serializers.py:951 stock/api.py:1183 +#: build/serializers.py:431 order/serializers.py:962 stock/api.py:1183 #: stock/models.py:1901 msgid "The following serial numbers already exist or are invalid" msgstr "Следующие серийные номера уже существуют или недействительны" -#: build/serializers.py:465 build/serializers.py:521 build/serializers.py:613 +#: build/serializers.py:473 build/serializers.py:529 build/serializers.py:621 msgid "A list of build outputs must be provided" msgstr "Необходимо представить список выхода деталей" -#: build/serializers.py:498 +#: build/serializers.py:506 msgid "Stock location for scrapped outputs" msgstr "Место хранения для списанной продукции" -#: build/serializers.py:504 +#: build/serializers.py:512 msgid "Discard Allocations" msgstr "Отменить резервирование" -#: build/serializers.py:505 +#: build/serializers.py:513 msgid "Discard any stock allocations for scrapped outputs" msgstr "Отменить все резервы запасов для списанной продукции" -#: build/serializers.py:510 +#: build/serializers.py:518 msgid "Reason for scrapping build output(s)" msgstr "Причина списания продукции" -#: build/serializers.py:568 +#: build/serializers.py:576 msgid "Location for completed build outputs" msgstr "Место хранения для завершенной продукции" -#: build/serializers.py:576 +#: build/serializers.py:584 msgid "Accept Incomplete Allocation" msgstr "Разрешить неполное резервирование" -#: build/serializers.py:577 +#: build/serializers.py:585 msgid "Complete outputs if stock has not been fully allocated" msgstr "Завершить продукцию, даже если остатки не были полностью зарезервированы" -#: build/serializers.py:702 +#: build/serializers.py:710 msgid "Consume Allocated Stock" msgstr "Израсходовать зарезервированные остатки" -#: build/serializers.py:703 +#: build/serializers.py:711 msgid "Consume any stock which has already been allocated to this build" msgstr "Израсходовать складские позиции, которые были зарезервированы для этой продукции" -#: build/serializers.py:709 +#: build/serializers.py:717 msgid "Remove Incomplete Outputs" msgstr "Удалить незавершенную продукцию" -#: build/serializers.py:710 +#: build/serializers.py:718 msgid "Delete any build outputs which have not been completed" msgstr "Удалить всю незавершенную продукцию" -#: build/serializers.py:737 +#: build/serializers.py:745 msgid "Not permitted" msgstr "Запрещено" -#: build/serializers.py:738 +#: build/serializers.py:746 msgid "Accept as consumed by this build order" msgstr "Принять как поглощенный этим заказом на производство" -#: build/serializers.py:739 +#: build/serializers.py:747 msgid "Deallocate before completing this build order" msgstr "Отменить резерв, до завершения заказа на производство" -#: build/serializers.py:766 +#: build/serializers.py:774 msgid "Overallocated Stock" msgstr "Перераспределенные запасы" -#: build/serializers.py:769 +#: build/serializers.py:777 msgid "How do you want to handle extra stock items assigned to the build order" msgstr "Как вы хотите обработать дополнительные складские позиции, назначенные для заказа на производство" -#: build/serializers.py:780 +#: build/serializers.py:788 msgid "Some stock items have been overallocated" msgstr "Некоторые складские позиции были перераспределены" -#: build/serializers.py:785 +#: build/serializers.py:793 msgid "Accept Unallocated" msgstr "Разрешить не полное резервирование" -#: build/serializers.py:787 +#: build/serializers.py:795 msgid "Accept that stock items have not been fully allocated to this build order" msgstr "Подтвердите, что складские позиции не были полностью зарезервированы для этого заказа на производство" -#: build/serializers.py:798 +#: build/serializers.py:806 msgid "Required stock has not been fully allocated" msgstr "Необходимые запасы не были полностью зарезервированы" -#: build/serializers.py:803 order/serializers.py:524 order/serializers.py:1601 +#: build/serializers.py:811 order/serializers.py:535 order/serializers.py:1615 msgid "Accept Incomplete" msgstr "Разрешить незавершенные производимые детали" -#: build/serializers.py:805 +#: build/serializers.py:813 msgid "Accept that the required number of build outputs have not been completed" msgstr "Допустить, что требуемое кол-во продукции не завершено" -#: build/serializers.py:816 +#: build/serializers.py:824 msgid "Required build quantity has not been completed" msgstr "Требуемое количество деталей не было произведено" -#: build/serializers.py:828 +#: build/serializers.py:836 msgid "Build order has open child build orders" msgstr "Производственный заказ имеет незавершённые дочерние заказы" -#: build/serializers.py:831 +#: build/serializers.py:839 msgid "Build order must be in production state" msgstr "Заказ на производство должен быть в стадии выполнения" -#: build/serializers.py:834 +#: build/serializers.py:842 msgid "Build order has incomplete outputs" msgstr "Заказ на производство имеет незавершенную продукцию" -#: build/serializers.py:873 +#: build/serializers.py:881 msgid "Build Line" msgstr "Позиция для производства" -#: build/serializers.py:881 +#: build/serializers.py:889 msgid "Build output" msgstr "Выход продукции" -#: build/serializers.py:889 +#: build/serializers.py:897 msgid "Build output must point to the same build" msgstr "Продукция должна указывать на тот же производство" -#: build/serializers.py:920 +#: build/serializers.py:928 msgid "Build Line Item" msgstr "Позиция для производства" -#: build/serializers.py:938 +#: build/serializers.py:946 msgid "bom_item.part must point to the same part as the build order" msgstr "bom_item.part должна указывать на ту же часть, что и заказ на производство" -#: build/serializers.py:954 stock/serializers.py:1287 +#: build/serializers.py:962 stock/serializers.py:1287 msgid "Item must be in stock" msgstr "Элемент должен быть в наличии" -#: build/serializers.py:997 order/serializers.py:1587 +#: build/serializers.py:1005 order/serializers.py:1601 #, python-brace-format msgid "Available quantity ({q}) exceeded" msgstr "Превышено доступное количество ({q})" -#: build/serializers.py:1003 +#: build/serializers.py:1011 msgid "Build output must be specified for allocation of tracked parts" msgstr "Продукция должна быть указан для резервирования отслеживаемых частей" -#: build/serializers.py:1011 +#: build/serializers.py:1019 msgid "Build output cannot be specified for allocation of untracked parts" msgstr "Продукция не может быть указана для резервирования не отслеживаемых частей" -#: build/serializers.py:1035 order/serializers.py:1860 +#: build/serializers.py:1043 order/serializers.py:1874 msgid "Allocation items must be provided" msgstr "Необходимо указать резервируемые элементы" -#: build/serializers.py:1099 +#: build/serializers.py:1107 msgid "Stock location where parts are to be sourced (leave blank to take from any location)" msgstr "Место хранения, где будут зарезервированы детали (оставьте пустым, чтобы забрать их из любого места)" -#: build/serializers.py:1108 +#: build/serializers.py:1116 msgid "Exclude Location" msgstr "Исключить место хранения" -#: build/serializers.py:1109 +#: build/serializers.py:1117 msgid "Exclude stock items from this selected location" msgstr "Исключить складские позиции из этого выбранного места хранения" -#: build/serializers.py:1114 +#: build/serializers.py:1122 msgid "Interchangeable Stock" msgstr "Обменный остаток" -#: build/serializers.py:1115 +#: build/serializers.py:1123 msgid "Stock items in multiple locations can be used interchangeably" msgstr "Складские позиции в нескольких местах могут использоваться на взаимозаменяемой основе" -#: build/serializers.py:1120 +#: build/serializers.py:1128 msgid "Substitute Stock" msgstr "Заменить остатки" -#: build/serializers.py:1121 +#: build/serializers.py:1129 msgid "Allow allocation of substitute parts" msgstr "Разрешить резервирование замещающих деталей" -#: build/serializers.py:1126 +#: build/serializers.py:1134 msgid "Optional Items" msgstr "Необязательные элементы" -#: build/serializers.py:1127 +#: build/serializers.py:1135 msgid "Allocate optional BOM items to build order" msgstr "Зарезервировать необязательные позиции BOM для заказа на производство" -#: build/serializers.py:1148 +#: build/serializers.py:1156 msgid "Failed to start auto-allocation task" msgstr "Не удалось запустить задачу автораспределения" -#: build/serializers.py:1200 +#: build/serializers.py:1208 msgid "BOM Reference" -msgstr "" +msgstr "Ссылка на спецификацию (BOM)" -#: build/serializers.py:1206 +#: build/serializers.py:1214 msgid "BOM Part ID" -msgstr "" +msgstr "ID детали в спецификации (BOM)" -#: build/serializers.py:1213 +#: build/serializers.py:1221 msgid "BOM Part Name" -msgstr "" +msgstr "Название детали в спецификации (BOM)" -#: build/serializers.py:1266 build/serializers.py:1449 +#: build/serializers.py:1274 build/serializers.py:1457 msgid "Build" -msgstr "" +msgstr "Сборка" -#: build/serializers.py:1276 company/models.py:685 order/api.py:311 -#: order/api.py:316 order/api.py:543 order/serializers.py:650 +#: build/serializers.py:1284 company/models.py:639 order/api.py:316 +#: order/api.py:321 order/api.py:549 order/serializers.py:661 #: stock/models.py:1036 stock/serializers.py:579 msgid "Supplier Part" msgstr "Деталь поставщика" -#: build/serializers.py:1284 stock/serializers.py:620 +#: build/serializers.py:1292 stock/serializers.py:620 msgid "Allocated Quantity" msgstr "Зарезервированное количество" -#: build/serializers.py:1351 +#: build/serializers.py:1359 msgid "Build Reference" -msgstr "" +msgstr "Ссылка на сборку" -#: build/serializers.py:1361 +#: build/serializers.py:1369 msgid "Part Category Name" -msgstr "" +msgstr "Название категории детали" -#: build/serializers.py:1383 common/setting/system.py:480 part/models.py:1214 +#: build/serializers.py:1391 common/setting/system.py:480 part/models.py:1302 msgid "Trackable" msgstr "Отслеживание" -#: build/serializers.py:1386 +#: build/serializers.py:1394 msgid "Inherited" msgstr "Унаследованные" -#: build/serializers.py:1389 part/models.py:4475 +#: build/serializers.py:1397 part/models.py:4100 msgid "Allow Variants" msgstr "Есть варианты" -#: build/serializers.py:1395 build/serializers.py:1400 part/models.py:4208 -#: part/models.py:4779 stock/api.py:882 +#: build/serializers.py:1403 build/serializers.py:1408 part/models.py:3833 +#: part/models.py:4404 stock/api.py:882 msgid "BOM Item" msgstr "Позиция BOM" -#: build/serializers.py:1467 order/serializers.py:1282 part/serializers.py:1310 -#: part/serializers.py:1765 +#: build/serializers.py:1475 order/serializers.py:1296 part/serializers.py:1175 +#: part/serializers.py:1630 msgid "In Production" msgstr "В производстве" -#: build/serializers.py:1469 part/serializers.py:950 part/serializers.py:1314 +#: build/serializers.py:1477 part/serializers.py:835 part/serializers.py:1179 msgid "Scheduled to Build" -msgstr "" +msgstr "Запланировано к сборке" -#: build/serializers.py:1472 part/serializers.py:987 +#: build/serializers.py:1480 part/serializers.py:872 msgid "External Stock" msgstr "Внешний склад" -#: build/serializers.py:1473 part/serializers.py:1300 part/serializers.py:1808 +#: build/serializers.py:1481 part/serializers.py:1165 part/serializers.py:1673 msgid "Available Stock" msgstr "Доступный запас" -#: build/serializers.py:1475 +#: build/serializers.py:1483 msgid "Available Substitute Stock" -msgstr "" +msgstr "Доступный запас заменителей" -#: build/serializers.py:1478 +#: build/serializers.py:1486 msgid "Available Variant Stock" -msgstr "" +msgstr "Доступный запас вариантов" -#: build/serializers.py:1752 +#: build/serializers.py:1760 msgid "Consumed quantity exceeds allocated quantity" -msgstr "" +msgstr "Потреблённое количество превышает выделенное количество" -#: build/serializers.py:1789 +#: build/serializers.py:1797 msgid "Optional notes for the stock consumption" -msgstr "" +msgstr "Дополнительные примечания по расходу запаса" -#: build/serializers.py:1806 +#: build/serializers.py:1814 msgid "Build item must point to the correct build order" -msgstr "" +msgstr "Элемент сборки должен ссылаться на правильный заказ на сборку" -#: build/serializers.py:1811 +#: build/serializers.py:1819 msgid "Duplicate build item allocation" -msgstr "" +msgstr "Дублирование выделения элемента сборки" -#: build/serializers.py:1829 +#: build/serializers.py:1837 msgid "Build line must point to the correct build order" -msgstr "" +msgstr "Строка сборки должна ссылаться на правильный заказ на сборку" -#: build/serializers.py:1834 +#: build/serializers.py:1842 msgid "Duplicate build line allocation" -msgstr "" +msgstr "Дублирование выделения строки сборки" -#: build/serializers.py:1846 +#: build/serializers.py:1854 msgid "At least one item or line must be provided" -msgstr "" +msgstr "Должен быть указан хотя бы один элемент или строка" #: build/status_codes.py:11 generic/states/tests.py:21 #: generic/states/tests.py:131 order/status_codes.py:12 @@ -1471,7 +1487,7 @@ msgstr "Необходимый запас для заказа на произв #: build/tasks.py:241 #, python-brace-format msgid "Build order {build} requires additional stock" -msgstr "" +msgstr "Заказ на сборку {build} требует дополнительный запас" #: build/tasks.py:265 msgid "Overdue Build Order" @@ -1482,817 +1498,946 @@ msgstr "Просроченный заказ сборки" msgid "Build order {bo} is now overdue" msgstr "Заказ на производство {bo} просрочен" -#: common/api.py:694 +#: common/api.py:701 msgid "Is Link" msgstr "Ссылка" -#: common/api.py:702 +#: common/api.py:709 msgid "Is File" msgstr "Файл" -#: common/api.py:745 +#: common/api.py:756 msgid "User does not have permission to delete these attachments" msgstr "У пользователя нет прав для удаления этих вложений" -#: common/api.py:762 +#: common/api.py:769 msgid "User does not have permission to delete this attachment" msgstr "У пользователя нет прав на удаление этого вложения" -#: common/currency.py:122 +#: common/currency.py:130 msgid "Invalid currency code" msgstr "Неверный код валюты" -#: common/currency.py:124 +#: common/currency.py:132 msgid "Duplicate currency code" msgstr "Код валюты дублируется" -#: common/currency.py:129 +#: common/currency.py:137 msgid "No valid currency codes provided" msgstr "Не указаны действительные коды валют" -#: common/currency.py:146 +#: common/currency.py:154 msgid "No plugin" msgstr "Нет плагина" -#: common/models.py:101 common/models.py:126 common/models.py:2729 +#: common/models.py:105 common/models.py:130 common/models.py:3150 msgid "Updated" msgstr "Обновлено" -#: common/models.py:102 common/models.py:127 +#: common/models.py:106 common/models.py:131 msgid "Timestamp of last update" msgstr "Временная метка последнего обновления" -#: common/models.py:139 +#: common/models.py:143 msgid "Update By" -msgstr "" +msgstr "Обновлено" -#: common/models.py:140 +#: common/models.py:144 msgid "User who last updated this object" -msgstr "" +msgstr "Пользователь, последний раз обновивший этот объект" -#: common/models.py:165 +#: common/models.py:169 msgid "Unique project code" msgstr "Уникальный код проекта" -#: common/models.py:172 +#: common/models.py:176 msgid "Project description" msgstr "Описание проекта" -#: common/models.py:181 +#: common/models.py:185 msgid "User or group responsible for this project" msgstr "Пользователь или группа, ответственные за этот проект" -#: common/models.py:771 common/models.py:1272 common/models.py:1310 +#: common/models.py:775 common/models.py:1276 common/models.py:1314 msgid "Settings key" -msgstr "" +msgstr "Ключ настроек" -#: common/models.py:775 +#: common/models.py:779 msgid "Settings value" msgstr "Значения настроек" -#: common/models.py:830 +#: common/models.py:834 msgid "Chosen value is not a valid option" msgstr "Выбранное значение не является допустимым" -#: common/models.py:846 +#: common/models.py:850 msgid "Value must be a boolean value" msgstr "Значение должно быть булевым" -#: common/models.py:854 +#: common/models.py:858 msgid "Value must be an integer value" msgstr "Значение должно быть целым числом" -#: common/models.py:862 +#: common/models.py:866 msgid "Value must be a valid number" -msgstr "" +msgstr "Значение должно быть допустимым числом" -#: common/models.py:887 +#: common/models.py:891 msgid "Value does not pass validation checks" -msgstr "" +msgstr "Значение не прошло проверку" -#: common/models.py:909 +#: common/models.py:913 msgid "Key string must be unique" msgstr "Строка ключа должна быть уникальной" -#: common/models.py:1318 common/models.py:1319 common/models.py:1423 -#: common/models.py:1424 common/models.py:1669 common/models.py:1670 -#: common/models.py:2000 common/models.py:2001 common/models.py:2382 -#: importer/models.py:100 part/models.py:3547 part/models.py:3575 +#: common/models.py:1322 common/models.py:1323 common/models.py:1427 +#: common/models.py:1428 common/models.py:1673 common/models.py:1674 +#: common/models.py:2006 common/models.py:2007 common/models.py:2803 +#: importer/models.py:100 part/models.py:3611 part/models.py:3639 #: plugin/models.py:355 plugin/models.py:356 #: report/templates/report/inventree_test_report.html:105 users/models.py:124 #: users/models.py:501 msgid "User" msgstr "Пользователь" -#: common/models.py:1341 +#: common/models.py:1345 msgid "Price break quantity" msgstr "Скидка распространяется на заданное количество" -#: common/models.py:1348 company/serializers.py:564 order/models.py:1842 -#: order/models.py:3043 +#: common/models.py:1352 company/serializers.py:349 order/models.py:1843 +#: order/models.py:3044 msgid "Price" msgstr "Цена" -#: common/models.py:1349 +#: common/models.py:1353 msgid "Unit price at specified quantity" msgstr "Цена за единицу для указанного количества" -#: common/models.py:1400 common/models.py:1585 +#: common/models.py:1404 common/models.py:1589 msgid "Endpoint" msgstr "Конечная точка" -#: common/models.py:1401 +#: common/models.py:1405 msgid "Endpoint at which this webhook is received" -msgstr "" +msgstr "Конечная точка, на которой принимается этот веб-хук" -#: common/models.py:1411 +#: common/models.py:1415 msgid "Name for this webhook" -msgstr "" +msgstr "Имя для этого веб-хука" -#: common/models.py:1415 common/models.py:2241 common/models.py:2348 -#: company/models.py:191 company/models.py:822 machine/models.py:40 -#: part/models.py:1237 plugin/models.py:69 stock/api.py:642 users/models.py:195 +#: common/models.py:1419 common/models.py:2247 common/models.py:2354 +#: company/models.py:192 company/models.py:776 machine/models.py:40 +#: part/models.py:1325 plugin/models.py:69 stock/api.py:642 users/models.py:195 #: users/models.py:554 users/serializers.py:314 msgid "Active" msgstr "Активный" -#: common/models.py:1415 +#: common/models.py:1419 msgid "Is this webhook active" -msgstr "" +msgstr "Этот веб-хук активен?" -#: common/models.py:1431 users/models.py:172 +#: common/models.py:1435 users/models.py:172 msgid "Token" msgstr "Токен" -#: common/models.py:1432 +#: common/models.py:1436 msgid "Token for access" msgstr "Токен для доступа" -#: common/models.py:1440 +#: common/models.py:1444 msgid "Secret" msgstr "Секрет" -#: common/models.py:1441 +#: common/models.py:1445 msgid "Shared secret for HMAC" -msgstr "" +msgstr "Общий ключ для HMAC" -#: common/models.py:1549 common/models.py:2619 +#: common/models.py:1553 common/models.py:3040 msgid "Message ID" msgstr "ID Сообщения" -#: common/models.py:1550 common/models.py:2609 +#: common/models.py:1554 common/models.py:3030 msgid "Unique identifier for this message" -msgstr "" +msgstr "Уникальный идентификатор этого сообщения" -#: common/models.py:1558 +#: common/models.py:1562 msgid "Host" msgstr "Хост" -#: common/models.py:1559 +#: common/models.py:1563 msgid "Host from which this message was received" -msgstr "" +msgstr "Хост, с которого было получено это сообщение" -#: common/models.py:1567 +#: common/models.py:1571 msgid "Header" msgstr "Заголовок" -#: common/models.py:1568 +#: common/models.py:1572 msgid "Header of this message" -msgstr "" +msgstr "Заголовок этого сообщения" -#: common/models.py:1575 +#: common/models.py:1579 msgid "Body" msgstr "Тело" -#: common/models.py:1576 +#: common/models.py:1580 msgid "Body of this message" -msgstr "" +msgstr "Текст этого сообщения" -#: common/models.py:1586 +#: common/models.py:1590 msgid "Endpoint on which this message was received" -msgstr "" +msgstr "Конечная точка, на которую было получено это сообщение" -#: common/models.py:1591 +#: common/models.py:1595 msgid "Worked on" msgstr "Работал над" -#: common/models.py:1592 +#: common/models.py:1596 msgid "Was the work on this message finished?" -msgstr "" +msgstr "Работа над этим сообщением завершена?" -#: common/models.py:1718 +#: common/models.py:1722 msgid "Id" msgstr "Код" -#: common/models.py:1720 +#: common/models.py:1724 msgid "Title" msgstr "Заголовок" -#: common/models.py:1722 common/models.py:1983 company/models.py:185 -#: company/models.py:467 company/models.py:534 company/models.py:839 -#: order/models.py:457 order/models.py:1786 order/models.py:2343 -#: part/models.py:1113 +#: common/models.py:1726 common/models.py:1989 company/models.py:186 +#: company/models.py:468 company/models.py:536 company/models.py:793 +#: order/models.py:458 order/models.py:1787 order/models.py:2344 +#: part/models.py:1201 #: report/templates/report/inventree_build_order_report.html:164 msgid "Link" msgstr "Ссылка" -#: common/models.py:1724 +#: common/models.py:1728 msgid "Published" msgstr "Опубликовано" -#: common/models.py:1726 +#: common/models.py:1730 msgid "Author" msgstr "Автор" -#: common/models.py:1728 +#: common/models.py:1732 msgid "Summary" msgstr "Итого" -#: common/models.py:1731 common/models.py:2586 +#: common/models.py:1735 common/models.py:3007 msgid "Read" msgstr "Читать" -#: common/models.py:1731 +#: common/models.py:1735 msgid "Was this news item read?" -msgstr "" +msgstr "Эта новость была прочитана?" -#: common/models.py:1748 +#: common/models.py:1752 msgid "Image file" msgstr "Файл изображения" -#: common/models.py:1760 -msgid "Target model type for this image" -msgstr "" - #: common/models.py:1764 +msgid "Target model type for this image" +msgstr "Тип целевой модели для этого изображения" + +#: common/models.py:1768 msgid "Target model ID for this image" -msgstr "" +msgstr "ID целевой модели для этого изображения" -#: common/models.py:1786 +#: common/models.py:1790 msgid "Custom Unit" -msgstr "" +msgstr "Пользовательская единица измерения" -#: common/models.py:1804 +#: common/models.py:1808 msgid "Unit symbol must be unique" -msgstr "" +msgstr "Символ единицы должен быть уникальным" -#: common/models.py:1819 +#: common/models.py:1823 msgid "Unit name must be a valid identifier" -msgstr "" +msgstr "Имя единицы должно быть действительным идентификатором" -#: common/models.py:1838 +#: common/models.py:1842 msgid "Unit name" msgstr "Название единицы" -#: common/models.py:1845 +#: common/models.py:1849 msgid "Symbol" msgstr "Символ" -#: common/models.py:1846 +#: common/models.py:1850 msgid "Optional unit symbol" msgstr "Обозначение единицы измерения (необязательно)" -#: common/models.py:1852 +#: common/models.py:1856 msgid "Definition" msgstr "Определение" -#: common/models.py:1853 +#: common/models.py:1857 msgid "Unit definition" msgstr "Определение единицы измерения" -#: common/models.py:1911 common/models.py:1974 stock/models.py:2967 +#: common/models.py:1917 common/models.py:1980 stock/models.py:2984 #: stock/serializers.py:247 msgid "Attachment" msgstr "Вложения" -#: common/models.py:1928 +#: common/models.py:1934 msgid "Missing file" msgstr "Файл не найден" -#: common/models.py:1929 +#: common/models.py:1935 msgid "Missing external link" msgstr "Отсутствует внешняя ссылка" -#: common/models.py:1966 +#: common/models.py:1972 common/models.py:2488 msgid "Model type" msgstr "Тип модели" -#: common/models.py:1967 +#: common/models.py:1973 msgid "Target model type for image" -msgstr "" +msgstr "Тип целевой модели для изображения" -#: common/models.py:1975 +#: common/models.py:1981 msgid "Select file to attach" msgstr "Выберите файл для вложения" -#: common/models.py:1991 +#: common/models.py:1997 msgid "Comment" msgstr "Комментарий" -#: common/models.py:1992 +#: common/models.py:1998 msgid "Attachment comment" msgstr "Описание вложения" -#: common/models.py:2008 +#: common/models.py:2014 msgid "Upload date" -msgstr "" +msgstr "Дата загрузки" -#: common/models.py:2009 +#: common/models.py:2015 msgid "Date the file was uploaded" -msgstr "" +msgstr "Дата загрузки файла" -#: common/models.py:2013 +#: common/models.py:2019 msgid "File size" -msgstr "" +msgstr "Размер файла" -#: common/models.py:2013 +#: common/models.py:2019 msgid "File size in bytes" msgstr "Размер файла в байтах" -#: common/models.py:2051 common/serializers.py:684 +#: common/models.py:2057 common/serializers.py:688 msgid "Invalid model type specified for attachment" -msgstr "" - -#: common/models.py:2072 -msgid "Custom State" -msgstr "" - -#: common/models.py:2073 -msgid "Custom States" -msgstr "" +msgstr "Указан недопустимый тип модели для вложения" #: common/models.py:2078 +msgid "Custom State" +msgstr "Пользовательское состояние" + +#: common/models.py:2079 +msgid "Custom States" +msgstr "Пользовательские состояния" + +#: common/models.py:2084 msgid "Reference Status Set" msgstr "Группа статусов" -#: common/models.py:2079 +#: common/models.py:2085 msgid "Status set that is extended with this custom state" msgstr "Группа статусов, которая будет дополнена пользовательским состоянием" -#: common/models.py:2083 generic/states/serializers.py:18 +#: common/models.py:2089 generic/states/serializers.py:18 msgid "Logical Key" msgstr "Логическое состояние" -#: common/models.py:2085 +#: common/models.py:2091 msgid "State logical key that is equal to this custom state in business logic" msgstr "Логическое состояние, соответствующее пользовательскому состоянию в бизнес-логике" -#: common/models.py:2090 common/models.py:2329 company/models.py:622 -#: machine/serializers.py:27 -#: report/templates/report/inventree_test_report.html:104 stock/models.py:2959 +#: common/models.py:2096 common/models.py:2335 machine/serializers.py:27 +#: report/templates/report/inventree_test_report.html:104 stock/models.py:2976 msgid "Value" msgstr "Значение" -#: common/models.py:2091 +#: common/models.py:2097 msgid "Numerical value that will be saved in the models database" msgstr "Числовое значение, которое будет сохранено в базе данных" -#: common/models.py:2097 +#: common/models.py:2103 msgid "Name of the state" msgstr "Название состояния" -#: common/models.py:2106 common/models.py:2335 generic/states/serializers.py:22 +#: common/models.py:2112 common/models.py:2341 generic/states/serializers.py:22 msgid "Label" msgstr "Метка" -#: common/models.py:2107 +#: common/models.py:2113 msgid "Label that will be displayed in the frontend" -msgstr "" +msgstr "Метка, которая будет отображаться на фронтенде" -#: common/models.py:2114 generic/states/serializers.py:24 +#: common/models.py:2120 generic/states/serializers.py:24 msgid "Color" msgstr "Цвет" -#: common/models.py:2115 +#: common/models.py:2121 msgid "Color that will be displayed in the frontend" msgstr "Цвет отображения в интерфейсе" -#: common/models.py:2123 +#: common/models.py:2129 msgid "Model" -msgstr "" +msgstr "Модель" -#: common/models.py:2124 +#: common/models.py:2130 msgid "Model this state is associated with" -msgstr "" - -#: common/models.py:2139 -msgid "Model must be selected" -msgstr "" - -#: common/models.py:2142 -msgid "Key must be selected" -msgstr "" +msgstr "Модель, с которой связано это состояние" #: common/models.py:2145 +msgid "Model must be selected" +msgstr "Необходимо выбрать модель" + +#: common/models.py:2148 +msgid "Key must be selected" +msgstr "Необходимо выбрать ключ" + +#: common/models.py:2151 msgid "Logical key must be selected" msgstr "Логическое состояние должно быть выбрано" -#: common/models.py:2149 +#: common/models.py:2155 msgid "Key must be different from logical key" msgstr "Ключ должен отличаться от логического ключа" -#: common/models.py:2156 -msgid "Valid reference status class must be provided" -msgstr "" - #: common/models.py:2162 +msgid "Valid reference status class must be provided" +msgstr "Должен быть указан корректный класс ссылочного статуса" + +#: common/models.py:2168 msgid "Key must be different from the logical keys of the reference status" msgstr "Состояние должно отличаться от других логических состояний выбранного статуса" -#: common/models.py:2169 +#: common/models.py:2175 msgid "Logical key must be in the logical keys of the reference status" msgstr "Логическое состояние должно быть из множества логических состояний выбранного статуса" -#: common/models.py:2176 +#: common/models.py:2182 msgid "Name must be different from the names of the reference status" -msgstr "" +msgstr "Имя должно отличаться от имен эталонного статуса" -#: common/models.py:2216 common/models.py:2323 part/models.py:3889 +#: common/models.py:2222 common/models.py:2329 common/models.py:2533 msgid "Selection List" msgstr "Список выбора" -#: common/models.py:2217 +#: common/models.py:2223 msgid "Selection Lists" msgstr "Списки выбора" -#: common/models.py:2222 +#: common/models.py:2228 msgid "Name of the selection list" msgstr "Название списка выбора" -#: common/models.py:2229 +#: common/models.py:2235 msgid "Description of the selection list" msgstr "Описание списка выбора" -#: common/models.py:2235 part/models.py:1242 +#: common/models.py:2241 part/models.py:1330 msgid "Locked" msgstr "Заблокирована" -#: common/models.py:2236 +#: common/models.py:2242 msgid "Is this selection list locked?" msgstr "Этот список выбора заблокирован?" -#: common/models.py:2242 +#: common/models.py:2248 msgid "Can this selection list be used?" msgstr "Можно ли использовать этот список выбора?" -#: common/models.py:2250 +#: common/models.py:2256 msgid "Source Plugin" msgstr "Исходный плагин" -#: common/models.py:2251 +#: common/models.py:2257 msgid "Plugin which provides the selection list" msgstr "Плагин, который предоставляет список выбора" -#: common/models.py:2256 +#: common/models.py:2262 msgid "Source String" msgstr "Исходная строка" -#: common/models.py:2257 +#: common/models.py:2263 msgid "Optional string identifying the source used for this list" msgstr "Необязательная строка, определяющая источник, используемый для этого списка" -#: common/models.py:2266 +#: common/models.py:2272 msgid "Default Entry" -msgstr "" +msgstr "Запись по умолчанию" -#: common/models.py:2267 +#: common/models.py:2273 msgid "Default entry for this selection list" msgstr "Вариант по умолчанию для этого списка выбора" -#: common/models.py:2272 common/models.py:2724 +#: common/models.py:2278 common/models.py:3145 msgid "Created" msgstr "Создано" -#: common/models.py:2273 +#: common/models.py:2279 msgid "Date and time that the selection list was created" msgstr "Дата и время создания списка выбора" -#: common/models.py:2278 +#: common/models.py:2284 msgid "Last Updated" msgstr "Последнее обновление" -#: common/models.py:2279 +#: common/models.py:2285 msgid "Date and time that the selection list was last updated" msgstr "Дата и время последнего обновления списка выбора" -#: common/models.py:2313 +#: common/models.py:2319 msgid "Selection List Entry" msgstr "Вариант списка выбора" -#: common/models.py:2314 +#: common/models.py:2320 msgid "Selection List Entries" msgstr "Варианты списка выбора" -#: common/models.py:2324 +#: common/models.py:2330 msgid "Selection list to which this entry belongs" msgstr "Список выбора, к которому относится данный вариант" -#: common/models.py:2330 +#: common/models.py:2336 msgid "Value of the selection list entry" msgstr "Значение варианта списка выбора" -#: common/models.py:2336 +#: common/models.py:2342 msgid "Label for the selection list entry" msgstr "Метка для элемента списка выбора" -#: common/models.py:2342 +#: common/models.py:2348 msgid "Description of the selection list entry" msgstr "Описание варианта списка выбора" -#: common/models.py:2349 +#: common/models.py:2355 msgid "Is this selection list entry active?" msgstr "Активен ли варианта списка выбора?" -#: common/models.py:2367 -msgid "Barcode Scan" +#: common/models.py:2387 +msgid "Parameter Template" +msgstr "Шаблон параметра" + +#: common/models.py:2388 +msgid "Parameter Templates" msgstr "" -#: common/models.py:2371 importer/models.py:546 part/models.py:4060 -msgid "Data" -msgstr "Данные" +#: common/models.py:2425 +msgid "Checkbox parameters cannot have units" +msgstr "У параметров-переключателей не может быть единицы измерения" -#: common/models.py:2372 -msgid "Barcode data" -msgstr "Данные штрихкода" +#: common/models.py:2430 +msgid "Checkbox parameters cannot have choices" +msgstr "У параметров-переключателей не может быть вариантов" -#: common/models.py:2383 -msgid "User who scanned the barcode" +#: common/models.py:2450 part/models.py:3707 +msgid "Choices must be unique" +msgstr "Варианты должны быть уникальными" + +#: common/models.py:2467 +msgid "Parameter template name must be unique" +msgstr "Имя шаблона параметров должно быть уникальным" + +#: common/models.py:2489 +msgid "Target model type for this parameter template" msgstr "" -#: common/models.py:2388 importer/models.py:69 -msgid "Timestamp" -msgstr "Метка времени" +#: common/models.py:2495 +msgid "Parameter Name" +msgstr "Название параметра" -#: common/models.py:2389 -msgid "Date and time of the barcode scan" +#: common/models.py:2501 part/models.py:1283 +msgid "Units" +msgstr "Единица измерения" + +#: common/models.py:2502 +msgid "Physical units for this parameter" +msgstr "Физическая единица этого параметра" + +#: common/models.py:2510 +msgid "Parameter description" +msgstr "Описание параметра" + +#: common/models.py:2516 +msgid "Checkbox" +msgstr "Переключатель" + +#: common/models.py:2517 +msgid "Is this parameter a checkbox?" +msgstr "Этот параметр является переключателем?" + +#: common/models.py:2522 part/models.py:3794 +msgid "Choices" +msgstr "Варианты" + +#: common/models.py:2523 +msgid "Valid choices for this parameter (comma-separated)" +msgstr "Возможные варианты этого параметра (разделить запятой)" + +#: common/models.py:2534 +msgid "Selection list for this parameter" +msgstr "Список выбора для этого параметра" + +#: common/models.py:2539 part/models.py:3769 report/models.py:287 +msgid "Enabled" +msgstr "Включено" + +#: common/models.py:2540 +msgid "Is this parameter template enabled?" msgstr "" -#: common/models.py:2395 -msgid "URL endpoint which processed the barcode" -msgstr "" - -#: common/models.py:2402 order/models.py:1832 plugin/serializers.py:93 -msgid "Context" -msgstr "Контекст" - -#: common/models.py:2403 -msgid "Context data for the barcode scan" -msgstr "" - -#: common/models.py:2410 -msgid "Response" -msgstr "" - -#: common/models.py:2411 -msgid "Response data from the barcode scan" -msgstr "" - -#: common/models.py:2417 report/templates/report/inventree_test_report.html:103 -#: stock/models.py:2953 -msgid "Result" -msgstr "Результат" - -#: common/models.py:2418 -msgid "Was the barcode scan successful?" -msgstr "" - -#: common/models.py:2500 -msgid "An error occurred" -msgstr "" - -#: common/models.py:2521 -msgid "INVE-E8: Email log deletion is protected. Set INVENTREE_PROTECT_EMAIL_LOG to False to allow deletion." -msgstr "" - -#: common/models.py:2568 -msgid "Email Message" -msgstr "" - -#: common/models.py:2569 -msgid "Email Messages" -msgstr "" - -#: common/models.py:2576 -msgid "Announced" -msgstr "" - -#: common/models.py:2578 -msgid "Sent" -msgstr "" - -#: common/models.py:2579 -msgid "Failed" +#: common/models.py:2581 +msgid "Parameter" msgstr "" #: common/models.py:2582 -msgid "Delivered" -msgstr "" - -#: common/models.py:2590 -msgid "Confirmed" -msgstr "" - -#: common/models.py:2596 -msgid "Inbound" -msgstr "" - -#: common/models.py:2597 -msgid "Outbound" -msgstr "" - -#: common/models.py:2602 -msgid "No Reply" -msgstr "" - -#: common/models.py:2603 -msgid "Track Delivery" -msgstr "" - -#: common/models.py:2604 -msgid "Track Read" -msgstr "" - -#: common/models.py:2605 -msgid "Track Click" -msgstr "" - -#: common/models.py:2608 common/models.py:2711 -msgid "Global ID" -msgstr "" - -#: common/models.py:2621 -msgid "Identifier for this message (might be supplied by external system)" +msgid "Parameters" msgstr "" #: common/models.py:2628 +msgid "Invalid choice for parameter value" +msgstr "Недопустимое значение параметра" + +#: common/models.py:2698 common/serializers.py:783 +msgid "Invalid model type specified for parameter" +msgstr "" + +#: common/models.py:2734 +msgid "Model ID" +msgstr "" + +#: common/models.py:2735 +msgid "ID of the target model for this parameter" +msgstr "" + +#: common/models.py:2744 common/setting/system.py:450 report/models.py:373 +#: report/models.py:669 report/serializers.py:94 report/serializers.py:135 +#: stock/serializers.py:234 +msgid "Template" +msgstr "Шаблон" + +#: common/models.py:2745 +msgid "Parameter template" +msgstr "" + +#: common/models.py:2750 common/models.py:2792 importer/models.py:546 +msgid "Data" +msgstr "Данные" + +#: common/models.py:2751 +msgid "Parameter Value" +msgstr "Значение параметра" + +#: common/models.py:2760 company/models.py:810 order/serializers.py:894 +#: order/serializers.py:2064 part/models.py:4075 part/models.py:4444 +#: report/templates/report/inventree_bill_of_materials_report.html:140 +#: report/templates/report/inventree_purchase_order_report.html:39 +#: report/templates/report/inventree_return_order_report.html:27 +#: report/templates/report/inventree_sales_order_report.html:32 +#: report/templates/report/inventree_stock_location_report.html:105 +#: stock/serializers.py:813 +msgid "Note" +msgstr "Заметка" + +#: common/models.py:2761 stock/serializers.py:718 +msgid "Optional note field" +msgstr "Опциональное поле записей" + +#: common/models.py:2788 +msgid "Barcode Scan" +msgstr "Сканирование штрихкодов" + +#: common/models.py:2793 +msgid "Barcode data" +msgstr "Данные штрихкода" + +#: common/models.py:2804 +msgid "User who scanned the barcode" +msgstr "Пользователь, который сканировал штрих-код" + +#: common/models.py:2809 importer/models.py:69 +msgid "Timestamp" +msgstr "Метка времени" + +#: common/models.py:2810 +msgid "Date and time of the barcode scan" +msgstr "Дата и время сканирования штрих-кода" + +#: common/models.py:2816 +msgid "URL endpoint which processed the barcode" +msgstr "URL-адрес, обработавший штрихкод" + +#: common/models.py:2823 order/models.py:1833 plugin/serializers.py:93 +msgid "Context" +msgstr "Контекст" + +#: common/models.py:2824 +msgid "Context data for the barcode scan" +msgstr "Контекстные данные для сканирования штрих-кода" + +#: common/models.py:2831 +msgid "Response" +msgstr "Ответ" + +#: common/models.py:2832 +msgid "Response data from the barcode scan" +msgstr "Данные ответа от сканирования штрихкода" + +#: common/models.py:2838 report/templates/report/inventree_test_report.html:103 +#: stock/models.py:2970 +msgid "Result" +msgstr "Результат" + +#: common/models.py:2839 +msgid "Was the barcode scan successful?" +msgstr "Сканирование штрихкода было успешным?" + +#: common/models.py:2921 +msgid "An error occurred" +msgstr "Произошла ошибка" + +#: common/models.py:2942 +msgid "INVE-E8: Email log deletion is protected. Set INVENTREE_PROTECT_EMAIL_LOG to False to allow deletion." +msgstr "INVE-E8: Удаление журнала электронной почты защищено. Установите INVENTREE_PROTECT_EMAIL_LOG в False, чтобы разрешить удаление." + +#: common/models.py:2989 +msgid "Email Message" +msgstr "Сообщение электронной почты" + +#: common/models.py:2990 +msgid "Email Messages" +msgstr "Сообщения электронной почты" + +#: common/models.py:2997 +msgid "Announced" +msgstr "Объявлено" + +#: common/models.py:2999 +msgid "Sent" +msgstr "Отправлено" + +#: common/models.py:3000 +msgid "Failed" +msgstr "Неудача" + +#: common/models.py:3003 +msgid "Delivered" +msgstr "Доставлено" + +#: common/models.py:3011 +msgid "Confirmed" +msgstr "Подтверждено" + +#: common/models.py:3017 +msgid "Inbound" +msgstr "Входящее" + +#: common/models.py:3018 +msgid "Outbound" +msgstr "Исходящее" + +#: common/models.py:3023 +msgid "No Reply" +msgstr "Без ответа" + +#: common/models.py:3024 +msgid "Track Delivery" +msgstr "Отслеживать доставку" + +#: common/models.py:3025 +msgid "Track Read" +msgstr "Отслеживать прочтение" + +#: common/models.py:3026 +msgid "Track Click" +msgstr "Отслеживать клики" + +#: common/models.py:3029 common/models.py:3132 +msgid "Global ID" +msgstr "Глобальный идентификатор" + +#: common/models.py:3042 +msgid "Identifier for this message (might be supplied by external system)" +msgstr "Идентификатор этого сообщения (может быть предоставлен внешней системой)" + +#: common/models.py:3049 msgid "Thread ID" -msgstr "" +msgstr "ID цепочки" -#: common/models.py:2630 +#: common/models.py:3051 msgid "Identifier for this message thread (might be supplied by external system)" -msgstr "" +msgstr "Идентификатор темы этого сообщения (может быть предоставлен внешней системой)" -#: common/models.py:2639 +#: common/models.py:3060 msgid "Thread" -msgstr "" +msgstr "Цепочка" -#: common/models.py:2640 +#: common/models.py:3061 msgid "Linked thread for this message" -msgstr "" +msgstr "Связанная цепочка для этого сообщения" -#: common/models.py:2656 -msgid "Prioriy" -msgstr "" +#: common/models.py:3077 +msgid "Priority" +msgstr "Приоритет" -#: common/models.py:2698 +#: common/models.py:3119 msgid "Email Thread" -msgstr "" +msgstr "Цепочка электронной почты" -#: common/models.py:2699 +#: common/models.py:3120 msgid "Email Threads" -msgstr "" +msgstr "Цепочки электронной почты" -#: common/models.py:2705 generic/states/serializers.py:16 +#: common/models.py:3126 generic/states/serializers.py:16 #: machine/serializers.py:24 plugin/models.py:46 users/models.py:113 msgid "Key" msgstr "Ключ" -#: common/models.py:2708 +#: common/models.py:3129 msgid "Unique key for this thread (used to identify the thread)" -msgstr "" +msgstr "Уникальный ключ для этой цепочки (используется для идентификации цепочки)" -#: common/models.py:2712 +#: common/models.py:3133 msgid "Unique identifier for this thread" -msgstr "" +msgstr "Уникальный идентификатор этой цепочки" -#: common/models.py:2719 +#: common/models.py:3140 msgid "Started Internal" -msgstr "" +msgstr "Запущено внутренне" -#: common/models.py:2720 +#: common/models.py:3141 msgid "Was this thread started internally?" -msgstr "" +msgstr "Эта цепочка была начата внутри?" -#: common/models.py:2725 +#: common/models.py:3146 msgid "Date and time that the thread was created" -msgstr "" +msgstr "Дата и время создания цепочки" -#: common/models.py:2730 +#: common/models.py:3151 msgid "Date and time that the thread was last updated" -msgstr "" +msgstr "Дата и время последнего обновления цепочки" #: common/notifications.py:57 #, python-brace-format msgid "New {verbose_name}" -msgstr "" +msgstr "Новая {verbose_name}" #: common/notifications.py:59 msgid "A new order has been created and assigned to you" -msgstr "" +msgstr "Создан новый заказ и назначен вам" #: common/notifications.py:65 #, python-brace-format msgid "{verbose_name} canceled" -msgstr "" +msgstr "{verbose_name} отменен" #: common/notifications.py:67 msgid "A order that is assigned to you was canceled" -msgstr "" +msgstr "Заказ, назначенный вам, был отменён" -#: common/notifications.py:73 common/notifications.py:80 order/api.py:594 +#: common/notifications.py:73 common/notifications.py:80 order/api.py:600 msgid "Items Received" msgstr "Полученные элементы" #: common/notifications.py:75 msgid "Items have been received against a purchase order" -msgstr "" +msgstr "Товары были получены по заказу на закупку" #: common/notifications.py:82 msgid "Items have been received against a return order" -msgstr "" +msgstr "Товары были получены по заказу на возврат" -#: common/serializers.py:145 +#: common/serializers.py:149 msgid "Indicates if the setting is overridden by an environment variable" -msgstr "" +msgstr "Указывает, переопределена ли настройка переменной окружения" -#: common/serializers.py:147 +#: common/serializers.py:151 msgid "Override" -msgstr "" +msgstr "Переопределить" -#: common/serializers.py:498 +#: common/serializers.py:502 msgid "Is Running" msgstr "Запущен" -#: common/serializers.py:504 +#: common/serializers.py:508 msgid "Pending Tasks" msgstr "Ожидающие задачи" -#: common/serializers.py:510 +#: common/serializers.py:514 msgid "Scheduled Tasks" msgstr "Запланированные задания" -#: common/serializers.py:516 +#: common/serializers.py:520 msgid "Failed Tasks" msgstr "Невыполненные Задачи" -#: common/serializers.py:531 +#: common/serializers.py:535 msgid "Task ID" msgstr "Код задачи" -#: common/serializers.py:531 +#: common/serializers.py:535 msgid "Unique task ID" msgstr "Уникальный ID задачи" -#: common/serializers.py:533 +#: common/serializers.py:537 msgid "Lock" msgstr "Заблокировать" -#: common/serializers.py:533 +#: common/serializers.py:537 msgid "Lock time" msgstr "Время блокировки" -#: common/serializers.py:535 +#: common/serializers.py:539 msgid "Task name" msgstr "Название задачи" -#: common/serializers.py:537 +#: common/serializers.py:541 msgid "Function" msgstr "Функция" -#: common/serializers.py:537 +#: common/serializers.py:541 msgid "Function name" msgstr "Имя функции" -#: common/serializers.py:539 +#: common/serializers.py:543 msgid "Arguments" msgstr "Аргументы" -#: common/serializers.py:539 +#: common/serializers.py:543 msgid "Task arguments" msgstr "Аргументы задачи" -#: common/serializers.py:542 +#: common/serializers.py:546 msgid "Keyword Arguments" -msgstr "" +msgstr "Именованные аргументы" -#: common/serializers.py:542 +#: common/serializers.py:546 msgid "Task keyword arguments" -msgstr "" +msgstr "Именованные аргументы задачи" -#: common/serializers.py:652 +#: common/serializers.py:656 msgid "Filename" msgstr "Имя файла" -#: common/serializers.py:659 importer/models.py:89 report/api.py:41 +#: common/serializers.py:663 common/serializers.py:730 +#: common/serializers.py:805 importer/models.py:89 report/api.py:41 #: report/models.py:293 report/serializers.py:52 msgid "Model Type" msgstr "Тип модели" -#: common/serializers.py:687 +#: common/serializers.py:691 msgid "User does not have permission to create or edit attachments for this model" +msgstr "Пользователь не имеет разрешения создавать или редактировать вложения для этой модели" + +#: common/serializers.py:786 +msgid "User does not have permission to create or edit parameters for this model" msgstr "" -#: common/serializers.py:731 common/serializers.py:834 +#: common/serializers.py:850 common/serializers.py:953 msgid "Selection list is locked" msgstr "Список выбора заблокирован" @@ -2322,11 +2467,11 @@ msgstr "Количество ожидаемых миграций базы дан #: common/setting/system.py:185 msgid "Active warning codes" -msgstr "" +msgstr "Активные коды предупреждений" #: common/setting/system.py:186 msgid "A dict of active warning codes" -msgstr "" +msgstr "Словарь активных кодов предупреждений" #: common/setting/system.py:192 msgid "Instance ID" @@ -2338,11 +2483,11 @@ msgstr "Уникальный идентификатор для этого экз #: common/setting/system.py:198 msgid "Announce ID" -msgstr "" +msgstr "ID объявления" #: common/setting/system.py:200 msgid "Announce the instance ID of the server in the server status info (unauthenticated)" -msgstr "" +msgstr "Сообщить ID экземпляра сервера в информации о состоянии сервера (без аутентификации)" #: common/setting/system.py:206 msgid "Server Instance Name" @@ -2368,7 +2513,7 @@ msgstr "Ограничить отображение `О...`" msgid "Show the `about` modal only to superusers" msgstr "Показать `О...` только суперпользователям" -#: common/setting/system.py:224 company/models.py:144 company/models.py:145 +#: common/setting/system.py:224 company/models.py:145 company/models.py:146 msgid "Company name" msgstr "Название компании" @@ -2411,8 +2556,8 @@ msgstr "Как часто обновлять курс валют (установ #: common/setting/system.py:253 common/setting/system.py:293 #: common/setting/system.py:306 common/setting/system.py:314 #: common/setting/system.py:321 common/setting/system.py:330 -#: common/setting/system.py:339 common/setting/system.py:588 -#: common/setting/system.py:616 common/setting/system.py:707 +#: common/setting/system.py:339 common/setting/system.py:580 +#: common/setting/system.py:608 common/setting/system.py:707 #: common/setting/system.py:1103 common/setting/system.py:1119 msgid "days" msgstr "дней" @@ -2507,19 +2652,19 @@ msgstr "Уведомления пользователя будут удален #: common/setting/system.py:334 msgid "Email Deletion Interval" -msgstr "" +msgstr "Интервал удаления электронной почты" #: common/setting/system.py:336 msgid "Email messages will be deleted after specified number of days" -msgstr "" +msgstr "Сообщения электронной почты будут удалены через указанное количество дней" #: common/setting/system.py:343 msgid "Protect Email Log" -msgstr "" +msgstr "Защитить журнал электронной почты" #: common/setting/system.py:344 msgid "Prevent deletion of email log entries" -msgstr "" +msgstr "Предотвращать удаление записей журнала электронной почты" #: common/setting/system.py:349 msgid "Barcode Support" @@ -2531,19 +2676,19 @@ msgstr "Включить поддержку сканера штрих-кодов #: common/setting/system.py:355 msgid "Store Barcode Results" -msgstr "" +msgstr "Сохранять результаты сканирования штрихкодов" #: common/setting/system.py:356 msgid "Store barcode scan results in the database" -msgstr "" +msgstr "Сохранять результаты сканирования штрихкодов в базе данных" #: common/setting/system.py:361 msgid "Barcode Scans Maximum Count" -msgstr "" +msgstr "Максимальное количество сохранённых сканирований штрихкодов" #: common/setting/system.py:362 msgid "Maximum number of barcode scan results to store" -msgstr "" +msgstr "Максимальное число результатов сканирования штрихкодов для хранения" #: common/setting/system.py:367 msgid "Barcode Input Delay" @@ -2591,7 +2736,7 @@ msgstr "Только ревизия сборки" #: common/setting/system.py:399 msgid "Only allow revisions for assembly parts" -msgstr "" +msgstr "Разрешить ревизии только для сборочных деталей" #: common/setting/system.py:404 msgid "Allow Deletion from Assembly" @@ -2657,12 +2802,6 @@ msgstr "Скопировать параметры по шаблону катег msgid "Copy category parameter templates when creating a part" msgstr "Копировать параметры по шаблону категории при создании детали" -#: common/setting/system.py:450 part/models.py:4054 report/models.py:373 -#: report/models.py:669 report/serializers.py:94 report/serializers.py:135 -#: stock/serializers.py:234 -msgid "Template" -msgstr "Шаблон" - #: common/setting/system.py:451 msgid "Parts are templates by default" msgstr "По умолчанию детали являются шаблонами" @@ -2671,8 +2810,8 @@ msgstr "По умолчанию детали являются шаблонами msgid "Parts can be assembled from other components by default" msgstr "По умолчанию детали могут быть собраны из других компонентов" -#: common/setting/system.py:462 part/models.py:1208 part/serializers.py:1734 -#: part/serializers.py:1741 +#: common/setting/system.py:462 part/models.py:1296 part/serializers.py:1599 +#: part/serializers.py:1606 msgid "Component" msgstr "Компонент" @@ -2680,7 +2819,7 @@ msgstr "Компонент" msgid "Parts can be used as sub-components by default" msgstr "По умолчанию детали могут использоваться в качестве суб-компонентов" -#: common/setting/system.py:468 part/models.py:1226 +#: common/setting/system.py:468 part/models.py:1314 msgid "Purchaseable" msgstr "Можно купить" @@ -2688,7 +2827,7 @@ msgstr "Можно купить" msgid "Parts are purchaseable by default" msgstr "По умолчанию детали являются отслеживаемыми" -#: common/setting/system.py:474 part/models.py:1232 stock/api.py:643 +#: common/setting/system.py:474 part/models.py:1320 stock/api.py:643 msgid "Salable" msgstr "Можно продавать" @@ -2700,7 +2839,7 @@ msgstr "Детали продаются по умолчанию" msgid "Parts are trackable by default" msgstr "По умолчанию детали являются отслеживаемыми" -#: common/setting/system.py:486 part/models.py:1248 +#: common/setting/system.py:486 part/models.py:1336 msgid "Virtual" msgstr "Виртуальная" @@ -2749,158 +2888,158 @@ msgid "Part category default icon (empty means no icon)" msgstr "Значок категории по умолчанию (пустой означает отсутствие значка)" #: common/setting/system.py:525 -msgid "Enforce Parameter Units" -msgstr "Принудительное применение единиц измерения параметров" - -#: common/setting/system.py:527 -msgid "If units are provided, parameter values must match the specified units" -msgstr "Если введены единицы, значения параметра должны соответствовать указанным единицам измерения" - -#: common/setting/system.py:533 msgid "Minimum Pricing Decimal Places" msgstr "Минимальные Цены Десятичные Значки" -#: common/setting/system.py:535 +#: common/setting/system.py:527 msgid "Minimum number of decimal places to display when rendering pricing data" msgstr "Минимальное количество десятичных знаков при отображении данных о ценах" -#: common/setting/system.py:546 +#: common/setting/system.py:538 msgid "Maximum Pricing Decimal Places" msgstr "Макс. Цены десятичные знаки" -#: common/setting/system.py:548 +#: common/setting/system.py:540 msgid "Maximum number of decimal places to display when rendering pricing data" msgstr "Минимальное количество десятичных знаков при отображении данных о ценах" -#: common/setting/system.py:559 +#: common/setting/system.py:551 msgid "Use Supplier Pricing" msgstr "Использовать цены поставщика" -#: common/setting/system.py:561 +#: common/setting/system.py:553 msgid "Include supplier price breaks in overall pricing calculations" msgstr "Включить разницу цен поставщиков при расчетах цен" -#: common/setting/system.py:567 +#: common/setting/system.py:559 msgid "Purchase History Override" msgstr "Изменить историю покупки" -#: common/setting/system.py:569 +#: common/setting/system.py:561 msgid "Historical purchase order pricing overrides supplier price breaks" msgstr "Ценообразование по историческим заказам на поставку отменяет различия в ценах поставщиков" -#: common/setting/system.py:575 +#: common/setting/system.py:567 msgid "Use Stock Item Pricing" msgstr "Использовать цены из складских позиций" -#: common/setting/system.py:577 +#: common/setting/system.py:569 msgid "Use pricing from manually entered stock data for pricing calculations" msgstr "Использовать расценки из ручного ввода данных о запасах для расчета цен" -#: common/setting/system.py:583 +#: common/setting/system.py:575 msgid "Stock Item Pricing Age" msgstr "Возраст цен складских позиций" -#: common/setting/system.py:585 +#: common/setting/system.py:577 msgid "Exclude stock items older than this number of days from pricing calculations" msgstr "Исключить складские позиции старше указанного количества дней с расчёта цен" -#: common/setting/system.py:592 +#: common/setting/system.py:584 msgid "Use Variant Pricing" msgstr "Использовать варианты цен" -#: common/setting/system.py:593 +#: common/setting/system.py:585 msgid "Include variant pricing in overall pricing calculations" msgstr "Включить разницу цен поставщиков при расчетах цен" -#: common/setting/system.py:598 +#: common/setting/system.py:590 msgid "Active Variants Only" msgstr "Только Активные Варианты" -#: common/setting/system.py:600 +#: common/setting/system.py:592 msgid "Only use active variant parts for calculating variant pricing" msgstr "Использовать только активные запчасти для расчета стоимости варианта" -#: common/setting/system.py:606 +#: common/setting/system.py:598 msgid "Auto Update Pricing" -msgstr "" +msgstr "Автоматическое обновление цен" -#: common/setting/system.py:608 +#: common/setting/system.py:600 msgid "Automatically update part pricing when internal data changes" -msgstr "" +msgstr "Автоматически обновлять цены деталей при изменении внутренних данных" -#: common/setting/system.py:614 +#: common/setting/system.py:606 msgid "Pricing Rebuild Interval" msgstr "Интервал пересчета цен" -#: common/setting/system.py:615 +#: common/setting/system.py:607 msgid "Number of days before part pricing is automatically updated" msgstr "Количество дней до автоматического обновления цены" -#: common/setting/system.py:621 +#: common/setting/system.py:613 msgid "Internal Prices" msgstr "Внутренние цены" -#: common/setting/system.py:622 +#: common/setting/system.py:614 msgid "Enable internal prices for parts" msgstr "Разрешить внутренние цены для частей" -#: common/setting/system.py:627 +#: common/setting/system.py:619 msgid "Internal Price Override" msgstr "Переопределение внутренней цены" -#: common/setting/system.py:629 +#: common/setting/system.py:621 msgid "If available, internal prices override price range calculations" msgstr "При наличии внутренних цен переопределить ценовой диапазон" -#: common/setting/system.py:635 +#: common/setting/system.py:627 msgid "Enable label printing" msgstr "Включить печать этикеток" -#: common/setting/system.py:636 +#: common/setting/system.py:628 msgid "Enable label printing from the web interface" msgstr "Включить печать этикеток из веб-интерфейса" -#: common/setting/system.py:641 +#: common/setting/system.py:633 msgid "Label Image DPI" msgstr "Изображение меток DPI" -#: common/setting/system.py:643 +#: common/setting/system.py:635 msgid "DPI resolution when generating image files to supply to label printing plugins" msgstr "Разрешение DPI при создании файлов изображений для печати этикеток плагинов" -#: common/setting/system.py:649 +#: common/setting/system.py:641 msgid "Enable Reports" msgstr "Включить отчеты" -#: common/setting/system.py:650 +#: common/setting/system.py:642 msgid "Enable generation of reports" msgstr "Включить генерацию отчетов" -#: common/setting/system.py:655 +#: common/setting/system.py:647 msgid "Debug Mode" msgstr "Режим отладки" -#: common/setting/system.py:656 +#: common/setting/system.py:648 msgid "Generate reports in debug mode (HTML output)" msgstr "Генерировать отчеты в режиме отладки (вывод HTML)" -#: common/setting/system.py:661 +#: common/setting/system.py:653 msgid "Log Report Errors" msgstr "Журнал ошибок отчета" -#: common/setting/system.py:662 +#: common/setting/system.py:654 msgid "Log errors which occur when generating reports" msgstr "Журнал ошибок, которые возникают при создании отчетов" -#: common/setting/system.py:667 plugin/builtin/labels/label_sheet.py:29 +#: common/setting/system.py:659 plugin/builtin/labels/label_sheet.py:29 #: report/models.py:381 msgid "Page Size" msgstr "Размер страницы" -#: common/setting/system.py:668 +#: common/setting/system.py:660 msgid "Default page size for PDF reports" msgstr "Размер страницы по умолчанию для PDF отчетов" +#: common/setting/system.py:665 +msgid "Enforce Parameter Units" +msgstr "Принудительное применение единиц измерения параметров" + +#: common/setting/system.py:667 +msgid "If units are provided, parameter values must match the specified units" +msgstr "Если введены единицы, значения параметра должны соответствовать указанным единицам измерения" + #: common/setting/system.py:673 msgid "Globally Unique Serials" msgstr "Глобально уникальные серийные номера" @@ -3017,35 +3156,35 @@ msgstr "Ответственный владелец должен быть наз #: common/setting/system.py:763 msgid "Require Active Part" -msgstr "" +msgstr "Требовать активную деталь" #: common/setting/system.py:764 msgid "Prevent build order creation for inactive parts" -msgstr "" +msgstr "Запрещать создание заказов на сборку для неактивных деталей" #: common/setting/system.py:769 msgid "Require Locked Part" -msgstr "" +msgstr "Требовать заблокированную деталь" #: common/setting/system.py:770 msgid "Prevent build order creation for unlocked parts" -msgstr "" +msgstr "Запрещать создание заказов на сборку для разблокированных деталей" #: common/setting/system.py:775 msgid "Require Valid BOM" -msgstr "" +msgstr "Требовать валидную спецификацию" #: common/setting/system.py:776 msgid "Prevent build order creation unless BOM has been validated" -msgstr "" +msgstr "Запрещать создание заказов на сборку, пока спецификация не будет подтверждена" #: common/setting/system.py:781 msgid "Require Closed Child Orders" -msgstr "" +msgstr "Требовать закрытия дочерних заказов" #: common/setting/system.py:783 msgid "Prevent build order completion until all child orders are closed" -msgstr "" +msgstr "Запрещать завершение заказа на сборку, пока не закрыты все дочерние заказы" #: common/setting/system.py:789 msgid "External Build Orders" @@ -3057,7 +3196,7 @@ msgstr "Включить функциональность сторонних з #: common/setting/system.py:795 msgid "Block Until Tests Pass" -msgstr "" +msgstr "Блокировать до прохождения тестов" #: common/setting/system.py:797 msgid "Prevent build outputs from being completed until all required tests pass" @@ -3097,31 +3236,31 @@ msgstr "Необходимый шаблон для создания поля « #: common/setting/system.py:843 msgid "Sales Order Default Shipment" -msgstr "" +msgstr "Отгрузка по умолчанию для заказа на продажу" #: common/setting/system.py:844 msgid "Enable creation of default shipment with sales orders" -msgstr "" +msgstr "Включить создание отгрузки по умолчанию для заказов на продажу" #: common/setting/system.py:849 msgid "Edit Completed Sales Orders" -msgstr "" +msgstr "Редактирование завершённых заказов на продажу" #: common/setting/system.py:851 msgid "Allow editing of sales orders after they have been shipped or completed" -msgstr "" +msgstr "Разрешить редактирование заказов на продажу после их отправки или завершения" #: common/setting/system.py:857 msgid "Shipment Requires Checking" -msgstr "" +msgstr "Отгрузка требует проверки" #: common/setting/system.py:859 msgid "Prevent completion of shipments until items have been checked" -msgstr "" +msgstr "Запрещать завершение отгрузок, пока товары не проверены" #: common/setting/system.py:865 msgid "Mark Shipped Orders as Complete" -msgstr "" +msgstr "Отмечать отправленные заказы как завершённые" #: common/setting/system.py:867 msgid "Sales orders marked as shipped will automatically be completed, bypassing the \"shipped\" status" @@ -3129,11 +3268,11 @@ msgstr "Заказы на продажу, помеченные как отгру #: common/setting/system.py:873 msgid "Purchase Order Reference Pattern" -msgstr "" +msgstr "Шаблон ссылки заказа на закупку" #: common/setting/system.py:875 msgid "Required pattern for generating Purchase Order reference field" -msgstr "" +msgstr "Требуемый шаблон для генерации поля ссылки заказа на закупку" #: common/setting/system.py:887 msgid "Edit Completed Purchase Orders" @@ -3145,11 +3284,11 @@ msgstr "Разрешить редактирование заказов посл #: common/setting/system.py:895 msgid "Convert Currency" -msgstr "" +msgstr "Конвертировать валюту" #: common/setting/system.py:896 msgid "Convert item value to base currency when receiving stock" -msgstr "" +msgstr "Преобразовывать стоимость товара в базовую валюту при поступлении на склад" #: common/setting/system.py:901 msgid "Auto Complete Purchase Orders" @@ -3201,15 +3340,15 @@ msgstr "Включить синхронизацию групп InvenTree с гр #: common/setting/system.py:944 msgid "SSO group key" -msgstr "" +msgstr "Ключ группы SSO" #: common/setting/system.py:945 msgid "The name of the groups claim attribute provided by the IdP" -msgstr "" +msgstr "Имя атрибута группы, предоставленного провайдером идентификации" #: common/setting/system.py:950 msgid "SSO group map" -msgstr "" +msgstr "Отображение групп SSO" #: common/setting/system.py:952 msgid "A mapping from SSO groups to local InvenTree groups. If the local group does not exist, it will be created." @@ -3217,11 +3356,11 @@ msgstr "Отображение от групп SSO к локальным гру #: common/setting/system.py:958 msgid "Remove groups outside of SSO" -msgstr "" +msgstr "Удалять группы вне SSO" #: common/setting/system.py:960 msgid "Whether groups assigned to the user should be removed if they are not backend by the IdP. Disabling this setting might cause security issues" -msgstr "" +msgstr "Удалять ли группы, назначенные пользователю, если они не поддерживаются провайдером идентификации. Отключение этой настройки может привести к проблемам безопасности" #: common/setting/system.py:966 msgid "Email required" @@ -3229,15 +3368,15 @@ msgstr "Необходимо указать EMail" #: common/setting/system.py:967 msgid "Require user to supply mail on signup" -msgstr "" +msgstr "Требовать электронную почту при регистрации" #: common/setting/system.py:972 msgid "Auto-fill SSO users" -msgstr "" +msgstr "Автозаполнение пользователей SSO" #: common/setting/system.py:973 msgid "Automatically fill out user-details from SSO account-data" -msgstr "" +msgstr "Автоматически заполнять данные пользователя из аккаунта SSO" #: common/setting/system.py:978 msgid "Mail twice" @@ -3245,7 +3384,7 @@ msgstr "Написать дважды" #: common/setting/system.py:979 msgid "On signup ask users twice for their mail" -msgstr "" +msgstr "При регистрации дважды спрашивать адрес электронной почты" #: common/setting/system.py:984 msgid "Password twice" @@ -3261,7 +3400,7 @@ msgstr "Разрешенные домены" #: common/setting/system.py:992 msgid "Restrict signup to certain domains (comma-separated, starting with @)" -msgstr "" +msgstr "Ограничить регистрацию определёнными доменами (через запятую, начиная с @)" #: common/setting/system.py:998 msgid "Group on signup" @@ -3285,7 +3424,7 @@ msgstr "Проверять плагины при запуске" #: common/setting/system.py:1014 msgid "Check that all plugins are installed on startup - enable in container environments" -msgstr "" +msgstr "Проверять, что все плагины установлены при запуске — включать в контейнерных средах" #: common/setting/system.py:1021 msgid "Check for plugin updates" @@ -3297,59 +3436,59 @@ msgstr "Включить периодическую проверку обнов #: common/setting/system.py:1028 msgid "Enable URL integration" -msgstr "" +msgstr "Включить интеграцию URL" #: common/setting/system.py:1029 msgid "Enable plugins to add URL routes" -msgstr "" +msgstr "Разрешить плагинам добавлять маршруты URL" #: common/setting/system.py:1035 msgid "Enable navigation integration" -msgstr "" +msgstr "Включить интеграцию навигации" #: common/setting/system.py:1036 msgid "Enable plugins to integrate into navigation" -msgstr "" +msgstr "Разрешить плагинам интегрироваться в навигацию" #: common/setting/system.py:1042 msgid "Enable app integration" -msgstr "" +msgstr "Включить интеграцию приложений" #: common/setting/system.py:1043 msgid "Enable plugins to add apps" -msgstr "" +msgstr "Разрешить плагинам добавлять приложения" #: common/setting/system.py:1049 msgid "Enable schedule integration" -msgstr "" +msgstr "Включить интеграцию расписаний" #: common/setting/system.py:1050 msgid "Enable plugins to run scheduled tasks" -msgstr "" +msgstr "Разрешить плагинам запускать запланированные задачи" #: common/setting/system.py:1056 msgid "Enable event integration" -msgstr "" +msgstr "Включить интеграцию событий" #: common/setting/system.py:1057 msgid "Enable plugins to respond to internal events" -msgstr "" +msgstr "Разрешить плагинам реагировать на внутренние события" #: common/setting/system.py:1063 msgid "Enable interface integration" -msgstr "" +msgstr "Включить интеграцию интерфейса" #: common/setting/system.py:1064 msgid "Enable plugins to integrate into the user interface" -msgstr "" +msgstr "Разрешить плагинам интегрироваться в пользовательский интерфейс" #: common/setting/system.py:1070 msgid "Enable mail integration" -msgstr "" +msgstr "Включить интеграцию почты" #: common/setting/system.py:1071 msgid "Enable plugins to process outgoing/incoming mails" -msgstr "" +msgstr "Разрешить плагинам обрабатывать исходящую и входящую почту" #: common/setting/system.py:1077 msgid "Enable project codes" @@ -3361,11 +3500,11 @@ msgstr "Включить коды проекта для отслеживания #: common/setting/system.py:1083 msgid "Enable Stock History" -msgstr "" +msgstr "Включить историю запасов" #: common/setting/system.py:1085 msgid "Enable functionality for recording historical stock levels and value" -msgstr "" +msgstr "Включить функцию записи истории уровней и стоимости запасов" #: common/setting/system.py:1091 msgid "Exclude External Locations" @@ -3373,7 +3512,7 @@ msgstr "Исключить сторонний склад" #: common/setting/system.py:1093 msgid "Exclude stock items in external locations from stock history calculations" -msgstr "" +msgstr "Исключать складские позиции во внешних локациях из расчёта истории запасов" #: common/setting/system.py:1099 msgid "Automatic Stocktake Period" @@ -3381,23 +3520,23 @@ msgstr "Автоматический период инвентаризации" #: common/setting/system.py:1100 msgid "Number of days between automatic stock history recording" -msgstr "" +msgstr "Количество дней между автоматическими записями истории запасов" #: common/setting/system.py:1106 msgid "Delete Old Stock History Entries" -msgstr "" +msgstr "Удалять старые записи истории запасов" #: common/setting/system.py:1108 msgid "Delete stock history entries older than the specified number of days" -msgstr "" +msgstr "Удалять записи истории запасов старше указанного количества дней" #: common/setting/system.py:1114 msgid "Stock History Deletion Interval" -msgstr "" +msgstr "Интервал удаления истории запасов" #: common/setting/system.py:1116 msgid "Stock history entries will be deleted after specified number of days" -msgstr "" +msgstr "Записи истории запасов будут удалены через указанное количество дней" #: common/setting/system.py:1123 msgid "Display Users full names" @@ -3409,11 +3548,11 @@ msgstr "Отображать полные имена пользователей #: common/setting/system.py:1129 msgid "Display User Profiles" -msgstr "" +msgstr "Отображать профили пользователей" #: common/setting/system.py:1130 msgid "Display Users Profiles on their profile page" -msgstr "" +msgstr "Отображать профили пользователей на их странице профиля" #: common/setting/system.py:1135 msgid "Enable Test Station Data" @@ -3425,15 +3564,15 @@ msgstr "Добавлять данные об испытательном обор #: common/setting/system.py:1141 msgid "Enable Machine Ping" -msgstr "" +msgstr "Включить пинг машин" #: common/setting/system.py:1143 msgid "Enable periodic ping task of registered machines to check their status" -msgstr "" +msgstr "Включить периодическую задачу пинга зарегистрированных машин для проверки их статуса" #: common/setting/user.py:23 msgid "Inline label display" -msgstr "" +msgstr "Отображать ярлыки в строке" #: common/setting/user.py:25 msgid "Display PDF labels in the browser, instead of downloading as a file" @@ -3456,695 +3595,684 @@ msgid "Display PDF reports in the browser, instead of downloading as a file" msgstr "Отображение PDF-этикетки в браузере вместо загрузки в виде файла" #: common/setting/user.py:45 +msgid "Barcode Scanner in Form Fields" +msgstr "" + +#: common/setting/user.py:46 +msgid "Allow barcode scanner input in form fields" +msgstr "" + +#: common/setting/user.py:51 msgid "Search Parts" msgstr "Поиск Деталей" -#: common/setting/user.py:46 +#: common/setting/user.py:52 msgid "Display parts in search preview window" msgstr "Отображение деталей в окне предварительного просмотра поиска" -#: common/setting/user.py:51 +#: common/setting/user.py:57 msgid "Search Supplier Parts" msgstr "Поиск деталей поставщика" -#: common/setting/user.py:52 +#: common/setting/user.py:58 msgid "Display supplier parts in search preview window" msgstr "Отображение деталей поставщика в окне предварительного просмотра поиска" -#: common/setting/user.py:57 +#: common/setting/user.py:63 msgid "Search Manufacturer Parts" msgstr "Новая деталь производителя" -#: common/setting/user.py:58 +#: common/setting/user.py:64 msgid "Display manufacturer parts in search preview window" msgstr "Отображение деталей поставщика в окне предварительного просмотра поиска" -#: common/setting/user.py:63 +#: common/setting/user.py:69 msgid "Hide Inactive Parts" msgstr "Скрыть неактивные детали" -#: common/setting/user.py:64 +#: common/setting/user.py:70 msgid "Excluded inactive parts from search preview window" msgstr "Исключить неактивные детали из окна предварительного просмотра поиска" -#: common/setting/user.py:69 +#: common/setting/user.py:75 msgid "Search Categories" msgstr "Категории поиска" -#: common/setting/user.py:70 +#: common/setting/user.py:76 msgid "Display part categories in search preview window" msgstr "Отображение деталей в окне предварительного просмотра поиска" -#: common/setting/user.py:75 +#: common/setting/user.py:81 msgid "Search Stock" msgstr "Поиск Запасов" -#: common/setting/user.py:76 +#: common/setting/user.py:82 msgid "Display stock items in search preview window" msgstr "Отображать складские позиции в окне предварительного просмотра поиска" -#: common/setting/user.py:81 +#: common/setting/user.py:87 msgid "Hide Unavailable Stock Items" msgstr "Скрыть недоступные складские позиции" -#: common/setting/user.py:83 +#: common/setting/user.py:89 msgid "Exclude stock items which are not available from the search preview window" msgstr "Исключить недоступные складские позиции из окна предварительного просмотра поиска" -#: common/setting/user.py:89 +#: common/setting/user.py:95 msgid "Search Locations" msgstr "Поиск мест хранения" -#: common/setting/user.py:90 +#: common/setting/user.py:96 msgid "Display stock locations in search preview window" msgstr "Отображать места хранения в окне предварительного просмотра поиска" -#: common/setting/user.py:95 +#: common/setting/user.py:101 msgid "Search Companies" msgstr "Поиск компаний" -#: common/setting/user.py:96 +#: common/setting/user.py:102 msgid "Display companies in search preview window" -msgstr "" +msgstr "Отображать компании в окне предварительного поиска" -#: common/setting/user.py:101 +#: common/setting/user.py:107 msgid "Search Build Orders" msgstr "Поиск заказов на производство" -#: common/setting/user.py:102 +#: common/setting/user.py:108 msgid "Display build orders in search preview window" msgstr "Отображать заказы на производство в окне предварительного просмотра поиска" -#: common/setting/user.py:107 +#: common/setting/user.py:113 msgid "Search Purchase Orders" msgstr "Поиск заказов на покупку" -#: common/setting/user.py:108 -msgid "Display purchase orders in search preview window" -msgstr "" - -#: common/setting/user.py:113 -msgid "Exclude Inactive Purchase Orders" -msgstr "" - #: common/setting/user.py:114 -msgid "Exclude inactive purchase orders from search preview window" -msgstr "" +msgid "Display purchase orders in search preview window" +msgstr "Отображать заказы на закупку в окне предварительного поиска" #: common/setting/user.py:119 +msgid "Exclude Inactive Purchase Orders" +msgstr "Исключить неактивные заказы на закупку" + +#: common/setting/user.py:120 +msgid "Exclude inactive purchase orders from search preview window" +msgstr "Исключать неактивные заказы на закупку из окна предварительного поиска" + +#: common/setting/user.py:125 msgid "Search Sales Orders" msgstr "Поиск заказов на продажу" -#: common/setting/user.py:120 -msgid "Display sales orders in search preview window" -msgstr "" - -#: common/setting/user.py:125 -msgid "Exclude Inactive Sales Orders" -msgstr "" - #: common/setting/user.py:126 -msgid "Exclude inactive sales orders from search preview window" -msgstr "" +msgid "Display sales orders in search preview window" +msgstr "Отображать заказы на продажу в окне предварительного поиска" #: common/setting/user.py:131 -msgid "Search Sales Order Shipments" -msgstr "" +msgid "Exclude Inactive Sales Orders" +msgstr "Исключить неактивные заказы на продажу" #: common/setting/user.py:132 -msgid "Display sales order shipments in search preview window" -msgstr "" +msgid "Exclude inactive sales orders from search preview window" +msgstr "Исключать неактивные заказы на продажу из окна предварительного поиска" #: common/setting/user.py:137 +msgid "Search Sales Order Shipments" +msgstr "Искать отгрузки заказов на продажу" + +#: common/setting/user.py:138 +msgid "Display sales order shipments in search preview window" +msgstr "Отображать отгрузки заказов на продажу в окне предварительного поиска" + +#: common/setting/user.py:143 msgid "Search Return Orders" msgstr "Поиск заказов на возврат" -#: common/setting/user.py:138 -msgid "Display return orders in search preview window" -msgstr "" - -#: common/setting/user.py:143 -msgid "Exclude Inactive Return Orders" -msgstr "" - #: common/setting/user.py:144 -msgid "Exclude inactive return orders from search preview window" -msgstr "" +msgid "Display return orders in search preview window" +msgstr "Отображать заказы на возврат в окне предварительного поиска" #: common/setting/user.py:149 -msgid "Search Preview Results" -msgstr "" +msgid "Exclude Inactive Return Orders" +msgstr "Исключить неактивные заказы на возврат" -#: common/setting/user.py:151 -msgid "Number of results to show in each section of the search preview window" -msgstr "" +#: common/setting/user.py:150 +msgid "Exclude inactive return orders from search preview window" +msgstr "Исключать неактивные заказы на возврат из окна предварительного поиска" + +#: common/setting/user.py:155 +msgid "Search Preview Results" +msgstr "Предварительные результаты поиска" #: common/setting/user.py:157 +msgid "Number of results to show in each section of the search preview window" +msgstr "Количество результатов для отображения в каждом разделе окна предварительного поиска" + +#: common/setting/user.py:163 msgid "Regex Search" msgstr "Поиск по Regex" -#: common/setting/user.py:158 -msgid "Enable regular expressions in search queries" -msgstr "" - -#: common/setting/user.py:163 -msgid "Whole Word Search" -msgstr "" - #: common/setting/user.py:164 -msgid "Search queries return results for whole word matches" -msgstr "" +msgid "Enable regular expressions in search queries" +msgstr "Разрешить регулярные выражения в поисковых запросах" #: common/setting/user.py:169 -msgid "Search Notes" -msgstr "" +msgid "Whole Word Search" +msgstr "Поиск по целым словам" -#: common/setting/user.py:171 -msgid "Search queries return results for matches from the item's notes" -msgstr "" +#: common/setting/user.py:170 +msgid "Search queries return results for whole word matches" +msgstr "Поисковые запросы возвращают результаты по полным совпадениям слов" + +#: common/setting/user.py:175 +msgid "Search Notes" +msgstr "Поиск по заметкам" #: common/setting/user.py:177 +msgid "Search queries return results for matches from the item's notes" +msgstr "Поисковые запросы возвращают результаты, соответствующие заметкам элемента" + +#: common/setting/user.py:183 msgid "Escape Key Closes Forms" msgstr "Закрытие форм по клавише Escape" -#: common/setting/user.py:178 +#: common/setting/user.py:184 msgid "Use the escape key to close modal forms" msgstr "Модальные окна можно закрывать с помощью клавиши Escape" -#: common/setting/user.py:183 +#: common/setting/user.py:189 msgid "Fixed Navbar" msgstr "Фиксированная панель навигации" -#: common/setting/user.py:184 +#: common/setting/user.py:190 msgid "The navbar position is fixed to the top of the screen" msgstr "Положение панели навигации фиксируется в верхней части экрана" -#: common/setting/user.py:189 -msgid "Fixed Table Headers" -msgstr "" - -#: common/setting/user.py:190 -msgid "Table headers are fixed to the top of the table" -msgstr "" - #: common/setting/user.py:195 -msgid "Show Spotlight" -msgstr "" +msgid "Fixed Table Headers" +msgstr "Фиксированные заголовки таблицы" #: common/setting/user.py:196 -msgid "Enable spotlight navigation functionality" -msgstr "" +msgid "Table headers are fixed to the top of the table" +msgstr "Заголовки таблицы закреплены в верхней части таблицы" #: common/setting/user.py:201 +msgid "Show Spotlight" +msgstr "Показывать Spotlight" + +#: common/setting/user.py:202 +msgid "Enable spotlight navigation functionality" +msgstr "Включить функциональность Spotlight" + +#: common/setting/user.py:207 msgid "Navigation Icons" msgstr "Значки навигации" -#: common/setting/user.py:202 +#: common/setting/user.py:208 msgid "Display icons in the navigation bar" msgstr "Отображать значки в панели навигации" -#: common/setting/user.py:207 +#: common/setting/user.py:213 msgid "Date Format" msgstr "Формат даты" -#: common/setting/user.py:208 +#: common/setting/user.py:214 msgid "Preferred format for displaying dates" msgstr "Предпочтительный формат для отображения дат" -#: common/setting/user.py:221 -msgid "Show Stock History" -msgstr "" - -#: common/setting/user.py:222 -msgid "Display stock history information in the part detail page" -msgstr "" - #: common/setting/user.py:227 -msgid "Show Last Breadcrumb" -msgstr "" +msgid "Show Stock History" +msgstr "Показывать историю запасов" #: common/setting/user.py:228 -msgid "Show the current page in breadcrumbs" -msgstr "" +msgid "Display stock history information in the part detail page" +msgstr "Отображать информацию об истории запасов на странице детали" #: common/setting/user.py:233 -msgid "Show full stock location in tables" -msgstr "" +msgid "Show Last Breadcrumb" +msgstr "Показывать последний элемент хлебных крошек" -#: common/setting/user.py:235 -msgid "Disabled: The full location path is displayed as a hover tooltip. Enabled: The full location path is displayed as plain text." -msgstr "" +#: common/setting/user.py:234 +msgid "Show the current page in breadcrumbs" +msgstr "Показывать текущую страницу в хлебных крошках" + +#: common/setting/user.py:239 +msgid "Show full stock location in tables" +msgstr "Показывать полный путь местоположения в таблицах" #: common/setting/user.py:241 -msgid "Show full part categories in tables" -msgstr "" +msgid "Disabled: The full location path is displayed as a hover tooltip. Enabled: The full location path is displayed as plain text." +msgstr "Выключено: полный путь местоположения отображается во всплывающей подсказке. Включено: полный путь местоположения отображается как обычный текст." -#: common/setting/user.py:243 -msgid "Disabled: The full category path is displayed as a hover tooltip. Enabled: The full category path is displayed as plain text." -msgstr "" +#: common/setting/user.py:247 +msgid "Show full part categories in tables" +msgstr "Показывать полные категории деталей в таблицах" #: common/setting/user.py:249 -msgid "Receive error reports" -msgstr "" - -#: common/setting/user.py:250 -msgid "Receive notifications for system errors" -msgstr "" +msgid "Disabled: The full category path is displayed as a hover tooltip. Enabled: The full category path is displayed as plain text." +msgstr "Выключено: полный путь категории отображается во всплывающей подсказке. Включено: полный путь категории отображается как обычный текст." #: common/setting/user.py:255 -msgid "Last used printing machines" -msgstr "" +msgid "Receive error reports" +msgstr "Получать отчёты об ошибках" #: common/setting/user.py:256 +msgid "Receive notifications for system errors" +msgstr "Получать уведомления о системных ошибках" + +#: common/setting/user.py:261 +msgid "Last used printing machines" +msgstr "Последние использованные печатающие машины" + +#: common/setting/user.py:262 msgid "Save the last used printing machines for a user" +msgstr "Сохранять последние использованные печатающие машины для пользователя" + +#: common/validators.py:38 +msgid "All models" msgstr "" -#: common/validators.py:34 +#: common/validators.py:63 msgid "No attachment model type provided" -msgstr "" +msgstr "Не указан тип модели вложения" -#: common/validators.py:40 +#: common/validators.py:69 msgid "Invalid attachment model type" -msgstr "" +msgstr "Недопустимый тип модели вложения" -#: common/validators.py:81 +#: common/validators.py:110 msgid "Minimum places cannot be greater than maximum places" -msgstr "" +msgstr "Минимальное количество знаков не может быть больше максимального" -#: common/validators.py:93 +#: common/validators.py:122 msgid "Maximum places cannot be less than minimum places" -msgstr "" +msgstr "Максимальное количество знаков не может быть меньше минимального" -#: common/validators.py:104 +#: common/validators.py:133 msgid "An empty domain is not allowed." msgstr "Пустой домен не допускается." -#: common/validators.py:106 +#: common/validators.py:135 #, python-brace-format msgid "Invalid domain name: {domain}" msgstr "Недопустимое доменное имя: {domain}" -#: common/validators.py:122 +#: common/validators.py:151 msgid "Value must be uppercase" -msgstr "" +msgstr "Значение должно быть в верхнем регистре" -#: common/validators.py:128 +#: common/validators.py:157 msgid "Value must be a valid variable identifier" -msgstr "" +msgstr "Значение должно быть допустимым идентификатором переменной" -#: company/api.py:147 +#: company/api.py:141 msgid "Part is Active" -msgstr "" +msgstr "Деталь активна" -#: company/api.py:151 +#: company/api.py:145 msgid "Manufacturer is Active" -msgstr "" +msgstr "Производитель активен" -#: company/api.py:286 +#: company/api.py:246 msgid "Supplier Part is Active" -msgstr "" +msgstr "Поставляемая деталь активна" -#: company/api.py:290 +#: company/api.py:250 msgid "Internal Part is Active" -msgstr "" +msgstr "Внутренняя деталь активна" -#: company/api.py:295 +#: company/api.py:255 msgid "Supplier is Active" -msgstr "" +msgstr "Поставщик активен" -#: company/api.py:307 company/models.py:520 company/serializers.py:457 -#: part/serializers.py:566 +#: company/api.py:267 company/models.py:522 company/serializers.py:502 +#: part/serializers.py:477 msgid "Manufacturer" msgstr "Производитель" -#: company/api.py:314 company/models.py:121 company/models.py:392 +#: company/api.py:274 company/models.py:122 company/models.py:393 #: stock/api.py:900 msgid "Company" msgstr "Компания" -#: company/api.py:324 +#: company/api.py:284 msgid "Has Stock" -msgstr "" +msgstr "Есть запас" -#: company/models.py:122 +#: company/models.py:123 msgid "Companies" msgstr "Компании" -#: company/models.py:150 +#: company/models.py:151 msgid "Company description" msgstr "Описание компании" -#: company/models.py:151 +#: company/models.py:152 msgid "Description of the company" msgstr "Описание компании" -#: company/models.py:157 +#: company/models.py:158 msgid "Website" msgstr "Сайт" -#: company/models.py:158 +#: company/models.py:159 msgid "Company website URL" msgstr "Сайт компании" -#: company/models.py:164 +#: company/models.py:165 msgid "Phone number" msgstr "Телефон" -#: company/models.py:166 +#: company/models.py:167 msgid "Contact phone number" msgstr "Контактный телефон" -#: company/models.py:173 +#: company/models.py:174 msgid "Contact email address" msgstr "Электронная почта контакта" -#: company/models.py:178 company/models.py:296 order/models.py:513 +#: company/models.py:179 company/models.py:297 order/models.py:514 #: users/models.py:561 msgid "Contact" msgstr "Контакт" -#: company/models.py:180 +#: company/models.py:181 msgid "Point of contact" msgstr "Контактное лицо" -#: company/models.py:186 +#: company/models.py:187 msgid "Link to external company information" msgstr "Ссылка на описание компании" -#: company/models.py:191 +#: company/models.py:192 msgid "Is this company active?" msgstr "Эта компания активна?" -#: company/models.py:196 +#: company/models.py:197 msgid "Is customer" msgstr "Покупатель" -#: company/models.py:197 +#: company/models.py:198 msgid "Do you sell items to this company?" msgstr "Является ли компания покупателем?" -#: company/models.py:202 +#: company/models.py:203 msgid "Is supplier" msgstr "Поставщик" -#: company/models.py:203 +#: company/models.py:204 msgid "Do you purchase items from this company?" msgstr "Является ли компания поставщиком деталей?" -#: company/models.py:208 +#: company/models.py:209 msgid "Is manufacturer" msgstr "Производитель" -#: company/models.py:209 +#: company/models.py:210 msgid "Does this company manufacture parts?" msgstr "Является ли компания производителем деталей?" -#: company/models.py:217 +#: company/models.py:218 msgid "Default currency used for this company" msgstr "Для этой компании используется валюта по умолчанию" -#: company/models.py:224 -msgid "Tax ID" -msgstr "" - #: company/models.py:225 -msgid "Company Tax ID" -msgstr "" +msgid "Tax ID" +msgstr "Налоговый идентификатор" -#: company/models.py:335 order/models.py:523 order/models.py:2288 +#: company/models.py:226 +msgid "Company Tax ID" +msgstr "Налоговый идентификатор компании" + +#: company/models.py:336 order/models.py:524 order/models.py:2289 msgid "Address" msgstr "Адрес" -#: company/models.py:336 +#: company/models.py:337 msgid "Addresses" msgstr "Адреса" -#: company/models.py:393 +#: company/models.py:394 msgid "Select company" msgstr "Выберите компанию" -#: company/models.py:398 +#: company/models.py:399 msgid "Address title" msgstr "Заголовок адреса" -#: company/models.py:399 +#: company/models.py:400 msgid "Title describing the address entry" -msgstr "" +msgstr "Заголовок, описывающий запись адреса" -#: company/models.py:405 +#: company/models.py:406 msgid "Primary address" msgstr "Основной адрес" -#: company/models.py:406 +#: company/models.py:407 msgid "Set as primary address" msgstr "Указать основным адресом" -#: company/models.py:411 +#: company/models.py:412 msgid "Line 1" msgstr "Строка 1" -#: company/models.py:412 +#: company/models.py:413 msgid "Address line 1" msgstr "Адресная строка 1" -#: company/models.py:418 +#: company/models.py:419 msgid "Line 2" msgstr "Строка 2" -#: company/models.py:419 +#: company/models.py:420 msgid "Address line 2" msgstr "Адресная строка 2" -#: company/models.py:425 company/models.py:426 +#: company/models.py:426 company/models.py:427 msgid "Postal code" msgstr "Почтовый индекс" -#: company/models.py:432 +#: company/models.py:433 msgid "City/Region" msgstr "Город/Регион" -#: company/models.py:433 +#: company/models.py:434 msgid "Postal code city/region" -msgstr "" +msgstr "Почтовый индекс, город/регион" -#: company/models.py:439 +#: company/models.py:440 msgid "State/Province" msgstr "Регион/Область" -#: company/models.py:440 +#: company/models.py:441 msgid "State or province" -msgstr "" +msgstr "Штат или провинция" -#: company/models.py:446 +#: company/models.py:447 msgid "Country" msgstr "Страна" -#: company/models.py:447 +#: company/models.py:448 msgid "Address country" msgstr "Страна адреса" -#: company/models.py:453 +#: company/models.py:454 msgid "Courier shipping notes" msgstr "Записи отправления" -#: company/models.py:454 +#: company/models.py:455 msgid "Notes for shipping courier" msgstr "Записи для курьера" -#: company/models.py:460 +#: company/models.py:461 msgid "Internal shipping notes" msgstr "Внутренние записи отправления" -#: company/models.py:461 +#: company/models.py:462 msgid "Shipping notes for internal use" msgstr "Записи отправления для внутреннего пользования" -#: company/models.py:468 +#: company/models.py:469 msgid "Link to address information (external)" msgstr "Ссылка на адресную информацию (внешняя)" -#: company/models.py:492 company/models.py:609 company/models.py:832 -#: company/serializers.py:471 stock/api.py:561 +#: company/models.py:494 company/models.py:786 company/serializers.py:516 +#: stock/api.py:561 msgid "Manufacturer Part" msgstr "Производитель детали" -#: company/models.py:509 company/models.py:800 stock/models.py:1025 +#: company/models.py:511 company/models.py:754 stock/models.py:1025 #: stock/serializers.py:407 msgid "Base Part" msgstr "Базовая деталь" -#: company/models.py:511 company/models.py:802 +#: company/models.py:513 company/models.py:756 msgid "Select part" msgstr "Выберите деталь" -#: company/models.py:521 +#: company/models.py:523 msgid "Select manufacturer" msgstr "Выберите производителя" -#: company/models.py:527 company/serializers.py:479 order/serializers.py:734 -#: part/serializers.py:576 +#: company/models.py:529 company/serializers.py:524 order/serializers.py:745 +#: part/serializers.py:487 msgid "MPN" msgstr "Артикул производителя" -#: company/models.py:528 stock/serializers.py:572 +#: company/models.py:530 stock/serializers.py:572 msgid "Manufacturer Part Number" msgstr "Артикул производителя" -#: company/models.py:535 +#: company/models.py:537 msgid "URL for external manufacturer part link" msgstr "Ссылка на сайт производителя" -#: company/models.py:544 +#: company/models.py:546 msgid "Manufacturer part description" msgstr "Описание детали производителя" -#: company/models.py:597 -msgid "Manufacturer Part Parameter" -msgstr "" - -#: company/models.py:616 -msgid "Parameter name" -msgstr "Наименование параметра" - -#: company/models.py:623 -msgid "Parameter value" -msgstr "Значение параметра" - -#: company/models.py:630 part/models.py:1195 part/models.py:3857 -msgid "Units" -msgstr "Единица измерения" - -#: company/models.py:631 -msgid "Parameter units" -msgstr "Единицы измерения параметра" - -#: company/models.py:740 +#: company/models.py:694 msgid "Pack units must be compatible with the base part units" -msgstr "" +msgstr "Единицы измерения упаковки должны быть совместимы с единицами базовой детали" -#: company/models.py:747 +#: company/models.py:701 msgid "Pack units must be greater than zero" -msgstr "" +msgstr "Единицы упаковки должны быть больше нуля" -#: company/models.py:761 +#: company/models.py:715 msgid "Linked manufacturer part must reference the same base part" msgstr "Связанная деталь производителя должна ссылаться на ту же базовую деталь" -#: company/models.py:810 company/serializers.py:449 company/serializers.py:467 -#: order/models.py:639 part/serializers.py:550 +#: company/models.py:764 company/serializers.py:494 company/serializers.py:512 +#: order/models.py:640 part/serializers.py:461 #: plugin/builtin/suppliers/digikey.py:26 plugin/builtin/suppliers/lcsc.py:27 #: plugin/builtin/suppliers/mouser.py:25 plugin/builtin/suppliers/tme.py:27 #: stock/api.py:567 templates/email/overdue_purchase_order.html:16 msgid "Supplier" msgstr "Поставщик" -#: company/models.py:811 +#: company/models.py:765 msgid "Select supplier" msgstr "Выберите поставщика" -#: company/models.py:817 part/serializers.py:561 +#: company/models.py:771 part/serializers.py:472 msgid "Supplier stock keeping unit" msgstr "Артикул поставщика" -#: company/models.py:823 +#: company/models.py:777 msgid "Is this supplier part active?" -msgstr "" +msgstr "Является ли эта поставляемая деталь активной?" -#: company/models.py:833 +#: company/models.py:787 msgid "Select manufacturer part" msgstr "Выберите производителя части" -#: company/models.py:840 +#: company/models.py:794 msgid "URL for external supplier part link" msgstr "Ссылка на сайт поставщика" -#: company/models.py:849 +#: company/models.py:803 msgid "Supplier part description" msgstr "Описание детали поставщика" -#: company/models.py:856 order/serializers.py:883 order/serializers.py:2047 -#: part/models.py:4070 part/models.py:4450 part/models.py:4819 -#: report/templates/report/inventree_bill_of_materials_report.html:140 -#: report/templates/report/inventree_purchase_order_report.html:39 -#: report/templates/report/inventree_return_order_report.html:27 -#: report/templates/report/inventree_sales_order_report.html:32 -#: report/templates/report/inventree_stock_location_report.html:105 -#: stock/serializers.py:813 -msgid "Note" -msgstr "Заметка" - -#: company/models.py:865 part/models.py:2250 +#: company/models.py:819 part/models.py:2338 msgid "base cost" msgstr "базовая стоимость" -#: company/models.py:866 part/models.py:2251 +#: company/models.py:820 part/models.py:2339 msgid "Minimum charge (e.g. stocking fee)" -msgstr "" +msgstr "Минимальная плата (например, складская)" -#: company/models.py:873 order/serializers.py:875 stock/models.py:1056 +#: company/models.py:827 order/serializers.py:886 stock/models.py:1056 #: stock/serializers.py:1606 msgid "Packaging" msgstr "Упаковка" -#: company/models.py:874 +#: company/models.py:828 msgid "Part packaging" msgstr "Упаковка детали" -#: company/models.py:879 +#: company/models.py:833 msgid "Pack Quantity" msgstr "Количество в упаковке" -#: company/models.py:881 +#: company/models.py:835 msgid "Total quantity supplied in a single pack. Leave empty for single items." msgstr "Общее количество, поставляемое в одной упаковке. Оставьте пустым для отдельных элементов." -#: company/models.py:900 part/models.py:2257 +#: company/models.py:854 part/models.py:2345 msgid "multiple" msgstr "множественные" -#: company/models.py:901 +#: company/models.py:855 msgid "Order multiple" msgstr "Кратность заказа" -#: company/models.py:913 +#: company/models.py:867 msgid "Quantity available from supplier" -msgstr "" +msgstr "Количество, доступное у поставщика" -#: company/models.py:919 +#: company/models.py:873 msgid "Availability Updated" -msgstr "" +msgstr "Доступность обновлена" -#: company/models.py:920 +#: company/models.py:874 msgid "Date of last update of availability data" -msgstr "" +msgstr "Дата последнего обновления данных о доступности" -#: company/models.py:1048 +#: company/models.py:1002 msgid "Supplier Price Break" +msgstr "Ценовой порог поставщика" + +#: company/serializers.py:184 +msgid "Primary Address" msgstr "" -#: company/serializers.py:181 +#: company/serializers.py:186 msgid "Return the string representation for the primary address. This property exists for backwards compatibility." -msgstr "" +msgstr "Возвращает строковое представление основного адреса. Это свойство существует для обратной совместимости." -#: company/serializers.py:212 +#: company/serializers.py:218 msgid "Default currency used for this supplier" msgstr "Валюта по умолчанию для этого поставщика" -#: company/serializers.py:248 +#: company/serializers.py:260 msgid "Company Name" -msgstr "" +msgstr "Название компании" -#: company/serializers.py:433 part/serializers.py:955 stock/serializers.py:428 +#: company/serializers.py:460 part/serializers.py:840 stock/serializers.py:428 msgid "In Stock" msgstr "На складе" +#: company/serializers.py:477 +msgid "Price Breaks" +msgstr "Ценовые пороги" + #: data_exporter/mixins.py:325 data_exporter/mixins.py:403 msgid "Error occurred during data export" -msgstr "" +msgstr "Произошла ошибка при экспорте данных" #: data_exporter/mixins.py:381 msgid "Data export plugin returned incorrect data format" -msgstr "" +msgstr "Плагин экспорта данных вернул неправильный формат данных" #: data_exporter/serializers.py:73 msgid "Export Format" @@ -4168,19 +4296,19 @@ msgstr "Дополнительная информация о состоянии #: generic/states/fields.py:160 msgid "Custom status key" -msgstr "" +msgstr "Пользовательский ключ статуса" #: generic/states/serializers.py:26 msgid "Custom" -msgstr "" +msgstr "Пользовательский" #: generic/states/serializers.py:37 msgid "Class" -msgstr "" +msgstr "Класс" #: generic/states/serializers.py:40 msgid "Values" -msgstr "" +msgstr "Значения" #: generic/states/tests.py:22 order/status_codes.py:13 msgid "Placed" @@ -4188,7 +4316,7 @@ msgstr "Оформлен" #: generic/states/validators.py:21 msgid "Invalid status code" -msgstr "" +msgstr "Недопустимый код статуса" #: importer/models.py:73 msgid "Data File" @@ -4204,51 +4332,51 @@ msgstr "Столбцы" #: importer/models.py:90 msgid "Target model type for this import session" -msgstr "" +msgstr "Целевой тип модели для этой сессии импорта" #: importer/models.py:96 msgid "Import status" -msgstr "" +msgstr "Статус импорта" #: importer/models.py:106 msgid "Field Defaults" -msgstr "" +msgstr "Значения по умолчанию" #: importer/models.py:113 msgid "Field Overrides" -msgstr "" +msgstr "Переопределения полей" #: importer/models.py:120 msgid "Field Filters" -msgstr "" +msgstr "Фильтры полей" #: importer/models.py:126 msgid "Update Existing Records" -msgstr "" +msgstr "Обновлять существующие записи" #: importer/models.py:127 msgid "If enabled, existing records will be updated with new data" -msgstr "" +msgstr "Если включено, существующие записи будут обновлены новыми данными" #: importer/models.py:259 msgid "Some required fields have not been mapped" -msgstr "" +msgstr "Некоторые обязательные поля не были сопоставлены" #: importer/models.py:366 msgid "ID" -msgstr "" +msgstr "ID" #: importer/models.py:367 msgid "Existing database identifier for the record" -msgstr "" +msgstr "Существующий идентификатор записи в базе данных" #: importer/models.py:430 msgid "Column is already mapped to a database field" -msgstr "" +msgstr "Колонка уже сопоставлена с полем базы данных" #: importer/models.py:435 msgid "Field is already mapped to a data column" -msgstr "" +msgstr "Поле уже сопоставлено с колонкой данных" #: importer/models.py:444 msgid "Column mapping must be linked to a valid import session" @@ -4256,27 +4384,27 @@ msgstr "Сопоставление столбцов должно быть свя #: importer/models.py:449 msgid "Column does not exist in the data file" -msgstr "" +msgstr "Колонка не существует в файле данных" #: importer/models.py:456 msgid "Field does not exist in the target model" -msgstr "" +msgstr "Поле не существует в целевой модели" #: importer/models.py:460 msgid "Selected field is read-only" -msgstr "" +msgstr "Выбранное поле доступно только для чтения" #: importer/models.py:465 importer/models.py:536 msgid "Import Session" -msgstr "" +msgstr "Сессия импорта" #: importer/models.py:469 msgid "Field" -msgstr "" +msgstr "Поле" #: importer/models.py:471 msgid "Column" -msgstr "" +msgstr "Колонка" #: importer/models.py:540 msgid "Row Index" @@ -4284,51 +4412,51 @@ msgstr "Номер строки" #: importer/models.py:543 msgid "Original row data" -msgstr "" +msgstr "Исходные данные строки" #: importer/models.py:548 machine/models.py:111 msgid "Errors" msgstr "Ошибки" -#: importer/models.py:550 part/serializers.py:1268 +#: importer/models.py:550 part/serializers.py:1133 msgid "Valid" msgstr "Корректный" #: importer/models.py:720 msgid "ID is required for updating existing records." -msgstr "" +msgstr "Для обновления существующих записей требуется ID." #: importer/models.py:727 msgid "No record found with the provided ID" -msgstr "" +msgstr "Запись с указанным ID не найдена" #: importer/models.py:733 msgid "Invalid ID format provided" -msgstr "" +msgstr "Указан недействительный формат ID" #: importer/operations.py:31 importer/operations.py:52 msgid "Unsupported data file format" -msgstr "" +msgstr "Неподдерживаемый формат файла данных" #: importer/operations.py:43 msgid "Failed to open data file" -msgstr "" +msgstr "Не удалось открыть файл данных" #: importer/operations.py:54 msgid "Invalid data file dimensions" -msgstr "" +msgstr "Недопустимые размеры файла данных" #: importer/serializers.py:92 msgid "Invalid field defaults" -msgstr "" +msgstr "Недопустимые значения по умолчанию для полей" #: importer/serializers.py:105 msgid "Invalid field overrides" -msgstr "" +msgstr "Недопустимые переопределения полей" #: importer/serializers.py:118 msgid "Invalid field filters" -msgstr "" +msgstr "Недопустимые фильтры полей" #: importer/serializers.py:177 msgid "Rows" @@ -4336,23 +4464,23 @@ msgstr "Строки" #: importer/serializers.py:178 msgid "List of row IDs to accept" -msgstr "" +msgstr "Список идентификаторов строк, которые нужно принять" #: importer/serializers.py:191 msgid "No rows provided" -msgstr "" +msgstr "Строки не предоставлены" #: importer/serializers.py:195 msgid "Row does not belong to this session" -msgstr "" +msgstr "Строка не принадлежит этой сессии" #: importer/serializers.py:198 msgid "Row contains invalid data" -msgstr "" +msgstr "Строка содержит недопустимые данные" #: importer/serializers.py:201 msgid "Row has already been completed" -msgstr "" +msgstr "Строка уже завершена" #: importer/status_codes.py:13 msgid "Initializing" @@ -4360,35 +4488,35 @@ msgstr "Инициализация" #: importer/status_codes.py:18 msgid "Mapping Columns" -msgstr "" +msgstr "Сопоставление колонок" #: importer/status_codes.py:21 msgid "Importing Data" -msgstr "" +msgstr "Импорт данных" #: importer/status_codes.py:24 msgid "Processing Data" -msgstr "" +msgstr "Обработка данных" #: importer/validators.py:21 msgid "Data file exceeds maximum size limit" -msgstr "" +msgstr "Файл данных превышает максимальный допустимый размер" #: importer/validators.py:26 msgid "Data file contains no headers" -msgstr "" +msgstr "Файл данных не содержит заголовков" #: importer/validators.py:29 msgid "Data file contains too many columns" -msgstr "" +msgstr "Файл данных содержит слишком много колонок" #: importer/validators.py:32 msgid "Data file contains too many rows" -msgstr "" +msgstr "Файл данных содержит слишком много строк" #: importer/validators.py:53 msgid "Value must be a valid dictionary object" -msgstr "" +msgstr "Значение должно быть допустимым объектом словаря" #: machine/machine_types/label_printer.py:212 msgid "Copies" @@ -4396,13 +4524,13 @@ msgstr "Копии" #: machine/machine_types/label_printer.py:213 msgid "Number of copies to print for each label" -msgstr "" +msgstr "Количество копий для печати каждой этикетки" #: machine/machine_types/label_printer.py:231 msgid "Connected" msgstr "Подключен" -#: machine/machine_types/label_printer.py:232 order/api.py:1795 +#: machine/machine_types/label_printer.py:232 order/api.py:1800 msgid "Unknown" msgstr "Неизвестно" @@ -4412,23 +4540,23 @@ msgstr "Печать" #: machine/machine_types/label_printer.py:234 msgid "Warning" -msgstr "" +msgstr "Предупреждение" #: machine/machine_types/label_printer.py:235 msgid "No media" -msgstr "" +msgstr "Нет носителя" #: machine/machine_types/label_printer.py:236 msgid "Paper jam" -msgstr "" +msgstr "Замятие бумаги" #: machine/machine_types/label_printer.py:237 msgid "Disconnected" -msgstr "" +msgstr "Отключено" #: machine/machine_types/label_printer.py:238 msgid "Error" -msgstr "" +msgstr "Ошибка" #: machine/machine_types/label_printer.py:245 msgid "Label Printer" @@ -4436,7 +4564,7 @@ msgstr "Принтер этикеток" #: machine/machine_types/label_printer.py:246 msgid "Directly print labels for various items." -msgstr "" +msgstr "Печать этикеток для различных элементов напрямую." #: machine/machine_types/label_printer.py:252 msgid "Printer Location" @@ -4444,7 +4572,7 @@ msgstr "Расположение принтера" #: machine/machine_types/label_printer.py:253 msgid "Scope the printer to a specific location" -msgstr "" +msgstr "Ограничить принтер конкретным местоположением" #: machine/models.py:26 msgid "Name of machine" @@ -4476,35 +4604,35 @@ msgstr "Драйвер доступен" #: machine/models.py:101 msgid "No errors" -msgstr "" +msgstr "Ошибок нет" #: machine/models.py:106 msgid "Initialized" -msgstr "" +msgstr "Инициализировано" #: machine/models.py:118 msgid "Machine status" -msgstr "" +msgstr "Статус машины" #: machine/models.py:146 msgid "Machine" -msgstr "" +msgstr "Машина" #: machine/models.py:158 msgid "Machine Config" -msgstr "" +msgstr "Конфигурация машины" #: machine/models.py:163 msgid "Config type" -msgstr "" +msgstr "Тип конфигурации" #: machine/serializers.py:24 msgid "Key of the property" -msgstr "" +msgstr "Ключ свойства" #: machine/serializers.py:27 msgid "Value of the property" -msgstr "" +msgstr "Значение свойства" #: machine/serializers.py:30 users/models.py:238 msgid "Group" @@ -4512,123 +4640,123 @@ msgstr "Группа" #: machine/serializers.py:30 msgid "Grouping of the property" -msgstr "" +msgstr "Группа свойства" #: machine/serializers.py:33 msgid "Type" -msgstr "" +msgstr "Тип" #: machine/serializers.py:35 msgid "Type of the property" -msgstr "" +msgstr "Тип свойства" #: machine/serializers.py:40 msgid "Max Progress" -msgstr "" +msgstr "Максимальный прогресс" #: machine/serializers.py:41 msgid "Maximum value for progress type, required if type=progress" -msgstr "" +msgstr "Максимальное значение для типа прогресса, требуется, если тип=progress" -#: order/api.py:125 +#: order/api.py:130 msgid "Order Reference" msgstr "Ссылка на заказ" -#: order/api.py:153 order/api.py:1207 +#: order/api.py:158 order/api.py:1212 msgid "Outstanding" msgstr "Невыполненный" -#: order/api.py:169 +#: order/api.py:174 msgid "Has Project Code" -msgstr "" +msgstr "Есть код проекта" -#: order/api.py:183 order/models.py:488 +#: order/api.py:188 order/models.py:489 msgid "Created By" msgstr "Создал" -#: order/api.py:187 +#: order/api.py:192 msgid "Created Before" -msgstr "" +msgstr "Создано до" -#: order/api.py:191 +#: order/api.py:196 msgid "Created After" -msgstr "" +msgstr "Создано после" -#: order/api.py:195 +#: order/api.py:200 msgid "Has Start Date" -msgstr "" +msgstr "Есть дата начала" -#: order/api.py:203 +#: order/api.py:208 msgid "Start Date Before" -msgstr "" +msgstr "Дата начала до" -#: order/api.py:207 +#: order/api.py:212 msgid "Start Date After" -msgstr "" +msgstr "Дата начала после" -#: order/api.py:211 +#: order/api.py:216 msgid "Has Target Date" -msgstr "" +msgstr "Есть целевая дата" -#: order/api.py:219 +#: order/api.py:224 msgid "Target Date Before" -msgstr "" +msgstr "Целевая дата до" -#: order/api.py:223 +#: order/api.py:228 msgid "Target Date After" -msgstr "" +msgstr "Целевая дата после" -#: order/api.py:274 +#: order/api.py:279 msgid "Has Pricing" msgstr "Имеет цену" -#: order/api.py:327 order/api.py:812 order/api.py:1490 +#: order/api.py:332 order/api.py:818 order/api.py:1495 msgid "Completed Before" -msgstr "" +msgstr "Завершено до" -#: order/api.py:331 order/api.py:816 order/api.py:1494 +#: order/api.py:336 order/api.py:822 order/api.py:1499 msgid "Completed After" -msgstr "" +msgstr "Завершено после" -#: order/api.py:337 order/api.py:341 +#: order/api.py:342 order/api.py:346 msgid "External Build Order" msgstr "Сторонний заказ на сборку" -#: order/api.py:526 order/api.py:914 order/api.py:1170 order/models.py:1922 -#: order/models.py:2049 order/models.py:2099 order/models.py:2279 -#: order/models.py:2477 order/models.py:2999 order/models.py:3065 +#: order/api.py:532 order/api.py:919 order/api.py:1175 order/models.py:1923 +#: order/models.py:2050 order/models.py:2100 order/models.py:2280 +#: order/models.py:2478 order/models.py:3000 order/models.py:3066 msgid "Order" msgstr "Заказ" -#: order/api.py:530 order/api.py:982 +#: order/api.py:536 order/api.py:987 msgid "Order Complete" -msgstr "" +msgstr "Заказ выполнен" -#: order/api.py:562 order/api.py:566 order/serializers.py:745 +#: order/api.py:568 order/api.py:572 order/serializers.py:756 msgid "Internal Part" msgstr "Внутренняя деталь" -#: order/api.py:584 +#: order/api.py:590 msgid "Order Pending" -msgstr "" +msgstr "Заказ в ожидании" -#: order/api.py:967 +#: order/api.py:972 msgid "Completed" msgstr "Завершённые" -#: order/api.py:1223 +#: order/api.py:1228 msgid "Has Shipment" -msgstr "" +msgstr "Есть отгрузка" -#: order/api.py:1789 order/models.py:552 order/models.py:1923 -#: order/models.py:2050 +#: order/api.py:1794 order/models.py:553 order/models.py:1924 +#: order/models.py:2051 #: report/templates/report/inventree_purchase_order_report.html:14 #: stock/serializers.py:129 templates/email/overdue_purchase_order.html:15 msgid "Purchase Order" msgstr "Заказ на закупку" -#: order/api.py:1791 order/models.py:1251 order/models.py:2100 -#: order/models.py:2280 order/models.py:2478 +#: order/api.py:1796 order/models.py:1252 order/models.py:2101 +#: order/models.py:2281 order/models.py:2479 #: report/templates/report/inventree_build_order_report.html:135 #: report/templates/report/inventree_sales_order_report.html:14 #: report/templates/report/inventree_sales_order_shipment_report.html:15 @@ -4636,8 +4764,8 @@ msgstr "Заказ на закупку" msgid "Sales Order" msgstr "Заказ на продажу" -#: order/api.py:1793 order/models.py:2649 order/models.py:3000 -#: order/models.py:3066 +#: order/api.py:1798 order/models.py:2650 order/models.py:3001 +#: order/models.py:3067 #: report/templates/report/inventree_return_order_report.html:13 #: templates/email/overdue_return_order.html:15 msgid "Return Order" @@ -4651,726 +4779,726 @@ msgstr "Общая стоимость" #: order/models.py:91 msgid "Total price for this order" -msgstr "" +msgstr "Общая стоимость этого заказа" -#: order/models.py:96 order/serializers.py:77 +#: order/models.py:96 order/serializers.py:78 msgid "Order Currency" msgstr "Валюта заказа" -#: order/models.py:99 order/serializers.py:78 +#: order/models.py:99 order/serializers.py:79 msgid "Currency for this order (leave blank to use company default)" msgstr "Валюта заказа (оставьте пустым для использования валюты по умолчанию для компании)" -#: order/models.py:324 +#: order/models.py:325 msgid "This order is locked and cannot be modified" -msgstr "" +msgstr "Этот заказ заблокирован и не может быть изменён" -#: order/models.py:376 +#: order/models.py:377 msgid "Contact does not match selected company" msgstr "Контакт не соответствует выбранной компании" -#: order/models.py:383 +#: order/models.py:384 msgid "Start date must be before target date" -msgstr "" +msgstr "Дата начала должна быть до целевой даты" -#: order/models.py:390 +#: order/models.py:391 msgid "Address does not match selected company" -msgstr "" +msgstr "Адрес не соответствует выбранной компании" -#: order/models.py:443 +#: order/models.py:444 msgid "Order description (optional)" msgstr "Описание заказа (дополнительно)" -#: order/models.py:452 order/models.py:1806 +#: order/models.py:453 order/models.py:1807 msgid "Select project code for this order" msgstr "Выберите код проекта для этого заказа" -#: order/models.py:458 order/models.py:1787 order/models.py:2344 +#: order/models.py:459 order/models.py:1788 order/models.py:2345 msgid "Link to external page" msgstr "Ссылка на внешнюю страницу" -#: order/models.py:465 +#: order/models.py:466 msgid "Start date" msgstr "Начальная дата" -#: order/models.py:466 +#: order/models.py:467 msgid "Scheduled start date for this order" msgstr "Запланированная начальная дата этого заказа" -#: order/models.py:472 order/models.py:1794 order/serializers.py:309 +#: order/models.py:473 order/models.py:1795 order/serializers.py:317 #: report/templates/report/inventree_build_order_report.html:125 msgid "Target Date" msgstr "Целевая дата" -#: order/models.py:474 +#: order/models.py:475 msgid "Expected date for order delivery. Order will be overdue after this date." msgstr "Ожидаемая дата доставки заказа. После этой даты заказ будет считаться просроченным." -#: order/models.py:494 +#: order/models.py:495 msgid "Issue Date" msgstr "Дата создания" -#: order/models.py:495 +#: order/models.py:496 msgid "Date order was issued" -msgstr "" +msgstr "Дата выдачи заказа" -#: order/models.py:503 +#: order/models.py:504 msgid "User or group responsible for this order" msgstr "Пользователь или группа, ответственная за этот заказ" -#: order/models.py:514 +#: order/models.py:515 msgid "Point of contact for this order" msgstr "Контактное лицо по данному заказу" -#: order/models.py:524 +#: order/models.py:525 msgid "Company address for this order" msgstr "Адрес компании по этому заказу" -#: order/models.py:615 order/models.py:1312 +#: order/models.py:616 order/models.py:1313 msgid "Order reference" msgstr "Ссылка на заказ" -#: order/models.py:624 order/models.py:1336 order/models.py:2737 +#: order/models.py:625 order/models.py:1337 order/models.py:2738 #: stock/serializers.py:559 stock/serializers.py:988 users/models.py:542 msgid "Status" msgstr "Статус" -#: order/models.py:625 +#: order/models.py:626 msgid "Purchase order status" -msgstr "" +msgstr "Статус заказа на закупку" -#: order/models.py:640 +#: order/models.py:641 msgid "Company from which the items are being ordered" msgstr "Компания, в которой детали заказываются" -#: order/models.py:651 +#: order/models.py:652 msgid "Supplier Reference" msgstr "Номер у поставщика" -#: order/models.py:652 +#: order/models.py:653 msgid "Supplier order reference code" msgstr "Номер заказа у поставщика" -#: order/models.py:661 +#: order/models.py:662 msgid "received by" msgstr "получил" -#: order/models.py:668 order/models.py:2752 +#: order/models.py:669 order/models.py:2753 msgid "Date order was completed" -msgstr "" +msgstr "Дата завершения заказа" -#: order/models.py:677 order/models.py:1981 +#: order/models.py:678 order/models.py:1982 msgid "Destination" msgstr "Место хранения" -#: order/models.py:678 order/models.py:1985 +#: order/models.py:679 order/models.py:1986 msgid "Destination for received items" msgstr "Место хранения для полученных позиций" -#: order/models.py:724 +#: order/models.py:725 msgid "Part supplier must match PO supplier" -msgstr "" +msgstr "Поставщик детали должен совпадать с поставщиком заказа на закупку" -#: order/models.py:994 +#: order/models.py:995 msgid "Line item does not match purchase order" -msgstr "" +msgstr "Позиция не соответствует заказу на закупку" -#: order/models.py:997 +#: order/models.py:998 msgid "Line item is missing a linked part" -msgstr "" +msgstr "В позиции отсутствует связанная деталь" -#: order/models.py:1011 +#: order/models.py:1012 msgid "Quantity must be a positive number" -msgstr "" +msgstr "Количество должно быть положительным числом" -#: order/models.py:1323 order/models.py:2724 stock/models.py:1078 +#: order/models.py:1324 order/models.py:2725 stock/models.py:1078 #: stock/models.py:1079 stock/serializers.py:1322 #: templates/email/overdue_return_order.html:16 #: templates/email/overdue_sales_order.html:16 msgid "Customer" msgstr "Покупатель" -#: order/models.py:1324 +#: order/models.py:1325 msgid "Company to which the items are being sold" msgstr "Компания, которой детали продаются" -#: order/models.py:1337 +#: order/models.py:1338 msgid "Sales order status" -msgstr "" - -#: order/models.py:1348 order/models.py:2744 -msgid "Customer Reference " -msgstr "" +msgstr "Статус заказа на продажу" #: order/models.py:1349 order/models.py:2745 -msgid "Customer order reference code" -msgstr "" +msgid "Customer Reference " +msgstr "Ссылка клиента" -#: order/models.py:1353 order/models.py:2296 +#: order/models.py:1350 order/models.py:2746 +msgid "Customer order reference code" +msgstr "Код ссылки на заказ клиента" + +#: order/models.py:1354 order/models.py:2297 msgid "Shipment Date" msgstr "Дата отгрузки" -#: order/models.py:1362 +#: order/models.py:1363 msgid "shipped by" msgstr "Отправлено" -#: order/models.py:1413 +#: order/models.py:1414 msgid "Order is already complete" -msgstr "" +msgstr "Заказ уже выполнен" -#: order/models.py:1416 +#: order/models.py:1417 msgid "Order is already cancelled" -msgstr "" +msgstr "Заказ уже отменен" -#: order/models.py:1420 +#: order/models.py:1421 msgid "Only an open order can be marked as complete" -msgstr "" +msgstr "Только открытый заказ может быть отмечен как завершённый" -#: order/models.py:1424 +#: order/models.py:1425 msgid "Order cannot be completed as there are incomplete shipments" -msgstr "" +msgstr "Заказ не может быть завершён, так как есть незавершённые отгрузки" -#: order/models.py:1429 +#: order/models.py:1430 msgid "Order cannot be completed as there are incomplete allocations" -msgstr "" +msgstr "Заказ не может быть завершён, так как есть незавершённые распределения" -#: order/models.py:1438 +#: order/models.py:1439 msgid "Order cannot be completed as there are incomplete line items" -msgstr "" +msgstr "Заказ не может быть завершён, так как есть незавершённые позиции" -#: order/models.py:1733 order/models.py:1749 +#: order/models.py:1734 order/models.py:1750 msgid "The order is locked and cannot be modified" -msgstr "" +msgstr "Заказ заблокирован и не может быть изменён" -#: order/models.py:1757 +#: order/models.py:1758 msgid "Item quantity" msgstr "Количество" -#: order/models.py:1774 +#: order/models.py:1775 msgid "Line item reference" msgstr "Номер позиции" -#: order/models.py:1781 +#: order/models.py:1782 msgid "Line item notes" msgstr "Записи о позиции" -#: order/models.py:1796 +#: order/models.py:1797 msgid "Target date for this line item (leave blank to use the target date from the order)" msgstr "Целевая дата этой позиции (оставьте пустой, чтобы использовать целевую дату заказа)" -#: order/models.py:1826 +#: order/models.py:1827 msgid "Line item description (optional)" msgstr "Описание позиции (необязательно)" -#: order/models.py:1833 +#: order/models.py:1834 msgid "Additional context for this line" msgstr "Дополнительный контекст для этой строки" -#: order/models.py:1843 +#: order/models.py:1844 msgid "Unit price" msgstr "Цена за единицу" -#: order/models.py:1862 +#: order/models.py:1863 msgid "Purchase Order Line Item" -msgstr "" +msgstr "Позиция заказа на закупку" -#: order/models.py:1889 +#: order/models.py:1890 msgid "Supplier part must match supplier" -msgstr "" +msgstr "Поставляемая деталь должна соответствовать поставщику" -#: order/models.py:1894 +#: order/models.py:1895 msgid "Build order must be marked as external" -msgstr "" +msgstr "Заказ на сборку должен быть отмечен как внешний" -#: order/models.py:1901 +#: order/models.py:1902 msgid "Build orders can only be linked to assembly parts" -msgstr "" +msgstr "Заказы на сборку могут быть связаны только со сборочными деталями" -#: order/models.py:1907 +#: order/models.py:1908 msgid "Build order part must match line item part" -msgstr "" +msgstr "Деталь заказа на сборку должна соответствовать детали позиции" -#: order/models.py:1942 +#: order/models.py:1943 msgid "Supplier part" msgstr "Деталь поставщика" -#: order/models.py:1949 +#: order/models.py:1950 msgid "Received" msgstr "Получено" -#: order/models.py:1950 +#: order/models.py:1951 msgid "Number of items received" -msgstr "" +msgstr "Количество полученных предметов" -#: order/models.py:1958 stock/models.py:1201 stock/serializers.py:637 +#: order/models.py:1959 stock/models.py:1201 stock/serializers.py:637 msgid "Purchase Price" msgstr "Закупочная цена" -#: order/models.py:1959 +#: order/models.py:1960 msgid "Unit purchase price" msgstr "Закупочная цена" -#: order/models.py:1975 +#: order/models.py:1976 msgid "External Build Order to be fulfilled by this line item" -msgstr "" +msgstr "Внешний заказ на сборку, который будет выполнен этой позицией" -#: order/models.py:2038 +#: order/models.py:2039 msgid "Purchase Order Extra Line" -msgstr "" +msgstr "Дополнительная позиция заказа на закупку" -#: order/models.py:2067 +#: order/models.py:2068 msgid "Sales Order Line Item" -msgstr "" +msgstr "Позиция заказа на продажу" -#: order/models.py:2092 +#: order/models.py:2093 msgid "Only salable parts can be assigned to a sales order" -msgstr "" +msgstr "Только продаваемые детали могут быть назначены заказу на продажу" -#: order/models.py:2118 +#: order/models.py:2119 msgid "Sale Price" msgstr "Цена продажи" -#: order/models.py:2119 +#: order/models.py:2120 msgid "Unit sale price" msgstr "Цена последней продажи" -#: order/models.py:2128 order/status_codes.py:50 +#: order/models.py:2129 order/status_codes.py:50 msgid "Shipped" msgstr "Доставлен" -#: order/models.py:2129 +#: order/models.py:2130 msgid "Shipped quantity" msgstr "Отгруженное кол-во" -#: order/models.py:2240 +#: order/models.py:2241 msgid "Sales Order Shipment" -msgstr "" +msgstr "Отгрузка заказа на продажу" -#: order/models.py:2253 +#: order/models.py:2254 msgid "Shipment address must match the customer" -msgstr "" +msgstr "Адрес отгрузки должен соответствовать клиенту" -#: order/models.py:2289 +#: order/models.py:2290 msgid "Shipping address for this shipment" -msgstr "" +msgstr "Адрес доставки для этой отгрузки" -#: order/models.py:2297 +#: order/models.py:2298 msgid "Date of shipment" msgstr "Дата отправления" -#: order/models.py:2303 +#: order/models.py:2304 msgid "Delivery Date" msgstr "Дата доставки" -#: order/models.py:2304 +#: order/models.py:2305 msgid "Date of delivery of shipment" -msgstr "" +msgstr "Дата доставки отгрузки" -#: order/models.py:2312 +#: order/models.py:2313 msgid "Checked By" msgstr "Проверн" -#: order/models.py:2313 +#: order/models.py:2314 msgid "User who checked this shipment" -msgstr "" +msgstr "Пользователь, проверивший эту отгрузку" -#: order/models.py:2320 order/models.py:2574 order/serializers.py:1711 -#: order/serializers.py:1835 +#: order/models.py:2321 order/models.py:2575 order/serializers.py:1725 +#: order/serializers.py:1849 #: report/templates/report/inventree_sales_order_shipment_report.html:14 msgid "Shipment" msgstr "Отправление" -#: order/models.py:2321 +#: order/models.py:2322 msgid "Shipment number" msgstr "Номер отправления" -#: order/models.py:2329 +#: order/models.py:2330 msgid "Tracking Number" msgstr "Номер отслеживания" -#: order/models.py:2330 +#: order/models.py:2331 msgid "Shipment tracking information" msgstr "Информация об отслеживании доставки" -#: order/models.py:2337 +#: order/models.py:2338 msgid "Invoice Number" msgstr "Номер счета" -#: order/models.py:2338 +#: order/models.py:2339 msgid "Reference number for associated invoice" -msgstr "" +msgstr "Номер ссылки на связанную накладную" -#: order/models.py:2377 +#: order/models.py:2378 msgid "Shipment has already been sent" -msgstr "" +msgstr "Отгрузка уже отправлена" -#: order/models.py:2380 +#: order/models.py:2381 msgid "Shipment has no allocated stock items" msgstr "Отправка не имеет зарезервированных складских позиций" -#: order/models.py:2387 +#: order/models.py:2388 msgid "Shipment must be checked before it can be completed" -msgstr "" +msgstr "Отгрузка должна быть проверена, прежде чем её можно завершить" -#: order/models.py:2466 +#: order/models.py:2467 msgid "Sales Order Extra Line" -msgstr "" +msgstr "Дополнительная позиция заказа на продажу" -#: order/models.py:2495 +#: order/models.py:2496 msgid "Sales Order Allocation" -msgstr "" +msgstr "Распределение заказа на продажу" -#: order/models.py:2518 order/models.py:2520 +#: order/models.py:2519 order/models.py:2521 msgid "Stock item has not been assigned" msgstr "Складская позиция не была назначена" -#: order/models.py:2527 +#: order/models.py:2528 msgid "Cannot allocate stock item to a line with a different part" msgstr "Невозможно зарезервировать складскую позицию в позицию другой детали" -#: order/models.py:2530 +#: order/models.py:2531 msgid "Cannot allocate stock to a line without a part" -msgstr "" +msgstr "Невозможно распределить запас к позиции без детали" -#: order/models.py:2533 +#: order/models.py:2534 msgid "Allocation quantity cannot exceed stock quantity" -msgstr "" +msgstr "Количество распределения не может превышать количество на складе" -#: order/models.py:2552 order/serializers.py:1581 +#: order/models.py:2553 order/serializers.py:1595 msgid "Quantity must be 1 for serialized stock item" msgstr "Количество должно быть 1 для сериализированных складских позиций" -#: order/models.py:2555 +#: order/models.py:2556 msgid "Sales order does not match shipment" -msgstr "" +msgstr "Заказ на продажу не соответствует отгрузке" -#: order/models.py:2556 plugin/base/barcodes/api.py:642 +#: order/models.py:2557 plugin/base/barcodes/api.py:642 msgid "Shipment does not match sales order" -msgstr "" +msgstr "Отгрузка не соответствует заказу на продажу" -#: order/models.py:2564 +#: order/models.py:2565 msgid "Line" msgstr "Строка" -#: order/models.py:2575 +#: order/models.py:2576 msgid "Sales order shipment reference" -msgstr "" +msgstr "Ссылка на отгрузку заказа на продажу" -#: order/models.py:2588 order/models.py:3007 +#: order/models.py:2589 order/models.py:3008 msgid "Item" msgstr "Элемент" -#: order/models.py:2589 +#: order/models.py:2590 msgid "Select stock item to allocate" msgstr "Выберите складскую позицию для резервирования" -#: order/models.py:2598 +#: order/models.py:2599 msgid "Enter stock allocation quantity" msgstr "Укажите резервируемое количество" -#: order/models.py:2713 +#: order/models.py:2714 msgid "Return Order reference" -msgstr "" +msgstr "Ссылка на заказ на возврат" -#: order/models.py:2725 +#: order/models.py:2726 msgid "Company from which items are being returned" -msgstr "" +msgstr "Компания, из которой возвращаются товары" -#: order/models.py:2738 +#: order/models.py:2739 msgid "Return order status" -msgstr "" +msgstr "Статус заказа на возврат" -#: order/models.py:2965 +#: order/models.py:2966 msgid "Return Order Line Item" -msgstr "" +msgstr "Позиция заказа на возврат" -#: order/models.py:2978 +#: order/models.py:2979 msgid "Stock item must be specified" -msgstr "" +msgstr "Необходимо указать складской элемент" -#: order/models.py:2982 +#: order/models.py:2983 msgid "Return quantity exceeds stock quantity" -msgstr "" +msgstr "Количество возврата превышает количество на складе" -#: order/models.py:2987 +#: order/models.py:2988 msgid "Return quantity must be greater than zero" -msgstr "" +msgstr "Количество возврата должно быть больше нуля" -#: order/models.py:2992 +#: order/models.py:2993 msgid "Invalid quantity for serialized stock item" -msgstr "" +msgstr "Недопустимое количество для серийного складского элемента" -#: order/models.py:3008 +#: order/models.py:3009 msgid "Select item to return from customer" msgstr "Выберите позицию, возвращаемую от клиента" -#: order/models.py:3023 +#: order/models.py:3024 msgid "Received Date" msgstr "Дата получения" -#: order/models.py:3024 +#: order/models.py:3025 msgid "The date this this return item was received" -msgstr "" +msgstr "Дата получения этого возвращаемого предмета" -#: order/models.py:3036 +#: order/models.py:3037 msgid "Outcome" msgstr "Результат" -#: order/models.py:3037 +#: order/models.py:3038 msgid "Outcome for this line item" -msgstr "" +msgstr "Результат для этой позиции" -#: order/models.py:3044 +#: order/models.py:3045 msgid "Cost associated with return or repair for this line item" -msgstr "" +msgstr "Стоимость, связанная с возвратом или ремонтом этой позиции" -#: order/models.py:3054 +#: order/models.py:3055 msgid "Return Order Extra Line" -msgstr "" +msgstr "Дополнительная позиция заказа на возврат" -#: order/serializers.py:91 +#: order/serializers.py:92 msgid "Order ID" -msgstr "" +msgstr "ID заказа" -#: order/serializers.py:91 +#: order/serializers.py:92 msgid "ID of the order to duplicate" -msgstr "" - -#: order/serializers.py:97 -msgid "Copy Lines" -msgstr "" +msgstr "ID заказа для дублирования" #: order/serializers.py:98 -msgid "Copy line items from the original order" -msgstr "" +msgid "Copy Lines" +msgstr "Копировать позиции" -#: order/serializers.py:104 -msgid "Copy Extra Lines" -msgstr "" +#: order/serializers.py:99 +msgid "Copy line items from the original order" +msgstr "Копировать позиции из исходного заказа" #: order/serializers.py:105 -msgid "Copy extra line items from the original order" -msgstr "" +msgid "Copy Extra Lines" +msgstr "Копировать дополнительные позиции" -#: order/serializers.py:120 +#: order/serializers.py:106 +msgid "Copy extra line items from the original order" +msgstr "Копировать дополнительные позиции из исходного заказа" + +#: order/serializers.py:121 #: report/templates/report/inventree_purchase_order_report.html:29 #: report/templates/report/inventree_return_order_report.html:19 #: report/templates/report/inventree_sales_order_report.html:22 msgid "Line Items" msgstr "Позиции" -#: order/serializers.py:125 +#: order/serializers.py:126 msgid "Completed Lines" -msgstr "" +msgstr "Завершённые позиции" -#: order/serializers.py:192 +#: order/serializers.py:199 msgid "Duplicate Order" -msgstr "" +msgstr "Дублировать заказ" -#: order/serializers.py:193 +#: order/serializers.py:200 msgid "Specify options for duplicating this order" -msgstr "" +msgstr "Указать параметры для дублирования этого заказа" -#: order/serializers.py:270 +#: order/serializers.py:278 msgid "Invalid order ID" -msgstr "" +msgstr "Недействительный ID заказа" -#: order/serializers.py:466 +#: order/serializers.py:477 msgid "Supplier Name" msgstr "Имя поставщика" -#: order/serializers.py:510 +#: order/serializers.py:521 msgid "Order cannot be cancelled" -msgstr "" +msgstr "Заказ не может быть отменён" -#: order/serializers.py:525 order/serializers.py:1602 +#: order/serializers.py:536 order/serializers.py:1616 msgid "Allow order to be closed with incomplete line items" -msgstr "" +msgstr "Разрешить закрывать заказ с незавершёнными позициями" -#: order/serializers.py:535 order/serializers.py:1612 +#: order/serializers.py:546 order/serializers.py:1626 msgid "Order has incomplete line items" -msgstr "" +msgstr "В заказе есть незавершённые позиции" -#: order/serializers.py:665 +#: order/serializers.py:676 msgid "Order is not open" msgstr "Заказ не открыт" -#: order/serializers.py:692 +#: order/serializers.py:703 msgid "Auto Pricing" msgstr "Автоматическая цена" -#: order/serializers.py:694 +#: order/serializers.py:705 msgid "Automatically calculate purchase price based on supplier part data" msgstr "Автоматически рассчитывать закупочную цену на основе данных детали поставщика" -#: order/serializers.py:704 +#: order/serializers.py:715 msgid "Purchase price currency" msgstr "Валюта заказа на закупку" -#: order/serializers.py:718 +#: order/serializers.py:729 msgid "Merge Items" msgstr "Объединять элементы" -#: order/serializers.py:720 +#: order/serializers.py:731 msgid "Merge items with the same part, destination and target date into one line item" msgstr "Объединять в одну позицию элементы, у которых одинаковая деталь, место хранения и целевая дата" -#: order/serializers.py:727 part/serializers.py:560 +#: order/serializers.py:738 part/serializers.py:471 msgid "SKU" msgstr "Артикул" -#: order/serializers.py:741 part/models.py:1089 part/serializers.py:372 +#: order/serializers.py:752 part/models.py:1177 part/serializers.py:337 msgid "Internal Part Number" msgstr "Внутренний артикул детали" -#: order/serializers.py:749 +#: order/serializers.py:760 msgid "Internal Part Name" -msgstr "" - -#: order/serializers.py:765 -msgid "Supplier part must be specified" -msgstr "" - -#: order/serializers.py:768 -msgid "Purchase order must be specified" -msgstr "" +msgstr "Внутреннее название детали" #: order/serializers.py:776 +msgid "Supplier part must be specified" +msgstr "Необходимо указать поставляемую деталь" + +#: order/serializers.py:779 +msgid "Purchase order must be specified" +msgstr "Необходимо указать заказ на закупку" + +#: order/serializers.py:787 msgid "Supplier must match purchase order" -msgstr "" +msgstr "Поставщик должен соответствовать заказу на закупку" -#: order/serializers.py:777 +#: order/serializers.py:788 msgid "Purchase order must match supplier" -msgstr "" +msgstr "Заказ на закупку должен соответствовать поставщику" -#: order/serializers.py:825 order/serializers.py:1682 +#: order/serializers.py:836 order/serializers.py:1696 msgid "Line Item" msgstr "Позиция" -#: order/serializers.py:834 order/serializers.py:974 order/serializers.py:2043 +#: order/serializers.py:845 order/serializers.py:985 order/serializers.py:2060 msgid "Select destination location for received items" msgstr "Выберите место назначения для полученных элементов" -#: order/serializers.py:850 +#: order/serializers.py:861 msgid "Enter batch code for incoming stock items" msgstr "Введите код партии для поступающих складских позиций" -#: order/serializers.py:857 stock/models.py:1160 +#: order/serializers.py:868 stock/models.py:1160 #: templates/email/stale_stock_notification.html:22 users/models.py:137 msgid "Expiry Date" msgstr "Истекает" -#: order/serializers.py:858 +#: order/serializers.py:869 msgid "Enter expiry date for incoming stock items" -msgstr "" +msgstr "Введите дату истечения срока годности для поступающих складских единиц" -#: order/serializers.py:866 +#: order/serializers.py:877 msgid "Enter serial numbers for incoming stock items" msgstr "Введите серийные номера для входящих складских позиций" -#: order/serializers.py:876 +#: order/serializers.py:887 msgid "Override packaging information for incoming stock items" -msgstr "" +msgstr "Переопределить информацию об упаковке для поступающих складских единиц" -#: order/serializers.py:884 order/serializers.py:2048 +#: order/serializers.py:895 order/serializers.py:2065 msgid "Additional note for incoming stock items" -msgstr "" +msgstr "Дополнительная заметка для поступающих складских единиц" -#: order/serializers.py:891 +#: order/serializers.py:902 msgid "Barcode" msgstr "Штрих-код" -#: order/serializers.py:892 +#: order/serializers.py:903 msgid "Scanned barcode" msgstr "Сканированный штрих-код" -#: order/serializers.py:908 +#: order/serializers.py:919 msgid "Barcode is already in use" -msgstr "" +msgstr "Штрихкод уже используется" -#: order/serializers.py:991 order/serializers.py:2067 +#: order/serializers.py:1002 order/serializers.py:2084 msgid "Line items must be provided" -msgstr "" +msgstr "Необходимо предоставить позиции" -#: order/serializers.py:1010 +#: order/serializers.py:1021 msgid "Destination location must be specified" -msgstr "" +msgstr "Необходимо указать место назначения" -#: order/serializers.py:1017 +#: order/serializers.py:1028 msgid "Supplied barcode values must be unique" -msgstr "" +msgstr "Предоставленные значения штрихкодов должны быть уникальными" -#: order/serializers.py:1121 +#: order/serializers.py:1135 msgid "Shipments" -msgstr "" +msgstr "Отгрузки" -#: order/serializers.py:1125 +#: order/serializers.py:1139 msgid "Completed Shipments" -msgstr "" +msgstr "Выполненные отгрузки" -#: order/serializers.py:1293 +#: order/serializers.py:1307 msgid "Sale price currency" msgstr "Валюта цены продажи" -#: order/serializers.py:1339 +#: order/serializers.py:1353 msgid "Allocated Items" -msgstr "" +msgstr "Выделенные элементы" -#: order/serializers.py:1484 +#: order/serializers.py:1498 msgid "No shipment details provided" -msgstr "" +msgstr "Информация об отгрузке не предоставлена" -#: order/serializers.py:1545 order/serializers.py:1691 +#: order/serializers.py:1559 order/serializers.py:1705 msgid "Line item is not associated with this order" -msgstr "" +msgstr "Позиция не связана с этим заказом" -#: order/serializers.py:1564 +#: order/serializers.py:1578 msgid "Quantity must be positive" -msgstr "" +msgstr "Количество должно быть положительным" -#: order/serializers.py:1701 +#: order/serializers.py:1715 msgid "Enter serial numbers to allocate" msgstr "Введите серийные номера для резервирования" -#: order/serializers.py:1723 order/serializers.py:1843 +#: order/serializers.py:1737 order/serializers.py:1857 msgid "Shipment has already been shipped" -msgstr "" +msgstr "Отгрузка уже отправлена" -#: order/serializers.py:1726 order/serializers.py:1846 +#: order/serializers.py:1740 order/serializers.py:1860 msgid "Shipment is not associated with this order" -msgstr "" +msgstr "Отгрузка не связана с этим заказом" -#: order/serializers.py:1781 +#: order/serializers.py:1795 msgid "No match found for the following serial numbers" -msgstr "" +msgstr "Совпадений для следующих серийных номеров не найдено" -#: order/serializers.py:1788 +#: order/serializers.py:1802 msgid "The following serial numbers are unavailable" -msgstr "" +msgstr "Следующие серийные номера недоступны" -#: order/serializers.py:2009 +#: order/serializers.py:2026 msgid "Return order line item" -msgstr "" +msgstr "Позиция заказа на возврат" -#: order/serializers.py:2019 +#: order/serializers.py:2036 msgid "Line item does not match return order" -msgstr "" +msgstr "Позиция не соответствует заказу на возврат" -#: order/serializers.py:2022 +#: order/serializers.py:2039 msgid "Line item has already been received" -msgstr "" +msgstr "Позиция уже получена" -#: order/serializers.py:2059 +#: order/serializers.py:2076 msgid "Items can only be received against orders which are in progress" -msgstr "" +msgstr "Предметы могут быть получены только по заказам, которые находятся в процессе выполнения" -#: order/serializers.py:2124 +#: order/serializers.py:2141 msgid "Quantity to return" -msgstr "" +msgstr "Количество для возврата" -#: order/serializers.py:2140 +#: order/serializers.py:2157 msgid "Line price currency" -msgstr "" +msgstr "Валюта цены позиции" #: order/status_codes.py:17 order/status_codes.py:54 stock/status_codes.py:16 msgid "Lost" @@ -5411,7 +5539,7 @@ msgstr "Просроченные заказы на закупку" #: order/tasks.py:52 #, python-brace-format msgid "Purchase order {po} is now overdue" -msgstr "" +msgstr "Заказ на закупку {po} просрочен" #: order/tasks.py:117 msgid "Overdue Sales Order" @@ -5420,1246 +5548,1165 @@ msgstr "Просроченные заказы на продажу" #: order/tasks.py:122 #, python-brace-format msgid "Sales order {so} is now overdue" -msgstr "" +msgstr "Заказ на продажу {so} просрочен" #: order/tasks.py:184 msgid "Overdue Return Order" -msgstr "" +msgstr "Просроченный заказ на возврат" #: order/tasks.py:189 #, python-brace-format msgid "Return order {ro} is now overdue" -msgstr "" +msgstr "Заказ на возврат {ro} просрочен" -#: part/api.py:108 +#: part/api.py:103 msgid "Starred" -msgstr "" +msgstr "Помечено звёздочкой" -#: part/api.py:110 +#: part/api.py:105 msgid "Filter by starred categories" -msgstr "" +msgstr "Фильтровать по отмеченным категориям" -#: part/api.py:127 stock/api.py:288 +#: part/api.py:122 stock/api.py:288 msgid "Depth" -msgstr "" +msgstr "Глубина" -#: part/api.py:127 +#: part/api.py:122 msgid "Filter by category depth" -msgstr "" +msgstr "Фильтровать по глубине категории" -#: part/api.py:145 stock/api.py:306 +#: part/api.py:140 stock/api.py:306 msgid "Top Level" -msgstr "" +msgstr "Верхний уровень" -#: part/api.py:147 +#: part/api.py:142 msgid "Filter by top-level categories" -msgstr "" +msgstr "Фильтровать по категориям верхнего уровня" -#: part/api.py:160 stock/api.py:321 +#: part/api.py:155 stock/api.py:321 msgid "Cascade" -msgstr "" +msgstr "Каскад" -#: part/api.py:162 +#: part/api.py:157 msgid "Include sub-categories in filtered results" -msgstr "" +msgstr "Включать подкатегории в отфильтрованные результаты" -#: part/api.py:182 +#: part/api.py:177 msgid "Parent" -msgstr "" +msgstr "Родитель" -#: part/api.py:184 +#: part/api.py:179 msgid "Filter by parent category" -msgstr "" +msgstr "Фильтровать по родительской категории" -#: part/api.py:219 +#: part/api.py:214 msgid "Exclude sub-categories under the specified category" -msgstr "" +msgstr "Исключить подкатегории указанной категории" -#: part/api.py:445 +#: part/api.py:440 msgid "Has Results" -msgstr "" +msgstr "Есть результаты" -#: part/api.py:666 +#: part/api.py:661 msgid "Is Variant" -msgstr "" +msgstr "Является вариантом" -#: part/api.py:674 +#: part/api.py:669 msgid "Is Revision" -msgstr "" +msgstr "Является ревизией" -#: part/api.py:684 +#: part/api.py:679 msgid "Has Revisions" -msgstr "" +msgstr "Есть ревизии" -#: part/api.py:865 +#: part/api.py:860 msgid "BOM Valid" -msgstr "" +msgstr "Спецификация валидна" -#: part/api.py:974 +#: part/api.py:969 msgid "Cascade Categories" -msgstr "" +msgstr "Каскадные категории" -#: part/api.py:975 +#: part/api.py:970 msgid "If true, include items in child categories of the given category" -msgstr "" +msgstr "Если включено, включать элементы в дочерних категориях указанной категории" -#: part/api.py:981 +#: part/api.py:976 msgid "Filter by numeric category ID or the literal 'null'" -msgstr "" +msgstr "Фильтровать по числовому идентификатору категории или литералу 'null'" -#: part/api.py:1533 +#: part/api.py:1258 msgid "Assembly part is testable" msgstr "Сборная деталь тестируется" -#: part/api.py:1542 +#: part/api.py:1267 msgid "Component part is testable" msgstr "Компонент тестируется" -#: part/api.py:1611 +#: part/api.py:1336 msgid "Uses" -msgstr "" +msgstr "Использования" -#: part/models.py:96 part/models.py:4163 +#: part/models.py:93 part/models.py:436 #: templates/email/part_event_notification.html:16 msgid "Part Category" msgstr "Категория детали" -#: part/models.py:97 users/ruleset.py:27 +#: part/models.py:94 users/ruleset.py:27 msgid "Part Categories" msgstr "Категория детали" -#: part/models.py:115 part/models.py:1125 +#: part/models.py:112 part/models.py:1213 msgid "Default Location" msgstr "Место хранения по умолчанию" -#: part/models.py:116 +#: part/models.py:113 msgid "Default location for parts in this category" msgstr "Место хранения по умолчанию для деталей этой категории" -#: part/models.py:121 stock/models.py:216 +#: part/models.py:118 stock/models.py:216 msgid "Structural" msgstr "Структура" -#: part/models.py:123 +#: part/models.py:120 msgid "Parts may not be directly assigned to a structural category, but may be assigned to child categories." msgstr "Детали не могут быть непосредственно отнесены к структурной категории, но могут быть отнесены к дочерним категориям." -#: part/models.py:132 +#: part/models.py:129 msgid "Default keywords" msgstr "Ключевые слова по умолчанию" -#: part/models.py:133 +#: part/models.py:130 msgid "Default keywords for parts in this category" msgstr "Ключевые слова по умолчанию для деталей этой категории" -#: part/models.py:140 stock/models.py:97 stock/models.py:198 +#: part/models.py:137 stock/models.py:97 stock/models.py:198 msgid "Icon" msgstr "Значок" -#: part/models.py:141 part/serializers.py:148 part/serializers.py:167 +#: part/models.py:138 part/serializers.py:147 part/serializers.py:166 #: stock/models.py:199 msgid "Icon (optional)" msgstr "Значок (необязательно)" -#: part/models.py:185 +#: part/models.py:182 msgid "You cannot make this part category structural because some parts are already assigned to it!" -msgstr "" +msgstr "Вы не можете сделать эту категорию деталей структурной, потому что некоторые детали уже назначены ей!" -#: part/models.py:473 part/serializers.py:119 part/serializers.py:310 -#: users/ruleset.py:28 +#: part/models.py:392 +msgid "Part Category Parameter Template" +msgstr "Шаблон параметров категории деталей" + +#: part/models.py:448 +msgid "Default Value" +msgstr "Значение по умолчанию" + +#: part/models.py:449 +msgid "Default Parameter Value" +msgstr "Значение параметра по умолчанию" + +#: part/models.py:551 part/serializers.py:118 users/ruleset.py:28 msgid "Parts" msgstr "Детали" -#: part/models.py:525 +#: part/models.py:597 +msgid "Cannot delete parameters of a locked part" +msgstr "" + +#: part/models.py:602 +msgid "Cannot modify parameters of a locked part" +msgstr "" + +#: part/models.py:613 msgid "Cannot delete this part as it is locked" -msgstr "" +msgstr "Нельзя удалить эту деталь, так как она заблокирована" -#: part/models.py:528 +#: part/models.py:616 msgid "Cannot delete this part as it is still active" -msgstr "" +msgstr "Нельзя удалить эту деталь, так как она ещё активна" -#: part/models.py:533 +#: part/models.py:621 msgid "Cannot delete this part as it is used in an assembly" -msgstr "" +msgstr "Нельзя удалить эту деталь, так как она используется в сборке" -#: part/models.py:616 part/models.py:623 +#: part/models.py:704 part/models.py:711 #, python-brace-format msgid "Part '{self}' cannot be used in BOM for '{parent}' (recursive)" -msgstr "" +msgstr "Деталь '{self}' не может быть использована в спецификации для '{parent}' (рекурсивно)" -#: part/models.py:635 +#: part/models.py:723 #, python-brace-format msgid "Part '{parent}' is used in BOM for '{self}' (recursive)" -msgstr "" +msgstr "Деталь '{parent}' используется в спецификации для '{self}' (рекурсивно)" -#: part/models.py:702 +#: part/models.py:790 #, python-brace-format msgid "IPN must match regex pattern {pattern}" -msgstr "" +msgstr "IPN должен соответствовать регулярному выражению {pattern}" -#: part/models.py:710 +#: part/models.py:798 msgid "Part cannot be a revision of itself" -msgstr "" +msgstr "Деталь не может быть ревизией самой себя" -#: part/models.py:717 +#: part/models.py:805 msgid "Cannot make a revision of a part which is already a revision" -msgstr "" +msgstr "Нельзя создать ревизию детали, которая уже является ревизией" -#: part/models.py:724 +#: part/models.py:812 msgid "Revision code must be specified" -msgstr "" +msgstr "Необходимо указать код ревизии" -#: part/models.py:731 +#: part/models.py:819 msgid "Revisions are only allowed for assembly parts" -msgstr "" +msgstr "Ревизии разрешены только для сборочных деталей" -#: part/models.py:738 +#: part/models.py:826 msgid "Cannot make a revision of a template part" -msgstr "" +msgstr "Нельзя сделать ревизию шаблонной детали" -#: part/models.py:744 +#: part/models.py:832 msgid "Parent part must point to the same template" -msgstr "" +msgstr "Родительская деталь должна указывать на тот же шаблон" -#: part/models.py:841 +#: part/models.py:929 msgid "Stock item with this serial number already exists" msgstr "Складская позиция с этим серийным номером уже существует" -#: part/models.py:971 +#: part/models.py:1059 msgid "Duplicate IPN not allowed in part settings" -msgstr "" +msgstr "Дублирующий IPN не разрешён в настройках детали" -#: part/models.py:983 +#: part/models.py:1071 msgid "Duplicate part revision already exists." -msgstr "" +msgstr "Дублирующая ревизия детали уже существует." -#: part/models.py:992 +#: part/models.py:1080 msgid "Part with this Name, IPN and Revision already exists." msgstr "Деталь с таким именем, внутренним артикулом и ревизией уже существует." -#: part/models.py:1007 +#: part/models.py:1095 msgid "Parts cannot be assigned to structural part categories!" -msgstr "" +msgstr "Детали не могут быть назначены структурным категориям!" -#: part/models.py:1039 +#: part/models.py:1127 msgid "Part name" msgstr "Наименование детали" -#: part/models.py:1044 +#: part/models.py:1132 msgid "Is Template" msgstr "Шаблон" -#: part/models.py:1045 +#: part/models.py:1133 msgid "Is this part a template part?" msgstr "Эта деталь является шаблоном?" -#: part/models.py:1055 +#: part/models.py:1143 msgid "Is this part a variant of another part?" msgstr "Эта деталь является разновидностью другой детали?" -#: part/models.py:1056 +#: part/models.py:1144 msgid "Variant Of" msgstr "Разновидность" -#: part/models.py:1063 +#: part/models.py:1151 msgid "Part description (optional)" msgstr "Описание детали (необязательно)" -#: part/models.py:1070 +#: part/models.py:1158 msgid "Keywords" msgstr "Ключевые слова" -#: part/models.py:1071 +#: part/models.py:1159 msgid "Part keywords to improve visibility in search results" msgstr "Ключевые слова для улучшения видимости в результатах поиска" -#: part/models.py:1081 +#: part/models.py:1169 msgid "Part category" msgstr "Категория" -#: part/models.py:1088 part/serializers.py:929 +#: part/models.py:1176 part/serializers.py:814 #: report/templates/report/inventree_stock_location_report.html:103 msgid "IPN" msgstr "Внутренний артикул" -#: part/models.py:1096 +#: part/models.py:1184 msgid "Part revision or version number" msgstr "Ревизия или серийный номер детали" -#: part/models.py:1097 report/models.py:228 +#: part/models.py:1185 report/models.py:228 msgid "Revision" msgstr "Ревизия" -#: part/models.py:1106 +#: part/models.py:1194 msgid "Is this part a revision of another part?" -msgstr "" +msgstr "Является ли эта деталь ревизией другой детали?" -#: part/models.py:1107 +#: part/models.py:1195 msgid "Revision Of" -msgstr "" +msgstr "Ревизия от" -#: part/models.py:1123 +#: part/models.py:1211 msgid "Where is this item normally stored?" msgstr "Где обычно хранится эта деталь?" -#: part/models.py:1169 +#: part/models.py:1257 msgid "Default Supplier" msgstr "Поставщик по умолчанию" -#: part/models.py:1170 +#: part/models.py:1258 msgid "Default supplier part" -msgstr "" +msgstr "Поставляемая деталь по умолчанию" -#: part/models.py:1177 +#: part/models.py:1265 msgid "Default Expiry" msgstr "Срок действия по умолчанию" -#: part/models.py:1178 +#: part/models.py:1266 msgid "Expiry time (in days) for stock items of this part" msgstr "Срок годности (в днях) для складских позиций этой детали" -#: part/models.py:1186 part/serializers.py:1003 +#: part/models.py:1274 part/serializers.py:888 msgid "Minimum Stock" msgstr "Минимальный запас" -#: part/models.py:1187 +#: part/models.py:1275 msgid "Minimum allowed stock level" msgstr "Минимально допустимый складской запас" -#: part/models.py:1196 +#: part/models.py:1284 msgid "Units of measure for this part" msgstr "Единицы измерения этой детали" -#: part/models.py:1203 +#: part/models.py:1291 msgid "Can this part be built from other parts?" msgstr "Может ли эта деталь быть создана из других деталей?" -#: part/models.py:1209 +#: part/models.py:1297 msgid "Can this part be used to build other parts?" msgstr "Может ли эта деталь использоваться для создания других деталей?" -#: part/models.py:1215 +#: part/models.py:1303 msgid "Does this part have tracking for unique items?" msgstr "Является ли каждый экземпляр этой детали уникальным, обладающим серийным номером?" -#: part/models.py:1221 +#: part/models.py:1309 msgid "Can this part have test results recorded against it?" msgstr "Можно ли в этой детали записывать результаты тестов?" -#: part/models.py:1227 +#: part/models.py:1315 msgid "Can this part be purchased from external suppliers?" msgstr "Может ли эта деталь быть закуплена у внешних поставщиков?" -#: part/models.py:1233 +#: part/models.py:1321 msgid "Can this part be sold to customers?" msgstr "Может ли эта деталь быть продана покупателям?" -#: part/models.py:1237 +#: part/models.py:1325 msgid "Is this part active?" msgstr "Эта деталь активна?" -#: part/models.py:1243 +#: part/models.py:1331 msgid "Locked parts cannot be edited" msgstr "Заблокированные детали нельзя редактировать" -#: part/models.py:1249 +#: part/models.py:1337 msgid "Is this a virtual part, such as a software product or license?" msgstr "Эта деталь виртуальная, как программный продукт или лицензия?" -#: part/models.py:1254 +#: part/models.py:1342 msgid "BOM Validated" -msgstr "" +msgstr "Спецификация подтверждена" -#: part/models.py:1255 +#: part/models.py:1343 msgid "Is the BOM for this part valid?" -msgstr "" +msgstr "Валидна ли спецификация для этой детали?" -#: part/models.py:1261 +#: part/models.py:1349 msgid "BOM checksum" msgstr "Контрольная сумма BOM" -#: part/models.py:1262 +#: part/models.py:1350 msgid "Stored BOM checksum" -msgstr "" +msgstr "Сохранённая контрольная сумма спецификации" -#: part/models.py:1270 +#: part/models.py:1358 msgid "BOM checked by" msgstr "BOM проверил" -#: part/models.py:1275 +#: part/models.py:1363 msgid "BOM checked date" msgstr "Дата проверки BOM" -#: part/models.py:1291 +#: part/models.py:1379 msgid "Creation User" msgstr "Создатель" -#: part/models.py:1301 +#: part/models.py:1389 msgid "Owner responsible for this part" -msgstr "" +msgstr "Ответственный владелец этой детали" -#: part/models.py:2258 +#: part/models.py:2346 msgid "Sell multiple" msgstr "Продать несколько" -#: part/models.py:3286 +#: part/models.py:3350 msgid "Currency used to cache pricing calculations" -msgstr "" +msgstr "Валюта, используемая для кэширования расчётов цен" -#: part/models.py:3302 +#: part/models.py:3366 msgid "Minimum BOM Cost" msgstr "Минимальная Стоимость BOM" -#: part/models.py:3303 +#: part/models.py:3367 msgid "Minimum cost of component parts" -msgstr "" +msgstr "Минимальная стоимость компонентных деталей" -#: part/models.py:3309 +#: part/models.py:3373 msgid "Maximum BOM Cost" msgstr "Максимальная Стоимость BOM" -#: part/models.py:3310 +#: part/models.py:3374 msgid "Maximum cost of component parts" -msgstr "" +msgstr "Максимальная стоимость компонентных деталей" -#: part/models.py:3316 +#: part/models.py:3380 msgid "Minimum Purchase Cost" -msgstr "" +msgstr "Минимальная стоимость закупки" -#: part/models.py:3317 +#: part/models.py:3381 msgid "Minimum historical purchase cost" -msgstr "" +msgstr "Минимальная историческая стоимость закупки" -#: part/models.py:3323 +#: part/models.py:3387 msgid "Maximum Purchase Cost" -msgstr "" +msgstr "Максимальная стоимость закупки" -#: part/models.py:3324 +#: part/models.py:3388 msgid "Maximum historical purchase cost" -msgstr "" +msgstr "Максимальная историческая стоимость закупки" -#: part/models.py:3330 +#: part/models.py:3394 msgid "Minimum Internal Price" -msgstr "" +msgstr "Минимальная внутренняя цена" -#: part/models.py:3331 +#: part/models.py:3395 msgid "Minimum cost based on internal price breaks" -msgstr "" +msgstr "Минимальная стоимость на основе внутренних ценовых уровней" -#: part/models.py:3337 +#: part/models.py:3401 msgid "Maximum Internal Price" -msgstr "" +msgstr "Максимальная внутренняя цена" -#: part/models.py:3338 +#: part/models.py:3402 msgid "Maximum cost based on internal price breaks" -msgstr "" +msgstr "Максимальная стоимость на основе внутренних ценовых уровней" -#: part/models.py:3344 +#: part/models.py:3408 msgid "Minimum Supplier Price" -msgstr "" +msgstr "Минимальная цена поставщика" -#: part/models.py:3345 +#: part/models.py:3409 msgid "Minimum price of part from external suppliers" -msgstr "" +msgstr "Минимальная цена детали от внешних поставщиков" -#: part/models.py:3351 +#: part/models.py:3415 msgid "Maximum Supplier Price" -msgstr "" +msgstr "Максимальная цена поставщика" -#: part/models.py:3352 +#: part/models.py:3416 msgid "Maximum price of part from external suppliers" -msgstr "" +msgstr "Максимальная цена детали от внешних поставщиков" -#: part/models.py:3358 +#: part/models.py:3422 msgid "Minimum Variant Cost" -msgstr "" +msgstr "Минимальная стоимость варианта" -#: part/models.py:3359 +#: part/models.py:3423 msgid "Calculated minimum cost of variant parts" -msgstr "" +msgstr "Расчётная минимальная стоимость вариантов деталей" -#: part/models.py:3365 +#: part/models.py:3429 msgid "Maximum Variant Cost" -msgstr "" +msgstr "Максимальная стоимость варианта" -#: part/models.py:3366 +#: part/models.py:3430 msgid "Calculated maximum cost of variant parts" -msgstr "" +msgstr "Расчётная максимальная стоимость вариантов деталей" -#: part/models.py:3372 part/models.py:3386 +#: part/models.py:3436 part/models.py:3450 msgid "Minimum Cost" msgstr "Минимальная Стоимость" -#: part/models.py:3373 +#: part/models.py:3437 msgid "Override minimum cost" -msgstr "" +msgstr "Переопределить минимальную стоимость" -#: part/models.py:3379 part/models.py:3393 +#: part/models.py:3443 part/models.py:3457 msgid "Maximum Cost" msgstr "Максимальная Стоимость" -#: part/models.py:3380 +#: part/models.py:3444 msgid "Override maximum cost" -msgstr "" +msgstr "Переопределить максимальную стоимость" -#: part/models.py:3387 +#: part/models.py:3451 msgid "Calculated overall minimum cost" -msgstr "" +msgstr "Расчётная общая минимальная стоимость" -#: part/models.py:3394 +#: part/models.py:3458 msgid "Calculated overall maximum cost" -msgstr "" +msgstr "Расчётная общая максимальная стоимость" -#: part/models.py:3400 +#: part/models.py:3464 msgid "Minimum Sale Price" -msgstr "" +msgstr "Минимальная цена продажи" -#: part/models.py:3401 +#: part/models.py:3465 msgid "Minimum sale price based on price breaks" -msgstr "" +msgstr "Минимальная цена продажи на основе ценовых уровней" -#: part/models.py:3407 +#: part/models.py:3471 msgid "Maximum Sale Price" -msgstr "" +msgstr "Максимальная цена продажи" -#: part/models.py:3408 +#: part/models.py:3472 msgid "Maximum sale price based on price breaks" -msgstr "" +msgstr "Максимальная цена продажи на основе ценовых уровней" -#: part/models.py:3414 +#: part/models.py:3478 msgid "Minimum Sale Cost" -msgstr "" +msgstr "Минимальная стоимость продажи" -#: part/models.py:3415 +#: part/models.py:3479 msgid "Minimum historical sale price" -msgstr "" +msgstr "Минимальная историческая цена продажи" -#: part/models.py:3421 +#: part/models.py:3485 msgid "Maximum Sale Cost" -msgstr "" +msgstr "Максимальная стоимость продажи" -#: part/models.py:3422 +#: part/models.py:3486 msgid "Maximum historical sale price" -msgstr "" +msgstr "Максимальная историческая цена продажи" -#: part/models.py:3440 +#: part/models.py:3504 msgid "Part for stocktake" -msgstr "" +msgstr "Деталь для инвентаризации" -#: part/models.py:3445 +#: part/models.py:3509 msgid "Item Count" msgstr "Количество элементов" -#: part/models.py:3446 +#: part/models.py:3510 msgid "Number of individual stock entries at time of stocktake" -msgstr "" +msgstr "Количество отдельных складских позиций на момент инвентаризации" -#: part/models.py:3454 +#: part/models.py:3518 msgid "Total available stock at time of stocktake" -msgstr "" +msgstr "Общий доступный запас на момент инвентаризации" -#: part/models.py:3458 report/templates/report/inventree_test_report.html:106 +#: part/models.py:3522 report/templates/report/inventree_test_report.html:106 msgid "Date" msgstr "Дата" -#: part/models.py:3459 +#: part/models.py:3523 msgid "Date stocktake was performed" -msgstr "" +msgstr "Дата проведения инвентаризации" -#: part/models.py:3466 +#: part/models.py:3530 msgid "Minimum Stock Cost" -msgstr "" +msgstr "Минимальная стоимость запасов" -#: part/models.py:3467 +#: part/models.py:3531 msgid "Estimated minimum cost of stock on hand" -msgstr "" +msgstr "Оценочная минимальная стоимость имеющихся запасов" -#: part/models.py:3473 +#: part/models.py:3537 msgid "Maximum Stock Cost" -msgstr "" +msgstr "Максимальная стоимость запасов" -#: part/models.py:3474 +#: part/models.py:3538 msgid "Estimated maximum cost of stock on hand" -msgstr "" +msgstr "Оценочная максимальная стоимость имеющихся запасов" -#: part/models.py:3484 +#: part/models.py:3548 msgid "Part Sale Price Break" -msgstr "" +msgstr "Цена продажи детали по порогу" -#: part/models.py:3596 +#: part/models.py:3660 msgid "Part Test Template" -msgstr "" +msgstr "Шаблон теста детали" -#: part/models.py:3622 +#: part/models.py:3686 msgid "Invalid template name - must include at least one alphanumeric character" -msgstr "" +msgstr "Недопустимое имя шаблона — должно содержать хотя бы один буквенно-цифровой символ" -#: part/models.py:3643 part/models.py:3816 -msgid "Choices must be unique" -msgstr "" - -#: part/models.py:3654 +#: part/models.py:3718 msgid "Test templates can only be created for testable parts" msgstr "Шаблоны тестов можно создавать только для тестируемых деталей" -#: part/models.py:3668 +#: part/models.py:3732 msgid "Test template with the same key already exists for part" -msgstr "" +msgstr "Шаблон теста с тем же ключом уже существует для детали" -#: part/models.py:3685 +#: part/models.py:3749 msgid "Test Name" msgstr "Название теста" -#: part/models.py:3686 +#: part/models.py:3750 msgid "Enter a name for the test" msgstr "Введите имя для теста" -#: part/models.py:3692 +#: part/models.py:3756 msgid "Test Key" -msgstr "" +msgstr "Ключ теста" -#: part/models.py:3693 +#: part/models.py:3757 msgid "Simplified key for the test" -msgstr "" +msgstr "Упрощённый ключ для теста" -#: part/models.py:3700 +#: part/models.py:3764 msgid "Test Description" msgstr "Описание теста" -#: part/models.py:3701 +#: part/models.py:3765 msgid "Enter description for this test" msgstr "Введите описание для этого теста" -#: part/models.py:3705 report/models.py:287 -msgid "Enabled" -msgstr "Включено" - -#: part/models.py:3705 +#: part/models.py:3769 msgid "Is this test enabled?" msgstr "Активен ли данный тест?" -#: part/models.py:3710 +#: part/models.py:3774 msgid "Required" msgstr "Необходим" -#: part/models.py:3711 +#: part/models.py:3775 msgid "Is this test required to pass?" msgstr "Необходимо ли пройти этот тест?" -#: part/models.py:3716 +#: part/models.py:3780 msgid "Requires Value" msgstr "Требуется значение" -#: part/models.py:3717 +#: part/models.py:3781 msgid "Does this test require a value when adding a test result?" -msgstr "" +msgstr "Требуется ли значение для этого теста при добавлении результата?" -#: part/models.py:3722 +#: part/models.py:3786 msgid "Requires Attachment" msgstr "Требуются вложения" -#: part/models.py:3724 +#: part/models.py:3788 msgid "Does this test require a file attachment when adding a test result?" msgstr "Требуется ли прикреплять вложение в виде файла при добавлении результатов теста?" -#: part/models.py:3730 part/models.py:3878 -msgid "Choices" -msgstr "Варианты" - -#: part/models.py:3731 +#: part/models.py:3795 msgid "Valid choices for this test (comma-separated)" msgstr "Допустимые варианты данного теста(через запятую)" -#: part/models.py:3764 -msgid "Part Parameter Template" -msgstr "" - -#: part/models.py:3791 -msgid "Checkbox parameters cannot have units" -msgstr "У параметров-переключателей не может быть единицы измерения" - -#: part/models.py:3796 -msgid "Checkbox parameters cannot have choices" -msgstr "У параметров-переключателей не может быть вариантов" - -#: part/models.py:3833 -msgid "Parameter template name must be unique" -msgstr "" - -#: part/models.py:3851 -msgid "Parameter Name" -msgstr "Название параметра" - -#: part/models.py:3858 -msgid "Physical units for this parameter" -msgstr "Физическая единица этого параметра" - -#: part/models.py:3866 -msgid "Parameter description" -msgstr "Описание параметра" - -#: part/models.py:3872 -msgid "Checkbox" -msgstr "Переключатель" - -#: part/models.py:3873 -msgid "Is this parameter a checkbox?" -msgstr "Этот параметр является переключателем?" - -#: part/models.py:3879 -msgid "Valid choices for this parameter (comma-separated)" -msgstr "Возможные варианты этого параметра (разделить запятой)" - -#: part/models.py:3890 -msgid "Selection list for this parameter" -msgstr "Список выбора для этого параметра" - -#: part/models.py:3932 -msgid "Part Parameter" -msgstr "" - -#: part/models.py:3958 -msgid "Parameter cannot be modified - part is locked" -msgstr "" - -#: part/models.py:3996 -msgid "Invalid choice for parameter value" -msgstr "Недопустимое значение параметра" - -#: part/models.py:4047 -msgid "Parent Part" -msgstr "Родительская деталь" - -#: part/models.py:4055 part/models.py:4170 part/models.py:4171 -msgid "Parameter Template" -msgstr "Шаблон параметра" - -#: part/models.py:4061 -msgid "Parameter Value" -msgstr "Значение параметра" - -#: part/models.py:4071 stock/serializers.py:718 -msgid "Optional note field" -msgstr "Опциональное поле записей" - -#: part/models.py:4118 -msgid "Part Category Parameter Template" -msgstr "" - -#: part/models.py:4177 -msgid "Default Value" -msgstr "Значение по умолчанию" - -#: part/models.py:4178 -msgid "Default Parameter Value" -msgstr "Значение параметра по умолчанию" - -#: part/models.py:4352 +#: part/models.py:3977 msgid "BOM item cannot be modified - assembly is locked" -msgstr "" +msgstr "Пункт спецификации нельзя изменить — сборка заблокирована" -#: part/models.py:4359 +#: part/models.py:3984 msgid "BOM item cannot be modified - variant assembly is locked" -msgstr "" +msgstr "Пункт спецификации нельзя изменить — вариант сборки заблокирован" -#: part/models.py:4369 +#: part/models.py:3994 msgid "Select parent part" msgstr "Выберите родительскую деталь" -#: part/models.py:4379 +#: part/models.py:4004 msgid "Sub part" msgstr "Суб-деталь" -#: part/models.py:4380 +#: part/models.py:4005 msgid "Select part to be used in BOM" msgstr "Выбрать деталь для использования в BOM" -#: part/models.py:4391 +#: part/models.py:4016 msgid "BOM quantity for this BOM item" msgstr "Количество элементов в спецификации" -#: part/models.py:4397 +#: part/models.py:4022 msgid "This BOM item is optional" msgstr "Эта позиция спецификации необязательна" -#: part/models.py:4403 +#: part/models.py:4028 msgid "This BOM item is consumable (it is not tracked in build orders)" msgstr "Эта позиция - расходник (она не отслеживается в заказах на производство)" -#: part/models.py:4411 +#: part/models.py:4036 msgid "Setup Quantity" -msgstr "" +msgstr "Количество для подготовки" -#: part/models.py:4412 +#: part/models.py:4037 msgid "Extra required quantity for a build, to account for setup losses" -msgstr "" +msgstr "Дополнительное требуемое количество для сборки, учитывающее потери при подготовке" -#: part/models.py:4420 +#: part/models.py:4045 msgid "Attrition" -msgstr "" +msgstr "Потери" -#: part/models.py:4422 +#: part/models.py:4047 msgid "Estimated attrition for a build, expressed as a percentage (0-100)" -msgstr "" +msgstr "Оценочные потери для сборки, выраженные в процентах (0–100)" -#: part/models.py:4433 +#: part/models.py:4058 msgid "Rounding Multiple" -msgstr "" +msgstr "Округление до кратности" -#: part/models.py:4435 +#: part/models.py:4060 msgid "Round up required production quantity to nearest multiple of this value" -msgstr "" +msgstr "Округлять требуемое производственное количество до ближайшего кратного этого значения" -#: part/models.py:4443 +#: part/models.py:4068 msgid "BOM item reference" msgstr "Ссылка на позицию спецификации" -#: part/models.py:4451 +#: part/models.py:4076 msgid "BOM item notes" msgstr "Заметка о позиции в спецификации" -#: part/models.py:4457 +#: part/models.py:4082 msgid "Checksum" msgstr "Контрольная сумма" -#: part/models.py:4458 +#: part/models.py:4083 msgid "BOM line checksum" -msgstr "" +msgstr "Контрольная сумма строки спецификации" -#: part/models.py:4463 +#: part/models.py:4088 msgid "Validated" msgstr "Проверен" -#: part/models.py:4464 +#: part/models.py:4089 msgid "This BOM item has been validated" -msgstr "" +msgstr "Этот пункт спецификации подтверждён" -#: part/models.py:4469 +#: part/models.py:4094 msgid "Gets inherited" msgstr "Наследуется" -#: part/models.py:4470 +#: part/models.py:4095 msgid "This BOM item is inherited by BOMs for variant parts" msgstr "Позиция спецификации наследуется разновидностями детали" -#: part/models.py:4476 +#: part/models.py:4101 msgid "Stock items for variant parts can be used for this BOM item" msgstr "Эту позицию можно заменять деталями, которые находятся на складе" -#: part/models.py:4583 stock/models.py:925 +#: part/models.py:4208 stock/models.py:925 msgid "Quantity must be integer value for trackable parts" msgstr "Для отслеживаемых деталей количество должно быть целым числом" -#: part/models.py:4593 part/models.py:4595 +#: part/models.py:4218 part/models.py:4220 msgid "Sub part must be specified" -msgstr "" +msgstr "Необходимо указать поддеталь" -#: part/models.py:4746 +#: part/models.py:4371 msgid "BOM Item Substitute" -msgstr "" +msgstr "Замена пункта спецификации" -#: part/models.py:4767 +#: part/models.py:4392 msgid "Substitute part cannot be the same as the master part" msgstr "Деталь для замены не может быть такой же, как основная деталь" -#: part/models.py:4780 +#: part/models.py:4405 msgid "Parent BOM item" msgstr "Позиция BOM-родителя" -#: part/models.py:4788 +#: part/models.py:4413 msgid "Substitute part" msgstr "Замена детали" -#: part/models.py:4804 +#: part/models.py:4429 msgid "Part 1" msgstr "Деталь 1" -#: part/models.py:4812 +#: part/models.py:4437 msgid "Part 2" msgstr "Деталь 2" -#: part/models.py:4813 +#: part/models.py:4438 msgid "Select Related Part" msgstr "Выберите связанную деталь" -#: part/models.py:4820 +#: part/models.py:4445 msgid "Note for this relationship" msgstr "Заметка для данной связи" -#: part/models.py:4839 +#: part/models.py:4464 msgid "Part relationship cannot be created between a part and itself" -msgstr "" +msgstr "Нельзя создать отношение детали с самой собой" -#: part/models.py:4844 +#: part/models.py:4469 msgid "Duplicate relationship already exists" -msgstr "" +msgstr "Дублирующее отношение уже существует" -#: part/serializers.py:114 +#: part/serializers.py:113 msgid "Parent Category" msgstr "Родительская категория" -#: part/serializers.py:115 +#: part/serializers.py:114 msgid "Parent part category" -msgstr "" +msgstr "Родительская категория деталей" -#: part/serializers.py:123 part/serializers.py:164 +#: part/serializers.py:122 part/serializers.py:163 msgid "Subcategories" msgstr "Подкатегории" -#: part/serializers.py:203 +#: part/serializers.py:202 msgid "Results" msgstr "Результаты" -#: part/serializers.py:204 +#: part/serializers.py:203 msgid "Number of results recorded against this template" -msgstr "" +msgstr "Количество результатов, зарегистрированных по этому шаблону" -#: part/serializers.py:235 part/serializers.py:253 stock/serializers.py:643 +#: part/serializers.py:234 part/serializers.py:252 stock/serializers.py:643 msgid "Purchase currency of this stock item" msgstr "Валюта закупки складской позиции" -#: part/serializers.py:280 +#: part/serializers.py:279 msgid "File is not an image" -msgstr "" +msgstr "Файл не является изображением" -#: part/serializers.py:311 -msgid "Number of parts using this template" -msgstr "" - -#: part/serializers.py:471 +#: part/serializers.py:382 msgid "Original Part" msgstr "Оригинальная деталь" -#: part/serializers.py:472 +#: part/serializers.py:383 msgid "Select original part to duplicate" -msgstr "" +msgstr "Выберите исходную деталь для копирования" -#: part/serializers.py:477 +#: part/serializers.py:388 msgid "Copy Image" msgstr "Копировать Изображение" -#: part/serializers.py:478 +#: part/serializers.py:389 msgid "Copy image from original part" -msgstr "" +msgstr "Копировать изображение из исходной детали" -#: part/serializers.py:484 +#: part/serializers.py:395 msgid "Copy BOM" msgstr "Скопировать BOM" -#: part/serializers.py:485 +#: part/serializers.py:396 msgid "Copy bill of materials from original part" -msgstr "" +msgstr "Копировать спецификацию из исходной детали" -#: part/serializers.py:491 +#: part/serializers.py:402 msgid "Copy Parameters" msgstr "Скопировать параметры" -#: part/serializers.py:492 +#: part/serializers.py:403 msgid "Copy parameter data from original part" -msgstr "" +msgstr "Копировать данные параметров из исходной детали" -#: part/serializers.py:498 +#: part/serializers.py:409 msgid "Copy Notes" msgstr "Копировать Записи" -#: part/serializers.py:499 +#: part/serializers.py:410 msgid "Copy notes from original part" msgstr "Скопировать записи из оригинальной детали" -#: part/serializers.py:505 +#: part/serializers.py:416 msgid "Copy Tests" -msgstr "" +msgstr "Копировать тесты" -#: part/serializers.py:506 +#: part/serializers.py:417 msgid "Copy test templates from original part" -msgstr "" +msgstr "Копировать шаблоны тестов из исходной детали" -#: part/serializers.py:524 +#: part/serializers.py:435 msgid "Initial Stock Quantity" msgstr "Начальное количество на складе" -#: part/serializers.py:526 +#: part/serializers.py:437 msgid "Specify initial stock quantity for this Part. If quantity is zero, no stock is added." msgstr "Задайте начальное количество этой детали на складе. Если количество равно 0, складская позиция не будет добавлена." -#: part/serializers.py:533 +#: part/serializers.py:444 msgid "Initial Stock Location" -msgstr "" +msgstr "Начальное местоположение запаса" -#: part/serializers.py:534 +#: part/serializers.py:445 msgid "Specify initial stock location for this Part" -msgstr "" +msgstr "Укажите начальное местоположение запаса для этой детали" -#: part/serializers.py:551 +#: part/serializers.py:462 msgid "Select supplier (or leave blank to skip)" msgstr "Выберите поставщика (или оставьте поле пустым, чтобы пропустить)" -#: part/serializers.py:567 +#: part/serializers.py:478 msgid "Select manufacturer (or leave blank to skip)" msgstr "Выберите поставщика (или оставьте поле пустым, чтобы пропустить)" -#: part/serializers.py:577 +#: part/serializers.py:488 msgid "Manufacturer part number" msgstr "Артикул производителя" -#: part/serializers.py:584 +#: part/serializers.py:495 msgid "Selected company is not a valid supplier" -msgstr "" +msgstr "Выбранная компания не является допустимым поставщиком" -#: part/serializers.py:593 +#: part/serializers.py:504 msgid "Selected company is not a valid manufacturer" -msgstr "" +msgstr "Выбранная компания не является допустимым производителем" -#: part/serializers.py:604 +#: part/serializers.py:515 msgid "Manufacturer part matching this MPN already exists" msgstr "Деталь производителя с данным артикулом уже существует" -#: part/serializers.py:611 +#: part/serializers.py:522 msgid "Supplier part matching this SKU already exists" msgstr "Деталь поставщика с данным артикулом уже существует" -#: part/serializers.py:914 +#: part/serializers.py:799 msgid "Category Name" msgstr "Название категории" -#: part/serializers.py:943 +#: part/serializers.py:828 msgid "Building" msgstr "Производится" -#: part/serializers.py:944 +#: part/serializers.py:829 msgid "Quantity of this part currently being in production" -msgstr "" +msgstr "Количество этой детали, находящееся в производстве" -#: part/serializers.py:951 +#: part/serializers.py:836 msgid "Outstanding quantity of this part scheduled to be built" -msgstr "" +msgstr "Оставшееся количество этой детали, запланированное к сборке" -#: part/serializers.py:971 stock/serializers.py:1019 stock/serializers.py:1189 +#: part/serializers.py:856 stock/serializers.py:1019 stock/serializers.py:1189 #: users/ruleset.py:30 msgid "Stock Items" msgstr "Складские позиции" -#: part/serializers.py:975 +#: part/serializers.py:860 msgid "Revisions" -msgstr "" +msgstr "Ревизии" -#: part/serializers.py:979 +#: part/serializers.py:864 msgid "Suppliers" msgstr "Поставщики" -#: part/serializers.py:983 part/serializers.py:1297 +#: part/serializers.py:868 part/serializers.py:1162 #: templates/email/low_stock_notification.html:16 #: templates/email/part_event_notification.html:17 msgid "Total Stock" msgstr "Общий запас" -#: part/serializers.py:991 +#: part/serializers.py:876 msgid "Unallocated Stock" -msgstr "" +msgstr "Нераспределённый запас" -#: part/serializers.py:999 +#: part/serializers.py:884 msgid "Variant Stock" -msgstr "" +msgstr "Запас вариантов" -#: part/serializers.py:1054 +#: part/serializers.py:943 msgid "Duplicate Part" msgstr "Дублировать деталь" -#: part/serializers.py:1055 +#: part/serializers.py:944 msgid "Copy initial data from another Part" -msgstr "" +msgstr "Копировать начальные данные из другой детали" -#: part/serializers.py:1061 +#: part/serializers.py:950 msgid "Initial Stock" msgstr "Начальный запас" -#: part/serializers.py:1062 +#: part/serializers.py:951 msgid "Create Part with initial stock quantity" msgstr "Создавать деталь с начальным количеством на складе" -#: part/serializers.py:1068 +#: part/serializers.py:957 msgid "Supplier Information" msgstr "Информация о поставщике" -#: part/serializers.py:1069 +#: part/serializers.py:958 msgid "Add initial supplier information for this part" msgstr "Добавить начальную информацию о поставщике для этой детали" -#: part/serializers.py:1077 +#: part/serializers.py:966 msgid "Copy Category Parameters" msgstr "Копировать параметры категории" -#: part/serializers.py:1078 +#: part/serializers.py:967 msgid "Copy parameter templates from selected part category" msgstr "Копировать шаблоны параметров из выбранной категории деталей" -#: part/serializers.py:1083 +#: part/serializers.py:972 msgid "Existing Image" msgstr "Существующее изображение" -#: part/serializers.py:1084 +#: part/serializers.py:973 msgid "Filename of an existing part image" -msgstr "" +msgstr "Имя файла существующего изображения детали" -#: part/serializers.py:1101 +#: part/serializers.py:990 msgid "Image file does not exist" -msgstr "" +msgstr "Файл изображения не существует" -#: part/serializers.py:1269 +#: part/serializers.py:1134 msgid "Validate entire Bill of Materials" -msgstr "" +msgstr "Проверить всю спецификацию" -#: part/serializers.py:1303 part/serializers.py:1769 +#: part/serializers.py:1168 part/serializers.py:1634 msgid "Can Build" msgstr "Можно произвести" -#: part/serializers.py:1320 +#: part/serializers.py:1185 msgid "Required for Build Orders" -msgstr "" +msgstr "Требуется для заказов на сборку" -#: part/serializers.py:1325 +#: part/serializers.py:1190 msgid "Allocated to Build Orders" -msgstr "" +msgstr "Выделено для заказов на сборку" -#: part/serializers.py:1332 +#: part/serializers.py:1197 msgid "Required for Sales Orders" -msgstr "" +msgstr "Требуется для заказов на продажу" -#: part/serializers.py:1336 +#: part/serializers.py:1201 msgid "Allocated to Sales Orders" -msgstr "" +msgstr "Выделено для заказов на продажу" -#: part/serializers.py:1475 +#: part/serializers.py:1340 msgid "Minimum Price" msgstr "Минимальная цена" -#: part/serializers.py:1476 +#: part/serializers.py:1341 msgid "Override calculated value for minimum price" msgstr "Переопределить рассчитанное значение минимальной цены" -#: part/serializers.py:1483 +#: part/serializers.py:1348 msgid "Minimum price currency" msgstr "Валюта минимальной цены" -#: part/serializers.py:1490 +#: part/serializers.py:1355 msgid "Maximum Price" msgstr "Максимальная цена" -#: part/serializers.py:1491 +#: part/serializers.py:1356 msgid "Override calculated value for maximum price" msgstr "Переопределить рассчитанное значение максимальной цены" -#: part/serializers.py:1498 +#: part/serializers.py:1363 msgid "Maximum price currency" msgstr "Валюта максимальной цены" -#: part/serializers.py:1527 +#: part/serializers.py:1392 msgid "Update" msgstr "Обновить" -#: part/serializers.py:1528 +#: part/serializers.py:1393 msgid "Update pricing for this part" -msgstr "" +msgstr "Обновить цены для этой детали" -#: part/serializers.py:1551 +#: part/serializers.py:1416 #, python-brace-format msgid "Could not convert from provided currencies to {default_currency}" -msgstr "" +msgstr "Не удалось конвертировать из предоставленных валют в {default_currency}" -#: part/serializers.py:1558 +#: part/serializers.py:1423 msgid "Minimum price must not be greater than maximum price" -msgstr "" +msgstr "Минимальная цена не должна превышать максимальную цену" -#: part/serializers.py:1561 +#: part/serializers.py:1426 msgid "Maximum price must not be less than minimum price" -msgstr "" +msgstr "Максимальная цена не должна быть меньше минимальной" -#: part/serializers.py:1715 +#: part/serializers.py:1580 msgid "Select the parent assembly" -msgstr "" +msgstr "Выберите родительскую сборку" -#: part/serializers.py:1735 +#: part/serializers.py:1600 msgid "Select the component part" msgstr "Выберите деталь, которая является компонентом" -#: part/serializers.py:1929 +#: part/serializers.py:1802 msgid "Select part to copy BOM from" -msgstr "" +msgstr "Выберите деталь, из которой копировать спецификацию" -#: part/serializers.py:1937 +#: part/serializers.py:1810 msgid "Remove Existing Data" -msgstr "" +msgstr "Удалить существующие данные" -#: part/serializers.py:1938 +#: part/serializers.py:1811 msgid "Remove existing BOM items before copying" -msgstr "" +msgstr "Удалить существующие пункты спецификации перед копированием" -#: part/serializers.py:1943 +#: part/serializers.py:1816 msgid "Include Inherited" -msgstr "" +msgstr "Включая наследуемые" -#: part/serializers.py:1944 +#: part/serializers.py:1817 msgid "Include BOM items which are inherited from templated parts" -msgstr "" +msgstr "Включать пункты спецификации, унаследованные от шаблонных деталей" -#: part/serializers.py:1949 +#: part/serializers.py:1822 msgid "Skip Invalid Rows" msgstr "Пропустить некорректные строки" -#: part/serializers.py:1950 +#: part/serializers.py:1823 msgid "Enable this option to skip invalid rows" -msgstr "" +msgstr "Включите эту опцию, чтобы пропускать недопустимые строки" -#: part/serializers.py:1955 +#: part/serializers.py:1828 msgid "Copy Substitute Parts" -msgstr "" +msgstr "Копировать детали-заменители" -#: part/serializers.py:1956 +#: part/serializers.py:1829 msgid "Copy substitute parts when duplicate BOM items" -msgstr "" +msgstr "Копировать детали-заменители при дублировании пунктов спецификации" #: part/tasks.py:41 msgid "Low stock notification" -msgstr "" +msgstr "Уведомление о низком уровне запаса" #: part/tasks.py:43 #, python-brace-format msgid "The available stock for {part.name} has fallen below the configured minimum level" -msgstr "" +msgstr "Доступный запас для {part.name} упал ниже настроенного минимального уровня" #: part/tasks.py:73 msgid "Stale stock notification" -msgstr "" +msgstr "Уведомление о просроченном запасе" #: part/tasks.py:77 msgid "You have 1 stock item approaching its expiry date" -msgstr "" +msgstr "У вас 1 складская единица приближается к дате истечения срока годности" #: part/tasks.py:79 #, python-brace-format msgid "You have {item_count} stock items approaching their expiry dates" -msgstr "" +msgstr "У вас {item_count} складских единиц приближаются к дате истечения срока годности" #: part/tasks.py:88 msgid "No expiry date" -msgstr "" +msgstr "Нет даты истечения" #: part/tasks.py:95 msgid "Expired {abs(days_diff)} days ago" -msgstr "" +msgstr "Истёк {abs(days_diff)} дней назад" #: part/tasks.py:98 msgid "Expires today" -msgstr "" +msgstr "Истекает сегодня" #: part/tasks.py:101 #, python-brace-format msgid "{days_until_expiry} days" -msgstr "" +msgstr "{days_until_expiry} дней" #: plugin/api.py:80 msgid "Builtin" -msgstr "" +msgstr "Встроенный" #: plugin/api.py:94 msgid "Mandatory" @@ -6667,7 +6714,7 @@ msgstr "Обязательно" #: plugin/api.py:109 msgid "Sample" -msgstr "" +msgstr "Пример" #: plugin/api.py:123 plugin/models.py:167 msgid "Installed" @@ -6675,7 +6722,7 @@ msgstr "Установлено" #: plugin/api.py:190 msgid "Plugin cannot be deleted as it is currently active" -msgstr "" +msgstr "Плагин не может быть удалён, так как он активен" #: plugin/base/action/api.py:56 msgid "No action specified" @@ -6695,55 +6742,55 @@ msgstr "Найдено совпадение по штрих-коду" #: plugin/base/barcodes/api.py:253 plugin/base/barcodes/serializers.py:77 msgid "Model is not supported" -msgstr "" +msgstr "Модель не поддерживается" #: plugin/base/barcodes/api.py:258 msgid "Model instance not found" -msgstr "" +msgstr "Экземпляр модели не найден" #: plugin/base/barcodes/api.py:287 msgid "Barcode matches existing item" -msgstr "" +msgstr "Штрихкод соответствует существующему элементу" #: plugin/base/barcodes/api.py:418 msgid "No matching part data found" -msgstr "" +msgstr "Не найдено соответствующих данных детали" #: plugin/base/barcodes/api.py:434 msgid "No matching supplier parts found" -msgstr "" +msgstr "Не найдено соответствующих поставляемых деталей" #: plugin/base/barcodes/api.py:437 msgid "Multiple matching supplier parts found" -msgstr "" +msgstr "Найдено несколько соответствующих поставляемых деталей" #: plugin/base/barcodes/api.py:450 plugin/base/barcodes/api.py:677 msgid "No matching plugin found for barcode data" -msgstr "" +msgstr "Плагин, соответствующий данным штрихкода, не найден" #: plugin/base/barcodes/api.py:460 msgid "Matched supplier part" -msgstr "" +msgstr "Соответствующая поставляемая деталь" #: plugin/base/barcodes/api.py:528 msgid "Item has already been received" -msgstr "" +msgstr "Предмет уже был получен" #: plugin/base/barcodes/api.py:576 msgid "No plugin match for supplier barcode" -msgstr "" +msgstr "Нет совпадения плагина для штрихкода поставщика" #: plugin/base/barcodes/api.py:625 msgid "Multiple matching line items found" -msgstr "" +msgstr "Найдено несколько соответствующих позиций" #: plugin/base/barcodes/api.py:628 msgid "No matching line item found" -msgstr "" +msgstr "Не найдено соответствующей позиции" #: plugin/base/barcodes/api.py:674 msgid "No sales order provided" -msgstr "" +msgstr "Заказ на продажу не указан" #: plugin/base/barcodes/api.py:683 msgid "Barcode does not match an existing stock item" @@ -6755,7 +6802,7 @@ msgstr "Складская позиция не соответствует поз #: plugin/base/barcodes/api.py:729 msgid "Insufficient stock available" -msgstr "" +msgstr "Недостаточно запаса" #: plugin/base/barcodes/api.py:742 msgid "Stock item allocated to sales order" @@ -6763,140 +6810,140 @@ msgstr "Складская позиция зарезервирована зак #: plugin/base/barcodes/api.py:745 msgid "Not enough information" -msgstr "" +msgstr "Недостаточно информации" #: plugin/base/barcodes/mixins.py:308 #: plugin/builtin/barcodes/inventree_barcode.py:101 msgid "Found matching item" -msgstr "" +msgstr "Найден соответствующий элемент" #: plugin/base/barcodes/mixins.py:374 msgid "Supplier part does not match line item" -msgstr "" +msgstr "Поставляемая деталь не соответствует позиции" #: plugin/base/barcodes/mixins.py:377 msgid "Line item is already completed" -msgstr "" +msgstr "Позиция уже завершена" #: plugin/base/barcodes/mixins.py:414 msgid "Further information required to receive line item" -msgstr "" +msgstr "Для получения позиции требуется дополнительная информация" #: plugin/base/barcodes/mixins.py:422 msgid "Received purchase order line item" -msgstr "" +msgstr "Полученная позиция заказа на закупку" #: plugin/base/barcodes/mixins.py:429 msgid "Failed to receive line item" -msgstr "" +msgstr "Не удалось получить позицию" #: plugin/base/barcodes/serializers.py:53 msgid "Scanned barcode data" -msgstr "" +msgstr "Сканированные данные штрихкода" #: plugin/base/barcodes/serializers.py:62 msgid "Model name to generate barcode for" -msgstr "" +msgstr "Имя модели для генерации штрихкода" #: plugin/base/barcodes/serializers.py:67 msgid "Primary key of model object to generate barcode for" -msgstr "" +msgstr "Первичный ключ объекта модели, для которого генерируется штрихкод" #: plugin/base/barcodes/serializers.py:137 msgid "Purchase Order to allocate items against" -msgstr "" +msgstr "Заказ на закупку, на который выделяются элементы" #: plugin/base/barcodes/serializers.py:143 msgid "Purchase order is not open" -msgstr "" +msgstr "Заказ на закупку не открыт" #: plugin/base/barcodes/serializers.py:161 msgid "Supplier to receive items from" -msgstr "" +msgstr "Поставщик, от которого будут получены элементы" #: plugin/base/barcodes/serializers.py:168 msgid "PurchaseOrder to receive items against" -msgstr "" +msgstr "Заказ на закупку, в рамках которого принимаются элементы" #: plugin/base/barcodes/serializers.py:174 msgid "Purchase order has not been placed" -msgstr "" +msgstr "Заказ на закупку не оформлен" #: plugin/base/barcodes/serializers.py:182 msgid "Location to receive items into" -msgstr "" +msgstr "Место, куда будут поступать элементы" #: plugin/base/barcodes/serializers.py:188 msgid "Cannot select a structural location" -msgstr "" +msgstr "Нельзя выбрать структурное местоположение" #: plugin/base/barcodes/serializers.py:196 msgid "Purchase order line item to receive items against" -msgstr "" +msgstr "Позиция заказа на закупку, в рамках которой принимаются элементы" #: plugin/base/barcodes/serializers.py:202 msgid "Automatically allocate stock items to the purchase order" -msgstr "" +msgstr "Автоматически выделять складские элементы для заказа на закупку" #: plugin/base/barcodes/serializers.py:215 msgid "Sales Order to allocate items against" -msgstr "" +msgstr "Заказ на продажу, к которому выделяются элементы" #: plugin/base/barcodes/serializers.py:221 msgid "Sales order is not open" -msgstr "" +msgstr "Заказ на продажу не открыт" #: plugin/base/barcodes/serializers.py:229 msgid "Sales order line item to allocate items against" -msgstr "" +msgstr "Позиция заказа на продажу, к которой выделяются элементы" #: plugin/base/barcodes/serializers.py:236 msgid "Sales order shipment to allocate items against" -msgstr "" +msgstr "Отгрузка заказа на продажу, к которой выделяются элементы" #: plugin/base/barcodes/serializers.py:242 msgid "Shipment has already been delivered" -msgstr "" +msgstr "Отгрузка уже доставлена" #: plugin/base/barcodes/serializers.py:247 msgid "Quantity to allocate" -msgstr "" +msgstr "Количество для распределения" #: plugin/base/label/label.py:41 msgid "Label printing failed" -msgstr "" +msgstr "Печать этикетки не удалась" #: plugin/base/label/mixins.py:53 msgid "Error rendering label to PDF" -msgstr "" +msgstr "Ошибка при выводе этикетки в PDF" #: plugin/base/label/mixins.py:67 msgid "Error rendering label to HTML" -msgstr "" +msgstr "Ошибка при выводе этикетки в HTML" #: plugin/base/label/mixins.py:144 msgid "No items provided to print" -msgstr "" +msgstr "Нет элементов для печати" #: plugin/base/ui/serializers.py:30 msgid "Plugin Name" -msgstr "" +msgstr "Название плагина" #: plugin/base/ui/serializers.py:34 msgid "Feature Type" -msgstr "" +msgstr "Тип функции" #: plugin/base/ui/serializers.py:39 msgid "Feature Label" -msgstr "" +msgstr "Метка функции" #: plugin/base/ui/serializers.py:44 msgid "Feature Title" -msgstr "" +msgstr "Заголовок функции" #: plugin/base/ui/serializers.py:49 msgid "Feature Description" -msgstr "" +msgstr "Описание функции" #: plugin/base/ui/serializers.py:54 msgid "Feature Icon" @@ -6904,30 +6951,30 @@ msgstr "Значок функции" #: plugin/base/ui/serializers.py:58 msgid "Feature Options" -msgstr "" +msgstr "Настройки функции" #: plugin/base/ui/serializers.py:61 msgid "Feature Context" -msgstr "" +msgstr "Контекст функции" #: plugin/base/ui/serializers.py:64 msgid "Feature Source (javascript)" -msgstr "" +msgstr "Источник функции (javascript)" #: plugin/builtin/barcodes/inventree_barcode.py:27 msgid "InvenTree Barcodes" -msgstr "" +msgstr "Штрихкоды InvenTree" #: plugin/builtin/barcodes/inventree_barcode.py:28 msgid "Provides native support for barcodes" -msgstr "" +msgstr "Предоставляет встроенную поддержку штрихкодов" #: plugin/builtin/barcodes/inventree_barcode.py:30 #: plugin/builtin/events/auto_create_builds.py:30 #: plugin/builtin/events/auto_issue_orders.py:19 #: plugin/builtin/exporter/bom_exporter.py:73 #: plugin/builtin/exporter/inventree_exporter.py:17 -#: plugin/builtin/exporter/part_parameter_exporter.py:36 +#: plugin/builtin/exporter/parameter_exporter.py:32 #: plugin/builtin/exporter/stocktake_exporter.py:47 #: plugin/builtin/integration/core_notifications.py:25 #: plugin/builtin/integration/core_notifications.py:69 @@ -6941,180 +6988,176 @@ msgstr "" #: plugin/builtin/suppliers/digikey.py:20 plugin/builtin/suppliers/lcsc.py:22 #: plugin/builtin/suppliers/mouser.py:20 plugin/builtin/suppliers/tme.py:22 msgid "InvenTree contributors" -msgstr "" +msgstr "Участники InvenTree" #: plugin/builtin/barcodes/inventree_barcode.py:34 msgid "Internal Barcode Format" -msgstr "" +msgstr "Внутренний формат штрихкода" #: plugin/builtin/barcodes/inventree_barcode.py:35 msgid "Select an internal barcode format" -msgstr "" +msgstr "Выберите внутренний формат штрихкода" #: plugin/builtin/barcodes/inventree_barcode.py:37 msgid "JSON barcodes (human readable)" -msgstr "" +msgstr "JSON-штрихкоды (читаемые человеком)" #: plugin/builtin/barcodes/inventree_barcode.py:38 msgid "Short barcodes (space optimized)" -msgstr "" +msgstr "Короткие штрихкоды (оптимизированные по длине)" #: plugin/builtin/barcodes/inventree_barcode.py:43 msgid "Short Barcode Prefix" -msgstr "" +msgstr "Префикс короткого штрихкода" #: plugin/builtin/barcodes/inventree_barcode.py:45 msgid "Customize the prefix used for short barcodes, may be useful for environments with multiple InvenTree instances" -msgstr "" +msgstr "Настройте префикс, используемый для коротких штрихкодов, что может быть полезно в средах с несколькими экземплярами InvenTree" #: plugin/builtin/events/auto_create_builds.py:28 msgid "Auto Create Builds" -msgstr "" +msgstr "Автоматически создавать сборки" #: plugin/builtin/events/auto_create_builds.py:31 msgid "Automatically create build orders for assemblies" -msgstr "" +msgstr "Автоматически создавать заказы на сборку для сборочных изделий" #: plugin/builtin/events/auto_issue_orders.py:17 msgid "Auto Issue Orders" -msgstr "" +msgstr "Автоматически выпускать заказы" #: plugin/builtin/events/auto_issue_orders.py:20 msgid "Automatically issue orders on the assigned target date" -msgstr "" +msgstr "Автоматически выпускать заказы в назначенную целевую дату" #: plugin/builtin/events/auto_issue_orders.py:30 msgid "Auto Issue Build Orders" -msgstr "" +msgstr "Автоматически выпускать заказы на сборку" #: plugin/builtin/events/auto_issue_orders.py:32 msgid "Automatically issue build orders on the assigned target date" -msgstr "" +msgstr "Автоматически выпускать заказы на сборку в назначенную целевую дату" #: plugin/builtin/events/auto_issue_orders.py:38 msgid "Auto Issue Purchase Orders" -msgstr "" +msgstr "Автоматически выпускать заказы на закупку" #: plugin/builtin/events/auto_issue_orders.py:40 msgid "Automatically issue purchase orders on the assigned target date" -msgstr "" +msgstr "Автоматически выпускать заказы на закупку в назначенную целевую дату" #: plugin/builtin/events/auto_issue_orders.py:46 msgid "Auto Issue Sales Orders" -msgstr "" +msgstr "Автоматически выпускать заказы на продажу" #: plugin/builtin/events/auto_issue_orders.py:48 msgid "Automatically issue sales orders on the assigned target date" -msgstr "" +msgstr "Автоматически выпускать заказы на продажу в назначенную целевую дату" #: plugin/builtin/events/auto_issue_orders.py:54 msgid "Auto Issue Return Orders" -msgstr "" +msgstr "Автоматически выпускать заказы на возврат" #: plugin/builtin/events/auto_issue_orders.py:56 msgid "Automatically issue return orders on the assigned target date" -msgstr "" +msgstr "Автоматически выпускать заказы на возврат в назначенную целевую дату" #: plugin/builtin/events/auto_issue_orders.py:62 msgid "Issue Backdated Orders" -msgstr "" +msgstr "Выпускать задатированные заказы" #: plugin/builtin/events/auto_issue_orders.py:63 msgid "Automatically issue orders that are backdated" -msgstr "" +msgstr "Автоматически выпускать заказы с прошедшей датой" #: plugin/builtin/exporter/bom_exporter.py:21 msgid "Levels" -msgstr "" +msgstr "Уровни" #: plugin/builtin/exporter/bom_exporter.py:23 msgid "Number of levels to export - set to zero to export all BOM levels" -msgstr "" +msgstr "Количество уровней для экспорта — установите ноль, чтобы экспортировать все уровни спецификации" #: plugin/builtin/exporter/bom_exporter.py:30 #: plugin/builtin/exporter/bom_exporter.py:114 msgid "Total Quantity" -msgstr "" +msgstr "Общее количество" #: plugin/builtin/exporter/bom_exporter.py:31 msgid "Include total quantity of each part in the BOM" -msgstr "" +msgstr "Включать общее количество каждой детали в спецификацию" #: plugin/builtin/exporter/bom_exporter.py:35 -#: plugin/builtin/exporter/part_parameter_exporter.py:17 msgid "Stock Data" -msgstr "" +msgstr "Данные о запасах" #: plugin/builtin/exporter/bom_exporter.py:35 -#: plugin/builtin/exporter/part_parameter_exporter.py:17 msgid "Include part stock data" -msgstr "" +msgstr "Включать данные о запасах детали" #: plugin/builtin/exporter/bom_exporter.py:39 -#: plugin/builtin/exporter/part_parameter_exporter.py:21 #: plugin/builtin/exporter/stocktake_exporter.py:20 msgid "Pricing Data" -msgstr "" +msgstr "Данные о ценах" #: plugin/builtin/exporter/bom_exporter.py:39 -#: plugin/builtin/exporter/part_parameter_exporter.py:21 #: plugin/builtin/exporter/stocktake_exporter.py:20 msgid "Include part pricing data" -msgstr "" +msgstr "Включать данные о цене детали" #: plugin/builtin/exporter/bom_exporter.py:43 msgid "Supplier Data" -msgstr "" +msgstr "Данные о поставщиках" #: plugin/builtin/exporter/bom_exporter.py:43 msgid "Include supplier data" -msgstr "" +msgstr "Включать данные о поставщиках" #: plugin/builtin/exporter/bom_exporter.py:48 msgid "Manufacturer Data" -msgstr "" +msgstr "Данные о производителях" #: plugin/builtin/exporter/bom_exporter.py:49 msgid "Include manufacturer data" -msgstr "" +msgstr "Включать данные о производителях" #: plugin/builtin/exporter/bom_exporter.py:54 msgid "Substitute Data" -msgstr "" +msgstr "Данные о заменителях" #: plugin/builtin/exporter/bom_exporter.py:55 msgid "Include substitute part data" -msgstr "" +msgstr "Включать данные о детях-заменителях" #: plugin/builtin/exporter/bom_exporter.py:60 msgid "Parameter Data" -msgstr "" +msgstr "Данные о параметрах" #: plugin/builtin/exporter/bom_exporter.py:61 msgid "Include part parameter data" -msgstr "" +msgstr "Включать данные о параметрах детали" #: plugin/builtin/exporter/bom_exporter.py:70 msgid "Multi-Level BOM Exporter" -msgstr "" +msgstr "Экспорт многоуровневой спецификации" #: plugin/builtin/exporter/bom_exporter.py:71 msgid "Provides support for exporting multi-level BOMs" -msgstr "" +msgstr "Предоставляет поддержку экспорта многоуровневых спецификаций" #: plugin/builtin/exporter/bom_exporter.py:110 msgid "BOM Level" -msgstr "" +msgstr "Уровень спецификации" #: plugin/builtin/exporter/bom_exporter.py:120 #, python-brace-format msgid "Substitute {n}" -msgstr "" +msgstr "Замена {n}" #: plugin/builtin/exporter/bom_exporter.py:126 #, python-brace-format msgid "Supplier {n}" -msgstr "" +msgstr "Поставщик {n}" #: plugin/builtin/exporter/bom_exporter.py:127 #, python-brace-format @@ -7124,113 +7167,121 @@ msgstr "Артикул поставщика {n}" #: plugin/builtin/exporter/bom_exporter.py:128 #, python-brace-format msgid "Supplier {n} MPN" -msgstr "" +msgstr "Поставщик {n} MPN" #: plugin/builtin/exporter/bom_exporter.py:134 #, python-brace-format msgid "Manufacturer {n}" -msgstr "" +msgstr "Производитель {n}" #: plugin/builtin/exporter/bom_exporter.py:135 #, python-brace-format msgid "Manufacturer {n} MPN" -msgstr "" +msgstr "Производитель {n} MPN" #: plugin/builtin/exporter/inventree_exporter.py:14 msgid "InvenTree Generic Exporter" -msgstr "" +msgstr "Общий экспортёр InvenTree" #: plugin/builtin/exporter/inventree_exporter.py:15 msgid "Provides support for exporting data from InvenTree" +msgstr "Предоставляет поддержку экспорта данных из InvenTree" + +#: plugin/builtin/exporter/parameter_exporter.py:16 +msgid "Exclude Inactive" msgstr "" -#: plugin/builtin/exporter/part_parameter_exporter.py:33 -msgid "Part Parameter Exporter" +#: plugin/builtin/exporter/parameter_exporter.py:17 +msgid "Exclude parameters which are inactive" msgstr "" -#: plugin/builtin/exporter/part_parameter_exporter.py:34 -msgid "Exporter for part parameter data" +#: plugin/builtin/exporter/parameter_exporter.py:29 +msgid "Parameter Exporter" +msgstr "" + +#: plugin/builtin/exporter/parameter_exporter.py:30 +msgid "Exporter for model parameter data" msgstr "" #: plugin/builtin/exporter/stocktake_exporter.py:25 msgid "Include External Stock" -msgstr "" +msgstr "Включать внешний запас" #: plugin/builtin/exporter/stocktake_exporter.py:26 msgid "Include external stock in the stocktake data" -msgstr "" +msgstr "Включать внешний запас в данные инвентаризации" #: plugin/builtin/exporter/stocktake_exporter.py:31 msgid "Include Variant Items" -msgstr "" +msgstr "Включать варианты" #: plugin/builtin/exporter/stocktake_exporter.py:32 msgid "Include part variant stock in pricing calculations" -msgstr "" +msgstr "Включать запас вариантов детали в расчёты цен" #: plugin/builtin/exporter/stocktake_exporter.py:44 msgid "Part Stocktake Exporter" -msgstr "" +msgstr "Экспортёр инвентаризации деталей" #: plugin/builtin/exporter/stocktake_exporter.py:45 msgid "Exporter for part stocktake data" -msgstr "" +msgstr "Экспортёр данных инвентаризации деталей" #: plugin/builtin/exporter/stocktake_exporter.py:108 msgid "Minimum Unit Cost" -msgstr "" +msgstr "Минимальная стоимость за единицу" #: plugin/builtin/exporter/stocktake_exporter.py:109 msgid "Maximum Unit Cost" -msgstr "" +msgstr "Максимальная стоимость за единицу" #: plugin/builtin/exporter/stocktake_exporter.py:110 msgid "Minimum Total Cost" -msgstr "" +msgstr "Минимальная общая стоимость" #: plugin/builtin/exporter/stocktake_exporter.py:111 msgid "Maximum Total Cost" -msgstr "" +msgstr "Максимальная общая стоимость" #: plugin/builtin/integration/core_notifications.py:23 msgid "InvenTree UI Notifications" -msgstr "" +msgstr "Уведомления интерфейса InvenTree" #: plugin/builtin/integration/core_notifications.py:26 msgid "Integrated UI notification methods" -msgstr "" +msgstr "Интегрированные методы уведомлений в интерфейсе" #: plugin/builtin/integration/core_notifications.py:67 msgid "InvenTree Email Notifications" -msgstr "" +msgstr "Уведомления по электронной почте InvenTree" #: plugin/builtin/integration/core_notifications.py:70 msgid "Integrated email notification methods" -msgstr "" +msgstr "Интегрированные методы уведомлений по электронной почте" #: plugin/builtin/integration/core_notifications.py:75 msgid "Allow email notifications" -msgstr "" +msgstr "Разрешить уведомления по электронной почте" #: plugin/builtin/integration/core_notifications.py:76 msgid "Allow email notifications to be sent to this user" -msgstr "" +msgstr "Разрешить отправку уведомлений по электронной почте этому пользователю" #: plugin/builtin/integration/core_notifications.py:123 msgid "InvenTree Slack Notifications" -msgstr "" +msgstr "Уведомления Slack InvenTree" #: plugin/builtin/integration/core_notifications.py:126 msgid "Integrated Slack notification methods" -msgstr "" +msgstr "Интегрированные методы уведомлений Slack" #: plugin/builtin/integration/core_notifications.py:131 msgid "Slack incoming webhook url" -msgstr "" +msgstr "URL входящего webhook для Slack" #: plugin/builtin/integration/core_notifications.py:132 msgid "URL that is used to send messages to a slack channel" -msgstr "" +msgstr "URL, используемый для отправки сообщений в канал Slack" #: plugin/builtin/integration/core_notifications.py:162 msgid "Open link" @@ -7238,52 +7289,52 @@ msgstr "Открыть ссылку" #: plugin/builtin/integration/currency_exchange.py:22 msgid "InvenTree Currency Exchange" -msgstr "" +msgstr "Обмен валют InvenTree" #: plugin/builtin/integration/currency_exchange.py:23 msgid "Default currency exchange integration" -msgstr "" +msgstr "Интеграция обмена валют по умолчанию" #: plugin/builtin/integration/machine_types.py:15 msgid "InvenTree Machines" -msgstr "" +msgstr "Машины InvenTree" #: plugin/builtin/integration/machine_types.py:16 msgid "Built-in machine types for InvenTree" -msgstr "" +msgstr "Встроенные типы машин для InvenTree" #: plugin/builtin/integration/part_notifications.py:20 msgid "Part Notifications" -msgstr "" +msgstr "Уведомления о деталях" #: plugin/builtin/integration/part_notifications.py:22 msgid "Notify users about part changes" -msgstr "" +msgstr "Уведомлять пользователей об изменениях деталей" #: plugin/builtin/integration/part_notifications.py:27 msgid "Send notifications" -msgstr "" +msgstr "Отправлять уведомления" #: plugin/builtin/integration/part_notifications.py:28 msgid "Send notifications for part changes to subscribed users" -msgstr "" +msgstr "Отправлять уведомления об изменениях деталей подписанным пользователям" #: plugin/builtin/integration/part_notifications.py:45 msgid "Changed part notification" -msgstr "" +msgstr "Уведомление об изменённой детали" #: plugin/builtin/integration/part_notifications.py:55 #, python-brace-format msgid "The part `{part.name}` has been triggered with a `{part_action}` event" -msgstr "" +msgstr "Для детали `{part.name}` произошло событие `{part_action}`" #: plugin/builtin/labels/inventree_label.py:23 msgid "InvenTree PDF label printer" -msgstr "" +msgstr "PDF-печать этикеток InvenTree" #: plugin/builtin/labels/inventree_label.py:24 msgid "Provides native support for printing PDF labels" -msgstr "" +msgstr "Предоставляет встроенную поддержку печати этикеток PDF" #: plugin/builtin/labels/inventree_label.py:32 #: plugin/builtin/labels/label_sheet.py:78 @@ -7293,27 +7344,27 @@ msgstr "Режим отладки" #: plugin/builtin/labels/inventree_label.py:33 #: plugin/builtin/labels/label_sheet.py:79 msgid "Enable debug mode - returns raw HTML instead of PDF" -msgstr "" +msgstr "Включить режим отладки — возвращает чистый HTML вместо PDF" #: plugin/builtin/labels/inventree_machine.py:61 msgid "InvenTree machine label printer" -msgstr "" +msgstr "Печать этикеток на машине InvenTree" #: plugin/builtin/labels/inventree_machine.py:62 msgid "Provides support for printing using a machine" -msgstr "" +msgstr "Предоставляет поддержку печати с использованием машины" #: plugin/builtin/labels/inventree_machine.py:162 msgid "last used" -msgstr "" +msgstr "последнее использование" #: plugin/builtin/labels/inventree_machine.py:179 msgid "Options" -msgstr "" +msgstr "Параметры" #: plugin/builtin/labels/label_sheet.py:30 msgid "Page size for the label sheet" -msgstr "" +msgstr "Размер страницы для листа этикеток" #: plugin/builtin/labels/label_sheet.py:35 msgid "Skip Labels" @@ -7321,7 +7372,7 @@ msgstr "Пропустить Этикетки" #: plugin/builtin/labels/label_sheet.py:36 msgid "Skip this number of labels when printing label sheets" -msgstr "" +msgstr "Пропустить это количество этикеток при печати листов" #: plugin/builtin/labels/label_sheet.py:43 msgid "Border" @@ -7329,7 +7380,7 @@ msgstr "Граница" #: plugin/builtin/labels/label_sheet.py:44 msgid "Print a border around each label" -msgstr "" +msgstr "Печатать рамку вокруг каждой этикетки" #: plugin/builtin/labels/label_sheet.py:49 report/models.py:387 msgid "Landscape" @@ -7337,39 +7388,39 @@ msgstr "Альбомная" #: plugin/builtin/labels/label_sheet.py:50 msgid "Print the label sheet in landscape mode" -msgstr "" +msgstr "Печатать лист этикеток в альбомной ориентации" #: plugin/builtin/labels/label_sheet.py:55 msgid "Page Margin" -msgstr "" +msgstr "Поле страницы" #: plugin/builtin/labels/label_sheet.py:56 msgid "Margin around the page in mm" -msgstr "" +msgstr "Поле вокруг страницы в мм" #: plugin/builtin/labels/label_sheet.py:69 msgid "InvenTree Label Sheet Printer" -msgstr "" +msgstr "Печать листов этикеток InvenTree" #: plugin/builtin/labels/label_sheet.py:70 msgid "Arrays multiple labels onto a single sheet" -msgstr "" +msgstr "Размещает несколько этикеток на одном листе" #: plugin/builtin/labels/label_sheet.py:122 msgid "Label is too large for page size" -msgstr "" +msgstr "Этикетка слишком большая для размера страницы" #: plugin/builtin/labels/label_sheet.py:161 msgid "No labels were generated" -msgstr "" +msgstr "Не было создано ни одной этикетки" #: plugin/builtin/suppliers/digikey.py:17 msgid "Supplier Integration - DigiKey" -msgstr "" +msgstr "Интеграция поставщика — DigiKey" #: plugin/builtin/suppliers/digikey.py:18 msgid "Provides support for scanning DigiKey barcodes" -msgstr "" +msgstr "Предоставляет поддержку сканирования штрихкодов DigiKey" #: plugin/builtin/suppliers/digikey.py:27 msgid "The Supplier which acts as 'DigiKey'" @@ -7377,11 +7428,11 @@ msgstr "Поставщик, который представляет 'DigiKey'" #: plugin/builtin/suppliers/lcsc.py:19 msgid "Supplier Integration - LCSC" -msgstr "" +msgstr "Интеграция поставщика — LCSC" #: plugin/builtin/suppliers/lcsc.py:20 msgid "Provides support for scanning LCSC barcodes" -msgstr "" +msgstr "Предоставляет поддержку сканирования штрихкодов LCSC" #: plugin/builtin/suppliers/lcsc.py:28 msgid "The Supplier which acts as 'LCSC'" @@ -7389,11 +7440,11 @@ msgstr "Поставщик, который представляет 'LCSC'" #: plugin/builtin/suppliers/mouser.py:17 msgid "Supplier Integration - Mouser" -msgstr "" +msgstr "Интеграция поставщика — Mouser" #: plugin/builtin/suppliers/mouser.py:18 msgid "Provides support for scanning Mouser barcodes" -msgstr "" +msgstr "Предоставляет поддержку сканирования штрихкодов Mouser" #: plugin/builtin/suppliers/mouser.py:26 msgid "The Supplier which acts as 'Mouser'" @@ -7401,11 +7452,11 @@ msgstr "Поставщик, который представляет 'Mouser'" #: plugin/builtin/suppliers/tme.py:19 msgid "Supplier Integration - TME" -msgstr "" +msgstr "Интеграция поставщика — TME" #: plugin/builtin/suppliers/tme.py:20 msgid "Provides support for scanning TME barcodes" -msgstr "" +msgstr "Предоставляет поддержку сканирования штрихкодов TME" #: plugin/builtin/suppliers/tme.py:28 msgid "The Supplier which acts as 'TME'" @@ -7413,72 +7464,72 @@ msgstr "Поставщик, который представляет 'TME'" #: plugin/installer.py:240 plugin/installer.py:320 msgid "Only staff users can administer plugins" -msgstr "" +msgstr "Только пользователи с правами персонала могут управлять плагинами" #: plugin/installer.py:243 msgid "Plugin installation is disabled" -msgstr "" +msgstr "Установка плагинов отключена" #: plugin/installer.py:280 msgid "Installed plugin successfully" -msgstr "" +msgstr "Плагин успешно установлен" #: plugin/installer.py:285 #, python-brace-format msgid "Installed plugin into {path}" -msgstr "" +msgstr "Плагин установлен в {path}" #: plugin/installer.py:311 msgid "Plugin was not found in registry" -msgstr "" +msgstr "Плагин не найден в реестре" #: plugin/installer.py:314 msgid "Plugin is not a packaged plugin" -msgstr "" +msgstr "Плагин не является упакованным" #: plugin/installer.py:317 msgid "Plugin package name not found" -msgstr "" +msgstr "Имя пакета плагина не найдено" #: plugin/installer.py:337 msgid "Plugin uninstalling is disabled" -msgstr "" +msgstr "Удаление плагинов отключено" #: plugin/installer.py:341 msgid "Plugin cannot be uninstalled as it is currently active" -msgstr "" +msgstr "Плагин нельзя удалить, так как он активен" #: plugin/installer.py:347 msgid "Plugin cannot be uninstalled as it is mandatory" -msgstr "" +msgstr "Плагин нельзя удалить, так как он обязательный" #: plugin/installer.py:352 msgid "Plugin cannot be uninstalled as it is a sample plugin" -msgstr "" +msgstr "Плагин нельзя удалить, так как он является образцом" #: plugin/installer.py:357 msgid "Plugin cannot be uninstalled as it is a built-in plugin" -msgstr "" +msgstr "Плагин нельзя удалить, так как он встроенный" #: plugin/installer.py:361 msgid "Plugin is not installed" -msgstr "" +msgstr "Плагин не установлен" #: plugin/installer.py:379 msgid "Plugin installation not found" -msgstr "" +msgstr "Установка плагина не найдена" #: plugin/installer.py:395 msgid "Uninstalled plugin successfully" -msgstr "" +msgstr "Плагин успешно удалён" #: plugin/models.py:39 msgid "Plugin Configuration" -msgstr "" +msgstr "Конфигурация плагина" #: plugin/models.py:40 msgid "Plugin Configurations" -msgstr "" +msgstr "Конфигурации плагинов" #: plugin/models.py:47 msgid "Key of plugin" @@ -7486,7 +7537,7 @@ msgstr "Ключ плагина" #: plugin/models.py:55 msgid "PluginName of the plugin" -msgstr "" +msgstr "Имя плагина" #: plugin/models.py:62 plugin/serializers.py:119 msgid "Package Name" @@ -7494,11 +7545,11 @@ msgstr "Название плагина" #: plugin/models.py:64 msgid "Name of the installed package, if the plugin was installed via PIP" -msgstr "" +msgstr "Имя установленного пакета, если плагин был установлен через PIP" #: plugin/models.py:69 msgid "Is the plugin active" -msgstr "" +msgstr "Активен ли плагин" #: plugin/models.py:176 msgid "Sample plugin" @@ -7514,7 +7565,7 @@ msgstr "Обязательный плагин" #: plugin/models.py:210 msgid "Package Plugin" -msgstr "" +msgstr "Пакетный плагин" #: plugin/models.py:301 plugin/models.py:347 msgid "Plugin" @@ -7527,41 +7578,41 @@ msgstr "Автор не найден" #: plugin/registry.py:774 #, python-brace-format msgid "Plugin '{p}' is not compatible with the current InvenTree version {v}" -msgstr "" +msgstr "Плагин '{p}' несовместим с текущей версией InvenTree {v}" #: plugin/registry.py:777 #, python-brace-format msgid "Plugin requires at least version {v}" -msgstr "" +msgstr "Плагин требует как минимум версию {v}" #: plugin/registry.py:779 #, python-brace-format msgid "Plugin requires at most version {v}" -msgstr "" +msgstr "Плагин требует не более версии {v}" #: plugin/samples/integration/sample.py:52 msgid "User Setting 1" -msgstr "" +msgstr "Пользовательская настройка 1" #: plugin/samples/integration/sample.py:53 msgid "A user setting that can be changed by the user" -msgstr "" +msgstr "Пользовательская настройка, которую можно изменить" #: plugin/samples/integration/sample.py:57 msgid "User Setting 2" -msgstr "" +msgstr "Пользовательская настройка 2" #: plugin/samples/integration/sample.py:58 msgid "Another user setting" -msgstr "" +msgstr "Другая пользовательская настройка" #: plugin/samples/integration/sample.py:63 msgid "User Setting 3" -msgstr "" +msgstr "Пользовательская настройка 3" #: plugin/samples/integration/sample.py:64 msgid "A user setting with choices" -msgstr "" +msgstr "Пользовательская настройка с вариантами" #: plugin/samples/integration/sample.py:72 msgid "Enable PO" @@ -7569,7 +7620,7 @@ msgstr "Включить PO" #: plugin/samples/integration/sample.py:73 msgid "Enable PO functionality in InvenTree interface" -msgstr "" +msgstr "Включить функциональность заказов на закупку в интерфейсе InvenTree" #: plugin/samples/integration/sample.py:78 msgid "API Key" @@ -7585,7 +7636,7 @@ msgstr "Числовой" #: plugin/samples/integration/sample.py:84 msgid "A numerical setting" -msgstr "" +msgstr "Числовая настройка" #: plugin/samples/integration/sample.py:90 msgid "Choice Setting" @@ -7593,79 +7644,79 @@ msgstr "Настройки выбора" #: plugin/samples/integration/sample.py:91 msgid "A setting with multiple choices" -msgstr "" +msgstr "Настройка с несколькими вариантами" #: plugin/samples/integration/sample_currency_exchange.py:15 msgid "Sample currency exchange plugin" -msgstr "" +msgstr "Пример плагина обмена валют" #: plugin/samples/integration/sample_currency_exchange.py:18 msgid "InvenTree Contributors" -msgstr "" +msgstr "Участники InvenTree" #: plugin/samples/integration/user_interface_sample.py:27 msgid "Enable Part Panels" -msgstr "" +msgstr "Включить панели деталей" #: plugin/samples/integration/user_interface_sample.py:28 msgid "Enable custom panels for Part views" -msgstr "" +msgstr "Включить пользовательские панели для просмотров деталей" #: plugin/samples/integration/user_interface_sample.py:33 msgid "Enable Purchase Order Panels" -msgstr "" +msgstr "Включить панели заказов на закупку" #: plugin/samples/integration/user_interface_sample.py:34 msgid "Enable custom panels for Purchase Order views" -msgstr "" +msgstr "Включить пользовательские панели для просмотров заказов на закупку" #: plugin/samples/integration/user_interface_sample.py:39 msgid "Enable Broken Panels" -msgstr "" +msgstr "Включить повреждённые панели" #: plugin/samples/integration/user_interface_sample.py:40 msgid "Enable broken panels for testing" -msgstr "" +msgstr "Включить повреждённые панели для тестирования" #: plugin/samples/integration/user_interface_sample.py:45 msgid "Enable Dynamic Panel" -msgstr "" +msgstr "Включить динамическую панель" #: plugin/samples/integration/user_interface_sample.py:46 msgid "Enable dynamic panels for testing" -msgstr "" +msgstr "Включить динамические панели для тестирования" #: plugin/samples/integration/user_interface_sample.py:114 msgid "Part Panel" -msgstr "" +msgstr "Панель детали" #: plugin/samples/integration/user_interface_sample.py:149 msgid "Broken Dashboard Item" -msgstr "" +msgstr "Повреждённый элемент панели" #: plugin/samples/integration/user_interface_sample.py:151 msgid "This is a broken dashboard item - it will not render!" -msgstr "" +msgstr "Это повреждённый элемент панели — он не будет отображаться!" #: plugin/samples/integration/user_interface_sample.py:157 msgid "Sample Dashboard Item" -msgstr "" +msgstr "Пример элемента панели" #: plugin/samples/integration/user_interface_sample.py:159 msgid "This is a sample dashboard item. It renders a simple string of HTML content." -msgstr "" +msgstr "Это пример элемента панели. Он выводит простую строку HTML-содержимого." #: plugin/samples/integration/user_interface_sample.py:165 msgid "Context Dashboard Item" -msgstr "" +msgstr "Элемент панели контекста" #: plugin/samples/integration/user_interface_sample.py:179 msgid "Admin Dashboard Item" -msgstr "" +msgstr "Элемент панели администратора" #: plugin/samples/integration/user_interface_sample.py:180 msgid "This is an admin-only dashboard item." -msgstr "" +msgstr "Этот элемент панели доступен только администратору." #: plugin/serializers.py:86 msgid "Source File" @@ -7673,11 +7724,11 @@ msgstr "Исходный файл" #: plugin/serializers.py:87 msgid "Path to the source file for admin integration" -msgstr "" +msgstr "Путь к исходному файлу для интеграции администратора" #: plugin/serializers.py:94 msgid "Optional context data for the admin integration" -msgstr "" +msgstr "Необязательные данные контекста для интеграции администратора" #: plugin/serializers.py:110 msgid "Source URL" @@ -7709,11 +7760,11 @@ msgstr "Сразу установить плагин на текущий сер #: plugin/serializers.py:150 msgid "Installation not confirmed" -msgstr "" +msgstr "Установка не подтверждена" #: plugin/serializers.py:152 msgid "Either packagename of URL must be provided" -msgstr "" +msgstr "Необходимо указать название пакета или URL" #: plugin/serializers.py:188 msgid "Full reload" @@ -7721,7 +7772,7 @@ msgstr "Полная перезагрузка" #: plugin/serializers.py:189 msgid "Perform a full reload of the plugin registry" -msgstr "" +msgstr "Выполнить полную перезагрузку реестра плагинов" #: plugin/serializers.py:195 msgid "Force reload" @@ -7729,7 +7780,7 @@ msgstr "Принудительная перезагрузка" #: plugin/serializers.py:197 msgid "Force a reload of the plugin registry, even if it is already loaded" -msgstr "" +msgstr "Принудительно перезагрузить реестр плагинов, даже если он уже загружен" #: plugin/serializers.py:204 msgid "Collect plugins" @@ -7737,7 +7788,7 @@ msgstr "Собрать плагины" #: plugin/serializers.py:205 msgid "Collect plugins and add them to the registry" -msgstr "" +msgstr "Собрать плагины и добавить их в реестр" #: plugin/serializers.py:233 msgid "Activate Plugin" @@ -7745,23 +7796,23 @@ msgstr "Активировать плагин" #: plugin/serializers.py:234 msgid "Activate this plugin" -msgstr "" +msgstr "Активировать этот плагин" #: plugin/serializers.py:243 msgid "Mandatory plugin cannot be deactivated" -msgstr "" +msgstr "Обязательный плагин нельзя деактивировать" #: plugin/serializers.py:261 msgid "Delete configuration" -msgstr "" +msgstr "Удалить конфигурацию" #: plugin/serializers.py:262 msgid "Delete the plugin configuration from the database" -msgstr "" +msgstr "Удалить конфигурацию плагина из базы данных" #: plugin/serializers.py:293 msgid "The user for which this setting applies" -msgstr "" +msgstr "Пользователь, для которого применяется эта настройка" #: report/api.py:44 report/serializers.py:102 report/serializers.py:152 msgid "Items" @@ -7769,19 +7820,19 @@ msgstr "Элементы" #: report/api.py:115 msgid "Plugin not found" -msgstr "" +msgstr "Плагин не найден" #: report/api.py:117 msgid "Plugin does not support label printing" -msgstr "" +msgstr "Плагин не поддерживает печать этикеток" #: report/api.py:165 msgid "Invalid label dimensions" -msgstr "" +msgstr "Недопустимые размеры этикетки" #: report/api.py:183 report/api.py:267 msgid "No valid items provided to template" -msgstr "" +msgstr "Ни одного допустимого элемента не предоставлено для шаблона" #: report/helpers.py:43 msgid "A4" @@ -7801,7 +7852,7 @@ msgstr "Письмо" #: report/models.py:128 msgid "Template file with this name already exists" -msgstr "" +msgstr "Файл шаблона с таким именем уже существует" #: report/models.py:217 msgid "Template name" @@ -7817,11 +7868,11 @@ msgstr "Номер ревизии (автоматически)" #: report/models.py:235 msgid "Attach to Model on Print" -msgstr "" +msgstr "Прикреплять к модели при печати" #: report/models.py:237 msgid "Save report output as an attachment against linked model instance when printing" -msgstr "" +msgstr "Сохранять отчёт как вложение к связанному экземпляру модели при печати" #: report/models.py:281 msgid "Filename Pattern" @@ -7833,7 +7884,7 @@ msgstr "Шаблон для создания имён файлов" #: report/models.py:287 msgid "Template is enabled" -msgstr "" +msgstr "Шаблон включён" #: report/models.py:294 msgid "Target model type for template" @@ -7845,7 +7896,7 @@ msgstr "Фильтры" #: report/models.py:315 msgid "Template query filters (comma-separated list of key=value pairs)" -msgstr "" +msgstr "Фильтры запроса шаблона (список ключ=значение через запятую)" #: report/models.py:374 report/models.py:670 msgid "Template file" @@ -7853,40 +7904,40 @@ msgstr "Файл шаблона" #: report/models.py:382 msgid "Page size for PDF reports" -msgstr "" +msgstr "Размер страницы для PDF-отчётов" #: report/models.py:388 msgid "Render report in landscape orientation" -msgstr "" +msgstr "Рендерить отчёт в альбомной ориентации" #: report/models.py:393 msgid "Merge" -msgstr "" +msgstr "Объединить" #: report/models.py:394 msgid "Render a single report against selected items" -msgstr "" +msgstr "Рендерить один отчёт по выбранным элементам" #: report/models.py:449 #, python-brace-format msgid "Report generated from template {self.name}" -msgstr "" +msgstr "Отчёт, сгенерированный из шаблона {self.name}" #: report/models.py:546 report/models.py:585 report/models.py:586 msgid "Template syntax error" -msgstr "" +msgstr "Синтаксическая ошибка в шаблоне" #: report/models.py:553 report/models.py:592 msgid "Error rendering report" -msgstr "" +msgstr "Ошибка при рендеринге отчёта" #: report/models.py:612 msgid "Error generating report" -msgstr "" +msgstr "Ошибка при генерации отчёта" #: report/models.py:644 msgid "Error merging report outputs" -msgstr "" +msgstr "Ошибка при объединении выводов отчётов" #: report/models.py:676 msgid "Width [mm]" @@ -7906,7 +7957,7 @@ msgstr "Высота этикетки, задаётся в миллиметра #: report/models.py:789 msgid "Error printing labels" -msgstr "" +msgstr "Ошибка при печати этикеток" #: report/models.py:808 msgid "Snippet" @@ -7914,7 +7965,7 @@ msgstr "Сниппет" #: report/models.py:809 msgid "Report snippet file" -msgstr "" +msgstr "Файл фрагмента отчёта" #: report/models.py:816 msgid "Snippet file description" @@ -7926,7 +7977,7 @@ msgstr "Объект" #: report/models.py:835 msgid "Report asset file" -msgstr "" +msgstr "Файл ресурса отчёта" #: report/models.py:842 msgid "Asset file description" @@ -7938,7 +7989,7 @@ msgstr "Выберите шаблон отчёта" #: report/serializers.py:103 report/serializers.py:153 msgid "List of item primary keys to include in the report" -msgstr "" +msgstr "Список первичных ключей элементов, включаемых в отчёт" #: report/serializers.py:136 msgid "Select label template" @@ -7996,11 +8047,11 @@ msgstr "Создано" #: report/templates/report/inventree_purchase_order_report.html:15 msgid "Supplier was deleted" -msgstr "" +msgstr "Поставщик был удалён" #: report/templates/report/inventree_purchase_order_report.html:22 msgid "Order Details" -msgstr "" +msgstr "Подробности заказа" #: report/templates/report/inventree_purchase_order_report.html:37 #: report/templates/report/inventree_sales_order_report.html:30 @@ -8037,7 +8088,7 @@ msgstr "Партия" #: report/templates/report/inventree_stock_location_report.html:97 msgid "Stock location items" -msgstr "" +msgstr "Элементы местоположения запаса" #: report/templates/report/inventree_stock_report_merge.html:21 #: report/templates/report/inventree_test_report.html:21 @@ -8073,39 +8124,39 @@ msgstr "Провален" #: report/templates/report/inventree_test_report.html:138 msgid "No result (required)" -msgstr "" +msgstr "Нет результата (обязательно)" #: report/templates/report/inventree_test_report.html:140 msgid "No result" msgstr "Нет результата" -#: report/templatetags/report.py:167 +#: report/templatetags/report.py:169 msgid "Asset file does not exist" -msgstr "" +msgstr "Файл ресурса не существует" -#: report/templatetags/report.py:224 report/templatetags/report.py:300 +#: report/templatetags/report.py:226 report/templatetags/report.py:302 msgid "Image file not found" -msgstr "" +msgstr "Файл изображения не найден" -#: report/templatetags/report.py:325 +#: report/templatetags/report.py:327 msgid "part_image tag requires a Part instance" -msgstr "" +msgstr "Тег part_image требует экземпляр детали" -#: report/templatetags/report.py:362 +#: report/templatetags/report.py:383 msgid "company_image tag requires a Company instance" -msgstr "" +msgstr "Тег company_image требует экземпляр компании" #: stock/api.py:288 msgid "Filter by location depth" -msgstr "" +msgstr "Фильтровать по глубине местоположения" #: stock/api.py:308 msgid "Filter by top-level locations" -msgstr "" +msgstr "Фильтровать по местоположениям верхнего уровня" #: stock/api.py:323 msgid "Include sub-locations in filtered results" -msgstr "" +msgstr "Включать подместоположения в отфильтрованные результаты" #: stock/api.py:344 stock/serializers.py:1185 msgid "Parent Location" @@ -8113,39 +8164,39 @@ msgstr "Основной склад" #: stock/api.py:345 msgid "Filter by parent location" -msgstr "" +msgstr "Фильтровать по родительскому местоположению" #: stock/api.py:605 msgid "Part name (case insensitive)" -msgstr "" +msgstr "Название детали (без учёта регистра)" #: stock/api.py:611 msgid "Part name contains (case insensitive)" -msgstr "" +msgstr "Название детали содержит (без учёта регистра)" #: stock/api.py:617 msgid "Part name (regex)" -msgstr "" +msgstr "Название детали (regex)" #: stock/api.py:622 msgid "Part IPN (case insensitive)" -msgstr "" +msgstr "IPN детали (без учёта регистра)" #: stock/api.py:628 msgid "Part IPN contains (case insensitive)" -msgstr "" +msgstr "IPN детали содержит (без учёта регистра)" #: stock/api.py:634 msgid "Part IPN (regex)" -msgstr "" +msgstr "IPN детали (regex)" #: stock/api.py:646 msgid "Minimum stock" -msgstr "" +msgstr "Минимальный запас" #: stock/api.py:650 msgid "Maximum stock" -msgstr "" +msgstr "Максимальный запас" #: stock/api.py:653 msgid "Status Code" @@ -8153,7 +8204,7 @@ msgstr "Код статуса" #: stock/api.py:693 msgid "External Location" -msgstr "" +msgstr "Внешнее местоположение" #: stock/api.py:792 msgid "Consumed by Build Order" @@ -8161,7 +8212,7 @@ msgstr "Израсходовано для заказов на сборку" #: stock/api.py:802 msgid "Installed in other stock item" -msgstr "" +msgstr "Установлено в другом складе" #: stock/api.py:891 msgid "Part Tree" @@ -8169,27 +8220,27 @@ msgstr "Древо Деталей" #: stock/api.py:913 msgid "Updated before" -msgstr "" +msgstr "Обновлено до" #: stock/api.py:917 msgid "Updated after" -msgstr "" +msgstr "Обновлено после" #: stock/api.py:921 msgid "Stocktake Before" -msgstr "" +msgstr "Инвентаризация до" #: stock/api.py:925 msgid "Stocktake After" -msgstr "" +msgstr "Инвентаризация после" #: stock/api.py:930 msgid "Expiry date before" -msgstr "" +msgstr "Дата истечения до" #: stock/api.py:934 msgid "Expiry date after" -msgstr "" +msgstr "Дата истечения после" #: stock/api.py:937 stock/serializers.py:631 msgid "Stale" @@ -8197,19 +8248,19 @@ msgstr "Залежалый" #: stock/api.py:963 msgid "Provide a StockItem PK to exclude that item and all its descendants" -msgstr "" +msgstr "Укажите первичный ключ складского элемента, чтобы исключить этот элемент и всех его потомков" #: stock/api.py:981 msgid "Cascade Locations" -msgstr "" +msgstr "Каскад местоположений" #: stock/api.py:982 msgid "If true, include items in child locations of the given location" -msgstr "" +msgstr "Если включено, включать элементы в дочерних местоположениях данного местоположения" #: stock/api.py:988 msgid "Filter by numeric Location ID or the literal 'null'" -msgstr "" +msgstr "Фильтровать по числовому идентификатору местоположения или литералу 'null'" #: stock/api.py:1084 msgid "Quantity is required" @@ -8217,15 +8268,15 @@ msgstr "Необходимо указать количество" #: stock/api.py:1089 msgid "Valid part must be supplied" -msgstr "" +msgstr "Необходимо предоставить действительную деталь" #: stock/api.py:1120 msgid "The given supplier part does not exist" -msgstr "" +msgstr "Указанная поставляемая деталь не существует" #: stock/api.py:1130 msgid "The supplier part has a pack size defined, but flag use_pack_size not set" -msgstr "" +msgstr "У поставляемой детали определён размер упаковки, но флаг use_pack_size не установлен" #: stock/api.py:1162 msgid "Serial numbers cannot be supplied for a non-trackable part" @@ -8233,28 +8284,28 @@ msgstr "Не нужно указывать серийные номера для #: stock/api.py:1396 msgid "Include Installed" -msgstr "" +msgstr "Включать установленные" #: stock/api.py:1398 msgid "If true, include test results for items installed underneath the given stock item" -msgstr "" +msgstr "Если включено, включать результаты тестов для предметов, установленных под данным складским элементом" #: stock/api.py:1405 msgid "Filter by numeric Stock Item ID" -msgstr "" +msgstr "Фильтровать по числовому идентификатору складского элемента" #: stock/api.py:1426 #, python-brace-format msgid "Stock item with ID {id} does not exist" -msgstr "" +msgstr "Складской элемент с ID {id} не существует" #: stock/models.py:71 msgid "Stock Location type" -msgstr "" +msgstr "Тип местоположения склада" #: stock/models.py:72 msgid "Stock Location types" -msgstr "" +msgstr "Типы местоположения склада" #: stock/models.py:98 msgid "Default icon for all locations that have no icon set (optional)" @@ -8303,11 +8354,11 @@ msgstr "Вы не можете сделать это место хранение #: stock/models.py:594 #, python-brace-format msgid "{field} does not exist" -msgstr "" +msgstr "{field} не существует" #: stock/models.py:607 msgid "Part must be specified" -msgstr "" +msgstr "Необходимо указать деталь" #: stock/models.py:904 msgid "Stock items cannot be located into structural stock locations!" @@ -8320,19 +8371,19 @@ msgstr "Складская позиция не может быть создан #: stock/models.py:948 #, python-brace-format msgid "Part type ('{self.supplier_part.part}') must be {self.part}" -msgstr "" +msgstr "Тип детали ('{self.supplier_part.part}') должен быть {self.part}" #: stock/models.py:958 stock/models.py:971 msgid "Quantity must be 1 for item with a serial number" -msgstr "" +msgstr "Количество должно быть 1 для элемента с серийным номером" #: stock/models.py:961 msgid "Serial number cannot be set if quantity greater than 1" -msgstr "" +msgstr "Серийный номер нельзя задать, если количество больше 1" #: stock/models.py:983 msgid "Item cannot belong to itself" -msgstr "" +msgstr "Элемент не может принадлежать сам себе" #: stock/models.py:988 msgid "Item must have a build reference if is_building=True" @@ -8368,11 +8419,11 @@ msgstr "Установлено в" #: stock/models.py:1068 msgid "Is this item installed in another item?" -msgstr "" +msgstr "Установлен ли этот элемент в другой элемент?" #: stock/models.py:1087 msgid "Serial number for this item" -msgstr "" +msgstr "Серийный номер для этого элемента" #: stock/models.py:1104 stock/serializers.py:1592 msgid "Batch code for this stock item" @@ -8400,7 +8451,7 @@ msgstr "Заказ на производство, который поглоти #: stock/models.py:1141 msgid "Source Purchase Order" -msgstr "" +msgstr "Исходный заказ на закупку" #: stock/models.py:1145 msgid "Purchase order for this stock item" @@ -8408,7 +8459,7 @@ msgstr "Заказ на закупку для этой складской поз #: stock/models.py:1151 msgid "Destination Sales Order" -msgstr "" +msgstr "Целевой заказ на продажу" #: stock/models.py:1162 msgid "Expiry date for stock item. Stock will be considered expired after this date" @@ -8424,15 +8475,15 @@ msgstr "Удалить эту складскую позицию при обну #: stock/models.py:1202 msgid "Single unit purchase price at time of purchase" -msgstr "" +msgstr "Цена за единицу на момент покупки" #: stock/models.py:1233 msgid "Converted to part" -msgstr "" +msgstr "Преобразовано в деталь" #: stock/models.py:1435 msgid "Quantity exceeds available stock" -msgstr "" +msgstr "Количество превышает доступный запас" #: stock/models.py:1869 msgid "Part is not set as trackable" @@ -8440,172 +8491,176 @@ msgstr "Деталь не является отслеживаемой" #: stock/models.py:1875 msgid "Quantity must be integer" -msgstr "" +msgstr "Количество должно быть целым числом" #: stock/models.py:1883 #, python-brace-format msgid "Quantity must not exceed available stock quantity ({self.quantity})" -msgstr "" +msgstr "Количество не должно превышать доступный запас ({self.quantity})" #: stock/models.py:1889 msgid "Serial numbers must be provided as a list" -msgstr "" +msgstr "Серийные номера должны быть предоставлены в виде списка" #: stock/models.py:1894 msgid "Quantity does not match serial numbers" -msgstr "" +msgstr "Количество не соответствует серийным номерам" -#: stock/models.py:2012 stock/models.py:2917 +#: stock/models.py:1912 +msgid "Cannot assign stock to structural location" +msgstr "Нельзя назначить запас в структурное местоположение" + +#: stock/models.py:2029 stock/models.py:2934 msgid "Test template does not exist" -msgstr "" +msgstr "Шаблон теста не существует" -#: stock/models.py:2030 +#: stock/models.py:2047 msgid "Stock item has been assigned to a sales order" msgstr "Складская позиция была назначена заказу на продажу" -#: stock/models.py:2034 +#: stock/models.py:2051 msgid "Stock item is installed in another item" msgstr "Складская позиция установлена в другую деталь" -#: stock/models.py:2037 +#: stock/models.py:2054 msgid "Stock item contains other items" msgstr "Складская позиция содержит другие детали" -#: stock/models.py:2040 +#: stock/models.py:2057 msgid "Stock item has been assigned to a customer" msgstr "Складская позиция была назначена покупателю" -#: stock/models.py:2043 stock/models.py:2226 +#: stock/models.py:2060 stock/models.py:2243 msgid "Stock item is currently in production" msgstr "Складская позиция в производстве" -#: stock/models.py:2046 +#: stock/models.py:2063 msgid "Serialized stock cannot be merged" -msgstr "" +msgstr "Серийные запасы нельзя объединить" -#: stock/models.py:2053 stock/serializers.py:1462 +#: stock/models.py:2070 stock/serializers.py:1462 msgid "Duplicate stock items" -msgstr "" +msgstr "Дублирующие складские элементы" -#: stock/models.py:2057 +#: stock/models.py:2074 msgid "Stock items must refer to the same part" msgstr "Складские позиции должны ссылаться на одну и ту же деталь" -#: stock/models.py:2065 +#: stock/models.py:2082 msgid "Stock items must refer to the same supplier part" msgstr "Складские позиции должны ссылаться на одну и ту же деталь поставщика" -#: stock/models.py:2070 +#: stock/models.py:2087 msgid "Stock status codes must match" -msgstr "" +msgstr "Коды статуса запаса должны совпадать" -#: stock/models.py:2349 +#: stock/models.py:2366 msgid "StockItem cannot be moved as it is not in stock" -msgstr "" +msgstr "Складской элемент нельзя переместить, так как он отсутствует на складе" -#: stock/models.py:2818 +#: stock/models.py:2835 msgid "Stock Item Tracking" -msgstr "" +msgstr "Отслеживание складского элемента" -#: stock/models.py:2849 +#: stock/models.py:2866 msgid "Entry notes" -msgstr "" +msgstr "Заметки к записи" -#: stock/models.py:2889 +#: stock/models.py:2906 msgid "Stock Item Test Result" -msgstr "" +msgstr "Результат теста складского элемента" -#: stock/models.py:2920 +#: stock/models.py:2937 msgid "Value must be provided for this test" -msgstr "" +msgstr "Для этого теста должно быть указано значение" -#: stock/models.py:2924 +#: stock/models.py:2941 msgid "Attachment must be uploaded for this test" msgstr "Для этого теста требуется загрузить вложения" -#: stock/models.py:2929 +#: stock/models.py:2946 msgid "Invalid value for this test" -msgstr "" +msgstr "Недопустимое значение для этого теста" -#: stock/models.py:2953 +#: stock/models.py:2970 msgid "Test result" msgstr "Результат тестирования" -#: stock/models.py:2960 +#: stock/models.py:2977 msgid "Test output value" msgstr "Результат выполнения теста" -#: stock/models.py:2968 stock/serializers.py:248 +#: stock/models.py:2985 stock/serializers.py:248 msgid "Test result attachment" msgstr "Вложение с результатом теста" -#: stock/models.py:2972 +#: stock/models.py:2989 msgid "Test notes" msgstr "Заметки о тестировании" -#: stock/models.py:2980 +#: stock/models.py:2997 msgid "Test station" msgstr "Испытательное оборудование" -#: stock/models.py:2981 +#: stock/models.py:2998 msgid "The identifier of the test station where the test was performed" msgstr "Идентификатор испытательного оборудования, на котором выполнялось тестирование" -#: stock/models.py:2987 +#: stock/models.py:3004 msgid "Started" msgstr "Запущен" -#: stock/models.py:2988 +#: stock/models.py:3005 msgid "The timestamp of the test start" msgstr "Время начала тестирования" -#: stock/models.py:2994 +#: stock/models.py:3011 msgid "Finished" msgstr "Завершён" -#: stock/models.py:2995 +#: stock/models.py:3012 msgid "The timestamp of the test finish" msgstr "Время окончания тестирования" #: stock/serializers.py:85 msgid "Generated batch code" -msgstr "" +msgstr "Сгенерированный код партии" #: stock/serializers.py:94 msgid "Select build order" -msgstr "" +msgstr "Выбрать заказ на сборку" #: stock/serializers.py:103 msgid "Select stock item to generate batch code for" -msgstr "" +msgstr "Выберите складской элемент для генерации кода партии" #: stock/serializers.py:112 msgid "Select location to generate batch code for" -msgstr "" +msgstr "Выберите место для генерации кода партии" #: stock/serializers.py:121 msgid "Select part to generate batch code for" -msgstr "" +msgstr "Выберите деталь для генерации кода партии" #: stock/serializers.py:130 msgid "Select purchase order" -msgstr "" +msgstr "Выберите заказ на закупку" #: stock/serializers.py:137 msgid "Enter quantity for batch code" -msgstr "" +msgstr "Введите количество для кода партии" #: stock/serializers.py:163 msgid "Generated serial number" -msgstr "" +msgstr "Сгенерированный серийный номер" #: stock/serializers.py:173 msgid "Select part to generate serial number for" -msgstr "" +msgstr "Выберите деталь для генерации серийного номера" #: stock/serializers.py:181 msgid "Quantity of serial numbers to generate" -msgstr "" +msgstr "Количество серийных номеров для генерации" #: stock/serializers.py:235 msgid "Test template for this result" @@ -8613,11 +8668,11 @@ msgstr "Шаблон теста для этого результата" #: stock/serializers.py:278 msgid "No matching test found for this part" -msgstr "" +msgstr "Для этой детали не найдено подходящего теста" #: stock/serializers.py:282 msgid "Template ID or test name must be provided" -msgstr "" +msgstr "Необходимо указать ID шаблона или имя теста" #: stock/serializers.py:292 msgid "The test finished time cannot be earlier than the test started time" @@ -8629,15 +8684,15 @@ msgstr "Родительский элемент" #: stock/serializers.py:415 msgid "Parent stock item" -msgstr "" +msgstr "Родительский складской элемент" #: stock/serializers.py:438 msgid "Use pack size when adding: the quantity defined is the number of packs" -msgstr "" +msgstr "Использовать размер упаковки при добавлении: заданное количество — это количество упаковок" #: stock/serializers.py:440 msgid "Use pack size" -msgstr "" +msgstr "Использовать размер упаковки" #: stock/serializers.py:447 stock/serializers.py:700 msgid "Enter serial numbers for new items" @@ -8657,7 +8712,7 @@ msgstr "Дочерние элементы" #: stock/serializers.py:633 msgid "Tracking Items" -msgstr "" +msgstr "Отслеживание элементов" #: stock/serializers.py:639 msgid "Purchase price of this stock item, per unit or pack" @@ -8670,15 +8725,15 @@ msgstr "Введите количество складских позиций д #: stock/serializers.py:685 stock/serializers.py:728 stock/serializers.py:766 #: stock/serializers.py:904 msgid "No stock item provided" -msgstr "" +msgstr "Складской элемент не предоставлен" #: stock/serializers.py:693 #, python-brace-format msgid "Quantity must not exceed available stock quantity ({q})" -msgstr "" +msgstr "Количество не должно превышать доступный запас ({q})" -#: stock/serializers.py:711 stock/serializers.py:1419 stock/serializers.py:1732 -#: stock/serializers.py:1781 +#: stock/serializers.py:711 stock/serializers.py:1419 stock/serializers.py:1740 +#: stock/serializers.py:1789 msgid "Destination stock location" msgstr "Целевое место хранения" @@ -8696,11 +8751,11 @@ msgstr "Выберите складскую позицию для установ #: stock/serializers.py:808 msgid "Quantity to Install" -msgstr "" +msgstr "Количество для установки" #: stock/serializers.py:809 msgid "Enter the quantity of items to install" -msgstr "" +msgstr "Введите количество элементов для установки" #: stock/serializers.py:814 stock/serializers.py:894 stock/serializers.py:1036 msgid "Add transaction note (optional)" @@ -8708,7 +8763,7 @@ msgstr "Добавить запись к транзакции (необязат #: stock/serializers.py:822 msgid "Quantity to install must be at least 1" -msgstr "" +msgstr "Количество для установки должно быть не менее 1" #: stock/serializers.py:830 msgid "Stock item is unavailable" @@ -8720,11 +8775,11 @@ msgstr "Выбранная деталь отсутствует в специфи #: stock/serializers.py:854 msgid "Quantity to install must not exceed available quantity" -msgstr "" +msgstr "Количество для установки не должно превышать доступное количество" #: stock/serializers.py:889 msgid "Destination location for uninstalled item" -msgstr "" +msgstr "Место назначения для демонтированного элемента" #: stock/serializers.py:927 msgid "Select part to convert stock item into" @@ -8732,7 +8787,7 @@ msgstr "Выберите деталь в которую будет преобр #: stock/serializers.py:940 msgid "Selected part is not a valid option for conversion" -msgstr "" +msgstr "Выбранная деталь не является допустимым вариантом для преобразования" #: stock/serializers.py:957 msgid "Cannot convert stock item with assigned SupplierPart" @@ -8756,15 +8811,15 @@ msgstr "Места хранения" #: stock/serializers.py:1186 msgid "Parent stock location" -msgstr "" +msgstr "Родительское местоположение запаса" #: stock/serializers.py:1291 msgid "Part must be salable" -msgstr "" +msgstr "Деталь должна быть продаваемой" #: stock/serializers.py:1295 msgid "Item is allocated to a sales order" -msgstr "" +msgstr "Элемент распределён в заказ на продажу" #: stock/serializers.py:1299 msgid "Item is allocated to a build order" @@ -8816,39 +8871,39 @@ msgstr "Нет изменений" #: stock/serializers.py:1553 msgid "StockItem primary key value" -msgstr "" +msgstr "Первичный ключ складского элемента" #: stock/serializers.py:1566 msgid "Stock item is not in stock" -msgstr "" +msgstr "Складской элемент отсутствует на складе" #: stock/serializers.py:1569 msgid "Stock item is already in stock" -msgstr "" +msgstr "Складской элемент уже на складе" #: stock/serializers.py:1583 msgid "Quantity must not be negative" -msgstr "" +msgstr "Количество не должно быть отрицательным" #: stock/serializers.py:1625 msgid "Stock transaction notes" msgstr "Заметки об изменении склада" -#: stock/serializers.py:1787 +#: stock/serializers.py:1795 msgid "Merge into existing stock" -msgstr "" +msgstr "Объединить с существующим запасом" -#: stock/serializers.py:1788 +#: stock/serializers.py:1796 msgid "Merge returned items into existing stock items if possible" -msgstr "" +msgstr "Объединять возвращённые элементы с существующими складскими элементами, если возможно" -#: stock/serializers.py:1831 +#: stock/serializers.py:1839 msgid "Next Serial Number" -msgstr "" +msgstr "Следующий серийный номер" -#: stock/serializers.py:1837 +#: stock/serializers.py:1845 msgid "Previous Serial Number" -msgstr "" +msgstr "Предыдущий серийный номер" #: stock/status_codes.py:11 msgid "OK" @@ -8902,83 +8957,87 @@ msgstr "Запасы, добавленные вручную" msgid "Stock manually removed" msgstr "Запасы удаленные вручную" -#: stock/status_codes.py:57 -msgid "Returned to stock" -msgstr "" +#: stock/status_codes.py:56 +msgid "Serialized stock items" +msgstr "Серийные складские элементы" -#: stock/status_codes.py:60 +#: stock/status_codes.py:58 +msgid "Returned to stock" +msgstr "Возвращено на склад" + +#: stock/status_codes.py:61 msgid "Location changed" msgstr "Место хранения изменено" -#: stock/status_codes.py:61 +#: stock/status_codes.py:62 msgid "Stock updated" msgstr "Запас обновлен" -#: stock/status_codes.py:64 +#: stock/status_codes.py:65 msgid "Installed into assembly" msgstr "Установленно в производимую деталь" -#: stock/status_codes.py:65 +#: stock/status_codes.py:66 msgid "Removed from assembly" msgstr "Удалено из производимой детали" -#: stock/status_codes.py:67 +#: stock/status_codes.py:68 msgid "Installed component item" msgstr "Установленный компонент" -#: stock/status_codes.py:68 +#: stock/status_codes.py:69 msgid "Removed component item" msgstr "Удаленный компонент" -#: stock/status_codes.py:71 +#: stock/status_codes.py:72 msgid "Split from parent item" msgstr "Отделить от родительского элемента" -#: stock/status_codes.py:72 +#: stock/status_codes.py:73 msgid "Split child item" msgstr "Разбить дочерний элемент" -#: stock/status_codes.py:75 +#: stock/status_codes.py:76 msgid "Merged stock items" msgstr "Объединенные складские позиции" -#: stock/status_codes.py:78 +#: stock/status_codes.py:79 msgid "Converted to variant" msgstr "Преобразовать в разновидность" -#: stock/status_codes.py:81 +#: stock/status_codes.py:82 msgid "Build order output created" msgstr "Создан выход продукции для этого заказа на производство" -#: stock/status_codes.py:82 +#: stock/status_codes.py:83 msgid "Build order output completed" msgstr "Продукция заказа на производство завершена" -#: stock/status_codes.py:83 +#: stock/status_codes.py:84 msgid "Build order output rejected" msgstr "Продукция заказа на производство отклонена" -#: stock/status_codes.py:84 +#: stock/status_codes.py:85 msgid "Consumed by build order" msgstr "Поглощен заказом на производство" -#: stock/status_codes.py:87 +#: stock/status_codes.py:88 msgid "Shipped against Sales Order" msgstr "Отгружено по заказу на продажу" -#: stock/status_codes.py:90 +#: stock/status_codes.py:91 msgid "Received against Purchase Order" msgstr "Получено по заказу на поставку" -#: stock/status_codes.py:93 +#: stock/status_codes.py:94 msgid "Returned against Return Order" msgstr "Возвращено по заказу на возврат" -#: stock/status_codes.py:96 +#: stock/status_codes.py:97 msgid "Sent to customer" msgstr "Отправлено клиенту" -#: stock/status_codes.py:97 +#: stock/status_codes.py:98 msgid "Returned from customer" msgstr "Возвращено от клиента" @@ -8992,11 +9051,11 @@ msgstr "У вас нет прав для просмотра этой стран #: templates/403_csrf.html:11 msgid "Authentication Failure" -msgstr "" +msgstr "Ошибка аутентификации" #: templates/403_csrf.html:12 msgid "You have been logged out from InvenTree." -msgstr "" +msgstr "Вы вышли из InvenTree." #: templates/404.html:6 templates/404.html:10 msgid "Page Not Found" @@ -9004,7 +9063,7 @@ msgstr "Страница не найдена" #: templates/404.html:11 msgid "The requested page does not exist" -msgstr "" +msgstr "Запрошенная страница не существует" #: templates/500.html:6 templates/500.html:10 msgid "Internal Server Error" @@ -9013,48 +9072,48 @@ msgstr "Внутренняя ошибка сервера" #: templates/500.html:11 #, python-format msgid "The %(inventree_title)s server raised an internal error" -msgstr "" +msgstr "Сервер %(inventree_title)s вызвал внутреннюю ошибку" #: templates/500.html:12 msgid "Refer to the error log in the admin interface for further details" -msgstr "" +msgstr "Обратитесь к журналу ошибок в администрировании для получения подробностей" #: templates/503.html:11 templates/503.html:15 msgid "Site is in Maintenance" -msgstr "" +msgstr "Сайт находится на обслуживании" #: templates/503.html:17 msgid "The site is currently in maintenance and should be up again soon!" -msgstr "" +msgstr "Сайт в настоящее время на обслуживании и скоро будет снова доступен!" #: templates/base.html:51 msgid "Server Restart Required" -msgstr "" +msgstr "Требуется перезагрузка сервера" #: templates/base.html:54 msgid "A configuration option has been changed which requires a server restart" -msgstr "" +msgstr "Изменена конфигурация, требующая перезагрузки сервера" #: templates/base.html:54 templates/base.html:64 msgid "Contact your system administrator for further information" -msgstr "" +msgstr "Свяжитесь с системным администратором для получения дополнительной информации" #: templates/base.html:61 msgid "Pending Database Migrations" -msgstr "" +msgstr "Ожидают миграции базы данных" #: templates/base.html:64 msgid "There are pending database migrations which require attention" -msgstr "" +msgstr "Есть ожидающие миграции базы данных, которые требуют внимания" #: templates/config_error.html:6 templates/config_error.html:10 msgid "Configuration Error" -msgstr "" +msgstr "Ошибка конфигурации" #: templates/config_error.html:11 #, python-format msgid "The %(inventree_title)s server raised a configuration error" -msgstr "" +msgstr "Сервер %(inventree_title)s вызвал ошибку конфигурации" #: templates/email/build_order_completed.html:9 #: templates/email/canceled_order_assigned.html:9 @@ -9066,24 +9125,24 @@ msgstr "" #: templates/email/purchase_order_received.html:9 #: templates/email/return_order_received.html:9 msgid "Click on the following link to view this order" -msgstr "" +msgstr "Нажмите на следующую ссылку, чтобы просмотреть этот заказ" #: templates/email/build_order_required_stock.html:7 msgid "Stock is required for the following build order" -msgstr "" +msgstr "Необходим запас для следующего заказа на сборку" #: templates/email/build_order_required_stock.html:8 #, python-format msgid "Build order %(build)s - building %(quantity)s x %(part)s" -msgstr "" +msgstr "Заказ на сборку %(build)s — сборка %(quantity)s x %(part)s" #: templates/email/build_order_required_stock.html:10 msgid "Click on the following link to view this build order" -msgstr "" +msgstr "Нажмите на следующую ссылку, чтобы просмотреть этот заказ на сборку" #: templates/email/build_order_required_stock.html:14 msgid "The following parts are low on required stock" -msgstr "" +msgstr "Для следующих деталей недостаточный запас" #: templates/email/build_order_required_stock.html:18 msgid "Required Quantity" @@ -9097,7 +9156,7 @@ msgstr "Вы получили это письмо, потому что вы по #: templates/email/low_stock_notification.html:9 #: templates/email/part_event_notification.html:9 msgid "Click on the following link to view this part" -msgstr "" +msgstr "Нажмите на следующую ссылку, чтобы просмотреть эту деталь" #: templates/email/low_stock_notification.html:18 #: templates/email/part_event_notification.html:19 @@ -9106,19 +9165,19 @@ msgstr "Минимальное количество" #: templates/email/part_event_notification.html:32 msgid "You are receiving this email because you are subscribed to notifications for this part or a category that it is part of " -msgstr "" +msgstr "Вы получили это письмо, потому что подписаны на уведомления для этой детали или категории, частью которой она является " #: templates/email/stale_stock_notification.html:10 msgid "The following stock items are approaching their expiry dates:" -msgstr "" +msgstr "Следующие складские элементы приближаются к истечению срока годности:" #: templates/email/stale_stock_notification.html:23 msgid "Days Until Expiry" -msgstr "" +msgstr "Дней до истечения срока" #: templates/email/stale_stock_notification.html:57 msgid "You are receiving this email because you are subscribed to notifications for these parts" -msgstr "" +msgstr "Вы получили это письмо, потому что подписаны на уведомления для этих деталей" #: users/admin.py:101 msgid "Users" @@ -9126,7 +9185,7 @@ msgstr "Пользователи" #: users/admin.py:102 msgid "Select which users are assigned to this group" -msgstr "" +msgstr "Выберите пользователей, назначенных в эту группу" #: users/admin.py:137 msgid "Personal info" @@ -9142,15 +9201,15 @@ msgstr "Важные даты" #: users/authentication.py:30 users/models.py:151 msgid "Token has been revoked" -msgstr "" +msgstr "Токен был отозван" #: users/authentication.py:33 msgid "Token has expired" -msgstr "" +msgstr "Срок действия токена истёк" #: users/models.py:94 msgid "API Token" -msgstr "" +msgstr "API токен" #: users/models.py:95 msgid "API Tokens" @@ -9166,7 +9225,7 @@ msgstr "Название пользовательского токена" #: users/models.py:138 msgid "Token expiry date" -msgstr "" +msgstr "Дата истечения срока действия токена" #: users/models.py:146 msgid "Last Seen" @@ -9174,7 +9233,7 @@ msgstr "Последнее Посещение" #: users/models.py:147 msgid "Last time the token was used" -msgstr "" +msgstr "Последнее время использования токена" #: users/models.py:151 msgid "Revoked" @@ -9218,39 +9277,39 @@ msgstr "Разрешение на удаление элементов" #: users/models.py:495 msgid "Bot" -msgstr "" +msgstr "Бот" #: users/models.py:496 msgid "Internal" -msgstr "" +msgstr "Внутренний" #: users/models.py:498 msgid "Guest" -msgstr "" +msgstr "Гость" #: users/models.py:507 msgid "Language" -msgstr "" +msgstr "Язык" #: users/models.py:508 msgid "Preferred language for the user" -msgstr "" +msgstr "Предпочтительный язык пользователя" #: users/models.py:513 msgid "Theme" -msgstr "" +msgstr "Тема" #: users/models.py:514 msgid "Settings for the web UI as JSON - do not edit manually!" -msgstr "" +msgstr "Настройки веб-интерфейса в формате JSON — не редактировать вручную!" #: users/models.py:519 msgid "Widgets" -msgstr "" +msgstr "Виджеты" #: users/models.py:521 msgid "Settings for the dashboard widgets as JSON - do not edit manually!" -msgstr "" +msgstr "Настройки виджетов панели в формате JSON — не редактировать вручную!" #: users/models.py:528 msgid "Display Name" @@ -9262,7 +9321,7 @@ msgstr "Отображаемое имя пользователя" #: users/models.py:535 msgid "Position" -msgstr "" +msgstr "Положение" #: users/models.py:536 msgid "Main job title or position" @@ -9270,43 +9329,43 @@ msgstr "Основное место работы или должность" #: users/models.py:543 msgid "User status message" -msgstr "" +msgstr "Статусное сообщение пользователя" #: users/models.py:550 msgid "User location information" -msgstr "" +msgstr "Информация о местоположении пользователя" #: users/models.py:555 msgid "User is actively using the system" -msgstr "" +msgstr "Пользователь активно использует систему" #: users/models.py:562 msgid "Preferred contact information for the user" -msgstr "" +msgstr "Предпочтительная контактная информация пользователя" #: users/models.py:568 msgid "User Type" -msgstr "" +msgstr "Тип пользователя" #: users/models.py:569 msgid "Which type of user is this?" -msgstr "" +msgstr "Какого типа этот пользователь?" #: users/models.py:575 msgid "Organisation" -msgstr "" +msgstr "Организация" #: users/models.py:576 msgid "Users primary organisation/affiliation" -msgstr "" +msgstr "Основная организация/принадлежность пользователя" #: users/models.py:584 msgid "Primary Group" -msgstr "" +msgstr "Основная группа" #: users/models.py:585 msgid "Primary group for the user" -msgstr "" +msgstr "Основная группа для пользователя" #: users/ruleset.py:26 msgid "Admin" @@ -9370,11 +9429,11 @@ msgstr "Активна эта учетная запись" #: users/serializers.py:326 msgid "Only a superuser can adjust this field" -msgstr "" +msgstr "Только суперпользователь может изменить это поле" #: users/serializers.py:354 msgid "Password" -msgstr "" +msgstr "Пароль" #: users/serializers.py:355 msgid "Password for the user" @@ -9382,15 +9441,15 @@ msgstr "Пароль пользователя" #: users/serializers.py:361 msgid "Override warning" -msgstr "" +msgstr "Игнорировать предупреждение" #: users/serializers.py:362 msgid "Override the warning about password rules" -msgstr "" +msgstr "Игнорировать предупреждение о правилах пароля" #: users/serializers.py:418 msgid "You do not have permission to create users" -msgstr "" +msgstr "У вас нет разрешения на создание пользователей" #: users/serializers.py:439 msgid "Your account has been created." diff --git a/src/backend/InvenTree/locale/sk/LC_MESSAGES/django.po b/src/backend/InvenTree/locale/sk/LC_MESSAGES/django.po index 19d86471eb..5743f98b50 100644 --- a/src/backend/InvenTree/locale/sk/LC_MESSAGES/django.po +++ b/src/backend/InvenTree/locale/sk/LC_MESSAGES/django.po @@ -2,8 +2,8 @@ msgid "" msgstr "" "Project-Id-Version: inventree\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-11-19 04:55+0000\n" -"PO-Revision-Date: 2025-11-19 04:59\n" +"POT-Creation-Date: 2025-12-07 07:33+0000\n" +"PO-Revision-Date: 2025-12-07 07:36\n" "Last-Translator: \n" "Language-Team: Slovak\n" "Language: sk_SK\n" @@ -57,7 +57,7 @@ msgstr "" msgid "This field must be unique." msgstr "" -#: InvenTree/api.py:775 +#: InvenTree/api.py:803 msgid "User does not have permission to view this model" msgstr "" @@ -81,22 +81,22 @@ msgstr "" msgid "The provided email domain is not approved." msgstr "" -#: InvenTree/conversion.py:166 +#: InvenTree/conversion.py:240 #, python-brace-format msgid "Invalid unit provided ({unit})" msgstr "" -#: InvenTree/conversion.py:183 +#: InvenTree/conversion.py:257 msgid "No value provided" msgstr "" -#: InvenTree/conversion.py:210 +#: InvenTree/conversion.py:284 #, python-brace-format msgid "Could not convert {original} to {unit}" msgstr "" -#: InvenTree/conversion.py:212 InvenTree/conversion.py:226 -#: InvenTree/helpers.py:597 order/models.py:720 order/models.py:1015 +#: InvenTree/conversion.py:286 InvenTree/conversion.py:300 +#: InvenTree/helpers.py:597 order/models.py:721 order/models.py:1016 msgid "Invalid quantity provided" msgstr "" @@ -112,11 +112,11 @@ msgstr "" msgid "Invalid decimal value" msgstr "" -#: InvenTree/fields.py:218 InvenTree/models.py:1067 build/serializers.py:509 -#: build/serializers.py:580 build/serializers.py:1788 company/models.py:857 -#: order/models.py:1780 +#: InvenTree/fields.py:218 InvenTree/models.py:1228 build/serializers.py:517 +#: build/serializers.py:588 build/serializers.py:1796 company/models.py:811 +#: order/models.py:1781 #: report/templates/report/inventree_build_order_report.html:172 -#: stock/models.py:2848 stock/models.py:2972 stock/serializers.py:717 +#: stock/models.py:2865 stock/models.py:2989 stock/serializers.py:717 #: stock/serializers.py:893 stock/serializers.py:1035 stock/serializers.py:1336 #: stock/serializers.py:1425 stock/serializers.py:1624 msgid "Notes" @@ -171,35 +171,35 @@ msgstr "" msgid "Data contains prohibited markdown content" msgstr "" -#: InvenTree/helpers_model.py:133 +#: InvenTree/helpers_model.py:134 msgid "Connection error" msgstr "" -#: InvenTree/helpers_model.py:138 InvenTree/helpers_model.py:145 +#: InvenTree/helpers_model.py:139 InvenTree/helpers_model.py:146 msgid "Server responded with invalid status code" msgstr "" -#: InvenTree/helpers_model.py:141 +#: InvenTree/helpers_model.py:142 msgid "Exception occurred" msgstr "" -#: InvenTree/helpers_model.py:151 +#: InvenTree/helpers_model.py:152 msgid "Server responded with invalid Content-Length value" msgstr "" -#: InvenTree/helpers_model.py:154 +#: InvenTree/helpers_model.py:155 msgid "Image size is too large" msgstr "" -#: InvenTree/helpers_model.py:166 +#: InvenTree/helpers_model.py:167 msgid "Image download exceeded maximum size" msgstr "" -#: InvenTree/helpers_model.py:171 +#: InvenTree/helpers_model.py:172 msgid "Remote server returned empty response" msgstr "" -#: InvenTree/helpers_model.py:179 +#: InvenTree/helpers_model.py:180 msgid "Supplied URL is not a valid image file" msgstr "" @@ -207,7 +207,7 @@ msgstr "" msgid "Log in to the app" msgstr "" -#: InvenTree/magic_login.py:41 company/models.py:172 users/serializers.py:198 +#: InvenTree/magic_login.py:41 company/models.py:173 users/serializers.py:198 msgid "Email" msgstr "" @@ -215,160 +215,176 @@ msgstr "" msgid "You must enable two-factor authentication before doing anything else." msgstr "" -#: InvenTree/models.py:111 +#: InvenTree/models.py:114 msgid "Error running plugin validation" msgstr "" -#: InvenTree/models.py:192 +#: InvenTree/models.py:195 msgid "Metadata must be a python dict object" msgstr "" -#: InvenTree/models.py:198 +#: InvenTree/models.py:201 msgid "Plugin Metadata" msgstr "" -#: InvenTree/models.py:199 +#: InvenTree/models.py:202 msgid "JSON metadata field, for use by external plugins" msgstr "" -#: InvenTree/models.py:382 +#: InvenTree/models.py:385 msgid "Improperly formatted pattern" msgstr "" -#: InvenTree/models.py:389 +#: InvenTree/models.py:392 msgid "Unknown format key specified" msgstr "" -#: InvenTree/models.py:395 +#: InvenTree/models.py:398 msgid "Missing required format key" msgstr "" -#: InvenTree/models.py:406 +#: InvenTree/models.py:409 msgid "Reference field cannot be empty" msgstr "" -#: InvenTree/models.py:414 +#: InvenTree/models.py:417 msgid "Reference must match required pattern" msgstr "" -#: InvenTree/models.py:445 +#: InvenTree/models.py:448 msgid "Reference number is too large" msgstr "" -#: InvenTree/models.py:743 +#: InvenTree/models.py:896 msgid "Invalid choice" msgstr "" -#: InvenTree/models.py:856 common/models.py:1410 common/models.py:1837 -#: common/models.py:2096 common/models.py:2221 common/serializers.py:535 -#: company/models.py:615 generic/states/serializers.py:20 machine/models.py:25 -#: part/models.py:1039 part/models.py:3850 plugin/models.py:54 +#: InvenTree/models.py:1017 common/models.py:1414 common/models.py:1841 +#: common/models.py:2102 common/models.py:2227 common/models.py:2494 +#: common/serializers.py:539 generic/states/serializers.py:20 +#: machine/models.py:25 part/models.py:1127 plugin/models.py:54 #: report/models.py:216 stock/models.py:84 msgid "Name" msgstr "" -#: InvenTree/models.py:862 build/models.py:252 common/models.py:171 -#: common/models.py:2228 common/models.py:2341 company/models.py:543 -#: company/models.py:848 order/models.py:442 order/models.py:1825 -#: part/models.py:1062 part/models.py:3865 report/models.py:222 +#: InvenTree/models.py:1023 build/models.py:253 common/models.py:175 +#: common/models.py:2234 common/models.py:2347 common/models.py:2509 +#: company/models.py:545 company/models.py:802 order/models.py:443 +#: order/models.py:1826 part/models.py:1150 report/models.py:222 #: report/models.py:815 report/models.py:841 #: report/templates/report/inventree_build_order_report.html:117 #: stock/models.py:90 msgid "Description" msgstr "" -#: InvenTree/models.py:863 stock/models.py:91 +#: InvenTree/models.py:1024 stock/models.py:91 msgid "Description (optional)" msgstr "" -#: InvenTree/models.py:878 common/models.py:2394 +#: InvenTree/models.py:1039 common/models.py:2815 msgid "Path" msgstr "" -#: InvenTree/models.py:983 +#: InvenTree/models.py:1144 msgid "Duplicate names cannot exist under the same parent" msgstr "" -#: InvenTree/models.py:1067 +#: InvenTree/models.py:1228 msgid "Markdown notes (optional)" msgstr "" -#: InvenTree/models.py:1098 +#: InvenTree/models.py:1259 msgid "Barcode Data" msgstr "" -#: InvenTree/models.py:1099 +#: InvenTree/models.py:1260 msgid "Third party barcode data" msgstr "" -#: InvenTree/models.py:1105 +#: InvenTree/models.py:1266 msgid "Barcode Hash" msgstr "" -#: InvenTree/models.py:1106 +#: InvenTree/models.py:1267 msgid "Unique hash of barcode data" msgstr "" -#: InvenTree/models.py:1187 +#: InvenTree/models.py:1348 msgid "Existing barcode found" msgstr "" -#: InvenTree/models.py:1269 +#: InvenTree/models.py:1430 msgid "Task Failure" msgstr "" -#: InvenTree/models.py:1270 +#: InvenTree/models.py:1431 #, python-brace-format msgid "Background worker task '{f}' failed after {n} attempts" msgstr "" -#: InvenTree/models.py:1297 +#: InvenTree/models.py:1458 msgid "Server Error" msgstr "" -#: InvenTree/models.py:1298 +#: InvenTree/models.py:1459 msgid "An error has been logged by the server." msgstr "" -#: InvenTree/models.py:1340 common/models.py:1748 +#: InvenTree/models.py:1501 common/models.py:1752 #: report/templates/report/inventree_bill_of_materials_report.html:126 #: report/templates/report/inventree_bill_of_materials_report.html:148 #: report/templates/report/inventree_return_order_report.html:35 msgid "Image" msgstr "" -#: InvenTree/serializers.py:253 part/models.py:4571 +#: InvenTree/serializers.py:255 part/models.py:4196 msgid "Must be a valid number" msgstr "" -#: InvenTree/serializers.py:295 company/models.py:214 part/models.py:3285 +#: InvenTree/serializers.py:297 company/models.py:215 part/models.py:3349 msgid "Currency" msgstr "" -#: InvenTree/serializers.py:298 part/serializers.py:1385 +#: InvenTree/serializers.py:300 part/serializers.py:1250 msgid "Select currency from available options" msgstr "" -#: InvenTree/serializers.py:653 +#: InvenTree/serializers.py:654 +msgid "This field may not be null." +msgstr "" + +#: InvenTree/serializers.py:660 msgid "Invalid value" msgstr "" -#: InvenTree/serializers.py:690 +#: InvenTree/serializers.py:697 msgid "Remote Image" msgstr "" -#: InvenTree/serializers.py:691 +#: InvenTree/serializers.py:698 msgid "URL of remote image file" msgstr "" -#: InvenTree/serializers.py:709 +#: InvenTree/serializers.py:716 msgid "Downloading images from remote URL is not enabled" msgstr "" -#: InvenTree/serializers.py:716 +#: InvenTree/serializers.py:723 msgid "Failed to download image from remote URL" msgstr "" +#: InvenTree/serializers.py:806 +msgid "Invalid content type format" +msgstr "" + +#: InvenTree/serializers.py:809 +msgid "Content type not found" +msgstr "" + +#: InvenTree/serializers.py:815 +msgid "Content type does not match required mixin class" +msgstr "" + #: InvenTree/setting/locales.py:20 msgid "Arabic" msgstr "" @@ -537,30 +553,30 @@ msgstr "" msgid "Not a valid currency code" msgstr "" -#: build/api.py:54 order/api.py:111 order/api.py:270 order/api.py:1373 -#: order/serializers.py:132 +#: build/api.py:54 order/api.py:116 order/api.py:275 order/api.py:1378 +#: order/serializers.py:133 msgid "Order Status" msgstr "" -#: build/api.py:80 build/models.py:264 +#: build/api.py:80 build/models.py:265 msgid "Parent Build" msgstr "" -#: build/api.py:84 build/api.py:831 order/api.py:547 order/api.py:770 -#: order/api.py:1174 order/api.py:1449 stock/api.py:573 +#: build/api.py:84 build/api.py:837 order/api.py:553 order/api.py:776 +#: order/api.py:1179 order/api.py:1454 stock/api.py:573 msgid "Include Variants" msgstr "" -#: build/api.py:100 build/api.py:466 build/api.py:845 build/models.py:270 -#: build/serializers.py:1225 build/serializers.py:1356 -#: build/serializers.py:1427 company/models.py:1067 company/serializers.py:445 -#: order/api.py:298 order/api.py:302 order/api.py:929 order/api.py:1187 -#: order/api.py:1190 order/models.py:1941 order/models.py:2108 -#: order/models.py:2109 part/api.py:1233 part/api.py:1236 part/api.py:1302 -#: part/api.py:1589 part/models.py:472 part/models.py:3296 part/models.py:3439 -#: part/models.py:3497 part/models.py:3518 part/models.py:3540 -#: part/models.py:3679 part/models.py:4046 part/models.py:4368 -#: part/models.py:4787 part/serializers.py:1928 +#: build/api.py:100 build/api.py:472 build/api.py:851 build/models.py:271 +#: build/serializers.py:1233 build/serializers.py:1364 +#: build/serializers.py:1435 company/models.py:1021 company/serializers.py:490 +#: order/api.py:303 order/api.py:307 order/api.py:934 order/api.py:1192 +#: order/api.py:1195 order/models.py:1942 order/models.py:2109 +#: order/models.py:2110 part/api.py:1160 part/api.py:1163 part/api.py:1314 +#: part/models.py:550 part/models.py:3360 part/models.py:3503 +#: part/models.py:3561 part/models.py:3582 part/models.py:3604 +#: part/models.py:3743 part/models.py:3993 part/models.py:4412 +#: part/serializers.py:1801 #: report/templates/report/inventree_bill_of_materials_report.html:110 #: report/templates/report/inventree_bill_of_materials_report.html:137 #: report/templates/report/inventree_build_order_report.html:109 @@ -580,9 +596,9 @@ msgstr "" msgid "Part" msgstr "" -#: build/api.py:120 build/api.py:123 build/serializers.py:1438 part/api.py:980 -#: part/api.py:1316 part/api.py:1600 part/models.py:1080 part/models.py:3568 -#: part/models.py:4162 part/serializers.py:1752 stock/api.py:869 +#: build/api.py:120 build/api.py:123 build/serializers.py:1446 part/api.py:975 +#: part/api.py:1325 part/models.py:435 part/models.py:1168 part/models.py:3632 +#: part/serializers.py:1617 stock/api.py:869 msgid "Category" msgstr "" @@ -590,7 +606,7 @@ msgstr "" msgid "Ancestor Build" msgstr "" -#: build/api.py:152 order/api.py:129 +#: build/api.py:152 order/api.py:134 msgid "Assigned to me" msgstr "" @@ -638,134 +654,134 @@ msgstr "" msgid "Completed after" msgstr "" -#: build/api.py:249 order/api.py:226 +#: build/api.py:249 order/api.py:231 msgid "Min Date" msgstr "" -#: build/api.py:272 order/api.py:245 +#: build/api.py:272 order/api.py:250 msgid "Max Date" msgstr "" -#: build/api.py:297 build/api.py:300 part/api.py:217 stock/api.py:961 +#: build/api.py:297 build/api.py:300 part/api.py:212 stock/api.py:961 msgid "Exclude Tree" msgstr "" -#: build/api.py:405 +#: build/api.py:411 msgid "Build must be cancelled before it can be deleted" msgstr "" -#: build/api.py:449 build/serializers.py:1374 part/models.py:4402 +#: build/api.py:455 build/serializers.py:1382 part/models.py:4027 msgid "Consumable" msgstr "" -#: build/api.py:452 build/serializers.py:1377 part/models.py:4396 +#: build/api.py:458 build/serializers.py:1385 part/models.py:4021 msgid "Optional" msgstr "" -#: build/api.py:455 build/serializers.py:1415 common/setting/system.py:456 -#: part/models.py:1202 part/serializers.py:1714 part/serializers.py:1725 +#: build/api.py:461 build/serializers.py:1423 common/setting/system.py:456 +#: part/models.py:1290 part/serializers.py:1579 part/serializers.py:1590 #: stock/api.py:639 msgid "Assembly" msgstr "" -#: build/api.py:458 +#: build/api.py:464 msgid "Tracked" msgstr "" -#: build/api.py:461 build/serializers.py:1380 part/models.py:1220 +#: build/api.py:467 build/serializers.py:1388 part/models.py:1308 msgid "Testable" msgstr "" -#: build/api.py:471 order/api.py:993 order/api.py:1363 +#: build/api.py:477 order/api.py:998 order/api.py:1368 msgid "Order Outstanding" msgstr "" -#: build/api.py:481 build/serializers.py:1464 order/api.py:952 +#: build/api.py:487 build/serializers.py:1472 order/api.py:957 msgid "Allocated" msgstr "" -#: build/api.py:490 build/models.py:1672 build/serializers.py:1393 +#: build/api.py:496 build/models.py:1673 build/serializers.py:1401 msgid "Consumed" msgstr "" -#: build/api.py:499 company/models.py:912 company/serializers.py:440 +#: build/api.py:505 company/models.py:866 company/serializers.py:467 #: templates/email/build_order_required_stock.html:19 #: templates/email/low_stock_notification.html:17 #: templates/email/part_event_notification.html:18 msgid "Available" msgstr "" -#: build/api.py:523 build/serializers.py:1466 company/serializers.py:437 -#: order/serializers.py:1281 part/serializers.py:959 part/serializers.py:1306 -#: part/serializers.py:1761 +#: build/api.py:529 build/serializers.py:1474 company/serializers.py:464 +#: order/serializers.py:1295 part/serializers.py:844 part/serializers.py:1171 +#: part/serializers.py:1626 msgid "On Order" msgstr "" -#: build/api.py:868 build/models.py:117 order/models.py:1974 +#: build/api.py:874 build/models.py:118 order/models.py:1975 #: report/templates/report/inventree_build_order_report.html:105 #: stock/serializers.py:93 templates/email/build_order_completed.html:16 #: templates/email/overdue_build_order.html:15 msgid "Build Order" msgstr "" -#: build/api.py:882 build/api.py:886 build/serializers.py:372 -#: build/serializers.py:497 build/serializers.py:567 build/serializers.py:1251 -#: build/serializers.py:1256 order/api.py:1234 order/api.py:1239 -#: order/serializers.py:833 order/serializers.py:973 order/serializers.py:2042 +#: build/api.py:888 build/api.py:892 build/serializers.py:380 +#: build/serializers.py:505 build/serializers.py:575 build/serializers.py:1259 +#: build/serializers.py:1264 order/api.py:1239 order/api.py:1244 +#: order/serializers.py:844 order/serializers.py:984 order/serializers.py:2059 #: stock/api.py:987 stock/serializers.py:111 stock/serializers.py:601 #: stock/serializers.py:710 stock/serializers.py:888 stock/serializers.py:1418 -#: stock/serializers.py:1731 stock/serializers.py:1780 +#: stock/serializers.py:1739 stock/serializers.py:1788 #: templates/email/stale_stock_notification.html:18 users/models.py:549 msgid "Location" msgstr "" -#: build/api.py:894 +#: build/api.py:900 msgid "Output" msgstr "" -#: build/api.py:896 +#: build/api.py:902 msgid "Filter by output stock item ID. Use 'null' to find uninstalled build items." msgstr "" -#: build/models.py:118 users/ruleset.py:31 +#: build/models.py:119 users/ruleset.py:31 msgid "Build Orders" msgstr "" -#: build/models.py:168 +#: build/models.py:169 msgid "Assembly BOM has not been validated" msgstr "" -#: build/models.py:175 +#: build/models.py:176 msgid "Build order cannot be created for an inactive part" msgstr "" -#: build/models.py:182 +#: build/models.py:183 msgid "Build order cannot be created for an unlocked part" msgstr "" -#: build/models.py:200 +#: build/models.py:201 msgid "Build orders can only be externally fulfilled for purchaseable parts" msgstr "" -#: build/models.py:207 order/models.py:369 +#: build/models.py:208 order/models.py:370 msgid "Responsible user or group must be specified" msgstr "" -#: build/models.py:212 +#: build/models.py:213 msgid "Build order part cannot be changed" msgstr "" -#: build/models.py:217 order/models.py:382 +#: build/models.py:218 order/models.py:383 msgid "Target date must be after start date" msgstr "" -#: build/models.py:245 +#: build/models.py:246 msgid "Build Order Reference" msgstr "" -#: build/models.py:246 build/serializers.py:1371 order/models.py:614 -#: order/models.py:1311 order/models.py:1773 order/models.py:2712 -#: part/models.py:4442 +#: build/models.py:247 build/serializers.py:1379 order/models.py:615 +#: order/models.py:1312 order/models.py:1774 order/models.py:2713 +#: part/models.py:4067 #: report/templates/report/inventree_bill_of_materials_report.html:139 #: report/templates/report/inventree_purchase_order_report.html:35 #: report/templates/report/inventree_return_order_report.html:26 @@ -773,230 +789,230 @@ msgstr "" msgid "Reference" msgstr "" -#: build/models.py:255 +#: build/models.py:256 msgid "Brief description of the build (optional)" msgstr "" -#: build/models.py:265 +#: build/models.py:266 msgid "BuildOrder to which this build is allocated" msgstr "" -#: build/models.py:274 +#: build/models.py:275 msgid "Select part to build" msgstr "" -#: build/models.py:279 +#: build/models.py:280 msgid "Sales Order Reference" msgstr "" -#: build/models.py:284 +#: build/models.py:285 msgid "SalesOrder to which this build is allocated" msgstr "" -#: build/models.py:289 build/serializers.py:1097 +#: build/models.py:290 build/serializers.py:1105 msgid "Source Location" msgstr "" -#: build/models.py:295 +#: build/models.py:296 msgid "Select location to take stock from for this build (leave blank to take from any stock location)" msgstr "" -#: build/models.py:301 +#: build/models.py:302 msgid "External Build" msgstr "" -#: build/models.py:302 +#: build/models.py:303 msgid "This build order is fulfilled externally" msgstr "" -#: build/models.py:307 +#: build/models.py:308 msgid "Destination Location" msgstr "" -#: build/models.py:312 +#: build/models.py:313 msgid "Select location where the completed items will be stored" msgstr "" -#: build/models.py:316 +#: build/models.py:317 msgid "Build Quantity" msgstr "" -#: build/models.py:319 +#: build/models.py:320 msgid "Number of stock items to build" msgstr "" -#: build/models.py:323 +#: build/models.py:324 msgid "Completed items" msgstr "" -#: build/models.py:325 +#: build/models.py:326 msgid "Number of stock items which have been completed" msgstr "" -#: build/models.py:329 +#: build/models.py:330 msgid "Build Status" msgstr "" -#: build/models.py:334 +#: build/models.py:335 msgid "Build status code" msgstr "" -#: build/models.py:343 build/serializers.py:359 order/serializers.py:849 +#: build/models.py:344 build/serializers.py:367 order/serializers.py:860 #: stock/models.py:1100 stock/serializers.py:85 stock/serializers.py:1591 msgid "Batch Code" msgstr "" -#: build/models.py:347 build/serializers.py:360 +#: build/models.py:348 build/serializers.py:368 msgid "Batch code for this build output" msgstr "" -#: build/models.py:351 order/models.py:479 order/serializers.py:186 -#: part/models.py:1283 +#: build/models.py:352 order/models.py:480 order/serializers.py:193 +#: part/models.py:1371 msgid "Creation Date" msgstr "" -#: build/models.py:357 +#: build/models.py:358 msgid "Build start date" msgstr "" -#: build/models.py:358 +#: build/models.py:359 msgid "Scheduled start date for this build order" msgstr "" -#: build/models.py:364 +#: build/models.py:365 msgid "Target completion date" msgstr "" -#: build/models.py:366 +#: build/models.py:367 msgid "Target date for build completion. Build will be overdue after this date." msgstr "" -#: build/models.py:371 order/models.py:667 order/models.py:2751 +#: build/models.py:372 order/models.py:668 order/models.py:2752 msgid "Completion Date" msgstr "" -#: build/models.py:379 +#: build/models.py:380 msgid "completed by" msgstr "" -#: build/models.py:388 +#: build/models.py:389 msgid "Issued by" msgstr "" -#: build/models.py:389 +#: build/models.py:390 msgid "User who issued this build order" msgstr "" -#: build/models.py:398 common/models.py:180 order/api.py:179 -#: order/models.py:504 part/models.py:1300 +#: build/models.py:399 common/models.py:184 order/api.py:184 +#: order/models.py:505 part/models.py:1388 #: report/templates/report/inventree_build_order_report.html:158 msgid "Responsible" msgstr "" -#: build/models.py:399 +#: build/models.py:400 msgid "User or group responsible for this build order" msgstr "" -#: build/models.py:404 stock/models.py:1093 +#: build/models.py:405 stock/models.py:1093 msgid "External Link" msgstr "" -#: build/models.py:406 common/models.py:1984 part/models.py:1114 +#: build/models.py:407 common/models.py:1990 part/models.py:1202 #: stock/models.py:1095 msgid "Link to external URL" msgstr "" -#: build/models.py:411 +#: build/models.py:412 msgid "Build Priority" msgstr "" -#: build/models.py:414 +#: build/models.py:415 msgid "Priority of this build order" msgstr "" -#: build/models.py:422 common/models.py:150 common/models.py:164 -#: order/api.py:165 order/models.py:451 order/models.py:1805 +#: build/models.py:423 common/models.py:154 common/models.py:168 +#: order/api.py:170 order/models.py:452 order/models.py:1806 msgid "Project Code" msgstr "" -#: build/models.py:423 +#: build/models.py:424 msgid "Project code for this build order" msgstr "" -#: build/models.py:676 +#: build/models.py:677 msgid "Cannot complete build order with open child builds" msgstr "" -#: build/models.py:681 +#: build/models.py:682 msgid "Cannot complete build order with incomplete outputs" msgstr "" -#: build/models.py:700 build/models.py:830 +#: build/models.py:701 build/models.py:831 msgid "Failed to offload task to complete build allocations" msgstr "" -#: build/models.py:723 +#: build/models.py:724 #, python-brace-format msgid "Build order {build} has been completed" msgstr "" -#: build/models.py:729 +#: build/models.py:730 msgid "A build order has been completed" msgstr "" -#: build/models.py:911 build/serializers.py:407 +#: build/models.py:912 build/serializers.py:415 msgid "Serial numbers must be provided for trackable parts" msgstr "" -#: build/models.py:1042 build/models.py:1129 +#: build/models.py:1043 build/models.py:1130 msgid "No build output specified" msgstr "" -#: build/models.py:1045 +#: build/models.py:1046 msgid "Build output is already completed" msgstr "" -#: build/models.py:1048 +#: build/models.py:1049 msgid "Build output does not match Build Order" msgstr "" -#: build/models.py:1136 build/models.py:1234 build/serializers.py:285 -#: build/serializers.py:335 build/serializers.py:965 build/serializers.py:1739 -#: order/models.py:717 order/serializers.py:658 order/serializers.py:844 -#: part/serializers.py:1708 stock/models.py:940 stock/models.py:1430 +#: build/models.py:1137 build/models.py:1235 build/serializers.py:293 +#: build/serializers.py:343 build/serializers.py:973 build/serializers.py:1747 +#: order/models.py:718 order/serializers.py:669 order/serializers.py:855 +#: part/serializers.py:1573 stock/models.py:940 stock/models.py:1430 #: stock/models.py:1878 stock/serializers.py:688 stock/serializers.py:1580 msgid "Quantity must be greater than zero" msgstr "" -#: build/models.py:1140 build/models.py:1239 build/serializers.py:290 +#: build/models.py:1141 build/models.py:1240 build/serializers.py:298 msgid "Quantity cannot be greater than the output quantity" msgstr "" -#: build/models.py:1214 build/serializers.py:606 +#: build/models.py:1215 build/serializers.py:614 msgid "Build output has not passed all required tests" msgstr "" -#: build/models.py:1217 build/serializers.py:601 +#: build/models.py:1218 build/serializers.py:609 #, python-brace-format msgid "Build output {serial} has not passed all required tests" msgstr "" -#: build/models.py:1229 +#: build/models.py:1230 msgid "Cannot partially complete a build output with allocated items" msgstr "" -#: build/models.py:1627 +#: build/models.py:1628 msgid "Build Order Line Item" msgstr "" -#: build/models.py:1651 +#: build/models.py:1652 msgid "Build object" msgstr "" -#: build/models.py:1663 build/models.py:1974 build/serializers.py:271 -#: build/serializers.py:320 build/serializers.py:1392 common/models.py:1340 -#: order/models.py:1756 order/models.py:2597 order/serializers.py:1696 -#: order/serializers.py:2124 part/models.py:3453 part/models.py:4390 +#: build/models.py:1664 build/models.py:1975 build/serializers.py:279 +#: build/serializers.py:328 build/serializers.py:1400 common/models.py:1344 +#: order/models.py:1757 order/models.py:2598 order/serializers.py:1710 +#: order/serializers.py:2141 part/models.py:3517 part/models.py:4015 #: report/templates/report/inventree_bill_of_materials_report.html:138 #: report/templates/report/inventree_build_order_report.html:113 #: report/templates/report/inventree_purchase_order_report.html:36 @@ -1014,427 +1030,427 @@ msgstr "" msgid "Quantity" msgstr "" -#: build/models.py:1664 +#: build/models.py:1665 msgid "Required quantity for build order" msgstr "" -#: build/models.py:1673 +#: build/models.py:1674 msgid "Quantity of consumed stock" msgstr "" -#: build/models.py:1772 +#: build/models.py:1773 msgid "Build item must specify a build output, as master part is marked as trackable" msgstr "" -#: build/models.py:1783 +#: build/models.py:1784 #, python-brace-format msgid "Allocated quantity ({q}) must not exceed available stock quantity ({a})" msgstr "" -#: build/models.py:1804 order/models.py:2546 +#: build/models.py:1805 order/models.py:2547 msgid "Stock item is over-allocated" msgstr "" -#: build/models.py:1809 order/models.py:2549 +#: build/models.py:1810 order/models.py:2550 msgid "Allocation quantity must be greater than zero" msgstr "" -#: build/models.py:1815 +#: build/models.py:1816 msgid "Quantity must be 1 for serialized stock" msgstr "" -#: build/models.py:1875 +#: build/models.py:1876 msgid "Selected stock item does not match BOM line" msgstr "" -#: build/models.py:1913 +#: build/models.py:1914 msgid "Allocated quantity exceeds available stock quantity" msgstr "" -#: build/models.py:1964 build/serializers.py:948 build/serializers.py:1240 -#: order/serializers.py:1533 order/serializers.py:1554 +#: build/models.py:1965 build/serializers.py:956 build/serializers.py:1248 +#: order/serializers.py:1547 order/serializers.py:1568 #: report/templates/report/inventree_sales_order_shipment_report.html:29 #: stock/api.py:1404 stock/models.py:456 stock/serializers.py:102 #: stock/serializers.py:800 stock/serializers.py:1274 stock/serializers.py:1386 msgid "Stock Item" msgstr "" -#: build/models.py:1965 +#: build/models.py:1966 msgid "Source stock item" msgstr "" -#: build/models.py:1975 +#: build/models.py:1976 msgid "Stock quantity to allocate to build" msgstr "" -#: build/models.py:1984 +#: build/models.py:1985 msgid "Install into" msgstr "" -#: build/models.py:1985 +#: build/models.py:1986 msgid "Destination stock item" msgstr "" -#: build/serializers.py:118 +#: build/serializers.py:120 msgid "Build Level" msgstr "" -#: build/serializers.py:128 +#: build/serializers.py:136 msgid "Part Name" msgstr "" -#: build/serializers.py:153 +#: build/serializers.py:161 msgid "Project Code Label" msgstr "" -#: build/serializers.py:219 build/serializers.py:974 +#: build/serializers.py:227 build/serializers.py:982 msgid "Build Output" msgstr "" -#: build/serializers.py:231 +#: build/serializers.py:239 msgid "Build output does not match the parent build" msgstr "" -#: build/serializers.py:235 +#: build/serializers.py:243 msgid "Output part does not match BuildOrder part" msgstr "" -#: build/serializers.py:239 +#: build/serializers.py:247 msgid "This build output has already been completed" msgstr "" -#: build/serializers.py:253 +#: build/serializers.py:261 msgid "This build output is not fully allocated" msgstr "" -#: build/serializers.py:272 build/serializers.py:321 +#: build/serializers.py:280 build/serializers.py:329 msgid "Enter quantity for build output" msgstr "" -#: build/serializers.py:343 +#: build/serializers.py:351 msgid "Integer quantity required for trackable parts" msgstr "" -#: build/serializers.py:349 +#: build/serializers.py:357 msgid "Integer quantity required, as the bill of materials contains trackable parts" msgstr "" -#: build/serializers.py:366 order/serializers.py:865 order/serializers.py:1700 +#: build/serializers.py:374 order/serializers.py:876 order/serializers.py:1714 #: stock/serializers.py:699 msgid "Serial Numbers" msgstr "" -#: build/serializers.py:367 +#: build/serializers.py:375 msgid "Enter serial numbers for build outputs" msgstr "" -#: build/serializers.py:373 +#: build/serializers.py:381 msgid "Stock location for build output" msgstr "" -#: build/serializers.py:388 +#: build/serializers.py:396 msgid "Auto Allocate Serial Numbers" msgstr "" -#: build/serializers.py:390 +#: build/serializers.py:398 msgid "Automatically allocate required items with matching serial numbers" msgstr "" -#: build/serializers.py:423 order/serializers.py:951 stock/api.py:1183 +#: build/serializers.py:431 order/serializers.py:962 stock/api.py:1183 #: stock/models.py:1901 msgid "The following serial numbers already exist or are invalid" msgstr "" -#: build/serializers.py:465 build/serializers.py:521 build/serializers.py:613 +#: build/serializers.py:473 build/serializers.py:529 build/serializers.py:621 msgid "A list of build outputs must be provided" msgstr "" -#: build/serializers.py:498 +#: build/serializers.py:506 msgid "Stock location for scrapped outputs" msgstr "" -#: build/serializers.py:504 +#: build/serializers.py:512 msgid "Discard Allocations" msgstr "" -#: build/serializers.py:505 +#: build/serializers.py:513 msgid "Discard any stock allocations for scrapped outputs" msgstr "" -#: build/serializers.py:510 +#: build/serializers.py:518 msgid "Reason for scrapping build output(s)" msgstr "" -#: build/serializers.py:568 +#: build/serializers.py:576 msgid "Location for completed build outputs" msgstr "" -#: build/serializers.py:576 +#: build/serializers.py:584 msgid "Accept Incomplete Allocation" msgstr "" -#: build/serializers.py:577 +#: build/serializers.py:585 msgid "Complete outputs if stock has not been fully allocated" msgstr "" -#: build/serializers.py:702 +#: build/serializers.py:710 msgid "Consume Allocated Stock" msgstr "" -#: build/serializers.py:703 +#: build/serializers.py:711 msgid "Consume any stock which has already been allocated to this build" msgstr "" -#: build/serializers.py:709 +#: build/serializers.py:717 msgid "Remove Incomplete Outputs" msgstr "" -#: build/serializers.py:710 +#: build/serializers.py:718 msgid "Delete any build outputs which have not been completed" msgstr "" -#: build/serializers.py:737 +#: build/serializers.py:745 msgid "Not permitted" msgstr "" -#: build/serializers.py:738 +#: build/serializers.py:746 msgid "Accept as consumed by this build order" msgstr "" -#: build/serializers.py:739 +#: build/serializers.py:747 msgid "Deallocate before completing this build order" msgstr "" -#: build/serializers.py:766 +#: build/serializers.py:774 msgid "Overallocated Stock" msgstr "" -#: build/serializers.py:769 +#: build/serializers.py:777 msgid "How do you want to handle extra stock items assigned to the build order" msgstr "" -#: build/serializers.py:780 +#: build/serializers.py:788 msgid "Some stock items have been overallocated" msgstr "" -#: build/serializers.py:785 +#: build/serializers.py:793 msgid "Accept Unallocated" msgstr "" -#: build/serializers.py:787 +#: build/serializers.py:795 msgid "Accept that stock items have not been fully allocated to this build order" msgstr "" -#: build/serializers.py:798 +#: build/serializers.py:806 msgid "Required stock has not been fully allocated" msgstr "" -#: build/serializers.py:803 order/serializers.py:524 order/serializers.py:1601 +#: build/serializers.py:811 order/serializers.py:535 order/serializers.py:1615 msgid "Accept Incomplete" msgstr "" -#: build/serializers.py:805 +#: build/serializers.py:813 msgid "Accept that the required number of build outputs have not been completed" msgstr "" -#: build/serializers.py:816 +#: build/serializers.py:824 msgid "Required build quantity has not been completed" msgstr "" -#: build/serializers.py:828 +#: build/serializers.py:836 msgid "Build order has open child build orders" msgstr "" -#: build/serializers.py:831 +#: build/serializers.py:839 msgid "Build order must be in production state" msgstr "" -#: build/serializers.py:834 +#: build/serializers.py:842 msgid "Build order has incomplete outputs" msgstr "" -#: build/serializers.py:873 +#: build/serializers.py:881 msgid "Build Line" msgstr "" -#: build/serializers.py:881 +#: build/serializers.py:889 msgid "Build output" msgstr "" -#: build/serializers.py:889 +#: build/serializers.py:897 msgid "Build output must point to the same build" msgstr "" -#: build/serializers.py:920 +#: build/serializers.py:928 msgid "Build Line Item" msgstr "" -#: build/serializers.py:938 +#: build/serializers.py:946 msgid "bom_item.part must point to the same part as the build order" msgstr "" -#: build/serializers.py:954 stock/serializers.py:1287 +#: build/serializers.py:962 stock/serializers.py:1287 msgid "Item must be in stock" msgstr "" -#: build/serializers.py:997 order/serializers.py:1587 +#: build/serializers.py:1005 order/serializers.py:1601 #, python-brace-format msgid "Available quantity ({q}) exceeded" msgstr "" -#: build/serializers.py:1003 +#: build/serializers.py:1011 msgid "Build output must be specified for allocation of tracked parts" msgstr "" -#: build/serializers.py:1011 +#: build/serializers.py:1019 msgid "Build output cannot be specified for allocation of untracked parts" msgstr "" -#: build/serializers.py:1035 order/serializers.py:1860 +#: build/serializers.py:1043 order/serializers.py:1874 msgid "Allocation items must be provided" msgstr "" -#: build/serializers.py:1099 +#: build/serializers.py:1107 msgid "Stock location where parts are to be sourced (leave blank to take from any location)" msgstr "" -#: build/serializers.py:1108 +#: build/serializers.py:1116 msgid "Exclude Location" msgstr "" -#: build/serializers.py:1109 +#: build/serializers.py:1117 msgid "Exclude stock items from this selected location" msgstr "" -#: build/serializers.py:1114 +#: build/serializers.py:1122 msgid "Interchangeable Stock" msgstr "" -#: build/serializers.py:1115 +#: build/serializers.py:1123 msgid "Stock items in multiple locations can be used interchangeably" msgstr "" -#: build/serializers.py:1120 +#: build/serializers.py:1128 msgid "Substitute Stock" msgstr "" -#: build/serializers.py:1121 +#: build/serializers.py:1129 msgid "Allow allocation of substitute parts" msgstr "" -#: build/serializers.py:1126 +#: build/serializers.py:1134 msgid "Optional Items" msgstr "" -#: build/serializers.py:1127 +#: build/serializers.py:1135 msgid "Allocate optional BOM items to build order" msgstr "" -#: build/serializers.py:1148 +#: build/serializers.py:1156 msgid "Failed to start auto-allocation task" msgstr "" -#: build/serializers.py:1200 +#: build/serializers.py:1208 msgid "BOM Reference" msgstr "" -#: build/serializers.py:1206 +#: build/serializers.py:1214 msgid "BOM Part ID" msgstr "" -#: build/serializers.py:1213 +#: build/serializers.py:1221 msgid "BOM Part Name" msgstr "" -#: build/serializers.py:1266 build/serializers.py:1449 +#: build/serializers.py:1274 build/serializers.py:1457 msgid "Build" msgstr "" -#: build/serializers.py:1276 company/models.py:685 order/api.py:311 -#: order/api.py:316 order/api.py:543 order/serializers.py:650 +#: build/serializers.py:1284 company/models.py:639 order/api.py:316 +#: order/api.py:321 order/api.py:549 order/serializers.py:661 #: stock/models.py:1036 stock/serializers.py:579 msgid "Supplier Part" msgstr "" -#: build/serializers.py:1284 stock/serializers.py:620 +#: build/serializers.py:1292 stock/serializers.py:620 msgid "Allocated Quantity" msgstr "" -#: build/serializers.py:1351 +#: build/serializers.py:1359 msgid "Build Reference" msgstr "" -#: build/serializers.py:1361 +#: build/serializers.py:1369 msgid "Part Category Name" msgstr "" -#: build/serializers.py:1383 common/setting/system.py:480 part/models.py:1214 +#: build/serializers.py:1391 common/setting/system.py:480 part/models.py:1302 msgid "Trackable" msgstr "" -#: build/serializers.py:1386 +#: build/serializers.py:1394 msgid "Inherited" msgstr "" -#: build/serializers.py:1389 part/models.py:4475 +#: build/serializers.py:1397 part/models.py:4100 msgid "Allow Variants" msgstr "" -#: build/serializers.py:1395 build/serializers.py:1400 part/models.py:4208 -#: part/models.py:4779 stock/api.py:882 +#: build/serializers.py:1403 build/serializers.py:1408 part/models.py:3833 +#: part/models.py:4404 stock/api.py:882 msgid "BOM Item" msgstr "" -#: build/serializers.py:1467 order/serializers.py:1282 part/serializers.py:1310 -#: part/serializers.py:1765 +#: build/serializers.py:1475 order/serializers.py:1296 part/serializers.py:1175 +#: part/serializers.py:1630 msgid "In Production" msgstr "" -#: build/serializers.py:1469 part/serializers.py:950 part/serializers.py:1314 +#: build/serializers.py:1477 part/serializers.py:835 part/serializers.py:1179 msgid "Scheduled to Build" msgstr "" -#: build/serializers.py:1472 part/serializers.py:987 +#: build/serializers.py:1480 part/serializers.py:872 msgid "External Stock" msgstr "" -#: build/serializers.py:1473 part/serializers.py:1300 part/serializers.py:1808 +#: build/serializers.py:1481 part/serializers.py:1165 part/serializers.py:1673 msgid "Available Stock" msgstr "" -#: build/serializers.py:1475 +#: build/serializers.py:1483 msgid "Available Substitute Stock" msgstr "" -#: build/serializers.py:1478 +#: build/serializers.py:1486 msgid "Available Variant Stock" msgstr "" -#: build/serializers.py:1752 +#: build/serializers.py:1760 msgid "Consumed quantity exceeds allocated quantity" msgstr "" -#: build/serializers.py:1789 +#: build/serializers.py:1797 msgid "Optional notes for the stock consumption" msgstr "" -#: build/serializers.py:1806 +#: build/serializers.py:1814 msgid "Build item must point to the correct build order" msgstr "" -#: build/serializers.py:1811 +#: build/serializers.py:1819 msgid "Duplicate build item allocation" msgstr "" -#: build/serializers.py:1829 +#: build/serializers.py:1837 msgid "Build line must point to the correct build order" msgstr "" -#: build/serializers.py:1834 +#: build/serializers.py:1842 msgid "Duplicate build line allocation" msgstr "" -#: build/serializers.py:1846 +#: build/serializers.py:1854 msgid "At least one item or line must be provided" msgstr "" @@ -1482,702 +1498,826 @@ msgstr "" msgid "Build order {bo} is now overdue" msgstr "" -#: common/api.py:694 +#: common/api.py:701 msgid "Is Link" msgstr "" -#: common/api.py:702 +#: common/api.py:709 msgid "Is File" msgstr "" -#: common/api.py:745 +#: common/api.py:756 msgid "User does not have permission to delete these attachments" msgstr "" -#: common/api.py:762 +#: common/api.py:769 msgid "User does not have permission to delete this attachment" msgstr "" -#: common/currency.py:122 +#: common/currency.py:130 msgid "Invalid currency code" msgstr "" -#: common/currency.py:124 +#: common/currency.py:132 msgid "Duplicate currency code" msgstr "" -#: common/currency.py:129 +#: common/currency.py:137 msgid "No valid currency codes provided" msgstr "" -#: common/currency.py:146 +#: common/currency.py:154 msgid "No plugin" msgstr "" -#: common/models.py:101 common/models.py:126 common/models.py:2729 +#: common/models.py:105 common/models.py:130 common/models.py:3150 msgid "Updated" msgstr "" -#: common/models.py:102 common/models.py:127 +#: common/models.py:106 common/models.py:131 msgid "Timestamp of last update" msgstr "" -#: common/models.py:139 +#: common/models.py:143 msgid "Update By" msgstr "" -#: common/models.py:140 +#: common/models.py:144 msgid "User who last updated this object" msgstr "" -#: common/models.py:165 +#: common/models.py:169 msgid "Unique project code" msgstr "" -#: common/models.py:172 +#: common/models.py:176 msgid "Project description" msgstr "" -#: common/models.py:181 +#: common/models.py:185 msgid "User or group responsible for this project" msgstr "" -#: common/models.py:771 common/models.py:1272 common/models.py:1310 +#: common/models.py:775 common/models.py:1276 common/models.py:1314 msgid "Settings key" msgstr "" -#: common/models.py:775 +#: common/models.py:779 msgid "Settings value" msgstr "" -#: common/models.py:830 +#: common/models.py:834 msgid "Chosen value is not a valid option" msgstr "" -#: common/models.py:846 +#: common/models.py:850 msgid "Value must be a boolean value" msgstr "" -#: common/models.py:854 +#: common/models.py:858 msgid "Value must be an integer value" msgstr "" -#: common/models.py:862 +#: common/models.py:866 msgid "Value must be a valid number" msgstr "" -#: common/models.py:887 +#: common/models.py:891 msgid "Value does not pass validation checks" msgstr "" -#: common/models.py:909 +#: common/models.py:913 msgid "Key string must be unique" msgstr "" -#: common/models.py:1318 common/models.py:1319 common/models.py:1423 -#: common/models.py:1424 common/models.py:1669 common/models.py:1670 -#: common/models.py:2000 common/models.py:2001 common/models.py:2382 -#: importer/models.py:100 part/models.py:3547 part/models.py:3575 +#: common/models.py:1322 common/models.py:1323 common/models.py:1427 +#: common/models.py:1428 common/models.py:1673 common/models.py:1674 +#: common/models.py:2006 common/models.py:2007 common/models.py:2803 +#: importer/models.py:100 part/models.py:3611 part/models.py:3639 #: plugin/models.py:355 plugin/models.py:356 #: report/templates/report/inventree_test_report.html:105 users/models.py:124 #: users/models.py:501 msgid "User" msgstr "" -#: common/models.py:1341 +#: common/models.py:1345 msgid "Price break quantity" msgstr "" -#: common/models.py:1348 company/serializers.py:564 order/models.py:1842 -#: order/models.py:3043 +#: common/models.py:1352 company/serializers.py:349 order/models.py:1843 +#: order/models.py:3044 msgid "Price" msgstr "" -#: common/models.py:1349 +#: common/models.py:1353 msgid "Unit price at specified quantity" msgstr "" -#: common/models.py:1400 common/models.py:1585 +#: common/models.py:1404 common/models.py:1589 msgid "Endpoint" msgstr "" -#: common/models.py:1401 +#: common/models.py:1405 msgid "Endpoint at which this webhook is received" msgstr "" -#: common/models.py:1411 +#: common/models.py:1415 msgid "Name for this webhook" msgstr "" -#: common/models.py:1415 common/models.py:2241 common/models.py:2348 -#: company/models.py:191 company/models.py:822 machine/models.py:40 -#: part/models.py:1237 plugin/models.py:69 stock/api.py:642 users/models.py:195 +#: common/models.py:1419 common/models.py:2247 common/models.py:2354 +#: company/models.py:192 company/models.py:776 machine/models.py:40 +#: part/models.py:1325 plugin/models.py:69 stock/api.py:642 users/models.py:195 #: users/models.py:554 users/serializers.py:314 msgid "Active" msgstr "" -#: common/models.py:1415 +#: common/models.py:1419 msgid "Is this webhook active" msgstr "" -#: common/models.py:1431 users/models.py:172 +#: common/models.py:1435 users/models.py:172 msgid "Token" msgstr "" -#: common/models.py:1432 +#: common/models.py:1436 msgid "Token for access" msgstr "" -#: common/models.py:1440 +#: common/models.py:1444 msgid "Secret" msgstr "" -#: common/models.py:1441 +#: common/models.py:1445 msgid "Shared secret for HMAC" msgstr "" -#: common/models.py:1549 common/models.py:2619 +#: common/models.py:1553 common/models.py:3040 msgid "Message ID" msgstr "" -#: common/models.py:1550 common/models.py:2609 +#: common/models.py:1554 common/models.py:3030 msgid "Unique identifier for this message" msgstr "" -#: common/models.py:1558 +#: common/models.py:1562 msgid "Host" msgstr "" -#: common/models.py:1559 +#: common/models.py:1563 msgid "Host from which this message was received" msgstr "" -#: common/models.py:1567 +#: common/models.py:1571 msgid "Header" msgstr "" -#: common/models.py:1568 +#: common/models.py:1572 msgid "Header of this message" msgstr "" -#: common/models.py:1575 +#: common/models.py:1579 msgid "Body" msgstr "" -#: common/models.py:1576 +#: common/models.py:1580 msgid "Body of this message" msgstr "" -#: common/models.py:1586 +#: common/models.py:1590 msgid "Endpoint on which this message was received" msgstr "" -#: common/models.py:1591 +#: common/models.py:1595 msgid "Worked on" msgstr "" -#: common/models.py:1592 +#: common/models.py:1596 msgid "Was the work on this message finished?" msgstr "" -#: common/models.py:1718 +#: common/models.py:1722 msgid "Id" msgstr "" -#: common/models.py:1720 +#: common/models.py:1724 msgid "Title" msgstr "" -#: common/models.py:1722 common/models.py:1983 company/models.py:185 -#: company/models.py:467 company/models.py:534 company/models.py:839 -#: order/models.py:457 order/models.py:1786 order/models.py:2343 -#: part/models.py:1113 +#: common/models.py:1726 common/models.py:1989 company/models.py:186 +#: company/models.py:468 company/models.py:536 company/models.py:793 +#: order/models.py:458 order/models.py:1787 order/models.py:2344 +#: part/models.py:1201 #: report/templates/report/inventree_build_order_report.html:164 msgid "Link" msgstr "" -#: common/models.py:1724 +#: common/models.py:1728 msgid "Published" msgstr "" -#: common/models.py:1726 +#: common/models.py:1730 msgid "Author" msgstr "" -#: common/models.py:1728 +#: common/models.py:1732 msgid "Summary" msgstr "" -#: common/models.py:1731 common/models.py:2586 +#: common/models.py:1735 common/models.py:3007 msgid "Read" msgstr "" -#: common/models.py:1731 +#: common/models.py:1735 msgid "Was this news item read?" msgstr "" -#: common/models.py:1748 +#: common/models.py:1752 msgid "Image file" msgstr "" -#: common/models.py:1760 +#: common/models.py:1764 msgid "Target model type for this image" msgstr "" -#: common/models.py:1764 +#: common/models.py:1768 msgid "Target model ID for this image" msgstr "" -#: common/models.py:1786 +#: common/models.py:1790 msgid "Custom Unit" msgstr "" -#: common/models.py:1804 +#: common/models.py:1808 msgid "Unit symbol must be unique" msgstr "" -#: common/models.py:1819 +#: common/models.py:1823 msgid "Unit name must be a valid identifier" msgstr "" -#: common/models.py:1838 +#: common/models.py:1842 msgid "Unit name" msgstr "" -#: common/models.py:1845 +#: common/models.py:1849 msgid "Symbol" msgstr "" -#: common/models.py:1846 +#: common/models.py:1850 msgid "Optional unit symbol" msgstr "" -#: common/models.py:1852 +#: common/models.py:1856 msgid "Definition" msgstr "" -#: common/models.py:1853 +#: common/models.py:1857 msgid "Unit definition" msgstr "" -#: common/models.py:1911 common/models.py:1974 stock/models.py:2967 +#: common/models.py:1917 common/models.py:1980 stock/models.py:2984 #: stock/serializers.py:247 msgid "Attachment" msgstr "" -#: common/models.py:1928 +#: common/models.py:1934 msgid "Missing file" msgstr "" -#: common/models.py:1929 +#: common/models.py:1935 msgid "Missing external link" msgstr "" -#: common/models.py:1966 +#: common/models.py:1972 common/models.py:2488 msgid "Model type" msgstr "" -#: common/models.py:1967 +#: common/models.py:1973 msgid "Target model type for image" msgstr "" -#: common/models.py:1975 +#: common/models.py:1981 msgid "Select file to attach" msgstr "" -#: common/models.py:1991 +#: common/models.py:1997 msgid "Comment" msgstr "" -#: common/models.py:1992 +#: common/models.py:1998 msgid "Attachment comment" msgstr "" -#: common/models.py:2008 +#: common/models.py:2014 msgid "Upload date" msgstr "" -#: common/models.py:2009 +#: common/models.py:2015 msgid "Date the file was uploaded" msgstr "" -#: common/models.py:2013 +#: common/models.py:2019 msgid "File size" msgstr "" -#: common/models.py:2013 +#: common/models.py:2019 msgid "File size in bytes" msgstr "" -#: common/models.py:2051 common/serializers.py:684 +#: common/models.py:2057 common/serializers.py:688 msgid "Invalid model type specified for attachment" msgstr "" -#: common/models.py:2072 +#: common/models.py:2078 msgid "Custom State" msgstr "" -#: common/models.py:2073 +#: common/models.py:2079 msgid "Custom States" msgstr "" -#: common/models.py:2078 +#: common/models.py:2084 msgid "Reference Status Set" msgstr "" -#: common/models.py:2079 +#: common/models.py:2085 msgid "Status set that is extended with this custom state" msgstr "" -#: common/models.py:2083 generic/states/serializers.py:18 +#: common/models.py:2089 generic/states/serializers.py:18 msgid "Logical Key" msgstr "" -#: common/models.py:2085 +#: common/models.py:2091 msgid "State logical key that is equal to this custom state in business logic" msgstr "" -#: common/models.py:2090 common/models.py:2329 company/models.py:622 -#: machine/serializers.py:27 -#: report/templates/report/inventree_test_report.html:104 stock/models.py:2959 +#: common/models.py:2096 common/models.py:2335 machine/serializers.py:27 +#: report/templates/report/inventree_test_report.html:104 stock/models.py:2976 msgid "Value" msgstr "" -#: common/models.py:2091 +#: common/models.py:2097 msgid "Numerical value that will be saved in the models database" msgstr "" -#: common/models.py:2097 +#: common/models.py:2103 msgid "Name of the state" msgstr "" -#: common/models.py:2106 common/models.py:2335 generic/states/serializers.py:22 +#: common/models.py:2112 common/models.py:2341 generic/states/serializers.py:22 msgid "Label" msgstr "" -#: common/models.py:2107 +#: common/models.py:2113 msgid "Label that will be displayed in the frontend" msgstr "" -#: common/models.py:2114 generic/states/serializers.py:24 +#: common/models.py:2120 generic/states/serializers.py:24 msgid "Color" msgstr "" -#: common/models.py:2115 +#: common/models.py:2121 msgid "Color that will be displayed in the frontend" msgstr "" -#: common/models.py:2123 +#: common/models.py:2129 msgid "Model" msgstr "" -#: common/models.py:2124 +#: common/models.py:2130 msgid "Model this state is associated with" msgstr "" -#: common/models.py:2139 +#: common/models.py:2145 msgid "Model must be selected" msgstr "" -#: common/models.py:2142 +#: common/models.py:2148 msgid "Key must be selected" msgstr "" -#: common/models.py:2145 +#: common/models.py:2151 msgid "Logical key must be selected" msgstr "" -#: common/models.py:2149 +#: common/models.py:2155 msgid "Key must be different from logical key" msgstr "" -#: common/models.py:2156 +#: common/models.py:2162 msgid "Valid reference status class must be provided" msgstr "" -#: common/models.py:2162 +#: common/models.py:2168 msgid "Key must be different from the logical keys of the reference status" msgstr "" -#: common/models.py:2169 +#: common/models.py:2175 msgid "Logical key must be in the logical keys of the reference status" msgstr "" -#: common/models.py:2176 +#: common/models.py:2182 msgid "Name must be different from the names of the reference status" msgstr "" -#: common/models.py:2216 common/models.py:2323 part/models.py:3889 +#: common/models.py:2222 common/models.py:2329 common/models.py:2533 msgid "Selection List" msgstr "" -#: common/models.py:2217 +#: common/models.py:2223 msgid "Selection Lists" msgstr "" -#: common/models.py:2222 +#: common/models.py:2228 msgid "Name of the selection list" msgstr "" -#: common/models.py:2229 +#: common/models.py:2235 msgid "Description of the selection list" msgstr "" -#: common/models.py:2235 part/models.py:1242 +#: common/models.py:2241 part/models.py:1330 msgid "Locked" msgstr "" -#: common/models.py:2236 +#: common/models.py:2242 msgid "Is this selection list locked?" msgstr "" -#: common/models.py:2242 +#: common/models.py:2248 msgid "Can this selection list be used?" msgstr "" -#: common/models.py:2250 +#: common/models.py:2256 msgid "Source Plugin" msgstr "" -#: common/models.py:2251 +#: common/models.py:2257 msgid "Plugin which provides the selection list" msgstr "" -#: common/models.py:2256 +#: common/models.py:2262 msgid "Source String" msgstr "" -#: common/models.py:2257 +#: common/models.py:2263 msgid "Optional string identifying the source used for this list" msgstr "" -#: common/models.py:2266 +#: common/models.py:2272 msgid "Default Entry" msgstr "" -#: common/models.py:2267 +#: common/models.py:2273 msgid "Default entry for this selection list" msgstr "" -#: common/models.py:2272 common/models.py:2724 +#: common/models.py:2278 common/models.py:3145 msgid "Created" msgstr "" -#: common/models.py:2273 +#: common/models.py:2279 msgid "Date and time that the selection list was created" msgstr "" -#: common/models.py:2278 +#: common/models.py:2284 msgid "Last Updated" msgstr "" -#: common/models.py:2279 +#: common/models.py:2285 msgid "Date and time that the selection list was last updated" msgstr "" -#: common/models.py:2313 +#: common/models.py:2319 msgid "Selection List Entry" msgstr "" -#: common/models.py:2314 +#: common/models.py:2320 msgid "Selection List Entries" msgstr "" -#: common/models.py:2324 +#: common/models.py:2330 msgid "Selection list to which this entry belongs" msgstr "" -#: common/models.py:2330 +#: common/models.py:2336 msgid "Value of the selection list entry" msgstr "" -#: common/models.py:2336 +#: common/models.py:2342 msgid "Label for the selection list entry" msgstr "" -#: common/models.py:2342 +#: common/models.py:2348 msgid "Description of the selection list entry" msgstr "" -#: common/models.py:2349 +#: common/models.py:2355 msgid "Is this selection list entry active?" msgstr "" -#: common/models.py:2367 -msgid "Barcode Scan" +#: common/models.py:2387 +msgid "Parameter Template" msgstr "" -#: common/models.py:2371 importer/models.py:546 part/models.py:4060 -msgid "Data" +#: common/models.py:2388 +msgid "Parameter Templates" msgstr "" -#: common/models.py:2372 -msgid "Barcode data" +#: common/models.py:2425 +msgid "Checkbox parameters cannot have units" msgstr "" -#: common/models.py:2383 -msgid "User who scanned the barcode" +#: common/models.py:2430 +msgid "Checkbox parameters cannot have choices" msgstr "" -#: common/models.py:2388 importer/models.py:69 -msgid "Timestamp" +#: common/models.py:2450 part/models.py:3707 +msgid "Choices must be unique" msgstr "" -#: common/models.py:2389 -msgid "Date and time of the barcode scan" +#: common/models.py:2467 +msgid "Parameter template name must be unique" msgstr "" -#: common/models.py:2395 -msgid "URL endpoint which processed the barcode" +#: common/models.py:2489 +msgid "Target model type for this parameter template" msgstr "" -#: common/models.py:2402 order/models.py:1832 plugin/serializers.py:93 -msgid "Context" +#: common/models.py:2495 +msgid "Parameter Name" msgstr "" -#: common/models.py:2403 -msgid "Context data for the barcode scan" +#: common/models.py:2501 part/models.py:1283 +msgid "Units" msgstr "" -#: common/models.py:2410 -msgid "Response" +#: common/models.py:2502 +msgid "Physical units for this parameter" msgstr "" -#: common/models.py:2411 -msgid "Response data from the barcode scan" +#: common/models.py:2510 +msgid "Parameter description" msgstr "" -#: common/models.py:2417 report/templates/report/inventree_test_report.html:103 -#: stock/models.py:2953 -msgid "Result" +#: common/models.py:2516 +msgid "Checkbox" msgstr "" -#: common/models.py:2418 -msgid "Was the barcode scan successful?" +#: common/models.py:2517 +msgid "Is this parameter a checkbox?" msgstr "" -#: common/models.py:2500 -msgid "An error occurred" +#: common/models.py:2522 part/models.py:3794 +msgid "Choices" msgstr "" -#: common/models.py:2521 -msgid "INVE-E8: Email log deletion is protected. Set INVENTREE_PROTECT_EMAIL_LOG to False to allow deletion." +#: common/models.py:2523 +msgid "Valid choices for this parameter (comma-separated)" msgstr "" -#: common/models.py:2568 -msgid "Email Message" +#: common/models.py:2534 +msgid "Selection list for this parameter" msgstr "" -#: common/models.py:2569 -msgid "Email Messages" +#: common/models.py:2539 part/models.py:3769 report/models.py:287 +msgid "Enabled" msgstr "" -#: common/models.py:2576 -msgid "Announced" +#: common/models.py:2540 +msgid "Is this parameter template enabled?" msgstr "" -#: common/models.py:2578 -msgid "Sent" -msgstr "" - -#: common/models.py:2579 -msgid "Failed" +#: common/models.py:2581 +msgid "Parameter" msgstr "" #: common/models.py:2582 -msgid "Delivered" -msgstr "" - -#: common/models.py:2590 -msgid "Confirmed" -msgstr "" - -#: common/models.py:2596 -msgid "Inbound" -msgstr "" - -#: common/models.py:2597 -msgid "Outbound" -msgstr "" - -#: common/models.py:2602 -msgid "No Reply" -msgstr "" - -#: common/models.py:2603 -msgid "Track Delivery" -msgstr "" - -#: common/models.py:2604 -msgid "Track Read" -msgstr "" - -#: common/models.py:2605 -msgid "Track Click" -msgstr "" - -#: common/models.py:2608 common/models.py:2711 -msgid "Global ID" -msgstr "" - -#: common/models.py:2621 -msgid "Identifier for this message (might be supplied by external system)" +msgid "Parameters" msgstr "" #: common/models.py:2628 +msgid "Invalid choice for parameter value" +msgstr "" + +#: common/models.py:2698 common/serializers.py:783 +msgid "Invalid model type specified for parameter" +msgstr "" + +#: common/models.py:2734 +msgid "Model ID" +msgstr "" + +#: common/models.py:2735 +msgid "ID of the target model for this parameter" +msgstr "" + +#: common/models.py:2744 common/setting/system.py:450 report/models.py:373 +#: report/models.py:669 report/serializers.py:94 report/serializers.py:135 +#: stock/serializers.py:234 +msgid "Template" +msgstr "" + +#: common/models.py:2745 +msgid "Parameter template" +msgstr "" + +#: common/models.py:2750 common/models.py:2792 importer/models.py:546 +msgid "Data" +msgstr "" + +#: common/models.py:2751 +msgid "Parameter Value" +msgstr "" + +#: common/models.py:2760 company/models.py:810 order/serializers.py:894 +#: order/serializers.py:2064 part/models.py:4075 part/models.py:4444 +#: report/templates/report/inventree_bill_of_materials_report.html:140 +#: report/templates/report/inventree_purchase_order_report.html:39 +#: report/templates/report/inventree_return_order_report.html:27 +#: report/templates/report/inventree_sales_order_report.html:32 +#: report/templates/report/inventree_stock_location_report.html:105 +#: stock/serializers.py:813 +msgid "Note" +msgstr "" + +#: common/models.py:2761 stock/serializers.py:718 +msgid "Optional note field" +msgstr "" + +#: common/models.py:2788 +msgid "Barcode Scan" +msgstr "" + +#: common/models.py:2793 +msgid "Barcode data" +msgstr "" + +#: common/models.py:2804 +msgid "User who scanned the barcode" +msgstr "" + +#: common/models.py:2809 importer/models.py:69 +msgid "Timestamp" +msgstr "" + +#: common/models.py:2810 +msgid "Date and time of the barcode scan" +msgstr "" + +#: common/models.py:2816 +msgid "URL endpoint which processed the barcode" +msgstr "" + +#: common/models.py:2823 order/models.py:1833 plugin/serializers.py:93 +msgid "Context" +msgstr "" + +#: common/models.py:2824 +msgid "Context data for the barcode scan" +msgstr "" + +#: common/models.py:2831 +msgid "Response" +msgstr "" + +#: common/models.py:2832 +msgid "Response data from the barcode scan" +msgstr "" + +#: common/models.py:2838 report/templates/report/inventree_test_report.html:103 +#: stock/models.py:2970 +msgid "Result" +msgstr "" + +#: common/models.py:2839 +msgid "Was the barcode scan successful?" +msgstr "" + +#: common/models.py:2921 +msgid "An error occurred" +msgstr "" + +#: common/models.py:2942 +msgid "INVE-E8: Email log deletion is protected. Set INVENTREE_PROTECT_EMAIL_LOG to False to allow deletion." +msgstr "" + +#: common/models.py:2989 +msgid "Email Message" +msgstr "" + +#: common/models.py:2990 +msgid "Email Messages" +msgstr "" + +#: common/models.py:2997 +msgid "Announced" +msgstr "" + +#: common/models.py:2999 +msgid "Sent" +msgstr "" + +#: common/models.py:3000 +msgid "Failed" +msgstr "" + +#: common/models.py:3003 +msgid "Delivered" +msgstr "" + +#: common/models.py:3011 +msgid "Confirmed" +msgstr "" + +#: common/models.py:3017 +msgid "Inbound" +msgstr "" + +#: common/models.py:3018 +msgid "Outbound" +msgstr "" + +#: common/models.py:3023 +msgid "No Reply" +msgstr "" + +#: common/models.py:3024 +msgid "Track Delivery" +msgstr "" + +#: common/models.py:3025 +msgid "Track Read" +msgstr "" + +#: common/models.py:3026 +msgid "Track Click" +msgstr "" + +#: common/models.py:3029 common/models.py:3132 +msgid "Global ID" +msgstr "" + +#: common/models.py:3042 +msgid "Identifier for this message (might be supplied by external system)" +msgstr "" + +#: common/models.py:3049 msgid "Thread ID" msgstr "" -#: common/models.py:2630 +#: common/models.py:3051 msgid "Identifier for this message thread (might be supplied by external system)" msgstr "" -#: common/models.py:2639 +#: common/models.py:3060 msgid "Thread" msgstr "" -#: common/models.py:2640 +#: common/models.py:3061 msgid "Linked thread for this message" msgstr "" -#: common/models.py:2656 -msgid "Prioriy" +#: common/models.py:3077 +msgid "Priority" msgstr "" -#: common/models.py:2698 +#: common/models.py:3119 msgid "Email Thread" msgstr "" -#: common/models.py:2699 +#: common/models.py:3120 msgid "Email Threads" msgstr "" -#: common/models.py:2705 generic/states/serializers.py:16 +#: common/models.py:3126 generic/states/serializers.py:16 #: machine/serializers.py:24 plugin/models.py:46 users/models.py:113 msgid "Key" msgstr "" -#: common/models.py:2708 +#: common/models.py:3129 msgid "Unique key for this thread (used to identify the thread)" msgstr "" -#: common/models.py:2712 +#: common/models.py:3133 msgid "Unique identifier for this thread" msgstr "" -#: common/models.py:2719 +#: common/models.py:3140 msgid "Started Internal" msgstr "" -#: common/models.py:2720 +#: common/models.py:3141 msgid "Was this thread started internally?" msgstr "" -#: common/models.py:2725 +#: common/models.py:3146 msgid "Date and time that the thread was created" msgstr "" -#: common/models.py:2730 +#: common/models.py:3151 msgid "Date and time that the thread was last updated" msgstr "" @@ -2199,7 +2339,7 @@ msgstr "" msgid "A order that is assigned to you was canceled" msgstr "" -#: common/notifications.py:73 common/notifications.py:80 order/api.py:594 +#: common/notifications.py:73 common/notifications.py:80 order/api.py:600 msgid "Items Received" msgstr "" @@ -2211,88 +2351,93 @@ msgstr "" msgid "Items have been received against a return order" msgstr "" -#: common/serializers.py:145 +#: common/serializers.py:149 msgid "Indicates if the setting is overridden by an environment variable" msgstr "" -#: common/serializers.py:147 +#: common/serializers.py:151 msgid "Override" msgstr "" -#: common/serializers.py:498 +#: common/serializers.py:502 msgid "Is Running" msgstr "" -#: common/serializers.py:504 +#: common/serializers.py:508 msgid "Pending Tasks" msgstr "" -#: common/serializers.py:510 +#: common/serializers.py:514 msgid "Scheduled Tasks" msgstr "" -#: common/serializers.py:516 +#: common/serializers.py:520 msgid "Failed Tasks" msgstr "" -#: common/serializers.py:531 +#: common/serializers.py:535 msgid "Task ID" msgstr "" -#: common/serializers.py:531 +#: common/serializers.py:535 msgid "Unique task ID" msgstr "" -#: common/serializers.py:533 +#: common/serializers.py:537 msgid "Lock" msgstr "" -#: common/serializers.py:533 +#: common/serializers.py:537 msgid "Lock time" msgstr "" -#: common/serializers.py:535 +#: common/serializers.py:539 msgid "Task name" msgstr "" -#: common/serializers.py:537 +#: common/serializers.py:541 msgid "Function" msgstr "" -#: common/serializers.py:537 +#: common/serializers.py:541 msgid "Function name" msgstr "" -#: common/serializers.py:539 +#: common/serializers.py:543 msgid "Arguments" msgstr "" -#: common/serializers.py:539 +#: common/serializers.py:543 msgid "Task arguments" msgstr "" -#: common/serializers.py:542 +#: common/serializers.py:546 msgid "Keyword Arguments" msgstr "" -#: common/serializers.py:542 +#: common/serializers.py:546 msgid "Task keyword arguments" msgstr "" -#: common/serializers.py:652 +#: common/serializers.py:656 msgid "Filename" msgstr "" -#: common/serializers.py:659 importer/models.py:89 report/api.py:41 +#: common/serializers.py:663 common/serializers.py:730 +#: common/serializers.py:805 importer/models.py:89 report/api.py:41 #: report/models.py:293 report/serializers.py:52 msgid "Model Type" msgstr "" -#: common/serializers.py:687 +#: common/serializers.py:691 msgid "User does not have permission to create or edit attachments for this model" msgstr "" -#: common/serializers.py:731 common/serializers.py:834 +#: common/serializers.py:786 +msgid "User does not have permission to create or edit parameters for this model" +msgstr "" + +#: common/serializers.py:850 common/serializers.py:953 msgid "Selection list is locked" msgstr "" @@ -2368,7 +2513,7 @@ msgstr "" msgid "Show the `about` modal only to superusers" msgstr "" -#: common/setting/system.py:224 company/models.py:144 company/models.py:145 +#: common/setting/system.py:224 company/models.py:145 company/models.py:146 msgid "Company name" msgstr "" @@ -2411,8 +2556,8 @@ msgstr "" #: common/setting/system.py:253 common/setting/system.py:293 #: common/setting/system.py:306 common/setting/system.py:314 #: common/setting/system.py:321 common/setting/system.py:330 -#: common/setting/system.py:339 common/setting/system.py:588 -#: common/setting/system.py:616 common/setting/system.py:707 +#: common/setting/system.py:339 common/setting/system.py:580 +#: common/setting/system.py:608 common/setting/system.py:707 #: common/setting/system.py:1103 common/setting/system.py:1119 msgid "days" msgstr "" @@ -2657,12 +2802,6 @@ msgstr "" msgid "Copy category parameter templates when creating a part" msgstr "" -#: common/setting/system.py:450 part/models.py:4054 report/models.py:373 -#: report/models.py:669 report/serializers.py:94 report/serializers.py:135 -#: stock/serializers.py:234 -msgid "Template" -msgstr "" - #: common/setting/system.py:451 msgid "Parts are templates by default" msgstr "" @@ -2671,8 +2810,8 @@ msgstr "" msgid "Parts can be assembled from other components by default" msgstr "" -#: common/setting/system.py:462 part/models.py:1208 part/serializers.py:1734 -#: part/serializers.py:1741 +#: common/setting/system.py:462 part/models.py:1296 part/serializers.py:1599 +#: part/serializers.py:1606 msgid "Component" msgstr "" @@ -2680,7 +2819,7 @@ msgstr "" msgid "Parts can be used as sub-components by default" msgstr "" -#: common/setting/system.py:468 part/models.py:1226 +#: common/setting/system.py:468 part/models.py:1314 msgid "Purchaseable" msgstr "" @@ -2688,7 +2827,7 @@ msgstr "" msgid "Parts are purchaseable by default" msgstr "" -#: common/setting/system.py:474 part/models.py:1232 stock/api.py:643 +#: common/setting/system.py:474 part/models.py:1320 stock/api.py:643 msgid "Salable" msgstr "" @@ -2700,7 +2839,7 @@ msgstr "" msgid "Parts are trackable by default" msgstr "" -#: common/setting/system.py:486 part/models.py:1248 +#: common/setting/system.py:486 part/models.py:1336 msgid "Virtual" msgstr "" @@ -2749,158 +2888,158 @@ msgid "Part category default icon (empty means no icon)" msgstr "" #: common/setting/system.py:525 -msgid "Enforce Parameter Units" -msgstr "" - -#: common/setting/system.py:527 -msgid "If units are provided, parameter values must match the specified units" -msgstr "" - -#: common/setting/system.py:533 msgid "Minimum Pricing Decimal Places" msgstr "" -#: common/setting/system.py:535 +#: common/setting/system.py:527 msgid "Minimum number of decimal places to display when rendering pricing data" msgstr "" -#: common/setting/system.py:546 +#: common/setting/system.py:538 msgid "Maximum Pricing Decimal Places" msgstr "" -#: common/setting/system.py:548 +#: common/setting/system.py:540 msgid "Maximum number of decimal places to display when rendering pricing data" msgstr "" -#: common/setting/system.py:559 +#: common/setting/system.py:551 msgid "Use Supplier Pricing" msgstr "" -#: common/setting/system.py:561 +#: common/setting/system.py:553 msgid "Include supplier price breaks in overall pricing calculations" msgstr "" -#: common/setting/system.py:567 +#: common/setting/system.py:559 msgid "Purchase History Override" msgstr "" -#: common/setting/system.py:569 +#: common/setting/system.py:561 msgid "Historical purchase order pricing overrides supplier price breaks" msgstr "" -#: common/setting/system.py:575 +#: common/setting/system.py:567 msgid "Use Stock Item Pricing" msgstr "" -#: common/setting/system.py:577 +#: common/setting/system.py:569 msgid "Use pricing from manually entered stock data for pricing calculations" msgstr "" -#: common/setting/system.py:583 +#: common/setting/system.py:575 msgid "Stock Item Pricing Age" msgstr "" -#: common/setting/system.py:585 +#: common/setting/system.py:577 msgid "Exclude stock items older than this number of days from pricing calculations" msgstr "" -#: common/setting/system.py:592 +#: common/setting/system.py:584 msgid "Use Variant Pricing" msgstr "" -#: common/setting/system.py:593 +#: common/setting/system.py:585 msgid "Include variant pricing in overall pricing calculations" msgstr "" -#: common/setting/system.py:598 +#: common/setting/system.py:590 msgid "Active Variants Only" msgstr "" -#: common/setting/system.py:600 +#: common/setting/system.py:592 msgid "Only use active variant parts for calculating variant pricing" msgstr "" -#: common/setting/system.py:606 +#: common/setting/system.py:598 msgid "Auto Update Pricing" msgstr "" -#: common/setting/system.py:608 +#: common/setting/system.py:600 msgid "Automatically update part pricing when internal data changes" msgstr "" -#: common/setting/system.py:614 +#: common/setting/system.py:606 msgid "Pricing Rebuild Interval" msgstr "" -#: common/setting/system.py:615 +#: common/setting/system.py:607 msgid "Number of days before part pricing is automatically updated" msgstr "" -#: common/setting/system.py:621 +#: common/setting/system.py:613 msgid "Internal Prices" msgstr "" -#: common/setting/system.py:622 +#: common/setting/system.py:614 msgid "Enable internal prices for parts" msgstr "" -#: common/setting/system.py:627 +#: common/setting/system.py:619 msgid "Internal Price Override" msgstr "" -#: common/setting/system.py:629 +#: common/setting/system.py:621 msgid "If available, internal prices override price range calculations" msgstr "" -#: common/setting/system.py:635 +#: common/setting/system.py:627 msgid "Enable label printing" msgstr "" -#: common/setting/system.py:636 +#: common/setting/system.py:628 msgid "Enable label printing from the web interface" msgstr "" -#: common/setting/system.py:641 +#: common/setting/system.py:633 msgid "Label Image DPI" msgstr "" -#: common/setting/system.py:643 +#: common/setting/system.py:635 msgid "DPI resolution when generating image files to supply to label printing plugins" msgstr "" -#: common/setting/system.py:649 +#: common/setting/system.py:641 msgid "Enable Reports" msgstr "" -#: common/setting/system.py:650 +#: common/setting/system.py:642 msgid "Enable generation of reports" msgstr "" -#: common/setting/system.py:655 +#: common/setting/system.py:647 msgid "Debug Mode" msgstr "" -#: common/setting/system.py:656 +#: common/setting/system.py:648 msgid "Generate reports in debug mode (HTML output)" msgstr "" -#: common/setting/system.py:661 +#: common/setting/system.py:653 msgid "Log Report Errors" msgstr "" -#: common/setting/system.py:662 +#: common/setting/system.py:654 msgid "Log errors which occur when generating reports" msgstr "" -#: common/setting/system.py:667 plugin/builtin/labels/label_sheet.py:29 +#: common/setting/system.py:659 plugin/builtin/labels/label_sheet.py:29 #: report/models.py:381 msgid "Page Size" msgstr "" -#: common/setting/system.py:668 +#: common/setting/system.py:660 msgid "Default page size for PDF reports" msgstr "" +#: common/setting/system.py:665 +msgid "Enforce Parameter Units" +msgstr "" + +#: common/setting/system.py:667 +msgid "If units are provided, parameter values must match the specified units" +msgstr "" + #: common/setting/system.py:673 msgid "Globally Unique Serials" msgstr "" @@ -3456,688 +3595,677 @@ msgid "Display PDF reports in the browser, instead of downloading as a file" msgstr "" #: common/setting/user.py:45 -msgid "Search Parts" +msgid "Barcode Scanner in Form Fields" msgstr "" #: common/setting/user.py:46 -msgid "Display parts in search preview window" +msgid "Allow barcode scanner input in form fields" msgstr "" #: common/setting/user.py:51 -msgid "Search Supplier Parts" +msgid "Search Parts" msgstr "" #: common/setting/user.py:52 -msgid "Display supplier parts in search preview window" +msgid "Display parts in search preview window" msgstr "" #: common/setting/user.py:57 -msgid "Search Manufacturer Parts" +msgid "Search Supplier Parts" msgstr "" #: common/setting/user.py:58 -msgid "Display manufacturer parts in search preview window" +msgid "Display supplier parts in search preview window" msgstr "" #: common/setting/user.py:63 -msgid "Hide Inactive Parts" +msgid "Search Manufacturer Parts" msgstr "" #: common/setting/user.py:64 -msgid "Excluded inactive parts from search preview window" +msgid "Display manufacturer parts in search preview window" msgstr "" #: common/setting/user.py:69 -msgid "Search Categories" +msgid "Hide Inactive Parts" msgstr "" #: common/setting/user.py:70 -msgid "Display part categories in search preview window" +msgid "Excluded inactive parts from search preview window" msgstr "" #: common/setting/user.py:75 -msgid "Search Stock" +msgid "Search Categories" msgstr "" #: common/setting/user.py:76 -msgid "Display stock items in search preview window" +msgid "Display part categories in search preview window" msgstr "" #: common/setting/user.py:81 +msgid "Search Stock" +msgstr "" + +#: common/setting/user.py:82 +msgid "Display stock items in search preview window" +msgstr "" + +#: common/setting/user.py:87 msgid "Hide Unavailable Stock Items" msgstr "" -#: common/setting/user.py:83 +#: common/setting/user.py:89 msgid "Exclude stock items which are not available from the search preview window" msgstr "" -#: common/setting/user.py:89 +#: common/setting/user.py:95 msgid "Search Locations" msgstr "" -#: common/setting/user.py:90 +#: common/setting/user.py:96 msgid "Display stock locations in search preview window" msgstr "" -#: common/setting/user.py:95 +#: common/setting/user.py:101 msgid "Search Companies" msgstr "" -#: common/setting/user.py:96 +#: common/setting/user.py:102 msgid "Display companies in search preview window" msgstr "" -#: common/setting/user.py:101 +#: common/setting/user.py:107 msgid "Search Build Orders" msgstr "" -#: common/setting/user.py:102 +#: common/setting/user.py:108 msgid "Display build orders in search preview window" msgstr "" -#: common/setting/user.py:107 +#: common/setting/user.py:113 msgid "Search Purchase Orders" msgstr "" -#: common/setting/user.py:108 +#: common/setting/user.py:114 msgid "Display purchase orders in search preview window" msgstr "" -#: common/setting/user.py:113 +#: common/setting/user.py:119 msgid "Exclude Inactive Purchase Orders" msgstr "" -#: common/setting/user.py:114 +#: common/setting/user.py:120 msgid "Exclude inactive purchase orders from search preview window" msgstr "" -#: common/setting/user.py:119 +#: common/setting/user.py:125 msgid "Search Sales Orders" msgstr "" -#: common/setting/user.py:120 +#: common/setting/user.py:126 msgid "Display sales orders in search preview window" msgstr "" -#: common/setting/user.py:125 +#: common/setting/user.py:131 msgid "Exclude Inactive Sales Orders" msgstr "" -#: common/setting/user.py:126 +#: common/setting/user.py:132 msgid "Exclude inactive sales orders from search preview window" msgstr "" -#: common/setting/user.py:131 +#: common/setting/user.py:137 msgid "Search Sales Order Shipments" msgstr "" -#: common/setting/user.py:132 +#: common/setting/user.py:138 msgid "Display sales order shipments in search preview window" msgstr "" -#: common/setting/user.py:137 +#: common/setting/user.py:143 msgid "Search Return Orders" msgstr "" -#: common/setting/user.py:138 +#: common/setting/user.py:144 msgid "Display return orders in search preview window" msgstr "" -#: common/setting/user.py:143 +#: common/setting/user.py:149 msgid "Exclude Inactive Return Orders" msgstr "" -#: common/setting/user.py:144 +#: common/setting/user.py:150 msgid "Exclude inactive return orders from search preview window" msgstr "" -#: common/setting/user.py:149 +#: common/setting/user.py:155 msgid "Search Preview Results" msgstr "" -#: common/setting/user.py:151 +#: common/setting/user.py:157 msgid "Number of results to show in each section of the search preview window" msgstr "" -#: common/setting/user.py:157 +#: common/setting/user.py:163 msgid "Regex Search" msgstr "" -#: common/setting/user.py:158 +#: common/setting/user.py:164 msgid "Enable regular expressions in search queries" msgstr "" -#: common/setting/user.py:163 +#: common/setting/user.py:169 msgid "Whole Word Search" msgstr "" -#: common/setting/user.py:164 +#: common/setting/user.py:170 msgid "Search queries return results for whole word matches" msgstr "" -#: common/setting/user.py:169 +#: common/setting/user.py:175 msgid "Search Notes" msgstr "" -#: common/setting/user.py:171 +#: common/setting/user.py:177 msgid "Search queries return results for matches from the item's notes" msgstr "" -#: common/setting/user.py:177 +#: common/setting/user.py:183 msgid "Escape Key Closes Forms" msgstr "" -#: common/setting/user.py:178 +#: common/setting/user.py:184 msgid "Use the escape key to close modal forms" msgstr "" -#: common/setting/user.py:183 +#: common/setting/user.py:189 msgid "Fixed Navbar" msgstr "" -#: common/setting/user.py:184 +#: common/setting/user.py:190 msgid "The navbar position is fixed to the top of the screen" msgstr "" -#: common/setting/user.py:189 +#: common/setting/user.py:195 msgid "Fixed Table Headers" msgstr "" -#: common/setting/user.py:190 +#: common/setting/user.py:196 msgid "Table headers are fixed to the top of the table" msgstr "" -#: common/setting/user.py:195 +#: common/setting/user.py:201 msgid "Show Spotlight" msgstr "" -#: common/setting/user.py:196 +#: common/setting/user.py:202 msgid "Enable spotlight navigation functionality" msgstr "" -#: common/setting/user.py:201 +#: common/setting/user.py:207 msgid "Navigation Icons" msgstr "" -#: common/setting/user.py:202 +#: common/setting/user.py:208 msgid "Display icons in the navigation bar" msgstr "" -#: common/setting/user.py:207 +#: common/setting/user.py:213 msgid "Date Format" msgstr "" -#: common/setting/user.py:208 +#: common/setting/user.py:214 msgid "Preferred format for displaying dates" msgstr "" -#: common/setting/user.py:221 +#: common/setting/user.py:227 msgid "Show Stock History" msgstr "" -#: common/setting/user.py:222 +#: common/setting/user.py:228 msgid "Display stock history information in the part detail page" msgstr "" -#: common/setting/user.py:227 +#: common/setting/user.py:233 msgid "Show Last Breadcrumb" msgstr "" -#: common/setting/user.py:228 +#: common/setting/user.py:234 msgid "Show the current page in breadcrumbs" msgstr "" -#: common/setting/user.py:233 +#: common/setting/user.py:239 msgid "Show full stock location in tables" msgstr "" -#: common/setting/user.py:235 +#: common/setting/user.py:241 msgid "Disabled: The full location path is displayed as a hover tooltip. Enabled: The full location path is displayed as plain text." msgstr "" -#: common/setting/user.py:241 +#: common/setting/user.py:247 msgid "Show full part categories in tables" msgstr "" -#: common/setting/user.py:243 +#: common/setting/user.py:249 msgid "Disabled: The full category path is displayed as a hover tooltip. Enabled: The full category path is displayed as plain text." msgstr "" -#: common/setting/user.py:249 +#: common/setting/user.py:255 msgid "Receive error reports" msgstr "" -#: common/setting/user.py:250 +#: common/setting/user.py:256 msgid "Receive notifications for system errors" msgstr "" -#: common/setting/user.py:255 +#: common/setting/user.py:261 msgid "Last used printing machines" msgstr "" -#: common/setting/user.py:256 +#: common/setting/user.py:262 msgid "Save the last used printing machines for a user" msgstr "" -#: common/validators.py:34 +#: common/validators.py:38 +msgid "All models" +msgstr "" + +#: common/validators.py:63 msgid "No attachment model type provided" msgstr "" -#: common/validators.py:40 +#: common/validators.py:69 msgid "Invalid attachment model type" msgstr "" -#: common/validators.py:81 +#: common/validators.py:110 msgid "Minimum places cannot be greater than maximum places" msgstr "" -#: common/validators.py:93 +#: common/validators.py:122 msgid "Maximum places cannot be less than minimum places" msgstr "" -#: common/validators.py:104 +#: common/validators.py:133 msgid "An empty domain is not allowed." msgstr "" -#: common/validators.py:106 +#: common/validators.py:135 #, python-brace-format msgid "Invalid domain name: {domain}" msgstr "" -#: common/validators.py:122 +#: common/validators.py:151 msgid "Value must be uppercase" msgstr "" -#: common/validators.py:128 +#: common/validators.py:157 msgid "Value must be a valid variable identifier" msgstr "" -#: company/api.py:147 +#: company/api.py:141 msgid "Part is Active" msgstr "" -#: company/api.py:151 +#: company/api.py:145 msgid "Manufacturer is Active" msgstr "" -#: company/api.py:286 +#: company/api.py:246 msgid "Supplier Part is Active" msgstr "" -#: company/api.py:290 +#: company/api.py:250 msgid "Internal Part is Active" msgstr "" -#: company/api.py:295 +#: company/api.py:255 msgid "Supplier is Active" msgstr "" -#: company/api.py:307 company/models.py:520 company/serializers.py:457 -#: part/serializers.py:566 +#: company/api.py:267 company/models.py:522 company/serializers.py:502 +#: part/serializers.py:477 msgid "Manufacturer" msgstr "" -#: company/api.py:314 company/models.py:121 company/models.py:392 +#: company/api.py:274 company/models.py:122 company/models.py:393 #: stock/api.py:900 msgid "Company" msgstr "" -#: company/api.py:324 +#: company/api.py:284 msgid "Has Stock" msgstr "" -#: company/models.py:122 +#: company/models.py:123 msgid "Companies" msgstr "" -#: company/models.py:150 +#: company/models.py:151 msgid "Company description" msgstr "" -#: company/models.py:151 +#: company/models.py:152 msgid "Description of the company" msgstr "" -#: company/models.py:157 +#: company/models.py:158 msgid "Website" msgstr "" -#: company/models.py:158 +#: company/models.py:159 msgid "Company website URL" msgstr "" -#: company/models.py:164 +#: company/models.py:165 msgid "Phone number" msgstr "" -#: company/models.py:166 +#: company/models.py:167 msgid "Contact phone number" msgstr "" -#: company/models.py:173 +#: company/models.py:174 msgid "Contact email address" msgstr "" -#: company/models.py:178 company/models.py:296 order/models.py:513 +#: company/models.py:179 company/models.py:297 order/models.py:514 #: users/models.py:561 msgid "Contact" msgstr "" -#: company/models.py:180 +#: company/models.py:181 msgid "Point of contact" msgstr "" -#: company/models.py:186 +#: company/models.py:187 msgid "Link to external company information" msgstr "" -#: company/models.py:191 +#: company/models.py:192 msgid "Is this company active?" msgstr "" -#: company/models.py:196 +#: company/models.py:197 msgid "Is customer" msgstr "" -#: company/models.py:197 +#: company/models.py:198 msgid "Do you sell items to this company?" msgstr "" -#: company/models.py:202 +#: company/models.py:203 msgid "Is supplier" msgstr "" -#: company/models.py:203 +#: company/models.py:204 msgid "Do you purchase items from this company?" msgstr "" -#: company/models.py:208 +#: company/models.py:209 msgid "Is manufacturer" msgstr "" -#: company/models.py:209 +#: company/models.py:210 msgid "Does this company manufacture parts?" msgstr "" -#: company/models.py:217 +#: company/models.py:218 msgid "Default currency used for this company" msgstr "" -#: company/models.py:224 +#: company/models.py:225 msgid "Tax ID" msgstr "" -#: company/models.py:225 +#: company/models.py:226 msgid "Company Tax ID" msgstr "" -#: company/models.py:335 order/models.py:523 order/models.py:2288 +#: company/models.py:336 order/models.py:524 order/models.py:2289 msgid "Address" msgstr "" -#: company/models.py:336 +#: company/models.py:337 msgid "Addresses" msgstr "" -#: company/models.py:393 +#: company/models.py:394 msgid "Select company" msgstr "" -#: company/models.py:398 +#: company/models.py:399 msgid "Address title" msgstr "" -#: company/models.py:399 +#: company/models.py:400 msgid "Title describing the address entry" msgstr "" -#: company/models.py:405 +#: company/models.py:406 msgid "Primary address" msgstr "" -#: company/models.py:406 +#: company/models.py:407 msgid "Set as primary address" msgstr "" -#: company/models.py:411 +#: company/models.py:412 msgid "Line 1" msgstr "" -#: company/models.py:412 +#: company/models.py:413 msgid "Address line 1" msgstr "" -#: company/models.py:418 +#: company/models.py:419 msgid "Line 2" msgstr "" -#: company/models.py:419 +#: company/models.py:420 msgid "Address line 2" msgstr "" -#: company/models.py:425 company/models.py:426 +#: company/models.py:426 company/models.py:427 msgid "Postal code" msgstr "" -#: company/models.py:432 +#: company/models.py:433 msgid "City/Region" msgstr "" -#: company/models.py:433 +#: company/models.py:434 msgid "Postal code city/region" msgstr "" -#: company/models.py:439 +#: company/models.py:440 msgid "State/Province" msgstr "" -#: company/models.py:440 +#: company/models.py:441 msgid "State or province" msgstr "" -#: company/models.py:446 +#: company/models.py:447 msgid "Country" msgstr "" -#: company/models.py:447 +#: company/models.py:448 msgid "Address country" msgstr "" -#: company/models.py:453 +#: company/models.py:454 msgid "Courier shipping notes" msgstr "" -#: company/models.py:454 +#: company/models.py:455 msgid "Notes for shipping courier" msgstr "" -#: company/models.py:460 +#: company/models.py:461 msgid "Internal shipping notes" msgstr "" -#: company/models.py:461 +#: company/models.py:462 msgid "Shipping notes for internal use" msgstr "" -#: company/models.py:468 +#: company/models.py:469 msgid "Link to address information (external)" msgstr "" -#: company/models.py:492 company/models.py:609 company/models.py:832 -#: company/serializers.py:471 stock/api.py:561 +#: company/models.py:494 company/models.py:786 company/serializers.py:516 +#: stock/api.py:561 msgid "Manufacturer Part" msgstr "" -#: company/models.py:509 company/models.py:800 stock/models.py:1025 +#: company/models.py:511 company/models.py:754 stock/models.py:1025 #: stock/serializers.py:407 msgid "Base Part" msgstr "" -#: company/models.py:511 company/models.py:802 +#: company/models.py:513 company/models.py:756 msgid "Select part" msgstr "" -#: company/models.py:521 +#: company/models.py:523 msgid "Select manufacturer" msgstr "" -#: company/models.py:527 company/serializers.py:479 order/serializers.py:734 -#: part/serializers.py:576 +#: company/models.py:529 company/serializers.py:524 order/serializers.py:745 +#: part/serializers.py:487 msgid "MPN" msgstr "" -#: company/models.py:528 stock/serializers.py:572 +#: company/models.py:530 stock/serializers.py:572 msgid "Manufacturer Part Number" msgstr "" -#: company/models.py:535 +#: company/models.py:537 msgid "URL for external manufacturer part link" msgstr "" -#: company/models.py:544 +#: company/models.py:546 msgid "Manufacturer part description" msgstr "" -#: company/models.py:597 -msgid "Manufacturer Part Parameter" -msgstr "" - -#: company/models.py:616 -msgid "Parameter name" -msgstr "" - -#: company/models.py:623 -msgid "Parameter value" -msgstr "" - -#: company/models.py:630 part/models.py:1195 part/models.py:3857 -msgid "Units" -msgstr "" - -#: company/models.py:631 -msgid "Parameter units" -msgstr "" - -#: company/models.py:740 +#: company/models.py:694 msgid "Pack units must be compatible with the base part units" msgstr "" -#: company/models.py:747 +#: company/models.py:701 msgid "Pack units must be greater than zero" msgstr "" -#: company/models.py:761 +#: company/models.py:715 msgid "Linked manufacturer part must reference the same base part" msgstr "" -#: company/models.py:810 company/serializers.py:449 company/serializers.py:467 -#: order/models.py:639 part/serializers.py:550 +#: company/models.py:764 company/serializers.py:494 company/serializers.py:512 +#: order/models.py:640 part/serializers.py:461 #: plugin/builtin/suppliers/digikey.py:26 plugin/builtin/suppliers/lcsc.py:27 #: plugin/builtin/suppliers/mouser.py:25 plugin/builtin/suppliers/tme.py:27 #: stock/api.py:567 templates/email/overdue_purchase_order.html:16 msgid "Supplier" msgstr "" -#: company/models.py:811 +#: company/models.py:765 msgid "Select supplier" msgstr "" -#: company/models.py:817 part/serializers.py:561 +#: company/models.py:771 part/serializers.py:472 msgid "Supplier stock keeping unit" msgstr "" -#: company/models.py:823 +#: company/models.py:777 msgid "Is this supplier part active?" msgstr "" -#: company/models.py:833 +#: company/models.py:787 msgid "Select manufacturer part" msgstr "" -#: company/models.py:840 +#: company/models.py:794 msgid "URL for external supplier part link" msgstr "" -#: company/models.py:849 +#: company/models.py:803 msgid "Supplier part description" msgstr "" -#: company/models.py:856 order/serializers.py:883 order/serializers.py:2047 -#: part/models.py:4070 part/models.py:4450 part/models.py:4819 -#: report/templates/report/inventree_bill_of_materials_report.html:140 -#: report/templates/report/inventree_purchase_order_report.html:39 -#: report/templates/report/inventree_return_order_report.html:27 -#: report/templates/report/inventree_sales_order_report.html:32 -#: report/templates/report/inventree_stock_location_report.html:105 -#: stock/serializers.py:813 -msgid "Note" -msgstr "" - -#: company/models.py:865 part/models.py:2250 +#: company/models.py:819 part/models.py:2338 msgid "base cost" msgstr "" -#: company/models.py:866 part/models.py:2251 +#: company/models.py:820 part/models.py:2339 msgid "Minimum charge (e.g. stocking fee)" msgstr "" -#: company/models.py:873 order/serializers.py:875 stock/models.py:1056 +#: company/models.py:827 order/serializers.py:886 stock/models.py:1056 #: stock/serializers.py:1606 msgid "Packaging" msgstr "" -#: company/models.py:874 +#: company/models.py:828 msgid "Part packaging" msgstr "" -#: company/models.py:879 +#: company/models.py:833 msgid "Pack Quantity" msgstr "" -#: company/models.py:881 +#: company/models.py:835 msgid "Total quantity supplied in a single pack. Leave empty for single items." msgstr "" -#: company/models.py:900 part/models.py:2257 +#: company/models.py:854 part/models.py:2345 msgid "multiple" msgstr "" -#: company/models.py:901 +#: company/models.py:855 msgid "Order multiple" msgstr "" -#: company/models.py:913 +#: company/models.py:867 msgid "Quantity available from supplier" msgstr "" -#: company/models.py:919 +#: company/models.py:873 msgid "Availability Updated" msgstr "" -#: company/models.py:920 +#: company/models.py:874 msgid "Date of last update of availability data" msgstr "" -#: company/models.py:1048 +#: company/models.py:1002 msgid "Supplier Price Break" msgstr "" -#: company/serializers.py:181 +#: company/serializers.py:184 +msgid "Primary Address" +msgstr "" + +#: company/serializers.py:186 msgid "Return the string representation for the primary address. This property exists for backwards compatibility." msgstr "" -#: company/serializers.py:212 +#: company/serializers.py:218 msgid "Default currency used for this supplier" msgstr "" -#: company/serializers.py:248 +#: company/serializers.py:260 msgid "Company Name" msgstr "" -#: company/serializers.py:433 part/serializers.py:955 stock/serializers.py:428 +#: company/serializers.py:460 part/serializers.py:840 stock/serializers.py:428 msgid "In Stock" msgstr "" +#: company/serializers.py:477 +msgid "Price Breaks" +msgstr "" + #: data_exporter/mixins.py:325 data_exporter/mixins.py:403 msgid "Error occurred during data export" msgstr "" @@ -4290,7 +4418,7 @@ msgstr "" msgid "Errors" msgstr "" -#: importer/models.py:550 part/serializers.py:1268 +#: importer/models.py:550 part/serializers.py:1133 msgid "Valid" msgstr "" @@ -4402,7 +4530,7 @@ msgstr "" msgid "Connected" msgstr "" -#: machine/machine_types/label_printer.py:232 order/api.py:1795 +#: machine/machine_types/label_printer.py:232 order/api.py:1800 msgid "Unknown" msgstr "" @@ -4530,105 +4658,105 @@ msgstr "" msgid "Maximum value for progress type, required if type=progress" msgstr "" -#: order/api.py:125 +#: order/api.py:130 msgid "Order Reference" msgstr "" -#: order/api.py:153 order/api.py:1207 +#: order/api.py:158 order/api.py:1212 msgid "Outstanding" msgstr "" -#: order/api.py:169 +#: order/api.py:174 msgid "Has Project Code" msgstr "" -#: order/api.py:183 order/models.py:488 +#: order/api.py:188 order/models.py:489 msgid "Created By" msgstr "" -#: order/api.py:187 +#: order/api.py:192 msgid "Created Before" msgstr "" -#: order/api.py:191 +#: order/api.py:196 msgid "Created After" msgstr "" -#: order/api.py:195 +#: order/api.py:200 msgid "Has Start Date" msgstr "" -#: order/api.py:203 +#: order/api.py:208 msgid "Start Date Before" msgstr "" -#: order/api.py:207 +#: order/api.py:212 msgid "Start Date After" msgstr "" -#: order/api.py:211 +#: order/api.py:216 msgid "Has Target Date" msgstr "" -#: order/api.py:219 +#: order/api.py:224 msgid "Target Date Before" msgstr "" -#: order/api.py:223 +#: order/api.py:228 msgid "Target Date After" msgstr "" -#: order/api.py:274 +#: order/api.py:279 msgid "Has Pricing" msgstr "" -#: order/api.py:327 order/api.py:812 order/api.py:1490 +#: order/api.py:332 order/api.py:818 order/api.py:1495 msgid "Completed Before" msgstr "" -#: order/api.py:331 order/api.py:816 order/api.py:1494 +#: order/api.py:336 order/api.py:822 order/api.py:1499 msgid "Completed After" msgstr "" -#: order/api.py:337 order/api.py:341 +#: order/api.py:342 order/api.py:346 msgid "External Build Order" msgstr "" -#: order/api.py:526 order/api.py:914 order/api.py:1170 order/models.py:1922 -#: order/models.py:2049 order/models.py:2099 order/models.py:2279 -#: order/models.py:2477 order/models.py:2999 order/models.py:3065 +#: order/api.py:532 order/api.py:919 order/api.py:1175 order/models.py:1923 +#: order/models.py:2050 order/models.py:2100 order/models.py:2280 +#: order/models.py:2478 order/models.py:3000 order/models.py:3066 msgid "Order" msgstr "" -#: order/api.py:530 order/api.py:982 +#: order/api.py:536 order/api.py:987 msgid "Order Complete" msgstr "" -#: order/api.py:562 order/api.py:566 order/serializers.py:745 +#: order/api.py:568 order/api.py:572 order/serializers.py:756 msgid "Internal Part" msgstr "" -#: order/api.py:584 +#: order/api.py:590 msgid "Order Pending" msgstr "" -#: order/api.py:967 +#: order/api.py:972 msgid "Completed" msgstr "" -#: order/api.py:1223 +#: order/api.py:1228 msgid "Has Shipment" msgstr "" -#: order/api.py:1789 order/models.py:552 order/models.py:1923 -#: order/models.py:2050 +#: order/api.py:1794 order/models.py:553 order/models.py:1924 +#: order/models.py:2051 #: report/templates/report/inventree_purchase_order_report.html:14 #: stock/serializers.py:129 templates/email/overdue_purchase_order.html:15 msgid "Purchase Order" msgstr "" -#: order/api.py:1791 order/models.py:1251 order/models.py:2100 -#: order/models.py:2280 order/models.py:2478 +#: order/api.py:1796 order/models.py:1252 order/models.py:2101 +#: order/models.py:2281 order/models.py:2479 #: report/templates/report/inventree_build_order_report.html:135 #: report/templates/report/inventree_sales_order_report.html:14 #: report/templates/report/inventree_sales_order_shipment_report.html:15 @@ -4636,8 +4764,8 @@ msgstr "" msgid "Sales Order" msgstr "" -#: order/api.py:1793 order/models.py:2649 order/models.py:3000 -#: order/models.py:3066 +#: order/api.py:1798 order/models.py:2650 order/models.py:3001 +#: order/models.py:3067 #: report/templates/report/inventree_return_order_report.html:13 #: templates/email/overdue_return_order.html:15 msgid "Return Order" @@ -4653,722 +4781,722 @@ msgstr "" msgid "Total price for this order" msgstr "" -#: order/models.py:96 order/serializers.py:77 +#: order/models.py:96 order/serializers.py:78 msgid "Order Currency" msgstr "" -#: order/models.py:99 order/serializers.py:78 +#: order/models.py:99 order/serializers.py:79 msgid "Currency for this order (leave blank to use company default)" msgstr "" -#: order/models.py:324 +#: order/models.py:325 msgid "This order is locked and cannot be modified" msgstr "" -#: order/models.py:376 +#: order/models.py:377 msgid "Contact does not match selected company" msgstr "" -#: order/models.py:383 +#: order/models.py:384 msgid "Start date must be before target date" msgstr "" -#: order/models.py:390 +#: order/models.py:391 msgid "Address does not match selected company" msgstr "" -#: order/models.py:443 +#: order/models.py:444 msgid "Order description (optional)" msgstr "" -#: order/models.py:452 order/models.py:1806 +#: order/models.py:453 order/models.py:1807 msgid "Select project code for this order" msgstr "" -#: order/models.py:458 order/models.py:1787 order/models.py:2344 +#: order/models.py:459 order/models.py:1788 order/models.py:2345 msgid "Link to external page" msgstr "" -#: order/models.py:465 +#: order/models.py:466 msgid "Start date" msgstr "" -#: order/models.py:466 +#: order/models.py:467 msgid "Scheduled start date for this order" msgstr "" -#: order/models.py:472 order/models.py:1794 order/serializers.py:309 +#: order/models.py:473 order/models.py:1795 order/serializers.py:317 #: report/templates/report/inventree_build_order_report.html:125 msgid "Target Date" msgstr "" -#: order/models.py:474 +#: order/models.py:475 msgid "Expected date for order delivery. Order will be overdue after this date." msgstr "" -#: order/models.py:494 +#: order/models.py:495 msgid "Issue Date" msgstr "" -#: order/models.py:495 +#: order/models.py:496 msgid "Date order was issued" msgstr "" -#: order/models.py:503 +#: order/models.py:504 msgid "User or group responsible for this order" msgstr "" -#: order/models.py:514 +#: order/models.py:515 msgid "Point of contact for this order" msgstr "" -#: order/models.py:524 +#: order/models.py:525 msgid "Company address for this order" msgstr "" -#: order/models.py:615 order/models.py:1312 +#: order/models.py:616 order/models.py:1313 msgid "Order reference" msgstr "" -#: order/models.py:624 order/models.py:1336 order/models.py:2737 +#: order/models.py:625 order/models.py:1337 order/models.py:2738 #: stock/serializers.py:559 stock/serializers.py:988 users/models.py:542 msgid "Status" msgstr "" -#: order/models.py:625 +#: order/models.py:626 msgid "Purchase order status" msgstr "" -#: order/models.py:640 +#: order/models.py:641 msgid "Company from which the items are being ordered" msgstr "" -#: order/models.py:651 +#: order/models.py:652 msgid "Supplier Reference" msgstr "" -#: order/models.py:652 +#: order/models.py:653 msgid "Supplier order reference code" msgstr "" -#: order/models.py:661 +#: order/models.py:662 msgid "received by" msgstr "" -#: order/models.py:668 order/models.py:2752 +#: order/models.py:669 order/models.py:2753 msgid "Date order was completed" msgstr "" -#: order/models.py:677 order/models.py:1981 +#: order/models.py:678 order/models.py:1982 msgid "Destination" msgstr "" -#: order/models.py:678 order/models.py:1985 +#: order/models.py:679 order/models.py:1986 msgid "Destination for received items" msgstr "" -#: order/models.py:724 +#: order/models.py:725 msgid "Part supplier must match PO supplier" msgstr "" -#: order/models.py:994 +#: order/models.py:995 msgid "Line item does not match purchase order" msgstr "" -#: order/models.py:997 +#: order/models.py:998 msgid "Line item is missing a linked part" msgstr "" -#: order/models.py:1011 +#: order/models.py:1012 msgid "Quantity must be a positive number" msgstr "" -#: order/models.py:1323 order/models.py:2724 stock/models.py:1078 +#: order/models.py:1324 order/models.py:2725 stock/models.py:1078 #: stock/models.py:1079 stock/serializers.py:1322 #: templates/email/overdue_return_order.html:16 #: templates/email/overdue_sales_order.html:16 msgid "Customer" msgstr "" -#: order/models.py:1324 +#: order/models.py:1325 msgid "Company to which the items are being sold" msgstr "" -#: order/models.py:1337 +#: order/models.py:1338 msgid "Sales order status" msgstr "" -#: order/models.py:1348 order/models.py:2744 +#: order/models.py:1349 order/models.py:2745 msgid "Customer Reference " msgstr "" -#: order/models.py:1349 order/models.py:2745 +#: order/models.py:1350 order/models.py:2746 msgid "Customer order reference code" msgstr "" -#: order/models.py:1353 order/models.py:2296 +#: order/models.py:1354 order/models.py:2297 msgid "Shipment Date" msgstr "" -#: order/models.py:1362 +#: order/models.py:1363 msgid "shipped by" msgstr "" -#: order/models.py:1413 +#: order/models.py:1414 msgid "Order is already complete" msgstr "" -#: order/models.py:1416 +#: order/models.py:1417 msgid "Order is already cancelled" msgstr "" -#: order/models.py:1420 +#: order/models.py:1421 msgid "Only an open order can be marked as complete" msgstr "" -#: order/models.py:1424 +#: order/models.py:1425 msgid "Order cannot be completed as there are incomplete shipments" msgstr "" -#: order/models.py:1429 +#: order/models.py:1430 msgid "Order cannot be completed as there are incomplete allocations" msgstr "" -#: order/models.py:1438 +#: order/models.py:1439 msgid "Order cannot be completed as there are incomplete line items" msgstr "" -#: order/models.py:1733 order/models.py:1749 +#: order/models.py:1734 order/models.py:1750 msgid "The order is locked and cannot be modified" msgstr "" -#: order/models.py:1757 +#: order/models.py:1758 msgid "Item quantity" msgstr "" -#: order/models.py:1774 +#: order/models.py:1775 msgid "Line item reference" msgstr "" -#: order/models.py:1781 +#: order/models.py:1782 msgid "Line item notes" msgstr "" -#: order/models.py:1796 +#: order/models.py:1797 msgid "Target date for this line item (leave blank to use the target date from the order)" msgstr "" -#: order/models.py:1826 +#: order/models.py:1827 msgid "Line item description (optional)" msgstr "" -#: order/models.py:1833 +#: order/models.py:1834 msgid "Additional context for this line" msgstr "" -#: order/models.py:1843 +#: order/models.py:1844 msgid "Unit price" msgstr "" -#: order/models.py:1862 +#: order/models.py:1863 msgid "Purchase Order Line Item" msgstr "" -#: order/models.py:1889 +#: order/models.py:1890 msgid "Supplier part must match supplier" msgstr "" -#: order/models.py:1894 +#: order/models.py:1895 msgid "Build order must be marked as external" msgstr "" -#: order/models.py:1901 +#: order/models.py:1902 msgid "Build orders can only be linked to assembly parts" msgstr "" -#: order/models.py:1907 +#: order/models.py:1908 msgid "Build order part must match line item part" msgstr "" -#: order/models.py:1942 +#: order/models.py:1943 msgid "Supplier part" msgstr "" -#: order/models.py:1949 +#: order/models.py:1950 msgid "Received" msgstr "" -#: order/models.py:1950 +#: order/models.py:1951 msgid "Number of items received" msgstr "" -#: order/models.py:1958 stock/models.py:1201 stock/serializers.py:637 +#: order/models.py:1959 stock/models.py:1201 stock/serializers.py:637 msgid "Purchase Price" msgstr "" -#: order/models.py:1959 +#: order/models.py:1960 msgid "Unit purchase price" msgstr "" -#: order/models.py:1975 +#: order/models.py:1976 msgid "External Build Order to be fulfilled by this line item" msgstr "" -#: order/models.py:2038 +#: order/models.py:2039 msgid "Purchase Order Extra Line" msgstr "" -#: order/models.py:2067 +#: order/models.py:2068 msgid "Sales Order Line Item" msgstr "" -#: order/models.py:2092 +#: order/models.py:2093 msgid "Only salable parts can be assigned to a sales order" msgstr "" -#: order/models.py:2118 +#: order/models.py:2119 msgid "Sale Price" msgstr "" -#: order/models.py:2119 +#: order/models.py:2120 msgid "Unit sale price" msgstr "" -#: order/models.py:2128 order/status_codes.py:50 +#: order/models.py:2129 order/status_codes.py:50 msgid "Shipped" msgstr "" -#: order/models.py:2129 +#: order/models.py:2130 msgid "Shipped quantity" msgstr "" -#: order/models.py:2240 +#: order/models.py:2241 msgid "Sales Order Shipment" msgstr "" -#: order/models.py:2253 +#: order/models.py:2254 msgid "Shipment address must match the customer" msgstr "" -#: order/models.py:2289 +#: order/models.py:2290 msgid "Shipping address for this shipment" msgstr "" -#: order/models.py:2297 +#: order/models.py:2298 msgid "Date of shipment" msgstr "" -#: order/models.py:2303 +#: order/models.py:2304 msgid "Delivery Date" msgstr "" -#: order/models.py:2304 +#: order/models.py:2305 msgid "Date of delivery of shipment" msgstr "" -#: order/models.py:2312 +#: order/models.py:2313 msgid "Checked By" msgstr "" -#: order/models.py:2313 +#: order/models.py:2314 msgid "User who checked this shipment" msgstr "" -#: order/models.py:2320 order/models.py:2574 order/serializers.py:1711 -#: order/serializers.py:1835 +#: order/models.py:2321 order/models.py:2575 order/serializers.py:1725 +#: order/serializers.py:1849 #: report/templates/report/inventree_sales_order_shipment_report.html:14 msgid "Shipment" msgstr "" -#: order/models.py:2321 +#: order/models.py:2322 msgid "Shipment number" msgstr "" -#: order/models.py:2329 +#: order/models.py:2330 msgid "Tracking Number" msgstr "" -#: order/models.py:2330 +#: order/models.py:2331 msgid "Shipment tracking information" msgstr "" -#: order/models.py:2337 +#: order/models.py:2338 msgid "Invoice Number" msgstr "" -#: order/models.py:2338 +#: order/models.py:2339 msgid "Reference number for associated invoice" msgstr "" -#: order/models.py:2377 +#: order/models.py:2378 msgid "Shipment has already been sent" msgstr "" -#: order/models.py:2380 +#: order/models.py:2381 msgid "Shipment has no allocated stock items" msgstr "" -#: order/models.py:2387 +#: order/models.py:2388 msgid "Shipment must be checked before it can be completed" msgstr "" -#: order/models.py:2466 +#: order/models.py:2467 msgid "Sales Order Extra Line" msgstr "" -#: order/models.py:2495 +#: order/models.py:2496 msgid "Sales Order Allocation" msgstr "" -#: order/models.py:2518 order/models.py:2520 +#: order/models.py:2519 order/models.py:2521 msgid "Stock item has not been assigned" msgstr "" -#: order/models.py:2527 +#: order/models.py:2528 msgid "Cannot allocate stock item to a line with a different part" msgstr "" -#: order/models.py:2530 +#: order/models.py:2531 msgid "Cannot allocate stock to a line without a part" msgstr "" -#: order/models.py:2533 +#: order/models.py:2534 msgid "Allocation quantity cannot exceed stock quantity" msgstr "" -#: order/models.py:2552 order/serializers.py:1581 +#: order/models.py:2553 order/serializers.py:1595 msgid "Quantity must be 1 for serialized stock item" msgstr "" -#: order/models.py:2555 +#: order/models.py:2556 msgid "Sales order does not match shipment" msgstr "" -#: order/models.py:2556 plugin/base/barcodes/api.py:642 +#: order/models.py:2557 plugin/base/barcodes/api.py:642 msgid "Shipment does not match sales order" msgstr "" -#: order/models.py:2564 +#: order/models.py:2565 msgid "Line" msgstr "" -#: order/models.py:2575 +#: order/models.py:2576 msgid "Sales order shipment reference" msgstr "" -#: order/models.py:2588 order/models.py:3007 +#: order/models.py:2589 order/models.py:3008 msgid "Item" msgstr "" -#: order/models.py:2589 +#: order/models.py:2590 msgid "Select stock item to allocate" msgstr "" -#: order/models.py:2598 +#: order/models.py:2599 msgid "Enter stock allocation quantity" msgstr "" -#: order/models.py:2713 +#: order/models.py:2714 msgid "Return Order reference" msgstr "" -#: order/models.py:2725 +#: order/models.py:2726 msgid "Company from which items are being returned" msgstr "" -#: order/models.py:2738 +#: order/models.py:2739 msgid "Return order status" msgstr "" -#: order/models.py:2965 +#: order/models.py:2966 msgid "Return Order Line Item" msgstr "" -#: order/models.py:2978 +#: order/models.py:2979 msgid "Stock item must be specified" msgstr "" -#: order/models.py:2982 +#: order/models.py:2983 msgid "Return quantity exceeds stock quantity" msgstr "" -#: order/models.py:2987 +#: order/models.py:2988 msgid "Return quantity must be greater than zero" msgstr "" -#: order/models.py:2992 +#: order/models.py:2993 msgid "Invalid quantity for serialized stock item" msgstr "" -#: order/models.py:3008 +#: order/models.py:3009 msgid "Select item to return from customer" msgstr "" -#: order/models.py:3023 +#: order/models.py:3024 msgid "Received Date" msgstr "" -#: order/models.py:3024 +#: order/models.py:3025 msgid "The date this this return item was received" msgstr "" -#: order/models.py:3036 +#: order/models.py:3037 msgid "Outcome" msgstr "" -#: order/models.py:3037 +#: order/models.py:3038 msgid "Outcome for this line item" msgstr "" -#: order/models.py:3044 +#: order/models.py:3045 msgid "Cost associated with return or repair for this line item" msgstr "" -#: order/models.py:3054 +#: order/models.py:3055 msgid "Return Order Extra Line" msgstr "" -#: order/serializers.py:91 +#: order/serializers.py:92 msgid "Order ID" msgstr "" -#: order/serializers.py:91 +#: order/serializers.py:92 msgid "ID of the order to duplicate" msgstr "" -#: order/serializers.py:97 +#: order/serializers.py:98 msgid "Copy Lines" msgstr "" -#: order/serializers.py:98 +#: order/serializers.py:99 msgid "Copy line items from the original order" msgstr "" -#: order/serializers.py:104 +#: order/serializers.py:105 msgid "Copy Extra Lines" msgstr "" -#: order/serializers.py:105 +#: order/serializers.py:106 msgid "Copy extra line items from the original order" msgstr "" -#: order/serializers.py:120 +#: order/serializers.py:121 #: report/templates/report/inventree_purchase_order_report.html:29 #: report/templates/report/inventree_return_order_report.html:19 #: report/templates/report/inventree_sales_order_report.html:22 msgid "Line Items" msgstr "" -#: order/serializers.py:125 +#: order/serializers.py:126 msgid "Completed Lines" msgstr "" -#: order/serializers.py:192 +#: order/serializers.py:199 msgid "Duplicate Order" msgstr "" -#: order/serializers.py:193 +#: order/serializers.py:200 msgid "Specify options for duplicating this order" msgstr "" -#: order/serializers.py:270 +#: order/serializers.py:278 msgid "Invalid order ID" msgstr "" -#: order/serializers.py:466 +#: order/serializers.py:477 msgid "Supplier Name" msgstr "" -#: order/serializers.py:510 +#: order/serializers.py:521 msgid "Order cannot be cancelled" msgstr "" -#: order/serializers.py:525 order/serializers.py:1602 +#: order/serializers.py:536 order/serializers.py:1616 msgid "Allow order to be closed with incomplete line items" msgstr "" -#: order/serializers.py:535 order/serializers.py:1612 +#: order/serializers.py:546 order/serializers.py:1626 msgid "Order has incomplete line items" msgstr "" -#: order/serializers.py:665 +#: order/serializers.py:676 msgid "Order is not open" msgstr "" -#: order/serializers.py:692 +#: order/serializers.py:703 msgid "Auto Pricing" msgstr "" -#: order/serializers.py:694 +#: order/serializers.py:705 msgid "Automatically calculate purchase price based on supplier part data" msgstr "" -#: order/serializers.py:704 +#: order/serializers.py:715 msgid "Purchase price currency" msgstr "" -#: order/serializers.py:718 +#: order/serializers.py:729 msgid "Merge Items" msgstr "" -#: order/serializers.py:720 +#: order/serializers.py:731 msgid "Merge items with the same part, destination and target date into one line item" msgstr "" -#: order/serializers.py:727 part/serializers.py:560 +#: order/serializers.py:738 part/serializers.py:471 msgid "SKU" msgstr "" -#: order/serializers.py:741 part/models.py:1089 part/serializers.py:372 +#: order/serializers.py:752 part/models.py:1177 part/serializers.py:337 msgid "Internal Part Number" msgstr "" -#: order/serializers.py:749 +#: order/serializers.py:760 msgid "Internal Part Name" msgstr "" -#: order/serializers.py:765 +#: order/serializers.py:776 msgid "Supplier part must be specified" msgstr "" -#: order/serializers.py:768 +#: order/serializers.py:779 msgid "Purchase order must be specified" msgstr "" -#: order/serializers.py:776 +#: order/serializers.py:787 msgid "Supplier must match purchase order" msgstr "" -#: order/serializers.py:777 +#: order/serializers.py:788 msgid "Purchase order must match supplier" msgstr "" -#: order/serializers.py:825 order/serializers.py:1682 +#: order/serializers.py:836 order/serializers.py:1696 msgid "Line Item" msgstr "" -#: order/serializers.py:834 order/serializers.py:974 order/serializers.py:2043 +#: order/serializers.py:845 order/serializers.py:985 order/serializers.py:2060 msgid "Select destination location for received items" msgstr "" -#: order/serializers.py:850 +#: order/serializers.py:861 msgid "Enter batch code for incoming stock items" msgstr "" -#: order/serializers.py:857 stock/models.py:1160 +#: order/serializers.py:868 stock/models.py:1160 #: templates/email/stale_stock_notification.html:22 users/models.py:137 msgid "Expiry Date" msgstr "" -#: order/serializers.py:858 +#: order/serializers.py:869 msgid "Enter expiry date for incoming stock items" msgstr "" -#: order/serializers.py:866 +#: order/serializers.py:877 msgid "Enter serial numbers for incoming stock items" msgstr "" -#: order/serializers.py:876 +#: order/serializers.py:887 msgid "Override packaging information for incoming stock items" msgstr "" -#: order/serializers.py:884 order/serializers.py:2048 +#: order/serializers.py:895 order/serializers.py:2065 msgid "Additional note for incoming stock items" msgstr "" -#: order/serializers.py:891 +#: order/serializers.py:902 msgid "Barcode" msgstr "" -#: order/serializers.py:892 +#: order/serializers.py:903 msgid "Scanned barcode" msgstr "" -#: order/serializers.py:908 +#: order/serializers.py:919 msgid "Barcode is already in use" msgstr "" -#: order/serializers.py:991 order/serializers.py:2067 +#: order/serializers.py:1002 order/serializers.py:2084 msgid "Line items must be provided" msgstr "" -#: order/serializers.py:1010 +#: order/serializers.py:1021 msgid "Destination location must be specified" msgstr "" -#: order/serializers.py:1017 +#: order/serializers.py:1028 msgid "Supplied barcode values must be unique" msgstr "" -#: order/serializers.py:1121 +#: order/serializers.py:1135 msgid "Shipments" msgstr "" -#: order/serializers.py:1125 +#: order/serializers.py:1139 msgid "Completed Shipments" msgstr "" -#: order/serializers.py:1293 +#: order/serializers.py:1307 msgid "Sale price currency" msgstr "" -#: order/serializers.py:1339 +#: order/serializers.py:1353 msgid "Allocated Items" msgstr "" -#: order/serializers.py:1484 +#: order/serializers.py:1498 msgid "No shipment details provided" msgstr "" -#: order/serializers.py:1545 order/serializers.py:1691 +#: order/serializers.py:1559 order/serializers.py:1705 msgid "Line item is not associated with this order" msgstr "" -#: order/serializers.py:1564 +#: order/serializers.py:1578 msgid "Quantity must be positive" msgstr "" -#: order/serializers.py:1701 +#: order/serializers.py:1715 msgid "Enter serial numbers to allocate" msgstr "" -#: order/serializers.py:1723 order/serializers.py:1843 +#: order/serializers.py:1737 order/serializers.py:1857 msgid "Shipment has already been shipped" msgstr "" -#: order/serializers.py:1726 order/serializers.py:1846 +#: order/serializers.py:1740 order/serializers.py:1860 msgid "Shipment is not associated with this order" msgstr "" -#: order/serializers.py:1781 +#: order/serializers.py:1795 msgid "No match found for the following serial numbers" msgstr "" -#: order/serializers.py:1788 +#: order/serializers.py:1802 msgid "The following serial numbers are unavailable" msgstr "" -#: order/serializers.py:2009 +#: order/serializers.py:2026 msgid "Return order line item" msgstr "" -#: order/serializers.py:2019 +#: order/serializers.py:2036 msgid "Line item does not match return order" msgstr "" -#: order/serializers.py:2022 +#: order/serializers.py:2039 msgid "Line item has already been received" msgstr "" -#: order/serializers.py:2059 +#: order/serializers.py:2076 msgid "Items can only be received against orders which are in progress" msgstr "" -#: order/serializers.py:2124 +#: order/serializers.py:2141 msgid "Quantity to return" msgstr "" -#: order/serializers.py:2140 +#: order/serializers.py:2157 msgid "Line price currency" msgstr "" @@ -5431,1190 +5559,1109 @@ msgstr "" msgid "Return order {ro} is now overdue" msgstr "" -#: part/api.py:108 +#: part/api.py:103 msgid "Starred" msgstr "" -#: part/api.py:110 +#: part/api.py:105 msgid "Filter by starred categories" msgstr "" -#: part/api.py:127 stock/api.py:288 +#: part/api.py:122 stock/api.py:288 msgid "Depth" msgstr "" -#: part/api.py:127 +#: part/api.py:122 msgid "Filter by category depth" msgstr "" -#: part/api.py:145 stock/api.py:306 +#: part/api.py:140 stock/api.py:306 msgid "Top Level" msgstr "" -#: part/api.py:147 +#: part/api.py:142 msgid "Filter by top-level categories" msgstr "" -#: part/api.py:160 stock/api.py:321 +#: part/api.py:155 stock/api.py:321 msgid "Cascade" msgstr "" -#: part/api.py:162 +#: part/api.py:157 msgid "Include sub-categories in filtered results" msgstr "" -#: part/api.py:182 +#: part/api.py:177 msgid "Parent" msgstr "" -#: part/api.py:184 +#: part/api.py:179 msgid "Filter by parent category" msgstr "" -#: part/api.py:219 +#: part/api.py:214 msgid "Exclude sub-categories under the specified category" msgstr "" -#: part/api.py:445 +#: part/api.py:440 msgid "Has Results" msgstr "" -#: part/api.py:666 +#: part/api.py:661 msgid "Is Variant" msgstr "" -#: part/api.py:674 +#: part/api.py:669 msgid "Is Revision" msgstr "" -#: part/api.py:684 +#: part/api.py:679 msgid "Has Revisions" msgstr "" -#: part/api.py:865 +#: part/api.py:860 msgid "BOM Valid" msgstr "" -#: part/api.py:974 +#: part/api.py:969 msgid "Cascade Categories" msgstr "" -#: part/api.py:975 +#: part/api.py:970 msgid "If true, include items in child categories of the given category" msgstr "" -#: part/api.py:981 +#: part/api.py:976 msgid "Filter by numeric category ID or the literal 'null'" msgstr "" -#: part/api.py:1533 +#: part/api.py:1258 msgid "Assembly part is testable" msgstr "" -#: part/api.py:1542 +#: part/api.py:1267 msgid "Component part is testable" msgstr "" -#: part/api.py:1611 +#: part/api.py:1336 msgid "Uses" msgstr "" -#: part/models.py:96 part/models.py:4163 +#: part/models.py:93 part/models.py:436 #: templates/email/part_event_notification.html:16 msgid "Part Category" msgstr "" -#: part/models.py:97 users/ruleset.py:27 +#: part/models.py:94 users/ruleset.py:27 msgid "Part Categories" msgstr "" -#: part/models.py:115 part/models.py:1125 +#: part/models.py:112 part/models.py:1213 msgid "Default Location" msgstr "" -#: part/models.py:116 +#: part/models.py:113 msgid "Default location for parts in this category" msgstr "" -#: part/models.py:121 stock/models.py:216 +#: part/models.py:118 stock/models.py:216 msgid "Structural" msgstr "" -#: part/models.py:123 +#: part/models.py:120 msgid "Parts may not be directly assigned to a structural category, but may be assigned to child categories." msgstr "" -#: part/models.py:132 +#: part/models.py:129 msgid "Default keywords" msgstr "" -#: part/models.py:133 +#: part/models.py:130 msgid "Default keywords for parts in this category" msgstr "" -#: part/models.py:140 stock/models.py:97 stock/models.py:198 +#: part/models.py:137 stock/models.py:97 stock/models.py:198 msgid "Icon" msgstr "" -#: part/models.py:141 part/serializers.py:148 part/serializers.py:167 +#: part/models.py:138 part/serializers.py:147 part/serializers.py:166 #: stock/models.py:199 msgid "Icon (optional)" msgstr "" -#: part/models.py:185 +#: part/models.py:182 msgid "You cannot make this part category structural because some parts are already assigned to it!" msgstr "" -#: part/models.py:473 part/serializers.py:119 part/serializers.py:310 -#: users/ruleset.py:28 +#: part/models.py:392 +msgid "Part Category Parameter Template" +msgstr "" + +#: part/models.py:448 +msgid "Default Value" +msgstr "" + +#: part/models.py:449 +msgid "Default Parameter Value" +msgstr "" + +#: part/models.py:551 part/serializers.py:118 users/ruleset.py:28 msgid "Parts" msgstr "" -#: part/models.py:525 +#: part/models.py:597 +msgid "Cannot delete parameters of a locked part" +msgstr "" + +#: part/models.py:602 +msgid "Cannot modify parameters of a locked part" +msgstr "" + +#: part/models.py:613 msgid "Cannot delete this part as it is locked" msgstr "" -#: part/models.py:528 +#: part/models.py:616 msgid "Cannot delete this part as it is still active" msgstr "" -#: part/models.py:533 +#: part/models.py:621 msgid "Cannot delete this part as it is used in an assembly" msgstr "" -#: part/models.py:616 part/models.py:623 +#: part/models.py:704 part/models.py:711 #, python-brace-format msgid "Part '{self}' cannot be used in BOM for '{parent}' (recursive)" msgstr "" -#: part/models.py:635 +#: part/models.py:723 #, python-brace-format msgid "Part '{parent}' is used in BOM for '{self}' (recursive)" msgstr "" -#: part/models.py:702 +#: part/models.py:790 #, python-brace-format msgid "IPN must match regex pattern {pattern}" msgstr "" -#: part/models.py:710 +#: part/models.py:798 msgid "Part cannot be a revision of itself" msgstr "" -#: part/models.py:717 +#: part/models.py:805 msgid "Cannot make a revision of a part which is already a revision" msgstr "" -#: part/models.py:724 +#: part/models.py:812 msgid "Revision code must be specified" msgstr "" -#: part/models.py:731 +#: part/models.py:819 msgid "Revisions are only allowed for assembly parts" msgstr "" -#: part/models.py:738 +#: part/models.py:826 msgid "Cannot make a revision of a template part" msgstr "" -#: part/models.py:744 +#: part/models.py:832 msgid "Parent part must point to the same template" msgstr "" -#: part/models.py:841 +#: part/models.py:929 msgid "Stock item with this serial number already exists" msgstr "" -#: part/models.py:971 +#: part/models.py:1059 msgid "Duplicate IPN not allowed in part settings" msgstr "" -#: part/models.py:983 +#: part/models.py:1071 msgid "Duplicate part revision already exists." msgstr "" -#: part/models.py:992 +#: part/models.py:1080 msgid "Part with this Name, IPN and Revision already exists." msgstr "" -#: part/models.py:1007 +#: part/models.py:1095 msgid "Parts cannot be assigned to structural part categories!" msgstr "" -#: part/models.py:1039 +#: part/models.py:1127 msgid "Part name" msgstr "" -#: part/models.py:1044 +#: part/models.py:1132 msgid "Is Template" msgstr "" -#: part/models.py:1045 +#: part/models.py:1133 msgid "Is this part a template part?" msgstr "" -#: part/models.py:1055 +#: part/models.py:1143 msgid "Is this part a variant of another part?" msgstr "" -#: part/models.py:1056 +#: part/models.py:1144 msgid "Variant Of" msgstr "" -#: part/models.py:1063 +#: part/models.py:1151 msgid "Part description (optional)" msgstr "" -#: part/models.py:1070 +#: part/models.py:1158 msgid "Keywords" msgstr "" -#: part/models.py:1071 +#: part/models.py:1159 msgid "Part keywords to improve visibility in search results" msgstr "" -#: part/models.py:1081 +#: part/models.py:1169 msgid "Part category" msgstr "" -#: part/models.py:1088 part/serializers.py:929 +#: part/models.py:1176 part/serializers.py:814 #: report/templates/report/inventree_stock_location_report.html:103 msgid "IPN" msgstr "" -#: part/models.py:1096 +#: part/models.py:1184 msgid "Part revision or version number" msgstr "" -#: part/models.py:1097 report/models.py:228 +#: part/models.py:1185 report/models.py:228 msgid "Revision" msgstr "" -#: part/models.py:1106 +#: part/models.py:1194 msgid "Is this part a revision of another part?" msgstr "" -#: part/models.py:1107 +#: part/models.py:1195 msgid "Revision Of" msgstr "" -#: part/models.py:1123 +#: part/models.py:1211 msgid "Where is this item normally stored?" msgstr "" -#: part/models.py:1169 +#: part/models.py:1257 msgid "Default Supplier" msgstr "" -#: part/models.py:1170 +#: part/models.py:1258 msgid "Default supplier part" msgstr "" -#: part/models.py:1177 +#: part/models.py:1265 msgid "Default Expiry" msgstr "" -#: part/models.py:1178 +#: part/models.py:1266 msgid "Expiry time (in days) for stock items of this part" msgstr "" -#: part/models.py:1186 part/serializers.py:1003 +#: part/models.py:1274 part/serializers.py:888 msgid "Minimum Stock" msgstr "" -#: part/models.py:1187 +#: part/models.py:1275 msgid "Minimum allowed stock level" msgstr "" -#: part/models.py:1196 +#: part/models.py:1284 msgid "Units of measure for this part" msgstr "" -#: part/models.py:1203 +#: part/models.py:1291 msgid "Can this part be built from other parts?" msgstr "" -#: part/models.py:1209 +#: part/models.py:1297 msgid "Can this part be used to build other parts?" msgstr "" -#: part/models.py:1215 +#: part/models.py:1303 msgid "Does this part have tracking for unique items?" msgstr "" -#: part/models.py:1221 +#: part/models.py:1309 msgid "Can this part have test results recorded against it?" msgstr "" -#: part/models.py:1227 +#: part/models.py:1315 msgid "Can this part be purchased from external suppliers?" msgstr "" -#: part/models.py:1233 +#: part/models.py:1321 msgid "Can this part be sold to customers?" msgstr "" -#: part/models.py:1237 +#: part/models.py:1325 msgid "Is this part active?" msgstr "" -#: part/models.py:1243 +#: part/models.py:1331 msgid "Locked parts cannot be edited" msgstr "" -#: part/models.py:1249 +#: part/models.py:1337 msgid "Is this a virtual part, such as a software product or license?" msgstr "" -#: part/models.py:1254 +#: part/models.py:1342 msgid "BOM Validated" msgstr "" -#: part/models.py:1255 +#: part/models.py:1343 msgid "Is the BOM for this part valid?" msgstr "" -#: part/models.py:1261 +#: part/models.py:1349 msgid "BOM checksum" msgstr "" -#: part/models.py:1262 +#: part/models.py:1350 msgid "Stored BOM checksum" msgstr "" -#: part/models.py:1270 +#: part/models.py:1358 msgid "BOM checked by" msgstr "" -#: part/models.py:1275 +#: part/models.py:1363 msgid "BOM checked date" msgstr "" -#: part/models.py:1291 +#: part/models.py:1379 msgid "Creation User" msgstr "" -#: part/models.py:1301 +#: part/models.py:1389 msgid "Owner responsible for this part" msgstr "" -#: part/models.py:2258 +#: part/models.py:2346 msgid "Sell multiple" msgstr "" -#: part/models.py:3286 +#: part/models.py:3350 msgid "Currency used to cache pricing calculations" msgstr "" -#: part/models.py:3302 +#: part/models.py:3366 msgid "Minimum BOM Cost" msgstr "" -#: part/models.py:3303 +#: part/models.py:3367 msgid "Minimum cost of component parts" msgstr "" -#: part/models.py:3309 +#: part/models.py:3373 msgid "Maximum BOM Cost" msgstr "" -#: part/models.py:3310 +#: part/models.py:3374 msgid "Maximum cost of component parts" msgstr "" -#: part/models.py:3316 +#: part/models.py:3380 msgid "Minimum Purchase Cost" msgstr "" -#: part/models.py:3317 +#: part/models.py:3381 msgid "Minimum historical purchase cost" msgstr "" -#: part/models.py:3323 +#: part/models.py:3387 msgid "Maximum Purchase Cost" msgstr "" -#: part/models.py:3324 +#: part/models.py:3388 msgid "Maximum historical purchase cost" msgstr "" -#: part/models.py:3330 +#: part/models.py:3394 msgid "Minimum Internal Price" msgstr "" -#: part/models.py:3331 +#: part/models.py:3395 msgid "Minimum cost based on internal price breaks" msgstr "" -#: part/models.py:3337 +#: part/models.py:3401 msgid "Maximum Internal Price" msgstr "" -#: part/models.py:3338 +#: part/models.py:3402 msgid "Maximum cost based on internal price breaks" msgstr "" -#: part/models.py:3344 +#: part/models.py:3408 msgid "Minimum Supplier Price" msgstr "" -#: part/models.py:3345 +#: part/models.py:3409 msgid "Minimum price of part from external suppliers" msgstr "" -#: part/models.py:3351 +#: part/models.py:3415 msgid "Maximum Supplier Price" msgstr "" -#: part/models.py:3352 +#: part/models.py:3416 msgid "Maximum price of part from external suppliers" msgstr "" -#: part/models.py:3358 +#: part/models.py:3422 msgid "Minimum Variant Cost" msgstr "" -#: part/models.py:3359 +#: part/models.py:3423 msgid "Calculated minimum cost of variant parts" msgstr "" -#: part/models.py:3365 +#: part/models.py:3429 msgid "Maximum Variant Cost" msgstr "" -#: part/models.py:3366 +#: part/models.py:3430 msgid "Calculated maximum cost of variant parts" msgstr "" -#: part/models.py:3372 part/models.py:3386 +#: part/models.py:3436 part/models.py:3450 msgid "Minimum Cost" msgstr "" -#: part/models.py:3373 +#: part/models.py:3437 msgid "Override minimum cost" msgstr "" -#: part/models.py:3379 part/models.py:3393 +#: part/models.py:3443 part/models.py:3457 msgid "Maximum Cost" msgstr "" -#: part/models.py:3380 +#: part/models.py:3444 msgid "Override maximum cost" msgstr "" -#: part/models.py:3387 +#: part/models.py:3451 msgid "Calculated overall minimum cost" msgstr "" -#: part/models.py:3394 +#: part/models.py:3458 msgid "Calculated overall maximum cost" msgstr "" -#: part/models.py:3400 +#: part/models.py:3464 msgid "Minimum Sale Price" msgstr "" -#: part/models.py:3401 +#: part/models.py:3465 msgid "Minimum sale price based on price breaks" msgstr "" -#: part/models.py:3407 +#: part/models.py:3471 msgid "Maximum Sale Price" msgstr "" -#: part/models.py:3408 +#: part/models.py:3472 msgid "Maximum sale price based on price breaks" msgstr "" -#: part/models.py:3414 +#: part/models.py:3478 msgid "Minimum Sale Cost" msgstr "" -#: part/models.py:3415 +#: part/models.py:3479 msgid "Minimum historical sale price" msgstr "" -#: part/models.py:3421 +#: part/models.py:3485 msgid "Maximum Sale Cost" msgstr "" -#: part/models.py:3422 +#: part/models.py:3486 msgid "Maximum historical sale price" msgstr "" -#: part/models.py:3440 +#: part/models.py:3504 msgid "Part for stocktake" msgstr "" -#: part/models.py:3445 +#: part/models.py:3509 msgid "Item Count" msgstr "" -#: part/models.py:3446 +#: part/models.py:3510 msgid "Number of individual stock entries at time of stocktake" msgstr "" -#: part/models.py:3454 +#: part/models.py:3518 msgid "Total available stock at time of stocktake" msgstr "" -#: part/models.py:3458 report/templates/report/inventree_test_report.html:106 +#: part/models.py:3522 report/templates/report/inventree_test_report.html:106 msgid "Date" msgstr "" -#: part/models.py:3459 +#: part/models.py:3523 msgid "Date stocktake was performed" msgstr "" -#: part/models.py:3466 +#: part/models.py:3530 msgid "Minimum Stock Cost" msgstr "" -#: part/models.py:3467 +#: part/models.py:3531 msgid "Estimated minimum cost of stock on hand" msgstr "" -#: part/models.py:3473 +#: part/models.py:3537 msgid "Maximum Stock Cost" msgstr "" -#: part/models.py:3474 +#: part/models.py:3538 msgid "Estimated maximum cost of stock on hand" msgstr "" -#: part/models.py:3484 +#: part/models.py:3548 msgid "Part Sale Price Break" msgstr "" -#: part/models.py:3596 +#: part/models.py:3660 msgid "Part Test Template" msgstr "" -#: part/models.py:3622 +#: part/models.py:3686 msgid "Invalid template name - must include at least one alphanumeric character" msgstr "" -#: part/models.py:3643 part/models.py:3816 -msgid "Choices must be unique" -msgstr "" - -#: part/models.py:3654 +#: part/models.py:3718 msgid "Test templates can only be created for testable parts" msgstr "" -#: part/models.py:3668 +#: part/models.py:3732 msgid "Test template with the same key already exists for part" msgstr "" -#: part/models.py:3685 +#: part/models.py:3749 msgid "Test Name" msgstr "" -#: part/models.py:3686 +#: part/models.py:3750 msgid "Enter a name for the test" msgstr "" -#: part/models.py:3692 +#: part/models.py:3756 msgid "Test Key" msgstr "" -#: part/models.py:3693 +#: part/models.py:3757 msgid "Simplified key for the test" msgstr "" -#: part/models.py:3700 +#: part/models.py:3764 msgid "Test Description" msgstr "" -#: part/models.py:3701 +#: part/models.py:3765 msgid "Enter description for this test" msgstr "" -#: part/models.py:3705 report/models.py:287 -msgid "Enabled" -msgstr "" - -#: part/models.py:3705 +#: part/models.py:3769 msgid "Is this test enabled?" msgstr "" -#: part/models.py:3710 +#: part/models.py:3774 msgid "Required" msgstr "" -#: part/models.py:3711 +#: part/models.py:3775 msgid "Is this test required to pass?" msgstr "" -#: part/models.py:3716 +#: part/models.py:3780 msgid "Requires Value" msgstr "" -#: part/models.py:3717 +#: part/models.py:3781 msgid "Does this test require a value when adding a test result?" msgstr "" -#: part/models.py:3722 +#: part/models.py:3786 msgid "Requires Attachment" msgstr "" -#: part/models.py:3724 +#: part/models.py:3788 msgid "Does this test require a file attachment when adding a test result?" msgstr "" -#: part/models.py:3730 part/models.py:3878 -msgid "Choices" -msgstr "" - -#: part/models.py:3731 +#: part/models.py:3795 msgid "Valid choices for this test (comma-separated)" msgstr "" -#: part/models.py:3764 -msgid "Part Parameter Template" -msgstr "" - -#: part/models.py:3791 -msgid "Checkbox parameters cannot have units" -msgstr "" - -#: part/models.py:3796 -msgid "Checkbox parameters cannot have choices" -msgstr "" - -#: part/models.py:3833 -msgid "Parameter template name must be unique" -msgstr "" - -#: part/models.py:3851 -msgid "Parameter Name" -msgstr "" - -#: part/models.py:3858 -msgid "Physical units for this parameter" -msgstr "" - -#: part/models.py:3866 -msgid "Parameter description" -msgstr "" - -#: part/models.py:3872 -msgid "Checkbox" -msgstr "" - -#: part/models.py:3873 -msgid "Is this parameter a checkbox?" -msgstr "" - -#: part/models.py:3879 -msgid "Valid choices for this parameter (comma-separated)" -msgstr "" - -#: part/models.py:3890 -msgid "Selection list for this parameter" -msgstr "" - -#: part/models.py:3932 -msgid "Part Parameter" -msgstr "" - -#: part/models.py:3958 -msgid "Parameter cannot be modified - part is locked" -msgstr "" - -#: part/models.py:3996 -msgid "Invalid choice for parameter value" -msgstr "" - -#: part/models.py:4047 -msgid "Parent Part" -msgstr "" - -#: part/models.py:4055 part/models.py:4170 part/models.py:4171 -msgid "Parameter Template" -msgstr "" - -#: part/models.py:4061 -msgid "Parameter Value" -msgstr "" - -#: part/models.py:4071 stock/serializers.py:718 -msgid "Optional note field" -msgstr "" - -#: part/models.py:4118 -msgid "Part Category Parameter Template" -msgstr "" - -#: part/models.py:4177 -msgid "Default Value" -msgstr "" - -#: part/models.py:4178 -msgid "Default Parameter Value" -msgstr "" - -#: part/models.py:4352 +#: part/models.py:3977 msgid "BOM item cannot be modified - assembly is locked" msgstr "" -#: part/models.py:4359 +#: part/models.py:3984 msgid "BOM item cannot be modified - variant assembly is locked" msgstr "" -#: part/models.py:4369 +#: part/models.py:3994 msgid "Select parent part" msgstr "" -#: part/models.py:4379 +#: part/models.py:4004 msgid "Sub part" msgstr "" -#: part/models.py:4380 +#: part/models.py:4005 msgid "Select part to be used in BOM" msgstr "" -#: part/models.py:4391 +#: part/models.py:4016 msgid "BOM quantity for this BOM item" msgstr "" -#: part/models.py:4397 +#: part/models.py:4022 msgid "This BOM item is optional" msgstr "" -#: part/models.py:4403 +#: part/models.py:4028 msgid "This BOM item is consumable (it is not tracked in build orders)" msgstr "" -#: part/models.py:4411 +#: part/models.py:4036 msgid "Setup Quantity" msgstr "" -#: part/models.py:4412 +#: part/models.py:4037 msgid "Extra required quantity for a build, to account for setup losses" msgstr "" -#: part/models.py:4420 +#: part/models.py:4045 msgid "Attrition" msgstr "" -#: part/models.py:4422 +#: part/models.py:4047 msgid "Estimated attrition for a build, expressed as a percentage (0-100)" msgstr "" -#: part/models.py:4433 +#: part/models.py:4058 msgid "Rounding Multiple" msgstr "" -#: part/models.py:4435 +#: part/models.py:4060 msgid "Round up required production quantity to nearest multiple of this value" msgstr "" -#: part/models.py:4443 +#: part/models.py:4068 msgid "BOM item reference" msgstr "" -#: part/models.py:4451 +#: part/models.py:4076 msgid "BOM item notes" msgstr "" -#: part/models.py:4457 +#: part/models.py:4082 msgid "Checksum" msgstr "" -#: part/models.py:4458 +#: part/models.py:4083 msgid "BOM line checksum" msgstr "" -#: part/models.py:4463 +#: part/models.py:4088 msgid "Validated" msgstr "" -#: part/models.py:4464 +#: part/models.py:4089 msgid "This BOM item has been validated" msgstr "" -#: part/models.py:4469 +#: part/models.py:4094 msgid "Gets inherited" msgstr "" -#: part/models.py:4470 +#: part/models.py:4095 msgid "This BOM item is inherited by BOMs for variant parts" msgstr "" -#: part/models.py:4476 +#: part/models.py:4101 msgid "Stock items for variant parts can be used for this BOM item" msgstr "" -#: part/models.py:4583 stock/models.py:925 +#: part/models.py:4208 stock/models.py:925 msgid "Quantity must be integer value for trackable parts" msgstr "" -#: part/models.py:4593 part/models.py:4595 +#: part/models.py:4218 part/models.py:4220 msgid "Sub part must be specified" msgstr "" -#: part/models.py:4746 +#: part/models.py:4371 msgid "BOM Item Substitute" msgstr "" -#: part/models.py:4767 +#: part/models.py:4392 msgid "Substitute part cannot be the same as the master part" msgstr "" -#: part/models.py:4780 +#: part/models.py:4405 msgid "Parent BOM item" msgstr "" -#: part/models.py:4788 +#: part/models.py:4413 msgid "Substitute part" msgstr "" -#: part/models.py:4804 +#: part/models.py:4429 msgid "Part 1" msgstr "" -#: part/models.py:4812 +#: part/models.py:4437 msgid "Part 2" msgstr "" -#: part/models.py:4813 +#: part/models.py:4438 msgid "Select Related Part" msgstr "" -#: part/models.py:4820 +#: part/models.py:4445 msgid "Note for this relationship" msgstr "" -#: part/models.py:4839 +#: part/models.py:4464 msgid "Part relationship cannot be created between a part and itself" msgstr "" -#: part/models.py:4844 +#: part/models.py:4469 msgid "Duplicate relationship already exists" msgstr "" -#: part/serializers.py:114 +#: part/serializers.py:113 msgid "Parent Category" msgstr "" -#: part/serializers.py:115 +#: part/serializers.py:114 msgid "Parent part category" msgstr "" -#: part/serializers.py:123 part/serializers.py:164 +#: part/serializers.py:122 part/serializers.py:163 msgid "Subcategories" msgstr "" -#: part/serializers.py:203 +#: part/serializers.py:202 msgid "Results" msgstr "" -#: part/serializers.py:204 +#: part/serializers.py:203 msgid "Number of results recorded against this template" msgstr "" -#: part/serializers.py:235 part/serializers.py:253 stock/serializers.py:643 +#: part/serializers.py:234 part/serializers.py:252 stock/serializers.py:643 msgid "Purchase currency of this stock item" msgstr "" -#: part/serializers.py:280 +#: part/serializers.py:279 msgid "File is not an image" msgstr "" -#: part/serializers.py:311 -msgid "Number of parts using this template" -msgstr "" - -#: part/serializers.py:471 +#: part/serializers.py:382 msgid "Original Part" msgstr "" -#: part/serializers.py:472 +#: part/serializers.py:383 msgid "Select original part to duplicate" msgstr "" -#: part/serializers.py:477 +#: part/serializers.py:388 msgid "Copy Image" msgstr "" -#: part/serializers.py:478 +#: part/serializers.py:389 msgid "Copy image from original part" msgstr "" -#: part/serializers.py:484 +#: part/serializers.py:395 msgid "Copy BOM" msgstr "" -#: part/serializers.py:485 +#: part/serializers.py:396 msgid "Copy bill of materials from original part" msgstr "" -#: part/serializers.py:491 +#: part/serializers.py:402 msgid "Copy Parameters" msgstr "" -#: part/serializers.py:492 +#: part/serializers.py:403 msgid "Copy parameter data from original part" msgstr "" -#: part/serializers.py:498 +#: part/serializers.py:409 msgid "Copy Notes" msgstr "" -#: part/serializers.py:499 +#: part/serializers.py:410 msgid "Copy notes from original part" msgstr "" -#: part/serializers.py:505 +#: part/serializers.py:416 msgid "Copy Tests" msgstr "" -#: part/serializers.py:506 +#: part/serializers.py:417 msgid "Copy test templates from original part" msgstr "" -#: part/serializers.py:524 +#: part/serializers.py:435 msgid "Initial Stock Quantity" msgstr "" -#: part/serializers.py:526 +#: part/serializers.py:437 msgid "Specify initial stock quantity for this Part. If quantity is zero, no stock is added." msgstr "" -#: part/serializers.py:533 +#: part/serializers.py:444 msgid "Initial Stock Location" msgstr "" -#: part/serializers.py:534 +#: part/serializers.py:445 msgid "Specify initial stock location for this Part" msgstr "" -#: part/serializers.py:551 +#: part/serializers.py:462 msgid "Select supplier (or leave blank to skip)" msgstr "" -#: part/serializers.py:567 +#: part/serializers.py:478 msgid "Select manufacturer (or leave blank to skip)" msgstr "" -#: part/serializers.py:577 +#: part/serializers.py:488 msgid "Manufacturer part number" msgstr "" -#: part/serializers.py:584 +#: part/serializers.py:495 msgid "Selected company is not a valid supplier" msgstr "" -#: part/serializers.py:593 +#: part/serializers.py:504 msgid "Selected company is not a valid manufacturer" msgstr "" -#: part/serializers.py:604 +#: part/serializers.py:515 msgid "Manufacturer part matching this MPN already exists" msgstr "" -#: part/serializers.py:611 +#: part/serializers.py:522 msgid "Supplier part matching this SKU already exists" msgstr "" -#: part/serializers.py:914 +#: part/serializers.py:799 msgid "Category Name" msgstr "" -#: part/serializers.py:943 +#: part/serializers.py:828 msgid "Building" msgstr "" -#: part/serializers.py:944 +#: part/serializers.py:829 msgid "Quantity of this part currently being in production" msgstr "" -#: part/serializers.py:951 +#: part/serializers.py:836 msgid "Outstanding quantity of this part scheduled to be built" msgstr "" -#: part/serializers.py:971 stock/serializers.py:1019 stock/serializers.py:1189 +#: part/serializers.py:856 stock/serializers.py:1019 stock/serializers.py:1189 #: users/ruleset.py:30 msgid "Stock Items" msgstr "" -#: part/serializers.py:975 +#: part/serializers.py:860 msgid "Revisions" msgstr "" -#: part/serializers.py:979 +#: part/serializers.py:864 msgid "Suppliers" msgstr "" -#: part/serializers.py:983 part/serializers.py:1297 +#: part/serializers.py:868 part/serializers.py:1162 #: templates/email/low_stock_notification.html:16 #: templates/email/part_event_notification.html:17 msgid "Total Stock" msgstr "" -#: part/serializers.py:991 +#: part/serializers.py:876 msgid "Unallocated Stock" msgstr "" -#: part/serializers.py:999 +#: part/serializers.py:884 msgid "Variant Stock" msgstr "" -#: part/serializers.py:1054 +#: part/serializers.py:943 msgid "Duplicate Part" msgstr "" -#: part/serializers.py:1055 +#: part/serializers.py:944 msgid "Copy initial data from another Part" msgstr "" -#: part/serializers.py:1061 +#: part/serializers.py:950 msgid "Initial Stock" msgstr "" -#: part/serializers.py:1062 +#: part/serializers.py:951 msgid "Create Part with initial stock quantity" msgstr "" -#: part/serializers.py:1068 +#: part/serializers.py:957 msgid "Supplier Information" msgstr "" -#: part/serializers.py:1069 +#: part/serializers.py:958 msgid "Add initial supplier information for this part" msgstr "" -#: part/serializers.py:1077 +#: part/serializers.py:966 msgid "Copy Category Parameters" msgstr "" -#: part/serializers.py:1078 +#: part/serializers.py:967 msgid "Copy parameter templates from selected part category" msgstr "" -#: part/serializers.py:1083 +#: part/serializers.py:972 msgid "Existing Image" msgstr "" -#: part/serializers.py:1084 +#: part/serializers.py:973 msgid "Filename of an existing part image" msgstr "" -#: part/serializers.py:1101 +#: part/serializers.py:990 msgid "Image file does not exist" msgstr "" -#: part/serializers.py:1269 +#: part/serializers.py:1134 msgid "Validate entire Bill of Materials" msgstr "" -#: part/serializers.py:1303 part/serializers.py:1769 +#: part/serializers.py:1168 part/serializers.py:1634 msgid "Can Build" msgstr "" -#: part/serializers.py:1320 +#: part/serializers.py:1185 msgid "Required for Build Orders" msgstr "" -#: part/serializers.py:1325 +#: part/serializers.py:1190 msgid "Allocated to Build Orders" msgstr "" -#: part/serializers.py:1332 +#: part/serializers.py:1197 msgid "Required for Sales Orders" msgstr "" -#: part/serializers.py:1336 +#: part/serializers.py:1201 msgid "Allocated to Sales Orders" msgstr "" -#: part/serializers.py:1475 +#: part/serializers.py:1340 msgid "Minimum Price" msgstr "" -#: part/serializers.py:1476 +#: part/serializers.py:1341 msgid "Override calculated value for minimum price" msgstr "" -#: part/serializers.py:1483 +#: part/serializers.py:1348 msgid "Minimum price currency" msgstr "" -#: part/serializers.py:1490 +#: part/serializers.py:1355 msgid "Maximum Price" msgstr "" -#: part/serializers.py:1491 +#: part/serializers.py:1356 msgid "Override calculated value for maximum price" msgstr "" -#: part/serializers.py:1498 +#: part/serializers.py:1363 msgid "Maximum price currency" msgstr "" -#: part/serializers.py:1527 +#: part/serializers.py:1392 msgid "Update" msgstr "" -#: part/serializers.py:1528 +#: part/serializers.py:1393 msgid "Update pricing for this part" msgstr "" -#: part/serializers.py:1551 +#: part/serializers.py:1416 #, python-brace-format msgid "Could not convert from provided currencies to {default_currency}" msgstr "" -#: part/serializers.py:1558 +#: part/serializers.py:1423 msgid "Minimum price must not be greater than maximum price" msgstr "" -#: part/serializers.py:1561 +#: part/serializers.py:1426 msgid "Maximum price must not be less than minimum price" msgstr "" -#: part/serializers.py:1715 +#: part/serializers.py:1580 msgid "Select the parent assembly" msgstr "" -#: part/serializers.py:1735 +#: part/serializers.py:1600 msgid "Select the component part" msgstr "" -#: part/serializers.py:1929 +#: part/serializers.py:1802 msgid "Select part to copy BOM from" msgstr "" -#: part/serializers.py:1937 +#: part/serializers.py:1810 msgid "Remove Existing Data" msgstr "" -#: part/serializers.py:1938 +#: part/serializers.py:1811 msgid "Remove existing BOM items before copying" msgstr "" -#: part/serializers.py:1943 +#: part/serializers.py:1816 msgid "Include Inherited" msgstr "" -#: part/serializers.py:1944 +#: part/serializers.py:1817 msgid "Include BOM items which are inherited from templated parts" msgstr "" -#: part/serializers.py:1949 +#: part/serializers.py:1822 msgid "Skip Invalid Rows" msgstr "" -#: part/serializers.py:1950 +#: part/serializers.py:1823 msgid "Enable this option to skip invalid rows" msgstr "" -#: part/serializers.py:1955 +#: part/serializers.py:1828 msgid "Copy Substitute Parts" msgstr "" -#: part/serializers.py:1956 +#: part/serializers.py:1829 msgid "Copy substitute parts when duplicate BOM items" msgstr "" @@ -6927,7 +6974,7 @@ msgstr "" #: plugin/builtin/events/auto_issue_orders.py:19 #: plugin/builtin/exporter/bom_exporter.py:73 #: plugin/builtin/exporter/inventree_exporter.py:17 -#: plugin/builtin/exporter/part_parameter_exporter.py:36 +#: plugin/builtin/exporter/parameter_exporter.py:32 #: plugin/builtin/exporter/stocktake_exporter.py:47 #: plugin/builtin/integration/core_notifications.py:25 #: plugin/builtin/integration/core_notifications.py:69 @@ -7041,23 +7088,19 @@ msgid "Include total quantity of each part in the BOM" msgstr "" #: plugin/builtin/exporter/bom_exporter.py:35 -#: plugin/builtin/exporter/part_parameter_exporter.py:17 msgid "Stock Data" msgstr "" #: plugin/builtin/exporter/bom_exporter.py:35 -#: plugin/builtin/exporter/part_parameter_exporter.py:17 msgid "Include part stock data" msgstr "" #: plugin/builtin/exporter/bom_exporter.py:39 -#: plugin/builtin/exporter/part_parameter_exporter.py:21 #: plugin/builtin/exporter/stocktake_exporter.py:20 msgid "Pricing Data" msgstr "" #: plugin/builtin/exporter/bom_exporter.py:39 -#: plugin/builtin/exporter/part_parameter_exporter.py:21 #: plugin/builtin/exporter/stocktake_exporter.py:20 msgid "Include part pricing data" msgstr "" @@ -7144,12 +7187,20 @@ msgstr "" msgid "Provides support for exporting data from InvenTree" msgstr "" -#: plugin/builtin/exporter/part_parameter_exporter.py:33 -msgid "Part Parameter Exporter" +#: plugin/builtin/exporter/parameter_exporter.py:16 +msgid "Exclude Inactive" msgstr "" -#: plugin/builtin/exporter/part_parameter_exporter.py:34 -msgid "Exporter for part parameter data" +#: plugin/builtin/exporter/parameter_exporter.py:17 +msgid "Exclude parameters which are inactive" +msgstr "" + +#: plugin/builtin/exporter/parameter_exporter.py:29 +msgid "Parameter Exporter" +msgstr "" + +#: plugin/builtin/exporter/parameter_exporter.py:30 +msgid "Exporter for model parameter data" msgstr "" #: plugin/builtin/exporter/stocktake_exporter.py:25 @@ -8079,19 +8130,19 @@ msgstr "" msgid "No result" msgstr "" -#: report/templatetags/report.py:167 +#: report/templatetags/report.py:169 msgid "Asset file does not exist" msgstr "" -#: report/templatetags/report.py:224 report/templatetags/report.py:300 +#: report/templatetags/report.py:226 report/templatetags/report.py:302 msgid "Image file not found" msgstr "" -#: report/templatetags/report.py:325 +#: report/templatetags/report.py:327 msgid "part_image tag requires a Part instance" msgstr "" -#: report/templatetags/report.py:362 +#: report/templatetags/report.py:383 msgid "company_image tag requires a Company instance" msgstr "" @@ -8455,115 +8506,119 @@ msgstr "" msgid "Quantity does not match serial numbers" msgstr "" -#: stock/models.py:2012 stock/models.py:2917 +#: stock/models.py:1912 +msgid "Cannot assign stock to structural location" +msgstr "" + +#: stock/models.py:2029 stock/models.py:2934 msgid "Test template does not exist" msgstr "" -#: stock/models.py:2030 +#: stock/models.py:2047 msgid "Stock item has been assigned to a sales order" msgstr "" -#: stock/models.py:2034 +#: stock/models.py:2051 msgid "Stock item is installed in another item" msgstr "" -#: stock/models.py:2037 +#: stock/models.py:2054 msgid "Stock item contains other items" msgstr "" -#: stock/models.py:2040 +#: stock/models.py:2057 msgid "Stock item has been assigned to a customer" msgstr "" -#: stock/models.py:2043 stock/models.py:2226 +#: stock/models.py:2060 stock/models.py:2243 msgid "Stock item is currently in production" msgstr "" -#: stock/models.py:2046 +#: stock/models.py:2063 msgid "Serialized stock cannot be merged" msgstr "" -#: stock/models.py:2053 stock/serializers.py:1462 +#: stock/models.py:2070 stock/serializers.py:1462 msgid "Duplicate stock items" msgstr "" -#: stock/models.py:2057 +#: stock/models.py:2074 msgid "Stock items must refer to the same part" msgstr "" -#: stock/models.py:2065 +#: stock/models.py:2082 msgid "Stock items must refer to the same supplier part" msgstr "" -#: stock/models.py:2070 +#: stock/models.py:2087 msgid "Stock status codes must match" msgstr "" -#: stock/models.py:2349 +#: stock/models.py:2366 msgid "StockItem cannot be moved as it is not in stock" msgstr "" -#: stock/models.py:2818 +#: stock/models.py:2835 msgid "Stock Item Tracking" msgstr "" -#: stock/models.py:2849 +#: stock/models.py:2866 msgid "Entry notes" msgstr "" -#: stock/models.py:2889 +#: stock/models.py:2906 msgid "Stock Item Test Result" msgstr "" -#: stock/models.py:2920 +#: stock/models.py:2937 msgid "Value must be provided for this test" msgstr "" -#: stock/models.py:2924 +#: stock/models.py:2941 msgid "Attachment must be uploaded for this test" msgstr "" -#: stock/models.py:2929 +#: stock/models.py:2946 msgid "Invalid value for this test" msgstr "" -#: stock/models.py:2953 +#: stock/models.py:2970 msgid "Test result" msgstr "" -#: stock/models.py:2960 +#: stock/models.py:2977 msgid "Test output value" msgstr "" -#: stock/models.py:2968 stock/serializers.py:248 +#: stock/models.py:2985 stock/serializers.py:248 msgid "Test result attachment" msgstr "" -#: stock/models.py:2972 +#: stock/models.py:2989 msgid "Test notes" msgstr "" -#: stock/models.py:2980 +#: stock/models.py:2997 msgid "Test station" msgstr "" -#: stock/models.py:2981 +#: stock/models.py:2998 msgid "The identifier of the test station where the test was performed" msgstr "" -#: stock/models.py:2987 +#: stock/models.py:3004 msgid "Started" msgstr "" -#: stock/models.py:2988 +#: stock/models.py:3005 msgid "The timestamp of the test start" msgstr "" -#: stock/models.py:2994 +#: stock/models.py:3011 msgid "Finished" msgstr "" -#: stock/models.py:2995 +#: stock/models.py:3012 msgid "The timestamp of the test finish" msgstr "" @@ -8677,8 +8732,8 @@ msgstr "" msgid "Quantity must not exceed available stock quantity ({q})" msgstr "" -#: stock/serializers.py:711 stock/serializers.py:1419 stock/serializers.py:1732 -#: stock/serializers.py:1781 +#: stock/serializers.py:711 stock/serializers.py:1419 stock/serializers.py:1740 +#: stock/serializers.py:1789 msgid "Destination stock location" msgstr "" @@ -8834,19 +8889,19 @@ msgstr "" msgid "Stock transaction notes" msgstr "" -#: stock/serializers.py:1787 +#: stock/serializers.py:1795 msgid "Merge into existing stock" msgstr "" -#: stock/serializers.py:1788 +#: stock/serializers.py:1796 msgid "Merge returned items into existing stock items if possible" msgstr "" -#: stock/serializers.py:1831 +#: stock/serializers.py:1839 msgid "Next Serial Number" msgstr "" -#: stock/serializers.py:1837 +#: stock/serializers.py:1845 msgid "Previous Serial Number" msgstr "" @@ -8902,83 +8957,87 @@ msgstr "" msgid "Stock manually removed" msgstr "" -#: stock/status_codes.py:57 +#: stock/status_codes.py:56 +msgid "Serialized stock items" +msgstr "" + +#: stock/status_codes.py:58 msgid "Returned to stock" msgstr "" -#: stock/status_codes.py:60 +#: stock/status_codes.py:61 msgid "Location changed" msgstr "" -#: stock/status_codes.py:61 +#: stock/status_codes.py:62 msgid "Stock updated" msgstr "" -#: stock/status_codes.py:64 +#: stock/status_codes.py:65 msgid "Installed into assembly" msgstr "" -#: stock/status_codes.py:65 +#: stock/status_codes.py:66 msgid "Removed from assembly" msgstr "" -#: stock/status_codes.py:67 +#: stock/status_codes.py:68 msgid "Installed component item" msgstr "" -#: stock/status_codes.py:68 +#: stock/status_codes.py:69 msgid "Removed component item" msgstr "" -#: stock/status_codes.py:71 +#: stock/status_codes.py:72 msgid "Split from parent item" msgstr "" -#: stock/status_codes.py:72 +#: stock/status_codes.py:73 msgid "Split child item" msgstr "" -#: stock/status_codes.py:75 +#: stock/status_codes.py:76 msgid "Merged stock items" msgstr "" -#: stock/status_codes.py:78 +#: stock/status_codes.py:79 msgid "Converted to variant" msgstr "" -#: stock/status_codes.py:81 +#: stock/status_codes.py:82 msgid "Build order output created" msgstr "" -#: stock/status_codes.py:82 +#: stock/status_codes.py:83 msgid "Build order output completed" msgstr "" -#: stock/status_codes.py:83 +#: stock/status_codes.py:84 msgid "Build order output rejected" msgstr "" -#: stock/status_codes.py:84 +#: stock/status_codes.py:85 msgid "Consumed by build order" msgstr "" -#: stock/status_codes.py:87 +#: stock/status_codes.py:88 msgid "Shipped against Sales Order" msgstr "" -#: stock/status_codes.py:90 +#: stock/status_codes.py:91 msgid "Received against Purchase Order" msgstr "" -#: stock/status_codes.py:93 +#: stock/status_codes.py:94 msgid "Returned against Return Order" msgstr "" -#: stock/status_codes.py:96 +#: stock/status_codes.py:97 msgid "Sent to customer" msgstr "" -#: stock/status_codes.py:97 +#: stock/status_codes.py:98 msgid "Returned from customer" msgstr "" diff --git a/src/backend/InvenTree/locale/sl/LC_MESSAGES/django.po b/src/backend/InvenTree/locale/sl/LC_MESSAGES/django.po index 06f0cdb85e..81ae4cc9d9 100644 --- a/src/backend/InvenTree/locale/sl/LC_MESSAGES/django.po +++ b/src/backend/InvenTree/locale/sl/LC_MESSAGES/django.po @@ -2,8 +2,8 @@ msgid "" msgstr "" "Project-Id-Version: inventree\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-11-19 04:55+0000\n" -"PO-Revision-Date: 2025-11-19 04:59\n" +"POT-Creation-Date: 2025-12-07 07:33+0000\n" +"PO-Revision-Date: 2025-12-07 07:36\n" "Last-Translator: \n" "Language-Team: Slovenian\n" "Language: sl_SI\n" @@ -57,7 +57,7 @@ msgstr "" msgid "This field must be unique." msgstr "" -#: InvenTree/api.py:775 +#: InvenTree/api.py:803 msgid "User does not have permission to view this model" msgstr "Uporabnik nima dovoljenja pogleda tega modela" @@ -81,22 +81,22 @@ msgstr "Podana epošta ni veljavna." msgid "The provided email domain is not approved." msgstr "Domena epošte ni podprta." -#: InvenTree/conversion.py:166 +#: InvenTree/conversion.py:240 #, python-brace-format msgid "Invalid unit provided ({unit})" msgstr "Vnesena napačna enota ({unit})" -#: InvenTree/conversion.py:183 +#: InvenTree/conversion.py:257 msgid "No value provided" msgstr "Vrednost ni vnesena" -#: InvenTree/conversion.py:210 +#: InvenTree/conversion.py:284 #, python-brace-format msgid "Could not convert {original} to {unit}" msgstr "Ni mogoče pretvoriti {original} v {unit}" -#: InvenTree/conversion.py:212 InvenTree/conversion.py:226 -#: InvenTree/helpers.py:597 order/models.py:720 order/models.py:1015 +#: InvenTree/conversion.py:286 InvenTree/conversion.py:300 +#: InvenTree/helpers.py:597 order/models.py:721 order/models.py:1016 msgid "Invalid quantity provided" msgstr "Podana napačna količina" @@ -112,11 +112,11 @@ msgstr "Vnesi datum" msgid "Invalid decimal value" msgstr "" -#: InvenTree/fields.py:218 InvenTree/models.py:1067 build/serializers.py:509 -#: build/serializers.py:580 build/serializers.py:1788 company/models.py:857 -#: order/models.py:1780 +#: InvenTree/fields.py:218 InvenTree/models.py:1228 build/serializers.py:517 +#: build/serializers.py:588 build/serializers.py:1796 company/models.py:811 +#: order/models.py:1781 #: report/templates/report/inventree_build_order_report.html:172 -#: stock/models.py:2848 stock/models.py:2972 stock/serializers.py:717 +#: stock/models.py:2865 stock/models.py:2989 stock/serializers.py:717 #: stock/serializers.py:893 stock/serializers.py:1035 stock/serializers.py:1336 #: stock/serializers.py:1425 stock/serializers.py:1624 msgid "Notes" @@ -171,35 +171,35 @@ msgstr "Odstranite oznako HTML iz te vrednosti" msgid "Data contains prohibited markdown content" msgstr "" -#: InvenTree/helpers_model.py:133 +#: InvenTree/helpers_model.py:134 msgid "Connection error" msgstr "Napaka povezave" -#: InvenTree/helpers_model.py:138 InvenTree/helpers_model.py:145 +#: InvenTree/helpers_model.py:139 InvenTree/helpers_model.py:146 msgid "Server responded with invalid status code" msgstr "Odziv serverja: napravilni status kode" -#: InvenTree/helpers_model.py:141 +#: InvenTree/helpers_model.py:142 msgid "Exception occurred" msgstr "Pojavila se je izjema" -#: InvenTree/helpers_model.py:151 +#: InvenTree/helpers_model.py:152 msgid "Server responded with invalid Content-Length value" msgstr "Odziv serverja: napačna dolžina vrednosti" -#: InvenTree/helpers_model.py:154 +#: InvenTree/helpers_model.py:155 msgid "Image size is too large" msgstr "Prevelika velikost slike" -#: InvenTree/helpers_model.py:166 +#: InvenTree/helpers_model.py:167 msgid "Image download exceeded maximum size" msgstr "Prenos slike presegel največjo velikost" -#: InvenTree/helpers_model.py:171 +#: InvenTree/helpers_model.py:172 msgid "Remote server returned empty response" msgstr "Oddaljeni server vrnil prazen odziv" -#: InvenTree/helpers_model.py:179 +#: InvenTree/helpers_model.py:180 msgid "Supplied URL is not a valid image file" msgstr "Podani URL ni veljavna slikovna datoteka" @@ -207,7 +207,7 @@ msgstr "Podani URL ni veljavna slikovna datoteka" msgid "Log in to the app" msgstr "" -#: InvenTree/magic_login.py:41 company/models.py:172 users/serializers.py:198 +#: InvenTree/magic_login.py:41 company/models.py:173 users/serializers.py:198 msgid "Email" msgstr "E-pošta" @@ -215,160 +215,176 @@ msgstr "E-pošta" msgid "You must enable two-factor authentication before doing anything else." msgstr "" -#: InvenTree/models.py:111 +#: InvenTree/models.py:114 msgid "Error running plugin validation" msgstr "Napaka pri izvajanju preverjanja vtičnika" -#: InvenTree/models.py:192 +#: InvenTree/models.py:195 msgid "Metadata must be a python dict object" msgstr "Metapodatki morajo biti objekt tipa python dict" -#: InvenTree/models.py:198 +#: InvenTree/models.py:201 msgid "Plugin Metadata" msgstr "Metapodatki vtičnika" -#: InvenTree/models.py:199 +#: InvenTree/models.py:202 msgid "JSON metadata field, for use by external plugins" msgstr "Polje metapodatkov JSON za uporabo pri zunanjih vtičnikih" -#: InvenTree/models.py:382 +#: InvenTree/models.py:385 msgid "Improperly formatted pattern" msgstr "Nepravilno nastavljen vzorec" -#: InvenTree/models.py:389 +#: InvenTree/models.py:392 msgid "Unknown format key specified" msgstr "Nastavljen neprepoznan ključ formata" -#: InvenTree/models.py:395 +#: InvenTree/models.py:398 msgid "Missing required format key" msgstr "Manjka obvezen ključ formata" -#: InvenTree/models.py:406 +#: InvenTree/models.py:409 msgid "Reference field cannot be empty" msgstr "Referenčno polje ne sme biti prazno" -#: InvenTree/models.py:414 +#: InvenTree/models.py:417 msgid "Reference must match required pattern" msgstr "Referenca se mora ujemati s vzorcem" -#: InvenTree/models.py:445 +#: InvenTree/models.py:448 msgid "Reference number is too large" msgstr "Referenčna številka prevelika" -#: InvenTree/models.py:743 +#: InvenTree/models.py:896 msgid "Invalid choice" msgstr "Nedovoljena izbira" -#: InvenTree/models.py:856 common/models.py:1410 common/models.py:1837 -#: common/models.py:2096 common/models.py:2221 common/serializers.py:535 -#: company/models.py:615 generic/states/serializers.py:20 machine/models.py:25 -#: part/models.py:1039 part/models.py:3850 plugin/models.py:54 +#: InvenTree/models.py:1017 common/models.py:1414 common/models.py:1841 +#: common/models.py:2102 common/models.py:2227 common/models.py:2494 +#: common/serializers.py:539 generic/states/serializers.py:20 +#: machine/models.py:25 part/models.py:1127 plugin/models.py:54 #: report/models.py:216 stock/models.py:84 msgid "Name" msgstr "Ime" -#: InvenTree/models.py:862 build/models.py:252 common/models.py:171 -#: common/models.py:2228 common/models.py:2341 company/models.py:543 -#: company/models.py:848 order/models.py:442 order/models.py:1825 -#: part/models.py:1062 part/models.py:3865 report/models.py:222 +#: InvenTree/models.py:1023 build/models.py:253 common/models.py:175 +#: common/models.py:2234 common/models.py:2347 common/models.py:2509 +#: company/models.py:545 company/models.py:802 order/models.py:443 +#: order/models.py:1826 part/models.py:1150 report/models.py:222 #: report/models.py:815 report/models.py:841 #: report/templates/report/inventree_build_order_report.html:117 #: stock/models.py:90 msgid "Description" msgstr "Opis" -#: InvenTree/models.py:863 stock/models.py:91 +#: InvenTree/models.py:1024 stock/models.py:91 msgid "Description (optional)" msgstr "Opis (opcijsko)" -#: InvenTree/models.py:878 common/models.py:2394 +#: InvenTree/models.py:1039 common/models.py:2815 msgid "Path" msgstr "Pot" -#: InvenTree/models.py:983 +#: InvenTree/models.py:1144 msgid "Duplicate names cannot exist under the same parent" msgstr "Podvojena imena ne morejo obstajati pod istim nadrejenim elementom" -#: InvenTree/models.py:1067 +#: InvenTree/models.py:1228 msgid "Markdown notes (optional)" msgstr "Markdown opombe (neobvezno)" -#: InvenTree/models.py:1098 +#: InvenTree/models.py:1259 msgid "Barcode Data" msgstr "Podatki čtrne kode" -#: InvenTree/models.py:1099 +#: InvenTree/models.py:1260 msgid "Third party barcode data" msgstr "Podatki črtne kode tretje osebe" -#: InvenTree/models.py:1105 +#: InvenTree/models.py:1266 msgid "Barcode Hash" msgstr "Oznaka črtne kode" -#: InvenTree/models.py:1106 +#: InvenTree/models.py:1267 msgid "Unique hash of barcode data" msgstr "Enolična oznaka podatkov črtne kode" -#: InvenTree/models.py:1187 +#: InvenTree/models.py:1348 msgid "Existing barcode found" msgstr "Črtna koda že obstaja" -#: InvenTree/models.py:1269 +#: InvenTree/models.py:1430 msgid "Task Failure" msgstr "" -#: InvenTree/models.py:1270 +#: InvenTree/models.py:1431 #, python-brace-format msgid "Background worker task '{f}' failed after {n} attempts" msgstr "" -#: InvenTree/models.py:1297 +#: InvenTree/models.py:1458 msgid "Server Error" msgstr "Napaka strežnika" -#: InvenTree/models.py:1298 +#: InvenTree/models.py:1459 msgid "An error has been logged by the server." msgstr "Zaznana napaka na strežniku." -#: InvenTree/models.py:1340 common/models.py:1748 +#: InvenTree/models.py:1501 common/models.py:1752 #: report/templates/report/inventree_bill_of_materials_report.html:126 #: report/templates/report/inventree_bill_of_materials_report.html:148 #: report/templates/report/inventree_return_order_report.html:35 msgid "Image" msgstr "" -#: InvenTree/serializers.py:253 part/models.py:4571 +#: InvenTree/serializers.py:255 part/models.py:4196 msgid "Must be a valid number" msgstr "Mora biti veljavna številka" -#: InvenTree/serializers.py:295 company/models.py:214 part/models.py:3285 +#: InvenTree/serializers.py:297 company/models.py:215 part/models.py:3349 msgid "Currency" msgstr "Valuta" -#: InvenTree/serializers.py:298 part/serializers.py:1385 +#: InvenTree/serializers.py:300 part/serializers.py:1250 msgid "Select currency from available options" msgstr "Izberite valuto med razpoložljivimi možnostmi" -#: InvenTree/serializers.py:653 +#: InvenTree/serializers.py:654 +msgid "This field may not be null." +msgstr "" + +#: InvenTree/serializers.py:660 msgid "Invalid value" msgstr "Neveljavna vrednost" -#: InvenTree/serializers.py:690 +#: InvenTree/serializers.py:697 msgid "Remote Image" msgstr "Oddaljena slika" -#: InvenTree/serializers.py:691 +#: InvenTree/serializers.py:698 msgid "URL of remote image file" msgstr "Povezava do oddaljene slike" -#: InvenTree/serializers.py:709 +#: InvenTree/serializers.py:716 msgid "Downloading images from remote URL is not enabled" msgstr "Prenos slik iz oddaljene povezave ni omogočen" -#: InvenTree/serializers.py:716 +#: InvenTree/serializers.py:723 msgid "Failed to download image from remote URL" msgstr "" +#: InvenTree/serializers.py:806 +msgid "Invalid content type format" +msgstr "" + +#: InvenTree/serializers.py:809 +msgid "Content type not found" +msgstr "" + +#: InvenTree/serializers.py:815 +msgid "Content type does not match required mixin class" +msgstr "" + #: InvenTree/setting/locales.py:20 msgid "Arabic" msgstr "" @@ -537,30 +553,30 @@ msgstr "Neveljavna fizična enota" msgid "Not a valid currency code" msgstr "Neveljavna oznaka valute" -#: build/api.py:54 order/api.py:111 order/api.py:270 order/api.py:1373 -#: order/serializers.py:132 +#: build/api.py:54 order/api.py:116 order/api.py:275 order/api.py:1378 +#: order/serializers.py:133 msgid "Order Status" msgstr "" -#: build/api.py:80 build/models.py:264 +#: build/api.py:80 build/models.py:265 msgid "Parent Build" msgstr "Nadrejena izgradnja" -#: build/api.py:84 build/api.py:831 order/api.py:547 order/api.py:770 -#: order/api.py:1174 order/api.py:1449 stock/api.py:573 +#: build/api.py:84 build/api.py:837 order/api.py:553 order/api.py:776 +#: order/api.py:1179 order/api.py:1454 stock/api.py:573 msgid "Include Variants" msgstr "" -#: build/api.py:100 build/api.py:466 build/api.py:845 build/models.py:270 -#: build/serializers.py:1225 build/serializers.py:1356 -#: build/serializers.py:1427 company/models.py:1067 company/serializers.py:445 -#: order/api.py:298 order/api.py:302 order/api.py:929 order/api.py:1187 -#: order/api.py:1190 order/models.py:1941 order/models.py:2108 -#: order/models.py:2109 part/api.py:1233 part/api.py:1236 part/api.py:1302 -#: part/api.py:1589 part/models.py:472 part/models.py:3296 part/models.py:3439 -#: part/models.py:3497 part/models.py:3518 part/models.py:3540 -#: part/models.py:3679 part/models.py:4046 part/models.py:4368 -#: part/models.py:4787 part/serializers.py:1928 +#: build/api.py:100 build/api.py:472 build/api.py:851 build/models.py:271 +#: build/serializers.py:1233 build/serializers.py:1364 +#: build/serializers.py:1435 company/models.py:1021 company/serializers.py:490 +#: order/api.py:303 order/api.py:307 order/api.py:934 order/api.py:1192 +#: order/api.py:1195 order/models.py:1942 order/models.py:2109 +#: order/models.py:2110 part/api.py:1160 part/api.py:1163 part/api.py:1314 +#: part/models.py:550 part/models.py:3360 part/models.py:3503 +#: part/models.py:3561 part/models.py:3582 part/models.py:3604 +#: part/models.py:3743 part/models.py:3993 part/models.py:4412 +#: part/serializers.py:1801 #: report/templates/report/inventree_bill_of_materials_report.html:110 #: report/templates/report/inventree_bill_of_materials_report.html:137 #: report/templates/report/inventree_build_order_report.html:109 @@ -580,9 +596,9 @@ msgstr "" msgid "Part" msgstr "Del" -#: build/api.py:120 build/api.py:123 build/serializers.py:1438 part/api.py:980 -#: part/api.py:1316 part/api.py:1600 part/models.py:1080 part/models.py:3568 -#: part/models.py:4162 part/serializers.py:1752 stock/api.py:869 +#: build/api.py:120 build/api.py:123 build/serializers.py:1446 part/api.py:975 +#: part/api.py:1325 part/models.py:435 part/models.py:1168 part/models.py:3632 +#: part/serializers.py:1617 stock/api.py:869 msgid "Category" msgstr "" @@ -590,7 +606,7 @@ msgstr "" msgid "Ancestor Build" msgstr "" -#: build/api.py:152 order/api.py:129 +#: build/api.py:152 order/api.py:134 msgid "Assigned to me" msgstr "Dodeljeno meni" @@ -638,134 +654,134 @@ msgstr "" msgid "Completed after" msgstr "" -#: build/api.py:249 order/api.py:226 +#: build/api.py:249 order/api.py:231 msgid "Min Date" msgstr "" -#: build/api.py:272 order/api.py:245 +#: build/api.py:272 order/api.py:250 msgid "Max Date" msgstr "" -#: build/api.py:297 build/api.py:300 part/api.py:217 stock/api.py:961 +#: build/api.py:297 build/api.py:300 part/api.py:212 stock/api.py:961 msgid "Exclude Tree" msgstr "" -#: build/api.py:405 +#: build/api.py:411 msgid "Build must be cancelled before it can be deleted" msgstr "Izgradnja mora biti najprej preklicana, nato je lahko izbrisana" -#: build/api.py:449 build/serializers.py:1374 part/models.py:4402 +#: build/api.py:455 build/serializers.py:1382 part/models.py:4027 msgid "Consumable" msgstr "" -#: build/api.py:452 build/serializers.py:1377 part/models.py:4396 +#: build/api.py:458 build/serializers.py:1385 part/models.py:4021 msgid "Optional" msgstr "Neobvezno" -#: build/api.py:455 build/serializers.py:1415 common/setting/system.py:456 -#: part/models.py:1202 part/serializers.py:1714 part/serializers.py:1725 +#: build/api.py:461 build/serializers.py:1423 common/setting/system.py:456 +#: part/models.py:1290 part/serializers.py:1579 part/serializers.py:1590 #: stock/api.py:639 msgid "Assembly" msgstr "Montaža" -#: build/api.py:458 +#: build/api.py:464 msgid "Tracked" msgstr "Sledi" -#: build/api.py:461 build/serializers.py:1380 part/models.py:1220 +#: build/api.py:467 build/serializers.py:1388 part/models.py:1308 msgid "Testable" msgstr "Testno" -#: build/api.py:471 order/api.py:993 order/api.py:1363 +#: build/api.py:477 order/api.py:998 order/api.py:1368 msgid "Order Outstanding" msgstr "" -#: build/api.py:481 build/serializers.py:1464 order/api.py:952 +#: build/api.py:487 build/serializers.py:1472 order/api.py:957 msgid "Allocated" msgstr "Dodeljeno" -#: build/api.py:490 build/models.py:1672 build/serializers.py:1393 +#: build/api.py:496 build/models.py:1673 build/serializers.py:1401 msgid "Consumed" msgstr "" -#: build/api.py:499 company/models.py:912 company/serializers.py:440 +#: build/api.py:505 company/models.py:866 company/serializers.py:467 #: templates/email/build_order_required_stock.html:19 #: templates/email/low_stock_notification.html:17 #: templates/email/part_event_notification.html:18 msgid "Available" msgstr "Na voljo" -#: build/api.py:523 build/serializers.py:1466 company/serializers.py:437 -#: order/serializers.py:1281 part/serializers.py:959 part/serializers.py:1306 -#: part/serializers.py:1761 +#: build/api.py:529 build/serializers.py:1474 company/serializers.py:464 +#: order/serializers.py:1295 part/serializers.py:844 part/serializers.py:1171 +#: part/serializers.py:1626 msgid "On Order" msgstr "" -#: build/api.py:868 build/models.py:117 order/models.py:1974 +#: build/api.py:874 build/models.py:118 order/models.py:1975 #: report/templates/report/inventree_build_order_report.html:105 #: stock/serializers.py:93 templates/email/build_order_completed.html:16 #: templates/email/overdue_build_order.html:15 msgid "Build Order" msgstr "Nalog izgradnje" -#: build/api.py:882 build/api.py:886 build/serializers.py:372 -#: build/serializers.py:497 build/serializers.py:567 build/serializers.py:1251 -#: build/serializers.py:1256 order/api.py:1234 order/api.py:1239 -#: order/serializers.py:833 order/serializers.py:973 order/serializers.py:2042 +#: build/api.py:888 build/api.py:892 build/serializers.py:380 +#: build/serializers.py:505 build/serializers.py:575 build/serializers.py:1259 +#: build/serializers.py:1264 order/api.py:1239 order/api.py:1244 +#: order/serializers.py:844 order/serializers.py:984 order/serializers.py:2059 #: stock/api.py:987 stock/serializers.py:111 stock/serializers.py:601 #: stock/serializers.py:710 stock/serializers.py:888 stock/serializers.py:1418 -#: stock/serializers.py:1731 stock/serializers.py:1780 +#: stock/serializers.py:1739 stock/serializers.py:1788 #: templates/email/stale_stock_notification.html:18 users/models.py:549 msgid "Location" msgstr "" -#: build/api.py:894 +#: build/api.py:900 msgid "Output" msgstr "" -#: build/api.py:896 +#: build/api.py:902 msgid "Filter by output stock item ID. Use 'null' to find uninstalled build items." msgstr "" -#: build/models.py:118 users/ruleset.py:31 +#: build/models.py:119 users/ruleset.py:31 msgid "Build Orders" msgstr "Nalogi izgradnje" -#: build/models.py:168 +#: build/models.py:169 msgid "Assembly BOM has not been validated" msgstr "Sestava BOM ni bila potrjena" -#: build/models.py:175 +#: build/models.py:176 msgid "Build order cannot be created for an inactive part" msgstr "" -#: build/models.py:182 +#: build/models.py:183 msgid "Build order cannot be created for an unlocked part" msgstr "" -#: build/models.py:200 +#: build/models.py:201 msgid "Build orders can only be externally fulfilled for purchaseable parts" msgstr "" -#: build/models.py:207 order/models.py:369 +#: build/models.py:208 order/models.py:370 msgid "Responsible user or group must be specified" msgstr "Naveden mora biti odgovorni uporabnik ali skupina" -#: build/models.py:212 +#: build/models.py:213 msgid "Build order part cannot be changed" msgstr "" -#: build/models.py:217 order/models.py:382 +#: build/models.py:218 order/models.py:383 msgid "Target date must be after start date" msgstr "" -#: build/models.py:245 +#: build/models.py:246 msgid "Build Order Reference" msgstr "Referenca naloga izgradnje" -#: build/models.py:246 build/serializers.py:1371 order/models.py:614 -#: order/models.py:1311 order/models.py:1773 order/models.py:2712 -#: part/models.py:4442 +#: build/models.py:247 build/serializers.py:1379 order/models.py:615 +#: order/models.py:1312 order/models.py:1774 order/models.py:2713 +#: part/models.py:4067 #: report/templates/report/inventree_bill_of_materials_report.html:139 #: report/templates/report/inventree_purchase_order_report.html:35 #: report/templates/report/inventree_return_order_report.html:26 @@ -773,230 +789,230 @@ msgstr "Referenca naloga izgradnje" msgid "Reference" msgstr "Referenca" -#: build/models.py:255 +#: build/models.py:256 msgid "Brief description of the build (optional)" msgstr "" -#: build/models.py:265 +#: build/models.py:266 msgid "BuildOrder to which this build is allocated" msgstr "Nalog izgradnje na katerega se ta izgradnaj nanaša" -#: build/models.py:274 +#: build/models.py:275 msgid "Select part to build" msgstr "Izberite del za izgradnjo" -#: build/models.py:279 +#: build/models.py:280 msgid "Sales Order Reference" msgstr "Referenca dobavnica" -#: build/models.py:284 +#: build/models.py:285 msgid "SalesOrder to which this build is allocated" msgstr "Dobavnica na katero se navezuje ta izgradnja" -#: build/models.py:289 build/serializers.py:1097 +#: build/models.py:290 build/serializers.py:1105 msgid "Source Location" msgstr "Lokacija vira" -#: build/models.py:295 +#: build/models.py:296 msgid "Select location to take stock from for this build (leave blank to take from any stock location)" msgstr "Izberite lokacijo dela za to izgradnjo (v primeru da ni pomembno pusti prazno)" -#: build/models.py:301 +#: build/models.py:302 msgid "External Build" msgstr "" -#: build/models.py:302 +#: build/models.py:303 msgid "This build order is fulfilled externally" msgstr "" -#: build/models.py:307 +#: build/models.py:308 msgid "Destination Location" msgstr "Ciljna lokacija" -#: build/models.py:312 +#: build/models.py:313 msgid "Select location where the completed items will be stored" msgstr "Izberite lokacijo, kjer bodo končne postavke shranjene" -#: build/models.py:316 +#: build/models.py:317 msgid "Build Quantity" msgstr "Količina izgradenj" -#: build/models.py:319 +#: build/models.py:320 msgid "Number of stock items to build" msgstr "Število postavk za izgradnjo" -#: build/models.py:323 +#: build/models.py:324 msgid "Completed items" msgstr "Končane postavke" -#: build/models.py:325 +#: build/models.py:326 msgid "Number of stock items which have been completed" msgstr "Število postavk zaloge, ki so bile končane" -#: build/models.py:329 +#: build/models.py:330 msgid "Build Status" msgstr "Status izgradnje" -#: build/models.py:334 +#: build/models.py:335 msgid "Build status code" msgstr "Koda statusa izgradnje" -#: build/models.py:343 build/serializers.py:359 order/serializers.py:849 +#: build/models.py:344 build/serializers.py:367 order/serializers.py:860 #: stock/models.py:1100 stock/serializers.py:85 stock/serializers.py:1591 msgid "Batch Code" msgstr "Številka serije" -#: build/models.py:347 build/serializers.py:360 +#: build/models.py:348 build/serializers.py:368 msgid "Batch code for this build output" msgstr "Številka serije za to izgradnjo" -#: build/models.py:351 order/models.py:479 order/serializers.py:186 -#: part/models.py:1283 +#: build/models.py:352 order/models.py:480 order/serializers.py:193 +#: part/models.py:1371 msgid "Creation Date" msgstr "Datum ustvarjenja" -#: build/models.py:357 +#: build/models.py:358 msgid "Build start date" msgstr "" -#: build/models.py:358 +#: build/models.py:359 msgid "Scheduled start date for this build order" msgstr "" -#: build/models.py:364 +#: build/models.py:365 msgid "Target completion date" msgstr "Rok dokončanja" -#: build/models.py:366 +#: build/models.py:367 msgid "Target date for build completion. Build will be overdue after this date." msgstr "Rok končanja izdelave. Izdelava po tem datumu bo v zamudi po tem datumu." -#: build/models.py:371 order/models.py:667 order/models.py:2751 +#: build/models.py:372 order/models.py:668 order/models.py:2752 msgid "Completion Date" msgstr "Datom končanja" -#: build/models.py:379 +#: build/models.py:380 msgid "completed by" msgstr "dokončal" -#: build/models.py:388 +#: build/models.py:389 msgid "Issued by" msgstr "Izdal" -#: build/models.py:389 +#: build/models.py:390 msgid "User who issued this build order" msgstr "Uporabnik, ki je izdal nalog za izgradnjo" -#: build/models.py:398 common/models.py:180 order/api.py:179 -#: order/models.py:504 part/models.py:1300 +#: build/models.py:399 common/models.py:184 order/api.py:184 +#: order/models.py:505 part/models.py:1388 #: report/templates/report/inventree_build_order_report.html:158 msgid "Responsible" msgstr "Odgovoren" -#: build/models.py:399 +#: build/models.py:400 msgid "User or group responsible for this build order" msgstr "Odgovorni uporabnik ali skupina za to naročilo" -#: build/models.py:404 stock/models.py:1093 +#: build/models.py:405 stock/models.py:1093 msgid "External Link" msgstr "Zunanja povezava" -#: build/models.py:406 common/models.py:1984 part/models.py:1114 +#: build/models.py:407 common/models.py:1990 part/models.py:1202 #: stock/models.py:1095 msgid "Link to external URL" msgstr "Zunanja povezava" -#: build/models.py:411 +#: build/models.py:412 msgid "Build Priority" msgstr "" -#: build/models.py:414 +#: build/models.py:415 msgid "Priority of this build order" msgstr "" -#: build/models.py:422 common/models.py:150 common/models.py:164 -#: order/api.py:165 order/models.py:451 order/models.py:1805 +#: build/models.py:423 common/models.py:154 common/models.py:168 +#: order/api.py:170 order/models.py:452 order/models.py:1806 msgid "Project Code" msgstr "" -#: build/models.py:423 +#: build/models.py:424 msgid "Project code for this build order" msgstr "" -#: build/models.py:676 +#: build/models.py:677 msgid "Cannot complete build order with open child builds" msgstr "" -#: build/models.py:681 +#: build/models.py:682 msgid "Cannot complete build order with incomplete outputs" msgstr "" -#: build/models.py:700 build/models.py:830 +#: build/models.py:701 build/models.py:831 msgid "Failed to offload task to complete build allocations" msgstr "" -#: build/models.py:723 +#: build/models.py:724 #, python-brace-format msgid "Build order {build} has been completed" msgstr "Nalog izgradnje {build} je dokončan" -#: build/models.py:729 +#: build/models.py:730 msgid "A build order has been completed" msgstr "Nalog izgradnej dokončan" -#: build/models.py:911 build/serializers.py:407 +#: build/models.py:912 build/serializers.py:415 msgid "Serial numbers must be provided for trackable parts" msgstr "" -#: build/models.py:1042 build/models.py:1129 +#: build/models.py:1043 build/models.py:1130 msgid "No build output specified" msgstr "Ni določena izgradnja" -#: build/models.py:1045 +#: build/models.py:1046 msgid "Build output is already completed" msgstr "Igradnja je že dokončana" -#: build/models.py:1048 +#: build/models.py:1049 msgid "Build output does not match Build Order" msgstr "Izgradnja se ne ujema s nalogom izdelave" -#: build/models.py:1136 build/models.py:1234 build/serializers.py:285 -#: build/serializers.py:335 build/serializers.py:965 build/serializers.py:1739 -#: order/models.py:717 order/serializers.py:658 order/serializers.py:844 -#: part/serializers.py:1708 stock/models.py:940 stock/models.py:1430 +#: build/models.py:1137 build/models.py:1235 build/serializers.py:293 +#: build/serializers.py:343 build/serializers.py:973 build/serializers.py:1747 +#: order/models.py:718 order/serializers.py:669 order/serializers.py:855 +#: part/serializers.py:1573 stock/models.py:940 stock/models.py:1430 #: stock/models.py:1878 stock/serializers.py:688 stock/serializers.py:1580 msgid "Quantity must be greater than zero" msgstr "" -#: build/models.py:1140 build/models.py:1239 build/serializers.py:290 +#: build/models.py:1141 build/models.py:1240 build/serializers.py:298 msgid "Quantity cannot be greater than the output quantity" msgstr "" -#: build/models.py:1214 build/serializers.py:606 +#: build/models.py:1215 build/serializers.py:614 msgid "Build output has not passed all required tests" msgstr "" -#: build/models.py:1217 build/serializers.py:601 +#: build/models.py:1218 build/serializers.py:609 #, python-brace-format msgid "Build output {serial} has not passed all required tests" msgstr "" -#: build/models.py:1229 +#: build/models.py:1230 msgid "Cannot partially complete a build output with allocated items" msgstr "" -#: build/models.py:1627 +#: build/models.py:1628 msgid "Build Order Line Item" msgstr "" -#: build/models.py:1651 +#: build/models.py:1652 msgid "Build object" msgstr "" -#: build/models.py:1663 build/models.py:1974 build/serializers.py:271 -#: build/serializers.py:320 build/serializers.py:1392 common/models.py:1340 -#: order/models.py:1756 order/models.py:2597 order/serializers.py:1696 -#: order/serializers.py:2124 part/models.py:3453 part/models.py:4390 +#: build/models.py:1664 build/models.py:1975 build/serializers.py:279 +#: build/serializers.py:328 build/serializers.py:1400 common/models.py:1344 +#: order/models.py:1757 order/models.py:2598 order/serializers.py:1710 +#: order/serializers.py:2141 part/models.py:3517 part/models.py:4015 #: report/templates/report/inventree_bill_of_materials_report.html:138 #: report/templates/report/inventree_build_order_report.html:113 #: report/templates/report/inventree_purchase_order_report.html:36 @@ -1014,427 +1030,427 @@ msgstr "" msgid "Quantity" msgstr "Količina" -#: build/models.py:1664 +#: build/models.py:1665 msgid "Required quantity for build order" msgstr "" -#: build/models.py:1673 +#: build/models.py:1674 msgid "Quantity of consumed stock" msgstr "" -#: build/models.py:1772 +#: build/models.py:1773 msgid "Build item must specify a build output, as master part is marked as trackable" msgstr "Izdelana postavka mora imeti izgradnjo, če je glavni del označen kot sledljiv" -#: build/models.py:1783 +#: build/models.py:1784 #, python-brace-format msgid "Allocated quantity ({q}) must not exceed available stock quantity ({a})" msgstr "Prestavljena zaloga ({q}) ne sme presegati zaloge ({a})" -#: build/models.py:1804 order/models.py:2546 +#: build/models.py:1805 order/models.py:2547 msgid "Stock item is over-allocated" msgstr "Preveč zaloge je prestavljene" -#: build/models.py:1809 order/models.py:2549 +#: build/models.py:1810 order/models.py:2550 msgid "Allocation quantity must be greater than zero" msgstr "Prestavljena količina mora biti večja od 0" -#: build/models.py:1815 +#: build/models.py:1816 msgid "Quantity must be 1 for serialized stock" msgstr "Količina za zalogo s serijsko številko mora biti 1" -#: build/models.py:1875 +#: build/models.py:1876 msgid "Selected stock item does not match BOM line" msgstr "" -#: build/models.py:1913 +#: build/models.py:1914 msgid "Allocated quantity exceeds available stock quantity" msgstr "" -#: build/models.py:1964 build/serializers.py:948 build/serializers.py:1240 -#: order/serializers.py:1533 order/serializers.py:1554 +#: build/models.py:1965 build/serializers.py:956 build/serializers.py:1248 +#: order/serializers.py:1547 order/serializers.py:1568 #: report/templates/report/inventree_sales_order_shipment_report.html:29 #: stock/api.py:1404 stock/models.py:456 stock/serializers.py:102 #: stock/serializers.py:800 stock/serializers.py:1274 stock/serializers.py:1386 msgid "Stock Item" msgstr "Postavka zaloge" -#: build/models.py:1965 +#: build/models.py:1966 msgid "Source stock item" msgstr "Izvorna postavka zaloge" -#: build/models.py:1975 +#: build/models.py:1976 msgid "Stock quantity to allocate to build" msgstr "Količina zaloge za prestavljanje za izgradnjo" -#: build/models.py:1984 +#: build/models.py:1985 msgid "Install into" msgstr "Inštaliraj v" -#: build/models.py:1985 +#: build/models.py:1986 msgid "Destination stock item" msgstr "Destinacija postavke zaloge" -#: build/serializers.py:118 +#: build/serializers.py:120 msgid "Build Level" msgstr "" -#: build/serializers.py:128 +#: build/serializers.py:136 msgid "Part Name" msgstr "" -#: build/serializers.py:153 +#: build/serializers.py:161 msgid "Project Code Label" msgstr "" -#: build/serializers.py:219 build/serializers.py:974 +#: build/serializers.py:227 build/serializers.py:982 msgid "Build Output" msgstr "Izgradnja" -#: build/serializers.py:231 +#: build/serializers.py:239 msgid "Build output does not match the parent build" msgstr "Izgradnja se ne ujema z nadrejeno izgradnjo" -#: build/serializers.py:235 +#: build/serializers.py:243 msgid "Output part does not match BuildOrder part" msgstr "Izhodni del se ne ujema s naročilom sestava" -#: build/serializers.py:239 +#: build/serializers.py:247 msgid "This build output has already been completed" msgstr "Ta sestava je že zaključena" -#: build/serializers.py:253 +#: build/serializers.py:261 msgid "This build output is not fully allocated" msgstr "" -#: build/serializers.py:272 build/serializers.py:321 +#: build/serializers.py:280 build/serializers.py:329 msgid "Enter quantity for build output" msgstr "" -#: build/serializers.py:343 +#: build/serializers.py:351 msgid "Integer quantity required for trackable parts" msgstr "" -#: build/serializers.py:349 +#: build/serializers.py:357 msgid "Integer quantity required, as the bill of materials contains trackable parts" msgstr "" -#: build/serializers.py:366 order/serializers.py:865 order/serializers.py:1700 +#: build/serializers.py:374 order/serializers.py:876 order/serializers.py:1714 #: stock/serializers.py:699 msgid "Serial Numbers" msgstr "" -#: build/serializers.py:367 +#: build/serializers.py:375 msgid "Enter serial numbers for build outputs" msgstr "" -#: build/serializers.py:373 +#: build/serializers.py:381 msgid "Stock location for build output" msgstr "" -#: build/serializers.py:388 +#: build/serializers.py:396 msgid "Auto Allocate Serial Numbers" msgstr "" -#: build/serializers.py:390 +#: build/serializers.py:398 msgid "Automatically allocate required items with matching serial numbers" msgstr "" -#: build/serializers.py:423 order/serializers.py:951 stock/api.py:1183 +#: build/serializers.py:431 order/serializers.py:962 stock/api.py:1183 #: stock/models.py:1901 msgid "The following serial numbers already exist or are invalid" msgstr "" -#: build/serializers.py:465 build/serializers.py:521 build/serializers.py:613 +#: build/serializers.py:473 build/serializers.py:529 build/serializers.py:621 msgid "A list of build outputs must be provided" msgstr "" -#: build/serializers.py:498 +#: build/serializers.py:506 msgid "Stock location for scrapped outputs" msgstr "" -#: build/serializers.py:504 +#: build/serializers.py:512 msgid "Discard Allocations" msgstr "" -#: build/serializers.py:505 +#: build/serializers.py:513 msgid "Discard any stock allocations for scrapped outputs" msgstr "" -#: build/serializers.py:510 +#: build/serializers.py:518 msgid "Reason for scrapping build output(s)" msgstr "" -#: build/serializers.py:568 +#: build/serializers.py:576 msgid "Location for completed build outputs" msgstr "" -#: build/serializers.py:576 +#: build/serializers.py:584 msgid "Accept Incomplete Allocation" msgstr "" -#: build/serializers.py:577 +#: build/serializers.py:585 msgid "Complete outputs if stock has not been fully allocated" msgstr "" -#: build/serializers.py:702 +#: build/serializers.py:710 msgid "Consume Allocated Stock" msgstr "" -#: build/serializers.py:703 +#: build/serializers.py:711 msgid "Consume any stock which has already been allocated to this build" msgstr "" -#: build/serializers.py:709 +#: build/serializers.py:717 msgid "Remove Incomplete Outputs" msgstr "" -#: build/serializers.py:710 +#: build/serializers.py:718 msgid "Delete any build outputs which have not been completed" msgstr "" -#: build/serializers.py:737 +#: build/serializers.py:745 msgid "Not permitted" msgstr "" -#: build/serializers.py:738 +#: build/serializers.py:746 msgid "Accept as consumed by this build order" msgstr "" -#: build/serializers.py:739 +#: build/serializers.py:747 msgid "Deallocate before completing this build order" msgstr "" -#: build/serializers.py:766 +#: build/serializers.py:774 msgid "Overallocated Stock" msgstr "" -#: build/serializers.py:769 +#: build/serializers.py:777 msgid "How do you want to handle extra stock items assigned to the build order" msgstr "" -#: build/serializers.py:780 +#: build/serializers.py:788 msgid "Some stock items have been overallocated" msgstr "" -#: build/serializers.py:785 +#: build/serializers.py:793 msgid "Accept Unallocated" msgstr "" -#: build/serializers.py:787 +#: build/serializers.py:795 msgid "Accept that stock items have not been fully allocated to this build order" msgstr "" -#: build/serializers.py:798 +#: build/serializers.py:806 msgid "Required stock has not been fully allocated" msgstr "" -#: build/serializers.py:803 order/serializers.py:524 order/serializers.py:1601 +#: build/serializers.py:811 order/serializers.py:535 order/serializers.py:1615 msgid "Accept Incomplete" msgstr "" -#: build/serializers.py:805 +#: build/serializers.py:813 msgid "Accept that the required number of build outputs have not been completed" msgstr "" -#: build/serializers.py:816 +#: build/serializers.py:824 msgid "Required build quantity has not been completed" msgstr "" -#: build/serializers.py:828 +#: build/serializers.py:836 msgid "Build order has open child build orders" msgstr "" -#: build/serializers.py:831 +#: build/serializers.py:839 msgid "Build order must be in production state" msgstr "" -#: build/serializers.py:834 +#: build/serializers.py:842 msgid "Build order has incomplete outputs" msgstr "" -#: build/serializers.py:873 +#: build/serializers.py:881 msgid "Build Line" msgstr "" -#: build/serializers.py:881 +#: build/serializers.py:889 msgid "Build output" msgstr "" -#: build/serializers.py:889 +#: build/serializers.py:897 msgid "Build output must point to the same build" msgstr "" -#: build/serializers.py:920 +#: build/serializers.py:928 msgid "Build Line Item" msgstr "" -#: build/serializers.py:938 +#: build/serializers.py:946 msgid "bom_item.part must point to the same part as the build order" msgstr "" -#: build/serializers.py:954 stock/serializers.py:1287 +#: build/serializers.py:962 stock/serializers.py:1287 msgid "Item must be in stock" msgstr "" -#: build/serializers.py:997 order/serializers.py:1587 +#: build/serializers.py:1005 order/serializers.py:1601 #, python-brace-format msgid "Available quantity ({q}) exceeded" msgstr "" -#: build/serializers.py:1003 +#: build/serializers.py:1011 msgid "Build output must be specified for allocation of tracked parts" msgstr "" -#: build/serializers.py:1011 +#: build/serializers.py:1019 msgid "Build output cannot be specified for allocation of untracked parts" msgstr "" -#: build/serializers.py:1035 order/serializers.py:1860 +#: build/serializers.py:1043 order/serializers.py:1874 msgid "Allocation items must be provided" msgstr "" -#: build/serializers.py:1099 +#: build/serializers.py:1107 msgid "Stock location where parts are to be sourced (leave blank to take from any location)" msgstr "" -#: build/serializers.py:1108 +#: build/serializers.py:1116 msgid "Exclude Location" msgstr "" -#: build/serializers.py:1109 +#: build/serializers.py:1117 msgid "Exclude stock items from this selected location" msgstr "" -#: build/serializers.py:1114 +#: build/serializers.py:1122 msgid "Interchangeable Stock" msgstr "" -#: build/serializers.py:1115 +#: build/serializers.py:1123 msgid "Stock items in multiple locations can be used interchangeably" msgstr "" -#: build/serializers.py:1120 +#: build/serializers.py:1128 msgid "Substitute Stock" msgstr "" -#: build/serializers.py:1121 +#: build/serializers.py:1129 msgid "Allow allocation of substitute parts" msgstr "" -#: build/serializers.py:1126 +#: build/serializers.py:1134 msgid "Optional Items" msgstr "" -#: build/serializers.py:1127 +#: build/serializers.py:1135 msgid "Allocate optional BOM items to build order" msgstr "" -#: build/serializers.py:1148 +#: build/serializers.py:1156 msgid "Failed to start auto-allocation task" msgstr "" -#: build/serializers.py:1200 +#: build/serializers.py:1208 msgid "BOM Reference" msgstr "" -#: build/serializers.py:1206 +#: build/serializers.py:1214 msgid "BOM Part ID" msgstr "" -#: build/serializers.py:1213 +#: build/serializers.py:1221 msgid "BOM Part Name" msgstr "" -#: build/serializers.py:1266 build/serializers.py:1449 +#: build/serializers.py:1274 build/serializers.py:1457 msgid "Build" msgstr "" -#: build/serializers.py:1276 company/models.py:685 order/api.py:311 -#: order/api.py:316 order/api.py:543 order/serializers.py:650 +#: build/serializers.py:1284 company/models.py:639 order/api.py:316 +#: order/api.py:321 order/api.py:549 order/serializers.py:661 #: stock/models.py:1036 stock/serializers.py:579 msgid "Supplier Part" msgstr "" -#: build/serializers.py:1284 stock/serializers.py:620 +#: build/serializers.py:1292 stock/serializers.py:620 msgid "Allocated Quantity" msgstr "" -#: build/serializers.py:1351 +#: build/serializers.py:1359 msgid "Build Reference" msgstr "" -#: build/serializers.py:1361 +#: build/serializers.py:1369 msgid "Part Category Name" msgstr "" -#: build/serializers.py:1383 common/setting/system.py:480 part/models.py:1214 +#: build/serializers.py:1391 common/setting/system.py:480 part/models.py:1302 msgid "Trackable" msgstr "" -#: build/serializers.py:1386 +#: build/serializers.py:1394 msgid "Inherited" msgstr "" -#: build/serializers.py:1389 part/models.py:4475 +#: build/serializers.py:1397 part/models.py:4100 msgid "Allow Variants" msgstr "" -#: build/serializers.py:1395 build/serializers.py:1400 part/models.py:4208 -#: part/models.py:4779 stock/api.py:882 +#: build/serializers.py:1403 build/serializers.py:1408 part/models.py:3833 +#: part/models.py:4404 stock/api.py:882 msgid "BOM Item" msgstr "" -#: build/serializers.py:1467 order/serializers.py:1282 part/serializers.py:1310 -#: part/serializers.py:1765 +#: build/serializers.py:1475 order/serializers.py:1296 part/serializers.py:1175 +#: part/serializers.py:1630 msgid "In Production" msgstr "" -#: build/serializers.py:1469 part/serializers.py:950 part/serializers.py:1314 +#: build/serializers.py:1477 part/serializers.py:835 part/serializers.py:1179 msgid "Scheduled to Build" msgstr "" -#: build/serializers.py:1472 part/serializers.py:987 +#: build/serializers.py:1480 part/serializers.py:872 msgid "External Stock" msgstr "" -#: build/serializers.py:1473 part/serializers.py:1300 part/serializers.py:1808 +#: build/serializers.py:1481 part/serializers.py:1165 part/serializers.py:1673 msgid "Available Stock" msgstr "" -#: build/serializers.py:1475 +#: build/serializers.py:1483 msgid "Available Substitute Stock" msgstr "" -#: build/serializers.py:1478 +#: build/serializers.py:1486 msgid "Available Variant Stock" msgstr "" -#: build/serializers.py:1752 +#: build/serializers.py:1760 msgid "Consumed quantity exceeds allocated quantity" msgstr "" -#: build/serializers.py:1789 +#: build/serializers.py:1797 msgid "Optional notes for the stock consumption" msgstr "" -#: build/serializers.py:1806 +#: build/serializers.py:1814 msgid "Build item must point to the correct build order" msgstr "" -#: build/serializers.py:1811 +#: build/serializers.py:1819 msgid "Duplicate build item allocation" msgstr "" -#: build/serializers.py:1829 +#: build/serializers.py:1837 msgid "Build line must point to the correct build order" msgstr "" -#: build/serializers.py:1834 +#: build/serializers.py:1842 msgid "Duplicate build line allocation" msgstr "" -#: build/serializers.py:1846 +#: build/serializers.py:1854 msgid "At least one item or line must be provided" msgstr "" @@ -1482,702 +1498,826 @@ msgstr "" msgid "Build order {bo} is now overdue" msgstr "" -#: common/api.py:694 +#: common/api.py:701 msgid "Is Link" msgstr "" -#: common/api.py:702 +#: common/api.py:709 msgid "Is File" msgstr "" -#: common/api.py:745 +#: common/api.py:756 msgid "User does not have permission to delete these attachments" msgstr "" -#: common/api.py:762 +#: common/api.py:769 msgid "User does not have permission to delete this attachment" msgstr "" -#: common/currency.py:122 +#: common/currency.py:130 msgid "Invalid currency code" msgstr "" -#: common/currency.py:124 +#: common/currency.py:132 msgid "Duplicate currency code" msgstr "" -#: common/currency.py:129 +#: common/currency.py:137 msgid "No valid currency codes provided" msgstr "" -#: common/currency.py:146 +#: common/currency.py:154 msgid "No plugin" msgstr "" -#: common/models.py:101 common/models.py:126 common/models.py:2729 +#: common/models.py:105 common/models.py:130 common/models.py:3150 msgid "Updated" msgstr "" -#: common/models.py:102 common/models.py:127 +#: common/models.py:106 common/models.py:131 msgid "Timestamp of last update" msgstr "" -#: common/models.py:139 +#: common/models.py:143 msgid "Update By" msgstr "" -#: common/models.py:140 +#: common/models.py:144 msgid "User who last updated this object" msgstr "" -#: common/models.py:165 +#: common/models.py:169 msgid "Unique project code" msgstr "" -#: common/models.py:172 +#: common/models.py:176 msgid "Project description" msgstr "" -#: common/models.py:181 +#: common/models.py:185 msgid "User or group responsible for this project" msgstr "" -#: common/models.py:771 common/models.py:1272 common/models.py:1310 +#: common/models.py:775 common/models.py:1276 common/models.py:1314 msgid "Settings key" msgstr "" -#: common/models.py:775 +#: common/models.py:779 msgid "Settings value" msgstr "" -#: common/models.py:830 +#: common/models.py:834 msgid "Chosen value is not a valid option" msgstr "" -#: common/models.py:846 +#: common/models.py:850 msgid "Value must be a boolean value" msgstr "" -#: common/models.py:854 +#: common/models.py:858 msgid "Value must be an integer value" msgstr "" -#: common/models.py:862 +#: common/models.py:866 msgid "Value must be a valid number" msgstr "" -#: common/models.py:887 +#: common/models.py:891 msgid "Value does not pass validation checks" msgstr "" -#: common/models.py:909 +#: common/models.py:913 msgid "Key string must be unique" msgstr "" -#: common/models.py:1318 common/models.py:1319 common/models.py:1423 -#: common/models.py:1424 common/models.py:1669 common/models.py:1670 -#: common/models.py:2000 common/models.py:2001 common/models.py:2382 -#: importer/models.py:100 part/models.py:3547 part/models.py:3575 +#: common/models.py:1322 common/models.py:1323 common/models.py:1427 +#: common/models.py:1428 common/models.py:1673 common/models.py:1674 +#: common/models.py:2006 common/models.py:2007 common/models.py:2803 +#: importer/models.py:100 part/models.py:3611 part/models.py:3639 #: plugin/models.py:355 plugin/models.py:356 #: report/templates/report/inventree_test_report.html:105 users/models.py:124 #: users/models.py:501 msgid "User" msgstr "Uporabnik" -#: common/models.py:1341 +#: common/models.py:1345 msgid "Price break quantity" msgstr "" -#: common/models.py:1348 company/serializers.py:564 order/models.py:1842 -#: order/models.py:3043 +#: common/models.py:1352 company/serializers.py:349 order/models.py:1843 +#: order/models.py:3044 msgid "Price" msgstr "" -#: common/models.py:1349 +#: common/models.py:1353 msgid "Unit price at specified quantity" msgstr "" -#: common/models.py:1400 common/models.py:1585 +#: common/models.py:1404 common/models.py:1589 msgid "Endpoint" msgstr "" -#: common/models.py:1401 +#: common/models.py:1405 msgid "Endpoint at which this webhook is received" msgstr "" -#: common/models.py:1411 +#: common/models.py:1415 msgid "Name for this webhook" msgstr "" -#: common/models.py:1415 common/models.py:2241 common/models.py:2348 -#: company/models.py:191 company/models.py:822 machine/models.py:40 -#: part/models.py:1237 plugin/models.py:69 stock/api.py:642 users/models.py:195 +#: common/models.py:1419 common/models.py:2247 common/models.py:2354 +#: company/models.py:192 company/models.py:776 machine/models.py:40 +#: part/models.py:1325 plugin/models.py:69 stock/api.py:642 users/models.py:195 #: users/models.py:554 users/serializers.py:314 msgid "Active" msgstr "Aktivno" -#: common/models.py:1415 +#: common/models.py:1419 msgid "Is this webhook active" msgstr "" -#: common/models.py:1431 users/models.py:172 +#: common/models.py:1435 users/models.py:172 msgid "Token" msgstr "" -#: common/models.py:1432 +#: common/models.py:1436 msgid "Token for access" msgstr "" -#: common/models.py:1440 +#: common/models.py:1444 msgid "Secret" msgstr "" -#: common/models.py:1441 +#: common/models.py:1445 msgid "Shared secret for HMAC" msgstr "" -#: common/models.py:1549 common/models.py:2619 +#: common/models.py:1553 common/models.py:3040 msgid "Message ID" msgstr "" -#: common/models.py:1550 common/models.py:2609 +#: common/models.py:1554 common/models.py:3030 msgid "Unique identifier for this message" msgstr "" -#: common/models.py:1558 +#: common/models.py:1562 msgid "Host" msgstr "" -#: common/models.py:1559 +#: common/models.py:1563 msgid "Host from which this message was received" msgstr "" -#: common/models.py:1567 +#: common/models.py:1571 msgid "Header" msgstr "" -#: common/models.py:1568 +#: common/models.py:1572 msgid "Header of this message" msgstr "" -#: common/models.py:1575 +#: common/models.py:1579 msgid "Body" msgstr "" -#: common/models.py:1576 +#: common/models.py:1580 msgid "Body of this message" msgstr "" -#: common/models.py:1586 +#: common/models.py:1590 msgid "Endpoint on which this message was received" msgstr "" -#: common/models.py:1591 +#: common/models.py:1595 msgid "Worked on" msgstr "" -#: common/models.py:1592 +#: common/models.py:1596 msgid "Was the work on this message finished?" msgstr "" -#: common/models.py:1718 +#: common/models.py:1722 msgid "Id" msgstr "" -#: common/models.py:1720 +#: common/models.py:1724 msgid "Title" msgstr "" -#: common/models.py:1722 common/models.py:1983 company/models.py:185 -#: company/models.py:467 company/models.py:534 company/models.py:839 -#: order/models.py:457 order/models.py:1786 order/models.py:2343 -#: part/models.py:1113 +#: common/models.py:1726 common/models.py:1989 company/models.py:186 +#: company/models.py:468 company/models.py:536 company/models.py:793 +#: order/models.py:458 order/models.py:1787 order/models.py:2344 +#: part/models.py:1201 #: report/templates/report/inventree_build_order_report.html:164 msgid "Link" msgstr "Povezava" -#: common/models.py:1724 +#: common/models.py:1728 msgid "Published" msgstr "" -#: common/models.py:1726 +#: common/models.py:1730 msgid "Author" msgstr "" -#: common/models.py:1728 +#: common/models.py:1732 msgid "Summary" msgstr "" -#: common/models.py:1731 common/models.py:2586 +#: common/models.py:1735 common/models.py:3007 msgid "Read" msgstr "" -#: common/models.py:1731 +#: common/models.py:1735 msgid "Was this news item read?" msgstr "" -#: common/models.py:1748 +#: common/models.py:1752 msgid "Image file" msgstr "" -#: common/models.py:1760 +#: common/models.py:1764 msgid "Target model type for this image" msgstr "" -#: common/models.py:1764 +#: common/models.py:1768 msgid "Target model ID for this image" msgstr "" -#: common/models.py:1786 +#: common/models.py:1790 msgid "Custom Unit" msgstr "" -#: common/models.py:1804 +#: common/models.py:1808 msgid "Unit symbol must be unique" msgstr "" -#: common/models.py:1819 +#: common/models.py:1823 msgid "Unit name must be a valid identifier" msgstr "" -#: common/models.py:1838 +#: common/models.py:1842 msgid "Unit name" msgstr "" -#: common/models.py:1845 +#: common/models.py:1849 msgid "Symbol" msgstr "" -#: common/models.py:1846 +#: common/models.py:1850 msgid "Optional unit symbol" msgstr "" -#: common/models.py:1852 +#: common/models.py:1856 msgid "Definition" msgstr "" -#: common/models.py:1853 +#: common/models.py:1857 msgid "Unit definition" msgstr "" -#: common/models.py:1911 common/models.py:1974 stock/models.py:2967 +#: common/models.py:1917 common/models.py:1980 stock/models.py:2984 #: stock/serializers.py:247 msgid "Attachment" msgstr "Priloga" -#: common/models.py:1928 +#: common/models.py:1934 msgid "Missing file" msgstr "Manjka datoteka" -#: common/models.py:1929 +#: common/models.py:1935 msgid "Missing external link" msgstr "Manjka zunanja povezava" -#: common/models.py:1966 +#: common/models.py:1972 common/models.py:2488 msgid "Model type" msgstr "" -#: common/models.py:1967 +#: common/models.py:1973 msgid "Target model type for image" msgstr "" -#: common/models.py:1975 +#: common/models.py:1981 msgid "Select file to attach" msgstr "Izberite prilogo" -#: common/models.py:1991 +#: common/models.py:1997 msgid "Comment" msgstr "Komentar" -#: common/models.py:1992 +#: common/models.py:1998 msgid "Attachment comment" msgstr "" -#: common/models.py:2008 +#: common/models.py:2014 msgid "Upload date" msgstr "" -#: common/models.py:2009 +#: common/models.py:2015 msgid "Date the file was uploaded" msgstr "" -#: common/models.py:2013 +#: common/models.py:2019 msgid "File size" msgstr "" -#: common/models.py:2013 +#: common/models.py:2019 msgid "File size in bytes" msgstr "" -#: common/models.py:2051 common/serializers.py:684 +#: common/models.py:2057 common/serializers.py:688 msgid "Invalid model type specified for attachment" msgstr "" -#: common/models.py:2072 +#: common/models.py:2078 msgid "Custom State" msgstr "" -#: common/models.py:2073 +#: common/models.py:2079 msgid "Custom States" msgstr "" -#: common/models.py:2078 +#: common/models.py:2084 msgid "Reference Status Set" msgstr "" -#: common/models.py:2079 +#: common/models.py:2085 msgid "Status set that is extended with this custom state" msgstr "" -#: common/models.py:2083 generic/states/serializers.py:18 +#: common/models.py:2089 generic/states/serializers.py:18 msgid "Logical Key" msgstr "" -#: common/models.py:2085 +#: common/models.py:2091 msgid "State logical key that is equal to this custom state in business logic" msgstr "" -#: common/models.py:2090 common/models.py:2329 company/models.py:622 -#: machine/serializers.py:27 -#: report/templates/report/inventree_test_report.html:104 stock/models.py:2959 +#: common/models.py:2096 common/models.py:2335 machine/serializers.py:27 +#: report/templates/report/inventree_test_report.html:104 stock/models.py:2976 msgid "Value" msgstr "" -#: common/models.py:2091 +#: common/models.py:2097 msgid "Numerical value that will be saved in the models database" msgstr "" -#: common/models.py:2097 +#: common/models.py:2103 msgid "Name of the state" msgstr "" -#: common/models.py:2106 common/models.py:2335 generic/states/serializers.py:22 +#: common/models.py:2112 common/models.py:2341 generic/states/serializers.py:22 msgid "Label" msgstr "" -#: common/models.py:2107 +#: common/models.py:2113 msgid "Label that will be displayed in the frontend" msgstr "" -#: common/models.py:2114 generic/states/serializers.py:24 +#: common/models.py:2120 generic/states/serializers.py:24 msgid "Color" msgstr "" -#: common/models.py:2115 +#: common/models.py:2121 msgid "Color that will be displayed in the frontend" msgstr "" -#: common/models.py:2123 +#: common/models.py:2129 msgid "Model" msgstr "" -#: common/models.py:2124 +#: common/models.py:2130 msgid "Model this state is associated with" msgstr "" -#: common/models.py:2139 +#: common/models.py:2145 msgid "Model must be selected" msgstr "" -#: common/models.py:2142 +#: common/models.py:2148 msgid "Key must be selected" msgstr "" -#: common/models.py:2145 +#: common/models.py:2151 msgid "Logical key must be selected" msgstr "" -#: common/models.py:2149 +#: common/models.py:2155 msgid "Key must be different from logical key" msgstr "" -#: common/models.py:2156 +#: common/models.py:2162 msgid "Valid reference status class must be provided" msgstr "" -#: common/models.py:2162 +#: common/models.py:2168 msgid "Key must be different from the logical keys of the reference status" msgstr "" -#: common/models.py:2169 +#: common/models.py:2175 msgid "Logical key must be in the logical keys of the reference status" msgstr "" -#: common/models.py:2176 +#: common/models.py:2182 msgid "Name must be different from the names of the reference status" msgstr "" -#: common/models.py:2216 common/models.py:2323 part/models.py:3889 +#: common/models.py:2222 common/models.py:2329 common/models.py:2533 msgid "Selection List" msgstr "" -#: common/models.py:2217 +#: common/models.py:2223 msgid "Selection Lists" msgstr "" -#: common/models.py:2222 +#: common/models.py:2228 msgid "Name of the selection list" msgstr "" -#: common/models.py:2229 +#: common/models.py:2235 msgid "Description of the selection list" msgstr "" -#: common/models.py:2235 part/models.py:1242 +#: common/models.py:2241 part/models.py:1330 msgid "Locked" msgstr "" -#: common/models.py:2236 +#: common/models.py:2242 msgid "Is this selection list locked?" msgstr "" -#: common/models.py:2242 +#: common/models.py:2248 msgid "Can this selection list be used?" msgstr "" -#: common/models.py:2250 +#: common/models.py:2256 msgid "Source Plugin" msgstr "" -#: common/models.py:2251 +#: common/models.py:2257 msgid "Plugin which provides the selection list" msgstr "" -#: common/models.py:2256 +#: common/models.py:2262 msgid "Source String" msgstr "" -#: common/models.py:2257 +#: common/models.py:2263 msgid "Optional string identifying the source used for this list" msgstr "" -#: common/models.py:2266 +#: common/models.py:2272 msgid "Default Entry" msgstr "" -#: common/models.py:2267 +#: common/models.py:2273 msgid "Default entry for this selection list" msgstr "" -#: common/models.py:2272 common/models.py:2724 +#: common/models.py:2278 common/models.py:3145 msgid "Created" msgstr "" -#: common/models.py:2273 +#: common/models.py:2279 msgid "Date and time that the selection list was created" msgstr "" -#: common/models.py:2278 +#: common/models.py:2284 msgid "Last Updated" msgstr "" -#: common/models.py:2279 +#: common/models.py:2285 msgid "Date and time that the selection list was last updated" msgstr "" -#: common/models.py:2313 +#: common/models.py:2319 msgid "Selection List Entry" msgstr "" -#: common/models.py:2314 +#: common/models.py:2320 msgid "Selection List Entries" msgstr "" -#: common/models.py:2324 +#: common/models.py:2330 msgid "Selection list to which this entry belongs" msgstr "" -#: common/models.py:2330 +#: common/models.py:2336 msgid "Value of the selection list entry" msgstr "" -#: common/models.py:2336 +#: common/models.py:2342 msgid "Label for the selection list entry" msgstr "" -#: common/models.py:2342 +#: common/models.py:2348 msgid "Description of the selection list entry" msgstr "" -#: common/models.py:2349 +#: common/models.py:2355 msgid "Is this selection list entry active?" msgstr "" -#: common/models.py:2367 -msgid "Barcode Scan" +#: common/models.py:2387 +msgid "Parameter Template" msgstr "" -#: common/models.py:2371 importer/models.py:546 part/models.py:4060 -msgid "Data" +#: common/models.py:2388 +msgid "Parameter Templates" msgstr "" -#: common/models.py:2372 -msgid "Barcode data" +#: common/models.py:2425 +msgid "Checkbox parameters cannot have units" msgstr "" -#: common/models.py:2383 -msgid "User who scanned the barcode" +#: common/models.py:2430 +msgid "Checkbox parameters cannot have choices" msgstr "" -#: common/models.py:2388 importer/models.py:69 -msgid "Timestamp" +#: common/models.py:2450 part/models.py:3707 +msgid "Choices must be unique" msgstr "" -#: common/models.py:2389 -msgid "Date and time of the barcode scan" +#: common/models.py:2467 +msgid "Parameter template name must be unique" msgstr "" -#: common/models.py:2395 -msgid "URL endpoint which processed the barcode" +#: common/models.py:2489 +msgid "Target model type for this parameter template" msgstr "" -#: common/models.py:2402 order/models.py:1832 plugin/serializers.py:93 -msgid "Context" +#: common/models.py:2495 +msgid "Parameter Name" msgstr "" -#: common/models.py:2403 -msgid "Context data for the barcode scan" +#: common/models.py:2501 part/models.py:1283 +msgid "Units" msgstr "" -#: common/models.py:2410 -msgid "Response" +#: common/models.py:2502 +msgid "Physical units for this parameter" msgstr "" -#: common/models.py:2411 -msgid "Response data from the barcode scan" +#: common/models.py:2510 +msgid "Parameter description" msgstr "" -#: common/models.py:2417 report/templates/report/inventree_test_report.html:103 -#: stock/models.py:2953 -msgid "Result" +#: common/models.py:2516 +msgid "Checkbox" msgstr "" -#: common/models.py:2418 -msgid "Was the barcode scan successful?" +#: common/models.py:2517 +msgid "Is this parameter a checkbox?" msgstr "" -#: common/models.py:2500 -msgid "An error occurred" +#: common/models.py:2522 part/models.py:3794 +msgid "Choices" msgstr "" -#: common/models.py:2521 -msgid "INVE-E8: Email log deletion is protected. Set INVENTREE_PROTECT_EMAIL_LOG to False to allow deletion." +#: common/models.py:2523 +msgid "Valid choices for this parameter (comma-separated)" msgstr "" -#: common/models.py:2568 -msgid "Email Message" +#: common/models.py:2534 +msgid "Selection list for this parameter" msgstr "" -#: common/models.py:2569 -msgid "Email Messages" +#: common/models.py:2539 part/models.py:3769 report/models.py:287 +msgid "Enabled" msgstr "" -#: common/models.py:2576 -msgid "Announced" +#: common/models.py:2540 +msgid "Is this parameter template enabled?" msgstr "" -#: common/models.py:2578 -msgid "Sent" -msgstr "" - -#: common/models.py:2579 -msgid "Failed" +#: common/models.py:2581 +msgid "Parameter" msgstr "" #: common/models.py:2582 -msgid "Delivered" -msgstr "" - -#: common/models.py:2590 -msgid "Confirmed" -msgstr "" - -#: common/models.py:2596 -msgid "Inbound" -msgstr "" - -#: common/models.py:2597 -msgid "Outbound" -msgstr "" - -#: common/models.py:2602 -msgid "No Reply" -msgstr "" - -#: common/models.py:2603 -msgid "Track Delivery" -msgstr "" - -#: common/models.py:2604 -msgid "Track Read" -msgstr "" - -#: common/models.py:2605 -msgid "Track Click" -msgstr "" - -#: common/models.py:2608 common/models.py:2711 -msgid "Global ID" -msgstr "" - -#: common/models.py:2621 -msgid "Identifier for this message (might be supplied by external system)" +msgid "Parameters" msgstr "" #: common/models.py:2628 +msgid "Invalid choice for parameter value" +msgstr "" + +#: common/models.py:2698 common/serializers.py:783 +msgid "Invalid model type specified for parameter" +msgstr "" + +#: common/models.py:2734 +msgid "Model ID" +msgstr "" + +#: common/models.py:2735 +msgid "ID of the target model for this parameter" +msgstr "" + +#: common/models.py:2744 common/setting/system.py:450 report/models.py:373 +#: report/models.py:669 report/serializers.py:94 report/serializers.py:135 +#: stock/serializers.py:234 +msgid "Template" +msgstr "" + +#: common/models.py:2745 +msgid "Parameter template" +msgstr "" + +#: common/models.py:2750 common/models.py:2792 importer/models.py:546 +msgid "Data" +msgstr "" + +#: common/models.py:2751 +msgid "Parameter Value" +msgstr "" + +#: common/models.py:2760 company/models.py:810 order/serializers.py:894 +#: order/serializers.py:2064 part/models.py:4075 part/models.py:4444 +#: report/templates/report/inventree_bill_of_materials_report.html:140 +#: report/templates/report/inventree_purchase_order_report.html:39 +#: report/templates/report/inventree_return_order_report.html:27 +#: report/templates/report/inventree_sales_order_report.html:32 +#: report/templates/report/inventree_stock_location_report.html:105 +#: stock/serializers.py:813 +msgid "Note" +msgstr "" + +#: common/models.py:2761 stock/serializers.py:718 +msgid "Optional note field" +msgstr "" + +#: common/models.py:2788 +msgid "Barcode Scan" +msgstr "" + +#: common/models.py:2793 +msgid "Barcode data" +msgstr "" + +#: common/models.py:2804 +msgid "User who scanned the barcode" +msgstr "" + +#: common/models.py:2809 importer/models.py:69 +msgid "Timestamp" +msgstr "" + +#: common/models.py:2810 +msgid "Date and time of the barcode scan" +msgstr "" + +#: common/models.py:2816 +msgid "URL endpoint which processed the barcode" +msgstr "" + +#: common/models.py:2823 order/models.py:1833 plugin/serializers.py:93 +msgid "Context" +msgstr "" + +#: common/models.py:2824 +msgid "Context data for the barcode scan" +msgstr "" + +#: common/models.py:2831 +msgid "Response" +msgstr "" + +#: common/models.py:2832 +msgid "Response data from the barcode scan" +msgstr "" + +#: common/models.py:2838 report/templates/report/inventree_test_report.html:103 +#: stock/models.py:2970 +msgid "Result" +msgstr "" + +#: common/models.py:2839 +msgid "Was the barcode scan successful?" +msgstr "" + +#: common/models.py:2921 +msgid "An error occurred" +msgstr "" + +#: common/models.py:2942 +msgid "INVE-E8: Email log deletion is protected. Set INVENTREE_PROTECT_EMAIL_LOG to False to allow deletion." +msgstr "" + +#: common/models.py:2989 +msgid "Email Message" +msgstr "" + +#: common/models.py:2990 +msgid "Email Messages" +msgstr "" + +#: common/models.py:2997 +msgid "Announced" +msgstr "" + +#: common/models.py:2999 +msgid "Sent" +msgstr "" + +#: common/models.py:3000 +msgid "Failed" +msgstr "" + +#: common/models.py:3003 +msgid "Delivered" +msgstr "" + +#: common/models.py:3011 +msgid "Confirmed" +msgstr "" + +#: common/models.py:3017 +msgid "Inbound" +msgstr "" + +#: common/models.py:3018 +msgid "Outbound" +msgstr "" + +#: common/models.py:3023 +msgid "No Reply" +msgstr "" + +#: common/models.py:3024 +msgid "Track Delivery" +msgstr "" + +#: common/models.py:3025 +msgid "Track Read" +msgstr "" + +#: common/models.py:3026 +msgid "Track Click" +msgstr "" + +#: common/models.py:3029 common/models.py:3132 +msgid "Global ID" +msgstr "" + +#: common/models.py:3042 +msgid "Identifier for this message (might be supplied by external system)" +msgstr "" + +#: common/models.py:3049 msgid "Thread ID" msgstr "" -#: common/models.py:2630 +#: common/models.py:3051 msgid "Identifier for this message thread (might be supplied by external system)" msgstr "" -#: common/models.py:2639 +#: common/models.py:3060 msgid "Thread" msgstr "" -#: common/models.py:2640 +#: common/models.py:3061 msgid "Linked thread for this message" msgstr "" -#: common/models.py:2656 -msgid "Prioriy" +#: common/models.py:3077 +msgid "Priority" msgstr "" -#: common/models.py:2698 +#: common/models.py:3119 msgid "Email Thread" msgstr "" -#: common/models.py:2699 +#: common/models.py:3120 msgid "Email Threads" msgstr "" -#: common/models.py:2705 generic/states/serializers.py:16 +#: common/models.py:3126 generic/states/serializers.py:16 #: machine/serializers.py:24 plugin/models.py:46 users/models.py:113 msgid "Key" msgstr "" -#: common/models.py:2708 +#: common/models.py:3129 msgid "Unique key for this thread (used to identify the thread)" msgstr "" -#: common/models.py:2712 +#: common/models.py:3133 msgid "Unique identifier for this thread" msgstr "" -#: common/models.py:2719 +#: common/models.py:3140 msgid "Started Internal" msgstr "" -#: common/models.py:2720 +#: common/models.py:3141 msgid "Was this thread started internally?" msgstr "" -#: common/models.py:2725 +#: common/models.py:3146 msgid "Date and time that the thread was created" msgstr "" -#: common/models.py:2730 +#: common/models.py:3151 msgid "Date and time that the thread was last updated" msgstr "" @@ -2199,7 +2339,7 @@ msgstr "" msgid "A order that is assigned to you was canceled" msgstr "" -#: common/notifications.py:73 common/notifications.py:80 order/api.py:594 +#: common/notifications.py:73 common/notifications.py:80 order/api.py:600 msgid "Items Received" msgstr "" @@ -2211,88 +2351,93 @@ msgstr "" msgid "Items have been received against a return order" msgstr "" -#: common/serializers.py:145 +#: common/serializers.py:149 msgid "Indicates if the setting is overridden by an environment variable" msgstr "" -#: common/serializers.py:147 +#: common/serializers.py:151 msgid "Override" msgstr "" -#: common/serializers.py:498 +#: common/serializers.py:502 msgid "Is Running" msgstr "" -#: common/serializers.py:504 +#: common/serializers.py:508 msgid "Pending Tasks" msgstr "" -#: common/serializers.py:510 +#: common/serializers.py:514 msgid "Scheduled Tasks" msgstr "" -#: common/serializers.py:516 +#: common/serializers.py:520 msgid "Failed Tasks" msgstr "" -#: common/serializers.py:531 +#: common/serializers.py:535 msgid "Task ID" msgstr "" -#: common/serializers.py:531 +#: common/serializers.py:535 msgid "Unique task ID" msgstr "" -#: common/serializers.py:533 +#: common/serializers.py:537 msgid "Lock" msgstr "" -#: common/serializers.py:533 +#: common/serializers.py:537 msgid "Lock time" msgstr "" -#: common/serializers.py:535 +#: common/serializers.py:539 msgid "Task name" msgstr "" -#: common/serializers.py:537 +#: common/serializers.py:541 msgid "Function" msgstr "" -#: common/serializers.py:537 +#: common/serializers.py:541 msgid "Function name" msgstr "" -#: common/serializers.py:539 +#: common/serializers.py:543 msgid "Arguments" msgstr "" -#: common/serializers.py:539 +#: common/serializers.py:543 msgid "Task arguments" msgstr "" -#: common/serializers.py:542 +#: common/serializers.py:546 msgid "Keyword Arguments" msgstr "" -#: common/serializers.py:542 +#: common/serializers.py:546 msgid "Task keyword arguments" msgstr "" -#: common/serializers.py:652 +#: common/serializers.py:656 msgid "Filename" msgstr "Ime datoteke" -#: common/serializers.py:659 importer/models.py:89 report/api.py:41 +#: common/serializers.py:663 common/serializers.py:730 +#: common/serializers.py:805 importer/models.py:89 report/api.py:41 #: report/models.py:293 report/serializers.py:52 msgid "Model Type" msgstr "" -#: common/serializers.py:687 +#: common/serializers.py:691 msgid "User does not have permission to create or edit attachments for this model" msgstr "" -#: common/serializers.py:731 common/serializers.py:834 +#: common/serializers.py:786 +msgid "User does not have permission to create or edit parameters for this model" +msgstr "" + +#: common/serializers.py:850 common/serializers.py:953 msgid "Selection list is locked" msgstr "" @@ -2368,7 +2513,7 @@ msgstr "" msgid "Show the `about` modal only to superusers" msgstr "" -#: common/setting/system.py:224 company/models.py:144 company/models.py:145 +#: common/setting/system.py:224 company/models.py:145 company/models.py:146 msgid "Company name" msgstr "" @@ -2411,8 +2556,8 @@ msgstr "" #: common/setting/system.py:253 common/setting/system.py:293 #: common/setting/system.py:306 common/setting/system.py:314 #: common/setting/system.py:321 common/setting/system.py:330 -#: common/setting/system.py:339 common/setting/system.py:588 -#: common/setting/system.py:616 common/setting/system.py:707 +#: common/setting/system.py:339 common/setting/system.py:580 +#: common/setting/system.py:608 common/setting/system.py:707 #: common/setting/system.py:1103 common/setting/system.py:1119 msgid "days" msgstr "" @@ -2657,12 +2802,6 @@ msgstr "" msgid "Copy category parameter templates when creating a part" msgstr "" -#: common/setting/system.py:450 part/models.py:4054 report/models.py:373 -#: report/models.py:669 report/serializers.py:94 report/serializers.py:135 -#: stock/serializers.py:234 -msgid "Template" -msgstr "" - #: common/setting/system.py:451 msgid "Parts are templates by default" msgstr "" @@ -2671,8 +2810,8 @@ msgstr "" msgid "Parts can be assembled from other components by default" msgstr "" -#: common/setting/system.py:462 part/models.py:1208 part/serializers.py:1734 -#: part/serializers.py:1741 +#: common/setting/system.py:462 part/models.py:1296 part/serializers.py:1599 +#: part/serializers.py:1606 msgid "Component" msgstr "" @@ -2680,7 +2819,7 @@ msgstr "" msgid "Parts can be used as sub-components by default" msgstr "" -#: common/setting/system.py:468 part/models.py:1226 +#: common/setting/system.py:468 part/models.py:1314 msgid "Purchaseable" msgstr "" @@ -2688,7 +2827,7 @@ msgstr "" msgid "Parts are purchaseable by default" msgstr "" -#: common/setting/system.py:474 part/models.py:1232 stock/api.py:643 +#: common/setting/system.py:474 part/models.py:1320 stock/api.py:643 msgid "Salable" msgstr "" @@ -2700,7 +2839,7 @@ msgstr "" msgid "Parts are trackable by default" msgstr "" -#: common/setting/system.py:486 part/models.py:1248 +#: common/setting/system.py:486 part/models.py:1336 msgid "Virtual" msgstr "" @@ -2749,158 +2888,158 @@ msgid "Part category default icon (empty means no icon)" msgstr "" #: common/setting/system.py:525 -msgid "Enforce Parameter Units" -msgstr "" - -#: common/setting/system.py:527 -msgid "If units are provided, parameter values must match the specified units" -msgstr "" - -#: common/setting/system.py:533 msgid "Minimum Pricing Decimal Places" msgstr "" -#: common/setting/system.py:535 +#: common/setting/system.py:527 msgid "Minimum number of decimal places to display when rendering pricing data" msgstr "" -#: common/setting/system.py:546 +#: common/setting/system.py:538 msgid "Maximum Pricing Decimal Places" msgstr "" -#: common/setting/system.py:548 +#: common/setting/system.py:540 msgid "Maximum number of decimal places to display when rendering pricing data" msgstr "" -#: common/setting/system.py:559 +#: common/setting/system.py:551 msgid "Use Supplier Pricing" msgstr "" -#: common/setting/system.py:561 +#: common/setting/system.py:553 msgid "Include supplier price breaks in overall pricing calculations" msgstr "" -#: common/setting/system.py:567 +#: common/setting/system.py:559 msgid "Purchase History Override" msgstr "" -#: common/setting/system.py:569 +#: common/setting/system.py:561 msgid "Historical purchase order pricing overrides supplier price breaks" msgstr "" -#: common/setting/system.py:575 +#: common/setting/system.py:567 msgid "Use Stock Item Pricing" msgstr "" -#: common/setting/system.py:577 +#: common/setting/system.py:569 msgid "Use pricing from manually entered stock data for pricing calculations" msgstr "" -#: common/setting/system.py:583 +#: common/setting/system.py:575 msgid "Stock Item Pricing Age" msgstr "" -#: common/setting/system.py:585 +#: common/setting/system.py:577 msgid "Exclude stock items older than this number of days from pricing calculations" msgstr "" -#: common/setting/system.py:592 +#: common/setting/system.py:584 msgid "Use Variant Pricing" msgstr "" -#: common/setting/system.py:593 +#: common/setting/system.py:585 msgid "Include variant pricing in overall pricing calculations" msgstr "" -#: common/setting/system.py:598 +#: common/setting/system.py:590 msgid "Active Variants Only" msgstr "" -#: common/setting/system.py:600 +#: common/setting/system.py:592 msgid "Only use active variant parts for calculating variant pricing" msgstr "" -#: common/setting/system.py:606 +#: common/setting/system.py:598 msgid "Auto Update Pricing" msgstr "" -#: common/setting/system.py:608 +#: common/setting/system.py:600 msgid "Automatically update part pricing when internal data changes" msgstr "" -#: common/setting/system.py:614 +#: common/setting/system.py:606 msgid "Pricing Rebuild Interval" msgstr "" -#: common/setting/system.py:615 +#: common/setting/system.py:607 msgid "Number of days before part pricing is automatically updated" msgstr "" -#: common/setting/system.py:621 +#: common/setting/system.py:613 msgid "Internal Prices" msgstr "" -#: common/setting/system.py:622 +#: common/setting/system.py:614 msgid "Enable internal prices for parts" msgstr "" -#: common/setting/system.py:627 +#: common/setting/system.py:619 msgid "Internal Price Override" msgstr "" -#: common/setting/system.py:629 +#: common/setting/system.py:621 msgid "If available, internal prices override price range calculations" msgstr "" -#: common/setting/system.py:635 +#: common/setting/system.py:627 msgid "Enable label printing" msgstr "" -#: common/setting/system.py:636 +#: common/setting/system.py:628 msgid "Enable label printing from the web interface" msgstr "" -#: common/setting/system.py:641 +#: common/setting/system.py:633 msgid "Label Image DPI" msgstr "" -#: common/setting/system.py:643 +#: common/setting/system.py:635 msgid "DPI resolution when generating image files to supply to label printing plugins" msgstr "" -#: common/setting/system.py:649 +#: common/setting/system.py:641 msgid "Enable Reports" msgstr "" -#: common/setting/system.py:650 +#: common/setting/system.py:642 msgid "Enable generation of reports" msgstr "" -#: common/setting/system.py:655 +#: common/setting/system.py:647 msgid "Debug Mode" msgstr "" -#: common/setting/system.py:656 +#: common/setting/system.py:648 msgid "Generate reports in debug mode (HTML output)" msgstr "" -#: common/setting/system.py:661 +#: common/setting/system.py:653 msgid "Log Report Errors" msgstr "" -#: common/setting/system.py:662 +#: common/setting/system.py:654 msgid "Log errors which occur when generating reports" msgstr "" -#: common/setting/system.py:667 plugin/builtin/labels/label_sheet.py:29 +#: common/setting/system.py:659 plugin/builtin/labels/label_sheet.py:29 #: report/models.py:381 msgid "Page Size" msgstr "" -#: common/setting/system.py:668 +#: common/setting/system.py:660 msgid "Default page size for PDF reports" msgstr "" +#: common/setting/system.py:665 +msgid "Enforce Parameter Units" +msgstr "" + +#: common/setting/system.py:667 +msgid "If units are provided, parameter values must match the specified units" +msgstr "" + #: common/setting/system.py:673 msgid "Globally Unique Serials" msgstr "" @@ -3456,688 +3595,677 @@ msgid "Display PDF reports in the browser, instead of downloading as a file" msgstr "" #: common/setting/user.py:45 -msgid "Search Parts" +msgid "Barcode Scanner in Form Fields" msgstr "" #: common/setting/user.py:46 -msgid "Display parts in search preview window" +msgid "Allow barcode scanner input in form fields" msgstr "" #: common/setting/user.py:51 -msgid "Search Supplier Parts" +msgid "Search Parts" msgstr "" #: common/setting/user.py:52 -msgid "Display supplier parts in search preview window" +msgid "Display parts in search preview window" msgstr "" #: common/setting/user.py:57 -msgid "Search Manufacturer Parts" +msgid "Search Supplier Parts" msgstr "" #: common/setting/user.py:58 -msgid "Display manufacturer parts in search preview window" +msgid "Display supplier parts in search preview window" msgstr "" #: common/setting/user.py:63 -msgid "Hide Inactive Parts" +msgid "Search Manufacturer Parts" msgstr "" #: common/setting/user.py:64 -msgid "Excluded inactive parts from search preview window" +msgid "Display manufacturer parts in search preview window" msgstr "" #: common/setting/user.py:69 -msgid "Search Categories" +msgid "Hide Inactive Parts" msgstr "" #: common/setting/user.py:70 -msgid "Display part categories in search preview window" +msgid "Excluded inactive parts from search preview window" msgstr "" #: common/setting/user.py:75 -msgid "Search Stock" +msgid "Search Categories" msgstr "" #: common/setting/user.py:76 -msgid "Display stock items in search preview window" +msgid "Display part categories in search preview window" msgstr "" #: common/setting/user.py:81 +msgid "Search Stock" +msgstr "" + +#: common/setting/user.py:82 +msgid "Display stock items in search preview window" +msgstr "" + +#: common/setting/user.py:87 msgid "Hide Unavailable Stock Items" msgstr "" -#: common/setting/user.py:83 +#: common/setting/user.py:89 msgid "Exclude stock items which are not available from the search preview window" msgstr "" -#: common/setting/user.py:89 +#: common/setting/user.py:95 msgid "Search Locations" msgstr "" -#: common/setting/user.py:90 +#: common/setting/user.py:96 msgid "Display stock locations in search preview window" msgstr "" -#: common/setting/user.py:95 +#: common/setting/user.py:101 msgid "Search Companies" msgstr "" -#: common/setting/user.py:96 +#: common/setting/user.py:102 msgid "Display companies in search preview window" msgstr "" -#: common/setting/user.py:101 +#: common/setting/user.py:107 msgid "Search Build Orders" msgstr "" -#: common/setting/user.py:102 +#: common/setting/user.py:108 msgid "Display build orders in search preview window" msgstr "" -#: common/setting/user.py:107 +#: common/setting/user.py:113 msgid "Search Purchase Orders" msgstr "" -#: common/setting/user.py:108 +#: common/setting/user.py:114 msgid "Display purchase orders in search preview window" msgstr "" -#: common/setting/user.py:113 +#: common/setting/user.py:119 msgid "Exclude Inactive Purchase Orders" msgstr "" -#: common/setting/user.py:114 +#: common/setting/user.py:120 msgid "Exclude inactive purchase orders from search preview window" msgstr "" -#: common/setting/user.py:119 +#: common/setting/user.py:125 msgid "Search Sales Orders" msgstr "" -#: common/setting/user.py:120 +#: common/setting/user.py:126 msgid "Display sales orders in search preview window" msgstr "" -#: common/setting/user.py:125 +#: common/setting/user.py:131 msgid "Exclude Inactive Sales Orders" msgstr "" -#: common/setting/user.py:126 +#: common/setting/user.py:132 msgid "Exclude inactive sales orders from search preview window" msgstr "" -#: common/setting/user.py:131 +#: common/setting/user.py:137 msgid "Search Sales Order Shipments" msgstr "" -#: common/setting/user.py:132 +#: common/setting/user.py:138 msgid "Display sales order shipments in search preview window" msgstr "" -#: common/setting/user.py:137 +#: common/setting/user.py:143 msgid "Search Return Orders" msgstr "" -#: common/setting/user.py:138 +#: common/setting/user.py:144 msgid "Display return orders in search preview window" msgstr "" -#: common/setting/user.py:143 +#: common/setting/user.py:149 msgid "Exclude Inactive Return Orders" msgstr "" -#: common/setting/user.py:144 +#: common/setting/user.py:150 msgid "Exclude inactive return orders from search preview window" msgstr "" -#: common/setting/user.py:149 +#: common/setting/user.py:155 msgid "Search Preview Results" msgstr "" -#: common/setting/user.py:151 +#: common/setting/user.py:157 msgid "Number of results to show in each section of the search preview window" msgstr "" -#: common/setting/user.py:157 +#: common/setting/user.py:163 msgid "Regex Search" msgstr "" -#: common/setting/user.py:158 +#: common/setting/user.py:164 msgid "Enable regular expressions in search queries" msgstr "" -#: common/setting/user.py:163 +#: common/setting/user.py:169 msgid "Whole Word Search" msgstr "" -#: common/setting/user.py:164 +#: common/setting/user.py:170 msgid "Search queries return results for whole word matches" msgstr "" -#: common/setting/user.py:169 +#: common/setting/user.py:175 msgid "Search Notes" msgstr "" -#: common/setting/user.py:171 +#: common/setting/user.py:177 msgid "Search queries return results for matches from the item's notes" msgstr "" -#: common/setting/user.py:177 +#: common/setting/user.py:183 msgid "Escape Key Closes Forms" msgstr "" -#: common/setting/user.py:178 +#: common/setting/user.py:184 msgid "Use the escape key to close modal forms" msgstr "" -#: common/setting/user.py:183 +#: common/setting/user.py:189 msgid "Fixed Navbar" msgstr "" -#: common/setting/user.py:184 +#: common/setting/user.py:190 msgid "The navbar position is fixed to the top of the screen" msgstr "" -#: common/setting/user.py:189 +#: common/setting/user.py:195 msgid "Fixed Table Headers" msgstr "" -#: common/setting/user.py:190 +#: common/setting/user.py:196 msgid "Table headers are fixed to the top of the table" msgstr "" -#: common/setting/user.py:195 +#: common/setting/user.py:201 msgid "Show Spotlight" msgstr "" -#: common/setting/user.py:196 +#: common/setting/user.py:202 msgid "Enable spotlight navigation functionality" msgstr "" -#: common/setting/user.py:201 +#: common/setting/user.py:207 msgid "Navigation Icons" msgstr "" -#: common/setting/user.py:202 +#: common/setting/user.py:208 msgid "Display icons in the navigation bar" msgstr "" -#: common/setting/user.py:207 +#: common/setting/user.py:213 msgid "Date Format" msgstr "" -#: common/setting/user.py:208 +#: common/setting/user.py:214 msgid "Preferred format for displaying dates" msgstr "" -#: common/setting/user.py:221 +#: common/setting/user.py:227 msgid "Show Stock History" msgstr "" -#: common/setting/user.py:222 +#: common/setting/user.py:228 msgid "Display stock history information in the part detail page" msgstr "" -#: common/setting/user.py:227 +#: common/setting/user.py:233 msgid "Show Last Breadcrumb" msgstr "" -#: common/setting/user.py:228 +#: common/setting/user.py:234 msgid "Show the current page in breadcrumbs" msgstr "" -#: common/setting/user.py:233 +#: common/setting/user.py:239 msgid "Show full stock location in tables" msgstr "" -#: common/setting/user.py:235 +#: common/setting/user.py:241 msgid "Disabled: The full location path is displayed as a hover tooltip. Enabled: The full location path is displayed as plain text." msgstr "" -#: common/setting/user.py:241 +#: common/setting/user.py:247 msgid "Show full part categories in tables" msgstr "" -#: common/setting/user.py:243 +#: common/setting/user.py:249 msgid "Disabled: The full category path is displayed as a hover tooltip. Enabled: The full category path is displayed as plain text." msgstr "" -#: common/setting/user.py:249 +#: common/setting/user.py:255 msgid "Receive error reports" msgstr "" -#: common/setting/user.py:250 +#: common/setting/user.py:256 msgid "Receive notifications for system errors" msgstr "" -#: common/setting/user.py:255 +#: common/setting/user.py:261 msgid "Last used printing machines" msgstr "" -#: common/setting/user.py:256 +#: common/setting/user.py:262 msgid "Save the last used printing machines for a user" msgstr "" -#: common/validators.py:34 +#: common/validators.py:38 +msgid "All models" +msgstr "" + +#: common/validators.py:63 msgid "No attachment model type provided" msgstr "" -#: common/validators.py:40 +#: common/validators.py:69 msgid "Invalid attachment model type" msgstr "" -#: common/validators.py:81 +#: common/validators.py:110 msgid "Minimum places cannot be greater than maximum places" msgstr "" -#: common/validators.py:93 +#: common/validators.py:122 msgid "Maximum places cannot be less than minimum places" msgstr "" -#: common/validators.py:104 +#: common/validators.py:133 msgid "An empty domain is not allowed." msgstr "" -#: common/validators.py:106 +#: common/validators.py:135 #, python-brace-format msgid "Invalid domain name: {domain}" msgstr "" -#: common/validators.py:122 +#: common/validators.py:151 msgid "Value must be uppercase" msgstr "" -#: common/validators.py:128 +#: common/validators.py:157 msgid "Value must be a valid variable identifier" msgstr "" -#: company/api.py:147 +#: company/api.py:141 msgid "Part is Active" msgstr "" -#: company/api.py:151 +#: company/api.py:145 msgid "Manufacturer is Active" msgstr "" -#: company/api.py:286 +#: company/api.py:246 msgid "Supplier Part is Active" msgstr "" -#: company/api.py:290 +#: company/api.py:250 msgid "Internal Part is Active" msgstr "" -#: company/api.py:295 +#: company/api.py:255 msgid "Supplier is Active" msgstr "" -#: company/api.py:307 company/models.py:520 company/serializers.py:457 -#: part/serializers.py:566 +#: company/api.py:267 company/models.py:522 company/serializers.py:502 +#: part/serializers.py:477 msgid "Manufacturer" msgstr "" -#: company/api.py:314 company/models.py:121 company/models.py:392 +#: company/api.py:274 company/models.py:122 company/models.py:393 #: stock/api.py:900 msgid "Company" msgstr "" -#: company/api.py:324 +#: company/api.py:284 msgid "Has Stock" msgstr "" -#: company/models.py:122 +#: company/models.py:123 msgid "Companies" msgstr "" -#: company/models.py:150 +#: company/models.py:151 msgid "Company description" msgstr "" -#: company/models.py:151 +#: company/models.py:152 msgid "Description of the company" msgstr "" -#: company/models.py:157 +#: company/models.py:158 msgid "Website" msgstr "" -#: company/models.py:158 +#: company/models.py:159 msgid "Company website URL" msgstr "" -#: company/models.py:164 +#: company/models.py:165 msgid "Phone number" msgstr "" -#: company/models.py:166 +#: company/models.py:167 msgid "Contact phone number" msgstr "" -#: company/models.py:173 +#: company/models.py:174 msgid "Contact email address" msgstr "" -#: company/models.py:178 company/models.py:296 order/models.py:513 +#: company/models.py:179 company/models.py:297 order/models.py:514 #: users/models.py:561 msgid "Contact" msgstr "" -#: company/models.py:180 +#: company/models.py:181 msgid "Point of contact" msgstr "" -#: company/models.py:186 +#: company/models.py:187 msgid "Link to external company information" msgstr "" -#: company/models.py:191 +#: company/models.py:192 msgid "Is this company active?" msgstr "" -#: company/models.py:196 +#: company/models.py:197 msgid "Is customer" msgstr "" -#: company/models.py:197 +#: company/models.py:198 msgid "Do you sell items to this company?" msgstr "" -#: company/models.py:202 +#: company/models.py:203 msgid "Is supplier" msgstr "" -#: company/models.py:203 +#: company/models.py:204 msgid "Do you purchase items from this company?" msgstr "" -#: company/models.py:208 +#: company/models.py:209 msgid "Is manufacturer" msgstr "" -#: company/models.py:209 +#: company/models.py:210 msgid "Does this company manufacture parts?" msgstr "" -#: company/models.py:217 +#: company/models.py:218 msgid "Default currency used for this company" msgstr "" -#: company/models.py:224 +#: company/models.py:225 msgid "Tax ID" msgstr "" -#: company/models.py:225 +#: company/models.py:226 msgid "Company Tax ID" msgstr "" -#: company/models.py:335 order/models.py:523 order/models.py:2288 +#: company/models.py:336 order/models.py:524 order/models.py:2289 msgid "Address" msgstr "" -#: company/models.py:336 +#: company/models.py:337 msgid "Addresses" msgstr "" -#: company/models.py:393 +#: company/models.py:394 msgid "Select company" msgstr "" -#: company/models.py:398 +#: company/models.py:399 msgid "Address title" msgstr "" -#: company/models.py:399 +#: company/models.py:400 msgid "Title describing the address entry" msgstr "" -#: company/models.py:405 +#: company/models.py:406 msgid "Primary address" msgstr "" -#: company/models.py:406 +#: company/models.py:407 msgid "Set as primary address" msgstr "" -#: company/models.py:411 +#: company/models.py:412 msgid "Line 1" msgstr "" -#: company/models.py:412 +#: company/models.py:413 msgid "Address line 1" msgstr "" -#: company/models.py:418 +#: company/models.py:419 msgid "Line 2" msgstr "" -#: company/models.py:419 +#: company/models.py:420 msgid "Address line 2" msgstr "" -#: company/models.py:425 company/models.py:426 +#: company/models.py:426 company/models.py:427 msgid "Postal code" msgstr "" -#: company/models.py:432 +#: company/models.py:433 msgid "City/Region" msgstr "" -#: company/models.py:433 +#: company/models.py:434 msgid "Postal code city/region" msgstr "" -#: company/models.py:439 +#: company/models.py:440 msgid "State/Province" msgstr "" -#: company/models.py:440 +#: company/models.py:441 msgid "State or province" msgstr "" -#: company/models.py:446 +#: company/models.py:447 msgid "Country" msgstr "" -#: company/models.py:447 +#: company/models.py:448 msgid "Address country" msgstr "" -#: company/models.py:453 +#: company/models.py:454 msgid "Courier shipping notes" msgstr "" -#: company/models.py:454 +#: company/models.py:455 msgid "Notes for shipping courier" msgstr "" -#: company/models.py:460 +#: company/models.py:461 msgid "Internal shipping notes" msgstr "" -#: company/models.py:461 +#: company/models.py:462 msgid "Shipping notes for internal use" msgstr "" -#: company/models.py:468 +#: company/models.py:469 msgid "Link to address information (external)" msgstr "" -#: company/models.py:492 company/models.py:609 company/models.py:832 -#: company/serializers.py:471 stock/api.py:561 +#: company/models.py:494 company/models.py:786 company/serializers.py:516 +#: stock/api.py:561 msgid "Manufacturer Part" msgstr "" -#: company/models.py:509 company/models.py:800 stock/models.py:1025 +#: company/models.py:511 company/models.py:754 stock/models.py:1025 #: stock/serializers.py:407 msgid "Base Part" msgstr "" -#: company/models.py:511 company/models.py:802 +#: company/models.py:513 company/models.py:756 msgid "Select part" msgstr "" -#: company/models.py:521 +#: company/models.py:523 msgid "Select manufacturer" msgstr "" -#: company/models.py:527 company/serializers.py:479 order/serializers.py:734 -#: part/serializers.py:576 +#: company/models.py:529 company/serializers.py:524 order/serializers.py:745 +#: part/serializers.py:487 msgid "MPN" msgstr "" -#: company/models.py:528 stock/serializers.py:572 +#: company/models.py:530 stock/serializers.py:572 msgid "Manufacturer Part Number" msgstr "" -#: company/models.py:535 +#: company/models.py:537 msgid "URL for external manufacturer part link" msgstr "" -#: company/models.py:544 +#: company/models.py:546 msgid "Manufacturer part description" msgstr "" -#: company/models.py:597 -msgid "Manufacturer Part Parameter" -msgstr "" - -#: company/models.py:616 -msgid "Parameter name" -msgstr "" - -#: company/models.py:623 -msgid "Parameter value" -msgstr "" - -#: company/models.py:630 part/models.py:1195 part/models.py:3857 -msgid "Units" -msgstr "" - -#: company/models.py:631 -msgid "Parameter units" -msgstr "" - -#: company/models.py:740 +#: company/models.py:694 msgid "Pack units must be compatible with the base part units" msgstr "" -#: company/models.py:747 +#: company/models.py:701 msgid "Pack units must be greater than zero" msgstr "" -#: company/models.py:761 +#: company/models.py:715 msgid "Linked manufacturer part must reference the same base part" msgstr "" -#: company/models.py:810 company/serializers.py:449 company/serializers.py:467 -#: order/models.py:639 part/serializers.py:550 +#: company/models.py:764 company/serializers.py:494 company/serializers.py:512 +#: order/models.py:640 part/serializers.py:461 #: plugin/builtin/suppliers/digikey.py:26 plugin/builtin/suppliers/lcsc.py:27 #: plugin/builtin/suppliers/mouser.py:25 plugin/builtin/suppliers/tme.py:27 #: stock/api.py:567 templates/email/overdue_purchase_order.html:16 msgid "Supplier" msgstr "" -#: company/models.py:811 +#: company/models.py:765 msgid "Select supplier" msgstr "" -#: company/models.py:817 part/serializers.py:561 +#: company/models.py:771 part/serializers.py:472 msgid "Supplier stock keeping unit" msgstr "" -#: company/models.py:823 +#: company/models.py:777 msgid "Is this supplier part active?" msgstr "" -#: company/models.py:833 +#: company/models.py:787 msgid "Select manufacturer part" msgstr "" -#: company/models.py:840 +#: company/models.py:794 msgid "URL for external supplier part link" msgstr "" -#: company/models.py:849 +#: company/models.py:803 msgid "Supplier part description" msgstr "" -#: company/models.py:856 order/serializers.py:883 order/serializers.py:2047 -#: part/models.py:4070 part/models.py:4450 part/models.py:4819 -#: report/templates/report/inventree_bill_of_materials_report.html:140 -#: report/templates/report/inventree_purchase_order_report.html:39 -#: report/templates/report/inventree_return_order_report.html:27 -#: report/templates/report/inventree_sales_order_report.html:32 -#: report/templates/report/inventree_stock_location_report.html:105 -#: stock/serializers.py:813 -msgid "Note" -msgstr "" - -#: company/models.py:865 part/models.py:2250 +#: company/models.py:819 part/models.py:2338 msgid "base cost" msgstr "" -#: company/models.py:866 part/models.py:2251 +#: company/models.py:820 part/models.py:2339 msgid "Minimum charge (e.g. stocking fee)" msgstr "" -#: company/models.py:873 order/serializers.py:875 stock/models.py:1056 +#: company/models.py:827 order/serializers.py:886 stock/models.py:1056 #: stock/serializers.py:1606 msgid "Packaging" msgstr "" -#: company/models.py:874 +#: company/models.py:828 msgid "Part packaging" msgstr "" -#: company/models.py:879 +#: company/models.py:833 msgid "Pack Quantity" msgstr "" -#: company/models.py:881 +#: company/models.py:835 msgid "Total quantity supplied in a single pack. Leave empty for single items." msgstr "" -#: company/models.py:900 part/models.py:2257 +#: company/models.py:854 part/models.py:2345 msgid "multiple" msgstr "" -#: company/models.py:901 +#: company/models.py:855 msgid "Order multiple" msgstr "" -#: company/models.py:913 +#: company/models.py:867 msgid "Quantity available from supplier" msgstr "" -#: company/models.py:919 +#: company/models.py:873 msgid "Availability Updated" msgstr "" -#: company/models.py:920 +#: company/models.py:874 msgid "Date of last update of availability data" msgstr "" -#: company/models.py:1048 +#: company/models.py:1002 msgid "Supplier Price Break" msgstr "" -#: company/serializers.py:181 +#: company/serializers.py:184 +msgid "Primary Address" +msgstr "" + +#: company/serializers.py:186 msgid "Return the string representation for the primary address. This property exists for backwards compatibility." msgstr "" -#: company/serializers.py:212 +#: company/serializers.py:218 msgid "Default currency used for this supplier" msgstr "" -#: company/serializers.py:248 +#: company/serializers.py:260 msgid "Company Name" msgstr "" -#: company/serializers.py:433 part/serializers.py:955 stock/serializers.py:428 +#: company/serializers.py:460 part/serializers.py:840 stock/serializers.py:428 msgid "In Stock" msgstr "" +#: company/serializers.py:477 +msgid "Price Breaks" +msgstr "" + #: data_exporter/mixins.py:325 data_exporter/mixins.py:403 msgid "Error occurred during data export" msgstr "" @@ -4290,7 +4418,7 @@ msgstr "" msgid "Errors" msgstr "" -#: importer/models.py:550 part/serializers.py:1268 +#: importer/models.py:550 part/serializers.py:1133 msgid "Valid" msgstr "" @@ -4402,7 +4530,7 @@ msgstr "" msgid "Connected" msgstr "" -#: machine/machine_types/label_printer.py:232 order/api.py:1795 +#: machine/machine_types/label_printer.py:232 order/api.py:1800 msgid "Unknown" msgstr "" @@ -4530,105 +4658,105 @@ msgstr "" msgid "Maximum value for progress type, required if type=progress" msgstr "" -#: order/api.py:125 +#: order/api.py:130 msgid "Order Reference" msgstr "" -#: order/api.py:153 order/api.py:1207 +#: order/api.py:158 order/api.py:1212 msgid "Outstanding" msgstr "" -#: order/api.py:169 +#: order/api.py:174 msgid "Has Project Code" msgstr "" -#: order/api.py:183 order/models.py:488 +#: order/api.py:188 order/models.py:489 msgid "Created By" msgstr "" -#: order/api.py:187 +#: order/api.py:192 msgid "Created Before" msgstr "" -#: order/api.py:191 +#: order/api.py:196 msgid "Created After" msgstr "" -#: order/api.py:195 +#: order/api.py:200 msgid "Has Start Date" msgstr "" -#: order/api.py:203 +#: order/api.py:208 msgid "Start Date Before" msgstr "" -#: order/api.py:207 +#: order/api.py:212 msgid "Start Date After" msgstr "" -#: order/api.py:211 +#: order/api.py:216 msgid "Has Target Date" msgstr "" -#: order/api.py:219 +#: order/api.py:224 msgid "Target Date Before" msgstr "" -#: order/api.py:223 +#: order/api.py:228 msgid "Target Date After" msgstr "" -#: order/api.py:274 +#: order/api.py:279 msgid "Has Pricing" msgstr "" -#: order/api.py:327 order/api.py:812 order/api.py:1490 +#: order/api.py:332 order/api.py:818 order/api.py:1495 msgid "Completed Before" msgstr "" -#: order/api.py:331 order/api.py:816 order/api.py:1494 +#: order/api.py:336 order/api.py:822 order/api.py:1499 msgid "Completed After" msgstr "" -#: order/api.py:337 order/api.py:341 +#: order/api.py:342 order/api.py:346 msgid "External Build Order" msgstr "" -#: order/api.py:526 order/api.py:914 order/api.py:1170 order/models.py:1922 -#: order/models.py:2049 order/models.py:2099 order/models.py:2279 -#: order/models.py:2477 order/models.py:2999 order/models.py:3065 +#: order/api.py:532 order/api.py:919 order/api.py:1175 order/models.py:1923 +#: order/models.py:2050 order/models.py:2100 order/models.py:2280 +#: order/models.py:2478 order/models.py:3000 order/models.py:3066 msgid "Order" msgstr "" -#: order/api.py:530 order/api.py:982 +#: order/api.py:536 order/api.py:987 msgid "Order Complete" msgstr "" -#: order/api.py:562 order/api.py:566 order/serializers.py:745 +#: order/api.py:568 order/api.py:572 order/serializers.py:756 msgid "Internal Part" msgstr "" -#: order/api.py:584 +#: order/api.py:590 msgid "Order Pending" msgstr "" -#: order/api.py:967 +#: order/api.py:972 msgid "Completed" msgstr "" -#: order/api.py:1223 +#: order/api.py:1228 msgid "Has Shipment" msgstr "" -#: order/api.py:1789 order/models.py:552 order/models.py:1923 -#: order/models.py:2050 +#: order/api.py:1794 order/models.py:553 order/models.py:1924 +#: order/models.py:2051 #: report/templates/report/inventree_purchase_order_report.html:14 #: stock/serializers.py:129 templates/email/overdue_purchase_order.html:15 msgid "Purchase Order" msgstr "" -#: order/api.py:1791 order/models.py:1251 order/models.py:2100 -#: order/models.py:2280 order/models.py:2478 +#: order/api.py:1796 order/models.py:1252 order/models.py:2101 +#: order/models.py:2281 order/models.py:2479 #: report/templates/report/inventree_build_order_report.html:135 #: report/templates/report/inventree_sales_order_report.html:14 #: report/templates/report/inventree_sales_order_shipment_report.html:15 @@ -4636,8 +4764,8 @@ msgstr "" msgid "Sales Order" msgstr "" -#: order/api.py:1793 order/models.py:2649 order/models.py:3000 -#: order/models.py:3066 +#: order/api.py:1798 order/models.py:2650 order/models.py:3001 +#: order/models.py:3067 #: report/templates/report/inventree_return_order_report.html:13 #: templates/email/overdue_return_order.html:15 msgid "Return Order" @@ -4653,722 +4781,722 @@ msgstr "" msgid "Total price for this order" msgstr "" -#: order/models.py:96 order/serializers.py:77 +#: order/models.py:96 order/serializers.py:78 msgid "Order Currency" msgstr "" -#: order/models.py:99 order/serializers.py:78 +#: order/models.py:99 order/serializers.py:79 msgid "Currency for this order (leave blank to use company default)" msgstr "" -#: order/models.py:324 +#: order/models.py:325 msgid "This order is locked and cannot be modified" msgstr "" -#: order/models.py:376 +#: order/models.py:377 msgid "Contact does not match selected company" msgstr "" -#: order/models.py:383 +#: order/models.py:384 msgid "Start date must be before target date" msgstr "" -#: order/models.py:390 +#: order/models.py:391 msgid "Address does not match selected company" msgstr "" -#: order/models.py:443 +#: order/models.py:444 msgid "Order description (optional)" msgstr "" -#: order/models.py:452 order/models.py:1806 +#: order/models.py:453 order/models.py:1807 msgid "Select project code for this order" msgstr "" -#: order/models.py:458 order/models.py:1787 order/models.py:2344 +#: order/models.py:459 order/models.py:1788 order/models.py:2345 msgid "Link to external page" msgstr "" -#: order/models.py:465 +#: order/models.py:466 msgid "Start date" msgstr "" -#: order/models.py:466 +#: order/models.py:467 msgid "Scheduled start date for this order" msgstr "" -#: order/models.py:472 order/models.py:1794 order/serializers.py:309 +#: order/models.py:473 order/models.py:1795 order/serializers.py:317 #: report/templates/report/inventree_build_order_report.html:125 msgid "Target Date" msgstr "" -#: order/models.py:474 +#: order/models.py:475 msgid "Expected date for order delivery. Order will be overdue after this date." msgstr "" -#: order/models.py:494 +#: order/models.py:495 msgid "Issue Date" msgstr "" -#: order/models.py:495 +#: order/models.py:496 msgid "Date order was issued" msgstr "" -#: order/models.py:503 +#: order/models.py:504 msgid "User or group responsible for this order" msgstr "" -#: order/models.py:514 +#: order/models.py:515 msgid "Point of contact for this order" msgstr "" -#: order/models.py:524 +#: order/models.py:525 msgid "Company address for this order" msgstr "" -#: order/models.py:615 order/models.py:1312 +#: order/models.py:616 order/models.py:1313 msgid "Order reference" msgstr "" -#: order/models.py:624 order/models.py:1336 order/models.py:2737 +#: order/models.py:625 order/models.py:1337 order/models.py:2738 #: stock/serializers.py:559 stock/serializers.py:988 users/models.py:542 msgid "Status" msgstr "" -#: order/models.py:625 +#: order/models.py:626 msgid "Purchase order status" msgstr "" -#: order/models.py:640 +#: order/models.py:641 msgid "Company from which the items are being ordered" msgstr "" -#: order/models.py:651 +#: order/models.py:652 msgid "Supplier Reference" msgstr "" -#: order/models.py:652 +#: order/models.py:653 msgid "Supplier order reference code" msgstr "" -#: order/models.py:661 +#: order/models.py:662 msgid "received by" msgstr "" -#: order/models.py:668 order/models.py:2752 +#: order/models.py:669 order/models.py:2753 msgid "Date order was completed" msgstr "" -#: order/models.py:677 order/models.py:1981 +#: order/models.py:678 order/models.py:1982 msgid "Destination" msgstr "" -#: order/models.py:678 order/models.py:1985 +#: order/models.py:679 order/models.py:1986 msgid "Destination for received items" msgstr "" -#: order/models.py:724 +#: order/models.py:725 msgid "Part supplier must match PO supplier" msgstr "" -#: order/models.py:994 +#: order/models.py:995 msgid "Line item does not match purchase order" msgstr "" -#: order/models.py:997 +#: order/models.py:998 msgid "Line item is missing a linked part" msgstr "" -#: order/models.py:1011 +#: order/models.py:1012 msgid "Quantity must be a positive number" msgstr "" -#: order/models.py:1323 order/models.py:2724 stock/models.py:1078 +#: order/models.py:1324 order/models.py:2725 stock/models.py:1078 #: stock/models.py:1079 stock/serializers.py:1322 #: templates/email/overdue_return_order.html:16 #: templates/email/overdue_sales_order.html:16 msgid "Customer" msgstr "" -#: order/models.py:1324 +#: order/models.py:1325 msgid "Company to which the items are being sold" msgstr "" -#: order/models.py:1337 +#: order/models.py:1338 msgid "Sales order status" msgstr "" -#: order/models.py:1348 order/models.py:2744 +#: order/models.py:1349 order/models.py:2745 msgid "Customer Reference " msgstr "" -#: order/models.py:1349 order/models.py:2745 +#: order/models.py:1350 order/models.py:2746 msgid "Customer order reference code" msgstr "" -#: order/models.py:1353 order/models.py:2296 +#: order/models.py:1354 order/models.py:2297 msgid "Shipment Date" msgstr "" -#: order/models.py:1362 +#: order/models.py:1363 msgid "shipped by" msgstr "" -#: order/models.py:1413 +#: order/models.py:1414 msgid "Order is already complete" msgstr "" -#: order/models.py:1416 +#: order/models.py:1417 msgid "Order is already cancelled" msgstr "" -#: order/models.py:1420 +#: order/models.py:1421 msgid "Only an open order can be marked as complete" msgstr "" -#: order/models.py:1424 +#: order/models.py:1425 msgid "Order cannot be completed as there are incomplete shipments" msgstr "" -#: order/models.py:1429 +#: order/models.py:1430 msgid "Order cannot be completed as there are incomplete allocations" msgstr "" -#: order/models.py:1438 +#: order/models.py:1439 msgid "Order cannot be completed as there are incomplete line items" msgstr "" -#: order/models.py:1733 order/models.py:1749 +#: order/models.py:1734 order/models.py:1750 msgid "The order is locked and cannot be modified" msgstr "" -#: order/models.py:1757 +#: order/models.py:1758 msgid "Item quantity" msgstr "" -#: order/models.py:1774 +#: order/models.py:1775 msgid "Line item reference" msgstr "" -#: order/models.py:1781 +#: order/models.py:1782 msgid "Line item notes" msgstr "" -#: order/models.py:1796 +#: order/models.py:1797 msgid "Target date for this line item (leave blank to use the target date from the order)" msgstr "" -#: order/models.py:1826 +#: order/models.py:1827 msgid "Line item description (optional)" msgstr "" -#: order/models.py:1833 +#: order/models.py:1834 msgid "Additional context for this line" msgstr "" -#: order/models.py:1843 +#: order/models.py:1844 msgid "Unit price" msgstr "" -#: order/models.py:1862 +#: order/models.py:1863 msgid "Purchase Order Line Item" msgstr "" -#: order/models.py:1889 +#: order/models.py:1890 msgid "Supplier part must match supplier" msgstr "" -#: order/models.py:1894 +#: order/models.py:1895 msgid "Build order must be marked as external" msgstr "" -#: order/models.py:1901 +#: order/models.py:1902 msgid "Build orders can only be linked to assembly parts" msgstr "" -#: order/models.py:1907 +#: order/models.py:1908 msgid "Build order part must match line item part" msgstr "" -#: order/models.py:1942 +#: order/models.py:1943 msgid "Supplier part" msgstr "" -#: order/models.py:1949 +#: order/models.py:1950 msgid "Received" msgstr "" -#: order/models.py:1950 +#: order/models.py:1951 msgid "Number of items received" msgstr "" -#: order/models.py:1958 stock/models.py:1201 stock/serializers.py:637 +#: order/models.py:1959 stock/models.py:1201 stock/serializers.py:637 msgid "Purchase Price" msgstr "" -#: order/models.py:1959 +#: order/models.py:1960 msgid "Unit purchase price" msgstr "" -#: order/models.py:1975 +#: order/models.py:1976 msgid "External Build Order to be fulfilled by this line item" msgstr "" -#: order/models.py:2038 +#: order/models.py:2039 msgid "Purchase Order Extra Line" msgstr "" -#: order/models.py:2067 +#: order/models.py:2068 msgid "Sales Order Line Item" msgstr "" -#: order/models.py:2092 +#: order/models.py:2093 msgid "Only salable parts can be assigned to a sales order" msgstr "" -#: order/models.py:2118 +#: order/models.py:2119 msgid "Sale Price" msgstr "" -#: order/models.py:2119 +#: order/models.py:2120 msgid "Unit sale price" msgstr "" -#: order/models.py:2128 order/status_codes.py:50 +#: order/models.py:2129 order/status_codes.py:50 msgid "Shipped" msgstr "Poslano" -#: order/models.py:2129 +#: order/models.py:2130 msgid "Shipped quantity" msgstr "" -#: order/models.py:2240 +#: order/models.py:2241 msgid "Sales Order Shipment" msgstr "" -#: order/models.py:2253 +#: order/models.py:2254 msgid "Shipment address must match the customer" msgstr "" -#: order/models.py:2289 +#: order/models.py:2290 msgid "Shipping address for this shipment" msgstr "" -#: order/models.py:2297 +#: order/models.py:2298 msgid "Date of shipment" msgstr "" -#: order/models.py:2303 +#: order/models.py:2304 msgid "Delivery Date" msgstr "" -#: order/models.py:2304 +#: order/models.py:2305 msgid "Date of delivery of shipment" msgstr "" -#: order/models.py:2312 +#: order/models.py:2313 msgid "Checked By" msgstr "" -#: order/models.py:2313 +#: order/models.py:2314 msgid "User who checked this shipment" msgstr "" -#: order/models.py:2320 order/models.py:2574 order/serializers.py:1711 -#: order/serializers.py:1835 +#: order/models.py:2321 order/models.py:2575 order/serializers.py:1725 +#: order/serializers.py:1849 #: report/templates/report/inventree_sales_order_shipment_report.html:14 msgid "Shipment" msgstr "" -#: order/models.py:2321 +#: order/models.py:2322 msgid "Shipment number" msgstr "" -#: order/models.py:2329 +#: order/models.py:2330 msgid "Tracking Number" msgstr "" -#: order/models.py:2330 +#: order/models.py:2331 msgid "Shipment tracking information" msgstr "" -#: order/models.py:2337 +#: order/models.py:2338 msgid "Invoice Number" msgstr "" -#: order/models.py:2338 +#: order/models.py:2339 msgid "Reference number for associated invoice" msgstr "" -#: order/models.py:2377 +#: order/models.py:2378 msgid "Shipment has already been sent" msgstr "" -#: order/models.py:2380 +#: order/models.py:2381 msgid "Shipment has no allocated stock items" msgstr "" -#: order/models.py:2387 +#: order/models.py:2388 msgid "Shipment must be checked before it can be completed" msgstr "" -#: order/models.py:2466 +#: order/models.py:2467 msgid "Sales Order Extra Line" msgstr "" -#: order/models.py:2495 +#: order/models.py:2496 msgid "Sales Order Allocation" msgstr "" -#: order/models.py:2518 order/models.py:2520 +#: order/models.py:2519 order/models.py:2521 msgid "Stock item has not been assigned" msgstr "" -#: order/models.py:2527 +#: order/models.py:2528 msgid "Cannot allocate stock item to a line with a different part" msgstr "" -#: order/models.py:2530 +#: order/models.py:2531 msgid "Cannot allocate stock to a line without a part" msgstr "" -#: order/models.py:2533 +#: order/models.py:2534 msgid "Allocation quantity cannot exceed stock quantity" msgstr "" -#: order/models.py:2552 order/serializers.py:1581 +#: order/models.py:2553 order/serializers.py:1595 msgid "Quantity must be 1 for serialized stock item" msgstr "" -#: order/models.py:2555 +#: order/models.py:2556 msgid "Sales order does not match shipment" msgstr "" -#: order/models.py:2556 plugin/base/barcodes/api.py:642 +#: order/models.py:2557 plugin/base/barcodes/api.py:642 msgid "Shipment does not match sales order" msgstr "" -#: order/models.py:2564 +#: order/models.py:2565 msgid "Line" msgstr "" -#: order/models.py:2575 +#: order/models.py:2576 msgid "Sales order shipment reference" msgstr "" -#: order/models.py:2588 order/models.py:3007 +#: order/models.py:2589 order/models.py:3008 msgid "Item" msgstr "" -#: order/models.py:2589 +#: order/models.py:2590 msgid "Select stock item to allocate" msgstr "" -#: order/models.py:2598 +#: order/models.py:2599 msgid "Enter stock allocation quantity" msgstr "" -#: order/models.py:2713 +#: order/models.py:2714 msgid "Return Order reference" msgstr "" -#: order/models.py:2725 +#: order/models.py:2726 msgid "Company from which items are being returned" msgstr "" -#: order/models.py:2738 +#: order/models.py:2739 msgid "Return order status" msgstr "" -#: order/models.py:2965 +#: order/models.py:2966 msgid "Return Order Line Item" msgstr "" -#: order/models.py:2978 +#: order/models.py:2979 msgid "Stock item must be specified" msgstr "" -#: order/models.py:2982 +#: order/models.py:2983 msgid "Return quantity exceeds stock quantity" msgstr "" -#: order/models.py:2987 +#: order/models.py:2988 msgid "Return quantity must be greater than zero" msgstr "" -#: order/models.py:2992 +#: order/models.py:2993 msgid "Invalid quantity for serialized stock item" msgstr "" -#: order/models.py:3008 +#: order/models.py:3009 msgid "Select item to return from customer" msgstr "" -#: order/models.py:3023 +#: order/models.py:3024 msgid "Received Date" msgstr "" -#: order/models.py:3024 +#: order/models.py:3025 msgid "The date this this return item was received" msgstr "" -#: order/models.py:3036 +#: order/models.py:3037 msgid "Outcome" msgstr "" -#: order/models.py:3037 +#: order/models.py:3038 msgid "Outcome for this line item" msgstr "" -#: order/models.py:3044 +#: order/models.py:3045 msgid "Cost associated with return or repair for this line item" msgstr "" -#: order/models.py:3054 +#: order/models.py:3055 msgid "Return Order Extra Line" msgstr "" -#: order/serializers.py:91 +#: order/serializers.py:92 msgid "Order ID" msgstr "" -#: order/serializers.py:91 +#: order/serializers.py:92 msgid "ID of the order to duplicate" msgstr "" -#: order/serializers.py:97 +#: order/serializers.py:98 msgid "Copy Lines" msgstr "" -#: order/serializers.py:98 +#: order/serializers.py:99 msgid "Copy line items from the original order" msgstr "" -#: order/serializers.py:104 +#: order/serializers.py:105 msgid "Copy Extra Lines" msgstr "" -#: order/serializers.py:105 +#: order/serializers.py:106 msgid "Copy extra line items from the original order" msgstr "" -#: order/serializers.py:120 +#: order/serializers.py:121 #: report/templates/report/inventree_purchase_order_report.html:29 #: report/templates/report/inventree_return_order_report.html:19 #: report/templates/report/inventree_sales_order_report.html:22 msgid "Line Items" msgstr "" -#: order/serializers.py:125 +#: order/serializers.py:126 msgid "Completed Lines" msgstr "" -#: order/serializers.py:192 +#: order/serializers.py:199 msgid "Duplicate Order" msgstr "" -#: order/serializers.py:193 +#: order/serializers.py:200 msgid "Specify options for duplicating this order" msgstr "" -#: order/serializers.py:270 +#: order/serializers.py:278 msgid "Invalid order ID" msgstr "" -#: order/serializers.py:466 +#: order/serializers.py:477 msgid "Supplier Name" msgstr "" -#: order/serializers.py:510 +#: order/serializers.py:521 msgid "Order cannot be cancelled" msgstr "" -#: order/serializers.py:525 order/serializers.py:1602 +#: order/serializers.py:536 order/serializers.py:1616 msgid "Allow order to be closed with incomplete line items" msgstr "" -#: order/serializers.py:535 order/serializers.py:1612 +#: order/serializers.py:546 order/serializers.py:1626 msgid "Order has incomplete line items" msgstr "" -#: order/serializers.py:665 +#: order/serializers.py:676 msgid "Order is not open" msgstr "" -#: order/serializers.py:692 +#: order/serializers.py:703 msgid "Auto Pricing" msgstr "" -#: order/serializers.py:694 +#: order/serializers.py:705 msgid "Automatically calculate purchase price based on supplier part data" msgstr "" -#: order/serializers.py:704 +#: order/serializers.py:715 msgid "Purchase price currency" msgstr "" -#: order/serializers.py:718 +#: order/serializers.py:729 msgid "Merge Items" msgstr "" -#: order/serializers.py:720 +#: order/serializers.py:731 msgid "Merge items with the same part, destination and target date into one line item" msgstr "" -#: order/serializers.py:727 part/serializers.py:560 +#: order/serializers.py:738 part/serializers.py:471 msgid "SKU" msgstr "" -#: order/serializers.py:741 part/models.py:1089 part/serializers.py:372 +#: order/serializers.py:752 part/models.py:1177 part/serializers.py:337 msgid "Internal Part Number" msgstr "" -#: order/serializers.py:749 +#: order/serializers.py:760 msgid "Internal Part Name" msgstr "" -#: order/serializers.py:765 +#: order/serializers.py:776 msgid "Supplier part must be specified" msgstr "" -#: order/serializers.py:768 +#: order/serializers.py:779 msgid "Purchase order must be specified" msgstr "" -#: order/serializers.py:776 +#: order/serializers.py:787 msgid "Supplier must match purchase order" msgstr "" -#: order/serializers.py:777 +#: order/serializers.py:788 msgid "Purchase order must match supplier" msgstr "" -#: order/serializers.py:825 order/serializers.py:1682 +#: order/serializers.py:836 order/serializers.py:1696 msgid "Line Item" msgstr "" -#: order/serializers.py:834 order/serializers.py:974 order/serializers.py:2043 +#: order/serializers.py:845 order/serializers.py:985 order/serializers.py:2060 msgid "Select destination location for received items" msgstr "" -#: order/serializers.py:850 +#: order/serializers.py:861 msgid "Enter batch code for incoming stock items" msgstr "" -#: order/serializers.py:857 stock/models.py:1160 +#: order/serializers.py:868 stock/models.py:1160 #: templates/email/stale_stock_notification.html:22 users/models.py:137 msgid "Expiry Date" msgstr "" -#: order/serializers.py:858 +#: order/serializers.py:869 msgid "Enter expiry date for incoming stock items" msgstr "" -#: order/serializers.py:866 +#: order/serializers.py:877 msgid "Enter serial numbers for incoming stock items" msgstr "" -#: order/serializers.py:876 +#: order/serializers.py:887 msgid "Override packaging information for incoming stock items" msgstr "" -#: order/serializers.py:884 order/serializers.py:2048 +#: order/serializers.py:895 order/serializers.py:2065 msgid "Additional note for incoming stock items" msgstr "" -#: order/serializers.py:891 +#: order/serializers.py:902 msgid "Barcode" msgstr "" -#: order/serializers.py:892 +#: order/serializers.py:903 msgid "Scanned barcode" msgstr "" -#: order/serializers.py:908 +#: order/serializers.py:919 msgid "Barcode is already in use" msgstr "" -#: order/serializers.py:991 order/serializers.py:2067 +#: order/serializers.py:1002 order/serializers.py:2084 msgid "Line items must be provided" msgstr "" -#: order/serializers.py:1010 +#: order/serializers.py:1021 msgid "Destination location must be specified" msgstr "" -#: order/serializers.py:1017 +#: order/serializers.py:1028 msgid "Supplied barcode values must be unique" msgstr "" -#: order/serializers.py:1121 +#: order/serializers.py:1135 msgid "Shipments" msgstr "" -#: order/serializers.py:1125 +#: order/serializers.py:1139 msgid "Completed Shipments" msgstr "" -#: order/serializers.py:1293 +#: order/serializers.py:1307 msgid "Sale price currency" msgstr "" -#: order/serializers.py:1339 +#: order/serializers.py:1353 msgid "Allocated Items" msgstr "" -#: order/serializers.py:1484 +#: order/serializers.py:1498 msgid "No shipment details provided" msgstr "" -#: order/serializers.py:1545 order/serializers.py:1691 +#: order/serializers.py:1559 order/serializers.py:1705 msgid "Line item is not associated with this order" msgstr "" -#: order/serializers.py:1564 +#: order/serializers.py:1578 msgid "Quantity must be positive" msgstr "" -#: order/serializers.py:1701 +#: order/serializers.py:1715 msgid "Enter serial numbers to allocate" msgstr "" -#: order/serializers.py:1723 order/serializers.py:1843 +#: order/serializers.py:1737 order/serializers.py:1857 msgid "Shipment has already been shipped" msgstr "" -#: order/serializers.py:1726 order/serializers.py:1846 +#: order/serializers.py:1740 order/serializers.py:1860 msgid "Shipment is not associated with this order" msgstr "" -#: order/serializers.py:1781 +#: order/serializers.py:1795 msgid "No match found for the following serial numbers" msgstr "" -#: order/serializers.py:1788 +#: order/serializers.py:1802 msgid "The following serial numbers are unavailable" msgstr "" -#: order/serializers.py:2009 +#: order/serializers.py:2026 msgid "Return order line item" msgstr "" -#: order/serializers.py:2019 +#: order/serializers.py:2036 msgid "Line item does not match return order" msgstr "" -#: order/serializers.py:2022 +#: order/serializers.py:2039 msgid "Line item has already been received" msgstr "" -#: order/serializers.py:2059 +#: order/serializers.py:2076 msgid "Items can only be received against orders which are in progress" msgstr "" -#: order/serializers.py:2124 +#: order/serializers.py:2141 msgid "Quantity to return" msgstr "" -#: order/serializers.py:2140 +#: order/serializers.py:2157 msgid "Line price currency" msgstr "" @@ -5431,1190 +5559,1109 @@ msgstr "" msgid "Return order {ro} is now overdue" msgstr "" -#: part/api.py:108 +#: part/api.py:103 msgid "Starred" msgstr "" -#: part/api.py:110 +#: part/api.py:105 msgid "Filter by starred categories" msgstr "" -#: part/api.py:127 stock/api.py:288 +#: part/api.py:122 stock/api.py:288 msgid "Depth" msgstr "" -#: part/api.py:127 +#: part/api.py:122 msgid "Filter by category depth" msgstr "" -#: part/api.py:145 stock/api.py:306 +#: part/api.py:140 stock/api.py:306 msgid "Top Level" msgstr "" -#: part/api.py:147 +#: part/api.py:142 msgid "Filter by top-level categories" msgstr "" -#: part/api.py:160 stock/api.py:321 +#: part/api.py:155 stock/api.py:321 msgid "Cascade" msgstr "" -#: part/api.py:162 +#: part/api.py:157 msgid "Include sub-categories in filtered results" msgstr "" -#: part/api.py:182 +#: part/api.py:177 msgid "Parent" msgstr "" -#: part/api.py:184 +#: part/api.py:179 msgid "Filter by parent category" msgstr "" -#: part/api.py:219 +#: part/api.py:214 msgid "Exclude sub-categories under the specified category" msgstr "" -#: part/api.py:445 +#: part/api.py:440 msgid "Has Results" msgstr "" -#: part/api.py:666 +#: part/api.py:661 msgid "Is Variant" msgstr "" -#: part/api.py:674 +#: part/api.py:669 msgid "Is Revision" msgstr "" -#: part/api.py:684 +#: part/api.py:679 msgid "Has Revisions" msgstr "" -#: part/api.py:865 +#: part/api.py:860 msgid "BOM Valid" msgstr "" -#: part/api.py:974 +#: part/api.py:969 msgid "Cascade Categories" msgstr "" -#: part/api.py:975 +#: part/api.py:970 msgid "If true, include items in child categories of the given category" msgstr "" -#: part/api.py:981 +#: part/api.py:976 msgid "Filter by numeric category ID or the literal 'null'" msgstr "" -#: part/api.py:1533 +#: part/api.py:1258 msgid "Assembly part is testable" msgstr "" -#: part/api.py:1542 +#: part/api.py:1267 msgid "Component part is testable" msgstr "" -#: part/api.py:1611 +#: part/api.py:1336 msgid "Uses" msgstr "" -#: part/models.py:96 part/models.py:4163 +#: part/models.py:93 part/models.py:436 #: templates/email/part_event_notification.html:16 msgid "Part Category" msgstr "" -#: part/models.py:97 users/ruleset.py:27 +#: part/models.py:94 users/ruleset.py:27 msgid "Part Categories" msgstr "" -#: part/models.py:115 part/models.py:1125 +#: part/models.py:112 part/models.py:1213 msgid "Default Location" msgstr "" -#: part/models.py:116 +#: part/models.py:113 msgid "Default location for parts in this category" msgstr "" -#: part/models.py:121 stock/models.py:216 +#: part/models.py:118 stock/models.py:216 msgid "Structural" msgstr "" -#: part/models.py:123 +#: part/models.py:120 msgid "Parts may not be directly assigned to a structural category, but may be assigned to child categories." msgstr "" -#: part/models.py:132 +#: part/models.py:129 msgid "Default keywords" msgstr "" -#: part/models.py:133 +#: part/models.py:130 msgid "Default keywords for parts in this category" msgstr "" -#: part/models.py:140 stock/models.py:97 stock/models.py:198 +#: part/models.py:137 stock/models.py:97 stock/models.py:198 msgid "Icon" msgstr "" -#: part/models.py:141 part/serializers.py:148 part/serializers.py:167 +#: part/models.py:138 part/serializers.py:147 part/serializers.py:166 #: stock/models.py:199 msgid "Icon (optional)" msgstr "" -#: part/models.py:185 +#: part/models.py:182 msgid "You cannot make this part category structural because some parts are already assigned to it!" msgstr "" -#: part/models.py:473 part/serializers.py:119 part/serializers.py:310 -#: users/ruleset.py:28 +#: part/models.py:392 +msgid "Part Category Parameter Template" +msgstr "" + +#: part/models.py:448 +msgid "Default Value" +msgstr "" + +#: part/models.py:449 +msgid "Default Parameter Value" +msgstr "" + +#: part/models.py:551 part/serializers.py:118 users/ruleset.py:28 msgid "Parts" msgstr "" -#: part/models.py:525 +#: part/models.py:597 +msgid "Cannot delete parameters of a locked part" +msgstr "" + +#: part/models.py:602 +msgid "Cannot modify parameters of a locked part" +msgstr "" + +#: part/models.py:613 msgid "Cannot delete this part as it is locked" msgstr "" -#: part/models.py:528 +#: part/models.py:616 msgid "Cannot delete this part as it is still active" msgstr "" -#: part/models.py:533 +#: part/models.py:621 msgid "Cannot delete this part as it is used in an assembly" msgstr "" -#: part/models.py:616 part/models.py:623 +#: part/models.py:704 part/models.py:711 #, python-brace-format msgid "Part '{self}' cannot be used in BOM for '{parent}' (recursive)" msgstr "" -#: part/models.py:635 +#: part/models.py:723 #, python-brace-format msgid "Part '{parent}' is used in BOM for '{self}' (recursive)" msgstr "" -#: part/models.py:702 +#: part/models.py:790 #, python-brace-format msgid "IPN must match regex pattern {pattern}" msgstr "" -#: part/models.py:710 +#: part/models.py:798 msgid "Part cannot be a revision of itself" msgstr "" -#: part/models.py:717 +#: part/models.py:805 msgid "Cannot make a revision of a part which is already a revision" msgstr "" -#: part/models.py:724 +#: part/models.py:812 msgid "Revision code must be specified" msgstr "" -#: part/models.py:731 +#: part/models.py:819 msgid "Revisions are only allowed for assembly parts" msgstr "" -#: part/models.py:738 +#: part/models.py:826 msgid "Cannot make a revision of a template part" msgstr "" -#: part/models.py:744 +#: part/models.py:832 msgid "Parent part must point to the same template" msgstr "" -#: part/models.py:841 +#: part/models.py:929 msgid "Stock item with this serial number already exists" msgstr "" -#: part/models.py:971 +#: part/models.py:1059 msgid "Duplicate IPN not allowed in part settings" msgstr "" -#: part/models.py:983 +#: part/models.py:1071 msgid "Duplicate part revision already exists." msgstr "" -#: part/models.py:992 +#: part/models.py:1080 msgid "Part with this Name, IPN and Revision already exists." msgstr "" -#: part/models.py:1007 +#: part/models.py:1095 msgid "Parts cannot be assigned to structural part categories!" msgstr "" -#: part/models.py:1039 +#: part/models.py:1127 msgid "Part name" msgstr "" -#: part/models.py:1044 +#: part/models.py:1132 msgid "Is Template" msgstr "" -#: part/models.py:1045 +#: part/models.py:1133 msgid "Is this part a template part?" msgstr "" -#: part/models.py:1055 +#: part/models.py:1143 msgid "Is this part a variant of another part?" msgstr "" -#: part/models.py:1056 +#: part/models.py:1144 msgid "Variant Of" msgstr "" -#: part/models.py:1063 +#: part/models.py:1151 msgid "Part description (optional)" msgstr "" -#: part/models.py:1070 +#: part/models.py:1158 msgid "Keywords" msgstr "" -#: part/models.py:1071 +#: part/models.py:1159 msgid "Part keywords to improve visibility in search results" msgstr "" -#: part/models.py:1081 +#: part/models.py:1169 msgid "Part category" msgstr "" -#: part/models.py:1088 part/serializers.py:929 +#: part/models.py:1176 part/serializers.py:814 #: report/templates/report/inventree_stock_location_report.html:103 msgid "IPN" msgstr "" -#: part/models.py:1096 +#: part/models.py:1184 msgid "Part revision or version number" msgstr "" -#: part/models.py:1097 report/models.py:228 +#: part/models.py:1185 report/models.py:228 msgid "Revision" msgstr "" -#: part/models.py:1106 +#: part/models.py:1194 msgid "Is this part a revision of another part?" msgstr "" -#: part/models.py:1107 +#: part/models.py:1195 msgid "Revision Of" msgstr "" -#: part/models.py:1123 +#: part/models.py:1211 msgid "Where is this item normally stored?" msgstr "" -#: part/models.py:1169 +#: part/models.py:1257 msgid "Default Supplier" msgstr "" -#: part/models.py:1170 +#: part/models.py:1258 msgid "Default supplier part" msgstr "" -#: part/models.py:1177 +#: part/models.py:1265 msgid "Default Expiry" msgstr "" -#: part/models.py:1178 +#: part/models.py:1266 msgid "Expiry time (in days) for stock items of this part" msgstr "" -#: part/models.py:1186 part/serializers.py:1003 +#: part/models.py:1274 part/serializers.py:888 msgid "Minimum Stock" msgstr "" -#: part/models.py:1187 +#: part/models.py:1275 msgid "Minimum allowed stock level" msgstr "" -#: part/models.py:1196 +#: part/models.py:1284 msgid "Units of measure for this part" msgstr "" -#: part/models.py:1203 +#: part/models.py:1291 msgid "Can this part be built from other parts?" msgstr "" -#: part/models.py:1209 +#: part/models.py:1297 msgid "Can this part be used to build other parts?" msgstr "" -#: part/models.py:1215 +#: part/models.py:1303 msgid "Does this part have tracking for unique items?" msgstr "" -#: part/models.py:1221 +#: part/models.py:1309 msgid "Can this part have test results recorded against it?" msgstr "" -#: part/models.py:1227 +#: part/models.py:1315 msgid "Can this part be purchased from external suppliers?" msgstr "" -#: part/models.py:1233 +#: part/models.py:1321 msgid "Can this part be sold to customers?" msgstr "" -#: part/models.py:1237 +#: part/models.py:1325 msgid "Is this part active?" msgstr "" -#: part/models.py:1243 +#: part/models.py:1331 msgid "Locked parts cannot be edited" msgstr "" -#: part/models.py:1249 +#: part/models.py:1337 msgid "Is this a virtual part, such as a software product or license?" msgstr "" -#: part/models.py:1254 +#: part/models.py:1342 msgid "BOM Validated" msgstr "" -#: part/models.py:1255 +#: part/models.py:1343 msgid "Is the BOM for this part valid?" msgstr "" -#: part/models.py:1261 +#: part/models.py:1349 msgid "BOM checksum" msgstr "" -#: part/models.py:1262 +#: part/models.py:1350 msgid "Stored BOM checksum" msgstr "" -#: part/models.py:1270 +#: part/models.py:1358 msgid "BOM checked by" msgstr "" -#: part/models.py:1275 +#: part/models.py:1363 msgid "BOM checked date" msgstr "" -#: part/models.py:1291 +#: part/models.py:1379 msgid "Creation User" msgstr "" -#: part/models.py:1301 +#: part/models.py:1389 msgid "Owner responsible for this part" msgstr "" -#: part/models.py:2258 +#: part/models.py:2346 msgid "Sell multiple" msgstr "" -#: part/models.py:3286 +#: part/models.py:3350 msgid "Currency used to cache pricing calculations" msgstr "" -#: part/models.py:3302 +#: part/models.py:3366 msgid "Minimum BOM Cost" msgstr "" -#: part/models.py:3303 +#: part/models.py:3367 msgid "Minimum cost of component parts" msgstr "" -#: part/models.py:3309 +#: part/models.py:3373 msgid "Maximum BOM Cost" msgstr "" -#: part/models.py:3310 +#: part/models.py:3374 msgid "Maximum cost of component parts" msgstr "" -#: part/models.py:3316 +#: part/models.py:3380 msgid "Minimum Purchase Cost" msgstr "" -#: part/models.py:3317 +#: part/models.py:3381 msgid "Minimum historical purchase cost" msgstr "" -#: part/models.py:3323 +#: part/models.py:3387 msgid "Maximum Purchase Cost" msgstr "" -#: part/models.py:3324 +#: part/models.py:3388 msgid "Maximum historical purchase cost" msgstr "" -#: part/models.py:3330 +#: part/models.py:3394 msgid "Minimum Internal Price" msgstr "" -#: part/models.py:3331 +#: part/models.py:3395 msgid "Minimum cost based on internal price breaks" msgstr "" -#: part/models.py:3337 +#: part/models.py:3401 msgid "Maximum Internal Price" msgstr "" -#: part/models.py:3338 +#: part/models.py:3402 msgid "Maximum cost based on internal price breaks" msgstr "" -#: part/models.py:3344 +#: part/models.py:3408 msgid "Minimum Supplier Price" msgstr "" -#: part/models.py:3345 +#: part/models.py:3409 msgid "Minimum price of part from external suppliers" msgstr "" -#: part/models.py:3351 +#: part/models.py:3415 msgid "Maximum Supplier Price" msgstr "" -#: part/models.py:3352 +#: part/models.py:3416 msgid "Maximum price of part from external suppliers" msgstr "" -#: part/models.py:3358 +#: part/models.py:3422 msgid "Minimum Variant Cost" msgstr "" -#: part/models.py:3359 +#: part/models.py:3423 msgid "Calculated minimum cost of variant parts" msgstr "" -#: part/models.py:3365 +#: part/models.py:3429 msgid "Maximum Variant Cost" msgstr "" -#: part/models.py:3366 +#: part/models.py:3430 msgid "Calculated maximum cost of variant parts" msgstr "" -#: part/models.py:3372 part/models.py:3386 +#: part/models.py:3436 part/models.py:3450 msgid "Minimum Cost" msgstr "" -#: part/models.py:3373 +#: part/models.py:3437 msgid "Override minimum cost" msgstr "" -#: part/models.py:3379 part/models.py:3393 +#: part/models.py:3443 part/models.py:3457 msgid "Maximum Cost" msgstr "" -#: part/models.py:3380 +#: part/models.py:3444 msgid "Override maximum cost" msgstr "" -#: part/models.py:3387 +#: part/models.py:3451 msgid "Calculated overall minimum cost" msgstr "" -#: part/models.py:3394 +#: part/models.py:3458 msgid "Calculated overall maximum cost" msgstr "" -#: part/models.py:3400 +#: part/models.py:3464 msgid "Minimum Sale Price" msgstr "" -#: part/models.py:3401 +#: part/models.py:3465 msgid "Minimum sale price based on price breaks" msgstr "" -#: part/models.py:3407 +#: part/models.py:3471 msgid "Maximum Sale Price" msgstr "" -#: part/models.py:3408 +#: part/models.py:3472 msgid "Maximum sale price based on price breaks" msgstr "" -#: part/models.py:3414 +#: part/models.py:3478 msgid "Minimum Sale Cost" msgstr "" -#: part/models.py:3415 +#: part/models.py:3479 msgid "Minimum historical sale price" msgstr "" -#: part/models.py:3421 +#: part/models.py:3485 msgid "Maximum Sale Cost" msgstr "" -#: part/models.py:3422 +#: part/models.py:3486 msgid "Maximum historical sale price" msgstr "" -#: part/models.py:3440 +#: part/models.py:3504 msgid "Part for stocktake" msgstr "" -#: part/models.py:3445 +#: part/models.py:3509 msgid "Item Count" msgstr "" -#: part/models.py:3446 +#: part/models.py:3510 msgid "Number of individual stock entries at time of stocktake" msgstr "" -#: part/models.py:3454 +#: part/models.py:3518 msgid "Total available stock at time of stocktake" msgstr "" -#: part/models.py:3458 report/templates/report/inventree_test_report.html:106 +#: part/models.py:3522 report/templates/report/inventree_test_report.html:106 msgid "Date" msgstr "" -#: part/models.py:3459 +#: part/models.py:3523 msgid "Date stocktake was performed" msgstr "" -#: part/models.py:3466 +#: part/models.py:3530 msgid "Minimum Stock Cost" msgstr "" -#: part/models.py:3467 +#: part/models.py:3531 msgid "Estimated minimum cost of stock on hand" msgstr "" -#: part/models.py:3473 +#: part/models.py:3537 msgid "Maximum Stock Cost" msgstr "" -#: part/models.py:3474 +#: part/models.py:3538 msgid "Estimated maximum cost of stock on hand" msgstr "" -#: part/models.py:3484 +#: part/models.py:3548 msgid "Part Sale Price Break" msgstr "" -#: part/models.py:3596 +#: part/models.py:3660 msgid "Part Test Template" msgstr "" -#: part/models.py:3622 +#: part/models.py:3686 msgid "Invalid template name - must include at least one alphanumeric character" msgstr "" -#: part/models.py:3643 part/models.py:3816 -msgid "Choices must be unique" -msgstr "" - -#: part/models.py:3654 +#: part/models.py:3718 msgid "Test templates can only be created for testable parts" msgstr "" -#: part/models.py:3668 +#: part/models.py:3732 msgid "Test template with the same key already exists for part" msgstr "" -#: part/models.py:3685 +#: part/models.py:3749 msgid "Test Name" msgstr "" -#: part/models.py:3686 +#: part/models.py:3750 msgid "Enter a name for the test" msgstr "" -#: part/models.py:3692 +#: part/models.py:3756 msgid "Test Key" msgstr "" -#: part/models.py:3693 +#: part/models.py:3757 msgid "Simplified key for the test" msgstr "" -#: part/models.py:3700 +#: part/models.py:3764 msgid "Test Description" msgstr "" -#: part/models.py:3701 +#: part/models.py:3765 msgid "Enter description for this test" msgstr "" -#: part/models.py:3705 report/models.py:287 -msgid "Enabled" -msgstr "" - -#: part/models.py:3705 +#: part/models.py:3769 msgid "Is this test enabled?" msgstr "" -#: part/models.py:3710 +#: part/models.py:3774 msgid "Required" msgstr "" -#: part/models.py:3711 +#: part/models.py:3775 msgid "Is this test required to pass?" msgstr "" -#: part/models.py:3716 +#: part/models.py:3780 msgid "Requires Value" msgstr "" -#: part/models.py:3717 +#: part/models.py:3781 msgid "Does this test require a value when adding a test result?" msgstr "" -#: part/models.py:3722 +#: part/models.py:3786 msgid "Requires Attachment" msgstr "" -#: part/models.py:3724 +#: part/models.py:3788 msgid "Does this test require a file attachment when adding a test result?" msgstr "" -#: part/models.py:3730 part/models.py:3878 -msgid "Choices" -msgstr "" - -#: part/models.py:3731 +#: part/models.py:3795 msgid "Valid choices for this test (comma-separated)" msgstr "" -#: part/models.py:3764 -msgid "Part Parameter Template" -msgstr "" - -#: part/models.py:3791 -msgid "Checkbox parameters cannot have units" -msgstr "" - -#: part/models.py:3796 -msgid "Checkbox parameters cannot have choices" -msgstr "" - -#: part/models.py:3833 -msgid "Parameter template name must be unique" -msgstr "" - -#: part/models.py:3851 -msgid "Parameter Name" -msgstr "" - -#: part/models.py:3858 -msgid "Physical units for this parameter" -msgstr "" - -#: part/models.py:3866 -msgid "Parameter description" -msgstr "" - -#: part/models.py:3872 -msgid "Checkbox" -msgstr "" - -#: part/models.py:3873 -msgid "Is this parameter a checkbox?" -msgstr "" - -#: part/models.py:3879 -msgid "Valid choices for this parameter (comma-separated)" -msgstr "" - -#: part/models.py:3890 -msgid "Selection list for this parameter" -msgstr "" - -#: part/models.py:3932 -msgid "Part Parameter" -msgstr "" - -#: part/models.py:3958 -msgid "Parameter cannot be modified - part is locked" -msgstr "" - -#: part/models.py:3996 -msgid "Invalid choice for parameter value" -msgstr "" - -#: part/models.py:4047 -msgid "Parent Part" -msgstr "" - -#: part/models.py:4055 part/models.py:4170 part/models.py:4171 -msgid "Parameter Template" -msgstr "" - -#: part/models.py:4061 -msgid "Parameter Value" -msgstr "" - -#: part/models.py:4071 stock/serializers.py:718 -msgid "Optional note field" -msgstr "" - -#: part/models.py:4118 -msgid "Part Category Parameter Template" -msgstr "" - -#: part/models.py:4177 -msgid "Default Value" -msgstr "" - -#: part/models.py:4178 -msgid "Default Parameter Value" -msgstr "" - -#: part/models.py:4352 +#: part/models.py:3977 msgid "BOM item cannot be modified - assembly is locked" msgstr "" -#: part/models.py:4359 +#: part/models.py:3984 msgid "BOM item cannot be modified - variant assembly is locked" msgstr "" -#: part/models.py:4369 +#: part/models.py:3994 msgid "Select parent part" msgstr "" -#: part/models.py:4379 +#: part/models.py:4004 msgid "Sub part" msgstr "" -#: part/models.py:4380 +#: part/models.py:4005 msgid "Select part to be used in BOM" msgstr "" -#: part/models.py:4391 +#: part/models.py:4016 msgid "BOM quantity for this BOM item" msgstr "" -#: part/models.py:4397 +#: part/models.py:4022 msgid "This BOM item is optional" msgstr "" -#: part/models.py:4403 +#: part/models.py:4028 msgid "This BOM item is consumable (it is not tracked in build orders)" msgstr "" -#: part/models.py:4411 +#: part/models.py:4036 msgid "Setup Quantity" msgstr "" -#: part/models.py:4412 +#: part/models.py:4037 msgid "Extra required quantity for a build, to account for setup losses" msgstr "" -#: part/models.py:4420 +#: part/models.py:4045 msgid "Attrition" msgstr "" -#: part/models.py:4422 +#: part/models.py:4047 msgid "Estimated attrition for a build, expressed as a percentage (0-100)" msgstr "" -#: part/models.py:4433 +#: part/models.py:4058 msgid "Rounding Multiple" msgstr "" -#: part/models.py:4435 +#: part/models.py:4060 msgid "Round up required production quantity to nearest multiple of this value" msgstr "" -#: part/models.py:4443 +#: part/models.py:4068 msgid "BOM item reference" msgstr "" -#: part/models.py:4451 +#: part/models.py:4076 msgid "BOM item notes" msgstr "" -#: part/models.py:4457 +#: part/models.py:4082 msgid "Checksum" msgstr "" -#: part/models.py:4458 +#: part/models.py:4083 msgid "BOM line checksum" msgstr "" -#: part/models.py:4463 +#: part/models.py:4088 msgid "Validated" msgstr "" -#: part/models.py:4464 +#: part/models.py:4089 msgid "This BOM item has been validated" msgstr "" -#: part/models.py:4469 +#: part/models.py:4094 msgid "Gets inherited" msgstr "" -#: part/models.py:4470 +#: part/models.py:4095 msgid "This BOM item is inherited by BOMs for variant parts" msgstr "" -#: part/models.py:4476 +#: part/models.py:4101 msgid "Stock items for variant parts can be used for this BOM item" msgstr "" -#: part/models.py:4583 stock/models.py:925 +#: part/models.py:4208 stock/models.py:925 msgid "Quantity must be integer value for trackable parts" msgstr "" -#: part/models.py:4593 part/models.py:4595 +#: part/models.py:4218 part/models.py:4220 msgid "Sub part must be specified" msgstr "" -#: part/models.py:4746 +#: part/models.py:4371 msgid "BOM Item Substitute" msgstr "" -#: part/models.py:4767 +#: part/models.py:4392 msgid "Substitute part cannot be the same as the master part" msgstr "" -#: part/models.py:4780 +#: part/models.py:4405 msgid "Parent BOM item" msgstr "" -#: part/models.py:4788 +#: part/models.py:4413 msgid "Substitute part" msgstr "" -#: part/models.py:4804 +#: part/models.py:4429 msgid "Part 1" msgstr "" -#: part/models.py:4812 +#: part/models.py:4437 msgid "Part 2" msgstr "" -#: part/models.py:4813 +#: part/models.py:4438 msgid "Select Related Part" msgstr "" -#: part/models.py:4820 +#: part/models.py:4445 msgid "Note for this relationship" msgstr "" -#: part/models.py:4839 +#: part/models.py:4464 msgid "Part relationship cannot be created between a part and itself" msgstr "" -#: part/models.py:4844 +#: part/models.py:4469 msgid "Duplicate relationship already exists" msgstr "" -#: part/serializers.py:114 +#: part/serializers.py:113 msgid "Parent Category" msgstr "" -#: part/serializers.py:115 +#: part/serializers.py:114 msgid "Parent part category" msgstr "" -#: part/serializers.py:123 part/serializers.py:164 +#: part/serializers.py:122 part/serializers.py:163 msgid "Subcategories" msgstr "" -#: part/serializers.py:203 +#: part/serializers.py:202 msgid "Results" msgstr "" -#: part/serializers.py:204 +#: part/serializers.py:203 msgid "Number of results recorded against this template" msgstr "" -#: part/serializers.py:235 part/serializers.py:253 stock/serializers.py:643 +#: part/serializers.py:234 part/serializers.py:252 stock/serializers.py:643 msgid "Purchase currency of this stock item" msgstr "" -#: part/serializers.py:280 +#: part/serializers.py:279 msgid "File is not an image" msgstr "" -#: part/serializers.py:311 -msgid "Number of parts using this template" -msgstr "" - -#: part/serializers.py:471 +#: part/serializers.py:382 msgid "Original Part" msgstr "" -#: part/serializers.py:472 +#: part/serializers.py:383 msgid "Select original part to duplicate" msgstr "" -#: part/serializers.py:477 +#: part/serializers.py:388 msgid "Copy Image" msgstr "" -#: part/serializers.py:478 +#: part/serializers.py:389 msgid "Copy image from original part" msgstr "" -#: part/serializers.py:484 +#: part/serializers.py:395 msgid "Copy BOM" msgstr "" -#: part/serializers.py:485 +#: part/serializers.py:396 msgid "Copy bill of materials from original part" msgstr "" -#: part/serializers.py:491 +#: part/serializers.py:402 msgid "Copy Parameters" msgstr "" -#: part/serializers.py:492 +#: part/serializers.py:403 msgid "Copy parameter data from original part" msgstr "" -#: part/serializers.py:498 +#: part/serializers.py:409 msgid "Copy Notes" msgstr "" -#: part/serializers.py:499 +#: part/serializers.py:410 msgid "Copy notes from original part" msgstr "" -#: part/serializers.py:505 +#: part/serializers.py:416 msgid "Copy Tests" msgstr "" -#: part/serializers.py:506 +#: part/serializers.py:417 msgid "Copy test templates from original part" msgstr "" -#: part/serializers.py:524 +#: part/serializers.py:435 msgid "Initial Stock Quantity" msgstr "" -#: part/serializers.py:526 +#: part/serializers.py:437 msgid "Specify initial stock quantity for this Part. If quantity is zero, no stock is added." msgstr "" -#: part/serializers.py:533 +#: part/serializers.py:444 msgid "Initial Stock Location" msgstr "" -#: part/serializers.py:534 +#: part/serializers.py:445 msgid "Specify initial stock location for this Part" msgstr "" -#: part/serializers.py:551 +#: part/serializers.py:462 msgid "Select supplier (or leave blank to skip)" msgstr "" -#: part/serializers.py:567 +#: part/serializers.py:478 msgid "Select manufacturer (or leave blank to skip)" msgstr "" -#: part/serializers.py:577 +#: part/serializers.py:488 msgid "Manufacturer part number" msgstr "" -#: part/serializers.py:584 +#: part/serializers.py:495 msgid "Selected company is not a valid supplier" msgstr "" -#: part/serializers.py:593 +#: part/serializers.py:504 msgid "Selected company is not a valid manufacturer" msgstr "" -#: part/serializers.py:604 +#: part/serializers.py:515 msgid "Manufacturer part matching this MPN already exists" msgstr "" -#: part/serializers.py:611 +#: part/serializers.py:522 msgid "Supplier part matching this SKU already exists" msgstr "" -#: part/serializers.py:914 +#: part/serializers.py:799 msgid "Category Name" msgstr "" -#: part/serializers.py:943 +#: part/serializers.py:828 msgid "Building" msgstr "" -#: part/serializers.py:944 +#: part/serializers.py:829 msgid "Quantity of this part currently being in production" msgstr "" -#: part/serializers.py:951 +#: part/serializers.py:836 msgid "Outstanding quantity of this part scheduled to be built" msgstr "" -#: part/serializers.py:971 stock/serializers.py:1019 stock/serializers.py:1189 +#: part/serializers.py:856 stock/serializers.py:1019 stock/serializers.py:1189 #: users/ruleset.py:30 msgid "Stock Items" msgstr "" -#: part/serializers.py:975 +#: part/serializers.py:860 msgid "Revisions" msgstr "" -#: part/serializers.py:979 +#: part/serializers.py:864 msgid "Suppliers" msgstr "" -#: part/serializers.py:983 part/serializers.py:1297 +#: part/serializers.py:868 part/serializers.py:1162 #: templates/email/low_stock_notification.html:16 #: templates/email/part_event_notification.html:17 msgid "Total Stock" msgstr "" -#: part/serializers.py:991 +#: part/serializers.py:876 msgid "Unallocated Stock" msgstr "" -#: part/serializers.py:999 +#: part/serializers.py:884 msgid "Variant Stock" msgstr "" -#: part/serializers.py:1054 +#: part/serializers.py:943 msgid "Duplicate Part" msgstr "" -#: part/serializers.py:1055 +#: part/serializers.py:944 msgid "Copy initial data from another Part" msgstr "" -#: part/serializers.py:1061 +#: part/serializers.py:950 msgid "Initial Stock" msgstr "" -#: part/serializers.py:1062 +#: part/serializers.py:951 msgid "Create Part with initial stock quantity" msgstr "" -#: part/serializers.py:1068 +#: part/serializers.py:957 msgid "Supplier Information" msgstr "" -#: part/serializers.py:1069 +#: part/serializers.py:958 msgid "Add initial supplier information for this part" msgstr "" -#: part/serializers.py:1077 +#: part/serializers.py:966 msgid "Copy Category Parameters" msgstr "" -#: part/serializers.py:1078 +#: part/serializers.py:967 msgid "Copy parameter templates from selected part category" msgstr "" -#: part/serializers.py:1083 +#: part/serializers.py:972 msgid "Existing Image" msgstr "" -#: part/serializers.py:1084 +#: part/serializers.py:973 msgid "Filename of an existing part image" msgstr "" -#: part/serializers.py:1101 +#: part/serializers.py:990 msgid "Image file does not exist" msgstr "" -#: part/serializers.py:1269 +#: part/serializers.py:1134 msgid "Validate entire Bill of Materials" msgstr "" -#: part/serializers.py:1303 part/serializers.py:1769 +#: part/serializers.py:1168 part/serializers.py:1634 msgid "Can Build" msgstr "" -#: part/serializers.py:1320 +#: part/serializers.py:1185 msgid "Required for Build Orders" msgstr "" -#: part/serializers.py:1325 +#: part/serializers.py:1190 msgid "Allocated to Build Orders" msgstr "" -#: part/serializers.py:1332 +#: part/serializers.py:1197 msgid "Required for Sales Orders" msgstr "" -#: part/serializers.py:1336 +#: part/serializers.py:1201 msgid "Allocated to Sales Orders" msgstr "" -#: part/serializers.py:1475 +#: part/serializers.py:1340 msgid "Minimum Price" msgstr "" -#: part/serializers.py:1476 +#: part/serializers.py:1341 msgid "Override calculated value for minimum price" msgstr "" -#: part/serializers.py:1483 +#: part/serializers.py:1348 msgid "Minimum price currency" msgstr "" -#: part/serializers.py:1490 +#: part/serializers.py:1355 msgid "Maximum Price" msgstr "" -#: part/serializers.py:1491 +#: part/serializers.py:1356 msgid "Override calculated value for maximum price" msgstr "" -#: part/serializers.py:1498 +#: part/serializers.py:1363 msgid "Maximum price currency" msgstr "" -#: part/serializers.py:1527 +#: part/serializers.py:1392 msgid "Update" msgstr "" -#: part/serializers.py:1528 +#: part/serializers.py:1393 msgid "Update pricing for this part" msgstr "" -#: part/serializers.py:1551 +#: part/serializers.py:1416 #, python-brace-format msgid "Could not convert from provided currencies to {default_currency}" msgstr "" -#: part/serializers.py:1558 +#: part/serializers.py:1423 msgid "Minimum price must not be greater than maximum price" msgstr "" -#: part/serializers.py:1561 +#: part/serializers.py:1426 msgid "Maximum price must not be less than minimum price" msgstr "" -#: part/serializers.py:1715 +#: part/serializers.py:1580 msgid "Select the parent assembly" msgstr "" -#: part/serializers.py:1735 +#: part/serializers.py:1600 msgid "Select the component part" msgstr "" -#: part/serializers.py:1929 +#: part/serializers.py:1802 msgid "Select part to copy BOM from" msgstr "" -#: part/serializers.py:1937 +#: part/serializers.py:1810 msgid "Remove Existing Data" msgstr "" -#: part/serializers.py:1938 +#: part/serializers.py:1811 msgid "Remove existing BOM items before copying" msgstr "" -#: part/serializers.py:1943 +#: part/serializers.py:1816 msgid "Include Inherited" msgstr "" -#: part/serializers.py:1944 +#: part/serializers.py:1817 msgid "Include BOM items which are inherited from templated parts" msgstr "" -#: part/serializers.py:1949 +#: part/serializers.py:1822 msgid "Skip Invalid Rows" msgstr "" -#: part/serializers.py:1950 +#: part/serializers.py:1823 msgid "Enable this option to skip invalid rows" msgstr "" -#: part/serializers.py:1955 +#: part/serializers.py:1828 msgid "Copy Substitute Parts" msgstr "" -#: part/serializers.py:1956 +#: part/serializers.py:1829 msgid "Copy substitute parts when duplicate BOM items" msgstr "" @@ -6927,7 +6974,7 @@ msgstr "" #: plugin/builtin/events/auto_issue_orders.py:19 #: plugin/builtin/exporter/bom_exporter.py:73 #: plugin/builtin/exporter/inventree_exporter.py:17 -#: plugin/builtin/exporter/part_parameter_exporter.py:36 +#: plugin/builtin/exporter/parameter_exporter.py:32 #: plugin/builtin/exporter/stocktake_exporter.py:47 #: plugin/builtin/integration/core_notifications.py:25 #: plugin/builtin/integration/core_notifications.py:69 @@ -7041,23 +7088,19 @@ msgid "Include total quantity of each part in the BOM" msgstr "" #: plugin/builtin/exporter/bom_exporter.py:35 -#: plugin/builtin/exporter/part_parameter_exporter.py:17 msgid "Stock Data" msgstr "" #: plugin/builtin/exporter/bom_exporter.py:35 -#: plugin/builtin/exporter/part_parameter_exporter.py:17 msgid "Include part stock data" msgstr "" #: plugin/builtin/exporter/bom_exporter.py:39 -#: plugin/builtin/exporter/part_parameter_exporter.py:21 #: plugin/builtin/exporter/stocktake_exporter.py:20 msgid "Pricing Data" msgstr "" #: plugin/builtin/exporter/bom_exporter.py:39 -#: plugin/builtin/exporter/part_parameter_exporter.py:21 #: plugin/builtin/exporter/stocktake_exporter.py:20 msgid "Include part pricing data" msgstr "" @@ -7144,12 +7187,20 @@ msgstr "" msgid "Provides support for exporting data from InvenTree" msgstr "" -#: plugin/builtin/exporter/part_parameter_exporter.py:33 -msgid "Part Parameter Exporter" +#: plugin/builtin/exporter/parameter_exporter.py:16 +msgid "Exclude Inactive" msgstr "" -#: plugin/builtin/exporter/part_parameter_exporter.py:34 -msgid "Exporter for part parameter data" +#: plugin/builtin/exporter/parameter_exporter.py:17 +msgid "Exclude parameters which are inactive" +msgstr "" + +#: plugin/builtin/exporter/parameter_exporter.py:29 +msgid "Parameter Exporter" +msgstr "" + +#: plugin/builtin/exporter/parameter_exporter.py:30 +msgid "Exporter for model parameter data" msgstr "" #: plugin/builtin/exporter/stocktake_exporter.py:25 @@ -8079,19 +8130,19 @@ msgstr "" msgid "No result" msgstr "" -#: report/templatetags/report.py:167 +#: report/templatetags/report.py:169 msgid "Asset file does not exist" msgstr "" -#: report/templatetags/report.py:224 report/templatetags/report.py:300 +#: report/templatetags/report.py:226 report/templatetags/report.py:302 msgid "Image file not found" msgstr "" -#: report/templatetags/report.py:325 +#: report/templatetags/report.py:327 msgid "part_image tag requires a Part instance" msgstr "" -#: report/templatetags/report.py:362 +#: report/templatetags/report.py:383 msgid "company_image tag requires a Company instance" msgstr "" @@ -8455,115 +8506,119 @@ msgstr "" msgid "Quantity does not match serial numbers" msgstr "" -#: stock/models.py:2012 stock/models.py:2917 +#: stock/models.py:1912 +msgid "Cannot assign stock to structural location" +msgstr "" + +#: stock/models.py:2029 stock/models.py:2934 msgid "Test template does not exist" msgstr "" -#: stock/models.py:2030 +#: stock/models.py:2047 msgid "Stock item has been assigned to a sales order" msgstr "" -#: stock/models.py:2034 +#: stock/models.py:2051 msgid "Stock item is installed in another item" msgstr "" -#: stock/models.py:2037 +#: stock/models.py:2054 msgid "Stock item contains other items" msgstr "" -#: stock/models.py:2040 +#: stock/models.py:2057 msgid "Stock item has been assigned to a customer" msgstr "" -#: stock/models.py:2043 stock/models.py:2226 +#: stock/models.py:2060 stock/models.py:2243 msgid "Stock item is currently in production" msgstr "" -#: stock/models.py:2046 +#: stock/models.py:2063 msgid "Serialized stock cannot be merged" msgstr "" -#: stock/models.py:2053 stock/serializers.py:1462 +#: stock/models.py:2070 stock/serializers.py:1462 msgid "Duplicate stock items" msgstr "" -#: stock/models.py:2057 +#: stock/models.py:2074 msgid "Stock items must refer to the same part" msgstr "" -#: stock/models.py:2065 +#: stock/models.py:2082 msgid "Stock items must refer to the same supplier part" msgstr "" -#: stock/models.py:2070 +#: stock/models.py:2087 msgid "Stock status codes must match" msgstr "" -#: stock/models.py:2349 +#: stock/models.py:2366 msgid "StockItem cannot be moved as it is not in stock" msgstr "" -#: stock/models.py:2818 +#: stock/models.py:2835 msgid "Stock Item Tracking" msgstr "" -#: stock/models.py:2849 +#: stock/models.py:2866 msgid "Entry notes" msgstr "" -#: stock/models.py:2889 +#: stock/models.py:2906 msgid "Stock Item Test Result" msgstr "" -#: stock/models.py:2920 +#: stock/models.py:2937 msgid "Value must be provided for this test" msgstr "" -#: stock/models.py:2924 +#: stock/models.py:2941 msgid "Attachment must be uploaded for this test" msgstr "" -#: stock/models.py:2929 +#: stock/models.py:2946 msgid "Invalid value for this test" msgstr "" -#: stock/models.py:2953 +#: stock/models.py:2970 msgid "Test result" msgstr "" -#: stock/models.py:2960 +#: stock/models.py:2977 msgid "Test output value" msgstr "" -#: stock/models.py:2968 stock/serializers.py:248 +#: stock/models.py:2985 stock/serializers.py:248 msgid "Test result attachment" msgstr "" -#: stock/models.py:2972 +#: stock/models.py:2989 msgid "Test notes" msgstr "" -#: stock/models.py:2980 +#: stock/models.py:2997 msgid "Test station" msgstr "" -#: stock/models.py:2981 +#: stock/models.py:2998 msgid "The identifier of the test station where the test was performed" msgstr "" -#: stock/models.py:2987 +#: stock/models.py:3004 msgid "Started" msgstr "" -#: stock/models.py:2988 +#: stock/models.py:3005 msgid "The timestamp of the test start" msgstr "" -#: stock/models.py:2994 +#: stock/models.py:3011 msgid "Finished" msgstr "" -#: stock/models.py:2995 +#: stock/models.py:3012 msgid "The timestamp of the test finish" msgstr "" @@ -8677,8 +8732,8 @@ msgstr "" msgid "Quantity must not exceed available stock quantity ({q})" msgstr "" -#: stock/serializers.py:711 stock/serializers.py:1419 stock/serializers.py:1732 -#: stock/serializers.py:1781 +#: stock/serializers.py:711 stock/serializers.py:1419 stock/serializers.py:1740 +#: stock/serializers.py:1789 msgid "Destination stock location" msgstr "" @@ -8834,19 +8889,19 @@ msgstr "" msgid "Stock transaction notes" msgstr "" -#: stock/serializers.py:1787 +#: stock/serializers.py:1795 msgid "Merge into existing stock" msgstr "" -#: stock/serializers.py:1788 +#: stock/serializers.py:1796 msgid "Merge returned items into existing stock items if possible" msgstr "" -#: stock/serializers.py:1831 +#: stock/serializers.py:1839 msgid "Next Serial Number" msgstr "" -#: stock/serializers.py:1837 +#: stock/serializers.py:1845 msgid "Previous Serial Number" msgstr "" @@ -8902,83 +8957,87 @@ msgstr "Zaloga ročno dodana" msgid "Stock manually removed" msgstr "Zaloga ročno odstranjena" -#: stock/status_codes.py:57 +#: stock/status_codes.py:56 +msgid "Serialized stock items" +msgstr "" + +#: stock/status_codes.py:58 msgid "Returned to stock" msgstr "" -#: stock/status_codes.py:60 +#: stock/status_codes.py:61 msgid "Location changed" msgstr "Lokacija spremenjena" -#: stock/status_codes.py:61 +#: stock/status_codes.py:62 msgid "Stock updated" msgstr "Zaloga posodobljena" -#: stock/status_codes.py:64 +#: stock/status_codes.py:65 msgid "Installed into assembly" msgstr "Vstavljeno v sestavo" -#: stock/status_codes.py:65 +#: stock/status_codes.py:66 msgid "Removed from assembly" msgstr "Odstranjeno iz sestave" -#: stock/status_codes.py:67 +#: stock/status_codes.py:68 msgid "Installed component item" msgstr "Vstavljena postavka komponente" -#: stock/status_codes.py:68 +#: stock/status_codes.py:69 msgid "Removed component item" msgstr "Odstranjena postavka komponente" -#: stock/status_codes.py:71 +#: stock/status_codes.py:72 msgid "Split from parent item" msgstr "Razdeljena od nadrejene postavke" -#: stock/status_codes.py:72 +#: stock/status_codes.py:73 msgid "Split child item" msgstr "Razdeljena podrejena postavka" -#: stock/status_codes.py:75 +#: stock/status_codes.py:76 msgid "Merged stock items" msgstr "Združena zaloga postavk" -#: stock/status_codes.py:78 +#: stock/status_codes.py:79 msgid "Converted to variant" msgstr "Spremenjeno v varianto" -#: stock/status_codes.py:81 +#: stock/status_codes.py:82 msgid "Build order output created" msgstr "Nalog za izgradnjo ustvarjen" -#: stock/status_codes.py:82 +#: stock/status_codes.py:83 msgid "Build order output completed" msgstr "Nalog za izgradnjo končan" -#: stock/status_codes.py:83 +#: stock/status_codes.py:84 msgid "Build order output rejected" msgstr "Nalog za izgradnjo zavrnjen" -#: stock/status_codes.py:84 +#: stock/status_codes.py:85 msgid "Consumed by build order" msgstr "Porabljeno v nalogu za izgradnjo" -#: stock/status_codes.py:87 +#: stock/status_codes.py:88 msgid "Shipped against Sales Order" msgstr "Poslano preko prodajnega naročila" -#: stock/status_codes.py:90 +#: stock/status_codes.py:91 msgid "Received against Purchase Order" msgstr "Prejeto preko nabavnega naročila" -#: stock/status_codes.py:93 +#: stock/status_codes.py:94 msgid "Returned against Return Order" msgstr "Vrnjeno preko naročila za vračilo" -#: stock/status_codes.py:96 +#: stock/status_codes.py:97 msgid "Sent to customer" msgstr "Posalno stranki" -#: stock/status_codes.py:97 +#: stock/status_codes.py:98 msgid "Returned from customer" msgstr "Vrnjeno od stranke" diff --git a/src/backend/InvenTree/locale/sr/LC_MESSAGES/django.po b/src/backend/InvenTree/locale/sr/LC_MESSAGES/django.po index b228b827c8..146d188d87 100644 --- a/src/backend/InvenTree/locale/sr/LC_MESSAGES/django.po +++ b/src/backend/InvenTree/locale/sr/LC_MESSAGES/django.po @@ -2,8 +2,8 @@ msgid "" msgstr "" "Project-Id-Version: inventree\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-11-19 04:55+0000\n" -"PO-Revision-Date: 2025-11-19 04:59\n" +"POT-Creation-Date: 2025-12-07 07:33+0000\n" +"PO-Revision-Date: 2025-12-07 07:36\n" "Last-Translator: \n" "Language-Team: Serbian (Latin)\n" "Language: sr_CS\n" @@ -57,7 +57,7 @@ msgstr "" msgid "This field must be unique." msgstr "" -#: InvenTree/api.py:775 +#: InvenTree/api.py:803 msgid "User does not have permission to view this model" msgstr "Korisnik nema dozvolu za pregled ovog modela" @@ -81,22 +81,22 @@ msgstr "Navedena primarna adresa e-pošte nije važeća." msgid "The provided email domain is not approved." msgstr "Navedeni domen adrese e-pošte nije prihvaćen." -#: InvenTree/conversion.py:166 +#: InvenTree/conversion.py:240 #, python-brace-format msgid "Invalid unit provided ({unit})" msgstr "Data je nevažeća jedinica ({unit})" -#: InvenTree/conversion.py:183 +#: InvenTree/conversion.py:257 msgid "No value provided" msgstr "Nije navedena vrednost" -#: InvenTree/conversion.py:210 +#: InvenTree/conversion.py:284 #, python-brace-format msgid "Could not convert {original} to {unit}" msgstr "Nije moguće konvertovati {original} u {unit}" -#: InvenTree/conversion.py:212 InvenTree/conversion.py:226 -#: InvenTree/helpers.py:597 order/models.py:720 order/models.py:1015 +#: InvenTree/conversion.py:286 InvenTree/conversion.py:300 +#: InvenTree/helpers.py:597 order/models.py:721 order/models.py:1016 msgid "Invalid quantity provided" msgstr "Isporučena nevažeća količina" @@ -112,11 +112,11 @@ msgstr "Unesite datum" msgid "Invalid decimal value" msgstr "Neispravna decimalna vrednost" -#: InvenTree/fields.py:218 InvenTree/models.py:1067 build/serializers.py:509 -#: build/serializers.py:580 build/serializers.py:1788 company/models.py:857 -#: order/models.py:1780 +#: InvenTree/fields.py:218 InvenTree/models.py:1228 build/serializers.py:517 +#: build/serializers.py:588 build/serializers.py:1796 company/models.py:811 +#: order/models.py:1781 #: report/templates/report/inventree_build_order_report.html:172 -#: stock/models.py:2848 stock/models.py:2972 stock/serializers.py:717 +#: stock/models.py:2865 stock/models.py:2989 stock/serializers.py:717 #: stock/serializers.py:893 stock/serializers.py:1035 stock/serializers.py:1336 #: stock/serializers.py:1425 stock/serializers.py:1624 msgid "Notes" @@ -171,35 +171,35 @@ msgstr "Uklonite HTML oznake iz ove vrednosti" msgid "Data contains prohibited markdown content" msgstr "Podatak sadrži zabranjen jezički sadržaj" -#: InvenTree/helpers_model.py:133 +#: InvenTree/helpers_model.py:134 msgid "Connection error" msgstr "Greška u povezivanju" -#: InvenTree/helpers_model.py:138 InvenTree/helpers_model.py:145 +#: InvenTree/helpers_model.py:139 InvenTree/helpers_model.py:146 msgid "Server responded with invalid status code" msgstr "Server je odgovorio nevažećim statusnim kodom" -#: InvenTree/helpers_model.py:141 +#: InvenTree/helpers_model.py:142 msgid "Exception occurred" msgstr "Došlo je do izuzetka" -#: InvenTree/helpers_model.py:151 +#: InvenTree/helpers_model.py:152 msgid "Server responded with invalid Content-Length value" msgstr "Server je odgovorio nevažećom vrednošću dužina sadržaja" -#: InvenTree/helpers_model.py:154 +#: InvenTree/helpers_model.py:155 msgid "Image size is too large" msgstr "Veličina slike je prevelika" -#: InvenTree/helpers_model.py:166 +#: InvenTree/helpers_model.py:167 msgid "Image download exceeded maximum size" msgstr "Preuzimanje slike premašilo je maksimalnu veličinu" -#: InvenTree/helpers_model.py:171 +#: InvenTree/helpers_model.py:172 msgid "Remote server returned empty response" msgstr "Udaljeni server vratio je prazan odgovor" -#: InvenTree/helpers_model.py:179 +#: InvenTree/helpers_model.py:180 msgid "Supplied URL is not a valid image file" msgstr "Navedeni URL nije važeća slikovna datoteka" @@ -207,7 +207,7 @@ msgstr "Navedeni URL nije važeća slikovna datoteka" msgid "Log in to the app" msgstr "Prijavljivanje na aplikaciju" -#: InvenTree/magic_login.py:41 company/models.py:172 users/serializers.py:198 +#: InvenTree/magic_login.py:41 company/models.py:173 users/serializers.py:198 msgid "Email" msgstr "E-Pošta" @@ -215,160 +215,176 @@ msgstr "E-Pošta" msgid "You must enable two-factor authentication before doing anything else." msgstr "" -#: InvenTree/models.py:111 +#: InvenTree/models.py:114 msgid "Error running plugin validation" msgstr "Greška prilikom validacije ekstenzije" -#: InvenTree/models.py:192 +#: InvenTree/models.py:195 msgid "Metadata must be a python dict object" msgstr "Metapodaci moraju biti \"python dict\" objekat" -#: InvenTree/models.py:198 +#: InvenTree/models.py:201 msgid "Plugin Metadata" msgstr "Metapodaci dodatka" -#: InvenTree/models.py:199 +#: InvenTree/models.py:202 msgid "JSON metadata field, for use by external plugins" msgstr "Polje metapodataka JSON, za korištenje eksternih dodataka" -#: InvenTree/models.py:382 +#: InvenTree/models.py:385 msgid "Improperly formatted pattern" msgstr "Neispravno formatiran obrazac" -#: InvenTree/models.py:389 +#: InvenTree/models.py:392 msgid "Unknown format key specified" msgstr "Naveden je ključ nepoznatog formata" -#: InvenTree/models.py:395 +#: InvenTree/models.py:398 msgid "Missing required format key" msgstr "Nedostaje potreban ključ formata" -#: InvenTree/models.py:406 +#: InvenTree/models.py:409 msgid "Reference field cannot be empty" msgstr "Polje za reference ne može biti prazno" -#: InvenTree/models.py:414 +#: InvenTree/models.py:417 msgid "Reference must match required pattern" msgstr "Referenca mora odgovarati traženom obrascu" -#: InvenTree/models.py:445 +#: InvenTree/models.py:448 msgid "Reference number is too large" msgstr "Broj reference je predugačak" -#: InvenTree/models.py:743 +#: InvenTree/models.py:896 msgid "Invalid choice" msgstr "Nevažeći izvor" -#: InvenTree/models.py:856 common/models.py:1410 common/models.py:1837 -#: common/models.py:2096 common/models.py:2221 common/serializers.py:535 -#: company/models.py:615 generic/states/serializers.py:20 machine/models.py:25 -#: part/models.py:1039 part/models.py:3850 plugin/models.py:54 +#: InvenTree/models.py:1017 common/models.py:1414 common/models.py:1841 +#: common/models.py:2102 common/models.py:2227 common/models.py:2494 +#: common/serializers.py:539 generic/states/serializers.py:20 +#: machine/models.py:25 part/models.py:1127 plugin/models.py:54 #: report/models.py:216 stock/models.py:84 msgid "Name" msgstr "Ime" -#: InvenTree/models.py:862 build/models.py:252 common/models.py:171 -#: common/models.py:2228 common/models.py:2341 company/models.py:543 -#: company/models.py:848 order/models.py:442 order/models.py:1825 -#: part/models.py:1062 part/models.py:3865 report/models.py:222 +#: InvenTree/models.py:1023 build/models.py:253 common/models.py:175 +#: common/models.py:2234 common/models.py:2347 common/models.py:2509 +#: company/models.py:545 company/models.py:802 order/models.py:443 +#: order/models.py:1826 part/models.py:1150 report/models.py:222 #: report/models.py:815 report/models.py:841 #: report/templates/report/inventree_build_order_report.html:117 #: stock/models.py:90 msgid "Description" msgstr "Opis" -#: InvenTree/models.py:863 stock/models.py:91 +#: InvenTree/models.py:1024 stock/models.py:91 msgid "Description (optional)" msgstr "Opis (Opciono)" -#: InvenTree/models.py:878 common/models.py:2394 +#: InvenTree/models.py:1039 common/models.py:2815 msgid "Path" msgstr "Putanja" -#: InvenTree/models.py:983 +#: InvenTree/models.py:1144 msgid "Duplicate names cannot exist under the same parent" msgstr "Dvostruka imena ne mogu postojati pod istom nadredjenom grupom" -#: InvenTree/models.py:1067 +#: InvenTree/models.py:1228 msgid "Markdown notes (optional)" msgstr "Zabeleške (Opciono)" -#: InvenTree/models.py:1098 +#: InvenTree/models.py:1259 msgid "Barcode Data" msgstr "Podaci sa barkoda" -#: InvenTree/models.py:1099 +#: InvenTree/models.py:1260 msgid "Third party barcode data" msgstr "Podaci sa barkoda trećih lica" -#: InvenTree/models.py:1105 +#: InvenTree/models.py:1266 msgid "Barcode Hash" msgstr "Heš barkoda" -#: InvenTree/models.py:1106 +#: InvenTree/models.py:1267 msgid "Unique hash of barcode data" msgstr "Jedinstveni hash barkoda" -#: InvenTree/models.py:1187 +#: InvenTree/models.py:1348 msgid "Existing barcode found" msgstr "Postojeći barkod pronađen" -#: InvenTree/models.py:1269 +#: InvenTree/models.py:1430 msgid "Task Failure" msgstr "Neuspešan zadatak" -#: InvenTree/models.py:1270 +#: InvenTree/models.py:1431 #, python-brace-format msgid "Background worker task '{f}' failed after {n} attempts" msgstr "Pozadinski proces '{f}' neuspešan posle {n} pokušaja" -#: InvenTree/models.py:1297 +#: InvenTree/models.py:1458 msgid "Server Error" msgstr "Greška servera" -#: InvenTree/models.py:1298 +#: InvenTree/models.py:1459 msgid "An error has been logged by the server." msgstr "Server je zabležio grešku." -#: InvenTree/models.py:1340 common/models.py:1748 +#: InvenTree/models.py:1501 common/models.py:1752 #: report/templates/report/inventree_bill_of_materials_report.html:126 #: report/templates/report/inventree_bill_of_materials_report.html:148 #: report/templates/report/inventree_return_order_report.html:35 msgid "Image" msgstr "Slika" -#: InvenTree/serializers.py:253 part/models.py:4571 +#: InvenTree/serializers.py:255 part/models.py:4196 msgid "Must be a valid number" msgstr "Mora biti važeći broj" -#: InvenTree/serializers.py:295 company/models.py:214 part/models.py:3285 +#: InvenTree/serializers.py:297 company/models.py:215 part/models.py:3349 msgid "Currency" msgstr "Valuta" -#: InvenTree/serializers.py:298 part/serializers.py:1385 +#: InvenTree/serializers.py:300 part/serializers.py:1250 msgid "Select currency from available options" msgstr "Odaberite valutu među dostupnim opcijama" -#: InvenTree/serializers.py:653 +#: InvenTree/serializers.py:654 +msgid "This field may not be null." +msgstr "" + +#: InvenTree/serializers.py:660 msgid "Invalid value" msgstr "Nevažeća vrednost" -#: InvenTree/serializers.py:690 +#: InvenTree/serializers.py:697 msgid "Remote Image" msgstr "Udaljena slika" -#: InvenTree/serializers.py:691 +#: InvenTree/serializers.py:698 msgid "URL of remote image file" msgstr "URL udaljene slike" -#: InvenTree/serializers.py:709 +#: InvenTree/serializers.py:716 msgid "Downloading images from remote URL is not enabled" msgstr "Preuzimanje slika s udaljenog URL-a nije omogućeno" -#: InvenTree/serializers.py:716 +#: InvenTree/serializers.py:723 msgid "Failed to download image from remote URL" msgstr "Neuspešno preuzimanje slike sa udaljene URL" +#: InvenTree/serializers.py:806 +msgid "Invalid content type format" +msgstr "" + +#: InvenTree/serializers.py:809 +msgid "Content type not found" +msgstr "" + +#: InvenTree/serializers.py:815 +msgid "Content type does not match required mixin class" +msgstr "" + #: InvenTree/setting/locales.py:20 msgid "Arabic" msgstr "Arabski" @@ -537,30 +553,30 @@ msgstr "Nevažeća jedinica mere" msgid "Not a valid currency code" msgstr "Nevažeći kod valute" -#: build/api.py:54 order/api.py:111 order/api.py:270 order/api.py:1373 -#: order/serializers.py:132 +#: build/api.py:54 order/api.py:116 order/api.py:275 order/api.py:1378 +#: order/serializers.py:133 msgid "Order Status" msgstr "Status naloga" -#: build/api.py:80 build/models.py:264 +#: build/api.py:80 build/models.py:265 msgid "Parent Build" msgstr "Roditeljski proizvod" -#: build/api.py:84 build/api.py:831 order/api.py:547 order/api.py:770 -#: order/api.py:1174 order/api.py:1449 stock/api.py:573 +#: build/api.py:84 build/api.py:837 order/api.py:553 order/api.py:776 +#: order/api.py:1179 order/api.py:1454 stock/api.py:573 msgid "Include Variants" msgstr "Uključi varijante" -#: build/api.py:100 build/api.py:466 build/api.py:845 build/models.py:270 -#: build/serializers.py:1225 build/serializers.py:1356 -#: build/serializers.py:1427 company/models.py:1067 company/serializers.py:445 -#: order/api.py:298 order/api.py:302 order/api.py:929 order/api.py:1187 -#: order/api.py:1190 order/models.py:1941 order/models.py:2108 -#: order/models.py:2109 part/api.py:1233 part/api.py:1236 part/api.py:1302 -#: part/api.py:1589 part/models.py:472 part/models.py:3296 part/models.py:3439 -#: part/models.py:3497 part/models.py:3518 part/models.py:3540 -#: part/models.py:3679 part/models.py:4046 part/models.py:4368 -#: part/models.py:4787 part/serializers.py:1928 +#: build/api.py:100 build/api.py:472 build/api.py:851 build/models.py:271 +#: build/serializers.py:1233 build/serializers.py:1364 +#: build/serializers.py:1435 company/models.py:1021 company/serializers.py:490 +#: order/api.py:303 order/api.py:307 order/api.py:934 order/api.py:1192 +#: order/api.py:1195 order/models.py:1942 order/models.py:2109 +#: order/models.py:2110 part/api.py:1160 part/api.py:1163 part/api.py:1314 +#: part/models.py:550 part/models.py:3360 part/models.py:3503 +#: part/models.py:3561 part/models.py:3582 part/models.py:3604 +#: part/models.py:3743 part/models.py:3993 part/models.py:4412 +#: part/serializers.py:1801 #: report/templates/report/inventree_bill_of_materials_report.html:110 #: report/templates/report/inventree_bill_of_materials_report.html:137 #: report/templates/report/inventree_build_order_report.html:109 @@ -580,9 +596,9 @@ msgstr "Uključi varijante" msgid "Part" msgstr "Deo" -#: build/api.py:120 build/api.py:123 build/serializers.py:1438 part/api.py:980 -#: part/api.py:1316 part/api.py:1600 part/models.py:1080 part/models.py:3568 -#: part/models.py:4162 part/serializers.py:1752 stock/api.py:869 +#: build/api.py:120 build/api.py:123 build/serializers.py:1446 part/api.py:975 +#: part/api.py:1325 part/models.py:435 part/models.py:1168 part/models.py:3632 +#: part/serializers.py:1617 stock/api.py:869 msgid "Category" msgstr "Kategorija" @@ -590,7 +606,7 @@ msgstr "Kategorija" msgid "Ancestor Build" msgstr "Proizvod predaka" -#: build/api.py:152 order/api.py:129 +#: build/api.py:152 order/api.py:134 msgid "Assigned to me" msgstr "Dodeljeno meni" @@ -638,134 +654,134 @@ msgstr "Završeno pre" msgid "Completed after" msgstr "Završeno nakon" -#: build/api.py:249 order/api.py:226 +#: build/api.py:249 order/api.py:231 msgid "Min Date" msgstr "" -#: build/api.py:272 order/api.py:245 +#: build/api.py:272 order/api.py:250 msgid "Max Date" msgstr "" -#: build/api.py:297 build/api.py:300 part/api.py:217 stock/api.py:961 +#: build/api.py:297 build/api.py:300 part/api.py:212 stock/api.py:961 msgid "Exclude Tree" msgstr "Ne uključuj stablo" -#: build/api.py:405 +#: build/api.py:411 msgid "Build must be cancelled before it can be deleted" msgstr "Proizvod mora biti poništen pre nego što se izbriše" -#: build/api.py:449 build/serializers.py:1374 part/models.py:4402 +#: build/api.py:455 build/serializers.py:1382 part/models.py:4027 msgid "Consumable" msgstr "Potrošni materijal" -#: build/api.py:452 build/serializers.py:1377 part/models.py:4396 +#: build/api.py:458 build/serializers.py:1385 part/models.py:4021 msgid "Optional" msgstr "Opciono" -#: build/api.py:455 build/serializers.py:1415 common/setting/system.py:456 -#: part/models.py:1202 part/serializers.py:1714 part/serializers.py:1725 +#: build/api.py:461 build/serializers.py:1423 common/setting/system.py:456 +#: part/models.py:1290 part/serializers.py:1579 part/serializers.py:1590 #: stock/api.py:639 msgid "Assembly" msgstr "Sklapanje" -#: build/api.py:458 +#: build/api.py:464 msgid "Tracked" msgstr "Praćeno" -#: build/api.py:461 build/serializers.py:1380 part/models.py:1220 +#: build/api.py:467 build/serializers.py:1388 part/models.py:1308 msgid "Testable" msgstr "Proverljivo" -#: build/api.py:471 order/api.py:993 order/api.py:1363 +#: build/api.py:477 order/api.py:998 order/api.py:1368 msgid "Order Outstanding" msgstr "Neizmirena narudžbina" -#: build/api.py:481 build/serializers.py:1464 order/api.py:952 +#: build/api.py:487 build/serializers.py:1472 order/api.py:957 msgid "Allocated" msgstr "Alocirano" -#: build/api.py:490 build/models.py:1672 build/serializers.py:1393 +#: build/api.py:496 build/models.py:1673 build/serializers.py:1401 msgid "Consumed" msgstr "" -#: build/api.py:499 company/models.py:912 company/serializers.py:440 +#: build/api.py:505 company/models.py:866 company/serializers.py:467 #: templates/email/build_order_required_stock.html:19 #: templates/email/low_stock_notification.html:17 #: templates/email/part_event_notification.html:18 msgid "Available" msgstr "Dostupno" -#: build/api.py:523 build/serializers.py:1466 company/serializers.py:437 -#: order/serializers.py:1281 part/serializers.py:959 part/serializers.py:1306 -#: part/serializers.py:1761 +#: build/api.py:529 build/serializers.py:1474 company/serializers.py:464 +#: order/serializers.py:1295 part/serializers.py:844 part/serializers.py:1171 +#: part/serializers.py:1626 msgid "On Order" msgstr "Po narudžbini" -#: build/api.py:868 build/models.py:117 order/models.py:1974 +#: build/api.py:874 build/models.py:118 order/models.py:1975 #: report/templates/report/inventree_build_order_report.html:105 #: stock/serializers.py:93 templates/email/build_order_completed.html:16 #: templates/email/overdue_build_order.html:15 msgid "Build Order" msgstr "Nalog za izradu" -#: build/api.py:882 build/api.py:886 build/serializers.py:372 -#: build/serializers.py:497 build/serializers.py:567 build/serializers.py:1251 -#: build/serializers.py:1256 order/api.py:1234 order/api.py:1239 -#: order/serializers.py:833 order/serializers.py:973 order/serializers.py:2042 +#: build/api.py:888 build/api.py:892 build/serializers.py:380 +#: build/serializers.py:505 build/serializers.py:575 build/serializers.py:1259 +#: build/serializers.py:1264 order/api.py:1239 order/api.py:1244 +#: order/serializers.py:844 order/serializers.py:984 order/serializers.py:2059 #: stock/api.py:987 stock/serializers.py:111 stock/serializers.py:601 #: stock/serializers.py:710 stock/serializers.py:888 stock/serializers.py:1418 -#: stock/serializers.py:1731 stock/serializers.py:1780 +#: stock/serializers.py:1739 stock/serializers.py:1788 #: templates/email/stale_stock_notification.html:18 users/models.py:549 msgid "Location" msgstr "Lokacija" -#: build/api.py:894 +#: build/api.py:900 msgid "Output" msgstr "" -#: build/api.py:896 +#: build/api.py:902 msgid "Filter by output stock item ID. Use 'null' to find uninstalled build items." msgstr "" -#: build/models.py:118 users/ruleset.py:31 +#: build/models.py:119 users/ruleset.py:31 msgid "Build Orders" msgstr "Nalozi za izradu" -#: build/models.py:168 +#: build/models.py:169 msgid "Assembly BOM has not been validated" msgstr "BOM za sastavljanje nije potvrđeno" -#: build/models.py:175 +#: build/models.py:176 msgid "Build order cannot be created for an inactive part" msgstr "Nalog za izradu se ne može kreirati za neaktivan deo" -#: build/models.py:182 +#: build/models.py:183 msgid "Build order cannot be created for an unlocked part" msgstr "Nalog za izradu se ne može kreirati za zaključan deo" -#: build/models.py:200 +#: build/models.py:201 msgid "Build orders can only be externally fulfilled for purchaseable parts" msgstr "" -#: build/models.py:207 order/models.py:369 +#: build/models.py:208 order/models.py:370 msgid "Responsible user or group must be specified" msgstr "Odgovorni korisnik ili grupa mora biti određena" -#: build/models.py:212 +#: build/models.py:213 msgid "Build order part cannot be changed" msgstr "Deo u nalogu za izradu ne može se izmeniti" -#: build/models.py:217 order/models.py:382 +#: build/models.py:218 order/models.py:383 msgid "Target date must be after start date" msgstr "" -#: build/models.py:245 +#: build/models.py:246 msgid "Build Order Reference" msgstr "Reference naloga za pravljenje" -#: build/models.py:246 build/serializers.py:1371 order/models.py:614 -#: order/models.py:1311 order/models.py:1773 order/models.py:2712 -#: part/models.py:4442 +#: build/models.py:247 build/serializers.py:1379 order/models.py:615 +#: order/models.py:1312 order/models.py:1774 order/models.py:2713 +#: part/models.py:4067 #: report/templates/report/inventree_bill_of_materials_report.html:139 #: report/templates/report/inventree_purchase_order_report.html:35 #: report/templates/report/inventree_return_order_report.html:26 @@ -773,230 +789,230 @@ msgstr "Reference naloga za pravljenje" msgid "Reference" msgstr "Referenca" -#: build/models.py:255 +#: build/models.py:256 msgid "Brief description of the build (optional)" msgstr "Kratak opis izrade (nije obavezno)" -#: build/models.py:265 +#: build/models.py:266 msgid "BuildOrder to which this build is allocated" msgstr "Nalog za izradu za koju je ova izrada alocirana" -#: build/models.py:274 +#: build/models.py:275 msgid "Select part to build" msgstr "Izaberi deo za izgradnju" -#: build/models.py:279 +#: build/models.py:280 msgid "Sales Order Reference" msgstr "Referenca naloga za prodaju" -#: build/models.py:284 +#: build/models.py:285 msgid "SalesOrder to which this build is allocated" msgstr "Nalog za prodaju za koju je ova izrada alocirana" -#: build/models.py:289 build/serializers.py:1097 +#: build/models.py:290 build/serializers.py:1105 msgid "Source Location" msgstr "Lokacija izvora" -#: build/models.py:295 +#: build/models.py:296 msgid "Select location to take stock from for this build (leave blank to take from any stock location)" msgstr "Izaberi lokaciju zaliha za ovu izgradnju (ostaviti prazno ako hoćete bilo koju lokaciju zaliha" -#: build/models.py:301 +#: build/models.py:302 msgid "External Build" msgstr "" -#: build/models.py:302 +#: build/models.py:303 msgid "This build order is fulfilled externally" msgstr "" -#: build/models.py:307 +#: build/models.py:308 msgid "Destination Location" msgstr "Lokacija odredišta" -#: build/models.py:312 +#: build/models.py:313 msgid "Select location where the completed items will be stored" msgstr "Izaberi lokaciju gde će se završene stavke skladištiti" -#: build/models.py:316 +#: build/models.py:317 msgid "Build Quantity" msgstr "Količina izgradnje" -#: build/models.py:319 +#: build/models.py:320 msgid "Number of stock items to build" msgstr "Broj stavki za izgradnju" -#: build/models.py:323 +#: build/models.py:324 msgid "Completed items" msgstr "Kompletirane stavke" -#: build/models.py:325 +#: build/models.py:326 msgid "Number of stock items which have been completed" msgstr "Broj stavki u zalihama koje su kompletirane" -#: build/models.py:329 +#: build/models.py:330 msgid "Build Status" msgstr "Status izgradnje" -#: build/models.py:334 +#: build/models.py:335 msgid "Build status code" msgstr "Kod statusa izgradnje" -#: build/models.py:343 build/serializers.py:359 order/serializers.py:849 +#: build/models.py:344 build/serializers.py:367 order/serializers.py:860 #: stock/models.py:1100 stock/serializers.py:85 stock/serializers.py:1591 msgid "Batch Code" msgstr "Kod serije" -#: build/models.py:347 build/serializers.py:360 +#: build/models.py:348 build/serializers.py:368 msgid "Batch code for this build output" msgstr "Kod izgradnje za ovaj izlaz" -#: build/models.py:351 order/models.py:479 order/serializers.py:186 -#: part/models.py:1283 +#: build/models.py:352 order/models.py:480 order/serializers.py:193 +#: part/models.py:1371 msgid "Creation Date" msgstr "datum kreiranja" -#: build/models.py:357 +#: build/models.py:358 msgid "Build start date" msgstr "" -#: build/models.py:358 +#: build/models.py:359 msgid "Scheduled start date for this build order" msgstr "" -#: build/models.py:364 +#: build/models.py:365 msgid "Target completion date" msgstr "Datum ciljanog završetka" -#: build/models.py:366 +#: build/models.py:367 msgid "Target date for build completion. Build will be overdue after this date." msgstr "Ciljani datum za završetak izgradnje. Izgradnja će biti u prekoračenju nakon ovog datuma" -#: build/models.py:371 order/models.py:667 order/models.py:2751 +#: build/models.py:372 order/models.py:668 order/models.py:2752 msgid "Completion Date" msgstr "Datum završetka" -#: build/models.py:379 +#: build/models.py:380 msgid "completed by" msgstr "kompletirano od " -#: build/models.py:388 +#: build/models.py:389 msgid "Issued by" msgstr "izdato od" -#: build/models.py:389 +#: build/models.py:390 msgid "User who issued this build order" msgstr "Korisnik koji je izdao nalog za izgradnju" -#: build/models.py:398 common/models.py:180 order/api.py:179 -#: order/models.py:504 part/models.py:1300 +#: build/models.py:399 common/models.py:184 order/api.py:184 +#: order/models.py:505 part/models.py:1388 #: report/templates/report/inventree_build_order_report.html:158 msgid "Responsible" msgstr "Odgovoran" -#: build/models.py:399 +#: build/models.py:400 msgid "User or group responsible for this build order" msgstr "Korisnik ili grupa koja je odgovorna za ovaj nalog za izgradnju" -#: build/models.py:404 stock/models.py:1093 +#: build/models.py:405 stock/models.py:1093 msgid "External Link" msgstr "Spoljašnja konekcija" -#: build/models.py:406 common/models.py:1984 part/models.py:1114 +#: build/models.py:407 common/models.py:1990 part/models.py:1202 #: stock/models.py:1095 msgid "Link to external URL" msgstr "Link za eksterni URL" -#: build/models.py:411 +#: build/models.py:412 msgid "Build Priority" msgstr "Prioritet izgradnje" -#: build/models.py:414 +#: build/models.py:415 msgid "Priority of this build order" msgstr "Prioritet ovog naloga za izgradnju" -#: build/models.py:422 common/models.py:150 common/models.py:164 -#: order/api.py:165 order/models.py:451 order/models.py:1805 +#: build/models.py:423 common/models.py:154 common/models.py:168 +#: order/api.py:170 order/models.py:452 order/models.py:1806 msgid "Project Code" msgstr "Kod projekta" -#: build/models.py:423 +#: build/models.py:424 msgid "Project code for this build order" msgstr "Kod projekta za ovaj nalog za izgradnju" -#: build/models.py:676 +#: build/models.py:677 msgid "Cannot complete build order with open child builds" msgstr "" -#: build/models.py:681 +#: build/models.py:682 msgid "Cannot complete build order with incomplete outputs" msgstr "" -#: build/models.py:700 build/models.py:830 +#: build/models.py:701 build/models.py:831 msgid "Failed to offload task to complete build allocations" msgstr "Nije uspelo preuzimanje zadataka da bi se dovršila alokacija izgradnje" -#: build/models.py:723 +#: build/models.py:724 #, python-brace-format msgid "Build order {build} has been completed" msgstr "Nalog za izgradnju {build} je kompletiran" -#: build/models.py:729 +#: build/models.py:730 msgid "A build order has been completed" msgstr "Nalog za izgradnju je kompletiran" -#: build/models.py:911 build/serializers.py:407 +#: build/models.py:912 build/serializers.py:415 msgid "Serial numbers must be provided for trackable parts" msgstr "Za delove koji mogu da se prate moraju se dostaviri serijski brojevi" -#: build/models.py:1042 build/models.py:1129 +#: build/models.py:1043 build/models.py:1130 msgid "No build output specified" msgstr "Nije određen izlaz izgradnje" -#: build/models.py:1045 +#: build/models.py:1046 msgid "Build output is already completed" msgstr "Izlaz izgradnje je već kompletiran" -#: build/models.py:1048 +#: build/models.py:1049 msgid "Build output does not match Build Order" msgstr "Izlaz izgradnje se ne slaže sa Nalogom za izgradnju" -#: build/models.py:1136 build/models.py:1234 build/serializers.py:285 -#: build/serializers.py:335 build/serializers.py:965 build/serializers.py:1739 -#: order/models.py:717 order/serializers.py:658 order/serializers.py:844 -#: part/serializers.py:1708 stock/models.py:940 stock/models.py:1430 +#: build/models.py:1137 build/models.py:1235 build/serializers.py:293 +#: build/serializers.py:343 build/serializers.py:973 build/serializers.py:1747 +#: order/models.py:718 order/serializers.py:669 order/serializers.py:855 +#: part/serializers.py:1573 stock/models.py:940 stock/models.py:1430 #: stock/models.py:1878 stock/serializers.py:688 stock/serializers.py:1580 msgid "Quantity must be greater than zero" msgstr "Količina mora biti veća od nule" -#: build/models.py:1140 build/models.py:1239 build/serializers.py:290 +#: build/models.py:1141 build/models.py:1240 build/serializers.py:298 msgid "Quantity cannot be greater than the output quantity" msgstr "Količina ne sme da bude veća od izlazne količine" -#: build/models.py:1214 build/serializers.py:606 +#: build/models.py:1215 build/serializers.py:614 msgid "Build output has not passed all required tests" msgstr "" -#: build/models.py:1217 build/serializers.py:601 +#: build/models.py:1218 build/serializers.py:609 #, python-brace-format msgid "Build output {serial} has not passed all required tests" msgstr "Izlaz izgradnje {serial} nije zadovoljio zahtevane testove" -#: build/models.py:1229 +#: build/models.py:1230 msgid "Cannot partially complete a build output with allocated items" msgstr "" -#: build/models.py:1627 +#: build/models.py:1628 msgid "Build Order Line Item" msgstr "Stavka porudžbine naloga za izgradnju" -#: build/models.py:1651 +#: build/models.py:1652 msgid "Build object" msgstr "Objekat izgradnje" -#: build/models.py:1663 build/models.py:1974 build/serializers.py:271 -#: build/serializers.py:320 build/serializers.py:1392 common/models.py:1340 -#: order/models.py:1756 order/models.py:2597 order/serializers.py:1696 -#: order/serializers.py:2124 part/models.py:3453 part/models.py:4390 +#: build/models.py:1664 build/models.py:1975 build/serializers.py:279 +#: build/serializers.py:328 build/serializers.py:1400 common/models.py:1344 +#: order/models.py:1757 order/models.py:2598 order/serializers.py:1710 +#: order/serializers.py:2141 part/models.py:3517 part/models.py:4015 #: report/templates/report/inventree_bill_of_materials_report.html:138 #: report/templates/report/inventree_build_order_report.html:113 #: report/templates/report/inventree_purchase_order_report.html:36 @@ -1014,427 +1030,427 @@ msgstr "Objekat izgradnje" msgid "Quantity" msgstr "Količina" -#: build/models.py:1664 +#: build/models.py:1665 msgid "Required quantity for build order" msgstr "Potrebna količina za nalog za izgradnju" -#: build/models.py:1673 +#: build/models.py:1674 msgid "Quantity of consumed stock" msgstr "" -#: build/models.py:1772 +#: build/models.py:1773 msgid "Build item must specify a build output, as master part is marked as trackable" msgstr "Stavka izgradnje mora imati izlaz izgradnje, jer je nadređeni deo markiran da može da se prati" -#: build/models.py:1783 +#: build/models.py:1784 #, python-brace-format msgid "Allocated quantity ({q}) must not exceed available stock quantity ({a})" msgstr "Alocirana količina ({q}) ne sme da bude veća od količine dostupnih zaliha ({a})" -#: build/models.py:1804 order/models.py:2546 +#: build/models.py:1805 order/models.py:2547 msgid "Stock item is over-allocated" msgstr "Stavka zaliha je prealocirana" -#: build/models.py:1809 order/models.py:2549 +#: build/models.py:1810 order/models.py:2550 msgid "Allocation quantity must be greater than zero" msgstr "Količina alokacije mora da bude veća od nule" -#: build/models.py:1815 +#: build/models.py:1816 msgid "Quantity must be 1 for serialized stock" msgstr "Količina mora da bude 1 za zalihe koje su serijalizovane" -#: build/models.py:1875 +#: build/models.py:1876 msgid "Selected stock item does not match BOM line" msgstr "Izabrana stavka zaliha se ne slaže sa porudžbinom sa spiska materijala" -#: build/models.py:1913 +#: build/models.py:1914 msgid "Allocated quantity exceeds available stock quantity" msgstr "" -#: build/models.py:1964 build/serializers.py:948 build/serializers.py:1240 -#: order/serializers.py:1533 order/serializers.py:1554 +#: build/models.py:1965 build/serializers.py:956 build/serializers.py:1248 +#: order/serializers.py:1547 order/serializers.py:1568 #: report/templates/report/inventree_sales_order_shipment_report.html:29 #: stock/api.py:1404 stock/models.py:456 stock/serializers.py:102 #: stock/serializers.py:800 stock/serializers.py:1274 stock/serializers.py:1386 msgid "Stock Item" msgstr "Stavka zaliha" -#: build/models.py:1965 +#: build/models.py:1966 msgid "Source stock item" msgstr "Izvor stavke zaliha" -#: build/models.py:1975 +#: build/models.py:1976 msgid "Stock quantity to allocate to build" msgstr "Količina zaliha za alociranje za izgradnju" -#: build/models.py:1984 +#: build/models.py:1985 msgid "Install into" msgstr "Ugradi u" -#: build/models.py:1985 +#: build/models.py:1986 msgid "Destination stock item" msgstr "Stavka zaliha odredišta" -#: build/serializers.py:118 +#: build/serializers.py:120 msgid "Build Level" msgstr "Nivo izgradnje" -#: build/serializers.py:128 +#: build/serializers.py:136 msgid "Part Name" msgstr "Ime dela" -#: build/serializers.py:153 +#: build/serializers.py:161 msgid "Project Code Label" msgstr "Naziv koda projekta" -#: build/serializers.py:219 build/serializers.py:974 +#: build/serializers.py:227 build/serializers.py:982 msgid "Build Output" msgstr "Izlaz izgradnje" -#: build/serializers.py:231 +#: build/serializers.py:239 msgid "Build output does not match the parent build" msgstr "Izlaz izgradnje se ne slaže sa nadređenom izgradnjom" -#: build/serializers.py:235 +#: build/serializers.py:243 msgid "Output part does not match BuildOrder part" msgstr "Izlazni deo se ne slaže sa delom Naloga za Izgradnju" -#: build/serializers.py:239 +#: build/serializers.py:247 msgid "This build output has already been completed" msgstr "Ovaj izlaz izgradnje je već kompletiran" -#: build/serializers.py:253 +#: build/serializers.py:261 msgid "This build output is not fully allocated" msgstr "Ovaj izlaz izgradnje nije u potpunosti alociran" -#: build/serializers.py:272 build/serializers.py:321 +#: build/serializers.py:280 build/serializers.py:329 msgid "Enter quantity for build output" msgstr "Unesi količinu za izlaz izgradnje" -#: build/serializers.py:343 +#: build/serializers.py:351 msgid "Integer quantity required for trackable parts" msgstr "Brojčana količina potrebna za delove koji mogu da se prate" -#: build/serializers.py:349 +#: build/serializers.py:357 msgid "Integer quantity required, as the bill of materials contains trackable parts" msgstr "Potrebna je brojčana količina, jer opis materijala sadrži delove koji se mogu pratiti" -#: build/serializers.py:366 order/serializers.py:865 order/serializers.py:1700 +#: build/serializers.py:374 order/serializers.py:876 order/serializers.py:1714 #: stock/serializers.py:699 msgid "Serial Numbers" msgstr "Serijski brojevi" -#: build/serializers.py:367 +#: build/serializers.py:375 msgid "Enter serial numbers for build outputs" msgstr "Unesi serijske brojeve za izlaz izgradnje" -#: build/serializers.py:373 +#: build/serializers.py:381 msgid "Stock location for build output" msgstr "Lokacija zaliha za izlaz izgradnje" -#: build/serializers.py:388 +#: build/serializers.py:396 msgid "Auto Allocate Serial Numbers" msgstr "Automatski alociraj serijske brojeve" -#: build/serializers.py:390 +#: build/serializers.py:398 msgid "Automatically allocate required items with matching serial numbers" msgstr "Automatski alociraj tražene stavke sa odgovarajućim serijskim brojevima" -#: build/serializers.py:423 order/serializers.py:951 stock/api.py:1183 +#: build/serializers.py:431 order/serializers.py:962 stock/api.py:1183 #: stock/models.py:1901 msgid "The following serial numbers already exist or are invalid" msgstr "Sledeći serijski brojevi već postoje ili su neispravni" -#: build/serializers.py:465 build/serializers.py:521 build/serializers.py:613 +#: build/serializers.py:473 build/serializers.py:529 build/serializers.py:621 msgid "A list of build outputs must be provided" msgstr "Lista izlaza izgradnje se mora obezbediti" -#: build/serializers.py:498 +#: build/serializers.py:506 msgid "Stock location for scrapped outputs" msgstr "Lokacija zaliha za otpisane izlaze" -#: build/serializers.py:504 +#: build/serializers.py:512 msgid "Discard Allocations" msgstr "Odbaci alokacije" -#: build/serializers.py:505 +#: build/serializers.py:513 msgid "Discard any stock allocations for scrapped outputs" msgstr "Odbaci bilo kojiu alokaciju zaliha za otpisane izlaze" -#: build/serializers.py:510 +#: build/serializers.py:518 msgid "Reason for scrapping build output(s)" msgstr "Razlog za otpisane izlaz(e) izgradnje" -#: build/serializers.py:568 +#: build/serializers.py:576 msgid "Location for completed build outputs" msgstr "Lokacija za završene izlaze izgradnje" -#: build/serializers.py:576 +#: build/serializers.py:584 msgid "Accept Incomplete Allocation" msgstr "Prihvati nekompletirane Alokacije" -#: build/serializers.py:577 +#: build/serializers.py:585 msgid "Complete outputs if stock has not been fully allocated" msgstr "kompletiraj izlaze ako zalihe nisu u potpunosti alocirane" -#: build/serializers.py:702 +#: build/serializers.py:710 msgid "Consume Allocated Stock" msgstr "Troši alocirane zalihe" -#: build/serializers.py:703 +#: build/serializers.py:711 msgid "Consume any stock which has already been allocated to this build" msgstr "Troši bilo koje zalihe koje su već alocirane za ovu izgradnju" -#: build/serializers.py:709 +#: build/serializers.py:717 msgid "Remove Incomplete Outputs" msgstr "Ukloni nekompletirane izlaze" -#: build/serializers.py:710 +#: build/serializers.py:718 msgid "Delete any build outputs which have not been completed" msgstr "Izbriši svei izlaze izgradnje koji nisu kompletirani" -#: build/serializers.py:737 +#: build/serializers.py:745 msgid "Not permitted" msgstr "Nije dozvoljeno" -#: build/serializers.py:738 +#: build/serializers.py:746 msgid "Accept as consumed by this build order" msgstr "Prihvati kao potrošeno od strane ovog naloga za izgradnju" -#: build/serializers.py:739 +#: build/serializers.py:747 msgid "Deallocate before completing this build order" msgstr "Izmesti bre završetka ovog naloga za izgradnju" -#: build/serializers.py:766 +#: build/serializers.py:774 msgid "Overallocated Stock" msgstr "Sveukupne izdvojene zalihe" -#: build/serializers.py:769 +#: build/serializers.py:777 msgid "How do you want to handle extra stock items assigned to the build order" msgstr "Šta želite da radite sa viškom stavki u zalihama koje su dodeljene nalogu za izgradnju?" -#: build/serializers.py:780 +#: build/serializers.py:788 msgid "Some stock items have been overallocated" msgstr "Neke stavke zaliha su prealocirane" -#: build/serializers.py:785 +#: build/serializers.py:793 msgid "Accept Unallocated" msgstr "Prihvati nealocirano" -#: build/serializers.py:787 +#: build/serializers.py:795 msgid "Accept that stock items have not been fully allocated to this build order" msgstr "Prihvati da stavke zaliha nisu u potpunosti alocirane za ovaj nalog za izgradnju" -#: build/serializers.py:798 +#: build/serializers.py:806 msgid "Required stock has not been fully allocated" msgstr "Tražene zalihe nisu u potpunosti alocirane" -#: build/serializers.py:803 order/serializers.py:524 order/serializers.py:1601 +#: build/serializers.py:811 order/serializers.py:535 order/serializers.py:1615 msgid "Accept Incomplete" msgstr "Prihvati nekompletirano" -#: build/serializers.py:805 +#: build/serializers.py:813 msgid "Accept that the required number of build outputs have not been completed" msgstr "Prihvati da je traženi broj izlaza izgradnje nekompletan" -#: build/serializers.py:816 +#: build/serializers.py:824 msgid "Required build quantity has not been completed" msgstr "Traženi broj izgradnji nije kompletan" -#: build/serializers.py:828 +#: build/serializers.py:836 msgid "Build order has open child build orders" msgstr "Nalog za izgradnju ima otvoren potčinjene naloge za izgradnju" -#: build/serializers.py:831 +#: build/serializers.py:839 msgid "Build order must be in production state" msgstr "Nalog za izgradnju mora biti u stanju produkcije" -#: build/serializers.py:834 +#: build/serializers.py:842 msgid "Build order has incomplete outputs" msgstr "Nalog za izgradnju ima nekompletne izlaze" -#: build/serializers.py:873 +#: build/serializers.py:881 msgid "Build Line" msgstr "Porudžbina izgradnje" -#: build/serializers.py:881 +#: build/serializers.py:889 msgid "Build output" msgstr "Izlaz izgradnje" -#: build/serializers.py:889 +#: build/serializers.py:897 msgid "Build output must point to the same build" msgstr "Izlaz izgradnje mora da referencira istu izgradnju" -#: build/serializers.py:920 +#: build/serializers.py:928 msgid "Build Line Item" msgstr "Stavka porudžbine za izradu" -#: build/serializers.py:938 +#: build/serializers.py:946 msgid "bom_item.part must point to the same part as the build order" msgstr "bom_item.part mora da se referencira istom delu kao u nalogu za izgradnju" -#: build/serializers.py:954 stock/serializers.py:1287 +#: build/serializers.py:962 stock/serializers.py:1287 msgid "Item must be in stock" msgstr "Stavka mora da bude u zalihama" -#: build/serializers.py:997 order/serializers.py:1587 +#: build/serializers.py:1005 order/serializers.py:1601 #, python-brace-format msgid "Available quantity ({q}) exceeded" msgstr "Dostupna količina ({q}) premašena" -#: build/serializers.py:1003 +#: build/serializers.py:1011 msgid "Build output must be specified for allocation of tracked parts" msgstr "Izlaz izgradnje mora da određen za alokaciju praćenih delova" -#: build/serializers.py:1011 +#: build/serializers.py:1019 msgid "Build output cannot be specified for allocation of untracked parts" msgstr "Izlaz izgradnje ne može biti određen za alokaciju nepraćenih delova" -#: build/serializers.py:1035 order/serializers.py:1860 +#: build/serializers.py:1043 order/serializers.py:1874 msgid "Allocation items must be provided" msgstr "Stavke alociranja se moraju odrediti" -#: build/serializers.py:1099 +#: build/serializers.py:1107 msgid "Stock location where parts are to be sourced (leave blank to take from any location)" msgstr "Lokacija zaliha koje će da budu izvor delova (ostavi prazno ukoliko uzimate sa bilo koje lokacije)" -#: build/serializers.py:1108 +#: build/serializers.py:1116 msgid "Exclude Location" msgstr "Isključi lokaciju" -#: build/serializers.py:1109 +#: build/serializers.py:1117 msgid "Exclude stock items from this selected location" msgstr "Isključi stavke zaliha za ovu selektovanu lokaciju" -#: build/serializers.py:1114 +#: build/serializers.py:1122 msgid "Interchangeable Stock" msgstr "Zamenljive zalihe" -#: build/serializers.py:1115 +#: build/serializers.py:1123 msgid "Stock items in multiple locations can be used interchangeably" msgstr "Stavke zaliha koje su na različitim lokacijama se mogu međusobno menjati" -#: build/serializers.py:1120 +#: build/serializers.py:1128 msgid "Substitute Stock" msgstr "Zamenske zalihe" -#: build/serializers.py:1121 +#: build/serializers.py:1129 msgid "Allow allocation of substitute parts" msgstr "Dozvoli alociranje delova koji su zamenski" -#: build/serializers.py:1126 +#: build/serializers.py:1134 msgid "Optional Items" msgstr "Opcionalne stavke" -#: build/serializers.py:1127 +#: build/serializers.py:1135 msgid "Allocate optional BOM items to build order" msgstr "Alociraj opcione BOM stavke na nalog za izgradnju" -#: build/serializers.py:1148 +#: build/serializers.py:1156 msgid "Failed to start auto-allocation task" msgstr "Greška prilikom startovanja auto alociranja" -#: build/serializers.py:1200 +#: build/serializers.py:1208 msgid "BOM Reference" msgstr "Referenca BOM" -#: build/serializers.py:1206 +#: build/serializers.py:1214 msgid "BOM Part ID" msgstr "BOM ID dela" -#: build/serializers.py:1213 +#: build/serializers.py:1221 msgid "BOM Part Name" msgstr "BOM ime dela" -#: build/serializers.py:1266 build/serializers.py:1449 +#: build/serializers.py:1274 build/serializers.py:1457 msgid "Build" msgstr "" -#: build/serializers.py:1276 company/models.py:685 order/api.py:311 -#: order/api.py:316 order/api.py:543 order/serializers.py:650 +#: build/serializers.py:1284 company/models.py:639 order/api.py:316 +#: order/api.py:321 order/api.py:549 order/serializers.py:661 #: stock/models.py:1036 stock/serializers.py:579 msgid "Supplier Part" msgstr "Deo dobavljača" -#: build/serializers.py:1284 stock/serializers.py:620 +#: build/serializers.py:1292 stock/serializers.py:620 msgid "Allocated Quantity" msgstr "Alocirana količina" -#: build/serializers.py:1351 +#: build/serializers.py:1359 msgid "Build Reference" msgstr "Referenca izgradnje" -#: build/serializers.py:1361 +#: build/serializers.py:1369 msgid "Part Category Name" msgstr "Ime kategorije dela" -#: build/serializers.py:1383 common/setting/system.py:480 part/models.py:1214 +#: build/serializers.py:1391 common/setting/system.py:480 part/models.py:1302 msgid "Trackable" msgstr "Može da se prati" -#: build/serializers.py:1386 +#: build/serializers.py:1394 msgid "Inherited" msgstr "Nasleđen" -#: build/serializers.py:1389 part/models.py:4475 +#: build/serializers.py:1397 part/models.py:4100 msgid "Allow Variants" msgstr "Dozvoli varijante" -#: build/serializers.py:1395 build/serializers.py:1400 part/models.py:4208 -#: part/models.py:4779 stock/api.py:882 +#: build/serializers.py:1403 build/serializers.py:1408 part/models.py:3833 +#: part/models.py:4404 stock/api.py:882 msgid "BOM Item" msgstr "BOM stavka" -#: build/serializers.py:1467 order/serializers.py:1282 part/serializers.py:1310 -#: part/serializers.py:1765 +#: build/serializers.py:1475 order/serializers.py:1296 part/serializers.py:1175 +#: part/serializers.py:1630 msgid "In Production" msgstr "U proizvodnji" -#: build/serializers.py:1469 part/serializers.py:950 part/serializers.py:1314 +#: build/serializers.py:1477 part/serializers.py:835 part/serializers.py:1179 msgid "Scheduled to Build" msgstr "" -#: build/serializers.py:1472 part/serializers.py:987 +#: build/serializers.py:1480 part/serializers.py:872 msgid "External Stock" msgstr "Spoljašnje zalihe" -#: build/serializers.py:1473 part/serializers.py:1300 part/serializers.py:1808 +#: build/serializers.py:1481 part/serializers.py:1165 part/serializers.py:1673 msgid "Available Stock" msgstr "Dostupne zalihe" -#: build/serializers.py:1475 +#: build/serializers.py:1483 msgid "Available Substitute Stock" msgstr "Dostupne zamenske zalihe" -#: build/serializers.py:1478 +#: build/serializers.py:1486 msgid "Available Variant Stock" msgstr "Dostupne varijante zaliha" -#: build/serializers.py:1752 +#: build/serializers.py:1760 msgid "Consumed quantity exceeds allocated quantity" msgstr "" -#: build/serializers.py:1789 +#: build/serializers.py:1797 msgid "Optional notes for the stock consumption" msgstr "" -#: build/serializers.py:1806 +#: build/serializers.py:1814 msgid "Build item must point to the correct build order" msgstr "" -#: build/serializers.py:1811 +#: build/serializers.py:1819 msgid "Duplicate build item allocation" msgstr "" -#: build/serializers.py:1829 +#: build/serializers.py:1837 msgid "Build line must point to the correct build order" msgstr "" -#: build/serializers.py:1834 +#: build/serializers.py:1842 msgid "Duplicate build line allocation" msgstr "" -#: build/serializers.py:1846 +#: build/serializers.py:1854 msgid "At least one item or line must be provided" msgstr "" @@ -1482,702 +1498,826 @@ msgstr "Prekoračeni nalog za izgradnju" msgid "Build order {bo} is now overdue" msgstr "Nalog za izgradnju {bo} je sada prekoračen" -#: common/api.py:694 +#: common/api.py:701 msgid "Is Link" msgstr "je link" -#: common/api.py:702 +#: common/api.py:709 msgid "Is File" msgstr "je datoteka" -#: common/api.py:745 +#: common/api.py:756 msgid "User does not have permission to delete these attachments" msgstr "Korisnik nema potrebne dozvole da bi izbrisao ove atačmente" -#: common/api.py:762 +#: common/api.py:769 msgid "User does not have permission to delete this attachment" msgstr "Korisnik nema dozvolu da izbriše ovaj atačment" -#: common/currency.py:122 +#: common/currency.py:130 msgid "Invalid currency code" msgstr "Neispravan kod valute" -#: common/currency.py:124 +#: common/currency.py:132 msgid "Duplicate currency code" msgstr "Napravi duplikat koda valute" -#: common/currency.py:129 +#: common/currency.py:137 msgid "No valid currency codes provided" msgstr "Nisu obezbeđeni ispravni kodovi valuta" -#: common/currency.py:146 +#: common/currency.py:154 msgid "No plugin" msgstr "Nema dodataka" -#: common/models.py:101 common/models.py:126 common/models.py:2729 +#: common/models.py:105 common/models.py:130 common/models.py:3150 msgid "Updated" msgstr "Ažurirano" -#: common/models.py:102 common/models.py:127 +#: common/models.py:106 common/models.py:131 msgid "Timestamp of last update" msgstr "Vreme poslednjeg ažuriranja" -#: common/models.py:139 +#: common/models.py:143 msgid "Update By" msgstr "" -#: common/models.py:140 +#: common/models.py:144 msgid "User who last updated this object" msgstr "" -#: common/models.py:165 +#: common/models.py:169 msgid "Unique project code" msgstr "Jedinstveni kod projekta" -#: common/models.py:172 +#: common/models.py:176 msgid "Project description" msgstr "Opis projekta" -#: common/models.py:181 +#: common/models.py:185 msgid "User or group responsible for this project" msgstr "Korisnik ili grupa odgovorni za ovaj projkat" -#: common/models.py:771 common/models.py:1272 common/models.py:1310 +#: common/models.py:775 common/models.py:1276 common/models.py:1314 msgid "Settings key" msgstr "Ključ za podešavanje" -#: common/models.py:775 +#: common/models.py:779 msgid "Settings value" msgstr "Vrednost podešavanja" -#: common/models.py:830 +#: common/models.py:834 msgid "Chosen value is not a valid option" msgstr "Izabrana vrednost nije ispravna opcija" -#: common/models.py:846 +#: common/models.py:850 msgid "Value must be a boolean value" msgstr "Vrednost mora da bude boolean tipa" -#: common/models.py:854 +#: common/models.py:858 msgid "Value must be an integer value" msgstr "Vrednost mora da bude integer tipa" -#: common/models.py:862 +#: common/models.py:866 msgid "Value must be a valid number" msgstr "Vrednost mora biti broj" -#: common/models.py:887 +#: common/models.py:891 msgid "Value does not pass validation checks" msgstr "Vrednost ne prolazi test ispravnosti" -#: common/models.py:909 +#: common/models.py:913 msgid "Key string must be unique" msgstr "Tekstualni ključ mora da bude jedinstven" -#: common/models.py:1318 common/models.py:1319 common/models.py:1423 -#: common/models.py:1424 common/models.py:1669 common/models.py:1670 -#: common/models.py:2000 common/models.py:2001 common/models.py:2382 -#: importer/models.py:100 part/models.py:3547 part/models.py:3575 +#: common/models.py:1322 common/models.py:1323 common/models.py:1427 +#: common/models.py:1428 common/models.py:1673 common/models.py:1674 +#: common/models.py:2006 common/models.py:2007 common/models.py:2803 +#: importer/models.py:100 part/models.py:3611 part/models.py:3639 #: plugin/models.py:355 plugin/models.py:356 #: report/templates/report/inventree_test_report.html:105 users/models.py:124 #: users/models.py:501 msgid "User" msgstr "Korisnik" -#: common/models.py:1341 +#: common/models.py:1345 msgid "Price break quantity" msgstr "Prelomna količina cene" -#: common/models.py:1348 company/serializers.py:564 order/models.py:1842 -#: order/models.py:3043 +#: common/models.py:1352 company/serializers.py:349 order/models.py:1843 +#: order/models.py:3044 msgid "Price" msgstr "Cena" -#: common/models.py:1349 +#: common/models.py:1353 msgid "Unit price at specified quantity" msgstr "Cena jedinice za određenu količinu" -#: common/models.py:1400 common/models.py:1585 +#: common/models.py:1404 common/models.py:1589 msgid "Endpoint" msgstr "Krajnja tačka" -#: common/models.py:1401 +#: common/models.py:1405 msgid "Endpoint at which this webhook is received" msgstr "Krajnja tačka na kojoj je primljen zahtev za izmenu web stranice" -#: common/models.py:1411 +#: common/models.py:1415 msgid "Name for this webhook" msgstr "Ime ovog zahteva za izmenu stranice" -#: common/models.py:1415 common/models.py:2241 common/models.py:2348 -#: company/models.py:191 company/models.py:822 machine/models.py:40 -#: part/models.py:1237 plugin/models.py:69 stock/api.py:642 users/models.py:195 +#: common/models.py:1419 common/models.py:2247 common/models.py:2354 +#: company/models.py:192 company/models.py:776 machine/models.py:40 +#: part/models.py:1325 plugin/models.py:69 stock/api.py:642 users/models.py:195 #: users/models.py:554 users/serializers.py:314 msgid "Active" msgstr "Aktivan" -#: common/models.py:1415 +#: common/models.py:1419 msgid "Is this webhook active" msgstr "Da li je ovaj zahtev za izmenu aktivan?" -#: common/models.py:1431 users/models.py:172 +#: common/models.py:1435 users/models.py:172 msgid "Token" msgstr "Token" -#: common/models.py:1432 +#: common/models.py:1436 msgid "Token for access" msgstr "Token za pristup" -#: common/models.py:1440 +#: common/models.py:1444 msgid "Secret" msgstr "Tajna" -#: common/models.py:1441 +#: common/models.py:1445 msgid "Shared secret for HMAC" msgstr "Deljena tajna za HMAC" -#: common/models.py:1549 common/models.py:2619 +#: common/models.py:1553 common/models.py:3040 msgid "Message ID" msgstr "ID poruke" -#: common/models.py:1550 common/models.py:2609 +#: common/models.py:1554 common/models.py:3030 msgid "Unique identifier for this message" msgstr "Jedinstveni identifikator za ovu poruku" -#: common/models.py:1558 +#: common/models.py:1562 msgid "Host" msgstr "Računar" -#: common/models.py:1559 +#: common/models.py:1563 msgid "Host from which this message was received" msgstr "Računar koji je primio ovu poruku" -#: common/models.py:1567 +#: common/models.py:1571 msgid "Header" msgstr "Zaglavlje" -#: common/models.py:1568 +#: common/models.py:1572 msgid "Header of this message" msgstr "Zaglavlje ove poruke" -#: common/models.py:1575 +#: common/models.py:1579 msgid "Body" msgstr "Telo" -#: common/models.py:1576 +#: common/models.py:1580 msgid "Body of this message" msgstr "Telo ove poruke" -#: common/models.py:1586 +#: common/models.py:1590 msgid "Endpoint on which this message was received" msgstr "Krajnja tačka na kojoj je ova poruka primljena" -#: common/models.py:1591 +#: common/models.py:1595 msgid "Worked on" msgstr "Radilo se na " -#: common/models.py:1592 +#: common/models.py:1596 msgid "Was the work on this message finished?" msgstr "Da li je rad sa ovom porukom završen?" -#: common/models.py:1718 +#: common/models.py:1722 msgid "Id" msgstr "Id" -#: common/models.py:1720 +#: common/models.py:1724 msgid "Title" msgstr "Naslov" -#: common/models.py:1722 common/models.py:1983 company/models.py:185 -#: company/models.py:467 company/models.py:534 company/models.py:839 -#: order/models.py:457 order/models.py:1786 order/models.py:2343 -#: part/models.py:1113 +#: common/models.py:1726 common/models.py:1989 company/models.py:186 +#: company/models.py:468 company/models.py:536 company/models.py:793 +#: order/models.py:458 order/models.py:1787 order/models.py:2344 +#: part/models.py:1201 #: report/templates/report/inventree_build_order_report.html:164 msgid "Link" msgstr "Link" -#: common/models.py:1724 +#: common/models.py:1728 msgid "Published" msgstr "Objavljeno" -#: common/models.py:1726 +#: common/models.py:1730 msgid "Author" msgstr "Autor" -#: common/models.py:1728 +#: common/models.py:1732 msgid "Summary" msgstr "Rezime" -#: common/models.py:1731 common/models.py:2586 +#: common/models.py:1735 common/models.py:3007 msgid "Read" msgstr "Čitaj" -#: common/models.py:1731 +#: common/models.py:1735 msgid "Was this news item read?" msgstr "Da li je ova stavka vesti pročitana" -#: common/models.py:1748 +#: common/models.py:1752 msgid "Image file" msgstr "Datoteka slike" -#: common/models.py:1760 +#: common/models.py:1764 msgid "Target model type for this image" msgstr "Ciljni tip modela za ovu sliku" -#: common/models.py:1764 +#: common/models.py:1768 msgid "Target model ID for this image" msgstr "Ciljni ID modela za ovu sliku" -#: common/models.py:1786 +#: common/models.py:1790 msgid "Custom Unit" msgstr "Posebna jedinica" -#: common/models.py:1804 +#: common/models.py:1808 msgid "Unit symbol must be unique" msgstr "Simbol jedinice mora biti jedinstven" -#: common/models.py:1819 +#: common/models.py:1823 msgid "Unit name must be a valid identifier" msgstr "Ime jedinice mora da bude ispravan identifikator" -#: common/models.py:1838 +#: common/models.py:1842 msgid "Unit name" msgstr "Ime jedinice" -#: common/models.py:1845 +#: common/models.py:1849 msgid "Symbol" msgstr "Simbol" -#: common/models.py:1846 +#: common/models.py:1850 msgid "Optional unit symbol" msgstr "Opcioni simbol jedinice" -#: common/models.py:1852 +#: common/models.py:1856 msgid "Definition" msgstr "Definicija" -#: common/models.py:1853 +#: common/models.py:1857 msgid "Unit definition" msgstr "Definicija jedinice" -#: common/models.py:1911 common/models.py:1974 stock/models.py:2967 +#: common/models.py:1917 common/models.py:1980 stock/models.py:2984 #: stock/serializers.py:247 msgid "Attachment" msgstr "Prilog" -#: common/models.py:1928 +#: common/models.py:1934 msgid "Missing file" msgstr "Nedostaje datoteka" -#: common/models.py:1929 +#: common/models.py:1935 msgid "Missing external link" msgstr "Nedostaje eksterni link" -#: common/models.py:1966 +#: common/models.py:1972 common/models.py:2488 msgid "Model type" msgstr "" -#: common/models.py:1967 +#: common/models.py:1973 msgid "Target model type for image" msgstr "" -#: common/models.py:1975 +#: common/models.py:1981 msgid "Select file to attach" msgstr "Izaberite datoteku za prilog" -#: common/models.py:1991 +#: common/models.py:1997 msgid "Comment" msgstr "Komentar" -#: common/models.py:1992 +#: common/models.py:1998 msgid "Attachment comment" msgstr "Komentar priloga" -#: common/models.py:2008 +#: common/models.py:2014 msgid "Upload date" msgstr "Datum učitavanja" -#: common/models.py:2009 +#: common/models.py:2015 msgid "Date the file was uploaded" msgstr "Datum kada je datoteka učitana" -#: common/models.py:2013 +#: common/models.py:2019 msgid "File size" msgstr "Veličina datoteke" -#: common/models.py:2013 +#: common/models.py:2019 msgid "File size in bytes" msgstr "Veličina datoteke u bajtovima" -#: common/models.py:2051 common/serializers.py:684 +#: common/models.py:2057 common/serializers.py:688 msgid "Invalid model type specified for attachment" msgstr "Određen je neispravan tip modela za prilog" -#: common/models.py:2072 +#: common/models.py:2078 msgid "Custom State" msgstr "Posebno stanje" -#: common/models.py:2073 +#: common/models.py:2079 msgid "Custom States" msgstr "Posebna stanja" -#: common/models.py:2078 +#: common/models.py:2084 msgid "Reference Status Set" msgstr "Referentni status podešen" -#: common/models.py:2079 +#: common/models.py:2085 msgid "Status set that is extended with this custom state" msgstr "Status je podešen i produžen je sa ovim posebnim stanjem" -#: common/models.py:2083 generic/states/serializers.py:18 +#: common/models.py:2089 generic/states/serializers.py:18 msgid "Logical Key" msgstr "Logički ključ" -#: common/models.py:2085 +#: common/models.py:2091 msgid "State logical key that is equal to this custom state in business logic" msgstr "Stanje logičkog ključa je jednako posebnom ključu u poslovnoj logici" -#: common/models.py:2090 common/models.py:2329 company/models.py:622 -#: machine/serializers.py:27 -#: report/templates/report/inventree_test_report.html:104 stock/models.py:2959 +#: common/models.py:2096 common/models.py:2335 machine/serializers.py:27 +#: report/templates/report/inventree_test_report.html:104 stock/models.py:2976 msgid "Value" msgstr "Vrednost" -#: common/models.py:2091 +#: common/models.py:2097 msgid "Numerical value that will be saved in the models database" msgstr "Numerička vrednost koja će biti sačuvana u bazi podataka modela" -#: common/models.py:2097 +#: common/models.py:2103 msgid "Name of the state" msgstr "Ime stanja" -#: common/models.py:2106 common/models.py:2335 generic/states/serializers.py:22 +#: common/models.py:2112 common/models.py:2341 generic/states/serializers.py:22 msgid "Label" msgstr "Etiketa" -#: common/models.py:2107 +#: common/models.py:2113 msgid "Label that will be displayed in the frontend" msgstr "Etiketa koja će biti prikazana na korisničkoj strani" -#: common/models.py:2114 generic/states/serializers.py:24 +#: common/models.py:2120 generic/states/serializers.py:24 msgid "Color" msgstr "Boja" -#: common/models.py:2115 +#: common/models.py:2121 msgid "Color that will be displayed in the frontend" msgstr "Boja koja će biti prikazana na korisničkoj strani" -#: common/models.py:2123 +#: common/models.py:2129 msgid "Model" msgstr "Model" -#: common/models.py:2124 +#: common/models.py:2130 msgid "Model this state is associated with" msgstr "Model ovog stanja je povezan sa " -#: common/models.py:2139 +#: common/models.py:2145 msgid "Model must be selected" msgstr "Model mora biti izabran" -#: common/models.py:2142 +#: common/models.py:2148 msgid "Key must be selected" msgstr "Ključ mora biti izabran" -#: common/models.py:2145 +#: common/models.py:2151 msgid "Logical key must be selected" msgstr "Logički ključ mora biti izabran" -#: common/models.py:2149 +#: common/models.py:2155 msgid "Key must be different from logical key" msgstr "Ključ mora da se razlikuje od logičkog ključa" -#: common/models.py:2156 +#: common/models.py:2162 msgid "Valid reference status class must be provided" msgstr "Validna referenca statusa klase mora biti dostavljena" -#: common/models.py:2162 +#: common/models.py:2168 msgid "Key must be different from the logical keys of the reference status" msgstr "Ključ mora biti različit od logičkog ključa referentnog statusa" -#: common/models.py:2169 +#: common/models.py:2175 msgid "Logical key must be in the logical keys of the reference status" msgstr "Logički ključ mora biti među logičkim ključevima referentnog statusa" -#: common/models.py:2176 +#: common/models.py:2182 msgid "Name must be different from the names of the reference status" msgstr "Naziv mora biti različit od naziva u statusu reference" -#: common/models.py:2216 common/models.py:2323 part/models.py:3889 +#: common/models.py:2222 common/models.py:2329 common/models.py:2533 msgid "Selection List" msgstr "Lista odabira" -#: common/models.py:2217 +#: common/models.py:2223 msgid "Selection Lists" msgstr "Liste odabira" -#: common/models.py:2222 +#: common/models.py:2228 msgid "Name of the selection list" msgstr "Ime liste odabira" -#: common/models.py:2229 +#: common/models.py:2235 msgid "Description of the selection list" msgstr "Opis liste odabira" -#: common/models.py:2235 part/models.py:1242 +#: common/models.py:2241 part/models.py:1330 msgid "Locked" msgstr "Zaključano" -#: common/models.py:2236 +#: common/models.py:2242 msgid "Is this selection list locked?" msgstr "Da li je ova lista odabira zaključana?" -#: common/models.py:2242 +#: common/models.py:2248 msgid "Can this selection list be used?" msgstr "Da li se ova lista odabira može koristiti?" -#: common/models.py:2250 +#: common/models.py:2256 msgid "Source Plugin" msgstr "Ekstenzija/dodatak za izvor" -#: common/models.py:2251 +#: common/models.py:2257 msgid "Plugin which provides the selection list" msgstr "Ekstenzija koja pruža listu odabira" -#: common/models.py:2256 +#: common/models.py:2262 msgid "Source String" msgstr "String izvora" -#: common/models.py:2257 +#: common/models.py:2263 msgid "Optional string identifying the source used for this list" msgstr "Opcioni string koji identifikuje izvor koji se koristi za ovu listu" -#: common/models.py:2266 +#: common/models.py:2272 msgid "Default Entry" msgstr "Podrazumevani unos" -#: common/models.py:2267 +#: common/models.py:2273 msgid "Default entry for this selection list" msgstr "Podrazumevani unos za ovu listu odabira" -#: common/models.py:2272 common/models.py:2724 +#: common/models.py:2278 common/models.py:3145 msgid "Created" msgstr "Kreirano" -#: common/models.py:2273 +#: common/models.py:2279 msgid "Date and time that the selection list was created" msgstr "Datum i vreme kada je ova lista odabira kreirana" -#: common/models.py:2278 +#: common/models.py:2284 msgid "Last Updated" msgstr "Poslednje ažuriranje" -#: common/models.py:2279 +#: common/models.py:2285 msgid "Date and time that the selection list was last updated" msgstr "Datum i vreme kada je ova lista odabira ažurirana" -#: common/models.py:2313 +#: common/models.py:2319 msgid "Selection List Entry" msgstr "Unos liste odabira" -#: common/models.py:2314 +#: common/models.py:2320 msgid "Selection List Entries" msgstr "Unosi liste odabira" -#: common/models.py:2324 +#: common/models.py:2330 msgid "Selection list to which this entry belongs" msgstr "Lista odabira kojoj ovaj unos pripada" -#: common/models.py:2330 +#: common/models.py:2336 msgid "Value of the selection list entry" msgstr "Vrednost ovog unosa liste odabira" -#: common/models.py:2336 +#: common/models.py:2342 msgid "Label for the selection list entry" msgstr "Naziv ovog unosa liste odabira" -#: common/models.py:2342 +#: common/models.py:2348 msgid "Description of the selection list entry" msgstr "Opis ovog unosa liste odabira" -#: common/models.py:2349 +#: common/models.py:2355 msgid "Is this selection list entry active?" msgstr "Da li je unos ove liste odabira aktivan?" -#: common/models.py:2367 -msgid "Barcode Scan" -msgstr "Skeniranje bar koda" +#: common/models.py:2387 +msgid "Parameter Template" +msgstr "Šablon parametra" -#: common/models.py:2371 importer/models.py:546 part/models.py:4060 -msgid "Data" -msgstr "Podaci" - -#: common/models.py:2372 -msgid "Barcode data" -msgstr "Podaci bar koda" - -#: common/models.py:2383 -msgid "User who scanned the barcode" -msgstr "Korisnik koji je skenirao bar kod" - -#: common/models.py:2388 importer/models.py:69 -msgid "Timestamp" -msgstr "Vremenski trag" - -#: common/models.py:2389 -msgid "Date and time of the barcode scan" -msgstr "Datum i vreme skeniranja bar koda" - -#: common/models.py:2395 -msgid "URL endpoint which processed the barcode" -msgstr "URL krajnja tačka kojaj je obradila bar kod" - -#: common/models.py:2402 order/models.py:1832 plugin/serializers.py:93 -msgid "Context" -msgstr "Kontekst" - -#: common/models.py:2403 -msgid "Context data for the barcode scan" -msgstr "Kontekst podataka za skeniranje bar koda" - -#: common/models.py:2410 -msgid "Response" -msgstr "Odgovor" - -#: common/models.py:2411 -msgid "Response data from the barcode scan" -msgstr "Podaci odgovora za skeniranje bar koda" - -#: common/models.py:2417 report/templates/report/inventree_test_report.html:103 -#: stock/models.py:2953 -msgid "Result" -msgstr "Rezultat" - -#: common/models.py:2418 -msgid "Was the barcode scan successful?" -msgstr "Da li je skeniranje bar koda bilo uspešno?" - -#: common/models.py:2500 -msgid "An error occurred" +#: common/models.py:2388 +msgid "Parameter Templates" msgstr "" -#: common/models.py:2521 -msgid "INVE-E8: Email log deletion is protected. Set INVENTREE_PROTECT_EMAIL_LOG to False to allow deletion." +#: common/models.py:2425 +msgid "Checkbox parameters cannot have units" +msgstr "Checkbox parametri ne mogu imati jedinice" + +#: common/models.py:2430 +msgid "Checkbox parameters cannot have choices" +msgstr "Checkbox parametri ne mogu imati izbore" + +#: common/models.py:2450 part/models.py:3707 +msgid "Choices must be unique" +msgstr "Izbori moraju biti jedinstveni" + +#: common/models.py:2467 +msgid "Parameter template name must be unique" +msgstr "Ime šablona parametra mora biti jedinstveno" + +#: common/models.py:2489 +msgid "Target model type for this parameter template" msgstr "" -#: common/models.py:2568 -msgid "Email Message" +#: common/models.py:2495 +msgid "Parameter Name" +msgstr "Naziv parametra" + +#: common/models.py:2501 part/models.py:1283 +msgid "Units" +msgstr "Jedinice" + +#: common/models.py:2502 +msgid "Physical units for this parameter" +msgstr "Fizičke jedinice za ovaj parametar" + +#: common/models.py:2510 +msgid "Parameter description" +msgstr "Opis parametra" + +#: common/models.py:2516 +msgid "Checkbox" +msgstr "Polje za potvrdu" + +#: common/models.py:2517 +msgid "Is this parameter a checkbox?" +msgstr "Da li je ovaj parametar checkbox?" + +#: common/models.py:2522 part/models.py:3794 +msgid "Choices" +msgstr "Izbori" + +#: common/models.py:2523 +msgid "Valid choices for this parameter (comma-separated)" +msgstr "Validni izbori za ovaj parametar (razdvojeni zapetom)" + +#: common/models.py:2534 +msgid "Selection list for this parameter" +msgstr "Lista izbora za ovaj parametar" + +#: common/models.py:2539 part/models.py:3769 report/models.py:287 +msgid "Enabled" +msgstr "Omogućen" + +#: common/models.py:2540 +msgid "Is this parameter template enabled?" msgstr "" -#: common/models.py:2569 -msgid "Email Messages" -msgstr "" - -#: common/models.py:2576 -msgid "Announced" -msgstr "" - -#: common/models.py:2578 -msgid "Sent" -msgstr "" - -#: common/models.py:2579 -msgid "Failed" +#: common/models.py:2581 +msgid "Parameter" msgstr "" #: common/models.py:2582 -msgid "Delivered" -msgstr "" - -#: common/models.py:2590 -msgid "Confirmed" -msgstr "" - -#: common/models.py:2596 -msgid "Inbound" -msgstr "" - -#: common/models.py:2597 -msgid "Outbound" -msgstr "" - -#: common/models.py:2602 -msgid "No Reply" -msgstr "" - -#: common/models.py:2603 -msgid "Track Delivery" -msgstr "" - -#: common/models.py:2604 -msgid "Track Read" -msgstr "" - -#: common/models.py:2605 -msgid "Track Click" -msgstr "" - -#: common/models.py:2608 common/models.py:2711 -msgid "Global ID" -msgstr "" - -#: common/models.py:2621 -msgid "Identifier for this message (might be supplied by external system)" +msgid "Parameters" msgstr "" #: common/models.py:2628 +msgid "Invalid choice for parameter value" +msgstr "Nije validan izbor za vrednost parametra" + +#: common/models.py:2698 common/serializers.py:783 +msgid "Invalid model type specified for parameter" +msgstr "" + +#: common/models.py:2734 +msgid "Model ID" +msgstr "" + +#: common/models.py:2735 +msgid "ID of the target model for this parameter" +msgstr "" + +#: common/models.py:2744 common/setting/system.py:450 report/models.py:373 +#: report/models.py:669 report/serializers.py:94 report/serializers.py:135 +#: stock/serializers.py:234 +msgid "Template" +msgstr "Šablon" + +#: common/models.py:2745 +msgid "Parameter template" +msgstr "" + +#: common/models.py:2750 common/models.py:2792 importer/models.py:546 +msgid "Data" +msgstr "Podaci" + +#: common/models.py:2751 +msgid "Parameter Value" +msgstr "Vrednost parametra" + +#: common/models.py:2760 company/models.py:810 order/serializers.py:894 +#: order/serializers.py:2064 part/models.py:4075 part/models.py:4444 +#: report/templates/report/inventree_bill_of_materials_report.html:140 +#: report/templates/report/inventree_purchase_order_report.html:39 +#: report/templates/report/inventree_return_order_report.html:27 +#: report/templates/report/inventree_sales_order_report.html:32 +#: report/templates/report/inventree_stock_location_report.html:105 +#: stock/serializers.py:813 +msgid "Note" +msgstr "Beleška" + +#: common/models.py:2761 stock/serializers.py:718 +msgid "Optional note field" +msgstr "Opciona beleška" + +#: common/models.py:2788 +msgid "Barcode Scan" +msgstr "Skeniranje bar koda" + +#: common/models.py:2793 +msgid "Barcode data" +msgstr "Podaci bar koda" + +#: common/models.py:2804 +msgid "User who scanned the barcode" +msgstr "Korisnik koji je skenirao bar kod" + +#: common/models.py:2809 importer/models.py:69 +msgid "Timestamp" +msgstr "Vremenski trag" + +#: common/models.py:2810 +msgid "Date and time of the barcode scan" +msgstr "Datum i vreme skeniranja bar koda" + +#: common/models.py:2816 +msgid "URL endpoint which processed the barcode" +msgstr "URL krajnja tačka kojaj je obradila bar kod" + +#: common/models.py:2823 order/models.py:1833 plugin/serializers.py:93 +msgid "Context" +msgstr "Kontekst" + +#: common/models.py:2824 +msgid "Context data for the barcode scan" +msgstr "Kontekst podataka za skeniranje bar koda" + +#: common/models.py:2831 +msgid "Response" +msgstr "Odgovor" + +#: common/models.py:2832 +msgid "Response data from the barcode scan" +msgstr "Podaci odgovora za skeniranje bar koda" + +#: common/models.py:2838 report/templates/report/inventree_test_report.html:103 +#: stock/models.py:2970 +msgid "Result" +msgstr "Rezultat" + +#: common/models.py:2839 +msgid "Was the barcode scan successful?" +msgstr "Da li je skeniranje bar koda bilo uspešno?" + +#: common/models.py:2921 +msgid "An error occurred" +msgstr "" + +#: common/models.py:2942 +msgid "INVE-E8: Email log deletion is protected. Set INVENTREE_PROTECT_EMAIL_LOG to False to allow deletion." +msgstr "" + +#: common/models.py:2989 +msgid "Email Message" +msgstr "" + +#: common/models.py:2990 +msgid "Email Messages" +msgstr "" + +#: common/models.py:2997 +msgid "Announced" +msgstr "" + +#: common/models.py:2999 +msgid "Sent" +msgstr "" + +#: common/models.py:3000 +msgid "Failed" +msgstr "" + +#: common/models.py:3003 +msgid "Delivered" +msgstr "" + +#: common/models.py:3011 +msgid "Confirmed" +msgstr "" + +#: common/models.py:3017 +msgid "Inbound" +msgstr "" + +#: common/models.py:3018 +msgid "Outbound" +msgstr "" + +#: common/models.py:3023 +msgid "No Reply" +msgstr "" + +#: common/models.py:3024 +msgid "Track Delivery" +msgstr "" + +#: common/models.py:3025 +msgid "Track Read" +msgstr "" + +#: common/models.py:3026 +msgid "Track Click" +msgstr "" + +#: common/models.py:3029 common/models.py:3132 +msgid "Global ID" +msgstr "" + +#: common/models.py:3042 +msgid "Identifier for this message (might be supplied by external system)" +msgstr "" + +#: common/models.py:3049 msgid "Thread ID" msgstr "" -#: common/models.py:2630 +#: common/models.py:3051 msgid "Identifier for this message thread (might be supplied by external system)" msgstr "" -#: common/models.py:2639 +#: common/models.py:3060 msgid "Thread" msgstr "" -#: common/models.py:2640 +#: common/models.py:3061 msgid "Linked thread for this message" msgstr "" -#: common/models.py:2656 -msgid "Prioriy" +#: common/models.py:3077 +msgid "Priority" msgstr "" -#: common/models.py:2698 +#: common/models.py:3119 msgid "Email Thread" msgstr "" -#: common/models.py:2699 +#: common/models.py:3120 msgid "Email Threads" msgstr "" -#: common/models.py:2705 generic/states/serializers.py:16 +#: common/models.py:3126 generic/states/serializers.py:16 #: machine/serializers.py:24 plugin/models.py:46 users/models.py:113 msgid "Key" msgstr "Ključ" -#: common/models.py:2708 +#: common/models.py:3129 msgid "Unique key for this thread (used to identify the thread)" msgstr "" -#: common/models.py:2712 +#: common/models.py:3133 msgid "Unique identifier for this thread" msgstr "" -#: common/models.py:2719 +#: common/models.py:3140 msgid "Started Internal" msgstr "" -#: common/models.py:2720 +#: common/models.py:3141 msgid "Was this thread started internally?" msgstr "" -#: common/models.py:2725 +#: common/models.py:3146 msgid "Date and time that the thread was created" msgstr "" -#: common/models.py:2730 +#: common/models.py:3151 msgid "Date and time that the thread was last updated" msgstr "" @@ -2199,7 +2339,7 @@ msgstr "{verbose_name} poništeno" msgid "A order that is assigned to you was canceled" msgstr "Narudžbina koja je bila dodeljena vama je otkazana" -#: common/notifications.py:73 common/notifications.py:80 order/api.py:594 +#: common/notifications.py:73 common/notifications.py:80 order/api.py:600 msgid "Items Received" msgstr "Stavke primljene" @@ -2211,88 +2351,93 @@ msgstr "Stavke su primljene uprkos nalogu za kupovinu" msgid "Items have been received against a return order" msgstr "Stavke su primljene uprkos nalogu za povrat" -#: common/serializers.py:145 +#: common/serializers.py:149 msgid "Indicates if the setting is overridden by an environment variable" msgstr "" -#: common/serializers.py:147 +#: common/serializers.py:151 msgid "Override" msgstr "" -#: common/serializers.py:498 +#: common/serializers.py:502 msgid "Is Running" msgstr "Pokrenuto je" -#: common/serializers.py:504 +#: common/serializers.py:508 msgid "Pending Tasks" msgstr "Čekaju se zadaci" -#: common/serializers.py:510 +#: common/serializers.py:514 msgid "Scheduled Tasks" msgstr "Planirani zadaci" -#: common/serializers.py:516 +#: common/serializers.py:520 msgid "Failed Tasks" msgstr "Propali zadaci" -#: common/serializers.py:531 +#: common/serializers.py:535 msgid "Task ID" msgstr "ID zadatka" -#: common/serializers.py:531 +#: common/serializers.py:535 msgid "Unique task ID" msgstr "Jedinstveni ID zadatka" -#: common/serializers.py:533 +#: common/serializers.py:537 msgid "Lock" msgstr "Zaključaj" -#: common/serializers.py:533 +#: common/serializers.py:537 msgid "Lock time" msgstr "Vreme zaključavanja" -#: common/serializers.py:535 +#: common/serializers.py:539 msgid "Task name" msgstr "Naziv zadatka" -#: common/serializers.py:537 +#: common/serializers.py:541 msgid "Function" msgstr "Funkcija" -#: common/serializers.py:537 +#: common/serializers.py:541 msgid "Function name" msgstr "Ime funkcije" -#: common/serializers.py:539 +#: common/serializers.py:543 msgid "Arguments" msgstr "Argumenti" -#: common/serializers.py:539 +#: common/serializers.py:543 msgid "Task arguments" msgstr "Argumenti zadatka" -#: common/serializers.py:542 +#: common/serializers.py:546 msgid "Keyword Arguments" msgstr "Ključne reči argumenata" -#: common/serializers.py:542 +#: common/serializers.py:546 msgid "Task keyword arguments" msgstr "Ključne reči argumenata zadatka" -#: common/serializers.py:652 +#: common/serializers.py:656 msgid "Filename" msgstr "Ime datoteke" -#: common/serializers.py:659 importer/models.py:89 report/api.py:41 +#: common/serializers.py:663 common/serializers.py:730 +#: common/serializers.py:805 importer/models.py:89 report/api.py:41 #: report/models.py:293 report/serializers.py:52 msgid "Model Type" msgstr "Tip modela" -#: common/serializers.py:687 +#: common/serializers.py:691 msgid "User does not have permission to create or edit attachments for this model" msgstr "Korisnik nema dozvolu da napravi ili izmeni priloge za ovaj model" -#: common/serializers.py:731 common/serializers.py:834 +#: common/serializers.py:786 +msgid "User does not have permission to create or edit parameters for this model" +msgstr "" + +#: common/serializers.py:850 common/serializers.py:953 msgid "Selection list is locked" msgstr "Lista odabira je zaključana" @@ -2368,7 +2513,7 @@ msgstr "Zabrani prikazivanje `O nama`" msgid "Show the `about` modal only to superusers" msgstr "Prikaži `O nama` samo superkorisnicima" -#: common/setting/system.py:224 company/models.py:144 company/models.py:145 +#: common/setting/system.py:224 company/models.py:145 company/models.py:146 msgid "Company name" msgstr "Ime kompanije" @@ -2411,8 +2556,8 @@ msgstr "Koliko često ažurirati devizne kurseve (podesi na nulu za onemogućti) #: common/setting/system.py:253 common/setting/system.py:293 #: common/setting/system.py:306 common/setting/system.py:314 #: common/setting/system.py:321 common/setting/system.py:330 -#: common/setting/system.py:339 common/setting/system.py:588 -#: common/setting/system.py:616 common/setting/system.py:707 +#: common/setting/system.py:339 common/setting/system.py:580 +#: common/setting/system.py:608 common/setting/system.py:707 #: common/setting/system.py:1103 common/setting/system.py:1119 msgid "days" msgstr "dani" @@ -2657,12 +2802,6 @@ msgstr "Kopiraj šablone parametara kategorije" msgid "Copy category parameter templates when creating a part" msgstr "Kopiraj šablone parametara kategorije prilikom pravljenja dela" -#: common/setting/system.py:450 part/models.py:4054 report/models.py:373 -#: report/models.py:669 report/serializers.py:94 report/serializers.py:135 -#: stock/serializers.py:234 -msgid "Template" -msgstr "Šablon" - #: common/setting/system.py:451 msgid "Parts are templates by default" msgstr "Podrazumevano je da su delovi šabloni" @@ -2671,8 +2810,8 @@ msgstr "Podrazumevano je da su delovi šabloni" msgid "Parts can be assembled from other components by default" msgstr "Podrazumevano je da se delovi mogu sastavljati od drugih komponenti" -#: common/setting/system.py:462 part/models.py:1208 part/serializers.py:1734 -#: part/serializers.py:1741 +#: common/setting/system.py:462 part/models.py:1296 part/serializers.py:1599 +#: part/serializers.py:1606 msgid "Component" msgstr "Komponenta" @@ -2680,7 +2819,7 @@ msgstr "Komponenta" msgid "Parts can be used as sub-components by default" msgstr "Podrazumevano je da se delovi mogu koristi kao pod-komponente" -#: common/setting/system.py:468 part/models.py:1226 +#: common/setting/system.py:468 part/models.py:1314 msgid "Purchaseable" msgstr "Može da se kupi" @@ -2688,7 +2827,7 @@ msgstr "Može da se kupi" msgid "Parts are purchaseable by default" msgstr "Podrazumevano je da se delovi mogu kupiti" -#: common/setting/system.py:474 part/models.py:1232 stock/api.py:643 +#: common/setting/system.py:474 part/models.py:1320 stock/api.py:643 msgid "Salable" msgstr "Može da se proda" @@ -2700,7 +2839,7 @@ msgstr "podrazumevano je da delovi mogu da se prodaju" msgid "Parts are trackable by default" msgstr "Podrazumevano je da delovi mogu da se prate" -#: common/setting/system.py:486 part/models.py:1248 +#: common/setting/system.py:486 part/models.py:1336 msgid "Virtual" msgstr "Virtuelni" @@ -2749,158 +2888,158 @@ msgid "Part category default icon (empty means no icon)" msgstr "Podrazumevana ikona za kategoriju dela (prazno znači bez ikone)" #: common/setting/system.py:525 -msgid "Enforce Parameter Units" -msgstr "Zahtevaj jedinice parametara" - -#: common/setting/system.py:527 -msgid "If units are provided, parameter values must match the specified units" -msgstr "Ako su jedinice date, vrednosti parametara moraju odgovarati datim jedinicama" - -#: common/setting/system.py:533 msgid "Minimum Pricing Decimal Places" msgstr "Minimalan broj decimalnih mesta za cene" -#: common/setting/system.py:535 +#: common/setting/system.py:527 msgid "Minimum number of decimal places to display when rendering pricing data" msgstr "Minimalan broj decimalnih mesta prilikom generisanja cenovnih podataka" -#: common/setting/system.py:546 +#: common/setting/system.py:538 msgid "Maximum Pricing Decimal Places" msgstr "Maksimalan broj decimalnih mesta za cene" -#: common/setting/system.py:548 +#: common/setting/system.py:540 msgid "Maximum number of decimal places to display when rendering pricing data" msgstr "Maksimalan broj decimalnih mesta prilikom generisanja cenovnih podataka" -#: common/setting/system.py:559 +#: common/setting/system.py:551 msgid "Use Supplier Pricing" msgstr "Koristi cene dobavljača" -#: common/setting/system.py:561 +#: common/setting/system.py:553 msgid "Include supplier price breaks in overall pricing calculations" msgstr "Uključi pauziranje cene dobavljača u sveukupnom računanju cene" -#: common/setting/system.py:567 +#: common/setting/system.py:559 msgid "Purchase History Override" msgstr "Premosti istorijat kupovina" -#: common/setting/system.py:569 +#: common/setting/system.py:561 msgid "Historical purchase order pricing overrides supplier price breaks" msgstr "Prethodne cene narudžbenice zamenjuje pauze cena dobavljača" -#: common/setting/system.py:575 +#: common/setting/system.py:567 msgid "Use Stock Item Pricing" msgstr "Koristi cene stavki u zalihama" -#: common/setting/system.py:577 +#: common/setting/system.py:569 msgid "Use pricing from manually entered stock data for pricing calculations" msgstr "Koristi cene koje su ručno unete u podatke zaliha" -#: common/setting/system.py:583 +#: common/setting/system.py:575 msgid "Stock Item Pricing Age" msgstr "Godina cena stavki u zalihama" -#: common/setting/system.py:585 +#: common/setting/system.py:577 msgid "Exclude stock items older than this number of days from pricing calculations" msgstr "Odstrani stavke zaliha iz kalkulacija cena, koje su starije od ovog broja dana" -#: common/setting/system.py:592 +#: common/setting/system.py:584 msgid "Use Variant Pricing" msgstr "Koristi drugačije cene" -#: common/setting/system.py:593 +#: common/setting/system.py:585 msgid "Include variant pricing in overall pricing calculations" msgstr "Uključi drugačije cene u sveukupnim kalkulacijama cene" -#: common/setting/system.py:598 +#: common/setting/system.py:590 msgid "Active Variants Only" msgstr "Samo aktivne varijante" -#: common/setting/system.py:600 +#: common/setting/system.py:592 msgid "Only use active variant parts for calculating variant pricing" msgstr "Koristi samo aktivne varijante za određivanje varijante cene" -#: common/setting/system.py:606 +#: common/setting/system.py:598 msgid "Auto Update Pricing" msgstr "" -#: common/setting/system.py:608 +#: common/setting/system.py:600 msgid "Automatically update part pricing when internal data changes" msgstr "" -#: common/setting/system.py:614 +#: common/setting/system.py:606 msgid "Pricing Rebuild Interval" msgstr "Vremenski period za ponovno određivanje cena" -#: common/setting/system.py:615 +#: common/setting/system.py:607 msgid "Number of days before part pricing is automatically updated" msgstr "Broj dana koji treba da prođe da bi se cene delova automatski ažurirale" -#: common/setting/system.py:621 +#: common/setting/system.py:613 msgid "Internal Prices" msgstr "Interne cene" -#: common/setting/system.py:622 +#: common/setting/system.py:614 msgid "Enable internal prices for parts" msgstr "Omogući interne cene za delove" -#: common/setting/system.py:627 +#: common/setting/system.py:619 msgid "Internal Price Override" msgstr "Premošćavanje internih cena" -#: common/setting/system.py:629 +#: common/setting/system.py:621 msgid "If available, internal prices override price range calculations" msgstr "Ako su dostupne, interne cene premošćuju kalkulacije opsega cena" -#: common/setting/system.py:635 +#: common/setting/system.py:627 msgid "Enable label printing" msgstr "Omogući štampanje etiketa" -#: common/setting/system.py:636 +#: common/setting/system.py:628 msgid "Enable label printing from the web interface" msgstr "Omogući štampanje etiketa preko web interfejsa" -#: common/setting/system.py:641 +#: common/setting/system.py:633 msgid "Label Image DPI" msgstr "DPI slike etikete" -#: common/setting/system.py:643 +#: common/setting/system.py:635 msgid "DPI resolution when generating image files to supply to label printing plugins" msgstr "DPI rezolucija prilikom generisanja slikovne datoteke za dodatak koji štampa etikete" -#: common/setting/system.py:649 +#: common/setting/system.py:641 msgid "Enable Reports" msgstr "Omogući izveštaje" -#: common/setting/system.py:650 +#: common/setting/system.py:642 msgid "Enable generation of reports" msgstr "Omogući generisanje izveštaja" -#: common/setting/system.py:655 +#: common/setting/system.py:647 msgid "Debug Mode" msgstr "Mod otklanjanja grešaka" -#: common/setting/system.py:656 +#: common/setting/system.py:648 msgid "Generate reports in debug mode (HTML output)" msgstr "Generiši izveštaje u modu za otklanjanje grešaka (izlaz je u HTML)" -#: common/setting/system.py:661 +#: common/setting/system.py:653 msgid "Log Report Errors" msgstr "Greške evidencije izveštaja" -#: common/setting/system.py:662 +#: common/setting/system.py:654 msgid "Log errors which occur when generating reports" msgstr "Greške evidentiranja koje se dese prilikom generisanja izveštaja" -#: common/setting/system.py:667 plugin/builtin/labels/label_sheet.py:29 +#: common/setting/system.py:659 plugin/builtin/labels/label_sheet.py:29 #: report/models.py:381 msgid "Page Size" msgstr "Veličina stranice" -#: common/setting/system.py:668 +#: common/setting/system.py:660 msgid "Default page size for PDF reports" msgstr "Podrazumevana veličina strane za izveštaje u PDF formatu" +#: common/setting/system.py:665 +msgid "Enforce Parameter Units" +msgstr "Zahtevaj jedinice parametara" + +#: common/setting/system.py:667 +msgid "If units are provided, parameter values must match the specified units" +msgstr "Ako su jedinice date, vrednosti parametara moraju odgovarati datim jedinicama" + #: common/setting/system.py:673 msgid "Globally Unique Serials" msgstr "Globalno jedinstveni serijski brojevi" @@ -3456,688 +3595,677 @@ msgid "Display PDF reports in the browser, instead of downloading as a file" msgstr "Prikaži PDF izveštaje u pretraživaču umesto preuzimanja kao fajla" #: common/setting/user.py:45 +msgid "Barcode Scanner in Form Fields" +msgstr "" + +#: common/setting/user.py:46 +msgid "Allow barcode scanner input in form fields" +msgstr "" + +#: common/setting/user.py:51 msgid "Search Parts" msgstr "Pretraga delova" -#: common/setting/user.py:46 +#: common/setting/user.py:52 msgid "Display parts in search preview window" msgstr "Prikaži delove u prozoru za pregled pretrage" -#: common/setting/user.py:51 +#: common/setting/user.py:57 msgid "Search Supplier Parts" msgstr "Pretraga delova dobavljača" -#: common/setting/user.py:52 +#: common/setting/user.py:58 msgid "Display supplier parts in search preview window" msgstr "Prikaži delove dobavljača u prozoru za pregled pretrage" -#: common/setting/user.py:57 +#: common/setting/user.py:63 msgid "Search Manufacturer Parts" msgstr "Pretraga delova proizvođača" -#: common/setting/user.py:58 +#: common/setting/user.py:64 msgid "Display manufacturer parts in search preview window" msgstr "Prikaži delove proizvođača u prozoru za pregled pretrage" -#: common/setting/user.py:63 +#: common/setting/user.py:69 msgid "Hide Inactive Parts" msgstr "Sakrij neaktivne delove" -#: common/setting/user.py:64 +#: common/setting/user.py:70 msgid "Excluded inactive parts from search preview window" msgstr "Isključeni neaktivni delovi iz prozora za pregled pretrage" -#: common/setting/user.py:69 +#: common/setting/user.py:75 msgid "Search Categories" msgstr "Pretraga kategorija" -#: common/setting/user.py:70 +#: common/setting/user.py:76 msgid "Display part categories in search preview window" msgstr "Prikaži kategorije delova u prozoru za pregled pretrage" -#: common/setting/user.py:75 +#: common/setting/user.py:81 msgid "Search Stock" msgstr "Pretraga zaliha" -#: common/setting/user.py:76 +#: common/setting/user.py:82 msgid "Display stock items in search preview window" msgstr "Prikaži stavke sa zaliha u prozoru za pregled pretrage" -#: common/setting/user.py:81 +#: common/setting/user.py:87 msgid "Hide Unavailable Stock Items" msgstr "Sakrij stavke sa zaliha koje nisu dostupne" -#: common/setting/user.py:83 +#: common/setting/user.py:89 msgid "Exclude stock items which are not available from the search preview window" msgstr "Ne uključuj stavke sa zaliha koje nisu dostupne u prozor za pregled pretrage" -#: common/setting/user.py:89 +#: common/setting/user.py:95 msgid "Search Locations" msgstr "Pretraga lokacija" -#: common/setting/user.py:90 +#: common/setting/user.py:96 msgid "Display stock locations in search preview window" msgstr "Prikaži lokacije zaliha u prozoru za pregled pretrage" -#: common/setting/user.py:95 +#: common/setting/user.py:101 msgid "Search Companies" msgstr "Pretraga kompanija" -#: common/setting/user.py:96 +#: common/setting/user.py:102 msgid "Display companies in search preview window" msgstr "Prikaži kompanije u prozoru za pregled pretrage" -#: common/setting/user.py:101 +#: common/setting/user.py:107 msgid "Search Build Orders" msgstr "Pretraga naloga za izradu" -#: common/setting/user.py:102 +#: common/setting/user.py:108 msgid "Display build orders in search preview window" msgstr "Prikaži naloge za izradu u prozoru za pregled pretrage" -#: common/setting/user.py:107 +#: common/setting/user.py:113 msgid "Search Purchase Orders" msgstr "Pretraga naloga za kupovinu" -#: common/setting/user.py:108 +#: common/setting/user.py:114 msgid "Display purchase orders in search preview window" msgstr "Prikaži naloge za kupovinu u prozoru za pregled pretrage" -#: common/setting/user.py:113 +#: common/setting/user.py:119 msgid "Exclude Inactive Purchase Orders" msgstr "Ne uključuj neaktivne naloge za kupovinu" -#: common/setting/user.py:114 +#: common/setting/user.py:120 msgid "Exclude inactive purchase orders from search preview window" msgstr "Ne uključuj neaktivne naloge za kupovinu u prozor za pregled pretrage" -#: common/setting/user.py:119 +#: common/setting/user.py:125 msgid "Search Sales Orders" msgstr "Pretraga naloga za prodaju" -#: common/setting/user.py:120 +#: common/setting/user.py:126 msgid "Display sales orders in search preview window" msgstr "Prikaži naloge za prodaju u prozoru za pregled pretrage" -#: common/setting/user.py:125 +#: common/setting/user.py:131 msgid "Exclude Inactive Sales Orders" msgstr "Ne uključuj neaktivne naloge za prodaju" -#: common/setting/user.py:126 +#: common/setting/user.py:132 msgid "Exclude inactive sales orders from search preview window" msgstr "Ne uključuj neaktivne naloge za prodaju u prozor za pregled pretrage" -#: common/setting/user.py:131 +#: common/setting/user.py:137 msgid "Search Sales Order Shipments" msgstr "" -#: common/setting/user.py:132 +#: common/setting/user.py:138 msgid "Display sales order shipments in search preview window" msgstr "" -#: common/setting/user.py:137 +#: common/setting/user.py:143 msgid "Search Return Orders" msgstr "Pretraga naloga za vraćanje" -#: common/setting/user.py:138 +#: common/setting/user.py:144 msgid "Display return orders in search preview window" msgstr "Prikazuj naloge za vraćanje u prozoru za pregled pretrage" -#: common/setting/user.py:143 +#: common/setting/user.py:149 msgid "Exclude Inactive Return Orders" msgstr "Ne uključuj neaktivne naloge za vraćanje" -#: common/setting/user.py:144 +#: common/setting/user.py:150 msgid "Exclude inactive return orders from search preview window" msgstr "Ne uključuj neaktivne naloge za vraćanje u prozor za pregled pretrage" -#: common/setting/user.py:149 +#: common/setting/user.py:155 msgid "Search Preview Results" msgstr "Prikazivanje rezultata pretrage" -#: common/setting/user.py:151 +#: common/setting/user.py:157 msgid "Number of results to show in each section of the search preview window" msgstr "Broj rezultata koji će se prikazivati u svakoj sekciji prozora za pregled pretrage" -#: common/setting/user.py:157 +#: common/setting/user.py:163 msgid "Regex Search" msgstr "Regex pretraga" -#: common/setting/user.py:158 +#: common/setting/user.py:164 msgid "Enable regular expressions in search queries" msgstr "Omogući regularne izraze u upitima pretrage" -#: common/setting/user.py:163 +#: common/setting/user.py:169 msgid "Whole Word Search" msgstr "Pretraga celih reči" -#: common/setting/user.py:164 +#: common/setting/user.py:170 msgid "Search queries return results for whole word matches" msgstr "Upiti pretrage vraćaju rezultate za poklapanje celih reči" -#: common/setting/user.py:169 +#: common/setting/user.py:175 msgid "Search Notes" msgstr "" -#: common/setting/user.py:171 +#: common/setting/user.py:177 msgid "Search queries return results for matches from the item's notes" msgstr "" -#: common/setting/user.py:177 +#: common/setting/user.py:183 msgid "Escape Key Closes Forms" msgstr "Escape dugme zatvara forme" -#: common/setting/user.py:178 +#: common/setting/user.py:184 msgid "Use the escape key to close modal forms" msgstr "Koristi escape dugme za zatvaranje modalnih formi" -#: common/setting/user.py:183 +#: common/setting/user.py:189 msgid "Fixed Navbar" msgstr "Fiksirana traka za navigaciju" -#: common/setting/user.py:184 +#: common/setting/user.py:190 msgid "The navbar position is fixed to the top of the screen" msgstr "Pozicija trake za navigaciju je fiksirana na vrhu ekrana" -#: common/setting/user.py:189 +#: common/setting/user.py:195 msgid "Fixed Table Headers" msgstr "" -#: common/setting/user.py:190 +#: common/setting/user.py:196 msgid "Table headers are fixed to the top of the table" msgstr "" -#: common/setting/user.py:195 +#: common/setting/user.py:201 msgid "Show Spotlight" msgstr "" -#: common/setting/user.py:196 +#: common/setting/user.py:202 msgid "Enable spotlight navigation functionality" msgstr "" -#: common/setting/user.py:201 +#: common/setting/user.py:207 msgid "Navigation Icons" msgstr "" -#: common/setting/user.py:202 +#: common/setting/user.py:208 msgid "Display icons in the navigation bar" msgstr "" -#: common/setting/user.py:207 +#: common/setting/user.py:213 msgid "Date Format" msgstr "Format datuma" -#: common/setting/user.py:208 +#: common/setting/user.py:214 msgid "Preferred format for displaying dates" msgstr "Željeni format za prikazivanje datuma" -#: common/setting/user.py:221 +#: common/setting/user.py:227 msgid "Show Stock History" msgstr "" -#: common/setting/user.py:222 +#: common/setting/user.py:228 msgid "Display stock history information in the part detail page" msgstr "" -#: common/setting/user.py:227 +#: common/setting/user.py:233 msgid "Show Last Breadcrumb" msgstr "" -#: common/setting/user.py:228 +#: common/setting/user.py:234 msgid "Show the current page in breadcrumbs" msgstr "" -#: common/setting/user.py:233 +#: common/setting/user.py:239 msgid "Show full stock location in tables" msgstr "" -#: common/setting/user.py:235 +#: common/setting/user.py:241 msgid "Disabled: The full location path is displayed as a hover tooltip. Enabled: The full location path is displayed as plain text." msgstr "" -#: common/setting/user.py:241 +#: common/setting/user.py:247 msgid "Show full part categories in tables" msgstr "" -#: common/setting/user.py:243 +#: common/setting/user.py:249 msgid "Disabled: The full category path is displayed as a hover tooltip. Enabled: The full category path is displayed as plain text." msgstr "" -#: common/setting/user.py:249 +#: common/setting/user.py:255 msgid "Receive error reports" msgstr "Primaj izveštaje o greškama" -#: common/setting/user.py:250 +#: common/setting/user.py:256 msgid "Receive notifications for system errors" msgstr "Primaj notifikacije za sistemske greške" -#: common/setting/user.py:255 +#: common/setting/user.py:261 msgid "Last used printing machines" msgstr "Poslednje korišćene mašine za štampanje" -#: common/setting/user.py:256 +#: common/setting/user.py:262 msgid "Save the last used printing machines for a user" msgstr "Sačuvaj poslednju korišćenu mašinu za štampanje za korisnika" -#: common/validators.py:34 +#: common/validators.py:38 +msgid "All models" +msgstr "" + +#: common/validators.py:63 msgid "No attachment model type provided" msgstr "Nije dostavljen tip modela priloga" -#: common/validators.py:40 +#: common/validators.py:69 msgid "Invalid attachment model type" msgstr "Nevažeći tip modela priloga" -#: common/validators.py:81 +#: common/validators.py:110 msgid "Minimum places cannot be greater than maximum places" msgstr "Minimalno mesta ne sme biti veće od maksimalno mesta" -#: common/validators.py:93 +#: common/validators.py:122 msgid "Maximum places cannot be less than minimum places" msgstr "Maksimalno mesta ne sme biti manje od minimalno mesta" -#: common/validators.py:104 +#: common/validators.py:133 msgid "An empty domain is not allowed." msgstr "Prazan domen nije dozvoljen." -#: common/validators.py:106 +#: common/validators.py:135 #, python-brace-format msgid "Invalid domain name: {domain}" msgstr "Nevažeće ime domena: {domain}" -#: common/validators.py:122 +#: common/validators.py:151 msgid "Value must be uppercase" msgstr "Vrednost mora biti napisana velikim slovima" -#: common/validators.py:128 +#: common/validators.py:157 msgid "Value must be a valid variable identifier" msgstr "Vrednost mora biti važeći identifikator promenljive" -#: company/api.py:147 +#: company/api.py:141 msgid "Part is Active" msgstr "Deo je aktivan" -#: company/api.py:151 +#: company/api.py:145 msgid "Manufacturer is Active" msgstr "Proizvođač je aktivan" -#: company/api.py:286 +#: company/api.py:246 msgid "Supplier Part is Active" msgstr "Deo dobavljača je aktivan" -#: company/api.py:290 +#: company/api.py:250 msgid "Internal Part is Active" msgstr "Interni deo je aktivan" -#: company/api.py:295 +#: company/api.py:255 msgid "Supplier is Active" msgstr "Dobavljač je aktivan" -#: company/api.py:307 company/models.py:520 company/serializers.py:457 -#: part/serializers.py:566 +#: company/api.py:267 company/models.py:522 company/serializers.py:502 +#: part/serializers.py:477 msgid "Manufacturer" msgstr "Proizvođač" -#: company/api.py:314 company/models.py:121 company/models.py:392 +#: company/api.py:274 company/models.py:122 company/models.py:393 #: stock/api.py:900 msgid "Company" msgstr "Kompanija" -#: company/api.py:324 +#: company/api.py:284 msgid "Has Stock" msgstr "Ima zalihe" -#: company/models.py:122 +#: company/models.py:123 msgid "Companies" msgstr "Kompanije" -#: company/models.py:150 +#: company/models.py:151 msgid "Company description" msgstr "Opis kompanije" -#: company/models.py:151 +#: company/models.py:152 msgid "Description of the company" msgstr "Opis kompanije" -#: company/models.py:157 +#: company/models.py:158 msgid "Website" msgstr "Vebsajt" -#: company/models.py:158 +#: company/models.py:159 msgid "Company website URL" msgstr "Vebsajt kompanije" -#: company/models.py:164 +#: company/models.py:165 msgid "Phone number" msgstr "Broj telefona" -#: company/models.py:166 +#: company/models.py:167 msgid "Contact phone number" msgstr "Broj telefona kontakta" -#: company/models.py:173 +#: company/models.py:174 msgid "Contact email address" msgstr "Email adresa kontakta" -#: company/models.py:178 company/models.py:296 order/models.py:513 +#: company/models.py:179 company/models.py:297 order/models.py:514 #: users/models.py:561 msgid "Contact" msgstr "Kontakt" -#: company/models.py:180 +#: company/models.py:181 msgid "Point of contact" msgstr "Osoba za kontakt" -#: company/models.py:186 +#: company/models.py:187 msgid "Link to external company information" msgstr "Link ka eksternim informacijama o kompaniji" -#: company/models.py:191 +#: company/models.py:192 msgid "Is this company active?" msgstr "Da li je ova kompanija aktivna?" -#: company/models.py:196 +#: company/models.py:197 msgid "Is customer" msgstr "Je mušterija" -#: company/models.py:197 +#: company/models.py:198 msgid "Do you sell items to this company?" msgstr "Da li prodajete stavke ovoj kompaniji?" -#: company/models.py:202 +#: company/models.py:203 msgid "Is supplier" msgstr "Je dobavljač" -#: company/models.py:203 +#: company/models.py:204 msgid "Do you purchase items from this company?" msgstr "Da li kupujete stavke od ove kompanije?" -#: company/models.py:208 +#: company/models.py:209 msgid "Is manufacturer" msgstr "Je proizvođač" -#: company/models.py:209 +#: company/models.py:210 msgid "Does this company manufacture parts?" msgstr "Da li ova kompanija proizvodi delove?" -#: company/models.py:217 +#: company/models.py:218 msgid "Default currency used for this company" msgstr "Podrazumevana valuta za ovu kompaniju" -#: company/models.py:224 +#: company/models.py:225 msgid "Tax ID" msgstr "" -#: company/models.py:225 +#: company/models.py:226 msgid "Company Tax ID" msgstr "" -#: company/models.py:335 order/models.py:523 order/models.py:2288 +#: company/models.py:336 order/models.py:524 order/models.py:2289 msgid "Address" msgstr "Adrese" -#: company/models.py:336 +#: company/models.py:337 msgid "Addresses" msgstr "Adrese" -#: company/models.py:393 +#: company/models.py:394 msgid "Select company" msgstr "Izaberi kompaniju" -#: company/models.py:398 +#: company/models.py:399 msgid "Address title" msgstr "Naslov adrese" -#: company/models.py:399 +#: company/models.py:400 msgid "Title describing the address entry" msgstr "Naslov koji opisuje adresu" -#: company/models.py:405 +#: company/models.py:406 msgid "Primary address" msgstr "Primarna adresa" -#: company/models.py:406 +#: company/models.py:407 msgid "Set as primary address" msgstr "Postavi kao primarnu adresu" -#: company/models.py:411 +#: company/models.py:412 msgid "Line 1" msgstr "Telefon 1" -#: company/models.py:412 +#: company/models.py:413 msgid "Address line 1" msgstr "Adresa 1" -#: company/models.py:418 +#: company/models.py:419 msgid "Line 2" msgstr "Telefon 2" -#: company/models.py:419 +#: company/models.py:420 msgid "Address line 2" msgstr "Adresa 2" -#: company/models.py:425 company/models.py:426 +#: company/models.py:426 company/models.py:427 msgid "Postal code" msgstr "Poštanski broj" -#: company/models.py:432 +#: company/models.py:433 msgid "City/Region" msgstr "Grad/region" -#: company/models.py:433 +#: company/models.py:434 msgid "Postal code city/region" msgstr "Poštanski broj" -#: company/models.py:439 +#: company/models.py:440 msgid "State/Province" msgstr "Država/provincija" -#: company/models.py:440 +#: company/models.py:441 msgid "State or province" msgstr "Država ili provincija" -#: company/models.py:446 +#: company/models.py:447 msgid "Country" msgstr "Zemlja" -#: company/models.py:447 +#: company/models.py:448 msgid "Address country" msgstr "Adresa zemlje" -#: company/models.py:453 +#: company/models.py:454 msgid "Courier shipping notes" msgstr "Beleške za kurira" -#: company/models.py:454 +#: company/models.py:455 msgid "Notes for shipping courier" msgstr "Beleške za kurira" -#: company/models.py:460 +#: company/models.py:461 msgid "Internal shipping notes" msgstr "Interne beleške o isporuci" -#: company/models.py:461 +#: company/models.py:462 msgid "Shipping notes for internal use" msgstr "Beleške o isporuci za internu upotrebu" -#: company/models.py:468 +#: company/models.py:469 msgid "Link to address information (external)" msgstr "Link za adresne informacije (eksterni)" -#: company/models.py:492 company/models.py:609 company/models.py:832 -#: company/serializers.py:471 stock/api.py:561 +#: company/models.py:494 company/models.py:786 company/serializers.py:516 +#: stock/api.py:561 msgid "Manufacturer Part" msgstr "Deo proizvođača" -#: company/models.py:509 company/models.py:800 stock/models.py:1025 +#: company/models.py:511 company/models.py:754 stock/models.py:1025 #: stock/serializers.py:407 msgid "Base Part" msgstr "Osnovni deo" -#: company/models.py:511 company/models.py:802 +#: company/models.py:513 company/models.py:756 msgid "Select part" msgstr "Izaberi deo" -#: company/models.py:521 +#: company/models.py:523 msgid "Select manufacturer" msgstr "Izaberi proizvođača" -#: company/models.py:527 company/serializers.py:479 order/serializers.py:734 -#: part/serializers.py:576 +#: company/models.py:529 company/serializers.py:524 order/serializers.py:745 +#: part/serializers.py:487 msgid "MPN" msgstr "Broj dela proizvođača" -#: company/models.py:528 stock/serializers.py:572 +#: company/models.py:530 stock/serializers.py:572 msgid "Manufacturer Part Number" msgstr "Broj dela proizvođača" -#: company/models.py:535 +#: company/models.py:537 msgid "URL for external manufacturer part link" msgstr "URL za link eksternog dela proizvođača" -#: company/models.py:544 +#: company/models.py:546 msgid "Manufacturer part description" msgstr "Opis dela proizvođača" -#: company/models.py:597 -msgid "Manufacturer Part Parameter" -msgstr "Parametar dela proizvođača" - -#: company/models.py:616 -msgid "Parameter name" -msgstr "Naziv parametra" - -#: company/models.py:623 -msgid "Parameter value" -msgstr "Vrednost parametra" - -#: company/models.py:630 part/models.py:1195 part/models.py:3857 -msgid "Units" -msgstr "Jedinice" - -#: company/models.py:631 -msgid "Parameter units" -msgstr "Jedinice parametra" - -#: company/models.py:740 +#: company/models.py:694 msgid "Pack units must be compatible with the base part units" msgstr "Jedinice pakovanja moraju biti kompatibilne sa osnovnim jedinicama dela" -#: company/models.py:747 +#: company/models.py:701 msgid "Pack units must be greater than zero" msgstr "Jedinice pakovanja moraju biti veće od nule" -#: company/models.py:761 +#: company/models.py:715 msgid "Linked manufacturer part must reference the same base part" msgstr "Povezani delovi dobavljača moraju referencirati isti osnovni deo" -#: company/models.py:810 company/serializers.py:449 company/serializers.py:467 -#: order/models.py:639 part/serializers.py:550 +#: company/models.py:764 company/serializers.py:494 company/serializers.py:512 +#: order/models.py:640 part/serializers.py:461 #: plugin/builtin/suppliers/digikey.py:26 plugin/builtin/suppliers/lcsc.py:27 #: plugin/builtin/suppliers/mouser.py:25 plugin/builtin/suppliers/tme.py:27 #: stock/api.py:567 templates/email/overdue_purchase_order.html:16 msgid "Supplier" msgstr "Dobavljač" -#: company/models.py:811 +#: company/models.py:765 msgid "Select supplier" msgstr "Izaberi dobavljača" -#: company/models.py:817 part/serializers.py:561 +#: company/models.py:771 part/serializers.py:472 msgid "Supplier stock keeping unit" msgstr "Jedinica za držanje dobavljačevih zaliha" -#: company/models.py:823 +#: company/models.py:777 msgid "Is this supplier part active?" msgstr "Da li je ovaj deo dobavljača aktivan?" -#: company/models.py:833 +#: company/models.py:787 msgid "Select manufacturer part" msgstr "Izaberi deo proizvođača" -#: company/models.py:840 +#: company/models.py:794 msgid "URL for external supplier part link" msgstr "URL za link dela eksternog dobavljača" -#: company/models.py:849 +#: company/models.py:803 msgid "Supplier part description" msgstr "Opis dela dobavljača" -#: company/models.py:856 order/serializers.py:883 order/serializers.py:2047 -#: part/models.py:4070 part/models.py:4450 part/models.py:4819 -#: report/templates/report/inventree_bill_of_materials_report.html:140 -#: report/templates/report/inventree_purchase_order_report.html:39 -#: report/templates/report/inventree_return_order_report.html:27 -#: report/templates/report/inventree_sales_order_report.html:32 -#: report/templates/report/inventree_stock_location_report.html:105 -#: stock/serializers.py:813 -msgid "Note" -msgstr "Beleška" - -#: company/models.py:865 part/models.py:2250 +#: company/models.py:819 part/models.py:2338 msgid "base cost" msgstr "osnovni trošak" -#: company/models.py:866 part/models.py:2251 +#: company/models.py:820 part/models.py:2339 msgid "Minimum charge (e.g. stocking fee)" msgstr "Minimalna naplata (npr. taksa za slaganje)" -#: company/models.py:873 order/serializers.py:875 stock/models.py:1056 +#: company/models.py:827 order/serializers.py:886 stock/models.py:1056 #: stock/serializers.py:1606 msgid "Packaging" msgstr "Pakovanje" -#: company/models.py:874 +#: company/models.py:828 msgid "Part packaging" msgstr "Pakovanje delova" -#: company/models.py:879 +#: company/models.py:833 msgid "Pack Quantity" msgstr "Količina pakovanja" -#: company/models.py:881 +#: company/models.py:835 msgid "Total quantity supplied in a single pack. Leave empty for single items." msgstr "Ukupna količina dostavljena u jednom pakovanju. Ostaviti prazno za pojedinačne stavke." -#: company/models.py:900 part/models.py:2257 +#: company/models.py:854 part/models.py:2345 msgid "multiple" msgstr "više" -#: company/models.py:901 +#: company/models.py:855 msgid "Order multiple" msgstr "Naruči više" -#: company/models.py:913 +#: company/models.py:867 msgid "Quantity available from supplier" msgstr "Količine dostupne od dobavljača" -#: company/models.py:919 +#: company/models.py:873 msgid "Availability Updated" msgstr "Dostupnost ažurirana" -#: company/models.py:920 +#: company/models.py:874 msgid "Date of last update of availability data" msgstr "Datum poslednjeg ažuriranja podataka o dostupnosti" -#: company/models.py:1048 +#: company/models.py:1002 msgid "Supplier Price Break" msgstr "Smanjenje cene dobavljača" -#: company/serializers.py:181 +#: company/serializers.py:184 +msgid "Primary Address" +msgstr "" + +#: company/serializers.py:186 msgid "Return the string representation for the primary address. This property exists for backwards compatibility." msgstr "" -#: company/serializers.py:212 +#: company/serializers.py:218 msgid "Default currency used for this supplier" msgstr "Podrazumevana valuta koja se koristi za ovog dobavljača" -#: company/serializers.py:248 +#: company/serializers.py:260 msgid "Company Name" msgstr "Naziv kompanije" -#: company/serializers.py:433 part/serializers.py:955 stock/serializers.py:428 +#: company/serializers.py:460 part/serializers.py:840 stock/serializers.py:428 msgid "In Stock" msgstr "Na zalihama" +#: company/serializers.py:477 +msgid "Price Breaks" +msgstr "" + #: data_exporter/mixins.py:325 data_exporter/mixins.py:403 msgid "Error occurred during data export" msgstr "" @@ -4290,7 +4418,7 @@ msgstr "Originalni podaci vrste" msgid "Errors" msgstr "Greške" -#: importer/models.py:550 part/serializers.py:1268 +#: importer/models.py:550 part/serializers.py:1133 msgid "Valid" msgstr "Važeće" @@ -4402,7 +4530,7 @@ msgstr "Broj kopija za štampanje od svakog natpisa" msgid "Connected" msgstr "Konektovano" -#: machine/machine_types/label_printer.py:232 order/api.py:1795 +#: machine/machine_types/label_printer.py:232 order/api.py:1800 msgid "Unknown" msgstr "Nepoznato" @@ -4530,105 +4658,105 @@ msgstr "" msgid "Maximum value for progress type, required if type=progress" msgstr "" -#: order/api.py:125 +#: order/api.py:130 msgid "Order Reference" msgstr "Referenca naloga" -#: order/api.py:153 order/api.py:1207 +#: order/api.py:158 order/api.py:1212 msgid "Outstanding" msgstr "Izvanredno" -#: order/api.py:169 +#: order/api.py:174 msgid "Has Project Code" msgstr "Ima šifru projekta" -#: order/api.py:183 order/models.py:488 +#: order/api.py:188 order/models.py:489 msgid "Created By" msgstr "Kreirano do strane" -#: order/api.py:187 +#: order/api.py:192 msgid "Created Before" msgstr "Kreirano pre" -#: order/api.py:191 +#: order/api.py:196 msgid "Created After" msgstr "Kreirano nakon" -#: order/api.py:195 +#: order/api.py:200 msgid "Has Start Date" msgstr "" -#: order/api.py:203 +#: order/api.py:208 msgid "Start Date Before" msgstr "" -#: order/api.py:207 +#: order/api.py:212 msgid "Start Date After" msgstr "" -#: order/api.py:211 +#: order/api.py:216 msgid "Has Target Date" msgstr "" -#: order/api.py:219 +#: order/api.py:224 msgid "Target Date Before" msgstr "Krajnji datum pre" -#: order/api.py:223 +#: order/api.py:228 msgid "Target Date After" msgstr "Krajnji datum nakon" -#: order/api.py:274 +#: order/api.py:279 msgid "Has Pricing" msgstr "Ima cenu" -#: order/api.py:327 order/api.py:812 order/api.py:1490 +#: order/api.py:332 order/api.py:818 order/api.py:1495 msgid "Completed Before" msgstr "Završen pre" -#: order/api.py:331 order/api.py:816 order/api.py:1494 +#: order/api.py:336 order/api.py:822 order/api.py:1499 msgid "Completed After" msgstr "Završen nakon" -#: order/api.py:337 order/api.py:341 +#: order/api.py:342 order/api.py:346 msgid "External Build Order" msgstr "" -#: order/api.py:526 order/api.py:914 order/api.py:1170 order/models.py:1922 -#: order/models.py:2049 order/models.py:2099 order/models.py:2279 -#: order/models.py:2477 order/models.py:2999 order/models.py:3065 +#: order/api.py:532 order/api.py:919 order/api.py:1175 order/models.py:1923 +#: order/models.py:2050 order/models.py:2100 order/models.py:2280 +#: order/models.py:2478 order/models.py:3000 order/models.py:3066 msgid "Order" msgstr "Nalog" -#: order/api.py:530 order/api.py:982 +#: order/api.py:536 order/api.py:987 msgid "Order Complete" msgstr "Nalog završen" -#: order/api.py:562 order/api.py:566 order/serializers.py:745 +#: order/api.py:568 order/api.py:572 order/serializers.py:756 msgid "Internal Part" msgstr "Interni deo" -#: order/api.py:584 +#: order/api.py:590 msgid "Order Pending" msgstr "Nalog na čekanju" -#: order/api.py:967 +#: order/api.py:972 msgid "Completed" msgstr "Završeno" -#: order/api.py:1223 +#: order/api.py:1228 msgid "Has Shipment" msgstr "Ima isporuku" -#: order/api.py:1789 order/models.py:552 order/models.py:1923 -#: order/models.py:2050 +#: order/api.py:1794 order/models.py:553 order/models.py:1924 +#: order/models.py:2051 #: report/templates/report/inventree_purchase_order_report.html:14 #: stock/serializers.py:129 templates/email/overdue_purchase_order.html:15 msgid "Purchase Order" msgstr "Nalog za kupovinu" -#: order/api.py:1791 order/models.py:1251 order/models.py:2100 -#: order/models.py:2280 order/models.py:2478 +#: order/api.py:1796 order/models.py:1252 order/models.py:2101 +#: order/models.py:2281 order/models.py:2479 #: report/templates/report/inventree_build_order_report.html:135 #: report/templates/report/inventree_sales_order_report.html:14 #: report/templates/report/inventree_sales_order_shipment_report.html:15 @@ -4636,8 +4764,8 @@ msgstr "Nalog za kupovinu" msgid "Sales Order" msgstr "Nalog za prodaju" -#: order/api.py:1793 order/models.py:2649 order/models.py:3000 -#: order/models.py:3066 +#: order/api.py:1798 order/models.py:2650 order/models.py:3001 +#: order/models.py:3067 #: report/templates/report/inventree_return_order_report.html:13 #: templates/email/overdue_return_order.html:15 msgid "Return Order" @@ -4653,722 +4781,722 @@ msgstr "Ukupna cena" msgid "Total price for this order" msgstr "Totalna cena ovog naloga" -#: order/models.py:96 order/serializers.py:77 +#: order/models.py:96 order/serializers.py:78 msgid "Order Currency" msgstr "Valuta naloga" -#: order/models.py:99 order/serializers.py:78 +#: order/models.py:99 order/serializers.py:79 msgid "Currency for this order (leave blank to use company default)" msgstr "Valuta za ovaj nalog (ostaviti prazno za podrazumevanu valutu kompanije)" -#: order/models.py:324 +#: order/models.py:325 msgid "This order is locked and cannot be modified" msgstr "" -#: order/models.py:376 +#: order/models.py:377 msgid "Contact does not match selected company" msgstr "Kontakt se ne poklapa sa izabranom kompanijom" -#: order/models.py:383 +#: order/models.py:384 msgid "Start date must be before target date" msgstr "" -#: order/models.py:390 +#: order/models.py:391 msgid "Address does not match selected company" msgstr "" -#: order/models.py:443 +#: order/models.py:444 msgid "Order description (optional)" msgstr "Opis naloga (opciono)" -#: order/models.py:452 order/models.py:1806 +#: order/models.py:453 order/models.py:1807 msgid "Select project code for this order" msgstr "Izaberi šifru projekta za ovaj nalog" -#: order/models.py:458 order/models.py:1787 order/models.py:2344 +#: order/models.py:459 order/models.py:1788 order/models.py:2345 msgid "Link to external page" msgstr "Link ka eksternoj stranici" -#: order/models.py:465 +#: order/models.py:466 msgid "Start date" msgstr "" -#: order/models.py:466 +#: order/models.py:467 msgid "Scheduled start date for this order" msgstr "" -#: order/models.py:472 order/models.py:1794 order/serializers.py:309 +#: order/models.py:473 order/models.py:1795 order/serializers.py:317 #: report/templates/report/inventree_build_order_report.html:125 msgid "Target Date" msgstr "Ciljani datum" -#: order/models.py:474 +#: order/models.py:475 msgid "Expected date for order delivery. Order will be overdue after this date." msgstr "Očekivani datum za isporuku. Nalog će biti zastareo nakon ovog datuma." -#: order/models.py:494 +#: order/models.py:495 msgid "Issue Date" msgstr "Datum izdavanja" -#: order/models.py:495 +#: order/models.py:496 msgid "Date order was issued" msgstr "Datum kada je nalog izdat" -#: order/models.py:503 +#: order/models.py:504 msgid "User or group responsible for this order" msgstr "Korisnik ili grupa odgovorni za ovaj nalog" -#: order/models.py:514 +#: order/models.py:515 msgid "Point of contact for this order" msgstr "Lice za kontakt za ovaj nalog" -#: order/models.py:524 +#: order/models.py:525 msgid "Company address for this order" msgstr "Adresa kompanije za ovaj nalog" -#: order/models.py:615 order/models.py:1312 +#: order/models.py:616 order/models.py:1313 msgid "Order reference" msgstr "Referenca naloga" -#: order/models.py:624 order/models.py:1336 order/models.py:2737 +#: order/models.py:625 order/models.py:1337 order/models.py:2738 #: stock/serializers.py:559 stock/serializers.py:988 users/models.py:542 msgid "Status" msgstr "Status" -#: order/models.py:625 +#: order/models.py:626 msgid "Purchase order status" msgstr "Status naloga za kupovinu" -#: order/models.py:640 +#: order/models.py:641 msgid "Company from which the items are being ordered" msgstr "Kompanija od koje su stavke naručene" -#: order/models.py:651 +#: order/models.py:652 msgid "Supplier Reference" msgstr "Referenca dobavljača" -#: order/models.py:652 +#: order/models.py:653 msgid "Supplier order reference code" msgstr "Referentni kod dobavljača naloga" -#: order/models.py:661 +#: order/models.py:662 msgid "received by" msgstr "primljeno od strane" -#: order/models.py:668 order/models.py:2752 +#: order/models.py:669 order/models.py:2753 msgid "Date order was completed" msgstr "Datum kada je nalog završen" -#: order/models.py:677 order/models.py:1981 +#: order/models.py:678 order/models.py:1982 msgid "Destination" msgstr "Odredište" -#: order/models.py:678 order/models.py:1985 +#: order/models.py:679 order/models.py:1986 msgid "Destination for received items" msgstr "Odredište za primljene stavke" -#: order/models.py:724 +#: order/models.py:725 msgid "Part supplier must match PO supplier" msgstr "Dobavljač dela se mora poklapati sa dobavljačem naloga za kupovinu" -#: order/models.py:994 +#: order/models.py:995 msgid "Line item does not match purchase order" msgstr "Stavka porudžbine se ne poklapa sa nalogom za kupovinu" -#: order/models.py:997 +#: order/models.py:998 msgid "Line item is missing a linked part" msgstr "" -#: order/models.py:1011 +#: order/models.py:1012 msgid "Quantity must be a positive number" msgstr "Količina mora biti pozitivan broj" -#: order/models.py:1323 order/models.py:2724 stock/models.py:1078 +#: order/models.py:1324 order/models.py:2725 stock/models.py:1078 #: stock/models.py:1079 stock/serializers.py:1322 #: templates/email/overdue_return_order.html:16 #: templates/email/overdue_sales_order.html:16 msgid "Customer" msgstr "Mušterija" -#: order/models.py:1324 +#: order/models.py:1325 msgid "Company to which the items are being sold" msgstr "Kompanija kojoj se prodaju stavke" -#: order/models.py:1337 +#: order/models.py:1338 msgid "Sales order status" msgstr "Status naloga za prodaju" -#: order/models.py:1348 order/models.py:2744 +#: order/models.py:1349 order/models.py:2745 msgid "Customer Reference " msgstr "Referenca mušterije" -#: order/models.py:1349 order/models.py:2745 +#: order/models.py:1350 order/models.py:2746 msgid "Customer order reference code" msgstr "Referentni kod mušterijinog naloga" -#: order/models.py:1353 order/models.py:2296 +#: order/models.py:1354 order/models.py:2297 msgid "Shipment Date" msgstr "Datum isporuke" -#: order/models.py:1362 +#: order/models.py:1363 msgid "shipped by" msgstr "isporučeno od strane" -#: order/models.py:1413 +#: order/models.py:1414 msgid "Order is already complete" msgstr "Nalog je već završen" -#: order/models.py:1416 +#: order/models.py:1417 msgid "Order is already cancelled" msgstr "Nalog je već otkazan" -#: order/models.py:1420 +#: order/models.py:1421 msgid "Only an open order can be marked as complete" msgstr "Samo otvoren nalog može biti označen kao završen" -#: order/models.py:1424 +#: order/models.py:1425 msgid "Order cannot be completed as there are incomplete shipments" msgstr "Nalog ne može biti završen jer ima nepotpunih isporuka" -#: order/models.py:1429 +#: order/models.py:1430 msgid "Order cannot be completed as there are incomplete allocations" msgstr "Nalog ne može biti završen jer ima nepotpunih alokacija" -#: order/models.py:1438 +#: order/models.py:1439 msgid "Order cannot be completed as there are incomplete line items" msgstr "Nalog ne može biti završen jer ima nezavršenih stavki porudbžine" -#: order/models.py:1733 order/models.py:1749 +#: order/models.py:1734 order/models.py:1750 msgid "The order is locked and cannot be modified" msgstr "" -#: order/models.py:1757 +#: order/models.py:1758 msgid "Item quantity" msgstr "Količina stavki" -#: order/models.py:1774 +#: order/models.py:1775 msgid "Line item reference" msgstr "Referenca stavke porudbžine" -#: order/models.py:1781 +#: order/models.py:1782 msgid "Line item notes" msgstr "Beleške stavke porudbžine" -#: order/models.py:1796 +#: order/models.py:1797 msgid "Target date for this line item (leave blank to use the target date from the order)" msgstr "Krajnji datum za ovu stavku porudbćine (ostaviti prazno za krajnji datum sa naloga)" -#: order/models.py:1826 +#: order/models.py:1827 msgid "Line item description (optional)" msgstr "Opis stavke porudžbine (opciono)" -#: order/models.py:1833 +#: order/models.py:1834 msgid "Additional context for this line" msgstr "Dodatni kontekst za ovu porudžbinu" -#: order/models.py:1843 +#: order/models.py:1844 msgid "Unit price" msgstr "Cena jedinice" -#: order/models.py:1862 +#: order/models.py:1863 msgid "Purchase Order Line Item" msgstr "Stavka porudžbine naloga za kupovinu" -#: order/models.py:1889 +#: order/models.py:1890 msgid "Supplier part must match supplier" msgstr "Deo dobavljača se mora poklapati sa dobavljačem" -#: order/models.py:1894 +#: order/models.py:1895 msgid "Build order must be marked as external" msgstr "" -#: order/models.py:1901 +#: order/models.py:1902 msgid "Build orders can only be linked to assembly parts" msgstr "" -#: order/models.py:1907 +#: order/models.py:1908 msgid "Build order part must match line item part" msgstr "" -#: order/models.py:1942 +#: order/models.py:1943 msgid "Supplier part" msgstr "Deo dobavljača" -#: order/models.py:1949 +#: order/models.py:1950 msgid "Received" msgstr "Primljeno" -#: order/models.py:1950 +#: order/models.py:1951 msgid "Number of items received" msgstr "Broj primljenih stavki" -#: order/models.py:1958 stock/models.py:1201 stock/serializers.py:637 +#: order/models.py:1959 stock/models.py:1201 stock/serializers.py:637 msgid "Purchase Price" msgstr "Kupovna cena" -#: order/models.py:1959 +#: order/models.py:1960 msgid "Unit purchase price" msgstr "Kupovna cena jedinice" -#: order/models.py:1975 +#: order/models.py:1976 msgid "External Build Order to be fulfilled by this line item" msgstr "" -#: order/models.py:2038 +#: order/models.py:2039 msgid "Purchase Order Extra Line" msgstr "Dodatna porudbžina naloga za kupovinu" -#: order/models.py:2067 +#: order/models.py:2068 msgid "Sales Order Line Item" msgstr "Stavka porudžbine naloga za prodaju" -#: order/models.py:2092 +#: order/models.py:2093 msgid "Only salable parts can be assigned to a sales order" msgstr "Samo delovi koji se mogu prodati mogu biti dodeljeni nalogu za prodaju" -#: order/models.py:2118 +#: order/models.py:2119 msgid "Sale Price" msgstr "Prodajna cena" -#: order/models.py:2119 +#: order/models.py:2120 msgid "Unit sale price" msgstr "Prodajna cena jedinice" -#: order/models.py:2128 order/status_codes.py:50 +#: order/models.py:2129 order/status_codes.py:50 msgid "Shipped" msgstr "Poslato" -#: order/models.py:2129 +#: order/models.py:2130 msgid "Shipped quantity" msgstr "Isporučena količina" -#: order/models.py:2240 +#: order/models.py:2241 msgid "Sales Order Shipment" msgstr "Isporuka naloga za prodaju" -#: order/models.py:2253 +#: order/models.py:2254 msgid "Shipment address must match the customer" msgstr "" -#: order/models.py:2289 +#: order/models.py:2290 msgid "Shipping address for this shipment" msgstr "" -#: order/models.py:2297 +#: order/models.py:2298 msgid "Date of shipment" msgstr "Datum isporuke" -#: order/models.py:2303 +#: order/models.py:2304 msgid "Delivery Date" msgstr "Datum dostavljanja" -#: order/models.py:2304 +#: order/models.py:2305 msgid "Date of delivery of shipment" msgstr "Datum dostavljanja isporuke" -#: order/models.py:2312 +#: order/models.py:2313 msgid "Checked By" msgstr "Provereno od strane" -#: order/models.py:2313 +#: order/models.py:2314 msgid "User who checked this shipment" msgstr "Korisnik koji je proverio ovu isporuku" -#: order/models.py:2320 order/models.py:2574 order/serializers.py:1711 -#: order/serializers.py:1835 +#: order/models.py:2321 order/models.py:2575 order/serializers.py:1725 +#: order/serializers.py:1849 #: report/templates/report/inventree_sales_order_shipment_report.html:14 msgid "Shipment" msgstr "Isporuka" -#: order/models.py:2321 +#: order/models.py:2322 msgid "Shipment number" msgstr "Broj isporuke" -#: order/models.py:2329 +#: order/models.py:2330 msgid "Tracking Number" msgstr "Broj praćenja" -#: order/models.py:2330 +#: order/models.py:2331 msgid "Shipment tracking information" msgstr "Informacije o praćenju isporuke" -#: order/models.py:2337 +#: order/models.py:2338 msgid "Invoice Number" msgstr "Broj računa" -#: order/models.py:2338 +#: order/models.py:2339 msgid "Reference number for associated invoice" msgstr "Referentni broj za dodeljeni račun" -#: order/models.py:2377 +#: order/models.py:2378 msgid "Shipment has already been sent" msgstr "Isporuka je već poslata" -#: order/models.py:2380 +#: order/models.py:2381 msgid "Shipment has no allocated stock items" msgstr "Isporuka nema alocirane stavke sa zaliha" -#: order/models.py:2387 +#: order/models.py:2388 msgid "Shipment must be checked before it can be completed" msgstr "" -#: order/models.py:2466 +#: order/models.py:2467 msgid "Sales Order Extra Line" msgstr "Dodatne porudbžine naloga za prodaju" -#: order/models.py:2495 +#: order/models.py:2496 msgid "Sales Order Allocation" msgstr "Alokacije naloga za prodaju" -#: order/models.py:2518 order/models.py:2520 +#: order/models.py:2519 order/models.py:2521 msgid "Stock item has not been assigned" msgstr "Stavka sa zaliha nije dodeljena" -#: order/models.py:2527 +#: order/models.py:2528 msgid "Cannot allocate stock item to a line with a different part" msgstr "Ne mogu se alocirati stavke sa zaliha porudbžini sa drugačijim delom" -#: order/models.py:2530 +#: order/models.py:2531 msgid "Cannot allocate stock to a line without a part" msgstr "Ne mogu se alocirati zalihe porudbžini bez dela" -#: order/models.py:2533 +#: order/models.py:2534 msgid "Allocation quantity cannot exceed stock quantity" msgstr "Alocirana količina ne sme da pređe količinu zaliha" -#: order/models.py:2552 order/serializers.py:1581 +#: order/models.py:2553 order/serializers.py:1595 msgid "Quantity must be 1 for serialized stock item" msgstr "Količina mora biti 1 za serijalizovane stavke sa zaliha" -#: order/models.py:2555 +#: order/models.py:2556 msgid "Sales order does not match shipment" msgstr "Nalog za prodaju se ne poklapa sa isporukom" -#: order/models.py:2556 plugin/base/barcodes/api.py:642 +#: order/models.py:2557 plugin/base/barcodes/api.py:642 msgid "Shipment does not match sales order" msgstr "Isporuka se ne poklapa sa nalogom za prodaju" -#: order/models.py:2564 +#: order/models.py:2565 msgid "Line" msgstr "Porudbžina" -#: order/models.py:2575 +#: order/models.py:2576 msgid "Sales order shipment reference" msgstr "Referenca isporuke naloga za prodaju" -#: order/models.py:2588 order/models.py:3007 +#: order/models.py:2589 order/models.py:3008 msgid "Item" msgstr "Stavka" -#: order/models.py:2589 +#: order/models.py:2590 msgid "Select stock item to allocate" msgstr "Izaberi stavku sa zaliha za alokaciju" -#: order/models.py:2598 +#: order/models.py:2599 msgid "Enter stock allocation quantity" msgstr "Unesi količinu za alokaciju zaliha" -#: order/models.py:2713 +#: order/models.py:2714 msgid "Return Order reference" msgstr "Referenca naloga za vraćanje" -#: order/models.py:2725 +#: order/models.py:2726 msgid "Company from which items are being returned" msgstr "Kompanija čije stavke su vraćene" -#: order/models.py:2738 +#: order/models.py:2739 msgid "Return order status" msgstr "Status naloga za vraćanje" -#: order/models.py:2965 +#: order/models.py:2966 msgid "Return Order Line Item" msgstr "Vrati stavku porudbžine" -#: order/models.py:2978 +#: order/models.py:2979 msgid "Stock item must be specified" msgstr "Stavka sa zaliha mora biti određena" -#: order/models.py:2982 +#: order/models.py:2983 msgid "Return quantity exceeds stock quantity" msgstr "Količina vraćanja je premašila količinu zaliha" -#: order/models.py:2987 +#: order/models.py:2988 msgid "Return quantity must be greater than zero" msgstr "Količina vraćanja mora biti veća od nule" -#: order/models.py:2992 +#: order/models.py:2993 msgid "Invalid quantity for serialized stock item" msgstr "Nevažeća količina za serijalizovane stavke sa zaliha" -#: order/models.py:3008 +#: order/models.py:3009 msgid "Select item to return from customer" msgstr "Izaberi stavku za vraćanje od mušterije" -#: order/models.py:3023 +#: order/models.py:3024 msgid "Received Date" msgstr "Primljeno datuma" -#: order/models.py:3024 +#: order/models.py:3025 msgid "The date this this return item was received" msgstr "Datum kada je ova vraćena stavka primljena" -#: order/models.py:3036 +#: order/models.py:3037 msgid "Outcome" msgstr "Ishod" -#: order/models.py:3037 +#: order/models.py:3038 msgid "Outcome for this line item" msgstr "Ishod za ovu stavku porudžbine" -#: order/models.py:3044 +#: order/models.py:3045 msgid "Cost associated with return or repair for this line item" msgstr "Trošak asociran sa popravkom ili vraćanjem ove stavke porudžbine" -#: order/models.py:3054 +#: order/models.py:3055 msgid "Return Order Extra Line" msgstr "Doda" -#: order/serializers.py:91 +#: order/serializers.py:92 msgid "Order ID" msgstr "ID naloga" -#: order/serializers.py:91 +#: order/serializers.py:92 msgid "ID of the order to duplicate" msgstr "ID naloga koji će se duplirati" -#: order/serializers.py:97 +#: order/serializers.py:98 msgid "Copy Lines" msgstr "Kopiraj porudžbine" -#: order/serializers.py:98 +#: order/serializers.py:99 msgid "Copy line items from the original order" msgstr "Kopiraj stavke porudžbine sa originalnog naloga" -#: order/serializers.py:104 +#: order/serializers.py:105 msgid "Copy Extra Lines" msgstr "Kopiraj dodatne porudžbine" -#: order/serializers.py:105 +#: order/serializers.py:106 msgid "Copy extra line items from the original order" msgstr "Kopiraj dodatne stavke porudžbine sa originalnog naloga" -#: order/serializers.py:120 +#: order/serializers.py:121 #: report/templates/report/inventree_purchase_order_report.html:29 #: report/templates/report/inventree_return_order_report.html:19 #: report/templates/report/inventree_sales_order_report.html:22 msgid "Line Items" msgstr "Stavke porudbžine" -#: order/serializers.py:125 +#: order/serializers.py:126 msgid "Completed Lines" msgstr "Završene porudbžine" -#: order/serializers.py:192 +#: order/serializers.py:199 msgid "Duplicate Order" msgstr "Dupliraj nalog" -#: order/serializers.py:193 +#: order/serializers.py:200 msgid "Specify options for duplicating this order" msgstr "Odredi opcije za dupliranje ovog naloga" -#: order/serializers.py:270 +#: order/serializers.py:278 msgid "Invalid order ID" msgstr "Nevažeći ID naloga" -#: order/serializers.py:466 +#: order/serializers.py:477 msgid "Supplier Name" msgstr "Naziv dobavljača" -#: order/serializers.py:510 +#: order/serializers.py:521 msgid "Order cannot be cancelled" msgstr "Nalog ne može biti otkazan" -#: order/serializers.py:525 order/serializers.py:1602 +#: order/serializers.py:536 order/serializers.py:1616 msgid "Allow order to be closed with incomplete line items" msgstr "Dozvoli da nalog bude zatvoren sa nepotpunim porudžbinama" -#: order/serializers.py:535 order/serializers.py:1612 +#: order/serializers.py:546 order/serializers.py:1626 msgid "Order has incomplete line items" msgstr "Nalog ima nepotpune stavke porudžbine" -#: order/serializers.py:665 +#: order/serializers.py:676 msgid "Order is not open" msgstr "Nalog nije otvoren" -#: order/serializers.py:692 +#: order/serializers.py:703 msgid "Auto Pricing" msgstr "Automatske cene" -#: order/serializers.py:694 +#: order/serializers.py:705 msgid "Automatically calculate purchase price based on supplier part data" msgstr "Automatski izračunaj kupovnu cenu na osnovu podataka o delovima dobavljača" -#: order/serializers.py:704 +#: order/serializers.py:715 msgid "Purchase price currency" msgstr "Valuta kupovne cene" -#: order/serializers.py:718 +#: order/serializers.py:729 msgid "Merge Items" msgstr "Spoj stavke" -#: order/serializers.py:720 +#: order/serializers.py:731 msgid "Merge items with the same part, destination and target date into one line item" msgstr "Spoj stavke sa istim delom, odredištem i ciljanim datumom u jednu stavku porudžbine" -#: order/serializers.py:727 part/serializers.py:560 +#: order/serializers.py:738 part/serializers.py:471 msgid "SKU" msgstr "Jedinica za praćenje zaliha" -#: order/serializers.py:741 part/models.py:1089 part/serializers.py:372 +#: order/serializers.py:752 part/models.py:1177 part/serializers.py:337 msgid "Internal Part Number" msgstr "Interni broj dela" -#: order/serializers.py:749 +#: order/serializers.py:760 msgid "Internal Part Name" msgstr "Interni naziv dela" -#: order/serializers.py:765 +#: order/serializers.py:776 msgid "Supplier part must be specified" msgstr "Deo dobavljača mora biti određen" -#: order/serializers.py:768 +#: order/serializers.py:779 msgid "Purchase order must be specified" msgstr "Nalog za kupovinu mora biti određen" -#: order/serializers.py:776 +#: order/serializers.py:787 msgid "Supplier must match purchase order" msgstr "Dobavljač mora da se poklapa sa nalogom za kupovinu" -#: order/serializers.py:777 +#: order/serializers.py:788 msgid "Purchase order must match supplier" msgstr "Nalog za kupovinu mora da se poklapa sa dobavljačem" -#: order/serializers.py:825 order/serializers.py:1682 +#: order/serializers.py:836 order/serializers.py:1696 msgid "Line Item" msgstr "Stavka porudbžine" -#: order/serializers.py:834 order/serializers.py:974 order/serializers.py:2043 +#: order/serializers.py:845 order/serializers.py:985 order/serializers.py:2060 msgid "Select destination location for received items" msgstr "Izaberi odredišnu lokaciju za primljene stavke" -#: order/serializers.py:850 +#: order/serializers.py:861 msgid "Enter batch code for incoming stock items" msgstr "Unesi šifru ture za nadolazeće stavke sa zaliha" -#: order/serializers.py:857 stock/models.py:1160 +#: order/serializers.py:868 stock/models.py:1160 #: templates/email/stale_stock_notification.html:22 users/models.py:137 msgid "Expiry Date" msgstr "Datum isteka" -#: order/serializers.py:858 +#: order/serializers.py:869 msgid "Enter expiry date for incoming stock items" msgstr "" -#: order/serializers.py:866 +#: order/serializers.py:877 msgid "Enter serial numbers for incoming stock items" msgstr "Unesi serijske brojeve za nadolazeće stavke sa zaliha" -#: order/serializers.py:876 +#: order/serializers.py:887 msgid "Override packaging information for incoming stock items" msgstr "Promeni informacije o pakovanju za nadolazeće stavke sa zaliha" -#: order/serializers.py:884 order/serializers.py:2048 +#: order/serializers.py:895 order/serializers.py:2065 msgid "Additional note for incoming stock items" msgstr "Dodatne beleške za nadolazeće stavke sa zaliha" -#: order/serializers.py:891 +#: order/serializers.py:902 msgid "Barcode" msgstr "Bar kod" -#: order/serializers.py:892 +#: order/serializers.py:903 msgid "Scanned barcode" msgstr "Skeniran bar kod" -#: order/serializers.py:908 +#: order/serializers.py:919 msgid "Barcode is already in use" msgstr "Bar kod je već u upotrebi" -#: order/serializers.py:991 order/serializers.py:2067 +#: order/serializers.py:1002 order/serializers.py:2084 msgid "Line items must be provided" msgstr "Stavke porudžbine moraju biti dostavljene" -#: order/serializers.py:1010 +#: order/serializers.py:1021 msgid "Destination location must be specified" msgstr "Odredišna lokacija mora biti određena" -#: order/serializers.py:1017 +#: order/serializers.py:1028 msgid "Supplied barcode values must be unique" msgstr "Pružene vrednosti bar kodova moraju biti jedinstvene" -#: order/serializers.py:1121 +#: order/serializers.py:1135 msgid "Shipments" msgstr "Isporuke" -#: order/serializers.py:1125 +#: order/serializers.py:1139 msgid "Completed Shipments" msgstr "Završene isporuke" -#: order/serializers.py:1293 +#: order/serializers.py:1307 msgid "Sale price currency" msgstr "Valuta prodajne cene" -#: order/serializers.py:1339 +#: order/serializers.py:1353 msgid "Allocated Items" msgstr "Alocirane stavke" -#: order/serializers.py:1484 +#: order/serializers.py:1498 msgid "No shipment details provided" msgstr "Nisu dostavljeni detalji isporuke" -#: order/serializers.py:1545 order/serializers.py:1691 +#: order/serializers.py:1559 order/serializers.py:1705 msgid "Line item is not associated with this order" msgstr "Stavka porudžbine nije asocirana sa ovim nalogom" -#: order/serializers.py:1564 +#: order/serializers.py:1578 msgid "Quantity must be positive" msgstr "Količina mora biti pozitivna" -#: order/serializers.py:1701 +#: order/serializers.py:1715 msgid "Enter serial numbers to allocate" msgstr "Unesi serijske brojeve za alokaciju" -#: order/serializers.py:1723 order/serializers.py:1843 +#: order/serializers.py:1737 order/serializers.py:1857 msgid "Shipment has already been shipped" msgstr "Isporuka je već isporučena" -#: order/serializers.py:1726 order/serializers.py:1846 +#: order/serializers.py:1740 order/serializers.py:1860 msgid "Shipment is not associated with this order" msgstr "Isporuka nije povezana sa ovim nalogom" -#: order/serializers.py:1781 +#: order/serializers.py:1795 msgid "No match found for the following serial numbers" msgstr "Nema pronađenih poklapanja za sledeće serijske brojeve" -#: order/serializers.py:1788 +#: order/serializers.py:1802 msgid "The following serial numbers are unavailable" msgstr "Sledeći serijski brojevi su nedostupni" -#: order/serializers.py:2009 +#: order/serializers.py:2026 msgid "Return order line item" msgstr "Stavka porudžbine naloga za vraćanje" -#: order/serializers.py:2019 +#: order/serializers.py:2036 msgid "Line item does not match return order" msgstr "Stavka porudžbine se ne poklapa sa nalogom za vraćanje" -#: order/serializers.py:2022 +#: order/serializers.py:2039 msgid "Line item has already been received" msgstr "Stavka porudžbine je već primljena" -#: order/serializers.py:2059 +#: order/serializers.py:2076 msgid "Items can only be received against orders which are in progress" msgstr "Stavke se mogu primiti samo na osnovu naloga koji su u toku" -#: order/serializers.py:2124 +#: order/serializers.py:2141 msgid "Quantity to return" msgstr "Količina za vraćanje" -#: order/serializers.py:2140 +#: order/serializers.py:2157 msgid "Line price currency" msgstr "Valuta cene porudžbine" @@ -5431,1190 +5559,1109 @@ msgstr "" msgid "Return order {ro} is now overdue" msgstr "" -#: part/api.py:108 +#: part/api.py:103 msgid "Starred" msgstr "Označeno zvezdicom" -#: part/api.py:110 +#: part/api.py:105 msgid "Filter by starred categories" msgstr "Filtiraj po kategorijama označenim zvezdicom" -#: part/api.py:127 stock/api.py:288 +#: part/api.py:122 stock/api.py:288 msgid "Depth" msgstr "Dubina" -#: part/api.py:127 +#: part/api.py:122 msgid "Filter by category depth" msgstr "Filtriraj po dubini kategorije" -#: part/api.py:145 stock/api.py:306 +#: part/api.py:140 stock/api.py:306 msgid "Top Level" msgstr "Vrhovni" -#: part/api.py:147 +#: part/api.py:142 msgid "Filter by top-level categories" msgstr "Filtriraj po vrhovnim kategorijama" -#: part/api.py:160 stock/api.py:321 +#: part/api.py:155 stock/api.py:321 msgid "Cascade" msgstr "Kaskadno" -#: part/api.py:162 +#: part/api.py:157 msgid "Include sub-categories in filtered results" msgstr "Uključi pod-kategorije u filtriranim rezultatima" -#: part/api.py:182 +#: part/api.py:177 msgid "Parent" msgstr "Nadređen" -#: part/api.py:184 +#: part/api.py:179 msgid "Filter by parent category" msgstr "Filtriraj po nadređenoj kategoriji" -#: part/api.py:219 +#: part/api.py:214 msgid "Exclude sub-categories under the specified category" msgstr "Ne uključuj pod-kategorije pod specifičnom kategorijom" -#: part/api.py:445 +#: part/api.py:440 msgid "Has Results" msgstr "Ima rezultate" -#: part/api.py:666 +#: part/api.py:661 msgid "Is Variant" msgstr "" -#: part/api.py:674 +#: part/api.py:669 msgid "Is Revision" msgstr "Je revizija" -#: part/api.py:684 +#: part/api.py:679 msgid "Has Revisions" msgstr "Ima revizije" -#: part/api.py:865 +#: part/api.py:860 msgid "BOM Valid" msgstr "Spisak materijala validan" -#: part/api.py:974 +#: part/api.py:969 msgid "Cascade Categories" msgstr "" -#: part/api.py:975 +#: part/api.py:970 msgid "If true, include items in child categories of the given category" msgstr "" -#: part/api.py:981 +#: part/api.py:976 msgid "Filter by numeric category ID or the literal 'null'" msgstr "" -#: part/api.py:1533 +#: part/api.py:1258 msgid "Assembly part is testable" msgstr "Deo sklopa se može testirati" -#: part/api.py:1542 +#: part/api.py:1267 msgid "Component part is testable" msgstr "Deo komponente se može testirati" -#: part/api.py:1611 +#: part/api.py:1336 msgid "Uses" msgstr "Koristi" -#: part/models.py:96 part/models.py:4163 +#: part/models.py:93 part/models.py:436 #: templates/email/part_event_notification.html:16 msgid "Part Category" msgstr "Kategorija dela" -#: part/models.py:97 users/ruleset.py:27 +#: part/models.py:94 users/ruleset.py:27 msgid "Part Categories" msgstr "Kategorije delova" -#: part/models.py:115 part/models.py:1125 +#: part/models.py:112 part/models.py:1213 msgid "Default Location" msgstr "Podrazumevana lokacija" -#: part/models.py:116 +#: part/models.py:113 msgid "Default location for parts in this category" msgstr "Podrazumevana lokacija za delove ove kategorije" -#: part/models.py:121 stock/models.py:216 +#: part/models.py:118 stock/models.py:216 msgid "Structural" msgstr "Strukturno" -#: part/models.py:123 +#: part/models.py:120 msgid "Parts may not be directly assigned to a structural category, but may be assigned to child categories." msgstr "Delovi ne mogu biti direktno dodeljene strukturnoj kategoriji, ali mogu biti dodeljeni podređenim kategorijama." -#: part/models.py:132 +#: part/models.py:129 msgid "Default keywords" msgstr "Podrazumevane ključne reči" -#: part/models.py:133 +#: part/models.py:130 msgid "Default keywords for parts in this category" msgstr "Podrazumevane ključne reči za delove ove kategorije" -#: part/models.py:140 stock/models.py:97 stock/models.py:198 +#: part/models.py:137 stock/models.py:97 stock/models.py:198 msgid "Icon" msgstr "Ikonica" -#: part/models.py:141 part/serializers.py:148 part/serializers.py:167 +#: part/models.py:138 part/serializers.py:147 part/serializers.py:166 #: stock/models.py:199 msgid "Icon (optional)" msgstr "Ikonica (opciono)" -#: part/models.py:185 +#: part/models.py:182 msgid "You cannot make this part category structural because some parts are already assigned to it!" msgstr "Ova kategorija dela se ne može podesiti kao strukturna jer već ima dodeljene neke delove!" -#: part/models.py:473 part/serializers.py:119 part/serializers.py:310 -#: users/ruleset.py:28 +#: part/models.py:392 +msgid "Part Category Parameter Template" +msgstr "Šablon parametara kategorije dela" + +#: part/models.py:448 +msgid "Default Value" +msgstr "Podrazumevana vrednost" + +#: part/models.py:449 +msgid "Default Parameter Value" +msgstr "Podrazumevana vrednost parametra" + +#: part/models.py:551 part/serializers.py:118 users/ruleset.py:28 msgid "Parts" msgstr "Delovi" -#: part/models.py:525 +#: part/models.py:597 +msgid "Cannot delete parameters of a locked part" +msgstr "" + +#: part/models.py:602 +msgid "Cannot modify parameters of a locked part" +msgstr "" + +#: part/models.py:613 msgid "Cannot delete this part as it is locked" msgstr "Ovaj deo se ne može izbrisati jer je zaključan" -#: part/models.py:528 +#: part/models.py:616 msgid "Cannot delete this part as it is still active" msgstr "Ovaj deo se ne može izbrisati jer je i dalje aktivan" -#: part/models.py:533 +#: part/models.py:621 msgid "Cannot delete this part as it is used in an assembly" msgstr "Ovaj deo se ne može obrisati jer se koristi u sklopu" -#: part/models.py:616 part/models.py:623 +#: part/models.py:704 part/models.py:711 #, python-brace-format msgid "Part '{self}' cannot be used in BOM for '{parent}' (recursive)" msgstr "Deo '{self}' ne može biti korišćen u spisku materijala za '{parent}' (recursive)" -#: part/models.py:635 +#: part/models.py:723 #, python-brace-format msgid "Part '{parent}' is used in BOM for '{self}' (recursive)" msgstr "Deo '{parent}' se koristi u spisku materijala za '{self}' (recursive)" -#: part/models.py:702 +#: part/models.py:790 #, python-brace-format msgid "IPN must match regex pattern {pattern}" msgstr "Interni broj dela se mora slagati sa regex šablonom {pattern}" -#: part/models.py:710 +#: part/models.py:798 msgid "Part cannot be a revision of itself" msgstr "Deo ne može biti revizija samog sebe" -#: part/models.py:717 +#: part/models.py:805 msgid "Cannot make a revision of a part which is already a revision" msgstr "Ne može se kreirati revizija dela koji je već revizija" -#: part/models.py:724 +#: part/models.py:812 msgid "Revision code must be specified" msgstr "Šifra revizije mora biti dostavljena" -#: part/models.py:731 +#: part/models.py:819 msgid "Revisions are only allowed for assembly parts" msgstr "Revizije su dozvoljene samo za delove sklopove" -#: part/models.py:738 +#: part/models.py:826 msgid "Cannot make a revision of a template part" msgstr "Ne može se izvršiti revizija šablonskog dela" -#: part/models.py:744 +#: part/models.py:832 msgid "Parent part must point to the same template" msgstr "Nadređeni deo mora biti vezan sa istim šablonom" -#: part/models.py:841 +#: part/models.py:929 msgid "Stock item with this serial number already exists" msgstr "Stavka sa ovim serijskim brojem već postoji" -#: part/models.py:971 +#: part/models.py:1059 msgid "Duplicate IPN not allowed in part settings" msgstr "Duplirani interni brojevi dela nisu dozvoljeni u podešavanjima dela" -#: part/models.py:983 +#: part/models.py:1071 msgid "Duplicate part revision already exists." msgstr "Identična revizija dela već postoji" -#: part/models.py:992 +#: part/models.py:1080 msgid "Part with this Name, IPN and Revision already exists." msgstr "Deo sa ovim nazivom, internim brojem dela i revizijom već postoji" -#: part/models.py:1007 +#: part/models.py:1095 msgid "Parts cannot be assigned to structural part categories!" msgstr "Delovi ne mogu biti dodeljeni strukturnim kategorijama delova!" -#: part/models.py:1039 +#: part/models.py:1127 msgid "Part name" msgstr "Naziv dela" -#: part/models.py:1044 +#: part/models.py:1132 msgid "Is Template" msgstr "Jeste šablon" -#: part/models.py:1045 +#: part/models.py:1133 msgid "Is this part a template part?" msgstr "Da li je ovaj deo šablonski deo?" -#: part/models.py:1055 +#: part/models.py:1143 msgid "Is this part a variant of another part?" msgstr "Da li je ovaj deo varijanta drugog dela?" -#: part/models.py:1056 +#: part/models.py:1144 msgid "Variant Of" msgstr "Varijanta od" -#: part/models.py:1063 +#: part/models.py:1151 msgid "Part description (optional)" msgstr "Opis dela (opciono)" -#: part/models.py:1070 +#: part/models.py:1158 msgid "Keywords" msgstr "Ključne reči" -#: part/models.py:1071 +#: part/models.py:1159 msgid "Part keywords to improve visibility in search results" msgstr "Ključne reči dela da bi se poboljšala vidljivost u rezultatima pretrage" -#: part/models.py:1081 +#: part/models.py:1169 msgid "Part category" msgstr "Kategorija dela" -#: part/models.py:1088 part/serializers.py:929 +#: part/models.py:1176 part/serializers.py:814 #: report/templates/report/inventree_stock_location_report.html:103 msgid "IPN" msgstr "Interni broj dela" -#: part/models.py:1096 +#: part/models.py:1184 msgid "Part revision or version number" msgstr "Revizija dela ili broj verzije" -#: part/models.py:1097 report/models.py:228 +#: part/models.py:1185 report/models.py:228 msgid "Revision" msgstr "Revizija" -#: part/models.py:1106 +#: part/models.py:1194 msgid "Is this part a revision of another part?" msgstr "Da li je ovaj deo revizija drugog dela?" -#: part/models.py:1107 +#: part/models.py:1195 msgid "Revision Of" msgstr "Revizija od" -#: part/models.py:1123 +#: part/models.py:1211 msgid "Where is this item normally stored?" msgstr "Gde je ova stavka inače skladištena?" -#: part/models.py:1169 +#: part/models.py:1257 msgid "Default Supplier" msgstr "Podrazumevani dobavljač" -#: part/models.py:1170 +#: part/models.py:1258 msgid "Default supplier part" msgstr "Podrazumevani deo dobavljača" -#: part/models.py:1177 +#: part/models.py:1265 msgid "Default Expiry" msgstr "Podrazumevani istek" -#: part/models.py:1178 +#: part/models.py:1266 msgid "Expiry time (in days) for stock items of this part" msgstr "Vreme isteka (u danima) za stavke sa zaliha ovog dela" -#: part/models.py:1186 part/serializers.py:1003 +#: part/models.py:1274 part/serializers.py:888 msgid "Minimum Stock" msgstr "Minimalne zalihe" -#: part/models.py:1187 +#: part/models.py:1275 msgid "Minimum allowed stock level" msgstr "Minimalni dozvoljen nivo zaliha" -#: part/models.py:1196 +#: part/models.py:1284 msgid "Units of measure for this part" msgstr "Jedinice mere za ovaj deo" -#: part/models.py:1203 +#: part/models.py:1291 msgid "Can this part be built from other parts?" msgstr "Da li ovaj deo može biti izgrađen od drugih delova?" -#: part/models.py:1209 +#: part/models.py:1297 msgid "Can this part be used to build other parts?" msgstr "Da li ovaj deo može biti korišćen za izradu drugih delova?" -#: part/models.py:1215 +#: part/models.py:1303 msgid "Does this part have tracking for unique items?" msgstr "Da li ovaj deo ima praćenje za više stavki?" -#: part/models.py:1221 +#: part/models.py:1309 msgid "Can this part have test results recorded against it?" msgstr "Da li ovaj deo može imati svoje rezultate testa?" -#: part/models.py:1227 +#: part/models.py:1315 msgid "Can this part be purchased from external suppliers?" msgstr "Da li ovaj deo može biti kupljen od eksternih dobavljača?" -#: part/models.py:1233 +#: part/models.py:1321 msgid "Can this part be sold to customers?" msgstr "Da li ovaj deo može biti prodat mušterijama?" -#: part/models.py:1237 +#: part/models.py:1325 msgid "Is this part active?" msgstr "Da li je ovaj deo aktivan?" -#: part/models.py:1243 +#: part/models.py:1331 msgid "Locked parts cannot be edited" msgstr "Zaključani delovi se ne mogu menjati" -#: part/models.py:1249 +#: part/models.py:1337 msgid "Is this a virtual part, such as a software product or license?" msgstr "Da li je ovo virtuelni deo, kao na primer softver ili licenca?" -#: part/models.py:1254 +#: part/models.py:1342 msgid "BOM Validated" msgstr "" -#: part/models.py:1255 +#: part/models.py:1343 msgid "Is the BOM for this part valid?" msgstr "" -#: part/models.py:1261 +#: part/models.py:1349 msgid "BOM checksum" msgstr "Suma spiska materijala" -#: part/models.py:1262 +#: part/models.py:1350 msgid "Stored BOM checksum" msgstr "Uskladištena suma spiska materijala" -#: part/models.py:1270 +#: part/models.py:1358 msgid "BOM checked by" msgstr "Spisak materijala proveren od strane" -#: part/models.py:1275 +#: part/models.py:1363 msgid "BOM checked date" msgstr "Spisak materijala proveren datuma" -#: part/models.py:1291 +#: part/models.py:1379 msgid "Creation User" msgstr "Korisnik koji je kreirao" -#: part/models.py:1301 +#: part/models.py:1389 msgid "Owner responsible for this part" msgstr "Vlasnik odgovoran za ovaj deo" -#: part/models.py:2258 +#: part/models.py:2346 msgid "Sell multiple" msgstr "Prodaj više" -#: part/models.py:3286 +#: part/models.py:3350 msgid "Currency used to cache pricing calculations" msgstr "Valuta korišćena za vršenje proračuna o cenama" -#: part/models.py:3302 +#: part/models.py:3366 msgid "Minimum BOM Cost" msgstr "Minimalna vrednost spiska materijala" -#: part/models.py:3303 +#: part/models.py:3367 msgid "Minimum cost of component parts" msgstr "Minimalna vrednost komponenti delova" -#: part/models.py:3309 +#: part/models.py:3373 msgid "Maximum BOM Cost" msgstr "Maksimalna vrednost spiska materijala" -#: part/models.py:3310 +#: part/models.py:3374 msgid "Maximum cost of component parts" msgstr "Maksimalna vrednost komponenti delova" -#: part/models.py:3316 +#: part/models.py:3380 msgid "Minimum Purchase Cost" msgstr "Minimalna kupovna vrednost" -#: part/models.py:3317 +#: part/models.py:3381 msgid "Minimum historical purchase cost" msgstr "Minimalna istorijska kupovna vrednost" -#: part/models.py:3323 +#: part/models.py:3387 msgid "Maximum Purchase Cost" msgstr "Maksimalna kupovna vrednost" -#: part/models.py:3324 +#: part/models.py:3388 msgid "Maximum historical purchase cost" msgstr "Maksimalna istorijska kupovna vrednost" -#: part/models.py:3330 +#: part/models.py:3394 msgid "Minimum Internal Price" msgstr "Minimalna interna cena" -#: part/models.py:3331 +#: part/models.py:3395 msgid "Minimum cost based on internal price breaks" msgstr "Minimalna cena bazirana na internim sniženjima cena" -#: part/models.py:3337 +#: part/models.py:3401 msgid "Maximum Internal Price" msgstr "Maksimalna interna cena" -#: part/models.py:3338 +#: part/models.py:3402 msgid "Maximum cost based on internal price breaks" msgstr "Maksimalna vrednost bazirana na internim sniženjima cena" -#: part/models.py:3344 +#: part/models.py:3408 msgid "Minimum Supplier Price" msgstr "Minimalna cena dobavljača" -#: part/models.py:3345 +#: part/models.py:3409 msgid "Minimum price of part from external suppliers" msgstr "Minimalna cena dela od eksternih dobavljača" -#: part/models.py:3351 +#: part/models.py:3415 msgid "Maximum Supplier Price" msgstr "Maksimalna cena dobavljača" -#: part/models.py:3352 +#: part/models.py:3416 msgid "Maximum price of part from external suppliers" msgstr "Maksimalna cena dela od eksternih dobavljača" -#: part/models.py:3358 +#: part/models.py:3422 msgid "Minimum Variant Cost" msgstr "Minimalna vrednost varijanti" -#: part/models.py:3359 +#: part/models.py:3423 msgid "Calculated minimum cost of variant parts" msgstr "Izračunata minimalna vrednost varijanti delova" -#: part/models.py:3365 +#: part/models.py:3429 msgid "Maximum Variant Cost" msgstr "Maksimalna vrednost varijanti" -#: part/models.py:3366 +#: part/models.py:3430 msgid "Calculated maximum cost of variant parts" msgstr "Izračunata maksimalna vrednost varijanti delova" -#: part/models.py:3372 part/models.py:3386 +#: part/models.py:3436 part/models.py:3450 msgid "Minimum Cost" msgstr "Minimalna vrednost" -#: part/models.py:3373 +#: part/models.py:3437 msgid "Override minimum cost" msgstr "Promeni minimalnu vrednost" -#: part/models.py:3379 part/models.py:3393 +#: part/models.py:3443 part/models.py:3457 msgid "Maximum Cost" msgstr "Maksimalna vrednost" -#: part/models.py:3380 +#: part/models.py:3444 msgid "Override maximum cost" msgstr "Promeni maksimalnu vrednost" -#: part/models.py:3387 +#: part/models.py:3451 msgid "Calculated overall minimum cost" msgstr "Ukupna izračunata minimalna vrednost" -#: part/models.py:3394 +#: part/models.py:3458 msgid "Calculated overall maximum cost" msgstr "Ukupna izračunata maksimalna vrednost" -#: part/models.py:3400 +#: part/models.py:3464 msgid "Minimum Sale Price" msgstr "Minimalna prodajna cena" -#: part/models.py:3401 +#: part/models.py:3465 msgid "Minimum sale price based on price breaks" msgstr "Minimalna prodajna cena bazirana na osnovu sniženja cena" -#: part/models.py:3407 +#: part/models.py:3471 msgid "Maximum Sale Price" msgstr "Maksimalna prodajna cena" -#: part/models.py:3408 +#: part/models.py:3472 msgid "Maximum sale price based on price breaks" msgstr "Maksimalna prodajna cena bazirana na osnovu sniženja cena" -#: part/models.py:3414 +#: part/models.py:3478 msgid "Minimum Sale Cost" msgstr "Minimalna prodajna vrednost" -#: part/models.py:3415 +#: part/models.py:3479 msgid "Minimum historical sale price" msgstr "Minimalna istorijska prodajna cena" -#: part/models.py:3421 +#: part/models.py:3485 msgid "Maximum Sale Cost" msgstr "Maksimalna prodajna vrednost" -#: part/models.py:3422 +#: part/models.py:3486 msgid "Maximum historical sale price" msgstr "Maksimalna istorijska prodajna cena" -#: part/models.py:3440 +#: part/models.py:3504 msgid "Part for stocktake" msgstr "Deo za popis" -#: part/models.py:3445 +#: part/models.py:3509 msgid "Item Count" msgstr "Broj stavki" -#: part/models.py:3446 +#: part/models.py:3510 msgid "Number of individual stock entries at time of stocktake" msgstr "Broj individualnih unosa zaliha u vreme popisa" -#: part/models.py:3454 +#: part/models.py:3518 msgid "Total available stock at time of stocktake" msgstr "Ukupne dostupne zalihe za vreme popisa" -#: part/models.py:3458 report/templates/report/inventree_test_report.html:106 +#: part/models.py:3522 report/templates/report/inventree_test_report.html:106 msgid "Date" msgstr "Datum" -#: part/models.py:3459 +#: part/models.py:3523 msgid "Date stocktake was performed" msgstr "Datum kada je izvršen popis" -#: part/models.py:3466 +#: part/models.py:3530 msgid "Minimum Stock Cost" msgstr "Minimalna vrednost zaliha" -#: part/models.py:3467 +#: part/models.py:3531 msgid "Estimated minimum cost of stock on hand" msgstr "Procenjena minimalna vrednost trenutnih zaliha" -#: part/models.py:3473 +#: part/models.py:3537 msgid "Maximum Stock Cost" msgstr "Maksimalna vrednost zaliha" -#: part/models.py:3474 +#: part/models.py:3538 msgid "Estimated maximum cost of stock on hand" msgstr "Procenjena maksimalna vrednost trenutnih zaliha" -#: part/models.py:3484 +#: part/models.py:3548 msgid "Part Sale Price Break" msgstr "Smanjenje prodajne cene dela" -#: part/models.py:3596 +#: part/models.py:3660 msgid "Part Test Template" msgstr "Šablon testa dela" -#: part/models.py:3622 +#: part/models.py:3686 msgid "Invalid template name - must include at least one alphanumeric character" msgstr "Nevažeći naziv šablona - mora da uključuje bar jedan alfanumerički karakter" -#: part/models.py:3643 part/models.py:3816 -msgid "Choices must be unique" -msgstr "Izbori moraju biti jedinstveni" - -#: part/models.py:3654 +#: part/models.py:3718 msgid "Test templates can only be created for testable parts" msgstr "Test šabloni mogu biti kreirani samo za delove koje je moguće testirati" -#: part/models.py:3668 +#: part/models.py:3732 msgid "Test template with the same key already exists for part" msgstr "Test šablon sa istim ključem već postoji za ovaj deo" -#: part/models.py:3685 +#: part/models.py:3749 msgid "Test Name" msgstr "Naziv testa" -#: part/models.py:3686 +#: part/models.py:3750 msgid "Enter a name for the test" msgstr "Unesi naziv za ovaj test" -#: part/models.py:3692 +#: part/models.py:3756 msgid "Test Key" msgstr "Test ključ" -#: part/models.py:3693 +#: part/models.py:3757 msgid "Simplified key for the test" msgstr "Pojednostavljen ključ za test" -#: part/models.py:3700 +#: part/models.py:3764 msgid "Test Description" msgstr "Opis testa" -#: part/models.py:3701 +#: part/models.py:3765 msgid "Enter description for this test" msgstr "Unesi opis za ovaj test" -#: part/models.py:3705 report/models.py:287 -msgid "Enabled" -msgstr "Omogućen" - -#: part/models.py:3705 +#: part/models.py:3769 msgid "Is this test enabled?" msgstr "Da li je ovaj test omogućen?" -#: part/models.py:3710 +#: part/models.py:3774 msgid "Required" msgstr "Neophodno" -#: part/models.py:3711 +#: part/models.py:3775 msgid "Is this test required to pass?" msgstr "Da li je neophodno da ovaj test prođe?" -#: part/models.py:3716 +#: part/models.py:3780 msgid "Requires Value" msgstr "Zahteva vrednost" -#: part/models.py:3717 +#: part/models.py:3781 msgid "Does this test require a value when adding a test result?" msgstr "Da li ovaj test zahteva vrednost prilikom dodavanja rezultata testa?" -#: part/models.py:3722 +#: part/models.py:3786 msgid "Requires Attachment" msgstr "Zahteva prilog" -#: part/models.py:3724 +#: part/models.py:3788 msgid "Does this test require a file attachment when adding a test result?" msgstr "Da li ovaj test zahteva fajl kao prilog prilikom dodavanja rezultata testa?" -#: part/models.py:3730 part/models.py:3878 -msgid "Choices" -msgstr "Izbori" - -#: part/models.py:3731 +#: part/models.py:3795 msgid "Valid choices for this test (comma-separated)" msgstr "Validni izbori za ovaj test (razdvojeni zapetom)" -#: part/models.py:3764 -msgid "Part Parameter Template" -msgstr "Šablon parametra dela" - -#: part/models.py:3791 -msgid "Checkbox parameters cannot have units" -msgstr "Checkbox parametri ne mogu imati jedinice" - -#: part/models.py:3796 -msgid "Checkbox parameters cannot have choices" -msgstr "Checkbox parametri ne mogu imati izbore" - -#: part/models.py:3833 -msgid "Parameter template name must be unique" -msgstr "Ime šablona parametra mora biti jedinstveno" - -#: part/models.py:3851 -msgid "Parameter Name" -msgstr "Naziv parametra" - -#: part/models.py:3858 -msgid "Physical units for this parameter" -msgstr "Fizičke jedinice za ovaj parametar" - -#: part/models.py:3866 -msgid "Parameter description" -msgstr "Opis parametra" - -#: part/models.py:3872 -msgid "Checkbox" -msgstr "Polje za potvrdu" - -#: part/models.py:3873 -msgid "Is this parameter a checkbox?" -msgstr "Da li je ovaj parametar checkbox?" - -#: part/models.py:3879 -msgid "Valid choices for this parameter (comma-separated)" -msgstr "Validni izbori za ovaj parametar (razdvojeni zapetom)" - -#: part/models.py:3890 -msgid "Selection list for this parameter" -msgstr "Lista izbora za ovaj parametar" - -#: part/models.py:3932 -msgid "Part Parameter" -msgstr "Parametar dela" - -#: part/models.py:3958 -msgid "Parameter cannot be modified - part is locked" -msgstr "Parametar se ne može modifikovati - deo je zaključan" - -#: part/models.py:3996 -msgid "Invalid choice for parameter value" -msgstr "Nije validan izbor za vrednost parametra" - -#: part/models.py:4047 -msgid "Parent Part" -msgstr "Nadređeni deo" - -#: part/models.py:4055 part/models.py:4170 part/models.py:4171 -msgid "Parameter Template" -msgstr "Šablon parametra" - -#: part/models.py:4061 -msgid "Parameter Value" -msgstr "Vrednost parametra" - -#: part/models.py:4071 stock/serializers.py:718 -msgid "Optional note field" -msgstr "Opciona beleška" - -#: part/models.py:4118 -msgid "Part Category Parameter Template" -msgstr "Šablon parametara kategorije dela" - -#: part/models.py:4177 -msgid "Default Value" -msgstr "Podrazumevana vrednost" - -#: part/models.py:4178 -msgid "Default Parameter Value" -msgstr "Podrazumevana vrednost parametra" - -#: part/models.py:4352 +#: part/models.py:3977 msgid "BOM item cannot be modified - assembly is locked" msgstr "Stavke sa spiska materijala se ne mogu modifikovati - sklapanje je zaključano" -#: part/models.py:4359 +#: part/models.py:3984 msgid "BOM item cannot be modified - variant assembly is locked" msgstr "Stavke sa spiska materijala se ne mogu modifikovati - sklapanje varijanti je zaključano" -#: part/models.py:4369 +#: part/models.py:3994 msgid "Select parent part" msgstr "Izaberi nadređeni deo" -#: part/models.py:4379 +#: part/models.py:4004 msgid "Sub part" msgstr "Pod-deo" -#: part/models.py:4380 +#: part/models.py:4005 msgid "Select part to be used in BOM" msgstr "Izaberi deo koji će biti korišćen u spisku materijala" -#: part/models.py:4391 +#: part/models.py:4016 msgid "BOM quantity for this BOM item" msgstr "Količina spiskova materijala za ovu stavku sa spiska materijala" -#: part/models.py:4397 +#: part/models.py:4022 msgid "This BOM item is optional" msgstr "Ova stavka sa spiska materijala je opciona" -#: part/models.py:4403 +#: part/models.py:4028 msgid "This BOM item is consumable (it is not tracked in build orders)" msgstr "Ova stavka sa spiska materijala se može potrošiti (nije praćena u nalozima za izradu)" -#: part/models.py:4411 +#: part/models.py:4036 msgid "Setup Quantity" msgstr "" -#: part/models.py:4412 +#: part/models.py:4037 msgid "Extra required quantity for a build, to account for setup losses" msgstr "" -#: part/models.py:4420 +#: part/models.py:4045 msgid "Attrition" msgstr "" -#: part/models.py:4422 +#: part/models.py:4047 msgid "Estimated attrition for a build, expressed as a percentage (0-100)" msgstr "" -#: part/models.py:4433 +#: part/models.py:4058 msgid "Rounding Multiple" msgstr "" -#: part/models.py:4435 +#: part/models.py:4060 msgid "Round up required production quantity to nearest multiple of this value" msgstr "" -#: part/models.py:4443 +#: part/models.py:4068 msgid "BOM item reference" msgstr "Referenca stavke sa spiska materijala" -#: part/models.py:4451 +#: part/models.py:4076 msgid "BOM item notes" msgstr "Beleške stavki sa spiska materijala" -#: part/models.py:4457 +#: part/models.py:4082 msgid "Checksum" msgstr "Suma" -#: part/models.py:4458 +#: part/models.py:4083 msgid "BOM line checksum" msgstr "Suma spiska materijala" -#: part/models.py:4463 +#: part/models.py:4088 msgid "Validated" msgstr "Validirano" -#: part/models.py:4464 +#: part/models.py:4089 msgid "This BOM item has been validated" msgstr "Ova stavka sa spiska materijala je validirana" -#: part/models.py:4469 +#: part/models.py:4094 msgid "Gets inherited" msgstr "Biva nasleđeno" -#: part/models.py:4470 +#: part/models.py:4095 msgid "This BOM item is inherited by BOMs for variant parts" msgstr "Ova stavka sa spiska materijala je nasleđivana od spiska materijala za varijante delova" -#: part/models.py:4476 +#: part/models.py:4101 msgid "Stock items for variant parts can be used for this BOM item" msgstr "Stavke sa zaliha za varijante delova se mogu koristiti za ovu stavku sa spiska materijala" -#: part/models.py:4583 stock/models.py:925 +#: part/models.py:4208 stock/models.py:925 msgid "Quantity must be integer value for trackable parts" msgstr "Količina mora biti ceo broj za delove koji se mogu pratiti" -#: part/models.py:4593 part/models.py:4595 +#: part/models.py:4218 part/models.py:4220 msgid "Sub part must be specified" msgstr "Zamenski deo mora biti određen" -#: part/models.py:4746 +#: part/models.py:4371 msgid "BOM Item Substitute" msgstr "Zamenska stavka sa spiska materijala" -#: part/models.py:4767 +#: part/models.py:4392 msgid "Substitute part cannot be the same as the master part" msgstr "Zamenski deo ne može biti isti kao glavni deo" -#: part/models.py:4780 +#: part/models.py:4405 msgid "Parent BOM item" msgstr "Nadređena stavka sa spiska materijala" -#: part/models.py:4788 +#: part/models.py:4413 msgid "Substitute part" msgstr "Zamenski deo" -#: part/models.py:4804 +#: part/models.py:4429 msgid "Part 1" msgstr "Deo 1" -#: part/models.py:4812 +#: part/models.py:4437 msgid "Part 2" msgstr "Deo 2" -#: part/models.py:4813 +#: part/models.py:4438 msgid "Select Related Part" msgstr "Izaberi povezan deo" -#: part/models.py:4820 +#: part/models.py:4445 msgid "Note for this relationship" msgstr "Beleška za ovu relaciju" -#: part/models.py:4839 +#: part/models.py:4464 msgid "Part relationship cannot be created between a part and itself" msgstr "Relacija između delova ne može biti kreirana između jednog istog dela" -#: part/models.py:4844 +#: part/models.py:4469 msgid "Duplicate relationship already exists" msgstr "Identična veza već postoji" -#: part/serializers.py:114 +#: part/serializers.py:113 msgid "Parent Category" msgstr "Nadređena kategorija" -#: part/serializers.py:115 +#: part/serializers.py:114 msgid "Parent part category" msgstr "Nadređena kategorija dela" -#: part/serializers.py:123 part/serializers.py:164 +#: part/serializers.py:122 part/serializers.py:163 msgid "Subcategories" msgstr "Podkategorije" -#: part/serializers.py:203 +#: part/serializers.py:202 msgid "Results" msgstr "Rezultati" -#: part/serializers.py:204 +#: part/serializers.py:203 msgid "Number of results recorded against this template" msgstr "Broj rezultata napravljenih na osnovu ovog šablona" -#: part/serializers.py:235 part/serializers.py:253 stock/serializers.py:643 +#: part/serializers.py:234 part/serializers.py:252 stock/serializers.py:643 msgid "Purchase currency of this stock item" msgstr "Valuta kupovine za ovu stavku sa zaliha" -#: part/serializers.py:280 +#: part/serializers.py:279 msgid "File is not an image" msgstr "" -#: part/serializers.py:311 -msgid "Number of parts using this template" -msgstr "Broj delova koji koriste ovaj šablon" - -#: part/serializers.py:471 +#: part/serializers.py:382 msgid "Original Part" msgstr "Originalni deo" -#: part/serializers.py:472 +#: part/serializers.py:383 msgid "Select original part to duplicate" msgstr "Izaberi originalni deo za duplikaciju" -#: part/serializers.py:477 +#: part/serializers.py:388 msgid "Copy Image" msgstr "Kopiraj sliku" -#: part/serializers.py:478 +#: part/serializers.py:389 msgid "Copy image from original part" msgstr "Kopiraj sliku sa originalnog dela" -#: part/serializers.py:484 +#: part/serializers.py:395 msgid "Copy BOM" msgstr "Kopiraj spisak materijala" -#: part/serializers.py:485 +#: part/serializers.py:396 msgid "Copy bill of materials from original part" msgstr "Kopiraj spisak materijala sa originalnog dela" -#: part/serializers.py:491 +#: part/serializers.py:402 msgid "Copy Parameters" msgstr "Kopiraj parametre" -#: part/serializers.py:492 +#: part/serializers.py:403 msgid "Copy parameter data from original part" msgstr "Kopiraj parametarske podatke sa originalnog dela" -#: part/serializers.py:498 +#: part/serializers.py:409 msgid "Copy Notes" msgstr "Kopiraj beleške" -#: part/serializers.py:499 +#: part/serializers.py:410 msgid "Copy notes from original part" msgstr "Kopiraj beleške sa originalnog dela" -#: part/serializers.py:505 +#: part/serializers.py:416 msgid "Copy Tests" msgstr "" -#: part/serializers.py:506 +#: part/serializers.py:417 msgid "Copy test templates from original part" msgstr "" -#: part/serializers.py:524 +#: part/serializers.py:435 msgid "Initial Stock Quantity" msgstr "Inicijalna količina zaliha" -#: part/serializers.py:526 +#: part/serializers.py:437 msgid "Specify initial stock quantity for this Part. If quantity is zero, no stock is added." msgstr "Odredi inicijalnu količinu zaliha za ovaj deo. Ukoliko je količina nula, neće biti dodate zalihe." -#: part/serializers.py:533 +#: part/serializers.py:444 msgid "Initial Stock Location" msgstr "Inicijalna lokacija zaliha" -#: part/serializers.py:534 +#: part/serializers.py:445 msgid "Specify initial stock location for this Part" msgstr "Odredi inicijalnu lokaciju zaliha za ovaj deo" -#: part/serializers.py:551 +#: part/serializers.py:462 msgid "Select supplier (or leave blank to skip)" msgstr "Izaberi dobavljača (ostavi prazno za preskakanje)" -#: part/serializers.py:567 +#: part/serializers.py:478 msgid "Select manufacturer (or leave blank to skip)" msgstr "Izaberi proizvođača (ostavi prazno za preskakanje)" -#: part/serializers.py:577 +#: part/serializers.py:488 msgid "Manufacturer part number" msgstr "Broj dela proizvođača" -#: part/serializers.py:584 +#: part/serializers.py:495 msgid "Selected company is not a valid supplier" msgstr "Izabrana kompanija nije validan dobavljač" -#: part/serializers.py:593 +#: part/serializers.py:504 msgid "Selected company is not a valid manufacturer" msgstr "Izabrana kompanija nije validan proizvođač" -#: part/serializers.py:604 +#: part/serializers.py:515 msgid "Manufacturer part matching this MPN already exists" msgstr "Deo proizvođača koji se poklapa sa ovim brojem dela proizvođača već postoji" -#: part/serializers.py:611 +#: part/serializers.py:522 msgid "Supplier part matching this SKU already exists" msgstr "Deo dobavljača koji se opklapa sa ovim brojem dela dobavljača već postoji" -#: part/serializers.py:914 +#: part/serializers.py:799 msgid "Category Name" msgstr "Naziv kategorije" -#: part/serializers.py:943 +#: part/serializers.py:828 msgid "Building" msgstr "Izrađivanje" -#: part/serializers.py:944 +#: part/serializers.py:829 msgid "Quantity of this part currently being in production" msgstr "" -#: part/serializers.py:951 +#: part/serializers.py:836 msgid "Outstanding quantity of this part scheduled to be built" msgstr "" -#: part/serializers.py:971 stock/serializers.py:1019 stock/serializers.py:1189 +#: part/serializers.py:856 stock/serializers.py:1019 stock/serializers.py:1189 #: users/ruleset.py:30 msgid "Stock Items" msgstr "Stavke sa zaliha" -#: part/serializers.py:975 +#: part/serializers.py:860 msgid "Revisions" msgstr "Revizije" -#: part/serializers.py:979 +#: part/serializers.py:864 msgid "Suppliers" msgstr "Dobavljači" -#: part/serializers.py:983 part/serializers.py:1297 +#: part/serializers.py:868 part/serializers.py:1162 #: templates/email/low_stock_notification.html:16 #: templates/email/part_event_notification.html:17 msgid "Total Stock" msgstr "Ukupne zalihe" -#: part/serializers.py:991 +#: part/serializers.py:876 msgid "Unallocated Stock" msgstr "Nealocirane zalihe" -#: part/serializers.py:999 +#: part/serializers.py:884 msgid "Variant Stock" msgstr "Varijante zaliha" -#: part/serializers.py:1054 +#: part/serializers.py:943 msgid "Duplicate Part" msgstr "Dupliraj deo" -#: part/serializers.py:1055 +#: part/serializers.py:944 msgid "Copy initial data from another Part" msgstr "Kopiraj inicijalne podatke od drugog dela" -#: part/serializers.py:1061 +#: part/serializers.py:950 msgid "Initial Stock" msgstr "Početne zalihe" -#: part/serializers.py:1062 +#: part/serializers.py:951 msgid "Create Part with initial stock quantity" msgstr "Kreiraj deo sa početnom količinom zaliha" -#: part/serializers.py:1068 +#: part/serializers.py:957 msgid "Supplier Information" msgstr "Informacije o dobavljaču" -#: part/serializers.py:1069 +#: part/serializers.py:958 msgid "Add initial supplier information for this part" msgstr "Dodaj inicijalne informacije o dobavljaču za ovaj deo" -#: part/serializers.py:1077 +#: part/serializers.py:966 msgid "Copy Category Parameters" msgstr "Kopiraj parametre kategorije" -#: part/serializers.py:1078 +#: part/serializers.py:967 msgid "Copy parameter templates from selected part category" msgstr "Kopiraj parametarske šablone sa izabrane kategorije dela" -#: part/serializers.py:1083 +#: part/serializers.py:972 msgid "Existing Image" msgstr "Postojeća slika" -#: part/serializers.py:1084 +#: part/serializers.py:973 msgid "Filename of an existing part image" msgstr "Ime fajla postojeće slike dela" -#: part/serializers.py:1101 +#: part/serializers.py:990 msgid "Image file does not exist" msgstr "Fajl sa slikom ne postoji" -#: part/serializers.py:1269 +#: part/serializers.py:1134 msgid "Validate entire Bill of Materials" msgstr "Validiraj ceo spisak materijala" -#: part/serializers.py:1303 part/serializers.py:1769 +#: part/serializers.py:1168 part/serializers.py:1634 msgid "Can Build" msgstr "Može se izgraditi" -#: part/serializers.py:1320 +#: part/serializers.py:1185 msgid "Required for Build Orders" msgstr "" -#: part/serializers.py:1325 +#: part/serializers.py:1190 msgid "Allocated to Build Orders" msgstr "" -#: part/serializers.py:1332 +#: part/serializers.py:1197 msgid "Required for Sales Orders" msgstr "" -#: part/serializers.py:1336 +#: part/serializers.py:1201 msgid "Allocated to Sales Orders" msgstr "" -#: part/serializers.py:1475 +#: part/serializers.py:1340 msgid "Minimum Price" msgstr "Minimalna cena" -#: part/serializers.py:1476 +#: part/serializers.py:1341 msgid "Override calculated value for minimum price" msgstr "Izmeni izračunatu vrednost za minimalnu cenu" -#: part/serializers.py:1483 +#: part/serializers.py:1348 msgid "Minimum price currency" msgstr "Minimalna valuta cene" -#: part/serializers.py:1490 +#: part/serializers.py:1355 msgid "Maximum Price" msgstr "Maksimalna cena" -#: part/serializers.py:1491 +#: part/serializers.py:1356 msgid "Override calculated value for maximum price" msgstr "Izmeni izračunatu vrednost maksimalne cene" -#: part/serializers.py:1498 +#: part/serializers.py:1363 msgid "Maximum price currency" msgstr "Maksimalna valuta cene" -#: part/serializers.py:1527 +#: part/serializers.py:1392 msgid "Update" msgstr "Ažuriraj" -#: part/serializers.py:1528 +#: part/serializers.py:1393 msgid "Update pricing for this part" msgstr "Ažuriraj cene za ovaj deo" -#: part/serializers.py:1551 +#: part/serializers.py:1416 #, python-brace-format msgid "Could not convert from provided currencies to {default_currency}" msgstr "Nija moguća konverzija iz dostavljen valute u {default_currency}" -#: part/serializers.py:1558 +#: part/serializers.py:1423 msgid "Minimum price must not be greater than maximum price" msgstr "Minimalna cena ne sme biti veća od maksimalne cene" -#: part/serializers.py:1561 +#: part/serializers.py:1426 msgid "Maximum price must not be less than minimum price" msgstr "Maksimalna cena ne sme biti manja od minimalne cene" -#: part/serializers.py:1715 +#: part/serializers.py:1580 msgid "Select the parent assembly" msgstr "Izaberi nadređeni sklop" -#: part/serializers.py:1735 +#: part/serializers.py:1600 msgid "Select the component part" msgstr "Izaberi komponentu dela" -#: part/serializers.py:1929 +#: part/serializers.py:1802 msgid "Select part to copy BOM from" msgstr "Izaberi deo sa kog će se kopirati spisak materijala" -#: part/serializers.py:1937 +#: part/serializers.py:1810 msgid "Remove Existing Data" msgstr "Ukloni postojeće podatke" -#: part/serializers.py:1938 +#: part/serializers.py:1811 msgid "Remove existing BOM items before copying" msgstr "Ukloni postojeće stavke sa spiska materijala pre kopiranja" -#: part/serializers.py:1943 +#: part/serializers.py:1816 msgid "Include Inherited" msgstr "Uključi nasleđeno" -#: part/serializers.py:1944 +#: part/serializers.py:1817 msgid "Include BOM items which are inherited from templated parts" msgstr "Uključi stavke sa spiska materijala koje su nasleđene od šablonskih delova" -#: part/serializers.py:1949 +#: part/serializers.py:1822 msgid "Skip Invalid Rows" msgstr "Preskoči nevažeće vrste" -#: part/serializers.py:1950 +#: part/serializers.py:1823 msgid "Enable this option to skip invalid rows" msgstr "Omogući ovu opciju za preskakanje nevažećih vrsta" -#: part/serializers.py:1955 +#: part/serializers.py:1828 msgid "Copy Substitute Parts" msgstr "Kopiraj zamenske delove" -#: part/serializers.py:1956 +#: part/serializers.py:1829 msgid "Copy substitute parts when duplicate BOM items" msgstr "Kopiraj zamenske delove prilikom duplikacije stavki sa spiska materijala" @@ -6927,7 +6974,7 @@ msgstr "Pruža ugrađenu podršku za bar kodove" #: plugin/builtin/events/auto_issue_orders.py:19 #: plugin/builtin/exporter/bom_exporter.py:73 #: plugin/builtin/exporter/inventree_exporter.py:17 -#: plugin/builtin/exporter/part_parameter_exporter.py:36 +#: plugin/builtin/exporter/parameter_exporter.py:32 #: plugin/builtin/exporter/stocktake_exporter.py:47 #: plugin/builtin/integration/core_notifications.py:25 #: plugin/builtin/integration/core_notifications.py:69 @@ -7041,23 +7088,19 @@ msgid "Include total quantity of each part in the BOM" msgstr "" #: plugin/builtin/exporter/bom_exporter.py:35 -#: plugin/builtin/exporter/part_parameter_exporter.py:17 msgid "Stock Data" msgstr "" #: plugin/builtin/exporter/bom_exporter.py:35 -#: plugin/builtin/exporter/part_parameter_exporter.py:17 msgid "Include part stock data" msgstr "" #: plugin/builtin/exporter/bom_exporter.py:39 -#: plugin/builtin/exporter/part_parameter_exporter.py:21 #: plugin/builtin/exporter/stocktake_exporter.py:20 msgid "Pricing Data" msgstr "" #: plugin/builtin/exporter/bom_exporter.py:39 -#: plugin/builtin/exporter/part_parameter_exporter.py:21 #: plugin/builtin/exporter/stocktake_exporter.py:20 msgid "Include part pricing data" msgstr "" @@ -7144,12 +7187,20 @@ msgstr "" msgid "Provides support for exporting data from InvenTree" msgstr "" -#: plugin/builtin/exporter/part_parameter_exporter.py:33 -msgid "Part Parameter Exporter" +#: plugin/builtin/exporter/parameter_exporter.py:16 +msgid "Exclude Inactive" msgstr "" -#: plugin/builtin/exporter/part_parameter_exporter.py:34 -msgid "Exporter for part parameter data" +#: plugin/builtin/exporter/parameter_exporter.py:17 +msgid "Exclude parameters which are inactive" +msgstr "" + +#: plugin/builtin/exporter/parameter_exporter.py:29 +msgid "Parameter Exporter" +msgstr "" + +#: plugin/builtin/exporter/parameter_exporter.py:30 +msgid "Exporter for model parameter data" msgstr "" #: plugin/builtin/exporter/stocktake_exporter.py:25 @@ -8079,19 +8130,19 @@ msgstr "Nema rezultata (neophodno)" msgid "No result" msgstr "Nema rezultata" -#: report/templatetags/report.py:167 +#: report/templatetags/report.py:169 msgid "Asset file does not exist" msgstr "Fajl ne postoji" -#: report/templatetags/report.py:224 report/templatetags/report.py:300 +#: report/templatetags/report.py:226 report/templatetags/report.py:302 msgid "Image file not found" msgstr "Slika nije pronađena" -#: report/templatetags/report.py:325 +#: report/templatetags/report.py:327 msgid "part_image tag requires a Part instance" msgstr "part_image tag zahteva instancu dela" -#: report/templatetags/report.py:362 +#: report/templatetags/report.py:383 msgid "company_image tag requires a Company instance" msgstr "company_image tag zahteva instancu kompanije" @@ -8455,115 +8506,119 @@ msgstr "Serijski brojevi moraju biti dostavljeni kao lista" msgid "Quantity does not match serial numbers" msgstr "Količine se ne poklapaju sa serijskim brojevima" -#: stock/models.py:2012 stock/models.py:2917 +#: stock/models.py:1912 +msgid "Cannot assign stock to structural location" +msgstr "" + +#: stock/models.py:2029 stock/models.py:2934 msgid "Test template does not exist" msgstr "Test šablon ne postoji" -#: stock/models.py:2030 +#: stock/models.py:2047 msgid "Stock item has been assigned to a sales order" msgstr "Stavka sa zaliha je dodeljena nalogu za prodaju" -#: stock/models.py:2034 +#: stock/models.py:2051 msgid "Stock item is installed in another item" msgstr "Stavka sa zaliha je instalirana u drugu stavku" -#: stock/models.py:2037 +#: stock/models.py:2054 msgid "Stock item contains other items" msgstr "Stavka sa zaliha sadrži druge stavke" -#: stock/models.py:2040 +#: stock/models.py:2057 msgid "Stock item has been assigned to a customer" msgstr "Stavka sa zaliha je dodeljena mušteriji" -#: stock/models.py:2043 stock/models.py:2226 +#: stock/models.py:2060 stock/models.py:2243 msgid "Stock item is currently in production" msgstr "Stavka sa zaliha je trenutno u produkciji" -#: stock/models.py:2046 +#: stock/models.py:2063 msgid "Serialized stock cannot be merged" msgstr "Serijalizovane zalihe se ne mogu spojiti" -#: stock/models.py:2053 stock/serializers.py:1462 +#: stock/models.py:2070 stock/serializers.py:1462 msgid "Duplicate stock items" msgstr "Dupliraj stavke sa zaliha" -#: stock/models.py:2057 +#: stock/models.py:2074 msgid "Stock items must refer to the same part" msgstr "Stavke sa zaliha se moraju odnositi na isti deo" -#: stock/models.py:2065 +#: stock/models.py:2082 msgid "Stock items must refer to the same supplier part" msgstr "Stavke sa zaliha se moraju odnositi na isti deo dobavljača" -#: stock/models.py:2070 +#: stock/models.py:2087 msgid "Stock status codes must match" msgstr "Statusne šifre zaliha moraju da se poklapaju" -#: stock/models.py:2349 +#: stock/models.py:2366 msgid "StockItem cannot be moved as it is not in stock" msgstr "Stavka se ne može pomeriti jer nije na zalihama" -#: stock/models.py:2818 +#: stock/models.py:2835 msgid "Stock Item Tracking" msgstr "Praćenje stavke sa zaliha" -#: stock/models.py:2849 +#: stock/models.py:2866 msgid "Entry notes" msgstr "Ulazne beleške" -#: stock/models.py:2889 +#: stock/models.py:2906 msgid "Stock Item Test Result" msgstr "Rezultat testa stavke sa zaliha" -#: stock/models.py:2920 +#: stock/models.py:2937 msgid "Value must be provided for this test" msgstr "Vrednost mora biti dostavljena za ovaj test" -#: stock/models.py:2924 +#: stock/models.py:2941 msgid "Attachment must be uploaded for this test" msgstr "Prilog mora biti dostavljen za ovaj test" -#: stock/models.py:2929 +#: stock/models.py:2946 msgid "Invalid value for this test" msgstr "Nevažeća vrednost za ovaj test" -#: stock/models.py:2953 +#: stock/models.py:2970 msgid "Test result" msgstr "Rezultat testa" -#: stock/models.py:2960 +#: stock/models.py:2977 msgid "Test output value" msgstr "Vrednost završetka testa" -#: stock/models.py:2968 stock/serializers.py:248 +#: stock/models.py:2985 stock/serializers.py:248 msgid "Test result attachment" msgstr "Prilog uz test rezultat" -#: stock/models.py:2972 +#: stock/models.py:2989 msgid "Test notes" msgstr "Beleške sa testa" -#: stock/models.py:2980 +#: stock/models.py:2997 msgid "Test station" msgstr "Stanica za testiranje" -#: stock/models.py:2981 +#: stock/models.py:2998 msgid "The identifier of the test station where the test was performed" msgstr "Identifikator stanice za testiranje gde je test izvršen" -#: stock/models.py:2987 +#: stock/models.py:3004 msgid "Started" msgstr "Započeto" -#: stock/models.py:2988 +#: stock/models.py:3005 msgid "The timestamp of the test start" msgstr "Vreme početka testa" -#: stock/models.py:2994 +#: stock/models.py:3011 msgid "Finished" msgstr "Završeno" -#: stock/models.py:2995 +#: stock/models.py:3012 msgid "The timestamp of the test finish" msgstr "Vreme završetka testa" @@ -8677,8 +8732,8 @@ msgstr "" msgid "Quantity must not exceed available stock quantity ({q})" msgstr "Količina ne sme da pređe dostupnu količinu zaliha ({q})" -#: stock/serializers.py:711 stock/serializers.py:1419 stock/serializers.py:1732 -#: stock/serializers.py:1781 +#: stock/serializers.py:711 stock/serializers.py:1419 stock/serializers.py:1740 +#: stock/serializers.py:1789 msgid "Destination stock location" msgstr "Odredišna lokacija zaliha" @@ -8834,19 +8889,19 @@ msgstr "" msgid "Stock transaction notes" msgstr "Beleške transakcija zaliha" -#: stock/serializers.py:1787 +#: stock/serializers.py:1795 msgid "Merge into existing stock" msgstr "" -#: stock/serializers.py:1788 +#: stock/serializers.py:1796 msgid "Merge returned items into existing stock items if possible" msgstr "" -#: stock/serializers.py:1831 +#: stock/serializers.py:1839 msgid "Next Serial Number" msgstr "" -#: stock/serializers.py:1837 +#: stock/serializers.py:1845 msgid "Previous Serial Number" msgstr "" @@ -8902,83 +8957,87 @@ msgstr "Zalihe dodane ručno" msgid "Stock manually removed" msgstr "Zaliha ručno uklonjena" -#: stock/status_codes.py:57 +#: stock/status_codes.py:56 +msgid "Serialized stock items" +msgstr "" + +#: stock/status_codes.py:58 msgid "Returned to stock" msgstr "" -#: stock/status_codes.py:60 +#: stock/status_codes.py:61 msgid "Location changed" msgstr "Lokacija promenjena" -#: stock/status_codes.py:61 +#: stock/status_codes.py:62 msgid "Stock updated" msgstr "Zaliha obnovljena" -#: stock/status_codes.py:64 +#: stock/status_codes.py:65 msgid "Installed into assembly" msgstr "Instalisan u sklopu" -#: stock/status_codes.py:65 +#: stock/status_codes.py:66 msgid "Removed from assembly" msgstr "Skinuto sa sklopa" -#: stock/status_codes.py:67 +#: stock/status_codes.py:68 msgid "Installed component item" msgstr "Instalirana stavka komponente" -#: stock/status_codes.py:68 +#: stock/status_codes.py:69 msgid "Removed component item" msgstr "Uklonjena stavka komponente" -#: stock/status_codes.py:71 +#: stock/status_codes.py:72 msgid "Split from parent item" msgstr "Odvoj od nadređene stavke" -#: stock/status_codes.py:72 +#: stock/status_codes.py:73 msgid "Split child item" msgstr "Podeli podređenu stavku" -#: stock/status_codes.py:75 +#: stock/status_codes.py:76 msgid "Merged stock items" msgstr "Spojene stavke zaliha" -#: stock/status_codes.py:78 +#: stock/status_codes.py:79 msgid "Converted to variant" msgstr "Pretvoreno u varijaciju" -#: stock/status_codes.py:81 +#: stock/status_codes.py:82 msgid "Build order output created" msgstr "Započeta obrada naloga za izradu" -#: stock/status_codes.py:82 +#: stock/status_codes.py:83 msgid "Build order output completed" msgstr "Završena obrada naloga za izradu" -#: stock/status_codes.py:83 +#: stock/status_codes.py:84 msgid "Build order output rejected" msgstr "Odbijen rezultat naloga za izradu" -#: stock/status_codes.py:84 +#: stock/status_codes.py:85 msgid "Consumed by build order" msgstr "Potrošeno od strane nalga za izradu" -#: stock/status_codes.py:87 +#: stock/status_codes.py:88 msgid "Shipped against Sales Order" msgstr "Isporučeno prema nalogu za prodaju" -#: stock/status_codes.py:90 +#: stock/status_codes.py:91 msgid "Received against Purchase Order" msgstr "Primljeno prema nalogu za kupovinu" -#: stock/status_codes.py:93 +#: stock/status_codes.py:94 msgid "Returned against Return Order" msgstr "Vraćeno prema nalogu za vraćanje" -#: stock/status_codes.py:96 +#: stock/status_codes.py:97 msgid "Sent to customer" msgstr "Poslato mušteriji" -#: stock/status_codes.py:97 +#: stock/status_codes.py:98 msgid "Returned from customer" msgstr "Vratila mušterija" diff --git a/src/backend/InvenTree/locale/sv/LC_MESSAGES/django.po b/src/backend/InvenTree/locale/sv/LC_MESSAGES/django.po index 7fb7ad2501..e57736a24b 100644 --- a/src/backend/InvenTree/locale/sv/LC_MESSAGES/django.po +++ b/src/backend/InvenTree/locale/sv/LC_MESSAGES/django.po @@ -2,8 +2,8 @@ msgid "" msgstr "" "Project-Id-Version: inventree\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-11-19 04:55+0000\n" -"PO-Revision-Date: 2025-11-19 04:59\n" +"POT-Creation-Date: 2025-12-07 07:33+0000\n" +"PO-Revision-Date: 2025-12-07 07:36\n" "Last-Translator: \n" "Language-Team: Swedish\n" "Language: sv_SE\n" @@ -57,7 +57,7 @@ msgstr "" msgid "This field must be unique." msgstr "" -#: InvenTree/api.py:775 +#: InvenTree/api.py:803 msgid "User does not have permission to view this model" msgstr "Användaren har inte behörighet att se denna modell" @@ -81,22 +81,22 @@ msgstr "Den angivna primära e-postadressen är inte giltig." msgid "The provided email domain is not approved." msgstr "Den angivna e-postdomänen är inte godkänd." -#: InvenTree/conversion.py:166 +#: InvenTree/conversion.py:240 #, python-brace-format msgid "Invalid unit provided ({unit})" msgstr "Ogiltig enhet angiven ({unit})" -#: InvenTree/conversion.py:183 +#: InvenTree/conversion.py:257 msgid "No value provided" msgstr "Inget värde angivet" -#: InvenTree/conversion.py:210 +#: InvenTree/conversion.py:284 #, python-brace-format msgid "Could not convert {original} to {unit}" msgstr "Kunde inte konvertera {original} till {unit}" -#: InvenTree/conversion.py:212 InvenTree/conversion.py:226 -#: InvenTree/helpers.py:597 order/models.py:720 order/models.py:1015 +#: InvenTree/conversion.py:286 InvenTree/conversion.py:300 +#: InvenTree/helpers.py:597 order/models.py:721 order/models.py:1016 msgid "Invalid quantity provided" msgstr "Ogiltigt antal angivet" @@ -112,11 +112,11 @@ msgstr "Ange datum" msgid "Invalid decimal value" msgstr "" -#: InvenTree/fields.py:218 InvenTree/models.py:1067 build/serializers.py:509 -#: build/serializers.py:580 build/serializers.py:1788 company/models.py:857 -#: order/models.py:1780 +#: InvenTree/fields.py:218 InvenTree/models.py:1228 build/serializers.py:517 +#: build/serializers.py:588 build/serializers.py:1796 company/models.py:811 +#: order/models.py:1781 #: report/templates/report/inventree_build_order_report.html:172 -#: stock/models.py:2848 stock/models.py:2972 stock/serializers.py:717 +#: stock/models.py:2865 stock/models.py:2989 stock/serializers.py:717 #: stock/serializers.py:893 stock/serializers.py:1035 stock/serializers.py:1336 #: stock/serializers.py:1425 stock/serializers.py:1624 msgid "Notes" @@ -171,35 +171,35 @@ msgstr "Ta bort HTML-taggar från detta värde" msgid "Data contains prohibited markdown content" msgstr "" -#: InvenTree/helpers_model.py:133 +#: InvenTree/helpers_model.py:134 msgid "Connection error" msgstr "Anslutningsfel" -#: InvenTree/helpers_model.py:138 InvenTree/helpers_model.py:145 +#: InvenTree/helpers_model.py:139 InvenTree/helpers_model.py:146 msgid "Server responded with invalid status code" msgstr "Servern svarade med ogiltig statuskod" -#: InvenTree/helpers_model.py:141 +#: InvenTree/helpers_model.py:142 msgid "Exception occurred" msgstr "Undantag inträffade" -#: InvenTree/helpers_model.py:151 +#: InvenTree/helpers_model.py:152 msgid "Server responded with invalid Content-Length value" msgstr "Servern svarade med ogiltigt innehållslängdsvärde" -#: InvenTree/helpers_model.py:154 +#: InvenTree/helpers_model.py:155 msgid "Image size is too large" msgstr "Bilden är för stor" -#: InvenTree/helpers_model.py:166 +#: InvenTree/helpers_model.py:167 msgid "Image download exceeded maximum size" msgstr "Nedladdning av bilder överskred maximal storlek" -#: InvenTree/helpers_model.py:171 +#: InvenTree/helpers_model.py:172 msgid "Remote server returned empty response" msgstr "Fjärrservern returnerade tomt svar" -#: InvenTree/helpers_model.py:179 +#: InvenTree/helpers_model.py:180 msgid "Supplied URL is not a valid image file" msgstr "Angiven URL är inte en giltig bildfil" @@ -207,7 +207,7 @@ msgstr "Angiven URL är inte en giltig bildfil" msgid "Log in to the app" msgstr "Logga in på appen" -#: InvenTree/magic_login.py:41 company/models.py:172 users/serializers.py:198 +#: InvenTree/magic_login.py:41 company/models.py:173 users/serializers.py:198 msgid "Email" msgstr "E-postadress" @@ -215,160 +215,176 @@ msgstr "E-postadress" msgid "You must enable two-factor authentication before doing anything else." msgstr "Du måste aktivera tvåfaktorsautentisering innan du kan göra något annat." -#: InvenTree/models.py:111 +#: InvenTree/models.py:114 msgid "Error running plugin validation" msgstr "Fel vid validering av plugin" -#: InvenTree/models.py:192 +#: InvenTree/models.py:195 msgid "Metadata must be a python dict object" msgstr "Metadata måste vara ett python dict objekt" -#: InvenTree/models.py:198 +#: InvenTree/models.py:201 msgid "Plugin Metadata" msgstr "Metadata för plugin" -#: InvenTree/models.py:199 +#: InvenTree/models.py:202 msgid "JSON metadata field, for use by external plugins" msgstr "JSON metadata fält, för användning av externa plugins" -#: InvenTree/models.py:382 +#: InvenTree/models.py:385 msgid "Improperly formatted pattern" msgstr "Felaktigt formaterat mönster" -#: InvenTree/models.py:389 +#: InvenTree/models.py:392 msgid "Unknown format key specified" msgstr "Okänd formatnyckel angiven" -#: InvenTree/models.py:395 +#: InvenTree/models.py:398 msgid "Missing required format key" msgstr "Obligatorisk formatnyckel saknas" -#: InvenTree/models.py:406 +#: InvenTree/models.py:409 msgid "Reference field cannot be empty" msgstr "Textfältet kan inte lämnas tomt" -#: InvenTree/models.py:414 +#: InvenTree/models.py:417 msgid "Reference must match required pattern" msgstr "Referensen måste matcha obligatoriskt mönster" -#: InvenTree/models.py:445 +#: InvenTree/models.py:448 msgid "Reference number is too large" msgstr "Referensnumret är för stort" -#: InvenTree/models.py:743 +#: InvenTree/models.py:896 msgid "Invalid choice" msgstr "Ogiltigt val" -#: InvenTree/models.py:856 common/models.py:1410 common/models.py:1837 -#: common/models.py:2096 common/models.py:2221 common/serializers.py:535 -#: company/models.py:615 generic/states/serializers.py:20 machine/models.py:25 -#: part/models.py:1039 part/models.py:3850 plugin/models.py:54 +#: InvenTree/models.py:1017 common/models.py:1414 common/models.py:1841 +#: common/models.py:2102 common/models.py:2227 common/models.py:2494 +#: common/serializers.py:539 generic/states/serializers.py:20 +#: machine/models.py:25 part/models.py:1127 plugin/models.py:54 #: report/models.py:216 stock/models.py:84 msgid "Name" msgstr "Namn" -#: InvenTree/models.py:862 build/models.py:252 common/models.py:171 -#: common/models.py:2228 common/models.py:2341 company/models.py:543 -#: company/models.py:848 order/models.py:442 order/models.py:1825 -#: part/models.py:1062 part/models.py:3865 report/models.py:222 +#: InvenTree/models.py:1023 build/models.py:253 common/models.py:175 +#: common/models.py:2234 common/models.py:2347 common/models.py:2509 +#: company/models.py:545 company/models.py:802 order/models.py:443 +#: order/models.py:1826 part/models.py:1150 report/models.py:222 #: report/models.py:815 report/models.py:841 #: report/templates/report/inventree_build_order_report.html:117 #: stock/models.py:90 msgid "Description" msgstr "Beskrivning" -#: InvenTree/models.py:863 stock/models.py:91 +#: InvenTree/models.py:1024 stock/models.py:91 msgid "Description (optional)" msgstr "Beskrivning (valfritt)" -#: InvenTree/models.py:878 common/models.py:2394 +#: InvenTree/models.py:1039 common/models.py:2815 msgid "Path" msgstr "Sökväg" -#: InvenTree/models.py:983 +#: InvenTree/models.py:1144 msgid "Duplicate names cannot exist under the same parent" msgstr "" -#: InvenTree/models.py:1067 +#: InvenTree/models.py:1228 msgid "Markdown notes (optional)" msgstr "Markdown anteckningar (valfritt)" -#: InvenTree/models.py:1098 +#: InvenTree/models.py:1259 msgid "Barcode Data" msgstr "Streckkodsdata" -#: InvenTree/models.py:1099 +#: InvenTree/models.py:1260 msgid "Third party barcode data" msgstr "Tredje parts streckkodsdata" -#: InvenTree/models.py:1105 +#: InvenTree/models.py:1266 msgid "Barcode Hash" msgstr "Streckkodsdata" -#: InvenTree/models.py:1106 +#: InvenTree/models.py:1267 msgid "Unique hash of barcode data" msgstr "Unik hash med streckkodsdata" -#: InvenTree/models.py:1187 +#: InvenTree/models.py:1348 msgid "Existing barcode found" msgstr "Befintlig streckkod hittades" -#: InvenTree/models.py:1269 +#: InvenTree/models.py:1430 msgid "Task Failure" msgstr "" -#: InvenTree/models.py:1270 +#: InvenTree/models.py:1431 #, python-brace-format msgid "Background worker task '{f}' failed after {n} attempts" msgstr "" -#: InvenTree/models.py:1297 +#: InvenTree/models.py:1458 msgid "Server Error" msgstr "Serverfel" -#: InvenTree/models.py:1298 +#: InvenTree/models.py:1459 msgid "An error has been logged by the server." msgstr "Ett fel har loggats av servern." -#: InvenTree/models.py:1340 common/models.py:1748 +#: InvenTree/models.py:1501 common/models.py:1752 #: report/templates/report/inventree_bill_of_materials_report.html:126 #: report/templates/report/inventree_bill_of_materials_report.html:148 #: report/templates/report/inventree_return_order_report.html:35 msgid "Image" msgstr "Bild" -#: InvenTree/serializers.py:253 part/models.py:4571 +#: InvenTree/serializers.py:255 part/models.py:4196 msgid "Must be a valid number" msgstr "Måste vara ett giltigt nummer" -#: InvenTree/serializers.py:295 company/models.py:214 part/models.py:3285 +#: InvenTree/serializers.py:297 company/models.py:215 part/models.py:3349 msgid "Currency" msgstr "Valuta" -#: InvenTree/serializers.py:298 part/serializers.py:1385 +#: InvenTree/serializers.py:300 part/serializers.py:1250 msgid "Select currency from available options" msgstr "Välj valuta från tillgängliga alternativ" -#: InvenTree/serializers.py:653 +#: InvenTree/serializers.py:654 +msgid "This field may not be null." +msgstr "" + +#: InvenTree/serializers.py:660 msgid "Invalid value" msgstr "Ogiltigt värde" -#: InvenTree/serializers.py:690 +#: InvenTree/serializers.py:697 msgid "Remote Image" msgstr "Fjärransluten bild" -#: InvenTree/serializers.py:691 +#: InvenTree/serializers.py:698 msgid "URL of remote image file" msgstr "URL för fjärrbildsfil" -#: InvenTree/serializers.py:709 +#: InvenTree/serializers.py:716 msgid "Downloading images from remote URL is not enabled" msgstr "Nedladdning av bilder från fjärr-URL är inte aktiverad" -#: InvenTree/serializers.py:716 +#: InvenTree/serializers.py:723 msgid "Failed to download image from remote URL" msgstr "" +#: InvenTree/serializers.py:806 +msgid "Invalid content type format" +msgstr "" + +#: InvenTree/serializers.py:809 +msgid "Content type not found" +msgstr "" + +#: InvenTree/serializers.py:815 +msgid "Content type does not match required mixin class" +msgstr "" + #: InvenTree/setting/locales.py:20 msgid "Arabic" msgstr "Arabiska" @@ -537,30 +553,30 @@ msgstr "Ogiltig fysisk enhet" msgid "Not a valid currency code" msgstr "Inte en giltig valutakod" -#: build/api.py:54 order/api.py:111 order/api.py:270 order/api.py:1373 -#: order/serializers.py:132 +#: build/api.py:54 order/api.py:116 order/api.py:275 order/api.py:1378 +#: order/serializers.py:133 msgid "Order Status" msgstr "Orderstatus" -#: build/api.py:80 build/models.py:264 +#: build/api.py:80 build/models.py:265 msgid "Parent Build" msgstr "Föregående tillverkning" -#: build/api.py:84 build/api.py:831 order/api.py:547 order/api.py:770 -#: order/api.py:1174 order/api.py:1449 stock/api.py:573 +#: build/api.py:84 build/api.py:837 order/api.py:553 order/api.py:776 +#: order/api.py:1179 order/api.py:1454 stock/api.py:573 msgid "Include Variants" msgstr "Inkludera varianter" -#: build/api.py:100 build/api.py:466 build/api.py:845 build/models.py:270 -#: build/serializers.py:1225 build/serializers.py:1356 -#: build/serializers.py:1427 company/models.py:1067 company/serializers.py:445 -#: order/api.py:298 order/api.py:302 order/api.py:929 order/api.py:1187 -#: order/api.py:1190 order/models.py:1941 order/models.py:2108 -#: order/models.py:2109 part/api.py:1233 part/api.py:1236 part/api.py:1302 -#: part/api.py:1589 part/models.py:472 part/models.py:3296 part/models.py:3439 -#: part/models.py:3497 part/models.py:3518 part/models.py:3540 -#: part/models.py:3679 part/models.py:4046 part/models.py:4368 -#: part/models.py:4787 part/serializers.py:1928 +#: build/api.py:100 build/api.py:472 build/api.py:851 build/models.py:271 +#: build/serializers.py:1233 build/serializers.py:1364 +#: build/serializers.py:1435 company/models.py:1021 company/serializers.py:490 +#: order/api.py:303 order/api.py:307 order/api.py:934 order/api.py:1192 +#: order/api.py:1195 order/models.py:1942 order/models.py:2109 +#: order/models.py:2110 part/api.py:1160 part/api.py:1163 part/api.py:1314 +#: part/models.py:550 part/models.py:3360 part/models.py:3503 +#: part/models.py:3561 part/models.py:3582 part/models.py:3604 +#: part/models.py:3743 part/models.py:3993 part/models.py:4412 +#: part/serializers.py:1801 #: report/templates/report/inventree_bill_of_materials_report.html:110 #: report/templates/report/inventree_bill_of_materials_report.html:137 #: report/templates/report/inventree_build_order_report.html:109 @@ -580,9 +596,9 @@ msgstr "Inkludera varianter" msgid "Part" msgstr "Del" -#: build/api.py:120 build/api.py:123 build/serializers.py:1438 part/api.py:980 -#: part/api.py:1316 part/api.py:1600 part/models.py:1080 part/models.py:3568 -#: part/models.py:4162 part/serializers.py:1752 stock/api.py:869 +#: build/api.py:120 build/api.py:123 build/serializers.py:1446 part/api.py:975 +#: part/api.py:1325 part/models.py:435 part/models.py:1168 part/models.py:3632 +#: part/serializers.py:1617 stock/api.py:869 msgid "Category" msgstr "Kategori" @@ -590,7 +606,7 @@ msgstr "Kategori" msgid "Ancestor Build" msgstr "" -#: build/api.py:152 order/api.py:129 +#: build/api.py:152 order/api.py:134 msgid "Assigned to me" msgstr "" @@ -638,134 +654,134 @@ msgstr "" msgid "Completed after" msgstr "" -#: build/api.py:249 order/api.py:226 +#: build/api.py:249 order/api.py:231 msgid "Min Date" msgstr "" -#: build/api.py:272 order/api.py:245 +#: build/api.py:272 order/api.py:250 msgid "Max Date" msgstr "" -#: build/api.py:297 build/api.py:300 part/api.py:217 stock/api.py:961 +#: build/api.py:297 build/api.py:300 part/api.py:212 stock/api.py:961 msgid "Exclude Tree" msgstr "" -#: build/api.py:405 +#: build/api.py:411 msgid "Build must be cancelled before it can be deleted" msgstr "Tillverkningen måste avbrytas innan den kan tas bort" -#: build/api.py:449 build/serializers.py:1374 part/models.py:4402 +#: build/api.py:455 build/serializers.py:1382 part/models.py:4027 msgid "Consumable" msgstr "" -#: build/api.py:452 build/serializers.py:1377 part/models.py:4396 +#: build/api.py:458 build/serializers.py:1385 part/models.py:4021 msgid "Optional" msgstr "Valfri" -#: build/api.py:455 build/serializers.py:1415 common/setting/system.py:456 -#: part/models.py:1202 part/serializers.py:1714 part/serializers.py:1725 +#: build/api.py:461 build/serializers.py:1423 common/setting/system.py:456 +#: part/models.py:1290 part/serializers.py:1579 part/serializers.py:1590 #: stock/api.py:639 msgid "Assembly" msgstr "" -#: build/api.py:458 +#: build/api.py:464 msgid "Tracked" msgstr "Spårad" -#: build/api.py:461 build/serializers.py:1380 part/models.py:1220 +#: build/api.py:467 build/serializers.py:1388 part/models.py:1308 msgid "Testable" msgstr "Testbar" -#: build/api.py:471 order/api.py:993 order/api.py:1363 +#: build/api.py:477 order/api.py:998 order/api.py:1368 msgid "Order Outstanding" msgstr "" -#: build/api.py:481 build/serializers.py:1464 order/api.py:952 +#: build/api.py:487 build/serializers.py:1472 order/api.py:957 msgid "Allocated" msgstr "Allokerad" -#: build/api.py:490 build/models.py:1672 build/serializers.py:1393 +#: build/api.py:496 build/models.py:1673 build/serializers.py:1401 msgid "Consumed" msgstr "Konsumerad" -#: build/api.py:499 company/models.py:912 company/serializers.py:440 +#: build/api.py:505 company/models.py:866 company/serializers.py:467 #: templates/email/build_order_required_stock.html:19 #: templates/email/low_stock_notification.html:17 #: templates/email/part_event_notification.html:18 msgid "Available" msgstr "Tillgänglig" -#: build/api.py:523 build/serializers.py:1466 company/serializers.py:437 -#: order/serializers.py:1281 part/serializers.py:959 part/serializers.py:1306 -#: part/serializers.py:1761 +#: build/api.py:529 build/serializers.py:1474 company/serializers.py:464 +#: order/serializers.py:1295 part/serializers.py:844 part/serializers.py:1171 +#: part/serializers.py:1626 msgid "On Order" msgstr "" -#: build/api.py:868 build/models.py:117 order/models.py:1974 +#: build/api.py:874 build/models.py:118 order/models.py:1975 #: report/templates/report/inventree_build_order_report.html:105 #: stock/serializers.py:93 templates/email/build_order_completed.html:16 #: templates/email/overdue_build_order.html:15 msgid "Build Order" msgstr "Byggorder" -#: build/api.py:882 build/api.py:886 build/serializers.py:372 -#: build/serializers.py:497 build/serializers.py:567 build/serializers.py:1251 -#: build/serializers.py:1256 order/api.py:1234 order/api.py:1239 -#: order/serializers.py:833 order/serializers.py:973 order/serializers.py:2042 +#: build/api.py:888 build/api.py:892 build/serializers.py:380 +#: build/serializers.py:505 build/serializers.py:575 build/serializers.py:1259 +#: build/serializers.py:1264 order/api.py:1239 order/api.py:1244 +#: order/serializers.py:844 order/serializers.py:984 order/serializers.py:2059 #: stock/api.py:987 stock/serializers.py:111 stock/serializers.py:601 #: stock/serializers.py:710 stock/serializers.py:888 stock/serializers.py:1418 -#: stock/serializers.py:1731 stock/serializers.py:1780 +#: stock/serializers.py:1739 stock/serializers.py:1788 #: templates/email/stale_stock_notification.html:18 users/models.py:549 msgid "Location" msgstr "Plats" -#: build/api.py:894 +#: build/api.py:900 msgid "Output" msgstr "" -#: build/api.py:896 +#: build/api.py:902 msgid "Filter by output stock item ID. Use 'null' to find uninstalled build items." msgstr "" -#: build/models.py:118 users/ruleset.py:31 +#: build/models.py:119 users/ruleset.py:31 msgid "Build Orders" msgstr "Byggordrar" -#: build/models.py:168 +#: build/models.py:169 msgid "Assembly BOM has not been validated" msgstr "" -#: build/models.py:175 +#: build/models.py:176 msgid "Build order cannot be created for an inactive part" msgstr "" -#: build/models.py:182 +#: build/models.py:183 msgid "Build order cannot be created for an unlocked part" msgstr "" -#: build/models.py:200 +#: build/models.py:201 msgid "Build orders can only be externally fulfilled for purchaseable parts" msgstr "" -#: build/models.py:207 order/models.py:369 +#: build/models.py:208 order/models.py:370 msgid "Responsible user or group must be specified" msgstr "" -#: build/models.py:212 +#: build/models.py:213 msgid "Build order part cannot be changed" msgstr "" -#: build/models.py:217 order/models.py:382 +#: build/models.py:218 order/models.py:383 msgid "Target date must be after start date" msgstr "" -#: build/models.py:245 +#: build/models.py:246 msgid "Build Order Reference" msgstr "Tillverknings order referens" -#: build/models.py:246 build/serializers.py:1371 order/models.py:614 -#: order/models.py:1311 order/models.py:1773 order/models.py:2712 -#: part/models.py:4442 +#: build/models.py:247 build/serializers.py:1379 order/models.py:615 +#: order/models.py:1312 order/models.py:1774 order/models.py:2713 +#: part/models.py:4067 #: report/templates/report/inventree_bill_of_materials_report.html:139 #: report/templates/report/inventree_purchase_order_report.html:35 #: report/templates/report/inventree_return_order_report.html:26 @@ -773,230 +789,230 @@ msgstr "Tillverknings order referens" msgid "Reference" msgstr "Referens" -#: build/models.py:255 +#: build/models.py:256 msgid "Brief description of the build (optional)" msgstr "" -#: build/models.py:265 +#: build/models.py:266 msgid "BuildOrder to which this build is allocated" msgstr "Tillverknings order till vilken detta produkt är tilldelad" -#: build/models.py:274 +#: build/models.py:275 msgid "Select part to build" msgstr "Välj del att tillverka" -#: build/models.py:279 +#: build/models.py:280 msgid "Sales Order Reference" msgstr "Försäljningsorderreferens" -#: build/models.py:284 +#: build/models.py:285 msgid "SalesOrder to which this build is allocated" msgstr "Försäljningsorder till vilken detta bygge allokeras" -#: build/models.py:289 build/serializers.py:1097 +#: build/models.py:290 build/serializers.py:1105 msgid "Source Location" msgstr "Källa Plats" -#: build/models.py:295 +#: build/models.py:296 msgid "Select location to take stock from for this build (leave blank to take from any stock location)" msgstr "Välj plats att ta lager från för detta bygge (lämna tomt för att ta från någon lagerplats)" -#: build/models.py:301 +#: build/models.py:302 msgid "External Build" msgstr "" -#: build/models.py:302 +#: build/models.py:303 msgid "This build order is fulfilled externally" msgstr "" -#: build/models.py:307 +#: build/models.py:308 msgid "Destination Location" msgstr "Destinationsplats" -#: build/models.py:312 +#: build/models.py:313 msgid "Select location where the completed items will be stored" msgstr "Välj plats där de färdiga objekten kommer att lagras" -#: build/models.py:316 +#: build/models.py:317 msgid "Build Quantity" msgstr "Tillverkat antal" -#: build/models.py:319 +#: build/models.py:320 msgid "Number of stock items to build" msgstr "Antal lagerobjekt att bygga" -#: build/models.py:323 +#: build/models.py:324 msgid "Completed items" msgstr "Slutförda objekt" -#: build/models.py:325 +#: build/models.py:326 msgid "Number of stock items which have been completed" msgstr "Antal lagerposter som har slutförts" -#: build/models.py:329 +#: build/models.py:330 msgid "Build Status" msgstr "Tillverknings status" -#: build/models.py:334 +#: build/models.py:335 msgid "Build status code" msgstr "Tillverkning statuskod" -#: build/models.py:343 build/serializers.py:359 order/serializers.py:849 +#: build/models.py:344 build/serializers.py:367 order/serializers.py:860 #: stock/models.py:1100 stock/serializers.py:85 stock/serializers.py:1591 msgid "Batch Code" msgstr "Batchkod" -#: build/models.py:347 build/serializers.py:360 +#: build/models.py:348 build/serializers.py:368 msgid "Batch code for this build output" msgstr "Batch-kod för denna byggutdata" -#: build/models.py:351 order/models.py:479 order/serializers.py:186 -#: part/models.py:1283 +#: build/models.py:352 order/models.py:480 order/serializers.py:193 +#: part/models.py:1371 msgid "Creation Date" msgstr "Skapad" -#: build/models.py:357 +#: build/models.py:358 msgid "Build start date" msgstr "" -#: build/models.py:358 +#: build/models.py:359 msgid "Scheduled start date for this build order" msgstr "" -#: build/models.py:364 +#: build/models.py:365 msgid "Target completion date" msgstr "Datum för slutförande" -#: build/models.py:366 +#: build/models.py:367 msgid "Target date for build completion. Build will be overdue after this date." msgstr "Måldatum för färdigställande. Tillverkningen kommer att förfallas efter detta datum." -#: build/models.py:371 order/models.py:667 order/models.py:2751 +#: build/models.py:372 order/models.py:668 order/models.py:2752 msgid "Completion Date" msgstr "Slutförandedatum" -#: build/models.py:379 +#: build/models.py:380 msgid "completed by" msgstr "slutfört av" -#: build/models.py:388 +#: build/models.py:389 msgid "Issued by" msgstr "Utfärdad av" -#: build/models.py:389 +#: build/models.py:390 msgid "User who issued this build order" msgstr "Användare som utfärdade denna tillverknings order" -#: build/models.py:398 common/models.py:180 order/api.py:179 -#: order/models.py:504 part/models.py:1300 +#: build/models.py:399 common/models.py:184 order/api.py:184 +#: order/models.py:505 part/models.py:1388 #: report/templates/report/inventree_build_order_report.html:158 msgid "Responsible" msgstr "Ansvarig" -#: build/models.py:399 +#: build/models.py:400 msgid "User or group responsible for this build order" msgstr "" -#: build/models.py:404 stock/models.py:1093 +#: build/models.py:405 stock/models.py:1093 msgid "External Link" msgstr "Extern länk" -#: build/models.py:406 common/models.py:1984 part/models.py:1114 +#: build/models.py:407 common/models.py:1990 part/models.py:1202 #: stock/models.py:1095 msgid "Link to external URL" msgstr "Länk till extern URL" -#: build/models.py:411 +#: build/models.py:412 msgid "Build Priority" msgstr "" -#: build/models.py:414 +#: build/models.py:415 msgid "Priority of this build order" msgstr "" -#: build/models.py:422 common/models.py:150 common/models.py:164 -#: order/api.py:165 order/models.py:451 order/models.py:1805 +#: build/models.py:423 common/models.py:154 common/models.py:168 +#: order/api.py:170 order/models.py:452 order/models.py:1806 msgid "Project Code" msgstr "Projektkod" -#: build/models.py:423 +#: build/models.py:424 msgid "Project code for this build order" msgstr "" -#: build/models.py:676 +#: build/models.py:677 msgid "Cannot complete build order with open child builds" msgstr "" -#: build/models.py:681 +#: build/models.py:682 msgid "Cannot complete build order with incomplete outputs" msgstr "" -#: build/models.py:700 build/models.py:830 +#: build/models.py:701 build/models.py:831 msgid "Failed to offload task to complete build allocations" msgstr "" -#: build/models.py:723 +#: build/models.py:724 #, python-brace-format msgid "Build order {build} has been completed" msgstr "Tillverknings order {build} har slutförts" -#: build/models.py:729 +#: build/models.py:730 msgid "A build order has been completed" msgstr "En tillverknings order har slutförts" -#: build/models.py:911 build/serializers.py:407 +#: build/models.py:912 build/serializers.py:415 msgid "Serial numbers must be provided for trackable parts" msgstr "" -#: build/models.py:1042 build/models.py:1129 +#: build/models.py:1043 build/models.py:1130 msgid "No build output specified" msgstr "Ingen byggutgång angiven" -#: build/models.py:1045 +#: build/models.py:1046 msgid "Build output is already completed" msgstr "Byggutgång är redan slutförd" -#: build/models.py:1048 +#: build/models.py:1049 msgid "Build output does not match Build Order" msgstr "Byggutgång matchar inte bygg order" -#: build/models.py:1136 build/models.py:1234 build/serializers.py:285 -#: build/serializers.py:335 build/serializers.py:965 build/serializers.py:1739 -#: order/models.py:717 order/serializers.py:658 order/serializers.py:844 -#: part/serializers.py:1708 stock/models.py:940 stock/models.py:1430 +#: build/models.py:1137 build/models.py:1235 build/serializers.py:293 +#: build/serializers.py:343 build/serializers.py:973 build/serializers.py:1747 +#: order/models.py:718 order/serializers.py:669 order/serializers.py:855 +#: part/serializers.py:1573 stock/models.py:940 stock/models.py:1430 #: stock/models.py:1878 stock/serializers.py:688 stock/serializers.py:1580 msgid "Quantity must be greater than zero" msgstr "" -#: build/models.py:1140 build/models.py:1239 build/serializers.py:290 +#: build/models.py:1141 build/models.py:1240 build/serializers.py:298 msgid "Quantity cannot be greater than the output quantity" msgstr "" -#: build/models.py:1214 build/serializers.py:606 +#: build/models.py:1215 build/serializers.py:614 msgid "Build output has not passed all required tests" msgstr "" -#: build/models.py:1217 build/serializers.py:601 +#: build/models.py:1218 build/serializers.py:609 #, python-brace-format msgid "Build output {serial} has not passed all required tests" msgstr "" -#: build/models.py:1229 +#: build/models.py:1230 msgid "Cannot partially complete a build output with allocated items" msgstr "" -#: build/models.py:1627 +#: build/models.py:1628 msgid "Build Order Line Item" msgstr "" -#: build/models.py:1651 +#: build/models.py:1652 msgid "Build object" msgstr "Bygg objekt" -#: build/models.py:1663 build/models.py:1974 build/serializers.py:271 -#: build/serializers.py:320 build/serializers.py:1392 common/models.py:1340 -#: order/models.py:1756 order/models.py:2597 order/serializers.py:1696 -#: order/serializers.py:2124 part/models.py:3453 part/models.py:4390 +#: build/models.py:1664 build/models.py:1975 build/serializers.py:279 +#: build/serializers.py:328 build/serializers.py:1400 common/models.py:1344 +#: order/models.py:1757 order/models.py:2598 order/serializers.py:1710 +#: order/serializers.py:2141 part/models.py:3517 part/models.py:4015 #: report/templates/report/inventree_bill_of_materials_report.html:138 #: report/templates/report/inventree_build_order_report.html:113 #: report/templates/report/inventree_purchase_order_report.html:36 @@ -1014,427 +1030,427 @@ msgstr "Bygg objekt" msgid "Quantity" msgstr "Antal" -#: build/models.py:1664 +#: build/models.py:1665 msgid "Required quantity for build order" msgstr "" -#: build/models.py:1673 +#: build/models.py:1674 msgid "Quantity of consumed stock" msgstr "" -#: build/models.py:1772 +#: build/models.py:1773 msgid "Build item must specify a build output, as master part is marked as trackable" msgstr "Byggobjekt måste ange en byggutgång, eftersom huvuddelen är markerad som spårbar" -#: build/models.py:1783 +#: build/models.py:1784 #, python-brace-format msgid "Allocated quantity ({q}) must not exceed available stock quantity ({a})" msgstr "Tilldelad kvantitet ({q}) får inte överstiga tillgängligt lagersaldo ({a})" -#: build/models.py:1804 order/models.py:2546 +#: build/models.py:1805 order/models.py:2547 msgid "Stock item is over-allocated" msgstr "Lagerposten är överallokerad" -#: build/models.py:1809 order/models.py:2549 +#: build/models.py:1810 order/models.py:2550 msgid "Allocation quantity must be greater than zero" msgstr "Allokeringsmängden måste vara större än noll" -#: build/models.py:1815 +#: build/models.py:1816 msgid "Quantity must be 1 for serialized stock" msgstr "Antal måste vara 1 för serialiserat lager" -#: build/models.py:1875 +#: build/models.py:1876 msgid "Selected stock item does not match BOM line" msgstr "" -#: build/models.py:1913 +#: build/models.py:1914 msgid "Allocated quantity exceeds available stock quantity" msgstr "" -#: build/models.py:1964 build/serializers.py:948 build/serializers.py:1240 -#: order/serializers.py:1533 order/serializers.py:1554 +#: build/models.py:1965 build/serializers.py:956 build/serializers.py:1248 +#: order/serializers.py:1547 order/serializers.py:1568 #: report/templates/report/inventree_sales_order_shipment_report.html:29 #: stock/api.py:1404 stock/models.py:456 stock/serializers.py:102 #: stock/serializers.py:800 stock/serializers.py:1274 stock/serializers.py:1386 msgid "Stock Item" msgstr "Artikel i lager" -#: build/models.py:1965 +#: build/models.py:1966 msgid "Source stock item" msgstr "Källa lagervara" -#: build/models.py:1975 +#: build/models.py:1976 msgid "Stock quantity to allocate to build" msgstr "Lagersaldo att allokera för att bygga" -#: build/models.py:1984 +#: build/models.py:1985 msgid "Install into" msgstr "Installera till" -#: build/models.py:1985 +#: build/models.py:1986 msgid "Destination stock item" msgstr "Destination lagervara" -#: build/serializers.py:118 +#: build/serializers.py:120 msgid "Build Level" msgstr "" -#: build/serializers.py:128 +#: build/serializers.py:136 msgid "Part Name" msgstr "Delnamn" -#: build/serializers.py:153 +#: build/serializers.py:161 msgid "Project Code Label" msgstr "" -#: build/serializers.py:219 build/serializers.py:974 +#: build/serializers.py:227 build/serializers.py:982 msgid "Build Output" msgstr "Bygg utdata" -#: build/serializers.py:231 +#: build/serializers.py:239 msgid "Build output does not match the parent build" msgstr "Byggutdata matchar inte överordnad version" -#: build/serializers.py:235 +#: build/serializers.py:243 msgid "Output part does not match BuildOrder part" msgstr "" -#: build/serializers.py:239 +#: build/serializers.py:247 msgid "This build output has already been completed" msgstr "" -#: build/serializers.py:253 +#: build/serializers.py:261 msgid "This build output is not fully allocated" msgstr "" -#: build/serializers.py:272 build/serializers.py:321 +#: build/serializers.py:280 build/serializers.py:329 msgid "Enter quantity for build output" msgstr "" -#: build/serializers.py:343 +#: build/serializers.py:351 msgid "Integer quantity required for trackable parts" msgstr "" -#: build/serializers.py:349 +#: build/serializers.py:357 msgid "Integer quantity required, as the bill of materials contains trackable parts" msgstr "" -#: build/serializers.py:366 order/serializers.py:865 order/serializers.py:1700 +#: build/serializers.py:374 order/serializers.py:876 order/serializers.py:1714 #: stock/serializers.py:699 msgid "Serial Numbers" msgstr "Serienummer" -#: build/serializers.py:367 +#: build/serializers.py:375 msgid "Enter serial numbers for build outputs" msgstr "Ange serienummer för att tillverkade produkter" -#: build/serializers.py:373 +#: build/serializers.py:381 msgid "Stock location for build output" msgstr "" -#: build/serializers.py:388 +#: build/serializers.py:396 msgid "Auto Allocate Serial Numbers" msgstr "" -#: build/serializers.py:390 +#: build/serializers.py:398 msgid "Automatically allocate required items with matching serial numbers" msgstr "" -#: build/serializers.py:423 order/serializers.py:951 stock/api.py:1183 +#: build/serializers.py:431 order/serializers.py:962 stock/api.py:1183 #: stock/models.py:1901 msgid "The following serial numbers already exist or are invalid" msgstr "" -#: build/serializers.py:465 build/serializers.py:521 build/serializers.py:613 +#: build/serializers.py:473 build/serializers.py:529 build/serializers.py:621 msgid "A list of build outputs must be provided" msgstr "En lista över tillverkade produkter måste anges" -#: build/serializers.py:498 +#: build/serializers.py:506 msgid "Stock location for scrapped outputs" msgstr "Lagerplats för skrotade produkter" -#: build/serializers.py:504 +#: build/serializers.py:512 msgid "Discard Allocations" msgstr "" -#: build/serializers.py:505 +#: build/serializers.py:513 msgid "Discard any stock allocations for scrapped outputs" msgstr "Ignorera alla lagerallokeringar för skrotade produkter" -#: build/serializers.py:510 +#: build/serializers.py:518 msgid "Reason for scrapping build output(s)" msgstr "" -#: build/serializers.py:568 +#: build/serializers.py:576 msgid "Location for completed build outputs" msgstr "Plats för färdiga produkter" -#: build/serializers.py:576 +#: build/serializers.py:584 msgid "Accept Incomplete Allocation" msgstr "" -#: build/serializers.py:577 +#: build/serializers.py:585 msgid "Complete outputs if stock has not been fully allocated" msgstr "Slutför utfall om lager inte har tilldelats fullt ut" -#: build/serializers.py:702 +#: build/serializers.py:710 msgid "Consume Allocated Stock" msgstr "" -#: build/serializers.py:703 +#: build/serializers.py:711 msgid "Consume any stock which has already been allocated to this build" msgstr "" -#: build/serializers.py:709 +#: build/serializers.py:717 msgid "Remove Incomplete Outputs" msgstr "Ta bort ofullständiga produkter" -#: build/serializers.py:710 +#: build/serializers.py:718 msgid "Delete any build outputs which have not been completed" msgstr "Ta bort eventuella produkter som inte har slutförts" -#: build/serializers.py:737 +#: build/serializers.py:745 msgid "Not permitted" msgstr "" -#: build/serializers.py:738 +#: build/serializers.py:746 msgid "Accept as consumed by this build order" msgstr "" -#: build/serializers.py:739 +#: build/serializers.py:747 msgid "Deallocate before completing this build order" msgstr "" -#: build/serializers.py:766 +#: build/serializers.py:774 msgid "Overallocated Stock" msgstr "" -#: build/serializers.py:769 +#: build/serializers.py:777 msgid "How do you want to handle extra stock items assigned to the build order" msgstr "" -#: build/serializers.py:780 +#: build/serializers.py:788 msgid "Some stock items have been overallocated" msgstr "" -#: build/serializers.py:785 +#: build/serializers.py:793 msgid "Accept Unallocated" msgstr "" -#: build/serializers.py:787 +#: build/serializers.py:795 msgid "Accept that stock items have not been fully allocated to this build order" msgstr "" -#: build/serializers.py:798 +#: build/serializers.py:806 msgid "Required stock has not been fully allocated" msgstr "" -#: build/serializers.py:803 order/serializers.py:524 order/serializers.py:1601 +#: build/serializers.py:811 order/serializers.py:535 order/serializers.py:1615 msgid "Accept Incomplete" msgstr "Acceptera ofullständig" -#: build/serializers.py:805 +#: build/serializers.py:813 msgid "Accept that the required number of build outputs have not been completed" msgstr "Acceptera att det önskade antalet produkter som inte har slutförts" -#: build/serializers.py:816 +#: build/serializers.py:824 msgid "Required build quantity has not been completed" msgstr "" -#: build/serializers.py:828 +#: build/serializers.py:836 msgid "Build order has open child build orders" msgstr "" -#: build/serializers.py:831 +#: build/serializers.py:839 msgid "Build order must be in production state" msgstr "" -#: build/serializers.py:834 +#: build/serializers.py:842 msgid "Build order has incomplete outputs" msgstr "Tillverknings ordern är ofullständig" -#: build/serializers.py:873 +#: build/serializers.py:881 msgid "Build Line" msgstr "" -#: build/serializers.py:881 +#: build/serializers.py:889 msgid "Build output" msgstr "" -#: build/serializers.py:889 +#: build/serializers.py:897 msgid "Build output must point to the same build" msgstr "" -#: build/serializers.py:920 +#: build/serializers.py:928 msgid "Build Line Item" msgstr "" -#: build/serializers.py:938 +#: build/serializers.py:946 msgid "bom_item.part must point to the same part as the build order" msgstr "" -#: build/serializers.py:954 stock/serializers.py:1287 +#: build/serializers.py:962 stock/serializers.py:1287 msgid "Item must be in stock" msgstr "" -#: build/serializers.py:997 order/serializers.py:1587 +#: build/serializers.py:1005 order/serializers.py:1601 #, python-brace-format msgid "Available quantity ({q}) exceeded" msgstr "" -#: build/serializers.py:1003 +#: build/serializers.py:1011 msgid "Build output must be specified for allocation of tracked parts" msgstr "" -#: build/serializers.py:1011 +#: build/serializers.py:1019 msgid "Build output cannot be specified for allocation of untracked parts" msgstr "" -#: build/serializers.py:1035 order/serializers.py:1860 +#: build/serializers.py:1043 order/serializers.py:1874 msgid "Allocation items must be provided" msgstr "" -#: build/serializers.py:1099 +#: build/serializers.py:1107 msgid "Stock location where parts are to be sourced (leave blank to take from any location)" msgstr "" -#: build/serializers.py:1108 +#: build/serializers.py:1116 msgid "Exclude Location" msgstr "" -#: build/serializers.py:1109 +#: build/serializers.py:1117 msgid "Exclude stock items from this selected location" msgstr "" -#: build/serializers.py:1114 +#: build/serializers.py:1122 msgid "Interchangeable Stock" msgstr "" -#: build/serializers.py:1115 +#: build/serializers.py:1123 msgid "Stock items in multiple locations can be used interchangeably" msgstr "" -#: build/serializers.py:1120 +#: build/serializers.py:1128 msgid "Substitute Stock" msgstr "" -#: build/serializers.py:1121 +#: build/serializers.py:1129 msgid "Allow allocation of substitute parts" msgstr "" -#: build/serializers.py:1126 +#: build/serializers.py:1134 msgid "Optional Items" msgstr "" -#: build/serializers.py:1127 +#: build/serializers.py:1135 msgid "Allocate optional BOM items to build order" msgstr "" -#: build/serializers.py:1148 +#: build/serializers.py:1156 msgid "Failed to start auto-allocation task" msgstr "" -#: build/serializers.py:1200 +#: build/serializers.py:1208 msgid "BOM Reference" msgstr "" -#: build/serializers.py:1206 +#: build/serializers.py:1214 msgid "BOM Part ID" msgstr "" -#: build/serializers.py:1213 +#: build/serializers.py:1221 msgid "BOM Part Name" msgstr "" -#: build/serializers.py:1266 build/serializers.py:1449 +#: build/serializers.py:1274 build/serializers.py:1457 msgid "Build" msgstr "" -#: build/serializers.py:1276 company/models.py:685 order/api.py:311 -#: order/api.py:316 order/api.py:543 order/serializers.py:650 +#: build/serializers.py:1284 company/models.py:639 order/api.py:316 +#: order/api.py:321 order/api.py:549 order/serializers.py:661 #: stock/models.py:1036 stock/serializers.py:579 msgid "Supplier Part" msgstr "" -#: build/serializers.py:1284 stock/serializers.py:620 +#: build/serializers.py:1292 stock/serializers.py:620 msgid "Allocated Quantity" msgstr "" -#: build/serializers.py:1351 +#: build/serializers.py:1359 msgid "Build Reference" msgstr "" -#: build/serializers.py:1361 +#: build/serializers.py:1369 msgid "Part Category Name" msgstr "" -#: build/serializers.py:1383 common/setting/system.py:480 part/models.py:1214 +#: build/serializers.py:1391 common/setting/system.py:480 part/models.py:1302 msgid "Trackable" msgstr "Spårbar" -#: build/serializers.py:1386 +#: build/serializers.py:1394 msgid "Inherited" msgstr "Ärvd" -#: build/serializers.py:1389 part/models.py:4475 +#: build/serializers.py:1397 part/models.py:4100 msgid "Allow Variants" msgstr "Tillåt varianter" -#: build/serializers.py:1395 build/serializers.py:1400 part/models.py:4208 -#: part/models.py:4779 stock/api.py:882 +#: build/serializers.py:1403 build/serializers.py:1408 part/models.py:3833 +#: part/models.py:4404 stock/api.py:882 msgid "BOM Item" msgstr "" -#: build/serializers.py:1467 order/serializers.py:1282 part/serializers.py:1310 -#: part/serializers.py:1765 +#: build/serializers.py:1475 order/serializers.py:1296 part/serializers.py:1175 +#: part/serializers.py:1630 msgid "In Production" msgstr "" -#: build/serializers.py:1469 part/serializers.py:950 part/serializers.py:1314 +#: build/serializers.py:1477 part/serializers.py:835 part/serializers.py:1179 msgid "Scheduled to Build" msgstr "" -#: build/serializers.py:1472 part/serializers.py:987 +#: build/serializers.py:1480 part/serializers.py:872 msgid "External Stock" msgstr "" -#: build/serializers.py:1473 part/serializers.py:1300 part/serializers.py:1808 +#: build/serializers.py:1481 part/serializers.py:1165 part/serializers.py:1673 msgid "Available Stock" msgstr "" -#: build/serializers.py:1475 +#: build/serializers.py:1483 msgid "Available Substitute Stock" msgstr "" -#: build/serializers.py:1478 +#: build/serializers.py:1486 msgid "Available Variant Stock" msgstr "" -#: build/serializers.py:1752 +#: build/serializers.py:1760 msgid "Consumed quantity exceeds allocated quantity" msgstr "" -#: build/serializers.py:1789 +#: build/serializers.py:1797 msgid "Optional notes for the stock consumption" msgstr "" -#: build/serializers.py:1806 +#: build/serializers.py:1814 msgid "Build item must point to the correct build order" msgstr "" -#: build/serializers.py:1811 +#: build/serializers.py:1819 msgid "Duplicate build item allocation" msgstr "" -#: build/serializers.py:1829 +#: build/serializers.py:1837 msgid "Build line must point to the correct build order" msgstr "" -#: build/serializers.py:1834 +#: build/serializers.py:1842 msgid "Duplicate build line allocation" msgstr "" -#: build/serializers.py:1846 +#: build/serializers.py:1854 msgid "At least one item or line must be provided" msgstr "" @@ -1482,702 +1498,826 @@ msgstr "" msgid "Build order {bo} is now overdue" msgstr "" -#: common/api.py:694 +#: common/api.py:701 msgid "Is Link" msgstr "Är länk" -#: common/api.py:702 +#: common/api.py:709 msgid "Is File" msgstr "Är fil" -#: common/api.py:745 +#: common/api.py:756 msgid "User does not have permission to delete these attachments" msgstr "" -#: common/api.py:762 +#: common/api.py:769 msgid "User does not have permission to delete this attachment" msgstr "" -#: common/currency.py:122 +#: common/currency.py:130 msgid "Invalid currency code" msgstr "Ogiltig valutakod" -#: common/currency.py:124 +#: common/currency.py:132 msgid "Duplicate currency code" msgstr "" -#: common/currency.py:129 +#: common/currency.py:137 msgid "No valid currency codes provided" msgstr "" -#: common/currency.py:146 +#: common/currency.py:154 msgid "No plugin" msgstr "" -#: common/models.py:101 common/models.py:126 common/models.py:2729 +#: common/models.py:105 common/models.py:130 common/models.py:3150 msgid "Updated" msgstr "Uppdaterad" -#: common/models.py:102 common/models.py:127 +#: common/models.py:106 common/models.py:131 msgid "Timestamp of last update" msgstr "" -#: common/models.py:139 +#: common/models.py:143 msgid "Update By" msgstr "Uppdaterad av" -#: common/models.py:140 +#: common/models.py:144 msgid "User who last updated this object" msgstr "" -#: common/models.py:165 +#: common/models.py:169 msgid "Unique project code" msgstr "Unik projektkod" -#: common/models.py:172 +#: common/models.py:176 msgid "Project description" msgstr "Projektbeskrivning" -#: common/models.py:181 +#: common/models.py:185 msgid "User or group responsible for this project" msgstr "" -#: common/models.py:771 common/models.py:1272 common/models.py:1310 +#: common/models.py:775 common/models.py:1276 common/models.py:1314 msgid "Settings key" msgstr "" -#: common/models.py:775 +#: common/models.py:779 msgid "Settings value" msgstr "" -#: common/models.py:830 +#: common/models.py:834 msgid "Chosen value is not a valid option" msgstr "" -#: common/models.py:846 +#: common/models.py:850 msgid "Value must be a boolean value" msgstr "" -#: common/models.py:854 +#: common/models.py:858 msgid "Value must be an integer value" msgstr "" -#: common/models.py:862 +#: common/models.py:866 msgid "Value must be a valid number" msgstr "" -#: common/models.py:887 +#: common/models.py:891 msgid "Value does not pass validation checks" msgstr "" -#: common/models.py:909 +#: common/models.py:913 msgid "Key string must be unique" msgstr "" -#: common/models.py:1318 common/models.py:1319 common/models.py:1423 -#: common/models.py:1424 common/models.py:1669 common/models.py:1670 -#: common/models.py:2000 common/models.py:2001 common/models.py:2382 -#: importer/models.py:100 part/models.py:3547 part/models.py:3575 +#: common/models.py:1322 common/models.py:1323 common/models.py:1427 +#: common/models.py:1428 common/models.py:1673 common/models.py:1674 +#: common/models.py:2006 common/models.py:2007 common/models.py:2803 +#: importer/models.py:100 part/models.py:3611 part/models.py:3639 #: plugin/models.py:355 plugin/models.py:356 #: report/templates/report/inventree_test_report.html:105 users/models.py:124 #: users/models.py:501 msgid "User" msgstr "Användare" -#: common/models.py:1341 +#: common/models.py:1345 msgid "Price break quantity" msgstr "" -#: common/models.py:1348 company/serializers.py:564 order/models.py:1842 -#: order/models.py:3043 +#: common/models.py:1352 company/serializers.py:349 order/models.py:1843 +#: order/models.py:3044 msgid "Price" msgstr "Pris" -#: common/models.py:1349 +#: common/models.py:1353 msgid "Unit price at specified quantity" msgstr "" -#: common/models.py:1400 common/models.py:1585 +#: common/models.py:1404 common/models.py:1589 msgid "Endpoint" msgstr "" -#: common/models.py:1401 +#: common/models.py:1405 msgid "Endpoint at which this webhook is received" msgstr "" -#: common/models.py:1411 +#: common/models.py:1415 msgid "Name for this webhook" msgstr "" -#: common/models.py:1415 common/models.py:2241 common/models.py:2348 -#: company/models.py:191 company/models.py:822 machine/models.py:40 -#: part/models.py:1237 plugin/models.py:69 stock/api.py:642 users/models.py:195 +#: common/models.py:1419 common/models.py:2247 common/models.py:2354 +#: company/models.py:192 company/models.py:776 machine/models.py:40 +#: part/models.py:1325 plugin/models.py:69 stock/api.py:642 users/models.py:195 #: users/models.py:554 users/serializers.py:314 msgid "Active" msgstr "Aktiv" -#: common/models.py:1415 +#: common/models.py:1419 msgid "Is this webhook active" msgstr "" -#: common/models.py:1431 users/models.py:172 +#: common/models.py:1435 users/models.py:172 msgid "Token" msgstr "" -#: common/models.py:1432 +#: common/models.py:1436 msgid "Token for access" msgstr "" -#: common/models.py:1440 +#: common/models.py:1444 msgid "Secret" msgstr "Hemlig" -#: common/models.py:1441 +#: common/models.py:1445 msgid "Shared secret for HMAC" msgstr "" -#: common/models.py:1549 common/models.py:2619 +#: common/models.py:1553 common/models.py:3040 msgid "Message ID" msgstr "Meddelande-ID" -#: common/models.py:1550 common/models.py:2609 +#: common/models.py:1554 common/models.py:3030 msgid "Unique identifier for this message" msgstr "" -#: common/models.py:1558 +#: common/models.py:1562 msgid "Host" msgstr "Värd" -#: common/models.py:1559 +#: common/models.py:1563 msgid "Host from which this message was received" msgstr "" -#: common/models.py:1567 +#: common/models.py:1571 msgid "Header" msgstr "" -#: common/models.py:1568 +#: common/models.py:1572 msgid "Header of this message" msgstr "" -#: common/models.py:1575 +#: common/models.py:1579 msgid "Body" msgstr "" -#: common/models.py:1576 +#: common/models.py:1580 msgid "Body of this message" msgstr "" -#: common/models.py:1586 +#: common/models.py:1590 msgid "Endpoint on which this message was received" msgstr "" -#: common/models.py:1591 +#: common/models.py:1595 msgid "Worked on" msgstr "" -#: common/models.py:1592 +#: common/models.py:1596 msgid "Was the work on this message finished?" msgstr "" -#: common/models.py:1718 +#: common/models.py:1722 msgid "Id" msgstr "Id" -#: common/models.py:1720 +#: common/models.py:1724 msgid "Title" msgstr "Titel" -#: common/models.py:1722 common/models.py:1983 company/models.py:185 -#: company/models.py:467 company/models.py:534 company/models.py:839 -#: order/models.py:457 order/models.py:1786 order/models.py:2343 -#: part/models.py:1113 +#: common/models.py:1726 common/models.py:1989 company/models.py:186 +#: company/models.py:468 company/models.py:536 company/models.py:793 +#: order/models.py:458 order/models.py:1787 order/models.py:2344 +#: part/models.py:1201 #: report/templates/report/inventree_build_order_report.html:164 msgid "Link" msgstr "Länk" -#: common/models.py:1724 +#: common/models.py:1728 msgid "Published" msgstr "" -#: common/models.py:1726 +#: common/models.py:1730 msgid "Author" msgstr "" -#: common/models.py:1728 +#: common/models.py:1732 msgid "Summary" msgstr "Sammanfattning" -#: common/models.py:1731 common/models.py:2586 +#: common/models.py:1735 common/models.py:3007 msgid "Read" msgstr "Läs" -#: common/models.py:1731 +#: common/models.py:1735 msgid "Was this news item read?" msgstr "" -#: common/models.py:1748 +#: common/models.py:1752 msgid "Image file" msgstr "Bildfil" -#: common/models.py:1760 +#: common/models.py:1764 msgid "Target model type for this image" msgstr "" -#: common/models.py:1764 +#: common/models.py:1768 msgid "Target model ID for this image" msgstr "" -#: common/models.py:1786 +#: common/models.py:1790 msgid "Custom Unit" msgstr "" -#: common/models.py:1804 +#: common/models.py:1808 msgid "Unit symbol must be unique" msgstr "" -#: common/models.py:1819 +#: common/models.py:1823 msgid "Unit name must be a valid identifier" msgstr "" -#: common/models.py:1838 +#: common/models.py:1842 msgid "Unit name" msgstr "" -#: common/models.py:1845 +#: common/models.py:1849 msgid "Symbol" msgstr "Symbol" -#: common/models.py:1846 +#: common/models.py:1850 msgid "Optional unit symbol" msgstr "" -#: common/models.py:1852 +#: common/models.py:1856 msgid "Definition" msgstr "Definition" -#: common/models.py:1853 +#: common/models.py:1857 msgid "Unit definition" msgstr "" -#: common/models.py:1911 common/models.py:1974 stock/models.py:2967 +#: common/models.py:1917 common/models.py:1980 stock/models.py:2984 #: stock/serializers.py:247 msgid "Attachment" msgstr "Bilaga" -#: common/models.py:1928 +#: common/models.py:1934 msgid "Missing file" msgstr "Saknad fil" -#: common/models.py:1929 +#: common/models.py:1935 msgid "Missing external link" msgstr "Extern länk saknas" -#: common/models.py:1966 +#: common/models.py:1972 common/models.py:2488 msgid "Model type" msgstr "Modelltyp" -#: common/models.py:1967 +#: common/models.py:1973 msgid "Target model type for image" msgstr "" -#: common/models.py:1975 +#: common/models.py:1981 msgid "Select file to attach" msgstr "Välj fil att bifoga" -#: common/models.py:1991 +#: common/models.py:1997 msgid "Comment" msgstr "Kommentar" -#: common/models.py:1992 +#: common/models.py:1998 msgid "Attachment comment" msgstr "" -#: common/models.py:2008 +#: common/models.py:2014 msgid "Upload date" msgstr "Uppladdningsdatum" -#: common/models.py:2009 +#: common/models.py:2015 msgid "Date the file was uploaded" msgstr "" -#: common/models.py:2013 +#: common/models.py:2019 msgid "File size" msgstr "Filstorlek" -#: common/models.py:2013 +#: common/models.py:2019 msgid "File size in bytes" msgstr "" -#: common/models.py:2051 common/serializers.py:684 +#: common/models.py:2057 common/serializers.py:688 msgid "Invalid model type specified for attachment" msgstr "" -#: common/models.py:2072 +#: common/models.py:2078 msgid "Custom State" msgstr "" -#: common/models.py:2073 +#: common/models.py:2079 msgid "Custom States" msgstr "" -#: common/models.py:2078 +#: common/models.py:2084 msgid "Reference Status Set" msgstr "" -#: common/models.py:2079 +#: common/models.py:2085 msgid "Status set that is extended with this custom state" msgstr "" -#: common/models.py:2083 generic/states/serializers.py:18 +#: common/models.py:2089 generic/states/serializers.py:18 msgid "Logical Key" msgstr "Logisk nyckel" -#: common/models.py:2085 +#: common/models.py:2091 msgid "State logical key that is equal to this custom state in business logic" msgstr "" -#: common/models.py:2090 common/models.py:2329 company/models.py:622 -#: machine/serializers.py:27 -#: report/templates/report/inventree_test_report.html:104 stock/models.py:2959 +#: common/models.py:2096 common/models.py:2335 machine/serializers.py:27 +#: report/templates/report/inventree_test_report.html:104 stock/models.py:2976 msgid "Value" msgstr "Värde" -#: common/models.py:2091 +#: common/models.py:2097 msgid "Numerical value that will be saved in the models database" msgstr "" -#: common/models.py:2097 +#: common/models.py:2103 msgid "Name of the state" msgstr "" -#: common/models.py:2106 common/models.py:2335 generic/states/serializers.py:22 +#: common/models.py:2112 common/models.py:2341 generic/states/serializers.py:22 msgid "Label" msgstr "Etikett" -#: common/models.py:2107 +#: common/models.py:2113 msgid "Label that will be displayed in the frontend" msgstr "" -#: common/models.py:2114 generic/states/serializers.py:24 +#: common/models.py:2120 generic/states/serializers.py:24 msgid "Color" msgstr "Färg" -#: common/models.py:2115 +#: common/models.py:2121 msgid "Color that will be displayed in the frontend" msgstr "" -#: common/models.py:2123 +#: common/models.py:2129 msgid "Model" msgstr "Modell" -#: common/models.py:2124 +#: common/models.py:2130 msgid "Model this state is associated with" msgstr "" -#: common/models.py:2139 +#: common/models.py:2145 msgid "Model must be selected" msgstr "" -#: common/models.py:2142 +#: common/models.py:2148 msgid "Key must be selected" msgstr "" -#: common/models.py:2145 +#: common/models.py:2151 msgid "Logical key must be selected" msgstr "" -#: common/models.py:2149 +#: common/models.py:2155 msgid "Key must be different from logical key" msgstr "" -#: common/models.py:2156 +#: common/models.py:2162 msgid "Valid reference status class must be provided" msgstr "" -#: common/models.py:2162 +#: common/models.py:2168 msgid "Key must be different from the logical keys of the reference status" msgstr "" -#: common/models.py:2169 +#: common/models.py:2175 msgid "Logical key must be in the logical keys of the reference status" msgstr "" -#: common/models.py:2176 +#: common/models.py:2182 msgid "Name must be different from the names of the reference status" msgstr "" -#: common/models.py:2216 common/models.py:2323 part/models.py:3889 +#: common/models.py:2222 common/models.py:2329 common/models.py:2533 msgid "Selection List" msgstr "" -#: common/models.py:2217 +#: common/models.py:2223 msgid "Selection Lists" msgstr "" -#: common/models.py:2222 +#: common/models.py:2228 msgid "Name of the selection list" msgstr "" -#: common/models.py:2229 +#: common/models.py:2235 msgid "Description of the selection list" msgstr "" -#: common/models.py:2235 part/models.py:1242 +#: common/models.py:2241 part/models.py:1330 msgid "Locked" msgstr "Låst" -#: common/models.py:2236 +#: common/models.py:2242 msgid "Is this selection list locked?" msgstr "" -#: common/models.py:2242 +#: common/models.py:2248 msgid "Can this selection list be used?" msgstr "" -#: common/models.py:2250 +#: common/models.py:2256 msgid "Source Plugin" msgstr "" -#: common/models.py:2251 +#: common/models.py:2257 msgid "Plugin which provides the selection list" msgstr "" -#: common/models.py:2256 +#: common/models.py:2262 msgid "Source String" msgstr "Källsträng" -#: common/models.py:2257 +#: common/models.py:2263 msgid "Optional string identifying the source used for this list" msgstr "" -#: common/models.py:2266 +#: common/models.py:2272 msgid "Default Entry" msgstr "" -#: common/models.py:2267 +#: common/models.py:2273 msgid "Default entry for this selection list" msgstr "" -#: common/models.py:2272 common/models.py:2724 +#: common/models.py:2278 common/models.py:3145 msgid "Created" msgstr "Skapad" -#: common/models.py:2273 +#: common/models.py:2279 msgid "Date and time that the selection list was created" msgstr "" -#: common/models.py:2278 +#: common/models.py:2284 msgid "Last Updated" msgstr "Senast uppdaterad" -#: common/models.py:2279 +#: common/models.py:2285 msgid "Date and time that the selection list was last updated" msgstr "" -#: common/models.py:2313 +#: common/models.py:2319 msgid "Selection List Entry" msgstr "" -#: common/models.py:2314 +#: common/models.py:2320 msgid "Selection List Entries" msgstr "" -#: common/models.py:2324 +#: common/models.py:2330 msgid "Selection list to which this entry belongs" msgstr "" -#: common/models.py:2330 +#: common/models.py:2336 msgid "Value of the selection list entry" msgstr "" -#: common/models.py:2336 +#: common/models.py:2342 msgid "Label for the selection list entry" msgstr "" -#: common/models.py:2342 +#: common/models.py:2348 msgid "Description of the selection list entry" msgstr "" -#: common/models.py:2349 +#: common/models.py:2355 msgid "Is this selection list entry active?" msgstr "" -#: common/models.py:2367 -msgid "Barcode Scan" +#: common/models.py:2387 +msgid "Parameter Template" +msgstr "Parametermall" + +#: common/models.py:2388 +msgid "Parameter Templates" msgstr "" -#: common/models.py:2371 importer/models.py:546 part/models.py:4060 -msgid "Data" -msgstr "Data" - -#: common/models.py:2372 -msgid "Barcode data" -msgstr "Streckkodsdata" - -#: common/models.py:2383 -msgid "User who scanned the barcode" +#: common/models.py:2425 +msgid "Checkbox parameters cannot have units" msgstr "" -#: common/models.py:2388 importer/models.py:69 -msgid "Timestamp" -msgstr "Tidsstämpel" - -#: common/models.py:2389 -msgid "Date and time of the barcode scan" +#: common/models.py:2430 +msgid "Checkbox parameters cannot have choices" msgstr "" -#: common/models.py:2395 -msgid "URL endpoint which processed the barcode" +#: common/models.py:2450 part/models.py:3707 +msgid "Choices must be unique" msgstr "" -#: common/models.py:2402 order/models.py:1832 plugin/serializers.py:93 -msgid "Context" -msgstr "Sammanhang" - -#: common/models.py:2403 -msgid "Context data for the barcode scan" +#: common/models.py:2467 +msgid "Parameter template name must be unique" msgstr "" -#: common/models.py:2410 -msgid "Response" -msgstr "Svar" - -#: common/models.py:2411 -msgid "Response data from the barcode scan" +#: common/models.py:2489 +msgid "Target model type for this parameter template" msgstr "" -#: common/models.py:2417 report/templates/report/inventree_test_report.html:103 -#: stock/models.py:2953 -msgid "Result" -msgstr "Resultat" - -#: common/models.py:2418 -msgid "Was the barcode scan successful?" +#: common/models.py:2495 +msgid "Parameter Name" msgstr "" -#: common/models.py:2500 -msgid "An error occurred" -msgstr "Ett fel inträffade" - -#: common/models.py:2521 -msgid "INVE-E8: Email log deletion is protected. Set INVENTREE_PROTECT_EMAIL_LOG to False to allow deletion." +#: common/models.py:2501 part/models.py:1283 +msgid "Units" msgstr "" -#: common/models.py:2568 -msgid "Email Message" -msgstr "E-postmeddelande" - -#: common/models.py:2569 -msgid "Email Messages" +#: common/models.py:2502 +msgid "Physical units for this parameter" msgstr "" -#: common/models.py:2576 -msgid "Announced" +#: common/models.py:2510 +msgid "Parameter description" msgstr "" -#: common/models.py:2578 -msgid "Sent" +#: common/models.py:2516 +msgid "Checkbox" +msgstr "Kryssruta" + +#: common/models.py:2517 +msgid "Is this parameter a checkbox?" msgstr "" -#: common/models.py:2579 -msgid "Failed" +#: common/models.py:2522 part/models.py:3794 +msgid "Choices" +msgstr "Val" + +#: common/models.py:2523 +msgid "Valid choices for this parameter (comma-separated)" +msgstr "" + +#: common/models.py:2534 +msgid "Selection list for this parameter" +msgstr "" + +#: common/models.py:2539 part/models.py:3769 report/models.py:287 +msgid "Enabled" +msgstr "Aktiverad" + +#: common/models.py:2540 +msgid "Is this parameter template enabled?" +msgstr "" + +#: common/models.py:2581 +msgid "Parameter" msgstr "" #: common/models.py:2582 -msgid "Delivered" -msgstr "" - -#: common/models.py:2590 -msgid "Confirmed" -msgstr "Bekräftad" - -#: common/models.py:2596 -msgid "Inbound" -msgstr "" - -#: common/models.py:2597 -msgid "Outbound" -msgstr "" - -#: common/models.py:2602 -msgid "No Reply" -msgstr "Inget svar" - -#: common/models.py:2603 -msgid "Track Delivery" -msgstr "" - -#: common/models.py:2604 -msgid "Track Read" -msgstr "" - -#: common/models.py:2605 -msgid "Track Click" -msgstr "" - -#: common/models.py:2608 common/models.py:2711 -msgid "Global ID" -msgstr "" - -#: common/models.py:2621 -msgid "Identifier for this message (might be supplied by external system)" +msgid "Parameters" msgstr "" #: common/models.py:2628 +msgid "Invalid choice for parameter value" +msgstr "" + +#: common/models.py:2698 common/serializers.py:783 +msgid "Invalid model type specified for parameter" +msgstr "" + +#: common/models.py:2734 +msgid "Model ID" +msgstr "" + +#: common/models.py:2735 +msgid "ID of the target model for this parameter" +msgstr "" + +#: common/models.py:2744 common/setting/system.py:450 report/models.py:373 +#: report/models.py:669 report/serializers.py:94 report/serializers.py:135 +#: stock/serializers.py:234 +msgid "Template" +msgstr "Mall" + +#: common/models.py:2745 +msgid "Parameter template" +msgstr "" + +#: common/models.py:2750 common/models.py:2792 importer/models.py:546 +msgid "Data" +msgstr "Data" + +#: common/models.py:2751 +msgid "Parameter Value" +msgstr "" + +#: common/models.py:2760 company/models.py:810 order/serializers.py:894 +#: order/serializers.py:2064 part/models.py:4075 part/models.py:4444 +#: report/templates/report/inventree_bill_of_materials_report.html:140 +#: report/templates/report/inventree_purchase_order_report.html:39 +#: report/templates/report/inventree_return_order_report.html:27 +#: report/templates/report/inventree_sales_order_report.html:32 +#: report/templates/report/inventree_stock_location_report.html:105 +#: stock/serializers.py:813 +msgid "Note" +msgstr "" + +#: common/models.py:2761 stock/serializers.py:718 +msgid "Optional note field" +msgstr "" + +#: common/models.py:2788 +msgid "Barcode Scan" +msgstr "" + +#: common/models.py:2793 +msgid "Barcode data" +msgstr "Streckkodsdata" + +#: common/models.py:2804 +msgid "User who scanned the barcode" +msgstr "" + +#: common/models.py:2809 importer/models.py:69 +msgid "Timestamp" +msgstr "Tidsstämpel" + +#: common/models.py:2810 +msgid "Date and time of the barcode scan" +msgstr "" + +#: common/models.py:2816 +msgid "URL endpoint which processed the barcode" +msgstr "" + +#: common/models.py:2823 order/models.py:1833 plugin/serializers.py:93 +msgid "Context" +msgstr "Sammanhang" + +#: common/models.py:2824 +msgid "Context data for the barcode scan" +msgstr "" + +#: common/models.py:2831 +msgid "Response" +msgstr "Svar" + +#: common/models.py:2832 +msgid "Response data from the barcode scan" +msgstr "" + +#: common/models.py:2838 report/templates/report/inventree_test_report.html:103 +#: stock/models.py:2970 +msgid "Result" +msgstr "Resultat" + +#: common/models.py:2839 +msgid "Was the barcode scan successful?" +msgstr "" + +#: common/models.py:2921 +msgid "An error occurred" +msgstr "Ett fel inträffade" + +#: common/models.py:2942 +msgid "INVE-E8: Email log deletion is protected. Set INVENTREE_PROTECT_EMAIL_LOG to False to allow deletion." +msgstr "" + +#: common/models.py:2989 +msgid "Email Message" +msgstr "E-postmeddelande" + +#: common/models.py:2990 +msgid "Email Messages" +msgstr "" + +#: common/models.py:2997 +msgid "Announced" +msgstr "" + +#: common/models.py:2999 +msgid "Sent" +msgstr "" + +#: common/models.py:3000 +msgid "Failed" +msgstr "" + +#: common/models.py:3003 +msgid "Delivered" +msgstr "" + +#: common/models.py:3011 +msgid "Confirmed" +msgstr "Bekräftad" + +#: common/models.py:3017 +msgid "Inbound" +msgstr "" + +#: common/models.py:3018 +msgid "Outbound" +msgstr "" + +#: common/models.py:3023 +msgid "No Reply" +msgstr "Inget svar" + +#: common/models.py:3024 +msgid "Track Delivery" +msgstr "" + +#: common/models.py:3025 +msgid "Track Read" +msgstr "" + +#: common/models.py:3026 +msgid "Track Click" +msgstr "" + +#: common/models.py:3029 common/models.py:3132 +msgid "Global ID" +msgstr "" + +#: common/models.py:3042 +msgid "Identifier for this message (might be supplied by external system)" +msgstr "" + +#: common/models.py:3049 msgid "Thread ID" msgstr "Tråd-ID" -#: common/models.py:2630 +#: common/models.py:3051 msgid "Identifier for this message thread (might be supplied by external system)" msgstr "" -#: common/models.py:2639 +#: common/models.py:3060 msgid "Thread" msgstr "Tråd" -#: common/models.py:2640 +#: common/models.py:3061 msgid "Linked thread for this message" msgstr "" -#: common/models.py:2656 -msgid "Prioriy" -msgstr "Prioritet" +#: common/models.py:3077 +msgid "Priority" +msgstr "" -#: common/models.py:2698 +#: common/models.py:3119 msgid "Email Thread" msgstr "" -#: common/models.py:2699 +#: common/models.py:3120 msgid "Email Threads" msgstr "E-posttrådar" -#: common/models.py:2705 generic/states/serializers.py:16 +#: common/models.py:3126 generic/states/serializers.py:16 #: machine/serializers.py:24 plugin/models.py:46 users/models.py:113 msgid "Key" msgstr "Nyckel" -#: common/models.py:2708 +#: common/models.py:3129 msgid "Unique key for this thread (used to identify the thread)" msgstr "" -#: common/models.py:2712 +#: common/models.py:3133 msgid "Unique identifier for this thread" msgstr "" -#: common/models.py:2719 +#: common/models.py:3140 msgid "Started Internal" msgstr "" -#: common/models.py:2720 +#: common/models.py:3141 msgid "Was this thread started internally?" msgstr "" -#: common/models.py:2725 +#: common/models.py:3146 msgid "Date and time that the thread was created" msgstr "" -#: common/models.py:2730 +#: common/models.py:3151 msgid "Date and time that the thread was last updated" msgstr "" @@ -2199,7 +2339,7 @@ msgstr "" msgid "A order that is assigned to you was canceled" msgstr "" -#: common/notifications.py:73 common/notifications.py:80 order/api.py:594 +#: common/notifications.py:73 common/notifications.py:80 order/api.py:600 msgid "Items Received" msgstr "" @@ -2211,88 +2351,93 @@ msgstr "" msgid "Items have been received against a return order" msgstr "" -#: common/serializers.py:145 +#: common/serializers.py:149 msgid "Indicates if the setting is overridden by an environment variable" msgstr "" -#: common/serializers.py:147 +#: common/serializers.py:151 msgid "Override" msgstr "" -#: common/serializers.py:498 +#: common/serializers.py:502 msgid "Is Running" msgstr "" -#: common/serializers.py:504 +#: common/serializers.py:508 msgid "Pending Tasks" msgstr "Väntande uppgifter" -#: common/serializers.py:510 +#: common/serializers.py:514 msgid "Scheduled Tasks" msgstr "Schemalagda uppgifter" -#: common/serializers.py:516 +#: common/serializers.py:520 msgid "Failed Tasks" msgstr "Misslyckade uppgifter" -#: common/serializers.py:531 +#: common/serializers.py:535 msgid "Task ID" msgstr "Uppgifts-ID" -#: common/serializers.py:531 +#: common/serializers.py:535 msgid "Unique task ID" msgstr "" -#: common/serializers.py:533 +#: common/serializers.py:537 msgid "Lock" msgstr "Lås" -#: common/serializers.py:533 +#: common/serializers.py:537 msgid "Lock time" msgstr "" -#: common/serializers.py:535 +#: common/serializers.py:539 msgid "Task name" msgstr "Uppgiftsnamn" -#: common/serializers.py:537 +#: common/serializers.py:541 msgid "Function" msgstr "Funktion" -#: common/serializers.py:537 +#: common/serializers.py:541 msgid "Function name" msgstr "Funktionsnamn" -#: common/serializers.py:539 +#: common/serializers.py:543 msgid "Arguments" msgstr "Argument" -#: common/serializers.py:539 +#: common/serializers.py:543 msgid "Task arguments" msgstr "" -#: common/serializers.py:542 +#: common/serializers.py:546 msgid "Keyword Arguments" msgstr "" -#: common/serializers.py:542 +#: common/serializers.py:546 msgid "Task keyword arguments" msgstr "" -#: common/serializers.py:652 +#: common/serializers.py:656 msgid "Filename" msgstr "Filnamn" -#: common/serializers.py:659 importer/models.py:89 report/api.py:41 +#: common/serializers.py:663 common/serializers.py:730 +#: common/serializers.py:805 importer/models.py:89 report/api.py:41 #: report/models.py:293 report/serializers.py:52 msgid "Model Type" msgstr "Modelltyp" -#: common/serializers.py:687 +#: common/serializers.py:691 msgid "User does not have permission to create or edit attachments for this model" msgstr "" -#: common/serializers.py:731 common/serializers.py:834 +#: common/serializers.py:786 +msgid "User does not have permission to create or edit parameters for this model" +msgstr "" + +#: common/serializers.py:850 common/serializers.py:953 msgid "Selection list is locked" msgstr "" @@ -2368,7 +2513,7 @@ msgstr "" msgid "Show the `about` modal only to superusers" msgstr "" -#: common/setting/system.py:224 company/models.py:144 company/models.py:145 +#: common/setting/system.py:224 company/models.py:145 company/models.py:146 msgid "Company name" msgstr "Företagsnamn" @@ -2411,8 +2556,8 @@ msgstr "" #: common/setting/system.py:253 common/setting/system.py:293 #: common/setting/system.py:306 common/setting/system.py:314 #: common/setting/system.py:321 common/setting/system.py:330 -#: common/setting/system.py:339 common/setting/system.py:588 -#: common/setting/system.py:616 common/setting/system.py:707 +#: common/setting/system.py:339 common/setting/system.py:580 +#: common/setting/system.py:608 common/setting/system.py:707 #: common/setting/system.py:1103 common/setting/system.py:1119 msgid "days" msgstr "dagar" @@ -2657,12 +2802,6 @@ msgstr "" msgid "Copy category parameter templates when creating a part" msgstr "" -#: common/setting/system.py:450 part/models.py:4054 report/models.py:373 -#: report/models.py:669 report/serializers.py:94 report/serializers.py:135 -#: stock/serializers.py:234 -msgid "Template" -msgstr "Mall" - #: common/setting/system.py:451 msgid "Parts are templates by default" msgstr "" @@ -2671,8 +2810,8 @@ msgstr "" msgid "Parts can be assembled from other components by default" msgstr "" -#: common/setting/system.py:462 part/models.py:1208 part/serializers.py:1734 -#: part/serializers.py:1741 +#: common/setting/system.py:462 part/models.py:1296 part/serializers.py:1599 +#: part/serializers.py:1606 msgid "Component" msgstr "Komponent" @@ -2680,7 +2819,7 @@ msgstr "Komponent" msgid "Parts can be used as sub-components by default" msgstr "" -#: common/setting/system.py:468 part/models.py:1226 +#: common/setting/system.py:468 part/models.py:1314 msgid "Purchaseable" msgstr "" @@ -2688,7 +2827,7 @@ msgstr "" msgid "Parts are purchaseable by default" msgstr "" -#: common/setting/system.py:474 part/models.py:1232 stock/api.py:643 +#: common/setting/system.py:474 part/models.py:1320 stock/api.py:643 msgid "Salable" msgstr "" @@ -2700,7 +2839,7 @@ msgstr "" msgid "Parts are trackable by default" msgstr "" -#: common/setting/system.py:486 part/models.py:1248 +#: common/setting/system.py:486 part/models.py:1336 msgid "Virtual" msgstr "Virtuell" @@ -2749,158 +2888,158 @@ msgid "Part category default icon (empty means no icon)" msgstr "" #: common/setting/system.py:525 -msgid "Enforce Parameter Units" -msgstr "" - -#: common/setting/system.py:527 -msgid "If units are provided, parameter values must match the specified units" -msgstr "" - -#: common/setting/system.py:533 msgid "Minimum Pricing Decimal Places" msgstr "" -#: common/setting/system.py:535 +#: common/setting/system.py:527 msgid "Minimum number of decimal places to display when rendering pricing data" msgstr "" -#: common/setting/system.py:546 +#: common/setting/system.py:538 msgid "Maximum Pricing Decimal Places" msgstr "" -#: common/setting/system.py:548 +#: common/setting/system.py:540 msgid "Maximum number of decimal places to display when rendering pricing data" msgstr "" -#: common/setting/system.py:559 +#: common/setting/system.py:551 msgid "Use Supplier Pricing" msgstr "" -#: common/setting/system.py:561 +#: common/setting/system.py:553 msgid "Include supplier price breaks in overall pricing calculations" msgstr "" -#: common/setting/system.py:567 +#: common/setting/system.py:559 msgid "Purchase History Override" msgstr "" -#: common/setting/system.py:569 +#: common/setting/system.py:561 msgid "Historical purchase order pricing overrides supplier price breaks" msgstr "" -#: common/setting/system.py:575 +#: common/setting/system.py:567 msgid "Use Stock Item Pricing" msgstr "" -#: common/setting/system.py:577 +#: common/setting/system.py:569 msgid "Use pricing from manually entered stock data for pricing calculations" msgstr "" -#: common/setting/system.py:583 +#: common/setting/system.py:575 msgid "Stock Item Pricing Age" msgstr "" -#: common/setting/system.py:585 +#: common/setting/system.py:577 msgid "Exclude stock items older than this number of days from pricing calculations" msgstr "" -#: common/setting/system.py:592 +#: common/setting/system.py:584 msgid "Use Variant Pricing" msgstr "" -#: common/setting/system.py:593 +#: common/setting/system.py:585 msgid "Include variant pricing in overall pricing calculations" msgstr "" -#: common/setting/system.py:598 +#: common/setting/system.py:590 msgid "Active Variants Only" msgstr "" -#: common/setting/system.py:600 +#: common/setting/system.py:592 msgid "Only use active variant parts for calculating variant pricing" msgstr "" -#: common/setting/system.py:606 +#: common/setting/system.py:598 msgid "Auto Update Pricing" msgstr "" -#: common/setting/system.py:608 +#: common/setting/system.py:600 msgid "Automatically update part pricing when internal data changes" msgstr "" -#: common/setting/system.py:614 +#: common/setting/system.py:606 msgid "Pricing Rebuild Interval" msgstr "" -#: common/setting/system.py:615 +#: common/setting/system.py:607 msgid "Number of days before part pricing is automatically updated" msgstr "" -#: common/setting/system.py:621 +#: common/setting/system.py:613 msgid "Internal Prices" msgstr "Interna priser" -#: common/setting/system.py:622 +#: common/setting/system.py:614 msgid "Enable internal prices for parts" msgstr "" -#: common/setting/system.py:627 +#: common/setting/system.py:619 msgid "Internal Price Override" msgstr "" -#: common/setting/system.py:629 +#: common/setting/system.py:621 msgid "If available, internal prices override price range calculations" msgstr "" -#: common/setting/system.py:635 +#: common/setting/system.py:627 msgid "Enable label printing" msgstr "Aktivera etikettutskrift" -#: common/setting/system.py:636 +#: common/setting/system.py:628 msgid "Enable label printing from the web interface" msgstr "Aktivera etikettutskrift från webbgränssnittet" -#: common/setting/system.py:641 +#: common/setting/system.py:633 msgid "Label Image DPI" msgstr "Etikettbild DPI" -#: common/setting/system.py:643 +#: common/setting/system.py:635 msgid "DPI resolution when generating image files to supply to label printing plugins" msgstr "" -#: common/setting/system.py:649 +#: common/setting/system.py:641 msgid "Enable Reports" msgstr "Aktivera rapporter" -#: common/setting/system.py:650 +#: common/setting/system.py:642 msgid "Enable generation of reports" msgstr "Aktivera generering av rapporter" -#: common/setting/system.py:655 +#: common/setting/system.py:647 msgid "Debug Mode" msgstr "Debugläge" -#: common/setting/system.py:656 +#: common/setting/system.py:648 msgid "Generate reports in debug mode (HTML output)" msgstr "" -#: common/setting/system.py:661 +#: common/setting/system.py:653 msgid "Log Report Errors" msgstr "" -#: common/setting/system.py:662 +#: common/setting/system.py:654 msgid "Log errors which occur when generating reports" msgstr "" -#: common/setting/system.py:667 plugin/builtin/labels/label_sheet.py:29 +#: common/setting/system.py:659 plugin/builtin/labels/label_sheet.py:29 #: report/models.py:381 msgid "Page Size" msgstr "Sidstorlek" -#: common/setting/system.py:668 +#: common/setting/system.py:660 msgid "Default page size for PDF reports" msgstr "Standard sidstorlek för PDF-rapporter" +#: common/setting/system.py:665 +msgid "Enforce Parameter Units" +msgstr "" + +#: common/setting/system.py:667 +msgid "If units are provided, parameter values must match the specified units" +msgstr "" + #: common/setting/system.py:673 msgid "Globally Unique Serials" msgstr "" @@ -3456,688 +3595,677 @@ msgid "Display PDF reports in the browser, instead of downloading as a file" msgstr "" #: common/setting/user.py:45 -msgid "Search Parts" -msgstr "Sök efter artiklar" +msgid "Barcode Scanner in Form Fields" +msgstr "" #: common/setting/user.py:46 -msgid "Display parts in search preview window" +msgid "Allow barcode scanner input in form fields" msgstr "" #: common/setting/user.py:51 -msgid "Search Supplier Parts" -msgstr "Sök efter leverantörsartikel" +msgid "Search Parts" +msgstr "Sök efter artiklar" #: common/setting/user.py:52 -msgid "Display supplier parts in search preview window" +msgid "Display parts in search preview window" msgstr "" #: common/setting/user.py:57 -msgid "Search Manufacturer Parts" -msgstr "Sök efter tillverkarartikel" +msgid "Search Supplier Parts" +msgstr "Sök efter leverantörsartikel" #: common/setting/user.py:58 -msgid "Display manufacturer parts in search preview window" +msgid "Display supplier parts in search preview window" msgstr "" #: common/setting/user.py:63 -msgid "Hide Inactive Parts" -msgstr "" +msgid "Search Manufacturer Parts" +msgstr "Sök efter tillverkarartikel" #: common/setting/user.py:64 -msgid "Excluded inactive parts from search preview window" +msgid "Display manufacturer parts in search preview window" msgstr "" #: common/setting/user.py:69 -msgid "Search Categories" -msgstr "Sök kategorier" +msgid "Hide Inactive Parts" +msgstr "" #: common/setting/user.py:70 -msgid "Display part categories in search preview window" +msgid "Excluded inactive parts from search preview window" msgstr "" #: common/setting/user.py:75 -msgid "Search Stock" -msgstr "" +msgid "Search Categories" +msgstr "Sök kategorier" #: common/setting/user.py:76 -msgid "Display stock items in search preview window" +msgid "Display part categories in search preview window" msgstr "" #: common/setting/user.py:81 +msgid "Search Stock" +msgstr "" + +#: common/setting/user.py:82 +msgid "Display stock items in search preview window" +msgstr "" + +#: common/setting/user.py:87 msgid "Hide Unavailable Stock Items" msgstr "" -#: common/setting/user.py:83 +#: common/setting/user.py:89 msgid "Exclude stock items which are not available from the search preview window" msgstr "" -#: common/setting/user.py:89 +#: common/setting/user.py:95 msgid "Search Locations" msgstr "" -#: common/setting/user.py:90 +#: common/setting/user.py:96 msgid "Display stock locations in search preview window" msgstr "" -#: common/setting/user.py:95 +#: common/setting/user.py:101 msgid "Search Companies" msgstr "" -#: common/setting/user.py:96 +#: common/setting/user.py:102 msgid "Display companies in search preview window" msgstr "" -#: common/setting/user.py:101 +#: common/setting/user.py:107 msgid "Search Build Orders" msgstr "" -#: common/setting/user.py:102 +#: common/setting/user.py:108 msgid "Display build orders in search preview window" msgstr "" -#: common/setting/user.py:107 +#: common/setting/user.py:113 msgid "Search Purchase Orders" msgstr "" -#: common/setting/user.py:108 +#: common/setting/user.py:114 msgid "Display purchase orders in search preview window" msgstr "" -#: common/setting/user.py:113 +#: common/setting/user.py:119 msgid "Exclude Inactive Purchase Orders" msgstr "" -#: common/setting/user.py:114 +#: common/setting/user.py:120 msgid "Exclude inactive purchase orders from search preview window" msgstr "" -#: common/setting/user.py:119 +#: common/setting/user.py:125 msgid "Search Sales Orders" msgstr "" -#: common/setting/user.py:120 +#: common/setting/user.py:126 msgid "Display sales orders in search preview window" msgstr "" -#: common/setting/user.py:125 +#: common/setting/user.py:131 msgid "Exclude Inactive Sales Orders" msgstr "" -#: common/setting/user.py:126 +#: common/setting/user.py:132 msgid "Exclude inactive sales orders from search preview window" msgstr "" -#: common/setting/user.py:131 +#: common/setting/user.py:137 msgid "Search Sales Order Shipments" msgstr "" -#: common/setting/user.py:132 +#: common/setting/user.py:138 msgid "Display sales order shipments in search preview window" msgstr "" -#: common/setting/user.py:137 +#: common/setting/user.py:143 msgid "Search Return Orders" msgstr "" -#: common/setting/user.py:138 +#: common/setting/user.py:144 msgid "Display return orders in search preview window" msgstr "" -#: common/setting/user.py:143 +#: common/setting/user.py:149 msgid "Exclude Inactive Return Orders" msgstr "" -#: common/setting/user.py:144 +#: common/setting/user.py:150 msgid "Exclude inactive return orders from search preview window" msgstr "" -#: common/setting/user.py:149 +#: common/setting/user.py:155 msgid "Search Preview Results" msgstr "" -#: common/setting/user.py:151 +#: common/setting/user.py:157 msgid "Number of results to show in each section of the search preview window" msgstr "" -#: common/setting/user.py:157 +#: common/setting/user.py:163 msgid "Regex Search" msgstr "" -#: common/setting/user.py:158 +#: common/setting/user.py:164 msgid "Enable regular expressions in search queries" msgstr "" -#: common/setting/user.py:163 +#: common/setting/user.py:169 msgid "Whole Word Search" msgstr "" -#: common/setting/user.py:164 +#: common/setting/user.py:170 msgid "Search queries return results for whole word matches" msgstr "" -#: common/setting/user.py:169 +#: common/setting/user.py:175 msgid "Search Notes" msgstr "" -#: common/setting/user.py:171 +#: common/setting/user.py:177 msgid "Search queries return results for matches from the item's notes" msgstr "" -#: common/setting/user.py:177 +#: common/setting/user.py:183 msgid "Escape Key Closes Forms" msgstr "" -#: common/setting/user.py:178 +#: common/setting/user.py:184 msgid "Use the escape key to close modal forms" msgstr "" -#: common/setting/user.py:183 +#: common/setting/user.py:189 msgid "Fixed Navbar" msgstr "" -#: common/setting/user.py:184 +#: common/setting/user.py:190 msgid "The navbar position is fixed to the top of the screen" msgstr "" -#: common/setting/user.py:189 +#: common/setting/user.py:195 msgid "Fixed Table Headers" msgstr "" -#: common/setting/user.py:190 +#: common/setting/user.py:196 msgid "Table headers are fixed to the top of the table" msgstr "" -#: common/setting/user.py:195 +#: common/setting/user.py:201 msgid "Show Spotlight" msgstr "" -#: common/setting/user.py:196 +#: common/setting/user.py:202 msgid "Enable spotlight navigation functionality" msgstr "" -#: common/setting/user.py:201 +#: common/setting/user.py:207 msgid "Navigation Icons" msgstr "" -#: common/setting/user.py:202 +#: common/setting/user.py:208 msgid "Display icons in the navigation bar" msgstr "" -#: common/setting/user.py:207 +#: common/setting/user.py:213 msgid "Date Format" msgstr "Datumformat" -#: common/setting/user.py:208 +#: common/setting/user.py:214 msgid "Preferred format for displaying dates" msgstr "" -#: common/setting/user.py:221 +#: common/setting/user.py:227 msgid "Show Stock History" msgstr "" -#: common/setting/user.py:222 +#: common/setting/user.py:228 msgid "Display stock history information in the part detail page" msgstr "" -#: common/setting/user.py:227 +#: common/setting/user.py:233 msgid "Show Last Breadcrumb" msgstr "" -#: common/setting/user.py:228 +#: common/setting/user.py:234 msgid "Show the current page in breadcrumbs" msgstr "" -#: common/setting/user.py:233 +#: common/setting/user.py:239 msgid "Show full stock location in tables" msgstr "" -#: common/setting/user.py:235 +#: common/setting/user.py:241 msgid "Disabled: The full location path is displayed as a hover tooltip. Enabled: The full location path is displayed as plain text." msgstr "" -#: common/setting/user.py:241 +#: common/setting/user.py:247 msgid "Show full part categories in tables" msgstr "" -#: common/setting/user.py:243 +#: common/setting/user.py:249 msgid "Disabled: The full category path is displayed as a hover tooltip. Enabled: The full category path is displayed as plain text." msgstr "" -#: common/setting/user.py:249 +#: common/setting/user.py:255 msgid "Receive error reports" msgstr "" -#: common/setting/user.py:250 +#: common/setting/user.py:256 msgid "Receive notifications for system errors" msgstr "" -#: common/setting/user.py:255 +#: common/setting/user.py:261 msgid "Last used printing machines" msgstr "" -#: common/setting/user.py:256 +#: common/setting/user.py:262 msgid "Save the last used printing machines for a user" msgstr "" -#: common/validators.py:34 +#: common/validators.py:38 +msgid "All models" +msgstr "" + +#: common/validators.py:63 msgid "No attachment model type provided" msgstr "" -#: common/validators.py:40 +#: common/validators.py:69 msgid "Invalid attachment model type" msgstr "" -#: common/validators.py:81 +#: common/validators.py:110 msgid "Minimum places cannot be greater than maximum places" msgstr "" -#: common/validators.py:93 +#: common/validators.py:122 msgid "Maximum places cannot be less than minimum places" msgstr "" -#: common/validators.py:104 +#: common/validators.py:133 msgid "An empty domain is not allowed." msgstr "" -#: common/validators.py:106 +#: common/validators.py:135 #, python-brace-format msgid "Invalid domain name: {domain}" msgstr "Ogiltigt domännamn: {domain}" -#: common/validators.py:122 +#: common/validators.py:151 msgid "Value must be uppercase" msgstr "" -#: common/validators.py:128 +#: common/validators.py:157 msgid "Value must be a valid variable identifier" msgstr "" -#: company/api.py:147 +#: company/api.py:141 msgid "Part is Active" msgstr "" -#: company/api.py:151 +#: company/api.py:145 msgid "Manufacturer is Active" msgstr "" -#: company/api.py:286 +#: company/api.py:246 msgid "Supplier Part is Active" msgstr "" -#: company/api.py:290 +#: company/api.py:250 msgid "Internal Part is Active" msgstr "" -#: company/api.py:295 +#: company/api.py:255 msgid "Supplier is Active" msgstr "" -#: company/api.py:307 company/models.py:520 company/serializers.py:457 -#: part/serializers.py:566 +#: company/api.py:267 company/models.py:522 company/serializers.py:502 +#: part/serializers.py:477 msgid "Manufacturer" msgstr "Tillverkare" -#: company/api.py:314 company/models.py:121 company/models.py:392 +#: company/api.py:274 company/models.py:122 company/models.py:393 #: stock/api.py:900 msgid "Company" msgstr "Företag" -#: company/api.py:324 +#: company/api.py:284 msgid "Has Stock" msgstr "" -#: company/models.py:122 +#: company/models.py:123 msgid "Companies" msgstr "Företag" -#: company/models.py:150 +#: company/models.py:151 msgid "Company description" msgstr "Företagsbeskrivning" -#: company/models.py:151 +#: company/models.py:152 msgid "Description of the company" msgstr "" -#: company/models.py:157 +#: company/models.py:158 msgid "Website" msgstr "Webbplats" -#: company/models.py:158 +#: company/models.py:159 msgid "Company website URL" msgstr "" -#: company/models.py:164 +#: company/models.py:165 msgid "Phone number" msgstr "Telefonnummer" -#: company/models.py:166 +#: company/models.py:167 msgid "Contact phone number" msgstr "" -#: company/models.py:173 +#: company/models.py:174 msgid "Contact email address" msgstr "" -#: company/models.py:178 company/models.py:296 order/models.py:513 +#: company/models.py:179 company/models.py:297 order/models.py:514 #: users/models.py:561 msgid "Contact" msgstr "Kontakt" -#: company/models.py:180 +#: company/models.py:181 msgid "Point of contact" msgstr "" -#: company/models.py:186 +#: company/models.py:187 msgid "Link to external company information" msgstr "" -#: company/models.py:191 +#: company/models.py:192 msgid "Is this company active?" msgstr "" -#: company/models.py:196 +#: company/models.py:197 msgid "Is customer" msgstr "Är kund" -#: company/models.py:197 +#: company/models.py:198 msgid "Do you sell items to this company?" msgstr "" -#: company/models.py:202 +#: company/models.py:203 msgid "Is supplier" msgstr "Är leverantör" -#: company/models.py:203 +#: company/models.py:204 msgid "Do you purchase items from this company?" msgstr "" -#: company/models.py:208 +#: company/models.py:209 msgid "Is manufacturer" msgstr "Är tillverkare" -#: company/models.py:209 +#: company/models.py:210 msgid "Does this company manufacture parts?" msgstr "" -#: company/models.py:217 +#: company/models.py:218 msgid "Default currency used for this company" msgstr "" -#: company/models.py:224 +#: company/models.py:225 msgid "Tax ID" msgstr "" -#: company/models.py:225 +#: company/models.py:226 msgid "Company Tax ID" msgstr "" -#: company/models.py:335 order/models.py:523 order/models.py:2288 +#: company/models.py:336 order/models.py:524 order/models.py:2289 msgid "Address" msgstr "Adress" -#: company/models.py:336 +#: company/models.py:337 msgid "Addresses" msgstr "Adresser" -#: company/models.py:393 +#: company/models.py:394 msgid "Select company" msgstr "Välj företag" -#: company/models.py:398 +#: company/models.py:399 msgid "Address title" msgstr "" -#: company/models.py:399 +#: company/models.py:400 msgid "Title describing the address entry" msgstr "" -#: company/models.py:405 +#: company/models.py:406 msgid "Primary address" msgstr "Primär adress" -#: company/models.py:406 +#: company/models.py:407 msgid "Set as primary address" msgstr "" -#: company/models.py:411 +#: company/models.py:412 msgid "Line 1" msgstr "Rad 1" -#: company/models.py:412 +#: company/models.py:413 msgid "Address line 1" msgstr "Adressrad 1" -#: company/models.py:418 +#: company/models.py:419 msgid "Line 2" msgstr "Rad 2" -#: company/models.py:419 +#: company/models.py:420 msgid "Address line 2" msgstr "Adressrad 2" -#: company/models.py:425 company/models.py:426 +#: company/models.py:426 company/models.py:427 msgid "Postal code" msgstr "Postnummer" -#: company/models.py:432 +#: company/models.py:433 msgid "City/Region" msgstr "" -#: company/models.py:433 +#: company/models.py:434 msgid "Postal code city/region" msgstr "" -#: company/models.py:439 +#: company/models.py:440 msgid "State/Province" msgstr "" -#: company/models.py:440 +#: company/models.py:441 msgid "State or province" msgstr "" -#: company/models.py:446 +#: company/models.py:447 msgid "Country" msgstr "Land" -#: company/models.py:447 +#: company/models.py:448 msgid "Address country" msgstr "" -#: company/models.py:453 +#: company/models.py:454 msgid "Courier shipping notes" msgstr "" -#: company/models.py:454 +#: company/models.py:455 msgid "Notes for shipping courier" msgstr "" -#: company/models.py:460 +#: company/models.py:461 msgid "Internal shipping notes" msgstr "" -#: company/models.py:461 +#: company/models.py:462 msgid "Shipping notes for internal use" msgstr "" -#: company/models.py:468 +#: company/models.py:469 msgid "Link to address information (external)" msgstr "" -#: company/models.py:492 company/models.py:609 company/models.py:832 -#: company/serializers.py:471 stock/api.py:561 +#: company/models.py:494 company/models.py:786 company/serializers.py:516 +#: stock/api.py:561 msgid "Manufacturer Part" msgstr "" -#: company/models.py:509 company/models.py:800 stock/models.py:1025 +#: company/models.py:511 company/models.py:754 stock/models.py:1025 #: stock/serializers.py:407 msgid "Base Part" msgstr "Basdel" -#: company/models.py:511 company/models.py:802 +#: company/models.py:513 company/models.py:756 msgid "Select part" msgstr "Välj del" -#: company/models.py:521 +#: company/models.py:523 msgid "Select manufacturer" msgstr "" -#: company/models.py:527 company/serializers.py:479 order/serializers.py:734 -#: part/serializers.py:576 +#: company/models.py:529 company/serializers.py:524 order/serializers.py:745 +#: part/serializers.py:487 msgid "MPN" msgstr "MPN" -#: company/models.py:528 stock/serializers.py:572 +#: company/models.py:530 stock/serializers.py:572 msgid "Manufacturer Part Number" msgstr "" -#: company/models.py:535 +#: company/models.py:537 msgid "URL for external manufacturer part link" msgstr "" -#: company/models.py:544 +#: company/models.py:546 msgid "Manufacturer part description" msgstr "" -#: company/models.py:597 -msgid "Manufacturer Part Parameter" -msgstr "" - -#: company/models.py:616 -msgid "Parameter name" -msgstr "" - -#: company/models.py:623 -msgid "Parameter value" -msgstr "Parametervärde" - -#: company/models.py:630 part/models.py:1195 part/models.py:3857 -msgid "Units" -msgstr "" - -#: company/models.py:631 -msgid "Parameter units" -msgstr "" - -#: company/models.py:740 +#: company/models.py:694 msgid "Pack units must be compatible with the base part units" msgstr "" -#: company/models.py:747 +#: company/models.py:701 msgid "Pack units must be greater than zero" msgstr "" -#: company/models.py:761 +#: company/models.py:715 msgid "Linked manufacturer part must reference the same base part" msgstr "" -#: company/models.py:810 company/serializers.py:449 company/serializers.py:467 -#: order/models.py:639 part/serializers.py:550 +#: company/models.py:764 company/serializers.py:494 company/serializers.py:512 +#: order/models.py:640 part/serializers.py:461 #: plugin/builtin/suppliers/digikey.py:26 plugin/builtin/suppliers/lcsc.py:27 #: plugin/builtin/suppliers/mouser.py:25 plugin/builtin/suppliers/tme.py:27 #: stock/api.py:567 templates/email/overdue_purchase_order.html:16 msgid "Supplier" msgstr "Leverantör" -#: company/models.py:811 +#: company/models.py:765 msgid "Select supplier" msgstr "Välj leverantör" -#: company/models.py:817 part/serializers.py:561 +#: company/models.py:771 part/serializers.py:472 msgid "Supplier stock keeping unit" msgstr "" -#: company/models.py:823 +#: company/models.py:777 msgid "Is this supplier part active?" msgstr "" -#: company/models.py:833 +#: company/models.py:787 msgid "Select manufacturer part" msgstr "" -#: company/models.py:840 +#: company/models.py:794 msgid "URL for external supplier part link" msgstr "" -#: company/models.py:849 +#: company/models.py:803 msgid "Supplier part description" msgstr "" -#: company/models.py:856 order/serializers.py:883 order/serializers.py:2047 -#: part/models.py:4070 part/models.py:4450 part/models.py:4819 -#: report/templates/report/inventree_bill_of_materials_report.html:140 -#: report/templates/report/inventree_purchase_order_report.html:39 -#: report/templates/report/inventree_return_order_report.html:27 -#: report/templates/report/inventree_sales_order_report.html:32 -#: report/templates/report/inventree_stock_location_report.html:105 -#: stock/serializers.py:813 -msgid "Note" -msgstr "" - -#: company/models.py:865 part/models.py:2250 +#: company/models.py:819 part/models.py:2338 msgid "base cost" msgstr "" -#: company/models.py:866 part/models.py:2251 +#: company/models.py:820 part/models.py:2339 msgid "Minimum charge (e.g. stocking fee)" msgstr "" -#: company/models.py:873 order/serializers.py:875 stock/models.py:1056 +#: company/models.py:827 order/serializers.py:886 stock/models.py:1056 #: stock/serializers.py:1606 msgid "Packaging" msgstr "" -#: company/models.py:874 +#: company/models.py:828 msgid "Part packaging" msgstr "" -#: company/models.py:879 +#: company/models.py:833 msgid "Pack Quantity" msgstr "" -#: company/models.py:881 +#: company/models.py:835 msgid "Total quantity supplied in a single pack. Leave empty for single items." msgstr "" -#: company/models.py:900 part/models.py:2257 +#: company/models.py:854 part/models.py:2345 msgid "multiple" msgstr "" -#: company/models.py:901 +#: company/models.py:855 msgid "Order multiple" msgstr "" -#: company/models.py:913 +#: company/models.py:867 msgid "Quantity available from supplier" msgstr "" -#: company/models.py:919 +#: company/models.py:873 msgid "Availability Updated" msgstr "" -#: company/models.py:920 +#: company/models.py:874 msgid "Date of last update of availability data" msgstr "" -#: company/models.py:1048 +#: company/models.py:1002 msgid "Supplier Price Break" msgstr "" -#: company/serializers.py:181 +#: company/serializers.py:184 +msgid "Primary Address" +msgstr "" + +#: company/serializers.py:186 msgid "Return the string representation for the primary address. This property exists for backwards compatibility." msgstr "" -#: company/serializers.py:212 +#: company/serializers.py:218 msgid "Default currency used for this supplier" msgstr "" -#: company/serializers.py:248 +#: company/serializers.py:260 msgid "Company Name" msgstr "Företagsnamn" -#: company/serializers.py:433 part/serializers.py:955 stock/serializers.py:428 +#: company/serializers.py:460 part/serializers.py:840 stock/serializers.py:428 msgid "In Stock" msgstr "I lager" +#: company/serializers.py:477 +msgid "Price Breaks" +msgstr "" + #: data_exporter/mixins.py:325 data_exporter/mixins.py:403 msgid "Error occurred during data export" msgstr "" @@ -4290,7 +4418,7 @@ msgstr "" msgid "Errors" msgstr "Fel" -#: importer/models.py:550 part/serializers.py:1268 +#: importer/models.py:550 part/serializers.py:1133 msgid "Valid" msgstr "Giltig" @@ -4402,7 +4530,7 @@ msgstr "" msgid "Connected" msgstr "Ansluten" -#: machine/machine_types/label_printer.py:232 order/api.py:1795 +#: machine/machine_types/label_printer.py:232 order/api.py:1800 msgid "Unknown" msgstr "Okänd" @@ -4530,105 +4658,105 @@ msgstr "" msgid "Maximum value for progress type, required if type=progress" msgstr "" -#: order/api.py:125 +#: order/api.py:130 msgid "Order Reference" msgstr "" -#: order/api.py:153 order/api.py:1207 +#: order/api.py:158 order/api.py:1212 msgid "Outstanding" msgstr "" -#: order/api.py:169 +#: order/api.py:174 msgid "Has Project Code" msgstr "Har projektkod" -#: order/api.py:183 order/models.py:488 +#: order/api.py:188 order/models.py:489 msgid "Created By" msgstr "Skapad av" -#: order/api.py:187 +#: order/api.py:192 msgid "Created Before" msgstr "" -#: order/api.py:191 +#: order/api.py:196 msgid "Created After" msgstr "Skapad efter" -#: order/api.py:195 +#: order/api.py:200 msgid "Has Start Date" msgstr "" -#: order/api.py:203 +#: order/api.py:208 msgid "Start Date Before" msgstr "" -#: order/api.py:207 +#: order/api.py:212 msgid "Start Date After" msgstr "" -#: order/api.py:211 +#: order/api.py:216 msgid "Has Target Date" msgstr "" -#: order/api.py:219 +#: order/api.py:224 msgid "Target Date Before" msgstr "" -#: order/api.py:223 +#: order/api.py:228 msgid "Target Date After" msgstr "" -#: order/api.py:274 +#: order/api.py:279 msgid "Has Pricing" msgstr "" -#: order/api.py:327 order/api.py:812 order/api.py:1490 +#: order/api.py:332 order/api.py:818 order/api.py:1495 msgid "Completed Before" msgstr "" -#: order/api.py:331 order/api.py:816 order/api.py:1494 +#: order/api.py:336 order/api.py:822 order/api.py:1499 msgid "Completed After" msgstr "" -#: order/api.py:337 order/api.py:341 +#: order/api.py:342 order/api.py:346 msgid "External Build Order" msgstr "" -#: order/api.py:526 order/api.py:914 order/api.py:1170 order/models.py:1922 -#: order/models.py:2049 order/models.py:2099 order/models.py:2279 -#: order/models.py:2477 order/models.py:2999 order/models.py:3065 +#: order/api.py:532 order/api.py:919 order/api.py:1175 order/models.py:1923 +#: order/models.py:2050 order/models.py:2100 order/models.py:2280 +#: order/models.py:2478 order/models.py:3000 order/models.py:3066 msgid "Order" msgstr "" -#: order/api.py:530 order/api.py:982 +#: order/api.py:536 order/api.py:987 msgid "Order Complete" msgstr "" -#: order/api.py:562 order/api.py:566 order/serializers.py:745 +#: order/api.py:568 order/api.py:572 order/serializers.py:756 msgid "Internal Part" msgstr "Intern del" -#: order/api.py:584 +#: order/api.py:590 msgid "Order Pending" msgstr "" -#: order/api.py:967 +#: order/api.py:972 msgid "Completed" msgstr "Slutförd" -#: order/api.py:1223 +#: order/api.py:1228 msgid "Has Shipment" msgstr "" -#: order/api.py:1789 order/models.py:552 order/models.py:1923 -#: order/models.py:2050 +#: order/api.py:1794 order/models.py:553 order/models.py:1924 +#: order/models.py:2051 #: report/templates/report/inventree_purchase_order_report.html:14 #: stock/serializers.py:129 templates/email/overdue_purchase_order.html:15 msgid "Purchase Order" msgstr "" -#: order/api.py:1791 order/models.py:1251 order/models.py:2100 -#: order/models.py:2280 order/models.py:2478 +#: order/api.py:1796 order/models.py:1252 order/models.py:2101 +#: order/models.py:2281 order/models.py:2479 #: report/templates/report/inventree_build_order_report.html:135 #: report/templates/report/inventree_sales_order_report.html:14 #: report/templates/report/inventree_sales_order_shipment_report.html:15 @@ -4636,8 +4764,8 @@ msgstr "" msgid "Sales Order" msgstr "Försäljningsorder" -#: order/api.py:1793 order/models.py:2649 order/models.py:3000 -#: order/models.py:3066 +#: order/api.py:1798 order/models.py:2650 order/models.py:3001 +#: order/models.py:3067 #: report/templates/report/inventree_return_order_report.html:13 #: templates/email/overdue_return_order.html:15 msgid "Return Order" @@ -4653,722 +4781,722 @@ msgstr "" msgid "Total price for this order" msgstr "" -#: order/models.py:96 order/serializers.py:77 +#: order/models.py:96 order/serializers.py:78 msgid "Order Currency" msgstr "" -#: order/models.py:99 order/serializers.py:78 +#: order/models.py:99 order/serializers.py:79 msgid "Currency for this order (leave blank to use company default)" msgstr "" -#: order/models.py:324 +#: order/models.py:325 msgid "This order is locked and cannot be modified" msgstr "" -#: order/models.py:376 +#: order/models.py:377 msgid "Contact does not match selected company" msgstr "" -#: order/models.py:383 +#: order/models.py:384 msgid "Start date must be before target date" msgstr "" -#: order/models.py:390 +#: order/models.py:391 msgid "Address does not match selected company" msgstr "" -#: order/models.py:443 +#: order/models.py:444 msgid "Order description (optional)" msgstr "" -#: order/models.py:452 order/models.py:1806 +#: order/models.py:453 order/models.py:1807 msgid "Select project code for this order" msgstr "" -#: order/models.py:458 order/models.py:1787 order/models.py:2344 +#: order/models.py:459 order/models.py:1788 order/models.py:2345 msgid "Link to external page" msgstr "" -#: order/models.py:465 +#: order/models.py:466 msgid "Start date" msgstr "Startdatum" -#: order/models.py:466 +#: order/models.py:467 msgid "Scheduled start date for this order" msgstr "" -#: order/models.py:472 order/models.py:1794 order/serializers.py:309 +#: order/models.py:473 order/models.py:1795 order/serializers.py:317 #: report/templates/report/inventree_build_order_report.html:125 msgid "Target Date" msgstr "Måldatum" -#: order/models.py:474 +#: order/models.py:475 msgid "Expected date for order delivery. Order will be overdue after this date." msgstr "" -#: order/models.py:494 +#: order/models.py:495 msgid "Issue Date" msgstr "" -#: order/models.py:495 +#: order/models.py:496 msgid "Date order was issued" msgstr "" -#: order/models.py:503 +#: order/models.py:504 msgid "User or group responsible for this order" msgstr "" -#: order/models.py:514 +#: order/models.py:515 msgid "Point of contact for this order" msgstr "" -#: order/models.py:524 +#: order/models.py:525 msgid "Company address for this order" msgstr "" -#: order/models.py:615 order/models.py:1312 +#: order/models.py:616 order/models.py:1313 msgid "Order reference" msgstr "" -#: order/models.py:624 order/models.py:1336 order/models.py:2737 +#: order/models.py:625 order/models.py:1337 order/models.py:2738 #: stock/serializers.py:559 stock/serializers.py:988 users/models.py:542 msgid "Status" msgstr "Status" -#: order/models.py:625 +#: order/models.py:626 msgid "Purchase order status" msgstr "" -#: order/models.py:640 +#: order/models.py:641 msgid "Company from which the items are being ordered" msgstr "" -#: order/models.py:651 +#: order/models.py:652 msgid "Supplier Reference" msgstr "" -#: order/models.py:652 +#: order/models.py:653 msgid "Supplier order reference code" msgstr "" -#: order/models.py:661 +#: order/models.py:662 msgid "received by" msgstr "" -#: order/models.py:668 order/models.py:2752 +#: order/models.py:669 order/models.py:2753 msgid "Date order was completed" msgstr "" -#: order/models.py:677 order/models.py:1981 +#: order/models.py:678 order/models.py:1982 msgid "Destination" msgstr "Mål" -#: order/models.py:678 order/models.py:1985 +#: order/models.py:679 order/models.py:1986 msgid "Destination for received items" msgstr "" -#: order/models.py:724 +#: order/models.py:725 msgid "Part supplier must match PO supplier" msgstr "" -#: order/models.py:994 +#: order/models.py:995 msgid "Line item does not match purchase order" msgstr "" -#: order/models.py:997 +#: order/models.py:998 msgid "Line item is missing a linked part" msgstr "" -#: order/models.py:1011 +#: order/models.py:1012 msgid "Quantity must be a positive number" msgstr "" -#: order/models.py:1323 order/models.py:2724 stock/models.py:1078 +#: order/models.py:1324 order/models.py:2725 stock/models.py:1078 #: stock/models.py:1079 stock/serializers.py:1322 #: templates/email/overdue_return_order.html:16 #: templates/email/overdue_sales_order.html:16 msgid "Customer" msgstr "Kund" -#: order/models.py:1324 +#: order/models.py:1325 msgid "Company to which the items are being sold" msgstr "" -#: order/models.py:1337 +#: order/models.py:1338 msgid "Sales order status" msgstr "" -#: order/models.py:1348 order/models.py:2744 +#: order/models.py:1349 order/models.py:2745 msgid "Customer Reference " msgstr "" -#: order/models.py:1349 order/models.py:2745 +#: order/models.py:1350 order/models.py:2746 msgid "Customer order reference code" msgstr "" -#: order/models.py:1353 order/models.py:2296 +#: order/models.py:1354 order/models.py:2297 msgid "Shipment Date" msgstr "" -#: order/models.py:1362 +#: order/models.py:1363 msgid "shipped by" msgstr "" -#: order/models.py:1413 +#: order/models.py:1414 msgid "Order is already complete" msgstr "" -#: order/models.py:1416 +#: order/models.py:1417 msgid "Order is already cancelled" msgstr "" -#: order/models.py:1420 +#: order/models.py:1421 msgid "Only an open order can be marked as complete" msgstr "" -#: order/models.py:1424 +#: order/models.py:1425 msgid "Order cannot be completed as there are incomplete shipments" msgstr "" -#: order/models.py:1429 +#: order/models.py:1430 msgid "Order cannot be completed as there are incomplete allocations" msgstr "" -#: order/models.py:1438 +#: order/models.py:1439 msgid "Order cannot be completed as there are incomplete line items" msgstr "" -#: order/models.py:1733 order/models.py:1749 +#: order/models.py:1734 order/models.py:1750 msgid "The order is locked and cannot be modified" msgstr "" -#: order/models.py:1757 +#: order/models.py:1758 msgid "Item quantity" msgstr "" -#: order/models.py:1774 +#: order/models.py:1775 msgid "Line item reference" msgstr "" -#: order/models.py:1781 +#: order/models.py:1782 msgid "Line item notes" msgstr "" -#: order/models.py:1796 +#: order/models.py:1797 msgid "Target date for this line item (leave blank to use the target date from the order)" msgstr "" -#: order/models.py:1826 +#: order/models.py:1827 msgid "Line item description (optional)" msgstr "" -#: order/models.py:1833 +#: order/models.py:1834 msgid "Additional context for this line" msgstr "" -#: order/models.py:1843 +#: order/models.py:1844 msgid "Unit price" msgstr "" -#: order/models.py:1862 +#: order/models.py:1863 msgid "Purchase Order Line Item" msgstr "" -#: order/models.py:1889 +#: order/models.py:1890 msgid "Supplier part must match supplier" msgstr "" -#: order/models.py:1894 +#: order/models.py:1895 msgid "Build order must be marked as external" msgstr "" -#: order/models.py:1901 +#: order/models.py:1902 msgid "Build orders can only be linked to assembly parts" msgstr "" -#: order/models.py:1907 +#: order/models.py:1908 msgid "Build order part must match line item part" msgstr "" -#: order/models.py:1942 +#: order/models.py:1943 msgid "Supplier part" msgstr "" -#: order/models.py:1949 +#: order/models.py:1950 msgid "Received" msgstr "" -#: order/models.py:1950 +#: order/models.py:1951 msgid "Number of items received" msgstr "" -#: order/models.py:1958 stock/models.py:1201 stock/serializers.py:637 +#: order/models.py:1959 stock/models.py:1201 stock/serializers.py:637 msgid "Purchase Price" msgstr "" -#: order/models.py:1959 +#: order/models.py:1960 msgid "Unit purchase price" msgstr "" -#: order/models.py:1975 +#: order/models.py:1976 msgid "External Build Order to be fulfilled by this line item" msgstr "" -#: order/models.py:2038 +#: order/models.py:2039 msgid "Purchase Order Extra Line" msgstr "" -#: order/models.py:2067 +#: order/models.py:2068 msgid "Sales Order Line Item" msgstr "" -#: order/models.py:2092 +#: order/models.py:2093 msgid "Only salable parts can be assigned to a sales order" msgstr "" -#: order/models.py:2118 +#: order/models.py:2119 msgid "Sale Price" msgstr "" -#: order/models.py:2119 +#: order/models.py:2120 msgid "Unit sale price" msgstr "" -#: order/models.py:2128 order/status_codes.py:50 +#: order/models.py:2129 order/status_codes.py:50 msgid "Shipped" msgstr "Skickad" -#: order/models.py:2129 +#: order/models.py:2130 msgid "Shipped quantity" msgstr "" -#: order/models.py:2240 +#: order/models.py:2241 msgid "Sales Order Shipment" msgstr "" -#: order/models.py:2253 +#: order/models.py:2254 msgid "Shipment address must match the customer" msgstr "" -#: order/models.py:2289 +#: order/models.py:2290 msgid "Shipping address for this shipment" msgstr "" -#: order/models.py:2297 +#: order/models.py:2298 msgid "Date of shipment" msgstr "" -#: order/models.py:2303 +#: order/models.py:2304 msgid "Delivery Date" msgstr "Leveransdatum" -#: order/models.py:2304 +#: order/models.py:2305 msgid "Date of delivery of shipment" msgstr "" -#: order/models.py:2312 +#: order/models.py:2313 msgid "Checked By" msgstr "Kontrollerad av" -#: order/models.py:2313 +#: order/models.py:2314 msgid "User who checked this shipment" msgstr "" -#: order/models.py:2320 order/models.py:2574 order/serializers.py:1711 -#: order/serializers.py:1835 +#: order/models.py:2321 order/models.py:2575 order/serializers.py:1725 +#: order/serializers.py:1849 #: report/templates/report/inventree_sales_order_shipment_report.html:14 msgid "Shipment" msgstr "" -#: order/models.py:2321 +#: order/models.py:2322 msgid "Shipment number" msgstr "" -#: order/models.py:2329 +#: order/models.py:2330 msgid "Tracking Number" msgstr "" -#: order/models.py:2330 +#: order/models.py:2331 msgid "Shipment tracking information" msgstr "" -#: order/models.py:2337 +#: order/models.py:2338 msgid "Invoice Number" msgstr "Fakturanummer" -#: order/models.py:2338 +#: order/models.py:2339 msgid "Reference number for associated invoice" msgstr "" -#: order/models.py:2377 +#: order/models.py:2378 msgid "Shipment has already been sent" msgstr "" -#: order/models.py:2380 +#: order/models.py:2381 msgid "Shipment has no allocated stock items" msgstr "" -#: order/models.py:2387 +#: order/models.py:2388 msgid "Shipment must be checked before it can be completed" msgstr "" -#: order/models.py:2466 +#: order/models.py:2467 msgid "Sales Order Extra Line" msgstr "" -#: order/models.py:2495 +#: order/models.py:2496 msgid "Sales Order Allocation" msgstr "" -#: order/models.py:2518 order/models.py:2520 +#: order/models.py:2519 order/models.py:2521 msgid "Stock item has not been assigned" msgstr "" -#: order/models.py:2527 +#: order/models.py:2528 msgid "Cannot allocate stock item to a line with a different part" msgstr "" -#: order/models.py:2530 +#: order/models.py:2531 msgid "Cannot allocate stock to a line without a part" msgstr "" -#: order/models.py:2533 +#: order/models.py:2534 msgid "Allocation quantity cannot exceed stock quantity" msgstr "" -#: order/models.py:2552 order/serializers.py:1581 +#: order/models.py:2553 order/serializers.py:1595 msgid "Quantity must be 1 for serialized stock item" msgstr "" -#: order/models.py:2555 +#: order/models.py:2556 msgid "Sales order does not match shipment" msgstr "" -#: order/models.py:2556 plugin/base/barcodes/api.py:642 +#: order/models.py:2557 plugin/base/barcodes/api.py:642 msgid "Shipment does not match sales order" msgstr "" -#: order/models.py:2564 +#: order/models.py:2565 msgid "Line" msgstr "Rad" -#: order/models.py:2575 +#: order/models.py:2576 msgid "Sales order shipment reference" msgstr "" -#: order/models.py:2588 order/models.py:3007 +#: order/models.py:2589 order/models.py:3008 msgid "Item" msgstr "" -#: order/models.py:2589 +#: order/models.py:2590 msgid "Select stock item to allocate" msgstr "" -#: order/models.py:2598 +#: order/models.py:2599 msgid "Enter stock allocation quantity" msgstr "" -#: order/models.py:2713 +#: order/models.py:2714 msgid "Return Order reference" msgstr "" -#: order/models.py:2725 +#: order/models.py:2726 msgid "Company from which items are being returned" msgstr "" -#: order/models.py:2738 +#: order/models.py:2739 msgid "Return order status" msgstr "" -#: order/models.py:2965 +#: order/models.py:2966 msgid "Return Order Line Item" msgstr "" -#: order/models.py:2978 +#: order/models.py:2979 msgid "Stock item must be specified" msgstr "" -#: order/models.py:2982 +#: order/models.py:2983 msgid "Return quantity exceeds stock quantity" msgstr "" -#: order/models.py:2987 +#: order/models.py:2988 msgid "Return quantity must be greater than zero" msgstr "" -#: order/models.py:2992 +#: order/models.py:2993 msgid "Invalid quantity for serialized stock item" msgstr "" -#: order/models.py:3008 +#: order/models.py:3009 msgid "Select item to return from customer" msgstr "" -#: order/models.py:3023 +#: order/models.py:3024 msgid "Received Date" msgstr "" -#: order/models.py:3024 +#: order/models.py:3025 msgid "The date this this return item was received" msgstr "" -#: order/models.py:3036 +#: order/models.py:3037 msgid "Outcome" msgstr "" -#: order/models.py:3037 +#: order/models.py:3038 msgid "Outcome for this line item" msgstr "" -#: order/models.py:3044 +#: order/models.py:3045 msgid "Cost associated with return or repair for this line item" msgstr "" -#: order/models.py:3054 +#: order/models.py:3055 msgid "Return Order Extra Line" msgstr "" -#: order/serializers.py:91 +#: order/serializers.py:92 msgid "Order ID" msgstr "" -#: order/serializers.py:91 +#: order/serializers.py:92 msgid "ID of the order to duplicate" msgstr "" -#: order/serializers.py:97 +#: order/serializers.py:98 msgid "Copy Lines" msgstr "" -#: order/serializers.py:98 +#: order/serializers.py:99 msgid "Copy line items from the original order" msgstr "" -#: order/serializers.py:104 +#: order/serializers.py:105 msgid "Copy Extra Lines" msgstr "" -#: order/serializers.py:105 +#: order/serializers.py:106 msgid "Copy extra line items from the original order" msgstr "" -#: order/serializers.py:120 +#: order/serializers.py:121 #: report/templates/report/inventree_purchase_order_report.html:29 #: report/templates/report/inventree_return_order_report.html:19 #: report/templates/report/inventree_sales_order_report.html:22 msgid "Line Items" msgstr "" -#: order/serializers.py:125 +#: order/serializers.py:126 msgid "Completed Lines" msgstr "" -#: order/serializers.py:192 +#: order/serializers.py:199 msgid "Duplicate Order" msgstr "" -#: order/serializers.py:193 +#: order/serializers.py:200 msgid "Specify options for duplicating this order" msgstr "" -#: order/serializers.py:270 +#: order/serializers.py:278 msgid "Invalid order ID" msgstr "" -#: order/serializers.py:466 +#: order/serializers.py:477 msgid "Supplier Name" msgstr "Leverantörsnamn" -#: order/serializers.py:510 +#: order/serializers.py:521 msgid "Order cannot be cancelled" msgstr "" -#: order/serializers.py:525 order/serializers.py:1602 +#: order/serializers.py:536 order/serializers.py:1616 msgid "Allow order to be closed with incomplete line items" msgstr "" -#: order/serializers.py:535 order/serializers.py:1612 +#: order/serializers.py:546 order/serializers.py:1626 msgid "Order has incomplete line items" msgstr "" -#: order/serializers.py:665 +#: order/serializers.py:676 msgid "Order is not open" msgstr "" -#: order/serializers.py:692 +#: order/serializers.py:703 msgid "Auto Pricing" msgstr "" -#: order/serializers.py:694 +#: order/serializers.py:705 msgid "Automatically calculate purchase price based on supplier part data" msgstr "" -#: order/serializers.py:704 +#: order/serializers.py:715 msgid "Purchase price currency" msgstr "" -#: order/serializers.py:718 +#: order/serializers.py:729 msgid "Merge Items" msgstr "" -#: order/serializers.py:720 +#: order/serializers.py:731 msgid "Merge items with the same part, destination and target date into one line item" msgstr "" -#: order/serializers.py:727 part/serializers.py:560 +#: order/serializers.py:738 part/serializers.py:471 msgid "SKU" msgstr "SKU" -#: order/serializers.py:741 part/models.py:1089 part/serializers.py:372 +#: order/serializers.py:752 part/models.py:1177 part/serializers.py:337 msgid "Internal Part Number" msgstr "" -#: order/serializers.py:749 +#: order/serializers.py:760 msgid "Internal Part Name" msgstr "" -#: order/serializers.py:765 +#: order/serializers.py:776 msgid "Supplier part must be specified" msgstr "" -#: order/serializers.py:768 +#: order/serializers.py:779 msgid "Purchase order must be specified" msgstr "" -#: order/serializers.py:776 +#: order/serializers.py:787 msgid "Supplier must match purchase order" msgstr "" -#: order/serializers.py:777 +#: order/serializers.py:788 msgid "Purchase order must match supplier" msgstr "" -#: order/serializers.py:825 order/serializers.py:1682 +#: order/serializers.py:836 order/serializers.py:1696 msgid "Line Item" msgstr "" -#: order/serializers.py:834 order/serializers.py:974 order/serializers.py:2043 +#: order/serializers.py:845 order/serializers.py:985 order/serializers.py:2060 msgid "Select destination location for received items" msgstr "" -#: order/serializers.py:850 +#: order/serializers.py:861 msgid "Enter batch code for incoming stock items" msgstr "" -#: order/serializers.py:857 stock/models.py:1160 +#: order/serializers.py:868 stock/models.py:1160 #: templates/email/stale_stock_notification.html:22 users/models.py:137 msgid "Expiry Date" msgstr "" -#: order/serializers.py:858 +#: order/serializers.py:869 msgid "Enter expiry date for incoming stock items" msgstr "" -#: order/serializers.py:866 +#: order/serializers.py:877 msgid "Enter serial numbers for incoming stock items" msgstr "" -#: order/serializers.py:876 +#: order/serializers.py:887 msgid "Override packaging information for incoming stock items" msgstr "" -#: order/serializers.py:884 order/serializers.py:2048 +#: order/serializers.py:895 order/serializers.py:2065 msgid "Additional note for incoming stock items" msgstr "" -#: order/serializers.py:891 +#: order/serializers.py:902 msgid "Barcode" msgstr "Streckkod" -#: order/serializers.py:892 +#: order/serializers.py:903 msgid "Scanned barcode" msgstr "" -#: order/serializers.py:908 +#: order/serializers.py:919 msgid "Barcode is already in use" msgstr "" -#: order/serializers.py:991 order/serializers.py:2067 +#: order/serializers.py:1002 order/serializers.py:2084 msgid "Line items must be provided" msgstr "" -#: order/serializers.py:1010 +#: order/serializers.py:1021 msgid "Destination location must be specified" msgstr "" -#: order/serializers.py:1017 +#: order/serializers.py:1028 msgid "Supplied barcode values must be unique" msgstr "" -#: order/serializers.py:1121 +#: order/serializers.py:1135 msgid "Shipments" msgstr "" -#: order/serializers.py:1125 +#: order/serializers.py:1139 msgid "Completed Shipments" msgstr "" -#: order/serializers.py:1293 +#: order/serializers.py:1307 msgid "Sale price currency" msgstr "" -#: order/serializers.py:1339 +#: order/serializers.py:1353 msgid "Allocated Items" msgstr "" -#: order/serializers.py:1484 +#: order/serializers.py:1498 msgid "No shipment details provided" msgstr "" -#: order/serializers.py:1545 order/serializers.py:1691 +#: order/serializers.py:1559 order/serializers.py:1705 msgid "Line item is not associated with this order" msgstr "" -#: order/serializers.py:1564 +#: order/serializers.py:1578 msgid "Quantity must be positive" msgstr "" -#: order/serializers.py:1701 +#: order/serializers.py:1715 msgid "Enter serial numbers to allocate" msgstr "" -#: order/serializers.py:1723 order/serializers.py:1843 +#: order/serializers.py:1737 order/serializers.py:1857 msgid "Shipment has already been shipped" msgstr "" -#: order/serializers.py:1726 order/serializers.py:1846 +#: order/serializers.py:1740 order/serializers.py:1860 msgid "Shipment is not associated with this order" msgstr "" -#: order/serializers.py:1781 +#: order/serializers.py:1795 msgid "No match found for the following serial numbers" msgstr "" -#: order/serializers.py:1788 +#: order/serializers.py:1802 msgid "The following serial numbers are unavailable" msgstr "" -#: order/serializers.py:2009 +#: order/serializers.py:2026 msgid "Return order line item" msgstr "" -#: order/serializers.py:2019 +#: order/serializers.py:2036 msgid "Line item does not match return order" msgstr "" -#: order/serializers.py:2022 +#: order/serializers.py:2039 msgid "Line item has already been received" msgstr "" -#: order/serializers.py:2059 +#: order/serializers.py:2076 msgid "Items can only be received against orders which are in progress" msgstr "" -#: order/serializers.py:2124 +#: order/serializers.py:2141 msgid "Quantity to return" msgstr "" -#: order/serializers.py:2140 +#: order/serializers.py:2157 msgid "Line price currency" msgstr "" @@ -5431,1190 +5559,1109 @@ msgstr "" msgid "Return order {ro} is now overdue" msgstr "" -#: part/api.py:108 +#: part/api.py:103 msgid "Starred" msgstr "" -#: part/api.py:110 +#: part/api.py:105 msgid "Filter by starred categories" msgstr "" -#: part/api.py:127 stock/api.py:288 +#: part/api.py:122 stock/api.py:288 msgid "Depth" msgstr "Djup" -#: part/api.py:127 +#: part/api.py:122 msgid "Filter by category depth" msgstr "" -#: part/api.py:145 stock/api.py:306 +#: part/api.py:140 stock/api.py:306 msgid "Top Level" msgstr "" -#: part/api.py:147 +#: part/api.py:142 msgid "Filter by top-level categories" msgstr "" -#: part/api.py:160 stock/api.py:321 +#: part/api.py:155 stock/api.py:321 msgid "Cascade" msgstr "" -#: part/api.py:162 +#: part/api.py:157 msgid "Include sub-categories in filtered results" msgstr "" -#: part/api.py:182 +#: part/api.py:177 msgid "Parent" msgstr "" -#: part/api.py:184 +#: part/api.py:179 msgid "Filter by parent category" msgstr "" -#: part/api.py:219 +#: part/api.py:214 msgid "Exclude sub-categories under the specified category" msgstr "" -#: part/api.py:445 +#: part/api.py:440 msgid "Has Results" msgstr "Har resultat" -#: part/api.py:666 +#: part/api.py:661 msgid "Is Variant" msgstr "Är variant" -#: part/api.py:674 +#: part/api.py:669 msgid "Is Revision" msgstr "" -#: part/api.py:684 +#: part/api.py:679 msgid "Has Revisions" msgstr "" -#: part/api.py:865 +#: part/api.py:860 msgid "BOM Valid" msgstr "" -#: part/api.py:974 +#: part/api.py:969 msgid "Cascade Categories" msgstr "" -#: part/api.py:975 +#: part/api.py:970 msgid "If true, include items in child categories of the given category" msgstr "" -#: part/api.py:981 +#: part/api.py:976 msgid "Filter by numeric category ID or the literal 'null'" msgstr "" -#: part/api.py:1533 +#: part/api.py:1258 msgid "Assembly part is testable" msgstr "" -#: part/api.py:1542 +#: part/api.py:1267 msgid "Component part is testable" msgstr "" -#: part/api.py:1611 +#: part/api.py:1336 msgid "Uses" msgstr "Använder" -#: part/models.py:96 part/models.py:4163 +#: part/models.py:93 part/models.py:436 #: templates/email/part_event_notification.html:16 msgid "Part Category" msgstr "Delkategori" -#: part/models.py:97 users/ruleset.py:27 +#: part/models.py:94 users/ruleset.py:27 msgid "Part Categories" msgstr "" -#: part/models.py:115 part/models.py:1125 +#: part/models.py:112 part/models.py:1213 msgid "Default Location" msgstr "" -#: part/models.py:116 +#: part/models.py:113 msgid "Default location for parts in this category" msgstr "" -#: part/models.py:121 stock/models.py:216 +#: part/models.py:118 stock/models.py:216 msgid "Structural" msgstr "" -#: part/models.py:123 +#: part/models.py:120 msgid "Parts may not be directly assigned to a structural category, but may be assigned to child categories." msgstr "" -#: part/models.py:132 +#: part/models.py:129 msgid "Default keywords" msgstr "" -#: part/models.py:133 +#: part/models.py:130 msgid "Default keywords for parts in this category" msgstr "" -#: part/models.py:140 stock/models.py:97 stock/models.py:198 +#: part/models.py:137 stock/models.py:97 stock/models.py:198 msgid "Icon" msgstr "Ikon" -#: part/models.py:141 part/serializers.py:148 part/serializers.py:167 +#: part/models.py:138 part/serializers.py:147 part/serializers.py:166 #: stock/models.py:199 msgid "Icon (optional)" msgstr "Ikon (valfritt)" -#: part/models.py:185 +#: part/models.py:182 msgid "You cannot make this part category structural because some parts are already assigned to it!" msgstr "" -#: part/models.py:473 part/serializers.py:119 part/serializers.py:310 -#: users/ruleset.py:28 +#: part/models.py:392 +msgid "Part Category Parameter Template" +msgstr "" + +#: part/models.py:448 +msgid "Default Value" +msgstr "Standardvärde" + +#: part/models.py:449 +msgid "Default Parameter Value" +msgstr "" + +#: part/models.py:551 part/serializers.py:118 users/ruleset.py:28 msgid "Parts" msgstr "Artiklar" -#: part/models.py:525 +#: part/models.py:597 +msgid "Cannot delete parameters of a locked part" +msgstr "" + +#: part/models.py:602 +msgid "Cannot modify parameters of a locked part" +msgstr "" + +#: part/models.py:613 msgid "Cannot delete this part as it is locked" msgstr "" -#: part/models.py:528 +#: part/models.py:616 msgid "Cannot delete this part as it is still active" msgstr "" -#: part/models.py:533 +#: part/models.py:621 msgid "Cannot delete this part as it is used in an assembly" msgstr "" -#: part/models.py:616 part/models.py:623 +#: part/models.py:704 part/models.py:711 #, python-brace-format msgid "Part '{self}' cannot be used in BOM for '{parent}' (recursive)" msgstr "" -#: part/models.py:635 +#: part/models.py:723 #, python-brace-format msgid "Part '{parent}' is used in BOM for '{self}' (recursive)" msgstr "" -#: part/models.py:702 +#: part/models.py:790 #, python-brace-format msgid "IPN must match regex pattern {pattern}" msgstr "" -#: part/models.py:710 +#: part/models.py:798 msgid "Part cannot be a revision of itself" msgstr "" -#: part/models.py:717 +#: part/models.py:805 msgid "Cannot make a revision of a part which is already a revision" msgstr "" -#: part/models.py:724 +#: part/models.py:812 msgid "Revision code must be specified" msgstr "" -#: part/models.py:731 +#: part/models.py:819 msgid "Revisions are only allowed for assembly parts" msgstr "" -#: part/models.py:738 +#: part/models.py:826 msgid "Cannot make a revision of a template part" msgstr "" -#: part/models.py:744 +#: part/models.py:832 msgid "Parent part must point to the same template" msgstr "" -#: part/models.py:841 +#: part/models.py:929 msgid "Stock item with this serial number already exists" msgstr "" -#: part/models.py:971 +#: part/models.py:1059 msgid "Duplicate IPN not allowed in part settings" msgstr "" -#: part/models.py:983 +#: part/models.py:1071 msgid "Duplicate part revision already exists." msgstr "" -#: part/models.py:992 +#: part/models.py:1080 msgid "Part with this Name, IPN and Revision already exists." msgstr "" -#: part/models.py:1007 +#: part/models.py:1095 msgid "Parts cannot be assigned to structural part categories!" msgstr "" -#: part/models.py:1039 +#: part/models.py:1127 msgid "Part name" msgstr "Delnamn" -#: part/models.py:1044 +#: part/models.py:1132 msgid "Is Template" msgstr "Är mall" -#: part/models.py:1045 +#: part/models.py:1133 msgid "Is this part a template part?" msgstr "" -#: part/models.py:1055 +#: part/models.py:1143 msgid "Is this part a variant of another part?" msgstr "" -#: part/models.py:1056 +#: part/models.py:1144 msgid "Variant Of" msgstr "Variant av" -#: part/models.py:1063 +#: part/models.py:1151 msgid "Part description (optional)" msgstr "" -#: part/models.py:1070 +#: part/models.py:1158 msgid "Keywords" msgstr "Nyckelord" -#: part/models.py:1071 +#: part/models.py:1159 msgid "Part keywords to improve visibility in search results" msgstr "" -#: part/models.py:1081 +#: part/models.py:1169 msgid "Part category" msgstr "Delkategori" -#: part/models.py:1088 part/serializers.py:929 +#: part/models.py:1176 part/serializers.py:814 #: report/templates/report/inventree_stock_location_report.html:103 msgid "IPN" msgstr "IPN" -#: part/models.py:1096 +#: part/models.py:1184 msgid "Part revision or version number" msgstr "" -#: part/models.py:1097 report/models.py:228 +#: part/models.py:1185 report/models.py:228 msgid "Revision" msgstr "Revision" -#: part/models.py:1106 +#: part/models.py:1194 msgid "Is this part a revision of another part?" msgstr "" -#: part/models.py:1107 +#: part/models.py:1195 msgid "Revision Of" msgstr "" -#: part/models.py:1123 +#: part/models.py:1211 msgid "Where is this item normally stored?" msgstr "" -#: part/models.py:1169 +#: part/models.py:1257 msgid "Default Supplier" msgstr "Standardleverantör" -#: part/models.py:1170 +#: part/models.py:1258 msgid "Default supplier part" msgstr "" -#: part/models.py:1177 +#: part/models.py:1265 msgid "Default Expiry" msgstr "" -#: part/models.py:1178 +#: part/models.py:1266 msgid "Expiry time (in days) for stock items of this part" msgstr "" -#: part/models.py:1186 part/serializers.py:1003 +#: part/models.py:1274 part/serializers.py:888 msgid "Minimum Stock" msgstr "" -#: part/models.py:1187 +#: part/models.py:1275 msgid "Minimum allowed stock level" msgstr "" -#: part/models.py:1196 +#: part/models.py:1284 msgid "Units of measure for this part" msgstr "" -#: part/models.py:1203 +#: part/models.py:1291 msgid "Can this part be built from other parts?" msgstr "" -#: part/models.py:1209 +#: part/models.py:1297 msgid "Can this part be used to build other parts?" msgstr "" -#: part/models.py:1215 +#: part/models.py:1303 msgid "Does this part have tracking for unique items?" msgstr "" -#: part/models.py:1221 +#: part/models.py:1309 msgid "Can this part have test results recorded against it?" msgstr "" -#: part/models.py:1227 +#: part/models.py:1315 msgid "Can this part be purchased from external suppliers?" msgstr "" -#: part/models.py:1233 +#: part/models.py:1321 msgid "Can this part be sold to customers?" msgstr "" -#: part/models.py:1237 +#: part/models.py:1325 msgid "Is this part active?" msgstr "" -#: part/models.py:1243 +#: part/models.py:1331 msgid "Locked parts cannot be edited" msgstr "" -#: part/models.py:1249 +#: part/models.py:1337 msgid "Is this a virtual part, such as a software product or license?" msgstr "" -#: part/models.py:1254 +#: part/models.py:1342 msgid "BOM Validated" msgstr "" -#: part/models.py:1255 +#: part/models.py:1343 msgid "Is the BOM for this part valid?" msgstr "" -#: part/models.py:1261 +#: part/models.py:1349 msgid "BOM checksum" msgstr "" -#: part/models.py:1262 +#: part/models.py:1350 msgid "Stored BOM checksum" msgstr "" -#: part/models.py:1270 +#: part/models.py:1358 msgid "BOM checked by" msgstr "" -#: part/models.py:1275 +#: part/models.py:1363 msgid "BOM checked date" msgstr "" -#: part/models.py:1291 +#: part/models.py:1379 msgid "Creation User" msgstr "" -#: part/models.py:1301 +#: part/models.py:1389 msgid "Owner responsible for this part" msgstr "" -#: part/models.py:2258 +#: part/models.py:2346 msgid "Sell multiple" msgstr "" -#: part/models.py:3286 +#: part/models.py:3350 msgid "Currency used to cache pricing calculations" msgstr "" -#: part/models.py:3302 +#: part/models.py:3366 msgid "Minimum BOM Cost" msgstr "" -#: part/models.py:3303 +#: part/models.py:3367 msgid "Minimum cost of component parts" msgstr "" -#: part/models.py:3309 +#: part/models.py:3373 msgid "Maximum BOM Cost" msgstr "" -#: part/models.py:3310 +#: part/models.py:3374 msgid "Maximum cost of component parts" msgstr "" -#: part/models.py:3316 +#: part/models.py:3380 msgid "Minimum Purchase Cost" msgstr "" -#: part/models.py:3317 +#: part/models.py:3381 msgid "Minimum historical purchase cost" msgstr "" -#: part/models.py:3323 +#: part/models.py:3387 msgid "Maximum Purchase Cost" msgstr "" -#: part/models.py:3324 +#: part/models.py:3388 msgid "Maximum historical purchase cost" msgstr "" -#: part/models.py:3330 +#: part/models.py:3394 msgid "Minimum Internal Price" msgstr "" -#: part/models.py:3331 +#: part/models.py:3395 msgid "Minimum cost based on internal price breaks" msgstr "" -#: part/models.py:3337 +#: part/models.py:3401 msgid "Maximum Internal Price" msgstr "" -#: part/models.py:3338 +#: part/models.py:3402 msgid "Maximum cost based on internal price breaks" msgstr "" -#: part/models.py:3344 +#: part/models.py:3408 msgid "Minimum Supplier Price" msgstr "" -#: part/models.py:3345 +#: part/models.py:3409 msgid "Minimum price of part from external suppliers" msgstr "" -#: part/models.py:3351 +#: part/models.py:3415 msgid "Maximum Supplier Price" msgstr "" -#: part/models.py:3352 +#: part/models.py:3416 msgid "Maximum price of part from external suppliers" msgstr "" -#: part/models.py:3358 +#: part/models.py:3422 msgid "Minimum Variant Cost" msgstr "" -#: part/models.py:3359 +#: part/models.py:3423 msgid "Calculated minimum cost of variant parts" msgstr "" -#: part/models.py:3365 +#: part/models.py:3429 msgid "Maximum Variant Cost" msgstr "" -#: part/models.py:3366 +#: part/models.py:3430 msgid "Calculated maximum cost of variant parts" msgstr "" -#: part/models.py:3372 part/models.py:3386 +#: part/models.py:3436 part/models.py:3450 msgid "Minimum Cost" msgstr "" -#: part/models.py:3373 +#: part/models.py:3437 msgid "Override minimum cost" msgstr "" -#: part/models.py:3379 part/models.py:3393 +#: part/models.py:3443 part/models.py:3457 msgid "Maximum Cost" msgstr "" -#: part/models.py:3380 +#: part/models.py:3444 msgid "Override maximum cost" msgstr "" -#: part/models.py:3387 +#: part/models.py:3451 msgid "Calculated overall minimum cost" msgstr "" -#: part/models.py:3394 +#: part/models.py:3458 msgid "Calculated overall maximum cost" msgstr "" -#: part/models.py:3400 +#: part/models.py:3464 msgid "Minimum Sale Price" msgstr "" -#: part/models.py:3401 +#: part/models.py:3465 msgid "Minimum sale price based on price breaks" msgstr "" -#: part/models.py:3407 +#: part/models.py:3471 msgid "Maximum Sale Price" msgstr "" -#: part/models.py:3408 +#: part/models.py:3472 msgid "Maximum sale price based on price breaks" msgstr "" -#: part/models.py:3414 +#: part/models.py:3478 msgid "Minimum Sale Cost" msgstr "" -#: part/models.py:3415 +#: part/models.py:3479 msgid "Minimum historical sale price" msgstr "" -#: part/models.py:3421 +#: part/models.py:3485 msgid "Maximum Sale Cost" msgstr "" -#: part/models.py:3422 +#: part/models.py:3486 msgid "Maximum historical sale price" msgstr "" -#: part/models.py:3440 +#: part/models.py:3504 msgid "Part for stocktake" msgstr "" -#: part/models.py:3445 +#: part/models.py:3509 msgid "Item Count" msgstr "" -#: part/models.py:3446 +#: part/models.py:3510 msgid "Number of individual stock entries at time of stocktake" msgstr "" -#: part/models.py:3454 +#: part/models.py:3518 msgid "Total available stock at time of stocktake" msgstr "" -#: part/models.py:3458 report/templates/report/inventree_test_report.html:106 +#: part/models.py:3522 report/templates/report/inventree_test_report.html:106 msgid "Date" msgstr "Datum" -#: part/models.py:3459 +#: part/models.py:3523 msgid "Date stocktake was performed" msgstr "" -#: part/models.py:3466 +#: part/models.py:3530 msgid "Minimum Stock Cost" msgstr "" -#: part/models.py:3467 +#: part/models.py:3531 msgid "Estimated minimum cost of stock on hand" msgstr "" -#: part/models.py:3473 +#: part/models.py:3537 msgid "Maximum Stock Cost" msgstr "" -#: part/models.py:3474 +#: part/models.py:3538 msgid "Estimated maximum cost of stock on hand" msgstr "" -#: part/models.py:3484 +#: part/models.py:3548 msgid "Part Sale Price Break" msgstr "" -#: part/models.py:3596 +#: part/models.py:3660 msgid "Part Test Template" msgstr "" -#: part/models.py:3622 +#: part/models.py:3686 msgid "Invalid template name - must include at least one alphanumeric character" msgstr "" -#: part/models.py:3643 part/models.py:3816 -msgid "Choices must be unique" -msgstr "" - -#: part/models.py:3654 +#: part/models.py:3718 msgid "Test templates can only be created for testable parts" msgstr "" -#: part/models.py:3668 +#: part/models.py:3732 msgid "Test template with the same key already exists for part" msgstr "" -#: part/models.py:3685 +#: part/models.py:3749 msgid "Test Name" msgstr "" -#: part/models.py:3686 +#: part/models.py:3750 msgid "Enter a name for the test" msgstr "" -#: part/models.py:3692 +#: part/models.py:3756 msgid "Test Key" msgstr "" -#: part/models.py:3693 +#: part/models.py:3757 msgid "Simplified key for the test" msgstr "" -#: part/models.py:3700 +#: part/models.py:3764 msgid "Test Description" msgstr "" -#: part/models.py:3701 +#: part/models.py:3765 msgid "Enter description for this test" msgstr "" -#: part/models.py:3705 report/models.py:287 -msgid "Enabled" -msgstr "Aktiverad" - -#: part/models.py:3705 +#: part/models.py:3769 msgid "Is this test enabled?" msgstr "" -#: part/models.py:3710 +#: part/models.py:3774 msgid "Required" msgstr "" -#: part/models.py:3711 +#: part/models.py:3775 msgid "Is this test required to pass?" msgstr "" -#: part/models.py:3716 +#: part/models.py:3780 msgid "Requires Value" msgstr "" -#: part/models.py:3717 +#: part/models.py:3781 msgid "Does this test require a value when adding a test result?" msgstr "" -#: part/models.py:3722 +#: part/models.py:3786 msgid "Requires Attachment" msgstr "" -#: part/models.py:3724 +#: part/models.py:3788 msgid "Does this test require a file attachment when adding a test result?" msgstr "" -#: part/models.py:3730 part/models.py:3878 -msgid "Choices" -msgstr "Val" - -#: part/models.py:3731 +#: part/models.py:3795 msgid "Valid choices for this test (comma-separated)" msgstr "" -#: part/models.py:3764 -msgid "Part Parameter Template" -msgstr "" - -#: part/models.py:3791 -msgid "Checkbox parameters cannot have units" -msgstr "" - -#: part/models.py:3796 -msgid "Checkbox parameters cannot have choices" -msgstr "" - -#: part/models.py:3833 -msgid "Parameter template name must be unique" -msgstr "" - -#: part/models.py:3851 -msgid "Parameter Name" -msgstr "" - -#: part/models.py:3858 -msgid "Physical units for this parameter" -msgstr "" - -#: part/models.py:3866 -msgid "Parameter description" -msgstr "" - -#: part/models.py:3872 -msgid "Checkbox" -msgstr "Kryssruta" - -#: part/models.py:3873 -msgid "Is this parameter a checkbox?" -msgstr "" - -#: part/models.py:3879 -msgid "Valid choices for this parameter (comma-separated)" -msgstr "" - -#: part/models.py:3890 -msgid "Selection list for this parameter" -msgstr "" - -#: part/models.py:3932 -msgid "Part Parameter" -msgstr "" - -#: part/models.py:3958 -msgid "Parameter cannot be modified - part is locked" -msgstr "" - -#: part/models.py:3996 -msgid "Invalid choice for parameter value" -msgstr "" - -#: part/models.py:4047 -msgid "Parent Part" -msgstr "" - -#: part/models.py:4055 part/models.py:4170 part/models.py:4171 -msgid "Parameter Template" -msgstr "Parametermall" - -#: part/models.py:4061 -msgid "Parameter Value" -msgstr "" - -#: part/models.py:4071 stock/serializers.py:718 -msgid "Optional note field" -msgstr "" - -#: part/models.py:4118 -msgid "Part Category Parameter Template" -msgstr "" - -#: part/models.py:4177 -msgid "Default Value" -msgstr "Standardvärde" - -#: part/models.py:4178 -msgid "Default Parameter Value" -msgstr "" - -#: part/models.py:4352 +#: part/models.py:3977 msgid "BOM item cannot be modified - assembly is locked" msgstr "" -#: part/models.py:4359 +#: part/models.py:3984 msgid "BOM item cannot be modified - variant assembly is locked" msgstr "" -#: part/models.py:4369 +#: part/models.py:3994 msgid "Select parent part" msgstr "" -#: part/models.py:4379 +#: part/models.py:4004 msgid "Sub part" msgstr "" -#: part/models.py:4380 +#: part/models.py:4005 msgid "Select part to be used in BOM" msgstr "" -#: part/models.py:4391 +#: part/models.py:4016 msgid "BOM quantity for this BOM item" msgstr "" -#: part/models.py:4397 +#: part/models.py:4022 msgid "This BOM item is optional" msgstr "" -#: part/models.py:4403 +#: part/models.py:4028 msgid "This BOM item is consumable (it is not tracked in build orders)" msgstr "" -#: part/models.py:4411 +#: part/models.py:4036 msgid "Setup Quantity" msgstr "" -#: part/models.py:4412 +#: part/models.py:4037 msgid "Extra required quantity for a build, to account for setup losses" msgstr "" -#: part/models.py:4420 +#: part/models.py:4045 msgid "Attrition" msgstr "" -#: part/models.py:4422 +#: part/models.py:4047 msgid "Estimated attrition for a build, expressed as a percentage (0-100)" msgstr "" -#: part/models.py:4433 +#: part/models.py:4058 msgid "Rounding Multiple" msgstr "" -#: part/models.py:4435 +#: part/models.py:4060 msgid "Round up required production quantity to nearest multiple of this value" msgstr "" -#: part/models.py:4443 +#: part/models.py:4068 msgid "BOM item reference" msgstr "" -#: part/models.py:4451 +#: part/models.py:4076 msgid "BOM item notes" msgstr "" -#: part/models.py:4457 +#: part/models.py:4082 msgid "Checksum" msgstr "" -#: part/models.py:4458 +#: part/models.py:4083 msgid "BOM line checksum" msgstr "" -#: part/models.py:4463 +#: part/models.py:4088 msgid "Validated" msgstr "Validerad" -#: part/models.py:4464 +#: part/models.py:4089 msgid "This BOM item has been validated" msgstr "" -#: part/models.py:4469 +#: part/models.py:4094 msgid "Gets inherited" msgstr "" -#: part/models.py:4470 +#: part/models.py:4095 msgid "This BOM item is inherited by BOMs for variant parts" msgstr "" -#: part/models.py:4476 +#: part/models.py:4101 msgid "Stock items for variant parts can be used for this BOM item" msgstr "" -#: part/models.py:4583 stock/models.py:925 +#: part/models.py:4208 stock/models.py:925 msgid "Quantity must be integer value for trackable parts" msgstr "" -#: part/models.py:4593 part/models.py:4595 +#: part/models.py:4218 part/models.py:4220 msgid "Sub part must be specified" msgstr "" -#: part/models.py:4746 +#: part/models.py:4371 msgid "BOM Item Substitute" msgstr "" -#: part/models.py:4767 +#: part/models.py:4392 msgid "Substitute part cannot be the same as the master part" msgstr "" -#: part/models.py:4780 +#: part/models.py:4405 msgid "Parent BOM item" msgstr "" -#: part/models.py:4788 +#: part/models.py:4413 msgid "Substitute part" msgstr "" -#: part/models.py:4804 +#: part/models.py:4429 msgid "Part 1" msgstr "Del 1" -#: part/models.py:4812 +#: part/models.py:4437 msgid "Part 2" msgstr "Del 2" -#: part/models.py:4813 +#: part/models.py:4438 msgid "Select Related Part" msgstr "" -#: part/models.py:4820 +#: part/models.py:4445 msgid "Note for this relationship" msgstr "" -#: part/models.py:4839 +#: part/models.py:4464 msgid "Part relationship cannot be created between a part and itself" msgstr "" -#: part/models.py:4844 +#: part/models.py:4469 msgid "Duplicate relationship already exists" msgstr "" -#: part/serializers.py:114 +#: part/serializers.py:113 msgid "Parent Category" msgstr "" -#: part/serializers.py:115 +#: part/serializers.py:114 msgid "Parent part category" msgstr "" -#: part/serializers.py:123 part/serializers.py:164 +#: part/serializers.py:122 part/serializers.py:163 msgid "Subcategories" msgstr "Underkategorier" -#: part/serializers.py:203 +#: part/serializers.py:202 msgid "Results" msgstr "Resultat" -#: part/serializers.py:204 +#: part/serializers.py:203 msgid "Number of results recorded against this template" msgstr "" -#: part/serializers.py:235 part/serializers.py:253 stock/serializers.py:643 +#: part/serializers.py:234 part/serializers.py:252 stock/serializers.py:643 msgid "Purchase currency of this stock item" msgstr "" -#: part/serializers.py:280 +#: part/serializers.py:279 msgid "File is not an image" msgstr "" -#: part/serializers.py:311 -msgid "Number of parts using this template" -msgstr "" - -#: part/serializers.py:471 +#: part/serializers.py:382 msgid "Original Part" msgstr "Originaldel" -#: part/serializers.py:472 +#: part/serializers.py:383 msgid "Select original part to duplicate" msgstr "" -#: part/serializers.py:477 +#: part/serializers.py:388 msgid "Copy Image" msgstr "Kopiera bild" -#: part/serializers.py:478 +#: part/serializers.py:389 msgid "Copy image from original part" msgstr "" -#: part/serializers.py:484 +#: part/serializers.py:395 msgid "Copy BOM" msgstr "" -#: part/serializers.py:485 +#: part/serializers.py:396 msgid "Copy bill of materials from original part" msgstr "" -#: part/serializers.py:491 +#: part/serializers.py:402 msgid "Copy Parameters" msgstr "Kopiera parametrar" -#: part/serializers.py:492 +#: part/serializers.py:403 msgid "Copy parameter data from original part" msgstr "" -#: part/serializers.py:498 +#: part/serializers.py:409 msgid "Copy Notes" msgstr "" -#: part/serializers.py:499 +#: part/serializers.py:410 msgid "Copy notes from original part" msgstr "" -#: part/serializers.py:505 +#: part/serializers.py:416 msgid "Copy Tests" msgstr "Kopiera test" -#: part/serializers.py:506 +#: part/serializers.py:417 msgid "Copy test templates from original part" msgstr "" -#: part/serializers.py:524 +#: part/serializers.py:435 msgid "Initial Stock Quantity" msgstr "" -#: part/serializers.py:526 +#: part/serializers.py:437 msgid "Specify initial stock quantity for this Part. If quantity is zero, no stock is added." msgstr "" -#: part/serializers.py:533 +#: part/serializers.py:444 msgid "Initial Stock Location" msgstr "" -#: part/serializers.py:534 +#: part/serializers.py:445 msgid "Specify initial stock location for this Part" msgstr "" -#: part/serializers.py:551 +#: part/serializers.py:462 msgid "Select supplier (or leave blank to skip)" msgstr "" -#: part/serializers.py:567 +#: part/serializers.py:478 msgid "Select manufacturer (or leave blank to skip)" msgstr "" -#: part/serializers.py:577 +#: part/serializers.py:488 msgid "Manufacturer part number" msgstr "" -#: part/serializers.py:584 +#: part/serializers.py:495 msgid "Selected company is not a valid supplier" msgstr "" -#: part/serializers.py:593 +#: part/serializers.py:504 msgid "Selected company is not a valid manufacturer" msgstr "" -#: part/serializers.py:604 +#: part/serializers.py:515 msgid "Manufacturer part matching this MPN already exists" msgstr "" -#: part/serializers.py:611 +#: part/serializers.py:522 msgid "Supplier part matching this SKU already exists" msgstr "" -#: part/serializers.py:914 +#: part/serializers.py:799 msgid "Category Name" msgstr "Kategorinamn" -#: part/serializers.py:943 +#: part/serializers.py:828 msgid "Building" msgstr "" -#: part/serializers.py:944 +#: part/serializers.py:829 msgid "Quantity of this part currently being in production" msgstr "" -#: part/serializers.py:951 +#: part/serializers.py:836 msgid "Outstanding quantity of this part scheduled to be built" msgstr "" -#: part/serializers.py:971 stock/serializers.py:1019 stock/serializers.py:1189 +#: part/serializers.py:856 stock/serializers.py:1019 stock/serializers.py:1189 #: users/ruleset.py:30 msgid "Stock Items" msgstr "" -#: part/serializers.py:975 +#: part/serializers.py:860 msgid "Revisions" msgstr "Revisioner" -#: part/serializers.py:979 +#: part/serializers.py:864 msgid "Suppliers" msgstr "Leverantörer" -#: part/serializers.py:983 part/serializers.py:1297 +#: part/serializers.py:868 part/serializers.py:1162 #: templates/email/low_stock_notification.html:16 #: templates/email/part_event_notification.html:17 msgid "Total Stock" msgstr "" -#: part/serializers.py:991 +#: part/serializers.py:876 msgid "Unallocated Stock" msgstr "" -#: part/serializers.py:999 +#: part/serializers.py:884 msgid "Variant Stock" msgstr "" -#: part/serializers.py:1054 +#: part/serializers.py:943 msgid "Duplicate Part" msgstr "" -#: part/serializers.py:1055 +#: part/serializers.py:944 msgid "Copy initial data from another Part" msgstr "" -#: part/serializers.py:1061 +#: part/serializers.py:950 msgid "Initial Stock" msgstr "" -#: part/serializers.py:1062 +#: part/serializers.py:951 msgid "Create Part with initial stock quantity" msgstr "" -#: part/serializers.py:1068 +#: part/serializers.py:957 msgid "Supplier Information" msgstr "" -#: part/serializers.py:1069 +#: part/serializers.py:958 msgid "Add initial supplier information for this part" msgstr "" -#: part/serializers.py:1077 +#: part/serializers.py:966 msgid "Copy Category Parameters" msgstr "" -#: part/serializers.py:1078 +#: part/serializers.py:967 msgid "Copy parameter templates from selected part category" msgstr "" -#: part/serializers.py:1083 +#: part/serializers.py:972 msgid "Existing Image" msgstr "" -#: part/serializers.py:1084 +#: part/serializers.py:973 msgid "Filename of an existing part image" msgstr "" -#: part/serializers.py:1101 +#: part/serializers.py:990 msgid "Image file does not exist" msgstr "" -#: part/serializers.py:1269 +#: part/serializers.py:1134 msgid "Validate entire Bill of Materials" msgstr "" -#: part/serializers.py:1303 part/serializers.py:1769 +#: part/serializers.py:1168 part/serializers.py:1634 msgid "Can Build" msgstr "" -#: part/serializers.py:1320 +#: part/serializers.py:1185 msgid "Required for Build Orders" msgstr "" -#: part/serializers.py:1325 +#: part/serializers.py:1190 msgid "Allocated to Build Orders" msgstr "" -#: part/serializers.py:1332 +#: part/serializers.py:1197 msgid "Required for Sales Orders" msgstr "" -#: part/serializers.py:1336 +#: part/serializers.py:1201 msgid "Allocated to Sales Orders" msgstr "" -#: part/serializers.py:1475 +#: part/serializers.py:1340 msgid "Minimum Price" msgstr "" -#: part/serializers.py:1476 +#: part/serializers.py:1341 msgid "Override calculated value for minimum price" msgstr "" -#: part/serializers.py:1483 +#: part/serializers.py:1348 msgid "Minimum price currency" msgstr "" -#: part/serializers.py:1490 +#: part/serializers.py:1355 msgid "Maximum Price" msgstr "" -#: part/serializers.py:1491 +#: part/serializers.py:1356 msgid "Override calculated value for maximum price" msgstr "" -#: part/serializers.py:1498 +#: part/serializers.py:1363 msgid "Maximum price currency" msgstr "" -#: part/serializers.py:1527 +#: part/serializers.py:1392 msgid "Update" msgstr "Uppdatera" -#: part/serializers.py:1528 +#: part/serializers.py:1393 msgid "Update pricing for this part" msgstr "" -#: part/serializers.py:1551 +#: part/serializers.py:1416 #, python-brace-format msgid "Could not convert from provided currencies to {default_currency}" msgstr "" -#: part/serializers.py:1558 +#: part/serializers.py:1423 msgid "Minimum price must not be greater than maximum price" msgstr "" -#: part/serializers.py:1561 +#: part/serializers.py:1426 msgid "Maximum price must not be less than minimum price" msgstr "" -#: part/serializers.py:1715 +#: part/serializers.py:1580 msgid "Select the parent assembly" msgstr "" -#: part/serializers.py:1735 +#: part/serializers.py:1600 msgid "Select the component part" msgstr "" -#: part/serializers.py:1929 +#: part/serializers.py:1802 msgid "Select part to copy BOM from" msgstr "" -#: part/serializers.py:1937 +#: part/serializers.py:1810 msgid "Remove Existing Data" msgstr "" -#: part/serializers.py:1938 +#: part/serializers.py:1811 msgid "Remove existing BOM items before copying" msgstr "" -#: part/serializers.py:1943 +#: part/serializers.py:1816 msgid "Include Inherited" msgstr "" -#: part/serializers.py:1944 +#: part/serializers.py:1817 msgid "Include BOM items which are inherited from templated parts" msgstr "" -#: part/serializers.py:1949 +#: part/serializers.py:1822 msgid "Skip Invalid Rows" msgstr "Hoppa över ogiltiga rader" -#: part/serializers.py:1950 +#: part/serializers.py:1823 msgid "Enable this option to skip invalid rows" msgstr "" -#: part/serializers.py:1955 +#: part/serializers.py:1828 msgid "Copy Substitute Parts" msgstr "" -#: part/serializers.py:1956 +#: part/serializers.py:1829 msgid "Copy substitute parts when duplicate BOM items" msgstr "" @@ -6927,7 +6974,7 @@ msgstr "" #: plugin/builtin/events/auto_issue_orders.py:19 #: plugin/builtin/exporter/bom_exporter.py:73 #: plugin/builtin/exporter/inventree_exporter.py:17 -#: plugin/builtin/exporter/part_parameter_exporter.py:36 +#: plugin/builtin/exporter/parameter_exporter.py:32 #: plugin/builtin/exporter/stocktake_exporter.py:47 #: plugin/builtin/integration/core_notifications.py:25 #: plugin/builtin/integration/core_notifications.py:69 @@ -7041,23 +7088,19 @@ msgid "Include total quantity of each part in the BOM" msgstr "" #: plugin/builtin/exporter/bom_exporter.py:35 -#: plugin/builtin/exporter/part_parameter_exporter.py:17 msgid "Stock Data" msgstr "" #: plugin/builtin/exporter/bom_exporter.py:35 -#: plugin/builtin/exporter/part_parameter_exporter.py:17 msgid "Include part stock data" msgstr "" #: plugin/builtin/exporter/bom_exporter.py:39 -#: plugin/builtin/exporter/part_parameter_exporter.py:21 #: plugin/builtin/exporter/stocktake_exporter.py:20 msgid "Pricing Data" msgstr "" #: plugin/builtin/exporter/bom_exporter.py:39 -#: plugin/builtin/exporter/part_parameter_exporter.py:21 #: plugin/builtin/exporter/stocktake_exporter.py:20 msgid "Include part pricing data" msgstr "" @@ -7144,12 +7187,20 @@ msgstr "" msgid "Provides support for exporting data from InvenTree" msgstr "" -#: plugin/builtin/exporter/part_parameter_exporter.py:33 -msgid "Part Parameter Exporter" +#: plugin/builtin/exporter/parameter_exporter.py:16 +msgid "Exclude Inactive" msgstr "" -#: plugin/builtin/exporter/part_parameter_exporter.py:34 -msgid "Exporter for part parameter data" +#: plugin/builtin/exporter/parameter_exporter.py:17 +msgid "Exclude parameters which are inactive" +msgstr "" + +#: plugin/builtin/exporter/parameter_exporter.py:29 +msgid "Parameter Exporter" +msgstr "" + +#: plugin/builtin/exporter/parameter_exporter.py:30 +msgid "Exporter for model parameter data" msgstr "" #: plugin/builtin/exporter/stocktake_exporter.py:25 @@ -8079,19 +8130,19 @@ msgstr "" msgid "No result" msgstr "Inga resultat" -#: report/templatetags/report.py:167 +#: report/templatetags/report.py:169 msgid "Asset file does not exist" msgstr "" -#: report/templatetags/report.py:224 report/templatetags/report.py:300 +#: report/templatetags/report.py:226 report/templatetags/report.py:302 msgid "Image file not found" msgstr "" -#: report/templatetags/report.py:325 +#: report/templatetags/report.py:327 msgid "part_image tag requires a Part instance" msgstr "" -#: report/templatetags/report.py:362 +#: report/templatetags/report.py:383 msgid "company_image tag requires a Company instance" msgstr "" @@ -8455,115 +8506,119 @@ msgstr "" msgid "Quantity does not match serial numbers" msgstr "" -#: stock/models.py:2012 stock/models.py:2917 +#: stock/models.py:1912 +msgid "Cannot assign stock to structural location" +msgstr "" + +#: stock/models.py:2029 stock/models.py:2934 msgid "Test template does not exist" msgstr "" -#: stock/models.py:2030 +#: stock/models.py:2047 msgid "Stock item has been assigned to a sales order" msgstr "" -#: stock/models.py:2034 +#: stock/models.py:2051 msgid "Stock item is installed in another item" msgstr "" -#: stock/models.py:2037 +#: stock/models.py:2054 msgid "Stock item contains other items" msgstr "" -#: stock/models.py:2040 +#: stock/models.py:2057 msgid "Stock item has been assigned to a customer" msgstr "" -#: stock/models.py:2043 stock/models.py:2226 +#: stock/models.py:2060 stock/models.py:2243 msgid "Stock item is currently in production" msgstr "" -#: stock/models.py:2046 +#: stock/models.py:2063 msgid "Serialized stock cannot be merged" msgstr "" -#: stock/models.py:2053 stock/serializers.py:1462 +#: stock/models.py:2070 stock/serializers.py:1462 msgid "Duplicate stock items" msgstr "" -#: stock/models.py:2057 +#: stock/models.py:2074 msgid "Stock items must refer to the same part" msgstr "" -#: stock/models.py:2065 +#: stock/models.py:2082 msgid "Stock items must refer to the same supplier part" msgstr "" -#: stock/models.py:2070 +#: stock/models.py:2087 msgid "Stock status codes must match" msgstr "" -#: stock/models.py:2349 +#: stock/models.py:2366 msgid "StockItem cannot be moved as it is not in stock" msgstr "" -#: stock/models.py:2818 +#: stock/models.py:2835 msgid "Stock Item Tracking" msgstr "" -#: stock/models.py:2849 +#: stock/models.py:2866 msgid "Entry notes" msgstr "" -#: stock/models.py:2889 +#: stock/models.py:2906 msgid "Stock Item Test Result" msgstr "" -#: stock/models.py:2920 +#: stock/models.py:2937 msgid "Value must be provided for this test" msgstr "" -#: stock/models.py:2924 +#: stock/models.py:2941 msgid "Attachment must be uploaded for this test" msgstr "" -#: stock/models.py:2929 +#: stock/models.py:2946 msgid "Invalid value for this test" msgstr "" -#: stock/models.py:2953 +#: stock/models.py:2970 msgid "Test result" msgstr "Testresultat" -#: stock/models.py:2960 +#: stock/models.py:2977 msgid "Test output value" msgstr "" -#: stock/models.py:2968 stock/serializers.py:248 +#: stock/models.py:2985 stock/serializers.py:248 msgid "Test result attachment" msgstr "" -#: stock/models.py:2972 +#: stock/models.py:2989 msgid "Test notes" msgstr "" -#: stock/models.py:2980 +#: stock/models.py:2997 msgid "Test station" msgstr "" -#: stock/models.py:2981 +#: stock/models.py:2998 msgid "The identifier of the test station where the test was performed" msgstr "" -#: stock/models.py:2987 +#: stock/models.py:3004 msgid "Started" msgstr "Startad" -#: stock/models.py:2988 +#: stock/models.py:3005 msgid "The timestamp of the test start" msgstr "" -#: stock/models.py:2994 +#: stock/models.py:3011 msgid "Finished" msgstr "" -#: stock/models.py:2995 +#: stock/models.py:3012 msgid "The timestamp of the test finish" msgstr "" @@ -8677,8 +8732,8 @@ msgstr "" msgid "Quantity must not exceed available stock quantity ({q})" msgstr "" -#: stock/serializers.py:711 stock/serializers.py:1419 stock/serializers.py:1732 -#: stock/serializers.py:1781 +#: stock/serializers.py:711 stock/serializers.py:1419 stock/serializers.py:1740 +#: stock/serializers.py:1789 msgid "Destination stock location" msgstr "" @@ -8834,19 +8889,19 @@ msgstr "" msgid "Stock transaction notes" msgstr "" -#: stock/serializers.py:1787 +#: stock/serializers.py:1795 msgid "Merge into existing stock" msgstr "" -#: stock/serializers.py:1788 +#: stock/serializers.py:1796 msgid "Merge returned items into existing stock items if possible" msgstr "" -#: stock/serializers.py:1831 +#: stock/serializers.py:1839 msgid "Next Serial Number" msgstr "" -#: stock/serializers.py:1837 +#: stock/serializers.py:1845 msgid "Previous Serial Number" msgstr "" @@ -8902,83 +8957,87 @@ msgstr "Lagerpost manuellt tillagd" msgid "Stock manually removed" msgstr "Lagerpost manuellt borttagen" -#: stock/status_codes.py:57 +#: stock/status_codes.py:56 +msgid "Serialized stock items" +msgstr "" + +#: stock/status_codes.py:58 msgid "Returned to stock" msgstr "" -#: stock/status_codes.py:60 +#: stock/status_codes.py:61 msgid "Location changed" msgstr "Platsen har ändrats" -#: stock/status_codes.py:61 +#: stock/status_codes.py:62 msgid "Stock updated" msgstr "" -#: stock/status_codes.py:64 +#: stock/status_codes.py:65 msgid "Installed into assembly" msgstr "Installerad i montering" -#: stock/status_codes.py:65 +#: stock/status_codes.py:66 msgid "Removed from assembly" msgstr "Borttagen från montering" -#: stock/status_codes.py:67 +#: stock/status_codes.py:68 msgid "Installed component item" msgstr "Installerat komponentobjekt" -#: stock/status_codes.py:68 +#: stock/status_codes.py:69 msgid "Removed component item" msgstr "Tog bort komponentobjekt" -#: stock/status_codes.py:71 +#: stock/status_codes.py:72 msgid "Split from parent item" msgstr "Dela från överordnat objekt" -#: stock/status_codes.py:72 +#: stock/status_codes.py:73 msgid "Split child item" msgstr "Dela underordnat objekt" -#: stock/status_codes.py:75 +#: stock/status_codes.py:76 msgid "Merged stock items" msgstr "Sammanfogade lagerposter" -#: stock/status_codes.py:78 +#: stock/status_codes.py:79 msgid "Converted to variant" msgstr "Konverterad till variant" -#: stock/status_codes.py:81 +#: stock/status_codes.py:82 msgid "Build order output created" msgstr "Bygg orderutgång skapad" -#: stock/status_codes.py:82 +#: stock/status_codes.py:83 msgid "Build order output completed" msgstr "Bygg orderutgång slutförd" -#: stock/status_codes.py:83 +#: stock/status_codes.py:84 msgid "Build order output rejected" msgstr "" -#: stock/status_codes.py:84 +#: stock/status_codes.py:85 msgid "Consumed by build order" msgstr "Konsumeras av byggorder" -#: stock/status_codes.py:87 +#: stock/status_codes.py:88 msgid "Shipped against Sales Order" msgstr "" -#: stock/status_codes.py:90 +#: stock/status_codes.py:91 msgid "Received against Purchase Order" msgstr "" -#: stock/status_codes.py:93 +#: stock/status_codes.py:94 msgid "Returned against Return Order" msgstr "" -#: stock/status_codes.py:96 +#: stock/status_codes.py:97 msgid "Sent to customer" msgstr "Skickat till kund" -#: stock/status_codes.py:97 +#: stock/status_codes.py:98 msgid "Returned from customer" msgstr "Returnerad från kund" diff --git a/src/backend/InvenTree/locale/th/LC_MESSAGES/django.po b/src/backend/InvenTree/locale/th/LC_MESSAGES/django.po index 89046bfde6..048dbef3ec 100644 --- a/src/backend/InvenTree/locale/th/LC_MESSAGES/django.po +++ b/src/backend/InvenTree/locale/th/LC_MESSAGES/django.po @@ -2,8 +2,8 @@ msgid "" msgstr "" "Project-Id-Version: inventree\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-11-19 04:55+0000\n" -"PO-Revision-Date: 2025-11-19 04:59\n" +"POT-Creation-Date: 2025-12-07 07:33+0000\n" +"PO-Revision-Date: 2025-12-07 07:36\n" "Last-Translator: \n" "Language-Team: Thai\n" "Language: th_TH\n" @@ -57,7 +57,7 @@ msgstr "" msgid "This field must be unique." msgstr "" -#: InvenTree/api.py:775 +#: InvenTree/api.py:803 msgid "User does not have permission to view this model" msgstr "" @@ -81,22 +81,22 @@ msgstr "" msgid "The provided email domain is not approved." msgstr "" -#: InvenTree/conversion.py:166 +#: InvenTree/conversion.py:240 #, python-brace-format msgid "Invalid unit provided ({unit})" msgstr "" -#: InvenTree/conversion.py:183 +#: InvenTree/conversion.py:257 msgid "No value provided" msgstr "" -#: InvenTree/conversion.py:210 +#: InvenTree/conversion.py:284 #, python-brace-format msgid "Could not convert {original} to {unit}" msgstr "" -#: InvenTree/conversion.py:212 InvenTree/conversion.py:226 -#: InvenTree/helpers.py:597 order/models.py:720 order/models.py:1015 +#: InvenTree/conversion.py:286 InvenTree/conversion.py:300 +#: InvenTree/helpers.py:597 order/models.py:721 order/models.py:1016 msgid "Invalid quantity provided" msgstr "ปริมาณสินค้าไม่ถูกต้อง" @@ -112,11 +112,11 @@ msgstr "ป้อนวันที่" msgid "Invalid decimal value" msgstr "" -#: InvenTree/fields.py:218 InvenTree/models.py:1067 build/serializers.py:509 -#: build/serializers.py:580 build/serializers.py:1788 company/models.py:857 -#: order/models.py:1780 +#: InvenTree/fields.py:218 InvenTree/models.py:1228 build/serializers.py:517 +#: build/serializers.py:588 build/serializers.py:1796 company/models.py:811 +#: order/models.py:1781 #: report/templates/report/inventree_build_order_report.html:172 -#: stock/models.py:2848 stock/models.py:2972 stock/serializers.py:717 +#: stock/models.py:2865 stock/models.py:2989 stock/serializers.py:717 #: stock/serializers.py:893 stock/serializers.py:1035 stock/serializers.py:1336 #: stock/serializers.py:1425 stock/serializers.py:1624 msgid "Notes" @@ -171,35 +171,35 @@ msgstr "" msgid "Data contains prohibited markdown content" msgstr "" -#: InvenTree/helpers_model.py:133 +#: InvenTree/helpers_model.py:134 msgid "Connection error" msgstr "การเชื่อมต่อขัดข้อง" -#: InvenTree/helpers_model.py:138 InvenTree/helpers_model.py:145 +#: InvenTree/helpers_model.py:139 InvenTree/helpers_model.py:146 msgid "Server responded with invalid status code" msgstr "" -#: InvenTree/helpers_model.py:141 +#: InvenTree/helpers_model.py:142 msgid "Exception occurred" msgstr "" -#: InvenTree/helpers_model.py:151 +#: InvenTree/helpers_model.py:152 msgid "Server responded with invalid Content-Length value" msgstr "" -#: InvenTree/helpers_model.py:154 +#: InvenTree/helpers_model.py:155 msgid "Image size is too large" msgstr "ไฟล์รูปภาพมีขนาดใหญ่เกินไป" -#: InvenTree/helpers_model.py:166 +#: InvenTree/helpers_model.py:167 msgid "Image download exceeded maximum size" msgstr "" -#: InvenTree/helpers_model.py:171 +#: InvenTree/helpers_model.py:172 msgid "Remote server returned empty response" msgstr "" -#: InvenTree/helpers_model.py:179 +#: InvenTree/helpers_model.py:180 msgid "Supplied URL is not a valid image file" msgstr "" @@ -207,7 +207,7 @@ msgstr "" msgid "Log in to the app" msgstr "" -#: InvenTree/magic_login.py:41 company/models.py:172 users/serializers.py:198 +#: InvenTree/magic_login.py:41 company/models.py:173 users/serializers.py:198 msgid "Email" msgstr "อีเมล" @@ -215,160 +215,176 @@ msgstr "อีเมล" msgid "You must enable two-factor authentication before doing anything else." msgstr "" -#: InvenTree/models.py:111 +#: InvenTree/models.py:114 msgid "Error running plugin validation" msgstr "" -#: InvenTree/models.py:192 +#: InvenTree/models.py:195 msgid "Metadata must be a python dict object" msgstr "" -#: InvenTree/models.py:198 +#: InvenTree/models.py:201 msgid "Plugin Metadata" msgstr "ข้อมูลเมตาของปลั๊กอิน" -#: InvenTree/models.py:199 +#: InvenTree/models.py:202 msgid "JSON metadata field, for use by external plugins" msgstr "" -#: InvenTree/models.py:382 +#: InvenTree/models.py:385 msgid "Improperly formatted pattern" msgstr "" -#: InvenTree/models.py:389 +#: InvenTree/models.py:392 msgid "Unknown format key specified" msgstr "" -#: InvenTree/models.py:395 +#: InvenTree/models.py:398 msgid "Missing required format key" msgstr "" -#: InvenTree/models.py:406 +#: InvenTree/models.py:409 msgid "Reference field cannot be empty" msgstr "" -#: InvenTree/models.py:414 +#: InvenTree/models.py:417 msgid "Reference must match required pattern" msgstr "" -#: InvenTree/models.py:445 +#: InvenTree/models.py:448 msgid "Reference number is too large" msgstr "" -#: InvenTree/models.py:743 +#: InvenTree/models.py:896 msgid "Invalid choice" msgstr "" -#: InvenTree/models.py:856 common/models.py:1410 common/models.py:1837 -#: common/models.py:2096 common/models.py:2221 common/serializers.py:535 -#: company/models.py:615 generic/states/serializers.py:20 machine/models.py:25 -#: part/models.py:1039 part/models.py:3850 plugin/models.py:54 +#: InvenTree/models.py:1017 common/models.py:1414 common/models.py:1841 +#: common/models.py:2102 common/models.py:2227 common/models.py:2494 +#: common/serializers.py:539 generic/states/serializers.py:20 +#: machine/models.py:25 part/models.py:1127 plugin/models.py:54 #: report/models.py:216 stock/models.py:84 msgid "Name" msgstr "ชื่อ" -#: InvenTree/models.py:862 build/models.py:252 common/models.py:171 -#: common/models.py:2228 common/models.py:2341 company/models.py:543 -#: company/models.py:848 order/models.py:442 order/models.py:1825 -#: part/models.py:1062 part/models.py:3865 report/models.py:222 +#: InvenTree/models.py:1023 build/models.py:253 common/models.py:175 +#: common/models.py:2234 common/models.py:2347 common/models.py:2509 +#: company/models.py:545 company/models.py:802 order/models.py:443 +#: order/models.py:1826 part/models.py:1150 report/models.py:222 #: report/models.py:815 report/models.py:841 #: report/templates/report/inventree_build_order_report.html:117 #: stock/models.py:90 msgid "Description" msgstr "คำอธิบาย" -#: InvenTree/models.py:863 stock/models.py:91 +#: InvenTree/models.py:1024 stock/models.py:91 msgid "Description (optional)" msgstr "" -#: InvenTree/models.py:878 common/models.py:2394 +#: InvenTree/models.py:1039 common/models.py:2815 msgid "Path" msgstr "" -#: InvenTree/models.py:983 +#: InvenTree/models.py:1144 msgid "Duplicate names cannot exist under the same parent" msgstr "" -#: InvenTree/models.py:1067 +#: InvenTree/models.py:1228 msgid "Markdown notes (optional)" msgstr "" -#: InvenTree/models.py:1098 +#: InvenTree/models.py:1259 msgid "Barcode Data" msgstr "ข้อมูลบาร์โค้ด" -#: InvenTree/models.py:1099 +#: InvenTree/models.py:1260 msgid "Third party barcode data" msgstr "" -#: InvenTree/models.py:1105 +#: InvenTree/models.py:1266 msgid "Barcode Hash" msgstr "" -#: InvenTree/models.py:1106 +#: InvenTree/models.py:1267 msgid "Unique hash of barcode data" msgstr "" -#: InvenTree/models.py:1187 +#: InvenTree/models.py:1348 msgid "Existing barcode found" msgstr "บาร์โค้ดนี้มีในระบบแล้ว" -#: InvenTree/models.py:1269 +#: InvenTree/models.py:1430 msgid "Task Failure" msgstr "" -#: InvenTree/models.py:1270 +#: InvenTree/models.py:1431 #, python-brace-format msgid "Background worker task '{f}' failed after {n} attempts" msgstr "" -#: InvenTree/models.py:1297 +#: InvenTree/models.py:1458 msgid "Server Error" msgstr "เกิดข้อผิดพลาดที่เซิร์ฟเวอร์" -#: InvenTree/models.py:1298 +#: InvenTree/models.py:1459 msgid "An error has been logged by the server." msgstr "" -#: InvenTree/models.py:1340 common/models.py:1748 +#: InvenTree/models.py:1501 common/models.py:1752 #: report/templates/report/inventree_bill_of_materials_report.html:126 #: report/templates/report/inventree_bill_of_materials_report.html:148 #: report/templates/report/inventree_return_order_report.html:35 msgid "Image" msgstr "" -#: InvenTree/serializers.py:253 part/models.py:4571 +#: InvenTree/serializers.py:255 part/models.py:4196 msgid "Must be a valid number" msgstr "ต้องเป็นตัวเลข" -#: InvenTree/serializers.py:295 company/models.py:214 part/models.py:3285 +#: InvenTree/serializers.py:297 company/models.py:215 part/models.py:3349 msgid "Currency" msgstr "สกุลเงิน" -#: InvenTree/serializers.py:298 part/serializers.py:1385 +#: InvenTree/serializers.py:300 part/serializers.py:1250 msgid "Select currency from available options" msgstr "" -#: InvenTree/serializers.py:653 +#: InvenTree/serializers.py:654 +msgid "This field may not be null." +msgstr "" + +#: InvenTree/serializers.py:660 msgid "Invalid value" msgstr "" -#: InvenTree/serializers.py:690 +#: InvenTree/serializers.py:697 msgid "Remote Image" msgstr "" -#: InvenTree/serializers.py:691 +#: InvenTree/serializers.py:698 msgid "URL of remote image file" msgstr "" -#: InvenTree/serializers.py:709 +#: InvenTree/serializers.py:716 msgid "Downloading images from remote URL is not enabled" msgstr "" -#: InvenTree/serializers.py:716 +#: InvenTree/serializers.py:723 msgid "Failed to download image from remote URL" msgstr "" +#: InvenTree/serializers.py:806 +msgid "Invalid content type format" +msgstr "" + +#: InvenTree/serializers.py:809 +msgid "Content type not found" +msgstr "" + +#: InvenTree/serializers.py:815 +msgid "Content type does not match required mixin class" +msgstr "" + #: InvenTree/setting/locales.py:20 msgid "Arabic" msgstr "" @@ -537,30 +553,30 @@ msgstr "" msgid "Not a valid currency code" msgstr "" -#: build/api.py:54 order/api.py:111 order/api.py:270 order/api.py:1373 -#: order/serializers.py:132 +#: build/api.py:54 order/api.py:116 order/api.py:275 order/api.py:1378 +#: order/serializers.py:133 msgid "Order Status" msgstr "" -#: build/api.py:80 build/models.py:264 +#: build/api.py:80 build/models.py:265 msgid "Parent Build" msgstr "" -#: build/api.py:84 build/api.py:831 order/api.py:547 order/api.py:770 -#: order/api.py:1174 order/api.py:1449 stock/api.py:573 +#: build/api.py:84 build/api.py:837 order/api.py:553 order/api.py:776 +#: order/api.py:1179 order/api.py:1454 stock/api.py:573 msgid "Include Variants" msgstr "" -#: build/api.py:100 build/api.py:466 build/api.py:845 build/models.py:270 -#: build/serializers.py:1225 build/serializers.py:1356 -#: build/serializers.py:1427 company/models.py:1067 company/serializers.py:445 -#: order/api.py:298 order/api.py:302 order/api.py:929 order/api.py:1187 -#: order/api.py:1190 order/models.py:1941 order/models.py:2108 -#: order/models.py:2109 part/api.py:1233 part/api.py:1236 part/api.py:1302 -#: part/api.py:1589 part/models.py:472 part/models.py:3296 part/models.py:3439 -#: part/models.py:3497 part/models.py:3518 part/models.py:3540 -#: part/models.py:3679 part/models.py:4046 part/models.py:4368 -#: part/models.py:4787 part/serializers.py:1928 +#: build/api.py:100 build/api.py:472 build/api.py:851 build/models.py:271 +#: build/serializers.py:1233 build/serializers.py:1364 +#: build/serializers.py:1435 company/models.py:1021 company/serializers.py:490 +#: order/api.py:303 order/api.py:307 order/api.py:934 order/api.py:1192 +#: order/api.py:1195 order/models.py:1942 order/models.py:2109 +#: order/models.py:2110 part/api.py:1160 part/api.py:1163 part/api.py:1314 +#: part/models.py:550 part/models.py:3360 part/models.py:3503 +#: part/models.py:3561 part/models.py:3582 part/models.py:3604 +#: part/models.py:3743 part/models.py:3993 part/models.py:4412 +#: part/serializers.py:1801 #: report/templates/report/inventree_bill_of_materials_report.html:110 #: report/templates/report/inventree_bill_of_materials_report.html:137 #: report/templates/report/inventree_build_order_report.html:109 @@ -580,9 +596,9 @@ msgstr "" msgid "Part" msgstr "" -#: build/api.py:120 build/api.py:123 build/serializers.py:1438 part/api.py:980 -#: part/api.py:1316 part/api.py:1600 part/models.py:1080 part/models.py:3568 -#: part/models.py:4162 part/serializers.py:1752 stock/api.py:869 +#: build/api.py:120 build/api.py:123 build/serializers.py:1446 part/api.py:975 +#: part/api.py:1325 part/models.py:435 part/models.py:1168 part/models.py:3632 +#: part/serializers.py:1617 stock/api.py:869 msgid "Category" msgstr "" @@ -590,7 +606,7 @@ msgstr "" msgid "Ancestor Build" msgstr "" -#: build/api.py:152 order/api.py:129 +#: build/api.py:152 order/api.py:134 msgid "Assigned to me" msgstr "" @@ -638,134 +654,134 @@ msgstr "" msgid "Completed after" msgstr "" -#: build/api.py:249 order/api.py:226 +#: build/api.py:249 order/api.py:231 msgid "Min Date" msgstr "" -#: build/api.py:272 order/api.py:245 +#: build/api.py:272 order/api.py:250 msgid "Max Date" msgstr "" -#: build/api.py:297 build/api.py:300 part/api.py:217 stock/api.py:961 +#: build/api.py:297 build/api.py:300 part/api.py:212 stock/api.py:961 msgid "Exclude Tree" msgstr "" -#: build/api.py:405 +#: build/api.py:411 msgid "Build must be cancelled before it can be deleted" msgstr "" -#: build/api.py:449 build/serializers.py:1374 part/models.py:4402 +#: build/api.py:455 build/serializers.py:1382 part/models.py:4027 msgid "Consumable" msgstr "" -#: build/api.py:452 build/serializers.py:1377 part/models.py:4396 +#: build/api.py:458 build/serializers.py:1385 part/models.py:4021 msgid "Optional" msgstr "" -#: build/api.py:455 build/serializers.py:1415 common/setting/system.py:456 -#: part/models.py:1202 part/serializers.py:1714 part/serializers.py:1725 +#: build/api.py:461 build/serializers.py:1423 common/setting/system.py:456 +#: part/models.py:1290 part/serializers.py:1579 part/serializers.py:1590 #: stock/api.py:639 msgid "Assembly" msgstr "" -#: build/api.py:458 +#: build/api.py:464 msgid "Tracked" msgstr "" -#: build/api.py:461 build/serializers.py:1380 part/models.py:1220 +#: build/api.py:467 build/serializers.py:1388 part/models.py:1308 msgid "Testable" msgstr "" -#: build/api.py:471 order/api.py:993 order/api.py:1363 +#: build/api.py:477 order/api.py:998 order/api.py:1368 msgid "Order Outstanding" msgstr "" -#: build/api.py:481 build/serializers.py:1464 order/api.py:952 +#: build/api.py:487 build/serializers.py:1472 order/api.py:957 msgid "Allocated" msgstr "" -#: build/api.py:490 build/models.py:1672 build/serializers.py:1393 +#: build/api.py:496 build/models.py:1673 build/serializers.py:1401 msgid "Consumed" msgstr "" -#: build/api.py:499 company/models.py:912 company/serializers.py:440 +#: build/api.py:505 company/models.py:866 company/serializers.py:467 #: templates/email/build_order_required_stock.html:19 #: templates/email/low_stock_notification.html:17 #: templates/email/part_event_notification.html:18 msgid "Available" msgstr "" -#: build/api.py:523 build/serializers.py:1466 company/serializers.py:437 -#: order/serializers.py:1281 part/serializers.py:959 part/serializers.py:1306 -#: part/serializers.py:1761 +#: build/api.py:529 build/serializers.py:1474 company/serializers.py:464 +#: order/serializers.py:1295 part/serializers.py:844 part/serializers.py:1171 +#: part/serializers.py:1626 msgid "On Order" msgstr "" -#: build/api.py:868 build/models.py:117 order/models.py:1974 +#: build/api.py:874 build/models.py:118 order/models.py:1975 #: report/templates/report/inventree_build_order_report.html:105 #: stock/serializers.py:93 templates/email/build_order_completed.html:16 #: templates/email/overdue_build_order.html:15 msgid "Build Order" msgstr "" -#: build/api.py:882 build/api.py:886 build/serializers.py:372 -#: build/serializers.py:497 build/serializers.py:567 build/serializers.py:1251 -#: build/serializers.py:1256 order/api.py:1234 order/api.py:1239 -#: order/serializers.py:833 order/serializers.py:973 order/serializers.py:2042 +#: build/api.py:888 build/api.py:892 build/serializers.py:380 +#: build/serializers.py:505 build/serializers.py:575 build/serializers.py:1259 +#: build/serializers.py:1264 order/api.py:1239 order/api.py:1244 +#: order/serializers.py:844 order/serializers.py:984 order/serializers.py:2059 #: stock/api.py:987 stock/serializers.py:111 stock/serializers.py:601 #: stock/serializers.py:710 stock/serializers.py:888 stock/serializers.py:1418 -#: stock/serializers.py:1731 stock/serializers.py:1780 +#: stock/serializers.py:1739 stock/serializers.py:1788 #: templates/email/stale_stock_notification.html:18 users/models.py:549 msgid "Location" msgstr "สถานที่" -#: build/api.py:894 +#: build/api.py:900 msgid "Output" msgstr "" -#: build/api.py:896 +#: build/api.py:902 msgid "Filter by output stock item ID. Use 'null' to find uninstalled build items." msgstr "" -#: build/models.py:118 users/ruleset.py:31 +#: build/models.py:119 users/ruleset.py:31 msgid "Build Orders" msgstr "" -#: build/models.py:168 +#: build/models.py:169 msgid "Assembly BOM has not been validated" msgstr "" -#: build/models.py:175 +#: build/models.py:176 msgid "Build order cannot be created for an inactive part" msgstr "" -#: build/models.py:182 +#: build/models.py:183 msgid "Build order cannot be created for an unlocked part" msgstr "" -#: build/models.py:200 +#: build/models.py:201 msgid "Build orders can only be externally fulfilled for purchaseable parts" msgstr "" -#: build/models.py:207 order/models.py:369 +#: build/models.py:208 order/models.py:370 msgid "Responsible user or group must be specified" msgstr "" -#: build/models.py:212 +#: build/models.py:213 msgid "Build order part cannot be changed" msgstr "" -#: build/models.py:217 order/models.py:382 +#: build/models.py:218 order/models.py:383 msgid "Target date must be after start date" msgstr "" -#: build/models.py:245 +#: build/models.py:246 msgid "Build Order Reference" msgstr "" -#: build/models.py:246 build/serializers.py:1371 order/models.py:614 -#: order/models.py:1311 order/models.py:1773 order/models.py:2712 -#: part/models.py:4442 +#: build/models.py:247 build/serializers.py:1379 order/models.py:615 +#: order/models.py:1312 order/models.py:1774 order/models.py:2713 +#: part/models.py:4067 #: report/templates/report/inventree_bill_of_materials_report.html:139 #: report/templates/report/inventree_purchase_order_report.html:35 #: report/templates/report/inventree_return_order_report.html:26 @@ -773,230 +789,230 @@ msgstr "" msgid "Reference" msgstr "" -#: build/models.py:255 +#: build/models.py:256 msgid "Brief description of the build (optional)" msgstr "" -#: build/models.py:265 +#: build/models.py:266 msgid "BuildOrder to which this build is allocated" msgstr "" -#: build/models.py:274 +#: build/models.py:275 msgid "Select part to build" msgstr "" -#: build/models.py:279 +#: build/models.py:280 msgid "Sales Order Reference" msgstr "" -#: build/models.py:284 +#: build/models.py:285 msgid "SalesOrder to which this build is allocated" msgstr "" -#: build/models.py:289 build/serializers.py:1097 +#: build/models.py:290 build/serializers.py:1105 msgid "Source Location" msgstr "" -#: build/models.py:295 +#: build/models.py:296 msgid "Select location to take stock from for this build (leave blank to take from any stock location)" msgstr "" -#: build/models.py:301 +#: build/models.py:302 msgid "External Build" msgstr "" -#: build/models.py:302 +#: build/models.py:303 msgid "This build order is fulfilled externally" msgstr "" -#: build/models.py:307 +#: build/models.py:308 msgid "Destination Location" msgstr "" -#: build/models.py:312 +#: build/models.py:313 msgid "Select location where the completed items will be stored" msgstr "" -#: build/models.py:316 +#: build/models.py:317 msgid "Build Quantity" msgstr "" -#: build/models.py:319 +#: build/models.py:320 msgid "Number of stock items to build" msgstr "" -#: build/models.py:323 +#: build/models.py:324 msgid "Completed items" msgstr "" -#: build/models.py:325 +#: build/models.py:326 msgid "Number of stock items which have been completed" msgstr "" -#: build/models.py:329 +#: build/models.py:330 msgid "Build Status" msgstr "" -#: build/models.py:334 +#: build/models.py:335 msgid "Build status code" msgstr "" -#: build/models.py:343 build/serializers.py:359 order/serializers.py:849 +#: build/models.py:344 build/serializers.py:367 order/serializers.py:860 #: stock/models.py:1100 stock/serializers.py:85 stock/serializers.py:1591 msgid "Batch Code" msgstr "" -#: build/models.py:347 build/serializers.py:360 +#: build/models.py:348 build/serializers.py:368 msgid "Batch code for this build output" msgstr "" -#: build/models.py:351 order/models.py:479 order/serializers.py:186 -#: part/models.py:1283 +#: build/models.py:352 order/models.py:480 order/serializers.py:193 +#: part/models.py:1371 msgid "Creation Date" msgstr "" -#: build/models.py:357 +#: build/models.py:358 msgid "Build start date" msgstr "" -#: build/models.py:358 +#: build/models.py:359 msgid "Scheduled start date for this build order" msgstr "" -#: build/models.py:364 +#: build/models.py:365 msgid "Target completion date" msgstr "" -#: build/models.py:366 +#: build/models.py:367 msgid "Target date for build completion. Build will be overdue after this date." msgstr "" -#: build/models.py:371 order/models.py:667 order/models.py:2751 +#: build/models.py:372 order/models.py:668 order/models.py:2752 msgid "Completion Date" msgstr "" -#: build/models.py:379 +#: build/models.py:380 msgid "completed by" msgstr "" -#: build/models.py:388 +#: build/models.py:389 msgid "Issued by" msgstr "ออกโดย" -#: build/models.py:389 +#: build/models.py:390 msgid "User who issued this build order" msgstr "" -#: build/models.py:398 common/models.py:180 order/api.py:179 -#: order/models.py:504 part/models.py:1300 +#: build/models.py:399 common/models.py:184 order/api.py:184 +#: order/models.py:505 part/models.py:1388 #: report/templates/report/inventree_build_order_report.html:158 msgid "Responsible" msgstr "" -#: build/models.py:399 +#: build/models.py:400 msgid "User or group responsible for this build order" msgstr "" -#: build/models.py:404 stock/models.py:1093 +#: build/models.py:405 stock/models.py:1093 msgid "External Link" msgstr "" -#: build/models.py:406 common/models.py:1984 part/models.py:1114 +#: build/models.py:407 common/models.py:1990 part/models.py:1202 #: stock/models.py:1095 msgid "Link to external URL" msgstr "" -#: build/models.py:411 +#: build/models.py:412 msgid "Build Priority" msgstr "" -#: build/models.py:414 +#: build/models.py:415 msgid "Priority of this build order" msgstr "" -#: build/models.py:422 common/models.py:150 common/models.py:164 -#: order/api.py:165 order/models.py:451 order/models.py:1805 +#: build/models.py:423 common/models.py:154 common/models.py:168 +#: order/api.py:170 order/models.py:452 order/models.py:1806 msgid "Project Code" msgstr "" -#: build/models.py:423 +#: build/models.py:424 msgid "Project code for this build order" msgstr "" -#: build/models.py:676 +#: build/models.py:677 msgid "Cannot complete build order with open child builds" msgstr "" -#: build/models.py:681 +#: build/models.py:682 msgid "Cannot complete build order with incomplete outputs" msgstr "" -#: build/models.py:700 build/models.py:830 +#: build/models.py:701 build/models.py:831 msgid "Failed to offload task to complete build allocations" msgstr "" -#: build/models.py:723 +#: build/models.py:724 #, python-brace-format msgid "Build order {build} has been completed" msgstr "" -#: build/models.py:729 +#: build/models.py:730 msgid "A build order has been completed" msgstr "" -#: build/models.py:911 build/serializers.py:407 +#: build/models.py:912 build/serializers.py:415 msgid "Serial numbers must be provided for trackable parts" msgstr "" -#: build/models.py:1042 build/models.py:1129 +#: build/models.py:1043 build/models.py:1130 msgid "No build output specified" msgstr "" -#: build/models.py:1045 +#: build/models.py:1046 msgid "Build output is already completed" msgstr "" -#: build/models.py:1048 +#: build/models.py:1049 msgid "Build output does not match Build Order" msgstr "" -#: build/models.py:1136 build/models.py:1234 build/serializers.py:285 -#: build/serializers.py:335 build/serializers.py:965 build/serializers.py:1739 -#: order/models.py:717 order/serializers.py:658 order/serializers.py:844 -#: part/serializers.py:1708 stock/models.py:940 stock/models.py:1430 +#: build/models.py:1137 build/models.py:1235 build/serializers.py:293 +#: build/serializers.py:343 build/serializers.py:973 build/serializers.py:1747 +#: order/models.py:718 order/serializers.py:669 order/serializers.py:855 +#: part/serializers.py:1573 stock/models.py:940 stock/models.py:1430 #: stock/models.py:1878 stock/serializers.py:688 stock/serializers.py:1580 msgid "Quantity must be greater than zero" msgstr "จำนวนต้องมีค่ามากกว่า 0" -#: build/models.py:1140 build/models.py:1239 build/serializers.py:290 +#: build/models.py:1141 build/models.py:1240 build/serializers.py:298 msgid "Quantity cannot be greater than the output quantity" msgstr "" -#: build/models.py:1214 build/serializers.py:606 +#: build/models.py:1215 build/serializers.py:614 msgid "Build output has not passed all required tests" msgstr "" -#: build/models.py:1217 build/serializers.py:601 +#: build/models.py:1218 build/serializers.py:609 #, python-brace-format msgid "Build output {serial} has not passed all required tests" msgstr "" -#: build/models.py:1229 +#: build/models.py:1230 msgid "Cannot partially complete a build output with allocated items" msgstr "" -#: build/models.py:1627 +#: build/models.py:1628 msgid "Build Order Line Item" msgstr "" -#: build/models.py:1651 +#: build/models.py:1652 msgid "Build object" msgstr "" -#: build/models.py:1663 build/models.py:1974 build/serializers.py:271 -#: build/serializers.py:320 build/serializers.py:1392 common/models.py:1340 -#: order/models.py:1756 order/models.py:2597 order/serializers.py:1696 -#: order/serializers.py:2124 part/models.py:3453 part/models.py:4390 +#: build/models.py:1664 build/models.py:1975 build/serializers.py:279 +#: build/serializers.py:328 build/serializers.py:1400 common/models.py:1344 +#: order/models.py:1757 order/models.py:2598 order/serializers.py:1710 +#: order/serializers.py:2141 part/models.py:3517 part/models.py:4015 #: report/templates/report/inventree_bill_of_materials_report.html:138 #: report/templates/report/inventree_build_order_report.html:113 #: report/templates/report/inventree_purchase_order_report.html:36 @@ -1014,427 +1030,427 @@ msgstr "" msgid "Quantity" msgstr "" -#: build/models.py:1664 +#: build/models.py:1665 msgid "Required quantity for build order" msgstr "" -#: build/models.py:1673 +#: build/models.py:1674 msgid "Quantity of consumed stock" msgstr "" -#: build/models.py:1772 +#: build/models.py:1773 msgid "Build item must specify a build output, as master part is marked as trackable" msgstr "" -#: build/models.py:1783 +#: build/models.py:1784 #, python-brace-format msgid "Allocated quantity ({q}) must not exceed available stock quantity ({a})" msgstr "" -#: build/models.py:1804 order/models.py:2546 +#: build/models.py:1805 order/models.py:2547 msgid "Stock item is over-allocated" msgstr "" -#: build/models.py:1809 order/models.py:2549 +#: build/models.py:1810 order/models.py:2550 msgid "Allocation quantity must be greater than zero" msgstr "" -#: build/models.py:1815 +#: build/models.py:1816 msgid "Quantity must be 1 for serialized stock" msgstr "" -#: build/models.py:1875 +#: build/models.py:1876 msgid "Selected stock item does not match BOM line" msgstr "" -#: build/models.py:1913 +#: build/models.py:1914 msgid "Allocated quantity exceeds available stock quantity" msgstr "" -#: build/models.py:1964 build/serializers.py:948 build/serializers.py:1240 -#: order/serializers.py:1533 order/serializers.py:1554 +#: build/models.py:1965 build/serializers.py:956 build/serializers.py:1248 +#: order/serializers.py:1547 order/serializers.py:1568 #: report/templates/report/inventree_sales_order_shipment_report.html:29 #: stock/api.py:1404 stock/models.py:456 stock/serializers.py:102 #: stock/serializers.py:800 stock/serializers.py:1274 stock/serializers.py:1386 msgid "Stock Item" msgstr "" -#: build/models.py:1965 +#: build/models.py:1966 msgid "Source stock item" msgstr "" -#: build/models.py:1975 +#: build/models.py:1976 msgid "Stock quantity to allocate to build" msgstr "" -#: build/models.py:1984 +#: build/models.py:1985 msgid "Install into" msgstr "" -#: build/models.py:1985 +#: build/models.py:1986 msgid "Destination stock item" msgstr "" -#: build/serializers.py:118 +#: build/serializers.py:120 msgid "Build Level" msgstr "" -#: build/serializers.py:128 +#: build/serializers.py:136 msgid "Part Name" msgstr "" -#: build/serializers.py:153 +#: build/serializers.py:161 msgid "Project Code Label" msgstr "" -#: build/serializers.py:219 build/serializers.py:974 +#: build/serializers.py:227 build/serializers.py:982 msgid "Build Output" msgstr "" -#: build/serializers.py:231 +#: build/serializers.py:239 msgid "Build output does not match the parent build" msgstr "" -#: build/serializers.py:235 +#: build/serializers.py:243 msgid "Output part does not match BuildOrder part" msgstr "" -#: build/serializers.py:239 +#: build/serializers.py:247 msgid "This build output has already been completed" msgstr "" -#: build/serializers.py:253 +#: build/serializers.py:261 msgid "This build output is not fully allocated" msgstr "" -#: build/serializers.py:272 build/serializers.py:321 +#: build/serializers.py:280 build/serializers.py:329 msgid "Enter quantity for build output" msgstr "" -#: build/serializers.py:343 +#: build/serializers.py:351 msgid "Integer quantity required for trackable parts" msgstr "" -#: build/serializers.py:349 +#: build/serializers.py:357 msgid "Integer quantity required, as the bill of materials contains trackable parts" msgstr "" -#: build/serializers.py:366 order/serializers.py:865 order/serializers.py:1700 +#: build/serializers.py:374 order/serializers.py:876 order/serializers.py:1714 #: stock/serializers.py:699 msgid "Serial Numbers" msgstr "" -#: build/serializers.py:367 +#: build/serializers.py:375 msgid "Enter serial numbers for build outputs" msgstr "" -#: build/serializers.py:373 +#: build/serializers.py:381 msgid "Stock location for build output" msgstr "" -#: build/serializers.py:388 +#: build/serializers.py:396 msgid "Auto Allocate Serial Numbers" msgstr "" -#: build/serializers.py:390 +#: build/serializers.py:398 msgid "Automatically allocate required items with matching serial numbers" msgstr "" -#: build/serializers.py:423 order/serializers.py:951 stock/api.py:1183 +#: build/serializers.py:431 order/serializers.py:962 stock/api.py:1183 #: stock/models.py:1901 msgid "The following serial numbers already exist or are invalid" msgstr "" -#: build/serializers.py:465 build/serializers.py:521 build/serializers.py:613 +#: build/serializers.py:473 build/serializers.py:529 build/serializers.py:621 msgid "A list of build outputs must be provided" msgstr "" -#: build/serializers.py:498 +#: build/serializers.py:506 msgid "Stock location for scrapped outputs" msgstr "" -#: build/serializers.py:504 +#: build/serializers.py:512 msgid "Discard Allocations" msgstr "" -#: build/serializers.py:505 +#: build/serializers.py:513 msgid "Discard any stock allocations for scrapped outputs" msgstr "" -#: build/serializers.py:510 +#: build/serializers.py:518 msgid "Reason for scrapping build output(s)" msgstr "" -#: build/serializers.py:568 +#: build/serializers.py:576 msgid "Location for completed build outputs" msgstr "" -#: build/serializers.py:576 +#: build/serializers.py:584 msgid "Accept Incomplete Allocation" msgstr "" -#: build/serializers.py:577 +#: build/serializers.py:585 msgid "Complete outputs if stock has not been fully allocated" msgstr "" -#: build/serializers.py:702 +#: build/serializers.py:710 msgid "Consume Allocated Stock" msgstr "" -#: build/serializers.py:703 +#: build/serializers.py:711 msgid "Consume any stock which has already been allocated to this build" msgstr "" -#: build/serializers.py:709 +#: build/serializers.py:717 msgid "Remove Incomplete Outputs" msgstr "" -#: build/serializers.py:710 +#: build/serializers.py:718 msgid "Delete any build outputs which have not been completed" msgstr "" -#: build/serializers.py:737 +#: build/serializers.py:745 msgid "Not permitted" msgstr "" -#: build/serializers.py:738 +#: build/serializers.py:746 msgid "Accept as consumed by this build order" msgstr "" -#: build/serializers.py:739 +#: build/serializers.py:747 msgid "Deallocate before completing this build order" msgstr "" -#: build/serializers.py:766 +#: build/serializers.py:774 msgid "Overallocated Stock" msgstr "" -#: build/serializers.py:769 +#: build/serializers.py:777 msgid "How do you want to handle extra stock items assigned to the build order" msgstr "" -#: build/serializers.py:780 +#: build/serializers.py:788 msgid "Some stock items have been overallocated" msgstr "" -#: build/serializers.py:785 +#: build/serializers.py:793 msgid "Accept Unallocated" msgstr "" -#: build/serializers.py:787 +#: build/serializers.py:795 msgid "Accept that stock items have not been fully allocated to this build order" msgstr "" -#: build/serializers.py:798 +#: build/serializers.py:806 msgid "Required stock has not been fully allocated" msgstr "" -#: build/serializers.py:803 order/serializers.py:524 order/serializers.py:1601 +#: build/serializers.py:811 order/serializers.py:535 order/serializers.py:1615 msgid "Accept Incomplete" msgstr "" -#: build/serializers.py:805 +#: build/serializers.py:813 msgid "Accept that the required number of build outputs have not been completed" msgstr "" -#: build/serializers.py:816 +#: build/serializers.py:824 msgid "Required build quantity has not been completed" msgstr "" -#: build/serializers.py:828 +#: build/serializers.py:836 msgid "Build order has open child build orders" msgstr "" -#: build/serializers.py:831 +#: build/serializers.py:839 msgid "Build order must be in production state" msgstr "" -#: build/serializers.py:834 +#: build/serializers.py:842 msgid "Build order has incomplete outputs" msgstr "" -#: build/serializers.py:873 +#: build/serializers.py:881 msgid "Build Line" msgstr "" -#: build/serializers.py:881 +#: build/serializers.py:889 msgid "Build output" msgstr "" -#: build/serializers.py:889 +#: build/serializers.py:897 msgid "Build output must point to the same build" msgstr "" -#: build/serializers.py:920 +#: build/serializers.py:928 msgid "Build Line Item" msgstr "" -#: build/serializers.py:938 +#: build/serializers.py:946 msgid "bom_item.part must point to the same part as the build order" msgstr "" -#: build/serializers.py:954 stock/serializers.py:1287 +#: build/serializers.py:962 stock/serializers.py:1287 msgid "Item must be in stock" msgstr "" -#: build/serializers.py:997 order/serializers.py:1587 +#: build/serializers.py:1005 order/serializers.py:1601 #, python-brace-format msgid "Available quantity ({q}) exceeded" msgstr "" -#: build/serializers.py:1003 +#: build/serializers.py:1011 msgid "Build output must be specified for allocation of tracked parts" msgstr "" -#: build/serializers.py:1011 +#: build/serializers.py:1019 msgid "Build output cannot be specified for allocation of untracked parts" msgstr "" -#: build/serializers.py:1035 order/serializers.py:1860 +#: build/serializers.py:1043 order/serializers.py:1874 msgid "Allocation items must be provided" msgstr "" -#: build/serializers.py:1099 +#: build/serializers.py:1107 msgid "Stock location where parts are to be sourced (leave blank to take from any location)" msgstr "" -#: build/serializers.py:1108 +#: build/serializers.py:1116 msgid "Exclude Location" msgstr "" -#: build/serializers.py:1109 +#: build/serializers.py:1117 msgid "Exclude stock items from this selected location" msgstr "" -#: build/serializers.py:1114 +#: build/serializers.py:1122 msgid "Interchangeable Stock" msgstr "" -#: build/serializers.py:1115 +#: build/serializers.py:1123 msgid "Stock items in multiple locations can be used interchangeably" msgstr "" -#: build/serializers.py:1120 +#: build/serializers.py:1128 msgid "Substitute Stock" msgstr "" -#: build/serializers.py:1121 +#: build/serializers.py:1129 msgid "Allow allocation of substitute parts" msgstr "" -#: build/serializers.py:1126 +#: build/serializers.py:1134 msgid "Optional Items" msgstr "" -#: build/serializers.py:1127 +#: build/serializers.py:1135 msgid "Allocate optional BOM items to build order" msgstr "" -#: build/serializers.py:1148 +#: build/serializers.py:1156 msgid "Failed to start auto-allocation task" msgstr "" -#: build/serializers.py:1200 +#: build/serializers.py:1208 msgid "BOM Reference" msgstr "" -#: build/serializers.py:1206 +#: build/serializers.py:1214 msgid "BOM Part ID" msgstr "" -#: build/serializers.py:1213 +#: build/serializers.py:1221 msgid "BOM Part Name" msgstr "" -#: build/serializers.py:1266 build/serializers.py:1449 +#: build/serializers.py:1274 build/serializers.py:1457 msgid "Build" msgstr "" -#: build/serializers.py:1276 company/models.py:685 order/api.py:311 -#: order/api.py:316 order/api.py:543 order/serializers.py:650 +#: build/serializers.py:1284 company/models.py:639 order/api.py:316 +#: order/api.py:321 order/api.py:549 order/serializers.py:661 #: stock/models.py:1036 stock/serializers.py:579 msgid "Supplier Part" msgstr "" -#: build/serializers.py:1284 stock/serializers.py:620 +#: build/serializers.py:1292 stock/serializers.py:620 msgid "Allocated Quantity" msgstr "" -#: build/serializers.py:1351 +#: build/serializers.py:1359 msgid "Build Reference" msgstr "" -#: build/serializers.py:1361 +#: build/serializers.py:1369 msgid "Part Category Name" msgstr "" -#: build/serializers.py:1383 common/setting/system.py:480 part/models.py:1214 +#: build/serializers.py:1391 common/setting/system.py:480 part/models.py:1302 msgid "Trackable" msgstr "" -#: build/serializers.py:1386 +#: build/serializers.py:1394 msgid "Inherited" msgstr "" -#: build/serializers.py:1389 part/models.py:4475 +#: build/serializers.py:1397 part/models.py:4100 msgid "Allow Variants" msgstr "" -#: build/serializers.py:1395 build/serializers.py:1400 part/models.py:4208 -#: part/models.py:4779 stock/api.py:882 +#: build/serializers.py:1403 build/serializers.py:1408 part/models.py:3833 +#: part/models.py:4404 stock/api.py:882 msgid "BOM Item" msgstr "" -#: build/serializers.py:1467 order/serializers.py:1282 part/serializers.py:1310 -#: part/serializers.py:1765 +#: build/serializers.py:1475 order/serializers.py:1296 part/serializers.py:1175 +#: part/serializers.py:1630 msgid "In Production" msgstr "" -#: build/serializers.py:1469 part/serializers.py:950 part/serializers.py:1314 +#: build/serializers.py:1477 part/serializers.py:835 part/serializers.py:1179 msgid "Scheduled to Build" msgstr "" -#: build/serializers.py:1472 part/serializers.py:987 +#: build/serializers.py:1480 part/serializers.py:872 msgid "External Stock" msgstr "" -#: build/serializers.py:1473 part/serializers.py:1300 part/serializers.py:1808 +#: build/serializers.py:1481 part/serializers.py:1165 part/serializers.py:1673 msgid "Available Stock" msgstr "" -#: build/serializers.py:1475 +#: build/serializers.py:1483 msgid "Available Substitute Stock" msgstr "" -#: build/serializers.py:1478 +#: build/serializers.py:1486 msgid "Available Variant Stock" msgstr "" -#: build/serializers.py:1752 +#: build/serializers.py:1760 msgid "Consumed quantity exceeds allocated quantity" msgstr "" -#: build/serializers.py:1789 +#: build/serializers.py:1797 msgid "Optional notes for the stock consumption" msgstr "" -#: build/serializers.py:1806 +#: build/serializers.py:1814 msgid "Build item must point to the correct build order" msgstr "" -#: build/serializers.py:1811 +#: build/serializers.py:1819 msgid "Duplicate build item allocation" msgstr "" -#: build/serializers.py:1829 +#: build/serializers.py:1837 msgid "Build line must point to the correct build order" msgstr "" -#: build/serializers.py:1834 +#: build/serializers.py:1842 msgid "Duplicate build line allocation" msgstr "" -#: build/serializers.py:1846 +#: build/serializers.py:1854 msgid "At least one item or line must be provided" msgstr "" @@ -1482,702 +1498,826 @@ msgstr "" msgid "Build order {bo} is now overdue" msgstr "" -#: common/api.py:694 +#: common/api.py:701 msgid "Is Link" msgstr "" -#: common/api.py:702 +#: common/api.py:709 msgid "Is File" msgstr "" -#: common/api.py:745 +#: common/api.py:756 msgid "User does not have permission to delete these attachments" msgstr "" -#: common/api.py:762 +#: common/api.py:769 msgid "User does not have permission to delete this attachment" msgstr "" -#: common/currency.py:122 +#: common/currency.py:130 msgid "Invalid currency code" msgstr "" -#: common/currency.py:124 +#: common/currency.py:132 msgid "Duplicate currency code" msgstr "" -#: common/currency.py:129 +#: common/currency.py:137 msgid "No valid currency codes provided" msgstr "" -#: common/currency.py:146 +#: common/currency.py:154 msgid "No plugin" msgstr "" -#: common/models.py:101 common/models.py:126 common/models.py:2729 +#: common/models.py:105 common/models.py:130 common/models.py:3150 msgid "Updated" msgstr "" -#: common/models.py:102 common/models.py:127 +#: common/models.py:106 common/models.py:131 msgid "Timestamp of last update" msgstr "" -#: common/models.py:139 +#: common/models.py:143 msgid "Update By" msgstr "" -#: common/models.py:140 +#: common/models.py:144 msgid "User who last updated this object" msgstr "" -#: common/models.py:165 +#: common/models.py:169 msgid "Unique project code" msgstr "" -#: common/models.py:172 +#: common/models.py:176 msgid "Project description" msgstr "" -#: common/models.py:181 +#: common/models.py:185 msgid "User or group responsible for this project" msgstr "" -#: common/models.py:771 common/models.py:1272 common/models.py:1310 +#: common/models.py:775 common/models.py:1276 common/models.py:1314 msgid "Settings key" msgstr "" -#: common/models.py:775 +#: common/models.py:779 msgid "Settings value" msgstr "" -#: common/models.py:830 +#: common/models.py:834 msgid "Chosen value is not a valid option" msgstr "" -#: common/models.py:846 +#: common/models.py:850 msgid "Value must be a boolean value" msgstr "" -#: common/models.py:854 +#: common/models.py:858 msgid "Value must be an integer value" msgstr "" -#: common/models.py:862 +#: common/models.py:866 msgid "Value must be a valid number" msgstr "" -#: common/models.py:887 +#: common/models.py:891 msgid "Value does not pass validation checks" msgstr "" -#: common/models.py:909 +#: common/models.py:913 msgid "Key string must be unique" msgstr "" -#: common/models.py:1318 common/models.py:1319 common/models.py:1423 -#: common/models.py:1424 common/models.py:1669 common/models.py:1670 -#: common/models.py:2000 common/models.py:2001 common/models.py:2382 -#: importer/models.py:100 part/models.py:3547 part/models.py:3575 +#: common/models.py:1322 common/models.py:1323 common/models.py:1427 +#: common/models.py:1428 common/models.py:1673 common/models.py:1674 +#: common/models.py:2006 common/models.py:2007 common/models.py:2803 +#: importer/models.py:100 part/models.py:3611 part/models.py:3639 #: plugin/models.py:355 plugin/models.py:356 #: report/templates/report/inventree_test_report.html:105 users/models.py:124 #: users/models.py:501 msgid "User" msgstr "ผู้ใช้งาน" -#: common/models.py:1341 +#: common/models.py:1345 msgid "Price break quantity" msgstr "" -#: common/models.py:1348 company/serializers.py:564 order/models.py:1842 -#: order/models.py:3043 +#: common/models.py:1352 company/serializers.py:349 order/models.py:1843 +#: order/models.py:3044 msgid "Price" msgstr "" -#: common/models.py:1349 +#: common/models.py:1353 msgid "Unit price at specified quantity" msgstr "" -#: common/models.py:1400 common/models.py:1585 +#: common/models.py:1404 common/models.py:1589 msgid "Endpoint" msgstr "" -#: common/models.py:1401 +#: common/models.py:1405 msgid "Endpoint at which this webhook is received" msgstr "" -#: common/models.py:1411 +#: common/models.py:1415 msgid "Name for this webhook" msgstr "" -#: common/models.py:1415 common/models.py:2241 common/models.py:2348 -#: company/models.py:191 company/models.py:822 machine/models.py:40 -#: part/models.py:1237 plugin/models.py:69 stock/api.py:642 users/models.py:195 +#: common/models.py:1419 common/models.py:2247 common/models.py:2354 +#: company/models.py:192 company/models.py:776 machine/models.py:40 +#: part/models.py:1325 plugin/models.py:69 stock/api.py:642 users/models.py:195 #: users/models.py:554 users/serializers.py:314 msgid "Active" msgstr "" -#: common/models.py:1415 +#: common/models.py:1419 msgid "Is this webhook active" msgstr "" -#: common/models.py:1431 users/models.py:172 +#: common/models.py:1435 users/models.py:172 msgid "Token" msgstr "" -#: common/models.py:1432 +#: common/models.py:1436 msgid "Token for access" msgstr "" -#: common/models.py:1440 +#: common/models.py:1444 msgid "Secret" msgstr "" -#: common/models.py:1441 +#: common/models.py:1445 msgid "Shared secret for HMAC" msgstr "" -#: common/models.py:1549 common/models.py:2619 +#: common/models.py:1553 common/models.py:3040 msgid "Message ID" msgstr "" -#: common/models.py:1550 common/models.py:2609 +#: common/models.py:1554 common/models.py:3030 msgid "Unique identifier for this message" msgstr "" -#: common/models.py:1558 +#: common/models.py:1562 msgid "Host" msgstr "" -#: common/models.py:1559 +#: common/models.py:1563 msgid "Host from which this message was received" msgstr "" -#: common/models.py:1567 +#: common/models.py:1571 msgid "Header" msgstr "" -#: common/models.py:1568 +#: common/models.py:1572 msgid "Header of this message" msgstr "" -#: common/models.py:1575 +#: common/models.py:1579 msgid "Body" msgstr "" -#: common/models.py:1576 +#: common/models.py:1580 msgid "Body of this message" msgstr "" -#: common/models.py:1586 +#: common/models.py:1590 msgid "Endpoint on which this message was received" msgstr "" -#: common/models.py:1591 +#: common/models.py:1595 msgid "Worked on" msgstr "" -#: common/models.py:1592 +#: common/models.py:1596 msgid "Was the work on this message finished?" msgstr "" -#: common/models.py:1718 +#: common/models.py:1722 msgid "Id" msgstr "" -#: common/models.py:1720 +#: common/models.py:1724 msgid "Title" msgstr "" -#: common/models.py:1722 common/models.py:1983 company/models.py:185 -#: company/models.py:467 company/models.py:534 company/models.py:839 -#: order/models.py:457 order/models.py:1786 order/models.py:2343 -#: part/models.py:1113 +#: common/models.py:1726 common/models.py:1989 company/models.py:186 +#: company/models.py:468 company/models.py:536 company/models.py:793 +#: order/models.py:458 order/models.py:1787 order/models.py:2344 +#: part/models.py:1201 #: report/templates/report/inventree_build_order_report.html:164 msgid "Link" msgstr "ลิงก์" -#: common/models.py:1724 +#: common/models.py:1728 msgid "Published" msgstr "" -#: common/models.py:1726 +#: common/models.py:1730 msgid "Author" msgstr "" -#: common/models.py:1728 +#: common/models.py:1732 msgid "Summary" msgstr "" -#: common/models.py:1731 common/models.py:2586 +#: common/models.py:1735 common/models.py:3007 msgid "Read" msgstr "" -#: common/models.py:1731 +#: common/models.py:1735 msgid "Was this news item read?" msgstr "" -#: common/models.py:1748 +#: common/models.py:1752 msgid "Image file" msgstr "" -#: common/models.py:1760 +#: common/models.py:1764 msgid "Target model type for this image" msgstr "" -#: common/models.py:1764 +#: common/models.py:1768 msgid "Target model ID for this image" msgstr "" -#: common/models.py:1786 +#: common/models.py:1790 msgid "Custom Unit" msgstr "" -#: common/models.py:1804 +#: common/models.py:1808 msgid "Unit symbol must be unique" msgstr "" -#: common/models.py:1819 +#: common/models.py:1823 msgid "Unit name must be a valid identifier" msgstr "" -#: common/models.py:1838 +#: common/models.py:1842 msgid "Unit name" msgstr "" -#: common/models.py:1845 +#: common/models.py:1849 msgid "Symbol" msgstr "" -#: common/models.py:1846 +#: common/models.py:1850 msgid "Optional unit symbol" msgstr "" -#: common/models.py:1852 +#: common/models.py:1856 msgid "Definition" msgstr "" -#: common/models.py:1853 +#: common/models.py:1857 msgid "Unit definition" msgstr "" -#: common/models.py:1911 common/models.py:1974 stock/models.py:2967 +#: common/models.py:1917 common/models.py:1980 stock/models.py:2984 #: stock/serializers.py:247 msgid "Attachment" msgstr "ไฟล์แนบ" -#: common/models.py:1928 +#: common/models.py:1934 msgid "Missing file" msgstr "ไม่พบไฟล์" -#: common/models.py:1929 +#: common/models.py:1935 msgid "Missing external link" msgstr "" -#: common/models.py:1966 +#: common/models.py:1972 common/models.py:2488 msgid "Model type" msgstr "" -#: common/models.py:1967 +#: common/models.py:1973 msgid "Target model type for image" msgstr "" -#: common/models.py:1975 +#: common/models.py:1981 msgid "Select file to attach" msgstr "เลือกไฟล์ที่ต้องการแนบ" -#: common/models.py:1991 +#: common/models.py:1997 msgid "Comment" msgstr "ความคิดเห็น" -#: common/models.py:1992 +#: common/models.py:1998 msgid "Attachment comment" msgstr "" -#: common/models.py:2008 +#: common/models.py:2014 msgid "Upload date" msgstr "" -#: common/models.py:2009 +#: common/models.py:2015 msgid "Date the file was uploaded" msgstr "" -#: common/models.py:2013 +#: common/models.py:2019 msgid "File size" msgstr "" -#: common/models.py:2013 +#: common/models.py:2019 msgid "File size in bytes" msgstr "" -#: common/models.py:2051 common/serializers.py:684 +#: common/models.py:2057 common/serializers.py:688 msgid "Invalid model type specified for attachment" msgstr "" -#: common/models.py:2072 +#: common/models.py:2078 msgid "Custom State" msgstr "" -#: common/models.py:2073 +#: common/models.py:2079 msgid "Custom States" msgstr "" -#: common/models.py:2078 +#: common/models.py:2084 msgid "Reference Status Set" msgstr "" -#: common/models.py:2079 +#: common/models.py:2085 msgid "Status set that is extended with this custom state" msgstr "" -#: common/models.py:2083 generic/states/serializers.py:18 +#: common/models.py:2089 generic/states/serializers.py:18 msgid "Logical Key" msgstr "" -#: common/models.py:2085 +#: common/models.py:2091 msgid "State logical key that is equal to this custom state in business logic" msgstr "" -#: common/models.py:2090 common/models.py:2329 company/models.py:622 -#: machine/serializers.py:27 -#: report/templates/report/inventree_test_report.html:104 stock/models.py:2959 +#: common/models.py:2096 common/models.py:2335 machine/serializers.py:27 +#: report/templates/report/inventree_test_report.html:104 stock/models.py:2976 msgid "Value" msgstr "" -#: common/models.py:2091 +#: common/models.py:2097 msgid "Numerical value that will be saved in the models database" msgstr "" -#: common/models.py:2097 +#: common/models.py:2103 msgid "Name of the state" msgstr "" -#: common/models.py:2106 common/models.py:2335 generic/states/serializers.py:22 +#: common/models.py:2112 common/models.py:2341 generic/states/serializers.py:22 msgid "Label" msgstr "" -#: common/models.py:2107 +#: common/models.py:2113 msgid "Label that will be displayed in the frontend" msgstr "" -#: common/models.py:2114 generic/states/serializers.py:24 +#: common/models.py:2120 generic/states/serializers.py:24 msgid "Color" msgstr "" -#: common/models.py:2115 +#: common/models.py:2121 msgid "Color that will be displayed in the frontend" msgstr "" -#: common/models.py:2123 +#: common/models.py:2129 msgid "Model" msgstr "" -#: common/models.py:2124 +#: common/models.py:2130 msgid "Model this state is associated with" msgstr "" -#: common/models.py:2139 +#: common/models.py:2145 msgid "Model must be selected" msgstr "" -#: common/models.py:2142 +#: common/models.py:2148 msgid "Key must be selected" msgstr "" -#: common/models.py:2145 +#: common/models.py:2151 msgid "Logical key must be selected" msgstr "" -#: common/models.py:2149 +#: common/models.py:2155 msgid "Key must be different from logical key" msgstr "" -#: common/models.py:2156 +#: common/models.py:2162 msgid "Valid reference status class must be provided" msgstr "" -#: common/models.py:2162 +#: common/models.py:2168 msgid "Key must be different from the logical keys of the reference status" msgstr "" -#: common/models.py:2169 +#: common/models.py:2175 msgid "Logical key must be in the logical keys of the reference status" msgstr "" -#: common/models.py:2176 +#: common/models.py:2182 msgid "Name must be different from the names of the reference status" msgstr "" -#: common/models.py:2216 common/models.py:2323 part/models.py:3889 +#: common/models.py:2222 common/models.py:2329 common/models.py:2533 msgid "Selection List" msgstr "" -#: common/models.py:2217 +#: common/models.py:2223 msgid "Selection Lists" msgstr "" -#: common/models.py:2222 +#: common/models.py:2228 msgid "Name of the selection list" msgstr "" -#: common/models.py:2229 +#: common/models.py:2235 msgid "Description of the selection list" msgstr "" -#: common/models.py:2235 part/models.py:1242 +#: common/models.py:2241 part/models.py:1330 msgid "Locked" msgstr "" -#: common/models.py:2236 +#: common/models.py:2242 msgid "Is this selection list locked?" msgstr "" -#: common/models.py:2242 +#: common/models.py:2248 msgid "Can this selection list be used?" msgstr "" -#: common/models.py:2250 +#: common/models.py:2256 msgid "Source Plugin" msgstr "" -#: common/models.py:2251 +#: common/models.py:2257 msgid "Plugin which provides the selection list" msgstr "" -#: common/models.py:2256 +#: common/models.py:2262 msgid "Source String" msgstr "" -#: common/models.py:2257 +#: common/models.py:2263 msgid "Optional string identifying the source used for this list" msgstr "" -#: common/models.py:2266 +#: common/models.py:2272 msgid "Default Entry" msgstr "" -#: common/models.py:2267 +#: common/models.py:2273 msgid "Default entry for this selection list" msgstr "" -#: common/models.py:2272 common/models.py:2724 +#: common/models.py:2278 common/models.py:3145 msgid "Created" msgstr "" -#: common/models.py:2273 +#: common/models.py:2279 msgid "Date and time that the selection list was created" msgstr "" -#: common/models.py:2278 +#: common/models.py:2284 msgid "Last Updated" msgstr "" -#: common/models.py:2279 +#: common/models.py:2285 msgid "Date and time that the selection list was last updated" msgstr "" -#: common/models.py:2313 +#: common/models.py:2319 msgid "Selection List Entry" msgstr "" -#: common/models.py:2314 +#: common/models.py:2320 msgid "Selection List Entries" msgstr "" -#: common/models.py:2324 +#: common/models.py:2330 msgid "Selection list to which this entry belongs" msgstr "" -#: common/models.py:2330 +#: common/models.py:2336 msgid "Value of the selection list entry" msgstr "" -#: common/models.py:2336 +#: common/models.py:2342 msgid "Label for the selection list entry" msgstr "" -#: common/models.py:2342 +#: common/models.py:2348 msgid "Description of the selection list entry" msgstr "" -#: common/models.py:2349 +#: common/models.py:2355 msgid "Is this selection list entry active?" msgstr "" -#: common/models.py:2367 -msgid "Barcode Scan" +#: common/models.py:2387 +msgid "Parameter Template" msgstr "" -#: common/models.py:2371 importer/models.py:546 part/models.py:4060 -msgid "Data" +#: common/models.py:2388 +msgid "Parameter Templates" msgstr "" -#: common/models.py:2372 -msgid "Barcode data" +#: common/models.py:2425 +msgid "Checkbox parameters cannot have units" msgstr "" -#: common/models.py:2383 -msgid "User who scanned the barcode" +#: common/models.py:2430 +msgid "Checkbox parameters cannot have choices" msgstr "" -#: common/models.py:2388 importer/models.py:69 -msgid "Timestamp" +#: common/models.py:2450 part/models.py:3707 +msgid "Choices must be unique" msgstr "" -#: common/models.py:2389 -msgid "Date and time of the barcode scan" +#: common/models.py:2467 +msgid "Parameter template name must be unique" msgstr "" -#: common/models.py:2395 -msgid "URL endpoint which processed the barcode" +#: common/models.py:2489 +msgid "Target model type for this parameter template" msgstr "" -#: common/models.py:2402 order/models.py:1832 plugin/serializers.py:93 -msgid "Context" +#: common/models.py:2495 +msgid "Parameter Name" msgstr "" -#: common/models.py:2403 -msgid "Context data for the barcode scan" +#: common/models.py:2501 part/models.py:1283 +msgid "Units" msgstr "" -#: common/models.py:2410 -msgid "Response" +#: common/models.py:2502 +msgid "Physical units for this parameter" msgstr "" -#: common/models.py:2411 -msgid "Response data from the barcode scan" +#: common/models.py:2510 +msgid "Parameter description" msgstr "" -#: common/models.py:2417 report/templates/report/inventree_test_report.html:103 -#: stock/models.py:2953 -msgid "Result" +#: common/models.py:2516 +msgid "Checkbox" msgstr "" -#: common/models.py:2418 -msgid "Was the barcode scan successful?" +#: common/models.py:2517 +msgid "Is this parameter a checkbox?" msgstr "" -#: common/models.py:2500 -msgid "An error occurred" +#: common/models.py:2522 part/models.py:3794 +msgid "Choices" msgstr "" -#: common/models.py:2521 -msgid "INVE-E8: Email log deletion is protected. Set INVENTREE_PROTECT_EMAIL_LOG to False to allow deletion." +#: common/models.py:2523 +msgid "Valid choices for this parameter (comma-separated)" msgstr "" -#: common/models.py:2568 -msgid "Email Message" +#: common/models.py:2534 +msgid "Selection list for this parameter" msgstr "" -#: common/models.py:2569 -msgid "Email Messages" +#: common/models.py:2539 part/models.py:3769 report/models.py:287 +msgid "Enabled" msgstr "" -#: common/models.py:2576 -msgid "Announced" +#: common/models.py:2540 +msgid "Is this parameter template enabled?" msgstr "" -#: common/models.py:2578 -msgid "Sent" -msgstr "" - -#: common/models.py:2579 -msgid "Failed" +#: common/models.py:2581 +msgid "Parameter" msgstr "" #: common/models.py:2582 -msgid "Delivered" -msgstr "" - -#: common/models.py:2590 -msgid "Confirmed" -msgstr "" - -#: common/models.py:2596 -msgid "Inbound" -msgstr "" - -#: common/models.py:2597 -msgid "Outbound" -msgstr "" - -#: common/models.py:2602 -msgid "No Reply" -msgstr "" - -#: common/models.py:2603 -msgid "Track Delivery" -msgstr "" - -#: common/models.py:2604 -msgid "Track Read" -msgstr "" - -#: common/models.py:2605 -msgid "Track Click" -msgstr "" - -#: common/models.py:2608 common/models.py:2711 -msgid "Global ID" -msgstr "" - -#: common/models.py:2621 -msgid "Identifier for this message (might be supplied by external system)" +msgid "Parameters" msgstr "" #: common/models.py:2628 +msgid "Invalid choice for parameter value" +msgstr "" + +#: common/models.py:2698 common/serializers.py:783 +msgid "Invalid model type specified for parameter" +msgstr "" + +#: common/models.py:2734 +msgid "Model ID" +msgstr "" + +#: common/models.py:2735 +msgid "ID of the target model for this parameter" +msgstr "" + +#: common/models.py:2744 common/setting/system.py:450 report/models.py:373 +#: report/models.py:669 report/serializers.py:94 report/serializers.py:135 +#: stock/serializers.py:234 +msgid "Template" +msgstr "" + +#: common/models.py:2745 +msgid "Parameter template" +msgstr "" + +#: common/models.py:2750 common/models.py:2792 importer/models.py:546 +msgid "Data" +msgstr "" + +#: common/models.py:2751 +msgid "Parameter Value" +msgstr "" + +#: common/models.py:2760 company/models.py:810 order/serializers.py:894 +#: order/serializers.py:2064 part/models.py:4075 part/models.py:4444 +#: report/templates/report/inventree_bill_of_materials_report.html:140 +#: report/templates/report/inventree_purchase_order_report.html:39 +#: report/templates/report/inventree_return_order_report.html:27 +#: report/templates/report/inventree_sales_order_report.html:32 +#: report/templates/report/inventree_stock_location_report.html:105 +#: stock/serializers.py:813 +msgid "Note" +msgstr "" + +#: common/models.py:2761 stock/serializers.py:718 +msgid "Optional note field" +msgstr "" + +#: common/models.py:2788 +msgid "Barcode Scan" +msgstr "" + +#: common/models.py:2793 +msgid "Barcode data" +msgstr "" + +#: common/models.py:2804 +msgid "User who scanned the barcode" +msgstr "" + +#: common/models.py:2809 importer/models.py:69 +msgid "Timestamp" +msgstr "" + +#: common/models.py:2810 +msgid "Date and time of the barcode scan" +msgstr "" + +#: common/models.py:2816 +msgid "URL endpoint which processed the barcode" +msgstr "" + +#: common/models.py:2823 order/models.py:1833 plugin/serializers.py:93 +msgid "Context" +msgstr "" + +#: common/models.py:2824 +msgid "Context data for the barcode scan" +msgstr "" + +#: common/models.py:2831 +msgid "Response" +msgstr "" + +#: common/models.py:2832 +msgid "Response data from the barcode scan" +msgstr "" + +#: common/models.py:2838 report/templates/report/inventree_test_report.html:103 +#: stock/models.py:2970 +msgid "Result" +msgstr "" + +#: common/models.py:2839 +msgid "Was the barcode scan successful?" +msgstr "" + +#: common/models.py:2921 +msgid "An error occurred" +msgstr "" + +#: common/models.py:2942 +msgid "INVE-E8: Email log deletion is protected. Set INVENTREE_PROTECT_EMAIL_LOG to False to allow deletion." +msgstr "" + +#: common/models.py:2989 +msgid "Email Message" +msgstr "" + +#: common/models.py:2990 +msgid "Email Messages" +msgstr "" + +#: common/models.py:2997 +msgid "Announced" +msgstr "" + +#: common/models.py:2999 +msgid "Sent" +msgstr "" + +#: common/models.py:3000 +msgid "Failed" +msgstr "" + +#: common/models.py:3003 +msgid "Delivered" +msgstr "" + +#: common/models.py:3011 +msgid "Confirmed" +msgstr "" + +#: common/models.py:3017 +msgid "Inbound" +msgstr "" + +#: common/models.py:3018 +msgid "Outbound" +msgstr "" + +#: common/models.py:3023 +msgid "No Reply" +msgstr "" + +#: common/models.py:3024 +msgid "Track Delivery" +msgstr "" + +#: common/models.py:3025 +msgid "Track Read" +msgstr "" + +#: common/models.py:3026 +msgid "Track Click" +msgstr "" + +#: common/models.py:3029 common/models.py:3132 +msgid "Global ID" +msgstr "" + +#: common/models.py:3042 +msgid "Identifier for this message (might be supplied by external system)" +msgstr "" + +#: common/models.py:3049 msgid "Thread ID" msgstr "" -#: common/models.py:2630 +#: common/models.py:3051 msgid "Identifier for this message thread (might be supplied by external system)" msgstr "" -#: common/models.py:2639 +#: common/models.py:3060 msgid "Thread" msgstr "" -#: common/models.py:2640 +#: common/models.py:3061 msgid "Linked thread for this message" msgstr "" -#: common/models.py:2656 -msgid "Prioriy" +#: common/models.py:3077 +msgid "Priority" msgstr "" -#: common/models.py:2698 +#: common/models.py:3119 msgid "Email Thread" msgstr "" -#: common/models.py:2699 +#: common/models.py:3120 msgid "Email Threads" msgstr "" -#: common/models.py:2705 generic/states/serializers.py:16 +#: common/models.py:3126 generic/states/serializers.py:16 #: machine/serializers.py:24 plugin/models.py:46 users/models.py:113 msgid "Key" msgstr "" -#: common/models.py:2708 +#: common/models.py:3129 msgid "Unique key for this thread (used to identify the thread)" msgstr "" -#: common/models.py:2712 +#: common/models.py:3133 msgid "Unique identifier for this thread" msgstr "" -#: common/models.py:2719 +#: common/models.py:3140 msgid "Started Internal" msgstr "" -#: common/models.py:2720 +#: common/models.py:3141 msgid "Was this thread started internally?" msgstr "" -#: common/models.py:2725 +#: common/models.py:3146 msgid "Date and time that the thread was created" msgstr "" -#: common/models.py:2730 +#: common/models.py:3151 msgid "Date and time that the thread was last updated" msgstr "" @@ -2199,7 +2339,7 @@ msgstr "" msgid "A order that is assigned to you was canceled" msgstr "" -#: common/notifications.py:73 common/notifications.py:80 order/api.py:594 +#: common/notifications.py:73 common/notifications.py:80 order/api.py:600 msgid "Items Received" msgstr "" @@ -2211,88 +2351,93 @@ msgstr "" msgid "Items have been received against a return order" msgstr "" -#: common/serializers.py:145 +#: common/serializers.py:149 msgid "Indicates if the setting is overridden by an environment variable" msgstr "" -#: common/serializers.py:147 +#: common/serializers.py:151 msgid "Override" msgstr "" -#: common/serializers.py:498 +#: common/serializers.py:502 msgid "Is Running" msgstr "" -#: common/serializers.py:504 +#: common/serializers.py:508 msgid "Pending Tasks" msgstr "" -#: common/serializers.py:510 +#: common/serializers.py:514 msgid "Scheduled Tasks" msgstr "" -#: common/serializers.py:516 +#: common/serializers.py:520 msgid "Failed Tasks" msgstr "" -#: common/serializers.py:531 +#: common/serializers.py:535 msgid "Task ID" msgstr "" -#: common/serializers.py:531 +#: common/serializers.py:535 msgid "Unique task ID" msgstr "" -#: common/serializers.py:533 +#: common/serializers.py:537 msgid "Lock" msgstr "" -#: common/serializers.py:533 +#: common/serializers.py:537 msgid "Lock time" msgstr "" -#: common/serializers.py:535 +#: common/serializers.py:539 msgid "Task name" msgstr "" -#: common/serializers.py:537 +#: common/serializers.py:541 msgid "Function" msgstr "" -#: common/serializers.py:537 +#: common/serializers.py:541 msgid "Function name" msgstr "" -#: common/serializers.py:539 +#: common/serializers.py:543 msgid "Arguments" msgstr "" -#: common/serializers.py:539 +#: common/serializers.py:543 msgid "Task arguments" msgstr "" -#: common/serializers.py:542 +#: common/serializers.py:546 msgid "Keyword Arguments" msgstr "" -#: common/serializers.py:542 +#: common/serializers.py:546 msgid "Task keyword arguments" msgstr "" -#: common/serializers.py:652 +#: common/serializers.py:656 msgid "Filename" msgstr "ชื่อไฟล์" -#: common/serializers.py:659 importer/models.py:89 report/api.py:41 +#: common/serializers.py:663 common/serializers.py:730 +#: common/serializers.py:805 importer/models.py:89 report/api.py:41 #: report/models.py:293 report/serializers.py:52 msgid "Model Type" msgstr "" -#: common/serializers.py:687 +#: common/serializers.py:691 msgid "User does not have permission to create or edit attachments for this model" msgstr "" -#: common/serializers.py:731 common/serializers.py:834 +#: common/serializers.py:786 +msgid "User does not have permission to create or edit parameters for this model" +msgstr "" + +#: common/serializers.py:850 common/serializers.py:953 msgid "Selection list is locked" msgstr "" @@ -2368,7 +2513,7 @@ msgstr "" msgid "Show the `about` modal only to superusers" msgstr "" -#: common/setting/system.py:224 company/models.py:144 company/models.py:145 +#: common/setting/system.py:224 company/models.py:145 company/models.py:146 msgid "Company name" msgstr "" @@ -2411,8 +2556,8 @@ msgstr "" #: common/setting/system.py:253 common/setting/system.py:293 #: common/setting/system.py:306 common/setting/system.py:314 #: common/setting/system.py:321 common/setting/system.py:330 -#: common/setting/system.py:339 common/setting/system.py:588 -#: common/setting/system.py:616 common/setting/system.py:707 +#: common/setting/system.py:339 common/setting/system.py:580 +#: common/setting/system.py:608 common/setting/system.py:707 #: common/setting/system.py:1103 common/setting/system.py:1119 msgid "days" msgstr "" @@ -2657,12 +2802,6 @@ msgstr "" msgid "Copy category parameter templates when creating a part" msgstr "" -#: common/setting/system.py:450 part/models.py:4054 report/models.py:373 -#: report/models.py:669 report/serializers.py:94 report/serializers.py:135 -#: stock/serializers.py:234 -msgid "Template" -msgstr "" - #: common/setting/system.py:451 msgid "Parts are templates by default" msgstr "" @@ -2671,8 +2810,8 @@ msgstr "" msgid "Parts can be assembled from other components by default" msgstr "" -#: common/setting/system.py:462 part/models.py:1208 part/serializers.py:1734 -#: part/serializers.py:1741 +#: common/setting/system.py:462 part/models.py:1296 part/serializers.py:1599 +#: part/serializers.py:1606 msgid "Component" msgstr "" @@ -2680,7 +2819,7 @@ msgstr "" msgid "Parts can be used as sub-components by default" msgstr "" -#: common/setting/system.py:468 part/models.py:1226 +#: common/setting/system.py:468 part/models.py:1314 msgid "Purchaseable" msgstr "" @@ -2688,7 +2827,7 @@ msgstr "" msgid "Parts are purchaseable by default" msgstr "" -#: common/setting/system.py:474 part/models.py:1232 stock/api.py:643 +#: common/setting/system.py:474 part/models.py:1320 stock/api.py:643 msgid "Salable" msgstr "" @@ -2700,7 +2839,7 @@ msgstr "" msgid "Parts are trackable by default" msgstr "" -#: common/setting/system.py:486 part/models.py:1248 +#: common/setting/system.py:486 part/models.py:1336 msgid "Virtual" msgstr "" @@ -2749,158 +2888,158 @@ msgid "Part category default icon (empty means no icon)" msgstr "" #: common/setting/system.py:525 -msgid "Enforce Parameter Units" -msgstr "" - -#: common/setting/system.py:527 -msgid "If units are provided, parameter values must match the specified units" -msgstr "" - -#: common/setting/system.py:533 msgid "Minimum Pricing Decimal Places" msgstr "" -#: common/setting/system.py:535 +#: common/setting/system.py:527 msgid "Minimum number of decimal places to display when rendering pricing data" msgstr "" -#: common/setting/system.py:546 +#: common/setting/system.py:538 msgid "Maximum Pricing Decimal Places" msgstr "" -#: common/setting/system.py:548 +#: common/setting/system.py:540 msgid "Maximum number of decimal places to display when rendering pricing data" msgstr "" -#: common/setting/system.py:559 +#: common/setting/system.py:551 msgid "Use Supplier Pricing" msgstr "" -#: common/setting/system.py:561 +#: common/setting/system.py:553 msgid "Include supplier price breaks in overall pricing calculations" msgstr "" -#: common/setting/system.py:567 +#: common/setting/system.py:559 msgid "Purchase History Override" msgstr "" -#: common/setting/system.py:569 +#: common/setting/system.py:561 msgid "Historical purchase order pricing overrides supplier price breaks" msgstr "" -#: common/setting/system.py:575 +#: common/setting/system.py:567 msgid "Use Stock Item Pricing" msgstr "" -#: common/setting/system.py:577 +#: common/setting/system.py:569 msgid "Use pricing from manually entered stock data for pricing calculations" msgstr "" -#: common/setting/system.py:583 +#: common/setting/system.py:575 msgid "Stock Item Pricing Age" msgstr "" -#: common/setting/system.py:585 +#: common/setting/system.py:577 msgid "Exclude stock items older than this number of days from pricing calculations" msgstr "" -#: common/setting/system.py:592 +#: common/setting/system.py:584 msgid "Use Variant Pricing" msgstr "" -#: common/setting/system.py:593 +#: common/setting/system.py:585 msgid "Include variant pricing in overall pricing calculations" msgstr "" -#: common/setting/system.py:598 +#: common/setting/system.py:590 msgid "Active Variants Only" msgstr "" -#: common/setting/system.py:600 +#: common/setting/system.py:592 msgid "Only use active variant parts for calculating variant pricing" msgstr "" -#: common/setting/system.py:606 +#: common/setting/system.py:598 msgid "Auto Update Pricing" msgstr "" -#: common/setting/system.py:608 +#: common/setting/system.py:600 msgid "Automatically update part pricing when internal data changes" msgstr "" -#: common/setting/system.py:614 +#: common/setting/system.py:606 msgid "Pricing Rebuild Interval" msgstr "" -#: common/setting/system.py:615 +#: common/setting/system.py:607 msgid "Number of days before part pricing is automatically updated" msgstr "" -#: common/setting/system.py:621 +#: common/setting/system.py:613 msgid "Internal Prices" msgstr "" -#: common/setting/system.py:622 +#: common/setting/system.py:614 msgid "Enable internal prices for parts" msgstr "" -#: common/setting/system.py:627 +#: common/setting/system.py:619 msgid "Internal Price Override" msgstr "" -#: common/setting/system.py:629 +#: common/setting/system.py:621 msgid "If available, internal prices override price range calculations" msgstr "" -#: common/setting/system.py:635 +#: common/setting/system.py:627 msgid "Enable label printing" msgstr "" -#: common/setting/system.py:636 +#: common/setting/system.py:628 msgid "Enable label printing from the web interface" msgstr "" -#: common/setting/system.py:641 +#: common/setting/system.py:633 msgid "Label Image DPI" msgstr "" -#: common/setting/system.py:643 +#: common/setting/system.py:635 msgid "DPI resolution when generating image files to supply to label printing plugins" msgstr "" -#: common/setting/system.py:649 +#: common/setting/system.py:641 msgid "Enable Reports" msgstr "" -#: common/setting/system.py:650 +#: common/setting/system.py:642 msgid "Enable generation of reports" msgstr "" -#: common/setting/system.py:655 +#: common/setting/system.py:647 msgid "Debug Mode" msgstr "" -#: common/setting/system.py:656 +#: common/setting/system.py:648 msgid "Generate reports in debug mode (HTML output)" msgstr "" -#: common/setting/system.py:661 +#: common/setting/system.py:653 msgid "Log Report Errors" msgstr "" -#: common/setting/system.py:662 +#: common/setting/system.py:654 msgid "Log errors which occur when generating reports" msgstr "" -#: common/setting/system.py:667 plugin/builtin/labels/label_sheet.py:29 +#: common/setting/system.py:659 plugin/builtin/labels/label_sheet.py:29 #: report/models.py:381 msgid "Page Size" msgstr "" -#: common/setting/system.py:668 +#: common/setting/system.py:660 msgid "Default page size for PDF reports" msgstr "" +#: common/setting/system.py:665 +msgid "Enforce Parameter Units" +msgstr "" + +#: common/setting/system.py:667 +msgid "If units are provided, parameter values must match the specified units" +msgstr "" + #: common/setting/system.py:673 msgid "Globally Unique Serials" msgstr "" @@ -3456,688 +3595,677 @@ msgid "Display PDF reports in the browser, instead of downloading as a file" msgstr "" #: common/setting/user.py:45 -msgid "Search Parts" +msgid "Barcode Scanner in Form Fields" msgstr "" #: common/setting/user.py:46 -msgid "Display parts in search preview window" +msgid "Allow barcode scanner input in form fields" msgstr "" #: common/setting/user.py:51 -msgid "Search Supplier Parts" +msgid "Search Parts" msgstr "" #: common/setting/user.py:52 -msgid "Display supplier parts in search preview window" +msgid "Display parts in search preview window" msgstr "" #: common/setting/user.py:57 -msgid "Search Manufacturer Parts" +msgid "Search Supplier Parts" msgstr "" #: common/setting/user.py:58 -msgid "Display manufacturer parts in search preview window" +msgid "Display supplier parts in search preview window" msgstr "" #: common/setting/user.py:63 -msgid "Hide Inactive Parts" +msgid "Search Manufacturer Parts" msgstr "" #: common/setting/user.py:64 -msgid "Excluded inactive parts from search preview window" +msgid "Display manufacturer parts in search preview window" msgstr "" #: common/setting/user.py:69 -msgid "Search Categories" +msgid "Hide Inactive Parts" msgstr "" #: common/setting/user.py:70 -msgid "Display part categories in search preview window" +msgid "Excluded inactive parts from search preview window" msgstr "" #: common/setting/user.py:75 -msgid "Search Stock" +msgid "Search Categories" msgstr "" #: common/setting/user.py:76 -msgid "Display stock items in search preview window" +msgid "Display part categories in search preview window" msgstr "" #: common/setting/user.py:81 +msgid "Search Stock" +msgstr "" + +#: common/setting/user.py:82 +msgid "Display stock items in search preview window" +msgstr "" + +#: common/setting/user.py:87 msgid "Hide Unavailable Stock Items" msgstr "" -#: common/setting/user.py:83 +#: common/setting/user.py:89 msgid "Exclude stock items which are not available from the search preview window" msgstr "" -#: common/setting/user.py:89 +#: common/setting/user.py:95 msgid "Search Locations" msgstr "" -#: common/setting/user.py:90 +#: common/setting/user.py:96 msgid "Display stock locations in search preview window" msgstr "" -#: common/setting/user.py:95 +#: common/setting/user.py:101 msgid "Search Companies" msgstr "" -#: common/setting/user.py:96 +#: common/setting/user.py:102 msgid "Display companies in search preview window" msgstr "" -#: common/setting/user.py:101 +#: common/setting/user.py:107 msgid "Search Build Orders" msgstr "" -#: common/setting/user.py:102 +#: common/setting/user.py:108 msgid "Display build orders in search preview window" msgstr "" -#: common/setting/user.py:107 +#: common/setting/user.py:113 msgid "Search Purchase Orders" msgstr "" -#: common/setting/user.py:108 +#: common/setting/user.py:114 msgid "Display purchase orders in search preview window" msgstr "" -#: common/setting/user.py:113 +#: common/setting/user.py:119 msgid "Exclude Inactive Purchase Orders" msgstr "" -#: common/setting/user.py:114 +#: common/setting/user.py:120 msgid "Exclude inactive purchase orders from search preview window" msgstr "" -#: common/setting/user.py:119 +#: common/setting/user.py:125 msgid "Search Sales Orders" msgstr "" -#: common/setting/user.py:120 +#: common/setting/user.py:126 msgid "Display sales orders in search preview window" msgstr "" -#: common/setting/user.py:125 +#: common/setting/user.py:131 msgid "Exclude Inactive Sales Orders" msgstr "" -#: common/setting/user.py:126 +#: common/setting/user.py:132 msgid "Exclude inactive sales orders from search preview window" msgstr "" -#: common/setting/user.py:131 +#: common/setting/user.py:137 msgid "Search Sales Order Shipments" msgstr "" -#: common/setting/user.py:132 +#: common/setting/user.py:138 msgid "Display sales order shipments in search preview window" msgstr "" -#: common/setting/user.py:137 +#: common/setting/user.py:143 msgid "Search Return Orders" msgstr "" -#: common/setting/user.py:138 +#: common/setting/user.py:144 msgid "Display return orders in search preview window" msgstr "" -#: common/setting/user.py:143 +#: common/setting/user.py:149 msgid "Exclude Inactive Return Orders" msgstr "" -#: common/setting/user.py:144 +#: common/setting/user.py:150 msgid "Exclude inactive return orders from search preview window" msgstr "" -#: common/setting/user.py:149 +#: common/setting/user.py:155 msgid "Search Preview Results" msgstr "" -#: common/setting/user.py:151 +#: common/setting/user.py:157 msgid "Number of results to show in each section of the search preview window" msgstr "" -#: common/setting/user.py:157 +#: common/setting/user.py:163 msgid "Regex Search" msgstr "" -#: common/setting/user.py:158 +#: common/setting/user.py:164 msgid "Enable regular expressions in search queries" msgstr "" -#: common/setting/user.py:163 +#: common/setting/user.py:169 msgid "Whole Word Search" msgstr "" -#: common/setting/user.py:164 +#: common/setting/user.py:170 msgid "Search queries return results for whole word matches" msgstr "" -#: common/setting/user.py:169 +#: common/setting/user.py:175 msgid "Search Notes" msgstr "" -#: common/setting/user.py:171 +#: common/setting/user.py:177 msgid "Search queries return results for matches from the item's notes" msgstr "" -#: common/setting/user.py:177 +#: common/setting/user.py:183 msgid "Escape Key Closes Forms" msgstr "" -#: common/setting/user.py:178 +#: common/setting/user.py:184 msgid "Use the escape key to close modal forms" msgstr "" -#: common/setting/user.py:183 +#: common/setting/user.py:189 msgid "Fixed Navbar" msgstr "" -#: common/setting/user.py:184 +#: common/setting/user.py:190 msgid "The navbar position is fixed to the top of the screen" msgstr "" -#: common/setting/user.py:189 +#: common/setting/user.py:195 msgid "Fixed Table Headers" msgstr "" -#: common/setting/user.py:190 +#: common/setting/user.py:196 msgid "Table headers are fixed to the top of the table" msgstr "" -#: common/setting/user.py:195 +#: common/setting/user.py:201 msgid "Show Spotlight" msgstr "" -#: common/setting/user.py:196 +#: common/setting/user.py:202 msgid "Enable spotlight navigation functionality" msgstr "" -#: common/setting/user.py:201 +#: common/setting/user.py:207 msgid "Navigation Icons" msgstr "" -#: common/setting/user.py:202 +#: common/setting/user.py:208 msgid "Display icons in the navigation bar" msgstr "" -#: common/setting/user.py:207 +#: common/setting/user.py:213 msgid "Date Format" msgstr "" -#: common/setting/user.py:208 +#: common/setting/user.py:214 msgid "Preferred format for displaying dates" msgstr "" -#: common/setting/user.py:221 +#: common/setting/user.py:227 msgid "Show Stock History" msgstr "" -#: common/setting/user.py:222 +#: common/setting/user.py:228 msgid "Display stock history information in the part detail page" msgstr "" -#: common/setting/user.py:227 +#: common/setting/user.py:233 msgid "Show Last Breadcrumb" msgstr "" -#: common/setting/user.py:228 +#: common/setting/user.py:234 msgid "Show the current page in breadcrumbs" msgstr "" -#: common/setting/user.py:233 +#: common/setting/user.py:239 msgid "Show full stock location in tables" msgstr "" -#: common/setting/user.py:235 +#: common/setting/user.py:241 msgid "Disabled: The full location path is displayed as a hover tooltip. Enabled: The full location path is displayed as plain text." msgstr "" -#: common/setting/user.py:241 +#: common/setting/user.py:247 msgid "Show full part categories in tables" msgstr "" -#: common/setting/user.py:243 +#: common/setting/user.py:249 msgid "Disabled: The full category path is displayed as a hover tooltip. Enabled: The full category path is displayed as plain text." msgstr "" -#: common/setting/user.py:249 +#: common/setting/user.py:255 msgid "Receive error reports" msgstr "" -#: common/setting/user.py:250 +#: common/setting/user.py:256 msgid "Receive notifications for system errors" msgstr "" -#: common/setting/user.py:255 +#: common/setting/user.py:261 msgid "Last used printing machines" msgstr "" -#: common/setting/user.py:256 +#: common/setting/user.py:262 msgid "Save the last used printing machines for a user" msgstr "" -#: common/validators.py:34 +#: common/validators.py:38 +msgid "All models" +msgstr "" + +#: common/validators.py:63 msgid "No attachment model type provided" msgstr "" -#: common/validators.py:40 +#: common/validators.py:69 msgid "Invalid attachment model type" msgstr "" -#: common/validators.py:81 +#: common/validators.py:110 msgid "Minimum places cannot be greater than maximum places" msgstr "" -#: common/validators.py:93 +#: common/validators.py:122 msgid "Maximum places cannot be less than minimum places" msgstr "" -#: common/validators.py:104 +#: common/validators.py:133 msgid "An empty domain is not allowed." msgstr "" -#: common/validators.py:106 +#: common/validators.py:135 #, python-brace-format msgid "Invalid domain name: {domain}" msgstr "" -#: common/validators.py:122 +#: common/validators.py:151 msgid "Value must be uppercase" msgstr "" -#: common/validators.py:128 +#: common/validators.py:157 msgid "Value must be a valid variable identifier" msgstr "" -#: company/api.py:147 +#: company/api.py:141 msgid "Part is Active" msgstr "" -#: company/api.py:151 +#: company/api.py:145 msgid "Manufacturer is Active" msgstr "" -#: company/api.py:286 +#: company/api.py:246 msgid "Supplier Part is Active" msgstr "" -#: company/api.py:290 +#: company/api.py:250 msgid "Internal Part is Active" msgstr "" -#: company/api.py:295 +#: company/api.py:255 msgid "Supplier is Active" msgstr "" -#: company/api.py:307 company/models.py:520 company/serializers.py:457 -#: part/serializers.py:566 +#: company/api.py:267 company/models.py:522 company/serializers.py:502 +#: part/serializers.py:477 msgid "Manufacturer" msgstr "" -#: company/api.py:314 company/models.py:121 company/models.py:392 +#: company/api.py:274 company/models.py:122 company/models.py:393 #: stock/api.py:900 msgid "Company" msgstr "" -#: company/api.py:324 +#: company/api.py:284 msgid "Has Stock" msgstr "" -#: company/models.py:122 +#: company/models.py:123 msgid "Companies" msgstr "" -#: company/models.py:150 +#: company/models.py:151 msgid "Company description" msgstr "" -#: company/models.py:151 +#: company/models.py:152 msgid "Description of the company" msgstr "" -#: company/models.py:157 +#: company/models.py:158 msgid "Website" msgstr "" -#: company/models.py:158 +#: company/models.py:159 msgid "Company website URL" msgstr "" -#: company/models.py:164 +#: company/models.py:165 msgid "Phone number" msgstr "" -#: company/models.py:166 +#: company/models.py:167 msgid "Contact phone number" msgstr "" -#: company/models.py:173 +#: company/models.py:174 msgid "Contact email address" msgstr "" -#: company/models.py:178 company/models.py:296 order/models.py:513 +#: company/models.py:179 company/models.py:297 order/models.py:514 #: users/models.py:561 msgid "Contact" msgstr "" -#: company/models.py:180 +#: company/models.py:181 msgid "Point of contact" msgstr "" -#: company/models.py:186 +#: company/models.py:187 msgid "Link to external company information" msgstr "" -#: company/models.py:191 +#: company/models.py:192 msgid "Is this company active?" msgstr "" -#: company/models.py:196 +#: company/models.py:197 msgid "Is customer" msgstr "" -#: company/models.py:197 +#: company/models.py:198 msgid "Do you sell items to this company?" msgstr "" -#: company/models.py:202 +#: company/models.py:203 msgid "Is supplier" msgstr "" -#: company/models.py:203 +#: company/models.py:204 msgid "Do you purchase items from this company?" msgstr "" -#: company/models.py:208 +#: company/models.py:209 msgid "Is manufacturer" msgstr "" -#: company/models.py:209 +#: company/models.py:210 msgid "Does this company manufacture parts?" msgstr "" -#: company/models.py:217 +#: company/models.py:218 msgid "Default currency used for this company" msgstr "" -#: company/models.py:224 +#: company/models.py:225 msgid "Tax ID" msgstr "" -#: company/models.py:225 +#: company/models.py:226 msgid "Company Tax ID" msgstr "" -#: company/models.py:335 order/models.py:523 order/models.py:2288 +#: company/models.py:336 order/models.py:524 order/models.py:2289 msgid "Address" msgstr "" -#: company/models.py:336 +#: company/models.py:337 msgid "Addresses" msgstr "" -#: company/models.py:393 +#: company/models.py:394 msgid "Select company" msgstr "" -#: company/models.py:398 +#: company/models.py:399 msgid "Address title" msgstr "" -#: company/models.py:399 +#: company/models.py:400 msgid "Title describing the address entry" msgstr "" -#: company/models.py:405 +#: company/models.py:406 msgid "Primary address" msgstr "" -#: company/models.py:406 +#: company/models.py:407 msgid "Set as primary address" msgstr "" -#: company/models.py:411 +#: company/models.py:412 msgid "Line 1" msgstr "" -#: company/models.py:412 +#: company/models.py:413 msgid "Address line 1" msgstr "" -#: company/models.py:418 +#: company/models.py:419 msgid "Line 2" msgstr "" -#: company/models.py:419 +#: company/models.py:420 msgid "Address line 2" msgstr "" -#: company/models.py:425 company/models.py:426 +#: company/models.py:426 company/models.py:427 msgid "Postal code" msgstr "" -#: company/models.py:432 +#: company/models.py:433 msgid "City/Region" msgstr "" -#: company/models.py:433 +#: company/models.py:434 msgid "Postal code city/region" msgstr "" -#: company/models.py:439 +#: company/models.py:440 msgid "State/Province" msgstr "" -#: company/models.py:440 +#: company/models.py:441 msgid "State or province" msgstr "" -#: company/models.py:446 +#: company/models.py:447 msgid "Country" msgstr "" -#: company/models.py:447 +#: company/models.py:448 msgid "Address country" msgstr "" -#: company/models.py:453 +#: company/models.py:454 msgid "Courier shipping notes" msgstr "" -#: company/models.py:454 +#: company/models.py:455 msgid "Notes for shipping courier" msgstr "" -#: company/models.py:460 +#: company/models.py:461 msgid "Internal shipping notes" msgstr "" -#: company/models.py:461 +#: company/models.py:462 msgid "Shipping notes for internal use" msgstr "" -#: company/models.py:468 +#: company/models.py:469 msgid "Link to address information (external)" msgstr "" -#: company/models.py:492 company/models.py:609 company/models.py:832 -#: company/serializers.py:471 stock/api.py:561 +#: company/models.py:494 company/models.py:786 company/serializers.py:516 +#: stock/api.py:561 msgid "Manufacturer Part" msgstr "" -#: company/models.py:509 company/models.py:800 stock/models.py:1025 +#: company/models.py:511 company/models.py:754 stock/models.py:1025 #: stock/serializers.py:407 msgid "Base Part" msgstr "" -#: company/models.py:511 company/models.py:802 +#: company/models.py:513 company/models.py:756 msgid "Select part" msgstr "" -#: company/models.py:521 +#: company/models.py:523 msgid "Select manufacturer" msgstr "" -#: company/models.py:527 company/serializers.py:479 order/serializers.py:734 -#: part/serializers.py:576 +#: company/models.py:529 company/serializers.py:524 order/serializers.py:745 +#: part/serializers.py:487 msgid "MPN" msgstr "" -#: company/models.py:528 stock/serializers.py:572 +#: company/models.py:530 stock/serializers.py:572 msgid "Manufacturer Part Number" msgstr "" -#: company/models.py:535 +#: company/models.py:537 msgid "URL for external manufacturer part link" msgstr "" -#: company/models.py:544 +#: company/models.py:546 msgid "Manufacturer part description" msgstr "" -#: company/models.py:597 -msgid "Manufacturer Part Parameter" -msgstr "" - -#: company/models.py:616 -msgid "Parameter name" -msgstr "" - -#: company/models.py:623 -msgid "Parameter value" -msgstr "" - -#: company/models.py:630 part/models.py:1195 part/models.py:3857 -msgid "Units" -msgstr "" - -#: company/models.py:631 -msgid "Parameter units" -msgstr "" - -#: company/models.py:740 +#: company/models.py:694 msgid "Pack units must be compatible with the base part units" msgstr "" -#: company/models.py:747 +#: company/models.py:701 msgid "Pack units must be greater than zero" msgstr "" -#: company/models.py:761 +#: company/models.py:715 msgid "Linked manufacturer part must reference the same base part" msgstr "" -#: company/models.py:810 company/serializers.py:449 company/serializers.py:467 -#: order/models.py:639 part/serializers.py:550 +#: company/models.py:764 company/serializers.py:494 company/serializers.py:512 +#: order/models.py:640 part/serializers.py:461 #: plugin/builtin/suppliers/digikey.py:26 plugin/builtin/suppliers/lcsc.py:27 #: plugin/builtin/suppliers/mouser.py:25 plugin/builtin/suppliers/tme.py:27 #: stock/api.py:567 templates/email/overdue_purchase_order.html:16 msgid "Supplier" msgstr "" -#: company/models.py:811 +#: company/models.py:765 msgid "Select supplier" msgstr "" -#: company/models.py:817 part/serializers.py:561 +#: company/models.py:771 part/serializers.py:472 msgid "Supplier stock keeping unit" msgstr "" -#: company/models.py:823 +#: company/models.py:777 msgid "Is this supplier part active?" msgstr "" -#: company/models.py:833 +#: company/models.py:787 msgid "Select manufacturer part" msgstr "" -#: company/models.py:840 +#: company/models.py:794 msgid "URL for external supplier part link" msgstr "" -#: company/models.py:849 +#: company/models.py:803 msgid "Supplier part description" msgstr "" -#: company/models.py:856 order/serializers.py:883 order/serializers.py:2047 -#: part/models.py:4070 part/models.py:4450 part/models.py:4819 -#: report/templates/report/inventree_bill_of_materials_report.html:140 -#: report/templates/report/inventree_purchase_order_report.html:39 -#: report/templates/report/inventree_return_order_report.html:27 -#: report/templates/report/inventree_sales_order_report.html:32 -#: report/templates/report/inventree_stock_location_report.html:105 -#: stock/serializers.py:813 -msgid "Note" -msgstr "" - -#: company/models.py:865 part/models.py:2250 +#: company/models.py:819 part/models.py:2338 msgid "base cost" msgstr "" -#: company/models.py:866 part/models.py:2251 +#: company/models.py:820 part/models.py:2339 msgid "Minimum charge (e.g. stocking fee)" msgstr "" -#: company/models.py:873 order/serializers.py:875 stock/models.py:1056 +#: company/models.py:827 order/serializers.py:886 stock/models.py:1056 #: stock/serializers.py:1606 msgid "Packaging" msgstr "" -#: company/models.py:874 +#: company/models.py:828 msgid "Part packaging" msgstr "" -#: company/models.py:879 +#: company/models.py:833 msgid "Pack Quantity" msgstr "" -#: company/models.py:881 +#: company/models.py:835 msgid "Total quantity supplied in a single pack. Leave empty for single items." msgstr "" -#: company/models.py:900 part/models.py:2257 +#: company/models.py:854 part/models.py:2345 msgid "multiple" msgstr "" -#: company/models.py:901 +#: company/models.py:855 msgid "Order multiple" msgstr "" -#: company/models.py:913 +#: company/models.py:867 msgid "Quantity available from supplier" msgstr "" -#: company/models.py:919 +#: company/models.py:873 msgid "Availability Updated" msgstr "" -#: company/models.py:920 +#: company/models.py:874 msgid "Date of last update of availability data" msgstr "" -#: company/models.py:1048 +#: company/models.py:1002 msgid "Supplier Price Break" msgstr "" -#: company/serializers.py:181 +#: company/serializers.py:184 +msgid "Primary Address" +msgstr "" + +#: company/serializers.py:186 msgid "Return the string representation for the primary address. This property exists for backwards compatibility." msgstr "" -#: company/serializers.py:212 +#: company/serializers.py:218 msgid "Default currency used for this supplier" msgstr "" -#: company/serializers.py:248 +#: company/serializers.py:260 msgid "Company Name" msgstr "" -#: company/serializers.py:433 part/serializers.py:955 stock/serializers.py:428 +#: company/serializers.py:460 part/serializers.py:840 stock/serializers.py:428 msgid "In Stock" msgstr "" +#: company/serializers.py:477 +msgid "Price Breaks" +msgstr "" + #: data_exporter/mixins.py:325 data_exporter/mixins.py:403 msgid "Error occurred during data export" msgstr "" @@ -4290,7 +4418,7 @@ msgstr "" msgid "Errors" msgstr "" -#: importer/models.py:550 part/serializers.py:1268 +#: importer/models.py:550 part/serializers.py:1133 msgid "Valid" msgstr "" @@ -4402,7 +4530,7 @@ msgstr "" msgid "Connected" msgstr "" -#: machine/machine_types/label_printer.py:232 order/api.py:1795 +#: machine/machine_types/label_printer.py:232 order/api.py:1800 msgid "Unknown" msgstr "" @@ -4530,105 +4658,105 @@ msgstr "" msgid "Maximum value for progress type, required if type=progress" msgstr "" -#: order/api.py:125 +#: order/api.py:130 msgid "Order Reference" msgstr "" -#: order/api.py:153 order/api.py:1207 +#: order/api.py:158 order/api.py:1212 msgid "Outstanding" msgstr "" -#: order/api.py:169 +#: order/api.py:174 msgid "Has Project Code" msgstr "" -#: order/api.py:183 order/models.py:488 +#: order/api.py:188 order/models.py:489 msgid "Created By" msgstr "" -#: order/api.py:187 +#: order/api.py:192 msgid "Created Before" msgstr "" -#: order/api.py:191 +#: order/api.py:196 msgid "Created After" msgstr "" -#: order/api.py:195 +#: order/api.py:200 msgid "Has Start Date" msgstr "" -#: order/api.py:203 +#: order/api.py:208 msgid "Start Date Before" msgstr "" -#: order/api.py:207 +#: order/api.py:212 msgid "Start Date After" msgstr "" -#: order/api.py:211 +#: order/api.py:216 msgid "Has Target Date" msgstr "" -#: order/api.py:219 +#: order/api.py:224 msgid "Target Date Before" msgstr "" -#: order/api.py:223 +#: order/api.py:228 msgid "Target Date After" msgstr "" -#: order/api.py:274 +#: order/api.py:279 msgid "Has Pricing" msgstr "" -#: order/api.py:327 order/api.py:812 order/api.py:1490 +#: order/api.py:332 order/api.py:818 order/api.py:1495 msgid "Completed Before" msgstr "" -#: order/api.py:331 order/api.py:816 order/api.py:1494 +#: order/api.py:336 order/api.py:822 order/api.py:1499 msgid "Completed After" msgstr "" -#: order/api.py:337 order/api.py:341 +#: order/api.py:342 order/api.py:346 msgid "External Build Order" msgstr "" -#: order/api.py:526 order/api.py:914 order/api.py:1170 order/models.py:1922 -#: order/models.py:2049 order/models.py:2099 order/models.py:2279 -#: order/models.py:2477 order/models.py:2999 order/models.py:3065 +#: order/api.py:532 order/api.py:919 order/api.py:1175 order/models.py:1923 +#: order/models.py:2050 order/models.py:2100 order/models.py:2280 +#: order/models.py:2478 order/models.py:3000 order/models.py:3066 msgid "Order" msgstr "" -#: order/api.py:530 order/api.py:982 +#: order/api.py:536 order/api.py:987 msgid "Order Complete" msgstr "" -#: order/api.py:562 order/api.py:566 order/serializers.py:745 +#: order/api.py:568 order/api.py:572 order/serializers.py:756 msgid "Internal Part" msgstr "" -#: order/api.py:584 +#: order/api.py:590 msgid "Order Pending" msgstr "" -#: order/api.py:967 +#: order/api.py:972 msgid "Completed" msgstr "สำเร็จแล้ว" -#: order/api.py:1223 +#: order/api.py:1228 msgid "Has Shipment" msgstr "" -#: order/api.py:1789 order/models.py:552 order/models.py:1923 -#: order/models.py:2050 +#: order/api.py:1794 order/models.py:553 order/models.py:1924 +#: order/models.py:2051 #: report/templates/report/inventree_purchase_order_report.html:14 #: stock/serializers.py:129 templates/email/overdue_purchase_order.html:15 msgid "Purchase Order" msgstr "" -#: order/api.py:1791 order/models.py:1251 order/models.py:2100 -#: order/models.py:2280 order/models.py:2478 +#: order/api.py:1796 order/models.py:1252 order/models.py:2101 +#: order/models.py:2281 order/models.py:2479 #: report/templates/report/inventree_build_order_report.html:135 #: report/templates/report/inventree_sales_order_report.html:14 #: report/templates/report/inventree_sales_order_shipment_report.html:15 @@ -4636,8 +4764,8 @@ msgstr "" msgid "Sales Order" msgstr "" -#: order/api.py:1793 order/models.py:2649 order/models.py:3000 -#: order/models.py:3066 +#: order/api.py:1798 order/models.py:2650 order/models.py:3001 +#: order/models.py:3067 #: report/templates/report/inventree_return_order_report.html:13 #: templates/email/overdue_return_order.html:15 msgid "Return Order" @@ -4653,722 +4781,722 @@ msgstr "" msgid "Total price for this order" msgstr "" -#: order/models.py:96 order/serializers.py:77 +#: order/models.py:96 order/serializers.py:78 msgid "Order Currency" msgstr "" -#: order/models.py:99 order/serializers.py:78 +#: order/models.py:99 order/serializers.py:79 msgid "Currency for this order (leave blank to use company default)" msgstr "" -#: order/models.py:324 +#: order/models.py:325 msgid "This order is locked and cannot be modified" msgstr "" -#: order/models.py:376 +#: order/models.py:377 msgid "Contact does not match selected company" msgstr "" -#: order/models.py:383 +#: order/models.py:384 msgid "Start date must be before target date" msgstr "" -#: order/models.py:390 +#: order/models.py:391 msgid "Address does not match selected company" msgstr "" -#: order/models.py:443 +#: order/models.py:444 msgid "Order description (optional)" msgstr "" -#: order/models.py:452 order/models.py:1806 +#: order/models.py:453 order/models.py:1807 msgid "Select project code for this order" msgstr "" -#: order/models.py:458 order/models.py:1787 order/models.py:2344 +#: order/models.py:459 order/models.py:1788 order/models.py:2345 msgid "Link to external page" msgstr "" -#: order/models.py:465 +#: order/models.py:466 msgid "Start date" msgstr "" -#: order/models.py:466 +#: order/models.py:467 msgid "Scheduled start date for this order" msgstr "" -#: order/models.py:472 order/models.py:1794 order/serializers.py:309 +#: order/models.py:473 order/models.py:1795 order/serializers.py:317 #: report/templates/report/inventree_build_order_report.html:125 msgid "Target Date" msgstr "" -#: order/models.py:474 +#: order/models.py:475 msgid "Expected date for order delivery. Order will be overdue after this date." msgstr "" -#: order/models.py:494 +#: order/models.py:495 msgid "Issue Date" msgstr "" -#: order/models.py:495 +#: order/models.py:496 msgid "Date order was issued" msgstr "" -#: order/models.py:503 +#: order/models.py:504 msgid "User or group responsible for this order" msgstr "" -#: order/models.py:514 +#: order/models.py:515 msgid "Point of contact for this order" msgstr "" -#: order/models.py:524 +#: order/models.py:525 msgid "Company address for this order" msgstr "" -#: order/models.py:615 order/models.py:1312 +#: order/models.py:616 order/models.py:1313 msgid "Order reference" msgstr "" -#: order/models.py:624 order/models.py:1336 order/models.py:2737 +#: order/models.py:625 order/models.py:1337 order/models.py:2738 #: stock/serializers.py:559 stock/serializers.py:988 users/models.py:542 msgid "Status" msgstr "สถานะ" -#: order/models.py:625 +#: order/models.py:626 msgid "Purchase order status" msgstr "" -#: order/models.py:640 +#: order/models.py:641 msgid "Company from which the items are being ordered" msgstr "" -#: order/models.py:651 +#: order/models.py:652 msgid "Supplier Reference" msgstr "" -#: order/models.py:652 +#: order/models.py:653 msgid "Supplier order reference code" msgstr "" -#: order/models.py:661 +#: order/models.py:662 msgid "received by" msgstr "" -#: order/models.py:668 order/models.py:2752 +#: order/models.py:669 order/models.py:2753 msgid "Date order was completed" msgstr "" -#: order/models.py:677 order/models.py:1981 +#: order/models.py:678 order/models.py:1982 msgid "Destination" msgstr "" -#: order/models.py:678 order/models.py:1985 +#: order/models.py:679 order/models.py:1986 msgid "Destination for received items" msgstr "" -#: order/models.py:724 +#: order/models.py:725 msgid "Part supplier must match PO supplier" msgstr "" -#: order/models.py:994 +#: order/models.py:995 msgid "Line item does not match purchase order" msgstr "" -#: order/models.py:997 +#: order/models.py:998 msgid "Line item is missing a linked part" msgstr "" -#: order/models.py:1011 +#: order/models.py:1012 msgid "Quantity must be a positive number" msgstr "" -#: order/models.py:1323 order/models.py:2724 stock/models.py:1078 +#: order/models.py:1324 order/models.py:2725 stock/models.py:1078 #: stock/models.py:1079 stock/serializers.py:1322 #: templates/email/overdue_return_order.html:16 #: templates/email/overdue_sales_order.html:16 msgid "Customer" msgstr "" -#: order/models.py:1324 +#: order/models.py:1325 msgid "Company to which the items are being sold" msgstr "" -#: order/models.py:1337 +#: order/models.py:1338 msgid "Sales order status" msgstr "" -#: order/models.py:1348 order/models.py:2744 +#: order/models.py:1349 order/models.py:2745 msgid "Customer Reference " msgstr "" -#: order/models.py:1349 order/models.py:2745 +#: order/models.py:1350 order/models.py:2746 msgid "Customer order reference code" msgstr "" -#: order/models.py:1353 order/models.py:2296 +#: order/models.py:1354 order/models.py:2297 msgid "Shipment Date" msgstr "" -#: order/models.py:1362 +#: order/models.py:1363 msgid "shipped by" msgstr "" -#: order/models.py:1413 +#: order/models.py:1414 msgid "Order is already complete" msgstr "" -#: order/models.py:1416 +#: order/models.py:1417 msgid "Order is already cancelled" msgstr "" -#: order/models.py:1420 +#: order/models.py:1421 msgid "Only an open order can be marked as complete" msgstr "" -#: order/models.py:1424 +#: order/models.py:1425 msgid "Order cannot be completed as there are incomplete shipments" msgstr "" -#: order/models.py:1429 +#: order/models.py:1430 msgid "Order cannot be completed as there are incomplete allocations" msgstr "" -#: order/models.py:1438 +#: order/models.py:1439 msgid "Order cannot be completed as there are incomplete line items" msgstr "" -#: order/models.py:1733 order/models.py:1749 +#: order/models.py:1734 order/models.py:1750 msgid "The order is locked and cannot be modified" msgstr "" -#: order/models.py:1757 +#: order/models.py:1758 msgid "Item quantity" msgstr "" -#: order/models.py:1774 +#: order/models.py:1775 msgid "Line item reference" msgstr "" -#: order/models.py:1781 +#: order/models.py:1782 msgid "Line item notes" msgstr "" -#: order/models.py:1796 +#: order/models.py:1797 msgid "Target date for this line item (leave blank to use the target date from the order)" msgstr "" -#: order/models.py:1826 +#: order/models.py:1827 msgid "Line item description (optional)" msgstr "" -#: order/models.py:1833 +#: order/models.py:1834 msgid "Additional context for this line" msgstr "" -#: order/models.py:1843 +#: order/models.py:1844 msgid "Unit price" msgstr "" -#: order/models.py:1862 +#: order/models.py:1863 msgid "Purchase Order Line Item" msgstr "" -#: order/models.py:1889 +#: order/models.py:1890 msgid "Supplier part must match supplier" msgstr "" -#: order/models.py:1894 +#: order/models.py:1895 msgid "Build order must be marked as external" msgstr "" -#: order/models.py:1901 +#: order/models.py:1902 msgid "Build orders can only be linked to assembly parts" msgstr "" -#: order/models.py:1907 +#: order/models.py:1908 msgid "Build order part must match line item part" msgstr "" -#: order/models.py:1942 +#: order/models.py:1943 msgid "Supplier part" msgstr "" -#: order/models.py:1949 +#: order/models.py:1950 msgid "Received" msgstr "" -#: order/models.py:1950 +#: order/models.py:1951 msgid "Number of items received" msgstr "" -#: order/models.py:1958 stock/models.py:1201 stock/serializers.py:637 +#: order/models.py:1959 stock/models.py:1201 stock/serializers.py:637 msgid "Purchase Price" msgstr "" -#: order/models.py:1959 +#: order/models.py:1960 msgid "Unit purchase price" msgstr "" -#: order/models.py:1975 +#: order/models.py:1976 msgid "External Build Order to be fulfilled by this line item" msgstr "" -#: order/models.py:2038 +#: order/models.py:2039 msgid "Purchase Order Extra Line" msgstr "" -#: order/models.py:2067 +#: order/models.py:2068 msgid "Sales Order Line Item" msgstr "" -#: order/models.py:2092 +#: order/models.py:2093 msgid "Only salable parts can be assigned to a sales order" msgstr "" -#: order/models.py:2118 +#: order/models.py:2119 msgid "Sale Price" msgstr "" -#: order/models.py:2119 +#: order/models.py:2120 msgid "Unit sale price" msgstr "" -#: order/models.py:2128 order/status_codes.py:50 +#: order/models.py:2129 order/status_codes.py:50 msgid "Shipped" msgstr "จัดส่งแล้ว" -#: order/models.py:2129 +#: order/models.py:2130 msgid "Shipped quantity" msgstr "" -#: order/models.py:2240 +#: order/models.py:2241 msgid "Sales Order Shipment" msgstr "" -#: order/models.py:2253 +#: order/models.py:2254 msgid "Shipment address must match the customer" msgstr "" -#: order/models.py:2289 +#: order/models.py:2290 msgid "Shipping address for this shipment" msgstr "" -#: order/models.py:2297 +#: order/models.py:2298 msgid "Date of shipment" msgstr "" -#: order/models.py:2303 +#: order/models.py:2304 msgid "Delivery Date" msgstr "" -#: order/models.py:2304 +#: order/models.py:2305 msgid "Date of delivery of shipment" msgstr "" -#: order/models.py:2312 +#: order/models.py:2313 msgid "Checked By" msgstr "" -#: order/models.py:2313 +#: order/models.py:2314 msgid "User who checked this shipment" msgstr "" -#: order/models.py:2320 order/models.py:2574 order/serializers.py:1711 -#: order/serializers.py:1835 +#: order/models.py:2321 order/models.py:2575 order/serializers.py:1725 +#: order/serializers.py:1849 #: report/templates/report/inventree_sales_order_shipment_report.html:14 msgid "Shipment" msgstr "" -#: order/models.py:2321 +#: order/models.py:2322 msgid "Shipment number" msgstr "" -#: order/models.py:2329 +#: order/models.py:2330 msgid "Tracking Number" msgstr "" -#: order/models.py:2330 +#: order/models.py:2331 msgid "Shipment tracking information" msgstr "" -#: order/models.py:2337 +#: order/models.py:2338 msgid "Invoice Number" msgstr "" -#: order/models.py:2338 +#: order/models.py:2339 msgid "Reference number for associated invoice" msgstr "" -#: order/models.py:2377 +#: order/models.py:2378 msgid "Shipment has already been sent" msgstr "" -#: order/models.py:2380 +#: order/models.py:2381 msgid "Shipment has no allocated stock items" msgstr "" -#: order/models.py:2387 +#: order/models.py:2388 msgid "Shipment must be checked before it can be completed" msgstr "" -#: order/models.py:2466 +#: order/models.py:2467 msgid "Sales Order Extra Line" msgstr "" -#: order/models.py:2495 +#: order/models.py:2496 msgid "Sales Order Allocation" msgstr "" -#: order/models.py:2518 order/models.py:2520 +#: order/models.py:2519 order/models.py:2521 msgid "Stock item has not been assigned" msgstr "" -#: order/models.py:2527 +#: order/models.py:2528 msgid "Cannot allocate stock item to a line with a different part" msgstr "" -#: order/models.py:2530 +#: order/models.py:2531 msgid "Cannot allocate stock to a line without a part" msgstr "" -#: order/models.py:2533 +#: order/models.py:2534 msgid "Allocation quantity cannot exceed stock quantity" msgstr "" -#: order/models.py:2552 order/serializers.py:1581 +#: order/models.py:2553 order/serializers.py:1595 msgid "Quantity must be 1 for serialized stock item" msgstr "" -#: order/models.py:2555 +#: order/models.py:2556 msgid "Sales order does not match shipment" msgstr "" -#: order/models.py:2556 plugin/base/barcodes/api.py:642 +#: order/models.py:2557 plugin/base/barcodes/api.py:642 msgid "Shipment does not match sales order" msgstr "" -#: order/models.py:2564 +#: order/models.py:2565 msgid "Line" msgstr "" -#: order/models.py:2575 +#: order/models.py:2576 msgid "Sales order shipment reference" msgstr "" -#: order/models.py:2588 order/models.py:3007 +#: order/models.py:2589 order/models.py:3008 msgid "Item" msgstr "" -#: order/models.py:2589 +#: order/models.py:2590 msgid "Select stock item to allocate" msgstr "" -#: order/models.py:2598 +#: order/models.py:2599 msgid "Enter stock allocation quantity" msgstr "" -#: order/models.py:2713 +#: order/models.py:2714 msgid "Return Order reference" msgstr "" -#: order/models.py:2725 +#: order/models.py:2726 msgid "Company from which items are being returned" msgstr "" -#: order/models.py:2738 +#: order/models.py:2739 msgid "Return order status" msgstr "" -#: order/models.py:2965 +#: order/models.py:2966 msgid "Return Order Line Item" msgstr "" -#: order/models.py:2978 +#: order/models.py:2979 msgid "Stock item must be specified" msgstr "" -#: order/models.py:2982 +#: order/models.py:2983 msgid "Return quantity exceeds stock quantity" msgstr "" -#: order/models.py:2987 +#: order/models.py:2988 msgid "Return quantity must be greater than zero" msgstr "" -#: order/models.py:2992 +#: order/models.py:2993 msgid "Invalid quantity for serialized stock item" msgstr "" -#: order/models.py:3008 +#: order/models.py:3009 msgid "Select item to return from customer" msgstr "" -#: order/models.py:3023 +#: order/models.py:3024 msgid "Received Date" msgstr "" -#: order/models.py:3024 +#: order/models.py:3025 msgid "The date this this return item was received" msgstr "" -#: order/models.py:3036 +#: order/models.py:3037 msgid "Outcome" msgstr "" -#: order/models.py:3037 +#: order/models.py:3038 msgid "Outcome for this line item" msgstr "" -#: order/models.py:3044 +#: order/models.py:3045 msgid "Cost associated with return or repair for this line item" msgstr "" -#: order/models.py:3054 +#: order/models.py:3055 msgid "Return Order Extra Line" msgstr "" -#: order/serializers.py:91 +#: order/serializers.py:92 msgid "Order ID" msgstr "" -#: order/serializers.py:91 +#: order/serializers.py:92 msgid "ID of the order to duplicate" msgstr "" -#: order/serializers.py:97 +#: order/serializers.py:98 msgid "Copy Lines" msgstr "" -#: order/serializers.py:98 +#: order/serializers.py:99 msgid "Copy line items from the original order" msgstr "" -#: order/serializers.py:104 +#: order/serializers.py:105 msgid "Copy Extra Lines" msgstr "" -#: order/serializers.py:105 +#: order/serializers.py:106 msgid "Copy extra line items from the original order" msgstr "" -#: order/serializers.py:120 +#: order/serializers.py:121 #: report/templates/report/inventree_purchase_order_report.html:29 #: report/templates/report/inventree_return_order_report.html:19 #: report/templates/report/inventree_sales_order_report.html:22 msgid "Line Items" msgstr "" -#: order/serializers.py:125 +#: order/serializers.py:126 msgid "Completed Lines" msgstr "" -#: order/serializers.py:192 +#: order/serializers.py:199 msgid "Duplicate Order" msgstr "" -#: order/serializers.py:193 +#: order/serializers.py:200 msgid "Specify options for duplicating this order" msgstr "" -#: order/serializers.py:270 +#: order/serializers.py:278 msgid "Invalid order ID" msgstr "" -#: order/serializers.py:466 +#: order/serializers.py:477 msgid "Supplier Name" msgstr "" -#: order/serializers.py:510 +#: order/serializers.py:521 msgid "Order cannot be cancelled" msgstr "" -#: order/serializers.py:525 order/serializers.py:1602 +#: order/serializers.py:536 order/serializers.py:1616 msgid "Allow order to be closed with incomplete line items" msgstr "" -#: order/serializers.py:535 order/serializers.py:1612 +#: order/serializers.py:546 order/serializers.py:1626 msgid "Order has incomplete line items" msgstr "" -#: order/serializers.py:665 +#: order/serializers.py:676 msgid "Order is not open" msgstr "" -#: order/serializers.py:692 +#: order/serializers.py:703 msgid "Auto Pricing" msgstr "" -#: order/serializers.py:694 +#: order/serializers.py:705 msgid "Automatically calculate purchase price based on supplier part data" msgstr "" -#: order/serializers.py:704 +#: order/serializers.py:715 msgid "Purchase price currency" msgstr "" -#: order/serializers.py:718 +#: order/serializers.py:729 msgid "Merge Items" msgstr "" -#: order/serializers.py:720 +#: order/serializers.py:731 msgid "Merge items with the same part, destination and target date into one line item" msgstr "" -#: order/serializers.py:727 part/serializers.py:560 +#: order/serializers.py:738 part/serializers.py:471 msgid "SKU" msgstr "" -#: order/serializers.py:741 part/models.py:1089 part/serializers.py:372 +#: order/serializers.py:752 part/models.py:1177 part/serializers.py:337 msgid "Internal Part Number" msgstr "" -#: order/serializers.py:749 +#: order/serializers.py:760 msgid "Internal Part Name" msgstr "" -#: order/serializers.py:765 +#: order/serializers.py:776 msgid "Supplier part must be specified" msgstr "" -#: order/serializers.py:768 +#: order/serializers.py:779 msgid "Purchase order must be specified" msgstr "" -#: order/serializers.py:776 +#: order/serializers.py:787 msgid "Supplier must match purchase order" msgstr "" -#: order/serializers.py:777 +#: order/serializers.py:788 msgid "Purchase order must match supplier" msgstr "" -#: order/serializers.py:825 order/serializers.py:1682 +#: order/serializers.py:836 order/serializers.py:1696 msgid "Line Item" msgstr "" -#: order/serializers.py:834 order/serializers.py:974 order/serializers.py:2043 +#: order/serializers.py:845 order/serializers.py:985 order/serializers.py:2060 msgid "Select destination location for received items" msgstr "" -#: order/serializers.py:850 +#: order/serializers.py:861 msgid "Enter batch code for incoming stock items" msgstr "" -#: order/serializers.py:857 stock/models.py:1160 +#: order/serializers.py:868 stock/models.py:1160 #: templates/email/stale_stock_notification.html:22 users/models.py:137 msgid "Expiry Date" msgstr "" -#: order/serializers.py:858 +#: order/serializers.py:869 msgid "Enter expiry date for incoming stock items" msgstr "" -#: order/serializers.py:866 +#: order/serializers.py:877 msgid "Enter serial numbers for incoming stock items" msgstr "" -#: order/serializers.py:876 +#: order/serializers.py:887 msgid "Override packaging information for incoming stock items" msgstr "" -#: order/serializers.py:884 order/serializers.py:2048 +#: order/serializers.py:895 order/serializers.py:2065 msgid "Additional note for incoming stock items" msgstr "" -#: order/serializers.py:891 +#: order/serializers.py:902 msgid "Barcode" msgstr "" -#: order/serializers.py:892 +#: order/serializers.py:903 msgid "Scanned barcode" msgstr "" -#: order/serializers.py:908 +#: order/serializers.py:919 msgid "Barcode is already in use" msgstr "" -#: order/serializers.py:991 order/serializers.py:2067 +#: order/serializers.py:1002 order/serializers.py:2084 msgid "Line items must be provided" msgstr "" -#: order/serializers.py:1010 +#: order/serializers.py:1021 msgid "Destination location must be specified" msgstr "" -#: order/serializers.py:1017 +#: order/serializers.py:1028 msgid "Supplied barcode values must be unique" msgstr "" -#: order/serializers.py:1121 +#: order/serializers.py:1135 msgid "Shipments" msgstr "" -#: order/serializers.py:1125 +#: order/serializers.py:1139 msgid "Completed Shipments" msgstr "" -#: order/serializers.py:1293 +#: order/serializers.py:1307 msgid "Sale price currency" msgstr "" -#: order/serializers.py:1339 +#: order/serializers.py:1353 msgid "Allocated Items" msgstr "" -#: order/serializers.py:1484 +#: order/serializers.py:1498 msgid "No shipment details provided" msgstr "" -#: order/serializers.py:1545 order/serializers.py:1691 +#: order/serializers.py:1559 order/serializers.py:1705 msgid "Line item is not associated with this order" msgstr "" -#: order/serializers.py:1564 +#: order/serializers.py:1578 msgid "Quantity must be positive" msgstr "" -#: order/serializers.py:1701 +#: order/serializers.py:1715 msgid "Enter serial numbers to allocate" msgstr "" -#: order/serializers.py:1723 order/serializers.py:1843 +#: order/serializers.py:1737 order/serializers.py:1857 msgid "Shipment has already been shipped" msgstr "" -#: order/serializers.py:1726 order/serializers.py:1846 +#: order/serializers.py:1740 order/serializers.py:1860 msgid "Shipment is not associated with this order" msgstr "" -#: order/serializers.py:1781 +#: order/serializers.py:1795 msgid "No match found for the following serial numbers" msgstr "" -#: order/serializers.py:1788 +#: order/serializers.py:1802 msgid "The following serial numbers are unavailable" msgstr "" -#: order/serializers.py:2009 +#: order/serializers.py:2026 msgid "Return order line item" msgstr "" -#: order/serializers.py:2019 +#: order/serializers.py:2036 msgid "Line item does not match return order" msgstr "" -#: order/serializers.py:2022 +#: order/serializers.py:2039 msgid "Line item has already been received" msgstr "" -#: order/serializers.py:2059 +#: order/serializers.py:2076 msgid "Items can only be received against orders which are in progress" msgstr "" -#: order/serializers.py:2124 +#: order/serializers.py:2141 msgid "Quantity to return" msgstr "" -#: order/serializers.py:2140 +#: order/serializers.py:2157 msgid "Line price currency" msgstr "" @@ -5431,1190 +5559,1109 @@ msgstr "" msgid "Return order {ro} is now overdue" msgstr "" -#: part/api.py:108 +#: part/api.py:103 msgid "Starred" msgstr "" -#: part/api.py:110 +#: part/api.py:105 msgid "Filter by starred categories" msgstr "" -#: part/api.py:127 stock/api.py:288 +#: part/api.py:122 stock/api.py:288 msgid "Depth" msgstr "" -#: part/api.py:127 +#: part/api.py:122 msgid "Filter by category depth" msgstr "" -#: part/api.py:145 stock/api.py:306 +#: part/api.py:140 stock/api.py:306 msgid "Top Level" msgstr "" -#: part/api.py:147 +#: part/api.py:142 msgid "Filter by top-level categories" msgstr "" -#: part/api.py:160 stock/api.py:321 +#: part/api.py:155 stock/api.py:321 msgid "Cascade" msgstr "" -#: part/api.py:162 +#: part/api.py:157 msgid "Include sub-categories in filtered results" msgstr "" -#: part/api.py:182 +#: part/api.py:177 msgid "Parent" msgstr "" -#: part/api.py:184 +#: part/api.py:179 msgid "Filter by parent category" msgstr "" -#: part/api.py:219 +#: part/api.py:214 msgid "Exclude sub-categories under the specified category" msgstr "" -#: part/api.py:445 +#: part/api.py:440 msgid "Has Results" msgstr "" -#: part/api.py:666 +#: part/api.py:661 msgid "Is Variant" msgstr "" -#: part/api.py:674 +#: part/api.py:669 msgid "Is Revision" msgstr "" -#: part/api.py:684 +#: part/api.py:679 msgid "Has Revisions" msgstr "" -#: part/api.py:865 +#: part/api.py:860 msgid "BOM Valid" msgstr "" -#: part/api.py:974 +#: part/api.py:969 msgid "Cascade Categories" msgstr "" -#: part/api.py:975 +#: part/api.py:970 msgid "If true, include items in child categories of the given category" msgstr "" -#: part/api.py:981 +#: part/api.py:976 msgid "Filter by numeric category ID or the literal 'null'" msgstr "" -#: part/api.py:1533 +#: part/api.py:1258 msgid "Assembly part is testable" msgstr "" -#: part/api.py:1542 +#: part/api.py:1267 msgid "Component part is testable" msgstr "" -#: part/api.py:1611 +#: part/api.py:1336 msgid "Uses" msgstr "" -#: part/models.py:96 part/models.py:4163 +#: part/models.py:93 part/models.py:436 #: templates/email/part_event_notification.html:16 msgid "Part Category" msgstr "" -#: part/models.py:97 users/ruleset.py:27 +#: part/models.py:94 users/ruleset.py:27 msgid "Part Categories" msgstr "" -#: part/models.py:115 part/models.py:1125 +#: part/models.py:112 part/models.py:1213 msgid "Default Location" msgstr "" -#: part/models.py:116 +#: part/models.py:113 msgid "Default location for parts in this category" msgstr "" -#: part/models.py:121 stock/models.py:216 +#: part/models.py:118 stock/models.py:216 msgid "Structural" msgstr "" -#: part/models.py:123 +#: part/models.py:120 msgid "Parts may not be directly assigned to a structural category, but may be assigned to child categories." msgstr "" -#: part/models.py:132 +#: part/models.py:129 msgid "Default keywords" msgstr "" -#: part/models.py:133 +#: part/models.py:130 msgid "Default keywords for parts in this category" msgstr "" -#: part/models.py:140 stock/models.py:97 stock/models.py:198 +#: part/models.py:137 stock/models.py:97 stock/models.py:198 msgid "Icon" msgstr "" -#: part/models.py:141 part/serializers.py:148 part/serializers.py:167 +#: part/models.py:138 part/serializers.py:147 part/serializers.py:166 #: stock/models.py:199 msgid "Icon (optional)" msgstr "" -#: part/models.py:185 +#: part/models.py:182 msgid "You cannot make this part category structural because some parts are already assigned to it!" msgstr "" -#: part/models.py:473 part/serializers.py:119 part/serializers.py:310 -#: users/ruleset.py:28 +#: part/models.py:392 +msgid "Part Category Parameter Template" +msgstr "" + +#: part/models.py:448 +msgid "Default Value" +msgstr "" + +#: part/models.py:449 +msgid "Default Parameter Value" +msgstr "" + +#: part/models.py:551 part/serializers.py:118 users/ruleset.py:28 msgid "Parts" msgstr "ชิ้นส่วน" -#: part/models.py:525 +#: part/models.py:597 +msgid "Cannot delete parameters of a locked part" +msgstr "" + +#: part/models.py:602 +msgid "Cannot modify parameters of a locked part" +msgstr "" + +#: part/models.py:613 msgid "Cannot delete this part as it is locked" msgstr "" -#: part/models.py:528 +#: part/models.py:616 msgid "Cannot delete this part as it is still active" msgstr "" -#: part/models.py:533 +#: part/models.py:621 msgid "Cannot delete this part as it is used in an assembly" msgstr "" -#: part/models.py:616 part/models.py:623 +#: part/models.py:704 part/models.py:711 #, python-brace-format msgid "Part '{self}' cannot be used in BOM for '{parent}' (recursive)" msgstr "" -#: part/models.py:635 +#: part/models.py:723 #, python-brace-format msgid "Part '{parent}' is used in BOM for '{self}' (recursive)" msgstr "" -#: part/models.py:702 +#: part/models.py:790 #, python-brace-format msgid "IPN must match regex pattern {pattern}" msgstr "" -#: part/models.py:710 +#: part/models.py:798 msgid "Part cannot be a revision of itself" msgstr "" -#: part/models.py:717 +#: part/models.py:805 msgid "Cannot make a revision of a part which is already a revision" msgstr "" -#: part/models.py:724 +#: part/models.py:812 msgid "Revision code must be specified" msgstr "" -#: part/models.py:731 +#: part/models.py:819 msgid "Revisions are only allowed for assembly parts" msgstr "" -#: part/models.py:738 +#: part/models.py:826 msgid "Cannot make a revision of a template part" msgstr "" -#: part/models.py:744 +#: part/models.py:832 msgid "Parent part must point to the same template" msgstr "" -#: part/models.py:841 +#: part/models.py:929 msgid "Stock item with this serial number already exists" msgstr "" -#: part/models.py:971 +#: part/models.py:1059 msgid "Duplicate IPN not allowed in part settings" msgstr "" -#: part/models.py:983 +#: part/models.py:1071 msgid "Duplicate part revision already exists." msgstr "" -#: part/models.py:992 +#: part/models.py:1080 msgid "Part with this Name, IPN and Revision already exists." msgstr "" -#: part/models.py:1007 +#: part/models.py:1095 msgid "Parts cannot be assigned to structural part categories!" msgstr "" -#: part/models.py:1039 +#: part/models.py:1127 msgid "Part name" msgstr "" -#: part/models.py:1044 +#: part/models.py:1132 msgid "Is Template" msgstr "" -#: part/models.py:1045 +#: part/models.py:1133 msgid "Is this part a template part?" msgstr "" -#: part/models.py:1055 +#: part/models.py:1143 msgid "Is this part a variant of another part?" msgstr "" -#: part/models.py:1056 +#: part/models.py:1144 msgid "Variant Of" msgstr "" -#: part/models.py:1063 +#: part/models.py:1151 msgid "Part description (optional)" msgstr "" -#: part/models.py:1070 +#: part/models.py:1158 msgid "Keywords" msgstr "" -#: part/models.py:1071 +#: part/models.py:1159 msgid "Part keywords to improve visibility in search results" msgstr "" -#: part/models.py:1081 +#: part/models.py:1169 msgid "Part category" msgstr "" -#: part/models.py:1088 part/serializers.py:929 +#: part/models.py:1176 part/serializers.py:814 #: report/templates/report/inventree_stock_location_report.html:103 msgid "IPN" msgstr "" -#: part/models.py:1096 +#: part/models.py:1184 msgid "Part revision or version number" msgstr "" -#: part/models.py:1097 report/models.py:228 +#: part/models.py:1185 report/models.py:228 msgid "Revision" msgstr "" -#: part/models.py:1106 +#: part/models.py:1194 msgid "Is this part a revision of another part?" msgstr "" -#: part/models.py:1107 +#: part/models.py:1195 msgid "Revision Of" msgstr "" -#: part/models.py:1123 +#: part/models.py:1211 msgid "Where is this item normally stored?" msgstr "" -#: part/models.py:1169 +#: part/models.py:1257 msgid "Default Supplier" msgstr "" -#: part/models.py:1170 +#: part/models.py:1258 msgid "Default supplier part" msgstr "" -#: part/models.py:1177 +#: part/models.py:1265 msgid "Default Expiry" msgstr "" -#: part/models.py:1178 +#: part/models.py:1266 msgid "Expiry time (in days) for stock items of this part" msgstr "" -#: part/models.py:1186 part/serializers.py:1003 +#: part/models.py:1274 part/serializers.py:888 msgid "Minimum Stock" msgstr "" -#: part/models.py:1187 +#: part/models.py:1275 msgid "Minimum allowed stock level" msgstr "" -#: part/models.py:1196 +#: part/models.py:1284 msgid "Units of measure for this part" msgstr "" -#: part/models.py:1203 +#: part/models.py:1291 msgid "Can this part be built from other parts?" msgstr "" -#: part/models.py:1209 +#: part/models.py:1297 msgid "Can this part be used to build other parts?" msgstr "" -#: part/models.py:1215 +#: part/models.py:1303 msgid "Does this part have tracking for unique items?" msgstr "" -#: part/models.py:1221 +#: part/models.py:1309 msgid "Can this part have test results recorded against it?" msgstr "" -#: part/models.py:1227 +#: part/models.py:1315 msgid "Can this part be purchased from external suppliers?" msgstr "" -#: part/models.py:1233 +#: part/models.py:1321 msgid "Can this part be sold to customers?" msgstr "" -#: part/models.py:1237 +#: part/models.py:1325 msgid "Is this part active?" msgstr "" -#: part/models.py:1243 +#: part/models.py:1331 msgid "Locked parts cannot be edited" msgstr "" -#: part/models.py:1249 +#: part/models.py:1337 msgid "Is this a virtual part, such as a software product or license?" msgstr "" -#: part/models.py:1254 +#: part/models.py:1342 msgid "BOM Validated" msgstr "" -#: part/models.py:1255 +#: part/models.py:1343 msgid "Is the BOM for this part valid?" msgstr "" -#: part/models.py:1261 +#: part/models.py:1349 msgid "BOM checksum" msgstr "" -#: part/models.py:1262 +#: part/models.py:1350 msgid "Stored BOM checksum" msgstr "" -#: part/models.py:1270 +#: part/models.py:1358 msgid "BOM checked by" msgstr "" -#: part/models.py:1275 +#: part/models.py:1363 msgid "BOM checked date" msgstr "" -#: part/models.py:1291 +#: part/models.py:1379 msgid "Creation User" msgstr "" -#: part/models.py:1301 +#: part/models.py:1389 msgid "Owner responsible for this part" msgstr "" -#: part/models.py:2258 +#: part/models.py:2346 msgid "Sell multiple" msgstr "" -#: part/models.py:3286 +#: part/models.py:3350 msgid "Currency used to cache pricing calculations" msgstr "" -#: part/models.py:3302 +#: part/models.py:3366 msgid "Minimum BOM Cost" msgstr "" -#: part/models.py:3303 +#: part/models.py:3367 msgid "Minimum cost of component parts" msgstr "" -#: part/models.py:3309 +#: part/models.py:3373 msgid "Maximum BOM Cost" msgstr "" -#: part/models.py:3310 +#: part/models.py:3374 msgid "Maximum cost of component parts" msgstr "" -#: part/models.py:3316 +#: part/models.py:3380 msgid "Minimum Purchase Cost" msgstr "" -#: part/models.py:3317 +#: part/models.py:3381 msgid "Minimum historical purchase cost" msgstr "" -#: part/models.py:3323 +#: part/models.py:3387 msgid "Maximum Purchase Cost" msgstr "" -#: part/models.py:3324 +#: part/models.py:3388 msgid "Maximum historical purchase cost" msgstr "" -#: part/models.py:3330 +#: part/models.py:3394 msgid "Minimum Internal Price" msgstr "" -#: part/models.py:3331 +#: part/models.py:3395 msgid "Minimum cost based on internal price breaks" msgstr "" -#: part/models.py:3337 +#: part/models.py:3401 msgid "Maximum Internal Price" msgstr "" -#: part/models.py:3338 +#: part/models.py:3402 msgid "Maximum cost based on internal price breaks" msgstr "" -#: part/models.py:3344 +#: part/models.py:3408 msgid "Minimum Supplier Price" msgstr "" -#: part/models.py:3345 +#: part/models.py:3409 msgid "Minimum price of part from external suppliers" msgstr "" -#: part/models.py:3351 +#: part/models.py:3415 msgid "Maximum Supplier Price" msgstr "" -#: part/models.py:3352 +#: part/models.py:3416 msgid "Maximum price of part from external suppliers" msgstr "" -#: part/models.py:3358 +#: part/models.py:3422 msgid "Minimum Variant Cost" msgstr "" -#: part/models.py:3359 +#: part/models.py:3423 msgid "Calculated minimum cost of variant parts" msgstr "" -#: part/models.py:3365 +#: part/models.py:3429 msgid "Maximum Variant Cost" msgstr "" -#: part/models.py:3366 +#: part/models.py:3430 msgid "Calculated maximum cost of variant parts" msgstr "" -#: part/models.py:3372 part/models.py:3386 +#: part/models.py:3436 part/models.py:3450 msgid "Minimum Cost" msgstr "" -#: part/models.py:3373 +#: part/models.py:3437 msgid "Override minimum cost" msgstr "" -#: part/models.py:3379 part/models.py:3393 +#: part/models.py:3443 part/models.py:3457 msgid "Maximum Cost" msgstr "" -#: part/models.py:3380 +#: part/models.py:3444 msgid "Override maximum cost" msgstr "" -#: part/models.py:3387 +#: part/models.py:3451 msgid "Calculated overall minimum cost" msgstr "" -#: part/models.py:3394 +#: part/models.py:3458 msgid "Calculated overall maximum cost" msgstr "" -#: part/models.py:3400 +#: part/models.py:3464 msgid "Minimum Sale Price" msgstr "" -#: part/models.py:3401 +#: part/models.py:3465 msgid "Minimum sale price based on price breaks" msgstr "" -#: part/models.py:3407 +#: part/models.py:3471 msgid "Maximum Sale Price" msgstr "" -#: part/models.py:3408 +#: part/models.py:3472 msgid "Maximum sale price based on price breaks" msgstr "" -#: part/models.py:3414 +#: part/models.py:3478 msgid "Minimum Sale Cost" msgstr "" -#: part/models.py:3415 +#: part/models.py:3479 msgid "Minimum historical sale price" msgstr "" -#: part/models.py:3421 +#: part/models.py:3485 msgid "Maximum Sale Cost" msgstr "" -#: part/models.py:3422 +#: part/models.py:3486 msgid "Maximum historical sale price" msgstr "" -#: part/models.py:3440 +#: part/models.py:3504 msgid "Part for stocktake" msgstr "" -#: part/models.py:3445 +#: part/models.py:3509 msgid "Item Count" msgstr "" -#: part/models.py:3446 +#: part/models.py:3510 msgid "Number of individual stock entries at time of stocktake" msgstr "" -#: part/models.py:3454 +#: part/models.py:3518 msgid "Total available stock at time of stocktake" msgstr "" -#: part/models.py:3458 report/templates/report/inventree_test_report.html:106 +#: part/models.py:3522 report/templates/report/inventree_test_report.html:106 msgid "Date" msgstr "" -#: part/models.py:3459 +#: part/models.py:3523 msgid "Date stocktake was performed" msgstr "" -#: part/models.py:3466 +#: part/models.py:3530 msgid "Minimum Stock Cost" msgstr "" -#: part/models.py:3467 +#: part/models.py:3531 msgid "Estimated minimum cost of stock on hand" msgstr "" -#: part/models.py:3473 +#: part/models.py:3537 msgid "Maximum Stock Cost" msgstr "" -#: part/models.py:3474 +#: part/models.py:3538 msgid "Estimated maximum cost of stock on hand" msgstr "" -#: part/models.py:3484 +#: part/models.py:3548 msgid "Part Sale Price Break" msgstr "" -#: part/models.py:3596 +#: part/models.py:3660 msgid "Part Test Template" msgstr "" -#: part/models.py:3622 +#: part/models.py:3686 msgid "Invalid template name - must include at least one alphanumeric character" msgstr "" -#: part/models.py:3643 part/models.py:3816 -msgid "Choices must be unique" -msgstr "" - -#: part/models.py:3654 +#: part/models.py:3718 msgid "Test templates can only be created for testable parts" msgstr "" -#: part/models.py:3668 +#: part/models.py:3732 msgid "Test template with the same key already exists for part" msgstr "" -#: part/models.py:3685 +#: part/models.py:3749 msgid "Test Name" msgstr "" -#: part/models.py:3686 +#: part/models.py:3750 msgid "Enter a name for the test" msgstr "" -#: part/models.py:3692 +#: part/models.py:3756 msgid "Test Key" msgstr "" -#: part/models.py:3693 +#: part/models.py:3757 msgid "Simplified key for the test" msgstr "" -#: part/models.py:3700 +#: part/models.py:3764 msgid "Test Description" msgstr "" -#: part/models.py:3701 +#: part/models.py:3765 msgid "Enter description for this test" msgstr "" -#: part/models.py:3705 report/models.py:287 -msgid "Enabled" -msgstr "" - -#: part/models.py:3705 +#: part/models.py:3769 msgid "Is this test enabled?" msgstr "" -#: part/models.py:3710 +#: part/models.py:3774 msgid "Required" msgstr "" -#: part/models.py:3711 +#: part/models.py:3775 msgid "Is this test required to pass?" msgstr "" -#: part/models.py:3716 +#: part/models.py:3780 msgid "Requires Value" msgstr "" -#: part/models.py:3717 +#: part/models.py:3781 msgid "Does this test require a value when adding a test result?" msgstr "" -#: part/models.py:3722 +#: part/models.py:3786 msgid "Requires Attachment" msgstr "" -#: part/models.py:3724 +#: part/models.py:3788 msgid "Does this test require a file attachment when adding a test result?" msgstr "" -#: part/models.py:3730 part/models.py:3878 -msgid "Choices" -msgstr "" - -#: part/models.py:3731 +#: part/models.py:3795 msgid "Valid choices for this test (comma-separated)" msgstr "" -#: part/models.py:3764 -msgid "Part Parameter Template" -msgstr "" - -#: part/models.py:3791 -msgid "Checkbox parameters cannot have units" -msgstr "" - -#: part/models.py:3796 -msgid "Checkbox parameters cannot have choices" -msgstr "" - -#: part/models.py:3833 -msgid "Parameter template name must be unique" -msgstr "" - -#: part/models.py:3851 -msgid "Parameter Name" -msgstr "" - -#: part/models.py:3858 -msgid "Physical units for this parameter" -msgstr "" - -#: part/models.py:3866 -msgid "Parameter description" -msgstr "" - -#: part/models.py:3872 -msgid "Checkbox" -msgstr "" - -#: part/models.py:3873 -msgid "Is this parameter a checkbox?" -msgstr "" - -#: part/models.py:3879 -msgid "Valid choices for this parameter (comma-separated)" -msgstr "" - -#: part/models.py:3890 -msgid "Selection list for this parameter" -msgstr "" - -#: part/models.py:3932 -msgid "Part Parameter" -msgstr "" - -#: part/models.py:3958 -msgid "Parameter cannot be modified - part is locked" -msgstr "" - -#: part/models.py:3996 -msgid "Invalid choice for parameter value" -msgstr "" - -#: part/models.py:4047 -msgid "Parent Part" -msgstr "" - -#: part/models.py:4055 part/models.py:4170 part/models.py:4171 -msgid "Parameter Template" -msgstr "" - -#: part/models.py:4061 -msgid "Parameter Value" -msgstr "" - -#: part/models.py:4071 stock/serializers.py:718 -msgid "Optional note field" -msgstr "" - -#: part/models.py:4118 -msgid "Part Category Parameter Template" -msgstr "" - -#: part/models.py:4177 -msgid "Default Value" -msgstr "" - -#: part/models.py:4178 -msgid "Default Parameter Value" -msgstr "" - -#: part/models.py:4352 +#: part/models.py:3977 msgid "BOM item cannot be modified - assembly is locked" msgstr "" -#: part/models.py:4359 +#: part/models.py:3984 msgid "BOM item cannot be modified - variant assembly is locked" msgstr "" -#: part/models.py:4369 +#: part/models.py:3994 msgid "Select parent part" msgstr "" -#: part/models.py:4379 +#: part/models.py:4004 msgid "Sub part" msgstr "" -#: part/models.py:4380 +#: part/models.py:4005 msgid "Select part to be used in BOM" msgstr "" -#: part/models.py:4391 +#: part/models.py:4016 msgid "BOM quantity for this BOM item" msgstr "" -#: part/models.py:4397 +#: part/models.py:4022 msgid "This BOM item is optional" msgstr "" -#: part/models.py:4403 +#: part/models.py:4028 msgid "This BOM item is consumable (it is not tracked in build orders)" msgstr "" -#: part/models.py:4411 +#: part/models.py:4036 msgid "Setup Quantity" msgstr "" -#: part/models.py:4412 +#: part/models.py:4037 msgid "Extra required quantity for a build, to account for setup losses" msgstr "" -#: part/models.py:4420 +#: part/models.py:4045 msgid "Attrition" msgstr "" -#: part/models.py:4422 +#: part/models.py:4047 msgid "Estimated attrition for a build, expressed as a percentage (0-100)" msgstr "" -#: part/models.py:4433 +#: part/models.py:4058 msgid "Rounding Multiple" msgstr "" -#: part/models.py:4435 +#: part/models.py:4060 msgid "Round up required production quantity to nearest multiple of this value" msgstr "" -#: part/models.py:4443 +#: part/models.py:4068 msgid "BOM item reference" msgstr "" -#: part/models.py:4451 +#: part/models.py:4076 msgid "BOM item notes" msgstr "" -#: part/models.py:4457 +#: part/models.py:4082 msgid "Checksum" msgstr "" -#: part/models.py:4458 +#: part/models.py:4083 msgid "BOM line checksum" msgstr "" -#: part/models.py:4463 +#: part/models.py:4088 msgid "Validated" msgstr "" -#: part/models.py:4464 +#: part/models.py:4089 msgid "This BOM item has been validated" msgstr "" -#: part/models.py:4469 +#: part/models.py:4094 msgid "Gets inherited" msgstr "" -#: part/models.py:4470 +#: part/models.py:4095 msgid "This BOM item is inherited by BOMs for variant parts" msgstr "" -#: part/models.py:4476 +#: part/models.py:4101 msgid "Stock items for variant parts can be used for this BOM item" msgstr "" -#: part/models.py:4583 stock/models.py:925 +#: part/models.py:4208 stock/models.py:925 msgid "Quantity must be integer value for trackable parts" msgstr "" -#: part/models.py:4593 part/models.py:4595 +#: part/models.py:4218 part/models.py:4220 msgid "Sub part must be specified" msgstr "" -#: part/models.py:4746 +#: part/models.py:4371 msgid "BOM Item Substitute" msgstr "" -#: part/models.py:4767 +#: part/models.py:4392 msgid "Substitute part cannot be the same as the master part" msgstr "" -#: part/models.py:4780 +#: part/models.py:4405 msgid "Parent BOM item" msgstr "" -#: part/models.py:4788 +#: part/models.py:4413 msgid "Substitute part" msgstr "" -#: part/models.py:4804 +#: part/models.py:4429 msgid "Part 1" msgstr "" -#: part/models.py:4812 +#: part/models.py:4437 msgid "Part 2" msgstr "" -#: part/models.py:4813 +#: part/models.py:4438 msgid "Select Related Part" msgstr "" -#: part/models.py:4820 +#: part/models.py:4445 msgid "Note for this relationship" msgstr "" -#: part/models.py:4839 +#: part/models.py:4464 msgid "Part relationship cannot be created between a part and itself" msgstr "" -#: part/models.py:4844 +#: part/models.py:4469 msgid "Duplicate relationship already exists" msgstr "" -#: part/serializers.py:114 +#: part/serializers.py:113 msgid "Parent Category" msgstr "" -#: part/serializers.py:115 +#: part/serializers.py:114 msgid "Parent part category" msgstr "" -#: part/serializers.py:123 part/serializers.py:164 +#: part/serializers.py:122 part/serializers.py:163 msgid "Subcategories" msgstr "" -#: part/serializers.py:203 +#: part/serializers.py:202 msgid "Results" msgstr "" -#: part/serializers.py:204 +#: part/serializers.py:203 msgid "Number of results recorded against this template" msgstr "" -#: part/serializers.py:235 part/serializers.py:253 stock/serializers.py:643 +#: part/serializers.py:234 part/serializers.py:252 stock/serializers.py:643 msgid "Purchase currency of this stock item" msgstr "" -#: part/serializers.py:280 +#: part/serializers.py:279 msgid "File is not an image" msgstr "" -#: part/serializers.py:311 -msgid "Number of parts using this template" -msgstr "" - -#: part/serializers.py:471 +#: part/serializers.py:382 msgid "Original Part" msgstr "" -#: part/serializers.py:472 +#: part/serializers.py:383 msgid "Select original part to duplicate" msgstr "" -#: part/serializers.py:477 +#: part/serializers.py:388 msgid "Copy Image" msgstr "" -#: part/serializers.py:478 +#: part/serializers.py:389 msgid "Copy image from original part" msgstr "" -#: part/serializers.py:484 +#: part/serializers.py:395 msgid "Copy BOM" msgstr "" -#: part/serializers.py:485 +#: part/serializers.py:396 msgid "Copy bill of materials from original part" msgstr "" -#: part/serializers.py:491 +#: part/serializers.py:402 msgid "Copy Parameters" msgstr "" -#: part/serializers.py:492 +#: part/serializers.py:403 msgid "Copy parameter data from original part" msgstr "" -#: part/serializers.py:498 +#: part/serializers.py:409 msgid "Copy Notes" msgstr "" -#: part/serializers.py:499 +#: part/serializers.py:410 msgid "Copy notes from original part" msgstr "" -#: part/serializers.py:505 +#: part/serializers.py:416 msgid "Copy Tests" msgstr "" -#: part/serializers.py:506 +#: part/serializers.py:417 msgid "Copy test templates from original part" msgstr "" -#: part/serializers.py:524 +#: part/serializers.py:435 msgid "Initial Stock Quantity" msgstr "" -#: part/serializers.py:526 +#: part/serializers.py:437 msgid "Specify initial stock quantity for this Part. If quantity is zero, no stock is added." msgstr "" -#: part/serializers.py:533 +#: part/serializers.py:444 msgid "Initial Stock Location" msgstr "" -#: part/serializers.py:534 +#: part/serializers.py:445 msgid "Specify initial stock location for this Part" msgstr "" -#: part/serializers.py:551 +#: part/serializers.py:462 msgid "Select supplier (or leave blank to skip)" msgstr "" -#: part/serializers.py:567 +#: part/serializers.py:478 msgid "Select manufacturer (or leave blank to skip)" msgstr "" -#: part/serializers.py:577 +#: part/serializers.py:488 msgid "Manufacturer part number" msgstr "" -#: part/serializers.py:584 +#: part/serializers.py:495 msgid "Selected company is not a valid supplier" msgstr "" -#: part/serializers.py:593 +#: part/serializers.py:504 msgid "Selected company is not a valid manufacturer" msgstr "" -#: part/serializers.py:604 +#: part/serializers.py:515 msgid "Manufacturer part matching this MPN already exists" msgstr "" -#: part/serializers.py:611 +#: part/serializers.py:522 msgid "Supplier part matching this SKU already exists" msgstr "" -#: part/serializers.py:914 +#: part/serializers.py:799 msgid "Category Name" msgstr "" -#: part/serializers.py:943 +#: part/serializers.py:828 msgid "Building" msgstr "" -#: part/serializers.py:944 +#: part/serializers.py:829 msgid "Quantity of this part currently being in production" msgstr "" -#: part/serializers.py:951 +#: part/serializers.py:836 msgid "Outstanding quantity of this part scheduled to be built" msgstr "" -#: part/serializers.py:971 stock/serializers.py:1019 stock/serializers.py:1189 +#: part/serializers.py:856 stock/serializers.py:1019 stock/serializers.py:1189 #: users/ruleset.py:30 msgid "Stock Items" msgstr "" -#: part/serializers.py:975 +#: part/serializers.py:860 msgid "Revisions" msgstr "" -#: part/serializers.py:979 +#: part/serializers.py:864 msgid "Suppliers" msgstr "" -#: part/serializers.py:983 part/serializers.py:1297 +#: part/serializers.py:868 part/serializers.py:1162 #: templates/email/low_stock_notification.html:16 #: templates/email/part_event_notification.html:17 msgid "Total Stock" msgstr "" -#: part/serializers.py:991 +#: part/serializers.py:876 msgid "Unallocated Stock" msgstr "" -#: part/serializers.py:999 +#: part/serializers.py:884 msgid "Variant Stock" msgstr "" -#: part/serializers.py:1054 +#: part/serializers.py:943 msgid "Duplicate Part" msgstr "" -#: part/serializers.py:1055 +#: part/serializers.py:944 msgid "Copy initial data from another Part" msgstr "" -#: part/serializers.py:1061 +#: part/serializers.py:950 msgid "Initial Stock" msgstr "" -#: part/serializers.py:1062 +#: part/serializers.py:951 msgid "Create Part with initial stock quantity" msgstr "" -#: part/serializers.py:1068 +#: part/serializers.py:957 msgid "Supplier Information" msgstr "" -#: part/serializers.py:1069 +#: part/serializers.py:958 msgid "Add initial supplier information for this part" msgstr "" -#: part/serializers.py:1077 +#: part/serializers.py:966 msgid "Copy Category Parameters" msgstr "" -#: part/serializers.py:1078 +#: part/serializers.py:967 msgid "Copy parameter templates from selected part category" msgstr "" -#: part/serializers.py:1083 +#: part/serializers.py:972 msgid "Existing Image" msgstr "" -#: part/serializers.py:1084 +#: part/serializers.py:973 msgid "Filename of an existing part image" msgstr "" -#: part/serializers.py:1101 +#: part/serializers.py:990 msgid "Image file does not exist" msgstr "" -#: part/serializers.py:1269 +#: part/serializers.py:1134 msgid "Validate entire Bill of Materials" msgstr "" -#: part/serializers.py:1303 part/serializers.py:1769 +#: part/serializers.py:1168 part/serializers.py:1634 msgid "Can Build" msgstr "" -#: part/serializers.py:1320 +#: part/serializers.py:1185 msgid "Required for Build Orders" msgstr "" -#: part/serializers.py:1325 +#: part/serializers.py:1190 msgid "Allocated to Build Orders" msgstr "" -#: part/serializers.py:1332 +#: part/serializers.py:1197 msgid "Required for Sales Orders" msgstr "" -#: part/serializers.py:1336 +#: part/serializers.py:1201 msgid "Allocated to Sales Orders" msgstr "" -#: part/serializers.py:1475 +#: part/serializers.py:1340 msgid "Minimum Price" msgstr "" -#: part/serializers.py:1476 +#: part/serializers.py:1341 msgid "Override calculated value for minimum price" msgstr "" -#: part/serializers.py:1483 +#: part/serializers.py:1348 msgid "Minimum price currency" msgstr "" -#: part/serializers.py:1490 +#: part/serializers.py:1355 msgid "Maximum Price" msgstr "" -#: part/serializers.py:1491 +#: part/serializers.py:1356 msgid "Override calculated value for maximum price" msgstr "" -#: part/serializers.py:1498 +#: part/serializers.py:1363 msgid "Maximum price currency" msgstr "" -#: part/serializers.py:1527 +#: part/serializers.py:1392 msgid "Update" msgstr "" -#: part/serializers.py:1528 +#: part/serializers.py:1393 msgid "Update pricing for this part" msgstr "" -#: part/serializers.py:1551 +#: part/serializers.py:1416 #, python-brace-format msgid "Could not convert from provided currencies to {default_currency}" msgstr "" -#: part/serializers.py:1558 +#: part/serializers.py:1423 msgid "Minimum price must not be greater than maximum price" msgstr "" -#: part/serializers.py:1561 +#: part/serializers.py:1426 msgid "Maximum price must not be less than minimum price" msgstr "" -#: part/serializers.py:1715 +#: part/serializers.py:1580 msgid "Select the parent assembly" msgstr "" -#: part/serializers.py:1735 +#: part/serializers.py:1600 msgid "Select the component part" msgstr "" -#: part/serializers.py:1929 +#: part/serializers.py:1802 msgid "Select part to copy BOM from" msgstr "" -#: part/serializers.py:1937 +#: part/serializers.py:1810 msgid "Remove Existing Data" msgstr "" -#: part/serializers.py:1938 +#: part/serializers.py:1811 msgid "Remove existing BOM items before copying" msgstr "" -#: part/serializers.py:1943 +#: part/serializers.py:1816 msgid "Include Inherited" msgstr "" -#: part/serializers.py:1944 +#: part/serializers.py:1817 msgid "Include BOM items which are inherited from templated parts" msgstr "" -#: part/serializers.py:1949 +#: part/serializers.py:1822 msgid "Skip Invalid Rows" msgstr "" -#: part/serializers.py:1950 +#: part/serializers.py:1823 msgid "Enable this option to skip invalid rows" msgstr "" -#: part/serializers.py:1955 +#: part/serializers.py:1828 msgid "Copy Substitute Parts" msgstr "" -#: part/serializers.py:1956 +#: part/serializers.py:1829 msgid "Copy substitute parts when duplicate BOM items" msgstr "" @@ -6927,7 +6974,7 @@ msgstr "" #: plugin/builtin/events/auto_issue_orders.py:19 #: plugin/builtin/exporter/bom_exporter.py:73 #: plugin/builtin/exporter/inventree_exporter.py:17 -#: plugin/builtin/exporter/part_parameter_exporter.py:36 +#: plugin/builtin/exporter/parameter_exporter.py:32 #: plugin/builtin/exporter/stocktake_exporter.py:47 #: plugin/builtin/integration/core_notifications.py:25 #: plugin/builtin/integration/core_notifications.py:69 @@ -7041,23 +7088,19 @@ msgid "Include total quantity of each part in the BOM" msgstr "" #: plugin/builtin/exporter/bom_exporter.py:35 -#: plugin/builtin/exporter/part_parameter_exporter.py:17 msgid "Stock Data" msgstr "" #: plugin/builtin/exporter/bom_exporter.py:35 -#: plugin/builtin/exporter/part_parameter_exporter.py:17 msgid "Include part stock data" msgstr "" #: plugin/builtin/exporter/bom_exporter.py:39 -#: plugin/builtin/exporter/part_parameter_exporter.py:21 #: plugin/builtin/exporter/stocktake_exporter.py:20 msgid "Pricing Data" msgstr "" #: plugin/builtin/exporter/bom_exporter.py:39 -#: plugin/builtin/exporter/part_parameter_exporter.py:21 #: plugin/builtin/exporter/stocktake_exporter.py:20 msgid "Include part pricing data" msgstr "" @@ -7144,12 +7187,20 @@ msgstr "" msgid "Provides support for exporting data from InvenTree" msgstr "" -#: plugin/builtin/exporter/part_parameter_exporter.py:33 -msgid "Part Parameter Exporter" +#: plugin/builtin/exporter/parameter_exporter.py:16 +msgid "Exclude Inactive" msgstr "" -#: plugin/builtin/exporter/part_parameter_exporter.py:34 -msgid "Exporter for part parameter data" +#: plugin/builtin/exporter/parameter_exporter.py:17 +msgid "Exclude parameters which are inactive" +msgstr "" + +#: plugin/builtin/exporter/parameter_exporter.py:29 +msgid "Parameter Exporter" +msgstr "" + +#: plugin/builtin/exporter/parameter_exporter.py:30 +msgid "Exporter for model parameter data" msgstr "" #: plugin/builtin/exporter/stocktake_exporter.py:25 @@ -8079,19 +8130,19 @@ msgstr "" msgid "No result" msgstr "" -#: report/templatetags/report.py:167 +#: report/templatetags/report.py:169 msgid "Asset file does not exist" msgstr "" -#: report/templatetags/report.py:224 report/templatetags/report.py:300 +#: report/templatetags/report.py:226 report/templatetags/report.py:302 msgid "Image file not found" msgstr "" -#: report/templatetags/report.py:325 +#: report/templatetags/report.py:327 msgid "part_image tag requires a Part instance" msgstr "" -#: report/templatetags/report.py:362 +#: report/templatetags/report.py:383 msgid "company_image tag requires a Company instance" msgstr "" @@ -8455,115 +8506,119 @@ msgstr "" msgid "Quantity does not match serial numbers" msgstr "" -#: stock/models.py:2012 stock/models.py:2917 +#: stock/models.py:1912 +msgid "Cannot assign stock to structural location" +msgstr "" + +#: stock/models.py:2029 stock/models.py:2934 msgid "Test template does not exist" msgstr "" -#: stock/models.py:2030 +#: stock/models.py:2047 msgid "Stock item has been assigned to a sales order" msgstr "" -#: stock/models.py:2034 +#: stock/models.py:2051 msgid "Stock item is installed in another item" msgstr "" -#: stock/models.py:2037 +#: stock/models.py:2054 msgid "Stock item contains other items" msgstr "" -#: stock/models.py:2040 +#: stock/models.py:2057 msgid "Stock item has been assigned to a customer" msgstr "" -#: stock/models.py:2043 stock/models.py:2226 +#: stock/models.py:2060 stock/models.py:2243 msgid "Stock item is currently in production" msgstr "" -#: stock/models.py:2046 +#: stock/models.py:2063 msgid "Serialized stock cannot be merged" msgstr "" -#: stock/models.py:2053 stock/serializers.py:1462 +#: stock/models.py:2070 stock/serializers.py:1462 msgid "Duplicate stock items" msgstr "" -#: stock/models.py:2057 +#: stock/models.py:2074 msgid "Stock items must refer to the same part" msgstr "" -#: stock/models.py:2065 +#: stock/models.py:2082 msgid "Stock items must refer to the same supplier part" msgstr "" -#: stock/models.py:2070 +#: stock/models.py:2087 msgid "Stock status codes must match" msgstr "" -#: stock/models.py:2349 +#: stock/models.py:2366 msgid "StockItem cannot be moved as it is not in stock" msgstr "" -#: stock/models.py:2818 +#: stock/models.py:2835 msgid "Stock Item Tracking" msgstr "" -#: stock/models.py:2849 +#: stock/models.py:2866 msgid "Entry notes" msgstr "" -#: stock/models.py:2889 +#: stock/models.py:2906 msgid "Stock Item Test Result" msgstr "" -#: stock/models.py:2920 +#: stock/models.py:2937 msgid "Value must be provided for this test" msgstr "" -#: stock/models.py:2924 +#: stock/models.py:2941 msgid "Attachment must be uploaded for this test" msgstr "" -#: stock/models.py:2929 +#: stock/models.py:2946 msgid "Invalid value for this test" msgstr "" -#: stock/models.py:2953 +#: stock/models.py:2970 msgid "Test result" msgstr "" -#: stock/models.py:2960 +#: stock/models.py:2977 msgid "Test output value" msgstr "" -#: stock/models.py:2968 stock/serializers.py:248 +#: stock/models.py:2985 stock/serializers.py:248 msgid "Test result attachment" msgstr "" -#: stock/models.py:2972 +#: stock/models.py:2989 msgid "Test notes" msgstr "" -#: stock/models.py:2980 +#: stock/models.py:2997 msgid "Test station" msgstr "" -#: stock/models.py:2981 +#: stock/models.py:2998 msgid "The identifier of the test station where the test was performed" msgstr "" -#: stock/models.py:2987 +#: stock/models.py:3004 msgid "Started" msgstr "" -#: stock/models.py:2988 +#: stock/models.py:3005 msgid "The timestamp of the test start" msgstr "" -#: stock/models.py:2994 +#: stock/models.py:3011 msgid "Finished" msgstr "" -#: stock/models.py:2995 +#: stock/models.py:3012 msgid "The timestamp of the test finish" msgstr "" @@ -8677,8 +8732,8 @@ msgstr "" msgid "Quantity must not exceed available stock quantity ({q})" msgstr "" -#: stock/serializers.py:711 stock/serializers.py:1419 stock/serializers.py:1732 -#: stock/serializers.py:1781 +#: stock/serializers.py:711 stock/serializers.py:1419 stock/serializers.py:1740 +#: stock/serializers.py:1789 msgid "Destination stock location" msgstr "" @@ -8834,19 +8889,19 @@ msgstr "" msgid "Stock transaction notes" msgstr "" -#: stock/serializers.py:1787 +#: stock/serializers.py:1795 msgid "Merge into existing stock" msgstr "" -#: stock/serializers.py:1788 +#: stock/serializers.py:1796 msgid "Merge returned items into existing stock items if possible" msgstr "" -#: stock/serializers.py:1831 +#: stock/serializers.py:1839 msgid "Next Serial Number" msgstr "" -#: stock/serializers.py:1837 +#: stock/serializers.py:1845 msgid "Previous Serial Number" msgstr "" @@ -8902,83 +8957,87 @@ msgstr "เพิ่มสต็อกแล้ว" msgid "Stock manually removed" msgstr "ลบสต็อกแล้ว" -#: stock/status_codes.py:57 +#: stock/status_codes.py:56 +msgid "Serialized stock items" +msgstr "" + +#: stock/status_codes.py:58 msgid "Returned to stock" msgstr "" -#: stock/status_codes.py:60 +#: stock/status_codes.py:61 msgid "Location changed" msgstr "เปลี่ยนสถานที่แล้ว" -#: stock/status_codes.py:61 +#: stock/status_codes.py:62 msgid "Stock updated" msgstr "อัพเดทสต็อกแล้ว" -#: stock/status_codes.py:64 +#: stock/status_codes.py:65 msgid "Installed into assembly" msgstr "" -#: stock/status_codes.py:65 +#: stock/status_codes.py:66 msgid "Removed from assembly" msgstr "" -#: stock/status_codes.py:67 +#: stock/status_codes.py:68 msgid "Installed component item" msgstr "" -#: stock/status_codes.py:68 +#: stock/status_codes.py:69 msgid "Removed component item" msgstr "" -#: stock/status_codes.py:71 +#: stock/status_codes.py:72 msgid "Split from parent item" msgstr "" -#: stock/status_codes.py:72 +#: stock/status_codes.py:73 msgid "Split child item" msgstr "" -#: stock/status_codes.py:75 +#: stock/status_codes.py:76 msgid "Merged stock items" msgstr "" -#: stock/status_codes.py:78 +#: stock/status_codes.py:79 msgid "Converted to variant" msgstr "" -#: stock/status_codes.py:81 +#: stock/status_codes.py:82 msgid "Build order output created" msgstr "" -#: stock/status_codes.py:82 +#: stock/status_codes.py:83 msgid "Build order output completed" msgstr "" -#: stock/status_codes.py:83 +#: stock/status_codes.py:84 msgid "Build order output rejected" msgstr "" -#: stock/status_codes.py:84 +#: stock/status_codes.py:85 msgid "Consumed by build order" msgstr "" -#: stock/status_codes.py:87 +#: stock/status_codes.py:88 msgid "Shipped against Sales Order" msgstr "" -#: stock/status_codes.py:90 +#: stock/status_codes.py:91 msgid "Received against Purchase Order" msgstr "" -#: stock/status_codes.py:93 +#: stock/status_codes.py:94 msgid "Returned against Return Order" msgstr "" -#: stock/status_codes.py:96 +#: stock/status_codes.py:97 msgid "Sent to customer" msgstr "จัดส่งให้ลูกค้าแล้ว" -#: stock/status_codes.py:97 +#: stock/status_codes.py:98 msgid "Returned from customer" msgstr "" diff --git a/src/backend/InvenTree/locale/tr/LC_MESSAGES/django.po b/src/backend/InvenTree/locale/tr/LC_MESSAGES/django.po index 4437e38fb5..83fdd0090f 100644 --- a/src/backend/InvenTree/locale/tr/LC_MESSAGES/django.po +++ b/src/backend/InvenTree/locale/tr/LC_MESSAGES/django.po @@ -2,8 +2,8 @@ msgid "" msgstr "" "Project-Id-Version: inventree\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-11-19 04:55+0000\n" -"PO-Revision-Date: 2025-11-19 04:59\n" +"POT-Creation-Date: 2025-12-07 07:33+0000\n" +"PO-Revision-Date: 2025-12-07 07:36\n" "Last-Translator: \n" "Language-Team: Turkish\n" "Language: tr_TR\n" @@ -57,7 +57,7 @@ msgstr "Değer verilmemiş" msgid "This field must be unique." msgstr "Bu alan eşsiz olmalı." -#: InvenTree/api.py:775 +#: InvenTree/api.py:803 msgid "User does not have permission to view this model" msgstr "Kullanıcının bu modeli görüntüleme izni yok" @@ -81,22 +81,22 @@ msgstr "Sağlanan e-posta adresi geçerli değil." msgid "The provided email domain is not approved." msgstr "Sağlanan e-posta alanı onaylanmadı." -#: InvenTree/conversion.py:166 +#: InvenTree/conversion.py:240 #, python-brace-format msgid "Invalid unit provided ({unit})" msgstr "Geçersiz ürün girildi ({unit})" -#: InvenTree/conversion.py:183 +#: InvenTree/conversion.py:257 msgid "No value provided" msgstr "Değer verilmemiş" -#: InvenTree/conversion.py:210 +#: InvenTree/conversion.py:284 #, python-brace-format msgid "Could not convert {original} to {unit}" msgstr "{original} birimi {unit} birimine dönüştürülemedi" -#: InvenTree/conversion.py:212 InvenTree/conversion.py:226 -#: InvenTree/helpers.py:597 order/models.py:720 order/models.py:1015 +#: InvenTree/conversion.py:286 InvenTree/conversion.py:300 +#: InvenTree/helpers.py:597 order/models.py:721 order/models.py:1016 msgid "Invalid quantity provided" msgstr "Geçersiz veri sağlandı" @@ -112,11 +112,11 @@ msgstr "Tarih giriniz" msgid "Invalid decimal value" msgstr "Geçersiz ondalık değer" -#: InvenTree/fields.py:218 InvenTree/models.py:1067 build/serializers.py:509 -#: build/serializers.py:580 build/serializers.py:1788 company/models.py:857 -#: order/models.py:1780 +#: InvenTree/fields.py:218 InvenTree/models.py:1228 build/serializers.py:517 +#: build/serializers.py:588 build/serializers.py:1796 company/models.py:811 +#: order/models.py:1781 #: report/templates/report/inventree_build_order_report.html:172 -#: stock/models.py:2848 stock/models.py:2972 stock/serializers.py:717 +#: stock/models.py:2865 stock/models.py:2989 stock/serializers.py:717 #: stock/serializers.py:893 stock/serializers.py:1035 stock/serializers.py:1336 #: stock/serializers.py:1425 stock/serializers.py:1624 msgid "Notes" @@ -171,35 +171,35 @@ msgstr "Bu değerden HTML etiketlerini kaldır" msgid "Data contains prohibited markdown content" msgstr "Veriler yasaklanmış işaretleme içeriği içeriyor" -#: InvenTree/helpers_model.py:133 +#: InvenTree/helpers_model.py:134 msgid "Connection error" msgstr "Bağlantı hatası" -#: InvenTree/helpers_model.py:138 InvenTree/helpers_model.py:145 +#: InvenTree/helpers_model.py:139 InvenTree/helpers_model.py:146 msgid "Server responded with invalid status code" msgstr "Sunucu geçersiz durum kodu ile cevap verdi" -#: InvenTree/helpers_model.py:141 +#: InvenTree/helpers_model.py:142 msgid "Exception occurred" msgstr "İstisna oluştu" -#: InvenTree/helpers_model.py:151 +#: InvenTree/helpers_model.py:152 msgid "Server responded with invalid Content-Length value" msgstr "Sunucu geçersiz Content-Length değeriyle yanıt verdi" -#: InvenTree/helpers_model.py:154 +#: InvenTree/helpers_model.py:155 msgid "Image size is too large" msgstr "Resim boyutu çok büyük" -#: InvenTree/helpers_model.py:166 +#: InvenTree/helpers_model.py:167 msgid "Image download exceeded maximum size" msgstr "Resim indirme boyutu izin verilenden büyük" -#: InvenTree/helpers_model.py:171 +#: InvenTree/helpers_model.py:172 msgid "Remote server returned empty response" msgstr "Uzak sunucu boş cevap döndü" -#: InvenTree/helpers_model.py:179 +#: InvenTree/helpers_model.py:180 msgid "Supplied URL is not a valid image file" msgstr "Sağlanan URL geçerli bir resim dosyası değil" @@ -207,7 +207,7 @@ msgstr "Sağlanan URL geçerli bir resim dosyası değil" msgid "Log in to the app" msgstr "Uygulamaya giriş yapın" -#: InvenTree/magic_login.py:41 company/models.py:172 users/serializers.py:198 +#: InvenTree/magic_login.py:41 company/models.py:173 users/serializers.py:198 msgid "Email" msgstr "E-posta" @@ -215,160 +215,176 @@ msgstr "E-posta" msgid "You must enable two-factor authentication before doing anything else." msgstr "Başka bir şey yapmadan önce iki faktörlü kimlik doğrulamayı etkinleştirme gerekir." -#: InvenTree/models.py:111 +#: InvenTree/models.py:114 msgid "Error running plugin validation" msgstr "Eklenti doğrulama sırasında hata oluştu" -#: InvenTree/models.py:192 +#: InvenTree/models.py:195 msgid "Metadata must be a python dict object" msgstr "Metadata, bir python dict nesnesi olmalıdır" -#: InvenTree/models.py:198 +#: InvenTree/models.py:201 msgid "Plugin Metadata" msgstr "Plugin Metaverileri" -#: InvenTree/models.py:199 +#: InvenTree/models.py:202 msgid "JSON metadata field, for use by external plugins" msgstr "Harici eklentiler tarafından kullanım için JSON metadata alanı" -#: InvenTree/models.py:382 +#: InvenTree/models.py:385 msgid "Improperly formatted pattern" msgstr "Yanlış biçimlendirilmiş desen" -#: InvenTree/models.py:389 +#: InvenTree/models.py:392 msgid "Unknown format key specified" msgstr "Belirtilen bilinmeyen format anahtarı" -#: InvenTree/models.py:395 +#: InvenTree/models.py:398 msgid "Missing required format key" msgstr "Gerekli format anahtarı eksik" -#: InvenTree/models.py:406 +#: InvenTree/models.py:409 msgid "Reference field cannot be empty" msgstr "Referans alanı boş olamaz" -#: InvenTree/models.py:414 +#: InvenTree/models.py:417 msgid "Reference must match required pattern" msgstr "Referans {pattern} deseniyle mutlaka eşleşmeli" -#: InvenTree/models.py:445 +#: InvenTree/models.py:448 msgid "Reference number is too large" msgstr "Referans sayısı çok fazla" -#: InvenTree/models.py:743 +#: InvenTree/models.py:896 msgid "Invalid choice" msgstr "Geçersiz seçim" -#: InvenTree/models.py:856 common/models.py:1410 common/models.py:1837 -#: common/models.py:2096 common/models.py:2221 common/serializers.py:535 -#: company/models.py:615 generic/states/serializers.py:20 machine/models.py:25 -#: part/models.py:1039 part/models.py:3850 plugin/models.py:54 +#: InvenTree/models.py:1017 common/models.py:1414 common/models.py:1841 +#: common/models.py:2102 common/models.py:2227 common/models.py:2494 +#: common/serializers.py:539 generic/states/serializers.py:20 +#: machine/models.py:25 part/models.py:1127 plugin/models.py:54 #: report/models.py:216 stock/models.py:84 msgid "Name" msgstr "Adı" -#: InvenTree/models.py:862 build/models.py:252 common/models.py:171 -#: common/models.py:2228 common/models.py:2341 company/models.py:543 -#: company/models.py:848 order/models.py:442 order/models.py:1825 -#: part/models.py:1062 part/models.py:3865 report/models.py:222 +#: InvenTree/models.py:1023 build/models.py:253 common/models.py:175 +#: common/models.py:2234 common/models.py:2347 common/models.py:2509 +#: company/models.py:545 company/models.py:802 order/models.py:443 +#: order/models.py:1826 part/models.py:1150 report/models.py:222 #: report/models.py:815 report/models.py:841 #: report/templates/report/inventree_build_order_report.html:117 #: stock/models.py:90 msgid "Description" msgstr "Açıklama" -#: InvenTree/models.py:863 stock/models.py:91 +#: InvenTree/models.py:1024 stock/models.py:91 msgid "Description (optional)" msgstr "Açıklama (isteğe bağlı)" -#: InvenTree/models.py:878 common/models.py:2394 +#: InvenTree/models.py:1039 common/models.py:2815 msgid "Path" msgstr "Yol" -#: InvenTree/models.py:983 +#: InvenTree/models.py:1144 msgid "Duplicate names cannot exist under the same parent" msgstr "Aynı kaynak altında birden fazla aynı isim kullanılamaz" -#: InvenTree/models.py:1067 +#: InvenTree/models.py:1228 msgid "Markdown notes (optional)" msgstr "Markdown notları (isteğe bağlı)" -#: InvenTree/models.py:1098 +#: InvenTree/models.py:1259 msgid "Barcode Data" msgstr "Barkod Verisi" -#: InvenTree/models.py:1099 +#: InvenTree/models.py:1260 msgid "Third party barcode data" msgstr "Üçüncü parti barkod verisi" -#: InvenTree/models.py:1105 +#: InvenTree/models.py:1266 msgid "Barcode Hash" msgstr "Barkod Hash" -#: InvenTree/models.py:1106 +#: InvenTree/models.py:1267 msgid "Unique hash of barcode data" msgstr "Barkod verisinin benzersiz hash'i" -#: InvenTree/models.py:1187 +#: InvenTree/models.py:1348 msgid "Existing barcode found" msgstr "Var olan barkod bulundu" -#: InvenTree/models.py:1269 +#: InvenTree/models.py:1430 msgid "Task Failure" msgstr "Görev Başarısızlığı" -#: InvenTree/models.py:1270 +#: InvenTree/models.py:1431 #, python-brace-format msgid "Background worker task '{f}' failed after {n} attempts" msgstr "Arka plan çalışan görevi '{f}' {n} denemeden sonra başarısız oldu" -#: InvenTree/models.py:1297 +#: InvenTree/models.py:1458 msgid "Server Error" msgstr "Sunucu Hatası" -#: InvenTree/models.py:1298 +#: InvenTree/models.py:1459 msgid "An error has been logged by the server." msgstr "Bir hafta sunucu tarafından kayıt edildi." -#: InvenTree/models.py:1340 common/models.py:1748 +#: InvenTree/models.py:1501 common/models.py:1752 #: report/templates/report/inventree_bill_of_materials_report.html:126 #: report/templates/report/inventree_bill_of_materials_report.html:148 #: report/templates/report/inventree_return_order_report.html:35 msgid "Image" msgstr "Resim" -#: InvenTree/serializers.py:253 part/models.py:4571 +#: InvenTree/serializers.py:255 part/models.py:4196 msgid "Must be a valid number" msgstr "Geçerli bir numara olmalı" -#: InvenTree/serializers.py:295 company/models.py:214 part/models.py:3285 +#: InvenTree/serializers.py:297 company/models.py:215 part/models.py:3349 msgid "Currency" msgstr "Para birimi" -#: InvenTree/serializers.py:298 part/serializers.py:1385 +#: InvenTree/serializers.py:300 part/serializers.py:1250 msgid "Select currency from available options" msgstr "Var olan seçeneklerden bir döviz birimi seçin" -#: InvenTree/serializers.py:653 +#: InvenTree/serializers.py:654 +msgid "This field may not be null." +msgstr "" + +#: InvenTree/serializers.py:660 msgid "Invalid value" msgstr "Geçersiz değer" -#: InvenTree/serializers.py:690 +#: InvenTree/serializers.py:697 msgid "Remote Image" msgstr "Uzaktan Görüntüler" -#: InvenTree/serializers.py:691 +#: InvenTree/serializers.py:698 msgid "URL of remote image file" msgstr "Uzaktan görüntü dosya URL'si" -#: InvenTree/serializers.py:709 +#: InvenTree/serializers.py:716 msgid "Downloading images from remote URL is not enabled" msgstr "Uzak URL'den resim indirmek etkinleştirilmedi" -#: InvenTree/serializers.py:716 +#: InvenTree/serializers.py:723 msgid "Failed to download image from remote URL" msgstr "Uzak URL'den görüntü indirilemedi" +#: InvenTree/serializers.py:806 +msgid "Invalid content type format" +msgstr "" + +#: InvenTree/serializers.py:809 +msgid "Content type not found" +msgstr "" + +#: InvenTree/serializers.py:815 +msgid "Content type does not match required mixin class" +msgstr "" + #: InvenTree/setting/locales.py:20 msgid "Arabic" msgstr "Arapça" @@ -537,30 +553,30 @@ msgstr "Geçersiz fiziksel birim" msgid "Not a valid currency code" msgstr "Geçerli bir para birimi kodu değil" -#: build/api.py:54 order/api.py:111 order/api.py:270 order/api.py:1373 -#: order/serializers.py:132 +#: build/api.py:54 order/api.py:116 order/api.py:275 order/api.py:1378 +#: order/serializers.py:133 msgid "Order Status" msgstr "Sipariş Durumu" -#: build/api.py:80 build/models.py:264 +#: build/api.py:80 build/models.py:265 msgid "Parent Build" msgstr "Üst Yapım İşi" -#: build/api.py:84 build/api.py:831 order/api.py:547 order/api.py:770 -#: order/api.py:1174 order/api.py:1449 stock/api.py:573 +#: build/api.py:84 build/api.py:837 order/api.py:553 order/api.py:776 +#: order/api.py:1179 order/api.py:1454 stock/api.py:573 msgid "Include Variants" msgstr "Varyantları Dahil Et" -#: build/api.py:100 build/api.py:466 build/api.py:845 build/models.py:270 -#: build/serializers.py:1225 build/serializers.py:1356 -#: build/serializers.py:1427 company/models.py:1067 company/serializers.py:445 -#: order/api.py:298 order/api.py:302 order/api.py:929 order/api.py:1187 -#: order/api.py:1190 order/models.py:1941 order/models.py:2108 -#: order/models.py:2109 part/api.py:1233 part/api.py:1236 part/api.py:1302 -#: part/api.py:1589 part/models.py:472 part/models.py:3296 part/models.py:3439 -#: part/models.py:3497 part/models.py:3518 part/models.py:3540 -#: part/models.py:3679 part/models.py:4046 part/models.py:4368 -#: part/models.py:4787 part/serializers.py:1928 +#: build/api.py:100 build/api.py:472 build/api.py:851 build/models.py:271 +#: build/serializers.py:1233 build/serializers.py:1364 +#: build/serializers.py:1435 company/models.py:1021 company/serializers.py:490 +#: order/api.py:303 order/api.py:307 order/api.py:934 order/api.py:1192 +#: order/api.py:1195 order/models.py:1942 order/models.py:2109 +#: order/models.py:2110 part/api.py:1160 part/api.py:1163 part/api.py:1314 +#: part/models.py:550 part/models.py:3360 part/models.py:3503 +#: part/models.py:3561 part/models.py:3582 part/models.py:3604 +#: part/models.py:3743 part/models.py:3993 part/models.py:4412 +#: part/serializers.py:1801 #: report/templates/report/inventree_bill_of_materials_report.html:110 #: report/templates/report/inventree_bill_of_materials_report.html:137 #: report/templates/report/inventree_build_order_report.html:109 @@ -580,9 +596,9 @@ msgstr "Varyantları Dahil Et" msgid "Part" msgstr "Parça" -#: build/api.py:120 build/api.py:123 build/serializers.py:1438 part/api.py:980 -#: part/api.py:1316 part/api.py:1600 part/models.py:1080 part/models.py:3568 -#: part/models.py:4162 part/serializers.py:1752 stock/api.py:869 +#: build/api.py:120 build/api.py:123 build/serializers.py:1446 part/api.py:975 +#: part/api.py:1325 part/models.py:435 part/models.py:1168 part/models.py:3632 +#: part/serializers.py:1617 stock/api.py:869 msgid "Category" msgstr "Kategori" @@ -590,7 +606,7 @@ msgstr "Kategori" msgid "Ancestor Build" msgstr "Ata Yapım" -#: build/api.py:152 order/api.py:129 +#: build/api.py:152 order/api.py:134 msgid "Assigned to me" msgstr "Bana atandı" @@ -638,134 +654,134 @@ msgstr "Daha önce tamamlandı" msgid "Completed after" msgstr "Sonra tamamlandı" -#: build/api.py:249 order/api.py:226 +#: build/api.py:249 order/api.py:231 msgid "Min Date" msgstr "En yakın tarih" -#: build/api.py:272 order/api.py:245 +#: build/api.py:272 order/api.py:250 msgid "Max Date" msgstr "Maksimum Tarih" -#: build/api.py:297 build/api.py:300 part/api.py:217 stock/api.py:961 +#: build/api.py:297 build/api.py:300 part/api.py:212 stock/api.py:961 msgid "Exclude Tree" msgstr "Ağacı Hariç Tut" -#: build/api.py:405 +#: build/api.py:411 msgid "Build must be cancelled before it can be deleted" msgstr "Yapımın silinebilmesi için önce iptal edilmesi gerekir" -#: build/api.py:449 build/serializers.py:1374 part/models.py:4402 +#: build/api.py:455 build/serializers.py:1382 part/models.py:4027 msgid "Consumable" msgstr "Sarf Malzemesi" -#: build/api.py:452 build/serializers.py:1377 part/models.py:4396 +#: build/api.py:458 build/serializers.py:1385 part/models.py:4021 msgid "Optional" msgstr "İsteğe Bağlı" -#: build/api.py:455 build/serializers.py:1415 common/setting/system.py:456 -#: part/models.py:1202 part/serializers.py:1714 part/serializers.py:1725 +#: build/api.py:461 build/serializers.py:1423 common/setting/system.py:456 +#: part/models.py:1290 part/serializers.py:1579 part/serializers.py:1590 #: stock/api.py:639 msgid "Assembly" msgstr "Montaj" -#: build/api.py:458 +#: build/api.py:464 msgid "Tracked" msgstr "İzlenen" -#: build/api.py:461 build/serializers.py:1380 part/models.py:1220 +#: build/api.py:467 build/serializers.py:1388 part/models.py:1308 msgid "Testable" msgstr "Test Edilebilir" -#: build/api.py:471 order/api.py:993 order/api.py:1363 +#: build/api.py:477 order/api.py:998 order/api.py:1368 msgid "Order Outstanding" msgstr "Ödenmemiş Sipariş" -#: build/api.py:481 build/serializers.py:1464 order/api.py:952 +#: build/api.py:487 build/serializers.py:1472 order/api.py:957 msgid "Allocated" msgstr "Ayrıldı" -#: build/api.py:490 build/models.py:1672 build/serializers.py:1393 +#: build/api.py:496 build/models.py:1673 build/serializers.py:1401 msgid "Consumed" msgstr "Tüketildi" -#: build/api.py:499 company/models.py:912 company/serializers.py:440 +#: build/api.py:505 company/models.py:866 company/serializers.py:467 #: templates/email/build_order_required_stock.html:19 #: templates/email/low_stock_notification.html:17 #: templates/email/part_event_notification.html:18 msgid "Available" msgstr "Mevcut" -#: build/api.py:523 build/serializers.py:1466 company/serializers.py:437 -#: order/serializers.py:1281 part/serializers.py:959 part/serializers.py:1306 -#: part/serializers.py:1761 +#: build/api.py:529 build/serializers.py:1474 company/serializers.py:464 +#: order/serializers.py:1295 part/serializers.py:844 part/serializers.py:1171 +#: part/serializers.py:1626 msgid "On Order" msgstr "Siparişte" -#: build/api.py:868 build/models.py:117 order/models.py:1974 +#: build/api.py:874 build/models.py:118 order/models.py:1975 #: report/templates/report/inventree_build_order_report.html:105 #: stock/serializers.py:93 templates/email/build_order_completed.html:16 #: templates/email/overdue_build_order.html:15 msgid "Build Order" msgstr "Yapım İşi Emri" -#: build/api.py:882 build/api.py:886 build/serializers.py:372 -#: build/serializers.py:497 build/serializers.py:567 build/serializers.py:1251 -#: build/serializers.py:1256 order/api.py:1234 order/api.py:1239 -#: order/serializers.py:833 order/serializers.py:973 order/serializers.py:2042 +#: build/api.py:888 build/api.py:892 build/serializers.py:380 +#: build/serializers.py:505 build/serializers.py:575 build/serializers.py:1259 +#: build/serializers.py:1264 order/api.py:1239 order/api.py:1244 +#: order/serializers.py:844 order/serializers.py:984 order/serializers.py:2059 #: stock/api.py:987 stock/serializers.py:111 stock/serializers.py:601 #: stock/serializers.py:710 stock/serializers.py:888 stock/serializers.py:1418 -#: stock/serializers.py:1731 stock/serializers.py:1780 +#: stock/serializers.py:1739 stock/serializers.py:1788 #: templates/email/stale_stock_notification.html:18 users/models.py:549 msgid "Location" msgstr "Konum" -#: build/api.py:894 +#: build/api.py:900 msgid "Output" msgstr "Çıktı" -#: build/api.py:896 +#: build/api.py:902 msgid "Filter by output stock item ID. Use 'null' to find uninstalled build items." msgstr "Çıkış stok öğesi kimliğine göre filtrele. Kurulmamış üretim öğelerini bulmak için ‘null’ kullan." -#: build/models.py:118 users/ruleset.py:31 +#: build/models.py:119 users/ruleset.py:31 msgid "Build Orders" msgstr "Yapım İşi Emirleri" -#: build/models.py:168 +#: build/models.py:169 msgid "Assembly BOM has not been validated" msgstr "Montaj malzeme listesi doğrulanmadı" -#: build/models.py:175 +#: build/models.py:176 msgid "Build order cannot be created for an inactive part" msgstr "İnaktif bir parça için yapım siparişi oluşturulamaz" -#: build/models.py:182 +#: build/models.py:183 msgid "Build order cannot be created for an unlocked part" msgstr "Kilidi açılmış bir parça için yapım siparişi oluşturulamaz" -#: build/models.py:200 +#: build/models.py:201 msgid "Build orders can only be externally fulfilled for purchaseable parts" msgstr "Satın alınabilir parçaların yapım emirleri yalnızca harici olarak yerine getirilebilir" -#: build/models.py:207 order/models.py:369 +#: build/models.py:208 order/models.py:370 msgid "Responsible user or group must be specified" msgstr "Sorumlu kullanıcı veya grup belirtilmelidir" -#: build/models.py:212 +#: build/models.py:213 msgid "Build order part cannot be changed" msgstr "Yapım siparişi parçası değiştirilemez" -#: build/models.py:217 order/models.py:382 +#: build/models.py:218 order/models.py:383 msgid "Target date must be after start date" msgstr "Hedef tarih başlangıç tarihinden sonra olmalıdır" -#: build/models.py:245 +#: build/models.py:246 msgid "Build Order Reference" msgstr "Yapım İşi Emri Referansı" -#: build/models.py:246 build/serializers.py:1371 order/models.py:614 -#: order/models.py:1311 order/models.py:1773 order/models.py:2712 -#: part/models.py:4442 +#: build/models.py:247 build/serializers.py:1379 order/models.py:615 +#: order/models.py:1312 order/models.py:1774 order/models.py:2713 +#: part/models.py:4067 #: report/templates/report/inventree_bill_of_materials_report.html:139 #: report/templates/report/inventree_purchase_order_report.html:35 #: report/templates/report/inventree_return_order_report.html:26 @@ -773,230 +789,230 @@ msgstr "Yapım İşi Emri Referansı" msgid "Reference" msgstr "Referans" -#: build/models.py:255 +#: build/models.py:256 msgid "Brief description of the build (optional)" msgstr "Yapımın kısa açıklaması (isteğe bağlı)" -#: build/models.py:265 +#: build/models.py:266 msgid "BuildOrder to which this build is allocated" msgstr "Bu yapım işinin tahsis edildiği yapım işi emri" -#: build/models.py:274 +#: build/models.py:275 msgid "Select part to build" msgstr "Yapım işi için parça seçin" -#: build/models.py:279 +#: build/models.py:280 msgid "Sales Order Reference" msgstr "Satış Emri Referansı" -#: build/models.py:284 +#: build/models.py:285 msgid "SalesOrder to which this build is allocated" msgstr "Bu yapım işinin tahsis edildiği satış emri" -#: build/models.py:289 build/serializers.py:1097 +#: build/models.py:290 build/serializers.py:1105 msgid "Source Location" msgstr "Kaynak Konum" -#: build/models.py:295 +#: build/models.py:296 msgid "Select location to take stock from for this build (leave blank to take from any stock location)" msgstr "Bu yapım işi için stok alınacak konumu seçin (her hangi bir stok konumundan alınması için boş bırakın)" -#: build/models.py:301 +#: build/models.py:302 msgid "External Build" msgstr "Harici Yapım" -#: build/models.py:302 +#: build/models.py:303 msgid "This build order is fulfilled externally" msgstr "Bu yapım emri harici olarak yerine getirilmiştir" -#: build/models.py:307 +#: build/models.py:308 msgid "Destination Location" msgstr "Hedef Konum" -#: build/models.py:312 +#: build/models.py:313 msgid "Select location where the completed items will be stored" msgstr "Tamamlanmış ögelerin saklanacağı konumu seçiniz" -#: build/models.py:316 +#: build/models.py:317 msgid "Build Quantity" msgstr "Yapım İşi Miktarı" -#: build/models.py:319 +#: build/models.py:320 msgid "Number of stock items to build" msgstr "Yapım işi stok kalemlerinin sayısı" -#: build/models.py:323 +#: build/models.py:324 msgid "Completed items" msgstr "Tamamlanmış ögeler" -#: build/models.py:325 +#: build/models.py:326 msgid "Number of stock items which have been completed" msgstr "Tamamlanan stok kalemlerinin sayısı" -#: build/models.py:329 +#: build/models.py:330 msgid "Build Status" msgstr "Yapım İşi Durumu" -#: build/models.py:334 +#: build/models.py:335 msgid "Build status code" msgstr "Yapım işi durum kodu" -#: build/models.py:343 build/serializers.py:359 order/serializers.py:849 +#: build/models.py:344 build/serializers.py:367 order/serializers.py:860 #: stock/models.py:1100 stock/serializers.py:85 stock/serializers.py:1591 msgid "Batch Code" msgstr "Sıra numarası" -#: build/models.py:347 build/serializers.py:360 +#: build/models.py:348 build/serializers.py:368 msgid "Batch code for this build output" msgstr "Yapım işi çıktısı için sıra numarası" -#: build/models.py:351 order/models.py:479 order/serializers.py:186 -#: part/models.py:1283 +#: build/models.py:352 order/models.py:480 order/serializers.py:193 +#: part/models.py:1371 msgid "Creation Date" msgstr "Oluşturulma tarihi" -#: build/models.py:357 +#: build/models.py:358 msgid "Build start date" msgstr "İhtiyaca bağlı sipariş başlangıç tarihi" -#: build/models.py:358 +#: build/models.py:359 msgid "Scheduled start date for this build order" msgstr "Bu ihtiyaca bağlı siparişi için planlanan başlangıç tarihi" -#: build/models.py:364 +#: build/models.py:365 msgid "Target completion date" msgstr "Hedef tamamlama tarihi" -#: build/models.py:366 +#: build/models.py:367 msgid "Target date for build completion. Build will be overdue after this date." msgstr "Yapım işinin tamamlanması için hedef tarih. Bu tarihten sonra yapım işi gecikmiş olacak." -#: build/models.py:371 order/models.py:667 order/models.py:2751 +#: build/models.py:372 order/models.py:668 order/models.py:2752 msgid "Completion Date" msgstr "Tamamlama tarihi" -#: build/models.py:379 +#: build/models.py:380 msgid "completed by" msgstr "tamamlayan" -#: build/models.py:388 +#: build/models.py:389 msgid "Issued by" msgstr "Veren" -#: build/models.py:389 +#: build/models.py:390 msgid "User who issued this build order" msgstr "Bu yapım işi emrini veren kullanıcı" -#: build/models.py:398 common/models.py:180 order/api.py:179 -#: order/models.py:504 part/models.py:1300 +#: build/models.py:399 common/models.py:184 order/api.py:184 +#: order/models.py:505 part/models.py:1388 #: report/templates/report/inventree_build_order_report.html:158 msgid "Responsible" msgstr "Sorumlu" -#: build/models.py:399 +#: build/models.py:400 msgid "User or group responsible for this build order" msgstr "Bu yapım siparişinden sorumlu kullanıcı veya grup" -#: build/models.py:404 stock/models.py:1093 +#: build/models.py:405 stock/models.py:1093 msgid "External Link" msgstr "Harici Bağlantı" -#: build/models.py:406 common/models.py:1984 part/models.py:1114 +#: build/models.py:407 common/models.py:1990 part/models.py:1202 #: stock/models.py:1095 msgid "Link to external URL" msgstr "Harici URL'ye bağlantı" -#: build/models.py:411 +#: build/models.py:412 msgid "Build Priority" msgstr "Yapım Önceliği" -#: build/models.py:414 +#: build/models.py:415 msgid "Priority of this build order" msgstr "Bu yapım siparişinin önceliği" -#: build/models.py:422 common/models.py:150 common/models.py:164 -#: order/api.py:165 order/models.py:451 order/models.py:1805 +#: build/models.py:423 common/models.py:154 common/models.py:168 +#: order/api.py:170 order/models.py:452 order/models.py:1806 msgid "Project Code" msgstr "Proje Kodu" -#: build/models.py:423 +#: build/models.py:424 msgid "Project code for this build order" msgstr "Bu yapım siparişi için proje kodu" -#: build/models.py:676 +#: build/models.py:677 msgid "Cannot complete build order with open child builds" msgstr "Açık alt üretim işlemleri varken üretim emri tamamlanamaz" -#: build/models.py:681 +#: build/models.py:682 msgid "Cannot complete build order with incomplete outputs" msgstr "Eksik çıktılar varken üretim emri tamamlanamaz" -#: build/models.py:700 build/models.py:830 +#: build/models.py:701 build/models.py:831 msgid "Failed to offload task to complete build allocations" msgstr "Yapıma ayrılanları tamamlamak için boşaltma görevi başarısız oldu" -#: build/models.py:723 +#: build/models.py:724 #, python-brace-format msgid "Build order {build} has been completed" msgstr "{build} yapım siparişi tamamlandı" -#: build/models.py:729 +#: build/models.py:730 msgid "A build order has been completed" msgstr "Bir yapım siparişi tamamlandı" -#: build/models.py:911 build/serializers.py:407 +#: build/models.py:912 build/serializers.py:415 msgid "Serial numbers must be provided for trackable parts" msgstr "İzlenebilir parçalar için seri numaraları sağlanmalıdır" -#: build/models.py:1042 build/models.py:1129 +#: build/models.py:1043 build/models.py:1130 msgid "No build output specified" msgstr "Yapım işi çıktısı belirtilmedi" -#: build/models.py:1045 +#: build/models.py:1046 msgid "Build output is already completed" msgstr "Yapım işi çıktısı zaten tamamlanmış" -#: build/models.py:1048 +#: build/models.py:1049 msgid "Build output does not match Build Order" msgstr "Yapım işi çıktısı, yapım işi emri ile eşleşmiyor" -#: build/models.py:1136 build/models.py:1234 build/serializers.py:285 -#: build/serializers.py:335 build/serializers.py:965 build/serializers.py:1739 -#: order/models.py:717 order/serializers.py:658 order/serializers.py:844 -#: part/serializers.py:1708 stock/models.py:940 stock/models.py:1430 +#: build/models.py:1137 build/models.py:1235 build/serializers.py:293 +#: build/serializers.py:343 build/serializers.py:973 build/serializers.py:1747 +#: order/models.py:718 order/serializers.py:669 order/serializers.py:855 +#: part/serializers.py:1573 stock/models.py:940 stock/models.py:1430 #: stock/models.py:1878 stock/serializers.py:688 stock/serializers.py:1580 msgid "Quantity must be greater than zero" msgstr "Miktar sıfırdan büyük olmalıdır" -#: build/models.py:1140 build/models.py:1239 build/serializers.py:290 +#: build/models.py:1141 build/models.py:1240 build/serializers.py:298 msgid "Quantity cannot be greater than the output quantity" msgstr "Miktar çıktı miktarından büyük olamaz" -#: build/models.py:1214 build/serializers.py:606 +#: build/models.py:1215 build/serializers.py:614 msgid "Build output has not passed all required tests" msgstr "Stok kalemi tüm gerekli testleri geçmedi" -#: build/models.py:1217 build/serializers.py:601 +#: build/models.py:1218 build/serializers.py:609 #, python-brace-format msgid "Build output {serial} has not passed all required tests" msgstr "{serial} yapım çıktısı gerekli testleri geçemedi" -#: build/models.py:1229 +#: build/models.py:1230 msgid "Cannot partially complete a build output with allocated items" msgstr "Ayrılmış öğeler varken üretim çıktısı tamamlanamaz" -#: build/models.py:1627 +#: build/models.py:1628 msgid "Build Order Line Item" msgstr "Yapım Siparişi Satır Ögesi" -#: build/models.py:1651 +#: build/models.py:1652 msgid "Build object" msgstr "Nesne yap" -#: build/models.py:1663 build/models.py:1974 build/serializers.py:271 -#: build/serializers.py:320 build/serializers.py:1392 common/models.py:1340 -#: order/models.py:1756 order/models.py:2597 order/serializers.py:1696 -#: order/serializers.py:2124 part/models.py:3453 part/models.py:4390 +#: build/models.py:1664 build/models.py:1975 build/serializers.py:279 +#: build/serializers.py:328 build/serializers.py:1400 common/models.py:1344 +#: order/models.py:1757 order/models.py:2598 order/serializers.py:1710 +#: order/serializers.py:2141 part/models.py:3517 part/models.py:4015 #: report/templates/report/inventree_bill_of_materials_report.html:138 #: report/templates/report/inventree_build_order_report.html:113 #: report/templates/report/inventree_purchase_order_report.html:36 @@ -1014,427 +1030,427 @@ msgstr "Nesne yap" msgid "Quantity" msgstr "Miktar" -#: build/models.py:1664 +#: build/models.py:1665 msgid "Required quantity for build order" msgstr "Yapım siparişi için gereken miktar" -#: build/models.py:1673 +#: build/models.py:1674 msgid "Quantity of consumed stock" msgstr "Tüketilen Stok Miktarı" -#: build/models.py:1772 +#: build/models.py:1773 msgid "Build item must specify a build output, as master part is marked as trackable" msgstr "Ana parça izlenebilir olarak işaretlendiğinden, yapım işi çıktısı için bir yapım işi ögesi belirtmelidir" -#: build/models.py:1783 +#: build/models.py:1784 #, python-brace-format msgid "Allocated quantity ({q}) must not exceed available stock quantity ({a})" msgstr "Ayrılan miktar ({q}) mevcut stok miktarını ({a}) aşmamalı" -#: build/models.py:1804 order/models.py:2546 +#: build/models.py:1805 order/models.py:2547 msgid "Stock item is over-allocated" msgstr "Stok kalemi fazladan tahsis edilmiş" -#: build/models.py:1809 order/models.py:2549 +#: build/models.py:1810 order/models.py:2550 msgid "Allocation quantity must be greater than zero" msgstr "Tahsis edilen miktar sıfırdan büyük olmalıdır" -#: build/models.py:1815 +#: build/models.py:1816 msgid "Quantity must be 1 for serialized stock" msgstr "Seri numaralı stok için miktar bir olmalı" -#: build/models.py:1875 +#: build/models.py:1876 msgid "Selected stock item does not match BOM line" msgstr "Seçilen stok ögesi malzeme listesi satırıyla eşleşmiyor" -#: build/models.py:1913 +#: build/models.py:1914 msgid "Allocated quantity exceeds available stock quantity" msgstr "Ayrılan miktar, mevcut stok miktarını aşıyor" -#: build/models.py:1964 build/serializers.py:948 build/serializers.py:1240 -#: order/serializers.py:1533 order/serializers.py:1554 +#: build/models.py:1965 build/serializers.py:956 build/serializers.py:1248 +#: order/serializers.py:1547 order/serializers.py:1568 #: report/templates/report/inventree_sales_order_shipment_report.html:29 #: stock/api.py:1404 stock/models.py:456 stock/serializers.py:102 #: stock/serializers.py:800 stock/serializers.py:1274 stock/serializers.py:1386 msgid "Stock Item" msgstr "Stok Kalemi" -#: build/models.py:1965 +#: build/models.py:1966 msgid "Source stock item" msgstr "Kaynak stok kalemi" -#: build/models.py:1975 +#: build/models.py:1976 msgid "Stock quantity to allocate to build" msgstr "Yapım işi için tahsis edilen stok miktarı" -#: build/models.py:1984 +#: build/models.py:1985 msgid "Install into" msgstr "Kurulduğu yer" -#: build/models.py:1985 +#: build/models.py:1986 msgid "Destination stock item" msgstr "Hedef stok kalemi" -#: build/serializers.py:118 +#: build/serializers.py:120 msgid "Build Level" msgstr "Yapım Düzeyi" -#: build/serializers.py:128 +#: build/serializers.py:136 msgid "Part Name" msgstr "Parça Adı" -#: build/serializers.py:153 +#: build/serializers.py:161 msgid "Project Code Label" msgstr "Proje Kodu Etiketi" -#: build/serializers.py:219 build/serializers.py:974 +#: build/serializers.py:227 build/serializers.py:982 msgid "Build Output" msgstr "Yapım Çıktısı" -#: build/serializers.py:231 +#: build/serializers.py:239 msgid "Build output does not match the parent build" msgstr "Yapım çıktısı üst yapım ile eşleşmiyor" -#: build/serializers.py:235 +#: build/serializers.py:243 msgid "Output part does not match BuildOrder part" msgstr "Çıktı parçası Yapım Siparişi parçası ile eşleşmiyor" -#: build/serializers.py:239 +#: build/serializers.py:247 msgid "This build output has already been completed" msgstr "Bu yapım çıktısı zaten tamamlandı" -#: build/serializers.py:253 +#: build/serializers.py:261 msgid "This build output is not fully allocated" msgstr "Bu yapım çıktısı tam ayrılmadı" -#: build/serializers.py:272 build/serializers.py:321 +#: build/serializers.py:280 build/serializers.py:329 msgid "Enter quantity for build output" msgstr "Yapım işi çıktısı için miktarını girin" -#: build/serializers.py:343 +#: build/serializers.py:351 msgid "Integer quantity required for trackable parts" msgstr "İzlenebilir parçalar için tamsayı miktar gerekir" -#: build/serializers.py:349 +#: build/serializers.py:357 msgid "Integer quantity required, as the bill of materials contains trackable parts" msgstr "Malzeme listesi izlenebilir parçalar içerdiğinden tamsayı miktar gereklidir" -#: build/serializers.py:366 order/serializers.py:865 order/serializers.py:1700 +#: build/serializers.py:374 order/serializers.py:876 order/serializers.py:1714 #: stock/serializers.py:699 msgid "Serial Numbers" msgstr "Seri Numaraları" -#: build/serializers.py:367 +#: build/serializers.py:375 msgid "Enter serial numbers for build outputs" msgstr "Yapım işi çıktısı için seri numaraları girin" -#: build/serializers.py:373 +#: build/serializers.py:381 msgid "Stock location for build output" msgstr "Yapım çıktısı için stok konumu" -#: build/serializers.py:388 +#: build/serializers.py:396 msgid "Auto Allocate Serial Numbers" msgstr "Seri Numaralarını Otomatik Ayır" -#: build/serializers.py:390 +#: build/serializers.py:398 msgid "Automatically allocate required items with matching serial numbers" msgstr "Gerekli ögeleri eşleşen seri numaralarıyla otomatik ayır" -#: build/serializers.py:423 order/serializers.py:951 stock/api.py:1183 +#: build/serializers.py:431 order/serializers.py:962 stock/api.py:1183 #: stock/models.py:1901 msgid "The following serial numbers already exist or are invalid" msgstr "Şu seri numaraları zaten varlar veya geçersizler" -#: build/serializers.py:465 build/serializers.py:521 build/serializers.py:613 +#: build/serializers.py:473 build/serializers.py:529 build/serializers.py:621 msgid "A list of build outputs must be provided" msgstr "Bir yapım çıktıları listesi sağlanmalıdır" -#: build/serializers.py:498 +#: build/serializers.py:506 msgid "Stock location for scrapped outputs" msgstr "Hurdaya ayrılan çıktılar için stok konumu" -#: build/serializers.py:504 +#: build/serializers.py:512 msgid "Discard Allocations" msgstr "Ayırmaları İptal Et" -#: build/serializers.py:505 +#: build/serializers.py:513 msgid "Discard any stock allocations for scrapped outputs" msgstr "Hurdaya ayrılan çıktılar için yapılan tüm stok ayırmalarını iptal et" -#: build/serializers.py:510 +#: build/serializers.py:518 msgid "Reason for scrapping build output(s)" msgstr "Yapım çıktı(larını) hurdaya ayırma nedeni" -#: build/serializers.py:568 +#: build/serializers.py:576 msgid "Location for completed build outputs" msgstr "Tamamlanan yapım çıktıları içi konum" -#: build/serializers.py:576 +#: build/serializers.py:584 msgid "Accept Incomplete Allocation" msgstr "Tamamlanmamış Ayırmayı Onayla" -#: build/serializers.py:577 +#: build/serializers.py:585 msgid "Complete outputs if stock has not been fully allocated" msgstr "Stok tamamen ayrılmamışsa çıktıları tamamla" -#: build/serializers.py:702 +#: build/serializers.py:710 msgid "Consume Allocated Stock" msgstr "Ayrılan Stoku Tüket" -#: build/serializers.py:703 +#: build/serializers.py:711 msgid "Consume any stock which has already been allocated to this build" msgstr "Bu yapım için zaten ayrılmış olan tüm stokları tüket" -#: build/serializers.py:709 +#: build/serializers.py:717 msgid "Remove Incomplete Outputs" msgstr "Tamamlanmamış Çıktıları Kaldır" -#: build/serializers.py:710 +#: build/serializers.py:718 msgid "Delete any build outputs which have not been completed" msgstr "Tamamlanmamış tüm yapım çıktılarını sil" -#: build/serializers.py:737 +#: build/serializers.py:745 msgid "Not permitted" msgstr "İzin verilmedi" -#: build/serializers.py:738 +#: build/serializers.py:746 msgid "Accept as consumed by this build order" msgstr "Bu yapım siparişi tarafından tüketildi olarak kabul et" -#: build/serializers.py:739 +#: build/serializers.py:747 msgid "Deallocate before completing this build order" msgstr "Bu yapım emrini tamamlamadan önce iade et" -#: build/serializers.py:766 +#: build/serializers.py:774 msgid "Overallocated Stock" msgstr "Fazla Ayrılmış Stok" -#: build/serializers.py:769 +#: build/serializers.py:777 msgid "How do you want to handle extra stock items assigned to the build order" msgstr "Yapım siparişine atanan ekstra stok öğelerini nasıl ele almak istersiniz" -#: build/serializers.py:780 +#: build/serializers.py:788 msgid "Some stock items have been overallocated" msgstr "Bazı stok ögeleri fazla ayrıldı" -#: build/serializers.py:785 +#: build/serializers.py:793 msgid "Accept Unallocated" msgstr "Ayrılmamışı Kabul Et" -#: build/serializers.py:787 +#: build/serializers.py:795 msgid "Accept that stock items have not been fully allocated to this build order" msgstr "Stok öğelerinin bu yapım siparişine tam olarak ayrılmadığını kabul edin" -#: build/serializers.py:798 +#: build/serializers.py:806 msgid "Required stock has not been fully allocated" msgstr "Gerekli stok tamamen tahsis edilemedi" -#: build/serializers.py:803 order/serializers.py:524 order/serializers.py:1601 +#: build/serializers.py:811 order/serializers.py:535 order/serializers.py:1615 msgid "Accept Incomplete" msgstr "Tamamlanmamış Kabul et" -#: build/serializers.py:805 +#: build/serializers.py:813 msgid "Accept that the required number of build outputs have not been completed" msgstr "Gerekli sayıda derleme çıktısının tamamlanmadığını kabul edin" -#: build/serializers.py:816 +#: build/serializers.py:824 msgid "Required build quantity has not been completed" msgstr "Gerekli yapım işi miktarı tamamlanmadı" -#: build/serializers.py:828 +#: build/serializers.py:836 msgid "Build order has open child build orders" msgstr "Yapım siparişinin açık alt yapım emirleri var" -#: build/serializers.py:831 +#: build/serializers.py:839 msgid "Build order must be in production state" msgstr "Yapım siparişi üretim durumunda olmalıdır" -#: build/serializers.py:834 +#: build/serializers.py:842 msgid "Build order has incomplete outputs" msgstr "Yapım siparişinin tamamlanmamış çıktıları var" -#: build/serializers.py:873 +#: build/serializers.py:881 msgid "Build Line" msgstr "Yapım Satırı" -#: build/serializers.py:881 +#: build/serializers.py:889 msgid "Build output" msgstr "Yapım çıktısı" -#: build/serializers.py:889 +#: build/serializers.py:897 msgid "Build output must point to the same build" msgstr "Yapım çıktısı aynı yapımı göstermelidir" -#: build/serializers.py:920 +#: build/serializers.py:928 msgid "Build Line Item" msgstr "Yapım Satırı Ögesi" -#: build/serializers.py:938 +#: build/serializers.py:946 msgid "bom_item.part must point to the same part as the build order" msgstr "bom_item.part yapım siparişi aynı olan parçayı göstermelidir" -#: build/serializers.py:954 stock/serializers.py:1287 +#: build/serializers.py:962 stock/serializers.py:1287 msgid "Item must be in stock" msgstr "Öge stokta olmalıdır" -#: build/serializers.py:997 order/serializers.py:1587 +#: build/serializers.py:1005 order/serializers.py:1601 #, python-brace-format msgid "Available quantity ({q}) exceeded" msgstr "Mevcut miktar ({q}) aşıldı" -#: build/serializers.py:1003 +#: build/serializers.py:1011 msgid "Build output must be specified for allocation of tracked parts" msgstr "İzlenen parçaların ayrılması için yapım çıktısı belirtilmelidir" -#: build/serializers.py:1011 +#: build/serializers.py:1019 msgid "Build output cannot be specified for allocation of untracked parts" msgstr "İzlenmeyen parçaların ayrılması için yapım çıktısı belirlenemez" -#: build/serializers.py:1035 order/serializers.py:1860 +#: build/serializers.py:1043 order/serializers.py:1874 msgid "Allocation items must be provided" msgstr "Ayrılma ögeleri sağlanmalıdır" -#: build/serializers.py:1099 +#: build/serializers.py:1107 msgid "Stock location where parts are to be sourced (leave blank to take from any location)" msgstr "Parçaların alınacağı stok konumu (herhangi bir konumdan almak için boş bırakın)" -#: build/serializers.py:1108 +#: build/serializers.py:1116 msgid "Exclude Location" msgstr "Konum Çıkar" -#: build/serializers.py:1109 +#: build/serializers.py:1117 msgid "Exclude stock items from this selected location" msgstr "Bu seçilen konumdan stok ögelerini içerme" -#: build/serializers.py:1114 +#: build/serializers.py:1122 msgid "Interchangeable Stock" msgstr "Birbirinin Yerine Kullanılabilir Stok" -#: build/serializers.py:1115 +#: build/serializers.py:1123 msgid "Stock items in multiple locations can be used interchangeably" msgstr "Birden çok konumdaki stok ögeleri birbirinin yerine kullanılabilir" -#: build/serializers.py:1120 +#: build/serializers.py:1128 msgid "Substitute Stock" msgstr "Yedek Stok" -#: build/serializers.py:1121 +#: build/serializers.py:1129 msgid "Allow allocation of substitute parts" msgstr "Yedek parçaların ayrılmasına izin ver" -#: build/serializers.py:1126 +#: build/serializers.py:1134 msgid "Optional Items" msgstr "İsteğe Bağlı Ögeler" -#: build/serializers.py:1127 +#: build/serializers.py:1135 msgid "Allocate optional BOM items to build order" msgstr "Sipariş yapmak için isteğe bağlı ML ögelerini ayır" -#: build/serializers.py:1148 +#: build/serializers.py:1156 msgid "Failed to start auto-allocation task" msgstr "Otomatik ayırma görevini başlatma başarısız oldu" -#: build/serializers.py:1200 +#: build/serializers.py:1208 msgid "BOM Reference" msgstr "ML Referansı" -#: build/serializers.py:1206 +#: build/serializers.py:1214 msgid "BOM Part ID" msgstr "ML Parça Kimliği" -#: build/serializers.py:1213 +#: build/serializers.py:1221 msgid "BOM Part Name" msgstr "ML Parça Adı" -#: build/serializers.py:1266 build/serializers.py:1449 +#: build/serializers.py:1274 build/serializers.py:1457 msgid "Build" msgstr "Yap" -#: build/serializers.py:1276 company/models.py:685 order/api.py:311 -#: order/api.py:316 order/api.py:543 order/serializers.py:650 +#: build/serializers.py:1284 company/models.py:639 order/api.py:316 +#: order/api.py:321 order/api.py:549 order/serializers.py:661 #: stock/models.py:1036 stock/serializers.py:579 msgid "Supplier Part" msgstr "Tedarikçi Parçası" -#: build/serializers.py:1284 stock/serializers.py:620 +#: build/serializers.py:1292 stock/serializers.py:620 msgid "Allocated Quantity" msgstr "Ayrılan Miktar" -#: build/serializers.py:1351 +#: build/serializers.py:1359 msgid "Build Reference" msgstr "Yapım Referansı" -#: build/serializers.py:1361 +#: build/serializers.py:1369 msgid "Part Category Name" msgstr "Parça Sınıfı Adı" -#: build/serializers.py:1383 common/setting/system.py:480 part/models.py:1214 +#: build/serializers.py:1391 common/setting/system.py:480 part/models.py:1302 msgid "Trackable" msgstr "Takip Edilebilir" -#: build/serializers.py:1386 +#: build/serializers.py:1394 msgid "Inherited" msgstr "Miras Alındı" -#: build/serializers.py:1389 part/models.py:4475 +#: build/serializers.py:1397 part/models.py:4100 msgid "Allow Variants" msgstr "Çeşide İzin Ver" -#: build/serializers.py:1395 build/serializers.py:1400 part/models.py:4208 -#: part/models.py:4779 stock/api.py:882 +#: build/serializers.py:1403 build/serializers.py:1408 part/models.py:3833 +#: part/models.py:4404 stock/api.py:882 msgid "BOM Item" msgstr "ML Ögesi" -#: build/serializers.py:1467 order/serializers.py:1282 part/serializers.py:1310 -#: part/serializers.py:1765 +#: build/serializers.py:1475 order/serializers.py:1296 part/serializers.py:1175 +#: part/serializers.py:1630 msgid "In Production" msgstr "Üretimde" -#: build/serializers.py:1469 part/serializers.py:950 part/serializers.py:1314 +#: build/serializers.py:1477 part/serializers.py:835 part/serializers.py:1179 msgid "Scheduled to Build" msgstr "Üretim için planlandı" -#: build/serializers.py:1472 part/serializers.py:987 +#: build/serializers.py:1480 part/serializers.py:872 msgid "External Stock" msgstr "Harici Stok" -#: build/serializers.py:1473 part/serializers.py:1300 part/serializers.py:1808 +#: build/serializers.py:1481 part/serializers.py:1165 part/serializers.py:1673 msgid "Available Stock" msgstr "Mevcut Stok" -#: build/serializers.py:1475 +#: build/serializers.py:1483 msgid "Available Substitute Stock" msgstr "Mevcut Yedek Stok" -#: build/serializers.py:1478 +#: build/serializers.py:1486 msgid "Available Variant Stock" msgstr "Mevcut Turev Stoku" -#: build/serializers.py:1752 +#: build/serializers.py:1760 msgid "Consumed quantity exceeds allocated quantity" msgstr "Tüketilen miktar, ayrılan miktarı aşıyor" -#: build/serializers.py:1789 +#: build/serializers.py:1797 msgid "Optional notes for the stock consumption" msgstr "Stok tüketimi için isteğe bağlı notlar" -#: build/serializers.py:1806 +#: build/serializers.py:1814 msgid "Build item must point to the correct build order" msgstr "Üretim öğesi doğru üretim emrine işaret etmelidir" -#: build/serializers.py:1811 +#: build/serializers.py:1819 msgid "Duplicate build item allocation" msgstr "Yinelenen üretim öğesi tahsisi" -#: build/serializers.py:1829 +#: build/serializers.py:1837 msgid "Build line must point to the correct build order" msgstr "Üretim satırı doğru üretim emrine işaret etmelidir" -#: build/serializers.py:1834 +#: build/serializers.py:1842 msgid "Duplicate build line allocation" msgstr "Yinelenen üretim öğesi tahsisi" -#: build/serializers.py:1846 +#: build/serializers.py:1854 msgid "At least one item or line must be provided" msgstr "En az bir öğe veya satır sağlanmalıdır" @@ -1482,702 +1498,826 @@ msgstr "Gecikmiş Yapım Siparişi" msgid "Build order {bo} is now overdue" msgstr "{bo} yapım siparişi şimdi gecikti" -#: common/api.py:694 +#: common/api.py:701 msgid "Is Link" msgstr "Link Olanlar" -#: common/api.py:702 +#: common/api.py:709 msgid "Is File" msgstr "Dosya Olanlar" -#: common/api.py:745 +#: common/api.py:756 msgid "User does not have permission to delete these attachments" msgstr "Kullanıcının bu ekleri silmek için izni yok" -#: common/api.py:762 +#: common/api.py:769 msgid "User does not have permission to delete this attachment" msgstr "Kullanıcının bu eki silmek için izni yok" -#: common/currency.py:122 +#: common/currency.py:130 msgid "Invalid currency code" msgstr "Geçersiz para birimi kodu" -#: common/currency.py:124 +#: common/currency.py:132 msgid "Duplicate currency code" msgstr "Para birimi kodunu çoğalt" -#: common/currency.py:129 +#: common/currency.py:137 msgid "No valid currency codes provided" msgstr "Geçerli bir para birimi kodu sağlanmamış" -#: common/currency.py:146 +#: common/currency.py:154 msgid "No plugin" msgstr "Eklenti yok" -#: common/models.py:101 common/models.py:126 common/models.py:2729 +#: common/models.py:105 common/models.py:130 common/models.py:3150 msgid "Updated" msgstr "Güncellendi" -#: common/models.py:102 common/models.py:127 +#: common/models.py:106 common/models.py:131 msgid "Timestamp of last update" msgstr "Son güncellemenin zaman damgası" -#: common/models.py:139 +#: common/models.py:143 msgid "Update By" msgstr "Güncelleyen" -#: common/models.py:140 +#: common/models.py:144 msgid "User who last updated this object" msgstr "Bu nesneyi en son güncelleyen kullanıcı" -#: common/models.py:165 +#: common/models.py:169 msgid "Unique project code" msgstr "Eşsiz proje kodu" -#: common/models.py:172 +#: common/models.py:176 msgid "Project description" msgstr "Proje açıklaması" -#: common/models.py:181 +#: common/models.py:185 msgid "User or group responsible for this project" msgstr "Bu projeden sorumlu kullanıcı veya grup" -#: common/models.py:771 common/models.py:1272 common/models.py:1310 +#: common/models.py:775 common/models.py:1276 common/models.py:1314 msgid "Settings key" msgstr "Ayarlar anahtarı" -#: common/models.py:775 +#: common/models.py:779 msgid "Settings value" msgstr "Ayarlar değeri" -#: common/models.py:830 +#: common/models.py:834 msgid "Chosen value is not a valid option" msgstr "Seçilen değer geçerli bir seçenek değil" -#: common/models.py:846 +#: common/models.py:850 msgid "Value must be a boolean value" msgstr "Değer bir boolean değer olmalıdır" -#: common/models.py:854 +#: common/models.py:858 msgid "Value must be an integer value" msgstr "Değer bir integer değer olmalıdır" -#: common/models.py:862 +#: common/models.py:866 msgid "Value must be a valid number" msgstr "Değer geçerli bir sayı olmalıdır" -#: common/models.py:887 +#: common/models.py:891 msgid "Value does not pass validation checks" msgstr "Değer doğrulama kontrollerini geçemiyor" -#: common/models.py:909 +#: common/models.py:913 msgid "Key string must be unique" msgstr "Anahtar dizesi benzersiz olmalı" -#: common/models.py:1318 common/models.py:1319 common/models.py:1423 -#: common/models.py:1424 common/models.py:1669 common/models.py:1670 -#: common/models.py:2000 common/models.py:2001 common/models.py:2382 -#: importer/models.py:100 part/models.py:3547 part/models.py:3575 +#: common/models.py:1322 common/models.py:1323 common/models.py:1427 +#: common/models.py:1428 common/models.py:1673 common/models.py:1674 +#: common/models.py:2006 common/models.py:2007 common/models.py:2803 +#: importer/models.py:100 part/models.py:3611 part/models.py:3639 #: plugin/models.py:355 plugin/models.py:356 #: report/templates/report/inventree_test_report.html:105 users/models.py:124 #: users/models.py:501 msgid "User" msgstr "Kullanıcı" -#: common/models.py:1341 +#: common/models.py:1345 msgid "Price break quantity" msgstr "Fiyat düşürme miktarı" -#: common/models.py:1348 company/serializers.py:564 order/models.py:1842 -#: order/models.py:3043 +#: common/models.py:1352 company/serializers.py:349 order/models.py:1843 +#: order/models.py:3044 msgid "Price" msgstr "Fiyat" -#: common/models.py:1349 +#: common/models.py:1353 msgid "Unit price at specified quantity" msgstr "Belirtilen miktardaki birim fiyat" -#: common/models.py:1400 common/models.py:1585 +#: common/models.py:1404 common/models.py:1589 msgid "Endpoint" msgstr "Bitiş Noktası" -#: common/models.py:1401 +#: common/models.py:1405 msgid "Endpoint at which this webhook is received" msgstr "Bu web kancasının alındığı uç nokta" -#: common/models.py:1411 +#: common/models.py:1415 msgid "Name for this webhook" msgstr "Bu web kancası için ad" -#: common/models.py:1415 common/models.py:2241 common/models.py:2348 -#: company/models.py:191 company/models.py:822 machine/models.py:40 -#: part/models.py:1237 plugin/models.py:69 stock/api.py:642 users/models.py:195 +#: common/models.py:1419 common/models.py:2247 common/models.py:2354 +#: company/models.py:192 company/models.py:776 machine/models.py:40 +#: part/models.py:1325 plugin/models.py:69 stock/api.py:642 users/models.py:195 #: users/models.py:554 users/serializers.py:314 msgid "Active" msgstr "Aktif" -#: common/models.py:1415 +#: common/models.py:1419 msgid "Is this webhook active" msgstr "Bu web kancası etkin mi" -#: common/models.py:1431 users/models.py:172 +#: common/models.py:1435 users/models.py:172 msgid "Token" msgstr "Token" -#: common/models.py:1432 +#: common/models.py:1436 msgid "Token for access" msgstr "Erişim için belirteç" -#: common/models.py:1440 +#: common/models.py:1444 msgid "Secret" msgstr "Gizli" -#: common/models.py:1441 +#: common/models.py:1445 msgid "Shared secret for HMAC" msgstr "HMAC için paylaşılan gizli bilgi" -#: common/models.py:1549 common/models.py:2619 +#: common/models.py:1553 common/models.py:3040 msgid "Message ID" msgstr "Mesaj Kimliği" -#: common/models.py:1550 common/models.py:2609 +#: common/models.py:1554 common/models.py:3030 msgid "Unique identifier for this message" msgstr "Bu mesaj için benzersiz tanımlayıcı" -#: common/models.py:1558 +#: common/models.py:1562 msgid "Host" msgstr "Sağlayıcı" -#: common/models.py:1559 +#: common/models.py:1563 msgid "Host from which this message was received" msgstr "Bu mesajın alındığı ana bilgisayar" -#: common/models.py:1567 +#: common/models.py:1571 msgid "Header" msgstr "Başlık" -#: common/models.py:1568 +#: common/models.py:1572 msgid "Header of this message" msgstr "Bu mesajın başlığı" -#: common/models.py:1575 +#: common/models.py:1579 msgid "Body" msgstr "Gövde" -#: common/models.py:1576 +#: common/models.py:1580 msgid "Body of this message" msgstr "Bu mesajın gövdesi" -#: common/models.py:1586 +#: common/models.py:1590 msgid "Endpoint on which this message was received" msgstr "Bu mesajın alındığı uç nokta" -#: common/models.py:1591 +#: common/models.py:1595 msgid "Worked on" msgstr "Üzerinde çalışıldı" -#: common/models.py:1592 +#: common/models.py:1596 msgid "Was the work on this message finished?" msgstr "Bu mesajdaki iş bitirildi mi?" -#: common/models.py:1718 +#: common/models.py:1722 msgid "Id" msgstr "Kimlik" -#: common/models.py:1720 +#: common/models.py:1724 msgid "Title" msgstr "Başlık" -#: common/models.py:1722 common/models.py:1983 company/models.py:185 -#: company/models.py:467 company/models.py:534 company/models.py:839 -#: order/models.py:457 order/models.py:1786 order/models.py:2343 -#: part/models.py:1113 +#: common/models.py:1726 common/models.py:1989 company/models.py:186 +#: company/models.py:468 company/models.py:536 company/models.py:793 +#: order/models.py:458 order/models.py:1787 order/models.py:2344 +#: part/models.py:1201 #: report/templates/report/inventree_build_order_report.html:164 msgid "Link" msgstr "Bağlantı" -#: common/models.py:1724 +#: common/models.py:1728 msgid "Published" msgstr "Yayınlandı" -#: common/models.py:1726 +#: common/models.py:1730 msgid "Author" msgstr "Yazar" -#: common/models.py:1728 +#: common/models.py:1732 msgid "Summary" msgstr "Özet" -#: common/models.py:1731 common/models.py:2586 +#: common/models.py:1735 common/models.py:3007 msgid "Read" msgstr "Oku" -#: common/models.py:1731 +#: common/models.py:1735 msgid "Was this news item read?" msgstr "Haberi okudunuz mu?" -#: common/models.py:1748 +#: common/models.py:1752 msgid "Image file" msgstr "Görsel yükleyin" -#: common/models.py:1760 +#: common/models.py:1764 msgid "Target model type for this image" msgstr "Bu resim için hedef model türü" -#: common/models.py:1764 +#: common/models.py:1768 msgid "Target model ID for this image" msgstr "Bu resim için hedef model ID" -#: common/models.py:1786 +#: common/models.py:1790 msgid "Custom Unit" msgstr "Özel Birim" -#: common/models.py:1804 +#: common/models.py:1808 msgid "Unit symbol must be unique" msgstr "Birim simgesi benzersiz olmalıdır" -#: common/models.py:1819 +#: common/models.py:1823 msgid "Unit name must be a valid identifier" msgstr "Birim adı geçerli bir tanımlayıcı olmalıdır" -#: common/models.py:1838 +#: common/models.py:1842 msgid "Unit name" msgstr "Birim adı" -#: common/models.py:1845 +#: common/models.py:1849 msgid "Symbol" msgstr "Sembol" -#: common/models.py:1846 +#: common/models.py:1850 msgid "Optional unit symbol" msgstr "İsteğe bağlı birim simgesi" -#: common/models.py:1852 +#: common/models.py:1856 msgid "Definition" msgstr "Tanımlama" -#: common/models.py:1853 +#: common/models.py:1857 msgid "Unit definition" msgstr "Birim tanımlaması" -#: common/models.py:1911 common/models.py:1974 stock/models.py:2967 +#: common/models.py:1917 common/models.py:1980 stock/models.py:2984 #: stock/serializers.py:247 msgid "Attachment" msgstr "Ek" -#: common/models.py:1928 +#: common/models.py:1934 msgid "Missing file" msgstr "Eksik dosya" -#: common/models.py:1929 +#: common/models.py:1935 msgid "Missing external link" msgstr "Bozuk dış bağlantı" -#: common/models.py:1966 +#: common/models.py:1972 common/models.py:2488 msgid "Model type" msgstr "Model türü" -#: common/models.py:1967 +#: common/models.py:1973 msgid "Target model type for image" msgstr "Resim için hedef model türü" -#: common/models.py:1975 +#: common/models.py:1981 msgid "Select file to attach" msgstr "Eklenecek dosyayı seç" -#: common/models.py:1991 +#: common/models.py:1997 msgid "Comment" msgstr "Yorum" -#: common/models.py:1992 +#: common/models.py:1998 msgid "Attachment comment" msgstr "Ek yorumu" -#: common/models.py:2008 +#: common/models.py:2014 msgid "Upload date" msgstr "Yükleme tarihi" -#: common/models.py:2009 +#: common/models.py:2015 msgid "Date the file was uploaded" msgstr "Dosyanın yüklendiği tarih" -#: common/models.py:2013 +#: common/models.py:2019 msgid "File size" msgstr "Dosya Boyutu" -#: common/models.py:2013 +#: common/models.py:2019 msgid "File size in bytes" msgstr "Bayt cinsinden dosya boyutu" -#: common/models.py:2051 common/serializers.py:684 +#: common/models.py:2057 common/serializers.py:688 msgid "Invalid model type specified for attachment" msgstr "Ek için belirtilen model türü geçersiz" -#: common/models.py:2072 +#: common/models.py:2078 msgid "Custom State" msgstr "Özel Durum" -#: common/models.py:2073 +#: common/models.py:2079 msgid "Custom States" msgstr "Özel Durumlar" -#: common/models.py:2078 +#: common/models.py:2084 msgid "Reference Status Set" msgstr "Referans Durum Seti" -#: common/models.py:2079 +#: common/models.py:2085 msgid "Status set that is extended with this custom state" msgstr "Bu özel durum ile genişletilen durum seti" -#: common/models.py:2083 generic/states/serializers.py:18 +#: common/models.py:2089 generic/states/serializers.py:18 msgid "Logical Key" msgstr "Mantıksal anahtar" -#: common/models.py:2085 +#: common/models.py:2091 msgid "State logical key that is equal to this custom state in business logic" msgstr "İş mantığında bu özel duruma eşit olan durum mantıksal anahtarı" -#: common/models.py:2090 common/models.py:2329 company/models.py:622 -#: machine/serializers.py:27 -#: report/templates/report/inventree_test_report.html:104 stock/models.py:2959 +#: common/models.py:2096 common/models.py:2335 machine/serializers.py:27 +#: report/templates/report/inventree_test_report.html:104 stock/models.py:2976 msgid "Value" msgstr "Değer" -#: common/models.py:2091 +#: common/models.py:2097 msgid "Numerical value that will be saved in the models database" msgstr "Modeller veritabanına kaydedilecek sayısal değer" -#: common/models.py:2097 +#: common/models.py:2103 msgid "Name of the state" msgstr "Durumun adı" -#: common/models.py:2106 common/models.py:2335 generic/states/serializers.py:22 +#: common/models.py:2112 common/models.py:2341 generic/states/serializers.py:22 msgid "Label" msgstr "Etiket" -#: common/models.py:2107 +#: common/models.py:2113 msgid "Label that will be displayed in the frontend" msgstr "Ön yüzde gösterilecek etiket" -#: common/models.py:2114 generic/states/serializers.py:24 +#: common/models.py:2120 generic/states/serializers.py:24 msgid "Color" msgstr "Renk" -#: common/models.py:2115 +#: common/models.py:2121 msgid "Color that will be displayed in the frontend" msgstr "Ön yüzde gösterilecek renk" -#: common/models.py:2123 +#: common/models.py:2129 msgid "Model" msgstr "Model" -#: common/models.py:2124 +#: common/models.py:2130 msgid "Model this state is associated with" msgstr "Bu durumun ilişkilendirildiği model" -#: common/models.py:2139 +#: common/models.py:2145 msgid "Model must be selected" msgstr "Model seçilmelidir" -#: common/models.py:2142 +#: common/models.py:2148 msgid "Key must be selected" msgstr "Anahtar Seçilmelidir" -#: common/models.py:2145 +#: common/models.py:2151 msgid "Logical key must be selected" msgstr "Mantıksal anahtar seçilmelidir" -#: common/models.py:2149 +#: common/models.py:2155 msgid "Key must be different from logical key" msgstr "Anahtar, mantık anahtarından farklı olmalıdır" -#: common/models.py:2156 +#: common/models.py:2162 msgid "Valid reference status class must be provided" msgstr "Geçerli bir referans durum sınıfı sağlanmalıdır" -#: common/models.py:2162 +#: common/models.py:2168 msgid "Key must be different from the logical keys of the reference status" msgstr "Anahtar, referans durumunun mantık anahtarlarından farklı olmalıdır" -#: common/models.py:2169 +#: common/models.py:2175 msgid "Logical key must be in the logical keys of the reference status" msgstr "Mantık anahtarı, referans durumunun mantık anahtarları içinde olmalıdır" -#: common/models.py:2176 +#: common/models.py:2182 msgid "Name must be different from the names of the reference status" msgstr "İsim, referans durumunun isimlerinden farklı olmalıdır" -#: common/models.py:2216 common/models.py:2323 part/models.py:3889 +#: common/models.py:2222 common/models.py:2329 common/models.py:2533 msgid "Selection List" msgstr "Seçim Listesi" -#: common/models.py:2217 +#: common/models.py:2223 msgid "Selection Lists" msgstr "Seçim Listeleri" -#: common/models.py:2222 +#: common/models.py:2228 msgid "Name of the selection list" msgstr "Seçim listesinin adı" -#: common/models.py:2229 +#: common/models.py:2235 msgid "Description of the selection list" msgstr "Seçim listesinin açıklaması" -#: common/models.py:2235 part/models.py:1242 +#: common/models.py:2241 part/models.py:1330 msgid "Locked" msgstr "Kilitli" -#: common/models.py:2236 +#: common/models.py:2242 msgid "Is this selection list locked?" msgstr "Bu seçim listesi kilitli mi?" -#: common/models.py:2242 +#: common/models.py:2248 msgid "Can this selection list be used?" msgstr "Bu seçim listesi kullanılabilir mi?" -#: common/models.py:2250 +#: common/models.py:2256 msgid "Source Plugin" msgstr "Kaynak Eklentisi" -#: common/models.py:2251 +#: common/models.py:2257 msgid "Plugin which provides the selection list" msgstr "Seçim listesini sağlayan eklenti" -#: common/models.py:2256 +#: common/models.py:2262 msgid "Source String" msgstr "Kaynak Dize" -#: common/models.py:2257 +#: common/models.py:2263 msgid "Optional string identifying the source used for this list" msgstr "Bu liste için kullanılan kaynağı belirten isteğe bağlı dize" -#: common/models.py:2266 +#: common/models.py:2272 msgid "Default Entry" msgstr "Varsayılan Girdi" -#: common/models.py:2267 +#: common/models.py:2273 msgid "Default entry for this selection list" msgstr "Bu seçim listesi için varsayılan girdi" -#: common/models.py:2272 common/models.py:2724 +#: common/models.py:2278 common/models.py:3145 msgid "Created" msgstr "Oluşturuldu" -#: common/models.py:2273 +#: common/models.py:2279 msgid "Date and time that the selection list was created" msgstr "Seçim listesinin oluşturulduğu tarih ve saat" -#: common/models.py:2278 +#: common/models.py:2284 msgid "Last Updated" msgstr "Son Güncelleme" -#: common/models.py:2279 +#: common/models.py:2285 msgid "Date and time that the selection list was last updated" msgstr "Seçim listesinin son güncellendiği tarih ve saat" -#: common/models.py:2313 +#: common/models.py:2319 msgid "Selection List Entry" msgstr "Seçim Listesi Girdisi" -#: common/models.py:2314 +#: common/models.py:2320 msgid "Selection List Entries" msgstr "Seçim Listesi Girişleri" -#: common/models.py:2324 +#: common/models.py:2330 msgid "Selection list to which this entry belongs" msgstr "Bu girdinin ait olduğu seçim listesi" -#: common/models.py:2330 +#: common/models.py:2336 msgid "Value of the selection list entry" msgstr "Seçim listesi girdisinin değeri" -#: common/models.py:2336 +#: common/models.py:2342 msgid "Label for the selection list entry" msgstr "Seçim listesi girdisi için etiket" -#: common/models.py:2342 +#: common/models.py:2348 msgid "Description of the selection list entry" msgstr "Seçim listesi girdisinin açıklaması" -#: common/models.py:2349 +#: common/models.py:2355 msgid "Is this selection list entry active?" msgstr "Bu seçim listesi girdisi aktif mi?" -#: common/models.py:2367 -msgid "Barcode Scan" -msgstr "Barkod Taraması" +#: common/models.py:2387 +msgid "Parameter Template" +msgstr "Parametre Şablonu" -#: common/models.py:2371 importer/models.py:546 part/models.py:4060 +#: common/models.py:2388 +msgid "Parameter Templates" +msgstr "" + +#: common/models.py:2425 +msgid "Checkbox parameters cannot have units" +msgstr "" + +#: common/models.py:2430 +msgid "Checkbox parameters cannot have choices" +msgstr "" + +#: common/models.py:2450 part/models.py:3707 +msgid "Choices must be unique" +msgstr "" + +#: common/models.py:2467 +msgid "Parameter template name must be unique" +msgstr "Parametre şablon adı benzersiz olmalıdır" + +#: common/models.py:2489 +msgid "Target model type for this parameter template" +msgstr "" + +#: common/models.py:2495 +msgid "Parameter Name" +msgstr "" + +#: common/models.py:2501 part/models.py:1283 +msgid "Units" +msgstr "Birim" + +#: common/models.py:2502 +msgid "Physical units for this parameter" +msgstr "" + +#: common/models.py:2510 +msgid "Parameter description" +msgstr "" + +#: common/models.py:2516 +msgid "Checkbox" +msgstr "" + +#: common/models.py:2517 +msgid "Is this parameter a checkbox?" +msgstr "" + +#: common/models.py:2522 part/models.py:3794 +msgid "Choices" +msgstr "" + +#: common/models.py:2523 +msgid "Valid choices for this parameter (comma-separated)" +msgstr "" + +#: common/models.py:2534 +msgid "Selection list for this parameter" +msgstr "" + +#: common/models.py:2539 part/models.py:3769 report/models.py:287 +msgid "Enabled" +msgstr "Etkin" + +#: common/models.py:2540 +msgid "Is this parameter template enabled?" +msgstr "" + +#: common/models.py:2581 +msgid "Parameter" +msgstr "" + +#: common/models.py:2582 +msgid "Parameters" +msgstr "" + +#: common/models.py:2628 +msgid "Invalid choice for parameter value" +msgstr "" + +#: common/models.py:2698 common/serializers.py:783 +msgid "Invalid model type specified for parameter" +msgstr "" + +#: common/models.py:2734 +msgid "Model ID" +msgstr "" + +#: common/models.py:2735 +msgid "ID of the target model for this parameter" +msgstr "" + +#: common/models.py:2744 common/setting/system.py:450 report/models.py:373 +#: report/models.py:669 report/serializers.py:94 report/serializers.py:135 +#: stock/serializers.py:234 +msgid "Template" +msgstr "Şablon" + +#: common/models.py:2745 +msgid "Parameter template" +msgstr "" + +#: common/models.py:2750 common/models.py:2792 importer/models.py:546 msgid "Data" msgstr "Veri" -#: common/models.py:2372 +#: common/models.py:2751 +msgid "Parameter Value" +msgstr "" + +#: common/models.py:2760 company/models.py:810 order/serializers.py:894 +#: order/serializers.py:2064 part/models.py:4075 part/models.py:4444 +#: report/templates/report/inventree_bill_of_materials_report.html:140 +#: report/templates/report/inventree_purchase_order_report.html:39 +#: report/templates/report/inventree_return_order_report.html:27 +#: report/templates/report/inventree_sales_order_report.html:32 +#: report/templates/report/inventree_stock_location_report.html:105 +#: stock/serializers.py:813 +msgid "Note" +msgstr "Not" + +#: common/models.py:2761 stock/serializers.py:718 +msgid "Optional note field" +msgstr "" + +#: common/models.py:2788 +msgid "Barcode Scan" +msgstr "Barkod Taraması" + +#: common/models.py:2793 msgid "Barcode data" msgstr "Barkod verisi" -#: common/models.py:2383 +#: common/models.py:2804 msgid "User who scanned the barcode" msgstr "Barkodu taratan kullanıcı" -#: common/models.py:2388 importer/models.py:69 +#: common/models.py:2809 importer/models.py:69 msgid "Timestamp" msgstr "Zaman damgası" -#: common/models.py:2389 +#: common/models.py:2810 msgid "Date and time of the barcode scan" msgstr "Barkod taramasının tarihi ve saati" -#: common/models.py:2395 +#: common/models.py:2816 msgid "URL endpoint which processed the barcode" msgstr "Barkodu işleyen URL uç noktası" -#: common/models.py:2402 order/models.py:1832 plugin/serializers.py:93 +#: common/models.py:2823 order/models.py:1833 plugin/serializers.py:93 msgid "Context" msgstr "Bağlam" -#: common/models.py:2403 +#: common/models.py:2824 msgid "Context data for the barcode scan" msgstr "Barkod taraması için bağlam verisi" -#: common/models.py:2410 +#: common/models.py:2831 msgid "Response" msgstr "Yanıt" -#: common/models.py:2411 +#: common/models.py:2832 msgid "Response data from the barcode scan" msgstr "Barkod taramasından gelen yanıt verisi" -#: common/models.py:2417 report/templates/report/inventree_test_report.html:103 -#: stock/models.py:2953 +#: common/models.py:2838 report/templates/report/inventree_test_report.html:103 +#: stock/models.py:2970 msgid "Result" msgstr "Sonuç" -#: common/models.py:2418 +#: common/models.py:2839 msgid "Was the barcode scan successful?" msgstr "Barkod taraması başarılı mıydı?" -#: common/models.py:2500 +#: common/models.py:2921 msgid "An error occurred" msgstr "Bir hata oluştu" -#: common/models.py:2521 +#: common/models.py:2942 msgid "INVE-E8: Email log deletion is protected. Set INVENTREE_PROTECT_EMAIL_LOG to False to allow deletion." msgstr "NVE-ER: E-posta günlüğünün silinmesi korumalı. Silmeye izin vermek için INVENTREE_PROTECT_EMAIL_LOG ayarını False olarak ayarlayın." -#: common/models.py:2568 +#: common/models.py:2989 msgid "Email Message" msgstr "E-posta İletisi" -#: common/models.py:2569 +#: common/models.py:2990 msgid "Email Messages" msgstr "E-posta İletileri" -#: common/models.py:2576 +#: common/models.py:2997 msgid "Announced" msgstr "Duyuruldu" -#: common/models.py:2578 +#: common/models.py:2999 msgid "Sent" msgstr "Gönderildi" -#: common/models.py:2579 +#: common/models.py:3000 msgid "Failed" msgstr "Başarısız" -#: common/models.py:2582 +#: common/models.py:3003 msgid "Delivered" msgstr "Teslim edildi" -#: common/models.py:2590 +#: common/models.py:3011 msgid "Confirmed" msgstr "Onaylandı" -#: common/models.py:2596 +#: common/models.py:3017 msgid "Inbound" msgstr "Gelen" -#: common/models.py:2597 +#: common/models.py:3018 msgid "Outbound" msgstr "Giden" -#: common/models.py:2602 +#: common/models.py:3023 msgid "No Reply" msgstr "Yanıt Yok" -#: common/models.py:2603 +#: common/models.py:3024 msgid "Track Delivery" msgstr "Teslimat Takibi" -#: common/models.py:2604 +#: common/models.py:3025 msgid "Track Read" msgstr "Okumayı Takip Et" -#: common/models.py:2605 +#: common/models.py:3026 msgid "Track Click" msgstr "Tıklamayı Takip Et" -#: common/models.py:2608 common/models.py:2711 +#: common/models.py:3029 common/models.py:3132 msgid "Global ID" msgstr "Global Kimlik" -#: common/models.py:2621 +#: common/models.py:3042 msgid "Identifier for this message (might be supplied by external system)" msgstr "Bu ileti için tanımlayıcı (harici sistem tarafından sağlanabilir)" -#: common/models.py:2628 +#: common/models.py:3049 msgid "Thread ID" msgstr "Konu Kimliği" -#: common/models.py:2630 +#: common/models.py:3051 msgid "Identifier for this message thread (might be supplied by external system)" msgstr "Bu ileti konusu için tanımlayıcı (harici sistem tarafından sağlanabilir)" -#: common/models.py:2639 +#: common/models.py:3060 msgid "Thread" msgstr "Konu" -#: common/models.py:2640 +#: common/models.py:3061 msgid "Linked thread for this message" msgstr "Bu mesaja bağlı konu" -#: common/models.py:2656 -msgid "Prioriy" -msgstr "Öncelik" +#: common/models.py:3077 +msgid "Priority" +msgstr "" -#: common/models.py:2698 +#: common/models.py:3119 msgid "Email Thread" msgstr "E-Posta Konusu" -#: common/models.py:2699 +#: common/models.py:3120 msgid "Email Threads" msgstr "E-posta Konuları" -#: common/models.py:2705 generic/states/serializers.py:16 +#: common/models.py:3126 generic/states/serializers.py:16 #: machine/serializers.py:24 plugin/models.py:46 users/models.py:113 msgid "Key" msgstr "Anahtar" -#: common/models.py:2708 +#: common/models.py:3129 msgid "Unique key for this thread (used to identify the thread)" msgstr "Bu konu için benzersiz anahtar (konuyu tanımlamak için kullanılır)" -#: common/models.py:2712 +#: common/models.py:3133 msgid "Unique identifier for this thread" msgstr "Bu konu için benzersiz tanımlayıcı" -#: common/models.py:2719 +#: common/models.py:3140 msgid "Started Internal" msgstr "Dahili Olarak Başlatıldı" -#: common/models.py:2720 +#: common/models.py:3141 msgid "Was this thread started internally?" msgstr "Bu konu dahili olarak mı başlatıldı?" -#: common/models.py:2725 +#: common/models.py:3146 msgid "Date and time that the thread was created" msgstr "Konunun oluşturulduğu tarih ve saat" -#: common/models.py:2730 +#: common/models.py:3151 msgid "Date and time that the thread was last updated" msgstr "Konunun son güncellendiği tarih ve saat" @@ -2199,7 +2339,7 @@ msgstr "{verbose_name} iptal edildi" msgid "A order that is assigned to you was canceled" msgstr "Size atanmış bir emir iptal edildi" -#: common/notifications.py:73 common/notifications.py:80 order/api.py:594 +#: common/notifications.py:73 common/notifications.py:80 order/api.py:600 msgid "Items Received" msgstr "Alınan Ürünler" @@ -2211,88 +2351,93 @@ msgstr "Bir satın alma siparişine karşılık öğeler teslim alındı" msgid "Items have been received against a return order" msgstr "Bir iade siparişine karşılık öğeler teslim alındı" -#: common/serializers.py:145 +#: common/serializers.py:149 msgid "Indicates if the setting is overridden by an environment variable" msgstr "Ayarın bir ortam değişkeni tarafından üstüne yazılıp yazılmadığını belirtir" -#: common/serializers.py:147 +#: common/serializers.py:151 msgid "Override" msgstr "Üstüne Yaz" -#: common/serializers.py:498 +#: common/serializers.py:502 msgid "Is Running" msgstr "Çalışıyor" -#: common/serializers.py:504 +#: common/serializers.py:508 msgid "Pending Tasks" msgstr "Bekleyen Görevler" -#: common/serializers.py:510 +#: common/serializers.py:514 msgid "Scheduled Tasks" msgstr "Planlanan Görevler" -#: common/serializers.py:516 +#: common/serializers.py:520 msgid "Failed Tasks" msgstr "Başarısız Görevler" -#: common/serializers.py:531 +#: common/serializers.py:535 msgid "Task ID" msgstr "Görev ID" -#: common/serializers.py:531 +#: common/serializers.py:535 msgid "Unique task ID" msgstr "Benzersiz Görev ID" -#: common/serializers.py:533 +#: common/serializers.py:537 msgid "Lock" msgstr "Kilit" -#: common/serializers.py:533 +#: common/serializers.py:537 msgid "Lock time" msgstr "Kilit Zamanı" -#: common/serializers.py:535 +#: common/serializers.py:539 msgid "Task name" msgstr "Görev Adı" -#: common/serializers.py:537 +#: common/serializers.py:541 msgid "Function" msgstr "Fonksiyon" -#: common/serializers.py:537 +#: common/serializers.py:541 msgid "Function name" msgstr "Fonksiyon Adı" -#: common/serializers.py:539 +#: common/serializers.py:543 msgid "Arguments" msgstr "Argümanlar" -#: common/serializers.py:539 +#: common/serializers.py:543 msgid "Task arguments" msgstr "Görev Argümanları" -#: common/serializers.py:542 +#: common/serializers.py:546 msgid "Keyword Arguments" msgstr "Anahtar Argümanlar" -#: common/serializers.py:542 +#: common/serializers.py:546 msgid "Task keyword arguments" msgstr "Anahtar görev argümanları" -#: common/serializers.py:652 +#: common/serializers.py:656 msgid "Filename" msgstr "Dosya adı" -#: common/serializers.py:659 importer/models.py:89 report/api.py:41 +#: common/serializers.py:663 common/serializers.py:730 +#: common/serializers.py:805 importer/models.py:89 report/api.py:41 #: report/models.py:293 report/serializers.py:52 msgid "Model Type" msgstr "Model Tipi" -#: common/serializers.py:687 +#: common/serializers.py:691 msgid "User does not have permission to create or edit attachments for this model" msgstr "Kullanıcının bu model için ek oluşturma veya düzenleme izni yok" -#: common/serializers.py:731 common/serializers.py:834 +#: common/serializers.py:786 +msgid "User does not have permission to create or edit parameters for this model" +msgstr "" + +#: common/serializers.py:850 common/serializers.py:953 msgid "Selection list is locked" msgstr "Seçim listesi kilitli" @@ -2368,7 +2513,7 @@ msgstr "`Hakkında` gösterimini kısıtla" msgid "Show the `about` modal only to superusers" msgstr "`Hakkında` kipini yalnızca süper kullanıcılara göster" -#: common/setting/system.py:224 company/models.py:144 company/models.py:145 +#: common/setting/system.py:224 company/models.py:145 company/models.py:146 msgid "Company name" msgstr "Şirket adı" @@ -2411,8 +2556,8 @@ msgstr "Döviz kurlarını şu sıklıkla güncelle (etkisizleştirmek için sı #: common/setting/system.py:253 common/setting/system.py:293 #: common/setting/system.py:306 common/setting/system.py:314 #: common/setting/system.py:321 common/setting/system.py:330 -#: common/setting/system.py:339 common/setting/system.py:588 -#: common/setting/system.py:616 common/setting/system.py:707 +#: common/setting/system.py:339 common/setting/system.py:580 +#: common/setting/system.py:608 common/setting/system.py:707 #: common/setting/system.py:1103 common/setting/system.py:1119 msgid "days" msgstr "günler" @@ -2657,12 +2802,6 @@ msgstr "Kategori Paremetre Sablonu Kopyala" msgid "Copy category parameter templates when creating a part" msgstr "Parça oluştururken kategori parametre şablonlarını kopyala" -#: common/setting/system.py:450 part/models.py:4054 report/models.py:373 -#: report/models.py:669 report/serializers.py:94 report/serializers.py:135 -#: stock/serializers.py:234 -msgid "Template" -msgstr "Şablon" - #: common/setting/system.py:451 msgid "Parts are templates by default" msgstr "Parçaları varsayılan olan şablondur" @@ -2671,8 +2810,8 @@ msgstr "Parçaları varsayılan olan şablondur" msgid "Parts can be assembled from other components by default" msgstr "Parçalar varsayılan olarak başka bileşenlerden monte edilebilir" -#: common/setting/system.py:462 part/models.py:1208 part/serializers.py:1734 -#: part/serializers.py:1741 +#: common/setting/system.py:462 part/models.py:1296 part/serializers.py:1599 +#: part/serializers.py:1606 msgid "Component" msgstr "Bileşen" @@ -2680,7 +2819,7 @@ msgstr "Bileşen" msgid "Parts can be used as sub-components by default" msgstr "Parçalar varsayılan olarak alt bileşen olarak kullanılabilir" -#: common/setting/system.py:468 part/models.py:1226 +#: common/setting/system.py:468 part/models.py:1314 msgid "Purchaseable" msgstr "Satın Alınabilir" @@ -2688,7 +2827,7 @@ msgstr "Satın Alınabilir" msgid "Parts are purchaseable by default" msgstr "Parçalar varsayılan olarak satın alınabilir" -#: common/setting/system.py:474 part/models.py:1232 stock/api.py:643 +#: common/setting/system.py:474 part/models.py:1320 stock/api.py:643 msgid "Salable" msgstr "Satılabilir" @@ -2700,7 +2839,7 @@ msgstr "Parçalar varsayılan olarak satılabilir" msgid "Parts are trackable by default" msgstr "Parçalar varsayılan olarak takip edilebilir" -#: common/setting/system.py:486 part/models.py:1248 +#: common/setting/system.py:486 part/models.py:1336 msgid "Virtual" msgstr "Sanal" @@ -2749,158 +2888,158 @@ msgid "Part category default icon (empty means no icon)" msgstr "Parça sınıfı için varsayılan simge (boş bırakılırsa simge kullanılmaz)" #: common/setting/system.py:525 -msgid "Enforce Parameter Units" -msgstr "Parametre Birimlerini Zorunlu Kıl" - -#: common/setting/system.py:527 -msgid "If units are provided, parameter values must match the specified units" -msgstr "Birimler sağlanırsa, parametre değerleri belirtilen birimlere uymalıdır" - -#: common/setting/system.py:533 msgid "Minimum Pricing Decimal Places" msgstr "Minimum Fiyatlandırma Ondalık Basamakları" -#: common/setting/system.py:535 +#: common/setting/system.py:527 msgid "Minimum number of decimal places to display when rendering pricing data" msgstr "Fiiyatlandırma verisini oluştururken gösterilecek ondalık basamakların minimum sayısı" -#: common/setting/system.py:546 +#: common/setting/system.py:538 msgid "Maximum Pricing Decimal Places" msgstr "Maksimum Fiyatlandırma Ondalık Basamakları" -#: common/setting/system.py:548 +#: common/setting/system.py:540 msgid "Maximum number of decimal places to display when rendering pricing data" msgstr "Fiiyatlandırma verisini oluştururken gösterilecek ondalık basamakların maksimum sayısı" -#: common/setting/system.py:559 +#: common/setting/system.py:551 msgid "Use Supplier Pricing" msgstr "Sağlayıcı Fiyatlandırmasını Kullan" -#: common/setting/system.py:561 +#: common/setting/system.py:553 msgid "Include supplier price breaks in overall pricing calculations" msgstr "Genel fiyatlandırma hesaplamalarına sağlayıcı fiyat aralıklarını ekle" -#: common/setting/system.py:567 +#: common/setting/system.py:559 msgid "Purchase History Override" msgstr "Satın Alma Geçmişini Geçersiz Kılma" -#: common/setting/system.py:569 +#: common/setting/system.py:561 msgid "Historical purchase order pricing overrides supplier price breaks" msgstr "Geçmiş satınalma siparişi fiyatlandırması, sağlayıcı fiyat aralıklarını geçersiz kılar" -#: common/setting/system.py:575 +#: common/setting/system.py:567 msgid "Use Stock Item Pricing" msgstr "Stok Ögesi Fiyatlandırmasını Kullan" -#: common/setting/system.py:577 +#: common/setting/system.py:569 msgid "Use pricing from manually entered stock data for pricing calculations" msgstr "Fiyatlandırma hesaplamaları için elle girilen stok verisinin fiyatlandırmasını kullan" -#: common/setting/system.py:583 +#: common/setting/system.py:575 msgid "Stock Item Pricing Age" msgstr "Stok Ögesi Fiyatlandırma Yaşı" -#: common/setting/system.py:585 +#: common/setting/system.py:577 msgid "Exclude stock items older than this number of days from pricing calculations" msgstr "Bu gün sayısından daha eski olan stok kalemlerini fiyatlandırma hesaplamalarından hariç tut" -#: common/setting/system.py:592 +#: common/setting/system.py:584 msgid "Use Variant Pricing" msgstr "Türev Fiyatlandırması Kullan" -#: common/setting/system.py:593 +#: common/setting/system.py:585 msgid "Include variant pricing in overall pricing calculations" msgstr "Genel fiyat hesaplamalarına türev fiyatlarını da ekle" -#: common/setting/system.py:598 +#: common/setting/system.py:590 msgid "Active Variants Only" msgstr "Yalnızca Etkin Türevler" -#: common/setting/system.py:600 +#: common/setting/system.py:592 msgid "Only use active variant parts for calculating variant pricing" msgstr "Türev fiyatlandırması için yalnızca etkin türev parçaları kullan" -#: common/setting/system.py:606 +#: common/setting/system.py:598 msgid "Auto Update Pricing" msgstr "" -#: common/setting/system.py:608 +#: common/setting/system.py:600 msgid "Automatically update part pricing when internal data changes" msgstr "" -#: common/setting/system.py:614 +#: common/setting/system.py:606 msgid "Pricing Rebuild Interval" msgstr "Fiyatlandırmayı Yeniden Oluşturma Aralığı" -#: common/setting/system.py:615 +#: common/setting/system.py:607 msgid "Number of days before part pricing is automatically updated" msgstr "Parça fiyatlandrımasının otomatik güncellenmesinden önceki gün sayısı" -#: common/setting/system.py:621 +#: common/setting/system.py:613 msgid "Internal Prices" msgstr "Dahili Fiyatlar" -#: common/setting/system.py:622 +#: common/setting/system.py:614 msgid "Enable internal prices for parts" msgstr "Parçalar için dahili fiyatları etkinleştir" -#: common/setting/system.py:627 +#: common/setting/system.py:619 msgid "Internal Price Override" msgstr "Dahili Fiyat Geçersiz Kılma" -#: common/setting/system.py:629 +#: common/setting/system.py:621 msgid "If available, internal prices override price range calculations" msgstr "Varsa, dahili fiyatlar fiyat aralığı hesaplarını geçersiz kılar" -#: common/setting/system.py:635 +#: common/setting/system.py:627 msgid "Enable label printing" msgstr "Etiket yazdırmayı etkinleştir" -#: common/setting/system.py:636 +#: common/setting/system.py:628 msgid "Enable label printing from the web interface" msgstr "Web arayüzünden etiket yazdırmayı etkinleştir" -#: common/setting/system.py:641 +#: common/setting/system.py:633 msgid "Label Image DPI" msgstr "Etiket Resmi DPI Değeri" -#: common/setting/system.py:643 +#: common/setting/system.py:635 msgid "DPI resolution when generating image files to supply to label printing plugins" msgstr "Resim dosyaları üretirken etiket yazdırma eklentilerine sağlanacak DPI çözünürlüğü" -#: common/setting/system.py:649 +#: common/setting/system.py:641 msgid "Enable Reports" msgstr "Raporları Etkinleştir" -#: common/setting/system.py:650 +#: common/setting/system.py:642 msgid "Enable generation of reports" msgstr "Rapor üretimini etkinleştir" -#: common/setting/system.py:655 +#: common/setting/system.py:647 msgid "Debug Mode" msgstr "Hata Ayıklama Modu" -#: common/setting/system.py:656 +#: common/setting/system.py:648 msgid "Generate reports in debug mode (HTML output)" msgstr "Raporları hata ayıklama modunda üret (HTML çıktısı)" -#: common/setting/system.py:661 +#: common/setting/system.py:653 msgid "Log Report Errors" msgstr "Rapor Hatalarını Günlüğe Kaydet" -#: common/setting/system.py:662 +#: common/setting/system.py:654 msgid "Log errors which occur when generating reports" msgstr "Raporlar üretirken oluşan hataları günlüğe kaydet" -#: common/setting/system.py:667 plugin/builtin/labels/label_sheet.py:29 +#: common/setting/system.py:659 plugin/builtin/labels/label_sheet.py:29 #: report/models.py:381 msgid "Page Size" msgstr "Sayfa Boyutu" -#: common/setting/system.py:668 +#: common/setting/system.py:660 msgid "Default page size for PDF reports" msgstr "PDF raporlar için varsayılan sayfa boyutu" +#: common/setting/system.py:665 +msgid "Enforce Parameter Units" +msgstr "Parametre Birimlerini Zorunlu Kıl" + +#: common/setting/system.py:667 +msgid "If units are provided, parameter values must match the specified units" +msgstr "Birimler sağlanırsa, parametre değerleri belirtilen birimlere uymalıdır" + #: common/setting/system.py:673 msgid "Globally Unique Serials" msgstr "Küresel Çapta Benzersiz Seri Numaraları" @@ -3456,688 +3595,677 @@ msgid "Display PDF reports in the browser, instead of downloading as a file" msgstr "" #: common/setting/user.py:45 +msgid "Barcode Scanner in Form Fields" +msgstr "" + +#: common/setting/user.py:46 +msgid "Allow barcode scanner input in form fields" +msgstr "" + +#: common/setting/user.py:51 msgid "Search Parts" msgstr "Parça Ara" -#: common/setting/user.py:46 +#: common/setting/user.py:52 msgid "Display parts in search preview window" msgstr "Parçaları arama ön izleme penceresinde görüntüle" -#: common/setting/user.py:51 +#: common/setting/user.py:57 msgid "Search Supplier Parts" msgstr "Parça Tedarikçilerini Ara" -#: common/setting/user.py:52 +#: common/setting/user.py:58 msgid "Display supplier parts in search preview window" msgstr "" -#: common/setting/user.py:57 +#: common/setting/user.py:63 msgid "Search Manufacturer Parts" msgstr "Parça Üreticilerini Ara" -#: common/setting/user.py:58 +#: common/setting/user.py:64 msgid "Display manufacturer parts in search preview window" msgstr "" -#: common/setting/user.py:63 +#: common/setting/user.py:69 msgid "Hide Inactive Parts" msgstr "Aktif olmayan parçaları gizle" -#: common/setting/user.py:64 +#: common/setting/user.py:70 msgid "Excluded inactive parts from search preview window" msgstr "" -#: common/setting/user.py:69 +#: common/setting/user.py:75 msgid "Search Categories" msgstr "" -#: common/setting/user.py:70 +#: common/setting/user.py:76 msgid "Display part categories in search preview window" msgstr "" -#: common/setting/user.py:75 +#: common/setting/user.py:81 msgid "Search Stock" msgstr "" -#: common/setting/user.py:76 +#: common/setting/user.py:82 msgid "Display stock items in search preview window" msgstr "" -#: common/setting/user.py:81 +#: common/setting/user.py:87 msgid "Hide Unavailable Stock Items" msgstr "" -#: common/setting/user.py:83 +#: common/setting/user.py:89 msgid "Exclude stock items which are not available from the search preview window" msgstr "" -#: common/setting/user.py:89 +#: common/setting/user.py:95 msgid "Search Locations" msgstr "Konum Ara" -#: common/setting/user.py:90 +#: common/setting/user.py:96 msgid "Display stock locations in search preview window" msgstr "" -#: common/setting/user.py:95 +#: common/setting/user.py:101 msgid "Search Companies" msgstr "Şirketleri Ara" -#: common/setting/user.py:96 +#: common/setting/user.py:102 msgid "Display companies in search preview window" msgstr "" -#: common/setting/user.py:101 +#: common/setting/user.py:107 msgid "Search Build Orders" msgstr "" -#: common/setting/user.py:102 +#: common/setting/user.py:108 msgid "Display build orders in search preview window" msgstr "Üretim emirlerini arama önizleme penceresinde görüntüle" -#: common/setting/user.py:107 +#: common/setting/user.py:113 msgid "Search Purchase Orders" msgstr "Satınalma Emri Ara" -#: common/setting/user.py:108 +#: common/setting/user.py:114 msgid "Display purchase orders in search preview window" msgstr "Satın alma siparişlerini arama önizleme penceresinde görüntüle" -#: common/setting/user.py:113 +#: common/setting/user.py:119 msgid "Exclude Inactive Purchase Orders" msgstr "Etkin Olmayan Satın Alma Siparişlerini Hariç Tut" -#: common/setting/user.py:114 +#: common/setting/user.py:120 msgid "Exclude inactive purchase orders from search preview window" msgstr "" -#: common/setting/user.py:119 +#: common/setting/user.py:125 msgid "Search Sales Orders" msgstr "" -#: common/setting/user.py:120 +#: common/setting/user.py:126 msgid "Display sales orders in search preview window" msgstr "" -#: common/setting/user.py:125 +#: common/setting/user.py:131 msgid "Exclude Inactive Sales Orders" msgstr "" -#: common/setting/user.py:126 +#: common/setting/user.py:132 msgid "Exclude inactive sales orders from search preview window" msgstr "" -#: common/setting/user.py:131 +#: common/setting/user.py:137 msgid "Search Sales Order Shipments" msgstr "" -#: common/setting/user.py:132 +#: common/setting/user.py:138 msgid "Display sales order shipments in search preview window" msgstr "" -#: common/setting/user.py:137 +#: common/setting/user.py:143 msgid "Search Return Orders" msgstr "" -#: common/setting/user.py:138 +#: common/setting/user.py:144 msgid "Display return orders in search preview window" msgstr "" -#: common/setting/user.py:143 +#: common/setting/user.py:149 msgid "Exclude Inactive Return Orders" msgstr "" -#: common/setting/user.py:144 +#: common/setting/user.py:150 msgid "Exclude inactive return orders from search preview window" msgstr "" -#: common/setting/user.py:149 +#: common/setting/user.py:155 msgid "Search Preview Results" msgstr "" -#: common/setting/user.py:151 +#: common/setting/user.py:157 msgid "Number of results to show in each section of the search preview window" msgstr "" -#: common/setting/user.py:157 +#: common/setting/user.py:163 msgid "Regex Search" msgstr "" -#: common/setting/user.py:158 +#: common/setting/user.py:164 msgid "Enable regular expressions in search queries" msgstr "" -#: common/setting/user.py:163 +#: common/setting/user.py:169 msgid "Whole Word Search" msgstr "" -#: common/setting/user.py:164 +#: common/setting/user.py:170 msgid "Search queries return results for whole word matches" msgstr "" -#: common/setting/user.py:169 +#: common/setting/user.py:175 msgid "Search Notes" msgstr "" -#: common/setting/user.py:171 +#: common/setting/user.py:177 msgid "Search queries return results for matches from the item's notes" msgstr "Arama sorguları, nesnenin notlarındaki eşleşmelere ilişkin sonuçları verir" -#: common/setting/user.py:177 +#: common/setting/user.py:183 msgid "Escape Key Closes Forms" msgstr "" -#: common/setting/user.py:178 +#: common/setting/user.py:184 msgid "Use the escape key to close modal forms" msgstr "" -#: common/setting/user.py:183 +#: common/setting/user.py:189 msgid "Fixed Navbar" msgstr "Navigasyon Çubuğunu Sabitle" -#: common/setting/user.py:184 +#: common/setting/user.py:190 msgid "The navbar position is fixed to the top of the screen" msgstr "" -#: common/setting/user.py:189 +#: common/setting/user.py:195 msgid "Fixed Table Headers" msgstr "" -#: common/setting/user.py:190 +#: common/setting/user.py:196 msgid "Table headers are fixed to the top of the table" msgstr "" -#: common/setting/user.py:195 +#: common/setting/user.py:201 msgid "Show Spotlight" msgstr "" -#: common/setting/user.py:196 +#: common/setting/user.py:202 msgid "Enable spotlight navigation functionality" msgstr "" -#: common/setting/user.py:201 +#: common/setting/user.py:207 msgid "Navigation Icons" msgstr "" -#: common/setting/user.py:202 +#: common/setting/user.py:208 msgid "Display icons in the navigation bar" msgstr "" -#: common/setting/user.py:207 +#: common/setting/user.py:213 msgid "Date Format" msgstr "Tarih Biçimi" -#: common/setting/user.py:208 +#: common/setting/user.py:214 msgid "Preferred format for displaying dates" msgstr "" -#: common/setting/user.py:221 +#: common/setting/user.py:227 msgid "Show Stock History" msgstr "" -#: common/setting/user.py:222 +#: common/setting/user.py:228 msgid "Display stock history information in the part detail page" msgstr "" -#: common/setting/user.py:227 +#: common/setting/user.py:233 msgid "Show Last Breadcrumb" msgstr "" -#: common/setting/user.py:228 +#: common/setting/user.py:234 msgid "Show the current page in breadcrumbs" msgstr "" -#: common/setting/user.py:233 +#: common/setting/user.py:239 msgid "Show full stock location in tables" msgstr "" -#: common/setting/user.py:235 +#: common/setting/user.py:241 msgid "Disabled: The full location path is displayed as a hover tooltip. Enabled: The full location path is displayed as plain text." msgstr "" -#: common/setting/user.py:241 +#: common/setting/user.py:247 msgid "Show full part categories in tables" msgstr "" -#: common/setting/user.py:243 +#: common/setting/user.py:249 msgid "Disabled: The full category path is displayed as a hover tooltip. Enabled: The full category path is displayed as plain text." msgstr "" -#: common/setting/user.py:249 +#: common/setting/user.py:255 msgid "Receive error reports" msgstr "" -#: common/setting/user.py:250 +#: common/setting/user.py:256 msgid "Receive notifications for system errors" msgstr "" -#: common/setting/user.py:255 +#: common/setting/user.py:261 msgid "Last used printing machines" msgstr "" -#: common/setting/user.py:256 +#: common/setting/user.py:262 msgid "Save the last used printing machines for a user" msgstr "" -#: common/validators.py:34 +#: common/validators.py:38 +msgid "All models" +msgstr "" + +#: common/validators.py:63 msgid "No attachment model type provided" msgstr "" -#: common/validators.py:40 +#: common/validators.py:69 msgid "Invalid attachment model type" msgstr "" -#: common/validators.py:81 +#: common/validators.py:110 msgid "Minimum places cannot be greater than maximum places" msgstr "" -#: common/validators.py:93 +#: common/validators.py:122 msgid "Maximum places cannot be less than minimum places" msgstr "" -#: common/validators.py:104 +#: common/validators.py:133 msgid "An empty domain is not allowed." msgstr "" -#: common/validators.py:106 +#: common/validators.py:135 #, python-brace-format msgid "Invalid domain name: {domain}" msgstr "" -#: common/validators.py:122 +#: common/validators.py:151 msgid "Value must be uppercase" msgstr "" -#: common/validators.py:128 +#: common/validators.py:157 msgid "Value must be a valid variable identifier" msgstr "" -#: company/api.py:147 +#: company/api.py:141 msgid "Part is Active" msgstr "" -#: company/api.py:151 +#: company/api.py:145 msgid "Manufacturer is Active" msgstr "" -#: company/api.py:286 +#: company/api.py:246 msgid "Supplier Part is Active" msgstr "" -#: company/api.py:290 +#: company/api.py:250 msgid "Internal Part is Active" msgstr "" -#: company/api.py:295 +#: company/api.py:255 msgid "Supplier is Active" msgstr "" -#: company/api.py:307 company/models.py:520 company/serializers.py:457 -#: part/serializers.py:566 +#: company/api.py:267 company/models.py:522 company/serializers.py:502 +#: part/serializers.py:477 msgid "Manufacturer" msgstr "Üretici" -#: company/api.py:314 company/models.py:121 company/models.py:392 +#: company/api.py:274 company/models.py:122 company/models.py:393 #: stock/api.py:900 msgid "Company" msgstr "Şirket" -#: company/api.py:324 +#: company/api.py:284 msgid "Has Stock" msgstr "" -#: company/models.py:122 +#: company/models.py:123 msgid "Companies" msgstr "Şirketler" -#: company/models.py:150 +#: company/models.py:151 msgid "Company description" msgstr "" -#: company/models.py:151 +#: company/models.py:152 msgid "Description of the company" msgstr "" -#: company/models.py:157 +#: company/models.py:158 msgid "Website" msgstr "İnternet Sitesi" -#: company/models.py:158 +#: company/models.py:159 msgid "Company website URL" msgstr "Şirket web sitesi" -#: company/models.py:164 +#: company/models.py:165 msgid "Phone number" msgstr "Telefon numarası" -#: company/models.py:166 +#: company/models.py:167 msgid "Contact phone number" msgstr "İletişim telefon numarası" -#: company/models.py:173 +#: company/models.py:174 msgid "Contact email address" msgstr "İletişim e-posta adresi" -#: company/models.py:178 company/models.py:296 order/models.py:513 +#: company/models.py:179 company/models.py:297 order/models.py:514 #: users/models.py:561 msgid "Contact" msgstr "İletişim" -#: company/models.py:180 +#: company/models.py:181 msgid "Point of contact" msgstr "" -#: company/models.py:186 +#: company/models.py:187 msgid "Link to external company information" msgstr "" -#: company/models.py:191 +#: company/models.py:192 msgid "Is this company active?" msgstr "" -#: company/models.py:196 +#: company/models.py:197 msgid "Is customer" msgstr "Müşteri sitesi" -#: company/models.py:197 +#: company/models.py:198 msgid "Do you sell items to this company?" msgstr "Bu şirkete ürün satıyor musunuz?" -#: company/models.py:202 +#: company/models.py:203 msgid "Is supplier" msgstr "" -#: company/models.py:203 +#: company/models.py:204 msgid "Do you purchase items from this company?" msgstr "Bu şirketten ürün satın alıyor musunuz?" -#: company/models.py:208 +#: company/models.py:209 msgid "Is manufacturer" msgstr "" -#: company/models.py:209 +#: company/models.py:210 msgid "Does this company manufacture parts?" msgstr "Bu şirket üretim yapıyor mu?" -#: company/models.py:217 +#: company/models.py:218 msgid "Default currency used for this company" msgstr "Bu şirket için varsayılan para birimi" -#: company/models.py:224 +#: company/models.py:225 msgid "Tax ID" msgstr "" -#: company/models.py:225 +#: company/models.py:226 msgid "Company Tax ID" msgstr "" -#: company/models.py:335 order/models.py:523 order/models.py:2288 +#: company/models.py:336 order/models.py:524 order/models.py:2289 msgid "Address" msgstr "Adres" -#: company/models.py:336 +#: company/models.py:337 msgid "Addresses" msgstr "Adres" -#: company/models.py:393 +#: company/models.py:394 msgid "Select company" msgstr "Şirket Seç" -#: company/models.py:398 +#: company/models.py:399 msgid "Address title" msgstr "Adres Adı" -#: company/models.py:399 +#: company/models.py:400 msgid "Title describing the address entry" msgstr "" -#: company/models.py:405 +#: company/models.py:406 msgid "Primary address" msgstr "Birincil Adres" -#: company/models.py:406 +#: company/models.py:407 msgid "Set as primary address" msgstr "Birincil adres olarak ayarla" -#: company/models.py:411 +#: company/models.py:412 msgid "Line 1" msgstr "1. Satır" -#: company/models.py:412 +#: company/models.py:413 msgid "Address line 1" msgstr "1. Adres Satırı" -#: company/models.py:418 +#: company/models.py:419 msgid "Line 2" msgstr "2. Satır" -#: company/models.py:419 +#: company/models.py:420 msgid "Address line 2" msgstr "2. Adres Satırı" -#: company/models.py:425 company/models.py:426 +#: company/models.py:426 company/models.py:427 msgid "Postal code" msgstr "Posta Kodu" -#: company/models.py:432 +#: company/models.py:433 msgid "City/Region" msgstr "Şehir/Bölge" -#: company/models.py:433 +#: company/models.py:434 msgid "Postal code city/region" msgstr "" -#: company/models.py:439 +#: company/models.py:440 msgid "State/Province" msgstr "" -#: company/models.py:440 +#: company/models.py:441 msgid "State or province" msgstr "" -#: company/models.py:446 +#: company/models.py:447 msgid "Country" msgstr "" -#: company/models.py:447 +#: company/models.py:448 msgid "Address country" msgstr "" -#: company/models.py:453 +#: company/models.py:454 msgid "Courier shipping notes" msgstr "" -#: company/models.py:454 +#: company/models.py:455 msgid "Notes for shipping courier" msgstr "" -#: company/models.py:460 +#: company/models.py:461 msgid "Internal shipping notes" msgstr "" -#: company/models.py:461 +#: company/models.py:462 msgid "Shipping notes for internal use" msgstr "" -#: company/models.py:468 +#: company/models.py:469 msgid "Link to address information (external)" msgstr "" -#: company/models.py:492 company/models.py:609 company/models.py:832 -#: company/serializers.py:471 stock/api.py:561 +#: company/models.py:494 company/models.py:786 company/serializers.py:516 +#: stock/api.py:561 msgid "Manufacturer Part" msgstr "" -#: company/models.py:509 company/models.py:800 stock/models.py:1025 +#: company/models.py:511 company/models.py:754 stock/models.py:1025 #: stock/serializers.py:407 msgid "Base Part" msgstr "Temel Parça" -#: company/models.py:511 company/models.py:802 +#: company/models.py:513 company/models.py:756 msgid "Select part" msgstr "Parça seçin" -#: company/models.py:521 +#: company/models.py:523 msgid "Select manufacturer" msgstr "Üretici seçin" -#: company/models.py:527 company/serializers.py:479 order/serializers.py:734 -#: part/serializers.py:576 +#: company/models.py:529 company/serializers.py:524 order/serializers.py:745 +#: part/serializers.py:487 msgid "MPN" msgstr "ÜPN" -#: company/models.py:528 stock/serializers.py:572 +#: company/models.py:530 stock/serializers.py:572 msgid "Manufacturer Part Number" msgstr "Üretici Parça Numarası" -#: company/models.py:535 +#: company/models.py:537 msgid "URL for external manufacturer part link" msgstr "" -#: company/models.py:544 +#: company/models.py:546 msgid "Manufacturer part description" msgstr "Parça üreticisi açıklaması" -#: company/models.py:597 -msgid "Manufacturer Part Parameter" -msgstr "" - -#: company/models.py:616 -msgid "Parameter name" -msgstr "Parametre adı" - -#: company/models.py:623 -msgid "Parameter value" -msgstr "Parametre değeri" - -#: company/models.py:630 part/models.py:1195 part/models.py:3857 -msgid "Units" -msgstr "Birim" - -#: company/models.py:631 -msgid "Parameter units" -msgstr "Birim Parametreleri" - -#: company/models.py:740 +#: company/models.py:694 msgid "Pack units must be compatible with the base part units" msgstr "" -#: company/models.py:747 +#: company/models.py:701 msgid "Pack units must be greater than zero" msgstr "" -#: company/models.py:761 +#: company/models.py:715 msgid "Linked manufacturer part must reference the same base part" msgstr "" -#: company/models.py:810 company/serializers.py:449 company/serializers.py:467 -#: order/models.py:639 part/serializers.py:550 +#: company/models.py:764 company/serializers.py:494 company/serializers.py:512 +#: order/models.py:640 part/serializers.py:461 #: plugin/builtin/suppliers/digikey.py:26 plugin/builtin/suppliers/lcsc.py:27 #: plugin/builtin/suppliers/mouser.py:25 plugin/builtin/suppliers/tme.py:27 #: stock/api.py:567 templates/email/overdue_purchase_order.html:16 msgid "Supplier" msgstr "Tedarikçi" -#: company/models.py:811 +#: company/models.py:765 msgid "Select supplier" msgstr "Tedarikçi seçin" -#: company/models.py:817 part/serializers.py:561 +#: company/models.py:771 part/serializers.py:472 msgid "Supplier stock keeping unit" msgstr "" -#: company/models.py:823 +#: company/models.py:777 msgid "Is this supplier part active?" msgstr "Bu parça üreticisi aktif mi?" -#: company/models.py:833 +#: company/models.py:787 msgid "Select manufacturer part" msgstr "Parça üreticisi seç" -#: company/models.py:840 +#: company/models.py:794 msgid "URL for external supplier part link" msgstr "" -#: company/models.py:849 +#: company/models.py:803 msgid "Supplier part description" msgstr "" -#: company/models.py:856 order/serializers.py:883 order/serializers.py:2047 -#: part/models.py:4070 part/models.py:4450 part/models.py:4819 -#: report/templates/report/inventree_bill_of_materials_report.html:140 -#: report/templates/report/inventree_purchase_order_report.html:39 -#: report/templates/report/inventree_return_order_report.html:27 -#: report/templates/report/inventree_sales_order_report.html:32 -#: report/templates/report/inventree_stock_location_report.html:105 -#: stock/serializers.py:813 -msgid "Note" -msgstr "Not" - -#: company/models.py:865 part/models.py:2250 +#: company/models.py:819 part/models.py:2338 msgid "base cost" msgstr "temel maliyet" -#: company/models.py:866 part/models.py:2251 +#: company/models.py:820 part/models.py:2339 msgid "Minimum charge (e.g. stocking fee)" msgstr "" -#: company/models.py:873 order/serializers.py:875 stock/models.py:1056 +#: company/models.py:827 order/serializers.py:886 stock/models.py:1056 #: stock/serializers.py:1606 msgid "Packaging" msgstr "Paketleme" -#: company/models.py:874 +#: company/models.py:828 msgid "Part packaging" msgstr "" -#: company/models.py:879 +#: company/models.py:833 msgid "Pack Quantity" msgstr "" -#: company/models.py:881 +#: company/models.py:835 msgid "Total quantity supplied in a single pack. Leave empty for single items." msgstr "" -#: company/models.py:900 part/models.py:2257 +#: company/models.py:854 part/models.py:2345 msgid "multiple" msgstr "çoklu" -#: company/models.py:901 +#: company/models.py:855 msgid "Order multiple" msgstr "" -#: company/models.py:913 +#: company/models.py:867 msgid "Quantity available from supplier" msgstr "" -#: company/models.py:919 +#: company/models.py:873 msgid "Availability Updated" msgstr "" -#: company/models.py:920 +#: company/models.py:874 msgid "Date of last update of availability data" msgstr "" -#: company/models.py:1048 +#: company/models.py:1002 msgid "Supplier Price Break" msgstr "" -#: company/serializers.py:181 +#: company/serializers.py:184 +msgid "Primary Address" +msgstr "" + +#: company/serializers.py:186 msgid "Return the string representation for the primary address. This property exists for backwards compatibility." msgstr "" -#: company/serializers.py:212 +#: company/serializers.py:218 msgid "Default currency used for this supplier" msgstr "" -#: company/serializers.py:248 +#: company/serializers.py:260 msgid "Company Name" msgstr "" -#: company/serializers.py:433 part/serializers.py:955 stock/serializers.py:428 +#: company/serializers.py:460 part/serializers.py:840 stock/serializers.py:428 msgid "In Stock" msgstr "" +#: company/serializers.py:477 +msgid "Price Breaks" +msgstr "" + #: data_exporter/mixins.py:325 data_exporter/mixins.py:403 msgid "Error occurred during data export" msgstr "" @@ -4290,7 +4418,7 @@ msgstr "" msgid "Errors" msgstr "" -#: importer/models.py:550 part/serializers.py:1268 +#: importer/models.py:550 part/serializers.py:1133 msgid "Valid" msgstr "" @@ -4402,7 +4530,7 @@ msgstr "" msgid "Connected" msgstr "" -#: machine/machine_types/label_printer.py:232 order/api.py:1795 +#: machine/machine_types/label_printer.py:232 order/api.py:1800 msgid "Unknown" msgstr "" @@ -4530,105 +4658,105 @@ msgstr "" msgid "Maximum value for progress type, required if type=progress" msgstr "" -#: order/api.py:125 +#: order/api.py:130 msgid "Order Reference" msgstr "" -#: order/api.py:153 order/api.py:1207 +#: order/api.py:158 order/api.py:1212 msgid "Outstanding" msgstr "" -#: order/api.py:169 +#: order/api.py:174 msgid "Has Project Code" msgstr "" -#: order/api.py:183 order/models.py:488 +#: order/api.py:188 order/models.py:489 msgid "Created By" msgstr "Oluşturan" -#: order/api.py:187 +#: order/api.py:192 msgid "Created Before" msgstr "" -#: order/api.py:191 +#: order/api.py:196 msgid "Created After" msgstr "" -#: order/api.py:195 +#: order/api.py:200 msgid "Has Start Date" msgstr "" -#: order/api.py:203 +#: order/api.py:208 msgid "Start Date Before" msgstr "" -#: order/api.py:207 +#: order/api.py:212 msgid "Start Date After" msgstr "" -#: order/api.py:211 +#: order/api.py:216 msgid "Has Target Date" msgstr "" -#: order/api.py:219 +#: order/api.py:224 msgid "Target Date Before" msgstr "" -#: order/api.py:223 +#: order/api.py:228 msgid "Target Date After" msgstr "" -#: order/api.py:274 +#: order/api.py:279 msgid "Has Pricing" msgstr "" -#: order/api.py:327 order/api.py:812 order/api.py:1490 +#: order/api.py:332 order/api.py:818 order/api.py:1495 msgid "Completed Before" msgstr "" -#: order/api.py:331 order/api.py:816 order/api.py:1494 +#: order/api.py:336 order/api.py:822 order/api.py:1499 msgid "Completed After" msgstr "" -#: order/api.py:337 order/api.py:341 +#: order/api.py:342 order/api.py:346 msgid "External Build Order" msgstr "" -#: order/api.py:526 order/api.py:914 order/api.py:1170 order/models.py:1922 -#: order/models.py:2049 order/models.py:2099 order/models.py:2279 -#: order/models.py:2477 order/models.py:2999 order/models.py:3065 +#: order/api.py:532 order/api.py:919 order/api.py:1175 order/models.py:1923 +#: order/models.py:2050 order/models.py:2100 order/models.py:2280 +#: order/models.py:2478 order/models.py:3000 order/models.py:3066 msgid "Order" msgstr "" -#: order/api.py:530 order/api.py:982 +#: order/api.py:536 order/api.py:987 msgid "Order Complete" msgstr "" -#: order/api.py:562 order/api.py:566 order/serializers.py:745 +#: order/api.py:568 order/api.py:572 order/serializers.py:756 msgid "Internal Part" msgstr "" -#: order/api.py:584 +#: order/api.py:590 msgid "Order Pending" msgstr "" -#: order/api.py:967 +#: order/api.py:972 msgid "Completed" msgstr "Tamamlandı" -#: order/api.py:1223 +#: order/api.py:1228 msgid "Has Shipment" msgstr "" -#: order/api.py:1789 order/models.py:552 order/models.py:1923 -#: order/models.py:2050 +#: order/api.py:1794 order/models.py:553 order/models.py:1924 +#: order/models.py:2051 #: report/templates/report/inventree_purchase_order_report.html:14 #: stock/serializers.py:129 templates/email/overdue_purchase_order.html:15 msgid "Purchase Order" msgstr "" -#: order/api.py:1791 order/models.py:1251 order/models.py:2100 -#: order/models.py:2280 order/models.py:2478 +#: order/api.py:1796 order/models.py:1252 order/models.py:2101 +#: order/models.py:2281 order/models.py:2479 #: report/templates/report/inventree_build_order_report.html:135 #: report/templates/report/inventree_sales_order_report.html:14 #: report/templates/report/inventree_sales_order_shipment_report.html:15 @@ -4636,8 +4764,8 @@ msgstr "" msgid "Sales Order" msgstr "Sipariş Emri" -#: order/api.py:1793 order/models.py:2649 order/models.py:3000 -#: order/models.py:3066 +#: order/api.py:1798 order/models.py:2650 order/models.py:3001 +#: order/models.py:3067 #: report/templates/report/inventree_return_order_report.html:13 #: templates/email/overdue_return_order.html:15 msgid "Return Order" @@ -4653,722 +4781,722 @@ msgstr "" msgid "Total price for this order" msgstr "" -#: order/models.py:96 order/serializers.py:77 +#: order/models.py:96 order/serializers.py:78 msgid "Order Currency" msgstr "" -#: order/models.py:99 order/serializers.py:78 +#: order/models.py:99 order/serializers.py:79 msgid "Currency for this order (leave blank to use company default)" msgstr "" -#: order/models.py:324 +#: order/models.py:325 msgid "This order is locked and cannot be modified" msgstr "" -#: order/models.py:376 +#: order/models.py:377 msgid "Contact does not match selected company" msgstr "" -#: order/models.py:383 +#: order/models.py:384 msgid "Start date must be before target date" msgstr "" -#: order/models.py:390 +#: order/models.py:391 msgid "Address does not match selected company" msgstr "" -#: order/models.py:443 +#: order/models.py:444 msgid "Order description (optional)" msgstr "" -#: order/models.py:452 order/models.py:1806 +#: order/models.py:453 order/models.py:1807 msgid "Select project code for this order" msgstr "" -#: order/models.py:458 order/models.py:1787 order/models.py:2344 +#: order/models.py:459 order/models.py:1788 order/models.py:2345 msgid "Link to external page" msgstr "Harici sayfaya bağlantı" -#: order/models.py:465 +#: order/models.py:466 msgid "Start date" msgstr "" -#: order/models.py:466 +#: order/models.py:467 msgid "Scheduled start date for this order" msgstr "" -#: order/models.py:472 order/models.py:1794 order/serializers.py:309 +#: order/models.py:473 order/models.py:1795 order/serializers.py:317 #: report/templates/report/inventree_build_order_report.html:125 msgid "Target Date" msgstr "Hedeflenen tarih" -#: order/models.py:474 +#: order/models.py:475 msgid "Expected date for order delivery. Order will be overdue after this date." msgstr "" -#: order/models.py:494 +#: order/models.py:495 msgid "Issue Date" msgstr "" -#: order/models.py:495 +#: order/models.py:496 msgid "Date order was issued" msgstr "" -#: order/models.py:503 +#: order/models.py:504 msgid "User or group responsible for this order" msgstr "" -#: order/models.py:514 +#: order/models.py:515 msgid "Point of contact for this order" msgstr "" -#: order/models.py:524 +#: order/models.py:525 msgid "Company address for this order" msgstr "" -#: order/models.py:615 order/models.py:1312 +#: order/models.py:616 order/models.py:1313 msgid "Order reference" msgstr "Sipariş referansı" -#: order/models.py:624 order/models.py:1336 order/models.py:2737 +#: order/models.py:625 order/models.py:1337 order/models.py:2738 #: stock/serializers.py:559 stock/serializers.py:988 users/models.py:542 msgid "Status" msgstr "Durum" -#: order/models.py:625 +#: order/models.py:626 msgid "Purchase order status" msgstr "" -#: order/models.py:640 +#: order/models.py:641 msgid "Company from which the items are being ordered" msgstr "" -#: order/models.py:651 +#: order/models.py:652 msgid "Supplier Reference" msgstr "" -#: order/models.py:652 +#: order/models.py:653 msgid "Supplier order reference code" msgstr "" -#: order/models.py:661 +#: order/models.py:662 msgid "received by" msgstr "" -#: order/models.py:668 order/models.py:2752 +#: order/models.py:669 order/models.py:2753 msgid "Date order was completed" msgstr "" -#: order/models.py:677 order/models.py:1981 +#: order/models.py:678 order/models.py:1982 msgid "Destination" msgstr "Hedef" -#: order/models.py:678 order/models.py:1985 +#: order/models.py:679 order/models.py:1986 msgid "Destination for received items" msgstr "" -#: order/models.py:724 +#: order/models.py:725 msgid "Part supplier must match PO supplier" msgstr "" -#: order/models.py:994 +#: order/models.py:995 msgid "Line item does not match purchase order" msgstr "" -#: order/models.py:997 +#: order/models.py:998 msgid "Line item is missing a linked part" msgstr "" -#: order/models.py:1011 +#: order/models.py:1012 msgid "Quantity must be a positive number" msgstr "" -#: order/models.py:1323 order/models.py:2724 stock/models.py:1078 +#: order/models.py:1324 order/models.py:2725 stock/models.py:1078 #: stock/models.py:1079 stock/serializers.py:1322 #: templates/email/overdue_return_order.html:16 #: templates/email/overdue_sales_order.html:16 msgid "Customer" msgstr "Müşteri" -#: order/models.py:1324 +#: order/models.py:1325 msgid "Company to which the items are being sold" msgstr "" -#: order/models.py:1337 +#: order/models.py:1338 msgid "Sales order status" msgstr "" -#: order/models.py:1348 order/models.py:2744 +#: order/models.py:1349 order/models.py:2745 msgid "Customer Reference " msgstr "" -#: order/models.py:1349 order/models.py:2745 +#: order/models.py:1350 order/models.py:2746 msgid "Customer order reference code" msgstr "" -#: order/models.py:1353 order/models.py:2296 +#: order/models.py:1354 order/models.py:2297 msgid "Shipment Date" msgstr "" -#: order/models.py:1362 +#: order/models.py:1363 msgid "shipped by" msgstr "" -#: order/models.py:1413 +#: order/models.py:1414 msgid "Order is already complete" msgstr "" -#: order/models.py:1416 +#: order/models.py:1417 msgid "Order is already cancelled" msgstr "" -#: order/models.py:1420 +#: order/models.py:1421 msgid "Only an open order can be marked as complete" msgstr "" -#: order/models.py:1424 +#: order/models.py:1425 msgid "Order cannot be completed as there are incomplete shipments" msgstr "" -#: order/models.py:1429 +#: order/models.py:1430 msgid "Order cannot be completed as there are incomplete allocations" msgstr "" -#: order/models.py:1438 +#: order/models.py:1439 msgid "Order cannot be completed as there are incomplete line items" msgstr "" -#: order/models.py:1733 order/models.py:1749 +#: order/models.py:1734 order/models.py:1750 msgid "The order is locked and cannot be modified" msgstr "" -#: order/models.py:1757 +#: order/models.py:1758 msgid "Item quantity" msgstr "" -#: order/models.py:1774 +#: order/models.py:1775 msgid "Line item reference" msgstr "" -#: order/models.py:1781 +#: order/models.py:1782 msgid "Line item notes" msgstr "" -#: order/models.py:1796 +#: order/models.py:1797 msgid "Target date for this line item (leave blank to use the target date from the order)" msgstr "" -#: order/models.py:1826 +#: order/models.py:1827 msgid "Line item description (optional)" msgstr "" -#: order/models.py:1833 +#: order/models.py:1834 msgid "Additional context for this line" msgstr "" -#: order/models.py:1843 +#: order/models.py:1844 msgid "Unit price" msgstr "" -#: order/models.py:1862 +#: order/models.py:1863 msgid "Purchase Order Line Item" msgstr "" -#: order/models.py:1889 +#: order/models.py:1890 msgid "Supplier part must match supplier" msgstr "" -#: order/models.py:1894 +#: order/models.py:1895 msgid "Build order must be marked as external" msgstr "" -#: order/models.py:1901 +#: order/models.py:1902 msgid "Build orders can only be linked to assembly parts" msgstr "" -#: order/models.py:1907 +#: order/models.py:1908 msgid "Build order part must match line item part" msgstr "" -#: order/models.py:1942 +#: order/models.py:1943 msgid "Supplier part" msgstr "" -#: order/models.py:1949 +#: order/models.py:1950 msgid "Received" msgstr "" -#: order/models.py:1950 +#: order/models.py:1951 msgid "Number of items received" msgstr "" -#: order/models.py:1958 stock/models.py:1201 stock/serializers.py:637 +#: order/models.py:1959 stock/models.py:1201 stock/serializers.py:637 msgid "Purchase Price" msgstr "" -#: order/models.py:1959 +#: order/models.py:1960 msgid "Unit purchase price" msgstr "" -#: order/models.py:1975 +#: order/models.py:1976 msgid "External Build Order to be fulfilled by this line item" msgstr "" -#: order/models.py:2038 +#: order/models.py:2039 msgid "Purchase Order Extra Line" msgstr "" -#: order/models.py:2067 +#: order/models.py:2068 msgid "Sales Order Line Item" msgstr "" -#: order/models.py:2092 +#: order/models.py:2093 msgid "Only salable parts can be assigned to a sales order" msgstr "" -#: order/models.py:2118 +#: order/models.py:2119 msgid "Sale Price" msgstr "" -#: order/models.py:2119 +#: order/models.py:2120 msgid "Unit sale price" msgstr "" -#: order/models.py:2128 order/status_codes.py:50 +#: order/models.py:2129 order/status_codes.py:50 msgid "Shipped" msgstr "Sevk edildi" -#: order/models.py:2129 +#: order/models.py:2130 msgid "Shipped quantity" msgstr "" -#: order/models.py:2240 +#: order/models.py:2241 msgid "Sales Order Shipment" msgstr "" -#: order/models.py:2253 +#: order/models.py:2254 msgid "Shipment address must match the customer" msgstr "" -#: order/models.py:2289 +#: order/models.py:2290 msgid "Shipping address for this shipment" msgstr "" -#: order/models.py:2297 +#: order/models.py:2298 msgid "Date of shipment" msgstr "" -#: order/models.py:2303 +#: order/models.py:2304 msgid "Delivery Date" msgstr "" -#: order/models.py:2304 +#: order/models.py:2305 msgid "Date of delivery of shipment" msgstr "" -#: order/models.py:2312 +#: order/models.py:2313 msgid "Checked By" msgstr "" -#: order/models.py:2313 +#: order/models.py:2314 msgid "User who checked this shipment" msgstr "" -#: order/models.py:2320 order/models.py:2574 order/serializers.py:1711 -#: order/serializers.py:1835 +#: order/models.py:2321 order/models.py:2575 order/serializers.py:1725 +#: order/serializers.py:1849 #: report/templates/report/inventree_sales_order_shipment_report.html:14 msgid "Shipment" msgstr "" -#: order/models.py:2321 +#: order/models.py:2322 msgid "Shipment number" msgstr "" -#: order/models.py:2329 +#: order/models.py:2330 msgid "Tracking Number" msgstr "" -#: order/models.py:2330 +#: order/models.py:2331 msgid "Shipment tracking information" msgstr "" -#: order/models.py:2337 +#: order/models.py:2338 msgid "Invoice Number" msgstr "" -#: order/models.py:2338 +#: order/models.py:2339 msgid "Reference number for associated invoice" msgstr "" -#: order/models.py:2377 +#: order/models.py:2378 msgid "Shipment has already been sent" msgstr "" -#: order/models.py:2380 +#: order/models.py:2381 msgid "Shipment has no allocated stock items" msgstr "" -#: order/models.py:2387 +#: order/models.py:2388 msgid "Shipment must be checked before it can be completed" msgstr "" -#: order/models.py:2466 +#: order/models.py:2467 msgid "Sales Order Extra Line" msgstr "" -#: order/models.py:2495 +#: order/models.py:2496 msgid "Sales Order Allocation" msgstr "" -#: order/models.py:2518 order/models.py:2520 +#: order/models.py:2519 order/models.py:2521 msgid "Stock item has not been assigned" msgstr "" -#: order/models.py:2527 +#: order/models.py:2528 msgid "Cannot allocate stock item to a line with a different part" msgstr "" -#: order/models.py:2530 +#: order/models.py:2531 msgid "Cannot allocate stock to a line without a part" msgstr "" -#: order/models.py:2533 +#: order/models.py:2534 msgid "Allocation quantity cannot exceed stock quantity" msgstr "Tahsis miktarı stok miktarını aşamaz" -#: order/models.py:2552 order/serializers.py:1581 +#: order/models.py:2553 order/serializers.py:1595 msgid "Quantity must be 1 for serialized stock item" msgstr "Seri numaralı stok kalemi için miktar bir olmalı" -#: order/models.py:2555 +#: order/models.py:2556 msgid "Sales order does not match shipment" msgstr "" -#: order/models.py:2556 plugin/base/barcodes/api.py:642 +#: order/models.py:2557 plugin/base/barcodes/api.py:642 msgid "Shipment does not match sales order" msgstr "" -#: order/models.py:2564 +#: order/models.py:2565 msgid "Line" msgstr "" -#: order/models.py:2575 +#: order/models.py:2576 msgid "Sales order shipment reference" msgstr "" -#: order/models.py:2588 order/models.py:3007 +#: order/models.py:2589 order/models.py:3008 msgid "Item" msgstr "" -#: order/models.py:2589 +#: order/models.py:2590 msgid "Select stock item to allocate" msgstr "" -#: order/models.py:2598 +#: order/models.py:2599 msgid "Enter stock allocation quantity" msgstr "Stok tahsis miktarını girin" -#: order/models.py:2713 +#: order/models.py:2714 msgid "Return Order reference" msgstr "" -#: order/models.py:2725 +#: order/models.py:2726 msgid "Company from which items are being returned" msgstr "" -#: order/models.py:2738 +#: order/models.py:2739 msgid "Return order status" msgstr "" -#: order/models.py:2965 +#: order/models.py:2966 msgid "Return Order Line Item" msgstr "" -#: order/models.py:2978 +#: order/models.py:2979 msgid "Stock item must be specified" msgstr "" -#: order/models.py:2982 +#: order/models.py:2983 msgid "Return quantity exceeds stock quantity" msgstr "" -#: order/models.py:2987 +#: order/models.py:2988 msgid "Return quantity must be greater than zero" msgstr "" -#: order/models.py:2992 +#: order/models.py:2993 msgid "Invalid quantity for serialized stock item" msgstr "" -#: order/models.py:3008 +#: order/models.py:3009 msgid "Select item to return from customer" msgstr "" -#: order/models.py:3023 +#: order/models.py:3024 msgid "Received Date" msgstr "" -#: order/models.py:3024 +#: order/models.py:3025 msgid "The date this this return item was received" msgstr "" -#: order/models.py:3036 +#: order/models.py:3037 msgid "Outcome" msgstr "" -#: order/models.py:3037 +#: order/models.py:3038 msgid "Outcome for this line item" msgstr "" -#: order/models.py:3044 +#: order/models.py:3045 msgid "Cost associated with return or repair for this line item" msgstr "" -#: order/models.py:3054 +#: order/models.py:3055 msgid "Return Order Extra Line" msgstr "" -#: order/serializers.py:91 +#: order/serializers.py:92 msgid "Order ID" msgstr "" -#: order/serializers.py:91 +#: order/serializers.py:92 msgid "ID of the order to duplicate" msgstr "" -#: order/serializers.py:97 +#: order/serializers.py:98 msgid "Copy Lines" msgstr "" -#: order/serializers.py:98 +#: order/serializers.py:99 msgid "Copy line items from the original order" msgstr "" -#: order/serializers.py:104 +#: order/serializers.py:105 msgid "Copy Extra Lines" msgstr "" -#: order/serializers.py:105 +#: order/serializers.py:106 msgid "Copy extra line items from the original order" msgstr "" -#: order/serializers.py:120 +#: order/serializers.py:121 #: report/templates/report/inventree_purchase_order_report.html:29 #: report/templates/report/inventree_return_order_report.html:19 #: report/templates/report/inventree_sales_order_report.html:22 msgid "Line Items" msgstr "Satır Ögeleri" -#: order/serializers.py:125 +#: order/serializers.py:126 msgid "Completed Lines" msgstr "" -#: order/serializers.py:192 +#: order/serializers.py:199 msgid "Duplicate Order" msgstr "" -#: order/serializers.py:193 +#: order/serializers.py:200 msgid "Specify options for duplicating this order" msgstr "" -#: order/serializers.py:270 +#: order/serializers.py:278 msgid "Invalid order ID" msgstr "" -#: order/serializers.py:466 +#: order/serializers.py:477 msgid "Supplier Name" msgstr "" -#: order/serializers.py:510 +#: order/serializers.py:521 msgid "Order cannot be cancelled" msgstr "" -#: order/serializers.py:525 order/serializers.py:1602 +#: order/serializers.py:536 order/serializers.py:1616 msgid "Allow order to be closed with incomplete line items" msgstr "" -#: order/serializers.py:535 order/serializers.py:1612 +#: order/serializers.py:546 order/serializers.py:1626 msgid "Order has incomplete line items" msgstr "" -#: order/serializers.py:665 +#: order/serializers.py:676 msgid "Order is not open" msgstr "" -#: order/serializers.py:692 +#: order/serializers.py:703 msgid "Auto Pricing" msgstr "" -#: order/serializers.py:694 +#: order/serializers.py:705 msgid "Automatically calculate purchase price based on supplier part data" msgstr "" -#: order/serializers.py:704 +#: order/serializers.py:715 msgid "Purchase price currency" msgstr "" -#: order/serializers.py:718 +#: order/serializers.py:729 msgid "Merge Items" msgstr "" -#: order/serializers.py:720 +#: order/serializers.py:731 msgid "Merge items with the same part, destination and target date into one line item" msgstr "" -#: order/serializers.py:727 part/serializers.py:560 +#: order/serializers.py:738 part/serializers.py:471 msgid "SKU" msgstr "" -#: order/serializers.py:741 part/models.py:1089 part/serializers.py:372 +#: order/serializers.py:752 part/models.py:1177 part/serializers.py:337 msgid "Internal Part Number" msgstr "" -#: order/serializers.py:749 +#: order/serializers.py:760 msgid "Internal Part Name" msgstr "" -#: order/serializers.py:765 +#: order/serializers.py:776 msgid "Supplier part must be specified" msgstr "" -#: order/serializers.py:768 +#: order/serializers.py:779 msgid "Purchase order must be specified" msgstr "" -#: order/serializers.py:776 +#: order/serializers.py:787 msgid "Supplier must match purchase order" msgstr "" -#: order/serializers.py:777 +#: order/serializers.py:788 msgid "Purchase order must match supplier" msgstr "" -#: order/serializers.py:825 order/serializers.py:1682 +#: order/serializers.py:836 order/serializers.py:1696 msgid "Line Item" msgstr "" -#: order/serializers.py:834 order/serializers.py:974 order/serializers.py:2043 +#: order/serializers.py:845 order/serializers.py:985 order/serializers.py:2060 msgid "Select destination location for received items" msgstr "" -#: order/serializers.py:850 +#: order/serializers.py:861 msgid "Enter batch code for incoming stock items" msgstr "" -#: order/serializers.py:857 stock/models.py:1160 +#: order/serializers.py:868 stock/models.py:1160 #: templates/email/stale_stock_notification.html:22 users/models.py:137 msgid "Expiry Date" msgstr "" -#: order/serializers.py:858 +#: order/serializers.py:869 msgid "Enter expiry date for incoming stock items" msgstr "" -#: order/serializers.py:866 +#: order/serializers.py:877 msgid "Enter serial numbers for incoming stock items" msgstr "" -#: order/serializers.py:876 +#: order/serializers.py:887 msgid "Override packaging information for incoming stock items" msgstr "" -#: order/serializers.py:884 order/serializers.py:2048 +#: order/serializers.py:895 order/serializers.py:2065 msgid "Additional note for incoming stock items" msgstr "" -#: order/serializers.py:891 +#: order/serializers.py:902 msgid "Barcode" msgstr "" -#: order/serializers.py:892 +#: order/serializers.py:903 msgid "Scanned barcode" msgstr "" -#: order/serializers.py:908 +#: order/serializers.py:919 msgid "Barcode is already in use" msgstr "" -#: order/serializers.py:991 order/serializers.py:2067 +#: order/serializers.py:1002 order/serializers.py:2084 msgid "Line items must be provided" msgstr "" -#: order/serializers.py:1010 +#: order/serializers.py:1021 msgid "Destination location must be specified" msgstr "" -#: order/serializers.py:1017 +#: order/serializers.py:1028 msgid "Supplied barcode values must be unique" msgstr "" -#: order/serializers.py:1121 +#: order/serializers.py:1135 msgid "Shipments" msgstr "" -#: order/serializers.py:1125 +#: order/serializers.py:1139 msgid "Completed Shipments" msgstr "" -#: order/serializers.py:1293 +#: order/serializers.py:1307 msgid "Sale price currency" msgstr "" -#: order/serializers.py:1339 +#: order/serializers.py:1353 msgid "Allocated Items" msgstr "" -#: order/serializers.py:1484 +#: order/serializers.py:1498 msgid "No shipment details provided" msgstr "" -#: order/serializers.py:1545 order/serializers.py:1691 +#: order/serializers.py:1559 order/serializers.py:1705 msgid "Line item is not associated with this order" msgstr "" -#: order/serializers.py:1564 +#: order/serializers.py:1578 msgid "Quantity must be positive" msgstr "" -#: order/serializers.py:1701 +#: order/serializers.py:1715 msgid "Enter serial numbers to allocate" msgstr "" -#: order/serializers.py:1723 order/serializers.py:1843 +#: order/serializers.py:1737 order/serializers.py:1857 msgid "Shipment has already been shipped" msgstr "" -#: order/serializers.py:1726 order/serializers.py:1846 +#: order/serializers.py:1740 order/serializers.py:1860 msgid "Shipment is not associated with this order" msgstr "" -#: order/serializers.py:1781 +#: order/serializers.py:1795 msgid "No match found for the following serial numbers" msgstr "" -#: order/serializers.py:1788 +#: order/serializers.py:1802 msgid "The following serial numbers are unavailable" msgstr "" -#: order/serializers.py:2009 +#: order/serializers.py:2026 msgid "Return order line item" msgstr "" -#: order/serializers.py:2019 +#: order/serializers.py:2036 msgid "Line item does not match return order" msgstr "" -#: order/serializers.py:2022 +#: order/serializers.py:2039 msgid "Line item has already been received" msgstr "" -#: order/serializers.py:2059 +#: order/serializers.py:2076 msgid "Items can only be received against orders which are in progress" msgstr "" -#: order/serializers.py:2124 +#: order/serializers.py:2141 msgid "Quantity to return" msgstr "" -#: order/serializers.py:2140 +#: order/serializers.py:2157 msgid "Line price currency" msgstr "" @@ -5431,1190 +5559,1109 @@ msgstr "" msgid "Return order {ro} is now overdue" msgstr "" -#: part/api.py:108 +#: part/api.py:103 msgid "Starred" msgstr "" -#: part/api.py:110 +#: part/api.py:105 msgid "Filter by starred categories" msgstr "" -#: part/api.py:127 stock/api.py:288 +#: part/api.py:122 stock/api.py:288 msgid "Depth" msgstr "" -#: part/api.py:127 +#: part/api.py:122 msgid "Filter by category depth" msgstr "" -#: part/api.py:145 stock/api.py:306 +#: part/api.py:140 stock/api.py:306 msgid "Top Level" msgstr "" -#: part/api.py:147 +#: part/api.py:142 msgid "Filter by top-level categories" msgstr "" -#: part/api.py:160 stock/api.py:321 +#: part/api.py:155 stock/api.py:321 msgid "Cascade" msgstr "" -#: part/api.py:162 +#: part/api.py:157 msgid "Include sub-categories in filtered results" msgstr "" -#: part/api.py:182 +#: part/api.py:177 msgid "Parent" msgstr "" -#: part/api.py:184 +#: part/api.py:179 msgid "Filter by parent category" msgstr "" -#: part/api.py:219 +#: part/api.py:214 msgid "Exclude sub-categories under the specified category" msgstr "" -#: part/api.py:445 +#: part/api.py:440 msgid "Has Results" msgstr "" -#: part/api.py:666 +#: part/api.py:661 msgid "Is Variant" msgstr "" -#: part/api.py:674 +#: part/api.py:669 msgid "Is Revision" msgstr "" -#: part/api.py:684 +#: part/api.py:679 msgid "Has Revisions" msgstr "" -#: part/api.py:865 +#: part/api.py:860 msgid "BOM Valid" msgstr "" -#: part/api.py:974 +#: part/api.py:969 msgid "Cascade Categories" msgstr "" -#: part/api.py:975 +#: part/api.py:970 msgid "If true, include items in child categories of the given category" msgstr "" -#: part/api.py:981 +#: part/api.py:976 msgid "Filter by numeric category ID or the literal 'null'" msgstr "" -#: part/api.py:1533 +#: part/api.py:1258 msgid "Assembly part is testable" msgstr "" -#: part/api.py:1542 +#: part/api.py:1267 msgid "Component part is testable" msgstr "" -#: part/api.py:1611 +#: part/api.py:1336 msgid "Uses" msgstr "" -#: part/models.py:96 part/models.py:4163 +#: part/models.py:93 part/models.py:436 #: templates/email/part_event_notification.html:16 msgid "Part Category" msgstr "" -#: part/models.py:97 users/ruleset.py:27 +#: part/models.py:94 users/ruleset.py:27 msgid "Part Categories" msgstr "Parça Kategorileri" -#: part/models.py:115 part/models.py:1125 +#: part/models.py:112 part/models.py:1213 msgid "Default Location" msgstr "Varsayılan Konum" -#: part/models.py:116 +#: part/models.py:113 msgid "Default location for parts in this category" msgstr "Bu kategori içindeki parçalar için varsayılan konum" -#: part/models.py:121 stock/models.py:216 +#: part/models.py:118 stock/models.py:216 msgid "Structural" msgstr "" -#: part/models.py:123 +#: part/models.py:120 msgid "Parts may not be directly assigned to a structural category, but may be assigned to child categories." msgstr "" -#: part/models.py:132 +#: part/models.py:129 msgid "Default keywords" msgstr "" -#: part/models.py:133 +#: part/models.py:130 msgid "Default keywords for parts in this category" msgstr "" -#: part/models.py:140 stock/models.py:97 stock/models.py:198 +#: part/models.py:137 stock/models.py:97 stock/models.py:198 msgid "Icon" msgstr "" -#: part/models.py:141 part/serializers.py:148 part/serializers.py:167 +#: part/models.py:138 part/serializers.py:147 part/serializers.py:166 #: stock/models.py:199 msgid "Icon (optional)" msgstr "" -#: part/models.py:185 +#: part/models.py:182 msgid "You cannot make this part category structural because some parts are already assigned to it!" msgstr "" -#: part/models.py:473 part/serializers.py:119 part/serializers.py:310 -#: users/ruleset.py:28 +#: part/models.py:392 +msgid "Part Category Parameter Template" +msgstr "" + +#: part/models.py:448 +msgid "Default Value" +msgstr "" + +#: part/models.py:449 +msgid "Default Parameter Value" +msgstr "" + +#: part/models.py:551 part/serializers.py:118 users/ruleset.py:28 msgid "Parts" msgstr "Parçalar" -#: part/models.py:525 +#: part/models.py:597 +msgid "Cannot delete parameters of a locked part" +msgstr "" + +#: part/models.py:602 +msgid "Cannot modify parameters of a locked part" +msgstr "" + +#: part/models.py:613 msgid "Cannot delete this part as it is locked" msgstr "" -#: part/models.py:528 +#: part/models.py:616 msgid "Cannot delete this part as it is still active" msgstr "" -#: part/models.py:533 +#: part/models.py:621 msgid "Cannot delete this part as it is used in an assembly" msgstr "" -#: part/models.py:616 part/models.py:623 +#: part/models.py:704 part/models.py:711 #, python-brace-format msgid "Part '{self}' cannot be used in BOM for '{parent}' (recursive)" msgstr "" -#: part/models.py:635 +#: part/models.py:723 #, python-brace-format msgid "Part '{parent}' is used in BOM for '{self}' (recursive)" msgstr "" -#: part/models.py:702 +#: part/models.py:790 #, python-brace-format msgid "IPN must match regex pattern {pattern}" msgstr "" -#: part/models.py:710 +#: part/models.py:798 msgid "Part cannot be a revision of itself" msgstr "" -#: part/models.py:717 +#: part/models.py:805 msgid "Cannot make a revision of a part which is already a revision" msgstr "" -#: part/models.py:724 +#: part/models.py:812 msgid "Revision code must be specified" msgstr "" -#: part/models.py:731 +#: part/models.py:819 msgid "Revisions are only allowed for assembly parts" msgstr "" -#: part/models.py:738 +#: part/models.py:826 msgid "Cannot make a revision of a template part" msgstr "" -#: part/models.py:744 +#: part/models.py:832 msgid "Parent part must point to the same template" msgstr "" -#: part/models.py:841 +#: part/models.py:929 msgid "Stock item with this serial number already exists" msgstr "" -#: part/models.py:971 +#: part/models.py:1059 msgid "Duplicate IPN not allowed in part settings" msgstr "Yinelenen DPN'ye parça ayarlarında izin verilmiyor" -#: part/models.py:983 +#: part/models.py:1071 msgid "Duplicate part revision already exists." msgstr "" -#: part/models.py:992 +#: part/models.py:1080 msgid "Part with this Name, IPN and Revision already exists." msgstr "" -#: part/models.py:1007 +#: part/models.py:1095 msgid "Parts cannot be assigned to structural part categories!" msgstr "" -#: part/models.py:1039 +#: part/models.py:1127 msgid "Part name" msgstr "Parça adı" -#: part/models.py:1044 +#: part/models.py:1132 msgid "Is Template" msgstr "Şablon Mu" -#: part/models.py:1045 +#: part/models.py:1133 msgid "Is this part a template part?" msgstr "Bu parça bir şablon parçası mı?" -#: part/models.py:1055 +#: part/models.py:1143 msgid "Is this part a variant of another part?" msgstr "Bu parça başka bir parçanın çeşidi mi?" -#: part/models.py:1056 +#: part/models.py:1144 msgid "Variant Of" msgstr "Çeşidi" -#: part/models.py:1063 +#: part/models.py:1151 msgid "Part description (optional)" msgstr "" -#: part/models.py:1070 +#: part/models.py:1158 msgid "Keywords" msgstr "Anahtar kelimeler" -#: part/models.py:1071 +#: part/models.py:1159 msgid "Part keywords to improve visibility in search results" msgstr "" -#: part/models.py:1081 +#: part/models.py:1169 msgid "Part category" msgstr "" -#: part/models.py:1088 part/serializers.py:929 +#: part/models.py:1176 part/serializers.py:814 #: report/templates/report/inventree_stock_location_report.html:103 msgid "IPN" msgstr "DPN" -#: part/models.py:1096 +#: part/models.py:1184 msgid "Part revision or version number" msgstr "Parça revizyon veya versiyon numarası" -#: part/models.py:1097 report/models.py:228 +#: part/models.py:1185 report/models.py:228 msgid "Revision" msgstr "Revizyon" -#: part/models.py:1106 +#: part/models.py:1194 msgid "Is this part a revision of another part?" msgstr "" -#: part/models.py:1107 +#: part/models.py:1195 msgid "Revision Of" msgstr "" -#: part/models.py:1123 +#: part/models.py:1211 msgid "Where is this item normally stored?" msgstr "" -#: part/models.py:1169 +#: part/models.py:1257 msgid "Default Supplier" msgstr "Varsayılan Tedarikçi" -#: part/models.py:1170 +#: part/models.py:1258 msgid "Default supplier part" msgstr "Varsayılan tedarikçi parçası" -#: part/models.py:1177 +#: part/models.py:1265 msgid "Default Expiry" msgstr "" -#: part/models.py:1178 +#: part/models.py:1266 msgid "Expiry time (in days) for stock items of this part" msgstr "" -#: part/models.py:1186 part/serializers.py:1003 +#: part/models.py:1274 part/serializers.py:888 msgid "Minimum Stock" msgstr "Minimum Stok" -#: part/models.py:1187 +#: part/models.py:1275 msgid "Minimum allowed stock level" msgstr "" -#: part/models.py:1196 +#: part/models.py:1284 msgid "Units of measure for this part" msgstr "" -#: part/models.py:1203 +#: part/models.py:1291 msgid "Can this part be built from other parts?" msgstr "Bu parça diğer parçalardan yapılabilir mi?" -#: part/models.py:1209 +#: part/models.py:1297 msgid "Can this part be used to build other parts?" msgstr "Bu parça diğer parçaların yapımında kullanılabilir mi?" -#: part/models.py:1215 +#: part/models.py:1303 msgid "Does this part have tracking for unique items?" msgstr "" -#: part/models.py:1221 +#: part/models.py:1309 msgid "Can this part have test results recorded against it?" msgstr "" -#: part/models.py:1227 +#: part/models.py:1315 msgid "Can this part be purchased from external suppliers?" msgstr "Bu parça dış tedarikçilerden satın alınabilir mi?" -#: part/models.py:1233 +#: part/models.py:1321 msgid "Can this part be sold to customers?" msgstr "Bu parça müşterilere satılabilir mi?" -#: part/models.py:1237 +#: part/models.py:1325 msgid "Is this part active?" msgstr "Bu parça aktif mi?" -#: part/models.py:1243 +#: part/models.py:1331 msgid "Locked parts cannot be edited" msgstr "" -#: part/models.py:1249 +#: part/models.py:1337 msgid "Is this a virtual part, such as a software product or license?" msgstr "" -#: part/models.py:1254 +#: part/models.py:1342 msgid "BOM Validated" msgstr "" -#: part/models.py:1255 +#: part/models.py:1343 msgid "Is the BOM for this part valid?" msgstr "" -#: part/models.py:1261 +#: part/models.py:1349 msgid "BOM checksum" msgstr "" -#: part/models.py:1262 +#: part/models.py:1350 msgid "Stored BOM checksum" msgstr "" -#: part/models.py:1270 +#: part/models.py:1358 msgid "BOM checked by" msgstr "" -#: part/models.py:1275 +#: part/models.py:1363 msgid "BOM checked date" msgstr "" -#: part/models.py:1291 +#: part/models.py:1379 msgid "Creation User" msgstr "Oluşturan Kullanıcı" -#: part/models.py:1301 +#: part/models.py:1389 msgid "Owner responsible for this part" msgstr "" -#: part/models.py:2258 +#: part/models.py:2346 msgid "Sell multiple" msgstr "" -#: part/models.py:3286 +#: part/models.py:3350 msgid "Currency used to cache pricing calculations" msgstr "" -#: part/models.py:3302 +#: part/models.py:3366 msgid "Minimum BOM Cost" msgstr "" -#: part/models.py:3303 +#: part/models.py:3367 msgid "Minimum cost of component parts" msgstr "" -#: part/models.py:3309 +#: part/models.py:3373 msgid "Maximum BOM Cost" msgstr "" -#: part/models.py:3310 +#: part/models.py:3374 msgid "Maximum cost of component parts" msgstr "" -#: part/models.py:3316 +#: part/models.py:3380 msgid "Minimum Purchase Cost" msgstr "" -#: part/models.py:3317 +#: part/models.py:3381 msgid "Minimum historical purchase cost" msgstr "" -#: part/models.py:3323 +#: part/models.py:3387 msgid "Maximum Purchase Cost" msgstr "" -#: part/models.py:3324 +#: part/models.py:3388 msgid "Maximum historical purchase cost" msgstr "" -#: part/models.py:3330 +#: part/models.py:3394 msgid "Minimum Internal Price" msgstr "" -#: part/models.py:3331 +#: part/models.py:3395 msgid "Minimum cost based on internal price breaks" msgstr "" -#: part/models.py:3337 +#: part/models.py:3401 msgid "Maximum Internal Price" msgstr "" -#: part/models.py:3338 +#: part/models.py:3402 msgid "Maximum cost based on internal price breaks" msgstr "" -#: part/models.py:3344 +#: part/models.py:3408 msgid "Minimum Supplier Price" msgstr "" -#: part/models.py:3345 +#: part/models.py:3409 msgid "Minimum price of part from external suppliers" msgstr "" -#: part/models.py:3351 +#: part/models.py:3415 msgid "Maximum Supplier Price" msgstr "" -#: part/models.py:3352 +#: part/models.py:3416 msgid "Maximum price of part from external suppliers" msgstr "" -#: part/models.py:3358 +#: part/models.py:3422 msgid "Minimum Variant Cost" msgstr "" -#: part/models.py:3359 +#: part/models.py:3423 msgid "Calculated minimum cost of variant parts" msgstr "" -#: part/models.py:3365 +#: part/models.py:3429 msgid "Maximum Variant Cost" msgstr "" -#: part/models.py:3366 +#: part/models.py:3430 msgid "Calculated maximum cost of variant parts" msgstr "" -#: part/models.py:3372 part/models.py:3386 +#: part/models.py:3436 part/models.py:3450 msgid "Minimum Cost" msgstr "" -#: part/models.py:3373 +#: part/models.py:3437 msgid "Override minimum cost" msgstr "" -#: part/models.py:3379 part/models.py:3393 +#: part/models.py:3443 part/models.py:3457 msgid "Maximum Cost" msgstr "" -#: part/models.py:3380 +#: part/models.py:3444 msgid "Override maximum cost" msgstr "" -#: part/models.py:3387 +#: part/models.py:3451 msgid "Calculated overall minimum cost" msgstr "" -#: part/models.py:3394 +#: part/models.py:3458 msgid "Calculated overall maximum cost" msgstr "" -#: part/models.py:3400 +#: part/models.py:3464 msgid "Minimum Sale Price" msgstr "" -#: part/models.py:3401 +#: part/models.py:3465 msgid "Minimum sale price based on price breaks" msgstr "" -#: part/models.py:3407 +#: part/models.py:3471 msgid "Maximum Sale Price" msgstr "" -#: part/models.py:3408 +#: part/models.py:3472 msgid "Maximum sale price based on price breaks" msgstr "" -#: part/models.py:3414 +#: part/models.py:3478 msgid "Minimum Sale Cost" msgstr "" -#: part/models.py:3415 +#: part/models.py:3479 msgid "Minimum historical sale price" msgstr "" -#: part/models.py:3421 +#: part/models.py:3485 msgid "Maximum Sale Cost" msgstr "" -#: part/models.py:3422 +#: part/models.py:3486 msgid "Maximum historical sale price" msgstr "" -#: part/models.py:3440 +#: part/models.py:3504 msgid "Part for stocktake" msgstr "" -#: part/models.py:3445 +#: part/models.py:3509 msgid "Item Count" msgstr "" -#: part/models.py:3446 +#: part/models.py:3510 msgid "Number of individual stock entries at time of stocktake" msgstr "" -#: part/models.py:3454 +#: part/models.py:3518 msgid "Total available stock at time of stocktake" msgstr "" -#: part/models.py:3458 report/templates/report/inventree_test_report.html:106 +#: part/models.py:3522 report/templates/report/inventree_test_report.html:106 msgid "Date" msgstr "" -#: part/models.py:3459 +#: part/models.py:3523 msgid "Date stocktake was performed" msgstr "" -#: part/models.py:3466 +#: part/models.py:3530 msgid "Minimum Stock Cost" msgstr "" -#: part/models.py:3467 +#: part/models.py:3531 msgid "Estimated minimum cost of stock on hand" msgstr "" -#: part/models.py:3473 +#: part/models.py:3537 msgid "Maximum Stock Cost" msgstr "" -#: part/models.py:3474 +#: part/models.py:3538 msgid "Estimated maximum cost of stock on hand" msgstr "" -#: part/models.py:3484 +#: part/models.py:3548 msgid "Part Sale Price Break" msgstr "" -#: part/models.py:3596 +#: part/models.py:3660 msgid "Part Test Template" msgstr "" -#: part/models.py:3622 +#: part/models.py:3686 msgid "Invalid template name - must include at least one alphanumeric character" msgstr "" -#: part/models.py:3643 part/models.py:3816 -msgid "Choices must be unique" -msgstr "" - -#: part/models.py:3654 +#: part/models.py:3718 msgid "Test templates can only be created for testable parts" msgstr "" -#: part/models.py:3668 +#: part/models.py:3732 msgid "Test template with the same key already exists for part" msgstr "" -#: part/models.py:3685 +#: part/models.py:3749 msgid "Test Name" msgstr "Test Adı" -#: part/models.py:3686 +#: part/models.py:3750 msgid "Enter a name for the test" msgstr "" -#: part/models.py:3692 +#: part/models.py:3756 msgid "Test Key" msgstr "" -#: part/models.py:3693 +#: part/models.py:3757 msgid "Simplified key for the test" msgstr "" -#: part/models.py:3700 +#: part/models.py:3764 msgid "Test Description" msgstr "Test Açıklaması" -#: part/models.py:3701 +#: part/models.py:3765 msgid "Enter description for this test" msgstr "" -#: part/models.py:3705 report/models.py:287 -msgid "Enabled" -msgstr "Etkin" - -#: part/models.py:3705 +#: part/models.py:3769 msgid "Is this test enabled?" msgstr "" -#: part/models.py:3710 +#: part/models.py:3774 msgid "Required" msgstr "Gerekli" -#: part/models.py:3711 +#: part/models.py:3775 msgid "Is this test required to pass?" msgstr "Testi geçmesi için bu gerekli mi?" -#: part/models.py:3716 +#: part/models.py:3780 msgid "Requires Value" msgstr "" -#: part/models.py:3717 +#: part/models.py:3781 msgid "Does this test require a value when adding a test result?" msgstr "" -#: part/models.py:3722 +#: part/models.py:3786 msgid "Requires Attachment" msgstr "" -#: part/models.py:3724 +#: part/models.py:3788 msgid "Does this test require a file attachment when adding a test result?" msgstr "" -#: part/models.py:3730 part/models.py:3878 -msgid "Choices" -msgstr "" - -#: part/models.py:3731 +#: part/models.py:3795 msgid "Valid choices for this test (comma-separated)" msgstr "" -#: part/models.py:3764 -msgid "Part Parameter Template" -msgstr "" - -#: part/models.py:3791 -msgid "Checkbox parameters cannot have units" -msgstr "" - -#: part/models.py:3796 -msgid "Checkbox parameters cannot have choices" -msgstr "" - -#: part/models.py:3833 -msgid "Parameter template name must be unique" -msgstr "Parametre şablon adı benzersiz olmalıdır" - -#: part/models.py:3851 -msgid "Parameter Name" -msgstr "" - -#: part/models.py:3858 -msgid "Physical units for this parameter" -msgstr "" - -#: part/models.py:3866 -msgid "Parameter description" -msgstr "" - -#: part/models.py:3872 -msgid "Checkbox" -msgstr "" - -#: part/models.py:3873 -msgid "Is this parameter a checkbox?" -msgstr "" - -#: part/models.py:3879 -msgid "Valid choices for this parameter (comma-separated)" -msgstr "" - -#: part/models.py:3890 -msgid "Selection list for this parameter" -msgstr "" - -#: part/models.py:3932 -msgid "Part Parameter" -msgstr "" - -#: part/models.py:3958 -msgid "Parameter cannot be modified - part is locked" -msgstr "" - -#: part/models.py:3996 -msgid "Invalid choice for parameter value" -msgstr "" - -#: part/models.py:4047 -msgid "Parent Part" -msgstr "" - -#: part/models.py:4055 part/models.py:4170 part/models.py:4171 -msgid "Parameter Template" -msgstr "Parametre Şablonu" - -#: part/models.py:4061 -msgid "Parameter Value" -msgstr "" - -#: part/models.py:4071 stock/serializers.py:718 -msgid "Optional note field" -msgstr "" - -#: part/models.py:4118 -msgid "Part Category Parameter Template" -msgstr "" - -#: part/models.py:4177 -msgid "Default Value" -msgstr "" - -#: part/models.py:4178 -msgid "Default Parameter Value" -msgstr "" - -#: part/models.py:4352 +#: part/models.py:3977 msgid "BOM item cannot be modified - assembly is locked" msgstr "" -#: part/models.py:4359 +#: part/models.py:3984 msgid "BOM item cannot be modified - variant assembly is locked" msgstr "" -#: part/models.py:4369 +#: part/models.py:3994 msgid "Select parent part" msgstr "" -#: part/models.py:4379 +#: part/models.py:4004 msgid "Sub part" msgstr "" -#: part/models.py:4380 +#: part/models.py:4005 msgid "Select part to be used in BOM" msgstr "" -#: part/models.py:4391 +#: part/models.py:4016 msgid "BOM quantity for this BOM item" msgstr "" -#: part/models.py:4397 +#: part/models.py:4022 msgid "This BOM item is optional" msgstr "" -#: part/models.py:4403 +#: part/models.py:4028 msgid "This BOM item is consumable (it is not tracked in build orders)" msgstr "" -#: part/models.py:4411 +#: part/models.py:4036 msgid "Setup Quantity" msgstr "" -#: part/models.py:4412 +#: part/models.py:4037 msgid "Extra required quantity for a build, to account for setup losses" msgstr "" -#: part/models.py:4420 +#: part/models.py:4045 msgid "Attrition" msgstr "" -#: part/models.py:4422 +#: part/models.py:4047 msgid "Estimated attrition for a build, expressed as a percentage (0-100)" msgstr "" -#: part/models.py:4433 +#: part/models.py:4058 msgid "Rounding Multiple" msgstr "" -#: part/models.py:4435 +#: part/models.py:4060 msgid "Round up required production quantity to nearest multiple of this value" msgstr "" -#: part/models.py:4443 +#: part/models.py:4068 msgid "BOM item reference" msgstr "" -#: part/models.py:4451 +#: part/models.py:4076 msgid "BOM item notes" msgstr "" -#: part/models.py:4457 +#: part/models.py:4082 msgid "Checksum" msgstr "" -#: part/models.py:4458 +#: part/models.py:4083 msgid "BOM line checksum" msgstr "" -#: part/models.py:4463 +#: part/models.py:4088 msgid "Validated" msgstr "" -#: part/models.py:4464 +#: part/models.py:4089 msgid "This BOM item has been validated" msgstr "" -#: part/models.py:4469 +#: part/models.py:4094 msgid "Gets inherited" msgstr "" -#: part/models.py:4470 +#: part/models.py:4095 msgid "This BOM item is inherited by BOMs for variant parts" msgstr "Bu malzeme listesi, çeşit parçalar listesini kalıtsalıdır" -#: part/models.py:4476 +#: part/models.py:4101 msgid "Stock items for variant parts can be used for this BOM item" msgstr "Çeşit parçaların stok kalemleri bu malzeme listesinde kullanılabilir" -#: part/models.py:4583 stock/models.py:925 +#: part/models.py:4208 stock/models.py:925 msgid "Quantity must be integer value for trackable parts" msgstr "" -#: part/models.py:4593 part/models.py:4595 +#: part/models.py:4218 part/models.py:4220 msgid "Sub part must be specified" msgstr "" -#: part/models.py:4746 +#: part/models.py:4371 msgid "BOM Item Substitute" msgstr "" -#: part/models.py:4767 +#: part/models.py:4392 msgid "Substitute part cannot be the same as the master part" msgstr "" -#: part/models.py:4780 +#: part/models.py:4405 msgid "Parent BOM item" msgstr "" -#: part/models.py:4788 +#: part/models.py:4413 msgid "Substitute part" msgstr "" -#: part/models.py:4804 +#: part/models.py:4429 msgid "Part 1" msgstr "" -#: part/models.py:4812 +#: part/models.py:4437 msgid "Part 2" msgstr "" -#: part/models.py:4813 +#: part/models.py:4438 msgid "Select Related Part" msgstr "" -#: part/models.py:4820 +#: part/models.py:4445 msgid "Note for this relationship" msgstr "" -#: part/models.py:4839 +#: part/models.py:4464 msgid "Part relationship cannot be created between a part and itself" msgstr "" -#: part/models.py:4844 +#: part/models.py:4469 msgid "Duplicate relationship already exists" msgstr "" -#: part/serializers.py:114 +#: part/serializers.py:113 msgid "Parent Category" msgstr "" -#: part/serializers.py:115 +#: part/serializers.py:114 msgid "Parent part category" msgstr "" -#: part/serializers.py:123 part/serializers.py:164 +#: part/serializers.py:122 part/serializers.py:163 msgid "Subcategories" msgstr "Alt kategoriler" -#: part/serializers.py:203 +#: part/serializers.py:202 msgid "Results" msgstr "" -#: part/serializers.py:204 +#: part/serializers.py:203 msgid "Number of results recorded against this template" msgstr "" -#: part/serializers.py:235 part/serializers.py:253 stock/serializers.py:643 +#: part/serializers.py:234 part/serializers.py:252 stock/serializers.py:643 msgid "Purchase currency of this stock item" msgstr "" -#: part/serializers.py:280 +#: part/serializers.py:279 msgid "File is not an image" msgstr "" -#: part/serializers.py:311 -msgid "Number of parts using this template" -msgstr "" - -#: part/serializers.py:471 +#: part/serializers.py:382 msgid "Original Part" msgstr "" -#: part/serializers.py:472 +#: part/serializers.py:383 msgid "Select original part to duplicate" msgstr "" -#: part/serializers.py:477 +#: part/serializers.py:388 msgid "Copy Image" msgstr "" -#: part/serializers.py:478 +#: part/serializers.py:389 msgid "Copy image from original part" msgstr "" -#: part/serializers.py:484 +#: part/serializers.py:395 msgid "Copy BOM" msgstr "" -#: part/serializers.py:485 +#: part/serializers.py:396 msgid "Copy bill of materials from original part" msgstr "" -#: part/serializers.py:491 +#: part/serializers.py:402 msgid "Copy Parameters" msgstr "" -#: part/serializers.py:492 +#: part/serializers.py:403 msgid "Copy parameter data from original part" msgstr "" -#: part/serializers.py:498 +#: part/serializers.py:409 msgid "Copy Notes" msgstr "" -#: part/serializers.py:499 +#: part/serializers.py:410 msgid "Copy notes from original part" msgstr "" -#: part/serializers.py:505 +#: part/serializers.py:416 msgid "Copy Tests" msgstr "" -#: part/serializers.py:506 +#: part/serializers.py:417 msgid "Copy test templates from original part" msgstr "" -#: part/serializers.py:524 +#: part/serializers.py:435 msgid "Initial Stock Quantity" msgstr "" -#: part/serializers.py:526 +#: part/serializers.py:437 msgid "Specify initial stock quantity for this Part. If quantity is zero, no stock is added." msgstr "" -#: part/serializers.py:533 +#: part/serializers.py:444 msgid "Initial Stock Location" msgstr "" -#: part/serializers.py:534 +#: part/serializers.py:445 msgid "Specify initial stock location for this Part" msgstr "" -#: part/serializers.py:551 +#: part/serializers.py:462 msgid "Select supplier (or leave blank to skip)" msgstr "" -#: part/serializers.py:567 +#: part/serializers.py:478 msgid "Select manufacturer (or leave blank to skip)" msgstr "" -#: part/serializers.py:577 +#: part/serializers.py:488 msgid "Manufacturer part number" msgstr "" -#: part/serializers.py:584 +#: part/serializers.py:495 msgid "Selected company is not a valid supplier" msgstr "" -#: part/serializers.py:593 +#: part/serializers.py:504 msgid "Selected company is not a valid manufacturer" msgstr "" -#: part/serializers.py:604 +#: part/serializers.py:515 msgid "Manufacturer part matching this MPN already exists" msgstr "" -#: part/serializers.py:611 +#: part/serializers.py:522 msgid "Supplier part matching this SKU already exists" msgstr "" -#: part/serializers.py:914 +#: part/serializers.py:799 msgid "Category Name" msgstr "" -#: part/serializers.py:943 +#: part/serializers.py:828 msgid "Building" msgstr "" -#: part/serializers.py:944 +#: part/serializers.py:829 msgid "Quantity of this part currently being in production" msgstr "" -#: part/serializers.py:951 +#: part/serializers.py:836 msgid "Outstanding quantity of this part scheduled to be built" msgstr "" -#: part/serializers.py:971 stock/serializers.py:1019 stock/serializers.py:1189 +#: part/serializers.py:856 stock/serializers.py:1019 stock/serializers.py:1189 #: users/ruleset.py:30 msgid "Stock Items" msgstr "Stok Kalemleri" -#: part/serializers.py:975 +#: part/serializers.py:860 msgid "Revisions" msgstr "" -#: part/serializers.py:979 +#: part/serializers.py:864 msgid "Suppliers" msgstr "" -#: part/serializers.py:983 part/serializers.py:1297 +#: part/serializers.py:868 part/serializers.py:1162 #: templates/email/low_stock_notification.html:16 #: templates/email/part_event_notification.html:17 msgid "Total Stock" msgstr "" -#: part/serializers.py:991 +#: part/serializers.py:876 msgid "Unallocated Stock" msgstr "" -#: part/serializers.py:999 +#: part/serializers.py:884 msgid "Variant Stock" msgstr "" -#: part/serializers.py:1054 +#: part/serializers.py:943 msgid "Duplicate Part" msgstr "" -#: part/serializers.py:1055 +#: part/serializers.py:944 msgid "Copy initial data from another Part" msgstr "" -#: part/serializers.py:1061 +#: part/serializers.py:950 msgid "Initial Stock" msgstr "" -#: part/serializers.py:1062 +#: part/serializers.py:951 msgid "Create Part with initial stock quantity" msgstr "" -#: part/serializers.py:1068 +#: part/serializers.py:957 msgid "Supplier Information" msgstr "" -#: part/serializers.py:1069 +#: part/serializers.py:958 msgid "Add initial supplier information for this part" msgstr "" -#: part/serializers.py:1077 +#: part/serializers.py:966 msgid "Copy Category Parameters" msgstr "" -#: part/serializers.py:1078 +#: part/serializers.py:967 msgid "Copy parameter templates from selected part category" msgstr "" -#: part/serializers.py:1083 +#: part/serializers.py:972 msgid "Existing Image" msgstr "" -#: part/serializers.py:1084 +#: part/serializers.py:973 msgid "Filename of an existing part image" msgstr "" -#: part/serializers.py:1101 +#: part/serializers.py:990 msgid "Image file does not exist" msgstr "" -#: part/serializers.py:1269 +#: part/serializers.py:1134 msgid "Validate entire Bill of Materials" msgstr "" -#: part/serializers.py:1303 part/serializers.py:1769 +#: part/serializers.py:1168 part/serializers.py:1634 msgid "Can Build" msgstr "" -#: part/serializers.py:1320 +#: part/serializers.py:1185 msgid "Required for Build Orders" msgstr "" -#: part/serializers.py:1325 +#: part/serializers.py:1190 msgid "Allocated to Build Orders" msgstr "" -#: part/serializers.py:1332 +#: part/serializers.py:1197 msgid "Required for Sales Orders" msgstr "" -#: part/serializers.py:1336 +#: part/serializers.py:1201 msgid "Allocated to Sales Orders" msgstr "" -#: part/serializers.py:1475 +#: part/serializers.py:1340 msgid "Minimum Price" msgstr "" -#: part/serializers.py:1476 +#: part/serializers.py:1341 msgid "Override calculated value for minimum price" msgstr "" -#: part/serializers.py:1483 +#: part/serializers.py:1348 msgid "Minimum price currency" msgstr "" -#: part/serializers.py:1490 +#: part/serializers.py:1355 msgid "Maximum Price" msgstr "" -#: part/serializers.py:1491 +#: part/serializers.py:1356 msgid "Override calculated value for maximum price" msgstr "" -#: part/serializers.py:1498 +#: part/serializers.py:1363 msgid "Maximum price currency" msgstr "" -#: part/serializers.py:1527 +#: part/serializers.py:1392 msgid "Update" msgstr "" -#: part/serializers.py:1528 +#: part/serializers.py:1393 msgid "Update pricing for this part" msgstr "" -#: part/serializers.py:1551 +#: part/serializers.py:1416 #, python-brace-format msgid "Could not convert from provided currencies to {default_currency}" msgstr "" -#: part/serializers.py:1558 +#: part/serializers.py:1423 msgid "Minimum price must not be greater than maximum price" msgstr "" -#: part/serializers.py:1561 +#: part/serializers.py:1426 msgid "Maximum price must not be less than minimum price" msgstr "" -#: part/serializers.py:1715 +#: part/serializers.py:1580 msgid "Select the parent assembly" msgstr "" -#: part/serializers.py:1735 +#: part/serializers.py:1600 msgid "Select the component part" msgstr "" -#: part/serializers.py:1929 +#: part/serializers.py:1802 msgid "Select part to copy BOM from" msgstr "" -#: part/serializers.py:1937 +#: part/serializers.py:1810 msgid "Remove Existing Data" msgstr "" -#: part/serializers.py:1938 +#: part/serializers.py:1811 msgid "Remove existing BOM items before copying" msgstr "" -#: part/serializers.py:1943 +#: part/serializers.py:1816 msgid "Include Inherited" msgstr "" -#: part/serializers.py:1944 +#: part/serializers.py:1817 msgid "Include BOM items which are inherited from templated parts" msgstr "" -#: part/serializers.py:1949 +#: part/serializers.py:1822 msgid "Skip Invalid Rows" msgstr "" -#: part/serializers.py:1950 +#: part/serializers.py:1823 msgid "Enable this option to skip invalid rows" msgstr "" -#: part/serializers.py:1955 +#: part/serializers.py:1828 msgid "Copy Substitute Parts" msgstr "" -#: part/serializers.py:1956 +#: part/serializers.py:1829 msgid "Copy substitute parts when duplicate BOM items" msgstr "" @@ -6927,7 +6974,7 @@ msgstr "" #: plugin/builtin/events/auto_issue_orders.py:19 #: plugin/builtin/exporter/bom_exporter.py:73 #: plugin/builtin/exporter/inventree_exporter.py:17 -#: plugin/builtin/exporter/part_parameter_exporter.py:36 +#: plugin/builtin/exporter/parameter_exporter.py:32 #: plugin/builtin/exporter/stocktake_exporter.py:47 #: plugin/builtin/integration/core_notifications.py:25 #: plugin/builtin/integration/core_notifications.py:69 @@ -7041,23 +7088,19 @@ msgid "Include total quantity of each part in the BOM" msgstr "" #: plugin/builtin/exporter/bom_exporter.py:35 -#: plugin/builtin/exporter/part_parameter_exporter.py:17 msgid "Stock Data" msgstr "" #: plugin/builtin/exporter/bom_exporter.py:35 -#: plugin/builtin/exporter/part_parameter_exporter.py:17 msgid "Include part stock data" msgstr "" #: plugin/builtin/exporter/bom_exporter.py:39 -#: plugin/builtin/exporter/part_parameter_exporter.py:21 #: plugin/builtin/exporter/stocktake_exporter.py:20 msgid "Pricing Data" msgstr "" #: plugin/builtin/exporter/bom_exporter.py:39 -#: plugin/builtin/exporter/part_parameter_exporter.py:21 #: plugin/builtin/exporter/stocktake_exporter.py:20 msgid "Include part pricing data" msgstr "" @@ -7144,12 +7187,20 @@ msgstr "" msgid "Provides support for exporting data from InvenTree" msgstr "" -#: plugin/builtin/exporter/part_parameter_exporter.py:33 -msgid "Part Parameter Exporter" +#: plugin/builtin/exporter/parameter_exporter.py:16 +msgid "Exclude Inactive" msgstr "" -#: plugin/builtin/exporter/part_parameter_exporter.py:34 -msgid "Exporter for part parameter data" +#: plugin/builtin/exporter/parameter_exporter.py:17 +msgid "Exclude parameters which are inactive" +msgstr "" + +#: plugin/builtin/exporter/parameter_exporter.py:29 +msgid "Parameter Exporter" +msgstr "" + +#: plugin/builtin/exporter/parameter_exporter.py:30 +msgid "Exporter for model parameter data" msgstr "" #: plugin/builtin/exporter/stocktake_exporter.py:25 @@ -8079,19 +8130,19 @@ msgstr "" msgid "No result" msgstr "" -#: report/templatetags/report.py:167 +#: report/templatetags/report.py:169 msgid "Asset file does not exist" msgstr "" -#: report/templatetags/report.py:224 report/templatetags/report.py:300 +#: report/templatetags/report.py:226 report/templatetags/report.py:302 msgid "Image file not found" msgstr "" -#: report/templatetags/report.py:325 +#: report/templatetags/report.py:327 msgid "part_image tag requires a Part instance" msgstr "" -#: report/templatetags/report.py:362 +#: report/templatetags/report.py:383 msgid "company_image tag requires a Company instance" msgstr "" @@ -8455,115 +8506,119 @@ msgstr "" msgid "Quantity does not match serial numbers" msgstr "Miktar seri numaları ile eşleşmiyor" -#: stock/models.py:2012 stock/models.py:2917 +#: stock/models.py:1912 +msgid "Cannot assign stock to structural location" +msgstr "" + +#: stock/models.py:2029 stock/models.py:2934 msgid "Test template does not exist" msgstr "" -#: stock/models.py:2030 +#: stock/models.py:2047 msgid "Stock item has been assigned to a sales order" msgstr "" -#: stock/models.py:2034 +#: stock/models.py:2051 msgid "Stock item is installed in another item" msgstr "" -#: stock/models.py:2037 +#: stock/models.py:2054 msgid "Stock item contains other items" msgstr "" -#: stock/models.py:2040 +#: stock/models.py:2057 msgid "Stock item has been assigned to a customer" msgstr "" -#: stock/models.py:2043 stock/models.py:2226 +#: stock/models.py:2060 stock/models.py:2243 msgid "Stock item is currently in production" msgstr "" -#: stock/models.py:2046 +#: stock/models.py:2063 msgid "Serialized stock cannot be merged" msgstr "" -#: stock/models.py:2053 stock/serializers.py:1462 +#: stock/models.py:2070 stock/serializers.py:1462 msgid "Duplicate stock items" msgstr "" -#: stock/models.py:2057 +#: stock/models.py:2074 msgid "Stock items must refer to the same part" msgstr "" -#: stock/models.py:2065 +#: stock/models.py:2082 msgid "Stock items must refer to the same supplier part" msgstr "" -#: stock/models.py:2070 +#: stock/models.py:2087 msgid "Stock status codes must match" msgstr "" -#: stock/models.py:2349 +#: stock/models.py:2366 msgid "StockItem cannot be moved as it is not in stock" msgstr "Stok kalemi stokta olmadığı için taşınamaz" -#: stock/models.py:2818 +#: stock/models.py:2835 msgid "Stock Item Tracking" msgstr "" -#: stock/models.py:2849 +#: stock/models.py:2866 msgid "Entry notes" msgstr "" -#: stock/models.py:2889 +#: stock/models.py:2906 msgid "Stock Item Test Result" msgstr "" -#: stock/models.py:2920 +#: stock/models.py:2937 msgid "Value must be provided for this test" msgstr "" -#: stock/models.py:2924 +#: stock/models.py:2941 msgid "Attachment must be uploaded for this test" msgstr "" -#: stock/models.py:2929 +#: stock/models.py:2946 msgid "Invalid value for this test" msgstr "" -#: stock/models.py:2953 +#: stock/models.py:2970 msgid "Test result" msgstr "" -#: stock/models.py:2960 +#: stock/models.py:2977 msgid "Test output value" msgstr "" -#: stock/models.py:2968 stock/serializers.py:248 +#: stock/models.py:2985 stock/serializers.py:248 msgid "Test result attachment" msgstr "" -#: stock/models.py:2972 +#: stock/models.py:2989 msgid "Test notes" msgstr "" -#: stock/models.py:2980 +#: stock/models.py:2997 msgid "Test station" msgstr "" -#: stock/models.py:2981 +#: stock/models.py:2998 msgid "The identifier of the test station where the test was performed" msgstr "" -#: stock/models.py:2987 +#: stock/models.py:3004 msgid "Started" msgstr "" -#: stock/models.py:2988 +#: stock/models.py:3005 msgid "The timestamp of the test start" msgstr "" -#: stock/models.py:2994 +#: stock/models.py:3011 msgid "Finished" msgstr "" -#: stock/models.py:2995 +#: stock/models.py:3012 msgid "The timestamp of the test finish" msgstr "" @@ -8677,8 +8732,8 @@ msgstr "" msgid "Quantity must not exceed available stock quantity ({q})" msgstr "" -#: stock/serializers.py:711 stock/serializers.py:1419 stock/serializers.py:1732 -#: stock/serializers.py:1781 +#: stock/serializers.py:711 stock/serializers.py:1419 stock/serializers.py:1740 +#: stock/serializers.py:1789 msgid "Destination stock location" msgstr "" @@ -8834,19 +8889,19 @@ msgstr "" msgid "Stock transaction notes" msgstr "" -#: stock/serializers.py:1787 +#: stock/serializers.py:1795 msgid "Merge into existing stock" msgstr "" -#: stock/serializers.py:1788 +#: stock/serializers.py:1796 msgid "Merge returned items into existing stock items if possible" msgstr "" -#: stock/serializers.py:1831 +#: stock/serializers.py:1839 msgid "Next Serial Number" msgstr "" -#: stock/serializers.py:1837 +#: stock/serializers.py:1845 msgid "Previous Serial Number" msgstr "" @@ -8902,83 +8957,87 @@ msgstr "Stok manuel olarak eklendi" msgid "Stock manually removed" msgstr "Stok manuel olarak çıkarıldı" -#: stock/status_codes.py:57 +#: stock/status_codes.py:56 +msgid "Serialized stock items" +msgstr "" + +#: stock/status_codes.py:58 msgid "Returned to stock" msgstr "" -#: stock/status_codes.py:60 +#: stock/status_codes.py:61 msgid "Location changed" msgstr "Konum değişti" -#: stock/status_codes.py:61 +#: stock/status_codes.py:62 msgid "Stock updated" msgstr "Stok Güncellendi" -#: stock/status_codes.py:64 +#: stock/status_codes.py:65 msgid "Installed into assembly" msgstr "Montajda kullanıldı" -#: stock/status_codes.py:65 +#: stock/status_codes.py:66 msgid "Removed from assembly" msgstr "Montajdan çıkarıldı" -#: stock/status_codes.py:67 +#: stock/status_codes.py:68 msgid "Installed component item" msgstr "Bileşen ögesinde kullanıldı" -#: stock/status_codes.py:68 +#: stock/status_codes.py:69 msgid "Removed component item" msgstr "Bileşen ögesinden çıkarıldı" -#: stock/status_codes.py:71 +#: stock/status_codes.py:72 msgid "Split from parent item" msgstr "Üst ögeden ayır" -#: stock/status_codes.py:72 +#: stock/status_codes.py:73 msgid "Split child item" msgstr "Alt ögeyi ayır" -#: stock/status_codes.py:75 +#: stock/status_codes.py:76 msgid "Merged stock items" msgstr "Stok parçalarını birleştir" -#: stock/status_codes.py:78 +#: stock/status_codes.py:79 msgid "Converted to variant" msgstr "" -#: stock/status_codes.py:81 +#: stock/status_codes.py:82 msgid "Build order output created" msgstr "Yapım emri çıktısı oluşturuldu" -#: stock/status_codes.py:82 +#: stock/status_codes.py:83 msgid "Build order output completed" msgstr "Yapım emri çıktısı tamamlandı" -#: stock/status_codes.py:83 +#: stock/status_codes.py:84 msgid "Build order output rejected" msgstr "" -#: stock/status_codes.py:84 +#: stock/status_codes.py:85 msgid "Consumed by build order" msgstr "" -#: stock/status_codes.py:87 +#: stock/status_codes.py:88 msgid "Shipped against Sales Order" msgstr "" -#: stock/status_codes.py:90 +#: stock/status_codes.py:91 msgid "Received against Purchase Order" msgstr "" -#: stock/status_codes.py:93 +#: stock/status_codes.py:94 msgid "Returned against Return Order" msgstr "" -#: stock/status_codes.py:96 +#: stock/status_codes.py:97 msgid "Sent to customer" msgstr "Müşteriye gönderildi" -#: stock/status_codes.py:97 +#: stock/status_codes.py:98 msgid "Returned from customer" msgstr "Müşteriden geri döndü" diff --git a/src/backend/InvenTree/locale/uk/LC_MESSAGES/django.po b/src/backend/InvenTree/locale/uk/LC_MESSAGES/django.po index b4e1c4e932..e16b1afdab 100644 --- a/src/backend/InvenTree/locale/uk/LC_MESSAGES/django.po +++ b/src/backend/InvenTree/locale/uk/LC_MESSAGES/django.po @@ -2,8 +2,8 @@ msgid "" msgstr "" "Project-Id-Version: inventree\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-11-19 04:55+0000\n" -"PO-Revision-Date: 2025-11-19 04:59\n" +"POT-Creation-Date: 2025-12-07 07:33+0000\n" +"PO-Revision-Date: 2025-12-07 07:36\n" "Last-Translator: \n" "Language-Team: Ukrainian\n" "Language: uk_UA\n" @@ -57,7 +57,7 @@ msgstr "" msgid "This field must be unique." msgstr "" -#: InvenTree/api.py:775 +#: InvenTree/api.py:803 msgid "User does not have permission to view this model" msgstr "У користувача немає дозволу на перегляд цієї моделі" @@ -81,22 +81,22 @@ msgstr "Вказана основна адреса електронної пош msgid "The provided email domain is not approved." msgstr "Наданий домен електронної пошти не затверджено." -#: InvenTree/conversion.py:166 +#: InvenTree/conversion.py:240 #, python-brace-format msgid "Invalid unit provided ({unit})" msgstr "Надано неправильну одиницю виміру ({unit})" -#: InvenTree/conversion.py:183 +#: InvenTree/conversion.py:257 msgid "No value provided" msgstr "Значення не вказане" -#: InvenTree/conversion.py:210 +#: InvenTree/conversion.py:284 #, python-brace-format msgid "Could not convert {original} to {unit}" msgstr "Не вдалося перетворити {original} на {unit}" -#: InvenTree/conversion.py:212 InvenTree/conversion.py:226 -#: InvenTree/helpers.py:597 order/models.py:720 order/models.py:1015 +#: InvenTree/conversion.py:286 InvenTree/conversion.py:300 +#: InvenTree/helpers.py:597 order/models.py:721 order/models.py:1016 msgid "Invalid quantity provided" msgstr "Невірна кількість" @@ -112,11 +112,11 @@ msgstr "Введіть дату" msgid "Invalid decimal value" msgstr "Неправильне десяткове значення" -#: InvenTree/fields.py:218 InvenTree/models.py:1067 build/serializers.py:509 -#: build/serializers.py:580 build/serializers.py:1788 company/models.py:857 -#: order/models.py:1780 +#: InvenTree/fields.py:218 InvenTree/models.py:1228 build/serializers.py:517 +#: build/serializers.py:588 build/serializers.py:1796 company/models.py:811 +#: order/models.py:1781 #: report/templates/report/inventree_build_order_report.html:172 -#: stock/models.py:2848 stock/models.py:2972 stock/serializers.py:717 +#: stock/models.py:2865 stock/models.py:2989 stock/serializers.py:717 #: stock/serializers.py:893 stock/serializers.py:1035 stock/serializers.py:1336 #: stock/serializers.py:1425 stock/serializers.py:1624 msgid "Notes" @@ -171,35 +171,35 @@ msgstr "Видаліть HTML тег з цього значення" msgid "Data contains prohibited markdown content" msgstr "Дані містять заборонений вміст у форматі Markdown" -#: InvenTree/helpers_model.py:133 +#: InvenTree/helpers_model.py:134 msgid "Connection error" msgstr "Помилка підключення" -#: InvenTree/helpers_model.py:138 InvenTree/helpers_model.py:145 +#: InvenTree/helpers_model.py:139 InvenTree/helpers_model.py:146 msgid "Server responded with invalid status code" msgstr "Сервер відправив некоректний код статусу" -#: InvenTree/helpers_model.py:141 +#: InvenTree/helpers_model.py:142 msgid "Exception occurred" msgstr "Відбулося виключення" -#: InvenTree/helpers_model.py:151 +#: InvenTree/helpers_model.py:152 msgid "Server responded with invalid Content-Length value" msgstr "Сервер повернув невірне значення Content-Length" -#: InvenTree/helpers_model.py:154 +#: InvenTree/helpers_model.py:155 msgid "Image size is too large" msgstr "Розмір зображення занадто великий" -#: InvenTree/helpers_model.py:166 +#: InvenTree/helpers_model.py:167 msgid "Image download exceeded maximum size" msgstr "Розмір зображення перевищує максимально дозволений розмір" -#: InvenTree/helpers_model.py:171 +#: InvenTree/helpers_model.py:172 msgid "Remote server returned empty response" msgstr "Віддалений сервер повернув пусту відповідь" -#: InvenTree/helpers_model.py:179 +#: InvenTree/helpers_model.py:180 msgid "Supplied URL is not a valid image file" msgstr "" @@ -207,7 +207,7 @@ msgstr "" msgid "Log in to the app" msgstr "Авторизуватися в додатку" -#: InvenTree/magic_login.py:41 company/models.py:172 users/serializers.py:198 +#: InvenTree/magic_login.py:41 company/models.py:173 users/serializers.py:198 msgid "Email" msgstr "Електронна пошта" @@ -215,160 +215,176 @@ msgstr "Електронна пошта" msgid "You must enable two-factor authentication before doing anything else." msgstr "Необхідно увімкнути двофакторну автентифікацію, перед тим як робити будь-що інше." -#: InvenTree/models.py:111 +#: InvenTree/models.py:114 msgid "Error running plugin validation" msgstr "" -#: InvenTree/models.py:192 +#: InvenTree/models.py:195 msgid "Metadata must be a python dict object" msgstr "" -#: InvenTree/models.py:198 +#: InvenTree/models.py:201 msgid "Plugin Metadata" msgstr "" -#: InvenTree/models.py:199 +#: InvenTree/models.py:202 msgid "JSON metadata field, for use by external plugins" msgstr "" -#: InvenTree/models.py:382 +#: InvenTree/models.py:385 msgid "Improperly formatted pattern" msgstr "" -#: InvenTree/models.py:389 +#: InvenTree/models.py:392 msgid "Unknown format key specified" msgstr "" -#: InvenTree/models.py:395 +#: InvenTree/models.py:398 msgid "Missing required format key" msgstr "" -#: InvenTree/models.py:406 +#: InvenTree/models.py:409 msgid "Reference field cannot be empty" msgstr "" -#: InvenTree/models.py:414 +#: InvenTree/models.py:417 msgid "Reference must match required pattern" msgstr "" -#: InvenTree/models.py:445 +#: InvenTree/models.py:448 msgid "Reference number is too large" msgstr "" -#: InvenTree/models.py:743 +#: InvenTree/models.py:896 msgid "Invalid choice" msgstr "" -#: InvenTree/models.py:856 common/models.py:1410 common/models.py:1837 -#: common/models.py:2096 common/models.py:2221 common/serializers.py:535 -#: company/models.py:615 generic/states/serializers.py:20 machine/models.py:25 -#: part/models.py:1039 part/models.py:3850 plugin/models.py:54 +#: InvenTree/models.py:1017 common/models.py:1414 common/models.py:1841 +#: common/models.py:2102 common/models.py:2227 common/models.py:2494 +#: common/serializers.py:539 generic/states/serializers.py:20 +#: machine/models.py:25 part/models.py:1127 plugin/models.py:54 #: report/models.py:216 stock/models.py:84 msgid "Name" msgstr "Назва" -#: InvenTree/models.py:862 build/models.py:252 common/models.py:171 -#: common/models.py:2228 common/models.py:2341 company/models.py:543 -#: company/models.py:848 order/models.py:442 order/models.py:1825 -#: part/models.py:1062 part/models.py:3865 report/models.py:222 +#: InvenTree/models.py:1023 build/models.py:253 common/models.py:175 +#: common/models.py:2234 common/models.py:2347 common/models.py:2509 +#: company/models.py:545 company/models.py:802 order/models.py:443 +#: order/models.py:1826 part/models.py:1150 report/models.py:222 #: report/models.py:815 report/models.py:841 #: report/templates/report/inventree_build_order_report.html:117 #: stock/models.py:90 msgid "Description" msgstr "Опис" -#: InvenTree/models.py:863 stock/models.py:91 +#: InvenTree/models.py:1024 stock/models.py:91 msgid "Description (optional)" msgstr "Опис (опціонально)" -#: InvenTree/models.py:878 common/models.py:2394 +#: InvenTree/models.py:1039 common/models.py:2815 msgid "Path" msgstr "Шлях" -#: InvenTree/models.py:983 +#: InvenTree/models.py:1144 msgid "Duplicate names cannot exist under the same parent" msgstr "" -#: InvenTree/models.py:1067 +#: InvenTree/models.py:1228 msgid "Markdown notes (optional)" msgstr "Примітки в Markdown (опціонально)" -#: InvenTree/models.py:1098 +#: InvenTree/models.py:1259 msgid "Barcode Data" msgstr "" -#: InvenTree/models.py:1099 +#: InvenTree/models.py:1260 msgid "Third party barcode data" msgstr "" -#: InvenTree/models.py:1105 +#: InvenTree/models.py:1266 msgid "Barcode Hash" msgstr "" -#: InvenTree/models.py:1106 +#: InvenTree/models.py:1267 msgid "Unique hash of barcode data" msgstr "" -#: InvenTree/models.py:1187 +#: InvenTree/models.py:1348 msgid "Existing barcode found" msgstr "" -#: InvenTree/models.py:1269 +#: InvenTree/models.py:1430 msgid "Task Failure" msgstr "" -#: InvenTree/models.py:1270 +#: InvenTree/models.py:1431 #, python-brace-format msgid "Background worker task '{f}' failed after {n} attempts" msgstr "" -#: InvenTree/models.py:1297 +#: InvenTree/models.py:1458 msgid "Server Error" msgstr "Помилка сервера" -#: InvenTree/models.py:1298 +#: InvenTree/models.py:1459 msgid "An error has been logged by the server." msgstr "" -#: InvenTree/models.py:1340 common/models.py:1748 +#: InvenTree/models.py:1501 common/models.py:1752 #: report/templates/report/inventree_bill_of_materials_report.html:126 #: report/templates/report/inventree_bill_of_materials_report.html:148 #: report/templates/report/inventree_return_order_report.html:35 msgid "Image" msgstr "Зображення" -#: InvenTree/serializers.py:253 part/models.py:4571 +#: InvenTree/serializers.py:255 part/models.py:4196 msgid "Must be a valid number" msgstr "" -#: InvenTree/serializers.py:295 company/models.py:214 part/models.py:3285 +#: InvenTree/serializers.py:297 company/models.py:215 part/models.py:3349 msgid "Currency" msgstr "" -#: InvenTree/serializers.py:298 part/serializers.py:1385 +#: InvenTree/serializers.py:300 part/serializers.py:1250 msgid "Select currency from available options" msgstr "" -#: InvenTree/serializers.py:653 +#: InvenTree/serializers.py:654 +msgid "This field may not be null." +msgstr "" + +#: InvenTree/serializers.py:660 msgid "Invalid value" msgstr "" -#: InvenTree/serializers.py:690 +#: InvenTree/serializers.py:697 msgid "Remote Image" msgstr "" -#: InvenTree/serializers.py:691 +#: InvenTree/serializers.py:698 msgid "URL of remote image file" msgstr "" -#: InvenTree/serializers.py:709 +#: InvenTree/serializers.py:716 msgid "Downloading images from remote URL is not enabled" msgstr "" -#: InvenTree/serializers.py:716 +#: InvenTree/serializers.py:723 msgid "Failed to download image from remote URL" msgstr "" +#: InvenTree/serializers.py:806 +msgid "Invalid content type format" +msgstr "" + +#: InvenTree/serializers.py:809 +msgid "Content type not found" +msgstr "" + +#: InvenTree/serializers.py:815 +msgid "Content type does not match required mixin class" +msgstr "" + #: InvenTree/setting/locales.py:20 msgid "Arabic" msgstr "" @@ -537,30 +553,30 @@ msgstr "" msgid "Not a valid currency code" msgstr "" -#: build/api.py:54 order/api.py:111 order/api.py:270 order/api.py:1373 -#: order/serializers.py:132 +#: build/api.py:54 order/api.py:116 order/api.py:275 order/api.py:1378 +#: order/serializers.py:133 msgid "Order Status" msgstr "" -#: build/api.py:80 build/models.py:264 +#: build/api.py:80 build/models.py:265 msgid "Parent Build" msgstr "" -#: build/api.py:84 build/api.py:831 order/api.py:547 order/api.py:770 -#: order/api.py:1174 order/api.py:1449 stock/api.py:573 +#: build/api.py:84 build/api.py:837 order/api.py:553 order/api.py:776 +#: order/api.py:1179 order/api.py:1454 stock/api.py:573 msgid "Include Variants" msgstr "" -#: build/api.py:100 build/api.py:466 build/api.py:845 build/models.py:270 -#: build/serializers.py:1225 build/serializers.py:1356 -#: build/serializers.py:1427 company/models.py:1067 company/serializers.py:445 -#: order/api.py:298 order/api.py:302 order/api.py:929 order/api.py:1187 -#: order/api.py:1190 order/models.py:1941 order/models.py:2108 -#: order/models.py:2109 part/api.py:1233 part/api.py:1236 part/api.py:1302 -#: part/api.py:1589 part/models.py:472 part/models.py:3296 part/models.py:3439 -#: part/models.py:3497 part/models.py:3518 part/models.py:3540 -#: part/models.py:3679 part/models.py:4046 part/models.py:4368 -#: part/models.py:4787 part/serializers.py:1928 +#: build/api.py:100 build/api.py:472 build/api.py:851 build/models.py:271 +#: build/serializers.py:1233 build/serializers.py:1364 +#: build/serializers.py:1435 company/models.py:1021 company/serializers.py:490 +#: order/api.py:303 order/api.py:307 order/api.py:934 order/api.py:1192 +#: order/api.py:1195 order/models.py:1942 order/models.py:2109 +#: order/models.py:2110 part/api.py:1160 part/api.py:1163 part/api.py:1314 +#: part/models.py:550 part/models.py:3360 part/models.py:3503 +#: part/models.py:3561 part/models.py:3582 part/models.py:3604 +#: part/models.py:3743 part/models.py:3993 part/models.py:4412 +#: part/serializers.py:1801 #: report/templates/report/inventree_bill_of_materials_report.html:110 #: report/templates/report/inventree_bill_of_materials_report.html:137 #: report/templates/report/inventree_build_order_report.html:109 @@ -580,9 +596,9 @@ msgstr "" msgid "Part" msgstr "Деталь" -#: build/api.py:120 build/api.py:123 build/serializers.py:1438 part/api.py:980 -#: part/api.py:1316 part/api.py:1600 part/models.py:1080 part/models.py:3568 -#: part/models.py:4162 part/serializers.py:1752 stock/api.py:869 +#: build/api.py:120 build/api.py:123 build/serializers.py:1446 part/api.py:975 +#: part/api.py:1325 part/models.py:435 part/models.py:1168 part/models.py:3632 +#: part/serializers.py:1617 stock/api.py:869 msgid "Category" msgstr "" @@ -590,7 +606,7 @@ msgstr "" msgid "Ancestor Build" msgstr "" -#: build/api.py:152 order/api.py:129 +#: build/api.py:152 order/api.py:134 msgid "Assigned to me" msgstr "" @@ -638,134 +654,134 @@ msgstr "" msgid "Completed after" msgstr "" -#: build/api.py:249 order/api.py:226 +#: build/api.py:249 order/api.py:231 msgid "Min Date" msgstr "" -#: build/api.py:272 order/api.py:245 +#: build/api.py:272 order/api.py:250 msgid "Max Date" msgstr "" -#: build/api.py:297 build/api.py:300 part/api.py:217 stock/api.py:961 +#: build/api.py:297 build/api.py:300 part/api.py:212 stock/api.py:961 msgid "Exclude Tree" msgstr "" -#: build/api.py:405 +#: build/api.py:411 msgid "Build must be cancelled before it can be deleted" msgstr "" -#: build/api.py:449 build/serializers.py:1374 part/models.py:4402 +#: build/api.py:455 build/serializers.py:1382 part/models.py:4027 msgid "Consumable" msgstr "Розхідний матеріал" -#: build/api.py:452 build/serializers.py:1377 part/models.py:4396 +#: build/api.py:458 build/serializers.py:1385 part/models.py:4021 msgid "Optional" msgstr "" -#: build/api.py:455 build/serializers.py:1415 common/setting/system.py:456 -#: part/models.py:1202 part/serializers.py:1714 part/serializers.py:1725 +#: build/api.py:461 build/serializers.py:1423 common/setting/system.py:456 +#: part/models.py:1290 part/serializers.py:1579 part/serializers.py:1590 #: stock/api.py:639 msgid "Assembly" msgstr "Збірка" -#: build/api.py:458 +#: build/api.py:464 msgid "Tracked" msgstr "" -#: build/api.py:461 build/serializers.py:1380 part/models.py:1220 +#: build/api.py:467 build/serializers.py:1388 part/models.py:1308 msgid "Testable" msgstr "Тестуємо" -#: build/api.py:471 order/api.py:993 order/api.py:1363 +#: build/api.py:477 order/api.py:998 order/api.py:1368 msgid "Order Outstanding" msgstr "" -#: build/api.py:481 build/serializers.py:1464 order/api.py:952 +#: build/api.py:487 build/serializers.py:1472 order/api.py:957 msgid "Allocated" msgstr "" -#: build/api.py:490 build/models.py:1672 build/serializers.py:1393 +#: build/api.py:496 build/models.py:1673 build/serializers.py:1401 msgid "Consumed" msgstr "" -#: build/api.py:499 company/models.py:912 company/serializers.py:440 +#: build/api.py:505 company/models.py:866 company/serializers.py:467 #: templates/email/build_order_required_stock.html:19 #: templates/email/low_stock_notification.html:17 #: templates/email/part_event_notification.html:18 msgid "Available" msgstr "Доступно" -#: build/api.py:523 build/serializers.py:1466 company/serializers.py:437 -#: order/serializers.py:1281 part/serializers.py:959 part/serializers.py:1306 -#: part/serializers.py:1761 +#: build/api.py:529 build/serializers.py:1474 company/serializers.py:464 +#: order/serializers.py:1295 part/serializers.py:844 part/serializers.py:1171 +#: part/serializers.py:1626 msgid "On Order" msgstr "" -#: build/api.py:868 build/models.py:117 order/models.py:1974 +#: build/api.py:874 build/models.py:118 order/models.py:1975 #: report/templates/report/inventree_build_order_report.html:105 #: stock/serializers.py:93 templates/email/build_order_completed.html:16 #: templates/email/overdue_build_order.html:15 msgid "Build Order" msgstr "" -#: build/api.py:882 build/api.py:886 build/serializers.py:372 -#: build/serializers.py:497 build/serializers.py:567 build/serializers.py:1251 -#: build/serializers.py:1256 order/api.py:1234 order/api.py:1239 -#: order/serializers.py:833 order/serializers.py:973 order/serializers.py:2042 +#: build/api.py:888 build/api.py:892 build/serializers.py:380 +#: build/serializers.py:505 build/serializers.py:575 build/serializers.py:1259 +#: build/serializers.py:1264 order/api.py:1239 order/api.py:1244 +#: order/serializers.py:844 order/serializers.py:984 order/serializers.py:2059 #: stock/api.py:987 stock/serializers.py:111 stock/serializers.py:601 #: stock/serializers.py:710 stock/serializers.py:888 stock/serializers.py:1418 -#: stock/serializers.py:1731 stock/serializers.py:1780 +#: stock/serializers.py:1739 stock/serializers.py:1788 #: templates/email/stale_stock_notification.html:18 users/models.py:549 msgid "Location" msgstr "Місце" -#: build/api.py:894 +#: build/api.py:900 msgid "Output" msgstr "" -#: build/api.py:896 +#: build/api.py:902 msgid "Filter by output stock item ID. Use 'null' to find uninstalled build items." msgstr "" -#: build/models.py:118 users/ruleset.py:31 +#: build/models.py:119 users/ruleset.py:31 msgid "Build Orders" msgstr "" -#: build/models.py:168 +#: build/models.py:169 msgid "Assembly BOM has not been validated" msgstr "" -#: build/models.py:175 +#: build/models.py:176 msgid "Build order cannot be created for an inactive part" msgstr "" -#: build/models.py:182 +#: build/models.py:183 msgid "Build order cannot be created for an unlocked part" msgstr "" -#: build/models.py:200 +#: build/models.py:201 msgid "Build orders can only be externally fulfilled for purchaseable parts" msgstr "" -#: build/models.py:207 order/models.py:369 +#: build/models.py:208 order/models.py:370 msgid "Responsible user or group must be specified" msgstr "" -#: build/models.py:212 +#: build/models.py:213 msgid "Build order part cannot be changed" msgstr "" -#: build/models.py:217 order/models.py:382 +#: build/models.py:218 order/models.py:383 msgid "Target date must be after start date" msgstr "" -#: build/models.py:245 +#: build/models.py:246 msgid "Build Order Reference" msgstr "" -#: build/models.py:246 build/serializers.py:1371 order/models.py:614 -#: order/models.py:1311 order/models.py:1773 order/models.py:2712 -#: part/models.py:4442 +#: build/models.py:247 build/serializers.py:1379 order/models.py:615 +#: order/models.py:1312 order/models.py:1774 order/models.py:2713 +#: part/models.py:4067 #: report/templates/report/inventree_bill_of_materials_report.html:139 #: report/templates/report/inventree_purchase_order_report.html:35 #: report/templates/report/inventree_return_order_report.html:26 @@ -773,230 +789,230 @@ msgstr "" msgid "Reference" msgstr "" -#: build/models.py:255 +#: build/models.py:256 msgid "Brief description of the build (optional)" msgstr "" -#: build/models.py:265 +#: build/models.py:266 msgid "BuildOrder to which this build is allocated" msgstr "" -#: build/models.py:274 +#: build/models.py:275 msgid "Select part to build" msgstr "Обрати деталь для створення" -#: build/models.py:279 +#: build/models.py:280 msgid "Sales Order Reference" msgstr "" -#: build/models.py:284 +#: build/models.py:285 msgid "SalesOrder to which this build is allocated" msgstr "" -#: build/models.py:289 build/serializers.py:1097 +#: build/models.py:290 build/serializers.py:1105 msgid "Source Location" msgstr "" -#: build/models.py:295 +#: build/models.py:296 msgid "Select location to take stock from for this build (leave blank to take from any stock location)" msgstr "" -#: build/models.py:301 +#: build/models.py:302 msgid "External Build" msgstr "" -#: build/models.py:302 +#: build/models.py:303 msgid "This build order is fulfilled externally" msgstr "" -#: build/models.py:307 +#: build/models.py:308 msgid "Destination Location" msgstr "" -#: build/models.py:312 +#: build/models.py:313 msgid "Select location where the completed items will be stored" msgstr "" -#: build/models.py:316 +#: build/models.py:317 msgid "Build Quantity" msgstr "" -#: build/models.py:319 +#: build/models.py:320 msgid "Number of stock items to build" msgstr "" -#: build/models.py:323 +#: build/models.py:324 msgid "Completed items" msgstr "" -#: build/models.py:325 +#: build/models.py:326 msgid "Number of stock items which have been completed" msgstr "" -#: build/models.py:329 +#: build/models.py:330 msgid "Build Status" msgstr "" -#: build/models.py:334 +#: build/models.py:335 msgid "Build status code" msgstr "" -#: build/models.py:343 build/serializers.py:359 order/serializers.py:849 +#: build/models.py:344 build/serializers.py:367 order/serializers.py:860 #: stock/models.py:1100 stock/serializers.py:85 stock/serializers.py:1591 msgid "Batch Code" msgstr "" -#: build/models.py:347 build/serializers.py:360 +#: build/models.py:348 build/serializers.py:368 msgid "Batch code for this build output" msgstr "" -#: build/models.py:351 order/models.py:479 order/serializers.py:186 -#: part/models.py:1283 +#: build/models.py:352 order/models.py:480 order/serializers.py:193 +#: part/models.py:1371 msgid "Creation Date" msgstr "" -#: build/models.py:357 +#: build/models.py:358 msgid "Build start date" msgstr "" -#: build/models.py:358 +#: build/models.py:359 msgid "Scheduled start date for this build order" msgstr "" -#: build/models.py:364 +#: build/models.py:365 msgid "Target completion date" msgstr "" -#: build/models.py:366 +#: build/models.py:367 msgid "Target date for build completion. Build will be overdue after this date." msgstr "" -#: build/models.py:371 order/models.py:667 order/models.py:2751 +#: build/models.py:372 order/models.py:668 order/models.py:2752 msgid "Completion Date" msgstr "" -#: build/models.py:379 +#: build/models.py:380 msgid "completed by" msgstr "" -#: build/models.py:388 +#: build/models.py:389 msgid "Issued by" msgstr "" -#: build/models.py:389 +#: build/models.py:390 msgid "User who issued this build order" msgstr "" -#: build/models.py:398 common/models.py:180 order/api.py:179 -#: order/models.py:504 part/models.py:1300 +#: build/models.py:399 common/models.py:184 order/api.py:184 +#: order/models.py:505 part/models.py:1388 #: report/templates/report/inventree_build_order_report.html:158 msgid "Responsible" msgstr "" -#: build/models.py:399 +#: build/models.py:400 msgid "User or group responsible for this build order" msgstr "" -#: build/models.py:404 stock/models.py:1093 +#: build/models.py:405 stock/models.py:1093 msgid "External Link" msgstr "" -#: build/models.py:406 common/models.py:1984 part/models.py:1114 +#: build/models.py:407 common/models.py:1990 part/models.py:1202 #: stock/models.py:1095 msgid "Link to external URL" msgstr "" -#: build/models.py:411 +#: build/models.py:412 msgid "Build Priority" msgstr "" -#: build/models.py:414 +#: build/models.py:415 msgid "Priority of this build order" msgstr "" -#: build/models.py:422 common/models.py:150 common/models.py:164 -#: order/api.py:165 order/models.py:451 order/models.py:1805 +#: build/models.py:423 common/models.py:154 common/models.py:168 +#: order/api.py:170 order/models.py:452 order/models.py:1806 msgid "Project Code" msgstr "" -#: build/models.py:423 +#: build/models.py:424 msgid "Project code for this build order" msgstr "" -#: build/models.py:676 +#: build/models.py:677 msgid "Cannot complete build order with open child builds" msgstr "" -#: build/models.py:681 +#: build/models.py:682 msgid "Cannot complete build order with incomplete outputs" msgstr "" -#: build/models.py:700 build/models.py:830 +#: build/models.py:701 build/models.py:831 msgid "Failed to offload task to complete build allocations" msgstr "" -#: build/models.py:723 +#: build/models.py:724 #, python-brace-format msgid "Build order {build} has been completed" msgstr "" -#: build/models.py:729 +#: build/models.py:730 msgid "A build order has been completed" msgstr "" -#: build/models.py:911 build/serializers.py:407 +#: build/models.py:912 build/serializers.py:415 msgid "Serial numbers must be provided for trackable parts" msgstr "" -#: build/models.py:1042 build/models.py:1129 +#: build/models.py:1043 build/models.py:1130 msgid "No build output specified" msgstr "" -#: build/models.py:1045 +#: build/models.py:1046 msgid "Build output is already completed" msgstr "" -#: build/models.py:1048 +#: build/models.py:1049 msgid "Build output does not match Build Order" msgstr "" -#: build/models.py:1136 build/models.py:1234 build/serializers.py:285 -#: build/serializers.py:335 build/serializers.py:965 build/serializers.py:1739 -#: order/models.py:717 order/serializers.py:658 order/serializers.py:844 -#: part/serializers.py:1708 stock/models.py:940 stock/models.py:1430 +#: build/models.py:1137 build/models.py:1235 build/serializers.py:293 +#: build/serializers.py:343 build/serializers.py:973 build/serializers.py:1747 +#: order/models.py:718 order/serializers.py:669 order/serializers.py:855 +#: part/serializers.py:1573 stock/models.py:940 stock/models.py:1430 #: stock/models.py:1878 stock/serializers.py:688 stock/serializers.py:1580 msgid "Quantity must be greater than zero" msgstr "" -#: build/models.py:1140 build/models.py:1239 build/serializers.py:290 +#: build/models.py:1141 build/models.py:1240 build/serializers.py:298 msgid "Quantity cannot be greater than the output quantity" msgstr "" -#: build/models.py:1214 build/serializers.py:606 +#: build/models.py:1215 build/serializers.py:614 msgid "Build output has not passed all required tests" msgstr "" -#: build/models.py:1217 build/serializers.py:601 +#: build/models.py:1218 build/serializers.py:609 #, python-brace-format msgid "Build output {serial} has not passed all required tests" msgstr "" -#: build/models.py:1229 +#: build/models.py:1230 msgid "Cannot partially complete a build output with allocated items" msgstr "" -#: build/models.py:1627 +#: build/models.py:1628 msgid "Build Order Line Item" msgstr "" -#: build/models.py:1651 +#: build/models.py:1652 msgid "Build object" msgstr "" -#: build/models.py:1663 build/models.py:1974 build/serializers.py:271 -#: build/serializers.py:320 build/serializers.py:1392 common/models.py:1340 -#: order/models.py:1756 order/models.py:2597 order/serializers.py:1696 -#: order/serializers.py:2124 part/models.py:3453 part/models.py:4390 +#: build/models.py:1664 build/models.py:1975 build/serializers.py:279 +#: build/serializers.py:328 build/serializers.py:1400 common/models.py:1344 +#: order/models.py:1757 order/models.py:2598 order/serializers.py:1710 +#: order/serializers.py:2141 part/models.py:3517 part/models.py:4015 #: report/templates/report/inventree_bill_of_materials_report.html:138 #: report/templates/report/inventree_build_order_report.html:113 #: report/templates/report/inventree_purchase_order_report.html:36 @@ -1014,427 +1030,427 @@ msgstr "" msgid "Quantity" msgstr "Кількість" -#: build/models.py:1664 +#: build/models.py:1665 msgid "Required quantity for build order" msgstr "" -#: build/models.py:1673 +#: build/models.py:1674 msgid "Quantity of consumed stock" msgstr "" -#: build/models.py:1772 +#: build/models.py:1773 msgid "Build item must specify a build output, as master part is marked as trackable" msgstr "" -#: build/models.py:1783 +#: build/models.py:1784 #, python-brace-format msgid "Allocated quantity ({q}) must not exceed available stock quantity ({a})" msgstr "" -#: build/models.py:1804 order/models.py:2546 +#: build/models.py:1805 order/models.py:2547 msgid "Stock item is over-allocated" msgstr "" -#: build/models.py:1809 order/models.py:2549 +#: build/models.py:1810 order/models.py:2550 msgid "Allocation quantity must be greater than zero" msgstr "" -#: build/models.py:1815 +#: build/models.py:1816 msgid "Quantity must be 1 for serialized stock" msgstr "" -#: build/models.py:1875 +#: build/models.py:1876 msgid "Selected stock item does not match BOM line" msgstr "" -#: build/models.py:1913 +#: build/models.py:1914 msgid "Allocated quantity exceeds available stock quantity" msgstr "" -#: build/models.py:1964 build/serializers.py:948 build/serializers.py:1240 -#: order/serializers.py:1533 order/serializers.py:1554 +#: build/models.py:1965 build/serializers.py:956 build/serializers.py:1248 +#: order/serializers.py:1547 order/serializers.py:1568 #: report/templates/report/inventree_sales_order_shipment_report.html:29 #: stock/api.py:1404 stock/models.py:456 stock/serializers.py:102 #: stock/serializers.py:800 stock/serializers.py:1274 stock/serializers.py:1386 msgid "Stock Item" msgstr "" -#: build/models.py:1965 +#: build/models.py:1966 msgid "Source stock item" msgstr "" -#: build/models.py:1975 +#: build/models.py:1976 msgid "Stock quantity to allocate to build" msgstr "" -#: build/models.py:1984 +#: build/models.py:1985 msgid "Install into" msgstr "" -#: build/models.py:1985 +#: build/models.py:1986 msgid "Destination stock item" msgstr "" -#: build/serializers.py:118 +#: build/serializers.py:120 msgid "Build Level" msgstr "" -#: build/serializers.py:128 +#: build/serializers.py:136 msgid "Part Name" msgstr "" -#: build/serializers.py:153 +#: build/serializers.py:161 msgid "Project Code Label" msgstr "" -#: build/serializers.py:219 build/serializers.py:974 +#: build/serializers.py:227 build/serializers.py:982 msgid "Build Output" msgstr "" -#: build/serializers.py:231 +#: build/serializers.py:239 msgid "Build output does not match the parent build" msgstr "" -#: build/serializers.py:235 +#: build/serializers.py:243 msgid "Output part does not match BuildOrder part" msgstr "" -#: build/serializers.py:239 +#: build/serializers.py:247 msgid "This build output has already been completed" msgstr "" -#: build/serializers.py:253 +#: build/serializers.py:261 msgid "This build output is not fully allocated" msgstr "" -#: build/serializers.py:272 build/serializers.py:321 +#: build/serializers.py:280 build/serializers.py:329 msgid "Enter quantity for build output" msgstr "" -#: build/serializers.py:343 +#: build/serializers.py:351 msgid "Integer quantity required for trackable parts" msgstr "" -#: build/serializers.py:349 +#: build/serializers.py:357 msgid "Integer quantity required, as the bill of materials contains trackable parts" msgstr "" -#: build/serializers.py:366 order/serializers.py:865 order/serializers.py:1700 +#: build/serializers.py:374 order/serializers.py:876 order/serializers.py:1714 #: stock/serializers.py:699 msgid "Serial Numbers" msgstr "" -#: build/serializers.py:367 +#: build/serializers.py:375 msgid "Enter serial numbers for build outputs" msgstr "" -#: build/serializers.py:373 +#: build/serializers.py:381 msgid "Stock location for build output" msgstr "" -#: build/serializers.py:388 +#: build/serializers.py:396 msgid "Auto Allocate Serial Numbers" msgstr "" -#: build/serializers.py:390 +#: build/serializers.py:398 msgid "Automatically allocate required items with matching serial numbers" msgstr "" -#: build/serializers.py:423 order/serializers.py:951 stock/api.py:1183 +#: build/serializers.py:431 order/serializers.py:962 stock/api.py:1183 #: stock/models.py:1901 msgid "The following serial numbers already exist or are invalid" msgstr "" -#: build/serializers.py:465 build/serializers.py:521 build/serializers.py:613 +#: build/serializers.py:473 build/serializers.py:529 build/serializers.py:621 msgid "A list of build outputs must be provided" msgstr "" -#: build/serializers.py:498 +#: build/serializers.py:506 msgid "Stock location for scrapped outputs" msgstr "" -#: build/serializers.py:504 +#: build/serializers.py:512 msgid "Discard Allocations" msgstr "" -#: build/serializers.py:505 +#: build/serializers.py:513 msgid "Discard any stock allocations for scrapped outputs" msgstr "" -#: build/serializers.py:510 +#: build/serializers.py:518 msgid "Reason for scrapping build output(s)" msgstr "" -#: build/serializers.py:568 +#: build/serializers.py:576 msgid "Location for completed build outputs" msgstr "" -#: build/serializers.py:576 +#: build/serializers.py:584 msgid "Accept Incomplete Allocation" msgstr "" -#: build/serializers.py:577 +#: build/serializers.py:585 msgid "Complete outputs if stock has not been fully allocated" msgstr "" -#: build/serializers.py:702 +#: build/serializers.py:710 msgid "Consume Allocated Stock" msgstr "" -#: build/serializers.py:703 +#: build/serializers.py:711 msgid "Consume any stock which has already been allocated to this build" msgstr "" -#: build/serializers.py:709 +#: build/serializers.py:717 msgid "Remove Incomplete Outputs" msgstr "" -#: build/serializers.py:710 +#: build/serializers.py:718 msgid "Delete any build outputs which have not been completed" msgstr "" -#: build/serializers.py:737 +#: build/serializers.py:745 msgid "Not permitted" msgstr "" -#: build/serializers.py:738 +#: build/serializers.py:746 msgid "Accept as consumed by this build order" msgstr "" -#: build/serializers.py:739 +#: build/serializers.py:747 msgid "Deallocate before completing this build order" msgstr "" -#: build/serializers.py:766 +#: build/serializers.py:774 msgid "Overallocated Stock" msgstr "" -#: build/serializers.py:769 +#: build/serializers.py:777 msgid "How do you want to handle extra stock items assigned to the build order" msgstr "" -#: build/serializers.py:780 +#: build/serializers.py:788 msgid "Some stock items have been overallocated" msgstr "" -#: build/serializers.py:785 +#: build/serializers.py:793 msgid "Accept Unallocated" msgstr "" -#: build/serializers.py:787 +#: build/serializers.py:795 msgid "Accept that stock items have not been fully allocated to this build order" msgstr "" -#: build/serializers.py:798 +#: build/serializers.py:806 msgid "Required stock has not been fully allocated" msgstr "" -#: build/serializers.py:803 order/serializers.py:524 order/serializers.py:1601 +#: build/serializers.py:811 order/serializers.py:535 order/serializers.py:1615 msgid "Accept Incomplete" msgstr "" -#: build/serializers.py:805 +#: build/serializers.py:813 msgid "Accept that the required number of build outputs have not been completed" msgstr "" -#: build/serializers.py:816 +#: build/serializers.py:824 msgid "Required build quantity has not been completed" msgstr "" -#: build/serializers.py:828 +#: build/serializers.py:836 msgid "Build order has open child build orders" msgstr "" -#: build/serializers.py:831 +#: build/serializers.py:839 msgid "Build order must be in production state" msgstr "" -#: build/serializers.py:834 +#: build/serializers.py:842 msgid "Build order has incomplete outputs" msgstr "" -#: build/serializers.py:873 +#: build/serializers.py:881 msgid "Build Line" msgstr "" -#: build/serializers.py:881 +#: build/serializers.py:889 msgid "Build output" msgstr "" -#: build/serializers.py:889 +#: build/serializers.py:897 msgid "Build output must point to the same build" msgstr "" -#: build/serializers.py:920 +#: build/serializers.py:928 msgid "Build Line Item" msgstr "" -#: build/serializers.py:938 +#: build/serializers.py:946 msgid "bom_item.part must point to the same part as the build order" msgstr "" -#: build/serializers.py:954 stock/serializers.py:1287 +#: build/serializers.py:962 stock/serializers.py:1287 msgid "Item must be in stock" msgstr "" -#: build/serializers.py:997 order/serializers.py:1587 +#: build/serializers.py:1005 order/serializers.py:1601 #, python-brace-format msgid "Available quantity ({q}) exceeded" msgstr "" -#: build/serializers.py:1003 +#: build/serializers.py:1011 msgid "Build output must be specified for allocation of tracked parts" msgstr "" -#: build/serializers.py:1011 +#: build/serializers.py:1019 msgid "Build output cannot be specified for allocation of untracked parts" msgstr "" -#: build/serializers.py:1035 order/serializers.py:1860 +#: build/serializers.py:1043 order/serializers.py:1874 msgid "Allocation items must be provided" msgstr "" -#: build/serializers.py:1099 +#: build/serializers.py:1107 msgid "Stock location where parts are to be sourced (leave blank to take from any location)" msgstr "" -#: build/serializers.py:1108 +#: build/serializers.py:1116 msgid "Exclude Location" msgstr "" -#: build/serializers.py:1109 +#: build/serializers.py:1117 msgid "Exclude stock items from this selected location" msgstr "" -#: build/serializers.py:1114 +#: build/serializers.py:1122 msgid "Interchangeable Stock" msgstr "" -#: build/serializers.py:1115 +#: build/serializers.py:1123 msgid "Stock items in multiple locations can be used interchangeably" msgstr "" -#: build/serializers.py:1120 +#: build/serializers.py:1128 msgid "Substitute Stock" msgstr "" -#: build/serializers.py:1121 +#: build/serializers.py:1129 msgid "Allow allocation of substitute parts" msgstr "" -#: build/serializers.py:1126 +#: build/serializers.py:1134 msgid "Optional Items" msgstr "" -#: build/serializers.py:1127 +#: build/serializers.py:1135 msgid "Allocate optional BOM items to build order" msgstr "" -#: build/serializers.py:1148 +#: build/serializers.py:1156 msgid "Failed to start auto-allocation task" msgstr "" -#: build/serializers.py:1200 +#: build/serializers.py:1208 msgid "BOM Reference" msgstr "" -#: build/serializers.py:1206 +#: build/serializers.py:1214 msgid "BOM Part ID" msgstr "" -#: build/serializers.py:1213 +#: build/serializers.py:1221 msgid "BOM Part Name" msgstr "" -#: build/serializers.py:1266 build/serializers.py:1449 +#: build/serializers.py:1274 build/serializers.py:1457 msgid "Build" msgstr "" -#: build/serializers.py:1276 company/models.py:685 order/api.py:311 -#: order/api.py:316 order/api.py:543 order/serializers.py:650 +#: build/serializers.py:1284 company/models.py:639 order/api.py:316 +#: order/api.py:321 order/api.py:549 order/serializers.py:661 #: stock/models.py:1036 stock/serializers.py:579 msgid "Supplier Part" msgstr "" -#: build/serializers.py:1284 stock/serializers.py:620 +#: build/serializers.py:1292 stock/serializers.py:620 msgid "Allocated Quantity" msgstr "" -#: build/serializers.py:1351 +#: build/serializers.py:1359 msgid "Build Reference" msgstr "" -#: build/serializers.py:1361 +#: build/serializers.py:1369 msgid "Part Category Name" msgstr "" -#: build/serializers.py:1383 common/setting/system.py:480 part/models.py:1214 +#: build/serializers.py:1391 common/setting/system.py:480 part/models.py:1302 msgid "Trackable" msgstr "" -#: build/serializers.py:1386 +#: build/serializers.py:1394 msgid "Inherited" msgstr "" -#: build/serializers.py:1389 part/models.py:4475 +#: build/serializers.py:1397 part/models.py:4100 msgid "Allow Variants" msgstr "Дозволити варіанти" -#: build/serializers.py:1395 build/serializers.py:1400 part/models.py:4208 -#: part/models.py:4779 stock/api.py:882 +#: build/serializers.py:1403 build/serializers.py:1408 part/models.py:3833 +#: part/models.py:4404 stock/api.py:882 msgid "BOM Item" msgstr "" -#: build/serializers.py:1467 order/serializers.py:1282 part/serializers.py:1310 -#: part/serializers.py:1765 +#: build/serializers.py:1475 order/serializers.py:1296 part/serializers.py:1175 +#: part/serializers.py:1630 msgid "In Production" msgstr "У виробництві" -#: build/serializers.py:1469 part/serializers.py:950 part/serializers.py:1314 +#: build/serializers.py:1477 part/serializers.py:835 part/serializers.py:1179 msgid "Scheduled to Build" msgstr "" -#: build/serializers.py:1472 part/serializers.py:987 +#: build/serializers.py:1480 part/serializers.py:872 msgid "External Stock" msgstr "" -#: build/serializers.py:1473 part/serializers.py:1300 part/serializers.py:1808 +#: build/serializers.py:1481 part/serializers.py:1165 part/serializers.py:1673 msgid "Available Stock" msgstr "" -#: build/serializers.py:1475 +#: build/serializers.py:1483 msgid "Available Substitute Stock" msgstr "" -#: build/serializers.py:1478 +#: build/serializers.py:1486 msgid "Available Variant Stock" msgstr "" -#: build/serializers.py:1752 +#: build/serializers.py:1760 msgid "Consumed quantity exceeds allocated quantity" msgstr "" -#: build/serializers.py:1789 +#: build/serializers.py:1797 msgid "Optional notes for the stock consumption" msgstr "" -#: build/serializers.py:1806 +#: build/serializers.py:1814 msgid "Build item must point to the correct build order" msgstr "" -#: build/serializers.py:1811 +#: build/serializers.py:1819 msgid "Duplicate build item allocation" msgstr "" -#: build/serializers.py:1829 +#: build/serializers.py:1837 msgid "Build line must point to the correct build order" msgstr "" -#: build/serializers.py:1834 +#: build/serializers.py:1842 msgid "Duplicate build line allocation" msgstr "" -#: build/serializers.py:1846 +#: build/serializers.py:1854 msgid "At least one item or line must be provided" msgstr "" @@ -1482,702 +1498,826 @@ msgstr "" msgid "Build order {bo} is now overdue" msgstr "" -#: common/api.py:694 +#: common/api.py:701 msgid "Is Link" msgstr "" -#: common/api.py:702 +#: common/api.py:709 msgid "Is File" msgstr "" -#: common/api.py:745 +#: common/api.py:756 msgid "User does not have permission to delete these attachments" msgstr "" -#: common/api.py:762 +#: common/api.py:769 msgid "User does not have permission to delete this attachment" msgstr "" -#: common/currency.py:122 +#: common/currency.py:130 msgid "Invalid currency code" msgstr "" -#: common/currency.py:124 +#: common/currency.py:132 msgid "Duplicate currency code" msgstr "" -#: common/currency.py:129 +#: common/currency.py:137 msgid "No valid currency codes provided" msgstr "" -#: common/currency.py:146 +#: common/currency.py:154 msgid "No plugin" msgstr "" -#: common/models.py:101 common/models.py:126 common/models.py:2729 +#: common/models.py:105 common/models.py:130 common/models.py:3150 msgid "Updated" msgstr "" -#: common/models.py:102 common/models.py:127 +#: common/models.py:106 common/models.py:131 msgid "Timestamp of last update" msgstr "" -#: common/models.py:139 +#: common/models.py:143 msgid "Update By" msgstr "" -#: common/models.py:140 +#: common/models.py:144 msgid "User who last updated this object" msgstr "" -#: common/models.py:165 +#: common/models.py:169 msgid "Unique project code" msgstr "" -#: common/models.py:172 +#: common/models.py:176 msgid "Project description" msgstr "" -#: common/models.py:181 +#: common/models.py:185 msgid "User or group responsible for this project" msgstr "" -#: common/models.py:771 common/models.py:1272 common/models.py:1310 +#: common/models.py:775 common/models.py:1276 common/models.py:1314 msgid "Settings key" msgstr "" -#: common/models.py:775 +#: common/models.py:779 msgid "Settings value" msgstr "" -#: common/models.py:830 +#: common/models.py:834 msgid "Chosen value is not a valid option" msgstr "" -#: common/models.py:846 +#: common/models.py:850 msgid "Value must be a boolean value" msgstr "" -#: common/models.py:854 +#: common/models.py:858 msgid "Value must be an integer value" msgstr "" -#: common/models.py:862 +#: common/models.py:866 msgid "Value must be a valid number" msgstr "" -#: common/models.py:887 +#: common/models.py:891 msgid "Value does not pass validation checks" msgstr "" -#: common/models.py:909 +#: common/models.py:913 msgid "Key string must be unique" msgstr "" -#: common/models.py:1318 common/models.py:1319 common/models.py:1423 -#: common/models.py:1424 common/models.py:1669 common/models.py:1670 -#: common/models.py:2000 common/models.py:2001 common/models.py:2382 -#: importer/models.py:100 part/models.py:3547 part/models.py:3575 +#: common/models.py:1322 common/models.py:1323 common/models.py:1427 +#: common/models.py:1428 common/models.py:1673 common/models.py:1674 +#: common/models.py:2006 common/models.py:2007 common/models.py:2803 +#: importer/models.py:100 part/models.py:3611 part/models.py:3639 #: plugin/models.py:355 plugin/models.py:356 #: report/templates/report/inventree_test_report.html:105 users/models.py:124 #: users/models.py:501 msgid "User" msgstr "Користувач" -#: common/models.py:1341 +#: common/models.py:1345 msgid "Price break quantity" msgstr "" -#: common/models.py:1348 company/serializers.py:564 order/models.py:1842 -#: order/models.py:3043 +#: common/models.py:1352 company/serializers.py:349 order/models.py:1843 +#: order/models.py:3044 msgid "Price" msgstr "Ціна" -#: common/models.py:1349 +#: common/models.py:1353 msgid "Unit price at specified quantity" msgstr "" -#: common/models.py:1400 common/models.py:1585 +#: common/models.py:1404 common/models.py:1589 msgid "Endpoint" msgstr "" -#: common/models.py:1401 +#: common/models.py:1405 msgid "Endpoint at which this webhook is received" msgstr "" -#: common/models.py:1411 +#: common/models.py:1415 msgid "Name for this webhook" msgstr "" -#: common/models.py:1415 common/models.py:2241 common/models.py:2348 -#: company/models.py:191 company/models.py:822 machine/models.py:40 -#: part/models.py:1237 plugin/models.py:69 stock/api.py:642 users/models.py:195 +#: common/models.py:1419 common/models.py:2247 common/models.py:2354 +#: company/models.py:192 company/models.py:776 machine/models.py:40 +#: part/models.py:1325 plugin/models.py:69 stock/api.py:642 users/models.py:195 #: users/models.py:554 users/serializers.py:314 msgid "Active" msgstr "" -#: common/models.py:1415 +#: common/models.py:1419 msgid "Is this webhook active" msgstr "" -#: common/models.py:1431 users/models.py:172 +#: common/models.py:1435 users/models.py:172 msgid "Token" msgstr "" -#: common/models.py:1432 +#: common/models.py:1436 msgid "Token for access" msgstr "" -#: common/models.py:1440 +#: common/models.py:1444 msgid "Secret" msgstr "" -#: common/models.py:1441 +#: common/models.py:1445 msgid "Shared secret for HMAC" msgstr "" -#: common/models.py:1549 common/models.py:2619 +#: common/models.py:1553 common/models.py:3040 msgid "Message ID" msgstr "" -#: common/models.py:1550 common/models.py:2609 +#: common/models.py:1554 common/models.py:3030 msgid "Unique identifier for this message" msgstr "" -#: common/models.py:1558 +#: common/models.py:1562 msgid "Host" msgstr "" -#: common/models.py:1559 +#: common/models.py:1563 msgid "Host from which this message was received" msgstr "" -#: common/models.py:1567 +#: common/models.py:1571 msgid "Header" msgstr "" -#: common/models.py:1568 +#: common/models.py:1572 msgid "Header of this message" msgstr "" -#: common/models.py:1575 +#: common/models.py:1579 msgid "Body" msgstr "" -#: common/models.py:1576 +#: common/models.py:1580 msgid "Body of this message" msgstr "" -#: common/models.py:1586 +#: common/models.py:1590 msgid "Endpoint on which this message was received" msgstr "" -#: common/models.py:1591 +#: common/models.py:1595 msgid "Worked on" msgstr "" -#: common/models.py:1592 +#: common/models.py:1596 msgid "Was the work on this message finished?" msgstr "" -#: common/models.py:1718 +#: common/models.py:1722 msgid "Id" msgstr "" -#: common/models.py:1720 +#: common/models.py:1724 msgid "Title" msgstr "Назва" -#: common/models.py:1722 common/models.py:1983 company/models.py:185 -#: company/models.py:467 company/models.py:534 company/models.py:839 -#: order/models.py:457 order/models.py:1786 order/models.py:2343 -#: part/models.py:1113 +#: common/models.py:1726 common/models.py:1989 company/models.py:186 +#: company/models.py:468 company/models.py:536 company/models.py:793 +#: order/models.py:458 order/models.py:1787 order/models.py:2344 +#: part/models.py:1201 #: report/templates/report/inventree_build_order_report.html:164 msgid "Link" msgstr "Посилання" -#: common/models.py:1724 +#: common/models.py:1728 msgid "Published" msgstr "" -#: common/models.py:1726 +#: common/models.py:1730 msgid "Author" msgstr "" -#: common/models.py:1728 +#: common/models.py:1732 msgid "Summary" msgstr "" -#: common/models.py:1731 common/models.py:2586 +#: common/models.py:1735 common/models.py:3007 msgid "Read" msgstr "" -#: common/models.py:1731 +#: common/models.py:1735 msgid "Was this news item read?" msgstr "" -#: common/models.py:1748 +#: common/models.py:1752 msgid "Image file" msgstr "" -#: common/models.py:1760 +#: common/models.py:1764 msgid "Target model type for this image" msgstr "" -#: common/models.py:1764 +#: common/models.py:1768 msgid "Target model ID for this image" msgstr "" -#: common/models.py:1786 +#: common/models.py:1790 msgid "Custom Unit" msgstr "" -#: common/models.py:1804 +#: common/models.py:1808 msgid "Unit symbol must be unique" msgstr "" -#: common/models.py:1819 +#: common/models.py:1823 msgid "Unit name must be a valid identifier" msgstr "" -#: common/models.py:1838 +#: common/models.py:1842 msgid "Unit name" msgstr "" -#: common/models.py:1845 +#: common/models.py:1849 msgid "Symbol" msgstr "" -#: common/models.py:1846 +#: common/models.py:1850 msgid "Optional unit symbol" msgstr "" -#: common/models.py:1852 +#: common/models.py:1856 msgid "Definition" msgstr "" -#: common/models.py:1853 +#: common/models.py:1857 msgid "Unit definition" msgstr "" -#: common/models.py:1911 common/models.py:1974 stock/models.py:2967 +#: common/models.py:1917 common/models.py:1980 stock/models.py:2984 #: stock/serializers.py:247 msgid "Attachment" msgstr "" -#: common/models.py:1928 +#: common/models.py:1934 msgid "Missing file" msgstr "" -#: common/models.py:1929 +#: common/models.py:1935 msgid "Missing external link" msgstr "" -#: common/models.py:1966 +#: common/models.py:1972 common/models.py:2488 msgid "Model type" msgstr "" -#: common/models.py:1967 +#: common/models.py:1973 msgid "Target model type for image" msgstr "" -#: common/models.py:1975 +#: common/models.py:1981 msgid "Select file to attach" msgstr "" -#: common/models.py:1991 +#: common/models.py:1997 msgid "Comment" msgstr "Коментар" -#: common/models.py:1992 +#: common/models.py:1998 msgid "Attachment comment" msgstr "" -#: common/models.py:2008 +#: common/models.py:2014 msgid "Upload date" msgstr "Дата завантаження" -#: common/models.py:2009 +#: common/models.py:2015 msgid "Date the file was uploaded" msgstr "Дата завантаження файлу" -#: common/models.py:2013 +#: common/models.py:2019 msgid "File size" msgstr "Розмір файлу" -#: common/models.py:2013 +#: common/models.py:2019 msgid "File size in bytes" msgstr "Розмір файлу в байтах" -#: common/models.py:2051 common/serializers.py:684 +#: common/models.py:2057 common/serializers.py:688 msgid "Invalid model type specified for attachment" msgstr "" -#: common/models.py:2072 +#: common/models.py:2078 msgid "Custom State" msgstr "" -#: common/models.py:2073 +#: common/models.py:2079 msgid "Custom States" msgstr "" -#: common/models.py:2078 +#: common/models.py:2084 msgid "Reference Status Set" msgstr "" -#: common/models.py:2079 +#: common/models.py:2085 msgid "Status set that is extended with this custom state" msgstr "" -#: common/models.py:2083 generic/states/serializers.py:18 +#: common/models.py:2089 generic/states/serializers.py:18 msgid "Logical Key" msgstr "" -#: common/models.py:2085 +#: common/models.py:2091 msgid "State logical key that is equal to this custom state in business logic" msgstr "" -#: common/models.py:2090 common/models.py:2329 company/models.py:622 -#: machine/serializers.py:27 -#: report/templates/report/inventree_test_report.html:104 stock/models.py:2959 +#: common/models.py:2096 common/models.py:2335 machine/serializers.py:27 +#: report/templates/report/inventree_test_report.html:104 stock/models.py:2976 msgid "Value" msgstr "" -#: common/models.py:2091 +#: common/models.py:2097 msgid "Numerical value that will be saved in the models database" msgstr "" -#: common/models.py:2097 +#: common/models.py:2103 msgid "Name of the state" msgstr "" -#: common/models.py:2106 common/models.py:2335 generic/states/serializers.py:22 +#: common/models.py:2112 common/models.py:2341 generic/states/serializers.py:22 msgid "Label" msgstr "Етикетка" -#: common/models.py:2107 +#: common/models.py:2113 msgid "Label that will be displayed in the frontend" msgstr "" -#: common/models.py:2114 generic/states/serializers.py:24 +#: common/models.py:2120 generic/states/serializers.py:24 msgid "Color" msgstr "Колір" -#: common/models.py:2115 +#: common/models.py:2121 msgid "Color that will be displayed in the frontend" msgstr "" -#: common/models.py:2123 +#: common/models.py:2129 msgid "Model" msgstr "Модель" -#: common/models.py:2124 +#: common/models.py:2130 msgid "Model this state is associated with" msgstr "" -#: common/models.py:2139 +#: common/models.py:2145 msgid "Model must be selected" msgstr "" -#: common/models.py:2142 +#: common/models.py:2148 msgid "Key must be selected" msgstr "" -#: common/models.py:2145 +#: common/models.py:2151 msgid "Logical key must be selected" msgstr "" -#: common/models.py:2149 +#: common/models.py:2155 msgid "Key must be different from logical key" msgstr "" -#: common/models.py:2156 +#: common/models.py:2162 msgid "Valid reference status class must be provided" msgstr "" -#: common/models.py:2162 +#: common/models.py:2168 msgid "Key must be different from the logical keys of the reference status" msgstr "" -#: common/models.py:2169 +#: common/models.py:2175 msgid "Logical key must be in the logical keys of the reference status" msgstr "" -#: common/models.py:2176 +#: common/models.py:2182 msgid "Name must be different from the names of the reference status" msgstr "" -#: common/models.py:2216 common/models.py:2323 part/models.py:3889 +#: common/models.py:2222 common/models.py:2329 common/models.py:2533 msgid "Selection List" msgstr "Список вибору" -#: common/models.py:2217 +#: common/models.py:2223 msgid "Selection Lists" msgstr "" -#: common/models.py:2222 +#: common/models.py:2228 msgid "Name of the selection list" msgstr "" -#: common/models.py:2229 +#: common/models.py:2235 msgid "Description of the selection list" msgstr "" -#: common/models.py:2235 part/models.py:1242 +#: common/models.py:2241 part/models.py:1330 msgid "Locked" msgstr "Заблоковано" -#: common/models.py:2236 +#: common/models.py:2242 msgid "Is this selection list locked?" msgstr "" -#: common/models.py:2242 +#: common/models.py:2248 msgid "Can this selection list be used?" msgstr "" -#: common/models.py:2250 +#: common/models.py:2256 msgid "Source Plugin" msgstr "" -#: common/models.py:2251 +#: common/models.py:2257 msgid "Plugin which provides the selection list" msgstr "" -#: common/models.py:2256 +#: common/models.py:2262 msgid "Source String" msgstr "" -#: common/models.py:2257 +#: common/models.py:2263 msgid "Optional string identifying the source used for this list" msgstr "" -#: common/models.py:2266 +#: common/models.py:2272 msgid "Default Entry" msgstr "" -#: common/models.py:2267 +#: common/models.py:2273 msgid "Default entry for this selection list" msgstr "" -#: common/models.py:2272 common/models.py:2724 +#: common/models.py:2278 common/models.py:3145 msgid "Created" msgstr "" -#: common/models.py:2273 +#: common/models.py:2279 msgid "Date and time that the selection list was created" msgstr "" -#: common/models.py:2278 +#: common/models.py:2284 msgid "Last Updated" msgstr "" -#: common/models.py:2279 +#: common/models.py:2285 msgid "Date and time that the selection list was last updated" msgstr "" -#: common/models.py:2313 +#: common/models.py:2319 msgid "Selection List Entry" msgstr "" -#: common/models.py:2314 +#: common/models.py:2320 msgid "Selection List Entries" msgstr "" -#: common/models.py:2324 +#: common/models.py:2330 msgid "Selection list to which this entry belongs" msgstr "" -#: common/models.py:2330 +#: common/models.py:2336 msgid "Value of the selection list entry" msgstr "" -#: common/models.py:2336 +#: common/models.py:2342 msgid "Label for the selection list entry" msgstr "" -#: common/models.py:2342 +#: common/models.py:2348 msgid "Description of the selection list entry" msgstr "" -#: common/models.py:2349 +#: common/models.py:2355 msgid "Is this selection list entry active?" msgstr "" -#: common/models.py:2367 -msgid "Barcode Scan" +#: common/models.py:2387 +msgid "Parameter Template" msgstr "" -#: common/models.py:2371 importer/models.py:546 part/models.py:4060 -msgid "Data" -msgstr "Дані" - -#: common/models.py:2372 -msgid "Barcode data" +#: common/models.py:2388 +msgid "Parameter Templates" msgstr "" -#: common/models.py:2383 -msgid "User who scanned the barcode" +#: common/models.py:2425 +msgid "Checkbox parameters cannot have units" msgstr "" -#: common/models.py:2388 importer/models.py:69 -msgid "Timestamp" +#: common/models.py:2430 +msgid "Checkbox parameters cannot have choices" msgstr "" -#: common/models.py:2389 -msgid "Date and time of the barcode scan" +#: common/models.py:2450 part/models.py:3707 +msgid "Choices must be unique" msgstr "" -#: common/models.py:2395 -msgid "URL endpoint which processed the barcode" +#: common/models.py:2467 +msgid "Parameter template name must be unique" msgstr "" -#: common/models.py:2402 order/models.py:1832 plugin/serializers.py:93 -msgid "Context" +#: common/models.py:2489 +msgid "Target model type for this parameter template" msgstr "" -#: common/models.py:2403 -msgid "Context data for the barcode scan" +#: common/models.py:2495 +msgid "Parameter Name" msgstr "" -#: common/models.py:2410 -msgid "Response" +#: common/models.py:2501 part/models.py:1283 +msgid "Units" msgstr "" -#: common/models.py:2411 -msgid "Response data from the barcode scan" +#: common/models.py:2502 +msgid "Physical units for this parameter" msgstr "" -#: common/models.py:2417 report/templates/report/inventree_test_report.html:103 -#: stock/models.py:2953 -msgid "Result" +#: common/models.py:2510 +msgid "Parameter description" msgstr "" -#: common/models.py:2418 -msgid "Was the barcode scan successful?" +#: common/models.py:2516 +msgid "Checkbox" +msgstr "Прапорець" + +#: common/models.py:2517 +msgid "Is this parameter a checkbox?" msgstr "" -#: common/models.py:2500 -msgid "An error occurred" +#: common/models.py:2522 part/models.py:3794 +msgid "Choices" msgstr "" -#: common/models.py:2521 -msgid "INVE-E8: Email log deletion is protected. Set INVENTREE_PROTECT_EMAIL_LOG to False to allow deletion." +#: common/models.py:2523 +msgid "Valid choices for this parameter (comma-separated)" msgstr "" -#: common/models.py:2568 -msgid "Email Message" +#: common/models.py:2534 +msgid "Selection list for this parameter" msgstr "" -#: common/models.py:2569 -msgid "Email Messages" +#: common/models.py:2539 part/models.py:3769 report/models.py:287 +msgid "Enabled" msgstr "" -#: common/models.py:2576 -msgid "Announced" +#: common/models.py:2540 +msgid "Is this parameter template enabled?" msgstr "" -#: common/models.py:2578 -msgid "Sent" -msgstr "" - -#: common/models.py:2579 -msgid "Failed" +#: common/models.py:2581 +msgid "Parameter" msgstr "" #: common/models.py:2582 -msgid "Delivered" -msgstr "" - -#: common/models.py:2590 -msgid "Confirmed" -msgstr "" - -#: common/models.py:2596 -msgid "Inbound" -msgstr "" - -#: common/models.py:2597 -msgid "Outbound" -msgstr "" - -#: common/models.py:2602 -msgid "No Reply" -msgstr "" - -#: common/models.py:2603 -msgid "Track Delivery" -msgstr "" - -#: common/models.py:2604 -msgid "Track Read" -msgstr "" - -#: common/models.py:2605 -msgid "Track Click" -msgstr "" - -#: common/models.py:2608 common/models.py:2711 -msgid "Global ID" -msgstr "" - -#: common/models.py:2621 -msgid "Identifier for this message (might be supplied by external system)" +msgid "Parameters" msgstr "" #: common/models.py:2628 +msgid "Invalid choice for parameter value" +msgstr "" + +#: common/models.py:2698 common/serializers.py:783 +msgid "Invalid model type specified for parameter" +msgstr "" + +#: common/models.py:2734 +msgid "Model ID" +msgstr "" + +#: common/models.py:2735 +msgid "ID of the target model for this parameter" +msgstr "" + +#: common/models.py:2744 common/setting/system.py:450 report/models.py:373 +#: report/models.py:669 report/serializers.py:94 report/serializers.py:135 +#: stock/serializers.py:234 +msgid "Template" +msgstr "Шаблон" + +#: common/models.py:2745 +msgid "Parameter template" +msgstr "" + +#: common/models.py:2750 common/models.py:2792 importer/models.py:546 +msgid "Data" +msgstr "Дані" + +#: common/models.py:2751 +msgid "Parameter Value" +msgstr "" + +#: common/models.py:2760 company/models.py:810 order/serializers.py:894 +#: order/serializers.py:2064 part/models.py:4075 part/models.py:4444 +#: report/templates/report/inventree_bill_of_materials_report.html:140 +#: report/templates/report/inventree_purchase_order_report.html:39 +#: report/templates/report/inventree_return_order_report.html:27 +#: report/templates/report/inventree_sales_order_report.html:32 +#: report/templates/report/inventree_stock_location_report.html:105 +#: stock/serializers.py:813 +msgid "Note" +msgstr "Примітка" + +#: common/models.py:2761 stock/serializers.py:718 +msgid "Optional note field" +msgstr "" + +#: common/models.py:2788 +msgid "Barcode Scan" +msgstr "" + +#: common/models.py:2793 +msgid "Barcode data" +msgstr "" + +#: common/models.py:2804 +msgid "User who scanned the barcode" +msgstr "" + +#: common/models.py:2809 importer/models.py:69 +msgid "Timestamp" +msgstr "" + +#: common/models.py:2810 +msgid "Date and time of the barcode scan" +msgstr "" + +#: common/models.py:2816 +msgid "URL endpoint which processed the barcode" +msgstr "" + +#: common/models.py:2823 order/models.py:1833 plugin/serializers.py:93 +msgid "Context" +msgstr "" + +#: common/models.py:2824 +msgid "Context data for the barcode scan" +msgstr "" + +#: common/models.py:2831 +msgid "Response" +msgstr "" + +#: common/models.py:2832 +msgid "Response data from the barcode scan" +msgstr "" + +#: common/models.py:2838 report/templates/report/inventree_test_report.html:103 +#: stock/models.py:2970 +msgid "Result" +msgstr "" + +#: common/models.py:2839 +msgid "Was the barcode scan successful?" +msgstr "" + +#: common/models.py:2921 +msgid "An error occurred" +msgstr "" + +#: common/models.py:2942 +msgid "INVE-E8: Email log deletion is protected. Set INVENTREE_PROTECT_EMAIL_LOG to False to allow deletion." +msgstr "" + +#: common/models.py:2989 +msgid "Email Message" +msgstr "" + +#: common/models.py:2990 +msgid "Email Messages" +msgstr "" + +#: common/models.py:2997 +msgid "Announced" +msgstr "" + +#: common/models.py:2999 +msgid "Sent" +msgstr "" + +#: common/models.py:3000 +msgid "Failed" +msgstr "" + +#: common/models.py:3003 +msgid "Delivered" +msgstr "" + +#: common/models.py:3011 +msgid "Confirmed" +msgstr "" + +#: common/models.py:3017 +msgid "Inbound" +msgstr "" + +#: common/models.py:3018 +msgid "Outbound" +msgstr "" + +#: common/models.py:3023 +msgid "No Reply" +msgstr "" + +#: common/models.py:3024 +msgid "Track Delivery" +msgstr "" + +#: common/models.py:3025 +msgid "Track Read" +msgstr "" + +#: common/models.py:3026 +msgid "Track Click" +msgstr "" + +#: common/models.py:3029 common/models.py:3132 +msgid "Global ID" +msgstr "" + +#: common/models.py:3042 +msgid "Identifier for this message (might be supplied by external system)" +msgstr "" + +#: common/models.py:3049 msgid "Thread ID" msgstr "" -#: common/models.py:2630 +#: common/models.py:3051 msgid "Identifier for this message thread (might be supplied by external system)" msgstr "" -#: common/models.py:2639 +#: common/models.py:3060 msgid "Thread" msgstr "" -#: common/models.py:2640 +#: common/models.py:3061 msgid "Linked thread for this message" msgstr "" -#: common/models.py:2656 -msgid "Prioriy" +#: common/models.py:3077 +msgid "Priority" msgstr "" -#: common/models.py:2698 +#: common/models.py:3119 msgid "Email Thread" msgstr "" -#: common/models.py:2699 +#: common/models.py:3120 msgid "Email Threads" msgstr "" -#: common/models.py:2705 generic/states/serializers.py:16 +#: common/models.py:3126 generic/states/serializers.py:16 #: machine/serializers.py:24 plugin/models.py:46 users/models.py:113 msgid "Key" msgstr "" -#: common/models.py:2708 +#: common/models.py:3129 msgid "Unique key for this thread (used to identify the thread)" msgstr "" -#: common/models.py:2712 +#: common/models.py:3133 msgid "Unique identifier for this thread" msgstr "" -#: common/models.py:2719 +#: common/models.py:3140 msgid "Started Internal" msgstr "" -#: common/models.py:2720 +#: common/models.py:3141 msgid "Was this thread started internally?" msgstr "" -#: common/models.py:2725 +#: common/models.py:3146 msgid "Date and time that the thread was created" msgstr "" -#: common/models.py:2730 +#: common/models.py:3151 msgid "Date and time that the thread was last updated" msgstr "" @@ -2199,7 +2339,7 @@ msgstr "" msgid "A order that is assigned to you was canceled" msgstr "" -#: common/notifications.py:73 common/notifications.py:80 order/api.py:594 +#: common/notifications.py:73 common/notifications.py:80 order/api.py:600 msgid "Items Received" msgstr "" @@ -2211,88 +2351,93 @@ msgstr "" msgid "Items have been received against a return order" msgstr "" -#: common/serializers.py:145 +#: common/serializers.py:149 msgid "Indicates if the setting is overridden by an environment variable" msgstr "" -#: common/serializers.py:147 +#: common/serializers.py:151 msgid "Override" msgstr "" -#: common/serializers.py:498 +#: common/serializers.py:502 msgid "Is Running" msgstr "" -#: common/serializers.py:504 +#: common/serializers.py:508 msgid "Pending Tasks" msgstr "" -#: common/serializers.py:510 +#: common/serializers.py:514 msgid "Scheduled Tasks" msgstr "" -#: common/serializers.py:516 +#: common/serializers.py:520 msgid "Failed Tasks" msgstr "" -#: common/serializers.py:531 +#: common/serializers.py:535 msgid "Task ID" msgstr "" -#: common/serializers.py:531 +#: common/serializers.py:535 msgid "Unique task ID" msgstr "" -#: common/serializers.py:533 +#: common/serializers.py:537 msgid "Lock" msgstr "" -#: common/serializers.py:533 +#: common/serializers.py:537 msgid "Lock time" msgstr "" -#: common/serializers.py:535 +#: common/serializers.py:539 msgid "Task name" msgstr "" -#: common/serializers.py:537 +#: common/serializers.py:541 msgid "Function" msgstr "" -#: common/serializers.py:537 +#: common/serializers.py:541 msgid "Function name" msgstr "" -#: common/serializers.py:539 +#: common/serializers.py:543 msgid "Arguments" msgstr "" -#: common/serializers.py:539 +#: common/serializers.py:543 msgid "Task arguments" msgstr "" -#: common/serializers.py:542 +#: common/serializers.py:546 msgid "Keyword Arguments" msgstr "" -#: common/serializers.py:542 +#: common/serializers.py:546 msgid "Task keyword arguments" msgstr "" -#: common/serializers.py:652 +#: common/serializers.py:656 msgid "Filename" msgstr "" -#: common/serializers.py:659 importer/models.py:89 report/api.py:41 +#: common/serializers.py:663 common/serializers.py:730 +#: common/serializers.py:805 importer/models.py:89 report/api.py:41 #: report/models.py:293 report/serializers.py:52 msgid "Model Type" msgstr "" -#: common/serializers.py:687 +#: common/serializers.py:691 msgid "User does not have permission to create or edit attachments for this model" msgstr "" -#: common/serializers.py:731 common/serializers.py:834 +#: common/serializers.py:786 +msgid "User does not have permission to create or edit parameters for this model" +msgstr "" + +#: common/serializers.py:850 common/serializers.py:953 msgid "Selection list is locked" msgstr "" @@ -2368,7 +2513,7 @@ msgstr "" msgid "Show the `about` modal only to superusers" msgstr "" -#: common/setting/system.py:224 company/models.py:144 company/models.py:145 +#: common/setting/system.py:224 company/models.py:145 company/models.py:146 msgid "Company name" msgstr "" @@ -2411,8 +2556,8 @@ msgstr "" #: common/setting/system.py:253 common/setting/system.py:293 #: common/setting/system.py:306 common/setting/system.py:314 #: common/setting/system.py:321 common/setting/system.py:330 -#: common/setting/system.py:339 common/setting/system.py:588 -#: common/setting/system.py:616 common/setting/system.py:707 +#: common/setting/system.py:339 common/setting/system.py:580 +#: common/setting/system.py:608 common/setting/system.py:707 #: common/setting/system.py:1103 common/setting/system.py:1119 msgid "days" msgstr "" @@ -2657,12 +2802,6 @@ msgstr "" msgid "Copy category parameter templates when creating a part" msgstr "" -#: common/setting/system.py:450 part/models.py:4054 report/models.py:373 -#: report/models.py:669 report/serializers.py:94 report/serializers.py:135 -#: stock/serializers.py:234 -msgid "Template" -msgstr "Шаблон" - #: common/setting/system.py:451 msgid "Parts are templates by default" msgstr "" @@ -2671,8 +2810,8 @@ msgstr "" msgid "Parts can be assembled from other components by default" msgstr "" -#: common/setting/system.py:462 part/models.py:1208 part/serializers.py:1734 -#: part/serializers.py:1741 +#: common/setting/system.py:462 part/models.py:1296 part/serializers.py:1599 +#: part/serializers.py:1606 msgid "Component" msgstr "Компонент" @@ -2680,7 +2819,7 @@ msgstr "Компонент" msgid "Parts can be used as sub-components by default" msgstr "" -#: common/setting/system.py:468 part/models.py:1226 +#: common/setting/system.py:468 part/models.py:1314 msgid "Purchaseable" msgstr "" @@ -2688,7 +2827,7 @@ msgstr "" msgid "Parts are purchaseable by default" msgstr "" -#: common/setting/system.py:474 part/models.py:1232 stock/api.py:643 +#: common/setting/system.py:474 part/models.py:1320 stock/api.py:643 msgid "Salable" msgstr "Доступний для продажу" @@ -2700,7 +2839,7 @@ msgstr "" msgid "Parts are trackable by default" msgstr "" -#: common/setting/system.py:486 part/models.py:1248 +#: common/setting/system.py:486 part/models.py:1336 msgid "Virtual" msgstr "Віртуальний" @@ -2749,158 +2888,158 @@ msgid "Part category default icon (empty means no icon)" msgstr "" #: common/setting/system.py:525 -msgid "Enforce Parameter Units" -msgstr "" - -#: common/setting/system.py:527 -msgid "If units are provided, parameter values must match the specified units" -msgstr "" - -#: common/setting/system.py:533 msgid "Minimum Pricing Decimal Places" msgstr "" -#: common/setting/system.py:535 +#: common/setting/system.py:527 msgid "Minimum number of decimal places to display when rendering pricing data" msgstr "" -#: common/setting/system.py:546 +#: common/setting/system.py:538 msgid "Maximum Pricing Decimal Places" msgstr "" -#: common/setting/system.py:548 +#: common/setting/system.py:540 msgid "Maximum number of decimal places to display when rendering pricing data" msgstr "" -#: common/setting/system.py:559 +#: common/setting/system.py:551 msgid "Use Supplier Pricing" msgstr "" -#: common/setting/system.py:561 +#: common/setting/system.py:553 msgid "Include supplier price breaks in overall pricing calculations" msgstr "" -#: common/setting/system.py:567 +#: common/setting/system.py:559 msgid "Purchase History Override" msgstr "" -#: common/setting/system.py:569 +#: common/setting/system.py:561 msgid "Historical purchase order pricing overrides supplier price breaks" msgstr "" -#: common/setting/system.py:575 +#: common/setting/system.py:567 msgid "Use Stock Item Pricing" msgstr "" -#: common/setting/system.py:577 +#: common/setting/system.py:569 msgid "Use pricing from manually entered stock data for pricing calculations" msgstr "" -#: common/setting/system.py:583 +#: common/setting/system.py:575 msgid "Stock Item Pricing Age" msgstr "" -#: common/setting/system.py:585 +#: common/setting/system.py:577 msgid "Exclude stock items older than this number of days from pricing calculations" msgstr "" -#: common/setting/system.py:592 +#: common/setting/system.py:584 msgid "Use Variant Pricing" msgstr "" -#: common/setting/system.py:593 +#: common/setting/system.py:585 msgid "Include variant pricing in overall pricing calculations" msgstr "" -#: common/setting/system.py:598 +#: common/setting/system.py:590 msgid "Active Variants Only" msgstr "" -#: common/setting/system.py:600 +#: common/setting/system.py:592 msgid "Only use active variant parts for calculating variant pricing" msgstr "" -#: common/setting/system.py:606 +#: common/setting/system.py:598 msgid "Auto Update Pricing" msgstr "" -#: common/setting/system.py:608 +#: common/setting/system.py:600 msgid "Automatically update part pricing when internal data changes" msgstr "" -#: common/setting/system.py:614 +#: common/setting/system.py:606 msgid "Pricing Rebuild Interval" msgstr "" -#: common/setting/system.py:615 +#: common/setting/system.py:607 msgid "Number of days before part pricing is automatically updated" msgstr "" -#: common/setting/system.py:621 +#: common/setting/system.py:613 msgid "Internal Prices" msgstr "" -#: common/setting/system.py:622 +#: common/setting/system.py:614 msgid "Enable internal prices for parts" msgstr "" -#: common/setting/system.py:627 +#: common/setting/system.py:619 msgid "Internal Price Override" msgstr "" -#: common/setting/system.py:629 +#: common/setting/system.py:621 msgid "If available, internal prices override price range calculations" msgstr "" -#: common/setting/system.py:635 +#: common/setting/system.py:627 msgid "Enable label printing" msgstr "" -#: common/setting/system.py:636 +#: common/setting/system.py:628 msgid "Enable label printing from the web interface" msgstr "" -#: common/setting/system.py:641 +#: common/setting/system.py:633 msgid "Label Image DPI" msgstr "" -#: common/setting/system.py:643 +#: common/setting/system.py:635 msgid "DPI resolution when generating image files to supply to label printing plugins" msgstr "" -#: common/setting/system.py:649 +#: common/setting/system.py:641 msgid "Enable Reports" msgstr "" -#: common/setting/system.py:650 +#: common/setting/system.py:642 msgid "Enable generation of reports" msgstr "" -#: common/setting/system.py:655 +#: common/setting/system.py:647 msgid "Debug Mode" msgstr "" -#: common/setting/system.py:656 +#: common/setting/system.py:648 msgid "Generate reports in debug mode (HTML output)" msgstr "" -#: common/setting/system.py:661 +#: common/setting/system.py:653 msgid "Log Report Errors" msgstr "" -#: common/setting/system.py:662 +#: common/setting/system.py:654 msgid "Log errors which occur when generating reports" msgstr "" -#: common/setting/system.py:667 plugin/builtin/labels/label_sheet.py:29 +#: common/setting/system.py:659 plugin/builtin/labels/label_sheet.py:29 #: report/models.py:381 msgid "Page Size" msgstr "" -#: common/setting/system.py:668 +#: common/setting/system.py:660 msgid "Default page size for PDF reports" msgstr "" +#: common/setting/system.py:665 +msgid "Enforce Parameter Units" +msgstr "" + +#: common/setting/system.py:667 +msgid "If units are provided, parameter values must match the specified units" +msgstr "" + #: common/setting/system.py:673 msgid "Globally Unique Serials" msgstr "" @@ -3456,688 +3595,677 @@ msgid "Display PDF reports in the browser, instead of downloading as a file" msgstr "" #: common/setting/user.py:45 -msgid "Search Parts" +msgid "Barcode Scanner in Form Fields" msgstr "" #: common/setting/user.py:46 -msgid "Display parts in search preview window" +msgid "Allow barcode scanner input in form fields" msgstr "" #: common/setting/user.py:51 -msgid "Search Supplier Parts" +msgid "Search Parts" msgstr "" #: common/setting/user.py:52 -msgid "Display supplier parts in search preview window" +msgid "Display parts in search preview window" msgstr "" #: common/setting/user.py:57 -msgid "Search Manufacturer Parts" +msgid "Search Supplier Parts" msgstr "" #: common/setting/user.py:58 -msgid "Display manufacturer parts in search preview window" +msgid "Display supplier parts in search preview window" msgstr "" #: common/setting/user.py:63 -msgid "Hide Inactive Parts" +msgid "Search Manufacturer Parts" msgstr "" #: common/setting/user.py:64 -msgid "Excluded inactive parts from search preview window" +msgid "Display manufacturer parts in search preview window" msgstr "" #: common/setting/user.py:69 -msgid "Search Categories" +msgid "Hide Inactive Parts" msgstr "" #: common/setting/user.py:70 -msgid "Display part categories in search preview window" +msgid "Excluded inactive parts from search preview window" msgstr "" #: common/setting/user.py:75 -msgid "Search Stock" +msgid "Search Categories" msgstr "" #: common/setting/user.py:76 -msgid "Display stock items in search preview window" +msgid "Display part categories in search preview window" msgstr "" #: common/setting/user.py:81 +msgid "Search Stock" +msgstr "" + +#: common/setting/user.py:82 +msgid "Display stock items in search preview window" +msgstr "" + +#: common/setting/user.py:87 msgid "Hide Unavailable Stock Items" msgstr "" -#: common/setting/user.py:83 +#: common/setting/user.py:89 msgid "Exclude stock items which are not available from the search preview window" msgstr "" -#: common/setting/user.py:89 +#: common/setting/user.py:95 msgid "Search Locations" msgstr "" -#: common/setting/user.py:90 +#: common/setting/user.py:96 msgid "Display stock locations in search preview window" msgstr "" -#: common/setting/user.py:95 +#: common/setting/user.py:101 msgid "Search Companies" msgstr "" -#: common/setting/user.py:96 +#: common/setting/user.py:102 msgid "Display companies in search preview window" msgstr "" -#: common/setting/user.py:101 +#: common/setting/user.py:107 msgid "Search Build Orders" msgstr "" -#: common/setting/user.py:102 +#: common/setting/user.py:108 msgid "Display build orders in search preview window" msgstr "" -#: common/setting/user.py:107 +#: common/setting/user.py:113 msgid "Search Purchase Orders" msgstr "" -#: common/setting/user.py:108 +#: common/setting/user.py:114 msgid "Display purchase orders in search preview window" msgstr "" -#: common/setting/user.py:113 +#: common/setting/user.py:119 msgid "Exclude Inactive Purchase Orders" msgstr "" -#: common/setting/user.py:114 +#: common/setting/user.py:120 msgid "Exclude inactive purchase orders from search preview window" msgstr "" -#: common/setting/user.py:119 +#: common/setting/user.py:125 msgid "Search Sales Orders" msgstr "" -#: common/setting/user.py:120 +#: common/setting/user.py:126 msgid "Display sales orders in search preview window" msgstr "" -#: common/setting/user.py:125 +#: common/setting/user.py:131 msgid "Exclude Inactive Sales Orders" msgstr "" -#: common/setting/user.py:126 +#: common/setting/user.py:132 msgid "Exclude inactive sales orders from search preview window" msgstr "" -#: common/setting/user.py:131 +#: common/setting/user.py:137 msgid "Search Sales Order Shipments" msgstr "" -#: common/setting/user.py:132 +#: common/setting/user.py:138 msgid "Display sales order shipments in search preview window" msgstr "" -#: common/setting/user.py:137 +#: common/setting/user.py:143 msgid "Search Return Orders" msgstr "" -#: common/setting/user.py:138 +#: common/setting/user.py:144 msgid "Display return orders in search preview window" msgstr "" -#: common/setting/user.py:143 +#: common/setting/user.py:149 msgid "Exclude Inactive Return Orders" msgstr "" -#: common/setting/user.py:144 +#: common/setting/user.py:150 msgid "Exclude inactive return orders from search preview window" msgstr "" -#: common/setting/user.py:149 +#: common/setting/user.py:155 msgid "Search Preview Results" msgstr "" -#: common/setting/user.py:151 +#: common/setting/user.py:157 msgid "Number of results to show in each section of the search preview window" msgstr "" -#: common/setting/user.py:157 +#: common/setting/user.py:163 msgid "Regex Search" msgstr "" -#: common/setting/user.py:158 +#: common/setting/user.py:164 msgid "Enable regular expressions in search queries" msgstr "" -#: common/setting/user.py:163 +#: common/setting/user.py:169 msgid "Whole Word Search" msgstr "" -#: common/setting/user.py:164 +#: common/setting/user.py:170 msgid "Search queries return results for whole word matches" msgstr "" -#: common/setting/user.py:169 +#: common/setting/user.py:175 msgid "Search Notes" msgstr "" -#: common/setting/user.py:171 +#: common/setting/user.py:177 msgid "Search queries return results for matches from the item's notes" msgstr "" -#: common/setting/user.py:177 +#: common/setting/user.py:183 msgid "Escape Key Closes Forms" msgstr "" -#: common/setting/user.py:178 +#: common/setting/user.py:184 msgid "Use the escape key to close modal forms" msgstr "" -#: common/setting/user.py:183 +#: common/setting/user.py:189 msgid "Fixed Navbar" msgstr "" -#: common/setting/user.py:184 +#: common/setting/user.py:190 msgid "The navbar position is fixed to the top of the screen" msgstr "" -#: common/setting/user.py:189 +#: common/setting/user.py:195 msgid "Fixed Table Headers" msgstr "" -#: common/setting/user.py:190 +#: common/setting/user.py:196 msgid "Table headers are fixed to the top of the table" msgstr "" -#: common/setting/user.py:195 +#: common/setting/user.py:201 msgid "Show Spotlight" msgstr "" -#: common/setting/user.py:196 +#: common/setting/user.py:202 msgid "Enable spotlight navigation functionality" msgstr "" -#: common/setting/user.py:201 +#: common/setting/user.py:207 msgid "Navigation Icons" msgstr "" -#: common/setting/user.py:202 +#: common/setting/user.py:208 msgid "Display icons in the navigation bar" msgstr "" -#: common/setting/user.py:207 +#: common/setting/user.py:213 msgid "Date Format" msgstr "" -#: common/setting/user.py:208 +#: common/setting/user.py:214 msgid "Preferred format for displaying dates" msgstr "" -#: common/setting/user.py:221 +#: common/setting/user.py:227 msgid "Show Stock History" msgstr "" -#: common/setting/user.py:222 +#: common/setting/user.py:228 msgid "Display stock history information in the part detail page" msgstr "" -#: common/setting/user.py:227 +#: common/setting/user.py:233 msgid "Show Last Breadcrumb" msgstr "" -#: common/setting/user.py:228 +#: common/setting/user.py:234 msgid "Show the current page in breadcrumbs" msgstr "" -#: common/setting/user.py:233 +#: common/setting/user.py:239 msgid "Show full stock location in tables" msgstr "" -#: common/setting/user.py:235 +#: common/setting/user.py:241 msgid "Disabled: The full location path is displayed as a hover tooltip. Enabled: The full location path is displayed as plain text." msgstr "" -#: common/setting/user.py:241 +#: common/setting/user.py:247 msgid "Show full part categories in tables" msgstr "" -#: common/setting/user.py:243 +#: common/setting/user.py:249 msgid "Disabled: The full category path is displayed as a hover tooltip. Enabled: The full category path is displayed as plain text." msgstr "" -#: common/setting/user.py:249 +#: common/setting/user.py:255 msgid "Receive error reports" msgstr "" -#: common/setting/user.py:250 +#: common/setting/user.py:256 msgid "Receive notifications for system errors" msgstr "" -#: common/setting/user.py:255 +#: common/setting/user.py:261 msgid "Last used printing machines" msgstr "" -#: common/setting/user.py:256 +#: common/setting/user.py:262 msgid "Save the last used printing machines for a user" msgstr "" -#: common/validators.py:34 +#: common/validators.py:38 +msgid "All models" +msgstr "" + +#: common/validators.py:63 msgid "No attachment model type provided" msgstr "" -#: common/validators.py:40 +#: common/validators.py:69 msgid "Invalid attachment model type" msgstr "" -#: common/validators.py:81 +#: common/validators.py:110 msgid "Minimum places cannot be greater than maximum places" msgstr "" -#: common/validators.py:93 +#: common/validators.py:122 msgid "Maximum places cannot be less than minimum places" msgstr "" -#: common/validators.py:104 +#: common/validators.py:133 msgid "An empty domain is not allowed." msgstr "" -#: common/validators.py:106 +#: common/validators.py:135 #, python-brace-format msgid "Invalid domain name: {domain}" msgstr "" -#: common/validators.py:122 +#: common/validators.py:151 msgid "Value must be uppercase" msgstr "" -#: common/validators.py:128 +#: common/validators.py:157 msgid "Value must be a valid variable identifier" msgstr "" -#: company/api.py:147 +#: company/api.py:141 msgid "Part is Active" msgstr "Позиція активна" -#: company/api.py:151 +#: company/api.py:145 msgid "Manufacturer is Active" msgstr "" -#: company/api.py:286 +#: company/api.py:246 msgid "Supplier Part is Active" msgstr "Позиція постачальника активна" -#: company/api.py:290 +#: company/api.py:250 msgid "Internal Part is Active" msgstr "Внутрішня позиція активна" -#: company/api.py:295 +#: company/api.py:255 msgid "Supplier is Active" msgstr "" -#: company/api.py:307 company/models.py:520 company/serializers.py:457 -#: part/serializers.py:566 +#: company/api.py:267 company/models.py:522 company/serializers.py:502 +#: part/serializers.py:477 msgid "Manufacturer" msgstr "Виробник" -#: company/api.py:314 company/models.py:121 company/models.py:392 +#: company/api.py:274 company/models.py:122 company/models.py:393 #: stock/api.py:900 msgid "Company" msgstr "" -#: company/api.py:324 +#: company/api.py:284 msgid "Has Stock" msgstr "" -#: company/models.py:122 +#: company/models.py:123 msgid "Companies" msgstr "" -#: company/models.py:150 +#: company/models.py:151 msgid "Company description" msgstr "" -#: company/models.py:151 +#: company/models.py:152 msgid "Description of the company" msgstr "" -#: company/models.py:157 +#: company/models.py:158 msgid "Website" msgstr "" -#: company/models.py:158 +#: company/models.py:159 msgid "Company website URL" msgstr "" -#: company/models.py:164 +#: company/models.py:165 msgid "Phone number" msgstr "" -#: company/models.py:166 +#: company/models.py:167 msgid "Contact phone number" msgstr "" -#: company/models.py:173 +#: company/models.py:174 msgid "Contact email address" msgstr "" -#: company/models.py:178 company/models.py:296 order/models.py:513 +#: company/models.py:179 company/models.py:297 order/models.py:514 #: users/models.py:561 msgid "Contact" msgstr "" -#: company/models.py:180 +#: company/models.py:181 msgid "Point of contact" msgstr "" -#: company/models.py:186 +#: company/models.py:187 msgid "Link to external company information" msgstr "" -#: company/models.py:191 +#: company/models.py:192 msgid "Is this company active?" msgstr "" -#: company/models.py:196 +#: company/models.py:197 msgid "Is customer" msgstr "" -#: company/models.py:197 +#: company/models.py:198 msgid "Do you sell items to this company?" msgstr "" -#: company/models.py:202 +#: company/models.py:203 msgid "Is supplier" msgstr "" -#: company/models.py:203 +#: company/models.py:204 msgid "Do you purchase items from this company?" msgstr "" -#: company/models.py:208 +#: company/models.py:209 msgid "Is manufacturer" msgstr "" -#: company/models.py:209 +#: company/models.py:210 msgid "Does this company manufacture parts?" msgstr "" -#: company/models.py:217 +#: company/models.py:218 msgid "Default currency used for this company" msgstr "" -#: company/models.py:224 +#: company/models.py:225 msgid "Tax ID" msgstr "" -#: company/models.py:225 +#: company/models.py:226 msgid "Company Tax ID" msgstr "" -#: company/models.py:335 order/models.py:523 order/models.py:2288 +#: company/models.py:336 order/models.py:524 order/models.py:2289 msgid "Address" msgstr "" -#: company/models.py:336 +#: company/models.py:337 msgid "Addresses" msgstr "" -#: company/models.py:393 +#: company/models.py:394 msgid "Select company" msgstr "" -#: company/models.py:398 +#: company/models.py:399 msgid "Address title" msgstr "" -#: company/models.py:399 +#: company/models.py:400 msgid "Title describing the address entry" msgstr "" -#: company/models.py:405 +#: company/models.py:406 msgid "Primary address" msgstr "" -#: company/models.py:406 +#: company/models.py:407 msgid "Set as primary address" msgstr "" -#: company/models.py:411 +#: company/models.py:412 msgid "Line 1" msgstr "" -#: company/models.py:412 +#: company/models.py:413 msgid "Address line 1" msgstr "" -#: company/models.py:418 +#: company/models.py:419 msgid "Line 2" msgstr "" -#: company/models.py:419 +#: company/models.py:420 msgid "Address line 2" msgstr "" -#: company/models.py:425 company/models.py:426 +#: company/models.py:426 company/models.py:427 msgid "Postal code" msgstr "" -#: company/models.py:432 +#: company/models.py:433 msgid "City/Region" msgstr "" -#: company/models.py:433 +#: company/models.py:434 msgid "Postal code city/region" msgstr "" -#: company/models.py:439 +#: company/models.py:440 msgid "State/Province" msgstr "" -#: company/models.py:440 +#: company/models.py:441 msgid "State or province" msgstr "" -#: company/models.py:446 +#: company/models.py:447 msgid "Country" msgstr "" -#: company/models.py:447 +#: company/models.py:448 msgid "Address country" msgstr "" -#: company/models.py:453 +#: company/models.py:454 msgid "Courier shipping notes" msgstr "" -#: company/models.py:454 +#: company/models.py:455 msgid "Notes for shipping courier" msgstr "" -#: company/models.py:460 +#: company/models.py:461 msgid "Internal shipping notes" msgstr "" -#: company/models.py:461 +#: company/models.py:462 msgid "Shipping notes for internal use" msgstr "" -#: company/models.py:468 +#: company/models.py:469 msgid "Link to address information (external)" msgstr "" -#: company/models.py:492 company/models.py:609 company/models.py:832 -#: company/serializers.py:471 stock/api.py:561 +#: company/models.py:494 company/models.py:786 company/serializers.py:516 +#: stock/api.py:561 msgid "Manufacturer Part" msgstr "Позиція виробника" -#: company/models.py:509 company/models.py:800 stock/models.py:1025 +#: company/models.py:511 company/models.py:754 stock/models.py:1025 #: stock/serializers.py:407 msgid "Base Part" msgstr "Базова позиція" -#: company/models.py:511 company/models.py:802 +#: company/models.py:513 company/models.py:756 msgid "Select part" msgstr "Обрати позицію" -#: company/models.py:521 +#: company/models.py:523 msgid "Select manufacturer" msgstr "" -#: company/models.py:527 company/serializers.py:479 order/serializers.py:734 -#: part/serializers.py:576 +#: company/models.py:529 company/serializers.py:524 order/serializers.py:745 +#: part/serializers.py:487 msgid "MPN" msgstr "" -#: company/models.py:528 stock/serializers.py:572 +#: company/models.py:530 stock/serializers.py:572 msgid "Manufacturer Part Number" msgstr "" -#: company/models.py:535 +#: company/models.py:537 msgid "URL for external manufacturer part link" msgstr "" -#: company/models.py:544 +#: company/models.py:546 msgid "Manufacturer part description" msgstr "" -#: company/models.py:597 -msgid "Manufacturer Part Parameter" -msgstr "" - -#: company/models.py:616 -msgid "Parameter name" -msgstr "" - -#: company/models.py:623 -msgid "Parameter value" -msgstr "" - -#: company/models.py:630 part/models.py:1195 part/models.py:3857 -msgid "Units" -msgstr "" - -#: company/models.py:631 -msgid "Parameter units" -msgstr "" - -#: company/models.py:740 +#: company/models.py:694 msgid "Pack units must be compatible with the base part units" msgstr "" -#: company/models.py:747 +#: company/models.py:701 msgid "Pack units must be greater than zero" msgstr "" -#: company/models.py:761 +#: company/models.py:715 msgid "Linked manufacturer part must reference the same base part" msgstr "" -#: company/models.py:810 company/serializers.py:449 company/serializers.py:467 -#: order/models.py:639 part/serializers.py:550 +#: company/models.py:764 company/serializers.py:494 company/serializers.py:512 +#: order/models.py:640 part/serializers.py:461 #: plugin/builtin/suppliers/digikey.py:26 plugin/builtin/suppliers/lcsc.py:27 #: plugin/builtin/suppliers/mouser.py:25 plugin/builtin/suppliers/tme.py:27 #: stock/api.py:567 templates/email/overdue_purchase_order.html:16 msgid "Supplier" msgstr "" -#: company/models.py:811 +#: company/models.py:765 msgid "Select supplier" msgstr "" -#: company/models.py:817 part/serializers.py:561 +#: company/models.py:771 part/serializers.py:472 msgid "Supplier stock keeping unit" msgstr "" -#: company/models.py:823 +#: company/models.py:777 msgid "Is this supplier part active?" msgstr "" -#: company/models.py:833 +#: company/models.py:787 msgid "Select manufacturer part" msgstr "" -#: company/models.py:840 +#: company/models.py:794 msgid "URL for external supplier part link" msgstr "" -#: company/models.py:849 +#: company/models.py:803 msgid "Supplier part description" msgstr "" -#: company/models.py:856 order/serializers.py:883 order/serializers.py:2047 -#: part/models.py:4070 part/models.py:4450 part/models.py:4819 -#: report/templates/report/inventree_bill_of_materials_report.html:140 -#: report/templates/report/inventree_purchase_order_report.html:39 -#: report/templates/report/inventree_return_order_report.html:27 -#: report/templates/report/inventree_sales_order_report.html:32 -#: report/templates/report/inventree_stock_location_report.html:105 -#: stock/serializers.py:813 -msgid "Note" -msgstr "Примітка" - -#: company/models.py:865 part/models.py:2250 +#: company/models.py:819 part/models.py:2338 msgid "base cost" msgstr "Базова вартість" -#: company/models.py:866 part/models.py:2251 +#: company/models.py:820 part/models.py:2339 msgid "Minimum charge (e.g. stocking fee)" msgstr "Мінімальний платіж (напр. комісія за збереження)" -#: company/models.py:873 order/serializers.py:875 stock/models.py:1056 +#: company/models.py:827 order/serializers.py:886 stock/models.py:1056 #: stock/serializers.py:1606 msgid "Packaging" msgstr "" -#: company/models.py:874 +#: company/models.py:828 msgid "Part packaging" msgstr "" -#: company/models.py:879 +#: company/models.py:833 msgid "Pack Quantity" msgstr "" -#: company/models.py:881 +#: company/models.py:835 msgid "Total quantity supplied in a single pack. Leave empty for single items." msgstr "" -#: company/models.py:900 part/models.py:2257 +#: company/models.py:854 part/models.py:2345 msgid "multiple" msgstr "" -#: company/models.py:901 +#: company/models.py:855 msgid "Order multiple" msgstr "" -#: company/models.py:913 +#: company/models.py:867 msgid "Quantity available from supplier" msgstr "" -#: company/models.py:919 +#: company/models.py:873 msgid "Availability Updated" msgstr "" -#: company/models.py:920 +#: company/models.py:874 msgid "Date of last update of availability data" msgstr "" -#: company/models.py:1048 +#: company/models.py:1002 msgid "Supplier Price Break" msgstr "" -#: company/serializers.py:181 +#: company/serializers.py:184 +msgid "Primary Address" +msgstr "" + +#: company/serializers.py:186 msgid "Return the string representation for the primary address. This property exists for backwards compatibility." msgstr "" -#: company/serializers.py:212 +#: company/serializers.py:218 msgid "Default currency used for this supplier" msgstr "" -#: company/serializers.py:248 +#: company/serializers.py:260 msgid "Company Name" msgstr "" -#: company/serializers.py:433 part/serializers.py:955 stock/serializers.py:428 +#: company/serializers.py:460 part/serializers.py:840 stock/serializers.py:428 msgid "In Stock" msgstr "В наявності" +#: company/serializers.py:477 +msgid "Price Breaks" +msgstr "" + #: data_exporter/mixins.py:325 data_exporter/mixins.py:403 msgid "Error occurred during data export" msgstr "" @@ -4290,7 +4418,7 @@ msgstr "" msgid "Errors" msgstr "" -#: importer/models.py:550 part/serializers.py:1268 +#: importer/models.py:550 part/serializers.py:1133 msgid "Valid" msgstr "Дійсно" @@ -4402,7 +4530,7 @@ msgstr "" msgid "Connected" msgstr "" -#: machine/machine_types/label_printer.py:232 order/api.py:1795 +#: machine/machine_types/label_printer.py:232 order/api.py:1800 msgid "Unknown" msgstr "" @@ -4530,105 +4658,105 @@ msgstr "" msgid "Maximum value for progress type, required if type=progress" msgstr "" -#: order/api.py:125 +#: order/api.py:130 msgid "Order Reference" msgstr "" -#: order/api.py:153 order/api.py:1207 +#: order/api.py:158 order/api.py:1212 msgid "Outstanding" msgstr "" -#: order/api.py:169 +#: order/api.py:174 msgid "Has Project Code" msgstr "" -#: order/api.py:183 order/models.py:488 +#: order/api.py:188 order/models.py:489 msgid "Created By" msgstr "" -#: order/api.py:187 +#: order/api.py:192 msgid "Created Before" msgstr "" -#: order/api.py:191 +#: order/api.py:196 msgid "Created After" msgstr "" -#: order/api.py:195 +#: order/api.py:200 msgid "Has Start Date" msgstr "" -#: order/api.py:203 +#: order/api.py:208 msgid "Start Date Before" msgstr "" -#: order/api.py:207 +#: order/api.py:212 msgid "Start Date After" msgstr "" -#: order/api.py:211 +#: order/api.py:216 msgid "Has Target Date" msgstr "" -#: order/api.py:219 +#: order/api.py:224 msgid "Target Date Before" msgstr "" -#: order/api.py:223 +#: order/api.py:228 msgid "Target Date After" msgstr "" -#: order/api.py:274 +#: order/api.py:279 msgid "Has Pricing" msgstr "" -#: order/api.py:327 order/api.py:812 order/api.py:1490 +#: order/api.py:332 order/api.py:818 order/api.py:1495 msgid "Completed Before" msgstr "" -#: order/api.py:331 order/api.py:816 order/api.py:1494 +#: order/api.py:336 order/api.py:822 order/api.py:1499 msgid "Completed After" msgstr "" -#: order/api.py:337 order/api.py:341 +#: order/api.py:342 order/api.py:346 msgid "External Build Order" msgstr "" -#: order/api.py:526 order/api.py:914 order/api.py:1170 order/models.py:1922 -#: order/models.py:2049 order/models.py:2099 order/models.py:2279 -#: order/models.py:2477 order/models.py:2999 order/models.py:3065 +#: order/api.py:532 order/api.py:919 order/api.py:1175 order/models.py:1923 +#: order/models.py:2050 order/models.py:2100 order/models.py:2280 +#: order/models.py:2478 order/models.py:3000 order/models.py:3066 msgid "Order" msgstr "" -#: order/api.py:530 order/api.py:982 +#: order/api.py:536 order/api.py:987 msgid "Order Complete" msgstr "" -#: order/api.py:562 order/api.py:566 order/serializers.py:745 +#: order/api.py:568 order/api.py:572 order/serializers.py:756 msgid "Internal Part" msgstr "Внутрішній компонент" -#: order/api.py:584 +#: order/api.py:590 msgid "Order Pending" msgstr "" -#: order/api.py:967 +#: order/api.py:972 msgid "Completed" msgstr "" -#: order/api.py:1223 +#: order/api.py:1228 msgid "Has Shipment" msgstr "" -#: order/api.py:1789 order/models.py:552 order/models.py:1923 -#: order/models.py:2050 +#: order/api.py:1794 order/models.py:553 order/models.py:1924 +#: order/models.py:2051 #: report/templates/report/inventree_purchase_order_report.html:14 #: stock/serializers.py:129 templates/email/overdue_purchase_order.html:15 msgid "Purchase Order" msgstr "" -#: order/api.py:1791 order/models.py:1251 order/models.py:2100 -#: order/models.py:2280 order/models.py:2478 +#: order/api.py:1796 order/models.py:1252 order/models.py:2101 +#: order/models.py:2281 order/models.py:2479 #: report/templates/report/inventree_build_order_report.html:135 #: report/templates/report/inventree_sales_order_report.html:14 #: report/templates/report/inventree_sales_order_shipment_report.html:15 @@ -4636,8 +4764,8 @@ msgstr "" msgid "Sales Order" msgstr "" -#: order/api.py:1793 order/models.py:2649 order/models.py:3000 -#: order/models.py:3066 +#: order/api.py:1798 order/models.py:2650 order/models.py:3001 +#: order/models.py:3067 #: report/templates/report/inventree_return_order_report.html:13 #: templates/email/overdue_return_order.html:15 msgid "Return Order" @@ -4653,722 +4781,722 @@ msgstr "" msgid "Total price for this order" msgstr "" -#: order/models.py:96 order/serializers.py:77 +#: order/models.py:96 order/serializers.py:78 msgid "Order Currency" msgstr "" -#: order/models.py:99 order/serializers.py:78 +#: order/models.py:99 order/serializers.py:79 msgid "Currency for this order (leave blank to use company default)" msgstr "" -#: order/models.py:324 +#: order/models.py:325 msgid "This order is locked and cannot be modified" msgstr "" -#: order/models.py:376 +#: order/models.py:377 msgid "Contact does not match selected company" msgstr "" -#: order/models.py:383 +#: order/models.py:384 msgid "Start date must be before target date" msgstr "" -#: order/models.py:390 +#: order/models.py:391 msgid "Address does not match selected company" msgstr "" -#: order/models.py:443 +#: order/models.py:444 msgid "Order description (optional)" msgstr "" -#: order/models.py:452 order/models.py:1806 +#: order/models.py:453 order/models.py:1807 msgid "Select project code for this order" msgstr "" -#: order/models.py:458 order/models.py:1787 order/models.py:2344 +#: order/models.py:459 order/models.py:1788 order/models.py:2345 msgid "Link to external page" msgstr "" -#: order/models.py:465 +#: order/models.py:466 msgid "Start date" msgstr "" -#: order/models.py:466 +#: order/models.py:467 msgid "Scheduled start date for this order" msgstr "" -#: order/models.py:472 order/models.py:1794 order/serializers.py:309 +#: order/models.py:473 order/models.py:1795 order/serializers.py:317 #: report/templates/report/inventree_build_order_report.html:125 msgid "Target Date" msgstr "" -#: order/models.py:474 +#: order/models.py:475 msgid "Expected date for order delivery. Order will be overdue after this date." msgstr "" -#: order/models.py:494 +#: order/models.py:495 msgid "Issue Date" msgstr "" -#: order/models.py:495 +#: order/models.py:496 msgid "Date order was issued" msgstr "" -#: order/models.py:503 +#: order/models.py:504 msgid "User or group responsible for this order" msgstr "" -#: order/models.py:514 +#: order/models.py:515 msgid "Point of contact for this order" msgstr "" -#: order/models.py:524 +#: order/models.py:525 msgid "Company address for this order" msgstr "" -#: order/models.py:615 order/models.py:1312 +#: order/models.py:616 order/models.py:1313 msgid "Order reference" msgstr "" -#: order/models.py:624 order/models.py:1336 order/models.py:2737 +#: order/models.py:625 order/models.py:1337 order/models.py:2738 #: stock/serializers.py:559 stock/serializers.py:988 users/models.py:542 msgid "Status" msgstr "" -#: order/models.py:625 +#: order/models.py:626 msgid "Purchase order status" msgstr "" -#: order/models.py:640 +#: order/models.py:641 msgid "Company from which the items are being ordered" msgstr "" -#: order/models.py:651 +#: order/models.py:652 msgid "Supplier Reference" msgstr "" -#: order/models.py:652 +#: order/models.py:653 msgid "Supplier order reference code" msgstr "" -#: order/models.py:661 +#: order/models.py:662 msgid "received by" msgstr "" -#: order/models.py:668 order/models.py:2752 +#: order/models.py:669 order/models.py:2753 msgid "Date order was completed" msgstr "" -#: order/models.py:677 order/models.py:1981 +#: order/models.py:678 order/models.py:1982 msgid "Destination" msgstr "" -#: order/models.py:678 order/models.py:1985 +#: order/models.py:679 order/models.py:1986 msgid "Destination for received items" msgstr "" -#: order/models.py:724 +#: order/models.py:725 msgid "Part supplier must match PO supplier" msgstr "" -#: order/models.py:994 +#: order/models.py:995 msgid "Line item does not match purchase order" msgstr "" -#: order/models.py:997 +#: order/models.py:998 msgid "Line item is missing a linked part" msgstr "" -#: order/models.py:1011 +#: order/models.py:1012 msgid "Quantity must be a positive number" msgstr "" -#: order/models.py:1323 order/models.py:2724 stock/models.py:1078 +#: order/models.py:1324 order/models.py:2725 stock/models.py:1078 #: stock/models.py:1079 stock/serializers.py:1322 #: templates/email/overdue_return_order.html:16 #: templates/email/overdue_sales_order.html:16 msgid "Customer" msgstr "" -#: order/models.py:1324 +#: order/models.py:1325 msgid "Company to which the items are being sold" msgstr "" -#: order/models.py:1337 +#: order/models.py:1338 msgid "Sales order status" msgstr "" -#: order/models.py:1348 order/models.py:2744 +#: order/models.py:1349 order/models.py:2745 msgid "Customer Reference " msgstr "" -#: order/models.py:1349 order/models.py:2745 +#: order/models.py:1350 order/models.py:2746 msgid "Customer order reference code" msgstr "" -#: order/models.py:1353 order/models.py:2296 +#: order/models.py:1354 order/models.py:2297 msgid "Shipment Date" msgstr "" -#: order/models.py:1362 +#: order/models.py:1363 msgid "shipped by" msgstr "" -#: order/models.py:1413 +#: order/models.py:1414 msgid "Order is already complete" msgstr "" -#: order/models.py:1416 +#: order/models.py:1417 msgid "Order is already cancelled" msgstr "" -#: order/models.py:1420 +#: order/models.py:1421 msgid "Only an open order can be marked as complete" msgstr "" -#: order/models.py:1424 +#: order/models.py:1425 msgid "Order cannot be completed as there are incomplete shipments" msgstr "" -#: order/models.py:1429 +#: order/models.py:1430 msgid "Order cannot be completed as there are incomplete allocations" msgstr "" -#: order/models.py:1438 +#: order/models.py:1439 msgid "Order cannot be completed as there are incomplete line items" msgstr "" -#: order/models.py:1733 order/models.py:1749 +#: order/models.py:1734 order/models.py:1750 msgid "The order is locked and cannot be modified" msgstr "" -#: order/models.py:1757 +#: order/models.py:1758 msgid "Item quantity" msgstr "" -#: order/models.py:1774 +#: order/models.py:1775 msgid "Line item reference" msgstr "" -#: order/models.py:1781 +#: order/models.py:1782 msgid "Line item notes" msgstr "" -#: order/models.py:1796 +#: order/models.py:1797 msgid "Target date for this line item (leave blank to use the target date from the order)" msgstr "" -#: order/models.py:1826 +#: order/models.py:1827 msgid "Line item description (optional)" msgstr "" -#: order/models.py:1833 +#: order/models.py:1834 msgid "Additional context for this line" msgstr "" -#: order/models.py:1843 +#: order/models.py:1844 msgid "Unit price" msgstr "" -#: order/models.py:1862 +#: order/models.py:1863 msgid "Purchase Order Line Item" msgstr "" -#: order/models.py:1889 +#: order/models.py:1890 msgid "Supplier part must match supplier" msgstr "" -#: order/models.py:1894 +#: order/models.py:1895 msgid "Build order must be marked as external" msgstr "" -#: order/models.py:1901 +#: order/models.py:1902 msgid "Build orders can only be linked to assembly parts" msgstr "" -#: order/models.py:1907 +#: order/models.py:1908 msgid "Build order part must match line item part" msgstr "" -#: order/models.py:1942 +#: order/models.py:1943 msgid "Supplier part" msgstr "" -#: order/models.py:1949 +#: order/models.py:1950 msgid "Received" msgstr "" -#: order/models.py:1950 +#: order/models.py:1951 msgid "Number of items received" msgstr "" -#: order/models.py:1958 stock/models.py:1201 stock/serializers.py:637 +#: order/models.py:1959 stock/models.py:1201 stock/serializers.py:637 msgid "Purchase Price" msgstr "" -#: order/models.py:1959 +#: order/models.py:1960 msgid "Unit purchase price" msgstr "" -#: order/models.py:1975 +#: order/models.py:1976 msgid "External Build Order to be fulfilled by this line item" msgstr "" -#: order/models.py:2038 +#: order/models.py:2039 msgid "Purchase Order Extra Line" msgstr "" -#: order/models.py:2067 +#: order/models.py:2068 msgid "Sales Order Line Item" msgstr "" -#: order/models.py:2092 +#: order/models.py:2093 msgid "Only salable parts can be assigned to a sales order" msgstr "" -#: order/models.py:2118 +#: order/models.py:2119 msgid "Sale Price" msgstr "" -#: order/models.py:2119 +#: order/models.py:2120 msgid "Unit sale price" msgstr "" -#: order/models.py:2128 order/status_codes.py:50 +#: order/models.py:2129 order/status_codes.py:50 msgid "Shipped" msgstr "" -#: order/models.py:2129 +#: order/models.py:2130 msgid "Shipped quantity" msgstr "" -#: order/models.py:2240 +#: order/models.py:2241 msgid "Sales Order Shipment" msgstr "" -#: order/models.py:2253 +#: order/models.py:2254 msgid "Shipment address must match the customer" msgstr "" -#: order/models.py:2289 +#: order/models.py:2290 msgid "Shipping address for this shipment" msgstr "" -#: order/models.py:2297 +#: order/models.py:2298 msgid "Date of shipment" msgstr "" -#: order/models.py:2303 +#: order/models.py:2304 msgid "Delivery Date" msgstr "" -#: order/models.py:2304 +#: order/models.py:2305 msgid "Date of delivery of shipment" msgstr "" -#: order/models.py:2312 +#: order/models.py:2313 msgid "Checked By" msgstr "" -#: order/models.py:2313 +#: order/models.py:2314 msgid "User who checked this shipment" msgstr "" -#: order/models.py:2320 order/models.py:2574 order/serializers.py:1711 -#: order/serializers.py:1835 +#: order/models.py:2321 order/models.py:2575 order/serializers.py:1725 +#: order/serializers.py:1849 #: report/templates/report/inventree_sales_order_shipment_report.html:14 msgid "Shipment" msgstr "" -#: order/models.py:2321 +#: order/models.py:2322 msgid "Shipment number" msgstr "" -#: order/models.py:2329 +#: order/models.py:2330 msgid "Tracking Number" msgstr "" -#: order/models.py:2330 +#: order/models.py:2331 msgid "Shipment tracking information" msgstr "" -#: order/models.py:2337 +#: order/models.py:2338 msgid "Invoice Number" msgstr "" -#: order/models.py:2338 +#: order/models.py:2339 msgid "Reference number for associated invoice" msgstr "" -#: order/models.py:2377 +#: order/models.py:2378 msgid "Shipment has already been sent" msgstr "" -#: order/models.py:2380 +#: order/models.py:2381 msgid "Shipment has no allocated stock items" msgstr "" -#: order/models.py:2387 +#: order/models.py:2388 msgid "Shipment must be checked before it can be completed" msgstr "" -#: order/models.py:2466 +#: order/models.py:2467 msgid "Sales Order Extra Line" msgstr "" -#: order/models.py:2495 +#: order/models.py:2496 msgid "Sales Order Allocation" msgstr "" -#: order/models.py:2518 order/models.py:2520 +#: order/models.py:2519 order/models.py:2521 msgid "Stock item has not been assigned" msgstr "" -#: order/models.py:2527 +#: order/models.py:2528 msgid "Cannot allocate stock item to a line with a different part" msgstr "" -#: order/models.py:2530 +#: order/models.py:2531 msgid "Cannot allocate stock to a line without a part" msgstr "" -#: order/models.py:2533 +#: order/models.py:2534 msgid "Allocation quantity cannot exceed stock quantity" msgstr "" -#: order/models.py:2552 order/serializers.py:1581 +#: order/models.py:2553 order/serializers.py:1595 msgid "Quantity must be 1 for serialized stock item" msgstr "" -#: order/models.py:2555 +#: order/models.py:2556 msgid "Sales order does not match shipment" msgstr "" -#: order/models.py:2556 plugin/base/barcodes/api.py:642 +#: order/models.py:2557 plugin/base/barcodes/api.py:642 msgid "Shipment does not match sales order" msgstr "" -#: order/models.py:2564 +#: order/models.py:2565 msgid "Line" msgstr "" -#: order/models.py:2575 +#: order/models.py:2576 msgid "Sales order shipment reference" msgstr "" -#: order/models.py:2588 order/models.py:3007 +#: order/models.py:2589 order/models.py:3008 msgid "Item" msgstr "" -#: order/models.py:2589 +#: order/models.py:2590 msgid "Select stock item to allocate" msgstr "" -#: order/models.py:2598 +#: order/models.py:2599 msgid "Enter stock allocation quantity" msgstr "" -#: order/models.py:2713 +#: order/models.py:2714 msgid "Return Order reference" msgstr "" -#: order/models.py:2725 +#: order/models.py:2726 msgid "Company from which items are being returned" msgstr "" -#: order/models.py:2738 +#: order/models.py:2739 msgid "Return order status" msgstr "" -#: order/models.py:2965 +#: order/models.py:2966 msgid "Return Order Line Item" msgstr "" -#: order/models.py:2978 +#: order/models.py:2979 msgid "Stock item must be specified" msgstr "" -#: order/models.py:2982 +#: order/models.py:2983 msgid "Return quantity exceeds stock quantity" msgstr "" -#: order/models.py:2987 +#: order/models.py:2988 msgid "Return quantity must be greater than zero" msgstr "" -#: order/models.py:2992 +#: order/models.py:2993 msgid "Invalid quantity for serialized stock item" msgstr "" -#: order/models.py:3008 +#: order/models.py:3009 msgid "Select item to return from customer" msgstr "" -#: order/models.py:3023 +#: order/models.py:3024 msgid "Received Date" msgstr "" -#: order/models.py:3024 +#: order/models.py:3025 msgid "The date this this return item was received" msgstr "" -#: order/models.py:3036 +#: order/models.py:3037 msgid "Outcome" msgstr "" -#: order/models.py:3037 +#: order/models.py:3038 msgid "Outcome for this line item" msgstr "" -#: order/models.py:3044 +#: order/models.py:3045 msgid "Cost associated with return or repair for this line item" msgstr "" -#: order/models.py:3054 +#: order/models.py:3055 msgid "Return Order Extra Line" msgstr "" -#: order/serializers.py:91 +#: order/serializers.py:92 msgid "Order ID" msgstr "" -#: order/serializers.py:91 +#: order/serializers.py:92 msgid "ID of the order to duplicate" msgstr "" -#: order/serializers.py:97 +#: order/serializers.py:98 msgid "Copy Lines" msgstr "" -#: order/serializers.py:98 +#: order/serializers.py:99 msgid "Copy line items from the original order" msgstr "" -#: order/serializers.py:104 +#: order/serializers.py:105 msgid "Copy Extra Lines" msgstr "" -#: order/serializers.py:105 +#: order/serializers.py:106 msgid "Copy extra line items from the original order" msgstr "" -#: order/serializers.py:120 +#: order/serializers.py:121 #: report/templates/report/inventree_purchase_order_report.html:29 #: report/templates/report/inventree_return_order_report.html:19 #: report/templates/report/inventree_sales_order_report.html:22 msgid "Line Items" msgstr "" -#: order/serializers.py:125 +#: order/serializers.py:126 msgid "Completed Lines" msgstr "" -#: order/serializers.py:192 +#: order/serializers.py:199 msgid "Duplicate Order" msgstr "" -#: order/serializers.py:193 +#: order/serializers.py:200 msgid "Specify options for duplicating this order" msgstr "" -#: order/serializers.py:270 +#: order/serializers.py:278 msgid "Invalid order ID" msgstr "" -#: order/serializers.py:466 +#: order/serializers.py:477 msgid "Supplier Name" msgstr "" -#: order/serializers.py:510 +#: order/serializers.py:521 msgid "Order cannot be cancelled" msgstr "" -#: order/serializers.py:525 order/serializers.py:1602 +#: order/serializers.py:536 order/serializers.py:1616 msgid "Allow order to be closed with incomplete line items" msgstr "" -#: order/serializers.py:535 order/serializers.py:1612 +#: order/serializers.py:546 order/serializers.py:1626 msgid "Order has incomplete line items" msgstr "" -#: order/serializers.py:665 +#: order/serializers.py:676 msgid "Order is not open" msgstr "" -#: order/serializers.py:692 +#: order/serializers.py:703 msgid "Auto Pricing" msgstr "" -#: order/serializers.py:694 +#: order/serializers.py:705 msgid "Automatically calculate purchase price based on supplier part data" msgstr "" -#: order/serializers.py:704 +#: order/serializers.py:715 msgid "Purchase price currency" msgstr "" -#: order/serializers.py:718 +#: order/serializers.py:729 msgid "Merge Items" msgstr "" -#: order/serializers.py:720 +#: order/serializers.py:731 msgid "Merge items with the same part, destination and target date into one line item" msgstr "" -#: order/serializers.py:727 part/serializers.py:560 +#: order/serializers.py:738 part/serializers.py:471 msgid "SKU" msgstr "" -#: order/serializers.py:741 part/models.py:1089 part/serializers.py:372 +#: order/serializers.py:752 part/models.py:1177 part/serializers.py:337 msgid "Internal Part Number" msgstr "" -#: order/serializers.py:749 +#: order/serializers.py:760 msgid "Internal Part Name" msgstr "" -#: order/serializers.py:765 +#: order/serializers.py:776 msgid "Supplier part must be specified" msgstr "" -#: order/serializers.py:768 +#: order/serializers.py:779 msgid "Purchase order must be specified" msgstr "" -#: order/serializers.py:776 +#: order/serializers.py:787 msgid "Supplier must match purchase order" msgstr "" -#: order/serializers.py:777 +#: order/serializers.py:788 msgid "Purchase order must match supplier" msgstr "" -#: order/serializers.py:825 order/serializers.py:1682 +#: order/serializers.py:836 order/serializers.py:1696 msgid "Line Item" msgstr "" -#: order/serializers.py:834 order/serializers.py:974 order/serializers.py:2043 +#: order/serializers.py:845 order/serializers.py:985 order/serializers.py:2060 msgid "Select destination location for received items" msgstr "" -#: order/serializers.py:850 +#: order/serializers.py:861 msgid "Enter batch code for incoming stock items" msgstr "" -#: order/serializers.py:857 stock/models.py:1160 +#: order/serializers.py:868 stock/models.py:1160 #: templates/email/stale_stock_notification.html:22 users/models.py:137 msgid "Expiry Date" msgstr "" -#: order/serializers.py:858 +#: order/serializers.py:869 msgid "Enter expiry date for incoming stock items" msgstr "" -#: order/serializers.py:866 +#: order/serializers.py:877 msgid "Enter serial numbers for incoming stock items" msgstr "" -#: order/serializers.py:876 +#: order/serializers.py:887 msgid "Override packaging information for incoming stock items" msgstr "" -#: order/serializers.py:884 order/serializers.py:2048 +#: order/serializers.py:895 order/serializers.py:2065 msgid "Additional note for incoming stock items" msgstr "" -#: order/serializers.py:891 +#: order/serializers.py:902 msgid "Barcode" msgstr "" -#: order/serializers.py:892 +#: order/serializers.py:903 msgid "Scanned barcode" msgstr "" -#: order/serializers.py:908 +#: order/serializers.py:919 msgid "Barcode is already in use" msgstr "" -#: order/serializers.py:991 order/serializers.py:2067 +#: order/serializers.py:1002 order/serializers.py:2084 msgid "Line items must be provided" msgstr "" -#: order/serializers.py:1010 +#: order/serializers.py:1021 msgid "Destination location must be specified" msgstr "" -#: order/serializers.py:1017 +#: order/serializers.py:1028 msgid "Supplied barcode values must be unique" msgstr "" -#: order/serializers.py:1121 +#: order/serializers.py:1135 msgid "Shipments" msgstr "" -#: order/serializers.py:1125 +#: order/serializers.py:1139 msgid "Completed Shipments" msgstr "" -#: order/serializers.py:1293 +#: order/serializers.py:1307 msgid "Sale price currency" msgstr "" -#: order/serializers.py:1339 +#: order/serializers.py:1353 msgid "Allocated Items" msgstr "" -#: order/serializers.py:1484 +#: order/serializers.py:1498 msgid "No shipment details provided" msgstr "" -#: order/serializers.py:1545 order/serializers.py:1691 +#: order/serializers.py:1559 order/serializers.py:1705 msgid "Line item is not associated with this order" msgstr "" -#: order/serializers.py:1564 +#: order/serializers.py:1578 msgid "Quantity must be positive" msgstr "" -#: order/serializers.py:1701 +#: order/serializers.py:1715 msgid "Enter serial numbers to allocate" msgstr "" -#: order/serializers.py:1723 order/serializers.py:1843 +#: order/serializers.py:1737 order/serializers.py:1857 msgid "Shipment has already been shipped" msgstr "" -#: order/serializers.py:1726 order/serializers.py:1846 +#: order/serializers.py:1740 order/serializers.py:1860 msgid "Shipment is not associated with this order" msgstr "" -#: order/serializers.py:1781 +#: order/serializers.py:1795 msgid "No match found for the following serial numbers" msgstr "" -#: order/serializers.py:1788 +#: order/serializers.py:1802 msgid "The following serial numbers are unavailable" msgstr "" -#: order/serializers.py:2009 +#: order/serializers.py:2026 msgid "Return order line item" msgstr "" -#: order/serializers.py:2019 +#: order/serializers.py:2036 msgid "Line item does not match return order" msgstr "" -#: order/serializers.py:2022 +#: order/serializers.py:2039 msgid "Line item has already been received" msgstr "" -#: order/serializers.py:2059 +#: order/serializers.py:2076 msgid "Items can only be received against orders which are in progress" msgstr "" -#: order/serializers.py:2124 +#: order/serializers.py:2141 msgid "Quantity to return" msgstr "" -#: order/serializers.py:2140 +#: order/serializers.py:2157 msgid "Line price currency" msgstr "" @@ -5431,1190 +5559,1109 @@ msgstr "" msgid "Return order {ro} is now overdue" msgstr "" -#: part/api.py:108 +#: part/api.py:103 msgid "Starred" msgstr "" -#: part/api.py:110 +#: part/api.py:105 msgid "Filter by starred categories" msgstr "" -#: part/api.py:127 stock/api.py:288 +#: part/api.py:122 stock/api.py:288 msgid "Depth" msgstr "Глибина" -#: part/api.py:127 +#: part/api.py:122 msgid "Filter by category depth" msgstr "" -#: part/api.py:145 stock/api.py:306 +#: part/api.py:140 stock/api.py:306 msgid "Top Level" msgstr "" -#: part/api.py:147 +#: part/api.py:142 msgid "Filter by top-level categories" msgstr "" -#: part/api.py:160 stock/api.py:321 +#: part/api.py:155 stock/api.py:321 msgid "Cascade" msgstr "" -#: part/api.py:162 +#: part/api.py:157 msgid "Include sub-categories in filtered results" msgstr "" -#: part/api.py:182 +#: part/api.py:177 msgid "Parent" msgstr "Батьківський елемент" -#: part/api.py:184 +#: part/api.py:179 msgid "Filter by parent category" msgstr "Фільтр за батьківською категорією" -#: part/api.py:219 +#: part/api.py:214 msgid "Exclude sub-categories under the specified category" msgstr "" -#: part/api.py:445 +#: part/api.py:440 msgid "Has Results" msgstr "" -#: part/api.py:666 +#: part/api.py:661 msgid "Is Variant" msgstr "" -#: part/api.py:674 +#: part/api.py:669 msgid "Is Revision" msgstr "" -#: part/api.py:684 +#: part/api.py:679 msgid "Has Revisions" msgstr "" -#: part/api.py:865 +#: part/api.py:860 msgid "BOM Valid" msgstr "" -#: part/api.py:974 +#: part/api.py:969 msgid "Cascade Categories" msgstr "" -#: part/api.py:975 +#: part/api.py:970 msgid "If true, include items in child categories of the given category" msgstr "" -#: part/api.py:981 +#: part/api.py:976 msgid "Filter by numeric category ID or the literal 'null'" msgstr "" -#: part/api.py:1533 +#: part/api.py:1258 msgid "Assembly part is testable" msgstr "" -#: part/api.py:1542 +#: part/api.py:1267 msgid "Component part is testable" msgstr "" -#: part/api.py:1611 +#: part/api.py:1336 msgid "Uses" msgstr "" -#: part/models.py:96 part/models.py:4163 +#: part/models.py:93 part/models.py:436 #: templates/email/part_event_notification.html:16 msgid "Part Category" msgstr "" -#: part/models.py:97 users/ruleset.py:27 +#: part/models.py:94 users/ruleset.py:27 msgid "Part Categories" msgstr "" -#: part/models.py:115 part/models.py:1125 +#: part/models.py:112 part/models.py:1213 msgid "Default Location" msgstr "" -#: part/models.py:116 +#: part/models.py:113 msgid "Default location for parts in this category" msgstr "" -#: part/models.py:121 stock/models.py:216 +#: part/models.py:118 stock/models.py:216 msgid "Structural" msgstr "" -#: part/models.py:123 +#: part/models.py:120 msgid "Parts may not be directly assigned to a structural category, but may be assigned to child categories." msgstr "" -#: part/models.py:132 +#: part/models.py:129 msgid "Default keywords" msgstr "" -#: part/models.py:133 +#: part/models.py:130 msgid "Default keywords for parts in this category" msgstr "" -#: part/models.py:140 stock/models.py:97 stock/models.py:198 +#: part/models.py:137 stock/models.py:97 stock/models.py:198 msgid "Icon" msgstr "" -#: part/models.py:141 part/serializers.py:148 part/serializers.py:167 +#: part/models.py:138 part/serializers.py:147 part/serializers.py:166 #: stock/models.py:199 msgid "Icon (optional)" msgstr "" -#: part/models.py:185 +#: part/models.py:182 msgid "You cannot make this part category structural because some parts are already assigned to it!" msgstr "" -#: part/models.py:473 part/serializers.py:119 part/serializers.py:310 -#: users/ruleset.py:28 +#: part/models.py:392 +msgid "Part Category Parameter Template" +msgstr "" + +#: part/models.py:448 +msgid "Default Value" +msgstr "" + +#: part/models.py:449 +msgid "Default Parameter Value" +msgstr "" + +#: part/models.py:551 part/serializers.py:118 users/ruleset.py:28 msgid "Parts" msgstr "Позиції" -#: part/models.py:525 +#: part/models.py:597 +msgid "Cannot delete parameters of a locked part" +msgstr "" + +#: part/models.py:602 +msgid "Cannot modify parameters of a locked part" +msgstr "" + +#: part/models.py:613 msgid "Cannot delete this part as it is locked" msgstr "Неможливо видалити цю позицію, оскільки вона заблокована" -#: part/models.py:528 +#: part/models.py:616 msgid "Cannot delete this part as it is still active" msgstr "Неможливо видалити цю позицію, оскільки вона ще активна" -#: part/models.py:533 +#: part/models.py:621 msgid "Cannot delete this part as it is used in an assembly" msgstr "Неможливо видалити цю позицію, бо вона використовується у збірці" -#: part/models.py:616 part/models.py:623 +#: part/models.py:704 part/models.py:711 #, python-brace-format msgid "Part '{self}' cannot be used in BOM for '{parent}' (recursive)" msgstr "" -#: part/models.py:635 +#: part/models.py:723 #, python-brace-format msgid "Part '{parent}' is used in BOM for '{self}' (recursive)" msgstr "" -#: part/models.py:702 +#: part/models.py:790 #, python-brace-format msgid "IPN must match regex pattern {pattern}" msgstr "" -#: part/models.py:710 +#: part/models.py:798 msgid "Part cannot be a revision of itself" msgstr "" -#: part/models.py:717 +#: part/models.py:805 msgid "Cannot make a revision of a part which is already a revision" msgstr "" -#: part/models.py:724 +#: part/models.py:812 msgid "Revision code must be specified" msgstr "" -#: part/models.py:731 +#: part/models.py:819 msgid "Revisions are only allowed for assembly parts" msgstr "" -#: part/models.py:738 +#: part/models.py:826 msgid "Cannot make a revision of a template part" msgstr "" -#: part/models.py:744 +#: part/models.py:832 msgid "Parent part must point to the same template" msgstr "" -#: part/models.py:841 +#: part/models.py:929 msgid "Stock item with this serial number already exists" msgstr "" -#: part/models.py:971 +#: part/models.py:1059 msgid "Duplicate IPN not allowed in part settings" msgstr "" -#: part/models.py:983 +#: part/models.py:1071 msgid "Duplicate part revision already exists." msgstr "" -#: part/models.py:992 +#: part/models.py:1080 msgid "Part with this Name, IPN and Revision already exists." msgstr "" -#: part/models.py:1007 +#: part/models.py:1095 msgid "Parts cannot be assigned to structural part categories!" msgstr "" -#: part/models.py:1039 +#: part/models.py:1127 msgid "Part name" msgstr "Назва позиції" -#: part/models.py:1044 +#: part/models.py:1132 msgid "Is Template" msgstr "Це шаблон" -#: part/models.py:1045 +#: part/models.py:1133 msgid "Is this part a template part?" msgstr "Ця позиція є шаблоном?" -#: part/models.py:1055 +#: part/models.py:1143 msgid "Is this part a variant of another part?" msgstr "" -#: part/models.py:1056 +#: part/models.py:1144 msgid "Variant Of" msgstr "" -#: part/models.py:1063 +#: part/models.py:1151 msgid "Part description (optional)" msgstr "Опис позиції (опціонально)" -#: part/models.py:1070 +#: part/models.py:1158 msgid "Keywords" msgstr "" -#: part/models.py:1071 +#: part/models.py:1159 msgid "Part keywords to improve visibility in search results" msgstr "" -#: part/models.py:1081 +#: part/models.py:1169 msgid "Part category" msgstr "" -#: part/models.py:1088 part/serializers.py:929 +#: part/models.py:1176 part/serializers.py:814 #: report/templates/report/inventree_stock_location_report.html:103 msgid "IPN" msgstr "" -#: part/models.py:1096 +#: part/models.py:1184 msgid "Part revision or version number" msgstr "" -#: part/models.py:1097 report/models.py:228 +#: part/models.py:1185 report/models.py:228 msgid "Revision" msgstr "Ревізія" -#: part/models.py:1106 +#: part/models.py:1194 msgid "Is this part a revision of another part?" msgstr "" -#: part/models.py:1107 +#: part/models.py:1195 msgid "Revision Of" msgstr "Ревізія" -#: part/models.py:1123 +#: part/models.py:1211 msgid "Where is this item normally stored?" msgstr "" -#: part/models.py:1169 +#: part/models.py:1257 msgid "Default Supplier" msgstr "" -#: part/models.py:1170 +#: part/models.py:1258 msgid "Default supplier part" msgstr "" -#: part/models.py:1177 +#: part/models.py:1265 msgid "Default Expiry" msgstr "" -#: part/models.py:1178 +#: part/models.py:1266 msgid "Expiry time (in days) for stock items of this part" msgstr "" -#: part/models.py:1186 part/serializers.py:1003 +#: part/models.py:1274 part/serializers.py:888 msgid "Minimum Stock" msgstr "Мінімальний запас" -#: part/models.py:1187 +#: part/models.py:1275 msgid "Minimum allowed stock level" msgstr "Мінімально дозволений рівень запасів" -#: part/models.py:1196 +#: part/models.py:1284 msgid "Units of measure for this part" msgstr "Одиниці виміру для цієї позиції" -#: part/models.py:1203 +#: part/models.py:1291 msgid "Can this part be built from other parts?" msgstr "Чи можна побудувати цю позицію з інших компонентів?" -#: part/models.py:1209 +#: part/models.py:1297 msgid "Can this part be used to build other parts?" msgstr "" -#: part/models.py:1215 +#: part/models.py:1303 msgid "Does this part have tracking for unique items?" msgstr "" -#: part/models.py:1221 +#: part/models.py:1309 msgid "Can this part have test results recorded against it?" msgstr "" -#: part/models.py:1227 +#: part/models.py:1315 msgid "Can this part be purchased from external suppliers?" msgstr "" -#: part/models.py:1233 +#: part/models.py:1321 msgid "Can this part be sold to customers?" msgstr "" -#: part/models.py:1237 +#: part/models.py:1325 msgid "Is this part active?" msgstr "" -#: part/models.py:1243 +#: part/models.py:1331 msgid "Locked parts cannot be edited" msgstr "" -#: part/models.py:1249 +#: part/models.py:1337 msgid "Is this a virtual part, such as a software product or license?" msgstr "" -#: part/models.py:1254 +#: part/models.py:1342 msgid "BOM Validated" msgstr "" -#: part/models.py:1255 +#: part/models.py:1343 msgid "Is the BOM for this part valid?" msgstr "" -#: part/models.py:1261 +#: part/models.py:1349 msgid "BOM checksum" msgstr "" -#: part/models.py:1262 +#: part/models.py:1350 msgid "Stored BOM checksum" msgstr "" -#: part/models.py:1270 +#: part/models.py:1358 msgid "BOM checked by" msgstr "" -#: part/models.py:1275 +#: part/models.py:1363 msgid "BOM checked date" msgstr "" -#: part/models.py:1291 +#: part/models.py:1379 msgid "Creation User" msgstr "" -#: part/models.py:1301 +#: part/models.py:1389 msgid "Owner responsible for this part" msgstr "" -#: part/models.py:2258 +#: part/models.py:2346 msgid "Sell multiple" msgstr "" -#: part/models.py:3286 +#: part/models.py:3350 msgid "Currency used to cache pricing calculations" msgstr "" -#: part/models.py:3302 +#: part/models.py:3366 msgid "Minimum BOM Cost" msgstr "" -#: part/models.py:3303 +#: part/models.py:3367 msgid "Minimum cost of component parts" msgstr "" -#: part/models.py:3309 +#: part/models.py:3373 msgid "Maximum BOM Cost" msgstr "" -#: part/models.py:3310 +#: part/models.py:3374 msgid "Maximum cost of component parts" msgstr "" -#: part/models.py:3316 +#: part/models.py:3380 msgid "Minimum Purchase Cost" msgstr "" -#: part/models.py:3317 +#: part/models.py:3381 msgid "Minimum historical purchase cost" msgstr "" -#: part/models.py:3323 +#: part/models.py:3387 msgid "Maximum Purchase Cost" msgstr "" -#: part/models.py:3324 +#: part/models.py:3388 msgid "Maximum historical purchase cost" msgstr "" -#: part/models.py:3330 +#: part/models.py:3394 msgid "Minimum Internal Price" msgstr "" -#: part/models.py:3331 +#: part/models.py:3395 msgid "Minimum cost based on internal price breaks" msgstr "" -#: part/models.py:3337 +#: part/models.py:3401 msgid "Maximum Internal Price" msgstr "" -#: part/models.py:3338 +#: part/models.py:3402 msgid "Maximum cost based on internal price breaks" msgstr "" -#: part/models.py:3344 +#: part/models.py:3408 msgid "Minimum Supplier Price" msgstr "" -#: part/models.py:3345 +#: part/models.py:3409 msgid "Minimum price of part from external suppliers" msgstr "" -#: part/models.py:3351 +#: part/models.py:3415 msgid "Maximum Supplier Price" msgstr "" -#: part/models.py:3352 +#: part/models.py:3416 msgid "Maximum price of part from external suppliers" msgstr "" -#: part/models.py:3358 +#: part/models.py:3422 msgid "Minimum Variant Cost" msgstr "" -#: part/models.py:3359 +#: part/models.py:3423 msgid "Calculated minimum cost of variant parts" msgstr "" -#: part/models.py:3365 +#: part/models.py:3429 msgid "Maximum Variant Cost" msgstr "" -#: part/models.py:3366 +#: part/models.py:3430 msgid "Calculated maximum cost of variant parts" msgstr "" -#: part/models.py:3372 part/models.py:3386 +#: part/models.py:3436 part/models.py:3450 msgid "Minimum Cost" msgstr "" -#: part/models.py:3373 +#: part/models.py:3437 msgid "Override minimum cost" msgstr "" -#: part/models.py:3379 part/models.py:3393 +#: part/models.py:3443 part/models.py:3457 msgid "Maximum Cost" msgstr "" -#: part/models.py:3380 +#: part/models.py:3444 msgid "Override maximum cost" msgstr "" -#: part/models.py:3387 +#: part/models.py:3451 msgid "Calculated overall minimum cost" msgstr "" -#: part/models.py:3394 +#: part/models.py:3458 msgid "Calculated overall maximum cost" msgstr "" -#: part/models.py:3400 +#: part/models.py:3464 msgid "Minimum Sale Price" msgstr "" -#: part/models.py:3401 +#: part/models.py:3465 msgid "Minimum sale price based on price breaks" msgstr "" -#: part/models.py:3407 +#: part/models.py:3471 msgid "Maximum Sale Price" msgstr "" -#: part/models.py:3408 +#: part/models.py:3472 msgid "Maximum sale price based on price breaks" msgstr "" -#: part/models.py:3414 +#: part/models.py:3478 msgid "Minimum Sale Cost" msgstr "" -#: part/models.py:3415 +#: part/models.py:3479 msgid "Minimum historical sale price" msgstr "" -#: part/models.py:3421 +#: part/models.py:3485 msgid "Maximum Sale Cost" msgstr "" -#: part/models.py:3422 +#: part/models.py:3486 msgid "Maximum historical sale price" msgstr "" -#: part/models.py:3440 +#: part/models.py:3504 msgid "Part for stocktake" msgstr "" -#: part/models.py:3445 +#: part/models.py:3509 msgid "Item Count" msgstr "" -#: part/models.py:3446 +#: part/models.py:3510 msgid "Number of individual stock entries at time of stocktake" msgstr "" -#: part/models.py:3454 +#: part/models.py:3518 msgid "Total available stock at time of stocktake" msgstr "" -#: part/models.py:3458 report/templates/report/inventree_test_report.html:106 +#: part/models.py:3522 report/templates/report/inventree_test_report.html:106 msgid "Date" msgstr "Дата" -#: part/models.py:3459 +#: part/models.py:3523 msgid "Date stocktake was performed" msgstr "" -#: part/models.py:3466 +#: part/models.py:3530 msgid "Minimum Stock Cost" msgstr "" -#: part/models.py:3467 +#: part/models.py:3531 msgid "Estimated minimum cost of stock on hand" msgstr "" -#: part/models.py:3473 +#: part/models.py:3537 msgid "Maximum Stock Cost" msgstr "" -#: part/models.py:3474 +#: part/models.py:3538 msgid "Estimated maximum cost of stock on hand" msgstr "" -#: part/models.py:3484 +#: part/models.py:3548 msgid "Part Sale Price Break" msgstr "" -#: part/models.py:3596 +#: part/models.py:3660 msgid "Part Test Template" msgstr "" -#: part/models.py:3622 +#: part/models.py:3686 msgid "Invalid template name - must include at least one alphanumeric character" msgstr "" -#: part/models.py:3643 part/models.py:3816 -msgid "Choices must be unique" -msgstr "" - -#: part/models.py:3654 +#: part/models.py:3718 msgid "Test templates can only be created for testable parts" msgstr "" -#: part/models.py:3668 +#: part/models.py:3732 msgid "Test template with the same key already exists for part" msgstr "" -#: part/models.py:3685 +#: part/models.py:3749 msgid "Test Name" msgstr "Тестова назва" -#: part/models.py:3686 +#: part/models.py:3750 msgid "Enter a name for the test" msgstr "" -#: part/models.py:3692 +#: part/models.py:3756 msgid "Test Key" msgstr "" -#: part/models.py:3693 +#: part/models.py:3757 msgid "Simplified key for the test" msgstr "" -#: part/models.py:3700 +#: part/models.py:3764 msgid "Test Description" msgstr "" -#: part/models.py:3701 +#: part/models.py:3765 msgid "Enter description for this test" msgstr "" -#: part/models.py:3705 report/models.py:287 -msgid "Enabled" -msgstr "" - -#: part/models.py:3705 +#: part/models.py:3769 msgid "Is this test enabled?" msgstr "" -#: part/models.py:3710 +#: part/models.py:3774 msgid "Required" msgstr "" -#: part/models.py:3711 +#: part/models.py:3775 msgid "Is this test required to pass?" msgstr "" -#: part/models.py:3716 +#: part/models.py:3780 msgid "Requires Value" msgstr "" -#: part/models.py:3717 +#: part/models.py:3781 msgid "Does this test require a value when adding a test result?" msgstr "" -#: part/models.py:3722 +#: part/models.py:3786 msgid "Requires Attachment" msgstr "" -#: part/models.py:3724 +#: part/models.py:3788 msgid "Does this test require a file attachment when adding a test result?" msgstr "" -#: part/models.py:3730 part/models.py:3878 -msgid "Choices" -msgstr "" - -#: part/models.py:3731 +#: part/models.py:3795 msgid "Valid choices for this test (comma-separated)" msgstr "" -#: part/models.py:3764 -msgid "Part Parameter Template" -msgstr "" - -#: part/models.py:3791 -msgid "Checkbox parameters cannot have units" -msgstr "" - -#: part/models.py:3796 -msgid "Checkbox parameters cannot have choices" -msgstr "" - -#: part/models.py:3833 -msgid "Parameter template name must be unique" -msgstr "" - -#: part/models.py:3851 -msgid "Parameter Name" -msgstr "" - -#: part/models.py:3858 -msgid "Physical units for this parameter" -msgstr "" - -#: part/models.py:3866 -msgid "Parameter description" -msgstr "" - -#: part/models.py:3872 -msgid "Checkbox" -msgstr "Прапорець" - -#: part/models.py:3873 -msgid "Is this parameter a checkbox?" -msgstr "" - -#: part/models.py:3879 -msgid "Valid choices for this parameter (comma-separated)" -msgstr "" - -#: part/models.py:3890 -msgid "Selection list for this parameter" -msgstr "" - -#: part/models.py:3932 -msgid "Part Parameter" -msgstr "" - -#: part/models.py:3958 -msgid "Parameter cannot be modified - part is locked" -msgstr "" - -#: part/models.py:3996 -msgid "Invalid choice for parameter value" -msgstr "" - -#: part/models.py:4047 -msgid "Parent Part" -msgstr "" - -#: part/models.py:4055 part/models.py:4170 part/models.py:4171 -msgid "Parameter Template" -msgstr "" - -#: part/models.py:4061 -msgid "Parameter Value" -msgstr "" - -#: part/models.py:4071 stock/serializers.py:718 -msgid "Optional note field" -msgstr "" - -#: part/models.py:4118 -msgid "Part Category Parameter Template" -msgstr "" - -#: part/models.py:4177 -msgid "Default Value" -msgstr "" - -#: part/models.py:4178 -msgid "Default Parameter Value" -msgstr "" - -#: part/models.py:4352 +#: part/models.py:3977 msgid "BOM item cannot be modified - assembly is locked" msgstr "" -#: part/models.py:4359 +#: part/models.py:3984 msgid "BOM item cannot be modified - variant assembly is locked" msgstr "" -#: part/models.py:4369 +#: part/models.py:3994 msgid "Select parent part" msgstr "" -#: part/models.py:4379 +#: part/models.py:4004 msgid "Sub part" msgstr "" -#: part/models.py:4380 +#: part/models.py:4005 msgid "Select part to be used in BOM" msgstr "" -#: part/models.py:4391 +#: part/models.py:4016 msgid "BOM quantity for this BOM item" msgstr "" -#: part/models.py:4397 +#: part/models.py:4022 msgid "This BOM item is optional" msgstr "" -#: part/models.py:4403 +#: part/models.py:4028 msgid "This BOM item is consumable (it is not tracked in build orders)" msgstr "" -#: part/models.py:4411 +#: part/models.py:4036 msgid "Setup Quantity" msgstr "" -#: part/models.py:4412 +#: part/models.py:4037 msgid "Extra required quantity for a build, to account for setup losses" msgstr "" -#: part/models.py:4420 +#: part/models.py:4045 msgid "Attrition" msgstr "" -#: part/models.py:4422 +#: part/models.py:4047 msgid "Estimated attrition for a build, expressed as a percentage (0-100)" msgstr "" -#: part/models.py:4433 +#: part/models.py:4058 msgid "Rounding Multiple" msgstr "" -#: part/models.py:4435 +#: part/models.py:4060 msgid "Round up required production quantity to nearest multiple of this value" msgstr "" -#: part/models.py:4443 +#: part/models.py:4068 msgid "BOM item reference" msgstr "" -#: part/models.py:4451 +#: part/models.py:4076 msgid "BOM item notes" msgstr "" -#: part/models.py:4457 +#: part/models.py:4082 msgid "Checksum" msgstr "" -#: part/models.py:4458 +#: part/models.py:4083 msgid "BOM line checksum" msgstr "" -#: part/models.py:4463 +#: part/models.py:4088 msgid "Validated" msgstr "" -#: part/models.py:4464 +#: part/models.py:4089 msgid "This BOM item has been validated" msgstr "" -#: part/models.py:4469 +#: part/models.py:4094 msgid "Gets inherited" msgstr "" -#: part/models.py:4470 +#: part/models.py:4095 msgid "This BOM item is inherited by BOMs for variant parts" msgstr "" -#: part/models.py:4476 +#: part/models.py:4101 msgid "Stock items for variant parts can be used for this BOM item" msgstr "" -#: part/models.py:4583 stock/models.py:925 +#: part/models.py:4208 stock/models.py:925 msgid "Quantity must be integer value for trackable parts" msgstr "" -#: part/models.py:4593 part/models.py:4595 +#: part/models.py:4218 part/models.py:4220 msgid "Sub part must be specified" msgstr "" -#: part/models.py:4746 +#: part/models.py:4371 msgid "BOM Item Substitute" msgstr "" -#: part/models.py:4767 +#: part/models.py:4392 msgid "Substitute part cannot be the same as the master part" msgstr "" -#: part/models.py:4780 +#: part/models.py:4405 msgid "Parent BOM item" msgstr "" -#: part/models.py:4788 +#: part/models.py:4413 msgid "Substitute part" msgstr "" -#: part/models.py:4804 +#: part/models.py:4429 msgid "Part 1" msgstr "Позиція 1" -#: part/models.py:4812 +#: part/models.py:4437 msgid "Part 2" msgstr "Позиція 2" -#: part/models.py:4813 +#: part/models.py:4438 msgid "Select Related Part" msgstr "" -#: part/models.py:4820 +#: part/models.py:4445 msgid "Note for this relationship" msgstr "" -#: part/models.py:4839 +#: part/models.py:4464 msgid "Part relationship cannot be created between a part and itself" msgstr "" -#: part/models.py:4844 +#: part/models.py:4469 msgid "Duplicate relationship already exists" msgstr "" -#: part/serializers.py:114 +#: part/serializers.py:113 msgid "Parent Category" msgstr "" -#: part/serializers.py:115 +#: part/serializers.py:114 msgid "Parent part category" msgstr "" -#: part/serializers.py:123 part/serializers.py:164 +#: part/serializers.py:122 part/serializers.py:163 msgid "Subcategories" msgstr "" -#: part/serializers.py:203 +#: part/serializers.py:202 msgid "Results" msgstr "Результати" -#: part/serializers.py:204 +#: part/serializers.py:203 msgid "Number of results recorded against this template" msgstr "" -#: part/serializers.py:235 part/serializers.py:253 stock/serializers.py:643 +#: part/serializers.py:234 part/serializers.py:252 stock/serializers.py:643 msgid "Purchase currency of this stock item" msgstr "" -#: part/serializers.py:280 +#: part/serializers.py:279 msgid "File is not an image" msgstr "" -#: part/serializers.py:311 -msgid "Number of parts using this template" -msgstr "" - -#: part/serializers.py:471 +#: part/serializers.py:382 msgid "Original Part" msgstr "" -#: part/serializers.py:472 +#: part/serializers.py:383 msgid "Select original part to duplicate" msgstr "" -#: part/serializers.py:477 +#: part/serializers.py:388 msgid "Copy Image" msgstr "" -#: part/serializers.py:478 +#: part/serializers.py:389 msgid "Copy image from original part" msgstr "" -#: part/serializers.py:484 +#: part/serializers.py:395 msgid "Copy BOM" msgstr "" -#: part/serializers.py:485 +#: part/serializers.py:396 msgid "Copy bill of materials from original part" msgstr "" -#: part/serializers.py:491 +#: part/serializers.py:402 msgid "Copy Parameters" msgstr "" -#: part/serializers.py:492 +#: part/serializers.py:403 msgid "Copy parameter data from original part" msgstr "" -#: part/serializers.py:498 +#: part/serializers.py:409 msgid "Copy Notes" msgstr "" -#: part/serializers.py:499 +#: part/serializers.py:410 msgid "Copy notes from original part" msgstr "" -#: part/serializers.py:505 +#: part/serializers.py:416 msgid "Copy Tests" msgstr "" -#: part/serializers.py:506 +#: part/serializers.py:417 msgid "Copy test templates from original part" msgstr "" -#: part/serializers.py:524 +#: part/serializers.py:435 msgid "Initial Stock Quantity" msgstr "" -#: part/serializers.py:526 +#: part/serializers.py:437 msgid "Specify initial stock quantity for this Part. If quantity is zero, no stock is added." msgstr "" -#: part/serializers.py:533 +#: part/serializers.py:444 msgid "Initial Stock Location" msgstr "" -#: part/serializers.py:534 +#: part/serializers.py:445 msgid "Specify initial stock location for this Part" msgstr "" -#: part/serializers.py:551 +#: part/serializers.py:462 msgid "Select supplier (or leave blank to skip)" msgstr "" -#: part/serializers.py:567 +#: part/serializers.py:478 msgid "Select manufacturer (or leave blank to skip)" msgstr "" -#: part/serializers.py:577 +#: part/serializers.py:488 msgid "Manufacturer part number" msgstr "Виробничий номер позиції" -#: part/serializers.py:584 +#: part/serializers.py:495 msgid "Selected company is not a valid supplier" msgstr "" -#: part/serializers.py:593 +#: part/serializers.py:504 msgid "Selected company is not a valid manufacturer" msgstr "" -#: part/serializers.py:604 +#: part/serializers.py:515 msgid "Manufacturer part matching this MPN already exists" msgstr "" -#: part/serializers.py:611 +#: part/serializers.py:522 msgid "Supplier part matching this SKU already exists" msgstr "" -#: part/serializers.py:914 +#: part/serializers.py:799 msgid "Category Name" msgstr "" -#: part/serializers.py:943 +#: part/serializers.py:828 msgid "Building" msgstr "" -#: part/serializers.py:944 +#: part/serializers.py:829 msgid "Quantity of this part currently being in production" msgstr "" -#: part/serializers.py:951 +#: part/serializers.py:836 msgid "Outstanding quantity of this part scheduled to be built" msgstr "" -#: part/serializers.py:971 stock/serializers.py:1019 stock/serializers.py:1189 +#: part/serializers.py:856 stock/serializers.py:1019 stock/serializers.py:1189 #: users/ruleset.py:30 msgid "Stock Items" msgstr "" -#: part/serializers.py:975 +#: part/serializers.py:860 msgid "Revisions" msgstr "" -#: part/serializers.py:979 +#: part/serializers.py:864 msgid "Suppliers" msgstr "" -#: part/serializers.py:983 part/serializers.py:1297 +#: part/serializers.py:868 part/serializers.py:1162 #: templates/email/low_stock_notification.html:16 #: templates/email/part_event_notification.html:17 msgid "Total Stock" msgstr "" -#: part/serializers.py:991 +#: part/serializers.py:876 msgid "Unallocated Stock" msgstr "" -#: part/serializers.py:999 +#: part/serializers.py:884 msgid "Variant Stock" msgstr "" -#: part/serializers.py:1054 +#: part/serializers.py:943 msgid "Duplicate Part" msgstr "" -#: part/serializers.py:1055 +#: part/serializers.py:944 msgid "Copy initial data from another Part" msgstr "" -#: part/serializers.py:1061 +#: part/serializers.py:950 msgid "Initial Stock" msgstr "Початковий запас" -#: part/serializers.py:1062 +#: part/serializers.py:951 msgid "Create Part with initial stock quantity" msgstr "" -#: part/serializers.py:1068 +#: part/serializers.py:957 msgid "Supplier Information" msgstr "" -#: part/serializers.py:1069 +#: part/serializers.py:958 msgid "Add initial supplier information for this part" msgstr "" -#: part/serializers.py:1077 +#: part/serializers.py:966 msgid "Copy Category Parameters" msgstr "" -#: part/serializers.py:1078 +#: part/serializers.py:967 msgid "Copy parameter templates from selected part category" msgstr "" -#: part/serializers.py:1083 +#: part/serializers.py:972 msgid "Existing Image" msgstr "Наявне зображення" -#: part/serializers.py:1084 +#: part/serializers.py:973 msgid "Filename of an existing part image" msgstr "" -#: part/serializers.py:1101 +#: part/serializers.py:990 msgid "Image file does not exist" msgstr "" -#: part/serializers.py:1269 +#: part/serializers.py:1134 msgid "Validate entire Bill of Materials" msgstr "" -#: part/serializers.py:1303 part/serializers.py:1769 +#: part/serializers.py:1168 part/serializers.py:1634 msgid "Can Build" msgstr "" -#: part/serializers.py:1320 +#: part/serializers.py:1185 msgid "Required for Build Orders" msgstr "" -#: part/serializers.py:1325 +#: part/serializers.py:1190 msgid "Allocated to Build Orders" msgstr "" -#: part/serializers.py:1332 +#: part/serializers.py:1197 msgid "Required for Sales Orders" msgstr "" -#: part/serializers.py:1336 +#: part/serializers.py:1201 msgid "Allocated to Sales Orders" msgstr "" -#: part/serializers.py:1475 +#: part/serializers.py:1340 msgid "Minimum Price" msgstr "Мінімальна ціна" -#: part/serializers.py:1476 +#: part/serializers.py:1341 msgid "Override calculated value for minimum price" msgstr "" -#: part/serializers.py:1483 +#: part/serializers.py:1348 msgid "Minimum price currency" msgstr "" -#: part/serializers.py:1490 +#: part/serializers.py:1355 msgid "Maximum Price" msgstr "Максимальна ціна" -#: part/serializers.py:1491 +#: part/serializers.py:1356 msgid "Override calculated value for maximum price" msgstr "" -#: part/serializers.py:1498 +#: part/serializers.py:1363 msgid "Maximum price currency" msgstr "" -#: part/serializers.py:1527 +#: part/serializers.py:1392 msgid "Update" msgstr "" -#: part/serializers.py:1528 +#: part/serializers.py:1393 msgid "Update pricing for this part" msgstr "" -#: part/serializers.py:1551 +#: part/serializers.py:1416 #, python-brace-format msgid "Could not convert from provided currencies to {default_currency}" msgstr "" -#: part/serializers.py:1558 +#: part/serializers.py:1423 msgid "Minimum price must not be greater than maximum price" msgstr "" -#: part/serializers.py:1561 +#: part/serializers.py:1426 msgid "Maximum price must not be less than minimum price" msgstr "" -#: part/serializers.py:1715 +#: part/serializers.py:1580 msgid "Select the parent assembly" msgstr "" -#: part/serializers.py:1735 +#: part/serializers.py:1600 msgid "Select the component part" msgstr "" -#: part/serializers.py:1929 +#: part/serializers.py:1802 msgid "Select part to copy BOM from" msgstr "" -#: part/serializers.py:1937 +#: part/serializers.py:1810 msgid "Remove Existing Data" msgstr "" -#: part/serializers.py:1938 +#: part/serializers.py:1811 msgid "Remove existing BOM items before copying" msgstr "" -#: part/serializers.py:1943 +#: part/serializers.py:1816 msgid "Include Inherited" msgstr "" -#: part/serializers.py:1944 +#: part/serializers.py:1817 msgid "Include BOM items which are inherited from templated parts" msgstr "" -#: part/serializers.py:1949 +#: part/serializers.py:1822 msgid "Skip Invalid Rows" msgstr "" -#: part/serializers.py:1950 +#: part/serializers.py:1823 msgid "Enable this option to skip invalid rows" msgstr "" -#: part/serializers.py:1955 +#: part/serializers.py:1828 msgid "Copy Substitute Parts" msgstr "" -#: part/serializers.py:1956 +#: part/serializers.py:1829 msgid "Copy substitute parts when duplicate BOM items" msgstr "" @@ -6927,7 +6974,7 @@ msgstr "" #: plugin/builtin/events/auto_issue_orders.py:19 #: plugin/builtin/exporter/bom_exporter.py:73 #: plugin/builtin/exporter/inventree_exporter.py:17 -#: plugin/builtin/exporter/part_parameter_exporter.py:36 +#: plugin/builtin/exporter/parameter_exporter.py:32 #: plugin/builtin/exporter/stocktake_exporter.py:47 #: plugin/builtin/integration/core_notifications.py:25 #: plugin/builtin/integration/core_notifications.py:69 @@ -7041,23 +7088,19 @@ msgid "Include total quantity of each part in the BOM" msgstr "" #: plugin/builtin/exporter/bom_exporter.py:35 -#: plugin/builtin/exporter/part_parameter_exporter.py:17 msgid "Stock Data" msgstr "" #: plugin/builtin/exporter/bom_exporter.py:35 -#: plugin/builtin/exporter/part_parameter_exporter.py:17 msgid "Include part stock data" msgstr "" #: plugin/builtin/exporter/bom_exporter.py:39 -#: plugin/builtin/exporter/part_parameter_exporter.py:21 #: plugin/builtin/exporter/stocktake_exporter.py:20 msgid "Pricing Data" msgstr "" #: plugin/builtin/exporter/bom_exporter.py:39 -#: plugin/builtin/exporter/part_parameter_exporter.py:21 #: plugin/builtin/exporter/stocktake_exporter.py:20 msgid "Include part pricing data" msgstr "" @@ -7144,12 +7187,20 @@ msgstr "" msgid "Provides support for exporting data from InvenTree" msgstr "" -#: plugin/builtin/exporter/part_parameter_exporter.py:33 -msgid "Part Parameter Exporter" +#: plugin/builtin/exporter/parameter_exporter.py:16 +msgid "Exclude Inactive" msgstr "" -#: plugin/builtin/exporter/part_parameter_exporter.py:34 -msgid "Exporter for part parameter data" +#: plugin/builtin/exporter/parameter_exporter.py:17 +msgid "Exclude parameters which are inactive" +msgstr "" + +#: plugin/builtin/exporter/parameter_exporter.py:29 +msgid "Parameter Exporter" +msgstr "" + +#: plugin/builtin/exporter/parameter_exporter.py:30 +msgid "Exporter for model parameter data" msgstr "" #: plugin/builtin/exporter/stocktake_exporter.py:25 @@ -8079,19 +8130,19 @@ msgstr "" msgid "No result" msgstr "" -#: report/templatetags/report.py:167 +#: report/templatetags/report.py:169 msgid "Asset file does not exist" msgstr "" -#: report/templatetags/report.py:224 report/templatetags/report.py:300 +#: report/templatetags/report.py:226 report/templatetags/report.py:302 msgid "Image file not found" msgstr "" -#: report/templatetags/report.py:325 +#: report/templatetags/report.py:327 msgid "part_image tag requires a Part instance" msgstr "" -#: report/templatetags/report.py:362 +#: report/templatetags/report.py:383 msgid "company_image tag requires a Company instance" msgstr "" @@ -8455,115 +8506,119 @@ msgstr "" msgid "Quantity does not match serial numbers" msgstr "" -#: stock/models.py:2012 stock/models.py:2917 +#: stock/models.py:1912 +msgid "Cannot assign stock to structural location" +msgstr "" + +#: stock/models.py:2029 stock/models.py:2934 msgid "Test template does not exist" msgstr "" -#: stock/models.py:2030 +#: stock/models.py:2047 msgid "Stock item has been assigned to a sales order" msgstr "" -#: stock/models.py:2034 +#: stock/models.py:2051 msgid "Stock item is installed in another item" msgstr "" -#: stock/models.py:2037 +#: stock/models.py:2054 msgid "Stock item contains other items" msgstr "" -#: stock/models.py:2040 +#: stock/models.py:2057 msgid "Stock item has been assigned to a customer" msgstr "" -#: stock/models.py:2043 stock/models.py:2226 +#: stock/models.py:2060 stock/models.py:2243 msgid "Stock item is currently in production" msgstr "" -#: stock/models.py:2046 +#: stock/models.py:2063 msgid "Serialized stock cannot be merged" msgstr "" -#: stock/models.py:2053 stock/serializers.py:1462 +#: stock/models.py:2070 stock/serializers.py:1462 msgid "Duplicate stock items" msgstr "" -#: stock/models.py:2057 +#: stock/models.py:2074 msgid "Stock items must refer to the same part" msgstr "" -#: stock/models.py:2065 +#: stock/models.py:2082 msgid "Stock items must refer to the same supplier part" msgstr "" -#: stock/models.py:2070 +#: stock/models.py:2087 msgid "Stock status codes must match" msgstr "" -#: stock/models.py:2349 +#: stock/models.py:2366 msgid "StockItem cannot be moved as it is not in stock" msgstr "" -#: stock/models.py:2818 +#: stock/models.py:2835 msgid "Stock Item Tracking" msgstr "" -#: stock/models.py:2849 +#: stock/models.py:2866 msgid "Entry notes" msgstr "" -#: stock/models.py:2889 +#: stock/models.py:2906 msgid "Stock Item Test Result" msgstr "" -#: stock/models.py:2920 +#: stock/models.py:2937 msgid "Value must be provided for this test" msgstr "" -#: stock/models.py:2924 +#: stock/models.py:2941 msgid "Attachment must be uploaded for this test" msgstr "" -#: stock/models.py:2929 +#: stock/models.py:2946 msgid "Invalid value for this test" msgstr "" -#: stock/models.py:2953 +#: stock/models.py:2970 msgid "Test result" msgstr "" -#: stock/models.py:2960 +#: stock/models.py:2977 msgid "Test output value" msgstr "" -#: stock/models.py:2968 stock/serializers.py:248 +#: stock/models.py:2985 stock/serializers.py:248 msgid "Test result attachment" msgstr "" -#: stock/models.py:2972 +#: stock/models.py:2989 msgid "Test notes" msgstr "" -#: stock/models.py:2980 +#: stock/models.py:2997 msgid "Test station" msgstr "" -#: stock/models.py:2981 +#: stock/models.py:2998 msgid "The identifier of the test station where the test was performed" msgstr "" -#: stock/models.py:2987 +#: stock/models.py:3004 msgid "Started" msgstr "" -#: stock/models.py:2988 +#: stock/models.py:3005 msgid "The timestamp of the test start" msgstr "" -#: stock/models.py:2994 +#: stock/models.py:3011 msgid "Finished" msgstr "" -#: stock/models.py:2995 +#: stock/models.py:3012 msgid "The timestamp of the test finish" msgstr "" @@ -8677,8 +8732,8 @@ msgstr "" msgid "Quantity must not exceed available stock quantity ({q})" msgstr "" -#: stock/serializers.py:711 stock/serializers.py:1419 stock/serializers.py:1732 -#: stock/serializers.py:1781 +#: stock/serializers.py:711 stock/serializers.py:1419 stock/serializers.py:1740 +#: stock/serializers.py:1789 msgid "Destination stock location" msgstr "" @@ -8834,19 +8889,19 @@ msgstr "" msgid "Stock transaction notes" msgstr "" -#: stock/serializers.py:1787 +#: stock/serializers.py:1795 msgid "Merge into existing stock" msgstr "" -#: stock/serializers.py:1788 +#: stock/serializers.py:1796 msgid "Merge returned items into existing stock items if possible" msgstr "" -#: stock/serializers.py:1831 +#: stock/serializers.py:1839 msgid "Next Serial Number" msgstr "" -#: stock/serializers.py:1837 +#: stock/serializers.py:1845 msgid "Previous Serial Number" msgstr "" @@ -8902,83 +8957,87 @@ msgstr "" msgid "Stock manually removed" msgstr "" -#: stock/status_codes.py:57 +#: stock/status_codes.py:56 +msgid "Serialized stock items" +msgstr "" + +#: stock/status_codes.py:58 msgid "Returned to stock" msgstr "" -#: stock/status_codes.py:60 +#: stock/status_codes.py:61 msgid "Location changed" msgstr "" -#: stock/status_codes.py:61 +#: stock/status_codes.py:62 msgid "Stock updated" msgstr "" -#: stock/status_codes.py:64 +#: stock/status_codes.py:65 msgid "Installed into assembly" msgstr "" -#: stock/status_codes.py:65 +#: stock/status_codes.py:66 msgid "Removed from assembly" msgstr "" -#: stock/status_codes.py:67 +#: stock/status_codes.py:68 msgid "Installed component item" msgstr "" -#: stock/status_codes.py:68 +#: stock/status_codes.py:69 msgid "Removed component item" msgstr "" -#: stock/status_codes.py:71 +#: stock/status_codes.py:72 msgid "Split from parent item" msgstr "" -#: stock/status_codes.py:72 +#: stock/status_codes.py:73 msgid "Split child item" msgstr "" -#: stock/status_codes.py:75 +#: stock/status_codes.py:76 msgid "Merged stock items" msgstr "" -#: stock/status_codes.py:78 +#: stock/status_codes.py:79 msgid "Converted to variant" msgstr "" -#: stock/status_codes.py:81 +#: stock/status_codes.py:82 msgid "Build order output created" msgstr "" -#: stock/status_codes.py:82 +#: stock/status_codes.py:83 msgid "Build order output completed" msgstr "" -#: stock/status_codes.py:83 +#: stock/status_codes.py:84 msgid "Build order output rejected" msgstr "" -#: stock/status_codes.py:84 +#: stock/status_codes.py:85 msgid "Consumed by build order" msgstr "" -#: stock/status_codes.py:87 +#: stock/status_codes.py:88 msgid "Shipped against Sales Order" msgstr "" -#: stock/status_codes.py:90 +#: stock/status_codes.py:91 msgid "Received against Purchase Order" msgstr "" -#: stock/status_codes.py:93 +#: stock/status_codes.py:94 msgid "Returned against Return Order" msgstr "" -#: stock/status_codes.py:96 +#: stock/status_codes.py:97 msgid "Sent to customer" msgstr "" -#: stock/status_codes.py:97 +#: stock/status_codes.py:98 msgid "Returned from customer" msgstr "" diff --git a/src/backend/InvenTree/locale/vi/LC_MESSAGES/django.po b/src/backend/InvenTree/locale/vi/LC_MESSAGES/django.po index 6459b48898..88b816d41b 100644 --- a/src/backend/InvenTree/locale/vi/LC_MESSAGES/django.po +++ b/src/backend/InvenTree/locale/vi/LC_MESSAGES/django.po @@ -2,8 +2,8 @@ msgid "" msgstr "" "Project-Id-Version: inventree\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-11-19 04:55+0000\n" -"PO-Revision-Date: 2025-11-19 04:59\n" +"POT-Creation-Date: 2025-12-07 07:33+0000\n" +"PO-Revision-Date: 2025-12-07 07:36\n" "Last-Translator: \n" "Language-Team: Vietnamese\n" "Language: vi_VN\n" @@ -57,7 +57,7 @@ msgstr "Không có dữ liệu được cung cấp" msgid "This field must be unique." msgstr "" -#: InvenTree/api.py:775 +#: InvenTree/api.py:803 msgid "User does not have permission to view this model" msgstr "Người dùng không được phân quyền xem mẫu này" @@ -81,22 +81,22 @@ msgstr "Địa chỉ email chính đã cung cấp không hợp lệ." msgid "The provided email domain is not approved." msgstr "Miền email được cung cấp không được phê duyệt." -#: InvenTree/conversion.py:166 +#: InvenTree/conversion.py:240 #, python-brace-format msgid "Invalid unit provided ({unit})" msgstr "Đơn vị không hợp lệ ({unit})" -#: InvenTree/conversion.py:183 +#: InvenTree/conversion.py:257 msgid "No value provided" msgstr "Chưa cung cấp giá trị" -#: InvenTree/conversion.py:210 +#: InvenTree/conversion.py:284 #, python-brace-format msgid "Could not convert {original} to {unit}" msgstr "Không thể chuyển đổi {original} sang {unit}" -#: InvenTree/conversion.py:212 InvenTree/conversion.py:226 -#: InvenTree/helpers.py:597 order/models.py:720 order/models.py:1015 +#: InvenTree/conversion.py:286 InvenTree/conversion.py:300 +#: InvenTree/helpers.py:597 order/models.py:721 order/models.py:1016 msgid "Invalid quantity provided" msgstr "Số lượng cung cấp không hợp lệ" @@ -112,11 +112,11 @@ msgstr "Nhập ngày" msgid "Invalid decimal value" msgstr "" -#: InvenTree/fields.py:218 InvenTree/models.py:1067 build/serializers.py:509 -#: build/serializers.py:580 build/serializers.py:1788 company/models.py:857 -#: order/models.py:1780 +#: InvenTree/fields.py:218 InvenTree/models.py:1228 build/serializers.py:517 +#: build/serializers.py:588 build/serializers.py:1796 company/models.py:811 +#: order/models.py:1781 #: report/templates/report/inventree_build_order_report.html:172 -#: stock/models.py:2848 stock/models.py:2972 stock/serializers.py:717 +#: stock/models.py:2865 stock/models.py:2989 stock/serializers.py:717 #: stock/serializers.py:893 stock/serializers.py:1035 stock/serializers.py:1336 #: stock/serializers.py:1425 stock/serializers.py:1624 msgid "Notes" @@ -171,35 +171,35 @@ msgstr "Xóa thẻ HTML từ giá trị này" msgid "Data contains prohibited markdown content" msgstr "" -#: InvenTree/helpers_model.py:133 +#: InvenTree/helpers_model.py:134 msgid "Connection error" msgstr "Lỗi kết nối" -#: InvenTree/helpers_model.py:138 InvenTree/helpers_model.py:145 +#: InvenTree/helpers_model.py:139 InvenTree/helpers_model.py:146 msgid "Server responded with invalid status code" msgstr "Máy chủ phản hồi với mã trạng thái không hợp lệ" -#: InvenTree/helpers_model.py:141 +#: InvenTree/helpers_model.py:142 msgid "Exception occurred" msgstr "Xảy ra Exception" -#: InvenTree/helpers_model.py:151 +#: InvenTree/helpers_model.py:152 msgid "Server responded with invalid Content-Length value" msgstr "Máy chủ đã phản hồi với giá trị Content-Length không hợp lệ" -#: InvenTree/helpers_model.py:154 +#: InvenTree/helpers_model.py:155 msgid "Image size is too large" msgstr "Hình ảnh quá lớn" -#: InvenTree/helpers_model.py:166 +#: InvenTree/helpers_model.py:167 msgid "Image download exceeded maximum size" msgstr "Tải xuống hình ảnh vượt quá kích thước tối đa" -#: InvenTree/helpers_model.py:171 +#: InvenTree/helpers_model.py:172 msgid "Remote server returned empty response" msgstr "Máy chủ trả về phản hồi trống" -#: InvenTree/helpers_model.py:179 +#: InvenTree/helpers_model.py:180 msgid "Supplied URL is not a valid image file" msgstr "URL được cung cấp không phải là tệp hình ảnh hợp lệ" @@ -207,7 +207,7 @@ msgstr "URL được cung cấp không phải là tệp hình ảnh hợp lệ" msgid "Log in to the app" msgstr "" -#: InvenTree/magic_login.py:41 company/models.py:172 users/serializers.py:198 +#: InvenTree/magic_login.py:41 company/models.py:173 users/serializers.py:198 msgid "Email" msgstr "Email" @@ -215,160 +215,176 @@ msgstr "Email" msgid "You must enable two-factor authentication before doing anything else." msgstr "" -#: InvenTree/models.py:111 +#: InvenTree/models.py:114 msgid "Error running plugin validation" msgstr "Lỗi xác thực plugin" -#: InvenTree/models.py:192 +#: InvenTree/models.py:195 msgid "Metadata must be a python dict object" msgstr "Siêu dữ liệu phải là đối tượng từ điển của python" -#: InvenTree/models.py:198 +#: InvenTree/models.py:201 msgid "Plugin Metadata" msgstr "Phụ trợ siêu dữ liệu" -#: InvenTree/models.py:199 +#: InvenTree/models.py:202 msgid "JSON metadata field, for use by external plugins" msgstr "Trường siêu dữ liệu JSON, được sử dụng bởi phụ trợ bên ngoài" -#: InvenTree/models.py:382 +#: InvenTree/models.py:385 msgid "Improperly formatted pattern" msgstr "Mẫu được định dạng không thích hợp" -#: InvenTree/models.py:389 +#: InvenTree/models.py:392 msgid "Unknown format key specified" msgstr "Khóa định dạng không rõ ràng đã được chỉ định" -#: InvenTree/models.py:395 +#: InvenTree/models.py:398 msgid "Missing required format key" msgstr "Thiếu khóa định dạng cần thiết" -#: InvenTree/models.py:406 +#: InvenTree/models.py:409 msgid "Reference field cannot be empty" msgstr "Trường tham chiếu không thể rỗng" -#: InvenTree/models.py:414 +#: InvenTree/models.py:417 msgid "Reference must match required pattern" msgstr "Tham chiếu phải phù hợp với mẫu yêu cầu" -#: InvenTree/models.py:445 +#: InvenTree/models.py:448 msgid "Reference number is too large" msgstr "Số tham chiếu quá lớn" -#: InvenTree/models.py:743 +#: InvenTree/models.py:896 msgid "Invalid choice" msgstr "Lựa chọn sai" -#: InvenTree/models.py:856 common/models.py:1410 common/models.py:1837 -#: common/models.py:2096 common/models.py:2221 common/serializers.py:535 -#: company/models.py:615 generic/states/serializers.py:20 machine/models.py:25 -#: part/models.py:1039 part/models.py:3850 plugin/models.py:54 +#: InvenTree/models.py:1017 common/models.py:1414 common/models.py:1841 +#: common/models.py:2102 common/models.py:2227 common/models.py:2494 +#: common/serializers.py:539 generic/states/serializers.py:20 +#: machine/models.py:25 part/models.py:1127 plugin/models.py:54 #: report/models.py:216 stock/models.py:84 msgid "Name" msgstr "Tên" -#: InvenTree/models.py:862 build/models.py:252 common/models.py:171 -#: common/models.py:2228 common/models.py:2341 company/models.py:543 -#: company/models.py:848 order/models.py:442 order/models.py:1825 -#: part/models.py:1062 part/models.py:3865 report/models.py:222 +#: InvenTree/models.py:1023 build/models.py:253 common/models.py:175 +#: common/models.py:2234 common/models.py:2347 common/models.py:2509 +#: company/models.py:545 company/models.py:802 order/models.py:443 +#: order/models.py:1826 part/models.py:1150 report/models.py:222 #: report/models.py:815 report/models.py:841 #: report/templates/report/inventree_build_order_report.html:117 #: stock/models.py:90 msgid "Description" msgstr "Mô tả" -#: InvenTree/models.py:863 stock/models.py:91 +#: InvenTree/models.py:1024 stock/models.py:91 msgid "Description (optional)" msgstr "Mô tả (tùy chọn)" -#: InvenTree/models.py:878 common/models.py:2394 +#: InvenTree/models.py:1039 common/models.py:2815 msgid "Path" msgstr "Đường dẫn" -#: InvenTree/models.py:983 +#: InvenTree/models.py:1144 msgid "Duplicate names cannot exist under the same parent" msgstr "Tên trùng lặp không thể tồn tại trong cùng cấp thư mục" -#: InvenTree/models.py:1067 +#: InvenTree/models.py:1228 msgid "Markdown notes (optional)" msgstr "Ghi chú markdown (không bắt buộc)" -#: InvenTree/models.py:1098 +#: InvenTree/models.py:1259 msgid "Barcode Data" msgstr "Dữ liệu mã vạch" -#: InvenTree/models.py:1099 +#: InvenTree/models.py:1260 msgid "Third party barcode data" msgstr "Dữ liệu mã vạch của bên thứ ba" -#: InvenTree/models.py:1105 +#: InvenTree/models.py:1266 msgid "Barcode Hash" msgstr "Dữ liệu băm mã vạch" -#: InvenTree/models.py:1106 +#: InvenTree/models.py:1267 msgid "Unique hash of barcode data" msgstr "Chuỗi băm duy nhất của dữ liệu mã vạch" -#: InvenTree/models.py:1187 +#: InvenTree/models.py:1348 msgid "Existing barcode found" msgstr "Mã vạch đã tồn tại" -#: InvenTree/models.py:1269 +#: InvenTree/models.py:1430 msgid "Task Failure" msgstr "" -#: InvenTree/models.py:1270 +#: InvenTree/models.py:1431 #, python-brace-format msgid "Background worker task '{f}' failed after {n} attempts" msgstr "" -#: InvenTree/models.py:1297 +#: InvenTree/models.py:1458 msgid "Server Error" msgstr "Lỗi máy chủ" -#: InvenTree/models.py:1298 +#: InvenTree/models.py:1459 msgid "An error has been logged by the server." msgstr "Lỗi đã được ghi lại bởi máy chủ." -#: InvenTree/models.py:1340 common/models.py:1748 +#: InvenTree/models.py:1501 common/models.py:1752 #: report/templates/report/inventree_bill_of_materials_report.html:126 #: report/templates/report/inventree_bill_of_materials_report.html:148 #: report/templates/report/inventree_return_order_report.html:35 msgid "Image" msgstr "Hình ảnh" -#: InvenTree/serializers.py:253 part/models.py:4571 +#: InvenTree/serializers.py:255 part/models.py:4196 msgid "Must be a valid number" msgstr "Phải là một số hợp lệ" -#: InvenTree/serializers.py:295 company/models.py:214 part/models.py:3285 +#: InvenTree/serializers.py:297 company/models.py:215 part/models.py:3349 msgid "Currency" msgstr "Tiền tệ" -#: InvenTree/serializers.py:298 part/serializers.py:1385 +#: InvenTree/serializers.py:300 part/serializers.py:1250 msgid "Select currency from available options" msgstr "Chọn tiền tệ trong các tùy chọn đang có" -#: InvenTree/serializers.py:653 +#: InvenTree/serializers.py:654 +msgid "This field may not be null." +msgstr "" + +#: InvenTree/serializers.py:660 msgid "Invalid value" msgstr "Giá trị không hợp lệ" -#: InvenTree/serializers.py:690 +#: InvenTree/serializers.py:697 msgid "Remote Image" msgstr "Hình ảnh từ xa" -#: InvenTree/serializers.py:691 +#: InvenTree/serializers.py:698 msgid "URL of remote image file" msgstr "URL của tệp hình ảnh bên ngoài" -#: InvenTree/serializers.py:709 +#: InvenTree/serializers.py:716 msgid "Downloading images from remote URL is not enabled" msgstr "Chức năng tải hình ảnh từ URL bên ngoài không được bật" -#: InvenTree/serializers.py:716 +#: InvenTree/serializers.py:723 msgid "Failed to download image from remote URL" msgstr "" +#: InvenTree/serializers.py:806 +msgid "Invalid content type format" +msgstr "" + +#: InvenTree/serializers.py:809 +msgid "Content type not found" +msgstr "" + +#: InvenTree/serializers.py:815 +msgid "Content type does not match required mixin class" +msgstr "" + #: InvenTree/setting/locales.py:20 msgid "Arabic" msgstr "Arabic" @@ -537,30 +553,30 @@ msgstr "Đơn vị vật lý không hợp lệ" msgid "Not a valid currency code" msgstr "Mã tiền tệ không hợp lệ" -#: build/api.py:54 order/api.py:111 order/api.py:270 order/api.py:1373 -#: order/serializers.py:132 +#: build/api.py:54 order/api.py:116 order/api.py:275 order/api.py:1378 +#: order/serializers.py:133 msgid "Order Status" msgstr "Trạng thái đặt hàng" -#: build/api.py:80 build/models.py:264 +#: build/api.py:80 build/models.py:265 msgid "Parent Build" msgstr "Phiên bản cha" -#: build/api.py:84 build/api.py:831 order/api.py:547 order/api.py:770 -#: order/api.py:1174 order/api.py:1449 stock/api.py:573 +#: build/api.py:84 build/api.py:837 order/api.py:553 order/api.py:776 +#: order/api.py:1179 order/api.py:1454 stock/api.py:573 msgid "Include Variants" msgstr "" -#: build/api.py:100 build/api.py:466 build/api.py:845 build/models.py:270 -#: build/serializers.py:1225 build/serializers.py:1356 -#: build/serializers.py:1427 company/models.py:1067 company/serializers.py:445 -#: order/api.py:298 order/api.py:302 order/api.py:929 order/api.py:1187 -#: order/api.py:1190 order/models.py:1941 order/models.py:2108 -#: order/models.py:2109 part/api.py:1233 part/api.py:1236 part/api.py:1302 -#: part/api.py:1589 part/models.py:472 part/models.py:3296 part/models.py:3439 -#: part/models.py:3497 part/models.py:3518 part/models.py:3540 -#: part/models.py:3679 part/models.py:4046 part/models.py:4368 -#: part/models.py:4787 part/serializers.py:1928 +#: build/api.py:100 build/api.py:472 build/api.py:851 build/models.py:271 +#: build/serializers.py:1233 build/serializers.py:1364 +#: build/serializers.py:1435 company/models.py:1021 company/serializers.py:490 +#: order/api.py:303 order/api.py:307 order/api.py:934 order/api.py:1192 +#: order/api.py:1195 order/models.py:1942 order/models.py:2109 +#: order/models.py:2110 part/api.py:1160 part/api.py:1163 part/api.py:1314 +#: part/models.py:550 part/models.py:3360 part/models.py:3503 +#: part/models.py:3561 part/models.py:3582 part/models.py:3604 +#: part/models.py:3743 part/models.py:3993 part/models.py:4412 +#: part/serializers.py:1801 #: report/templates/report/inventree_bill_of_materials_report.html:110 #: report/templates/report/inventree_bill_of_materials_report.html:137 #: report/templates/report/inventree_build_order_report.html:109 @@ -580,9 +596,9 @@ msgstr "" msgid "Part" msgstr "Nguyên liệu" -#: build/api.py:120 build/api.py:123 build/serializers.py:1438 part/api.py:980 -#: part/api.py:1316 part/api.py:1600 part/models.py:1080 part/models.py:3568 -#: part/models.py:4162 part/serializers.py:1752 stock/api.py:869 +#: build/api.py:120 build/api.py:123 build/serializers.py:1446 part/api.py:975 +#: part/api.py:1325 part/models.py:435 part/models.py:1168 part/models.py:3632 +#: part/serializers.py:1617 stock/api.py:869 msgid "Category" msgstr "Danh mục" @@ -590,7 +606,7 @@ msgstr "Danh mục" msgid "Ancestor Build" msgstr "Xây dựng nguồn gốc" -#: build/api.py:152 order/api.py:129 +#: build/api.py:152 order/api.py:134 msgid "Assigned to me" msgstr "Đã gán cho tôi" @@ -638,134 +654,134 @@ msgstr "" msgid "Completed after" msgstr "" -#: build/api.py:249 order/api.py:226 +#: build/api.py:249 order/api.py:231 msgid "Min Date" msgstr "" -#: build/api.py:272 order/api.py:245 +#: build/api.py:272 order/api.py:250 msgid "Max Date" msgstr "" -#: build/api.py:297 build/api.py:300 part/api.py:217 stock/api.py:961 +#: build/api.py:297 build/api.py:300 part/api.py:212 stock/api.py:961 msgid "Exclude Tree" msgstr "" -#: build/api.py:405 +#: build/api.py:411 msgid "Build must be cancelled before it can be deleted" msgstr "Bạn dựng phải được hủy bỏ trước khi có thể xóa được" -#: build/api.py:449 build/serializers.py:1374 part/models.py:4402 +#: build/api.py:455 build/serializers.py:1382 part/models.py:4027 msgid "Consumable" msgstr "Vật tư tiêu hao" -#: build/api.py:452 build/serializers.py:1377 part/models.py:4396 +#: build/api.py:458 build/serializers.py:1385 part/models.py:4021 msgid "Optional" msgstr "Tuỳ chọn" -#: build/api.py:455 build/serializers.py:1415 common/setting/system.py:456 -#: part/models.py:1202 part/serializers.py:1714 part/serializers.py:1725 +#: build/api.py:461 build/serializers.py:1423 common/setting/system.py:456 +#: part/models.py:1290 part/serializers.py:1579 part/serializers.py:1590 #: stock/api.py:639 msgid "Assembly" msgstr "Lắp ráp" -#: build/api.py:458 +#: build/api.py:464 msgid "Tracked" msgstr "Đã theo dõi" -#: build/api.py:461 build/serializers.py:1380 part/models.py:1220 +#: build/api.py:467 build/serializers.py:1388 part/models.py:1308 msgid "Testable" msgstr "Có thể kiểm tra" -#: build/api.py:471 order/api.py:993 order/api.py:1363 +#: build/api.py:477 order/api.py:998 order/api.py:1368 msgid "Order Outstanding" msgstr "" -#: build/api.py:481 build/serializers.py:1464 order/api.py:952 +#: build/api.py:487 build/serializers.py:1472 order/api.py:957 msgid "Allocated" msgstr "Đã cấp phát" -#: build/api.py:490 build/models.py:1672 build/serializers.py:1393 +#: build/api.py:496 build/models.py:1673 build/serializers.py:1401 msgid "Consumed" msgstr "Đã dùng" -#: build/api.py:499 company/models.py:912 company/serializers.py:440 +#: build/api.py:505 company/models.py:866 company/serializers.py:467 #: templates/email/build_order_required_stock.html:19 #: templates/email/low_stock_notification.html:17 #: templates/email/part_event_notification.html:18 msgid "Available" msgstr "Có sẵn" -#: build/api.py:523 build/serializers.py:1466 company/serializers.py:437 -#: order/serializers.py:1281 part/serializers.py:959 part/serializers.py:1306 -#: part/serializers.py:1761 +#: build/api.py:529 build/serializers.py:1474 company/serializers.py:464 +#: order/serializers.py:1295 part/serializers.py:844 part/serializers.py:1171 +#: part/serializers.py:1626 msgid "On Order" msgstr "Bật đơn hàng" -#: build/api.py:868 build/models.py:117 order/models.py:1974 +#: build/api.py:874 build/models.py:118 order/models.py:1975 #: report/templates/report/inventree_build_order_report.html:105 #: stock/serializers.py:93 templates/email/build_order_completed.html:16 #: templates/email/overdue_build_order.html:15 msgid "Build Order" msgstr "Tạo đơn hàng" -#: build/api.py:882 build/api.py:886 build/serializers.py:372 -#: build/serializers.py:497 build/serializers.py:567 build/serializers.py:1251 -#: build/serializers.py:1256 order/api.py:1234 order/api.py:1239 -#: order/serializers.py:833 order/serializers.py:973 order/serializers.py:2042 +#: build/api.py:888 build/api.py:892 build/serializers.py:380 +#: build/serializers.py:505 build/serializers.py:575 build/serializers.py:1259 +#: build/serializers.py:1264 order/api.py:1239 order/api.py:1244 +#: order/serializers.py:844 order/serializers.py:984 order/serializers.py:2059 #: stock/api.py:987 stock/serializers.py:111 stock/serializers.py:601 #: stock/serializers.py:710 stock/serializers.py:888 stock/serializers.py:1418 -#: stock/serializers.py:1731 stock/serializers.py:1780 +#: stock/serializers.py:1739 stock/serializers.py:1788 #: templates/email/stale_stock_notification.html:18 users/models.py:549 msgid "Location" msgstr "Địa điểm" -#: build/api.py:894 +#: build/api.py:900 msgid "Output" msgstr "" -#: build/api.py:896 +#: build/api.py:902 msgid "Filter by output stock item ID. Use 'null' to find uninstalled build items." msgstr "" -#: build/models.py:118 users/ruleset.py:31 +#: build/models.py:119 users/ruleset.py:31 msgid "Build Orders" msgstr "Tạo đơn hàng" -#: build/models.py:168 +#: build/models.py:169 msgid "Assembly BOM has not been validated" msgstr "Dây chuyền BOM chưa được xác thực" -#: build/models.py:175 +#: build/models.py:176 msgid "Build order cannot be created for an inactive part" msgstr "Không thể tạo đơn hàng cho hàng hoá đang không hoạt động" -#: build/models.py:182 +#: build/models.py:183 msgid "Build order cannot be created for an unlocked part" msgstr "Không thể tạo đơn hàng cho hàng hoá đang mở khoá" -#: build/models.py:200 +#: build/models.py:201 msgid "Build orders can only be externally fulfilled for purchaseable parts" msgstr "" -#: build/models.py:207 order/models.py:369 +#: build/models.py:208 order/models.py:370 msgid "Responsible user or group must be specified" msgstr "Phải chọn người dùng hoặc nhóm" -#: build/models.py:212 +#: build/models.py:213 msgid "Build order part cannot be changed" msgstr "Sản phẩm đơn đặt bản dựng không thể thay đổi được" -#: build/models.py:217 order/models.py:382 +#: build/models.py:218 order/models.py:383 msgid "Target date must be after start date" msgstr "" -#: build/models.py:245 +#: build/models.py:246 msgid "Build Order Reference" msgstr "Tham chiếu đơn đặt bản dựng" -#: build/models.py:246 build/serializers.py:1371 order/models.py:614 -#: order/models.py:1311 order/models.py:1773 order/models.py:2712 -#: part/models.py:4442 +#: build/models.py:247 build/serializers.py:1379 order/models.py:615 +#: order/models.py:1312 order/models.py:1774 order/models.py:2713 +#: part/models.py:4067 #: report/templates/report/inventree_bill_of_materials_report.html:139 #: report/templates/report/inventree_purchase_order_report.html:35 #: report/templates/report/inventree_return_order_report.html:26 @@ -773,230 +789,230 @@ msgstr "Tham chiếu đơn đặt bản dựng" msgid "Reference" msgstr "Tham chiếu" -#: build/models.py:255 +#: build/models.py:256 msgid "Brief description of the build (optional)" msgstr "Mô tả ngắn về phiên bạn (Tùy chọn)" -#: build/models.py:265 +#: build/models.py:266 msgid "BuildOrder to which this build is allocated" msgstr "Đơn đặt bản dựng với bản dựng này đã được phân bổ" -#: build/models.py:274 +#: build/models.py:275 msgid "Select part to build" msgstr "Chọn sản phẩm để xây dựng" -#: build/models.py:279 +#: build/models.py:280 msgid "Sales Order Reference" msgstr "Tham chiếu đơn đặt bản dựng" -#: build/models.py:284 +#: build/models.py:285 msgid "SalesOrder to which this build is allocated" msgstr "Đơn đặt bán hàng với bản dựng này đã được phân bổ" -#: build/models.py:289 build/serializers.py:1097 +#: build/models.py:290 build/serializers.py:1105 msgid "Source Location" msgstr "Địa điểm nguồn" -#: build/models.py:295 +#: build/models.py:296 msgid "Select location to take stock from for this build (leave blank to take from any stock location)" msgstr "Chọn địa điểm để lấy trong kho cho bản dựng này (để trống để lấy từ bất kỳ vị trí kho nào)" -#: build/models.py:301 +#: build/models.py:302 msgid "External Build" msgstr "" -#: build/models.py:302 +#: build/models.py:303 msgid "This build order is fulfilled externally" msgstr "" -#: build/models.py:307 +#: build/models.py:308 msgid "Destination Location" msgstr "Địa điểm đích" -#: build/models.py:312 +#: build/models.py:313 msgid "Select location where the completed items will be stored" msgstr "Chọn địa điểm nơi hàng hóa hoàn thiện sẽ được lưu kho" -#: build/models.py:316 +#: build/models.py:317 msgid "Build Quantity" msgstr "Xây dựng số lượng" -#: build/models.py:319 +#: build/models.py:320 msgid "Number of stock items to build" msgstr "Số kho hàng để dựng" -#: build/models.py:323 +#: build/models.py:324 msgid "Completed items" msgstr "Những mục hoàn thành" -#: build/models.py:325 +#: build/models.py:326 msgid "Number of stock items which have been completed" msgstr "Số sản phẩm trong kho đã được hoàn thiện" -#: build/models.py:329 +#: build/models.py:330 msgid "Build Status" msgstr "Trnạg thái bản dựng" -#: build/models.py:334 +#: build/models.py:335 msgid "Build status code" msgstr "Mã trạng thái bản dựng" -#: build/models.py:343 build/serializers.py:359 order/serializers.py:849 +#: build/models.py:344 build/serializers.py:367 order/serializers.py:860 #: stock/models.py:1100 stock/serializers.py:85 stock/serializers.py:1591 msgid "Batch Code" msgstr "Mã lô hàng" -#: build/models.py:347 build/serializers.py:360 +#: build/models.py:348 build/serializers.py:368 msgid "Batch code for this build output" msgstr "Mã lô cho đầu ra bản dựng này" -#: build/models.py:351 order/models.py:479 order/serializers.py:186 -#: part/models.py:1283 +#: build/models.py:352 order/models.py:480 order/serializers.py:193 +#: part/models.py:1371 msgid "Creation Date" msgstr "Ngày tạo" -#: build/models.py:357 +#: build/models.py:358 msgid "Build start date" msgstr "" -#: build/models.py:358 +#: build/models.py:359 msgid "Scheduled start date for this build order" msgstr "" -#: build/models.py:364 +#: build/models.py:365 msgid "Target completion date" msgstr "Ngày hoàn thành mục tiêu" -#: build/models.py:366 +#: build/models.py:367 msgid "Target date for build completion. Build will be overdue after this date." msgstr "Ngày mục tiêu để hoàn thành bản dựng. Bản dựng sẽ bị quá hạn sau ngày này." -#: build/models.py:371 order/models.py:667 order/models.py:2751 +#: build/models.py:372 order/models.py:668 order/models.py:2752 msgid "Completion Date" msgstr "Ngày hoàn thành" -#: build/models.py:379 +#: build/models.py:380 msgid "completed by" msgstr "hoàn thành bởi" -#: build/models.py:388 +#: build/models.py:389 msgid "Issued by" msgstr "Cấp bởi" -#: build/models.py:389 +#: build/models.py:390 msgid "User who issued this build order" msgstr "Người dùng người đã được phân công cho đơn đặt bản dựng này" -#: build/models.py:398 common/models.py:180 order/api.py:179 -#: order/models.py:504 part/models.py:1300 +#: build/models.py:399 common/models.py:184 order/api.py:184 +#: order/models.py:505 part/models.py:1388 #: report/templates/report/inventree_build_order_report.html:158 msgid "Responsible" msgstr "Chịu trách nhiệm" -#: build/models.py:399 +#: build/models.py:400 msgid "User or group responsible for this build order" msgstr "Người dùng hoặc nhóm có trách nhiệm với đơn đặt bản dựng này" -#: build/models.py:404 stock/models.py:1093 +#: build/models.py:405 stock/models.py:1093 msgid "External Link" msgstr "Liên kết bên ngoài" -#: build/models.py:406 common/models.py:1984 part/models.py:1114 +#: build/models.py:407 common/models.py:1990 part/models.py:1202 #: stock/models.py:1095 msgid "Link to external URL" msgstr "Liên kết đến URL bên ngoài" -#: build/models.py:411 +#: build/models.py:412 msgid "Build Priority" msgstr "Độ ưu tiên" -#: build/models.py:414 +#: build/models.py:415 msgid "Priority of this build order" msgstr "Độ quan trọng của đơn đặt bản dựng" -#: build/models.py:422 common/models.py:150 common/models.py:164 -#: order/api.py:165 order/models.py:451 order/models.py:1805 +#: build/models.py:423 common/models.py:154 common/models.py:168 +#: order/api.py:170 order/models.py:452 order/models.py:1806 msgid "Project Code" msgstr "Mã dự án" -#: build/models.py:423 +#: build/models.py:424 msgid "Project code for this build order" msgstr "Mã dự án cho đơn đặt bản dựng này" -#: build/models.py:676 +#: build/models.py:677 msgid "Cannot complete build order with open child builds" msgstr "" -#: build/models.py:681 +#: build/models.py:682 msgid "Cannot complete build order with incomplete outputs" msgstr "" -#: build/models.py:700 build/models.py:830 +#: build/models.py:701 build/models.py:831 msgid "Failed to offload task to complete build allocations" msgstr "Không thể dỡ bỏ tác vụ để hoàn tất phân bổ" -#: build/models.py:723 +#: build/models.py:724 #, python-brace-format msgid "Build order {build} has been completed" msgstr "Đơn đặt bản dựng {build} đã được hoàn thành" -#: build/models.py:729 +#: build/models.py:730 msgid "A build order has been completed" msgstr "Một đơn đặt bản dựng đã được hoàn thành" -#: build/models.py:911 build/serializers.py:407 +#: build/models.py:912 build/serializers.py:415 msgid "Serial numbers must be provided for trackable parts" msgstr "Số sê-ri phải được cung cấp cho hàng hoá có thể theo dõi" -#: build/models.py:1042 build/models.py:1129 +#: build/models.py:1043 build/models.py:1130 msgid "No build output specified" msgstr "Không có đầu ra bản dựng đã được chỉ ra" -#: build/models.py:1045 +#: build/models.py:1046 msgid "Build output is already completed" msgstr "Đầu ra bản dựng đã được hoàn thiện" -#: build/models.py:1048 +#: build/models.py:1049 msgid "Build output does not match Build Order" msgstr "Đầu ra bản dựng không phù hợp với đơn đặt bản dựng" -#: build/models.py:1136 build/models.py:1234 build/serializers.py:285 -#: build/serializers.py:335 build/serializers.py:965 build/serializers.py:1739 -#: order/models.py:717 order/serializers.py:658 order/serializers.py:844 -#: part/serializers.py:1708 stock/models.py:940 stock/models.py:1430 +#: build/models.py:1137 build/models.py:1235 build/serializers.py:293 +#: build/serializers.py:343 build/serializers.py:973 build/serializers.py:1747 +#: order/models.py:718 order/serializers.py:669 order/serializers.py:855 +#: part/serializers.py:1573 stock/models.py:940 stock/models.py:1430 #: stock/models.py:1878 stock/serializers.py:688 stock/serializers.py:1580 msgid "Quantity must be greater than zero" msgstr "Số lượng phải lớn hơn 0" -#: build/models.py:1140 build/models.py:1239 build/serializers.py:290 +#: build/models.py:1141 build/models.py:1240 build/serializers.py:298 msgid "Quantity cannot be greater than the output quantity" msgstr "Số lượng không thể lớn hơn số lượng đầu ra" -#: build/models.py:1214 build/serializers.py:606 +#: build/models.py:1215 build/serializers.py:614 msgid "Build output has not passed all required tests" msgstr "" -#: build/models.py:1217 build/serializers.py:601 +#: build/models.py:1218 build/serializers.py:609 #, python-brace-format msgid "Build output {serial} has not passed all required tests" msgstr "Tạo đầu ra {serial} chưa vượt qua tất cả các bài kiểm tra" -#: build/models.py:1229 +#: build/models.py:1230 msgid "Cannot partially complete a build output with allocated items" msgstr "" -#: build/models.py:1627 +#: build/models.py:1628 msgid "Build Order Line Item" msgstr "Tạo mục đơn hàng" -#: build/models.py:1651 +#: build/models.py:1652 msgid "Build object" msgstr "Dựng đối tượng" -#: build/models.py:1663 build/models.py:1974 build/serializers.py:271 -#: build/serializers.py:320 build/serializers.py:1392 common/models.py:1340 -#: order/models.py:1756 order/models.py:2597 order/serializers.py:1696 -#: order/serializers.py:2124 part/models.py:3453 part/models.py:4390 +#: build/models.py:1664 build/models.py:1975 build/serializers.py:279 +#: build/serializers.py:328 build/serializers.py:1400 common/models.py:1344 +#: order/models.py:1757 order/models.py:2598 order/serializers.py:1710 +#: order/serializers.py:2141 part/models.py:3517 part/models.py:4015 #: report/templates/report/inventree_bill_of_materials_report.html:138 #: report/templates/report/inventree_build_order_report.html:113 #: report/templates/report/inventree_purchase_order_report.html:36 @@ -1014,427 +1030,427 @@ msgstr "Dựng đối tượng" msgid "Quantity" msgstr "Số lượng" -#: build/models.py:1664 +#: build/models.py:1665 msgid "Required quantity for build order" msgstr "Yêu cầu số lượng để dựng đơn đặt" -#: build/models.py:1673 +#: build/models.py:1674 msgid "Quantity of consumed stock" msgstr "" -#: build/models.py:1772 +#: build/models.py:1773 msgid "Build item must specify a build output, as master part is marked as trackable" msgstr "Xây dựng mục phải xác định đầu ra, bởi vì sản phẩm chủ được đánh dấu là có thể theo dõi" -#: build/models.py:1783 +#: build/models.py:1784 #, python-brace-format msgid "Allocated quantity ({q}) must not exceed available stock quantity ({a})" msgstr "Số lượng được phân bổ ({q}) không thể vượt quá số lượng có trong kho ({a})" -#: build/models.py:1804 order/models.py:2546 +#: build/models.py:1805 order/models.py:2547 msgid "Stock item is over-allocated" msgstr "Kho hàng đã bị phân bổ quá đà" -#: build/models.py:1809 order/models.py:2549 +#: build/models.py:1810 order/models.py:2550 msgid "Allocation quantity must be greater than zero" msgstr "Số lượng phân bổ phải lớn hơn 0" -#: build/models.py:1815 +#: build/models.py:1816 msgid "Quantity must be 1 for serialized stock" msgstr "Số lượng phải là 1 cho kho sê ri" -#: build/models.py:1875 +#: build/models.py:1876 msgid "Selected stock item does not match BOM line" msgstr "Hàng trong kho đã chọn không phù hợp với đường BOM" -#: build/models.py:1913 +#: build/models.py:1914 msgid "Allocated quantity exceeds available stock quantity" msgstr "" -#: build/models.py:1964 build/serializers.py:948 build/serializers.py:1240 -#: order/serializers.py:1533 order/serializers.py:1554 +#: build/models.py:1965 build/serializers.py:956 build/serializers.py:1248 +#: order/serializers.py:1547 order/serializers.py:1568 #: report/templates/report/inventree_sales_order_shipment_report.html:29 #: stock/api.py:1404 stock/models.py:456 stock/serializers.py:102 #: stock/serializers.py:800 stock/serializers.py:1274 stock/serializers.py:1386 msgid "Stock Item" msgstr "Kho hàng" -#: build/models.py:1965 +#: build/models.py:1966 msgid "Source stock item" msgstr "Kho hàng gốc" -#: build/models.py:1975 +#: build/models.py:1976 msgid "Stock quantity to allocate to build" msgstr "Số lượng kho hàng cần chỉ định để xây dựng" -#: build/models.py:1984 +#: build/models.py:1985 msgid "Install into" msgstr "Cài đặt vào" -#: build/models.py:1985 +#: build/models.py:1986 msgid "Destination stock item" msgstr "Kho hàng đích" -#: build/serializers.py:118 +#: build/serializers.py:120 msgid "Build Level" msgstr "Tạo cấp" -#: build/serializers.py:128 +#: build/serializers.py:136 msgid "Part Name" msgstr "Tên sản phẩm" -#: build/serializers.py:153 +#: build/serializers.py:161 msgid "Project Code Label" msgstr "Nhãn mã dự án" -#: build/serializers.py:219 build/serializers.py:974 +#: build/serializers.py:227 build/serializers.py:982 msgid "Build Output" msgstr "Đầu ra bản dựng" -#: build/serializers.py:231 +#: build/serializers.py:239 msgid "Build output does not match the parent build" msgstr "Đầu ra xây dựng không hợp với bản dựng cha" -#: build/serializers.py:235 +#: build/serializers.py:243 msgid "Output part does not match BuildOrder part" msgstr "Đầu ra sản phẩm không phù hợp với bản dựng đơn đặt hàng" -#: build/serializers.py:239 +#: build/serializers.py:247 msgid "This build output has already been completed" msgstr "Đầu ra bản dựng này đã được hoàn thành" -#: build/serializers.py:253 +#: build/serializers.py:261 msgid "This build output is not fully allocated" msgstr "Đầu ra bản dựng này chưa được phân bổ đầy đủ" -#: build/serializers.py:272 build/serializers.py:321 +#: build/serializers.py:280 build/serializers.py:329 msgid "Enter quantity for build output" msgstr "Điền số lượng cho đầu ra bản dựng" -#: build/serializers.py:343 +#: build/serializers.py:351 msgid "Integer quantity required for trackable parts" msgstr "Số lượng nguyên dương cần phải điền cho sản phẩm có thể theo dõi" -#: build/serializers.py:349 +#: build/serializers.py:357 msgid "Integer quantity required, as the bill of materials contains trackable parts" msgstr "Cần nhập số lượng nguyên dương, bởi vì hóa đơn vật liệu chứa sản phẩm có thể theo dõi" -#: build/serializers.py:366 order/serializers.py:865 order/serializers.py:1700 +#: build/serializers.py:374 order/serializers.py:876 order/serializers.py:1714 #: stock/serializers.py:699 msgid "Serial Numbers" msgstr "Số sê-ri" -#: build/serializers.py:367 +#: build/serializers.py:375 msgid "Enter serial numbers for build outputs" msgstr "Nhập vào số sêri cho đầu ra bản dựng" -#: build/serializers.py:373 +#: build/serializers.py:381 msgid "Stock location for build output" msgstr "Vị trí tồn kho cho sản phẩm" -#: build/serializers.py:388 +#: build/serializers.py:396 msgid "Auto Allocate Serial Numbers" msgstr "Số sêri tự cấp" -#: build/serializers.py:390 +#: build/serializers.py:398 msgid "Automatically allocate required items with matching serial numbers" msgstr "Tự động cấp số seri phù hợp cho hàng hóa được yêu cầu" -#: build/serializers.py:423 order/serializers.py:951 stock/api.py:1183 +#: build/serializers.py:431 order/serializers.py:962 stock/api.py:1183 #: stock/models.py:1901 msgid "The following serial numbers already exist or are invalid" msgstr "Số sêri sau đây đã tồn tại hoặc không hợp lệ" -#: build/serializers.py:465 build/serializers.py:521 build/serializers.py:613 +#: build/serializers.py:473 build/serializers.py:529 build/serializers.py:621 msgid "A list of build outputs must be provided" msgstr "Danh sách đầu ra bản dựng phải được cung cấp" -#: build/serializers.py:498 +#: build/serializers.py:506 msgid "Stock location for scrapped outputs" msgstr "Vị trí kho cho đầu ra phế phẩm" -#: build/serializers.py:504 +#: build/serializers.py:512 msgid "Discard Allocations" msgstr "Hủy phân bổ" -#: build/serializers.py:505 +#: build/serializers.py:513 msgid "Discard any stock allocations for scrapped outputs" msgstr "Hủy bất kỳ phân kho nào cho đầu ra phế phẩm" -#: build/serializers.py:510 +#: build/serializers.py:518 msgid "Reason for scrapping build output(s)" msgstr "Lý do loại bỏ đầu ra bản dựng" -#: build/serializers.py:568 +#: build/serializers.py:576 msgid "Location for completed build outputs" msgstr "Vị trí cho đầu ra bản dựng hoàn thiện" -#: build/serializers.py:576 +#: build/serializers.py:584 msgid "Accept Incomplete Allocation" msgstr "Chấp nhận phân kho dang dở" -#: build/serializers.py:577 +#: build/serializers.py:585 msgid "Complete outputs if stock has not been fully allocated" msgstr "Hoàn hiện đầu ra nếu kho chưa được phân bổ hết chỗ trống" -#: build/serializers.py:702 +#: build/serializers.py:710 msgid "Consume Allocated Stock" msgstr "Xử lý phân bổ kho hàng" -#: build/serializers.py:703 +#: build/serializers.py:711 msgid "Consume any stock which has already been allocated to this build" msgstr "Tiêu thụ bất kỳ hàng tồn kho nào đã được phân bổ cho dự án này." -#: build/serializers.py:709 +#: build/serializers.py:717 msgid "Remove Incomplete Outputs" msgstr "Xóa toàn bộ đầu ra chưa hoàn thành" -#: build/serializers.py:710 +#: build/serializers.py:718 msgid "Delete any build outputs which have not been completed" msgstr "Xóa bất kỳ đầu ra bản dựng nào chưa được hoàn thành" -#: build/serializers.py:737 +#: build/serializers.py:745 msgid "Not permitted" msgstr "Chưa được cấp phép" -#: build/serializers.py:738 +#: build/serializers.py:746 msgid "Accept as consumed by this build order" msgstr "Chấp nhận trạng thái tiêu hao bởi đơn đặt bản dựng này" -#: build/serializers.py:739 +#: build/serializers.py:747 msgid "Deallocate before completing this build order" msgstr "Phân bổ trước khi hoàn thiện đơn đặt bản dựng này" -#: build/serializers.py:766 +#: build/serializers.py:774 msgid "Overallocated Stock" msgstr "Kho quá tải" -#: build/serializers.py:769 +#: build/serializers.py:777 msgid "How do you want to handle extra stock items assigned to the build order" msgstr "Bạn muốn thế nào để xử lý hàng trong kho được gán thừa cho đơn đặt bản dựng" -#: build/serializers.py:780 +#: build/serializers.py:788 msgid "Some stock items have been overallocated" msgstr "Một vài hàng hóa đã được phân bổ quá thừa" -#: build/serializers.py:785 +#: build/serializers.py:793 msgid "Accept Unallocated" msgstr "Chấp nhận chưa phân bổ được" -#: build/serializers.py:787 +#: build/serializers.py:795 msgid "Accept that stock items have not been fully allocated to this build order" msgstr "Chấp nhận hàng hóa không được phân bổ đầy đủ vào đơn đặt bản dựng này" -#: build/serializers.py:798 +#: build/serializers.py:806 msgid "Required stock has not been fully allocated" msgstr "Kho được yêu cầu chưa được phân bổ hết không gian" -#: build/serializers.py:803 order/serializers.py:524 order/serializers.py:1601 +#: build/serializers.py:811 order/serializers.py:535 order/serializers.py:1615 msgid "Accept Incomplete" msgstr "Chấp nhận không hoàn thành" -#: build/serializers.py:805 +#: build/serializers.py:813 msgid "Accept that the required number of build outputs have not been completed" msgstr "Chấp nhận số yêu cầu của đầu ra bản dựng chưa được hoàn thành" -#: build/serializers.py:816 +#: build/serializers.py:824 msgid "Required build quantity has not been completed" msgstr "Số lượng bản dựng được yêu cầu chưa được hoàn thành" -#: build/serializers.py:828 +#: build/serializers.py:836 msgid "Build order has open child build orders" msgstr "Tạo đơn hàng có các đơn hàng đang mở" -#: build/serializers.py:831 +#: build/serializers.py:839 msgid "Build order must be in production state" msgstr "Tạo đơn hàng phải ở trạng thái sản xuất." -#: build/serializers.py:834 +#: build/serializers.py:842 msgid "Build order has incomplete outputs" msgstr "Đơn đặt bản dựng có đầu ra chưa hoàn thiện" -#: build/serializers.py:873 +#: build/serializers.py:881 msgid "Build Line" msgstr "Lộ giới" -#: build/serializers.py:881 +#: build/serializers.py:889 msgid "Build output" msgstr "Đầu ra bản dựng" -#: build/serializers.py:889 +#: build/serializers.py:897 msgid "Build output must point to the same build" msgstr "Đầu ra bản dựng phải chỉ đến bản dựng tương ứng" -#: build/serializers.py:920 +#: build/serializers.py:928 msgid "Build Line Item" msgstr "Mục chi tiết bản dựng" -#: build/serializers.py:938 +#: build/serializers.py:946 msgid "bom_item.part must point to the same part as the build order" msgstr "bom_item.part phải trỏ đến phần tương tự của đơn đặt bản dựng" -#: build/serializers.py:954 stock/serializers.py:1287 +#: build/serializers.py:962 stock/serializers.py:1287 msgid "Item must be in stock" msgstr "Hàng hóa phải trong kho" -#: build/serializers.py:997 order/serializers.py:1587 +#: build/serializers.py:1005 order/serializers.py:1601 #, python-brace-format msgid "Available quantity ({q}) exceeded" msgstr "Số lượng có sẵn ({q}) đã bị vượt quá" -#: build/serializers.py:1003 +#: build/serializers.py:1011 msgid "Build output must be specified for allocation of tracked parts" msgstr "Đầu ra bản dựng phải được xác định cho việc phân sản phẩm được theo dõi" -#: build/serializers.py:1011 +#: build/serializers.py:1019 msgid "Build output cannot be specified for allocation of untracked parts" msgstr "Đầu ra bản dựng không thể chỉ định cho việc phân sản phẩm chưa được theo dõi" -#: build/serializers.py:1035 order/serializers.py:1860 +#: build/serializers.py:1043 order/serializers.py:1874 msgid "Allocation items must be provided" msgstr "Hàng hóa phân bổ phải được cung cấp" -#: build/serializers.py:1099 +#: build/serializers.py:1107 msgid "Stock location where parts are to be sourced (leave blank to take from any location)" msgstr "Vị trí kho nơi sản phẩm được lấy ra (để trống để lấy từ bất kỳ vị trí nào)" -#: build/serializers.py:1108 +#: build/serializers.py:1116 msgid "Exclude Location" msgstr "Ngoại trừ vị trí" -#: build/serializers.py:1109 +#: build/serializers.py:1117 msgid "Exclude stock items from this selected location" msgstr "Không bao gồm hàng trong kho từ vị trí đã chọn này" -#: build/serializers.py:1114 +#: build/serializers.py:1122 msgid "Interchangeable Stock" msgstr "Kho trao đổi" -#: build/serializers.py:1115 +#: build/serializers.py:1123 msgid "Stock items in multiple locations can be used interchangeably" msgstr "Hàng trong kho thuộc nhiều vị trí có thể dùng thay thế được cho nhau" -#: build/serializers.py:1120 +#: build/serializers.py:1128 msgid "Substitute Stock" msgstr "Kho thay thế" -#: build/serializers.py:1121 +#: build/serializers.py:1129 msgid "Allow allocation of substitute parts" msgstr "Cho phép phân kho sản phẩm thay thế" -#: build/serializers.py:1126 +#: build/serializers.py:1134 msgid "Optional Items" msgstr "Mục tùy chọn" -#: build/serializers.py:1127 +#: build/serializers.py:1135 msgid "Allocate optional BOM items to build order" msgstr "Phân bổ các mục hóa đơn vật liệu tùy chọn đến đơn đặt bản dựng" -#: build/serializers.py:1148 +#: build/serializers.py:1156 msgid "Failed to start auto-allocation task" msgstr "Không thể khởi động tác vụ phân bổ tự động." -#: build/serializers.py:1200 +#: build/serializers.py:1208 msgid "BOM Reference" msgstr "BOM liên quan" -#: build/serializers.py:1206 +#: build/serializers.py:1214 msgid "BOM Part ID" msgstr "ID hàng hoá BOM" -#: build/serializers.py:1213 +#: build/serializers.py:1221 msgid "BOM Part Name" msgstr "Tên hàng hoá BOM" -#: build/serializers.py:1266 build/serializers.py:1449 +#: build/serializers.py:1274 build/serializers.py:1457 msgid "Build" msgstr "" -#: build/serializers.py:1276 company/models.py:685 order/api.py:311 -#: order/api.py:316 order/api.py:543 order/serializers.py:650 +#: build/serializers.py:1284 company/models.py:639 order/api.py:316 +#: order/api.py:321 order/api.py:549 order/serializers.py:661 #: stock/models.py:1036 stock/serializers.py:579 msgid "Supplier Part" msgstr "Sản phẩm nhà cung cấp" -#: build/serializers.py:1284 stock/serializers.py:620 +#: build/serializers.py:1292 stock/serializers.py:620 msgid "Allocated Quantity" msgstr "Số lượng đã phân bổ" -#: build/serializers.py:1351 +#: build/serializers.py:1359 msgid "Build Reference" msgstr "Tạo liên quan" -#: build/serializers.py:1361 +#: build/serializers.py:1369 msgid "Part Category Name" msgstr "Tên danh mục hàng hoá" -#: build/serializers.py:1383 common/setting/system.py:480 part/models.py:1214 +#: build/serializers.py:1391 common/setting/system.py:480 part/models.py:1302 msgid "Trackable" msgstr "Có thể theo dõi" -#: build/serializers.py:1386 +#: build/serializers.py:1394 msgid "Inherited" msgstr "Được kế thừa" -#: build/serializers.py:1389 part/models.py:4475 +#: build/serializers.py:1397 part/models.py:4100 msgid "Allow Variants" msgstr "Cho phép biến thể" -#: build/serializers.py:1395 build/serializers.py:1400 part/models.py:4208 -#: part/models.py:4779 stock/api.py:882 +#: build/serializers.py:1403 build/serializers.py:1408 part/models.py:3833 +#: part/models.py:4404 stock/api.py:882 msgid "BOM Item" msgstr "Mục BOM" -#: build/serializers.py:1467 order/serializers.py:1282 part/serializers.py:1310 -#: part/serializers.py:1765 +#: build/serializers.py:1475 order/serializers.py:1296 part/serializers.py:1175 +#: part/serializers.py:1630 msgid "In Production" msgstr "Đang sản xuất" -#: build/serializers.py:1469 part/serializers.py:950 part/serializers.py:1314 +#: build/serializers.py:1477 part/serializers.py:835 part/serializers.py:1179 msgid "Scheduled to Build" msgstr "" -#: build/serializers.py:1472 part/serializers.py:987 +#: build/serializers.py:1480 part/serializers.py:872 msgid "External Stock" msgstr "Kho ngoài" -#: build/serializers.py:1473 part/serializers.py:1300 part/serializers.py:1808 +#: build/serializers.py:1481 part/serializers.py:1165 part/serializers.py:1673 msgid "Available Stock" msgstr "Số hàng tồn" -#: build/serializers.py:1475 +#: build/serializers.py:1483 msgid "Available Substitute Stock" msgstr "Kho hàng thay thế" -#: build/serializers.py:1478 +#: build/serializers.py:1486 msgid "Available Variant Stock" msgstr "Hàng tồn kho có sẵn" -#: build/serializers.py:1752 +#: build/serializers.py:1760 msgid "Consumed quantity exceeds allocated quantity" msgstr "" -#: build/serializers.py:1789 +#: build/serializers.py:1797 msgid "Optional notes for the stock consumption" msgstr "" -#: build/serializers.py:1806 +#: build/serializers.py:1814 msgid "Build item must point to the correct build order" msgstr "" -#: build/serializers.py:1811 +#: build/serializers.py:1819 msgid "Duplicate build item allocation" msgstr "" -#: build/serializers.py:1829 +#: build/serializers.py:1837 msgid "Build line must point to the correct build order" msgstr "" -#: build/serializers.py:1834 +#: build/serializers.py:1842 msgid "Duplicate build line allocation" msgstr "" -#: build/serializers.py:1846 +#: build/serializers.py:1854 msgid "At least one item or line must be provided" msgstr "" @@ -1482,702 +1498,826 @@ msgstr "Đơn đặt bản dựng quá hạn" msgid "Build order {bo} is now overdue" msgstr "Đặt hàng bản dựng {bo} đang quá hạn" -#: common/api.py:694 +#: common/api.py:701 msgid "Is Link" msgstr "Đường dẫn" -#: common/api.py:702 +#: common/api.py:709 msgid "Is File" msgstr "File" -#: common/api.py:745 +#: common/api.py:756 msgid "User does not have permission to delete these attachments" msgstr "Không có quyền xoá file đính kèm" -#: common/api.py:762 +#: common/api.py:769 msgid "User does not have permission to delete this attachment" msgstr "Không có quyền xoá file đính kèm" -#: common/currency.py:122 +#: common/currency.py:130 msgid "Invalid currency code" msgstr "Sai mã tiền tệ" -#: common/currency.py:124 +#: common/currency.py:132 msgid "Duplicate currency code" msgstr "Trùng mã tiền tệ" -#: common/currency.py:129 +#: common/currency.py:137 msgid "No valid currency codes provided" msgstr "Mã tiền tệ không đúng" -#: common/currency.py:146 +#: common/currency.py:154 msgid "No plugin" msgstr "Không phần mở rộng" -#: common/models.py:101 common/models.py:126 common/models.py:2729 +#: common/models.py:105 common/models.py:130 common/models.py:3150 msgid "Updated" msgstr "Đã cập nhật" -#: common/models.py:102 common/models.py:127 +#: common/models.py:106 common/models.py:131 msgid "Timestamp of last update" msgstr "Nhãn thời gian của lần cập cuối cùng" -#: common/models.py:139 +#: common/models.py:143 msgid "Update By" msgstr "" -#: common/models.py:140 +#: common/models.py:144 msgid "User who last updated this object" msgstr "" -#: common/models.py:165 +#: common/models.py:169 msgid "Unique project code" msgstr "Mã dự án duy nhất" -#: common/models.py:172 +#: common/models.py:176 msgid "Project description" msgstr "Mô tả dự án" -#: common/models.py:181 +#: common/models.py:185 msgid "User or group responsible for this project" msgstr "Người dùng hoặc nhóm có trách nhiệm với dự án này" -#: common/models.py:771 common/models.py:1272 common/models.py:1310 +#: common/models.py:775 common/models.py:1276 common/models.py:1314 msgid "Settings key" msgstr "" -#: common/models.py:775 +#: common/models.py:779 msgid "Settings value" msgstr "Giá trị cài đặt" -#: common/models.py:830 +#: common/models.py:834 msgid "Chosen value is not a valid option" msgstr "Giá trị đã chọn không hợp lệ" -#: common/models.py:846 +#: common/models.py:850 msgid "Value must be a boolean value" msgstr "Giá trị phải là kiểu boolean" -#: common/models.py:854 +#: common/models.py:858 msgid "Value must be an integer value" msgstr "Giá trị phải là một số nguyên dương" -#: common/models.py:862 +#: common/models.py:866 msgid "Value must be a valid number" msgstr "" -#: common/models.py:887 +#: common/models.py:891 msgid "Value does not pass validation checks" msgstr "" -#: common/models.py:909 +#: common/models.py:913 msgid "Key string must be unique" msgstr "Chuỗi khóa phải duy nhất" -#: common/models.py:1318 common/models.py:1319 common/models.py:1423 -#: common/models.py:1424 common/models.py:1669 common/models.py:1670 -#: common/models.py:2000 common/models.py:2001 common/models.py:2382 -#: importer/models.py:100 part/models.py:3547 part/models.py:3575 +#: common/models.py:1322 common/models.py:1323 common/models.py:1427 +#: common/models.py:1428 common/models.py:1673 common/models.py:1674 +#: common/models.py:2006 common/models.py:2007 common/models.py:2803 +#: importer/models.py:100 part/models.py:3611 part/models.py:3639 #: plugin/models.py:355 plugin/models.py:356 #: report/templates/report/inventree_test_report.html:105 users/models.py:124 #: users/models.py:501 msgid "User" msgstr "Người dùng" -#: common/models.py:1341 +#: common/models.py:1345 msgid "Price break quantity" msgstr "Số lượng giá phá vỡ" -#: common/models.py:1348 company/serializers.py:564 order/models.py:1842 -#: order/models.py:3043 +#: common/models.py:1352 company/serializers.py:349 order/models.py:1843 +#: order/models.py:3044 msgid "Price" msgstr "Giá" -#: common/models.py:1349 +#: common/models.py:1353 msgid "Unit price at specified quantity" msgstr "Đơn vị giá theo số lượng cụ thể" -#: common/models.py:1400 common/models.py:1585 +#: common/models.py:1404 common/models.py:1589 msgid "Endpoint" msgstr "Đầu mối" -#: common/models.py:1401 +#: common/models.py:1405 msgid "Endpoint at which this webhook is received" msgstr "Đầu mối tại điểm webhook được nhận" -#: common/models.py:1411 +#: common/models.py:1415 msgid "Name for this webhook" msgstr "Tên của webhook này" -#: common/models.py:1415 common/models.py:2241 common/models.py:2348 -#: company/models.py:191 company/models.py:822 machine/models.py:40 -#: part/models.py:1237 plugin/models.py:69 stock/api.py:642 users/models.py:195 +#: common/models.py:1419 common/models.py:2247 common/models.py:2354 +#: company/models.py:192 company/models.py:776 machine/models.py:40 +#: part/models.py:1325 plugin/models.py:69 stock/api.py:642 users/models.py:195 #: users/models.py:554 users/serializers.py:314 msgid "Active" msgstr "Hoạt động" -#: common/models.py:1415 +#: common/models.py:1419 msgid "Is this webhook active" msgstr "Webhook có hoạt động không" -#: common/models.py:1431 users/models.py:172 +#: common/models.py:1435 users/models.py:172 msgid "Token" msgstr "Chữ ký số" -#: common/models.py:1432 +#: common/models.py:1436 msgid "Token for access" msgstr "Chữ ký số để truy cập" -#: common/models.py:1440 +#: common/models.py:1444 msgid "Secret" msgstr "Bí mật" -#: common/models.py:1441 +#: common/models.py:1445 msgid "Shared secret for HMAC" msgstr "Mã bí mật dùng chung cho HMAC" -#: common/models.py:1549 common/models.py:2619 +#: common/models.py:1553 common/models.py:3040 msgid "Message ID" msgstr "Mã Tin nhắn" -#: common/models.py:1550 common/models.py:2609 +#: common/models.py:1554 common/models.py:3030 msgid "Unique identifier for this message" msgstr "Định danh duy nhất cho tin nhắn này" -#: common/models.py:1558 +#: common/models.py:1562 msgid "Host" msgstr "Máy chủ" -#: common/models.py:1559 +#: common/models.py:1563 msgid "Host from which this message was received" msgstr "Mãy chủ từ tin nhắn này đã được nhận" -#: common/models.py:1567 +#: common/models.py:1571 msgid "Header" msgstr "Đầu mục" -#: common/models.py:1568 +#: common/models.py:1572 msgid "Header of this message" msgstr "Đầu mục tin nhắn" -#: common/models.py:1575 +#: common/models.py:1579 msgid "Body" msgstr "Thân" -#: common/models.py:1576 +#: common/models.py:1580 msgid "Body of this message" msgstr "Thân tin nhắn này" -#: common/models.py:1586 +#: common/models.py:1590 msgid "Endpoint on which this message was received" msgstr "Đầu mối của tin nhắn này đã nhận được" -#: common/models.py:1591 +#: common/models.py:1595 msgid "Worked on" msgstr "Làm việc vào" -#: common/models.py:1592 +#: common/models.py:1596 msgid "Was the work on this message finished?" msgstr "Công việc trong tin nhắn này đã kết thúc?" -#: common/models.py:1718 +#: common/models.py:1722 msgid "Id" msgstr "Mã" -#: common/models.py:1720 +#: common/models.py:1724 msgid "Title" msgstr "Tiêu đề" -#: common/models.py:1722 common/models.py:1983 company/models.py:185 -#: company/models.py:467 company/models.py:534 company/models.py:839 -#: order/models.py:457 order/models.py:1786 order/models.py:2343 -#: part/models.py:1113 +#: common/models.py:1726 common/models.py:1989 company/models.py:186 +#: company/models.py:468 company/models.py:536 company/models.py:793 +#: order/models.py:458 order/models.py:1787 order/models.py:2344 +#: part/models.py:1201 #: report/templates/report/inventree_build_order_report.html:164 msgid "Link" msgstr "Liên kết" -#: common/models.py:1724 +#: common/models.py:1728 msgid "Published" msgstr "Đã công bố" -#: common/models.py:1726 +#: common/models.py:1730 msgid "Author" msgstr "Tác giả" -#: common/models.py:1728 +#: common/models.py:1732 msgid "Summary" msgstr "Tóm tắt" -#: common/models.py:1731 common/models.py:2586 +#: common/models.py:1735 common/models.py:3007 msgid "Read" msgstr "Đọc" -#: common/models.py:1731 +#: common/models.py:1735 msgid "Was this news item read?" msgstr "Tin này đã được đọc?" -#: common/models.py:1748 +#: common/models.py:1752 msgid "Image file" msgstr "Tệp ảnh" -#: common/models.py:1760 +#: common/models.py:1764 msgid "Target model type for this image" msgstr "" -#: common/models.py:1764 +#: common/models.py:1768 msgid "Target model ID for this image" msgstr "" -#: common/models.py:1786 +#: common/models.py:1790 msgid "Custom Unit" msgstr "" -#: common/models.py:1804 +#: common/models.py:1808 msgid "Unit symbol must be unique" msgstr "" -#: common/models.py:1819 +#: common/models.py:1823 msgid "Unit name must be a valid identifier" msgstr "Tên đơn vị phải là một định danh hợp lệ" -#: common/models.py:1838 +#: common/models.py:1842 msgid "Unit name" msgstr "Tên đơn vị" -#: common/models.py:1845 +#: common/models.py:1849 msgid "Symbol" msgstr "Biểu tượng" -#: common/models.py:1846 +#: common/models.py:1850 msgid "Optional unit symbol" msgstr "Biểu tượng đơn vị tùy chọn" -#: common/models.py:1852 +#: common/models.py:1856 msgid "Definition" msgstr "Định nghĩa" -#: common/models.py:1853 +#: common/models.py:1857 msgid "Unit definition" msgstr "Định nghĩa đơn vị" -#: common/models.py:1911 common/models.py:1974 stock/models.py:2967 +#: common/models.py:1917 common/models.py:1980 stock/models.py:2984 #: stock/serializers.py:247 msgid "Attachment" msgstr "Đính kèm" -#: common/models.py:1928 +#: common/models.py:1934 msgid "Missing file" msgstr "Tập tin bị thiếu" -#: common/models.py:1929 +#: common/models.py:1935 msgid "Missing external link" msgstr "Thiếu liên kết bên ngoài" -#: common/models.py:1966 +#: common/models.py:1972 common/models.py:2488 msgid "Model type" msgstr "" -#: common/models.py:1967 +#: common/models.py:1973 msgid "Target model type for image" msgstr "" -#: common/models.py:1975 +#: common/models.py:1981 msgid "Select file to attach" msgstr "Chọn file đính kèm" -#: common/models.py:1991 +#: common/models.py:1997 msgid "Comment" msgstr "Bình luận" -#: common/models.py:1992 +#: common/models.py:1998 msgid "Attachment comment" msgstr "" -#: common/models.py:2008 +#: common/models.py:2014 msgid "Upload date" msgstr "" -#: common/models.py:2009 +#: common/models.py:2015 msgid "Date the file was uploaded" msgstr "" -#: common/models.py:2013 +#: common/models.py:2019 msgid "File size" msgstr "" -#: common/models.py:2013 +#: common/models.py:2019 msgid "File size in bytes" msgstr "" -#: common/models.py:2051 common/serializers.py:684 +#: common/models.py:2057 common/serializers.py:688 msgid "Invalid model type specified for attachment" msgstr "" -#: common/models.py:2072 +#: common/models.py:2078 msgid "Custom State" msgstr "" -#: common/models.py:2073 +#: common/models.py:2079 msgid "Custom States" msgstr "" -#: common/models.py:2078 +#: common/models.py:2084 msgid "Reference Status Set" msgstr "" -#: common/models.py:2079 +#: common/models.py:2085 msgid "Status set that is extended with this custom state" msgstr "" -#: common/models.py:2083 generic/states/serializers.py:18 +#: common/models.py:2089 generic/states/serializers.py:18 msgid "Logical Key" msgstr "" -#: common/models.py:2085 +#: common/models.py:2091 msgid "State logical key that is equal to this custom state in business logic" msgstr "" -#: common/models.py:2090 common/models.py:2329 company/models.py:622 -#: machine/serializers.py:27 -#: report/templates/report/inventree_test_report.html:104 stock/models.py:2959 +#: common/models.py:2096 common/models.py:2335 machine/serializers.py:27 +#: report/templates/report/inventree_test_report.html:104 stock/models.py:2976 msgid "Value" msgstr "Giá trị" -#: common/models.py:2091 +#: common/models.py:2097 msgid "Numerical value that will be saved in the models database" msgstr "" -#: common/models.py:2097 +#: common/models.py:2103 msgid "Name of the state" msgstr "" -#: common/models.py:2106 common/models.py:2335 generic/states/serializers.py:22 +#: common/models.py:2112 common/models.py:2341 generic/states/serializers.py:22 msgid "Label" msgstr "" -#: common/models.py:2107 +#: common/models.py:2113 msgid "Label that will be displayed in the frontend" msgstr "" -#: common/models.py:2114 generic/states/serializers.py:24 +#: common/models.py:2120 generic/states/serializers.py:24 msgid "Color" msgstr "" -#: common/models.py:2115 +#: common/models.py:2121 msgid "Color that will be displayed in the frontend" msgstr "" -#: common/models.py:2123 +#: common/models.py:2129 msgid "Model" msgstr "" -#: common/models.py:2124 +#: common/models.py:2130 msgid "Model this state is associated with" msgstr "" -#: common/models.py:2139 +#: common/models.py:2145 msgid "Model must be selected" msgstr "" -#: common/models.py:2142 +#: common/models.py:2148 msgid "Key must be selected" msgstr "" -#: common/models.py:2145 +#: common/models.py:2151 msgid "Logical key must be selected" msgstr "" -#: common/models.py:2149 +#: common/models.py:2155 msgid "Key must be different from logical key" msgstr "" -#: common/models.py:2156 +#: common/models.py:2162 msgid "Valid reference status class must be provided" msgstr "" -#: common/models.py:2162 +#: common/models.py:2168 msgid "Key must be different from the logical keys of the reference status" msgstr "" -#: common/models.py:2169 +#: common/models.py:2175 msgid "Logical key must be in the logical keys of the reference status" msgstr "" -#: common/models.py:2176 +#: common/models.py:2182 msgid "Name must be different from the names of the reference status" msgstr "" -#: common/models.py:2216 common/models.py:2323 part/models.py:3889 +#: common/models.py:2222 common/models.py:2329 common/models.py:2533 msgid "Selection List" msgstr "" -#: common/models.py:2217 +#: common/models.py:2223 msgid "Selection Lists" msgstr "" -#: common/models.py:2222 +#: common/models.py:2228 msgid "Name of the selection list" msgstr "" -#: common/models.py:2229 +#: common/models.py:2235 msgid "Description of the selection list" msgstr "" -#: common/models.py:2235 part/models.py:1242 +#: common/models.py:2241 part/models.py:1330 msgid "Locked" msgstr "" -#: common/models.py:2236 +#: common/models.py:2242 msgid "Is this selection list locked?" msgstr "" -#: common/models.py:2242 +#: common/models.py:2248 msgid "Can this selection list be used?" msgstr "" -#: common/models.py:2250 +#: common/models.py:2256 msgid "Source Plugin" msgstr "" -#: common/models.py:2251 +#: common/models.py:2257 msgid "Plugin which provides the selection list" msgstr "" -#: common/models.py:2256 +#: common/models.py:2262 msgid "Source String" msgstr "" -#: common/models.py:2257 +#: common/models.py:2263 msgid "Optional string identifying the source used for this list" msgstr "" -#: common/models.py:2266 +#: common/models.py:2272 msgid "Default Entry" msgstr "" -#: common/models.py:2267 +#: common/models.py:2273 msgid "Default entry for this selection list" msgstr "" -#: common/models.py:2272 common/models.py:2724 +#: common/models.py:2278 common/models.py:3145 msgid "Created" msgstr "Đã tạo" -#: common/models.py:2273 +#: common/models.py:2279 msgid "Date and time that the selection list was created" msgstr "" -#: common/models.py:2278 +#: common/models.py:2284 msgid "Last Updated" msgstr "Cập nhật lần cuối" -#: common/models.py:2279 +#: common/models.py:2285 msgid "Date and time that the selection list was last updated" msgstr "" -#: common/models.py:2313 +#: common/models.py:2319 msgid "Selection List Entry" msgstr "" -#: common/models.py:2314 +#: common/models.py:2320 msgid "Selection List Entries" msgstr "" -#: common/models.py:2324 +#: common/models.py:2330 msgid "Selection list to which this entry belongs" msgstr "" -#: common/models.py:2330 +#: common/models.py:2336 msgid "Value of the selection list entry" msgstr "" -#: common/models.py:2336 +#: common/models.py:2342 msgid "Label for the selection list entry" msgstr "" -#: common/models.py:2342 +#: common/models.py:2348 msgid "Description of the selection list entry" msgstr "" -#: common/models.py:2349 +#: common/models.py:2355 msgid "Is this selection list entry active?" msgstr "" -#: common/models.py:2367 -msgid "Barcode Scan" +#: common/models.py:2387 +msgid "Parameter Template" +msgstr "Mẫu tham số" + +#: common/models.py:2388 +msgid "Parameter Templates" msgstr "" -#: common/models.py:2371 importer/models.py:546 part/models.py:4060 -msgid "Data" -msgstr "Dữ liệu" +#: common/models.py:2425 +msgid "Checkbox parameters cannot have units" +msgstr "Tham số hộp kiểm tra không thể có đơn vị" -#: common/models.py:2372 -msgid "Barcode data" +#: common/models.py:2430 +msgid "Checkbox parameters cannot have choices" +msgstr "Tham số hộp kiểm tra không thể có lựa chọn" + +#: common/models.py:2450 part/models.py:3707 +msgid "Choices must be unique" +msgstr "Lựa chọn phải duy nhất" + +#: common/models.py:2467 +msgid "Parameter template name must be unique" +msgstr "Tên tham số mẫu phải là duy nhất" + +#: common/models.py:2489 +msgid "Target model type for this parameter template" msgstr "" -#: common/models.py:2383 -msgid "User who scanned the barcode" +#: common/models.py:2495 +msgid "Parameter Name" +msgstr "Tên tham số" + +#: common/models.py:2501 part/models.py:1283 +msgid "Units" +msgstr "Đơn vị" + +#: common/models.py:2502 +msgid "Physical units for this parameter" +msgstr "Đơn vị vật lý cho tham số này" + +#: common/models.py:2510 +msgid "Parameter description" +msgstr "Mô tả tham số" + +#: common/models.py:2516 +msgid "Checkbox" +msgstr "Ô lựa chọn" + +#: common/models.py:2517 +msgid "Is this parameter a checkbox?" +msgstr "Tham số này có phải là hộp kiểm tra?" + +#: common/models.py:2522 part/models.py:3794 +msgid "Choices" +msgstr "Lựa chọn" + +#: common/models.py:2523 +msgid "Valid choices for this parameter (comma-separated)" +msgstr "Lựa chọn hợp lệ từ tham số này (ngăn cách bằng dấu phẩy)" + +#: common/models.py:2534 +msgid "Selection list for this parameter" msgstr "" -#: common/models.py:2388 importer/models.py:69 -msgid "Timestamp" +#: common/models.py:2539 part/models.py:3769 report/models.py:287 +msgid "Enabled" +msgstr "Đã bật" + +#: common/models.py:2540 +msgid "Is this parameter template enabled?" msgstr "" -#: common/models.py:2389 -msgid "Date and time of the barcode scan" -msgstr "" - -#: common/models.py:2395 -msgid "URL endpoint which processed the barcode" -msgstr "" - -#: common/models.py:2402 order/models.py:1832 plugin/serializers.py:93 -msgid "Context" -msgstr "Ngữ cảnh" - -#: common/models.py:2403 -msgid "Context data for the barcode scan" -msgstr "" - -#: common/models.py:2410 -msgid "Response" -msgstr "" - -#: common/models.py:2411 -msgid "Response data from the barcode scan" -msgstr "" - -#: common/models.py:2417 report/templates/report/inventree_test_report.html:103 -#: stock/models.py:2953 -msgid "Result" -msgstr "Kết quả" - -#: common/models.py:2418 -msgid "Was the barcode scan successful?" -msgstr "" - -#: common/models.py:2500 -msgid "An error occurred" -msgstr "" - -#: common/models.py:2521 -msgid "INVE-E8: Email log deletion is protected. Set INVENTREE_PROTECT_EMAIL_LOG to False to allow deletion." -msgstr "" - -#: common/models.py:2568 -msgid "Email Message" -msgstr "" - -#: common/models.py:2569 -msgid "Email Messages" -msgstr "" - -#: common/models.py:2576 -msgid "Announced" -msgstr "" - -#: common/models.py:2578 -msgid "Sent" -msgstr "" - -#: common/models.py:2579 -msgid "Failed" +#: common/models.py:2581 +msgid "Parameter" msgstr "" #: common/models.py:2582 -msgid "Delivered" -msgstr "" - -#: common/models.py:2590 -msgid "Confirmed" -msgstr "" - -#: common/models.py:2596 -msgid "Inbound" -msgstr "" - -#: common/models.py:2597 -msgid "Outbound" -msgstr "" - -#: common/models.py:2602 -msgid "No Reply" -msgstr "" - -#: common/models.py:2603 -msgid "Track Delivery" -msgstr "" - -#: common/models.py:2604 -msgid "Track Read" -msgstr "" - -#: common/models.py:2605 -msgid "Track Click" -msgstr "" - -#: common/models.py:2608 common/models.py:2711 -msgid "Global ID" -msgstr "" - -#: common/models.py:2621 -msgid "Identifier for this message (might be supplied by external system)" +msgid "Parameters" msgstr "" #: common/models.py:2628 +msgid "Invalid choice for parameter value" +msgstr "Lựa chọn sai cho giá trị tham số" + +#: common/models.py:2698 common/serializers.py:783 +msgid "Invalid model type specified for parameter" +msgstr "" + +#: common/models.py:2734 +msgid "Model ID" +msgstr "" + +#: common/models.py:2735 +msgid "ID of the target model for this parameter" +msgstr "" + +#: common/models.py:2744 common/setting/system.py:450 report/models.py:373 +#: report/models.py:669 report/serializers.py:94 report/serializers.py:135 +#: stock/serializers.py:234 +msgid "Template" +msgstr "Mẫu" + +#: common/models.py:2745 +msgid "Parameter template" +msgstr "" + +#: common/models.py:2750 common/models.py:2792 importer/models.py:546 +msgid "Data" +msgstr "Dữ liệu" + +#: common/models.py:2751 +msgid "Parameter Value" +msgstr "Giá trị tham số" + +#: common/models.py:2760 company/models.py:810 order/serializers.py:894 +#: order/serializers.py:2064 part/models.py:4075 part/models.py:4444 +#: report/templates/report/inventree_bill_of_materials_report.html:140 +#: report/templates/report/inventree_purchase_order_report.html:39 +#: report/templates/report/inventree_return_order_report.html:27 +#: report/templates/report/inventree_sales_order_report.html:32 +#: report/templates/report/inventree_stock_location_report.html:105 +#: stock/serializers.py:813 +msgid "Note" +msgstr "Ghi chú" + +#: common/models.py:2761 stock/serializers.py:718 +msgid "Optional note field" +msgstr "Trường ghi chú tùy chọn" + +#: common/models.py:2788 +msgid "Barcode Scan" +msgstr "" + +#: common/models.py:2793 +msgid "Barcode data" +msgstr "" + +#: common/models.py:2804 +msgid "User who scanned the barcode" +msgstr "" + +#: common/models.py:2809 importer/models.py:69 +msgid "Timestamp" +msgstr "" + +#: common/models.py:2810 +msgid "Date and time of the barcode scan" +msgstr "" + +#: common/models.py:2816 +msgid "URL endpoint which processed the barcode" +msgstr "" + +#: common/models.py:2823 order/models.py:1833 plugin/serializers.py:93 +msgid "Context" +msgstr "Ngữ cảnh" + +#: common/models.py:2824 +msgid "Context data for the barcode scan" +msgstr "" + +#: common/models.py:2831 +msgid "Response" +msgstr "" + +#: common/models.py:2832 +msgid "Response data from the barcode scan" +msgstr "" + +#: common/models.py:2838 report/templates/report/inventree_test_report.html:103 +#: stock/models.py:2970 +msgid "Result" +msgstr "Kết quả" + +#: common/models.py:2839 +msgid "Was the barcode scan successful?" +msgstr "" + +#: common/models.py:2921 +msgid "An error occurred" +msgstr "" + +#: common/models.py:2942 +msgid "INVE-E8: Email log deletion is protected. Set INVENTREE_PROTECT_EMAIL_LOG to False to allow deletion." +msgstr "" + +#: common/models.py:2989 +msgid "Email Message" +msgstr "" + +#: common/models.py:2990 +msgid "Email Messages" +msgstr "" + +#: common/models.py:2997 +msgid "Announced" +msgstr "" + +#: common/models.py:2999 +msgid "Sent" +msgstr "" + +#: common/models.py:3000 +msgid "Failed" +msgstr "" + +#: common/models.py:3003 +msgid "Delivered" +msgstr "" + +#: common/models.py:3011 +msgid "Confirmed" +msgstr "" + +#: common/models.py:3017 +msgid "Inbound" +msgstr "" + +#: common/models.py:3018 +msgid "Outbound" +msgstr "" + +#: common/models.py:3023 +msgid "No Reply" +msgstr "" + +#: common/models.py:3024 +msgid "Track Delivery" +msgstr "" + +#: common/models.py:3025 +msgid "Track Read" +msgstr "" + +#: common/models.py:3026 +msgid "Track Click" +msgstr "" + +#: common/models.py:3029 common/models.py:3132 +msgid "Global ID" +msgstr "" + +#: common/models.py:3042 +msgid "Identifier for this message (might be supplied by external system)" +msgstr "" + +#: common/models.py:3049 msgid "Thread ID" msgstr "" -#: common/models.py:2630 +#: common/models.py:3051 msgid "Identifier for this message thread (might be supplied by external system)" msgstr "" -#: common/models.py:2639 +#: common/models.py:3060 msgid "Thread" msgstr "" -#: common/models.py:2640 +#: common/models.py:3061 msgid "Linked thread for this message" msgstr "" -#: common/models.py:2656 -msgid "Prioriy" +#: common/models.py:3077 +msgid "Priority" msgstr "" -#: common/models.py:2698 +#: common/models.py:3119 msgid "Email Thread" msgstr "" -#: common/models.py:2699 +#: common/models.py:3120 msgid "Email Threads" msgstr "" -#: common/models.py:2705 generic/states/serializers.py:16 +#: common/models.py:3126 generic/states/serializers.py:16 #: machine/serializers.py:24 plugin/models.py:46 users/models.py:113 msgid "Key" msgstr "Khóa" -#: common/models.py:2708 +#: common/models.py:3129 msgid "Unique key for this thread (used to identify the thread)" msgstr "" -#: common/models.py:2712 +#: common/models.py:3133 msgid "Unique identifier for this thread" msgstr "" -#: common/models.py:2719 +#: common/models.py:3140 msgid "Started Internal" msgstr "" -#: common/models.py:2720 +#: common/models.py:3141 msgid "Was this thread started internally?" msgstr "" -#: common/models.py:2725 +#: common/models.py:3146 msgid "Date and time that the thread was created" msgstr "" -#: common/models.py:2730 +#: common/models.py:3151 msgid "Date and time that the thread was last updated" msgstr "" @@ -2199,7 +2339,7 @@ msgstr "{verbose_name} đã bị hủy" msgid "A order that is assigned to you was canceled" msgstr "Một đơn đặt từng được phân công cho bạn đã bị hủy bỏ" -#: common/notifications.py:73 common/notifications.py:80 order/api.py:594 +#: common/notifications.py:73 common/notifications.py:80 order/api.py:600 msgid "Items Received" msgstr "Mục đã nhận" @@ -2211,88 +2351,93 @@ msgstr "Hàng đã được nhận theo đơn đặt mua" msgid "Items have been received against a return order" msgstr "Hàng đã nhận theo đơn hàng trả lại" -#: common/serializers.py:145 +#: common/serializers.py:149 msgid "Indicates if the setting is overridden by an environment variable" msgstr "" -#: common/serializers.py:147 +#: common/serializers.py:151 msgid "Override" msgstr "" -#: common/serializers.py:498 +#: common/serializers.py:502 msgid "Is Running" msgstr "Đang chạy" -#: common/serializers.py:504 +#: common/serializers.py:508 msgid "Pending Tasks" msgstr "Công việc chờ xử lý" -#: common/serializers.py:510 +#: common/serializers.py:514 msgid "Scheduled Tasks" msgstr "Tác vụ theo lịch" -#: common/serializers.py:516 +#: common/serializers.py:520 msgid "Failed Tasks" msgstr "Tác vụ thất bại" -#: common/serializers.py:531 +#: common/serializers.py:535 msgid "Task ID" msgstr "ID tác vụ" -#: common/serializers.py:531 +#: common/serializers.py:535 msgid "Unique task ID" msgstr "ID tác vụ duy nhất" -#: common/serializers.py:533 +#: common/serializers.py:537 msgid "Lock" msgstr "Khoá" -#: common/serializers.py:533 +#: common/serializers.py:537 msgid "Lock time" msgstr "Thời gian khóa" -#: common/serializers.py:535 +#: common/serializers.py:539 msgid "Task name" msgstr "Tên công việc" -#: common/serializers.py:537 +#: common/serializers.py:541 msgid "Function" msgstr "Chức năng" -#: common/serializers.py:537 +#: common/serializers.py:541 msgid "Function name" msgstr "Tên chức năng" -#: common/serializers.py:539 +#: common/serializers.py:543 msgid "Arguments" msgstr "Đối số" -#: common/serializers.py:539 +#: common/serializers.py:543 msgid "Task arguments" msgstr "Đối số công việc" -#: common/serializers.py:542 +#: common/serializers.py:546 msgid "Keyword Arguments" msgstr "Đối số từ khóa" -#: common/serializers.py:542 +#: common/serializers.py:546 msgid "Task keyword arguments" msgstr "Đối số từ khóa công việc" -#: common/serializers.py:652 +#: common/serializers.py:656 msgid "Filename" msgstr "Tên tập tin" -#: common/serializers.py:659 importer/models.py:89 report/api.py:41 +#: common/serializers.py:663 common/serializers.py:730 +#: common/serializers.py:805 importer/models.py:89 report/api.py:41 #: report/models.py:293 report/serializers.py:52 msgid "Model Type" msgstr "" -#: common/serializers.py:687 +#: common/serializers.py:691 msgid "User does not have permission to create or edit attachments for this model" msgstr "" -#: common/serializers.py:731 common/serializers.py:834 +#: common/serializers.py:786 +msgid "User does not have permission to create or edit parameters for this model" +msgstr "" + +#: common/serializers.py:850 common/serializers.py:953 msgid "Selection list is locked" msgstr "" @@ -2368,7 +2513,7 @@ msgstr "Cấm hiển thị `giới thiệu`" msgid "Show the `about` modal only to superusers" msgstr "Chỉ hiển thị cửa sổ `giới thiệu` với siêu người dùng" -#: common/setting/system.py:224 company/models.py:144 company/models.py:145 +#: common/setting/system.py:224 company/models.py:145 company/models.py:146 msgid "Company name" msgstr "Tên công ty" @@ -2411,8 +2556,8 @@ msgstr "Mức độ thường xuyên để cập nhật tỉ giá hối đoái ( #: common/setting/system.py:253 common/setting/system.py:293 #: common/setting/system.py:306 common/setting/system.py:314 #: common/setting/system.py:321 common/setting/system.py:330 -#: common/setting/system.py:339 common/setting/system.py:588 -#: common/setting/system.py:616 common/setting/system.py:707 +#: common/setting/system.py:339 common/setting/system.py:580 +#: common/setting/system.py:608 common/setting/system.py:707 #: common/setting/system.py:1103 common/setting/system.py:1119 msgid "days" msgstr "ngày" @@ -2657,12 +2802,6 @@ msgstr "Sao chéo mẫu tham số danh mục" msgid "Copy category parameter templates when creating a part" msgstr "Sao chéo mẫu tham số danh mục khi tạo 1 sản phẩm" -#: common/setting/system.py:450 part/models.py:4054 report/models.py:373 -#: report/models.py:669 report/serializers.py:94 report/serializers.py:135 -#: stock/serializers.py:234 -msgid "Template" -msgstr "Mẫu" - #: common/setting/system.py:451 msgid "Parts are templates by default" msgstr "Sản phẩm là mẫu bởi mặc định" @@ -2671,8 +2810,8 @@ msgstr "Sản phẩm là mẫu bởi mặc định" msgid "Parts can be assembled from other components by default" msgstr "Sản phẩm có thể lắp giáp từ thành phần khác theo mặc định" -#: common/setting/system.py:462 part/models.py:1208 part/serializers.py:1734 -#: part/serializers.py:1741 +#: common/setting/system.py:462 part/models.py:1296 part/serializers.py:1599 +#: part/serializers.py:1606 msgid "Component" msgstr "Thành phần" @@ -2680,7 +2819,7 @@ msgstr "Thành phần" msgid "Parts can be used as sub-components by default" msgstr "Sản phẩm có thể được sử dụng mặc định như thành phần phụ" -#: common/setting/system.py:468 part/models.py:1226 +#: common/setting/system.py:468 part/models.py:1314 msgid "Purchaseable" msgstr "Có thể mua" @@ -2688,7 +2827,7 @@ msgstr "Có thể mua" msgid "Parts are purchaseable by default" msgstr "Sản phẩm mặc định có thể mua được" -#: common/setting/system.py:474 part/models.py:1232 stock/api.py:643 +#: common/setting/system.py:474 part/models.py:1320 stock/api.py:643 msgid "Salable" msgstr "Có thể bán" @@ -2700,7 +2839,7 @@ msgstr "Sản phẩm mặc định có thể bán được" msgid "Parts are trackable by default" msgstr "Sản phẩm mặc định có thể theo dõi được" -#: common/setting/system.py:486 part/models.py:1248 +#: common/setting/system.py:486 part/models.py:1336 msgid "Virtual" msgstr "Ảo" @@ -2749,158 +2888,158 @@ msgid "Part category default icon (empty means no icon)" msgstr "Biểu tượng mặc định của danh mục sản phẩm (để trống nghĩa là không có biểu tượng)" #: common/setting/system.py:525 -msgid "Enforce Parameter Units" -msgstr "Bắt buộc đơn vị tham số" - -#: common/setting/system.py:527 -msgid "If units are provided, parameter values must match the specified units" -msgstr "Nếu đơn vị được cung cấp, giá trị tham số phải phù hợp với các đơn vị xác định" - -#: common/setting/system.py:533 msgid "Minimum Pricing Decimal Places" msgstr "Vị trí phần thập phân giá bán tối thiểu" -#: common/setting/system.py:535 +#: common/setting/system.py:527 msgid "Minimum number of decimal places to display when rendering pricing data" msgstr "Số vị trí thập phân tối thiểu cần hiển thị khi tạo dữ liệu giá" -#: common/setting/system.py:546 +#: common/setting/system.py:538 msgid "Maximum Pricing Decimal Places" msgstr "Vị trí phần thập phân giá bán tối đa" -#: common/setting/system.py:548 +#: common/setting/system.py:540 msgid "Maximum number of decimal places to display when rendering pricing data" msgstr "Số vị trí thập phân tối đa cần hiển thị khi tạo dữ liệu giá" -#: common/setting/system.py:559 +#: common/setting/system.py:551 msgid "Use Supplier Pricing" msgstr "Sử dụng giá bán nhà cung cấp" -#: common/setting/system.py:561 +#: common/setting/system.py:553 msgid "Include supplier price breaks in overall pricing calculations" msgstr "Bao gồm giá phá vỡ cả nhà cung cấp trong tính toán giá tổng thể" -#: common/setting/system.py:567 +#: common/setting/system.py:559 msgid "Purchase History Override" msgstr "Ghi đè lịch sử mua hàng" -#: common/setting/system.py:569 +#: common/setting/system.py:561 msgid "Historical purchase order pricing overrides supplier price breaks" msgstr "Giá đơn hàng đặt mua trước đó ghi đè giá phá vỡ của nhà cung cấp" -#: common/setting/system.py:575 +#: common/setting/system.py:567 msgid "Use Stock Item Pricing" msgstr "Sử dụng giá hàng hóa trong kho" -#: common/setting/system.py:577 +#: common/setting/system.py:569 msgid "Use pricing from manually entered stock data for pricing calculations" msgstr "Dùng giá bán từ dữ liệu kho nhập vào thủ công đối với bộ tính toán giá bán" -#: common/setting/system.py:583 +#: common/setting/system.py:575 msgid "Stock Item Pricing Age" msgstr "Tuổi giá kho hàng" -#: common/setting/system.py:585 +#: common/setting/system.py:577 msgid "Exclude stock items older than this number of days from pricing calculations" msgstr "Loại trừ hàng hóa trong kho cũ hơn số ngày ngày từ bảng tính giá bán" -#: common/setting/system.py:592 +#: common/setting/system.py:584 msgid "Use Variant Pricing" msgstr "Sử dụng giá biến thể" -#: common/setting/system.py:593 +#: common/setting/system.py:585 msgid "Include variant pricing in overall pricing calculations" msgstr "Bao gồm giá biến thể trong bộ tính toán giá tổng thể" -#: common/setting/system.py:598 +#: common/setting/system.py:590 msgid "Active Variants Only" msgstr "Chỉ các biến thể hoạt động" -#: common/setting/system.py:600 +#: common/setting/system.py:592 msgid "Only use active variant parts for calculating variant pricing" msgstr "Chỉ sử dụng sản phẩm biến thể hoạt động để tính toán giá bán biến thể" -#: common/setting/system.py:606 +#: common/setting/system.py:598 msgid "Auto Update Pricing" msgstr "" -#: common/setting/system.py:608 +#: common/setting/system.py:600 msgid "Automatically update part pricing when internal data changes" msgstr "" -#: common/setting/system.py:614 +#: common/setting/system.py:606 msgid "Pricing Rebuild Interval" msgstr "Tần suất tạo lại giá" -#: common/setting/system.py:615 +#: common/setting/system.py:607 msgid "Number of days before part pricing is automatically updated" msgstr "Số ngày trước khi giá sản phẩm được tự động cập nhật" -#: common/setting/system.py:621 +#: common/setting/system.py:613 msgid "Internal Prices" msgstr "Giá nội bộ" -#: common/setting/system.py:622 +#: common/setting/system.py:614 msgid "Enable internal prices for parts" msgstr "Bật giá nội bộ cho sản phẩm" -#: common/setting/system.py:627 +#: common/setting/system.py:619 msgid "Internal Price Override" msgstr "Ghi đè giá nội bộ" -#: common/setting/system.py:629 +#: common/setting/system.py:621 msgid "If available, internal prices override price range calculations" msgstr "Nếu khả dụng, giá nội bộ ghi đè tính toán khoảng giá" -#: common/setting/system.py:635 +#: common/setting/system.py:627 msgid "Enable label printing" msgstr "Bật in tem nhãn" -#: common/setting/system.py:636 +#: common/setting/system.py:628 msgid "Enable label printing from the web interface" msgstr "Bật chức năng in tem nhãn từ giao diện web" -#: common/setting/system.py:641 +#: common/setting/system.py:633 msgid "Label Image DPI" msgstr "DPI hỉnh ảnh tem nhãn" -#: common/setting/system.py:643 +#: common/setting/system.py:635 msgid "DPI resolution when generating image files to supply to label printing plugins" msgstr "Độ phân giải DPI khi tạo tệp hình ảnh để cung cấp cho plugin in ấn tem nhãn" -#: common/setting/system.py:649 +#: common/setting/system.py:641 msgid "Enable Reports" msgstr "Bật báo cáo" -#: common/setting/system.py:650 +#: common/setting/system.py:642 msgid "Enable generation of reports" msgstr "Cho phép tạo báo cáo" -#: common/setting/system.py:655 +#: common/setting/system.py:647 msgid "Debug Mode" msgstr "Chế độ gỡ lỗi" -#: common/setting/system.py:656 +#: common/setting/system.py:648 msgid "Generate reports in debug mode (HTML output)" msgstr "Tạo báo cáo trong chế độ gỡ lỗi (đầu ra HTML)" -#: common/setting/system.py:661 +#: common/setting/system.py:653 msgid "Log Report Errors" msgstr "" -#: common/setting/system.py:662 +#: common/setting/system.py:654 msgid "Log errors which occur when generating reports" msgstr "" -#: common/setting/system.py:667 plugin/builtin/labels/label_sheet.py:29 +#: common/setting/system.py:659 plugin/builtin/labels/label_sheet.py:29 #: report/models.py:381 msgid "Page Size" msgstr "Khổ giấy" -#: common/setting/system.py:668 +#: common/setting/system.py:660 msgid "Default page size for PDF reports" msgstr "Kích thước trang mặc định cho báo cáo PDF" +#: common/setting/system.py:665 +msgid "Enforce Parameter Units" +msgstr "Bắt buộc đơn vị tham số" + +#: common/setting/system.py:667 +msgid "If units are provided, parameter values must match the specified units" +msgstr "Nếu đơn vị được cung cấp, giá trị tham số phải phù hợp với các đơn vị xác định" + #: common/setting/system.py:673 msgid "Globally Unique Serials" msgstr "Sê ri toàn cục duy nhất" @@ -3456,688 +3595,677 @@ msgid "Display PDF reports in the browser, instead of downloading as a file" msgstr "Hiện báo cáo PDF trong trình duyệt, thay vì tải về dạng tệp tin" #: common/setting/user.py:45 +msgid "Barcode Scanner in Form Fields" +msgstr "" + +#: common/setting/user.py:46 +msgid "Allow barcode scanner input in form fields" +msgstr "" + +#: common/setting/user.py:51 msgid "Search Parts" msgstr "Tìm sản phẩm" -#: common/setting/user.py:46 +#: common/setting/user.py:52 msgid "Display parts in search preview window" msgstr "Hiện hàng hóa trong cửa sổ xem trước tìm kiếm" -#: common/setting/user.py:51 +#: common/setting/user.py:57 msgid "Search Supplier Parts" msgstr "Tìm sản phẩm nhà cung cấp" -#: common/setting/user.py:52 +#: common/setting/user.py:58 msgid "Display supplier parts in search preview window" msgstr "Hiện sản phẩm nhà cung cấp trong cửa sổ xem trước tìm kiếm" -#: common/setting/user.py:57 +#: common/setting/user.py:63 msgid "Search Manufacturer Parts" msgstr "Tìm sản phẩm nhà sản xuất" -#: common/setting/user.py:58 +#: common/setting/user.py:64 msgid "Display manufacturer parts in search preview window" msgstr "Hiện sản phẩm nhà sản xuất trong cửa sổ xem trước tìm kiếm" -#: common/setting/user.py:63 +#: common/setting/user.py:69 msgid "Hide Inactive Parts" msgstr "Ẩn sản phẩm ngừng hoạt động" -#: common/setting/user.py:64 +#: common/setting/user.py:70 msgid "Excluded inactive parts from search preview window" msgstr "Loại trừ sản phẩm ngưng hoạt động trong cửa sổ xem trước tìm kiếm" -#: common/setting/user.py:69 +#: common/setting/user.py:75 msgid "Search Categories" msgstr "Tìm kiếm danh mục" -#: common/setting/user.py:70 +#: common/setting/user.py:76 msgid "Display part categories in search preview window" msgstr "Hiện danh mục sản phẩm trong cửa sổ xem trước tìm kiếm" -#: common/setting/user.py:75 +#: common/setting/user.py:81 msgid "Search Stock" msgstr "Tìm kiếm kho" -#: common/setting/user.py:76 +#: common/setting/user.py:82 msgid "Display stock items in search preview window" msgstr "Hiện hàng hóa ở kho trong cửa sổ xem trước tìm kiếm" -#: common/setting/user.py:81 +#: common/setting/user.py:87 msgid "Hide Unavailable Stock Items" msgstr "Ẩn hàng hóa trong kho không có sẵn" -#: common/setting/user.py:83 +#: common/setting/user.py:89 msgid "Exclude stock items which are not available from the search preview window" msgstr "Không bao gồm hàng hóa trong kho mà không sẵn sàng từ màn hình xem trước tìm kiếm" -#: common/setting/user.py:89 +#: common/setting/user.py:95 msgid "Search Locations" msgstr "Tìm kiếm vị trí" -#: common/setting/user.py:90 +#: common/setting/user.py:96 msgid "Display stock locations in search preview window" msgstr "Hiện vị trí kho hàng trong cửa sổ xem trước tìm kiếm" -#: common/setting/user.py:95 +#: common/setting/user.py:101 msgid "Search Companies" msgstr "Tìm kiếm công ty" -#: common/setting/user.py:96 +#: common/setting/user.py:102 msgid "Display companies in search preview window" msgstr "Hiện công ty trong cửa sổ xem trước tìm kiếm" -#: common/setting/user.py:101 +#: common/setting/user.py:107 msgid "Search Build Orders" msgstr "Tìm kiếm đặt hàng xây dựng" -#: common/setting/user.py:102 +#: common/setting/user.py:108 msgid "Display build orders in search preview window" msgstr "Hiện đơn đặt xây dựng trong cửa sổ xem trước tìm kiếm" -#: common/setting/user.py:107 +#: common/setting/user.py:113 msgid "Search Purchase Orders" msgstr "Tìm kiếm đơn đặt mua" -#: common/setting/user.py:108 +#: common/setting/user.py:114 msgid "Display purchase orders in search preview window" msgstr "Hiện đơn đặt mua trong cửa sổ xem trước tìm kiếm" -#: common/setting/user.py:113 +#: common/setting/user.py:119 msgid "Exclude Inactive Purchase Orders" msgstr "Loại trừ đơn đặt mua không hoạt động" -#: common/setting/user.py:114 +#: common/setting/user.py:120 msgid "Exclude inactive purchase orders from search preview window" msgstr "Loại trừ đơn đặt mua không hoạt động ra khỏi cửa sổ xem trước tìm kiếm" -#: common/setting/user.py:119 +#: common/setting/user.py:125 msgid "Search Sales Orders" msgstr "Tìm đơn đặt hàng người mua" -#: common/setting/user.py:120 +#: common/setting/user.py:126 msgid "Display sales orders in search preview window" msgstr "Hiện đơn đặt hàng người mua trong cửa sổ xem trước tìm kiếm" -#: common/setting/user.py:125 +#: common/setting/user.py:131 msgid "Exclude Inactive Sales Orders" msgstr "Loại trừ đơn đặt hàng người mua không hoạt động" -#: common/setting/user.py:126 +#: common/setting/user.py:132 msgid "Exclude inactive sales orders from search preview window" msgstr "Không bao gồm đơn đặt hàng người mua không hoạt động trong cửa sổ xem trước tìm kiếm" -#: common/setting/user.py:131 +#: common/setting/user.py:137 msgid "Search Sales Order Shipments" msgstr "" -#: common/setting/user.py:132 +#: common/setting/user.py:138 msgid "Display sales order shipments in search preview window" msgstr "" -#: common/setting/user.py:137 +#: common/setting/user.py:143 msgid "Search Return Orders" msgstr "Tìm kiếm đơn hàng trả lại" -#: common/setting/user.py:138 +#: common/setting/user.py:144 msgid "Display return orders in search preview window" msgstr "Hiện đơn hàng trả lại trong cửa sổ xem trước tìm kiếm" -#: common/setting/user.py:143 +#: common/setting/user.py:149 msgid "Exclude Inactive Return Orders" msgstr "Loại trừ đơn hàng trả lại không hoạt động" -#: common/setting/user.py:144 +#: common/setting/user.py:150 msgid "Exclude inactive return orders from search preview window" msgstr "Không bao gồm đơn hàng trả lại không hoạt động trong cửa sổ xem trước tìm kiếm" -#: common/setting/user.py:149 +#: common/setting/user.py:155 msgid "Search Preview Results" msgstr "Kết quả xem trước tìm kiếm" -#: common/setting/user.py:151 +#: common/setting/user.py:157 msgid "Number of results to show in each section of the search preview window" msgstr "Số kết quả cần hiển thị trong từng phần của cửa sổ xem trước tìm kiếm" -#: common/setting/user.py:157 +#: common/setting/user.py:163 msgid "Regex Search" msgstr "Tìm kiếm biểu thức" -#: common/setting/user.py:158 +#: common/setting/user.py:164 msgid "Enable regular expressions in search queries" msgstr "Bật tìm kiếm biểu thức chính quy trong câu truy vấn tìm kiếm" -#: common/setting/user.py:163 +#: common/setting/user.py:169 msgid "Whole Word Search" msgstr "Tìm phù hợp toàn bộ chữ" -#: common/setting/user.py:164 +#: common/setting/user.py:170 msgid "Search queries return results for whole word matches" msgstr "Truy vấn tìm trả về kết quả phù hợp toàn bộ chữ" -#: common/setting/user.py:169 +#: common/setting/user.py:175 msgid "Search Notes" msgstr "" -#: common/setting/user.py:171 +#: common/setting/user.py:177 msgid "Search queries return results for matches from the item's notes" msgstr "" -#: common/setting/user.py:177 +#: common/setting/user.py:183 msgid "Escape Key Closes Forms" msgstr "Phím escape để đóng mẫu biểu" -#: common/setting/user.py:178 +#: common/setting/user.py:184 msgid "Use the escape key to close modal forms" msgstr "Sử dụng phím escape để đóng mẫu biểu hộp thoại" -#: common/setting/user.py:183 +#: common/setting/user.py:189 msgid "Fixed Navbar" msgstr "Cố định điều hướng" -#: common/setting/user.py:184 +#: common/setting/user.py:190 msgid "The navbar position is fixed to the top of the screen" msgstr "Vị trí thành điều hướng là cố định trên cùng màn hình" -#: common/setting/user.py:189 +#: common/setting/user.py:195 msgid "Fixed Table Headers" msgstr "" -#: common/setting/user.py:190 +#: common/setting/user.py:196 msgid "Table headers are fixed to the top of the table" msgstr "" -#: common/setting/user.py:195 +#: common/setting/user.py:201 msgid "Show Spotlight" msgstr "" -#: common/setting/user.py:196 +#: common/setting/user.py:202 msgid "Enable spotlight navigation functionality" msgstr "" -#: common/setting/user.py:201 +#: common/setting/user.py:207 msgid "Navigation Icons" msgstr "" -#: common/setting/user.py:202 +#: common/setting/user.py:208 msgid "Display icons in the navigation bar" msgstr "" -#: common/setting/user.py:207 +#: common/setting/user.py:213 msgid "Date Format" msgstr "Định dạng ngày" -#: common/setting/user.py:208 +#: common/setting/user.py:214 msgid "Preferred format for displaying dates" msgstr "Định dạng ưa chuộng khi hiển thị ngày" -#: common/setting/user.py:221 +#: common/setting/user.py:227 msgid "Show Stock History" msgstr "" -#: common/setting/user.py:222 +#: common/setting/user.py:228 msgid "Display stock history information in the part detail page" msgstr "" -#: common/setting/user.py:227 +#: common/setting/user.py:233 msgid "Show Last Breadcrumb" msgstr "" -#: common/setting/user.py:228 +#: common/setting/user.py:234 msgid "Show the current page in breadcrumbs" msgstr "" -#: common/setting/user.py:233 +#: common/setting/user.py:239 msgid "Show full stock location in tables" msgstr "" -#: common/setting/user.py:235 +#: common/setting/user.py:241 msgid "Disabled: The full location path is displayed as a hover tooltip. Enabled: The full location path is displayed as plain text." msgstr "" -#: common/setting/user.py:241 +#: common/setting/user.py:247 msgid "Show full part categories in tables" msgstr "" -#: common/setting/user.py:243 +#: common/setting/user.py:249 msgid "Disabled: The full category path is displayed as a hover tooltip. Enabled: The full category path is displayed as plain text." msgstr "" -#: common/setting/user.py:249 +#: common/setting/user.py:255 msgid "Receive error reports" msgstr "Nhận báo cáo lỗi" -#: common/setting/user.py:250 +#: common/setting/user.py:256 msgid "Receive notifications for system errors" msgstr "Nhận thông báo khi có lỗi hệ thống" -#: common/setting/user.py:255 +#: common/setting/user.py:261 msgid "Last used printing machines" msgstr "" -#: common/setting/user.py:256 +#: common/setting/user.py:262 msgid "Save the last used printing machines for a user" msgstr "" -#: common/validators.py:34 +#: common/validators.py:38 +msgid "All models" +msgstr "" + +#: common/validators.py:63 msgid "No attachment model type provided" msgstr "" -#: common/validators.py:40 +#: common/validators.py:69 msgid "Invalid attachment model type" msgstr "" -#: common/validators.py:81 +#: common/validators.py:110 msgid "Minimum places cannot be greater than maximum places" msgstr "" -#: common/validators.py:93 +#: common/validators.py:122 msgid "Maximum places cannot be less than minimum places" msgstr "" -#: common/validators.py:104 +#: common/validators.py:133 msgid "An empty domain is not allowed." msgstr "Tên miền rỗng là không được phép." -#: common/validators.py:106 +#: common/validators.py:135 #, python-brace-format msgid "Invalid domain name: {domain}" msgstr "Tên miền không hợp lệ: {domain}" -#: common/validators.py:122 +#: common/validators.py:151 msgid "Value must be uppercase" msgstr "" -#: common/validators.py:128 +#: common/validators.py:157 msgid "Value must be a valid variable identifier" msgstr "" -#: company/api.py:147 +#: company/api.py:141 msgid "Part is Active" msgstr "" -#: company/api.py:151 +#: company/api.py:145 msgid "Manufacturer is Active" msgstr "" -#: company/api.py:286 +#: company/api.py:246 msgid "Supplier Part is Active" msgstr "" -#: company/api.py:290 +#: company/api.py:250 msgid "Internal Part is Active" msgstr "" -#: company/api.py:295 +#: company/api.py:255 msgid "Supplier is Active" msgstr "" -#: company/api.py:307 company/models.py:520 company/serializers.py:457 -#: part/serializers.py:566 +#: company/api.py:267 company/models.py:522 company/serializers.py:502 +#: part/serializers.py:477 msgid "Manufacturer" msgstr "Nhà sản xuất" -#: company/api.py:314 company/models.py:121 company/models.py:392 +#: company/api.py:274 company/models.py:122 company/models.py:393 #: stock/api.py:900 msgid "Company" msgstr "Doanh nghiêp" -#: company/api.py:324 +#: company/api.py:284 msgid "Has Stock" msgstr "" -#: company/models.py:122 +#: company/models.py:123 msgid "Companies" msgstr "Doanh nghiệp" -#: company/models.py:150 +#: company/models.py:151 msgid "Company description" msgstr "Mô tả công ty" -#: company/models.py:151 +#: company/models.py:152 msgid "Description of the company" msgstr "Mô tả của công ty" -#: company/models.py:157 +#: company/models.py:158 msgid "Website" msgstr "Trang web" -#: company/models.py:158 +#: company/models.py:159 msgid "Company website URL" msgstr "URL trang web của công ty" -#: company/models.py:164 +#: company/models.py:165 msgid "Phone number" msgstr "Số điện thoại" -#: company/models.py:166 +#: company/models.py:167 msgid "Contact phone number" msgstr "Số điện thoại liên hệ" -#: company/models.py:173 +#: company/models.py:174 msgid "Contact email address" msgstr "Địa chỉ email liên hệ" -#: company/models.py:178 company/models.py:296 order/models.py:513 +#: company/models.py:179 company/models.py:297 order/models.py:514 #: users/models.py:561 msgid "Contact" msgstr "Liên hệ" -#: company/models.py:180 +#: company/models.py:181 msgid "Point of contact" msgstr "Đầu mối liên hệ" -#: company/models.py:186 +#: company/models.py:187 msgid "Link to external company information" msgstr "Liên kết đến thông tin công ty ngoài" -#: company/models.py:191 +#: company/models.py:192 msgid "Is this company active?" msgstr "" -#: company/models.py:196 +#: company/models.py:197 msgid "Is customer" msgstr "" -#: company/models.py:197 +#: company/models.py:198 msgid "Do you sell items to this company?" msgstr "Bạn có bán hàng cho công ty này?" -#: company/models.py:202 +#: company/models.py:203 msgid "Is supplier" msgstr "" -#: company/models.py:203 +#: company/models.py:204 msgid "Do you purchase items from this company?" msgstr "Bạn có mua hàng từ công ty này?" -#: company/models.py:208 +#: company/models.py:209 msgid "Is manufacturer" msgstr "" -#: company/models.py:209 +#: company/models.py:210 msgid "Does this company manufacture parts?" msgstr "Công ty này có sản xuất sản phẩm?" -#: company/models.py:217 +#: company/models.py:218 msgid "Default currency used for this company" msgstr "Tiền tệ mặc định dùng cho công ty này" -#: company/models.py:224 +#: company/models.py:225 msgid "Tax ID" msgstr "" -#: company/models.py:225 +#: company/models.py:226 msgid "Company Tax ID" msgstr "" -#: company/models.py:335 order/models.py:523 order/models.py:2288 +#: company/models.py:336 order/models.py:524 order/models.py:2289 msgid "Address" msgstr "Địa chỉ" -#: company/models.py:336 +#: company/models.py:337 msgid "Addresses" msgstr "Địa chỉ" -#: company/models.py:393 +#: company/models.py:394 msgid "Select company" msgstr "Chọn doanh nghiệp" -#: company/models.py:398 +#: company/models.py:399 msgid "Address title" msgstr "Tiêu đề địa chỉ" -#: company/models.py:399 +#: company/models.py:400 msgid "Title describing the address entry" msgstr "Tiêu đề mô tả mục địa chỉ" -#: company/models.py:405 +#: company/models.py:406 msgid "Primary address" msgstr "Địa chỉ chính" -#: company/models.py:406 +#: company/models.py:407 msgid "Set as primary address" msgstr "Đặt làm địa chỉ chính" -#: company/models.py:411 +#: company/models.py:412 msgid "Line 1" msgstr "Dòng 1" -#: company/models.py:412 +#: company/models.py:413 msgid "Address line 1" msgstr "Địa chỉ dòng 1" -#: company/models.py:418 +#: company/models.py:419 msgid "Line 2" msgstr "Dòng 2" -#: company/models.py:419 +#: company/models.py:420 msgid "Address line 2" msgstr "Địa chỉ dòng 2" -#: company/models.py:425 company/models.py:426 +#: company/models.py:426 company/models.py:427 msgid "Postal code" msgstr "Mã bưu chính" -#: company/models.py:432 +#: company/models.py:433 msgid "City/Region" msgstr "Thành phố/Vùng" -#: company/models.py:433 +#: company/models.py:434 msgid "Postal code city/region" msgstr "Mã bưu chính thành phố/vùng" -#: company/models.py:439 +#: company/models.py:440 msgid "State/Province" msgstr "Bang/Tỉnh" -#: company/models.py:440 +#: company/models.py:441 msgid "State or province" msgstr "Bang hay tỉnh" -#: company/models.py:446 +#: company/models.py:447 msgid "Country" msgstr "Quốc gia" -#: company/models.py:447 +#: company/models.py:448 msgid "Address country" msgstr "Địa chỉ quốc gia" -#: company/models.py:453 +#: company/models.py:454 msgid "Courier shipping notes" msgstr "Ghi chú vận chuyển" -#: company/models.py:454 +#: company/models.py:455 msgid "Notes for shipping courier" msgstr "Ghi chú dành cho chuyển phát nhanh" -#: company/models.py:460 +#: company/models.py:461 msgid "Internal shipping notes" msgstr "Ghi chú nội bọ chuyển phát nhanh" -#: company/models.py:461 +#: company/models.py:462 msgid "Shipping notes for internal use" msgstr "Ghi chú nội bộ sử dụng cho chuyển phát nhanh" -#: company/models.py:468 +#: company/models.py:469 msgid "Link to address information (external)" msgstr "Liên kết thông tin địa chỉ (bên ngoài)" -#: company/models.py:492 company/models.py:609 company/models.py:832 -#: company/serializers.py:471 stock/api.py:561 +#: company/models.py:494 company/models.py:786 company/serializers.py:516 +#: stock/api.py:561 msgid "Manufacturer Part" msgstr "Sản phẩm nhà sản xuất" -#: company/models.py:509 company/models.py:800 stock/models.py:1025 +#: company/models.py:511 company/models.py:754 stock/models.py:1025 #: stock/serializers.py:407 msgid "Base Part" msgstr "Sản phẩm cơ bản" -#: company/models.py:511 company/models.py:802 +#: company/models.py:513 company/models.py:756 msgid "Select part" msgstr "Chọn sản phẩm" -#: company/models.py:521 +#: company/models.py:523 msgid "Select manufacturer" msgstr "Chọn nhà sản xuất" -#: company/models.py:527 company/serializers.py:479 order/serializers.py:734 -#: part/serializers.py:576 +#: company/models.py:529 company/serializers.py:524 order/serializers.py:745 +#: part/serializers.py:487 msgid "MPN" msgstr "" -#: company/models.py:528 stock/serializers.py:572 +#: company/models.py:530 stock/serializers.py:572 msgid "Manufacturer Part Number" msgstr "Mã số nhà sản xuất" -#: company/models.py:535 +#: company/models.py:537 msgid "URL for external manufacturer part link" msgstr "URL cho liên kết sản phẩm của nhà sản xuất bên ngoài" -#: company/models.py:544 +#: company/models.py:546 msgid "Manufacturer part description" msgstr "Mô tả sản phẩm của nhà sản xuất" -#: company/models.py:597 -msgid "Manufacturer Part Parameter" -msgstr "" - -#: company/models.py:616 -msgid "Parameter name" -msgstr "Tên tham số" - -#: company/models.py:623 -msgid "Parameter value" -msgstr "Giá trị tham số" - -#: company/models.py:630 part/models.py:1195 part/models.py:3857 -msgid "Units" -msgstr "Đơn vị" - -#: company/models.py:631 -msgid "Parameter units" -msgstr "Đơn vị tham số" - -#: company/models.py:740 +#: company/models.py:694 msgid "Pack units must be compatible with the base part units" msgstr "Đơn vị đóng gói phải tương thích với đơn vị sản phẩm cơ bản" -#: company/models.py:747 +#: company/models.py:701 msgid "Pack units must be greater than zero" msgstr "Đơn vị đóng gói phải lớn hơn không" -#: company/models.py:761 +#: company/models.py:715 msgid "Linked manufacturer part must reference the same base part" msgstr "Sản phẩm nhà sản xuất đã liên kết phải tham chiếu với sản phẩm cơ bản tương tự" -#: company/models.py:810 company/serializers.py:449 company/serializers.py:467 -#: order/models.py:639 part/serializers.py:550 +#: company/models.py:764 company/serializers.py:494 company/serializers.py:512 +#: order/models.py:640 part/serializers.py:461 #: plugin/builtin/suppliers/digikey.py:26 plugin/builtin/suppliers/lcsc.py:27 #: plugin/builtin/suppliers/mouser.py:25 plugin/builtin/suppliers/tme.py:27 #: stock/api.py:567 templates/email/overdue_purchase_order.html:16 msgid "Supplier" msgstr "Nhà cung cấp" -#: company/models.py:811 +#: company/models.py:765 msgid "Select supplier" msgstr "Chọn nhà cung cấp" -#: company/models.py:817 part/serializers.py:561 +#: company/models.py:771 part/serializers.py:472 msgid "Supplier stock keeping unit" msgstr "Đơn vị quản lý kho nhà cung cấp" -#: company/models.py:823 +#: company/models.py:777 msgid "Is this supplier part active?" msgstr "" -#: company/models.py:833 +#: company/models.py:787 msgid "Select manufacturer part" msgstr "Chọn sản phẩm của nhà sản xuất" -#: company/models.py:840 +#: company/models.py:794 msgid "URL for external supplier part link" msgstr "URL cho liên kết sản phẩm của nhà cung cấp bên ngoài" -#: company/models.py:849 +#: company/models.py:803 msgid "Supplier part description" msgstr "Mô tả sản phẩm nhà cung cấp" -#: company/models.py:856 order/serializers.py:883 order/serializers.py:2047 -#: part/models.py:4070 part/models.py:4450 part/models.py:4819 -#: report/templates/report/inventree_bill_of_materials_report.html:140 -#: report/templates/report/inventree_purchase_order_report.html:39 -#: report/templates/report/inventree_return_order_report.html:27 -#: report/templates/report/inventree_sales_order_report.html:32 -#: report/templates/report/inventree_stock_location_report.html:105 -#: stock/serializers.py:813 -msgid "Note" -msgstr "Ghi chú" - -#: company/models.py:865 part/models.py:2250 +#: company/models.py:819 part/models.py:2338 msgid "base cost" msgstr "chi phí cơ sở" -#: company/models.py:866 part/models.py:2251 +#: company/models.py:820 part/models.py:2339 msgid "Minimum charge (e.g. stocking fee)" msgstr "Thu phí tối thiểu (vd: phí kho bãi)" -#: company/models.py:873 order/serializers.py:875 stock/models.py:1056 +#: company/models.py:827 order/serializers.py:886 stock/models.py:1056 #: stock/serializers.py:1606 msgid "Packaging" msgstr "Đóng gói" -#: company/models.py:874 +#: company/models.py:828 msgid "Part packaging" msgstr "Đóng gói sản phẩm" -#: company/models.py:879 +#: company/models.py:833 msgid "Pack Quantity" msgstr "Số lượng gói" -#: company/models.py:881 +#: company/models.py:835 msgid "Total quantity supplied in a single pack. Leave empty for single items." msgstr "Tổng số lượng được cung cấp trong một gói đơn. Để trống cho các hàng hóa riêng lẻ." -#: company/models.py:900 part/models.py:2257 +#: company/models.py:854 part/models.py:2345 msgid "multiple" msgstr "nhiều" -#: company/models.py:901 +#: company/models.py:855 msgid "Order multiple" msgstr "Đặt hàng nhiều" -#: company/models.py:913 +#: company/models.py:867 msgid "Quantity available from supplier" msgstr "Số lượng có sẵn từ nhà cung cấp" -#: company/models.py:919 +#: company/models.py:873 msgid "Availability Updated" msgstr "Sẵn hàng đã được cập nhật" -#: company/models.py:920 +#: company/models.py:874 msgid "Date of last update of availability data" msgstr "Ngày cập nhật cuối thông tin tồn kho" -#: company/models.py:1048 +#: company/models.py:1002 msgid "Supplier Price Break" msgstr "" -#: company/serializers.py:181 +#: company/serializers.py:184 +msgid "Primary Address" +msgstr "" + +#: company/serializers.py:186 msgid "Return the string representation for the primary address. This property exists for backwards compatibility." msgstr "" -#: company/serializers.py:212 +#: company/serializers.py:218 msgid "Default currency used for this supplier" msgstr "Tiền tệ mặc định được sử dụng cho nhà cung cấp này" -#: company/serializers.py:248 +#: company/serializers.py:260 msgid "Company Name" msgstr "" -#: company/serializers.py:433 part/serializers.py:955 stock/serializers.py:428 +#: company/serializers.py:460 part/serializers.py:840 stock/serializers.py:428 msgid "In Stock" msgstr "Còn hàng" +#: company/serializers.py:477 +msgid "Price Breaks" +msgstr "" + #: data_exporter/mixins.py:325 data_exporter/mixins.py:403 msgid "Error occurred during data export" msgstr "" @@ -4290,7 +4418,7 @@ msgstr "" msgid "Errors" msgstr "" -#: importer/models.py:550 part/serializers.py:1268 +#: importer/models.py:550 part/serializers.py:1133 msgid "Valid" msgstr "Hợp lệ" @@ -4402,7 +4530,7 @@ msgstr "" msgid "Connected" msgstr "" -#: machine/machine_types/label_printer.py:232 order/api.py:1795 +#: machine/machine_types/label_printer.py:232 order/api.py:1800 msgid "Unknown" msgstr "Không rõ" @@ -4530,105 +4658,105 @@ msgstr "" msgid "Maximum value for progress type, required if type=progress" msgstr "" -#: order/api.py:125 +#: order/api.py:130 msgid "Order Reference" msgstr "Tham chiếu đơn đặt" -#: order/api.py:153 order/api.py:1207 +#: order/api.py:158 order/api.py:1212 msgid "Outstanding" msgstr "" -#: order/api.py:169 +#: order/api.py:174 msgid "Has Project Code" msgstr "" -#: order/api.py:183 order/models.py:488 +#: order/api.py:188 order/models.py:489 msgid "Created By" msgstr "Tạo bởi" -#: order/api.py:187 +#: order/api.py:192 msgid "Created Before" msgstr "" -#: order/api.py:191 +#: order/api.py:196 msgid "Created After" msgstr "" -#: order/api.py:195 +#: order/api.py:200 msgid "Has Start Date" msgstr "" -#: order/api.py:203 +#: order/api.py:208 msgid "Start Date Before" msgstr "" -#: order/api.py:207 +#: order/api.py:212 msgid "Start Date After" msgstr "" -#: order/api.py:211 +#: order/api.py:216 msgid "Has Target Date" msgstr "" -#: order/api.py:219 +#: order/api.py:224 msgid "Target Date Before" msgstr "" -#: order/api.py:223 +#: order/api.py:228 msgid "Target Date After" msgstr "" -#: order/api.py:274 +#: order/api.py:279 msgid "Has Pricing" msgstr "" -#: order/api.py:327 order/api.py:812 order/api.py:1490 +#: order/api.py:332 order/api.py:818 order/api.py:1495 msgid "Completed Before" msgstr "" -#: order/api.py:331 order/api.py:816 order/api.py:1494 +#: order/api.py:336 order/api.py:822 order/api.py:1499 msgid "Completed After" msgstr "" -#: order/api.py:337 order/api.py:341 +#: order/api.py:342 order/api.py:346 msgid "External Build Order" msgstr "" -#: order/api.py:526 order/api.py:914 order/api.py:1170 order/models.py:1922 -#: order/models.py:2049 order/models.py:2099 order/models.py:2279 -#: order/models.py:2477 order/models.py:2999 order/models.py:3065 +#: order/api.py:532 order/api.py:919 order/api.py:1175 order/models.py:1923 +#: order/models.py:2050 order/models.py:2100 order/models.py:2280 +#: order/models.py:2478 order/models.py:3000 order/models.py:3066 msgid "Order" msgstr "Đặt hàng" -#: order/api.py:530 order/api.py:982 +#: order/api.py:536 order/api.py:987 msgid "Order Complete" msgstr "" -#: order/api.py:562 order/api.py:566 order/serializers.py:745 +#: order/api.py:568 order/api.py:572 order/serializers.py:756 msgid "Internal Part" msgstr "Sản phẩm nội bộ" -#: order/api.py:584 +#: order/api.py:590 msgid "Order Pending" msgstr "" -#: order/api.py:967 +#: order/api.py:972 msgid "Completed" msgstr "Đã hoàn thành" -#: order/api.py:1223 +#: order/api.py:1228 msgid "Has Shipment" msgstr "" -#: order/api.py:1789 order/models.py:552 order/models.py:1923 -#: order/models.py:2050 +#: order/api.py:1794 order/models.py:553 order/models.py:1924 +#: order/models.py:2051 #: report/templates/report/inventree_purchase_order_report.html:14 #: stock/serializers.py:129 templates/email/overdue_purchase_order.html:15 msgid "Purchase Order" msgstr "Đơn hàng" -#: order/api.py:1791 order/models.py:1251 order/models.py:2100 -#: order/models.py:2280 order/models.py:2478 +#: order/api.py:1796 order/models.py:1252 order/models.py:2101 +#: order/models.py:2281 order/models.py:2479 #: report/templates/report/inventree_build_order_report.html:135 #: report/templates/report/inventree_sales_order_report.html:14 #: report/templates/report/inventree_sales_order_shipment_report.html:15 @@ -4636,8 +4764,8 @@ msgstr "Đơn hàng" msgid "Sales Order" msgstr "Đơn đặt hàng" -#: order/api.py:1793 order/models.py:2649 order/models.py:3000 -#: order/models.py:3066 +#: order/api.py:1798 order/models.py:2650 order/models.py:3001 +#: order/models.py:3067 #: report/templates/report/inventree_return_order_report.html:13 #: templates/email/overdue_return_order.html:15 msgid "Return Order" @@ -4653,722 +4781,722 @@ msgstr "Tổng tiền" msgid "Total price for this order" msgstr "Tổng tiền cho đơn hàng hàng" -#: order/models.py:96 order/serializers.py:77 +#: order/models.py:96 order/serializers.py:78 msgid "Order Currency" msgstr "Tiền tệ đơn đặt hàng" -#: order/models.py:99 order/serializers.py:78 +#: order/models.py:99 order/serializers.py:79 msgid "Currency for this order (leave blank to use company default)" msgstr "Tiền tệ cho đơn đặt này (để trống để sử dụng tiền mặc định)" -#: order/models.py:324 +#: order/models.py:325 msgid "This order is locked and cannot be modified" msgstr "" -#: order/models.py:376 +#: order/models.py:377 msgid "Contact does not match selected company" msgstr "Liên hệ không phù hợp với doanh nghiệp đã chọn" -#: order/models.py:383 +#: order/models.py:384 msgid "Start date must be before target date" msgstr "" -#: order/models.py:390 +#: order/models.py:391 msgid "Address does not match selected company" msgstr "" -#: order/models.py:443 +#: order/models.py:444 msgid "Order description (optional)" msgstr "Mô tả đơn đặt (tùy chọn)" -#: order/models.py:452 order/models.py:1806 +#: order/models.py:453 order/models.py:1807 msgid "Select project code for this order" msgstr "Mã dự án đã chọn cho đơn đặt hàng này" -#: order/models.py:458 order/models.py:1787 order/models.py:2344 +#: order/models.py:459 order/models.py:1788 order/models.py:2345 msgid "Link to external page" msgstr "Liên kết đến trang bên ngoài" -#: order/models.py:465 +#: order/models.py:466 msgid "Start date" msgstr "" -#: order/models.py:466 +#: order/models.py:467 msgid "Scheduled start date for this order" msgstr "" -#: order/models.py:472 order/models.py:1794 order/serializers.py:309 +#: order/models.py:473 order/models.py:1795 order/serializers.py:317 #: report/templates/report/inventree_build_order_report.html:125 msgid "Target Date" msgstr "Ngày mục tiêu" -#: order/models.py:474 +#: order/models.py:475 msgid "Expected date for order delivery. Order will be overdue after this date." msgstr "Ngày mong muốn giao được hàng. Đơn đặt sẽ quá hạn sau ngày này." -#: order/models.py:494 +#: order/models.py:495 msgid "Issue Date" msgstr "Ngày phát hành" -#: order/models.py:495 +#: order/models.py:496 msgid "Date order was issued" msgstr "Ngày đặt hàng đã phát hành" -#: order/models.py:503 +#: order/models.py:504 msgid "User or group responsible for this order" msgstr "Người dùng hoặc nhóm có trách nhiệm với đơn đặt này" -#: order/models.py:514 +#: order/models.py:515 msgid "Point of contact for this order" msgstr "Đầu mối liên hệ của đơn đặt này" -#: order/models.py:524 +#: order/models.py:525 msgid "Company address for this order" msgstr "Địa chỉ công ty cho đơn đặt này" -#: order/models.py:615 order/models.py:1312 +#: order/models.py:616 order/models.py:1313 msgid "Order reference" msgstr "Mã đặt hàng" -#: order/models.py:624 order/models.py:1336 order/models.py:2737 +#: order/models.py:625 order/models.py:1337 order/models.py:2738 #: stock/serializers.py:559 stock/serializers.py:988 users/models.py:542 msgid "Status" msgstr "Trạng thái" -#: order/models.py:625 +#: order/models.py:626 msgid "Purchase order status" msgstr "Trạng thái đơn đặt mua" -#: order/models.py:640 +#: order/models.py:641 msgid "Company from which the items are being ordered" msgstr "Doanh nghiệp từ những hàng hóa đang được đặt mua" -#: order/models.py:651 +#: order/models.py:652 msgid "Supplier Reference" msgstr "Tham chiếu nhà cung cấp" -#: order/models.py:652 +#: order/models.py:653 msgid "Supplier order reference code" msgstr "Mã tham chiếu đơn đặt nhà cung cấp" -#: order/models.py:661 +#: order/models.py:662 msgid "received by" msgstr "nhận bởi" -#: order/models.py:668 order/models.py:2752 +#: order/models.py:669 order/models.py:2753 msgid "Date order was completed" msgstr "Ngày đặt hàng đã được hoàn thiện" -#: order/models.py:677 order/models.py:1981 +#: order/models.py:678 order/models.py:1982 msgid "Destination" msgstr "Đích đến" -#: order/models.py:678 order/models.py:1985 +#: order/models.py:679 order/models.py:1986 msgid "Destination for received items" msgstr "" -#: order/models.py:724 +#: order/models.py:725 msgid "Part supplier must match PO supplier" msgstr "Nhà cung cấp sản phẩm phải trùng với nhà cung cấp PO" -#: order/models.py:994 +#: order/models.py:995 msgid "Line item does not match purchase order" msgstr "Mục dòng không phù hợp với đơn đặt mua" -#: order/models.py:997 +#: order/models.py:998 msgid "Line item is missing a linked part" msgstr "" -#: order/models.py:1011 +#: order/models.py:1012 msgid "Quantity must be a positive number" msgstr "Số lượng phải là số dương" -#: order/models.py:1323 order/models.py:2724 stock/models.py:1078 +#: order/models.py:1324 order/models.py:2725 stock/models.py:1078 #: stock/models.py:1079 stock/serializers.py:1322 #: templates/email/overdue_return_order.html:16 #: templates/email/overdue_sales_order.html:16 msgid "Customer" msgstr "Khách hàng" -#: order/models.py:1324 +#: order/models.py:1325 msgid "Company to which the items are being sold" msgstr "Doanh nghiệp từ những hàng hóa đang được bán" -#: order/models.py:1337 +#: order/models.py:1338 msgid "Sales order status" msgstr "" -#: order/models.py:1348 order/models.py:2744 +#: order/models.py:1349 order/models.py:2745 msgid "Customer Reference " msgstr "Tham chiếu khách hàng " -#: order/models.py:1349 order/models.py:2745 +#: order/models.py:1350 order/models.py:2746 msgid "Customer order reference code" msgstr "Mã tham chiếu đơn đặt của khách hàng" -#: order/models.py:1353 order/models.py:2296 +#: order/models.py:1354 order/models.py:2297 msgid "Shipment Date" msgstr "Ngày giao hàng" -#: order/models.py:1362 +#: order/models.py:1363 msgid "shipped by" msgstr "vận chuyển bằng" -#: order/models.py:1413 +#: order/models.py:1414 msgid "Order is already complete" msgstr "" -#: order/models.py:1416 +#: order/models.py:1417 msgid "Order is already cancelled" msgstr "" -#: order/models.py:1420 +#: order/models.py:1421 msgid "Only an open order can be marked as complete" msgstr "Những đơn hàng đang mở thì sẽ được đánh dấu là hoàn thành" -#: order/models.py:1424 +#: order/models.py:1425 msgid "Order cannot be completed as there are incomplete shipments" msgstr "Đơn hàng không thể hoàn thành được vì vận chuyển chưa xong" -#: order/models.py:1429 +#: order/models.py:1430 msgid "Order cannot be completed as there are incomplete allocations" msgstr "" -#: order/models.py:1438 +#: order/models.py:1439 msgid "Order cannot be completed as there are incomplete line items" msgstr "Đơn hàng không thể hoàn thành được vì những khoản riêng chưa xong" -#: order/models.py:1733 order/models.py:1749 +#: order/models.py:1734 order/models.py:1750 msgid "The order is locked and cannot be modified" msgstr "" -#: order/models.py:1757 +#: order/models.py:1758 msgid "Item quantity" msgstr "Số lượng mặt hàng" -#: order/models.py:1774 +#: order/models.py:1775 msgid "Line item reference" msgstr "Tham chiếu khoản riêng" -#: order/models.py:1781 +#: order/models.py:1782 msgid "Line item notes" msgstr "Ghi chú khoản riêng" -#: order/models.py:1796 +#: order/models.py:1797 msgid "Target date for this line item (leave blank to use the target date from the order)" msgstr "Ngày mục tiêu cho khoản riêng này (để trống để sử dụng ngày mục tiêu từ đơn đặt)" -#: order/models.py:1826 +#: order/models.py:1827 msgid "Line item description (optional)" msgstr "Mô tả khoản riêng (tùy chọn)" -#: order/models.py:1833 +#: order/models.py:1834 msgid "Additional context for this line" msgstr "Ngữ cảnh bổ sung" -#: order/models.py:1843 +#: order/models.py:1844 msgid "Unit price" msgstr "Đơn giá" -#: order/models.py:1862 +#: order/models.py:1863 msgid "Purchase Order Line Item" msgstr "" -#: order/models.py:1889 +#: order/models.py:1890 msgid "Supplier part must match supplier" msgstr "Sản phẩm nhà cung cấp phải phù hợp với nhà cung cung cấp" -#: order/models.py:1894 +#: order/models.py:1895 msgid "Build order must be marked as external" msgstr "" -#: order/models.py:1901 +#: order/models.py:1902 msgid "Build orders can only be linked to assembly parts" msgstr "" -#: order/models.py:1907 +#: order/models.py:1908 msgid "Build order part must match line item part" msgstr "" -#: order/models.py:1942 +#: order/models.py:1943 msgid "Supplier part" msgstr "Sản phẩm nhà cung cấp" -#: order/models.py:1949 +#: order/models.py:1950 msgid "Received" msgstr "Đã nhận" -#: order/models.py:1950 +#: order/models.py:1951 msgid "Number of items received" msgstr "Số mục đã nhận" -#: order/models.py:1958 stock/models.py:1201 stock/serializers.py:637 +#: order/models.py:1959 stock/models.py:1201 stock/serializers.py:637 msgid "Purchase Price" msgstr "Giá mua" -#: order/models.py:1959 +#: order/models.py:1960 msgid "Unit purchase price" msgstr "Giá đơn vị mua" -#: order/models.py:1975 +#: order/models.py:1976 msgid "External Build Order to be fulfilled by this line item" msgstr "" -#: order/models.py:2038 +#: order/models.py:2039 msgid "Purchase Order Extra Line" msgstr "" -#: order/models.py:2067 +#: order/models.py:2068 msgid "Sales Order Line Item" msgstr "" -#: order/models.py:2092 +#: order/models.py:2093 msgid "Only salable parts can be assigned to a sales order" msgstr "Chỉ có thể gán sản phẩm có thể bán vào đơn đặt bán hàng" -#: order/models.py:2118 +#: order/models.py:2119 msgid "Sale Price" msgstr "Giá bán" -#: order/models.py:2119 +#: order/models.py:2120 msgid "Unit sale price" msgstr "Giá bán đơn vị" -#: order/models.py:2128 order/status_codes.py:50 +#: order/models.py:2129 order/status_codes.py:50 msgid "Shipped" msgstr "Đã chuyển" -#: order/models.py:2129 +#: order/models.py:2130 msgid "Shipped quantity" msgstr "Số lượng đã vận chuyển" -#: order/models.py:2240 +#: order/models.py:2241 msgid "Sales Order Shipment" msgstr "" -#: order/models.py:2253 +#: order/models.py:2254 msgid "Shipment address must match the customer" msgstr "" -#: order/models.py:2289 +#: order/models.py:2290 msgid "Shipping address for this shipment" msgstr "" -#: order/models.py:2297 +#: order/models.py:2298 msgid "Date of shipment" msgstr "Ngày vận chuyển" -#: order/models.py:2303 +#: order/models.py:2304 msgid "Delivery Date" msgstr "Ngày giao hàng" -#: order/models.py:2304 +#: order/models.py:2305 msgid "Date of delivery of shipment" msgstr "Ngày giao hàng của vận chuyển" -#: order/models.py:2312 +#: order/models.py:2313 msgid "Checked By" msgstr "Kiểm tra bởi" -#: order/models.py:2313 +#: order/models.py:2314 msgid "User who checked this shipment" msgstr "Người dùng đã kiểm tra vận chuyển này" -#: order/models.py:2320 order/models.py:2574 order/serializers.py:1711 -#: order/serializers.py:1835 +#: order/models.py:2321 order/models.py:2575 order/serializers.py:1725 +#: order/serializers.py:1849 #: report/templates/report/inventree_sales_order_shipment_report.html:14 msgid "Shipment" msgstr "Vận chuyển" -#: order/models.py:2321 +#: order/models.py:2322 msgid "Shipment number" msgstr "Mã vận chuyển" -#: order/models.py:2329 +#: order/models.py:2330 msgid "Tracking Number" msgstr "Số theo dõi" -#: order/models.py:2330 +#: order/models.py:2331 msgid "Shipment tracking information" msgstr "Thông tin theo dõi vận chuyển" -#: order/models.py:2337 +#: order/models.py:2338 msgid "Invoice Number" msgstr "Mã hóa đơn" -#: order/models.py:2338 +#: order/models.py:2339 msgid "Reference number for associated invoice" msgstr "Số tham chiếu liên kết với hóa đơn" -#: order/models.py:2377 +#: order/models.py:2378 msgid "Shipment has already been sent" msgstr "Vận đơn đã được gửi đi" -#: order/models.py:2380 +#: order/models.py:2381 msgid "Shipment has no allocated stock items" msgstr "Vận đơn chưa có hàng hóa được phân bổ" -#: order/models.py:2387 +#: order/models.py:2388 msgid "Shipment must be checked before it can be completed" msgstr "" -#: order/models.py:2466 +#: order/models.py:2467 msgid "Sales Order Extra Line" msgstr "" -#: order/models.py:2495 +#: order/models.py:2496 msgid "Sales Order Allocation" msgstr "" -#: order/models.py:2518 order/models.py:2520 +#: order/models.py:2519 order/models.py:2521 msgid "Stock item has not been assigned" msgstr "Hàng trong kho chưa được giao" -#: order/models.py:2527 +#: order/models.py:2528 msgid "Cannot allocate stock item to a line with a different part" msgstr "Không thể phân bổ hàng hóa vào cùng với dòng với sản phẩm khác" -#: order/models.py:2530 +#: order/models.py:2531 msgid "Cannot allocate stock to a line without a part" msgstr "Không thể phân bổ hàng hóa vào một dòng mà không có sản phẩm nào" -#: order/models.py:2533 +#: order/models.py:2534 msgid "Allocation quantity cannot exceed stock quantity" msgstr "Số lượng phân bổ không thể vượt quá số lượng của kho" -#: order/models.py:2552 order/serializers.py:1581 +#: order/models.py:2553 order/serializers.py:1595 msgid "Quantity must be 1 for serialized stock item" msgstr "Số lượng phải là 1 cho hàng hóa sêri" -#: order/models.py:2555 +#: order/models.py:2556 msgid "Sales order does not match shipment" msgstr "Đơn bán hàng không phù hợp với vận đơn" -#: order/models.py:2556 plugin/base/barcodes/api.py:642 +#: order/models.py:2557 plugin/base/barcodes/api.py:642 msgid "Shipment does not match sales order" msgstr "Vận đơn không phù hợp với đơn bán hàng" -#: order/models.py:2564 +#: order/models.py:2565 msgid "Line" msgstr "Dòng" -#: order/models.py:2575 +#: order/models.py:2576 msgid "Sales order shipment reference" msgstr "Tham chiếu vận đơn của đơn hàng bán" -#: order/models.py:2588 order/models.py:3007 +#: order/models.py:2589 order/models.py:3008 msgid "Item" msgstr "Hàng hóa" -#: order/models.py:2589 +#: order/models.py:2590 msgid "Select stock item to allocate" msgstr "Chọn hàng trong kho để phân bổ" -#: order/models.py:2598 +#: order/models.py:2599 msgid "Enter stock allocation quantity" msgstr "Nhập số lượng phân kho" -#: order/models.py:2713 +#: order/models.py:2714 msgid "Return Order reference" msgstr "Tham chiếu đơn hàng trả lại" -#: order/models.py:2725 +#: order/models.py:2726 msgid "Company from which items are being returned" msgstr "Công ty có hàng hóa sẽ được trả lại" -#: order/models.py:2738 +#: order/models.py:2739 msgid "Return order status" msgstr "Trạng thái đơn hàng trả lại" -#: order/models.py:2965 +#: order/models.py:2966 msgid "Return Order Line Item" msgstr "" -#: order/models.py:2978 +#: order/models.py:2979 msgid "Stock item must be specified" msgstr "" -#: order/models.py:2982 +#: order/models.py:2983 msgid "Return quantity exceeds stock quantity" msgstr "" -#: order/models.py:2987 +#: order/models.py:2988 msgid "Return quantity must be greater than zero" msgstr "" -#: order/models.py:2992 +#: order/models.py:2993 msgid "Invalid quantity for serialized stock item" msgstr "" -#: order/models.py:3008 +#: order/models.py:3009 msgid "Select item to return from customer" msgstr "Chọn hàng hóa để trả lại từ khách hàng" -#: order/models.py:3023 +#: order/models.py:3024 msgid "Received Date" msgstr "Ngày nhận được" -#: order/models.py:3024 +#: order/models.py:3025 msgid "The date this this return item was received" msgstr "Ngày mà hàng hóa trả lại đã được nhận" -#: order/models.py:3036 +#: order/models.py:3037 msgid "Outcome" msgstr "Kết quả" -#: order/models.py:3037 +#: order/models.py:3038 msgid "Outcome for this line item" msgstr "Kết quả cho hàng hóa dòng này" -#: order/models.py:3044 +#: order/models.py:3045 msgid "Cost associated with return or repair for this line item" msgstr "Chi phí gắn với hàng trả lại hoặc sửa chữa cho dòng hàng hóa này" -#: order/models.py:3054 +#: order/models.py:3055 msgid "Return Order Extra Line" msgstr "" -#: order/serializers.py:91 +#: order/serializers.py:92 msgid "Order ID" msgstr "" -#: order/serializers.py:91 +#: order/serializers.py:92 msgid "ID of the order to duplicate" msgstr "" -#: order/serializers.py:97 +#: order/serializers.py:98 msgid "Copy Lines" msgstr "" -#: order/serializers.py:98 +#: order/serializers.py:99 msgid "Copy line items from the original order" msgstr "" -#: order/serializers.py:104 +#: order/serializers.py:105 msgid "Copy Extra Lines" msgstr "" -#: order/serializers.py:105 +#: order/serializers.py:106 msgid "Copy extra line items from the original order" msgstr "" -#: order/serializers.py:120 +#: order/serializers.py:121 #: report/templates/report/inventree_purchase_order_report.html:29 #: report/templates/report/inventree_return_order_report.html:19 #: report/templates/report/inventree_sales_order_report.html:22 msgid "Line Items" msgstr "Mục dòng" -#: order/serializers.py:125 +#: order/serializers.py:126 msgid "Completed Lines" msgstr "" -#: order/serializers.py:192 +#: order/serializers.py:199 msgid "Duplicate Order" msgstr "" -#: order/serializers.py:193 +#: order/serializers.py:200 msgid "Specify options for duplicating this order" msgstr "" -#: order/serializers.py:270 +#: order/serializers.py:278 msgid "Invalid order ID" msgstr "" -#: order/serializers.py:466 +#: order/serializers.py:477 msgid "Supplier Name" msgstr "Tên nhà cung cấp" -#: order/serializers.py:510 +#: order/serializers.py:521 msgid "Order cannot be cancelled" msgstr "Đơn đặt không thể bị hủy" -#: order/serializers.py:525 order/serializers.py:1602 +#: order/serializers.py:536 order/serializers.py:1616 msgid "Allow order to be closed with incomplete line items" msgstr "Cho phép đơn đặt phải đóng lại cùng với các mục dòng hàng hóa chưa hoàn thành" -#: order/serializers.py:535 order/serializers.py:1612 +#: order/serializers.py:546 order/serializers.py:1626 msgid "Order has incomplete line items" msgstr "Đơn đặt có dòng hàng hóa chưa hoàn thành" -#: order/serializers.py:665 +#: order/serializers.py:676 msgid "Order is not open" msgstr "Đơn đặt là không được mở" -#: order/serializers.py:692 +#: order/serializers.py:703 msgid "Auto Pricing" msgstr "" -#: order/serializers.py:694 +#: order/serializers.py:705 msgid "Automatically calculate purchase price based on supplier part data" msgstr "" -#: order/serializers.py:704 +#: order/serializers.py:715 msgid "Purchase price currency" msgstr "Tiền tệ giá mua" -#: order/serializers.py:718 +#: order/serializers.py:729 msgid "Merge Items" msgstr "" -#: order/serializers.py:720 +#: order/serializers.py:731 msgid "Merge items with the same part, destination and target date into one line item" msgstr "" -#: order/serializers.py:727 part/serializers.py:560 +#: order/serializers.py:738 part/serializers.py:471 msgid "SKU" msgstr "" -#: order/serializers.py:741 part/models.py:1089 part/serializers.py:372 +#: order/serializers.py:752 part/models.py:1177 part/serializers.py:337 msgid "Internal Part Number" msgstr "Mã sản phẩm nội bộ" -#: order/serializers.py:749 +#: order/serializers.py:760 msgid "Internal Part Name" msgstr "" -#: order/serializers.py:765 +#: order/serializers.py:776 msgid "Supplier part must be specified" msgstr "Sản phẩm nhà cung cấp phải được chỉ định" -#: order/serializers.py:768 +#: order/serializers.py:779 msgid "Purchase order must be specified" msgstr "Đơn đặt mua phải được chỉ định" -#: order/serializers.py:776 +#: order/serializers.py:787 msgid "Supplier must match purchase order" msgstr "Nhà cung cấp phải phù hợp với đơn đặt mua" -#: order/serializers.py:777 +#: order/serializers.py:788 msgid "Purchase order must match supplier" msgstr "Đơn đặt mua phải phù hợp với nhà cung cấp" -#: order/serializers.py:825 order/serializers.py:1682 +#: order/serializers.py:836 order/serializers.py:1696 msgid "Line Item" msgstr "Mục dòng" -#: order/serializers.py:834 order/serializers.py:974 order/serializers.py:2043 +#: order/serializers.py:845 order/serializers.py:985 order/serializers.py:2060 msgid "Select destination location for received items" msgstr "Chọn vị trí đích cho hàng hóa đã nhận" -#: order/serializers.py:850 +#: order/serializers.py:861 msgid "Enter batch code for incoming stock items" msgstr "Nhập mã lô cho hàng trong kho đang đến" -#: order/serializers.py:857 stock/models.py:1160 +#: order/serializers.py:868 stock/models.py:1160 #: templates/email/stale_stock_notification.html:22 users/models.py:137 msgid "Expiry Date" msgstr "Ngày hết hạn" -#: order/serializers.py:858 +#: order/serializers.py:869 msgid "Enter expiry date for incoming stock items" msgstr "" -#: order/serializers.py:866 +#: order/serializers.py:877 msgid "Enter serial numbers for incoming stock items" msgstr "Nhập số sê ri cho hàng trong kho đang đến" -#: order/serializers.py:876 +#: order/serializers.py:887 msgid "Override packaging information for incoming stock items" msgstr "" -#: order/serializers.py:884 order/serializers.py:2048 +#: order/serializers.py:895 order/serializers.py:2065 msgid "Additional note for incoming stock items" msgstr "" -#: order/serializers.py:891 +#: order/serializers.py:902 msgid "Barcode" msgstr "Mã vạch" -#: order/serializers.py:892 +#: order/serializers.py:903 msgid "Scanned barcode" msgstr "Mã vạch đã quét" -#: order/serializers.py:908 +#: order/serializers.py:919 msgid "Barcode is already in use" msgstr "Mã vạch đã được dùng" -#: order/serializers.py:991 order/serializers.py:2067 +#: order/serializers.py:1002 order/serializers.py:2084 msgid "Line items must be provided" msgstr "Dòng hàng hóa phải được cung cấp" -#: order/serializers.py:1010 +#: order/serializers.py:1021 msgid "Destination location must be specified" msgstr "Vị trí đích phải được chỉ ra" -#: order/serializers.py:1017 +#: order/serializers.py:1028 msgid "Supplied barcode values must be unique" msgstr "Giá trị mã vạch đã cung cấp phải duy nhất" -#: order/serializers.py:1121 +#: order/serializers.py:1135 msgid "Shipments" msgstr "" -#: order/serializers.py:1125 +#: order/serializers.py:1139 msgid "Completed Shipments" msgstr "Vận đơn đã hoàn thành" -#: order/serializers.py:1293 +#: order/serializers.py:1307 msgid "Sale price currency" msgstr "Tiền tệ giá bán" -#: order/serializers.py:1339 +#: order/serializers.py:1353 msgid "Allocated Items" msgstr "" -#: order/serializers.py:1484 +#: order/serializers.py:1498 msgid "No shipment details provided" msgstr "Chưa cung cấp thông tin vận chuyển" -#: order/serializers.py:1545 order/serializers.py:1691 +#: order/serializers.py:1559 order/serializers.py:1705 msgid "Line item is not associated with this order" msgstr "Dòng hàng hóa chưa được gắn với đơn đặt này" -#: order/serializers.py:1564 +#: order/serializers.py:1578 msgid "Quantity must be positive" msgstr "Số lượng phải là số dương" -#: order/serializers.py:1701 +#: order/serializers.py:1715 msgid "Enter serial numbers to allocate" msgstr "Nhập số sê ri để phân bổ" -#: order/serializers.py:1723 order/serializers.py:1843 +#: order/serializers.py:1737 order/serializers.py:1857 msgid "Shipment has already been shipped" msgstr "Vận đơn đã được chuyển đi" -#: order/serializers.py:1726 order/serializers.py:1846 +#: order/serializers.py:1740 order/serializers.py:1860 msgid "Shipment is not associated with this order" msgstr "Vận đơn không được gắn với đơn đặt này" -#: order/serializers.py:1781 +#: order/serializers.py:1795 msgid "No match found for the following serial numbers" msgstr "Không tìm thấy số sê ri sau đây" -#: order/serializers.py:1788 +#: order/serializers.py:1802 msgid "The following serial numbers are unavailable" msgstr "" -#: order/serializers.py:2009 +#: order/serializers.py:2026 msgid "Return order line item" msgstr "Dòng riêng biệt đơn hàng trả lại" -#: order/serializers.py:2019 +#: order/serializers.py:2036 msgid "Line item does not match return order" msgstr "Line item không phù hợp với đơn hàng trả lại" -#: order/serializers.py:2022 +#: order/serializers.py:2039 msgid "Line item has already been received" msgstr "Line item đã nhận được" -#: order/serializers.py:2059 +#: order/serializers.py:2076 msgid "Items can only be received against orders which are in progress" msgstr "Hàng hóa chỉ có thể được nhận theo đơn hàng đang trong tiến trình" -#: order/serializers.py:2124 +#: order/serializers.py:2141 msgid "Quantity to return" msgstr "" -#: order/serializers.py:2140 +#: order/serializers.py:2157 msgid "Line price currency" msgstr "Tiền tệ giá đồng hạng" @@ -5431,1190 +5559,1109 @@ msgstr "" msgid "Return order {ro} is now overdue" msgstr "" -#: part/api.py:108 +#: part/api.py:103 msgid "Starred" msgstr "" -#: part/api.py:110 +#: part/api.py:105 msgid "Filter by starred categories" msgstr "" -#: part/api.py:127 stock/api.py:288 +#: part/api.py:122 stock/api.py:288 msgid "Depth" msgstr "" -#: part/api.py:127 +#: part/api.py:122 msgid "Filter by category depth" msgstr "" -#: part/api.py:145 stock/api.py:306 +#: part/api.py:140 stock/api.py:306 msgid "Top Level" msgstr "" -#: part/api.py:147 +#: part/api.py:142 msgid "Filter by top-level categories" msgstr "" -#: part/api.py:160 stock/api.py:321 +#: part/api.py:155 stock/api.py:321 msgid "Cascade" msgstr "" -#: part/api.py:162 +#: part/api.py:157 msgid "Include sub-categories in filtered results" msgstr "" -#: part/api.py:182 +#: part/api.py:177 msgid "Parent" msgstr "" -#: part/api.py:184 +#: part/api.py:179 msgid "Filter by parent category" msgstr "" -#: part/api.py:219 +#: part/api.py:214 msgid "Exclude sub-categories under the specified category" msgstr "" -#: part/api.py:445 +#: part/api.py:440 msgid "Has Results" msgstr "" -#: part/api.py:666 +#: part/api.py:661 msgid "Is Variant" msgstr "" -#: part/api.py:674 +#: part/api.py:669 msgid "Is Revision" msgstr "" -#: part/api.py:684 +#: part/api.py:679 msgid "Has Revisions" msgstr "" -#: part/api.py:865 +#: part/api.py:860 msgid "BOM Valid" msgstr "" -#: part/api.py:974 +#: part/api.py:969 msgid "Cascade Categories" msgstr "" -#: part/api.py:975 +#: part/api.py:970 msgid "If true, include items in child categories of the given category" msgstr "" -#: part/api.py:981 +#: part/api.py:976 msgid "Filter by numeric category ID or the literal 'null'" msgstr "" -#: part/api.py:1533 +#: part/api.py:1258 msgid "Assembly part is testable" msgstr "" -#: part/api.py:1542 +#: part/api.py:1267 msgid "Component part is testable" msgstr "" -#: part/api.py:1611 +#: part/api.py:1336 msgid "Uses" msgstr "" -#: part/models.py:96 part/models.py:4163 +#: part/models.py:93 part/models.py:436 #: templates/email/part_event_notification.html:16 msgid "Part Category" msgstr "Danh mục sản phẩm" -#: part/models.py:97 users/ruleset.py:27 +#: part/models.py:94 users/ruleset.py:27 msgid "Part Categories" msgstr "Danh mục sản phẩm" -#: part/models.py:115 part/models.py:1125 +#: part/models.py:112 part/models.py:1213 msgid "Default Location" msgstr "Điểm bán mặc định" -#: part/models.py:116 +#: part/models.py:113 msgid "Default location for parts in this category" msgstr "Vị trí mặc định cho sản phẩm trong danh mục này" -#: part/models.py:121 stock/models.py:216 +#: part/models.py:118 stock/models.py:216 msgid "Structural" msgstr "Cấu trúc" -#: part/models.py:123 +#: part/models.py:120 msgid "Parts may not be directly assigned to a structural category, but may be assigned to child categories." msgstr "Hàng hóa không được gán trực tiếp vào danh mục có cấu trúc nhưng có thể được gán vào danh mục con." -#: part/models.py:132 +#: part/models.py:129 msgid "Default keywords" msgstr "Từ khóa mặc định" -#: part/models.py:133 +#: part/models.py:130 msgid "Default keywords for parts in this category" msgstr "Từ khóa mặc định cho sản phẩm trong danh mục này" -#: part/models.py:140 stock/models.py:97 stock/models.py:198 +#: part/models.py:137 stock/models.py:97 stock/models.py:198 msgid "Icon" msgstr "Biểu tượng" -#: part/models.py:141 part/serializers.py:148 part/serializers.py:167 +#: part/models.py:138 part/serializers.py:147 part/serializers.py:166 #: stock/models.py:199 msgid "Icon (optional)" msgstr "Biểu tượng (tùy chọn)" -#: part/models.py:185 +#: part/models.py:182 msgid "You cannot make this part category structural because some parts are already assigned to it!" msgstr "Bạn không thể thay đổi cấu trúc nhóm sản phẩm này vì một số sản phẩm đã được gắn với nó rồi!" -#: part/models.py:473 part/serializers.py:119 part/serializers.py:310 -#: users/ruleset.py:28 +#: part/models.py:392 +msgid "Part Category Parameter Template" +msgstr "" + +#: part/models.py:448 +msgid "Default Value" +msgstr "Giá trị mặc định" + +#: part/models.py:449 +msgid "Default Parameter Value" +msgstr "Giá trị tham số mặc định" + +#: part/models.py:551 part/serializers.py:118 users/ruleset.py:28 msgid "Parts" msgstr "Nguyên liệu" -#: part/models.py:525 +#: part/models.py:597 +msgid "Cannot delete parameters of a locked part" +msgstr "" + +#: part/models.py:602 +msgid "Cannot modify parameters of a locked part" +msgstr "" + +#: part/models.py:613 msgid "Cannot delete this part as it is locked" msgstr "" -#: part/models.py:528 +#: part/models.py:616 msgid "Cannot delete this part as it is still active" msgstr "" -#: part/models.py:533 +#: part/models.py:621 msgid "Cannot delete this part as it is used in an assembly" msgstr "" -#: part/models.py:616 part/models.py:623 +#: part/models.py:704 part/models.py:711 #, python-brace-format msgid "Part '{self}' cannot be used in BOM for '{parent}' (recursive)" msgstr "Không thể dùng sản phẩm '{self}' trong BOM cho '{parent}' (đệ quy)" -#: part/models.py:635 +#: part/models.py:723 #, python-brace-format msgid "Part '{parent}' is used in BOM for '{self}' (recursive)" msgstr "Sản phẩm '{parent}' được dùng trong BOM cho '{self}' (đệ quy)" -#: part/models.py:702 +#: part/models.py:790 #, python-brace-format msgid "IPN must match regex pattern {pattern}" msgstr "IPN phải phù hợp mẫu biểu thức chính quy {pattern}" -#: part/models.py:710 +#: part/models.py:798 msgid "Part cannot be a revision of itself" msgstr "" -#: part/models.py:717 +#: part/models.py:805 msgid "Cannot make a revision of a part which is already a revision" msgstr "" -#: part/models.py:724 +#: part/models.py:812 msgid "Revision code must be specified" msgstr "" -#: part/models.py:731 +#: part/models.py:819 msgid "Revisions are only allowed for assembly parts" msgstr "" -#: part/models.py:738 +#: part/models.py:826 msgid "Cannot make a revision of a template part" msgstr "" -#: part/models.py:744 +#: part/models.py:832 msgid "Parent part must point to the same template" msgstr "" -#: part/models.py:841 +#: part/models.py:929 msgid "Stock item with this serial number already exists" msgstr "Hàng trong kho với số sê ri này đã tồn tại" -#: part/models.py:971 +#: part/models.py:1059 msgid "Duplicate IPN not allowed in part settings" msgstr "IPN trùng lặp không được cho phép trong thiết lập sản phẩm" -#: part/models.py:983 +#: part/models.py:1071 msgid "Duplicate part revision already exists." msgstr "" -#: part/models.py:992 +#: part/models.py:1080 msgid "Part with this Name, IPN and Revision already exists." msgstr "Sản phẩm với Tên, IPN và Duyệt lại đã tồn tại." -#: part/models.py:1007 +#: part/models.py:1095 msgid "Parts cannot be assigned to structural part categories!" msgstr "Sản phẩm không thể được phân vào danh mục sản phẩm có cấu trúc!" -#: part/models.py:1039 +#: part/models.py:1127 msgid "Part name" msgstr "Tên sản phẩm" -#: part/models.py:1044 +#: part/models.py:1132 msgid "Is Template" msgstr "Là Mẫu" -#: part/models.py:1045 +#: part/models.py:1133 msgid "Is this part a template part?" msgstr "Sản phẩm này có phải là sản phẩm mẫu?" -#: part/models.py:1055 +#: part/models.py:1143 msgid "Is this part a variant of another part?" msgstr "Đây có phải là 1 biến thể của sản phẩm khác?" -#: part/models.py:1056 +#: part/models.py:1144 msgid "Variant Of" msgstr "Biến thể của" -#: part/models.py:1063 +#: part/models.py:1151 msgid "Part description (optional)" msgstr "Mô tả (không bắt buộc)" -#: part/models.py:1070 +#: part/models.py:1158 msgid "Keywords" msgstr "Từ khóa" -#: part/models.py:1071 +#: part/models.py:1159 msgid "Part keywords to improve visibility in search results" msgstr "Từ khóa sản phẩm để cải thiện sự hiện diện trong kết quả tìm kiếm" -#: part/models.py:1081 +#: part/models.py:1169 msgid "Part category" msgstr "Danh mục sản phẩm" -#: part/models.py:1088 part/serializers.py:929 +#: part/models.py:1176 part/serializers.py:814 #: report/templates/report/inventree_stock_location_report.html:103 msgid "IPN" msgstr "" -#: part/models.py:1096 +#: part/models.py:1184 msgid "Part revision or version number" msgstr "Số phiên bản hoặc bản duyệt lại sản phẩm" -#: part/models.py:1097 report/models.py:228 +#: part/models.py:1185 report/models.py:228 msgid "Revision" msgstr "Phiên bản" -#: part/models.py:1106 +#: part/models.py:1194 msgid "Is this part a revision of another part?" msgstr "" -#: part/models.py:1107 +#: part/models.py:1195 msgid "Revision Of" msgstr "" -#: part/models.py:1123 +#: part/models.py:1211 msgid "Where is this item normally stored?" msgstr "Hàng hóa này sẽ được cất vào đâu?" -#: part/models.py:1169 +#: part/models.py:1257 msgid "Default Supplier" msgstr "Nhà cung ứng mặc định" -#: part/models.py:1170 +#: part/models.py:1258 msgid "Default supplier part" msgstr "Nhà cung ứng sản phẩm mặc định" -#: part/models.py:1177 +#: part/models.py:1265 msgid "Default Expiry" msgstr "Hết hạn mặc định" -#: part/models.py:1178 +#: part/models.py:1266 msgid "Expiry time (in days) for stock items of this part" msgstr "Thời gian hết hạn (theo ngày) để nhập kho hàng hóa cho sản phẩm này" -#: part/models.py:1186 part/serializers.py:1003 +#: part/models.py:1274 part/serializers.py:888 msgid "Minimum Stock" msgstr "Kho tối thiểu" -#: part/models.py:1187 +#: part/models.py:1275 msgid "Minimum allowed stock level" msgstr "Cấp độ kho tối thiểu được phép" -#: part/models.py:1196 +#: part/models.py:1284 msgid "Units of measure for this part" msgstr "Đơn vị đo cho sản phẩm này" -#: part/models.py:1203 +#: part/models.py:1291 msgid "Can this part be built from other parts?" msgstr "Sản phẩm này có thể được dựng từ sản phẩm khác?" -#: part/models.py:1209 +#: part/models.py:1297 msgid "Can this part be used to build other parts?" msgstr "Sản phẩm này có thể dùng để dựng các sản phẩm khác?" -#: part/models.py:1215 +#: part/models.py:1303 msgid "Does this part have tracking for unique items?" msgstr "Sản phẩm này có đang theo dõi cho hàng hóa duy nhất?" -#: part/models.py:1221 +#: part/models.py:1309 msgid "Can this part have test results recorded against it?" msgstr "" -#: part/models.py:1227 +#: part/models.py:1315 msgid "Can this part be purchased from external suppliers?" msgstr "Sản phẩm này có thể mua được từ nhà cung ứng bên ngoài?" -#: part/models.py:1233 +#: part/models.py:1321 msgid "Can this part be sold to customers?" msgstr "Sản phẩm này có thể được bán cho khách hàng?" -#: part/models.py:1237 +#: part/models.py:1325 msgid "Is this part active?" msgstr "Sản phẩm này đang hoạt động?" -#: part/models.py:1243 +#: part/models.py:1331 msgid "Locked parts cannot be edited" msgstr "" -#: part/models.py:1249 +#: part/models.py:1337 msgid "Is this a virtual part, such as a software product or license?" msgstr "Đây là sản phẩm ảo, ví dụ như sản phẩm phần mềm hay bản quyền?" -#: part/models.py:1254 +#: part/models.py:1342 msgid "BOM Validated" msgstr "" -#: part/models.py:1255 +#: part/models.py:1343 msgid "Is the BOM for this part valid?" msgstr "" -#: part/models.py:1261 +#: part/models.py:1349 msgid "BOM checksum" msgstr "Giá trị tổng kiểm BOM" -#: part/models.py:1262 +#: part/models.py:1350 msgid "Stored BOM checksum" msgstr "Giá trị tổng kiểm BOM đã được lưu" -#: part/models.py:1270 +#: part/models.py:1358 msgid "BOM checked by" msgstr "BOM kiểm tra bởi" -#: part/models.py:1275 +#: part/models.py:1363 msgid "BOM checked date" msgstr "Ngày kiểm tra BOM" -#: part/models.py:1291 +#: part/models.py:1379 msgid "Creation User" msgstr "Tạo người dùng" -#: part/models.py:1301 +#: part/models.py:1389 msgid "Owner responsible for this part" msgstr "Trách nhiệm chủ sở hữu cho sản phẩm này" -#: part/models.py:2258 +#: part/models.py:2346 msgid "Sell multiple" msgstr "Bán nhiều" -#: part/models.py:3286 +#: part/models.py:3350 msgid "Currency used to cache pricing calculations" msgstr "Tiền được dùng để làm đệm tính toán giá bán" -#: part/models.py:3302 +#: part/models.py:3366 msgid "Minimum BOM Cost" msgstr "Chi phí BOM tối thiểu" -#: part/models.py:3303 +#: part/models.py:3367 msgid "Minimum cost of component parts" msgstr "Chi phí thành phần sản phẩm tối thiểu" -#: part/models.py:3309 +#: part/models.py:3373 msgid "Maximum BOM Cost" msgstr "Chi phí BOM tối đa" -#: part/models.py:3310 +#: part/models.py:3374 msgid "Maximum cost of component parts" msgstr "Chi phí thành phần sản phẩm tối đa" -#: part/models.py:3316 +#: part/models.py:3380 msgid "Minimum Purchase Cost" msgstr "Chi phí mua vào tối thiểu" -#: part/models.py:3317 +#: part/models.py:3381 msgid "Minimum historical purchase cost" msgstr "Chi phí mua vào tối thiểu trong lịch sử" -#: part/models.py:3323 +#: part/models.py:3387 msgid "Maximum Purchase Cost" msgstr "Chi phí mua tối đa" -#: part/models.py:3324 +#: part/models.py:3388 msgid "Maximum historical purchase cost" msgstr "Chi phí thành phần sản phẩm tối đa trong lịch sử" -#: part/models.py:3330 +#: part/models.py:3394 msgid "Minimum Internal Price" msgstr "Giá nội bộ tối thiểu" -#: part/models.py:3331 +#: part/models.py:3395 msgid "Minimum cost based on internal price breaks" msgstr "Chi phí tối thiểu dựa trên phá vỡ giá nội bộ" -#: part/models.py:3337 +#: part/models.py:3401 msgid "Maximum Internal Price" msgstr "Giá nội bộ tối đa" -#: part/models.py:3338 +#: part/models.py:3402 msgid "Maximum cost based on internal price breaks" msgstr "Chi phí tối đa dựa trên phá vỡ giá nội bộ" -#: part/models.py:3344 +#: part/models.py:3408 msgid "Minimum Supplier Price" msgstr "Giá nhà cung ứng tối thiểu" -#: part/models.py:3345 +#: part/models.py:3409 msgid "Minimum price of part from external suppliers" msgstr "Giá sản phẩm tối thiểu từ nhà cung ứng bên ngoài" -#: part/models.py:3351 +#: part/models.py:3415 msgid "Maximum Supplier Price" msgstr "Giá nhà cung ứng tối đa" -#: part/models.py:3352 +#: part/models.py:3416 msgid "Maximum price of part from external suppliers" msgstr "Giá sản phẩm tối đã từ nhà cung ứng bên ngoài" -#: part/models.py:3358 +#: part/models.py:3422 msgid "Minimum Variant Cost" msgstr "Giá trị biến thể tối thiểu" -#: part/models.py:3359 +#: part/models.py:3423 msgid "Calculated minimum cost of variant parts" msgstr "Chi phí tối thiểu của sản phẩm biến thể đã tính" -#: part/models.py:3365 +#: part/models.py:3429 msgid "Maximum Variant Cost" msgstr "Chi phí biến thể tối đa" -#: part/models.py:3366 +#: part/models.py:3430 msgid "Calculated maximum cost of variant parts" msgstr "Chi phí tối đa của sản phẩm biến thể đã tính" -#: part/models.py:3372 part/models.py:3386 +#: part/models.py:3436 part/models.py:3450 msgid "Minimum Cost" msgstr "Chi phí tối thiểu" -#: part/models.py:3373 +#: part/models.py:3437 msgid "Override minimum cost" msgstr "Ghi đề chi phí tối thiểu" -#: part/models.py:3379 part/models.py:3393 +#: part/models.py:3443 part/models.py:3457 msgid "Maximum Cost" msgstr "Chi phí tối đa" -#: part/models.py:3380 +#: part/models.py:3444 msgid "Override maximum cost" msgstr "Ghi đề chi phí tối đa" -#: part/models.py:3387 +#: part/models.py:3451 msgid "Calculated overall minimum cost" msgstr "Chi phí tối thiểu tính toán tổng thể" -#: part/models.py:3394 +#: part/models.py:3458 msgid "Calculated overall maximum cost" msgstr "Chi phí tối đa tính toán tổng thể" -#: part/models.py:3400 +#: part/models.py:3464 msgid "Minimum Sale Price" msgstr "Giá bán thấp nhất" -#: part/models.py:3401 +#: part/models.py:3465 msgid "Minimum sale price based on price breaks" msgstr "Giá bán tối thiểu dựa trên phá giá" -#: part/models.py:3407 +#: part/models.py:3471 msgid "Maximum Sale Price" msgstr "Giá bán cao nhất" -#: part/models.py:3408 +#: part/models.py:3472 msgid "Maximum sale price based on price breaks" msgstr "Giá bán cao nhất dựa trên phá giá" -#: part/models.py:3414 +#: part/models.py:3478 msgid "Minimum Sale Cost" msgstr "Chi phí bán hàng tối thiểu" -#: part/models.py:3415 +#: part/models.py:3479 msgid "Minimum historical sale price" msgstr "Giá bán hàng tối thiểu trong lịch sử" -#: part/models.py:3421 +#: part/models.py:3485 msgid "Maximum Sale Cost" msgstr "Giá bán hàng tối đa" -#: part/models.py:3422 +#: part/models.py:3486 msgid "Maximum historical sale price" msgstr "Giá bán hàng tối đa trong lịch sử" -#: part/models.py:3440 +#: part/models.py:3504 msgid "Part for stocktake" msgstr "Sản phẩm dành cho kiểm kê" -#: part/models.py:3445 +#: part/models.py:3509 msgid "Item Count" msgstr "Tổng số hàng" -#: part/models.py:3446 +#: part/models.py:3510 msgid "Number of individual stock entries at time of stocktake" msgstr "Số mục kho độc lậo tại thời điểm kiểm kê" -#: part/models.py:3454 +#: part/models.py:3518 msgid "Total available stock at time of stocktake" msgstr "Tống số kho tại thời điểm kiểm kê" -#: part/models.py:3458 report/templates/report/inventree_test_report.html:106 +#: part/models.py:3522 report/templates/report/inventree_test_report.html:106 msgid "Date" msgstr "Ngày" -#: part/models.py:3459 +#: part/models.py:3523 msgid "Date stocktake was performed" msgstr "Kiểm kê đã thực hiện" -#: part/models.py:3466 +#: part/models.py:3530 msgid "Minimum Stock Cost" msgstr "Chi phí kho tối thiểu" -#: part/models.py:3467 +#: part/models.py:3531 msgid "Estimated minimum cost of stock on hand" msgstr "Chi phí kho tối thiểu ước tính của kho đang có" -#: part/models.py:3473 +#: part/models.py:3537 msgid "Maximum Stock Cost" msgstr "Chi phí kho tối đa" -#: part/models.py:3474 +#: part/models.py:3538 msgid "Estimated maximum cost of stock on hand" msgstr "Chi phí kho tối đa ước tính của kho đang có" -#: part/models.py:3484 +#: part/models.py:3548 msgid "Part Sale Price Break" msgstr "" -#: part/models.py:3596 +#: part/models.py:3660 msgid "Part Test Template" msgstr "" -#: part/models.py:3622 +#: part/models.py:3686 msgid "Invalid template name - must include at least one alphanumeric character" msgstr "" -#: part/models.py:3643 part/models.py:3816 -msgid "Choices must be unique" -msgstr "Lựa chọn phải duy nhất" - -#: part/models.py:3654 +#: part/models.py:3718 msgid "Test templates can only be created for testable parts" msgstr "" -#: part/models.py:3668 +#: part/models.py:3732 msgid "Test template with the same key already exists for part" msgstr "" -#: part/models.py:3685 +#: part/models.py:3749 msgid "Test Name" msgstr "Tên kiểm thử" -#: part/models.py:3686 +#: part/models.py:3750 msgid "Enter a name for the test" msgstr "Nhập tên cho kiểm thử" -#: part/models.py:3692 +#: part/models.py:3756 msgid "Test Key" msgstr "" -#: part/models.py:3693 +#: part/models.py:3757 msgid "Simplified key for the test" msgstr "" -#: part/models.py:3700 +#: part/models.py:3764 msgid "Test Description" msgstr "Mô tả kiểm thử" -#: part/models.py:3701 +#: part/models.py:3765 msgid "Enter description for this test" msgstr "Nhập mô tả cho kiểm thử này" -#: part/models.py:3705 report/models.py:287 -msgid "Enabled" -msgstr "Đã bật" - -#: part/models.py:3705 +#: part/models.py:3769 msgid "Is this test enabled?" msgstr "" -#: part/models.py:3710 +#: part/models.py:3774 msgid "Required" msgstr "Bắt buộc" -#: part/models.py:3711 +#: part/models.py:3775 msgid "Is this test required to pass?" msgstr "Kiểm thử này bắt buộc phải đạt?" -#: part/models.py:3716 +#: part/models.py:3780 msgid "Requires Value" msgstr "Giá trị bắt buộc" -#: part/models.py:3717 +#: part/models.py:3781 msgid "Does this test require a value when adding a test result?" msgstr "Kiểm thử này yêu cầu 1 giá trị khi thêm một kết quả kiểm thử?" -#: part/models.py:3722 +#: part/models.py:3786 msgid "Requires Attachment" msgstr "Yêu cầu đính kèm" -#: part/models.py:3724 +#: part/models.py:3788 msgid "Does this test require a file attachment when adding a test result?" msgstr "Kiểm thử này yêu cầu tệp đính kèm khi thêm một kết quả kiểm thử?" -#: part/models.py:3730 part/models.py:3878 -msgid "Choices" -msgstr "Lựa chọn" - -#: part/models.py:3731 +#: part/models.py:3795 msgid "Valid choices for this test (comma-separated)" msgstr "" -#: part/models.py:3764 -msgid "Part Parameter Template" -msgstr "" - -#: part/models.py:3791 -msgid "Checkbox parameters cannot have units" -msgstr "Tham số hộp kiểm tra không thể có đơn vị" - -#: part/models.py:3796 -msgid "Checkbox parameters cannot have choices" -msgstr "Tham số hộp kiểm tra không thể có lựa chọn" - -#: part/models.py:3833 -msgid "Parameter template name must be unique" -msgstr "Tên tham số mẫu phải là duy nhất" - -#: part/models.py:3851 -msgid "Parameter Name" -msgstr "Tên tham số" - -#: part/models.py:3858 -msgid "Physical units for this parameter" -msgstr "Đơn vị vật lý cho tham số này" - -#: part/models.py:3866 -msgid "Parameter description" -msgstr "Mô tả tham số" - -#: part/models.py:3872 -msgid "Checkbox" -msgstr "Ô lựa chọn" - -#: part/models.py:3873 -msgid "Is this parameter a checkbox?" -msgstr "Tham số này có phải là hộp kiểm tra?" - -#: part/models.py:3879 -msgid "Valid choices for this parameter (comma-separated)" -msgstr "Lựa chọn hợp lệ từ tham số này (ngăn cách bằng dấu phẩy)" - -#: part/models.py:3890 -msgid "Selection list for this parameter" -msgstr "" - -#: part/models.py:3932 -msgid "Part Parameter" -msgstr "" - -#: part/models.py:3958 -msgid "Parameter cannot be modified - part is locked" -msgstr "" - -#: part/models.py:3996 -msgid "Invalid choice for parameter value" -msgstr "Lựa chọn sai cho giá trị tham số" - -#: part/models.py:4047 -msgid "Parent Part" -msgstr "Sản phẩm cha" - -#: part/models.py:4055 part/models.py:4170 part/models.py:4171 -msgid "Parameter Template" -msgstr "Mẫu tham số" - -#: part/models.py:4061 -msgid "Parameter Value" -msgstr "Giá trị tham số" - -#: part/models.py:4071 stock/serializers.py:718 -msgid "Optional note field" -msgstr "Trường ghi chú tùy chọn" - -#: part/models.py:4118 -msgid "Part Category Parameter Template" -msgstr "" - -#: part/models.py:4177 -msgid "Default Value" -msgstr "Giá trị mặc định" - -#: part/models.py:4178 -msgid "Default Parameter Value" -msgstr "Giá trị tham số mặc định" - -#: part/models.py:4352 +#: part/models.py:3977 msgid "BOM item cannot be modified - assembly is locked" msgstr "" -#: part/models.py:4359 +#: part/models.py:3984 msgid "BOM item cannot be modified - variant assembly is locked" msgstr "" -#: part/models.py:4369 +#: part/models.py:3994 msgid "Select parent part" msgstr "Chọn sản phẩm cha" -#: part/models.py:4379 +#: part/models.py:4004 msgid "Sub part" msgstr "Sản phẩm phụ" -#: part/models.py:4380 +#: part/models.py:4005 msgid "Select part to be used in BOM" msgstr "Chọn sản phẩm được dùng trong BOM" -#: part/models.py:4391 +#: part/models.py:4016 msgid "BOM quantity for this BOM item" msgstr "Số lượng BOM cho mục BOM này" -#: part/models.py:4397 +#: part/models.py:4022 msgid "This BOM item is optional" msgstr "Mục BOM này là tùy chọn" -#: part/models.py:4403 +#: part/models.py:4028 msgid "This BOM item is consumable (it is not tracked in build orders)" msgstr "Mục BOM này bị tiêu hao (không được theo dõi trong đơn đặt bản dựng)" -#: part/models.py:4411 +#: part/models.py:4036 msgid "Setup Quantity" msgstr "" -#: part/models.py:4412 +#: part/models.py:4037 msgid "Extra required quantity for a build, to account for setup losses" msgstr "" -#: part/models.py:4420 +#: part/models.py:4045 msgid "Attrition" msgstr "" -#: part/models.py:4422 +#: part/models.py:4047 msgid "Estimated attrition for a build, expressed as a percentage (0-100)" msgstr "" -#: part/models.py:4433 +#: part/models.py:4058 msgid "Rounding Multiple" msgstr "" -#: part/models.py:4435 +#: part/models.py:4060 msgid "Round up required production quantity to nearest multiple of this value" msgstr "" -#: part/models.py:4443 +#: part/models.py:4068 msgid "BOM item reference" msgstr "Tham chiếu mục BOM" -#: part/models.py:4451 +#: part/models.py:4076 msgid "BOM item notes" msgstr "Ghi chú mục BOM" -#: part/models.py:4457 +#: part/models.py:4082 msgid "Checksum" msgstr "Giá trị tổng kiểm" -#: part/models.py:4458 +#: part/models.py:4083 msgid "BOM line checksum" msgstr "Giá trị tổng kiểm dòng BOM" -#: part/models.py:4463 +#: part/models.py:4088 msgid "Validated" msgstr "Đã xác minh" -#: part/models.py:4464 +#: part/models.py:4089 msgid "This BOM item has been validated" msgstr "Mục BOM này là hợp lệ" -#: part/models.py:4469 +#: part/models.py:4094 msgid "Gets inherited" msgstr "Nhận thừa hưởng" -#: part/models.py:4470 +#: part/models.py:4095 msgid "This BOM item is inherited by BOMs for variant parts" msgstr "Mục BOM này được thừa kế bởi BOM cho sản phẩm biến thể" -#: part/models.py:4476 +#: part/models.py:4101 msgid "Stock items for variant parts can be used for this BOM item" msgstr "Hàng trong kho cho sản phẩm biến thể có thể được dùng bởi mục BOM này" -#: part/models.py:4583 stock/models.py:925 +#: part/models.py:4208 stock/models.py:925 msgid "Quantity must be integer value for trackable parts" msgstr "Số lượng phải là giá trị nguyên dùng cho sản phẩm có thể theo dõi được" -#: part/models.py:4593 part/models.py:4595 +#: part/models.py:4218 part/models.py:4220 msgid "Sub part must be specified" msgstr "Sản phẩm phụ phải được chỉ định" -#: part/models.py:4746 +#: part/models.py:4371 msgid "BOM Item Substitute" msgstr "Sảm phẩm thay thế mục BOM" -#: part/models.py:4767 +#: part/models.py:4392 msgid "Substitute part cannot be the same as the master part" msgstr "Sản phẩm thay thế không thể giống sản phẩm chủ đạo" -#: part/models.py:4780 +#: part/models.py:4405 msgid "Parent BOM item" msgstr "Hàng hóa BOM cha" -#: part/models.py:4788 +#: part/models.py:4413 msgid "Substitute part" msgstr "Sản phẩm thay thế" -#: part/models.py:4804 +#: part/models.py:4429 msgid "Part 1" msgstr "Sản phẩm 1" -#: part/models.py:4812 +#: part/models.py:4437 msgid "Part 2" msgstr "Sản phẩm 2" -#: part/models.py:4813 +#: part/models.py:4438 msgid "Select Related Part" msgstr "Chọn sản phẩm liên quan" -#: part/models.py:4820 +#: part/models.py:4445 msgid "Note for this relationship" msgstr "" -#: part/models.py:4839 +#: part/models.py:4464 msgid "Part relationship cannot be created between a part and itself" msgstr "Không thể tạo mối quan hệ giữa một sản phẩm và chính nó" -#: part/models.py:4844 +#: part/models.py:4469 msgid "Duplicate relationship already exists" msgstr "Đã tồn tại mối quan hệ trùng lặp" -#: part/serializers.py:114 +#: part/serializers.py:113 msgid "Parent Category" msgstr "" -#: part/serializers.py:115 +#: part/serializers.py:114 msgid "Parent part category" msgstr "" -#: part/serializers.py:123 part/serializers.py:164 +#: part/serializers.py:122 part/serializers.py:163 msgid "Subcategories" msgstr "Phụ mục" -#: part/serializers.py:203 +#: part/serializers.py:202 msgid "Results" msgstr "" -#: part/serializers.py:204 +#: part/serializers.py:203 msgid "Number of results recorded against this template" msgstr "" -#: part/serializers.py:235 part/serializers.py:253 stock/serializers.py:643 +#: part/serializers.py:234 part/serializers.py:252 stock/serializers.py:643 msgid "Purchase currency of this stock item" msgstr "Loại tiền mua hàng của hàng hóa này" -#: part/serializers.py:280 +#: part/serializers.py:279 msgid "File is not an image" msgstr "" -#: part/serializers.py:311 -msgid "Number of parts using this template" -msgstr "" - -#: part/serializers.py:471 +#: part/serializers.py:382 msgid "Original Part" msgstr "Sản phẩm gốc" -#: part/serializers.py:472 +#: part/serializers.py:383 msgid "Select original part to duplicate" msgstr "Chọn sản phẩm gốc để nhân bản" -#: part/serializers.py:477 +#: part/serializers.py:388 msgid "Copy Image" msgstr "Sao chép ảnh" -#: part/serializers.py:478 +#: part/serializers.py:389 msgid "Copy image from original part" msgstr "Sao chép hình ảnh từ sản phẩm gốc" -#: part/serializers.py:484 +#: part/serializers.py:395 msgid "Copy BOM" msgstr "Sao chép BOM" -#: part/serializers.py:485 +#: part/serializers.py:396 msgid "Copy bill of materials from original part" msgstr "Sao chép định mức nguyên vật liệu từ sản phẩm gốc" -#: part/serializers.py:491 +#: part/serializers.py:402 msgid "Copy Parameters" msgstr "Sao chép thông số" -#: part/serializers.py:492 +#: part/serializers.py:403 msgid "Copy parameter data from original part" msgstr "Sao chép thông tin tham số từ sản phẩm gốc" -#: part/serializers.py:498 +#: part/serializers.py:409 msgid "Copy Notes" msgstr "Sao chép ghi chú" -#: part/serializers.py:499 +#: part/serializers.py:410 msgid "Copy notes from original part" msgstr "Sao chép ghi chú từ sản phẩm gốc" -#: part/serializers.py:505 +#: part/serializers.py:416 msgid "Copy Tests" msgstr "" -#: part/serializers.py:506 +#: part/serializers.py:417 msgid "Copy test templates from original part" msgstr "" -#: part/serializers.py:524 +#: part/serializers.py:435 msgid "Initial Stock Quantity" msgstr "Số liệu tồn kho ban đầu" -#: part/serializers.py:526 +#: part/serializers.py:437 msgid "Specify initial stock quantity for this Part. If quantity is zero, no stock is added." msgstr "Chỉ ra số lượng tồn kho ban đầu cho sản phẩm. Nếu điền là không, không thêm kho nào." -#: part/serializers.py:533 +#: part/serializers.py:444 msgid "Initial Stock Location" msgstr "Vị trí kho ban đầu" -#: part/serializers.py:534 +#: part/serializers.py:445 msgid "Specify initial stock location for this Part" msgstr "Chỉ định vị trí kho ban đầu cho sản phẩm này" -#: part/serializers.py:551 +#: part/serializers.py:462 msgid "Select supplier (or leave blank to skip)" msgstr "Chọn nhà cung cấp (hoặc để trống để bỏ qua)" -#: part/serializers.py:567 +#: part/serializers.py:478 msgid "Select manufacturer (or leave blank to skip)" msgstr "Chọn nhà sản xuất (hoặc để trống để bỏ qua)" -#: part/serializers.py:577 +#: part/serializers.py:488 msgid "Manufacturer part number" msgstr "Mã số nhà sản xuất" -#: part/serializers.py:584 +#: part/serializers.py:495 msgid "Selected company is not a valid supplier" msgstr "Công ty đã chọn không phải là nhà cung ứng hợp lệ" -#: part/serializers.py:593 +#: part/serializers.py:504 msgid "Selected company is not a valid manufacturer" msgstr "Công ty đã chọn không phải là nhà sản xuất hợp lệ" -#: part/serializers.py:604 +#: part/serializers.py:515 msgid "Manufacturer part matching this MPN already exists" msgstr "Mã số nhà sản xuất khớp với MPN này đã tồn tại" -#: part/serializers.py:611 +#: part/serializers.py:522 msgid "Supplier part matching this SKU already exists" msgstr "Mã số nhà cung cấp khớp với SKU này đã tồn tại" -#: part/serializers.py:914 +#: part/serializers.py:799 msgid "Category Name" msgstr "Tên danh mục" -#: part/serializers.py:943 +#: part/serializers.py:828 msgid "Building" msgstr "Đang dựng" -#: part/serializers.py:944 +#: part/serializers.py:829 msgid "Quantity of this part currently being in production" msgstr "" -#: part/serializers.py:951 +#: part/serializers.py:836 msgid "Outstanding quantity of this part scheduled to be built" msgstr "" -#: part/serializers.py:971 stock/serializers.py:1019 stock/serializers.py:1189 +#: part/serializers.py:856 stock/serializers.py:1019 stock/serializers.py:1189 #: users/ruleset.py:30 msgid "Stock Items" msgstr "Hàng trong kho" -#: part/serializers.py:975 +#: part/serializers.py:860 msgid "Revisions" msgstr "" -#: part/serializers.py:979 +#: part/serializers.py:864 msgid "Suppliers" msgstr "Nhà cung cấp" -#: part/serializers.py:983 part/serializers.py:1297 +#: part/serializers.py:868 part/serializers.py:1162 #: templates/email/low_stock_notification.html:16 #: templates/email/part_event_notification.html:17 msgid "Total Stock" msgstr "Tổng số lượng" -#: part/serializers.py:991 +#: part/serializers.py:876 msgid "Unallocated Stock" msgstr "" -#: part/serializers.py:999 +#: part/serializers.py:884 msgid "Variant Stock" msgstr "" -#: part/serializers.py:1054 +#: part/serializers.py:943 msgid "Duplicate Part" msgstr "Nhân bản sản phẩm" -#: part/serializers.py:1055 +#: part/serializers.py:944 msgid "Copy initial data from another Part" msgstr "Sao chép dữ liệu ban đầu từ sản phẩm khác" -#: part/serializers.py:1061 +#: part/serializers.py:950 msgid "Initial Stock" msgstr "Số liệu kho ban đầu" -#: part/serializers.py:1062 +#: part/serializers.py:951 msgid "Create Part with initial stock quantity" msgstr "Tạo sản phẩm với số lượng tồn kho ban đầu" -#: part/serializers.py:1068 +#: part/serializers.py:957 msgid "Supplier Information" msgstr "Thông tin nhà cung cấp" -#: part/serializers.py:1069 +#: part/serializers.py:958 msgid "Add initial supplier information for this part" msgstr "Thêm thông tin nhà cung cấp ban đầu cho sản phẩm này" -#: part/serializers.py:1077 +#: part/serializers.py:966 msgid "Copy Category Parameters" msgstr "Sao chép thông số nhóm hàng" -#: part/serializers.py:1078 +#: part/serializers.py:967 msgid "Copy parameter templates from selected part category" msgstr "Sao chép mẫu tham số từ nhóm sản phẩm được chọn" -#: part/serializers.py:1083 +#: part/serializers.py:972 msgid "Existing Image" msgstr "Ảnh hiện có" -#: part/serializers.py:1084 +#: part/serializers.py:973 msgid "Filename of an existing part image" msgstr "Tên tệp của ảnh sản phẩm hiện hữu" -#: part/serializers.py:1101 +#: part/serializers.py:990 msgid "Image file does not exist" msgstr "Tệp hình ảnh không tồn tại" -#: part/serializers.py:1269 +#: part/serializers.py:1134 msgid "Validate entire Bill of Materials" msgstr "Xác minh toàn bộ hóa đơn vật liệu" -#: part/serializers.py:1303 part/serializers.py:1769 +#: part/serializers.py:1168 part/serializers.py:1634 msgid "Can Build" msgstr "Có thể dựng" -#: part/serializers.py:1320 +#: part/serializers.py:1185 msgid "Required for Build Orders" msgstr "" -#: part/serializers.py:1325 +#: part/serializers.py:1190 msgid "Allocated to Build Orders" msgstr "" -#: part/serializers.py:1332 +#: part/serializers.py:1197 msgid "Required for Sales Orders" msgstr "" -#: part/serializers.py:1336 +#: part/serializers.py:1201 msgid "Allocated to Sales Orders" msgstr "" -#: part/serializers.py:1475 +#: part/serializers.py:1340 msgid "Minimum Price" msgstr "Giá thấp nhất" -#: part/serializers.py:1476 +#: part/serializers.py:1341 msgid "Override calculated value for minimum price" msgstr "Giá trị tính toán ghi đè cho giá tối thiểu" -#: part/serializers.py:1483 +#: part/serializers.py:1348 msgid "Minimum price currency" msgstr "Tiền tế giá tối thiểu" -#: part/serializers.py:1490 +#: part/serializers.py:1355 msgid "Maximum Price" msgstr "Giá cao nhất" -#: part/serializers.py:1491 +#: part/serializers.py:1356 msgid "Override calculated value for maximum price" msgstr "Giá trị tính toán ghi đè cho giá tối đa" -#: part/serializers.py:1498 +#: part/serializers.py:1363 msgid "Maximum price currency" msgstr "Tiền tế giá tối đa" -#: part/serializers.py:1527 +#: part/serializers.py:1392 msgid "Update" msgstr "Cập nhật" -#: part/serializers.py:1528 +#: part/serializers.py:1393 msgid "Update pricing for this part" msgstr "Cập nhật giá cho sản phẩm này" -#: part/serializers.py:1551 +#: part/serializers.py:1416 #, python-brace-format msgid "Could not convert from provided currencies to {default_currency}" msgstr "Không thể chuyển đổi từ tiền tệ đã cung cấp cho {default_currency}" -#: part/serializers.py:1558 +#: part/serializers.py:1423 msgid "Minimum price must not be greater than maximum price" msgstr "Giá tối thiểu không được lớn hơn giá tối đa" -#: part/serializers.py:1561 +#: part/serializers.py:1426 msgid "Maximum price must not be less than minimum price" msgstr "Giá tối đa không được nhỏ hơn giá tối thiểu" -#: part/serializers.py:1715 +#: part/serializers.py:1580 msgid "Select the parent assembly" msgstr "" -#: part/serializers.py:1735 +#: part/serializers.py:1600 msgid "Select the component part" msgstr "" -#: part/serializers.py:1929 +#: part/serializers.py:1802 msgid "Select part to copy BOM from" msgstr "Chọn sản phẩm để sao chép định mức nguyên vật liệu" -#: part/serializers.py:1937 +#: part/serializers.py:1810 msgid "Remove Existing Data" msgstr "Xóa dữ liệu đã tồn tại" -#: part/serializers.py:1938 +#: part/serializers.py:1811 msgid "Remove existing BOM items before copying" msgstr "Xóa mục BOM đã tồn tại trước khi sao chép" -#: part/serializers.py:1943 +#: part/serializers.py:1816 msgid "Include Inherited" msgstr "Bao gồm thừa hưởng" -#: part/serializers.py:1944 +#: part/serializers.py:1817 msgid "Include BOM items which are inherited from templated parts" msgstr "Bao gồm mục BOM được thừa hưởng từ sản phẩm mẫu" -#: part/serializers.py:1949 +#: part/serializers.py:1822 msgid "Skip Invalid Rows" msgstr "Bỏ qua dòng không hợp lệ" -#: part/serializers.py:1950 +#: part/serializers.py:1823 msgid "Enable this option to skip invalid rows" msgstr "Bật tùy chọn này để bỏ qua dòng không hợp lệ" -#: part/serializers.py:1955 +#: part/serializers.py:1828 msgid "Copy Substitute Parts" msgstr "Sao chép sản phẩm thay thế" -#: part/serializers.py:1956 +#: part/serializers.py:1829 msgid "Copy substitute parts when duplicate BOM items" msgstr "Sao chép sản phẩm thay thế khi nhân bản hàng hóa BOM" @@ -6927,7 +6974,7 @@ msgstr "Cung cấp hỗ trợ gốc cho mã vạch" #: plugin/builtin/events/auto_issue_orders.py:19 #: plugin/builtin/exporter/bom_exporter.py:73 #: plugin/builtin/exporter/inventree_exporter.py:17 -#: plugin/builtin/exporter/part_parameter_exporter.py:36 +#: plugin/builtin/exporter/parameter_exporter.py:32 #: plugin/builtin/exporter/stocktake_exporter.py:47 #: plugin/builtin/integration/core_notifications.py:25 #: plugin/builtin/integration/core_notifications.py:69 @@ -7041,23 +7088,19 @@ msgid "Include total quantity of each part in the BOM" msgstr "" #: plugin/builtin/exporter/bom_exporter.py:35 -#: plugin/builtin/exporter/part_parameter_exporter.py:17 msgid "Stock Data" msgstr "" #: plugin/builtin/exporter/bom_exporter.py:35 -#: plugin/builtin/exporter/part_parameter_exporter.py:17 msgid "Include part stock data" msgstr "" #: plugin/builtin/exporter/bom_exporter.py:39 -#: plugin/builtin/exporter/part_parameter_exporter.py:21 #: plugin/builtin/exporter/stocktake_exporter.py:20 msgid "Pricing Data" msgstr "" #: plugin/builtin/exporter/bom_exporter.py:39 -#: plugin/builtin/exporter/part_parameter_exporter.py:21 #: plugin/builtin/exporter/stocktake_exporter.py:20 msgid "Include part pricing data" msgstr "" @@ -7144,12 +7187,20 @@ msgstr "" msgid "Provides support for exporting data from InvenTree" msgstr "" -#: plugin/builtin/exporter/part_parameter_exporter.py:33 -msgid "Part Parameter Exporter" +#: plugin/builtin/exporter/parameter_exporter.py:16 +msgid "Exclude Inactive" msgstr "" -#: plugin/builtin/exporter/part_parameter_exporter.py:34 -msgid "Exporter for part parameter data" +#: plugin/builtin/exporter/parameter_exporter.py:17 +msgid "Exclude parameters which are inactive" +msgstr "" + +#: plugin/builtin/exporter/parameter_exporter.py:29 +msgid "Parameter Exporter" +msgstr "" + +#: plugin/builtin/exporter/parameter_exporter.py:30 +msgid "Exporter for model parameter data" msgstr "" #: plugin/builtin/exporter/stocktake_exporter.py:25 @@ -8079,19 +8130,19 @@ msgstr "Không có kết quả (bắt buộc)" msgid "No result" msgstr "Không có kết quả" -#: report/templatetags/report.py:167 +#: report/templatetags/report.py:169 msgid "Asset file does not exist" msgstr "Tệp tin tài sản không tồn tại" -#: report/templatetags/report.py:224 report/templatetags/report.py:300 +#: report/templatetags/report.py:226 report/templatetags/report.py:302 msgid "Image file not found" msgstr "Không tìm thấy tệp hình ảnh" -#: report/templatetags/report.py:325 +#: report/templatetags/report.py:327 msgid "part_image tag requires a Part instance" msgstr "thẻ part_image yêu cầu 1 thực thể sản phẩm" -#: report/templatetags/report.py:362 +#: report/templatetags/report.py:383 msgid "company_image tag requires a Company instance" msgstr "thẻ company_image yêu cầu một thực thể doanh nghiệp" @@ -8455,115 +8506,119 @@ msgstr "" msgid "Quantity does not match serial numbers" msgstr "Số lượng không khớp với số sêri" -#: stock/models.py:2012 stock/models.py:2917 +#: stock/models.py:1912 +msgid "Cannot assign stock to structural location" +msgstr "" + +#: stock/models.py:2029 stock/models.py:2934 msgid "Test template does not exist" msgstr "" -#: stock/models.py:2030 +#: stock/models.py:2047 msgid "Stock item has been assigned to a sales order" msgstr "Hàng trong kho đã được gán vào đơn hàng bán" -#: stock/models.py:2034 +#: stock/models.py:2051 msgid "Stock item is installed in another item" msgstr "Hàng trong kho đã được cài đặt vào hàng hóa khác" -#: stock/models.py:2037 +#: stock/models.py:2054 msgid "Stock item contains other items" msgstr "Hàng trong kho chứa hàng hóa khác" -#: stock/models.py:2040 +#: stock/models.py:2057 msgid "Stock item has been assigned to a customer" msgstr "Hàng trong kho đã được gắn với một khách hàng" -#: stock/models.py:2043 stock/models.py:2226 +#: stock/models.py:2060 stock/models.py:2243 msgid "Stock item is currently in production" msgstr "Hàng trong kho hiện đang sản xuất" -#: stock/models.py:2046 +#: stock/models.py:2063 msgid "Serialized stock cannot be merged" msgstr "Không thể hợp nhất kho nối tiếp" -#: stock/models.py:2053 stock/serializers.py:1462 +#: stock/models.py:2070 stock/serializers.py:1462 msgid "Duplicate stock items" msgstr "Mặt hàng trùng lặp" -#: stock/models.py:2057 +#: stock/models.py:2074 msgid "Stock items must refer to the same part" msgstr "Mặt hàng phải tham chiếu đến sản phẩm tương tự" -#: stock/models.py:2065 +#: stock/models.py:2082 msgid "Stock items must refer to the same supplier part" msgstr "Mặt hàng phải tham chiếu đến sản phẩm nhà cung cấp tương tự" -#: stock/models.py:2070 +#: stock/models.py:2087 msgid "Stock status codes must match" msgstr "Mã trạng thái kho phải phù hợp" -#: stock/models.py:2349 +#: stock/models.py:2366 msgid "StockItem cannot be moved as it is not in stock" msgstr "Không thể xóa mặt hàng không ở trong kho" -#: stock/models.py:2818 +#: stock/models.py:2835 msgid "Stock Item Tracking" msgstr "" -#: stock/models.py:2849 +#: stock/models.py:2866 msgid "Entry notes" msgstr "Ghi chú đầu vào" -#: stock/models.py:2889 +#: stock/models.py:2906 msgid "Stock Item Test Result" msgstr "" -#: stock/models.py:2920 +#: stock/models.py:2937 msgid "Value must be provided for this test" msgstr "Phải cung cấp giá trị cho kiểm thử này" -#: stock/models.py:2924 +#: stock/models.py:2941 msgid "Attachment must be uploaded for this test" msgstr "Phải tải liên đính kèm cho kiểm thử này" -#: stock/models.py:2929 +#: stock/models.py:2946 msgid "Invalid value for this test" msgstr "" -#: stock/models.py:2953 +#: stock/models.py:2970 msgid "Test result" msgstr "Kết quả kiểm thử" -#: stock/models.py:2960 +#: stock/models.py:2977 msgid "Test output value" msgstr "Giá trị đầu ra kiểm thử" -#: stock/models.py:2968 stock/serializers.py:248 +#: stock/models.py:2985 stock/serializers.py:248 msgid "Test result attachment" msgstr "Đính kèm kết quả kiểm thử" -#: stock/models.py:2972 +#: stock/models.py:2989 msgid "Test notes" msgstr "Ghi chú kiểm thử" -#: stock/models.py:2980 +#: stock/models.py:2997 msgid "Test station" msgstr "" -#: stock/models.py:2981 +#: stock/models.py:2998 msgid "The identifier of the test station where the test was performed" msgstr "" -#: stock/models.py:2987 +#: stock/models.py:3004 msgid "Started" msgstr "" -#: stock/models.py:2988 +#: stock/models.py:3005 msgid "The timestamp of the test start" msgstr "" -#: stock/models.py:2994 +#: stock/models.py:3011 msgid "Finished" msgstr "" -#: stock/models.py:2995 +#: stock/models.py:3012 msgid "The timestamp of the test finish" msgstr "" @@ -8677,8 +8732,8 @@ msgstr "" msgid "Quantity must not exceed available stock quantity ({q})" msgstr "Số lượng phải không vượt quá số lượng trong kho đang có ({q})" -#: stock/serializers.py:711 stock/serializers.py:1419 stock/serializers.py:1732 -#: stock/serializers.py:1781 +#: stock/serializers.py:711 stock/serializers.py:1419 stock/serializers.py:1740 +#: stock/serializers.py:1789 msgid "Destination stock location" msgstr "Vị trí kho đích" @@ -8834,19 +8889,19 @@ msgstr "" msgid "Stock transaction notes" msgstr "Ghi chú giao dịch kho" -#: stock/serializers.py:1787 +#: stock/serializers.py:1795 msgid "Merge into existing stock" msgstr "" -#: stock/serializers.py:1788 +#: stock/serializers.py:1796 msgid "Merge returned items into existing stock items if possible" msgstr "" -#: stock/serializers.py:1831 +#: stock/serializers.py:1839 msgid "Next Serial Number" msgstr "" -#: stock/serializers.py:1837 +#: stock/serializers.py:1845 msgid "Previous Serial Number" msgstr "" @@ -8902,83 +8957,87 @@ msgstr "Kho được thêm thủ công" msgid "Stock manually removed" msgstr "Kho được xóa thủ công" -#: stock/status_codes.py:57 +#: stock/status_codes.py:56 +msgid "Serialized stock items" +msgstr "" + +#: stock/status_codes.py:58 msgid "Returned to stock" msgstr "" -#: stock/status_codes.py:60 +#: stock/status_codes.py:61 msgid "Location changed" msgstr "Vị trí đã thay đổi" -#: stock/status_codes.py:61 +#: stock/status_codes.py:62 msgid "Stock updated" msgstr "Kho hàng đã được cập nhật" -#: stock/status_codes.py:64 +#: stock/status_codes.py:65 msgid "Installed into assembly" msgstr "Đã cài đặt vào bộ phận lắp ráp" -#: stock/status_codes.py:65 +#: stock/status_codes.py:66 msgid "Removed from assembly" msgstr "Di rời khỏi bộ phận lắp ráp" -#: stock/status_codes.py:67 +#: stock/status_codes.py:68 msgid "Installed component item" msgstr "Mục thành phần đã cài đặt" -#: stock/status_codes.py:68 +#: stock/status_codes.py:69 msgid "Removed component item" msgstr "Mục thành phần đã di rời" -#: stock/status_codes.py:71 +#: stock/status_codes.py:72 msgid "Split from parent item" msgstr "Tách từ mục cha" -#: stock/status_codes.py:72 +#: stock/status_codes.py:73 msgid "Split child item" msgstr "Tách mục con" -#: stock/status_codes.py:75 +#: stock/status_codes.py:76 msgid "Merged stock items" msgstr "Kho hàng đã được gộp" -#: stock/status_codes.py:78 +#: stock/status_codes.py:79 msgid "Converted to variant" msgstr "Đã chuyển đổi sang biến thể" -#: stock/status_codes.py:81 +#: stock/status_codes.py:82 msgid "Build order output created" msgstr "Đầu ra đơn đặt bản dựng đã được tạo" -#: stock/status_codes.py:82 +#: stock/status_codes.py:83 msgid "Build order output completed" msgstr "Đầu ra đơn đặt bản dựng đã hoàn thành" -#: stock/status_codes.py:83 +#: stock/status_codes.py:84 msgid "Build order output rejected" msgstr "Đầu ra đơn đặt bản dựng bị từ chối" -#: stock/status_codes.py:84 +#: stock/status_codes.py:85 msgid "Consumed by build order" msgstr "Tiêu hao bởi đơn đặt bản dựng" -#: stock/status_codes.py:87 +#: stock/status_codes.py:88 msgid "Shipped against Sales Order" msgstr "Vận chyển dựa vào đơn đặt bản dựng" -#: stock/status_codes.py:90 +#: stock/status_codes.py:91 msgid "Received against Purchase Order" msgstr "Đã nhận dựa vào đơn đặt hàng mua" -#: stock/status_codes.py:93 +#: stock/status_codes.py:94 msgid "Returned against Return Order" msgstr "Trả hành dựa vào đơn hàng trả lại" -#: stock/status_codes.py:96 +#: stock/status_codes.py:97 msgid "Sent to customer" msgstr "Gửi đến khách hàng" -#: stock/status_codes.py:97 +#: stock/status_codes.py:98 msgid "Returned from customer" msgstr "Bị trả lại từ khách hàng" diff --git a/src/backend/InvenTree/locale/zh_Hans/LC_MESSAGES/django.po b/src/backend/InvenTree/locale/zh_Hans/LC_MESSAGES/django.po index 48ee471397..d0ef668039 100644 --- a/src/backend/InvenTree/locale/zh_Hans/LC_MESSAGES/django.po +++ b/src/backend/InvenTree/locale/zh_Hans/LC_MESSAGES/django.po @@ -2,8 +2,8 @@ msgid "" msgstr "" "Project-Id-Version: inventree\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-11-19 04:55+0000\n" -"PO-Revision-Date: 2025-11-19 04:59\n" +"POT-Creation-Date: 2025-12-07 07:33+0000\n" +"PO-Revision-Date: 2025-12-07 07:36\n" "Last-Translator: \n" "Language-Team: Chinese Simplified\n" "Language: zh_CN\n" @@ -57,7 +57,7 @@ msgstr "未提供数据" msgid "This field must be unique." msgstr "此字段的值必须是唯一的。" -#: InvenTree/api.py:775 +#: InvenTree/api.py:803 msgid "User does not have permission to view this model" msgstr "用户没有权限查阅当前模型。" @@ -81,22 +81,22 @@ msgstr "提供的主电子邮件地址无效。" msgid "The provided email domain is not approved." msgstr "提供的邮箱域名未被批准。" -#: InvenTree/conversion.py:166 +#: InvenTree/conversion.py:240 #, python-brace-format msgid "Invalid unit provided ({unit})" msgstr "提供了无效的单位 ({unit})" -#: InvenTree/conversion.py:183 +#: InvenTree/conversion.py:257 msgid "No value provided" msgstr "没有提供数值" -#: InvenTree/conversion.py:210 +#: InvenTree/conversion.py:284 #, python-brace-format msgid "Could not convert {original} to {unit}" msgstr "不能将 {original} 转换到 {unit}" -#: InvenTree/conversion.py:212 InvenTree/conversion.py:226 -#: InvenTree/helpers.py:597 order/models.py:720 order/models.py:1015 +#: InvenTree/conversion.py:286 InvenTree/conversion.py:300 +#: InvenTree/helpers.py:597 order/models.py:721 order/models.py:1016 msgid "Invalid quantity provided" msgstr "提供的数量无效" @@ -112,11 +112,11 @@ msgstr "输入日期" msgid "Invalid decimal value" msgstr "无效的数值" -#: InvenTree/fields.py:218 InvenTree/models.py:1067 build/serializers.py:509 -#: build/serializers.py:580 build/serializers.py:1788 company/models.py:857 -#: order/models.py:1780 +#: InvenTree/fields.py:218 InvenTree/models.py:1228 build/serializers.py:517 +#: build/serializers.py:588 build/serializers.py:1796 company/models.py:811 +#: order/models.py:1781 #: report/templates/report/inventree_build_order_report.html:172 -#: stock/models.py:2848 stock/models.py:2972 stock/serializers.py:717 +#: stock/models.py:2865 stock/models.py:2989 stock/serializers.py:717 #: stock/serializers.py:893 stock/serializers.py:1035 stock/serializers.py:1336 #: stock/serializers.py:1425 stock/serializers.py:1624 msgid "Notes" @@ -171,35 +171,35 @@ msgstr "从这个值中删除 HTML 标签" msgid "Data contains prohibited markdown content" msgstr "数据包含禁止的 markdown 内容" -#: InvenTree/helpers_model.py:133 +#: InvenTree/helpers_model.py:134 msgid "Connection error" msgstr "连接错误" -#: InvenTree/helpers_model.py:138 InvenTree/helpers_model.py:145 +#: InvenTree/helpers_model.py:139 InvenTree/helpers_model.py:146 msgid "Server responded with invalid status code" msgstr "服务器响应状态码无效" -#: InvenTree/helpers_model.py:141 +#: InvenTree/helpers_model.py:142 msgid "Exception occurred" msgstr "发生异常" -#: InvenTree/helpers_model.py:151 +#: InvenTree/helpers_model.py:152 msgid "Server responded with invalid Content-Length value" msgstr "服务器响应的内容长度值无效" -#: InvenTree/helpers_model.py:154 +#: InvenTree/helpers_model.py:155 msgid "Image size is too large" msgstr "图片尺寸过大" -#: InvenTree/helpers_model.py:166 +#: InvenTree/helpers_model.py:167 msgid "Image download exceeded maximum size" msgstr "图片下载超出最大尺寸" -#: InvenTree/helpers_model.py:171 +#: InvenTree/helpers_model.py:172 msgid "Remote server returned empty response" msgstr "远程服务器返回了空响应" -#: InvenTree/helpers_model.py:179 +#: InvenTree/helpers_model.py:180 msgid "Supplied URL is not a valid image file" msgstr "提供的 URL 不是一个有效的图片文件" @@ -207,7 +207,7 @@ msgstr "提供的 URL 不是一个有效的图片文件" msgid "Log in to the app" msgstr "登录应用程序" -#: InvenTree/magic_login.py:41 company/models.py:172 users/serializers.py:198 +#: InvenTree/magic_login.py:41 company/models.py:173 users/serializers.py:198 msgid "Email" msgstr "电子邮件" @@ -215,160 +215,176 @@ msgstr "电子邮件" msgid "You must enable two-factor authentication before doing anything else." msgstr "您必须启用双重身份验证才能进行后续操作。" -#: InvenTree/models.py:111 +#: InvenTree/models.py:114 msgid "Error running plugin validation" msgstr "运行插件验证时出错" -#: InvenTree/models.py:192 +#: InvenTree/models.py:195 msgid "Metadata must be a python dict object" msgstr "元数据必须是 Python dict 对象" -#: InvenTree/models.py:198 +#: InvenTree/models.py:201 msgid "Plugin Metadata" msgstr "插件元数据" -#: InvenTree/models.py:199 +#: InvenTree/models.py:202 msgid "JSON metadata field, for use by external plugins" msgstr "供外部插件使用的JSON元数据字段" -#: InvenTree/models.py:382 +#: InvenTree/models.py:385 msgid "Improperly formatted pattern" msgstr "格式错误" -#: InvenTree/models.py:389 +#: InvenTree/models.py:392 msgid "Unknown format key specified" msgstr "使用了未知的格式键值" -#: InvenTree/models.py:395 +#: InvenTree/models.py:398 msgid "Missing required format key" msgstr "缺少必需的格式键值" -#: InvenTree/models.py:406 +#: InvenTree/models.py:409 msgid "Reference field cannot be empty" msgstr "参考字段不能为空" -#: InvenTree/models.py:414 +#: InvenTree/models.py:417 msgid "Reference must match required pattern" msgstr "参考字段必须符合指定格式" -#: InvenTree/models.py:445 +#: InvenTree/models.py:448 msgid "Reference number is too large" msgstr "参考编号过大" -#: InvenTree/models.py:743 +#: InvenTree/models.py:896 msgid "Invalid choice" msgstr "无效选项" -#: InvenTree/models.py:856 common/models.py:1410 common/models.py:1837 -#: common/models.py:2096 common/models.py:2221 common/serializers.py:535 -#: company/models.py:615 generic/states/serializers.py:20 machine/models.py:25 -#: part/models.py:1039 part/models.py:3850 plugin/models.py:54 +#: InvenTree/models.py:1017 common/models.py:1414 common/models.py:1841 +#: common/models.py:2102 common/models.py:2227 common/models.py:2494 +#: common/serializers.py:539 generic/states/serializers.py:20 +#: machine/models.py:25 part/models.py:1127 plugin/models.py:54 #: report/models.py:216 stock/models.py:84 msgid "Name" msgstr "名称" -#: InvenTree/models.py:862 build/models.py:252 common/models.py:171 -#: common/models.py:2228 common/models.py:2341 company/models.py:543 -#: company/models.py:848 order/models.py:442 order/models.py:1825 -#: part/models.py:1062 part/models.py:3865 report/models.py:222 +#: InvenTree/models.py:1023 build/models.py:253 common/models.py:175 +#: common/models.py:2234 common/models.py:2347 common/models.py:2509 +#: company/models.py:545 company/models.py:802 order/models.py:443 +#: order/models.py:1826 part/models.py:1150 report/models.py:222 #: report/models.py:815 report/models.py:841 #: report/templates/report/inventree_build_order_report.html:117 #: stock/models.py:90 msgid "Description" msgstr "描述" -#: InvenTree/models.py:863 stock/models.py:91 +#: InvenTree/models.py:1024 stock/models.py:91 msgid "Description (optional)" msgstr "描述(选填)" -#: InvenTree/models.py:878 common/models.py:2394 +#: InvenTree/models.py:1039 common/models.py:2815 msgid "Path" msgstr "路径" -#: InvenTree/models.py:983 +#: InvenTree/models.py:1144 msgid "Duplicate names cannot exist under the same parent" msgstr "同一父级下不能存在重复名称" -#: InvenTree/models.py:1067 +#: InvenTree/models.py:1228 msgid "Markdown notes (optional)" msgstr "Markdown备注(选填)" -#: InvenTree/models.py:1098 +#: InvenTree/models.py:1259 msgid "Barcode Data" msgstr "条码数据" -#: InvenTree/models.py:1099 +#: InvenTree/models.py:1260 msgid "Third party barcode data" msgstr "第三方条码数据" -#: InvenTree/models.py:1105 +#: InvenTree/models.py:1266 msgid "Barcode Hash" msgstr "条码哈希值" -#: InvenTree/models.py:1106 +#: InvenTree/models.py:1267 msgid "Unique hash of barcode data" msgstr "条码数据的唯一哈希值" -#: InvenTree/models.py:1187 +#: InvenTree/models.py:1348 msgid "Existing barcode found" msgstr "检测到已存在条码" -#: InvenTree/models.py:1269 +#: InvenTree/models.py:1430 msgid "Task Failure" msgstr "任务失败" -#: InvenTree/models.py:1270 +#: InvenTree/models.py:1431 #, python-brace-format msgid "Background worker task '{f}' failed after {n} attempts" msgstr "后台工作任务“{f}”在 {n} 次尝试后失败" -#: InvenTree/models.py:1297 +#: InvenTree/models.py:1458 msgid "Server Error" msgstr "服务器错误" -#: InvenTree/models.py:1298 +#: InvenTree/models.py:1459 msgid "An error has been logged by the server." msgstr "服务器记录了一个错误。" -#: InvenTree/models.py:1340 common/models.py:1748 +#: InvenTree/models.py:1501 common/models.py:1752 #: report/templates/report/inventree_bill_of_materials_report.html:126 #: report/templates/report/inventree_bill_of_materials_report.html:148 #: report/templates/report/inventree_return_order_report.html:35 msgid "Image" msgstr "图像" -#: InvenTree/serializers.py:253 part/models.py:4571 +#: InvenTree/serializers.py:255 part/models.py:4196 msgid "Must be a valid number" msgstr "必须是有效数字" -#: InvenTree/serializers.py:295 company/models.py:214 part/models.py:3285 +#: InvenTree/serializers.py:297 company/models.py:215 part/models.py:3349 msgid "Currency" msgstr "货币" -#: InvenTree/serializers.py:298 part/serializers.py:1385 +#: InvenTree/serializers.py:300 part/serializers.py:1250 msgid "Select currency from available options" msgstr "从可用选项中选择货币" -#: InvenTree/serializers.py:653 +#: InvenTree/serializers.py:654 +msgid "This field may not be null." +msgstr "" + +#: InvenTree/serializers.py:660 msgid "Invalid value" msgstr "无效值" -#: InvenTree/serializers.py:690 +#: InvenTree/serializers.py:697 msgid "Remote Image" msgstr "远程图片" -#: InvenTree/serializers.py:691 +#: InvenTree/serializers.py:698 msgid "URL of remote image file" msgstr "远程图片文件的 URL" -#: InvenTree/serializers.py:709 +#: InvenTree/serializers.py:716 msgid "Downloading images from remote URL is not enabled" msgstr "未启用从远程 URL下载图片" -#: InvenTree/serializers.py:716 +#: InvenTree/serializers.py:723 msgid "Failed to download image from remote URL" msgstr "从远程URL下载图像失败" +#: InvenTree/serializers.py:806 +msgid "Invalid content type format" +msgstr "" + +#: InvenTree/serializers.py:809 +msgid "Content type not found" +msgstr "" + +#: InvenTree/serializers.py:815 +msgid "Content type does not match required mixin class" +msgstr "" + #: InvenTree/setting/locales.py:20 msgid "Arabic" msgstr "阿拉伯语" @@ -537,30 +553,30 @@ msgstr "无效的物理单位" msgid "Not a valid currency code" msgstr "无效的货币代码" -#: build/api.py:54 order/api.py:111 order/api.py:270 order/api.py:1373 -#: order/serializers.py:132 +#: build/api.py:54 order/api.py:116 order/api.py:275 order/api.py:1378 +#: order/serializers.py:133 msgid "Order Status" msgstr "订单状态" -#: build/api.py:80 build/models.py:264 +#: build/api.py:80 build/models.py:265 msgid "Parent Build" msgstr "父级生产订单" -#: build/api.py:84 build/api.py:831 order/api.py:547 order/api.py:770 -#: order/api.py:1174 order/api.py:1449 stock/api.py:573 +#: build/api.py:84 build/api.py:837 order/api.py:553 order/api.py:776 +#: order/api.py:1179 order/api.py:1454 stock/api.py:573 msgid "Include Variants" msgstr "包含变体" -#: build/api.py:100 build/api.py:466 build/api.py:845 build/models.py:270 -#: build/serializers.py:1225 build/serializers.py:1356 -#: build/serializers.py:1427 company/models.py:1067 company/serializers.py:445 -#: order/api.py:298 order/api.py:302 order/api.py:929 order/api.py:1187 -#: order/api.py:1190 order/models.py:1941 order/models.py:2108 -#: order/models.py:2109 part/api.py:1233 part/api.py:1236 part/api.py:1302 -#: part/api.py:1589 part/models.py:472 part/models.py:3296 part/models.py:3439 -#: part/models.py:3497 part/models.py:3518 part/models.py:3540 -#: part/models.py:3679 part/models.py:4046 part/models.py:4368 -#: part/models.py:4787 part/serializers.py:1928 +#: build/api.py:100 build/api.py:472 build/api.py:851 build/models.py:271 +#: build/serializers.py:1233 build/serializers.py:1364 +#: build/serializers.py:1435 company/models.py:1021 company/serializers.py:490 +#: order/api.py:303 order/api.py:307 order/api.py:934 order/api.py:1192 +#: order/api.py:1195 order/models.py:1942 order/models.py:2109 +#: order/models.py:2110 part/api.py:1160 part/api.py:1163 part/api.py:1314 +#: part/models.py:550 part/models.py:3360 part/models.py:3503 +#: part/models.py:3561 part/models.py:3582 part/models.py:3604 +#: part/models.py:3743 part/models.py:3993 part/models.py:4412 +#: part/serializers.py:1801 #: report/templates/report/inventree_bill_of_materials_report.html:110 #: report/templates/report/inventree_bill_of_materials_report.html:137 #: report/templates/report/inventree_build_order_report.html:109 @@ -580,9 +596,9 @@ msgstr "包含变体" msgid "Part" msgstr "零件" -#: build/api.py:120 build/api.py:123 build/serializers.py:1438 part/api.py:980 -#: part/api.py:1316 part/api.py:1600 part/models.py:1080 part/models.py:3568 -#: part/models.py:4162 part/serializers.py:1752 stock/api.py:869 +#: build/api.py:120 build/api.py:123 build/serializers.py:1446 part/api.py:975 +#: part/api.py:1325 part/models.py:435 part/models.py:1168 part/models.py:3632 +#: part/serializers.py:1617 stock/api.py:869 msgid "Category" msgstr "类别" @@ -590,7 +606,7 @@ msgstr "类别" msgid "Ancestor Build" msgstr "可测试部分" -#: build/api.py:152 order/api.py:129 +#: build/api.py:152 order/api.py:134 msgid "Assigned to me" msgstr "分配给我" @@ -638,134 +654,134 @@ msgstr "完成日期早于" msgid "Completed after" msgstr "完成日期晚于" -#: build/api.py:249 order/api.py:226 +#: build/api.py:249 order/api.py:231 msgid "Min Date" msgstr "最小日期" -#: build/api.py:272 order/api.py:245 +#: build/api.py:272 order/api.py:250 msgid "Max Date" msgstr "最大日期" -#: build/api.py:297 build/api.py:300 part/api.py:217 stock/api.py:961 +#: build/api.py:297 build/api.py:300 part/api.py:212 stock/api.py:961 msgid "Exclude Tree" msgstr "排除树" -#: build/api.py:405 +#: build/api.py:411 msgid "Build must be cancelled before it can be deleted" msgstr "生产订单必须取消后才能删除" -#: build/api.py:449 build/serializers.py:1374 part/models.py:4402 +#: build/api.py:455 build/serializers.py:1382 part/models.py:4027 msgid "Consumable" msgstr "耗材" -#: build/api.py:452 build/serializers.py:1377 part/models.py:4396 +#: build/api.py:458 build/serializers.py:1385 part/models.py:4021 msgid "Optional" msgstr "可选项" -#: build/api.py:455 build/serializers.py:1415 common/setting/system.py:456 -#: part/models.py:1202 part/serializers.py:1714 part/serializers.py:1725 +#: build/api.py:461 build/serializers.py:1423 common/setting/system.py:456 +#: part/models.py:1290 part/serializers.py:1579 part/serializers.py:1590 #: stock/api.py:639 msgid "Assembly" msgstr "装配件" -#: build/api.py:458 +#: build/api.py:464 msgid "Tracked" msgstr "可追溯" -#: build/api.py:461 build/serializers.py:1380 part/models.py:1220 +#: build/api.py:467 build/serializers.py:1388 part/models.py:1308 msgid "Testable" msgstr "需检测" -#: build/api.py:471 order/api.py:993 order/api.py:1363 +#: build/api.py:477 order/api.py:998 order/api.py:1368 msgid "Order Outstanding" msgstr "未结算订单" -#: build/api.py:481 build/serializers.py:1464 order/api.py:952 +#: build/api.py:487 build/serializers.py:1472 order/api.py:957 msgid "Allocated" msgstr "已分配" -#: build/api.py:490 build/models.py:1672 build/serializers.py:1393 +#: build/api.py:496 build/models.py:1673 build/serializers.py:1401 msgid "Consumed" msgstr "已消耗" -#: build/api.py:499 company/models.py:912 company/serializers.py:440 +#: build/api.py:505 company/models.py:866 company/serializers.py:467 #: templates/email/build_order_required_stock.html:19 #: templates/email/low_stock_notification.html:17 #: templates/email/part_event_notification.html:18 msgid "Available" msgstr "可用数量" -#: build/api.py:523 build/serializers.py:1466 company/serializers.py:437 -#: order/serializers.py:1281 part/serializers.py:959 part/serializers.py:1306 -#: part/serializers.py:1761 +#: build/api.py:529 build/serializers.py:1474 company/serializers.py:464 +#: order/serializers.py:1295 part/serializers.py:844 part/serializers.py:1171 +#: part/serializers.py:1626 msgid "On Order" msgstr "已订购" -#: build/api.py:868 build/models.py:117 order/models.py:1974 +#: build/api.py:874 build/models.py:118 order/models.py:1975 #: report/templates/report/inventree_build_order_report.html:105 #: stock/serializers.py:93 templates/email/build_order_completed.html:16 #: templates/email/overdue_build_order.html:15 msgid "Build Order" msgstr "生产订单" -#: build/api.py:882 build/api.py:886 build/serializers.py:372 -#: build/serializers.py:497 build/serializers.py:567 build/serializers.py:1251 -#: build/serializers.py:1256 order/api.py:1234 order/api.py:1239 -#: order/serializers.py:833 order/serializers.py:973 order/serializers.py:2042 +#: build/api.py:888 build/api.py:892 build/serializers.py:380 +#: build/serializers.py:505 build/serializers.py:575 build/serializers.py:1259 +#: build/serializers.py:1264 order/api.py:1239 order/api.py:1244 +#: order/serializers.py:844 order/serializers.py:984 order/serializers.py:2059 #: stock/api.py:987 stock/serializers.py:111 stock/serializers.py:601 #: stock/serializers.py:710 stock/serializers.py:888 stock/serializers.py:1418 -#: stock/serializers.py:1731 stock/serializers.py:1780 +#: stock/serializers.py:1739 stock/serializers.py:1788 #: templates/email/stale_stock_notification.html:18 users/models.py:549 msgid "Location" msgstr "库存位置" -#: build/api.py:894 +#: build/api.py:900 msgid "Output" msgstr "产出" -#: build/api.py:896 +#: build/api.py:902 msgid "Filter by output stock item ID. Use 'null' to find uninstalled build items." msgstr "按产出库存项ID筛选,使用“null”查找未安装的生产项。" -#: build/models.py:118 users/ruleset.py:31 +#: build/models.py:119 users/ruleset.py:31 msgid "Build Orders" msgstr "生产订单" -#: build/models.py:168 +#: build/models.py:169 msgid "Assembly BOM has not been validated" msgstr "装配物料清单尚未验证" -#: build/models.py:175 +#: build/models.py:176 msgid "Build order cannot be created for an inactive part" msgstr "无法为未激活的零件创建生产订单" -#: build/models.py:182 +#: build/models.py:183 msgid "Build order cannot be created for an unlocked part" msgstr "无法为已解锁的零件创建生产订单" -#: build/models.py:200 +#: build/models.py:201 msgid "Build orders can only be externally fulfilled for purchaseable parts" msgstr "生产订单仅能通过外部采购可购买零件来完成" -#: build/models.py:207 order/models.py:369 +#: build/models.py:208 order/models.py:370 msgid "Responsible user or group must be specified" msgstr "必须指定负责的用户或组" -#: build/models.py:212 +#: build/models.py:213 msgid "Build order part cannot be changed" msgstr "生产订单关联零件不可变更" -#: build/models.py:217 order/models.py:382 +#: build/models.py:218 order/models.py:383 msgid "Target date must be after start date" msgstr "目标日期必须在开始日期之后" -#: build/models.py:245 +#: build/models.py:246 msgid "Build Order Reference" msgstr "生产订单编号" -#: build/models.py:246 build/serializers.py:1371 order/models.py:614 -#: order/models.py:1311 order/models.py:1773 order/models.py:2712 -#: part/models.py:4442 +#: build/models.py:247 build/serializers.py:1379 order/models.py:615 +#: order/models.py:1312 order/models.py:1774 order/models.py:2713 +#: part/models.py:4067 #: report/templates/report/inventree_bill_of_materials_report.html:139 #: report/templates/report/inventree_purchase_order_report.html:35 #: report/templates/report/inventree_return_order_report.html:26 @@ -773,230 +789,230 @@ msgstr "生产订单编号" msgid "Reference" msgstr "编号" -#: build/models.py:255 +#: build/models.py:256 msgid "Brief description of the build (optional)" msgstr "生产订单的简要说明(可选)" -#: build/models.py:265 +#: build/models.py:266 msgid "BuildOrder to which this build is allocated" msgstr "该生产订单所属的上级生产订单" -#: build/models.py:274 +#: build/models.py:275 msgid "Select part to build" msgstr "选择要生产的零件" -#: build/models.py:279 +#: build/models.py:280 msgid "Sales Order Reference" msgstr "销售订单编号" -#: build/models.py:284 +#: build/models.py:285 msgid "SalesOrder to which this build is allocated" msgstr "该生产订单关联的销售订单" -#: build/models.py:289 build/serializers.py:1097 +#: build/models.py:290 build/serializers.py:1105 msgid "Source Location" msgstr "源库位" -#: build/models.py:295 +#: build/models.py:296 msgid "Select location to take stock from for this build (leave blank to take from any stock location)" msgstr "指定本次生产领料的来源库位(留空可从任意库位调拨)" -#: build/models.py:301 +#: build/models.py:302 msgid "External Build" msgstr "外协生产" -#: build/models.py:302 +#: build/models.py:303 msgid "This build order is fulfilled externally" msgstr "该生产订单由外部供应商完成" -#: build/models.py:307 +#: build/models.py:308 msgid "Destination Location" msgstr "目标库位" -#: build/models.py:312 +#: build/models.py:313 msgid "Select location where the completed items will be stored" msgstr "选择生产完成品的存放库位" -#: build/models.py:316 +#: build/models.py:317 msgid "Build Quantity" msgstr "生产数量" -#: build/models.py:319 +#: build/models.py:320 msgid "Number of stock items to build" msgstr "需要生产的库存品数量" -#: build/models.py:323 +#: build/models.py:324 msgid "Completed items" msgstr "已完成项目" -#: build/models.py:325 +#: build/models.py:326 msgid "Number of stock items which have been completed" msgstr "已完成并入库的库存物品数量" -#: build/models.py:329 +#: build/models.py:330 msgid "Build Status" msgstr "生产状态" -#: build/models.py:334 +#: build/models.py:335 msgid "Build status code" msgstr "生产状态代码" -#: build/models.py:343 build/serializers.py:359 order/serializers.py:849 +#: build/models.py:344 build/serializers.py:367 order/serializers.py:860 #: stock/models.py:1100 stock/serializers.py:85 stock/serializers.py:1591 msgid "Batch Code" msgstr "批号" -#: build/models.py:347 build/serializers.py:360 +#: build/models.py:348 build/serializers.py:368 msgid "Batch code for this build output" msgstr "本批产出的批次编号" -#: build/models.py:351 order/models.py:479 order/serializers.py:186 -#: part/models.py:1283 +#: build/models.py:352 order/models.py:480 order/serializers.py:193 +#: part/models.py:1371 msgid "Creation Date" msgstr "建立日期" -#: build/models.py:357 +#: build/models.py:358 msgid "Build start date" msgstr "生产开始日期" -#: build/models.py:358 +#: build/models.py:359 msgid "Scheduled start date for this build order" msgstr "此生产订单的计划开始日期" -#: build/models.py:364 +#: build/models.py:365 msgid "Target completion date" msgstr "计划完成日期" -#: build/models.py:366 +#: build/models.py:367 msgid "Target date for build completion. Build will be overdue after this date." msgstr "生产订单的计划完成时间,逾期后系统将标记为超期。" -#: build/models.py:371 order/models.py:667 order/models.py:2751 +#: build/models.py:372 order/models.py:668 order/models.py:2752 msgid "Completion Date" msgstr "完成日期" -#: build/models.py:379 +#: build/models.py:380 msgid "completed by" msgstr "完成人" -#: build/models.py:388 +#: build/models.py:389 msgid "Issued by" msgstr "发起人" -#: build/models.py:389 +#: build/models.py:390 msgid "User who issued this build order" msgstr "创建该生产订单的用户" -#: build/models.py:398 common/models.py:180 order/api.py:179 -#: order/models.py:504 part/models.py:1300 +#: build/models.py:399 common/models.py:184 order/api.py:184 +#: order/models.py:505 part/models.py:1388 #: report/templates/report/inventree_build_order_report.html:158 msgid "Responsible" msgstr "责任方" -#: build/models.py:399 +#: build/models.py:400 msgid "User or group responsible for this build order" msgstr "该生产订单的责任人或责任团队" -#: build/models.py:404 stock/models.py:1093 +#: build/models.py:405 stock/models.py:1093 msgid "External Link" msgstr "外部链接" -#: build/models.py:406 common/models.py:1984 part/models.py:1114 +#: build/models.py:407 common/models.py:1990 part/models.py:1202 #: stock/models.py:1095 msgid "Link to external URL" msgstr "指向外部资源的URL链接" -#: build/models.py:411 +#: build/models.py:412 msgid "Build Priority" msgstr "生产优先级" -#: build/models.py:414 +#: build/models.py:415 msgid "Priority of this build order" msgstr "此生产订单的优先级" -#: build/models.py:422 common/models.py:150 common/models.py:164 -#: order/api.py:165 order/models.py:451 order/models.py:1805 +#: build/models.py:423 common/models.py:154 common/models.py:168 +#: order/api.py:170 order/models.py:452 order/models.py:1806 msgid "Project Code" msgstr "项目编号" -#: build/models.py:423 +#: build/models.py:424 msgid "Project code for this build order" msgstr "该生产订单归属的项目编号" -#: build/models.py:676 +#: build/models.py:677 msgid "Cannot complete build order with open child builds" msgstr "无法完成生产订单,存在未关闭的子生产订单" -#: build/models.py:681 +#: build/models.py:682 msgid "Cannot complete build order with incomplete outputs" msgstr "无法完成生产订单,存在未完成的产出项" -#: build/models.py:700 build/models.py:830 +#: build/models.py:701 build/models.py:831 msgid "Failed to offload task to complete build allocations" msgstr "生产分配任务卸载失败" -#: build/models.py:723 +#: build/models.py:724 #, python-brace-format msgid "Build order {build} has been completed" msgstr "生产订单 {build} 已完成" -#: build/models.py:729 +#: build/models.py:730 msgid "A build order has been completed" msgstr "生产订单已完成" -#: build/models.py:911 build/serializers.py:407 +#: build/models.py:912 build/serializers.py:415 msgid "Serial numbers must be provided for trackable parts" msgstr "可追溯零件必须填写序列号" -#: build/models.py:1042 build/models.py:1129 +#: build/models.py:1043 build/models.py:1130 msgid "No build output specified" msgstr "未指定产出" -#: build/models.py:1045 +#: build/models.py:1046 msgid "Build output is already completed" msgstr "产出已完成" -#: build/models.py:1048 +#: build/models.py:1049 msgid "Build output does not match Build Order" msgstr "产出与生产订单不匹配" -#: build/models.py:1136 build/models.py:1234 build/serializers.py:285 -#: build/serializers.py:335 build/serializers.py:965 build/serializers.py:1739 -#: order/models.py:717 order/serializers.py:658 order/serializers.py:844 -#: part/serializers.py:1708 stock/models.py:940 stock/models.py:1430 +#: build/models.py:1137 build/models.py:1235 build/serializers.py:293 +#: build/serializers.py:343 build/serializers.py:973 build/serializers.py:1747 +#: order/models.py:718 order/serializers.py:669 order/serializers.py:855 +#: part/serializers.py:1573 stock/models.py:940 stock/models.py:1430 #: stock/models.py:1878 stock/serializers.py:688 stock/serializers.py:1580 msgid "Quantity must be greater than zero" msgstr "数量必须大于零" -#: build/models.py:1140 build/models.py:1239 build/serializers.py:290 +#: build/models.py:1141 build/models.py:1240 build/serializers.py:298 msgid "Quantity cannot be greater than the output quantity" msgstr "数量不能大于产出数量" -#: build/models.py:1214 build/serializers.py:606 +#: build/models.py:1215 build/serializers.py:614 msgid "Build output has not passed all required tests" msgstr "产出未通过所有必要测试" -#: build/models.py:1217 build/serializers.py:601 +#: build/models.py:1218 build/serializers.py:609 #, python-brace-format msgid "Build output {serial} has not passed all required tests" msgstr "产出 {serial} 未通过所有必要测试" -#: build/models.py:1229 +#: build/models.py:1230 msgid "Cannot partially complete a build output with allocated items" msgstr "存在已分配物料时无法部分完成生产输出" -#: build/models.py:1627 +#: build/models.py:1628 msgid "Build Order Line Item" msgstr "生产订单行项目" -#: build/models.py:1651 +#: build/models.py:1652 msgid "Build object" msgstr "生产对象" -#: build/models.py:1663 build/models.py:1974 build/serializers.py:271 -#: build/serializers.py:320 build/serializers.py:1392 common/models.py:1340 -#: order/models.py:1756 order/models.py:2597 order/serializers.py:1696 -#: order/serializers.py:2124 part/models.py:3453 part/models.py:4390 +#: build/models.py:1664 build/models.py:1975 build/serializers.py:279 +#: build/serializers.py:328 build/serializers.py:1400 common/models.py:1344 +#: order/models.py:1757 order/models.py:2598 order/serializers.py:1710 +#: order/serializers.py:2141 part/models.py:3517 part/models.py:4015 #: report/templates/report/inventree_bill_of_materials_report.html:138 #: report/templates/report/inventree_build_order_report.html:113 #: report/templates/report/inventree_purchase_order_report.html:36 @@ -1014,427 +1030,427 @@ msgstr "生产对象" msgid "Quantity" msgstr "数量" -#: build/models.py:1664 +#: build/models.py:1665 msgid "Required quantity for build order" msgstr "生产订单所需数量" -#: build/models.py:1673 +#: build/models.py:1674 msgid "Quantity of consumed stock" msgstr "库存消耗量" -#: build/models.py:1772 +#: build/models.py:1773 msgid "Build item must specify a build output, as master part is marked as trackable" msgstr "生产项必须指定产出,因为主零件已经被标记为可追踪的" -#: build/models.py:1783 +#: build/models.py:1784 #, python-brace-format msgid "Allocated quantity ({q}) must not exceed available stock quantity ({a})" msgstr "分配数量 ({q}) 不得超过可用库存数量 ({a})" -#: build/models.py:1804 order/models.py:2546 +#: build/models.py:1805 order/models.py:2547 msgid "Stock item is over-allocated" msgstr "库存品项超额分配" -#: build/models.py:1809 order/models.py:2549 +#: build/models.py:1810 order/models.py:2550 msgid "Allocation quantity must be greater than zero" msgstr "分配的数量必须大于零" -#: build/models.py:1815 +#: build/models.py:1816 msgid "Quantity must be 1 for serialized stock" msgstr "序列化物料的数量必须为1" -#: build/models.py:1875 +#: build/models.py:1876 msgid "Selected stock item does not match BOM line" msgstr "所选库存项与物料清单行项不匹配" -#: build/models.py:1913 +#: build/models.py:1914 msgid "Allocated quantity exceeds available stock quantity" msgstr "已分配数量超过可用库存数量" -#: build/models.py:1964 build/serializers.py:948 build/serializers.py:1240 -#: order/serializers.py:1533 order/serializers.py:1554 +#: build/models.py:1965 build/serializers.py:956 build/serializers.py:1248 +#: order/serializers.py:1547 order/serializers.py:1568 #: report/templates/report/inventree_sales_order_shipment_report.html:29 #: stock/api.py:1404 stock/models.py:456 stock/serializers.py:102 #: stock/serializers.py:800 stock/serializers.py:1274 stock/serializers.py:1386 msgid "Stock Item" msgstr "库存项" -#: build/models.py:1965 +#: build/models.py:1966 msgid "Source stock item" msgstr "源库存项" -#: build/models.py:1975 +#: build/models.py:1976 msgid "Stock quantity to allocate to build" msgstr "分配给该生产任务的库存量" -#: build/models.py:1984 +#: build/models.py:1985 msgid "Install into" msgstr "安裝到" -#: build/models.py:1985 +#: build/models.py:1986 msgid "Destination stock item" msgstr "目标库存项" -#: build/serializers.py:118 +#: build/serializers.py:120 msgid "Build Level" msgstr "生产等级" -#: build/serializers.py:128 +#: build/serializers.py:136 msgid "Part Name" msgstr "零件名称" -#: build/serializers.py:153 +#: build/serializers.py:161 msgid "Project Code Label" msgstr "项目编号标签" -#: build/serializers.py:219 build/serializers.py:974 +#: build/serializers.py:227 build/serializers.py:982 msgid "Build Output" msgstr "产出" -#: build/serializers.py:231 +#: build/serializers.py:239 msgid "Build output does not match the parent build" msgstr "生产产出与上级订单不匹配" -#: build/serializers.py:235 +#: build/serializers.py:243 msgid "Output part does not match BuildOrder part" msgstr "产出零件与生产订单零件不匹配" -#: build/serializers.py:239 +#: build/serializers.py:247 msgid "This build output has already been completed" msgstr "此产出已经完成" -#: build/serializers.py:253 +#: build/serializers.py:261 msgid "This build output is not fully allocated" msgstr "此产出尚未完全分配" -#: build/serializers.py:272 build/serializers.py:321 +#: build/serializers.py:280 build/serializers.py:329 msgid "Enter quantity for build output" msgstr "输入产出数量" -#: build/serializers.py:343 +#: build/serializers.py:351 msgid "Integer quantity required for trackable parts" msgstr "可追踪的零件数量必须为整数" -#: build/serializers.py:349 +#: build/serializers.py:357 msgid "Integer quantity required, as the bill of materials contains trackable parts" msgstr "因为物料清单包含可追踪的零件,所以数量必须为整数" -#: build/serializers.py:366 order/serializers.py:865 order/serializers.py:1700 +#: build/serializers.py:374 order/serializers.py:876 order/serializers.py:1714 #: stock/serializers.py:699 msgid "Serial Numbers" msgstr "序列号" -#: build/serializers.py:367 +#: build/serializers.py:375 msgid "Enter serial numbers for build outputs" msgstr "输入产出的序列号" -#: build/serializers.py:373 +#: build/serializers.py:381 msgid "Stock location for build output" msgstr "生产产出的库存地点" -#: build/serializers.py:388 +#: build/serializers.py:396 msgid "Auto Allocate Serial Numbers" msgstr "自动分配序列号" -#: build/serializers.py:390 +#: build/serializers.py:398 msgid "Automatically allocate required items with matching serial numbers" msgstr "自动为所需项目分配对应的序列号" -#: build/serializers.py:423 order/serializers.py:951 stock/api.py:1183 +#: build/serializers.py:431 order/serializers.py:962 stock/api.py:1183 #: stock/models.py:1901 msgid "The following serial numbers already exist or are invalid" msgstr "以下序列号已存在或无效" -#: build/serializers.py:465 build/serializers.py:521 build/serializers.py:613 +#: build/serializers.py:473 build/serializers.py:529 build/serializers.py:621 msgid "A list of build outputs must be provided" msgstr "必须提供产出清单" -#: build/serializers.py:498 +#: build/serializers.py:506 msgid "Stock location for scrapped outputs" msgstr "报废品库存地点" -#: build/serializers.py:504 +#: build/serializers.py:512 msgid "Discard Allocations" msgstr "放弃分配" -#: build/serializers.py:505 +#: build/serializers.py:513 msgid "Discard any stock allocations for scrapped outputs" msgstr "取消对报废产品的库存分配" -#: build/serializers.py:510 +#: build/serializers.py:518 msgid "Reason for scrapping build output(s)" msgstr "废品产出的原因" -#: build/serializers.py:568 +#: build/serializers.py:576 msgid "Location for completed build outputs" msgstr "完工产出存放库位" -#: build/serializers.py:576 +#: build/serializers.py:584 msgid "Accept Incomplete Allocation" msgstr "接受不完整的分配" -#: build/serializers.py:577 +#: build/serializers.py:585 msgid "Complete outputs if stock has not been fully allocated" msgstr "如果库存尚未全部分配,则完成产出" -#: build/serializers.py:702 +#: build/serializers.py:710 msgid "Consume Allocated Stock" msgstr "消耗已分配库存" -#: build/serializers.py:703 +#: build/serializers.py:711 msgid "Consume any stock which has already been allocated to this build" msgstr "立即扣除已分配给该生产任务的库存" -#: build/serializers.py:709 +#: build/serializers.py:717 msgid "Remove Incomplete Outputs" msgstr "移除未完成的产出" -#: build/serializers.py:710 +#: build/serializers.py:718 msgid "Delete any build outputs which have not been completed" msgstr "删除所有未完成的产出" -#: build/serializers.py:737 +#: build/serializers.py:745 msgid "Not permitted" msgstr "禁止操作" -#: build/serializers.py:738 +#: build/serializers.py:746 msgid "Accept as consumed by this build order" msgstr "标记为当前生产订单消耗" -#: build/serializers.py:739 +#: build/serializers.py:747 msgid "Deallocate before completing this build order" msgstr "完成此生产订单前取消分配" -#: build/serializers.py:766 +#: build/serializers.py:774 msgid "Overallocated Stock" msgstr "超额分配库存" -#: build/serializers.py:769 +#: build/serializers.py:777 msgid "How do you want to handle extra stock items assigned to the build order" msgstr "如何处理分配给生产订单的超额库存" -#: build/serializers.py:780 +#: build/serializers.py:788 msgid "Some stock items have been overallocated" msgstr "存在超额分配的库存项" -#: build/serializers.py:785 +#: build/serializers.py:793 msgid "Accept Unallocated" msgstr "接受未分配" -#: build/serializers.py:787 +#: build/serializers.py:795 msgid "Accept that stock items have not been fully allocated to this build order" msgstr "接受库存项未被完全分配至生产订单" -#: build/serializers.py:798 +#: build/serializers.py:806 msgid "Required stock has not been fully allocated" msgstr "必需库存未完成全量分配" -#: build/serializers.py:803 order/serializers.py:524 order/serializers.py:1601 +#: build/serializers.py:811 order/serializers.py:535 order/serializers.py:1615 msgid "Accept Incomplete" msgstr "接受未完工" -#: build/serializers.py:805 +#: build/serializers.py:813 msgid "Accept that the required number of build outputs have not been completed" msgstr "允许所需数量的产出未完成" -#: build/serializers.py:816 +#: build/serializers.py:824 msgid "Required build quantity has not been completed" msgstr "生产需求数量未完成" -#: build/serializers.py:828 +#: build/serializers.py:836 msgid "Build order has open child build orders" msgstr "生产订单有打开的子生产订单" -#: build/serializers.py:831 +#: build/serializers.py:839 msgid "Build order must be in production state" msgstr "生产订单必须处于生产状态" -#: build/serializers.py:834 +#: build/serializers.py:842 msgid "Build order has incomplete outputs" msgstr "生产订单有未完成的产出" -#: build/serializers.py:873 +#: build/serializers.py:881 msgid "Build Line" msgstr "生产行" -#: build/serializers.py:881 +#: build/serializers.py:889 msgid "Build output" msgstr "产出" -#: build/serializers.py:889 +#: build/serializers.py:897 msgid "Build output must point to the same build" msgstr "生产产出必须指向相同的生产" -#: build/serializers.py:920 +#: build/serializers.py:928 msgid "Build Line Item" msgstr "生产行项目" -#: build/serializers.py:938 +#: build/serializers.py:946 msgid "bom_item.part must point to the same part as the build order" msgstr "bom_item.part 必须与生产订单零件相同" -#: build/serializers.py:954 stock/serializers.py:1287 +#: build/serializers.py:962 stock/serializers.py:1287 msgid "Item must be in stock" msgstr "项目必须在库存中" -#: build/serializers.py:997 order/serializers.py:1587 +#: build/serializers.py:1005 order/serializers.py:1601 #, python-brace-format msgid "Available quantity ({q}) exceeded" msgstr "可用量 ({q}) 超出限制" -#: build/serializers.py:1003 +#: build/serializers.py:1011 msgid "Build output must be specified for allocation of tracked parts" msgstr "对于被追踪的零件的分配,必须指定生产产出" -#: build/serializers.py:1011 +#: build/serializers.py:1019 msgid "Build output cannot be specified for allocation of untracked parts" msgstr "对于未被追踪的零件,无法指定生产产出" -#: build/serializers.py:1035 order/serializers.py:1860 +#: build/serializers.py:1043 order/serializers.py:1874 msgid "Allocation items must be provided" msgstr "必须提供分配项目" -#: build/serializers.py:1099 +#: build/serializers.py:1107 msgid "Stock location where parts are to be sourced (leave blank to take from any location)" msgstr "零件来源的库存地点(留空则可来源于任何库存地点)" -#: build/serializers.py:1108 +#: build/serializers.py:1116 msgid "Exclude Location" msgstr "排除位置" -#: build/serializers.py:1109 +#: build/serializers.py:1117 msgid "Exclude stock items from this selected location" msgstr "从该选定的库存地点排除库存项" -#: build/serializers.py:1114 +#: build/serializers.py:1122 msgid "Interchangeable Stock" msgstr "可互换库存" -#: build/serializers.py:1115 +#: build/serializers.py:1123 msgid "Stock items in multiple locations can be used interchangeably" msgstr "在多个位置的库存项目可以互换使用" -#: build/serializers.py:1120 +#: build/serializers.py:1128 msgid "Substitute Stock" msgstr "替代品库存" -#: build/serializers.py:1121 +#: build/serializers.py:1129 msgid "Allow allocation of substitute parts" msgstr "允许分配可替换的零件" -#: build/serializers.py:1126 +#: build/serializers.py:1134 msgid "Optional Items" msgstr "可选项目" -#: build/serializers.py:1127 +#: build/serializers.py:1135 msgid "Allocate optional BOM items to build order" msgstr "分配可选的物料清单给生产订单" -#: build/serializers.py:1148 +#: build/serializers.py:1156 msgid "Failed to start auto-allocation task" msgstr "启动自动分配任务失败" -#: build/serializers.py:1200 +#: build/serializers.py:1208 msgid "BOM Reference" msgstr "物料清单参考" -#: build/serializers.py:1206 +#: build/serializers.py:1214 msgid "BOM Part ID" msgstr "物料清单零件识别号码" -#: build/serializers.py:1213 +#: build/serializers.py:1221 msgid "BOM Part Name" msgstr "物料清单零件名称" -#: build/serializers.py:1266 build/serializers.py:1449 +#: build/serializers.py:1274 build/serializers.py:1457 msgid "Build" msgstr "生产" -#: build/serializers.py:1276 company/models.py:685 order/api.py:311 -#: order/api.py:316 order/api.py:543 order/serializers.py:650 +#: build/serializers.py:1284 company/models.py:639 order/api.py:316 +#: order/api.py:321 order/api.py:549 order/serializers.py:661 #: stock/models.py:1036 stock/serializers.py:579 msgid "Supplier Part" msgstr "供应商零件" -#: build/serializers.py:1284 stock/serializers.py:620 +#: build/serializers.py:1292 stock/serializers.py:620 msgid "Allocated Quantity" msgstr "已分配数量" -#: build/serializers.py:1351 +#: build/serializers.py:1359 msgid "Build Reference" msgstr "生产订单编号" -#: build/serializers.py:1361 +#: build/serializers.py:1369 msgid "Part Category Name" msgstr "零件类别名称" -#: build/serializers.py:1383 common/setting/system.py:480 part/models.py:1214 +#: build/serializers.py:1391 common/setting/system.py:480 part/models.py:1302 msgid "Trackable" msgstr "可追踪" -#: build/serializers.py:1386 +#: build/serializers.py:1394 msgid "Inherited" msgstr "已继承的" -#: build/serializers.py:1389 part/models.py:4475 +#: build/serializers.py:1397 part/models.py:4100 msgid "Allow Variants" msgstr "允许变体" -#: build/serializers.py:1395 build/serializers.py:1400 part/models.py:4208 -#: part/models.py:4779 stock/api.py:882 +#: build/serializers.py:1403 build/serializers.py:1408 part/models.py:3833 +#: part/models.py:4404 stock/api.py:882 msgid "BOM Item" msgstr "物料清单项" -#: build/serializers.py:1467 order/serializers.py:1282 part/serializers.py:1310 -#: part/serializers.py:1765 +#: build/serializers.py:1475 order/serializers.py:1296 part/serializers.py:1175 +#: part/serializers.py:1630 msgid "In Production" msgstr "生产中" -#: build/serializers.py:1469 part/serializers.py:950 part/serializers.py:1314 +#: build/serializers.py:1477 part/serializers.py:835 part/serializers.py:1179 msgid "Scheduled to Build" msgstr "生产计划" -#: build/serializers.py:1472 part/serializers.py:987 +#: build/serializers.py:1480 part/serializers.py:872 msgid "External Stock" msgstr "外部库存" -#: build/serializers.py:1473 part/serializers.py:1300 part/serializers.py:1808 +#: build/serializers.py:1481 part/serializers.py:1165 part/serializers.py:1673 msgid "Available Stock" msgstr "可用库存" -#: build/serializers.py:1475 +#: build/serializers.py:1483 msgid "Available Substitute Stock" msgstr "可用的替代品库存" -#: build/serializers.py:1478 +#: build/serializers.py:1486 msgid "Available Variant Stock" msgstr "可用的变体库存" -#: build/serializers.py:1752 +#: build/serializers.py:1760 msgid "Consumed quantity exceeds allocated quantity" msgstr "消耗数量超过分配数量" -#: build/serializers.py:1789 +#: build/serializers.py:1797 msgid "Optional notes for the stock consumption" msgstr "库存消耗可选备注" -#: build/serializers.py:1806 +#: build/serializers.py:1814 msgid "Build item must point to the correct build order" msgstr "生产物料项必须关联到正确的生产订单" -#: build/serializers.py:1811 +#: build/serializers.py:1819 msgid "Duplicate build item allocation" msgstr "重复的生产物料项分配" -#: build/serializers.py:1829 +#: build/serializers.py:1837 msgid "Build line must point to the correct build order" msgstr "订单行项目必须关联到正确的生产订单" -#: build/serializers.py:1834 +#: build/serializers.py:1842 msgid "Duplicate build line allocation" msgstr "重复的订单行项目分配" -#: build/serializers.py:1846 +#: build/serializers.py:1854 msgid "At least one item or line must be provided" msgstr "必须提供至少一个物料项或行项目" @@ -1482,702 +1498,826 @@ msgstr "逾期的生产订单" msgid "Build order {bo} is now overdue" msgstr "生产订单 {bo} 现已逾期" -#: common/api.py:694 +#: common/api.py:701 msgid "Is Link" msgstr "是否链接" -#: common/api.py:702 +#: common/api.py:709 msgid "Is File" msgstr "是否为文件" -#: common/api.py:745 +#: common/api.py:756 msgid "User does not have permission to delete these attachments" msgstr "用户没有权限删除此附件" -#: common/api.py:762 +#: common/api.py:769 msgid "User does not have permission to delete this attachment" msgstr "用户没有权限删除此附件" -#: common/currency.py:122 +#: common/currency.py:130 msgid "Invalid currency code" msgstr "无效的货币代码" -#: common/currency.py:124 +#: common/currency.py:132 msgid "Duplicate currency code" msgstr "重复的货币代码" -#: common/currency.py:129 +#: common/currency.py:137 msgid "No valid currency codes provided" msgstr "未提供有效的货币代码" -#: common/currency.py:146 +#: common/currency.py:154 msgid "No plugin" msgstr "暂无插件" -#: common/models.py:101 common/models.py:126 common/models.py:2729 +#: common/models.py:105 common/models.py:130 common/models.py:3150 msgid "Updated" msgstr "已是最新" -#: common/models.py:102 common/models.py:127 +#: common/models.py:106 common/models.py:131 msgid "Timestamp of last update" msgstr "最后更新时间戳" -#: common/models.py:139 +#: common/models.py:143 msgid "Update By" msgstr "更新于" -#: common/models.py:140 +#: common/models.py:144 msgid "User who last updated this object" msgstr "上次修改该对象的用户" -#: common/models.py:165 +#: common/models.py:169 msgid "Unique project code" msgstr "唯一项目编码" -#: common/models.py:172 +#: common/models.py:176 msgid "Project description" msgstr "项目描述" -#: common/models.py:181 +#: common/models.py:185 msgid "User or group responsible for this project" msgstr "负责此项目的用户或团队" -#: common/models.py:771 common/models.py:1272 common/models.py:1310 +#: common/models.py:775 common/models.py:1276 common/models.py:1314 msgid "Settings key" msgstr "设置密钥" -#: common/models.py:775 +#: common/models.py:779 msgid "Settings value" msgstr "设定值" -#: common/models.py:830 +#: common/models.py:834 msgid "Chosen value is not a valid option" msgstr "所选值不是一个有效的选项" -#: common/models.py:846 +#: common/models.py:850 msgid "Value must be a boolean value" msgstr "该值必须是布尔值" -#: common/models.py:854 +#: common/models.py:858 msgid "Value must be an integer value" msgstr "该值必须为整数" -#: common/models.py:862 +#: common/models.py:866 msgid "Value must be a valid number" msgstr "必须是有效数字" -#: common/models.py:887 +#: common/models.py:891 msgid "Value does not pass validation checks" msgstr "值未通过验证检查" -#: common/models.py:909 +#: common/models.py:913 msgid "Key string must be unique" msgstr "键字符串必须是唯一的" -#: common/models.py:1318 common/models.py:1319 common/models.py:1423 -#: common/models.py:1424 common/models.py:1669 common/models.py:1670 -#: common/models.py:2000 common/models.py:2001 common/models.py:2382 -#: importer/models.py:100 part/models.py:3547 part/models.py:3575 +#: common/models.py:1322 common/models.py:1323 common/models.py:1427 +#: common/models.py:1428 common/models.py:1673 common/models.py:1674 +#: common/models.py:2006 common/models.py:2007 common/models.py:2803 +#: importer/models.py:100 part/models.py:3611 part/models.py:3639 #: plugin/models.py:355 plugin/models.py:356 #: report/templates/report/inventree_test_report.html:105 users/models.py:124 #: users/models.py:501 msgid "User" msgstr "使用者" -#: common/models.py:1341 +#: common/models.py:1345 msgid "Price break quantity" msgstr "批发价数量" -#: common/models.py:1348 company/serializers.py:564 order/models.py:1842 -#: order/models.py:3043 +#: common/models.py:1352 company/serializers.py:349 order/models.py:1843 +#: order/models.py:3044 msgid "Price" msgstr "价格" -#: common/models.py:1349 +#: common/models.py:1353 msgid "Unit price at specified quantity" msgstr "指定数量的单位价格" -#: common/models.py:1400 common/models.py:1585 +#: common/models.py:1404 common/models.py:1589 msgid "Endpoint" msgstr "端点" -#: common/models.py:1401 +#: common/models.py:1405 msgid "Endpoint at which this webhook is received" msgstr "接收此网络钩子的端点" -#: common/models.py:1411 +#: common/models.py:1415 msgid "Name for this webhook" msgstr "此网络钩子的名称" -#: common/models.py:1415 common/models.py:2241 common/models.py:2348 -#: company/models.py:191 company/models.py:822 machine/models.py:40 -#: part/models.py:1237 plugin/models.py:69 stock/api.py:642 users/models.py:195 +#: common/models.py:1419 common/models.py:2247 common/models.py:2354 +#: company/models.py:192 company/models.py:776 machine/models.py:40 +#: part/models.py:1325 plugin/models.py:69 stock/api.py:642 users/models.py:195 #: users/models.py:554 users/serializers.py:314 msgid "Active" msgstr "激活" -#: common/models.py:1415 +#: common/models.py:1419 msgid "Is this webhook active" msgstr "网络钩子是否已启用" -#: common/models.py:1431 users/models.py:172 +#: common/models.py:1435 users/models.py:172 msgid "Token" msgstr "令牌" -#: common/models.py:1432 +#: common/models.py:1436 msgid "Token for access" msgstr "访问令牌" -#: common/models.py:1440 +#: common/models.py:1444 msgid "Secret" msgstr "密钥" -#: common/models.py:1441 +#: common/models.py:1445 msgid "Shared secret for HMAC" msgstr "HMAC共享密钥" -#: common/models.py:1549 common/models.py:2619 +#: common/models.py:1553 common/models.py:3040 msgid "Message ID" msgstr "消息ID" -#: common/models.py:1550 common/models.py:2609 +#: common/models.py:1554 common/models.py:3030 msgid "Unique identifier for this message" msgstr "此邮件的唯一标识符" -#: common/models.py:1558 +#: common/models.py:1562 msgid "Host" msgstr "主机" -#: common/models.py:1559 +#: common/models.py:1563 msgid "Host from which this message was received" msgstr "接收此消息的主机" -#: common/models.py:1567 +#: common/models.py:1571 msgid "Header" msgstr "标题" -#: common/models.py:1568 +#: common/models.py:1572 msgid "Header of this message" msgstr "此消息的标题" -#: common/models.py:1575 +#: common/models.py:1579 msgid "Body" msgstr "正文" -#: common/models.py:1576 +#: common/models.py:1580 msgid "Body of this message" msgstr "此消息的正文" -#: common/models.py:1586 +#: common/models.py:1590 msgid "Endpoint on which this message was received" msgstr "接收此消息的终点" -#: common/models.py:1591 +#: common/models.py:1595 msgid "Worked on" msgstr "工作于" -#: common/models.py:1592 +#: common/models.py:1596 msgid "Was the work on this message finished?" msgstr "这条消息的工作完成了吗?" -#: common/models.py:1718 +#: common/models.py:1722 msgid "Id" msgstr "标识" -#: common/models.py:1720 +#: common/models.py:1724 msgid "Title" msgstr "标题" -#: common/models.py:1722 common/models.py:1983 company/models.py:185 -#: company/models.py:467 company/models.py:534 company/models.py:839 -#: order/models.py:457 order/models.py:1786 order/models.py:2343 -#: part/models.py:1113 +#: common/models.py:1726 common/models.py:1989 company/models.py:186 +#: company/models.py:468 company/models.py:536 company/models.py:793 +#: order/models.py:458 order/models.py:1787 order/models.py:2344 +#: part/models.py:1201 #: report/templates/report/inventree_build_order_report.html:164 msgid "Link" msgstr "链接" -#: common/models.py:1724 +#: common/models.py:1728 msgid "Published" msgstr "已发布" -#: common/models.py:1726 +#: common/models.py:1730 msgid "Author" msgstr "作者" -#: common/models.py:1728 +#: common/models.py:1732 msgid "Summary" msgstr "摘要" -#: common/models.py:1731 common/models.py:2586 +#: common/models.py:1735 common/models.py:3007 msgid "Read" msgstr "阅读" -#: common/models.py:1731 +#: common/models.py:1735 msgid "Was this news item read?" msgstr "这条新闻被阅读了吗?" -#: common/models.py:1748 +#: common/models.py:1752 msgid "Image file" msgstr "图像文件" -#: common/models.py:1760 +#: common/models.py:1764 msgid "Target model type for this image" msgstr "此图像的目标模型类型" -#: common/models.py:1764 +#: common/models.py:1768 msgid "Target model ID for this image" msgstr "此图像的目标型号ID" -#: common/models.py:1786 +#: common/models.py:1790 msgid "Custom Unit" msgstr "自定义单位" -#: common/models.py:1804 +#: common/models.py:1808 msgid "Unit symbol must be unique" msgstr "单位符号必须唯一" -#: common/models.py:1819 +#: common/models.py:1823 msgid "Unit name must be a valid identifier" msgstr "单位名称必须是有效的标识符" -#: common/models.py:1838 +#: common/models.py:1842 msgid "Unit name" msgstr "单位名称" -#: common/models.py:1845 +#: common/models.py:1849 msgid "Symbol" msgstr "符号" -#: common/models.py:1846 +#: common/models.py:1850 msgid "Optional unit symbol" msgstr "可选单位符号" -#: common/models.py:1852 +#: common/models.py:1856 msgid "Definition" msgstr "定义" -#: common/models.py:1853 +#: common/models.py:1857 msgid "Unit definition" msgstr "单位定义" -#: common/models.py:1911 common/models.py:1974 stock/models.py:2967 +#: common/models.py:1917 common/models.py:1980 stock/models.py:2984 #: stock/serializers.py:247 msgid "Attachment" msgstr "附件" -#: common/models.py:1928 +#: common/models.py:1934 msgid "Missing file" msgstr "缺少文件" -#: common/models.py:1929 +#: common/models.py:1935 msgid "Missing external link" msgstr "缺少外部链接" -#: common/models.py:1966 +#: common/models.py:1972 common/models.py:2488 msgid "Model type" msgstr "模型类型" -#: common/models.py:1967 +#: common/models.py:1973 msgid "Target model type for image" msgstr "图片的目标模型类型" -#: common/models.py:1975 +#: common/models.py:1981 msgid "Select file to attach" msgstr "选择附件" -#: common/models.py:1991 +#: common/models.py:1997 msgid "Comment" msgstr "备注" -#: common/models.py:1992 +#: common/models.py:1998 msgid "Attachment comment" msgstr "附件备注" -#: common/models.py:2008 +#: common/models.py:2014 msgid "Upload date" msgstr "上传日期" -#: common/models.py:2009 +#: common/models.py:2015 msgid "Date the file was uploaded" msgstr "上传文件的日期" -#: common/models.py:2013 +#: common/models.py:2019 msgid "File size" msgstr "文件大小" -#: common/models.py:2013 +#: common/models.py:2019 msgid "File size in bytes" msgstr "文件大小,以字节为单位" -#: common/models.py:2051 common/serializers.py:684 +#: common/models.py:2057 common/serializers.py:688 msgid "Invalid model type specified for attachment" msgstr "为附件指定的模型类型无效" -#: common/models.py:2072 +#: common/models.py:2078 msgid "Custom State" msgstr "自定状态" -#: common/models.py:2073 +#: common/models.py:2079 msgid "Custom States" msgstr "定制状态" -#: common/models.py:2078 +#: common/models.py:2084 msgid "Reference Status Set" msgstr "参考状态设置" -#: common/models.py:2079 +#: common/models.py:2085 msgid "Status set that is extended with this custom state" msgstr "使用此自定义状态扩展状态的状态集" -#: common/models.py:2083 generic/states/serializers.py:18 +#: common/models.py:2089 generic/states/serializers.py:18 msgid "Logical Key" msgstr "逻辑密钥" -#: common/models.py:2085 +#: common/models.py:2091 msgid "State logical key that is equal to this custom state in business logic" msgstr "等同于商业逻辑中自定义状态的状态逻辑键" -#: common/models.py:2090 common/models.py:2329 company/models.py:622 -#: machine/serializers.py:27 -#: report/templates/report/inventree_test_report.html:104 stock/models.py:2959 +#: common/models.py:2096 common/models.py:2335 machine/serializers.py:27 +#: report/templates/report/inventree_test_report.html:104 stock/models.py:2976 msgid "Value" msgstr "值" -#: common/models.py:2091 +#: common/models.py:2097 msgid "Numerical value that will be saved in the models database" msgstr "将保存至模型数据库的数值" -#: common/models.py:2097 +#: common/models.py:2103 msgid "Name of the state" msgstr "状态名" -#: common/models.py:2106 common/models.py:2335 generic/states/serializers.py:22 +#: common/models.py:2112 common/models.py:2341 generic/states/serializers.py:22 msgid "Label" msgstr "标签" -#: common/models.py:2107 +#: common/models.py:2113 msgid "Label that will be displayed in the frontend" msgstr "将在前端显示的标签" -#: common/models.py:2114 generic/states/serializers.py:24 +#: common/models.py:2120 generic/states/serializers.py:24 msgid "Color" msgstr "颜色" -#: common/models.py:2115 +#: common/models.py:2121 msgid "Color that will be displayed in the frontend" msgstr "将在前端显示颜色" -#: common/models.py:2123 +#: common/models.py:2129 msgid "Model" msgstr "型号" -#: common/models.py:2124 +#: common/models.py:2130 msgid "Model this state is associated with" msgstr "该状态关联的模型" -#: common/models.py:2139 +#: common/models.py:2145 msgid "Model must be selected" msgstr "必须选定模型" -#: common/models.py:2142 +#: common/models.py:2148 msgid "Key must be selected" msgstr "必须选取密钥" -#: common/models.py:2145 +#: common/models.py:2151 msgid "Logical key must be selected" msgstr "必须选中逻辑密钥" -#: common/models.py:2149 +#: common/models.py:2155 msgid "Key must be different from logical key" msgstr "密钥必须不同于逻辑密钥" -#: common/models.py:2156 +#: common/models.py:2162 msgid "Valid reference status class must be provided" msgstr "必须提供有效的参考状态类" -#: common/models.py:2162 +#: common/models.py:2168 msgid "Key must be different from the logical keys of the reference status" msgstr "密钥必须不同于参考状态的逻辑密钥" -#: common/models.py:2169 +#: common/models.py:2175 msgid "Logical key must be in the logical keys of the reference status" msgstr "逻辑密钥必须在参考状态的逻辑键中" -#: common/models.py:2176 +#: common/models.py:2182 msgid "Name must be different from the names of the reference status" msgstr "名称必须不同于参考状态的名称" -#: common/models.py:2216 common/models.py:2323 part/models.py:3889 +#: common/models.py:2222 common/models.py:2329 common/models.py:2533 msgid "Selection List" msgstr "选择列表" -#: common/models.py:2217 +#: common/models.py:2223 msgid "Selection Lists" msgstr "选择列表" -#: common/models.py:2222 +#: common/models.py:2228 msgid "Name of the selection list" msgstr "选择列表的名称" -#: common/models.py:2229 +#: common/models.py:2235 msgid "Description of the selection list" msgstr "选择列表的描述" -#: common/models.py:2235 part/models.py:1242 +#: common/models.py:2241 part/models.py:1330 msgid "Locked" msgstr "已锁定" -#: common/models.py:2236 +#: common/models.py:2242 msgid "Is this selection list locked?" msgstr "此选择列表是否已锁定?" -#: common/models.py:2242 +#: common/models.py:2248 msgid "Can this selection list be used?" msgstr "能否使用此选择列表?" -#: common/models.py:2250 +#: common/models.py:2256 msgid "Source Plugin" msgstr "源插件" -#: common/models.py:2251 +#: common/models.py:2257 msgid "Plugin which provides the selection list" msgstr "提供选择列表的插件" -#: common/models.py:2256 +#: common/models.py:2262 msgid "Source String" msgstr "源字符串" -#: common/models.py:2257 +#: common/models.py:2263 msgid "Optional string identifying the source used for this list" msgstr "可选字符串,用于标识本列表的数据来源" -#: common/models.py:2266 +#: common/models.py:2272 msgid "Default Entry" msgstr "缺省项" -#: common/models.py:2267 +#: common/models.py:2273 msgid "Default entry for this selection list" msgstr "本选择列表的默认选项" -#: common/models.py:2272 common/models.py:2724 +#: common/models.py:2278 common/models.py:3145 msgid "Created" msgstr "已创建" -#: common/models.py:2273 +#: common/models.py:2279 msgid "Date and time that the selection list was created" msgstr "选择列表的创建日期和时间" -#: common/models.py:2278 +#: common/models.py:2284 msgid "Last Updated" msgstr "最近更新" -#: common/models.py:2279 +#: common/models.py:2285 msgid "Date and time that the selection list was last updated" msgstr "选择列表的最后更新时间" -#: common/models.py:2313 +#: common/models.py:2319 msgid "Selection List Entry" msgstr "选择列表项" -#: common/models.py:2314 +#: common/models.py:2320 msgid "Selection List Entries" msgstr "选择列表项" -#: common/models.py:2324 +#: common/models.py:2330 msgid "Selection list to which this entry belongs" msgstr "此选项归属的选择列表" -#: common/models.py:2330 +#: common/models.py:2336 msgid "Value of the selection list entry" msgstr "选择列表项的值" -#: common/models.py:2336 +#: common/models.py:2342 msgid "Label for the selection list entry" msgstr "选择列表项的标签" -#: common/models.py:2342 +#: common/models.py:2348 msgid "Description of the selection list entry" msgstr "选择列表项的描述" -#: common/models.py:2349 +#: common/models.py:2355 msgid "Is this selection list entry active?" msgstr "该选择列表项是否处于激活状态?" -#: common/models.py:2367 -msgid "Barcode Scan" -msgstr "扫描条码" +#: common/models.py:2387 +msgid "Parameter Template" +msgstr "参数模板" -#: common/models.py:2371 importer/models.py:546 part/models.py:4060 +#: common/models.py:2388 +msgid "Parameter Templates" +msgstr "" + +#: common/models.py:2425 +msgid "Checkbox parameters cannot have units" +msgstr "勾选框参数不能有单位" + +#: common/models.py:2430 +msgid "Checkbox parameters cannot have choices" +msgstr "复选框参数不能有选项" + +#: common/models.py:2450 part/models.py:3707 +msgid "Choices must be unique" +msgstr "选择必须是唯一的" + +#: common/models.py:2467 +msgid "Parameter template name must be unique" +msgstr "参数模板名称必须是唯一的" + +#: common/models.py:2489 +msgid "Target model type for this parameter template" +msgstr "" + +#: common/models.py:2495 +msgid "Parameter Name" +msgstr "参数名称" + +#: common/models.py:2501 part/models.py:1283 +msgid "Units" +msgstr "单位" + +#: common/models.py:2502 +msgid "Physical units for this parameter" +msgstr "此参数的物理单位" + +#: common/models.py:2510 +msgid "Parameter description" +msgstr "参数说明" + +#: common/models.py:2516 +msgid "Checkbox" +msgstr "勾选框" + +#: common/models.py:2517 +msgid "Is this parameter a checkbox?" +msgstr "此参数是否为勾选框?" + +#: common/models.py:2522 part/models.py:3794 +msgid "Choices" +msgstr "选项" + +#: common/models.py:2523 +msgid "Valid choices for this parameter (comma-separated)" +msgstr "此参数的有效选择 (逗号分隔)" + +#: common/models.py:2534 +msgid "Selection list for this parameter" +msgstr "此参数的选择列表" + +#: common/models.py:2539 part/models.py:3769 report/models.py:287 +msgid "Enabled" +msgstr "已启用" + +#: common/models.py:2540 +msgid "Is this parameter template enabled?" +msgstr "" + +#: common/models.py:2581 +msgid "Parameter" +msgstr "" + +#: common/models.py:2582 +msgid "Parameters" +msgstr "" + +#: common/models.py:2628 +msgid "Invalid choice for parameter value" +msgstr "无效的参数值选择" + +#: common/models.py:2698 common/serializers.py:783 +msgid "Invalid model type specified for parameter" +msgstr "" + +#: common/models.py:2734 +msgid "Model ID" +msgstr "" + +#: common/models.py:2735 +msgid "ID of the target model for this parameter" +msgstr "" + +#: common/models.py:2744 common/setting/system.py:450 report/models.py:373 +#: report/models.py:669 report/serializers.py:94 report/serializers.py:135 +#: stock/serializers.py:234 +msgid "Template" +msgstr "模板" + +#: common/models.py:2745 +msgid "Parameter template" +msgstr "" + +#: common/models.py:2750 common/models.py:2792 importer/models.py:546 msgid "Data" msgstr "数据" -#: common/models.py:2372 +#: common/models.py:2751 +msgid "Parameter Value" +msgstr "参数值" + +#: common/models.py:2760 company/models.py:810 order/serializers.py:894 +#: order/serializers.py:2064 part/models.py:4075 part/models.py:4444 +#: report/templates/report/inventree_bill_of_materials_report.html:140 +#: report/templates/report/inventree_purchase_order_report.html:39 +#: report/templates/report/inventree_return_order_report.html:27 +#: report/templates/report/inventree_sales_order_report.html:32 +#: report/templates/report/inventree_stock_location_report.html:105 +#: stock/serializers.py:813 +msgid "Note" +msgstr "备注" + +#: common/models.py:2761 stock/serializers.py:718 +msgid "Optional note field" +msgstr "可选注释字段" + +#: common/models.py:2788 +msgid "Barcode Scan" +msgstr "扫描条码" + +#: common/models.py:2793 msgid "Barcode data" msgstr "条码数据" -#: common/models.py:2383 +#: common/models.py:2804 msgid "User who scanned the barcode" msgstr "扫描条码的用户" -#: common/models.py:2388 importer/models.py:69 +#: common/models.py:2809 importer/models.py:69 msgid "Timestamp" msgstr "时间戳" -#: common/models.py:2389 +#: common/models.py:2810 msgid "Date and time of the barcode scan" msgstr "扫描条形码的日期和时间" -#: common/models.py:2395 +#: common/models.py:2816 msgid "URL endpoint which processed the barcode" msgstr "处理条码的 URL 端点" -#: common/models.py:2402 order/models.py:1832 plugin/serializers.py:93 +#: common/models.py:2823 order/models.py:1833 plugin/serializers.py:93 msgid "Context" msgstr "上下文" -#: common/models.py:2403 +#: common/models.py:2824 msgid "Context data for the barcode scan" msgstr "扫描条形码的上下文数据" -#: common/models.py:2410 +#: common/models.py:2831 msgid "Response" msgstr "响应" -#: common/models.py:2411 +#: common/models.py:2832 msgid "Response data from the barcode scan" msgstr "扫描条形码的响应数据" -#: common/models.py:2417 report/templates/report/inventree_test_report.html:103 -#: stock/models.py:2953 +#: common/models.py:2838 report/templates/report/inventree_test_report.html:103 +#: stock/models.py:2970 msgid "Result" msgstr "结果" -#: common/models.py:2418 +#: common/models.py:2839 msgid "Was the barcode scan successful?" msgstr "条码扫描成功吗?" -#: common/models.py:2500 +#: common/models.py:2921 msgid "An error occurred" msgstr "发生错误" -#: common/models.py:2521 +#: common/models.py:2942 msgid "INVE-E8: Email log deletion is protected. Set INVENTREE_PROTECT_EMAIL_LOG to False to allow deletion." msgstr "INVE-E8:邮件日志删除受保护。需设置 INVENTREE_PROTECT_EMAIL_LOG 为 False 以允许删除。" -#: common/models.py:2568 +#: common/models.py:2989 msgid "Email Message" msgstr "电子邮件信息" -#: common/models.py:2569 +#: common/models.py:2990 msgid "Email Messages" msgstr "电子邮箱信息" -#: common/models.py:2576 +#: common/models.py:2997 msgid "Announced" msgstr "已发布" -#: common/models.py:2578 +#: common/models.py:2999 msgid "Sent" msgstr "已发送" -#: common/models.py:2579 +#: common/models.py:3000 msgid "Failed" msgstr "失败" -#: common/models.py:2582 +#: common/models.py:3003 msgid "Delivered" msgstr "已送达" -#: common/models.py:2590 +#: common/models.py:3011 msgid "Confirmed" msgstr "已确认" -#: common/models.py:2596 +#: common/models.py:3017 msgid "Inbound" msgstr "入站" -#: common/models.py:2597 +#: common/models.py:3018 msgid "Outbound" msgstr "出站" -#: common/models.py:2602 +#: common/models.py:3023 msgid "No Reply" msgstr "暂无回复消息" -#: common/models.py:2603 +#: common/models.py:3024 msgid "Track Delivery" msgstr "跟踪交付" -#: common/models.py:2604 +#: common/models.py:3025 msgid "Track Read" msgstr "已读追踪" -#: common/models.py:2605 +#: common/models.py:3026 msgid "Track Click" msgstr "点击追踪" -#: common/models.py:2608 common/models.py:2711 +#: common/models.py:3029 common/models.py:3132 msgid "Global ID" msgstr "全局ID" -#: common/models.py:2621 +#: common/models.py:3042 msgid "Identifier for this message (might be supplied by external system)" msgstr "此消息的标识符 (可能由外部系统提供)" -#: common/models.py:2628 +#: common/models.py:3049 msgid "Thread ID" msgstr "主题 ID" -#: common/models.py:2630 +#: common/models.py:3051 msgid "Identifier for this message thread (might be supplied by external system)" msgstr "此消息主题的标识符 (可能由外部系统提供)" -#: common/models.py:2639 +#: common/models.py:3060 msgid "Thread" msgstr "主题" -#: common/models.py:2640 +#: common/models.py:3061 msgid "Linked thread for this message" msgstr "链接到此消息的主题" -#: common/models.py:2656 -msgid "Prioriy" +#: common/models.py:3077 +msgid "Priority" msgstr "优先级" -#: common/models.py:2698 +#: common/models.py:3119 msgid "Email Thread" msgstr "邮件主题" -#: common/models.py:2699 +#: common/models.py:3120 msgid "Email Threads" msgstr "邮件主题" -#: common/models.py:2705 generic/states/serializers.py:16 +#: common/models.py:3126 generic/states/serializers.py:16 #: machine/serializers.py:24 plugin/models.py:46 users/models.py:113 msgid "Key" msgstr "键" -#: common/models.py:2708 +#: common/models.py:3129 msgid "Unique key for this thread (used to identify the thread)" msgstr "此主题的唯一密钥 (用于识别主题)" -#: common/models.py:2712 +#: common/models.py:3133 msgid "Unique identifier for this thread" msgstr "此主题的唯一标识符" -#: common/models.py:2719 +#: common/models.py:3140 msgid "Started Internal" msgstr "内部服务已启动" -#: common/models.py:2720 +#: common/models.py:3141 msgid "Was this thread started internally?" msgstr "该线程是否为内部启动的?" -#: common/models.py:2725 +#: common/models.py:3146 msgid "Date and time that the thread was created" msgstr "创建主题的日期和时间" -#: common/models.py:2730 +#: common/models.py:3151 msgid "Date and time that the thread was last updated" msgstr "主题最后更新的日期和时间" @@ -2199,7 +2339,7 @@ msgstr "{verbose_name} 已取消" msgid "A order that is assigned to you was canceled" msgstr "分配给您的订单已取消" -#: common/notifications.py:73 common/notifications.py:80 order/api.py:594 +#: common/notifications.py:73 common/notifications.py:80 order/api.py:600 msgid "Items Received" msgstr "收到的物品" @@ -2211,88 +2351,93 @@ msgstr "已根据采购订单收到物品" msgid "Items have been received against a return order" msgstr "已收到退货订单中的物品" -#: common/serializers.py:145 +#: common/serializers.py:149 msgid "Indicates if the setting is overridden by an environment variable" msgstr "表示设置是否被环境变量覆盖" -#: common/serializers.py:147 +#: common/serializers.py:151 msgid "Override" msgstr "覆盖" -#: common/serializers.py:498 +#: common/serializers.py:502 msgid "Is Running" msgstr "正在运行" -#: common/serializers.py:504 +#: common/serializers.py:508 msgid "Pending Tasks" msgstr "等待完成的任务" -#: common/serializers.py:510 +#: common/serializers.py:514 msgid "Scheduled Tasks" msgstr "预定的任务" -#: common/serializers.py:516 +#: common/serializers.py:520 msgid "Failed Tasks" msgstr "失败的任务" -#: common/serializers.py:531 +#: common/serializers.py:535 msgid "Task ID" msgstr "任务ID" -#: common/serializers.py:531 +#: common/serializers.py:535 msgid "Unique task ID" msgstr "唯一任务ID" -#: common/serializers.py:533 +#: common/serializers.py:537 msgid "Lock" msgstr "锁定" -#: common/serializers.py:533 +#: common/serializers.py:537 msgid "Lock time" msgstr "锁定时间" -#: common/serializers.py:535 +#: common/serializers.py:539 msgid "Task name" msgstr "任务名称" -#: common/serializers.py:537 +#: common/serializers.py:541 msgid "Function" msgstr "功能" -#: common/serializers.py:537 +#: common/serializers.py:541 msgid "Function name" msgstr "功能名称" -#: common/serializers.py:539 +#: common/serializers.py:543 msgid "Arguments" msgstr "参数" -#: common/serializers.py:539 +#: common/serializers.py:543 msgid "Task arguments" msgstr "任务参数" -#: common/serializers.py:542 +#: common/serializers.py:546 msgid "Keyword Arguments" msgstr "关键字参数" -#: common/serializers.py:542 +#: common/serializers.py:546 msgid "Task keyword arguments" msgstr "任务关键词参数" -#: common/serializers.py:652 +#: common/serializers.py:656 msgid "Filename" msgstr "文件名" -#: common/serializers.py:659 importer/models.py:89 report/api.py:41 +#: common/serializers.py:663 common/serializers.py:730 +#: common/serializers.py:805 importer/models.py:89 report/api.py:41 #: report/models.py:293 report/serializers.py:52 msgid "Model Type" msgstr "模型类型" -#: common/serializers.py:687 +#: common/serializers.py:691 msgid "User does not have permission to create or edit attachments for this model" msgstr "用户无权为此模式创建或编辑附件" -#: common/serializers.py:731 common/serializers.py:834 +#: common/serializers.py:786 +msgid "User does not have permission to create or edit parameters for this model" +msgstr "" + +#: common/serializers.py:850 common/serializers.py:953 msgid "Selection list is locked" msgstr "选择列表已锁定" @@ -2368,7 +2513,7 @@ msgstr "限制显示 `关于` 信息" msgid "Show the `about` modal only to superusers" msgstr "只向超级管理员显示关于信息" -#: common/setting/system.py:224 company/models.py:144 company/models.py:145 +#: common/setting/system.py:224 company/models.py:145 company/models.py:146 msgid "Company name" msgstr "公司名称" @@ -2411,8 +2556,8 @@ msgstr "检查更新的频率(设置为零以禁用)" #: common/setting/system.py:253 common/setting/system.py:293 #: common/setting/system.py:306 common/setting/system.py:314 #: common/setting/system.py:321 common/setting/system.py:330 -#: common/setting/system.py:339 common/setting/system.py:588 -#: common/setting/system.py:616 common/setting/system.py:707 +#: common/setting/system.py:339 common/setting/system.py:580 +#: common/setting/system.py:608 common/setting/system.py:707 #: common/setting/system.py:1103 common/setting/system.py:1119 msgid "days" msgstr "天" @@ -2657,12 +2802,6 @@ msgstr "复制类别参数模板" msgid "Copy category parameter templates when creating a part" msgstr "创建零件时复制类别参数模板" -#: common/setting/system.py:450 part/models.py:4054 report/models.py:373 -#: report/models.py:669 report/serializers.py:94 report/serializers.py:135 -#: stock/serializers.py:234 -msgid "Template" -msgstr "模板" - #: common/setting/system.py:451 msgid "Parts are templates by default" msgstr "零件默认为模板" @@ -2671,8 +2810,8 @@ msgstr "零件默认为模板" msgid "Parts can be assembled from other components by default" msgstr "默认情况下,元件可由其他零件组装而成" -#: common/setting/system.py:462 part/models.py:1208 part/serializers.py:1734 -#: part/serializers.py:1741 +#: common/setting/system.py:462 part/models.py:1296 part/serializers.py:1599 +#: part/serializers.py:1606 msgid "Component" msgstr "组件" @@ -2680,7 +2819,7 @@ msgstr "组件" msgid "Parts can be used as sub-components by default" msgstr "默认情况下,零件可用作子部件" -#: common/setting/system.py:468 part/models.py:1226 +#: common/setting/system.py:468 part/models.py:1314 msgid "Purchaseable" msgstr "可购买" @@ -2688,7 +2827,7 @@ msgstr "可购买" msgid "Parts are purchaseable by default" msgstr "默认情况下可购买零件" -#: common/setting/system.py:474 part/models.py:1232 stock/api.py:643 +#: common/setting/system.py:474 part/models.py:1320 stock/api.py:643 msgid "Salable" msgstr "可销售" @@ -2700,7 +2839,7 @@ msgstr "零件默认为可销售" msgid "Parts are trackable by default" msgstr "默认情况下可跟踪零件" -#: common/setting/system.py:486 part/models.py:1248 +#: common/setting/system.py:486 part/models.py:1336 msgid "Virtual" msgstr "虚拟的" @@ -2749,158 +2888,158 @@ msgid "Part category default icon (empty means no icon)" msgstr "零件类别默认图标 (空表示没有图标)" #: common/setting/system.py:525 -msgid "Enforce Parameter Units" -msgstr "强制参数单位" - -#: common/setting/system.py:527 -msgid "If units are provided, parameter values must match the specified units" -msgstr "如果提供了单位,参数值必须与指定的单位匹配" - -#: common/setting/system.py:533 msgid "Minimum Pricing Decimal Places" msgstr "最小定价小数位数" -#: common/setting/system.py:535 +#: common/setting/system.py:527 msgid "Minimum number of decimal places to display when rendering pricing data" msgstr "呈现定价数据时显示的最小小数位数" -#: common/setting/system.py:546 +#: common/setting/system.py:538 msgid "Maximum Pricing Decimal Places" msgstr "最大定价小数位数" -#: common/setting/system.py:548 +#: common/setting/system.py:540 msgid "Maximum number of decimal places to display when rendering pricing data" msgstr "呈现定价数据时显示的最大小数位数" -#: common/setting/system.py:559 +#: common/setting/system.py:551 msgid "Use Supplier Pricing" msgstr "使用供应商定价" -#: common/setting/system.py:561 +#: common/setting/system.py:553 msgid "Include supplier price breaks in overall pricing calculations" msgstr "将供应商的批发价纳入整体价格计算" -#: common/setting/system.py:567 +#: common/setting/system.py:559 msgid "Purchase History Override" msgstr "采购历史价优先" -#: common/setting/system.py:569 +#: common/setting/system.py:561 msgid "Historical purchase order pricing overrides supplier price breaks" msgstr "当存在历史采购订单价格时,将忽略供应商的批发价" -#: common/setting/system.py:575 +#: common/setting/system.py:567 msgid "Use Stock Item Pricing" msgstr "使用库存项定价" -#: common/setting/system.py:577 +#: common/setting/system.py:569 msgid "Use pricing from manually entered stock data for pricing calculations" msgstr "使用手动输入的库存数据进行定价计算" -#: common/setting/system.py:583 +#: common/setting/system.py:575 msgid "Stock Item Pricing Age" msgstr "库存项目定价时间" -#: common/setting/system.py:585 +#: common/setting/system.py:577 msgid "Exclude stock items older than this number of days from pricing calculations" msgstr "从定价计算中排除超过此天数的库存项目" -#: common/setting/system.py:592 +#: common/setting/system.py:584 msgid "Use Variant Pricing" msgstr "使用变体定价" -#: common/setting/system.py:593 +#: common/setting/system.py:585 msgid "Include variant pricing in overall pricing calculations" msgstr "将产品变体的特殊定价纳入整体价格计算" -#: common/setting/system.py:598 +#: common/setting/system.py:590 msgid "Active Variants Only" msgstr "仅限活跃变体" -#: common/setting/system.py:600 +#: common/setting/system.py:592 msgid "Only use active variant parts for calculating variant pricing" msgstr "仅使用活跃变体零件计算变体价格" -#: common/setting/system.py:606 +#: common/setting/system.py:598 msgid "Auto Update Pricing" msgstr "自动更新定价" -#: common/setting/system.py:608 +#: common/setting/system.py:600 msgid "Automatically update part pricing when internal data changes" msgstr "当内部数据变化时自动更新零件价格" -#: common/setting/system.py:614 +#: common/setting/system.py:606 msgid "Pricing Rebuild Interval" msgstr "价格重建间隔" -#: common/setting/system.py:615 +#: common/setting/system.py:607 msgid "Number of days before part pricing is automatically updated" msgstr "零件价格自动更新前的天数" -#: common/setting/system.py:621 +#: common/setting/system.py:613 msgid "Internal Prices" msgstr "内部价格" -#: common/setting/system.py:622 +#: common/setting/system.py:614 msgid "Enable internal prices for parts" msgstr "为零件启用内部核算价格功能" -#: common/setting/system.py:627 +#: common/setting/system.py:619 msgid "Internal Price Override" msgstr "内部价格优先" -#: common/setting/system.py:629 +#: common/setting/system.py:621 msgid "If available, internal prices override price range calculations" msgstr "若存在内部价格,将覆盖BOM价格区间计算结果" -#: common/setting/system.py:635 +#: common/setting/system.py:627 msgid "Enable label printing" msgstr "启用标签打印功能" -#: common/setting/system.py:636 +#: common/setting/system.py:628 msgid "Enable label printing from the web interface" msgstr "启用从网络界面打印标签" -#: common/setting/system.py:641 +#: common/setting/system.py:633 msgid "Label Image DPI" msgstr "标签图片 DPI" -#: common/setting/system.py:643 +#: common/setting/system.py:635 msgid "DPI resolution when generating image files to supply to label printing plugins" msgstr "生成图像文件以供标签打印插件使用时的 DPI 分辨率" -#: common/setting/system.py:649 +#: common/setting/system.py:641 msgid "Enable Reports" msgstr "启用报告" -#: common/setting/system.py:650 +#: common/setting/system.py:642 msgid "Enable generation of reports" msgstr "启用报告生成" -#: common/setting/system.py:655 +#: common/setting/system.py:647 msgid "Debug Mode" msgstr "调试模式" -#: common/setting/system.py:656 +#: common/setting/system.py:648 msgid "Generate reports in debug mode (HTML output)" msgstr "以调试模式生成报告(HTML 输出)" -#: common/setting/system.py:661 +#: common/setting/system.py:653 msgid "Log Report Errors" msgstr "日志错误报告" -#: common/setting/system.py:662 +#: common/setting/system.py:654 msgid "Log errors which occur when generating reports" msgstr "记录生成报告时出现的错误" -#: common/setting/system.py:667 plugin/builtin/labels/label_sheet.py:29 +#: common/setting/system.py:659 plugin/builtin/labels/label_sheet.py:29 #: report/models.py:381 msgid "Page Size" msgstr "页面大小" -#: common/setting/system.py:668 +#: common/setting/system.py:660 msgid "Default page size for PDF reports" msgstr "PDF 报告默认页面大小" +#: common/setting/system.py:665 +msgid "Enforce Parameter Units" +msgstr "强制参数单位" + +#: common/setting/system.py:667 +msgid "If units are provided, parameter values must match the specified units" +msgstr "如果提供了单位,参数值必须与指定的单位匹配" + #: common/setting/system.py:673 msgid "Globally Unique Serials" msgstr "全局唯一序列号" @@ -3456,690 +3595,679 @@ msgid "Display PDF reports in the browser, instead of downloading as a file" msgstr "在浏览器中显示PDF报告,而不是作为文件下载" #: common/setting/user.py:45 +msgid "Barcode Scanner in Form Fields" +msgstr "" + +#: common/setting/user.py:46 +msgid "Allow barcode scanner input in form fields" +msgstr "" + +#: common/setting/user.py:51 msgid "Search Parts" msgstr "搜索零件" -#: common/setting/user.py:46 +#: common/setting/user.py:52 msgid "Display parts in search preview window" msgstr "在搜索预览窗口中显示零件" -#: common/setting/user.py:51 +#: common/setting/user.py:57 msgid "Search Supplier Parts" msgstr "搜索供应商零件" -#: common/setting/user.py:52 +#: common/setting/user.py:58 msgid "Display supplier parts in search preview window" msgstr "在搜索预览窗口中显示供应商零件" -#: common/setting/user.py:57 +#: common/setting/user.py:63 msgid "Search Manufacturer Parts" msgstr "搜索制造商零件" -#: common/setting/user.py:58 +#: common/setting/user.py:64 msgid "Display manufacturer parts in search preview window" msgstr "在搜索预览窗口中显示制造商零件" -#: common/setting/user.py:63 +#: common/setting/user.py:69 msgid "Hide Inactive Parts" msgstr "隐藏非活动零件" -#: common/setting/user.py:64 +#: common/setting/user.py:70 msgid "Excluded inactive parts from search preview window" msgstr "从搜索预览窗口中排除非活动零件" -#: common/setting/user.py:69 +#: common/setting/user.py:75 msgid "Search Categories" msgstr "搜索分类" -#: common/setting/user.py:70 +#: common/setting/user.py:76 msgid "Display part categories in search preview window" msgstr "在搜索预览窗口中显示零件类别" -#: common/setting/user.py:75 +#: common/setting/user.py:81 msgid "Search Stock" msgstr "搜索库存" -#: common/setting/user.py:76 +#: common/setting/user.py:82 msgid "Display stock items in search preview window" msgstr "在搜索预览窗口中显示库存项目" -#: common/setting/user.py:81 +#: common/setting/user.py:87 msgid "Hide Unavailable Stock Items" msgstr "隐藏不可用的库存项目" -#: common/setting/user.py:83 +#: common/setting/user.py:89 msgid "Exclude stock items which are not available from the search preview window" msgstr "排除搜索预览窗口中不可用的库存项目" -#: common/setting/user.py:89 +#: common/setting/user.py:95 msgid "Search Locations" msgstr "搜索地点" -#: common/setting/user.py:90 +#: common/setting/user.py:96 msgid "Display stock locations in search preview window" msgstr "在搜索预览窗口中显示库存位置" -#: common/setting/user.py:95 +#: common/setting/user.py:101 msgid "Search Companies" msgstr "搜索公司" -#: common/setting/user.py:96 +#: common/setting/user.py:102 msgid "Display companies in search preview window" msgstr "在搜索预览窗口中显示公司" -#: common/setting/user.py:101 +#: common/setting/user.py:107 msgid "Search Build Orders" msgstr "搜索生产订单" -#: common/setting/user.py:102 +#: common/setting/user.py:108 msgid "Display build orders in search preview window" msgstr "在搜索预览窗口中显示生产订单" -#: common/setting/user.py:107 +#: common/setting/user.py:113 msgid "Search Purchase Orders" msgstr "搜索采购订单" -#: common/setting/user.py:108 +#: common/setting/user.py:114 msgid "Display purchase orders in search preview window" msgstr "在搜索预览窗口中显示采购订单" -#: common/setting/user.py:113 +#: common/setting/user.py:119 msgid "Exclude Inactive Purchase Orders" msgstr "排除未激活的采购订单" -#: common/setting/user.py:114 +#: common/setting/user.py:120 msgid "Exclude inactive purchase orders from search preview window" msgstr "从搜索预览窗口中排除不活动的采购订单" -#: common/setting/user.py:119 +#: common/setting/user.py:125 msgid "Search Sales Orders" msgstr "搜索销售订单" -#: common/setting/user.py:120 +#: common/setting/user.py:126 msgid "Display sales orders in search preview window" msgstr "在搜索预览窗口中显示销售订单" -#: common/setting/user.py:125 +#: common/setting/user.py:131 msgid "Exclude Inactive Sales Orders" msgstr "排除未激活的销售订单" -#: common/setting/user.py:126 +#: common/setting/user.py:132 msgid "Exclude inactive sales orders from search preview window" msgstr "从搜索预览窗口中排除不活动的销售订单" -#: common/setting/user.py:131 +#: common/setting/user.py:137 msgid "Search Sales Order Shipments" msgstr "销售订单发货记录查询" -#: common/setting/user.py:132 +#: common/setting/user.py:138 msgid "Display sales order shipments in search preview window" msgstr "在搜索预览窗口中显示销售订单发货信息" -#: common/setting/user.py:137 +#: common/setting/user.py:143 msgid "Search Return Orders" msgstr "搜索退货订单" -#: common/setting/user.py:138 +#: common/setting/user.py:144 msgid "Display return orders in search preview window" msgstr "在搜索预览窗口中显示退货订单" -#: common/setting/user.py:143 +#: common/setting/user.py:149 msgid "Exclude Inactive Return Orders" msgstr "排除未激活的退货订单" -#: common/setting/user.py:144 +#: common/setting/user.py:150 msgid "Exclude inactive return orders from search preview window" msgstr "从搜索预览窗口中排除不活动的退货订单" -#: common/setting/user.py:149 +#: common/setting/user.py:155 msgid "Search Preview Results" msgstr "搜索预览结果" -#: common/setting/user.py:151 +#: common/setting/user.py:157 msgid "Number of results to show in each section of the search preview window" msgstr "在搜索预览窗口的每个部分中显示的结果数" -#: common/setting/user.py:157 +#: common/setting/user.py:163 msgid "Regex Search" msgstr "正则表达式搜索" -#: common/setting/user.py:158 +#: common/setting/user.py:164 msgid "Enable regular expressions in search queries" msgstr "在搜索查询中启用正则表达式" -#: common/setting/user.py:163 +#: common/setting/user.py:169 msgid "Whole Word Search" msgstr "整词搜索" -#: common/setting/user.py:164 +#: common/setting/user.py:170 msgid "Search queries return results for whole word matches" msgstr "搜索查询返回整词匹配的结果" -#: common/setting/user.py:169 +#: common/setting/user.py:175 msgid "Search Notes" msgstr "搜索注释" -#: common/setting/user.py:171 +#: common/setting/user.py:177 msgid "Search queries return results for matches from the item's notes" msgstr "搜索查询返回匹配结果的项目注释" -#: common/setting/user.py:177 +#: common/setting/user.py:183 msgid "Escape Key Closes Forms" msgstr "Esc键关闭窗体" -#: common/setting/user.py:178 +#: common/setting/user.py:184 msgid "Use the escape key to close modal forms" msgstr "使用ESC键关闭模态窗体" -#: common/setting/user.py:183 +#: common/setting/user.py:189 msgid "Fixed Navbar" msgstr "固定导航栏" -#: common/setting/user.py:184 +#: common/setting/user.py:190 msgid "The navbar position is fixed to the top of the screen" msgstr "导航栏位置固定在屏幕顶部" -#: common/setting/user.py:189 +#: common/setting/user.py:195 msgid "Fixed Table Headers" msgstr "固定表格表头" -#: common/setting/user.py:190 +#: common/setting/user.py:196 msgid "Table headers are fixed to the top of the table" msgstr "表格表头固定于表格顶部" -#: common/setting/user.py:195 +#: common/setting/user.py:201 msgid "Show Spotlight" msgstr "显示Spotlight(聚焦搜索)" -#: common/setting/user.py:196 +#: common/setting/user.py:202 msgid "Enable spotlight navigation functionality" msgstr "启用聚焦导航功能" -#: common/setting/user.py:201 +#: common/setting/user.py:207 msgid "Navigation Icons" msgstr "导航图标" -#: common/setting/user.py:202 +#: common/setting/user.py:208 msgid "Display icons in the navigation bar" msgstr "在导航栏中显示图标" -#: common/setting/user.py:207 +#: common/setting/user.py:213 msgid "Date Format" msgstr "时间格式" -#: common/setting/user.py:208 +#: common/setting/user.py:214 msgid "Preferred format for displaying dates" msgstr "显示时间的首选格式" -#: common/setting/user.py:221 +#: common/setting/user.py:227 msgid "Show Stock History" msgstr "显示库存历史" -#: common/setting/user.py:222 +#: common/setting/user.py:228 msgid "Display stock history information in the part detail page" msgstr "在零件详情页显示库存历史信息" -#: common/setting/user.py:227 +#: common/setting/user.py:233 msgid "Show Last Breadcrumb" msgstr "仅展示末尾导航项" -#: common/setting/user.py:228 +#: common/setting/user.py:234 msgid "Show the current page in breadcrumbs" msgstr "在导航栏中显示当前页面" -#: common/setting/user.py:233 +#: common/setting/user.py:239 msgid "Show full stock location in tables" msgstr "在表格中显示完整库存位置信息" -#: common/setting/user.py:235 +#: common/setting/user.py:241 msgid "Disabled: The full location path is displayed as a hover tooltip. Enabled: The full location path is displayed as plain text." msgstr "禁用时:完整路径以悬停提示框形式显示。\n" "启用时:完整路径以纯文本形式显示。" -#: common/setting/user.py:241 +#: common/setting/user.py:247 msgid "Show full part categories in tables" msgstr "在表格中显示完整的零件类别" -#: common/setting/user.py:243 +#: common/setting/user.py:249 msgid "Disabled: The full category path is displayed as a hover tooltip. Enabled: The full category path is displayed as plain text." msgstr "禁用时:完整分类路径以悬停提示框形式显示。\n" "启用时:完整分类路径以纯文本形式显示。" -#: common/setting/user.py:249 +#: common/setting/user.py:255 msgid "Receive error reports" msgstr "接收错误报告" -#: common/setting/user.py:250 +#: common/setting/user.py:256 msgid "Receive notifications for system errors" msgstr "接收系统错误通知" -#: common/setting/user.py:255 +#: common/setting/user.py:261 msgid "Last used printing machines" msgstr "上次使用的打印设备" -#: common/setting/user.py:256 +#: common/setting/user.py:262 msgid "Save the last used printing machines for a user" msgstr "为用户保存上次使用的打印设备" -#: common/validators.py:34 +#: common/validators.py:38 +msgid "All models" +msgstr "" + +#: common/validators.py:63 msgid "No attachment model type provided" msgstr "未提供附件型号" -#: common/validators.py:40 +#: common/validators.py:69 msgid "Invalid attachment model type" msgstr "附件模型类型无效" -#: common/validators.py:81 +#: common/validators.py:110 msgid "Minimum places cannot be greater than maximum places" msgstr "最小位置不能大于最大位置" -#: common/validators.py:93 +#: common/validators.py:122 msgid "Maximum places cannot be less than minimum places" msgstr "最大名额不能小于最小名额" -#: common/validators.py:104 +#: common/validators.py:133 msgid "An empty domain is not allowed." msgstr "不允许空域。" -#: common/validators.py:106 +#: common/validators.py:135 #, python-brace-format msgid "Invalid domain name: {domain}" msgstr "无效的域名: {domain}" -#: common/validators.py:122 +#: common/validators.py:151 msgid "Value must be uppercase" msgstr "值必须大写" -#: common/validators.py:128 +#: common/validators.py:157 msgid "Value must be a valid variable identifier" msgstr "值必须是一个有效的变量标识符" -#: company/api.py:147 +#: company/api.py:141 msgid "Part is Active" msgstr "零件已激活" -#: company/api.py:151 +#: company/api.py:145 msgid "Manufacturer is Active" msgstr "制造商处于活动状态" -#: company/api.py:286 +#: company/api.py:246 msgid "Supplier Part is Active" msgstr "供应商零件处于激活状态" -#: company/api.py:290 +#: company/api.py:250 msgid "Internal Part is Active" msgstr "内部零件已激活" -#: company/api.py:295 +#: company/api.py:255 msgid "Supplier is Active" msgstr "供应商已激活" -#: company/api.py:307 company/models.py:520 company/serializers.py:457 -#: part/serializers.py:566 +#: company/api.py:267 company/models.py:522 company/serializers.py:502 +#: part/serializers.py:477 msgid "Manufacturer" msgstr "制造商" -#: company/api.py:314 company/models.py:121 company/models.py:392 +#: company/api.py:274 company/models.py:122 company/models.py:393 #: stock/api.py:900 msgid "Company" msgstr "公司" -#: company/api.py:324 +#: company/api.py:284 msgid "Has Stock" msgstr "有库存" -#: company/models.py:122 +#: company/models.py:123 msgid "Companies" msgstr "公司" -#: company/models.py:150 +#: company/models.py:151 msgid "Company description" msgstr "公司简介" -#: company/models.py:151 +#: company/models.py:152 msgid "Description of the company" msgstr "公司简介" -#: company/models.py:157 +#: company/models.py:158 msgid "Website" msgstr "网站" -#: company/models.py:158 +#: company/models.py:159 msgid "Company website URL" msgstr "公司网站" -#: company/models.py:164 +#: company/models.py:165 msgid "Phone number" msgstr "电话号码" -#: company/models.py:166 +#: company/models.py:167 msgid "Contact phone number" msgstr "联系电话" -#: company/models.py:173 +#: company/models.py:174 msgid "Contact email address" msgstr "联系人电子邮箱地址" -#: company/models.py:178 company/models.py:296 order/models.py:513 +#: company/models.py:179 company/models.py:297 order/models.py:514 #: users/models.py:561 msgid "Contact" msgstr "联系人" -#: company/models.py:180 +#: company/models.py:181 msgid "Point of contact" msgstr "联络点" -#: company/models.py:186 +#: company/models.py:187 msgid "Link to external company information" msgstr "外部公司信息链接" -#: company/models.py:191 +#: company/models.py:192 msgid "Is this company active?" msgstr "这家公司是否激活?" -#: company/models.py:196 +#: company/models.py:197 msgid "Is customer" msgstr "是客户" -#: company/models.py:197 +#: company/models.py:198 msgid "Do you sell items to this company?" msgstr "你是否向该公司出售商品?" -#: company/models.py:202 +#: company/models.py:203 msgid "Is supplier" msgstr "是否为供应商" -#: company/models.py:203 +#: company/models.py:204 msgid "Do you purchase items from this company?" msgstr "你从这家公司买东西吗?" -#: company/models.py:208 +#: company/models.py:209 msgid "Is manufacturer" msgstr "是制造商吗" -#: company/models.py:209 +#: company/models.py:210 msgid "Does this company manufacture parts?" msgstr "这家公司生产零件吗?" -#: company/models.py:217 +#: company/models.py:218 msgid "Default currency used for this company" msgstr "此公司使用的默认货币" -#: company/models.py:224 +#: company/models.py:225 msgid "Tax ID" msgstr "税号" -#: company/models.py:225 +#: company/models.py:226 msgid "Company Tax ID" msgstr "公司税号" -#: company/models.py:335 order/models.py:523 order/models.py:2288 +#: company/models.py:336 order/models.py:524 order/models.py:2289 msgid "Address" msgstr "地址" -#: company/models.py:336 +#: company/models.py:337 msgid "Addresses" msgstr "地址" -#: company/models.py:393 +#: company/models.py:394 msgid "Select company" msgstr "选择公司" -#: company/models.py:398 +#: company/models.py:399 msgid "Address title" msgstr "地址标题" -#: company/models.py:399 +#: company/models.py:400 msgid "Title describing the address entry" msgstr "描述地址条目的标题" -#: company/models.py:405 +#: company/models.py:406 msgid "Primary address" msgstr "主要地址" -#: company/models.py:406 +#: company/models.py:407 msgid "Set as primary address" msgstr "设置主要地址" -#: company/models.py:411 +#: company/models.py:412 msgid "Line 1" msgstr "第1行" -#: company/models.py:412 +#: company/models.py:413 msgid "Address line 1" msgstr "地址行1" -#: company/models.py:418 +#: company/models.py:419 msgid "Line 2" msgstr "第2行" -#: company/models.py:419 +#: company/models.py:420 msgid "Address line 2" msgstr "地址行2" -#: company/models.py:425 company/models.py:426 +#: company/models.py:426 company/models.py:427 msgid "Postal code" msgstr "邮政编码" -#: company/models.py:432 +#: company/models.py:433 msgid "City/Region" msgstr "城市/地区" -#: company/models.py:433 +#: company/models.py:434 msgid "Postal code city/region" msgstr "邮政编码城市/地区" -#: company/models.py:439 +#: company/models.py:440 msgid "State/Province" msgstr "省/市/自治区" -#: company/models.py:440 +#: company/models.py:441 msgid "State or province" msgstr "省、自治区或直辖市" -#: company/models.py:446 +#: company/models.py:447 msgid "Country" msgstr "国家/地区" -#: company/models.py:447 +#: company/models.py:448 msgid "Address country" msgstr "地址所在国家" -#: company/models.py:453 +#: company/models.py:454 msgid "Courier shipping notes" msgstr "快递运单" -#: company/models.py:454 +#: company/models.py:455 msgid "Notes for shipping courier" msgstr "运输快递注意事项" -#: company/models.py:460 +#: company/models.py:461 msgid "Internal shipping notes" msgstr "内部装运通知单" -#: company/models.py:461 +#: company/models.py:462 msgid "Shipping notes for internal use" msgstr "内部使用的装运通知单" -#: company/models.py:468 +#: company/models.py:469 msgid "Link to address information (external)" msgstr "链接地址信息 (外部)" -#: company/models.py:492 company/models.py:609 company/models.py:832 -#: company/serializers.py:471 stock/api.py:561 +#: company/models.py:494 company/models.py:786 company/serializers.py:516 +#: stock/api.py:561 msgid "Manufacturer Part" msgstr "制造商零件" -#: company/models.py:509 company/models.py:800 stock/models.py:1025 +#: company/models.py:511 company/models.py:754 stock/models.py:1025 #: stock/serializers.py:407 msgid "Base Part" msgstr "基础零件" -#: company/models.py:511 company/models.py:802 +#: company/models.py:513 company/models.py:756 msgid "Select part" msgstr "选择零件" -#: company/models.py:521 +#: company/models.py:523 msgid "Select manufacturer" msgstr "选择制造商" -#: company/models.py:527 company/serializers.py:479 order/serializers.py:734 -#: part/serializers.py:576 +#: company/models.py:529 company/serializers.py:524 order/serializers.py:745 +#: part/serializers.py:487 msgid "MPN" msgstr "制造商零件编号" -#: company/models.py:528 stock/serializers.py:572 +#: company/models.py:530 stock/serializers.py:572 msgid "Manufacturer Part Number" msgstr "制造商零件编号" -#: company/models.py:535 +#: company/models.py:537 msgid "URL for external manufacturer part link" msgstr "外部制造商零件链接的URL" -#: company/models.py:544 +#: company/models.py:546 msgid "Manufacturer part description" msgstr "制造商零件说明" -#: company/models.py:597 -msgid "Manufacturer Part Parameter" -msgstr "制造商零件参数" - -#: company/models.py:616 -msgid "Parameter name" -msgstr "参数名称" - -#: company/models.py:623 -msgid "Parameter value" -msgstr "参数值" - -#: company/models.py:630 part/models.py:1195 part/models.py:3857 -msgid "Units" -msgstr "单位" - -#: company/models.py:631 -msgid "Parameter units" -msgstr "参数单位" - -#: company/models.py:740 +#: company/models.py:694 msgid "Pack units must be compatible with the base part units" msgstr "包装单位必须与基础零件单位兼容" -#: company/models.py:747 +#: company/models.py:701 msgid "Pack units must be greater than zero" msgstr "包装单位必须大于零" -#: company/models.py:761 +#: company/models.py:715 msgid "Linked manufacturer part must reference the same base part" msgstr "链接的制造商零件必须引用相同的基础零件" -#: company/models.py:810 company/serializers.py:449 company/serializers.py:467 -#: order/models.py:639 part/serializers.py:550 +#: company/models.py:764 company/serializers.py:494 company/serializers.py:512 +#: order/models.py:640 part/serializers.py:461 #: plugin/builtin/suppliers/digikey.py:26 plugin/builtin/suppliers/lcsc.py:27 #: plugin/builtin/suppliers/mouser.py:25 plugin/builtin/suppliers/tme.py:27 #: stock/api.py:567 templates/email/overdue_purchase_order.html:16 msgid "Supplier" msgstr "供应商" -#: company/models.py:811 +#: company/models.py:765 msgid "Select supplier" msgstr "选择供应商" -#: company/models.py:817 part/serializers.py:561 +#: company/models.py:771 part/serializers.py:472 msgid "Supplier stock keeping unit" msgstr "供应商库存管理单位" -#: company/models.py:823 +#: company/models.py:777 msgid "Is this supplier part active?" msgstr "此供应商零件是否处于活动状态?" -#: company/models.py:833 +#: company/models.py:787 msgid "Select manufacturer part" msgstr "选择制造商零件" -#: company/models.py:840 +#: company/models.py:794 msgid "URL for external supplier part link" msgstr "外部供应商零件链接的URL" -#: company/models.py:849 +#: company/models.py:803 msgid "Supplier part description" msgstr "供应商零件说明" -#: company/models.py:856 order/serializers.py:883 order/serializers.py:2047 -#: part/models.py:4070 part/models.py:4450 part/models.py:4819 -#: report/templates/report/inventree_bill_of_materials_report.html:140 -#: report/templates/report/inventree_purchase_order_report.html:39 -#: report/templates/report/inventree_return_order_report.html:27 -#: report/templates/report/inventree_sales_order_report.html:32 -#: report/templates/report/inventree_stock_location_report.html:105 -#: stock/serializers.py:813 -msgid "Note" -msgstr "备注" - -#: company/models.py:865 part/models.py:2250 +#: company/models.py:819 part/models.py:2338 msgid "base cost" msgstr "基本费用" -#: company/models.py:866 part/models.py:2251 +#: company/models.py:820 part/models.py:2339 msgid "Minimum charge (e.g. stocking fee)" msgstr "最低费用(例如库存费)" -#: company/models.py:873 order/serializers.py:875 stock/models.py:1056 +#: company/models.py:827 order/serializers.py:886 stock/models.py:1056 #: stock/serializers.py:1606 msgid "Packaging" msgstr "打包" -#: company/models.py:874 +#: company/models.py:828 msgid "Part packaging" msgstr "零件打包" -#: company/models.py:879 +#: company/models.py:833 msgid "Pack Quantity" msgstr "包装数量" -#: company/models.py:881 +#: company/models.py:835 msgid "Total quantity supplied in a single pack. Leave empty for single items." msgstr "单包供应的总数量。为单个项目留空。" -#: company/models.py:900 part/models.py:2257 +#: company/models.py:854 part/models.py:2345 msgid "multiple" msgstr "多个" -#: company/models.py:901 +#: company/models.py:855 msgid "Order multiple" msgstr "订购多个" -#: company/models.py:913 +#: company/models.py:867 msgid "Quantity available from supplier" msgstr "供应商提供的数量" -#: company/models.py:919 +#: company/models.py:873 msgid "Availability Updated" msgstr "可用性已更新" -#: company/models.py:920 +#: company/models.py:874 msgid "Date of last update of availability data" msgstr "上次更新可用性数据的日期" -#: company/models.py:1048 +#: company/models.py:1002 msgid "Supplier Price Break" msgstr "供应商批发价" -#: company/serializers.py:181 +#: company/serializers.py:184 +msgid "Primary Address" +msgstr "" + +#: company/serializers.py:186 msgid "Return the string representation for the primary address. This property exists for backwards compatibility." msgstr "返回主地址的字符串表示形式。此属性为向后兼容而保留。" -#: company/serializers.py:212 +#: company/serializers.py:218 msgid "Default currency used for this supplier" msgstr "此供应商使用的默认货币" -#: company/serializers.py:248 +#: company/serializers.py:260 msgid "Company Name" msgstr "公司名称" -#: company/serializers.py:433 part/serializers.py:955 stock/serializers.py:428 +#: company/serializers.py:460 part/serializers.py:840 stock/serializers.py:428 msgid "In Stock" msgstr "有库存" +#: company/serializers.py:477 +msgid "Price Breaks" +msgstr "批发价" + #: data_exporter/mixins.py:325 data_exporter/mixins.py:403 msgid "Error occurred during data export" msgstr "数据导出过程中发生错误" @@ -4292,7 +4420,7 @@ msgstr "原始行数据" msgid "Errors" msgstr "错误" -#: importer/models.py:550 part/serializers.py:1268 +#: importer/models.py:550 part/serializers.py:1133 msgid "Valid" msgstr "有效" @@ -4404,7 +4532,7 @@ msgstr "每个标签要打印的份数" msgid "Connected" msgstr "已连接" -#: machine/machine_types/label_printer.py:232 order/api.py:1795 +#: machine/machine_types/label_printer.py:232 order/api.py:1800 msgid "Unknown" msgstr "未知" @@ -4532,105 +4660,105 @@ msgstr "最大进度" msgid "Maximum value for progress type, required if type=progress" msgstr "进度类型的最大值。当 type=progress 时为必填项" -#: order/api.py:125 +#: order/api.py:130 msgid "Order Reference" msgstr "订单参考" -#: order/api.py:153 order/api.py:1207 +#: order/api.py:158 order/api.py:1212 msgid "Outstanding" msgstr "未完成" -#: order/api.py:169 +#: order/api.py:174 msgid "Has Project Code" msgstr "有项目编码" -#: order/api.py:183 order/models.py:488 +#: order/api.py:188 order/models.py:489 msgid "Created By" msgstr "创建人" -#: order/api.py:187 +#: order/api.py:192 msgid "Created Before" msgstr "创建时间早于" -#: order/api.py:191 +#: order/api.py:196 msgid "Created After" msgstr "创建时间晚于" -#: order/api.py:195 +#: order/api.py:200 msgid "Has Start Date" msgstr "有开始日期" -#: order/api.py:203 +#: order/api.py:208 msgid "Start Date Before" msgstr "开始日期早于" -#: order/api.py:207 +#: order/api.py:212 msgid "Start Date After" msgstr "开始日期晚于" -#: order/api.py:211 +#: order/api.py:216 msgid "Has Target Date" msgstr "有目标日期" -#: order/api.py:219 +#: order/api.py:224 msgid "Target Date Before" msgstr "目标日期早于" -#: order/api.py:223 +#: order/api.py:228 msgid "Target Date After" msgstr "目标日期晚于" -#: order/api.py:274 +#: order/api.py:279 msgid "Has Pricing" msgstr "有定价" -#: order/api.py:327 order/api.py:812 order/api.py:1490 +#: order/api.py:332 order/api.py:818 order/api.py:1495 msgid "Completed Before" msgstr "完成时间早于" -#: order/api.py:331 order/api.py:816 order/api.py:1494 +#: order/api.py:336 order/api.py:822 order/api.py:1499 msgid "Completed After" msgstr "完成时间晚于" -#: order/api.py:337 order/api.py:341 +#: order/api.py:342 order/api.py:346 msgid "External Build Order" msgstr "外部生产订单" -#: order/api.py:526 order/api.py:914 order/api.py:1170 order/models.py:1922 -#: order/models.py:2049 order/models.py:2099 order/models.py:2279 -#: order/models.py:2477 order/models.py:2999 order/models.py:3065 +#: order/api.py:532 order/api.py:919 order/api.py:1175 order/models.py:1923 +#: order/models.py:2050 order/models.py:2100 order/models.py:2280 +#: order/models.py:2478 order/models.py:3000 order/models.py:3066 msgid "Order" msgstr "订单" -#: order/api.py:530 order/api.py:982 +#: order/api.py:536 order/api.py:987 msgid "Order Complete" msgstr "订单完成" -#: order/api.py:562 order/api.py:566 order/serializers.py:745 +#: order/api.py:568 order/api.py:572 order/serializers.py:756 msgid "Internal Part" msgstr "内部零件" -#: order/api.py:584 +#: order/api.py:590 msgid "Order Pending" msgstr "订单待定" -#: order/api.py:967 +#: order/api.py:972 msgid "Completed" msgstr "已完成" -#: order/api.py:1223 +#: order/api.py:1228 msgid "Has Shipment" msgstr "有配送" -#: order/api.py:1789 order/models.py:552 order/models.py:1923 -#: order/models.py:2050 +#: order/api.py:1794 order/models.py:553 order/models.py:1924 +#: order/models.py:2051 #: report/templates/report/inventree_purchase_order_report.html:14 #: stock/serializers.py:129 templates/email/overdue_purchase_order.html:15 msgid "Purchase Order" msgstr "采购订单" -#: order/api.py:1791 order/models.py:1251 order/models.py:2100 -#: order/models.py:2280 order/models.py:2478 +#: order/api.py:1796 order/models.py:1252 order/models.py:2101 +#: order/models.py:2281 order/models.py:2479 #: report/templates/report/inventree_build_order_report.html:135 #: report/templates/report/inventree_sales_order_report.html:14 #: report/templates/report/inventree_sales_order_shipment_report.html:15 @@ -4638,8 +4766,8 @@ msgstr "采购订单" msgid "Sales Order" msgstr "销售订单" -#: order/api.py:1793 order/models.py:2649 order/models.py:3000 -#: order/models.py:3066 +#: order/api.py:1798 order/models.py:2650 order/models.py:3001 +#: order/models.py:3067 #: report/templates/report/inventree_return_order_report.html:13 #: templates/email/overdue_return_order.html:15 msgid "Return Order" @@ -4655,722 +4783,722 @@ msgstr "总价格" msgid "Total price for this order" msgstr "此订单的总价" -#: order/models.py:96 order/serializers.py:77 +#: order/models.py:96 order/serializers.py:78 msgid "Order Currency" msgstr "订单货币" -#: order/models.py:99 order/serializers.py:78 +#: order/models.py:99 order/serializers.py:79 msgid "Currency for this order (leave blank to use company default)" msgstr "此订单的货币 (留空以使用公司默认值)" -#: order/models.py:324 +#: order/models.py:325 msgid "This order is locked and cannot be modified" msgstr "该订单已锁定,不可修改" -#: order/models.py:376 +#: order/models.py:377 msgid "Contact does not match selected company" msgstr "联系人与所选公司不匹配" -#: order/models.py:383 +#: order/models.py:384 msgid "Start date must be before target date" msgstr "开始日期必须早于目标日期" -#: order/models.py:390 +#: order/models.py:391 msgid "Address does not match selected company" msgstr "地址与所选公司不匹配" -#: order/models.py:443 +#: order/models.py:444 msgid "Order description (optional)" msgstr "订单描述 (可选)" -#: order/models.py:452 order/models.py:1806 +#: order/models.py:453 order/models.py:1807 msgid "Select project code for this order" msgstr "为此订单选择项目编码" -#: order/models.py:458 order/models.py:1787 order/models.py:2344 +#: order/models.py:459 order/models.py:1788 order/models.py:2345 msgid "Link to external page" msgstr "链接到外部页面" -#: order/models.py:465 +#: order/models.py:466 msgid "Start date" msgstr "开始日期" -#: order/models.py:466 +#: order/models.py:467 msgid "Scheduled start date for this order" msgstr "本订单的预定开始日期" -#: order/models.py:472 order/models.py:1794 order/serializers.py:309 +#: order/models.py:473 order/models.py:1795 order/serializers.py:317 #: report/templates/report/inventree_build_order_report.html:125 msgid "Target Date" msgstr "预计日期" -#: order/models.py:474 +#: order/models.py:475 msgid "Expected date for order delivery. Order will be overdue after this date." msgstr "订单交付的预期日期。订单将在此日期后过期。" -#: order/models.py:494 +#: order/models.py:495 msgid "Issue Date" msgstr "签发日期" -#: order/models.py:495 +#: order/models.py:496 msgid "Date order was issued" msgstr "订单发出日期" -#: order/models.py:503 +#: order/models.py:504 msgid "User or group responsible for this order" msgstr "负责此订单的用户或组" -#: order/models.py:514 +#: order/models.py:515 msgid "Point of contact for this order" msgstr "此订单的联系人" -#: order/models.py:524 +#: order/models.py:525 msgid "Company address for this order" msgstr "此订单的公司地址" -#: order/models.py:615 order/models.py:1312 +#: order/models.py:616 order/models.py:1313 msgid "Order reference" msgstr "订单参考" -#: order/models.py:624 order/models.py:1336 order/models.py:2737 +#: order/models.py:625 order/models.py:1337 order/models.py:2738 #: stock/serializers.py:559 stock/serializers.py:988 users/models.py:542 msgid "Status" msgstr "狀態" -#: order/models.py:625 +#: order/models.py:626 msgid "Purchase order status" msgstr "采购订单状态" -#: order/models.py:640 +#: order/models.py:641 msgid "Company from which the items are being ordered" msgstr "订购物品的公司" -#: order/models.py:651 +#: order/models.py:652 msgid "Supplier Reference" msgstr "供应商参考" -#: order/models.py:652 +#: order/models.py:653 msgid "Supplier order reference code" msgstr "供应商订单参考代码" -#: order/models.py:661 +#: order/models.py:662 msgid "received by" msgstr "接收人" -#: order/models.py:668 order/models.py:2752 +#: order/models.py:669 order/models.py:2753 msgid "Date order was completed" msgstr "订单完成日期" -#: order/models.py:677 order/models.py:1981 +#: order/models.py:678 order/models.py:1982 msgid "Destination" msgstr "目的地" -#: order/models.py:678 order/models.py:1985 +#: order/models.py:679 order/models.py:1986 msgid "Destination for received items" msgstr "接收物品的目标" -#: order/models.py:724 +#: order/models.py:725 msgid "Part supplier must match PO supplier" msgstr "零件供应商必须与采购订单供应商匹配" -#: order/models.py:994 +#: order/models.py:995 msgid "Line item does not match purchase order" msgstr "行项目与采购订单不匹配" -#: order/models.py:997 +#: order/models.py:998 msgid "Line item is missing a linked part" msgstr "行项目缺少关联零件" -#: order/models.py:1011 +#: order/models.py:1012 msgid "Quantity must be a positive number" msgstr "数量必须是正数" -#: order/models.py:1323 order/models.py:2724 stock/models.py:1078 +#: order/models.py:1324 order/models.py:2725 stock/models.py:1078 #: stock/models.py:1079 stock/serializers.py:1322 #: templates/email/overdue_return_order.html:16 #: templates/email/overdue_sales_order.html:16 msgid "Customer" msgstr "客户" -#: order/models.py:1324 +#: order/models.py:1325 msgid "Company to which the items are being sold" msgstr "出售物品的公司" -#: order/models.py:1337 +#: order/models.py:1338 msgid "Sales order status" msgstr "销售订单状态" -#: order/models.py:1348 order/models.py:2744 +#: order/models.py:1349 order/models.py:2745 msgid "Customer Reference " msgstr "客户参考 " -#: order/models.py:1349 order/models.py:2745 +#: order/models.py:1350 order/models.py:2746 msgid "Customer order reference code" msgstr "客户订单参考代码" -#: order/models.py:1353 order/models.py:2296 +#: order/models.py:1354 order/models.py:2297 msgid "Shipment Date" msgstr "发货日期" -#: order/models.py:1362 +#: order/models.py:1363 msgid "shipped by" msgstr "发货人" -#: order/models.py:1413 +#: order/models.py:1414 msgid "Order is already complete" msgstr "订单已完成" -#: order/models.py:1416 +#: order/models.py:1417 msgid "Order is already cancelled" msgstr "订单已取消" -#: order/models.py:1420 +#: order/models.py:1421 msgid "Only an open order can be marked as complete" msgstr "只有未结订单才能标记为已完成" -#: order/models.py:1424 +#: order/models.py:1425 msgid "Order cannot be completed as there are incomplete shipments" msgstr "由于发货不完整,订单无法完成" -#: order/models.py:1429 +#: order/models.py:1430 msgid "Order cannot be completed as there are incomplete allocations" msgstr "由于缺货,订单无法完成" -#: order/models.py:1438 +#: order/models.py:1439 msgid "Order cannot be completed as there are incomplete line items" msgstr "订单无法完成,因为行项目不完整" -#: order/models.py:1733 order/models.py:1749 +#: order/models.py:1734 order/models.py:1750 msgid "The order is locked and cannot be modified" msgstr "订单已锁定,不可修改" -#: order/models.py:1757 +#: order/models.py:1758 msgid "Item quantity" msgstr "项目数量" -#: order/models.py:1774 +#: order/models.py:1775 msgid "Line item reference" msgstr "行项目参考" -#: order/models.py:1781 +#: order/models.py:1782 msgid "Line item notes" msgstr "行项目注释" -#: order/models.py:1796 +#: order/models.py:1797 msgid "Target date for this line item (leave blank to use the target date from the order)" msgstr "此行项目的目标日期 (留空以使用订单中的目标日期)" -#: order/models.py:1826 +#: order/models.py:1827 msgid "Line item description (optional)" msgstr "行项目描述 (可选)" -#: order/models.py:1833 +#: order/models.py:1834 msgid "Additional context for this line" msgstr "此行的附加上下文" -#: order/models.py:1843 +#: order/models.py:1844 msgid "Unit price" msgstr "单位价格" -#: order/models.py:1862 +#: order/models.py:1863 msgid "Purchase Order Line Item" msgstr "采购订单行项目" -#: order/models.py:1889 +#: order/models.py:1890 msgid "Supplier part must match supplier" msgstr "供应商零件必须与供应商匹配" -#: order/models.py:1894 +#: order/models.py:1895 msgid "Build order must be marked as external" msgstr "生产订单必须标记为外部" -#: order/models.py:1901 +#: order/models.py:1902 msgid "Build orders can only be linked to assembly parts" msgstr "生产订单仅可关联至装配零件" -#: order/models.py:1907 +#: order/models.py:1908 msgid "Build order part must match line item part" msgstr "生产订单零件必须与行项目零件一致" -#: order/models.py:1942 +#: order/models.py:1943 msgid "Supplier part" msgstr "供应商零件" -#: order/models.py:1949 +#: order/models.py:1950 msgid "Received" msgstr "已接收" -#: order/models.py:1950 +#: order/models.py:1951 msgid "Number of items received" msgstr "收到的物品数量" -#: order/models.py:1958 stock/models.py:1201 stock/serializers.py:637 +#: order/models.py:1959 stock/models.py:1201 stock/serializers.py:637 msgid "Purchase Price" msgstr "采购价格" -#: order/models.py:1959 +#: order/models.py:1960 msgid "Unit purchase price" msgstr "每单位的采购价格" -#: order/models.py:1975 +#: order/models.py:1976 msgid "External Build Order to be fulfilled by this line item" msgstr "外部生产订单需由此行项目履行" -#: order/models.py:2038 +#: order/models.py:2039 msgid "Purchase Order Extra Line" msgstr "采购订单附加行" -#: order/models.py:2067 +#: order/models.py:2068 msgid "Sales Order Line Item" msgstr "销售订单行项目" -#: order/models.py:2092 +#: order/models.py:2093 msgid "Only salable parts can be assigned to a sales order" msgstr "只有可销售的零件才能分配给销售订单" -#: order/models.py:2118 +#: order/models.py:2119 msgid "Sale Price" msgstr "售出价格" -#: order/models.py:2119 +#: order/models.py:2120 msgid "Unit sale price" msgstr "单位售出价格" -#: order/models.py:2128 order/status_codes.py:50 +#: order/models.py:2129 order/status_codes.py:50 msgid "Shipped" msgstr "已配送" -#: order/models.py:2129 +#: order/models.py:2130 msgid "Shipped quantity" msgstr "发货数量" -#: order/models.py:2240 +#: order/models.py:2241 msgid "Sales Order Shipment" msgstr "销售订单发货" -#: order/models.py:2253 +#: order/models.py:2254 msgid "Shipment address must match the customer" msgstr "收货地址必须与该客户的资料一致" -#: order/models.py:2289 +#: order/models.py:2290 msgid "Shipping address for this shipment" msgstr "本次发货的收货地址" -#: order/models.py:2297 +#: order/models.py:2298 msgid "Date of shipment" msgstr "发货日期" -#: order/models.py:2303 +#: order/models.py:2304 msgid "Delivery Date" msgstr "送达日期" -#: order/models.py:2304 +#: order/models.py:2305 msgid "Date of delivery of shipment" msgstr "装运交货日期" -#: order/models.py:2312 +#: order/models.py:2313 msgid "Checked By" msgstr "审核人" -#: order/models.py:2313 +#: order/models.py:2314 msgid "User who checked this shipment" msgstr "检查此装运的用户" -#: order/models.py:2320 order/models.py:2574 order/serializers.py:1711 -#: order/serializers.py:1835 +#: order/models.py:2321 order/models.py:2575 order/serializers.py:1725 +#: order/serializers.py:1849 #: report/templates/report/inventree_sales_order_shipment_report.html:14 msgid "Shipment" msgstr "配送" -#: order/models.py:2321 +#: order/models.py:2322 msgid "Shipment number" msgstr "配送单号" -#: order/models.py:2329 +#: order/models.py:2330 msgid "Tracking Number" msgstr "跟踪单号" -#: order/models.py:2330 +#: order/models.py:2331 msgid "Shipment tracking information" msgstr "配送跟踪信息" -#: order/models.py:2337 +#: order/models.py:2338 msgid "Invoice Number" msgstr "发票编号" -#: order/models.py:2338 +#: order/models.py:2339 msgid "Reference number for associated invoice" msgstr "相关发票的参考号" -#: order/models.py:2377 +#: order/models.py:2378 msgid "Shipment has already been sent" msgstr "货物已发出" -#: order/models.py:2380 +#: order/models.py:2381 msgid "Shipment has no allocated stock items" msgstr "发货没有分配库存项目" -#: order/models.py:2387 +#: order/models.py:2388 msgid "Shipment must be checked before it can be completed" msgstr "货件必须先经核对,方可标记为完成" -#: order/models.py:2466 +#: order/models.py:2467 msgid "Sales Order Extra Line" msgstr "销售订单加行" -#: order/models.py:2495 +#: order/models.py:2496 msgid "Sales Order Allocation" msgstr "销售订单分配" -#: order/models.py:2518 order/models.py:2520 +#: order/models.py:2519 order/models.py:2521 msgid "Stock item has not been assigned" msgstr "库存项目尚未分配" -#: order/models.py:2527 +#: order/models.py:2528 msgid "Cannot allocate stock item to a line with a different part" msgstr "无法将库存项目分配给具有不同零件的行" -#: order/models.py:2530 +#: order/models.py:2531 msgid "Cannot allocate stock to a line without a part" msgstr "无法将库存分配给没有零件的生产线" -#: order/models.py:2533 +#: order/models.py:2534 msgid "Allocation quantity cannot exceed stock quantity" msgstr "分配数量不能超过库存数量" -#: order/models.py:2552 order/serializers.py:1581 +#: order/models.py:2553 order/serializers.py:1595 msgid "Quantity must be 1 for serialized stock item" msgstr "序列化库存项目的数量必须为1" -#: order/models.py:2555 +#: order/models.py:2556 msgid "Sales order does not match shipment" msgstr "销售订单与发货不匹配" -#: order/models.py:2556 plugin/base/barcodes/api.py:642 +#: order/models.py:2557 plugin/base/barcodes/api.py:642 msgid "Shipment does not match sales order" msgstr "发货与销售订单不匹配" -#: order/models.py:2564 +#: order/models.py:2565 msgid "Line" msgstr "行" -#: order/models.py:2575 +#: order/models.py:2576 msgid "Sales order shipment reference" msgstr "销售订单发货参考" -#: order/models.py:2588 order/models.py:3007 +#: order/models.py:2589 order/models.py:3008 msgid "Item" msgstr "项目" -#: order/models.py:2589 +#: order/models.py:2590 msgid "Select stock item to allocate" msgstr "选择要分配的库存项目" -#: order/models.py:2598 +#: order/models.py:2599 msgid "Enter stock allocation quantity" msgstr "输入库存分配数量" -#: order/models.py:2713 +#: order/models.py:2714 msgid "Return Order reference" msgstr "退货订单参考" -#: order/models.py:2725 +#: order/models.py:2726 msgid "Company from which items are being returned" msgstr "退回物品的公司" -#: order/models.py:2738 +#: order/models.py:2739 msgid "Return order status" msgstr "退货订单状态" -#: order/models.py:2965 +#: order/models.py:2966 msgid "Return Order Line Item" msgstr "退货订单行项目" -#: order/models.py:2978 +#: order/models.py:2979 msgid "Stock item must be specified" msgstr "必须指定库存项" -#: order/models.py:2982 +#: order/models.py:2983 msgid "Return quantity exceeds stock quantity" msgstr "退回数量超过库存数量" -#: order/models.py:2987 +#: order/models.py:2988 msgid "Return quantity must be greater than zero" msgstr "退回数量必须大于零" -#: order/models.py:2992 +#: order/models.py:2993 msgid "Invalid quantity for serialized stock item" msgstr "序列化库存项的数量无效" -#: order/models.py:3008 +#: order/models.py:3009 msgid "Select item to return from customer" msgstr "选择要从客户处退回的商品" -#: order/models.py:3023 +#: order/models.py:3024 msgid "Received Date" msgstr "接收日期" -#: order/models.py:3024 +#: order/models.py:3025 msgid "The date this this return item was received" msgstr "收到此退货的日期" -#: order/models.py:3036 +#: order/models.py:3037 msgid "Outcome" msgstr "结果" -#: order/models.py:3037 +#: order/models.py:3038 msgid "Outcome for this line item" msgstr "该行项目的结果" -#: order/models.py:3044 +#: order/models.py:3045 msgid "Cost associated with return or repair for this line item" msgstr "与此行项目的退货或维修相关的成本" -#: order/models.py:3054 +#: order/models.py:3055 msgid "Return Order Extra Line" msgstr "退货订单附加行" -#: order/serializers.py:91 +#: order/serializers.py:92 msgid "Order ID" msgstr "订单ID" -#: order/serializers.py:91 +#: order/serializers.py:92 msgid "ID of the order to duplicate" msgstr "要复制的订单ID" -#: order/serializers.py:97 +#: order/serializers.py:98 msgid "Copy Lines" msgstr "复制行" -#: order/serializers.py:98 +#: order/serializers.py:99 msgid "Copy line items from the original order" msgstr "从原始订单复制行项目" -#: order/serializers.py:104 +#: order/serializers.py:105 msgid "Copy Extra Lines" msgstr "复制额外行" -#: order/serializers.py:105 +#: order/serializers.py:106 msgid "Copy extra line items from the original order" msgstr "从原始订单复制额外的行项目" -#: order/serializers.py:120 +#: order/serializers.py:121 #: report/templates/report/inventree_purchase_order_report.html:29 #: report/templates/report/inventree_return_order_report.html:19 #: report/templates/report/inventree_sales_order_report.html:22 msgid "Line Items" msgstr "行项目" -#: order/serializers.py:125 +#: order/serializers.py:126 msgid "Completed Lines" msgstr "已完成行项目" -#: order/serializers.py:192 +#: order/serializers.py:199 msgid "Duplicate Order" msgstr "复制订单" -#: order/serializers.py:193 +#: order/serializers.py:200 msgid "Specify options for duplicating this order" msgstr "指定复制此订单的选项" -#: order/serializers.py:270 +#: order/serializers.py:278 msgid "Invalid order ID" msgstr "订单ID不正确" -#: order/serializers.py:466 +#: order/serializers.py:477 msgid "Supplier Name" msgstr "供应商名称" -#: order/serializers.py:510 +#: order/serializers.py:521 msgid "Order cannot be cancelled" msgstr "订单不能取消" -#: order/serializers.py:525 order/serializers.py:1602 +#: order/serializers.py:536 order/serializers.py:1616 msgid "Allow order to be closed with incomplete line items" msgstr "允许关闭行项目不完整的订单" -#: order/serializers.py:535 order/serializers.py:1612 +#: order/serializers.py:546 order/serializers.py:1626 msgid "Order has incomplete line items" msgstr "订单中的行项目不完整" -#: order/serializers.py:665 +#: order/serializers.py:676 msgid "Order is not open" msgstr "订单未打开" -#: order/serializers.py:692 +#: order/serializers.py:703 msgid "Auto Pricing" msgstr "自动定价" -#: order/serializers.py:694 +#: order/serializers.py:705 msgid "Automatically calculate purchase price based on supplier part data" msgstr "根据供应商零件数据自动计算采购价格" -#: order/serializers.py:704 +#: order/serializers.py:715 msgid "Purchase price currency" msgstr "购买价格货币" -#: order/serializers.py:718 +#: order/serializers.py:729 msgid "Merge Items" msgstr "合并项目" -#: order/serializers.py:720 +#: order/serializers.py:731 msgid "Merge items with the same part, destination and target date into one line item" msgstr "将具有相同零件、目的地和目标日期的项目合并到一个行项目中" -#: order/serializers.py:727 part/serializers.py:560 +#: order/serializers.py:738 part/serializers.py:471 msgid "SKU" msgstr "库存量单位" -#: order/serializers.py:741 part/models.py:1089 part/serializers.py:372 +#: order/serializers.py:752 part/models.py:1177 part/serializers.py:337 msgid "Internal Part Number" msgstr "内部零件编号" -#: order/serializers.py:749 +#: order/serializers.py:760 msgid "Internal Part Name" msgstr "内部零件名称" -#: order/serializers.py:765 +#: order/serializers.py:776 msgid "Supplier part must be specified" msgstr "必须指定供应商零件" -#: order/serializers.py:768 +#: order/serializers.py:779 msgid "Purchase order must be specified" msgstr "必须指定采购订单" -#: order/serializers.py:776 +#: order/serializers.py:787 msgid "Supplier must match purchase order" msgstr "供应商必须匹配采购订单" -#: order/serializers.py:777 +#: order/serializers.py:788 msgid "Purchase order must match supplier" msgstr "采购订单必须与供应商匹配" -#: order/serializers.py:825 order/serializers.py:1682 +#: order/serializers.py:836 order/serializers.py:1696 msgid "Line Item" msgstr "行项目" -#: order/serializers.py:834 order/serializers.py:974 order/serializers.py:2043 +#: order/serializers.py:845 order/serializers.py:985 order/serializers.py:2060 msgid "Select destination location for received items" msgstr "为收到的物品选择目的地位置" -#: order/serializers.py:850 +#: order/serializers.py:861 msgid "Enter batch code for incoming stock items" msgstr "输入入库项目的批号" -#: order/serializers.py:857 stock/models.py:1160 +#: order/serializers.py:868 stock/models.py:1160 #: templates/email/stale_stock_notification.html:22 users/models.py:137 msgid "Expiry Date" msgstr "有效期至" -#: order/serializers.py:858 +#: order/serializers.py:869 msgid "Enter expiry date for incoming stock items" msgstr "输入入库库存项的有效期" -#: order/serializers.py:866 +#: order/serializers.py:877 msgid "Enter serial numbers for incoming stock items" msgstr "输入入库库存项目的序列号" -#: order/serializers.py:876 +#: order/serializers.py:887 msgid "Override packaging information for incoming stock items" msgstr "覆盖传入库存项目的包装资料" -#: order/serializers.py:884 order/serializers.py:2048 +#: order/serializers.py:895 order/serializers.py:2065 msgid "Additional note for incoming stock items" msgstr "传入库存项目的附加说明" -#: order/serializers.py:891 +#: order/serializers.py:902 msgid "Barcode" msgstr "条形码" -#: order/serializers.py:892 +#: order/serializers.py:903 msgid "Scanned barcode" msgstr "扫描条形码" -#: order/serializers.py:908 +#: order/serializers.py:919 msgid "Barcode is already in use" msgstr "条形码已被使用" -#: order/serializers.py:991 order/serializers.py:2067 +#: order/serializers.py:1002 order/serializers.py:2084 msgid "Line items must be provided" msgstr "必须提供行项目" -#: order/serializers.py:1010 +#: order/serializers.py:1021 msgid "Destination location must be specified" msgstr "必须指定目标位置" -#: order/serializers.py:1017 +#: order/serializers.py:1028 msgid "Supplied barcode values must be unique" msgstr "提供的条形码值必须是唯一的" -#: order/serializers.py:1121 +#: order/serializers.py:1135 msgid "Shipments" msgstr "配送" -#: order/serializers.py:1125 +#: order/serializers.py:1139 msgid "Completed Shipments" msgstr "完成配送" -#: order/serializers.py:1293 +#: order/serializers.py:1307 msgid "Sale price currency" msgstr "售出价格货币" -#: order/serializers.py:1339 +#: order/serializers.py:1353 msgid "Allocated Items" msgstr "已分配的项目" -#: order/serializers.py:1484 +#: order/serializers.py:1498 msgid "No shipment details provided" msgstr "未提供装运详细信息" -#: order/serializers.py:1545 order/serializers.py:1691 +#: order/serializers.py:1559 order/serializers.py:1705 msgid "Line item is not associated with this order" msgstr "行项目与此订单不关联" -#: order/serializers.py:1564 +#: order/serializers.py:1578 msgid "Quantity must be positive" msgstr "数量必须为正" -#: order/serializers.py:1701 +#: order/serializers.py:1715 msgid "Enter serial numbers to allocate" msgstr "输入要分配的序列号" -#: order/serializers.py:1723 order/serializers.py:1843 +#: order/serializers.py:1737 order/serializers.py:1857 msgid "Shipment has already been shipped" msgstr "货物已发出" -#: order/serializers.py:1726 order/serializers.py:1846 +#: order/serializers.py:1740 order/serializers.py:1860 msgid "Shipment is not associated with this order" msgstr "发货与此订单无关" -#: order/serializers.py:1781 +#: order/serializers.py:1795 msgid "No match found for the following serial numbers" msgstr "未找到以下序列号的匹配项" -#: order/serializers.py:1788 +#: order/serializers.py:1802 msgid "The following serial numbers are unavailable" msgstr "以下序列号不可用" -#: order/serializers.py:2009 +#: order/serializers.py:2026 msgid "Return order line item" msgstr "退货订单行项目" -#: order/serializers.py:2019 +#: order/serializers.py:2036 msgid "Line item does not match return order" msgstr "行项目与退货订单不匹配" -#: order/serializers.py:2022 +#: order/serializers.py:2039 msgid "Line item has already been received" msgstr "行项目已收到" -#: order/serializers.py:2059 +#: order/serializers.py:2076 msgid "Items can only be received against orders which are in progress" msgstr "只能根据正在进行的订单接收物品" -#: order/serializers.py:2124 +#: order/serializers.py:2141 msgid "Quantity to return" msgstr "退货数量" -#: order/serializers.py:2140 +#: order/serializers.py:2157 msgid "Line price currency" msgstr "行价格货币" @@ -5433,1190 +5561,1109 @@ msgstr "逾期退货订单" msgid "Return order {ro} is now overdue" msgstr "退货订单 {ro} 现已逾期" -#: part/api.py:108 +#: part/api.py:103 msgid "Starred" msgstr "已加星标" -#: part/api.py:110 +#: part/api.py:105 msgid "Filter by starred categories" msgstr "按星标类别筛选" -#: part/api.py:127 stock/api.py:288 +#: part/api.py:122 stock/api.py:288 msgid "Depth" msgstr "深度" -#: part/api.py:127 +#: part/api.py:122 msgid "Filter by category depth" msgstr "按类别深度筛选" -#: part/api.py:145 stock/api.py:306 +#: part/api.py:140 stock/api.py:306 msgid "Top Level" msgstr "顶级" -#: part/api.py:147 +#: part/api.py:142 msgid "Filter by top-level categories" msgstr "按顶级类别筛选" -#: part/api.py:160 stock/api.py:321 +#: part/api.py:155 stock/api.py:321 msgid "Cascade" msgstr "级联" -#: part/api.py:162 +#: part/api.py:157 msgid "Include sub-categories in filtered results" msgstr "在筛选结果中包含子类别" -#: part/api.py:182 +#: part/api.py:177 msgid "Parent" msgstr "父类" -#: part/api.py:184 +#: part/api.py:179 msgid "Filter by parent category" msgstr "按父类别筛选" -#: part/api.py:219 +#: part/api.py:214 msgid "Exclude sub-categories under the specified category" msgstr "排除指定类别下的子类别" -#: part/api.py:445 +#: part/api.py:440 msgid "Has Results" msgstr "有结果" -#: part/api.py:666 +#: part/api.py:661 msgid "Is Variant" msgstr "是变体" -#: part/api.py:674 +#: part/api.py:669 msgid "Is Revision" msgstr "是修订版本" -#: part/api.py:684 +#: part/api.py:679 msgid "Has Revisions" msgstr "有修订版本" -#: part/api.py:865 +#: part/api.py:860 msgid "BOM Valid" msgstr "物料清单合规" -#: part/api.py:974 +#: part/api.py:969 msgid "Cascade Categories" msgstr "级联分类" -#: part/api.py:975 +#: part/api.py:970 msgid "If true, include items in child categories of the given category" msgstr "如果为真,则包含给定分类下的所有子分类中的项目" -#: part/api.py:981 +#: part/api.py:976 msgid "Filter by numeric category ID or the literal 'null'" msgstr "按数字分类ID或字面值 \"null\" 进行筛选" -#: part/api.py:1533 +#: part/api.py:1258 msgid "Assembly part is testable" msgstr "装配部份是可测试的" -#: part/api.py:1542 +#: part/api.py:1267 msgid "Component part is testable" msgstr "组件部份是可测试的" -#: part/api.py:1611 +#: part/api.py:1336 msgid "Uses" msgstr "使用" -#: part/models.py:96 part/models.py:4163 +#: part/models.py:93 part/models.py:436 #: templates/email/part_event_notification.html:16 msgid "Part Category" msgstr "零件类别" -#: part/models.py:97 users/ruleset.py:27 +#: part/models.py:94 users/ruleset.py:27 msgid "Part Categories" msgstr "零件类别" -#: part/models.py:115 part/models.py:1125 +#: part/models.py:112 part/models.py:1213 msgid "Default Location" msgstr "默认位置" -#: part/models.py:116 +#: part/models.py:113 msgid "Default location for parts in this category" msgstr "此类别零件的默认库存地点" -#: part/models.py:121 stock/models.py:216 +#: part/models.py:118 stock/models.py:216 msgid "Structural" msgstr "结构性" -#: part/models.py:123 +#: part/models.py:120 msgid "Parts may not be directly assigned to a structural category, but may be assigned to child categories." msgstr "零件可能无法直接分配到结构类别,但可以分配到子类别。" -#: part/models.py:132 +#: part/models.py:129 msgid "Default keywords" msgstr "默认关键字" -#: part/models.py:133 +#: part/models.py:130 msgid "Default keywords for parts in this category" msgstr "此类别零件的默认关键字" -#: part/models.py:140 stock/models.py:97 stock/models.py:198 +#: part/models.py:137 stock/models.py:97 stock/models.py:198 msgid "Icon" msgstr "图标" -#: part/models.py:141 part/serializers.py:148 part/serializers.py:167 +#: part/models.py:138 part/serializers.py:147 part/serializers.py:166 #: stock/models.py:199 msgid "Icon (optional)" msgstr "图标(可选)" -#: part/models.py:185 +#: part/models.py:182 msgid "You cannot make this part category structural because some parts are already assigned to it!" msgstr "您不能使这个零件类别结构化,因为有些零件已经分配给了它!" -#: part/models.py:473 part/serializers.py:119 part/serializers.py:310 -#: users/ruleset.py:28 +#: part/models.py:392 +msgid "Part Category Parameter Template" +msgstr "零件类别参数模板" + +#: part/models.py:448 +msgid "Default Value" +msgstr "默认值" + +#: part/models.py:449 +msgid "Default Parameter Value" +msgstr "默认参数值" + +#: part/models.py:551 part/serializers.py:118 users/ruleset.py:28 msgid "Parts" msgstr "零件" -#: part/models.py:525 +#: part/models.py:597 +msgid "Cannot delete parameters of a locked part" +msgstr "" + +#: part/models.py:602 +msgid "Cannot modify parameters of a locked part" +msgstr "" + +#: part/models.py:613 msgid "Cannot delete this part as it is locked" msgstr "无法删除这个零件,因为它已被锁定" -#: part/models.py:528 +#: part/models.py:616 msgid "Cannot delete this part as it is still active" msgstr "无法删除这个零件,因为它仍然处于活动状态" -#: part/models.py:533 +#: part/models.py:621 msgid "Cannot delete this part as it is used in an assembly" msgstr "无法删除这个零件,因为它被使用在了装配中" -#: part/models.py:616 part/models.py:623 +#: part/models.py:704 part/models.py:711 #, python-brace-format msgid "Part '{self}' cannot be used in BOM for '{parent}' (recursive)" msgstr "零件 \"{self}\" 不能用在 \"{parent}\" 的物料清单 (递归)" -#: part/models.py:635 +#: part/models.py:723 #, python-brace-format msgid "Part '{parent}' is used in BOM for '{self}' (recursive)" msgstr "零件 \"{parent}\" 被使用在了 \"{self}\" 的物料清单 (递归)" -#: part/models.py:702 +#: part/models.py:790 #, python-brace-format msgid "IPN must match regex pattern {pattern}" msgstr "内部零件号必须匹配正则表达式 {pattern}" -#: part/models.py:710 +#: part/models.py:798 msgid "Part cannot be a revision of itself" msgstr "零件不能是对自身的修订" -#: part/models.py:717 +#: part/models.py:805 msgid "Cannot make a revision of a part which is already a revision" msgstr "无法对已经是修订版本的零件进行修订" -#: part/models.py:724 +#: part/models.py:812 msgid "Revision code must be specified" msgstr "必须指定修订代码" -#: part/models.py:731 +#: part/models.py:819 msgid "Revisions are only allowed for assembly parts" msgstr "修订仅对装配零件允许" -#: part/models.py:738 +#: part/models.py:826 msgid "Cannot make a revision of a template part" msgstr "无法对模版零件进行修订" -#: part/models.py:744 +#: part/models.py:832 msgid "Parent part must point to the same template" msgstr "上级零件必须指向相同的模版" -#: part/models.py:841 +#: part/models.py:929 msgid "Stock item with this serial number already exists" msgstr "该序列号库存项己存在" -#: part/models.py:971 +#: part/models.py:1059 msgid "Duplicate IPN not allowed in part settings" msgstr "在零件设置中不允许重复的内部零件号" -#: part/models.py:983 +#: part/models.py:1071 msgid "Duplicate part revision already exists." msgstr "重复的零件修订版本已经存在。" -#: part/models.py:992 +#: part/models.py:1080 msgid "Part with this Name, IPN and Revision already exists." msgstr "有这个名字,内部零件号,和修订版本的零件已经存在" -#: part/models.py:1007 +#: part/models.py:1095 msgid "Parts cannot be assigned to structural part categories!" msgstr "零件不能分配到结构性零件类别!" -#: part/models.py:1039 +#: part/models.py:1127 msgid "Part name" msgstr "零件名称" -#: part/models.py:1044 +#: part/models.py:1132 msgid "Is Template" msgstr "是模板" -#: part/models.py:1045 +#: part/models.py:1133 msgid "Is this part a template part?" msgstr "这个零件是一个模版零件吗?" -#: part/models.py:1055 +#: part/models.py:1143 msgid "Is this part a variant of another part?" msgstr "这个零件是另一零件的变体吗?" -#: part/models.py:1056 +#: part/models.py:1144 msgid "Variant Of" msgstr "变体" -#: part/models.py:1063 +#: part/models.py:1151 msgid "Part description (optional)" msgstr "零件描述(可选)" -#: part/models.py:1070 +#: part/models.py:1158 msgid "Keywords" msgstr "关键词" -#: part/models.py:1071 +#: part/models.py:1159 msgid "Part keywords to improve visibility in search results" msgstr "提高搜索结果可见性的零件关键字" -#: part/models.py:1081 +#: part/models.py:1169 msgid "Part category" msgstr "零件类别" -#: part/models.py:1088 part/serializers.py:929 +#: part/models.py:1176 part/serializers.py:814 #: report/templates/report/inventree_stock_location_report.html:103 msgid "IPN" msgstr "内部零件号 IPN" -#: part/models.py:1096 +#: part/models.py:1184 msgid "Part revision or version number" msgstr "零件修订版本或版本号" -#: part/models.py:1097 report/models.py:228 +#: part/models.py:1185 report/models.py:228 msgid "Revision" msgstr "版本" -#: part/models.py:1106 +#: part/models.py:1194 msgid "Is this part a revision of another part?" msgstr "这零件是另一零件的修订版本吗?" -#: part/models.py:1107 +#: part/models.py:1195 msgid "Revision Of" msgstr "修订版本" -#: part/models.py:1123 +#: part/models.py:1211 msgid "Where is this item normally stored?" msgstr "该物品通常存放在哪里?" -#: part/models.py:1169 +#: part/models.py:1257 msgid "Default Supplier" msgstr "默认供应商" -#: part/models.py:1170 +#: part/models.py:1258 msgid "Default supplier part" msgstr "默认供应商零件" -#: part/models.py:1177 +#: part/models.py:1265 msgid "Default Expiry" msgstr "默认到期" -#: part/models.py:1178 +#: part/models.py:1266 msgid "Expiry time (in days) for stock items of this part" msgstr "此零件库存项的过期时间 (天)" -#: part/models.py:1186 part/serializers.py:1003 +#: part/models.py:1274 part/serializers.py:888 msgid "Minimum Stock" msgstr "最低库存" -#: part/models.py:1187 +#: part/models.py:1275 msgid "Minimum allowed stock level" msgstr "允许的最小库存量" -#: part/models.py:1196 +#: part/models.py:1284 msgid "Units of measure for this part" msgstr "此零件的计量单位" -#: part/models.py:1203 +#: part/models.py:1291 msgid "Can this part be built from other parts?" msgstr "这个零件可由其他零件加工而成吗?" -#: part/models.py:1209 +#: part/models.py:1297 msgid "Can this part be used to build other parts?" msgstr "这个零件可用于创建其他零件吗?" -#: part/models.py:1215 +#: part/models.py:1303 msgid "Does this part have tracking for unique items?" msgstr "此零件是否有唯一物品的追踪功能" -#: part/models.py:1221 +#: part/models.py:1309 msgid "Can this part have test results recorded against it?" msgstr "这一部件能否记录到测试结果?" -#: part/models.py:1227 +#: part/models.py:1315 msgid "Can this part be purchased from external suppliers?" msgstr "这个零件可从外部供应商购买吗?" -#: part/models.py:1233 +#: part/models.py:1321 msgid "Can this part be sold to customers?" msgstr "此零件可以销售给客户吗?" -#: part/models.py:1237 +#: part/models.py:1325 msgid "Is this part active?" msgstr "这个零件是否已激活?" -#: part/models.py:1243 +#: part/models.py:1331 msgid "Locked parts cannot be edited" msgstr "无法编辑锁定的零件" -#: part/models.py:1249 +#: part/models.py:1337 msgid "Is this a virtual part, such as a software product or license?" msgstr "这是一个虚拟零件,例如一个软件产品或许可证吗?" -#: part/models.py:1254 +#: part/models.py:1342 msgid "BOM Validated" msgstr "物料清单已验证" -#: part/models.py:1255 +#: part/models.py:1343 msgid "Is the BOM for this part valid?" msgstr "该零件的物料清单是否通过验证?" -#: part/models.py:1261 +#: part/models.py:1349 msgid "BOM checksum" msgstr "物料清单校验和" -#: part/models.py:1262 +#: part/models.py:1350 msgid "Stored BOM checksum" msgstr "保存的物料清单校验和" -#: part/models.py:1270 +#: part/models.py:1358 msgid "BOM checked by" msgstr "物料清单检查人" -#: part/models.py:1275 +#: part/models.py:1363 msgid "BOM checked date" msgstr "物料清单检查日期" -#: part/models.py:1291 +#: part/models.py:1379 msgid "Creation User" msgstr "新建用户" -#: part/models.py:1301 +#: part/models.py:1389 msgid "Owner responsible for this part" msgstr "此零件的负责人" -#: part/models.py:2258 +#: part/models.py:2346 msgid "Sell multiple" msgstr "出售多个" -#: part/models.py:3286 +#: part/models.py:3350 msgid "Currency used to cache pricing calculations" msgstr "用于缓存定价计算的货币" -#: part/models.py:3302 +#: part/models.py:3366 msgid "Minimum BOM Cost" msgstr "最低物料清单成本" -#: part/models.py:3303 +#: part/models.py:3367 msgid "Minimum cost of component parts" msgstr "元件的最低成本" -#: part/models.py:3309 +#: part/models.py:3373 msgid "Maximum BOM Cost" msgstr "物料清单的最高成本" -#: part/models.py:3310 +#: part/models.py:3374 msgid "Maximum cost of component parts" msgstr "元件的最高成本" -#: part/models.py:3316 +#: part/models.py:3380 msgid "Minimum Purchase Cost" msgstr "最低购买成本" -#: part/models.py:3317 +#: part/models.py:3381 msgid "Minimum historical purchase cost" msgstr "最高历史购买成本" -#: part/models.py:3323 +#: part/models.py:3387 msgid "Maximum Purchase Cost" msgstr "最大购买成本" -#: part/models.py:3324 +#: part/models.py:3388 msgid "Maximum historical purchase cost" msgstr "最高历史购买成本" -#: part/models.py:3330 +#: part/models.py:3394 msgid "Minimum Internal Price" msgstr "最低内部价格" -#: part/models.py:3331 +#: part/models.py:3395 msgid "Minimum cost based on internal price breaks" msgstr "基于内部批发价的最低成本" -#: part/models.py:3337 +#: part/models.py:3401 msgid "Maximum Internal Price" msgstr "最大内部价格" -#: part/models.py:3338 +#: part/models.py:3402 msgid "Maximum cost based on internal price breaks" msgstr "基于内部批发价的最高成本" -#: part/models.py:3344 +#: part/models.py:3408 msgid "Minimum Supplier Price" msgstr "供应商最低价格" -#: part/models.py:3345 +#: part/models.py:3409 msgid "Minimum price of part from external suppliers" msgstr "外部供应商零件的最低价格" -#: part/models.py:3351 +#: part/models.py:3415 msgid "Maximum Supplier Price" msgstr "供应商最高价格" -#: part/models.py:3352 +#: part/models.py:3416 msgid "Maximum price of part from external suppliers" msgstr "来自外部供应商的商零件的最高价格" -#: part/models.py:3358 +#: part/models.py:3422 msgid "Minimum Variant Cost" msgstr "最小变体成本" -#: part/models.py:3359 +#: part/models.py:3423 msgid "Calculated minimum cost of variant parts" msgstr "计算出的变体零件的最低成本" -#: part/models.py:3365 +#: part/models.py:3429 msgid "Maximum Variant Cost" msgstr "最大变体成本" -#: part/models.py:3366 +#: part/models.py:3430 msgid "Calculated maximum cost of variant parts" msgstr "计算出的变体零件的最大成本" -#: part/models.py:3372 part/models.py:3386 +#: part/models.py:3436 part/models.py:3450 msgid "Minimum Cost" msgstr "最低成本" -#: part/models.py:3373 +#: part/models.py:3437 msgid "Override minimum cost" msgstr "覆盖最低成本" -#: part/models.py:3379 part/models.py:3393 +#: part/models.py:3443 part/models.py:3457 msgid "Maximum Cost" msgstr "最高成本" -#: part/models.py:3380 +#: part/models.py:3444 msgid "Override maximum cost" msgstr "覆盖最大成本" -#: part/models.py:3387 +#: part/models.py:3451 msgid "Calculated overall minimum cost" msgstr "计算总最低成本" -#: part/models.py:3394 +#: part/models.py:3458 msgid "Calculated overall maximum cost" msgstr "计算总最大成本" -#: part/models.py:3400 +#: part/models.py:3464 msgid "Minimum Sale Price" msgstr "最低售出价格" -#: part/models.py:3401 +#: part/models.py:3465 msgid "Minimum sale price based on price breaks" msgstr "基于批发价的最低售出价格" -#: part/models.py:3407 +#: part/models.py:3471 msgid "Maximum Sale Price" msgstr "最高售出价格" -#: part/models.py:3408 +#: part/models.py:3472 msgid "Maximum sale price based on price breaks" msgstr "基于批发价的最大售出价格" -#: part/models.py:3414 +#: part/models.py:3478 msgid "Minimum Sale Cost" msgstr "最低销售成本" -#: part/models.py:3415 +#: part/models.py:3479 msgid "Minimum historical sale price" msgstr "历史最低售出价格" -#: part/models.py:3421 +#: part/models.py:3485 msgid "Maximum Sale Cost" msgstr "最高销售成本" -#: part/models.py:3422 +#: part/models.py:3486 msgid "Maximum historical sale price" msgstr "历史最高售出价格" -#: part/models.py:3440 +#: part/models.py:3504 msgid "Part for stocktake" msgstr "用于盘点的零件" -#: part/models.py:3445 +#: part/models.py:3509 msgid "Item Count" msgstr "物品数量" -#: part/models.py:3446 +#: part/models.py:3510 msgid "Number of individual stock entries at time of stocktake" msgstr "盘点时的个别库存条目数" -#: part/models.py:3454 +#: part/models.py:3518 msgid "Total available stock at time of stocktake" msgstr "盘点时可用库存总额" -#: part/models.py:3458 report/templates/report/inventree_test_report.html:106 +#: part/models.py:3522 report/templates/report/inventree_test_report.html:106 msgid "Date" msgstr "日期" -#: part/models.py:3459 +#: part/models.py:3523 msgid "Date stocktake was performed" msgstr "进行盘点的日期" -#: part/models.py:3466 +#: part/models.py:3530 msgid "Minimum Stock Cost" msgstr "最低库存成本" -#: part/models.py:3467 +#: part/models.py:3531 msgid "Estimated minimum cost of stock on hand" msgstr "现有存库存最低成本估算" -#: part/models.py:3473 +#: part/models.py:3537 msgid "Maximum Stock Cost" msgstr "最高库存成本" -#: part/models.py:3474 +#: part/models.py:3538 msgid "Estimated maximum cost of stock on hand" msgstr "目前库存最高成本估算" -#: part/models.py:3484 +#: part/models.py:3548 msgid "Part Sale Price Break" msgstr "零件售出价格折扣" -#: part/models.py:3596 +#: part/models.py:3660 msgid "Part Test Template" msgstr "零件测试模板" -#: part/models.py:3622 +#: part/models.py:3686 msgid "Invalid template name - must include at least one alphanumeric character" msgstr "模板名称无效 - 必须包含至少一个字母或者数字" -#: part/models.py:3643 part/models.py:3816 -msgid "Choices must be unique" -msgstr "选择必须是唯一的" - -#: part/models.py:3654 +#: part/models.py:3718 msgid "Test templates can only be created for testable parts" msgstr "测试模板只能为可拆分的部件创建" -#: part/models.py:3668 +#: part/models.py:3732 msgid "Test template with the same key already exists for part" msgstr "零件已存在具有相同主键的测试模板" -#: part/models.py:3685 +#: part/models.py:3749 msgid "Test Name" msgstr "测试名" -#: part/models.py:3686 +#: part/models.py:3750 msgid "Enter a name for the test" msgstr "输入测试的名称" -#: part/models.py:3692 +#: part/models.py:3756 msgid "Test Key" msgstr "测试主键" -#: part/models.py:3693 +#: part/models.py:3757 msgid "Simplified key for the test" msgstr "简化测试主键" -#: part/models.py:3700 +#: part/models.py:3764 msgid "Test Description" msgstr "测试说明" -#: part/models.py:3701 +#: part/models.py:3765 msgid "Enter description for this test" msgstr "输入测试的描述" -#: part/models.py:3705 report/models.py:287 -msgid "Enabled" -msgstr "已启用" - -#: part/models.py:3705 +#: part/models.py:3769 msgid "Is this test enabled?" msgstr "此测试是否已启用?" -#: part/models.py:3710 +#: part/models.py:3774 msgid "Required" msgstr "必须的" -#: part/models.py:3711 +#: part/models.py:3775 msgid "Is this test required to pass?" msgstr "需要此测试才能通过吗?" -#: part/models.py:3716 +#: part/models.py:3780 msgid "Requires Value" msgstr "需要值" -#: part/models.py:3717 +#: part/models.py:3781 msgid "Does this test require a value when adding a test result?" msgstr "添加测试结果时是否需要一个值?" -#: part/models.py:3722 +#: part/models.py:3786 msgid "Requires Attachment" msgstr "需要附件" -#: part/models.py:3724 +#: part/models.py:3788 msgid "Does this test require a file attachment when adding a test result?" msgstr "添加测试结果时是否需要文件附件?" -#: part/models.py:3730 part/models.py:3878 -msgid "Choices" -msgstr "选项" - -#: part/models.py:3731 +#: part/models.py:3795 msgid "Valid choices for this test (comma-separated)" msgstr "此测试的有效选择 (逗号分隔)" -#: part/models.py:3764 -msgid "Part Parameter Template" -msgstr "零件参数模板" - -#: part/models.py:3791 -msgid "Checkbox parameters cannot have units" -msgstr "勾选框参数不能有单位" - -#: part/models.py:3796 -msgid "Checkbox parameters cannot have choices" -msgstr "复选框参数不能有选项" - -#: part/models.py:3833 -msgid "Parameter template name must be unique" -msgstr "参数模板名称必须是唯一的" - -#: part/models.py:3851 -msgid "Parameter Name" -msgstr "参数名称" - -#: part/models.py:3858 -msgid "Physical units for this parameter" -msgstr "此参数的物理单位" - -#: part/models.py:3866 -msgid "Parameter description" -msgstr "参数说明" - -#: part/models.py:3872 -msgid "Checkbox" -msgstr "勾选框" - -#: part/models.py:3873 -msgid "Is this parameter a checkbox?" -msgstr "此参数是否为勾选框?" - -#: part/models.py:3879 -msgid "Valid choices for this parameter (comma-separated)" -msgstr "此参数的有效选择 (逗号分隔)" - -#: part/models.py:3890 -msgid "Selection list for this parameter" -msgstr "此参数的选择列表" - -#: part/models.py:3932 -msgid "Part Parameter" -msgstr "零件参数" - -#: part/models.py:3958 -msgid "Parameter cannot be modified - part is locked" -msgstr "参数不能被修改 - 零件被锁定" - -#: part/models.py:3996 -msgid "Invalid choice for parameter value" -msgstr "无效的参数值选择" - -#: part/models.py:4047 -msgid "Parent Part" -msgstr "父零件" - -#: part/models.py:4055 part/models.py:4170 part/models.py:4171 -msgid "Parameter Template" -msgstr "参数模板" - -#: part/models.py:4061 -msgid "Parameter Value" -msgstr "参数值" - -#: part/models.py:4071 stock/serializers.py:718 -msgid "Optional note field" -msgstr "可选注释字段" - -#: part/models.py:4118 -msgid "Part Category Parameter Template" -msgstr "零件类别参数模板" - -#: part/models.py:4177 -msgid "Default Value" -msgstr "默认值" - -#: part/models.py:4178 -msgid "Default Parameter Value" -msgstr "默认参数值" - -#: part/models.py:4352 +#: part/models.py:3977 msgid "BOM item cannot be modified - assembly is locked" msgstr "物料清单项目不能被修改 - 装配已锁定" -#: part/models.py:4359 +#: part/models.py:3984 msgid "BOM item cannot be modified - variant assembly is locked" msgstr "物料清单项目不能修改 - 变体装配已锁定" -#: part/models.py:4369 +#: part/models.py:3994 msgid "Select parent part" msgstr "选择父零件" -#: part/models.py:4379 +#: part/models.py:4004 msgid "Sub part" msgstr "子零件" -#: part/models.py:4380 +#: part/models.py:4005 msgid "Select part to be used in BOM" msgstr "选择要用于物料清单的零件" -#: part/models.py:4391 +#: part/models.py:4016 msgid "BOM quantity for this BOM item" msgstr "此物料清单项目的数量" -#: part/models.py:4397 +#: part/models.py:4022 msgid "This BOM item is optional" msgstr "此物料清单项目是可选的" -#: part/models.py:4403 +#: part/models.py:4028 msgid "This BOM item is consumable (it is not tracked in build orders)" msgstr "这个物料清单项目是耗材 (它没有在生产订单中被追踪)" -#: part/models.py:4411 +#: part/models.py:4036 msgid "Setup Quantity" msgstr "设置数量" -#: part/models.py:4412 +#: part/models.py:4037 msgid "Extra required quantity for a build, to account for setup losses" msgstr "为补偿生产准备损耗所需的额外数量" -#: part/models.py:4420 +#: part/models.py:4045 msgid "Attrition" msgstr "损耗" -#: part/models.py:4422 +#: part/models.py:4047 msgid "Estimated attrition for a build, expressed as a percentage (0-100)" msgstr "生产预估损耗率(百分比,0-100)" -#: part/models.py:4433 +#: part/models.py:4058 msgid "Rounding Multiple" msgstr "舍入倍数" -#: part/models.py:4435 +#: part/models.py:4060 msgid "Round up required production quantity to nearest multiple of this value" msgstr "将所需生产数量向上舍入至该值的最接近倍数" -#: part/models.py:4443 +#: part/models.py:4068 msgid "BOM item reference" msgstr "物料清单项目引用" -#: part/models.py:4451 +#: part/models.py:4076 msgid "BOM item notes" msgstr "物料清单项目注释" -#: part/models.py:4457 +#: part/models.py:4082 msgid "Checksum" msgstr "校验和" -#: part/models.py:4458 +#: part/models.py:4083 msgid "BOM line checksum" msgstr "物料清单行校验和" -#: part/models.py:4463 +#: part/models.py:4088 msgid "Validated" msgstr "已验证" -#: part/models.py:4464 +#: part/models.py:4089 msgid "This BOM item has been validated" msgstr "此物料清单项目已验证" -#: part/models.py:4469 +#: part/models.py:4094 msgid "Gets inherited" msgstr "获取继承的" -#: part/models.py:4470 +#: part/models.py:4095 msgid "This BOM item is inherited by BOMs for variant parts" msgstr "此物料清单项目是由物料清单继承的变体零件" -#: part/models.py:4476 +#: part/models.py:4101 msgid "Stock items for variant parts can be used for this BOM item" msgstr "变体零件的库存项可以用于此物料清单项目" -#: part/models.py:4583 stock/models.py:925 +#: part/models.py:4208 stock/models.py:925 msgid "Quantity must be integer value for trackable parts" msgstr "可追踪零件的数量必须是整数" -#: part/models.py:4593 part/models.py:4595 +#: part/models.py:4218 part/models.py:4220 msgid "Sub part must be specified" msgstr "必须指定子零件" -#: part/models.py:4746 +#: part/models.py:4371 msgid "BOM Item Substitute" msgstr "物料清单项目替代品" -#: part/models.py:4767 +#: part/models.py:4392 msgid "Substitute part cannot be the same as the master part" msgstr "替代品零件不能与主零件相同" -#: part/models.py:4780 +#: part/models.py:4405 msgid "Parent BOM item" msgstr "上级物料清单项目" -#: part/models.py:4788 +#: part/models.py:4413 msgid "Substitute part" msgstr "替代品零件" -#: part/models.py:4804 +#: part/models.py:4429 msgid "Part 1" msgstr "零件 1" -#: part/models.py:4812 +#: part/models.py:4437 msgid "Part 2" msgstr "零件2" -#: part/models.py:4813 +#: part/models.py:4438 msgid "Select Related Part" msgstr "选择相关的零件" -#: part/models.py:4820 +#: part/models.py:4445 msgid "Note for this relationship" msgstr "此关系的注释" -#: part/models.py:4839 +#: part/models.py:4464 msgid "Part relationship cannot be created between a part and itself" msgstr "零件关系不能在零件和自身之间创建" -#: part/models.py:4844 +#: part/models.py:4469 msgid "Duplicate relationship already exists" msgstr "复制关系已经存在" -#: part/serializers.py:114 +#: part/serializers.py:113 msgid "Parent Category" msgstr "上级类别" -#: part/serializers.py:115 +#: part/serializers.py:114 msgid "Parent part category" msgstr "上级零件类别" -#: part/serializers.py:123 part/serializers.py:164 +#: part/serializers.py:122 part/serializers.py:163 msgid "Subcategories" msgstr "子类别" -#: part/serializers.py:203 +#: part/serializers.py:202 msgid "Results" msgstr "结果" -#: part/serializers.py:204 +#: part/serializers.py:203 msgid "Number of results recorded against this template" msgstr "根据该模板记录的结果数量" -#: part/serializers.py:235 part/serializers.py:253 stock/serializers.py:643 +#: part/serializers.py:234 part/serializers.py:252 stock/serializers.py:643 msgid "Purchase currency of this stock item" msgstr "购买此库存项的货币" -#: part/serializers.py:280 +#: part/serializers.py:279 msgid "File is not an image" msgstr "文件不是一个图片" -#: part/serializers.py:311 -msgid "Number of parts using this template" -msgstr "使用此模板的零件数" - -#: part/serializers.py:471 +#: part/serializers.py:382 msgid "Original Part" msgstr "原始零件" -#: part/serializers.py:472 +#: part/serializers.py:383 msgid "Select original part to duplicate" msgstr "选择要复制的原始零件" -#: part/serializers.py:477 +#: part/serializers.py:388 msgid "Copy Image" msgstr "复制图片" -#: part/serializers.py:478 +#: part/serializers.py:389 msgid "Copy image from original part" msgstr "从原零件复制图片" -#: part/serializers.py:484 +#: part/serializers.py:395 msgid "Copy BOM" msgstr "复制物料清单" -#: part/serializers.py:485 +#: part/serializers.py:396 msgid "Copy bill of materials from original part" msgstr "从原始零件复制材料清单" -#: part/serializers.py:491 +#: part/serializers.py:402 msgid "Copy Parameters" msgstr "复制参数" -#: part/serializers.py:492 +#: part/serializers.py:403 msgid "Copy parameter data from original part" msgstr "从原始零件复制参数数据" -#: part/serializers.py:498 +#: part/serializers.py:409 msgid "Copy Notes" msgstr "复制备注" -#: part/serializers.py:499 +#: part/serializers.py:410 msgid "Copy notes from original part" msgstr "从原始零件复制备注" -#: part/serializers.py:505 +#: part/serializers.py:416 msgid "Copy Tests" msgstr "复制测试" -#: part/serializers.py:506 +#: part/serializers.py:417 msgid "Copy test templates from original part" msgstr "从原始零件复制测试模板" -#: part/serializers.py:524 +#: part/serializers.py:435 msgid "Initial Stock Quantity" msgstr "初始化库存数量" -#: part/serializers.py:526 +#: part/serializers.py:437 msgid "Specify initial stock quantity for this Part. If quantity is zero, no stock is added." msgstr "指定此零件的初始库存数量。如果数量为零,则不添加任何库存。" -#: part/serializers.py:533 +#: part/serializers.py:444 msgid "Initial Stock Location" msgstr "初始化库存地点" -#: part/serializers.py:534 +#: part/serializers.py:445 msgid "Specify initial stock location for this Part" msgstr "初始化指定此零件的库存地点" -#: part/serializers.py:551 +#: part/serializers.py:462 msgid "Select supplier (or leave blank to skip)" msgstr "选择供应商(或为空以跳过)" -#: part/serializers.py:567 +#: part/serializers.py:478 msgid "Select manufacturer (or leave blank to skip)" msgstr "选择制造商(或为空)" -#: part/serializers.py:577 +#: part/serializers.py:488 msgid "Manufacturer part number" msgstr "制造商零件号" -#: part/serializers.py:584 +#: part/serializers.py:495 msgid "Selected company is not a valid supplier" msgstr "所选公司不是一个有效的供应商" -#: part/serializers.py:593 +#: part/serializers.py:504 msgid "Selected company is not a valid manufacturer" msgstr "所选公司不是一个有效的制造商" -#: part/serializers.py:604 +#: part/serializers.py:515 msgid "Manufacturer part matching this MPN already exists" msgstr "与此制造商零件编号 (MPN) 的相匹配的制造商零件已存在" -#: part/serializers.py:611 +#: part/serializers.py:522 msgid "Supplier part matching this SKU already exists" msgstr "匹配此库存单位 (SKU) 的供应商零件已存在" -#: part/serializers.py:914 +#: part/serializers.py:799 msgid "Category Name" msgstr "类别名称" -#: part/serializers.py:943 +#: part/serializers.py:828 msgid "Building" msgstr "正在生产" -#: part/serializers.py:944 +#: part/serializers.py:829 msgid "Quantity of this part currently being in production" msgstr "目前正在生产的零件数量" -#: part/serializers.py:951 +#: part/serializers.py:836 msgid "Outstanding quantity of this part scheduled to be built" msgstr "此零件计划待产数量" -#: part/serializers.py:971 stock/serializers.py:1019 stock/serializers.py:1189 +#: part/serializers.py:856 stock/serializers.py:1019 stock/serializers.py:1189 #: users/ruleset.py:30 msgid "Stock Items" msgstr "库存项" -#: part/serializers.py:975 +#: part/serializers.py:860 msgid "Revisions" msgstr "修订" -#: part/serializers.py:979 +#: part/serializers.py:864 msgid "Suppliers" msgstr "供应商" -#: part/serializers.py:983 part/serializers.py:1297 +#: part/serializers.py:868 part/serializers.py:1162 #: templates/email/low_stock_notification.html:16 #: templates/email/part_event_notification.html:17 msgid "Total Stock" msgstr "库存总量" -#: part/serializers.py:991 +#: part/serializers.py:876 msgid "Unallocated Stock" msgstr "未分配的库存" -#: part/serializers.py:999 +#: part/serializers.py:884 msgid "Variant Stock" msgstr "变体库存" -#: part/serializers.py:1054 +#: part/serializers.py:943 msgid "Duplicate Part" msgstr "重复零件" -#: part/serializers.py:1055 +#: part/serializers.py:944 msgid "Copy initial data from another Part" msgstr "从另一个零件复制初始数据" -#: part/serializers.py:1061 +#: part/serializers.py:950 msgid "Initial Stock" msgstr "初始库存" -#: part/serializers.py:1062 +#: part/serializers.py:951 msgid "Create Part with initial stock quantity" msgstr "创建具有初始库存数量的零件" -#: part/serializers.py:1068 +#: part/serializers.py:957 msgid "Supplier Information" msgstr "供应商信息" -#: part/serializers.py:1069 +#: part/serializers.py:958 msgid "Add initial supplier information for this part" msgstr "添加此零件的初始供应商信息" -#: part/serializers.py:1077 +#: part/serializers.py:966 msgid "Copy Category Parameters" msgstr "复制类别参数" -#: part/serializers.py:1078 +#: part/serializers.py:967 msgid "Copy parameter templates from selected part category" msgstr "从选择的零件复制参数模版" -#: part/serializers.py:1083 +#: part/serializers.py:972 msgid "Existing Image" msgstr "现有的图片" -#: part/serializers.py:1084 +#: part/serializers.py:973 msgid "Filename of an existing part image" msgstr "现有零件图片的文件名" -#: part/serializers.py:1101 +#: part/serializers.py:990 msgid "Image file does not exist" msgstr "图片不存在" -#: part/serializers.py:1269 +#: part/serializers.py:1134 msgid "Validate entire Bill of Materials" msgstr "验证整个物料清单" -#: part/serializers.py:1303 part/serializers.py:1769 +#: part/serializers.py:1168 part/serializers.py:1634 msgid "Can Build" msgstr "可以创建" -#: part/serializers.py:1320 +#: part/serializers.py:1185 msgid "Required for Build Orders" msgstr "生产订单必填项" -#: part/serializers.py:1325 +#: part/serializers.py:1190 msgid "Allocated to Build Orders" msgstr "分配到生产订单" -#: part/serializers.py:1332 +#: part/serializers.py:1197 msgid "Required for Sales Orders" msgstr "销售订单必填项" -#: part/serializers.py:1336 +#: part/serializers.py:1201 msgid "Allocated to Sales Orders" msgstr "分配到销售订单" -#: part/serializers.py:1475 +#: part/serializers.py:1340 msgid "Minimum Price" msgstr "最低价格" -#: part/serializers.py:1476 +#: part/serializers.py:1341 msgid "Override calculated value for minimum price" msgstr "覆盖已计算的最低价格值" -#: part/serializers.py:1483 +#: part/serializers.py:1348 msgid "Minimum price currency" msgstr "最低价格货币" -#: part/serializers.py:1490 +#: part/serializers.py:1355 msgid "Maximum Price" msgstr "最高价格" -#: part/serializers.py:1491 +#: part/serializers.py:1356 msgid "Override calculated value for maximum price" msgstr "覆盖已计算的最高价格值" -#: part/serializers.py:1498 +#: part/serializers.py:1363 msgid "Maximum price currency" msgstr "最高价格货币" -#: part/serializers.py:1527 +#: part/serializers.py:1392 msgid "Update" msgstr "更新" -#: part/serializers.py:1528 +#: part/serializers.py:1393 msgid "Update pricing for this part" msgstr "更新这个零件的价格" -#: part/serializers.py:1551 +#: part/serializers.py:1416 #, python-brace-format msgid "Could not convert from provided currencies to {default_currency}" msgstr "无法将所提供的货币转换为 {default_currency}" -#: part/serializers.py:1558 +#: part/serializers.py:1423 msgid "Minimum price must not be greater than maximum price" msgstr "最低价格不能高于最高价格。" -#: part/serializers.py:1561 +#: part/serializers.py:1426 msgid "Maximum price must not be less than minimum price" msgstr "最高价格不能低于最低价格" -#: part/serializers.py:1715 +#: part/serializers.py:1580 msgid "Select the parent assembly" msgstr "选择父装配" -#: part/serializers.py:1735 +#: part/serializers.py:1600 msgid "Select the component part" msgstr "选择零部件" -#: part/serializers.py:1929 +#: part/serializers.py:1802 msgid "Select part to copy BOM from" msgstr "选择要复制物料清单的零件" -#: part/serializers.py:1937 +#: part/serializers.py:1810 msgid "Remove Existing Data" msgstr "移除现有数据" -#: part/serializers.py:1938 +#: part/serializers.py:1811 msgid "Remove existing BOM items before copying" msgstr "复制前删除现有的物料清单项目" -#: part/serializers.py:1943 +#: part/serializers.py:1816 msgid "Include Inherited" msgstr "包含继承的" -#: part/serializers.py:1944 +#: part/serializers.py:1817 msgid "Include BOM items which are inherited from templated parts" msgstr "包含从模板零件继承的物料清单项目" -#: part/serializers.py:1949 +#: part/serializers.py:1822 msgid "Skip Invalid Rows" msgstr "跳过无效行" -#: part/serializers.py:1950 +#: part/serializers.py:1823 msgid "Enable this option to skip invalid rows" msgstr "启用此选项以跳过无效行" -#: part/serializers.py:1955 +#: part/serializers.py:1828 msgid "Copy Substitute Parts" msgstr "复制替代品零件" -#: part/serializers.py:1956 +#: part/serializers.py:1829 msgid "Copy substitute parts when duplicate BOM items" msgstr "复制物料清单项目时复制替代品零件" @@ -6929,7 +6976,7 @@ msgstr "提供条形码本地支持" #: plugin/builtin/events/auto_issue_orders.py:19 #: plugin/builtin/exporter/bom_exporter.py:73 #: plugin/builtin/exporter/inventree_exporter.py:17 -#: plugin/builtin/exporter/part_parameter_exporter.py:36 +#: plugin/builtin/exporter/parameter_exporter.py:32 #: plugin/builtin/exporter/stocktake_exporter.py:47 #: plugin/builtin/integration/core_notifications.py:25 #: plugin/builtin/integration/core_notifications.py:69 @@ -7043,23 +7090,19 @@ msgid "Include total quantity of each part in the BOM" msgstr "在物料清单中包含每个零件的总数量" #: plugin/builtin/exporter/bom_exporter.py:35 -#: plugin/builtin/exporter/part_parameter_exporter.py:17 msgid "Stock Data" msgstr "库存数据" #: plugin/builtin/exporter/bom_exporter.py:35 -#: plugin/builtin/exporter/part_parameter_exporter.py:17 msgid "Include part stock data" msgstr "包括零件库存数据" #: plugin/builtin/exporter/bom_exporter.py:39 -#: plugin/builtin/exporter/part_parameter_exporter.py:21 #: plugin/builtin/exporter/stocktake_exporter.py:20 msgid "Pricing Data" msgstr "定价数据" #: plugin/builtin/exporter/bom_exporter.py:39 -#: plugin/builtin/exporter/part_parameter_exporter.py:21 #: plugin/builtin/exporter/stocktake_exporter.py:20 msgid "Include part pricing data" msgstr "包括零件定价数据" @@ -7146,13 +7189,21 @@ msgstr "InvenTree通用导出器" msgid "Provides support for exporting data from InvenTree" msgstr "支持从InvenTree导出数据" -#: plugin/builtin/exporter/part_parameter_exporter.py:33 -msgid "Part Parameter Exporter" -msgstr "零件参数导出器" +#: plugin/builtin/exporter/parameter_exporter.py:16 +msgid "Exclude Inactive" +msgstr "" -#: plugin/builtin/exporter/part_parameter_exporter.py:34 -msgid "Exporter for part parameter data" -msgstr "零件参数数据导出工具" +#: plugin/builtin/exporter/parameter_exporter.py:17 +msgid "Exclude parameters which are inactive" +msgstr "" + +#: plugin/builtin/exporter/parameter_exporter.py:29 +msgid "Parameter Exporter" +msgstr "" + +#: plugin/builtin/exporter/parameter_exporter.py:30 +msgid "Exporter for model parameter data" +msgstr "" #: plugin/builtin/exporter/stocktake_exporter.py:25 msgid "Include External Stock" @@ -8081,19 +8132,19 @@ msgstr "无结果 (必填)" msgid "No result" msgstr "没有结果" -#: report/templatetags/report.py:167 +#: report/templatetags/report.py:169 msgid "Asset file does not exist" msgstr "资产文件不存在" -#: report/templatetags/report.py:224 report/templatetags/report.py:300 +#: report/templatetags/report.py:226 report/templatetags/report.py:302 msgid "Image file not found" msgstr "找不到图片文件" -#: report/templatetags/report.py:325 +#: report/templatetags/report.py:327 msgid "part_image tag requires a Part instance" msgstr "parpart_image 标签需要一个零件实例" -#: report/templatetags/report.py:362 +#: report/templatetags/report.py:383 msgid "company_image tag requires a Company instance" msgstr "公司_图片标签需要一个公司实例" @@ -8457,115 +8508,119 @@ msgstr "必须以列表形式提供序列号" msgid "Quantity does not match serial numbers" msgstr "数量不匹配序列号" -#: stock/models.py:2012 stock/models.py:2917 +#: stock/models.py:1912 +msgid "Cannot assign stock to structural location" +msgstr "无法将库存分配到结构位置" + +#: stock/models.py:2029 stock/models.py:2934 msgid "Test template does not exist" msgstr "测试模板不存在" -#: stock/models.py:2030 +#: stock/models.py:2047 msgid "Stock item has been assigned to a sales order" msgstr "库存项已分配到销售订单" -#: stock/models.py:2034 +#: stock/models.py:2051 msgid "Stock item is installed in another item" msgstr "库存项已安装在另一个项目中" -#: stock/models.py:2037 +#: stock/models.py:2054 msgid "Stock item contains other items" msgstr "库存项包含其他项目" -#: stock/models.py:2040 +#: stock/models.py:2057 msgid "Stock item has been assigned to a customer" msgstr "库存项已分配给客户" -#: stock/models.py:2043 stock/models.py:2226 +#: stock/models.py:2060 stock/models.py:2243 msgid "Stock item is currently in production" msgstr "库存项目前正在生产" -#: stock/models.py:2046 +#: stock/models.py:2063 msgid "Serialized stock cannot be merged" msgstr "序列化的库存不能合并" -#: stock/models.py:2053 stock/serializers.py:1462 +#: stock/models.py:2070 stock/serializers.py:1462 msgid "Duplicate stock items" msgstr "复制库存项" -#: stock/models.py:2057 +#: stock/models.py:2074 msgid "Stock items must refer to the same part" msgstr "库存项必须指相同零件" -#: stock/models.py:2065 +#: stock/models.py:2082 msgid "Stock items must refer to the same supplier part" msgstr "库存项必须是同一供应商的零件" -#: stock/models.py:2070 +#: stock/models.py:2087 msgid "Stock status codes must match" msgstr "库存状态码必须匹配" -#: stock/models.py:2349 +#: stock/models.py:2366 msgid "StockItem cannot be moved as it is not in stock" msgstr "库存项不能移动,因为它没有库存" -#: stock/models.py:2818 +#: stock/models.py:2835 msgid "Stock Item Tracking" msgstr "库存项跟踪" -#: stock/models.py:2849 +#: stock/models.py:2866 msgid "Entry notes" msgstr "条目注释" -#: stock/models.py:2889 +#: stock/models.py:2906 msgid "Stock Item Test Result" msgstr "库存项测试结果" -#: stock/models.py:2920 +#: stock/models.py:2937 msgid "Value must be provided for this test" msgstr "必须为此测试提供值" -#: stock/models.py:2924 +#: stock/models.py:2941 msgid "Attachment must be uploaded for this test" msgstr "测试附件必须上传" -#: stock/models.py:2929 +#: stock/models.py:2946 msgid "Invalid value for this test" msgstr "此测试的值无效" -#: stock/models.py:2953 +#: stock/models.py:2970 msgid "Test result" msgstr "测试结果" -#: stock/models.py:2960 +#: stock/models.py:2977 msgid "Test output value" msgstr "测试输出值" -#: stock/models.py:2968 stock/serializers.py:248 +#: stock/models.py:2985 stock/serializers.py:248 msgid "Test result attachment" msgstr "测验结果附件" -#: stock/models.py:2972 +#: stock/models.py:2989 msgid "Test notes" msgstr "测试备注" -#: stock/models.py:2980 +#: stock/models.py:2997 msgid "Test station" msgstr "测试站" -#: stock/models.py:2981 +#: stock/models.py:2998 msgid "The identifier of the test station where the test was performed" msgstr "进行测试的测试站的标识符" -#: stock/models.py:2987 +#: stock/models.py:3004 msgid "Started" msgstr "已开始" -#: stock/models.py:2988 +#: stock/models.py:3005 msgid "The timestamp of the test start" msgstr "测试开始的时间戳" -#: stock/models.py:2994 +#: stock/models.py:3011 msgid "Finished" msgstr "已完成" -#: stock/models.py:2995 +#: stock/models.py:3012 msgid "The timestamp of the test finish" msgstr "测试结束的时间戳" @@ -8679,8 +8734,8 @@ msgstr "未提供库存项" msgid "Quantity must not exceed available stock quantity ({q})" msgstr "数量不得超过现有库存量 ({q})" -#: stock/serializers.py:711 stock/serializers.py:1419 stock/serializers.py:1732 -#: stock/serializers.py:1781 +#: stock/serializers.py:711 stock/serializers.py:1419 stock/serializers.py:1740 +#: stock/serializers.py:1789 msgid "Destination stock location" msgstr "目标库存位置" @@ -8836,19 +8891,19 @@ msgstr "数量不得为负" msgid "Stock transaction notes" msgstr "库存交易记录" -#: stock/serializers.py:1787 +#: stock/serializers.py:1795 msgid "Merge into existing stock" msgstr "合并至现有库存" -#: stock/serializers.py:1788 +#: stock/serializers.py:1796 msgid "Merge returned items into existing stock items if possible" msgstr "若可行,将退回项目合并至现有库存项" -#: stock/serializers.py:1831 +#: stock/serializers.py:1839 msgid "Next Serial Number" msgstr "下一个序列号" -#: stock/serializers.py:1837 +#: stock/serializers.py:1845 msgid "Previous Serial Number" msgstr "上一个序列号" @@ -8904,83 +8959,87 @@ msgstr "已手动添加库存" msgid "Stock manually removed" msgstr "已手动删除库存" -#: stock/status_codes.py:57 +#: stock/status_codes.py:56 +msgid "Serialized stock items" +msgstr "显示已序列化的库存物品" + +#: stock/status_codes.py:58 msgid "Returned to stock" msgstr "退回库存" -#: stock/status_codes.py:60 +#: stock/status_codes.py:61 msgid "Location changed" msgstr "地点已更改" -#: stock/status_codes.py:61 +#: stock/status_codes.py:62 msgid "Stock updated" msgstr "库存已更新" -#: stock/status_codes.py:64 +#: stock/status_codes.py:65 msgid "Installed into assembly" msgstr "已安装到装配中" -#: stock/status_codes.py:65 +#: stock/status_codes.py:66 msgid "Removed from assembly" msgstr "已从装配中删除" -#: stock/status_codes.py:67 +#: stock/status_codes.py:68 msgid "Installed component item" msgstr "已安装组件项" -#: stock/status_codes.py:68 +#: stock/status_codes.py:69 msgid "Removed component item" msgstr "已删除组件项" -#: stock/status_codes.py:71 +#: stock/status_codes.py:72 msgid "Split from parent item" msgstr "从上级项拆分" -#: stock/status_codes.py:72 +#: stock/status_codes.py:73 msgid "Split child item" msgstr "拆分子项" -#: stock/status_codes.py:75 +#: stock/status_codes.py:76 msgid "Merged stock items" msgstr "合并的库存项" -#: stock/status_codes.py:78 +#: stock/status_codes.py:79 msgid "Converted to variant" msgstr "转换为变体" -#: stock/status_codes.py:81 +#: stock/status_codes.py:82 msgid "Build order output created" msgstr "已创建生产订单产出" -#: stock/status_codes.py:82 +#: stock/status_codes.py:83 msgid "Build order output completed" msgstr "生产订单已出产" -#: stock/status_codes.py:83 +#: stock/status_codes.py:84 msgid "Build order output rejected" msgstr "生产订单产出被拒绝" -#: stock/status_codes.py:84 +#: stock/status_codes.py:85 msgid "Consumed by build order" msgstr "被生产订单消耗" -#: stock/status_codes.py:87 +#: stock/status_codes.py:88 msgid "Shipped against Sales Order" msgstr "根据销售订单发货" -#: stock/status_codes.py:90 +#: stock/status_codes.py:91 msgid "Received against Purchase Order" msgstr "根据采购订单接收" -#: stock/status_codes.py:93 +#: stock/status_codes.py:94 msgid "Returned against Return Order" msgstr "根据退货订单退货" -#: stock/status_codes.py:96 +#: stock/status_codes.py:97 msgid "Sent to customer" msgstr "发往客户" -#: stock/status_codes.py:97 +#: stock/status_codes.py:98 msgid "Returned from customer" msgstr "客户退回" diff --git a/src/backend/InvenTree/locale/zh_Hant/LC_MESSAGES/django.po b/src/backend/InvenTree/locale/zh_Hant/LC_MESSAGES/django.po index 1e73535995..8d082882ef 100644 --- a/src/backend/InvenTree/locale/zh_Hant/LC_MESSAGES/django.po +++ b/src/backend/InvenTree/locale/zh_Hant/LC_MESSAGES/django.po @@ -2,8 +2,8 @@ msgid "" msgstr "" "Project-Id-Version: inventree\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-11-19 04:55+0000\n" -"PO-Revision-Date: 2025-11-19 04:59\n" +"POT-Creation-Date: 2025-12-07 07:33+0000\n" +"PO-Revision-Date: 2025-12-07 07:36\n" "Last-Translator: \n" "Language-Team: Chinese Traditional\n" "Language: zh_TW\n" @@ -57,7 +57,7 @@ msgstr "未提供資料" msgid "This field must be unique." msgstr "" -#: InvenTree/api.py:775 +#: InvenTree/api.py:803 msgid "User does not have permission to view this model" msgstr "用户沒有權限查閲當前模型。" @@ -81,22 +81,22 @@ msgstr "提供的主電子郵件地址無效。" msgid "The provided email domain is not approved." msgstr "提供的郵箱域名未被批准。" -#: InvenTree/conversion.py:166 +#: InvenTree/conversion.py:240 #, python-brace-format msgid "Invalid unit provided ({unit})" msgstr "提供了無效的單位 ({unit})" -#: InvenTree/conversion.py:183 +#: InvenTree/conversion.py:257 msgid "No value provided" msgstr "沒有提供數值" -#: InvenTree/conversion.py:210 +#: InvenTree/conversion.py:284 #, python-brace-format msgid "Could not convert {original} to {unit}" msgstr "不能將 {original} 轉換到 {unit}" -#: InvenTree/conversion.py:212 InvenTree/conversion.py:226 -#: InvenTree/helpers.py:597 order/models.py:720 order/models.py:1015 +#: InvenTree/conversion.py:286 InvenTree/conversion.py:300 +#: InvenTree/helpers.py:597 order/models.py:721 order/models.py:1016 msgid "Invalid quantity provided" msgstr "提供的數量無效" @@ -112,11 +112,11 @@ msgstr "輸入日期" msgid "Invalid decimal value" msgstr "無效的十進位數值" -#: InvenTree/fields.py:218 InvenTree/models.py:1067 build/serializers.py:509 -#: build/serializers.py:580 build/serializers.py:1788 company/models.py:857 -#: order/models.py:1780 +#: InvenTree/fields.py:218 InvenTree/models.py:1228 build/serializers.py:517 +#: build/serializers.py:588 build/serializers.py:1796 company/models.py:811 +#: order/models.py:1781 #: report/templates/report/inventree_build_order_report.html:172 -#: stock/models.py:2848 stock/models.py:2972 stock/serializers.py:717 +#: stock/models.py:2865 stock/models.py:2989 stock/serializers.py:717 #: stock/serializers.py:893 stock/serializers.py:1035 stock/serializers.py:1336 #: stock/serializers.py:1425 stock/serializers.py:1624 msgid "Notes" @@ -171,35 +171,35 @@ msgstr "從這個值中刪除 HTML 標籤" msgid "Data contains prohibited markdown content" msgstr "資料包含被禁止的 Markdown 內容" -#: InvenTree/helpers_model.py:133 +#: InvenTree/helpers_model.py:134 msgid "Connection error" msgstr "連接錯誤" -#: InvenTree/helpers_model.py:138 InvenTree/helpers_model.py:145 +#: InvenTree/helpers_model.py:139 InvenTree/helpers_model.py:146 msgid "Server responded with invalid status code" msgstr "服務器響應狀態碼無效" -#: InvenTree/helpers_model.py:141 +#: InvenTree/helpers_model.py:142 msgid "Exception occurred" msgstr "發生異常" -#: InvenTree/helpers_model.py:151 +#: InvenTree/helpers_model.py:152 msgid "Server responded with invalid Content-Length value" msgstr "服務器響應的內容長度值無效" -#: InvenTree/helpers_model.py:154 +#: InvenTree/helpers_model.py:155 msgid "Image size is too large" msgstr "圖片尺寸過大" -#: InvenTree/helpers_model.py:166 +#: InvenTree/helpers_model.py:167 msgid "Image download exceeded maximum size" msgstr "圖片下載超出最大尺寸" -#: InvenTree/helpers_model.py:171 +#: InvenTree/helpers_model.py:172 msgid "Remote server returned empty response" msgstr "遠程服務器返回了空響應" -#: InvenTree/helpers_model.py:179 +#: InvenTree/helpers_model.py:180 msgid "Supplied URL is not a valid image file" msgstr "提供的 URL 不是一個有效的圖片文件" @@ -207,7 +207,7 @@ msgstr "提供的 URL 不是一個有效的圖片文件" msgid "Log in to the app" msgstr "登入此應用程式" -#: InvenTree/magic_login.py:41 company/models.py:172 users/serializers.py:198 +#: InvenTree/magic_login.py:41 company/models.py:173 users/serializers.py:198 msgid "Email" msgstr "電子郵件" @@ -215,160 +215,176 @@ msgstr "電子郵件" msgid "You must enable two-factor authentication before doing anything else." msgstr "在進行任何其他操作前,必須先啟用雙因素驗證。" -#: InvenTree/models.py:111 +#: InvenTree/models.py:114 msgid "Error running plugin validation" msgstr "驗證外掛程式時發生錯誤" -#: InvenTree/models.py:192 +#: InvenTree/models.py:195 msgid "Metadata must be a python dict object" msgstr "Metadata必須是一個Python Dictionary物件" -#: InvenTree/models.py:198 +#: InvenTree/models.py:201 msgid "Plugin Metadata" msgstr "外掛程式Metadata" -#: InvenTree/models.py:199 +#: InvenTree/models.py:202 msgid "JSON metadata field, for use by external plugins" msgstr "外掛程式使用的JSON Metadata欄位" -#: InvenTree/models.py:382 +#: InvenTree/models.py:385 msgid "Improperly formatted pattern" msgstr "格式錯誤" -#: InvenTree/models.py:389 +#: InvenTree/models.py:392 msgid "Unknown format key specified" msgstr "指定了不明的格式鍵值" -#: InvenTree/models.py:395 +#: InvenTree/models.py:398 msgid "Missing required format key" msgstr "缺少必須的格式鍵值" -#: InvenTree/models.py:406 +#: InvenTree/models.py:409 msgid "Reference field cannot be empty" msgstr "參考欄位不能空白" -#: InvenTree/models.py:414 +#: InvenTree/models.py:417 msgid "Reference must match required pattern" msgstr "參考欄位並須符合格式" -#: InvenTree/models.py:445 +#: InvenTree/models.py:448 msgid "Reference number is too large" msgstr "參考編號過大" -#: InvenTree/models.py:743 +#: InvenTree/models.py:896 msgid "Invalid choice" msgstr "無效的選項" -#: InvenTree/models.py:856 common/models.py:1410 common/models.py:1837 -#: common/models.py:2096 common/models.py:2221 common/serializers.py:535 -#: company/models.py:615 generic/states/serializers.py:20 machine/models.py:25 -#: part/models.py:1039 part/models.py:3850 plugin/models.py:54 +#: InvenTree/models.py:1017 common/models.py:1414 common/models.py:1841 +#: common/models.py:2102 common/models.py:2227 common/models.py:2494 +#: common/serializers.py:539 generic/states/serializers.py:20 +#: machine/models.py:25 part/models.py:1127 plugin/models.py:54 #: report/models.py:216 stock/models.py:84 msgid "Name" msgstr "名稱" -#: InvenTree/models.py:862 build/models.py:252 common/models.py:171 -#: common/models.py:2228 common/models.py:2341 company/models.py:543 -#: company/models.py:848 order/models.py:442 order/models.py:1825 -#: part/models.py:1062 part/models.py:3865 report/models.py:222 +#: InvenTree/models.py:1023 build/models.py:253 common/models.py:175 +#: common/models.py:2234 common/models.py:2347 common/models.py:2509 +#: company/models.py:545 company/models.py:802 order/models.py:443 +#: order/models.py:1826 part/models.py:1150 report/models.py:222 #: report/models.py:815 report/models.py:841 #: report/templates/report/inventree_build_order_report.html:117 #: stock/models.py:90 msgid "Description" msgstr "描述" -#: InvenTree/models.py:863 stock/models.py:91 +#: InvenTree/models.py:1024 stock/models.py:91 msgid "Description (optional)" msgstr "描述(選填)" -#: InvenTree/models.py:878 common/models.py:2394 +#: InvenTree/models.py:1039 common/models.py:2815 msgid "Path" msgstr "路徑" -#: InvenTree/models.py:983 +#: InvenTree/models.py:1144 msgid "Duplicate names cannot exist under the same parent" msgstr "同一個上層元件下不能有重複的名字" -#: InvenTree/models.py:1067 +#: InvenTree/models.py:1228 msgid "Markdown notes (optional)" msgstr "Markdown 註記(選填)" -#: InvenTree/models.py:1098 +#: InvenTree/models.py:1259 msgid "Barcode Data" msgstr "條碼資料" -#: InvenTree/models.py:1099 +#: InvenTree/models.py:1260 msgid "Third party barcode data" msgstr "第三方條碼資料" -#: InvenTree/models.py:1105 +#: InvenTree/models.py:1266 msgid "Barcode Hash" msgstr "條碼雜湊值" -#: InvenTree/models.py:1106 +#: InvenTree/models.py:1267 msgid "Unique hash of barcode data" msgstr "條碼資料的唯一雜湊值" -#: InvenTree/models.py:1187 +#: InvenTree/models.py:1348 msgid "Existing barcode found" msgstr "發現現有條碼" -#: InvenTree/models.py:1269 +#: InvenTree/models.py:1430 msgid "Task Failure" msgstr "任務失敗" -#: InvenTree/models.py:1270 +#: InvenTree/models.py:1431 #, python-brace-format msgid "Background worker task '{f}' failed after {n} attempts" msgstr "背景工作任務「{f}」在嘗試 {n} 次後失敗" -#: InvenTree/models.py:1297 +#: InvenTree/models.py:1458 msgid "Server Error" msgstr "伺服器錯誤" -#: InvenTree/models.py:1298 +#: InvenTree/models.py:1459 msgid "An error has been logged by the server." msgstr "伺服器紀錄了一個錯誤。" -#: InvenTree/models.py:1340 common/models.py:1748 +#: InvenTree/models.py:1501 common/models.py:1752 #: report/templates/report/inventree_bill_of_materials_report.html:126 #: report/templates/report/inventree_bill_of_materials_report.html:148 #: report/templates/report/inventree_return_order_report.html:35 msgid "Image" msgstr "圖像" -#: InvenTree/serializers.py:253 part/models.py:4571 +#: InvenTree/serializers.py:255 part/models.py:4196 msgid "Must be a valid number" msgstr "必須是有效的數字" -#: InvenTree/serializers.py:295 company/models.py:214 part/models.py:3285 +#: InvenTree/serializers.py:297 company/models.py:215 part/models.py:3349 msgid "Currency" msgstr "貨幣" -#: InvenTree/serializers.py:298 part/serializers.py:1385 +#: InvenTree/serializers.py:300 part/serializers.py:1250 msgid "Select currency from available options" msgstr "從可用選項中選擇貨幣" -#: InvenTree/serializers.py:653 +#: InvenTree/serializers.py:654 +msgid "This field may not be null." +msgstr "" + +#: InvenTree/serializers.py:660 msgid "Invalid value" msgstr "無效值" -#: InvenTree/serializers.py:690 +#: InvenTree/serializers.py:697 msgid "Remote Image" msgstr "遠程圖片" -#: InvenTree/serializers.py:691 +#: InvenTree/serializers.py:698 msgid "URL of remote image file" msgstr "遠程圖片文件的 URL" -#: InvenTree/serializers.py:709 +#: InvenTree/serializers.py:716 msgid "Downloading images from remote URL is not enabled" msgstr "未啓用從遠程 URL下載圖片" -#: InvenTree/serializers.py:716 +#: InvenTree/serializers.py:723 msgid "Failed to download image from remote URL" msgstr "從遠程URL下載圖像失敗" +#: InvenTree/serializers.py:806 +msgid "Invalid content type format" +msgstr "" + +#: InvenTree/serializers.py:809 +msgid "Content type not found" +msgstr "" + +#: InvenTree/serializers.py:815 +msgid "Content type does not match required mixin class" +msgstr "" + #: InvenTree/setting/locales.py:20 msgid "Arabic" msgstr "阿拉伯語" @@ -537,30 +553,30 @@ msgstr "無效的物理單位" msgid "Not a valid currency code" msgstr "無效的貨幣代碼" -#: build/api.py:54 order/api.py:111 order/api.py:270 order/api.py:1373 -#: order/serializers.py:132 +#: build/api.py:54 order/api.py:116 order/api.py:275 order/api.py:1378 +#: order/serializers.py:133 msgid "Order Status" msgstr "訂單狀態" -#: build/api.py:80 build/models.py:264 +#: build/api.py:80 build/models.py:265 msgid "Parent Build" msgstr "上層生產工單" -#: build/api.py:84 build/api.py:831 order/api.py:547 order/api.py:770 -#: order/api.py:1174 order/api.py:1449 stock/api.py:573 +#: build/api.py:84 build/api.py:837 order/api.py:553 order/api.py:776 +#: order/api.py:1179 order/api.py:1454 stock/api.py:573 msgid "Include Variants" msgstr "包含變體" -#: build/api.py:100 build/api.py:466 build/api.py:845 build/models.py:270 -#: build/serializers.py:1225 build/serializers.py:1356 -#: build/serializers.py:1427 company/models.py:1067 company/serializers.py:445 -#: order/api.py:298 order/api.py:302 order/api.py:929 order/api.py:1187 -#: order/api.py:1190 order/models.py:1941 order/models.py:2108 -#: order/models.py:2109 part/api.py:1233 part/api.py:1236 part/api.py:1302 -#: part/api.py:1589 part/models.py:472 part/models.py:3296 part/models.py:3439 -#: part/models.py:3497 part/models.py:3518 part/models.py:3540 -#: part/models.py:3679 part/models.py:4046 part/models.py:4368 -#: part/models.py:4787 part/serializers.py:1928 +#: build/api.py:100 build/api.py:472 build/api.py:851 build/models.py:271 +#: build/serializers.py:1233 build/serializers.py:1364 +#: build/serializers.py:1435 company/models.py:1021 company/serializers.py:490 +#: order/api.py:303 order/api.py:307 order/api.py:934 order/api.py:1192 +#: order/api.py:1195 order/models.py:1942 order/models.py:2109 +#: order/models.py:2110 part/api.py:1160 part/api.py:1163 part/api.py:1314 +#: part/models.py:550 part/models.py:3360 part/models.py:3503 +#: part/models.py:3561 part/models.py:3582 part/models.py:3604 +#: part/models.py:3743 part/models.py:3993 part/models.py:4412 +#: part/serializers.py:1801 #: report/templates/report/inventree_bill_of_materials_report.html:110 #: report/templates/report/inventree_bill_of_materials_report.html:137 #: report/templates/report/inventree_build_order_report.html:109 @@ -580,9 +596,9 @@ msgstr "包含變體" msgid "Part" msgstr "零件" -#: build/api.py:120 build/api.py:123 build/serializers.py:1438 part/api.py:980 -#: part/api.py:1316 part/api.py:1600 part/models.py:1080 part/models.py:3568 -#: part/models.py:4162 part/serializers.py:1752 stock/api.py:869 +#: build/api.py:120 build/api.py:123 build/serializers.py:1446 part/api.py:975 +#: part/api.py:1325 part/models.py:435 part/models.py:1168 part/models.py:3632 +#: part/serializers.py:1617 stock/api.py:869 msgid "Category" msgstr "類別" @@ -590,7 +606,7 @@ msgstr "類別" msgid "Ancestor Build" msgstr "可測試部分" -#: build/api.py:152 order/api.py:129 +#: build/api.py:152 order/api.py:134 msgid "Assigned to me" msgstr "分配給我" @@ -638,134 +654,134 @@ msgstr "完成於之前" msgid "Completed after" msgstr "完成於之後" -#: build/api.py:249 order/api.py:226 +#: build/api.py:249 order/api.py:231 msgid "Min Date" msgstr "最小日期" -#: build/api.py:272 order/api.py:245 +#: build/api.py:272 order/api.py:250 msgid "Max Date" msgstr "最大日期" -#: build/api.py:297 build/api.py:300 part/api.py:217 stock/api.py:961 +#: build/api.py:297 build/api.py:300 part/api.py:212 stock/api.py:961 msgid "Exclude Tree" msgstr "排除樹" -#: build/api.py:405 +#: build/api.py:411 msgid "Build must be cancelled before it can be deleted" msgstr "工單必須被取消才能被刪除" -#: build/api.py:449 build/serializers.py:1374 part/models.py:4402 +#: build/api.py:455 build/serializers.py:1382 part/models.py:4027 msgid "Consumable" msgstr "耗材" -#: build/api.py:452 build/serializers.py:1377 part/models.py:4396 +#: build/api.py:458 build/serializers.py:1385 part/models.py:4021 msgid "Optional" msgstr "非必須項目" -#: build/api.py:455 build/serializers.py:1415 common/setting/system.py:456 -#: part/models.py:1202 part/serializers.py:1714 part/serializers.py:1725 +#: build/api.py:461 build/serializers.py:1423 common/setting/system.py:456 +#: part/models.py:1290 part/serializers.py:1579 part/serializers.py:1590 #: stock/api.py:639 msgid "Assembly" msgstr "裝配" -#: build/api.py:458 +#: build/api.py:464 msgid "Tracked" msgstr "追蹤中" -#: build/api.py:461 build/serializers.py:1380 part/models.py:1220 +#: build/api.py:467 build/serializers.py:1388 part/models.py:1308 msgid "Testable" msgstr "可測試" -#: build/api.py:471 order/api.py:993 order/api.py:1363 +#: build/api.py:477 order/api.py:998 order/api.py:1368 msgid "Order Outstanding" msgstr "訂單未完成" -#: build/api.py:481 build/serializers.py:1464 order/api.py:952 +#: build/api.py:487 build/serializers.py:1472 order/api.py:957 msgid "Allocated" msgstr "已分配" -#: build/api.py:490 build/models.py:1672 build/serializers.py:1393 +#: build/api.py:496 build/models.py:1673 build/serializers.py:1401 msgid "Consumed" msgstr "已消耗" -#: build/api.py:499 company/models.py:912 company/serializers.py:440 +#: build/api.py:505 company/models.py:866 company/serializers.py:467 #: templates/email/build_order_required_stock.html:19 #: templates/email/low_stock_notification.html:17 #: templates/email/part_event_notification.html:18 msgid "Available" msgstr "可用數量" -#: build/api.py:523 build/serializers.py:1466 company/serializers.py:437 -#: order/serializers.py:1281 part/serializers.py:959 part/serializers.py:1306 -#: part/serializers.py:1761 +#: build/api.py:529 build/serializers.py:1474 company/serializers.py:464 +#: order/serializers.py:1295 part/serializers.py:844 part/serializers.py:1171 +#: part/serializers.py:1626 msgid "On Order" msgstr "已訂購" -#: build/api.py:868 build/models.py:117 order/models.py:1974 +#: build/api.py:874 build/models.py:118 order/models.py:1975 #: report/templates/report/inventree_build_order_report.html:105 #: stock/serializers.py:93 templates/email/build_order_completed.html:16 #: templates/email/overdue_build_order.html:15 msgid "Build Order" msgstr "生產工單" -#: build/api.py:882 build/api.py:886 build/serializers.py:372 -#: build/serializers.py:497 build/serializers.py:567 build/serializers.py:1251 -#: build/serializers.py:1256 order/api.py:1234 order/api.py:1239 -#: order/serializers.py:833 order/serializers.py:973 order/serializers.py:2042 +#: build/api.py:888 build/api.py:892 build/serializers.py:380 +#: build/serializers.py:505 build/serializers.py:575 build/serializers.py:1259 +#: build/serializers.py:1264 order/api.py:1239 order/api.py:1244 +#: order/serializers.py:844 order/serializers.py:984 order/serializers.py:2059 #: stock/api.py:987 stock/serializers.py:111 stock/serializers.py:601 #: stock/serializers.py:710 stock/serializers.py:888 stock/serializers.py:1418 -#: stock/serializers.py:1731 stock/serializers.py:1780 +#: stock/serializers.py:1739 stock/serializers.py:1788 #: templates/email/stale_stock_notification.html:18 users/models.py:549 msgid "Location" msgstr "地點" -#: build/api.py:894 +#: build/api.py:900 msgid "Output" msgstr "" -#: build/api.py:896 +#: build/api.py:902 msgid "Filter by output stock item ID. Use 'null' to find uninstalled build items." msgstr "" -#: build/models.py:118 users/ruleset.py:31 +#: build/models.py:119 users/ruleset.py:31 msgid "Build Orders" msgstr "生產工單" -#: build/models.py:168 +#: build/models.py:169 msgid "Assembly BOM has not been validated" msgstr "裝配物料清單尚未驗證" -#: build/models.py:175 +#: build/models.py:176 msgid "Build order cannot be created for an inactive part" msgstr "無法為未激活的零件創建生產訂單" -#: build/models.py:182 +#: build/models.py:183 msgid "Build order cannot be created for an unlocked part" msgstr "無法為已解鎖的零件創建生產訂單" -#: build/models.py:200 +#: build/models.py:201 msgid "Build orders can only be externally fulfilled for purchaseable parts" msgstr "只有可採購的零件,生產工單才可進行外部履行" -#: build/models.py:207 order/models.py:369 +#: build/models.py:208 order/models.py:370 msgid "Responsible user or group must be specified" msgstr "必須指定負責的用户或組" -#: build/models.py:212 +#: build/models.py:213 msgid "Build order part cannot be changed" msgstr "無法更改生產工單" -#: build/models.py:217 order/models.py:382 +#: build/models.py:218 order/models.py:383 msgid "Target date must be after start date" msgstr "目標日期必須晚於開始日期" -#: build/models.py:245 +#: build/models.py:246 msgid "Build Order Reference" msgstr "生產工單代號" -#: build/models.py:246 build/serializers.py:1371 order/models.py:614 -#: order/models.py:1311 order/models.py:1773 order/models.py:2712 -#: part/models.py:4442 +#: build/models.py:247 build/serializers.py:1379 order/models.py:615 +#: order/models.py:1312 order/models.py:1774 order/models.py:2713 +#: part/models.py:4067 #: report/templates/report/inventree_bill_of_materials_report.html:139 #: report/templates/report/inventree_purchase_order_report.html:35 #: report/templates/report/inventree_return_order_report.html:26 @@ -773,230 +789,230 @@ msgstr "生產工單代號" msgid "Reference" msgstr "參考代號" -#: build/models.py:255 +#: build/models.py:256 msgid "Brief description of the build (optional)" msgstr "關於生產工單的簡單説明(選填)" -#: build/models.py:265 +#: build/models.py:266 msgid "BuildOrder to which this build is allocated" msgstr "這張生產工單對應的上層生產工單" -#: build/models.py:274 +#: build/models.py:275 msgid "Select part to build" msgstr "選擇要生產的零件" -#: build/models.py:279 +#: build/models.py:280 msgid "Sales Order Reference" msgstr "銷售訂單代號" -#: build/models.py:284 +#: build/models.py:285 msgid "SalesOrder to which this build is allocated" msgstr "這張生產工單對應的銷售訂單" -#: build/models.py:289 build/serializers.py:1097 +#: build/models.py:290 build/serializers.py:1105 msgid "Source Location" msgstr "來源倉儲地點" -#: build/models.py:295 +#: build/models.py:296 msgid "Select location to take stock from for this build (leave blank to take from any stock location)" msgstr "選擇領取料件的倉儲地點(留白表示可以從任何地點領取)" -#: build/models.py:301 +#: build/models.py:302 msgid "External Build" msgstr "外部生產" -#: build/models.py:302 +#: build/models.py:303 msgid "This build order is fulfilled externally" msgstr "此生產工單由外部履行" -#: build/models.py:307 +#: build/models.py:308 msgid "Destination Location" msgstr "目標倉儲地點" -#: build/models.py:312 +#: build/models.py:313 msgid "Select location where the completed items will be stored" msgstr "選擇已完成項目庫存地點" -#: build/models.py:316 +#: build/models.py:317 msgid "Build Quantity" msgstr "生產數量" -#: build/models.py:319 +#: build/models.py:320 msgid "Number of stock items to build" msgstr "要生產的項目數量" -#: build/models.py:323 +#: build/models.py:324 msgid "Completed items" msgstr "已完成項目" -#: build/models.py:325 +#: build/models.py:326 msgid "Number of stock items which have been completed" msgstr "已經完成的庫存品數量" -#: build/models.py:329 +#: build/models.py:330 msgid "Build Status" msgstr "生產狀態" -#: build/models.py:334 +#: build/models.py:335 msgid "Build status code" msgstr "生產狀態代碼" -#: build/models.py:343 build/serializers.py:359 order/serializers.py:849 +#: build/models.py:344 build/serializers.py:367 order/serializers.py:860 #: stock/models.py:1100 stock/serializers.py:85 stock/serializers.py:1591 msgid "Batch Code" msgstr "批號" -#: build/models.py:347 build/serializers.py:360 +#: build/models.py:348 build/serializers.py:368 msgid "Batch code for this build output" msgstr "此產出的批號" -#: build/models.py:351 order/models.py:479 order/serializers.py:186 -#: part/models.py:1283 +#: build/models.py:352 order/models.py:480 order/serializers.py:193 +#: part/models.py:1371 msgid "Creation Date" msgstr "建立日期" -#: build/models.py:357 +#: build/models.py:358 msgid "Build start date" msgstr "生產開始日期" -#: build/models.py:358 +#: build/models.py:359 msgid "Scheduled start date for this build order" msgstr "預計此生產工單的開始日期" -#: build/models.py:364 +#: build/models.py:365 msgid "Target completion date" msgstr "目標完成日期" -#: build/models.py:366 +#: build/models.py:367 msgid "Target date for build completion. Build will be overdue after this date." msgstr "生產的預計完成日期。若超過此日期則工單會逾期。" -#: build/models.py:371 order/models.py:667 order/models.py:2751 +#: build/models.py:372 order/models.py:668 order/models.py:2752 msgid "Completion Date" msgstr "完成日期" -#: build/models.py:379 +#: build/models.py:380 msgid "completed by" msgstr "完成者" -#: build/models.py:388 +#: build/models.py:389 msgid "Issued by" msgstr "發布者" -#: build/models.py:389 +#: build/models.py:390 msgid "User who issued this build order" msgstr "發布此生產工單的使用者" -#: build/models.py:398 common/models.py:180 order/api.py:179 -#: order/models.py:504 part/models.py:1300 +#: build/models.py:399 common/models.py:184 order/api.py:184 +#: order/models.py:505 part/models.py:1388 #: report/templates/report/inventree_build_order_report.html:158 msgid "Responsible" msgstr "負責人" -#: build/models.py:399 +#: build/models.py:400 msgid "User or group responsible for this build order" msgstr "負責此生產工單的使用者或羣組" -#: build/models.py:404 stock/models.py:1093 +#: build/models.py:405 stock/models.py:1093 msgid "External Link" msgstr "外部連結" -#: build/models.py:406 common/models.py:1984 part/models.py:1114 +#: build/models.py:407 common/models.py:1990 part/models.py:1202 #: stock/models.py:1095 msgid "Link to external URL" msgstr "外部URL連結" -#: build/models.py:411 +#: build/models.py:412 msgid "Build Priority" msgstr "製造優先度" -#: build/models.py:414 +#: build/models.py:415 msgid "Priority of this build order" msgstr "此生產工單的優先程度" -#: build/models.py:422 common/models.py:150 common/models.py:164 -#: order/api.py:165 order/models.py:451 order/models.py:1805 +#: build/models.py:423 common/models.py:154 common/models.py:168 +#: order/api.py:170 order/models.py:452 order/models.py:1806 msgid "Project Code" msgstr "專案代碼" -#: build/models.py:423 +#: build/models.py:424 msgid "Project code for this build order" msgstr "此生產工單隸屬的專案代碼" -#: build/models.py:676 +#: build/models.py:677 msgid "Cannot complete build order with open child builds" msgstr "無法完成仍有未結束子工單的生產工單" -#: build/models.py:681 +#: build/models.py:682 msgid "Cannot complete build order with incomplete outputs" msgstr "無法完成有未完成產出的生產工單" -#: build/models.py:700 build/models.py:830 +#: build/models.py:701 build/models.py:831 msgid "Failed to offload task to complete build allocations" msgstr "未能卸載任務以完成生產分配" -#: build/models.py:723 +#: build/models.py:724 #, python-brace-format msgid "Build order {build} has been completed" msgstr "生產工單 {build} 已經完成" -#: build/models.py:729 +#: build/models.py:730 msgid "A build order has been completed" msgstr "一張生產工單已經完成" -#: build/models.py:911 build/serializers.py:407 +#: build/models.py:912 build/serializers.py:415 msgid "Serial numbers must be provided for trackable parts" msgstr "對於可跟蹤的零件,必須提供序列號" -#: build/models.py:1042 build/models.py:1129 +#: build/models.py:1043 build/models.py:1130 msgid "No build output specified" msgstr "未指定產出" -#: build/models.py:1045 +#: build/models.py:1046 msgid "Build output is already completed" msgstr "產出已完成" -#: build/models.py:1048 +#: build/models.py:1049 msgid "Build output does not match Build Order" msgstr "產出與生產訂單不匹配" -#: build/models.py:1136 build/models.py:1234 build/serializers.py:285 -#: build/serializers.py:335 build/serializers.py:965 build/serializers.py:1739 -#: order/models.py:717 order/serializers.py:658 order/serializers.py:844 -#: part/serializers.py:1708 stock/models.py:940 stock/models.py:1430 +#: build/models.py:1137 build/models.py:1235 build/serializers.py:293 +#: build/serializers.py:343 build/serializers.py:973 build/serializers.py:1747 +#: order/models.py:718 order/serializers.py:669 order/serializers.py:855 +#: part/serializers.py:1573 stock/models.py:940 stock/models.py:1430 #: stock/models.py:1878 stock/serializers.py:688 stock/serializers.py:1580 msgid "Quantity must be greater than zero" msgstr "數量必須大於零" -#: build/models.py:1140 build/models.py:1239 build/serializers.py:290 +#: build/models.py:1141 build/models.py:1240 build/serializers.py:298 msgid "Quantity cannot be greater than the output quantity" msgstr "數量不能大於輸出數量" -#: build/models.py:1214 build/serializers.py:606 +#: build/models.py:1215 build/serializers.py:614 msgid "Build output has not passed all required tests" msgstr "此產出尚未通過所有必要測試" -#: build/models.py:1217 build/serializers.py:601 +#: build/models.py:1218 build/serializers.py:609 #, python-brace-format msgid "Build output {serial} has not passed all required tests" msgstr "產出 {serial} 未通過所有必要測試" -#: build/models.py:1229 +#: build/models.py:1230 msgid "Cannot partially complete a build output with allocated items" msgstr "" -#: build/models.py:1627 +#: build/models.py:1628 msgid "Build Order Line Item" msgstr "生產訂單行項目" -#: build/models.py:1651 +#: build/models.py:1652 msgid "Build object" msgstr "生產對象" -#: build/models.py:1663 build/models.py:1974 build/serializers.py:271 -#: build/serializers.py:320 build/serializers.py:1392 common/models.py:1340 -#: order/models.py:1756 order/models.py:2597 order/serializers.py:1696 -#: order/serializers.py:2124 part/models.py:3453 part/models.py:4390 +#: build/models.py:1664 build/models.py:1975 build/serializers.py:279 +#: build/serializers.py:328 build/serializers.py:1400 common/models.py:1344 +#: order/models.py:1757 order/models.py:2598 order/serializers.py:1710 +#: order/serializers.py:2141 part/models.py:3517 part/models.py:4015 #: report/templates/report/inventree_bill_of_materials_report.html:138 #: report/templates/report/inventree_build_order_report.html:113 #: report/templates/report/inventree_purchase_order_report.html:36 @@ -1014,427 +1030,427 @@ msgstr "生產對象" msgid "Quantity" msgstr "數量" -#: build/models.py:1664 +#: build/models.py:1665 msgid "Required quantity for build order" msgstr "生產工單所需數量" -#: build/models.py:1673 +#: build/models.py:1674 msgid "Quantity of consumed stock" msgstr "已消耗庫存數量" -#: build/models.py:1772 +#: build/models.py:1773 msgid "Build item must specify a build output, as master part is marked as trackable" msgstr "生產項必須指定產出,因為主零件已經被標記為可追蹤的" -#: build/models.py:1783 +#: build/models.py:1784 #, python-brace-format msgid "Allocated quantity ({q}) must not exceed available stock quantity ({a})" msgstr "分配的數量({q})不能超過可用的庫存數量({a})" -#: build/models.py:1804 order/models.py:2546 +#: build/models.py:1805 order/models.py:2547 msgid "Stock item is over-allocated" msgstr "庫存品項超額分配" -#: build/models.py:1809 order/models.py:2549 +#: build/models.py:1810 order/models.py:2550 msgid "Allocation quantity must be greater than zero" msgstr "分配的數量必須大於零" -#: build/models.py:1815 +#: build/models.py:1816 msgid "Quantity must be 1 for serialized stock" msgstr "有序號的品項數量必須為1" -#: build/models.py:1875 +#: build/models.py:1876 msgid "Selected stock item does not match BOM line" msgstr "選擇的庫存品項和BOM的項目不符" -#: build/models.py:1913 +#: build/models.py:1914 msgid "Allocated quantity exceeds available stock quantity" msgstr "分配數量超過可用庫存" -#: build/models.py:1964 build/serializers.py:948 build/serializers.py:1240 -#: order/serializers.py:1533 order/serializers.py:1554 +#: build/models.py:1965 build/serializers.py:956 build/serializers.py:1248 +#: order/serializers.py:1547 order/serializers.py:1568 #: report/templates/report/inventree_sales_order_shipment_report.html:29 #: stock/api.py:1404 stock/models.py:456 stock/serializers.py:102 #: stock/serializers.py:800 stock/serializers.py:1274 stock/serializers.py:1386 msgid "Stock Item" msgstr "庫存品項" -#: build/models.py:1965 +#: build/models.py:1966 msgid "Source stock item" msgstr "來源庫存項目" -#: build/models.py:1975 +#: build/models.py:1976 msgid "Stock quantity to allocate to build" msgstr "要分配的庫存數量" -#: build/models.py:1984 +#: build/models.py:1985 msgid "Install into" msgstr "安裝到" -#: build/models.py:1985 +#: build/models.py:1986 msgid "Destination stock item" msgstr "目的庫存品項" -#: build/serializers.py:118 +#: build/serializers.py:120 msgid "Build Level" msgstr "構建等級" -#: build/serializers.py:128 +#: build/serializers.py:136 msgid "Part Name" msgstr "零件名稱" -#: build/serializers.py:153 +#: build/serializers.py:161 msgid "Project Code Label" msgstr "項目編碼標籤" -#: build/serializers.py:219 build/serializers.py:974 +#: build/serializers.py:227 build/serializers.py:982 msgid "Build Output" msgstr "產出" -#: build/serializers.py:231 +#: build/serializers.py:239 msgid "Build output does not match the parent build" msgstr "產出與之前的生產不匹配" -#: build/serializers.py:235 +#: build/serializers.py:243 msgid "Output part does not match BuildOrder part" msgstr "產出零件與生產訂單零件不匹配" -#: build/serializers.py:239 +#: build/serializers.py:247 msgid "This build output has already been completed" msgstr "此產出已經完成" -#: build/serializers.py:253 +#: build/serializers.py:261 msgid "This build output is not fully allocated" msgstr "此產出尚未完全分配" -#: build/serializers.py:272 build/serializers.py:321 +#: build/serializers.py:280 build/serializers.py:329 msgid "Enter quantity for build output" msgstr "輸入產出數量" -#: build/serializers.py:343 +#: build/serializers.py:351 msgid "Integer quantity required for trackable parts" msgstr "可追蹤的零件數量必須為整數" -#: build/serializers.py:349 +#: build/serializers.py:357 msgid "Integer quantity required, as the bill of materials contains trackable parts" msgstr "因為BOM包含可追蹤的零件,所以數量必須為整數" -#: build/serializers.py:366 order/serializers.py:865 order/serializers.py:1700 +#: build/serializers.py:374 order/serializers.py:876 order/serializers.py:1714 #: stock/serializers.py:699 msgid "Serial Numbers" msgstr "序號" -#: build/serializers.py:367 +#: build/serializers.py:375 msgid "Enter serial numbers for build outputs" msgstr "輸出產出的序列號" -#: build/serializers.py:373 +#: build/serializers.py:381 msgid "Stock location for build output" msgstr "生產輸出的庫存地點" -#: build/serializers.py:388 +#: build/serializers.py:396 msgid "Auto Allocate Serial Numbers" msgstr "自動分配序號" -#: build/serializers.py:390 +#: build/serializers.py:398 msgid "Automatically allocate required items with matching serial numbers" msgstr "自動為需要項目分配對應的序號" -#: build/serializers.py:423 order/serializers.py:951 stock/api.py:1183 +#: build/serializers.py:431 order/serializers.py:962 stock/api.py:1183 #: stock/models.py:1901 msgid "The following serial numbers already exist or are invalid" msgstr "序號已存在或無效" -#: build/serializers.py:465 build/serializers.py:521 build/serializers.py:613 +#: build/serializers.py:473 build/serializers.py:529 build/serializers.py:621 msgid "A list of build outputs must be provided" msgstr "必須提供產出清單" -#: build/serializers.py:498 +#: build/serializers.py:506 msgid "Stock location for scrapped outputs" msgstr "廢品產出的庫存位置" -#: build/serializers.py:504 +#: build/serializers.py:512 msgid "Discard Allocations" msgstr "放棄分配" -#: build/serializers.py:505 +#: build/serializers.py:513 msgid "Discard any stock allocations for scrapped outputs" msgstr "取消對廢品產出的任何庫存分配" -#: build/serializers.py:510 +#: build/serializers.py:518 msgid "Reason for scrapping build output(s)" msgstr "廢品產出的原因" -#: build/serializers.py:568 +#: build/serializers.py:576 msgid "Location for completed build outputs" msgstr "已完成刪除的庫存地點" -#: build/serializers.py:576 +#: build/serializers.py:584 msgid "Accept Incomplete Allocation" msgstr "接受不完整的分配" -#: build/serializers.py:577 +#: build/serializers.py:585 msgid "Complete outputs if stock has not been fully allocated" msgstr "如果庫存尚未全部分配,則完成產出" -#: build/serializers.py:702 +#: build/serializers.py:710 msgid "Consume Allocated Stock" msgstr "消費已分配的庫存" -#: build/serializers.py:703 +#: build/serializers.py:711 msgid "Consume any stock which has already been allocated to this build" msgstr "消耗已分配給此生產的任何庫存" -#: build/serializers.py:709 +#: build/serializers.py:717 msgid "Remove Incomplete Outputs" msgstr "移除未完成的產出" -#: build/serializers.py:710 +#: build/serializers.py:718 msgid "Delete any build outputs which have not been completed" msgstr "刪除所有未完成的產出" -#: build/serializers.py:737 +#: build/serializers.py:745 msgid "Not permitted" msgstr "不允許" -#: build/serializers.py:738 +#: build/serializers.py:746 msgid "Accept as consumed by this build order" msgstr "接受作為此生產訂單的消費" -#: build/serializers.py:739 +#: build/serializers.py:747 msgid "Deallocate before completing this build order" msgstr "完成此生產訂單前取消分配" -#: build/serializers.py:766 +#: build/serializers.py:774 msgid "Overallocated Stock" msgstr "超出分配的庫存" -#: build/serializers.py:769 +#: build/serializers.py:777 msgid "How do you want to handle extra stock items assigned to the build order" msgstr "如何處理分配給生產訂單的額外庫存項" -#: build/serializers.py:780 +#: build/serializers.py:788 msgid "Some stock items have been overallocated" msgstr "有庫存項目已被過度分配" -#: build/serializers.py:785 +#: build/serializers.py:793 msgid "Accept Unallocated" msgstr "接受未分配" -#: build/serializers.py:787 +#: build/serializers.py:795 msgid "Accept that stock items have not been fully allocated to this build order" msgstr "接受庫存項未被完全分配至生產訂單" -#: build/serializers.py:798 +#: build/serializers.py:806 msgid "Required stock has not been fully allocated" msgstr "所需庫存尚未完全分配" -#: build/serializers.py:803 order/serializers.py:524 order/serializers.py:1601 +#: build/serializers.py:811 order/serializers.py:535 order/serializers.py:1615 msgid "Accept Incomplete" msgstr "接受不完整" -#: build/serializers.py:805 +#: build/serializers.py:813 msgid "Accept that the required number of build outputs have not been completed" msgstr "允許所需數量的產出未完成" -#: build/serializers.py:816 +#: build/serializers.py:824 msgid "Required build quantity has not been completed" msgstr "未完成所需生產數量" -#: build/serializers.py:828 +#: build/serializers.py:836 msgid "Build order has open child build orders" msgstr "生產訂單有打開的子生產訂單" -#: build/serializers.py:831 +#: build/serializers.py:839 msgid "Build order must be in production state" msgstr "生產訂單必須處於生產狀態" -#: build/serializers.py:834 +#: build/serializers.py:842 msgid "Build order has incomplete outputs" msgstr "生產訂單有未完成的產出" -#: build/serializers.py:873 +#: build/serializers.py:881 msgid "Build Line" msgstr "生產行" -#: build/serializers.py:881 +#: build/serializers.py:889 msgid "Build output" msgstr "產出" -#: build/serializers.py:889 +#: build/serializers.py:897 msgid "Build output must point to the same build" msgstr "生產產出必須指向相同的生產" -#: build/serializers.py:920 +#: build/serializers.py:928 msgid "Build Line Item" msgstr "生產行項目" -#: build/serializers.py:938 +#: build/serializers.py:946 msgid "bom_item.part must point to the same part as the build order" msgstr "bom_item.part 必須與生產訂單零件相同" -#: build/serializers.py:954 stock/serializers.py:1287 +#: build/serializers.py:962 stock/serializers.py:1287 msgid "Item must be in stock" msgstr "商品必須有庫存" -#: build/serializers.py:997 order/serializers.py:1587 +#: build/serializers.py:1005 order/serializers.py:1601 #, python-brace-format msgid "Available quantity ({q}) exceeded" msgstr "可用量 ({q}) 超出限制" -#: build/serializers.py:1003 +#: build/serializers.py:1011 msgid "Build output must be specified for allocation of tracked parts" msgstr "對於被追蹤的零件的分配,必須指定生產產出" -#: build/serializers.py:1011 +#: build/serializers.py:1019 msgid "Build output cannot be specified for allocation of untracked parts" msgstr "對於未被追蹤的零件,無法指定生產產出" -#: build/serializers.py:1035 order/serializers.py:1860 +#: build/serializers.py:1043 order/serializers.py:1874 msgid "Allocation items must be provided" msgstr "必須提供分配項目" -#: build/serializers.py:1099 +#: build/serializers.py:1107 msgid "Stock location where parts are to be sourced (leave blank to take from any location)" msgstr "零件來源的庫存地點(留空則可來源於任何庫存地點)" -#: build/serializers.py:1108 +#: build/serializers.py:1116 msgid "Exclude Location" msgstr "排除位置" -#: build/serializers.py:1109 +#: build/serializers.py:1117 msgid "Exclude stock items from this selected location" msgstr "從該選定的庫存地點排除庫存項" -#: build/serializers.py:1114 +#: build/serializers.py:1122 msgid "Interchangeable Stock" msgstr "可互換庫存" -#: build/serializers.py:1115 +#: build/serializers.py:1123 msgid "Stock items in multiple locations can be used interchangeably" msgstr "在多個位置的庫存項目可以互換使用" -#: build/serializers.py:1120 +#: build/serializers.py:1128 msgid "Substitute Stock" msgstr "替代品庫存" -#: build/serializers.py:1121 +#: build/serializers.py:1129 msgid "Allow allocation of substitute parts" msgstr "允許分配可替換的零件" -#: build/serializers.py:1126 +#: build/serializers.py:1134 msgid "Optional Items" msgstr "可選項目" -#: build/serializers.py:1127 +#: build/serializers.py:1135 msgid "Allocate optional BOM items to build order" msgstr "分配可選的物料清單給生產訂單" -#: build/serializers.py:1148 +#: build/serializers.py:1156 msgid "Failed to start auto-allocation task" msgstr "啓動自動分配任務失敗" -#: build/serializers.py:1200 +#: build/serializers.py:1208 msgid "BOM Reference" msgstr "物料清單參考" -#: build/serializers.py:1206 +#: build/serializers.py:1214 msgid "BOM Part ID" msgstr "物料清單零件識別號碼" -#: build/serializers.py:1213 +#: build/serializers.py:1221 msgid "BOM Part Name" msgstr "物料清單零件名稱" -#: build/serializers.py:1266 build/serializers.py:1449 +#: build/serializers.py:1274 build/serializers.py:1457 msgid "Build" msgstr "生產" -#: build/serializers.py:1276 company/models.py:685 order/api.py:311 -#: order/api.py:316 order/api.py:543 order/serializers.py:650 +#: build/serializers.py:1284 company/models.py:639 order/api.py:316 +#: order/api.py:321 order/api.py:549 order/serializers.py:661 #: stock/models.py:1036 stock/serializers.py:579 msgid "Supplier Part" msgstr "供應商零件" -#: build/serializers.py:1284 stock/serializers.py:620 +#: build/serializers.py:1292 stock/serializers.py:620 msgid "Allocated Quantity" msgstr "已分配數量" -#: build/serializers.py:1351 +#: build/serializers.py:1359 msgid "Build Reference" msgstr "構建參考" -#: build/serializers.py:1361 +#: build/serializers.py:1369 msgid "Part Category Name" msgstr "零件類別名稱" -#: build/serializers.py:1383 common/setting/system.py:480 part/models.py:1214 +#: build/serializers.py:1391 common/setting/system.py:480 part/models.py:1302 msgid "Trackable" msgstr "可追蹤" -#: build/serializers.py:1386 +#: build/serializers.py:1394 msgid "Inherited" msgstr "已繼承的" -#: build/serializers.py:1389 part/models.py:4475 +#: build/serializers.py:1397 part/models.py:4100 msgid "Allow Variants" msgstr "允許變體" -#: build/serializers.py:1395 build/serializers.py:1400 part/models.py:4208 -#: part/models.py:4779 stock/api.py:882 +#: build/serializers.py:1403 build/serializers.py:1408 part/models.py:3833 +#: part/models.py:4404 stock/api.py:882 msgid "BOM Item" msgstr "物料清單項" -#: build/serializers.py:1467 order/serializers.py:1282 part/serializers.py:1310 -#: part/serializers.py:1765 +#: build/serializers.py:1475 order/serializers.py:1296 part/serializers.py:1175 +#: part/serializers.py:1630 msgid "In Production" msgstr "生產中" -#: build/serializers.py:1469 part/serializers.py:950 part/serializers.py:1314 +#: build/serializers.py:1477 part/serializers.py:835 part/serializers.py:1179 msgid "Scheduled to Build" msgstr "排程生產中" -#: build/serializers.py:1472 part/serializers.py:987 +#: build/serializers.py:1480 part/serializers.py:872 msgid "External Stock" msgstr "外部庫存" -#: build/serializers.py:1473 part/serializers.py:1300 part/serializers.py:1808 +#: build/serializers.py:1481 part/serializers.py:1165 part/serializers.py:1673 msgid "Available Stock" msgstr "可用庫存" -#: build/serializers.py:1475 +#: build/serializers.py:1483 msgid "Available Substitute Stock" msgstr "可用的替代品庫存" -#: build/serializers.py:1478 +#: build/serializers.py:1486 msgid "Available Variant Stock" msgstr "可用的變體庫存" -#: build/serializers.py:1752 +#: build/serializers.py:1760 msgid "Consumed quantity exceeds allocated quantity" msgstr "消耗數量超過已分配數量" -#: build/serializers.py:1789 +#: build/serializers.py:1797 msgid "Optional notes for the stock consumption" msgstr "庫存耗用的可選備註" -#: build/serializers.py:1806 +#: build/serializers.py:1814 msgid "Build item must point to the correct build order" msgstr "生產項必須指向正確的生產工單" -#: build/serializers.py:1811 +#: build/serializers.py:1819 msgid "Duplicate build item allocation" msgstr "重複的生產項分配" -#: build/serializers.py:1829 +#: build/serializers.py:1837 msgid "Build line must point to the correct build order" msgstr "生產行必須指向正確的生產工單" -#: build/serializers.py:1834 +#: build/serializers.py:1842 msgid "Duplicate build line allocation" msgstr "重複的生產行分配" -#: build/serializers.py:1846 +#: build/serializers.py:1854 msgid "At least one item or line must be provided" msgstr "至少必須提供一個項目或一行" @@ -1482,702 +1498,826 @@ msgstr "逾期的生產訂單" msgid "Build order {bo} is now overdue" msgstr "生產訂單 {bo} 現已逾期" -#: common/api.py:694 +#: common/api.py:701 msgid "Is Link" msgstr "是否鏈接" -#: common/api.py:702 +#: common/api.py:709 msgid "Is File" msgstr "是否為文件" -#: common/api.py:745 +#: common/api.py:756 msgid "User does not have permission to delete these attachments" msgstr "用户沒有權限刪除此附件" -#: common/api.py:762 +#: common/api.py:769 msgid "User does not have permission to delete this attachment" msgstr "用户沒有權限刪除此附件" -#: common/currency.py:122 +#: common/currency.py:130 msgid "Invalid currency code" msgstr "無效的貨幣代碼" -#: common/currency.py:124 +#: common/currency.py:132 msgid "Duplicate currency code" msgstr "重複的貨幣代碼" -#: common/currency.py:129 +#: common/currency.py:137 msgid "No valid currency codes provided" msgstr "未提供有效的貨幣代碼" -#: common/currency.py:146 +#: common/currency.py:154 msgid "No plugin" msgstr "暫無插件" -#: common/models.py:101 common/models.py:126 common/models.py:2729 +#: common/models.py:105 common/models.py:130 common/models.py:3150 msgid "Updated" msgstr "已是最新" -#: common/models.py:102 common/models.py:127 +#: common/models.py:106 common/models.py:131 msgid "Timestamp of last update" msgstr "最後更新時間戳" -#: common/models.py:139 +#: common/models.py:143 msgid "Update By" msgstr "更新者" -#: common/models.py:140 +#: common/models.py:144 msgid "User who last updated this object" msgstr "最後更新此物件的使用者" -#: common/models.py:165 +#: common/models.py:169 msgid "Unique project code" msgstr "唯一項目編碼" -#: common/models.py:172 +#: common/models.py:176 msgid "Project description" msgstr "項目描述" -#: common/models.py:181 +#: common/models.py:185 msgid "User or group responsible for this project" msgstr "負責此項目的用户或羣組" -#: common/models.py:771 common/models.py:1272 common/models.py:1310 +#: common/models.py:775 common/models.py:1276 common/models.py:1314 msgid "Settings key" msgstr "設定鍵值" -#: common/models.py:775 +#: common/models.py:779 msgid "Settings value" msgstr "設定值" -#: common/models.py:830 +#: common/models.py:834 msgid "Chosen value is not a valid option" msgstr "所選值不是一個有效的選項" -#: common/models.py:846 +#: common/models.py:850 msgid "Value must be a boolean value" msgstr "該值必須是布爾值" -#: common/models.py:854 +#: common/models.py:858 msgid "Value must be an integer value" msgstr "該值必須為整數" -#: common/models.py:862 +#: common/models.py:866 msgid "Value must be a valid number" msgstr "值必須為有效數字" -#: common/models.py:887 +#: common/models.py:891 msgid "Value does not pass validation checks" msgstr "值未通過驗證檢查" -#: common/models.py:909 +#: common/models.py:913 msgid "Key string must be unique" msgstr "鍵字符串必須是唯一的" -#: common/models.py:1318 common/models.py:1319 common/models.py:1423 -#: common/models.py:1424 common/models.py:1669 common/models.py:1670 -#: common/models.py:2000 common/models.py:2001 common/models.py:2382 -#: importer/models.py:100 part/models.py:3547 part/models.py:3575 +#: common/models.py:1322 common/models.py:1323 common/models.py:1427 +#: common/models.py:1428 common/models.py:1673 common/models.py:1674 +#: common/models.py:2006 common/models.py:2007 common/models.py:2803 +#: importer/models.py:100 part/models.py:3611 part/models.py:3639 #: plugin/models.py:355 plugin/models.py:356 #: report/templates/report/inventree_test_report.html:105 users/models.py:124 #: users/models.py:501 msgid "User" msgstr "使用者" -#: common/models.py:1341 +#: common/models.py:1345 msgid "Price break quantity" msgstr "批發價數量" -#: common/models.py:1348 company/serializers.py:564 order/models.py:1842 -#: order/models.py:3043 +#: common/models.py:1352 company/serializers.py:349 order/models.py:1843 +#: order/models.py:3044 msgid "Price" msgstr "價格" -#: common/models.py:1349 +#: common/models.py:1353 msgid "Unit price at specified quantity" msgstr "指定數量的單位價格" -#: common/models.py:1400 common/models.py:1585 +#: common/models.py:1404 common/models.py:1589 msgid "Endpoint" msgstr "端點" -#: common/models.py:1401 +#: common/models.py:1405 msgid "Endpoint at which this webhook is received" msgstr "接收此網絡鈎子的端點" -#: common/models.py:1411 +#: common/models.py:1415 msgid "Name for this webhook" msgstr "此網絡鈎子的名稱" -#: common/models.py:1415 common/models.py:2241 common/models.py:2348 -#: company/models.py:191 company/models.py:822 machine/models.py:40 -#: part/models.py:1237 plugin/models.py:69 stock/api.py:642 users/models.py:195 +#: common/models.py:1419 common/models.py:2247 common/models.py:2354 +#: company/models.py:192 company/models.py:776 machine/models.py:40 +#: part/models.py:1325 plugin/models.py:69 stock/api.py:642 users/models.py:195 #: users/models.py:554 users/serializers.py:314 msgid "Active" msgstr "激活" -#: common/models.py:1415 +#: common/models.py:1419 msgid "Is this webhook active" msgstr "網絡鈎子是否已啓用" -#: common/models.py:1431 users/models.py:172 +#: common/models.py:1435 users/models.py:172 msgid "Token" msgstr "令牌" -#: common/models.py:1432 +#: common/models.py:1436 msgid "Token for access" msgstr "訪問令牌" -#: common/models.py:1440 +#: common/models.py:1444 msgid "Secret" msgstr "密鑰" -#: common/models.py:1441 +#: common/models.py:1445 msgid "Shared secret for HMAC" msgstr "HMAC共享密鑰" -#: common/models.py:1549 common/models.py:2619 +#: common/models.py:1553 common/models.py:3040 msgid "Message ID" msgstr "消息ID" -#: common/models.py:1550 common/models.py:2609 +#: common/models.py:1554 common/models.py:3030 msgid "Unique identifier for this message" msgstr "此郵件的唯一標識符" -#: common/models.py:1558 +#: common/models.py:1562 msgid "Host" msgstr "主機" -#: common/models.py:1559 +#: common/models.py:1563 msgid "Host from which this message was received" msgstr "接收此消息的主機" -#: common/models.py:1567 +#: common/models.py:1571 msgid "Header" msgstr "標題" -#: common/models.py:1568 +#: common/models.py:1572 msgid "Header of this message" msgstr "此消息的標題" -#: common/models.py:1575 +#: common/models.py:1579 msgid "Body" msgstr "正文" -#: common/models.py:1576 +#: common/models.py:1580 msgid "Body of this message" msgstr "此消息的正文" -#: common/models.py:1586 +#: common/models.py:1590 msgid "Endpoint on which this message was received" msgstr "接收此消息的終點" -#: common/models.py:1591 +#: common/models.py:1595 msgid "Worked on" msgstr "工作於" -#: common/models.py:1592 +#: common/models.py:1596 msgid "Was the work on this message finished?" msgstr "這條消息的工作完成了嗎?" -#: common/models.py:1718 +#: common/models.py:1722 msgid "Id" msgstr "標識" -#: common/models.py:1720 +#: common/models.py:1724 msgid "Title" msgstr "標題" -#: common/models.py:1722 common/models.py:1983 company/models.py:185 -#: company/models.py:467 company/models.py:534 company/models.py:839 -#: order/models.py:457 order/models.py:1786 order/models.py:2343 -#: part/models.py:1113 +#: common/models.py:1726 common/models.py:1989 company/models.py:186 +#: company/models.py:468 company/models.py:536 company/models.py:793 +#: order/models.py:458 order/models.py:1787 order/models.py:2344 +#: part/models.py:1201 #: report/templates/report/inventree_build_order_report.html:164 msgid "Link" msgstr "連結" -#: common/models.py:1724 +#: common/models.py:1728 msgid "Published" msgstr "已發佈" -#: common/models.py:1726 +#: common/models.py:1730 msgid "Author" msgstr "作者" -#: common/models.py:1728 +#: common/models.py:1732 msgid "Summary" msgstr "摘要" -#: common/models.py:1731 common/models.py:2586 +#: common/models.py:1735 common/models.py:3007 msgid "Read" msgstr "閲讀" -#: common/models.py:1731 +#: common/models.py:1735 msgid "Was this news item read?" msgstr "這條新聞被閲讀了嗎?" -#: common/models.py:1748 +#: common/models.py:1752 msgid "Image file" msgstr "圖像文件" -#: common/models.py:1760 +#: common/models.py:1764 msgid "Target model type for this image" msgstr "此圖像的目標模型類型" -#: common/models.py:1764 +#: common/models.py:1768 msgid "Target model ID for this image" msgstr "此圖像的目標型號ID" -#: common/models.py:1786 +#: common/models.py:1790 msgid "Custom Unit" msgstr "自定義單位" -#: common/models.py:1804 +#: common/models.py:1808 msgid "Unit symbol must be unique" msgstr "單位符號必須唯一" -#: common/models.py:1819 +#: common/models.py:1823 msgid "Unit name must be a valid identifier" msgstr "單位名稱必須是有效的標識符" -#: common/models.py:1838 +#: common/models.py:1842 msgid "Unit name" msgstr "單位名稱" -#: common/models.py:1845 +#: common/models.py:1849 msgid "Symbol" msgstr "符號" -#: common/models.py:1846 +#: common/models.py:1850 msgid "Optional unit symbol" msgstr "可選單位符號" -#: common/models.py:1852 +#: common/models.py:1856 msgid "Definition" msgstr "定義" -#: common/models.py:1853 +#: common/models.py:1857 msgid "Unit definition" msgstr "單位定義" -#: common/models.py:1911 common/models.py:1974 stock/models.py:2967 +#: common/models.py:1917 common/models.py:1980 stock/models.py:2984 #: stock/serializers.py:247 msgid "Attachment" msgstr "附件" -#: common/models.py:1928 +#: common/models.py:1934 msgid "Missing file" msgstr "缺少檔案" -#: common/models.py:1929 +#: common/models.py:1935 msgid "Missing external link" msgstr "缺少外部連結" -#: common/models.py:1966 +#: common/models.py:1972 common/models.py:2488 msgid "Model type" msgstr "模型類型" -#: common/models.py:1967 +#: common/models.py:1973 msgid "Target model type for image" msgstr "圖像的目標模型類型" -#: common/models.py:1975 +#: common/models.py:1981 msgid "Select file to attach" msgstr "選擇附件" -#: common/models.py:1991 +#: common/models.py:1997 msgid "Comment" msgstr "註解" -#: common/models.py:1992 +#: common/models.py:1998 msgid "Attachment comment" msgstr "附件評論" -#: common/models.py:2008 +#: common/models.py:2014 msgid "Upload date" msgstr "上傳日期" -#: common/models.py:2009 +#: common/models.py:2015 msgid "Date the file was uploaded" msgstr "上傳文件的日期" -#: common/models.py:2013 +#: common/models.py:2019 msgid "File size" msgstr "文件大小" -#: common/models.py:2013 +#: common/models.py:2019 msgid "File size in bytes" msgstr "文件大小,以字節為單位" -#: common/models.py:2051 common/serializers.py:684 +#: common/models.py:2057 common/serializers.py:688 msgid "Invalid model type specified for attachment" msgstr "為附件指定的模型類型無效" -#: common/models.py:2072 +#: common/models.py:2078 msgid "Custom State" msgstr "自定狀態" -#: common/models.py:2073 +#: common/models.py:2079 msgid "Custom States" msgstr "定製狀態" -#: common/models.py:2078 +#: common/models.py:2084 msgid "Reference Status Set" msgstr "參考狀態設定" -#: common/models.py:2079 +#: common/models.py:2085 msgid "Status set that is extended with this custom state" msgstr "使用此自定義狀態擴展狀態的狀態集" -#: common/models.py:2083 generic/states/serializers.py:18 +#: common/models.py:2089 generic/states/serializers.py:18 msgid "Logical Key" msgstr "邏輯密鑰" -#: common/models.py:2085 +#: common/models.py:2091 msgid "State logical key that is equal to this custom state in business logic" msgstr "等同於商業邏輯中自定義狀態的狀態邏輯鍵" -#: common/models.py:2090 common/models.py:2329 company/models.py:622 -#: machine/serializers.py:27 -#: report/templates/report/inventree_test_report.html:104 stock/models.py:2959 +#: common/models.py:2096 common/models.py:2335 machine/serializers.py:27 +#: report/templates/report/inventree_test_report.html:104 stock/models.py:2976 msgid "Value" msgstr "值" -#: common/models.py:2091 +#: common/models.py:2097 msgid "Numerical value that will be saved in the models database" msgstr "將儲存於模型資料庫中的數值" -#: common/models.py:2097 +#: common/models.py:2103 msgid "Name of the state" msgstr "狀態名" -#: common/models.py:2106 common/models.py:2335 generic/states/serializers.py:22 +#: common/models.py:2112 common/models.py:2341 generic/states/serializers.py:22 msgid "Label" msgstr "標籤" -#: common/models.py:2107 +#: common/models.py:2113 msgid "Label that will be displayed in the frontend" msgstr "在前端顯示的標籤" -#: common/models.py:2114 generic/states/serializers.py:24 +#: common/models.py:2120 generic/states/serializers.py:24 msgid "Color" msgstr "顏色" -#: common/models.py:2115 +#: common/models.py:2121 msgid "Color that will be displayed in the frontend" msgstr "將在前端顯示顏色" -#: common/models.py:2123 +#: common/models.py:2129 msgid "Model" msgstr "模式" -#: common/models.py:2124 +#: common/models.py:2130 msgid "Model this state is associated with" msgstr "該狀態關聯的模型" -#: common/models.py:2139 +#: common/models.py:2145 msgid "Model must be selected" msgstr "必須選定模型" -#: common/models.py:2142 +#: common/models.py:2148 msgid "Key must be selected" msgstr "必須選取密鑰" -#: common/models.py:2145 +#: common/models.py:2151 msgid "Logical key must be selected" msgstr "必須選中邏輯密鑰" -#: common/models.py:2149 +#: common/models.py:2155 msgid "Key must be different from logical key" msgstr "密鑰必須不同於邏輯密鑰" -#: common/models.py:2156 +#: common/models.py:2162 msgid "Valid reference status class must be provided" msgstr "必須提供有效參考狀態類別" -#: common/models.py:2162 +#: common/models.py:2168 msgid "Key must be different from the logical keys of the reference status" msgstr "密鑰必須不同於參考狀態的邏輯密鑰" -#: common/models.py:2169 +#: common/models.py:2175 msgid "Logical key must be in the logical keys of the reference status" msgstr "邏輯密鑰必須在參考狀態的邏輯鍵中" -#: common/models.py:2176 +#: common/models.py:2182 msgid "Name must be different from the names of the reference status" msgstr "名稱必須不同於參考狀態的名稱" -#: common/models.py:2216 common/models.py:2323 part/models.py:3889 +#: common/models.py:2222 common/models.py:2329 common/models.py:2533 msgid "Selection List" msgstr "選擇列表" -#: common/models.py:2217 +#: common/models.py:2223 msgid "Selection Lists" msgstr "選擇列表" -#: common/models.py:2222 +#: common/models.py:2228 msgid "Name of the selection list" msgstr "選擇列表名稱" -#: common/models.py:2229 +#: common/models.py:2235 msgid "Description of the selection list" msgstr "選擇列表描述" -#: common/models.py:2235 part/models.py:1242 +#: common/models.py:2241 part/models.py:1330 msgid "Locked" msgstr "已鎖定" -#: common/models.py:2236 +#: common/models.py:2242 msgid "Is this selection list locked?" msgstr "此選擇列表是否已鎖定?" -#: common/models.py:2242 +#: common/models.py:2248 msgid "Can this selection list be used?" msgstr "此選擇列表是否可使用?" -#: common/models.py:2250 +#: common/models.py:2256 msgid "Source Plugin" msgstr "來源模組" -#: common/models.py:2251 +#: common/models.py:2257 msgid "Plugin which provides the selection list" msgstr "提供此選擇列表的模組" -#: common/models.py:2256 +#: common/models.py:2262 msgid "Source String" msgstr "來源字串" -#: common/models.py:2257 +#: common/models.py:2263 msgid "Optional string identifying the source used for this list" msgstr "用於標示此列表來源的可選字串" -#: common/models.py:2266 +#: common/models.py:2272 msgid "Default Entry" msgstr "預設項目" -#: common/models.py:2267 +#: common/models.py:2273 msgid "Default entry for this selection list" msgstr "此選擇列表的預設項目" -#: common/models.py:2272 common/models.py:2724 +#: common/models.py:2278 common/models.py:3145 msgid "Created" msgstr "已創建" -#: common/models.py:2273 +#: common/models.py:2279 msgid "Date and time that the selection list was created" msgstr "選擇列表建立的日期與時間" -#: common/models.py:2278 +#: common/models.py:2284 msgid "Last Updated" msgstr "最近更新" -#: common/models.py:2279 +#: common/models.py:2285 msgid "Date and time that the selection list was last updated" msgstr "選擇列表最近更新的日期與時間" -#: common/models.py:2313 +#: common/models.py:2319 msgid "Selection List Entry" msgstr "選擇列表項目" -#: common/models.py:2314 +#: common/models.py:2320 msgid "Selection List Entries" msgstr "選擇列表項目" -#: common/models.py:2324 +#: common/models.py:2330 msgid "Selection list to which this entry belongs" msgstr "該項目所屬的選擇列表" -#: common/models.py:2330 +#: common/models.py:2336 msgid "Value of the selection list entry" msgstr "選擇列表項目的值" -#: common/models.py:2336 +#: common/models.py:2342 msgid "Label for the selection list entry" msgstr "選擇列表項目的標籤" -#: common/models.py:2342 +#: common/models.py:2348 msgid "Description of the selection list entry" msgstr "選擇列表項目的描述" -#: common/models.py:2349 +#: common/models.py:2355 msgid "Is this selection list entry active?" msgstr "此選擇列表項目是否啟用?" -#: common/models.py:2367 -msgid "Barcode Scan" -msgstr "掃描條碼" +#: common/models.py:2387 +msgid "Parameter Template" +msgstr "參數模板" -#: common/models.py:2371 importer/models.py:546 part/models.py:4060 +#: common/models.py:2388 +msgid "Parameter Templates" +msgstr "" + +#: common/models.py:2425 +msgid "Checkbox parameters cannot have units" +msgstr "勾選框參數不能有單位" + +#: common/models.py:2430 +msgid "Checkbox parameters cannot have choices" +msgstr "複選框參數不能有選項" + +#: common/models.py:2450 part/models.py:3707 +msgid "Choices must be unique" +msgstr "選擇必須是唯一的" + +#: common/models.py:2467 +msgid "Parameter template name must be unique" +msgstr "參數模板名稱必須是唯一的" + +#: common/models.py:2489 +msgid "Target model type for this parameter template" +msgstr "" + +#: common/models.py:2495 +msgid "Parameter Name" +msgstr "參數名稱" + +#: common/models.py:2501 part/models.py:1283 +msgid "Units" +msgstr "單位" + +#: common/models.py:2502 +msgid "Physical units for this parameter" +msgstr "此參數的物理單位" + +#: common/models.py:2510 +msgid "Parameter description" +msgstr "參數説明" + +#: common/models.py:2516 +msgid "Checkbox" +msgstr "勾選框" + +#: common/models.py:2517 +msgid "Is this parameter a checkbox?" +msgstr "此參數是否為勾選框?" + +#: common/models.py:2522 part/models.py:3794 +msgid "Choices" +msgstr "選項" + +#: common/models.py:2523 +msgid "Valid choices for this parameter (comma-separated)" +msgstr "此參數的有效選擇 (逗號分隔)" + +#: common/models.py:2534 +msgid "Selection list for this parameter" +msgstr "此參數的選擇清單" + +#: common/models.py:2539 part/models.py:3769 report/models.py:287 +msgid "Enabled" +msgstr "已啓用" + +#: common/models.py:2540 +msgid "Is this parameter template enabled?" +msgstr "" + +#: common/models.py:2581 +msgid "Parameter" +msgstr "" + +#: common/models.py:2582 +msgid "Parameters" +msgstr "" + +#: common/models.py:2628 +msgid "Invalid choice for parameter value" +msgstr "無效的參數值選擇" + +#: common/models.py:2698 common/serializers.py:783 +msgid "Invalid model type specified for parameter" +msgstr "" + +#: common/models.py:2734 +msgid "Model ID" +msgstr "" + +#: common/models.py:2735 +msgid "ID of the target model for this parameter" +msgstr "" + +#: common/models.py:2744 common/setting/system.py:450 report/models.py:373 +#: report/models.py:669 report/serializers.py:94 report/serializers.py:135 +#: stock/serializers.py:234 +msgid "Template" +msgstr "模板" + +#: common/models.py:2745 +msgid "Parameter template" +msgstr "" + +#: common/models.py:2750 common/models.py:2792 importer/models.py:546 msgid "Data" msgstr "數據" -#: common/models.py:2372 +#: common/models.py:2751 +msgid "Parameter Value" +msgstr "參數值" + +#: common/models.py:2760 company/models.py:810 order/serializers.py:894 +#: order/serializers.py:2064 part/models.py:4075 part/models.py:4444 +#: report/templates/report/inventree_bill_of_materials_report.html:140 +#: report/templates/report/inventree_purchase_order_report.html:39 +#: report/templates/report/inventree_return_order_report.html:27 +#: report/templates/report/inventree_sales_order_report.html:32 +#: report/templates/report/inventree_stock_location_report.html:105 +#: stock/serializers.py:813 +msgid "Note" +msgstr "備註" + +#: common/models.py:2761 stock/serializers.py:718 +msgid "Optional note field" +msgstr "可選註釋字段" + +#: common/models.py:2788 +msgid "Barcode Scan" +msgstr "掃描條碼" + +#: common/models.py:2793 msgid "Barcode data" msgstr "條碼數據" -#: common/models.py:2383 +#: common/models.py:2804 msgid "User who scanned the barcode" msgstr "掃描條碼" -#: common/models.py:2388 importer/models.py:69 +#: common/models.py:2809 importer/models.py:69 msgid "Timestamp" msgstr "時間戳" -#: common/models.py:2389 +#: common/models.py:2810 msgid "Date and time of the barcode scan" msgstr "掃描條碼的日期和時間" -#: common/models.py:2395 +#: common/models.py:2816 msgid "URL endpoint which processed the barcode" msgstr "處理條碼的 URL 終點" -#: common/models.py:2402 order/models.py:1832 plugin/serializers.py:93 +#: common/models.py:2823 order/models.py:1833 plugin/serializers.py:93 msgid "Context" msgstr "上下文" -#: common/models.py:2403 +#: common/models.py:2824 msgid "Context data for the barcode scan" msgstr "掃描條碼的上下文數據" -#: common/models.py:2410 +#: common/models.py:2831 msgid "Response" msgstr "響應" -#: common/models.py:2411 +#: common/models.py:2832 msgid "Response data from the barcode scan" msgstr "掃描條碼的響應數據" -#: common/models.py:2417 report/templates/report/inventree_test_report.html:103 -#: stock/models.py:2953 +#: common/models.py:2838 report/templates/report/inventree_test_report.html:103 +#: stock/models.py:2970 msgid "Result" msgstr "結果" -#: common/models.py:2418 +#: common/models.py:2839 msgid "Was the barcode scan successful?" msgstr "條碼掃描成功嗎?" -#: common/models.py:2500 +#: common/models.py:2921 msgid "An error occurred" msgstr "發生錯誤" -#: common/models.py:2521 +#: common/models.py:2942 msgid "INVE-E8: Email log deletion is protected. Set INVENTREE_PROTECT_EMAIL_LOG to False to allow deletion." msgstr "INVE-E8:已保護電子郵件日誌刪除。請將 INVENTREE_PROTECT_EMAIL_LOG 設為 False 以允許刪除。" -#: common/models.py:2568 +#: common/models.py:2989 msgid "Email Message" msgstr "電子郵件訊息" -#: common/models.py:2569 +#: common/models.py:2990 msgid "Email Messages" msgstr "電子郵件訊息" -#: common/models.py:2576 +#: common/models.py:2997 msgid "Announced" msgstr "已公告" -#: common/models.py:2578 +#: common/models.py:2999 msgid "Sent" msgstr "已發送" -#: common/models.py:2579 +#: common/models.py:3000 msgid "Failed" msgstr "失敗" -#: common/models.py:2582 +#: common/models.py:3003 msgid "Delivered" msgstr "已送達" -#: common/models.py:2590 +#: common/models.py:3011 msgid "Confirmed" msgstr "已確認" -#: common/models.py:2596 +#: common/models.py:3017 msgid "Inbound" msgstr "入站" -#: common/models.py:2597 +#: common/models.py:3018 msgid "Outbound" msgstr "出站" -#: common/models.py:2602 +#: common/models.py:3023 msgid "No Reply" msgstr "不回覆" -#: common/models.py:2603 +#: common/models.py:3024 msgid "Track Delivery" msgstr "追蹤投遞" -#: common/models.py:2604 +#: common/models.py:3025 msgid "Track Read" msgstr "追蹤已讀" -#: common/models.py:2605 +#: common/models.py:3026 msgid "Track Click" msgstr "追蹤點擊" -#: common/models.py:2608 common/models.py:2711 +#: common/models.py:3029 common/models.py:3132 msgid "Global ID" msgstr "全域 ID" -#: common/models.py:2621 +#: common/models.py:3042 msgid "Identifier for this message (might be supplied by external system)" msgstr "此訊息的識別碼(可能由外部系統提供)" -#: common/models.py:2628 +#: common/models.py:3049 msgid "Thread ID" msgstr "討論串 ID" -#: common/models.py:2630 +#: common/models.py:3051 msgid "Identifier for this message thread (might be supplied by external system)" msgstr "此訊息討論串的識別碼(可能由外部系統提供)" -#: common/models.py:2639 +#: common/models.py:3060 msgid "Thread" msgstr "討論串" -#: common/models.py:2640 +#: common/models.py:3061 msgid "Linked thread for this message" msgstr "此訊息所連結的討論串" -#: common/models.py:2656 -msgid "Prioriy" -msgstr "優先等級" +#: common/models.py:3077 +msgid "Priority" +msgstr "" -#: common/models.py:2698 +#: common/models.py:3119 msgid "Email Thread" msgstr "電子郵件討論串" -#: common/models.py:2699 +#: common/models.py:3120 msgid "Email Threads" msgstr "電子郵件討論串" -#: common/models.py:2705 generic/states/serializers.py:16 +#: common/models.py:3126 generic/states/serializers.py:16 #: machine/serializers.py:24 plugin/models.py:46 users/models.py:113 msgid "Key" msgstr "鍵" -#: common/models.py:2708 +#: common/models.py:3129 msgid "Unique key for this thread (used to identify the thread)" msgstr "此討論串的唯一鍵(用於辨識)" -#: common/models.py:2712 +#: common/models.py:3133 msgid "Unique identifier for this thread" msgstr "此討論串的唯一識別碼" -#: common/models.py:2719 +#: common/models.py:3140 msgid "Started Internal" msgstr "內部建立" -#: common/models.py:2720 +#: common/models.py:3141 msgid "Was this thread started internally?" msgstr "此討論串是否為內部建立?" -#: common/models.py:2725 +#: common/models.py:3146 msgid "Date and time that the thread was created" msgstr "討論串建立的日期時間" -#: common/models.py:2730 +#: common/models.py:3151 msgid "Date and time that the thread was last updated" msgstr "討論串最後更新的日期時間" @@ -2199,7 +2339,7 @@ msgstr "{verbose_name} 已取消" msgid "A order that is assigned to you was canceled" msgstr "分配給您的訂單已取消" -#: common/notifications.py:73 common/notifications.py:80 order/api.py:594 +#: common/notifications.py:73 common/notifications.py:80 order/api.py:600 msgid "Items Received" msgstr "收到的物品" @@ -2211,88 +2351,93 @@ msgstr "已根據採購訂單收到物品" msgid "Items have been received against a return order" msgstr "已收到退貨訂單中的物品" -#: common/serializers.py:145 +#: common/serializers.py:149 msgid "Indicates if the setting is overridden by an environment variable" msgstr "表示此設定是否被環境變數覆蓋" -#: common/serializers.py:147 +#: common/serializers.py:151 msgid "Override" msgstr "覆蓋" -#: common/serializers.py:498 +#: common/serializers.py:502 msgid "Is Running" msgstr "正在運行" -#: common/serializers.py:504 +#: common/serializers.py:508 msgid "Pending Tasks" msgstr "等待完成的任務" -#: common/serializers.py:510 +#: common/serializers.py:514 msgid "Scheduled Tasks" msgstr "預定的任務" -#: common/serializers.py:516 +#: common/serializers.py:520 msgid "Failed Tasks" msgstr "失敗的任務" -#: common/serializers.py:531 +#: common/serializers.py:535 msgid "Task ID" msgstr "任務ID" -#: common/serializers.py:531 +#: common/serializers.py:535 msgid "Unique task ID" msgstr "唯一任務ID" -#: common/serializers.py:533 +#: common/serializers.py:537 msgid "Lock" msgstr "鎖定" -#: common/serializers.py:533 +#: common/serializers.py:537 msgid "Lock time" msgstr "鎖定時間" -#: common/serializers.py:535 +#: common/serializers.py:539 msgid "Task name" msgstr "任務名稱" -#: common/serializers.py:537 +#: common/serializers.py:541 msgid "Function" msgstr "功能" -#: common/serializers.py:537 +#: common/serializers.py:541 msgid "Function name" msgstr "功能名稱" -#: common/serializers.py:539 +#: common/serializers.py:543 msgid "Arguments" msgstr "參數" -#: common/serializers.py:539 +#: common/serializers.py:543 msgid "Task arguments" msgstr "任務參數" -#: common/serializers.py:542 +#: common/serializers.py:546 msgid "Keyword Arguments" msgstr "關鍵字參數" -#: common/serializers.py:542 +#: common/serializers.py:546 msgid "Task keyword arguments" msgstr "任務關鍵詞參數" -#: common/serializers.py:652 +#: common/serializers.py:656 msgid "Filename" msgstr "檔案名稱" -#: common/serializers.py:659 importer/models.py:89 report/api.py:41 +#: common/serializers.py:663 common/serializers.py:730 +#: common/serializers.py:805 importer/models.py:89 report/api.py:41 #: report/models.py:293 report/serializers.py:52 msgid "Model Type" msgstr "模型類型" -#: common/serializers.py:687 +#: common/serializers.py:691 msgid "User does not have permission to create or edit attachments for this model" msgstr "用户無權為此模式創建或編輯附件" -#: common/serializers.py:731 common/serializers.py:834 +#: common/serializers.py:786 +msgid "User does not have permission to create or edit parameters for this model" +msgstr "" + +#: common/serializers.py:850 common/serializers.py:953 msgid "Selection list is locked" msgstr "選擇列表已鎖定" @@ -2368,7 +2513,7 @@ msgstr "限制顯示 `關於` 信息" msgid "Show the `about` modal only to superusers" msgstr "只向超級管理員顯示關於信息" -#: common/setting/system.py:224 company/models.py:144 company/models.py:145 +#: common/setting/system.py:224 company/models.py:145 company/models.py:146 msgid "Company name" msgstr "公司名稱" @@ -2411,8 +2556,8 @@ msgstr "檢查更新的頻率(設置為零以禁用)" #: common/setting/system.py:253 common/setting/system.py:293 #: common/setting/system.py:306 common/setting/system.py:314 #: common/setting/system.py:321 common/setting/system.py:330 -#: common/setting/system.py:339 common/setting/system.py:588 -#: common/setting/system.py:616 common/setting/system.py:707 +#: common/setting/system.py:339 common/setting/system.py:580 +#: common/setting/system.py:608 common/setting/system.py:707 #: common/setting/system.py:1103 common/setting/system.py:1119 msgid "days" msgstr "天" @@ -2657,12 +2802,6 @@ msgstr "複製類別參數模板" msgid "Copy category parameter templates when creating a part" msgstr "創建零件時複製類別參數模板" -#: common/setting/system.py:450 part/models.py:4054 report/models.py:373 -#: report/models.py:669 report/serializers.py:94 report/serializers.py:135 -#: stock/serializers.py:234 -msgid "Template" -msgstr "模板" - #: common/setting/system.py:451 msgid "Parts are templates by default" msgstr "零件默認為模板" @@ -2671,8 +2810,8 @@ msgstr "零件默認為模板" msgid "Parts can be assembled from other components by default" msgstr "默認情況下,元件可由其他零件組裝而成" -#: common/setting/system.py:462 part/models.py:1208 part/serializers.py:1734 -#: part/serializers.py:1741 +#: common/setting/system.py:462 part/models.py:1296 part/serializers.py:1599 +#: part/serializers.py:1606 msgid "Component" msgstr "組件" @@ -2680,7 +2819,7 @@ msgstr "組件" msgid "Parts can be used as sub-components by default" msgstr "默認情況下,零件可用作子部件" -#: common/setting/system.py:468 part/models.py:1226 +#: common/setting/system.py:468 part/models.py:1314 msgid "Purchaseable" msgstr "可購買" @@ -2688,7 +2827,7 @@ msgstr "可購買" msgid "Parts are purchaseable by default" msgstr "默認情況下可購買零件" -#: common/setting/system.py:474 part/models.py:1232 stock/api.py:643 +#: common/setting/system.py:474 part/models.py:1320 stock/api.py:643 msgid "Salable" msgstr "可銷售" @@ -2700,7 +2839,7 @@ msgstr "零件默認為可銷售" msgid "Parts are trackable by default" msgstr "默認情況下可跟蹤零件" -#: common/setting/system.py:486 part/models.py:1248 +#: common/setting/system.py:486 part/models.py:1336 msgid "Virtual" msgstr "虛擬的" @@ -2749,158 +2888,158 @@ msgid "Part category default icon (empty means no icon)" msgstr "零件類別默認圖標 (空表示沒有圖標)" #: common/setting/system.py:525 -msgid "Enforce Parameter Units" -msgstr "強制參數單位" - -#: common/setting/system.py:527 -msgid "If units are provided, parameter values must match the specified units" -msgstr "如果提供了單位,參數值必須與指定的單位匹配" - -#: common/setting/system.py:533 msgid "Minimum Pricing Decimal Places" msgstr "最小定價小數位數" -#: common/setting/system.py:535 +#: common/setting/system.py:527 msgid "Minimum number of decimal places to display when rendering pricing data" msgstr "呈現定價數據時顯示的最小小數位數" -#: common/setting/system.py:546 +#: common/setting/system.py:538 msgid "Maximum Pricing Decimal Places" msgstr "最大定價小數位數" -#: common/setting/system.py:548 +#: common/setting/system.py:540 msgid "Maximum number of decimal places to display when rendering pricing data" msgstr "呈現定價數據時顯示的最大小數位數" -#: common/setting/system.py:559 +#: common/setting/system.py:551 msgid "Use Supplier Pricing" msgstr "使用供應商定價" -#: common/setting/system.py:561 +#: common/setting/system.py:553 msgid "Include supplier price breaks in overall pricing calculations" msgstr "將供應商的價批發價納入總體定價計算中" -#: common/setting/system.py:567 +#: common/setting/system.py:559 msgid "Purchase History Override" msgstr "購買歷史記錄覆蓋" -#: common/setting/system.py:569 +#: common/setting/system.py:561 msgid "Historical purchase order pricing overrides supplier price breaks" msgstr "歷史採購訂單定價優先於供應商批發價" -#: common/setting/system.py:575 +#: common/setting/system.py:567 msgid "Use Stock Item Pricing" msgstr "使用庫存項定價" -#: common/setting/system.py:577 +#: common/setting/system.py:569 msgid "Use pricing from manually entered stock data for pricing calculations" msgstr "使用手動輸入的庫存數據進行定價計算" -#: common/setting/system.py:583 +#: common/setting/system.py:575 msgid "Stock Item Pricing Age" msgstr "庫存項目定價時間" -#: common/setting/system.py:585 +#: common/setting/system.py:577 msgid "Exclude stock items older than this number of days from pricing calculations" msgstr "從定價計算中排除超過此天數的庫存項目" -#: common/setting/system.py:592 +#: common/setting/system.py:584 msgid "Use Variant Pricing" msgstr "使用變體定價" -#: common/setting/system.py:593 +#: common/setting/system.py:585 msgid "Include variant pricing in overall pricing calculations" msgstr "在整體定價計算中包括變體定價" -#: common/setting/system.py:598 +#: common/setting/system.py:590 msgid "Active Variants Only" msgstr "僅限活躍變體" -#: common/setting/system.py:600 +#: common/setting/system.py:592 msgid "Only use active variant parts for calculating variant pricing" msgstr "僅使用活躍變體零件計算變體價格" -#: common/setting/system.py:606 +#: common/setting/system.py:598 msgid "Auto Update Pricing" msgstr "自動更新定價" -#: common/setting/system.py:608 +#: common/setting/system.py:600 msgid "Automatically update part pricing when internal data changes" msgstr "當內部資料變更時自動更新零件定價" -#: common/setting/system.py:614 +#: common/setting/system.py:606 msgid "Pricing Rebuild Interval" msgstr "價格重建間隔" -#: common/setting/system.py:615 +#: common/setting/system.py:607 msgid "Number of days before part pricing is automatically updated" msgstr "零件價格自動更新前的天數" -#: common/setting/system.py:621 +#: common/setting/system.py:613 msgid "Internal Prices" msgstr "內部價格" -#: common/setting/system.py:622 +#: common/setting/system.py:614 msgid "Enable internal prices for parts" msgstr "啓用內部零件價格" -#: common/setting/system.py:627 +#: common/setting/system.py:619 msgid "Internal Price Override" msgstr "覆蓋內部價格" -#: common/setting/system.py:629 +#: common/setting/system.py:621 msgid "If available, internal prices override price range calculations" msgstr "如果有內部價格,內部價格將覆蓋價格範圍計算" -#: common/setting/system.py:635 +#: common/setting/system.py:627 msgid "Enable label printing" msgstr "啓用標籤打印功能" -#: common/setting/system.py:636 +#: common/setting/system.py:628 msgid "Enable label printing from the web interface" msgstr "啓用從網絡界面打印標籤" -#: common/setting/system.py:641 +#: common/setting/system.py:633 msgid "Label Image DPI" msgstr "標籤圖片 DPI" -#: common/setting/system.py:643 +#: common/setting/system.py:635 msgid "DPI resolution when generating image files to supply to label printing plugins" msgstr "生成圖像文件以供標籤打印插件使用時的 DPI 分辨率" -#: common/setting/system.py:649 +#: common/setting/system.py:641 msgid "Enable Reports" msgstr "啓用報告" -#: common/setting/system.py:650 +#: common/setting/system.py:642 msgid "Enable generation of reports" msgstr "啓用報告生成" -#: common/setting/system.py:655 +#: common/setting/system.py:647 msgid "Debug Mode" msgstr "調試模式" -#: common/setting/system.py:656 +#: common/setting/system.py:648 msgid "Generate reports in debug mode (HTML output)" msgstr "以調試模式生成報告(HTML 輸出)" -#: common/setting/system.py:661 +#: common/setting/system.py:653 msgid "Log Report Errors" msgstr "日誌錯誤報告" -#: common/setting/system.py:662 +#: common/setting/system.py:654 msgid "Log errors which occur when generating reports" msgstr "記錄生成報告時出現的錯誤" -#: common/setting/system.py:667 plugin/builtin/labels/label_sheet.py:29 +#: common/setting/system.py:659 plugin/builtin/labels/label_sheet.py:29 #: report/models.py:381 msgid "Page Size" msgstr "頁面大小" -#: common/setting/system.py:668 +#: common/setting/system.py:660 msgid "Default page size for PDF reports" msgstr "PDF 報告默認頁面大小" +#: common/setting/system.py:665 +msgid "Enforce Parameter Units" +msgstr "強制參數單位" + +#: common/setting/system.py:667 +msgid "If units are provided, parameter values must match the specified units" +msgstr "如果提供了單位,參數值必須與指定的單位匹配" + #: common/setting/system.py:673 msgid "Globally Unique Serials" msgstr "全局唯一序列號" @@ -3456,688 +3595,677 @@ msgid "Display PDF reports in the browser, instead of downloading as a file" msgstr "在瀏覽器中顯示PDF報告,而不是作為文件下載" #: common/setting/user.py:45 +msgid "Barcode Scanner in Form Fields" +msgstr "" + +#: common/setting/user.py:46 +msgid "Allow barcode scanner input in form fields" +msgstr "" + +#: common/setting/user.py:51 msgid "Search Parts" msgstr "搜索零件" -#: common/setting/user.py:46 +#: common/setting/user.py:52 msgid "Display parts in search preview window" msgstr "在搜索預覽窗口中顯示零件" -#: common/setting/user.py:51 +#: common/setting/user.py:57 msgid "Search Supplier Parts" msgstr "搜索供應商零件" -#: common/setting/user.py:52 +#: common/setting/user.py:58 msgid "Display supplier parts in search preview window" msgstr "在搜索預覽窗口中顯示供應商零件" -#: common/setting/user.py:57 +#: common/setting/user.py:63 msgid "Search Manufacturer Parts" msgstr "搜索製造商零件" -#: common/setting/user.py:58 +#: common/setting/user.py:64 msgid "Display manufacturer parts in search preview window" msgstr "在搜索預覽窗口中顯示製造商零件" -#: common/setting/user.py:63 +#: common/setting/user.py:69 msgid "Hide Inactive Parts" msgstr "隱藏非活動零件" -#: common/setting/user.py:64 +#: common/setting/user.py:70 msgid "Excluded inactive parts from search preview window" msgstr "從搜索預覽窗口中排除非活動零件" -#: common/setting/user.py:69 +#: common/setting/user.py:75 msgid "Search Categories" msgstr "搜索分類" -#: common/setting/user.py:70 +#: common/setting/user.py:76 msgid "Display part categories in search preview window" msgstr "在搜索預覽窗口中顯示零件類別" -#: common/setting/user.py:75 +#: common/setting/user.py:81 msgid "Search Stock" msgstr "搜索庫存" -#: common/setting/user.py:76 +#: common/setting/user.py:82 msgid "Display stock items in search preview window" msgstr "在搜索預覽窗口中顯示庫存項目" -#: common/setting/user.py:81 +#: common/setting/user.py:87 msgid "Hide Unavailable Stock Items" msgstr "隱藏不可用的庫存項目" -#: common/setting/user.py:83 +#: common/setting/user.py:89 msgid "Exclude stock items which are not available from the search preview window" msgstr "排除搜索預覽窗口中不可用的庫存項目" -#: common/setting/user.py:89 +#: common/setting/user.py:95 msgid "Search Locations" msgstr "搜索地點" -#: common/setting/user.py:90 +#: common/setting/user.py:96 msgid "Display stock locations in search preview window" msgstr "在搜索預覽窗口中顯示庫存位置" -#: common/setting/user.py:95 +#: common/setting/user.py:101 msgid "Search Companies" msgstr "搜索公司" -#: common/setting/user.py:96 +#: common/setting/user.py:102 msgid "Display companies in search preview window" msgstr "在搜索預覽窗口中顯示公司" -#: common/setting/user.py:101 +#: common/setting/user.py:107 msgid "Search Build Orders" msgstr "搜索生產訂單" -#: common/setting/user.py:102 +#: common/setting/user.py:108 msgid "Display build orders in search preview window" msgstr "在搜索預覽窗口中顯示生產訂單" -#: common/setting/user.py:107 +#: common/setting/user.py:113 msgid "Search Purchase Orders" msgstr "搜索採購訂單" -#: common/setting/user.py:108 +#: common/setting/user.py:114 msgid "Display purchase orders in search preview window" msgstr "在搜索預覽窗口中顯示採購訂單" -#: common/setting/user.py:113 +#: common/setting/user.py:119 msgid "Exclude Inactive Purchase Orders" msgstr "排除未激活的採購訂單" -#: common/setting/user.py:114 +#: common/setting/user.py:120 msgid "Exclude inactive purchase orders from search preview window" msgstr "從搜索預覽窗口中排除不活動的採購訂單" -#: common/setting/user.py:119 +#: common/setting/user.py:125 msgid "Search Sales Orders" msgstr "搜索銷售訂單" -#: common/setting/user.py:120 +#: common/setting/user.py:126 msgid "Display sales orders in search preview window" msgstr "在搜索預覽窗口中顯示銷售訂單" -#: common/setting/user.py:125 +#: common/setting/user.py:131 msgid "Exclude Inactive Sales Orders" msgstr "排除未激活的銷售訂單" -#: common/setting/user.py:126 +#: common/setting/user.py:132 msgid "Exclude inactive sales orders from search preview window" msgstr "從搜索預覽窗口中排除不活動的銷售訂單" -#: common/setting/user.py:131 +#: common/setting/user.py:137 msgid "Search Sales Order Shipments" msgstr "搜尋銷售訂單出貨" -#: common/setting/user.py:132 +#: common/setting/user.py:138 msgid "Display sales order shipments in search preview window" msgstr "在搜尋預覽視窗顯示銷售訂單出貨記錄" -#: common/setting/user.py:137 +#: common/setting/user.py:143 msgid "Search Return Orders" msgstr "搜索退貨訂單" -#: common/setting/user.py:138 +#: common/setting/user.py:144 msgid "Display return orders in search preview window" msgstr "在搜索預覽窗口中顯示退貨訂單" -#: common/setting/user.py:143 +#: common/setting/user.py:149 msgid "Exclude Inactive Return Orders" msgstr "排除未激活的退貨訂單" -#: common/setting/user.py:144 +#: common/setting/user.py:150 msgid "Exclude inactive return orders from search preview window" msgstr "從搜索預覽窗口中排除不活動的退貨訂單" -#: common/setting/user.py:149 +#: common/setting/user.py:155 msgid "Search Preview Results" msgstr "搜索預覽結果" -#: common/setting/user.py:151 +#: common/setting/user.py:157 msgid "Number of results to show in each section of the search preview window" msgstr "在搜索預覽窗口的每個部分中顯示的結果數" -#: common/setting/user.py:157 +#: common/setting/user.py:163 msgid "Regex Search" msgstr "正則表達式搜索" -#: common/setting/user.py:158 +#: common/setting/user.py:164 msgid "Enable regular expressions in search queries" msgstr "在搜索查詢中啓用正則表達式" -#: common/setting/user.py:163 +#: common/setting/user.py:169 msgid "Whole Word Search" msgstr "整詞搜索" -#: common/setting/user.py:164 +#: common/setting/user.py:170 msgid "Search queries return results for whole word matches" msgstr "搜索查詢返回整詞匹配的結果" -#: common/setting/user.py:169 +#: common/setting/user.py:175 msgid "Search Notes" msgstr "搜尋備註" -#: common/setting/user.py:171 +#: common/setting/user.py:177 msgid "Search queries return results for matches from the item's notes" msgstr "於搜尋結果中包含項目的備註匹配" -#: common/setting/user.py:177 +#: common/setting/user.py:183 msgid "Escape Key Closes Forms" msgstr "Esc鍵關閉窗體" -#: common/setting/user.py:178 +#: common/setting/user.py:184 msgid "Use the escape key to close modal forms" msgstr "使用ESC鍵關閉模態窗體" -#: common/setting/user.py:183 +#: common/setting/user.py:189 msgid "Fixed Navbar" msgstr "固定導航欄" -#: common/setting/user.py:184 +#: common/setting/user.py:190 msgid "The navbar position is fixed to the top of the screen" msgstr "導航欄位置固定在屏幕頂部" -#: common/setting/user.py:189 +#: common/setting/user.py:195 msgid "Fixed Table Headers" msgstr "固定表格表頭" -#: common/setting/user.py:190 +#: common/setting/user.py:196 msgid "Table headers are fixed to the top of the table" msgstr "表格表頭固定於表格頂端" -#: common/setting/user.py:195 +#: common/setting/user.py:201 msgid "Show Spotlight" msgstr "顯示 Spotlight 導覽" -#: common/setting/user.py:196 +#: common/setting/user.py:202 msgid "Enable spotlight navigation functionality" msgstr "啟用 Spotlight 導覽功能" -#: common/setting/user.py:201 +#: common/setting/user.py:207 msgid "Navigation Icons" msgstr "導覽圖示" -#: common/setting/user.py:202 +#: common/setting/user.py:208 msgid "Display icons in the navigation bar" msgstr "在導覽列顯示圖示" -#: common/setting/user.py:207 +#: common/setting/user.py:213 msgid "Date Format" msgstr "時間格式" -#: common/setting/user.py:208 +#: common/setting/user.py:214 msgid "Preferred format for displaying dates" msgstr "顯示時間的首選格式" -#: common/setting/user.py:221 +#: common/setting/user.py:227 msgid "Show Stock History" msgstr "顯示庫存歷史" -#: common/setting/user.py:222 +#: common/setting/user.py:228 msgid "Display stock history information in the part detail page" msgstr "在零件詳細頁顯示庫存歷史資訊" -#: common/setting/user.py:227 +#: common/setting/user.py:233 msgid "Show Last Breadcrumb" msgstr "顯示當前麵包屑節點" -#: common/setting/user.py:228 +#: common/setting/user.py:234 msgid "Show the current page in breadcrumbs" msgstr "在麵包屑中顯示目前頁面" -#: common/setting/user.py:233 +#: common/setting/user.py:239 msgid "Show full stock location in tables" msgstr "表格中顯示完整庫存位置" -#: common/setting/user.py:235 +#: common/setting/user.py:241 msgid "Disabled: The full location path is displayed as a hover tooltip. Enabled: The full location path is displayed as plain text." msgstr "停用:完整位置路徑以滑鼠懸停提示顯示。啟用:直接以文字顯示完整路徑。" -#: common/setting/user.py:241 +#: common/setting/user.py:247 msgid "Show full part categories in tables" msgstr "表格中顯示完整零件分類" -#: common/setting/user.py:243 +#: common/setting/user.py:249 msgid "Disabled: The full category path is displayed as a hover tooltip. Enabled: The full category path is displayed as plain text." msgstr "停用:完整分類路徑以滑鼠懸停提示顯示。啟用:直接以文字顯示完整路徑。" -#: common/setting/user.py:249 +#: common/setting/user.py:255 msgid "Receive error reports" msgstr "接收錯誤報告" -#: common/setting/user.py:250 +#: common/setting/user.py:256 msgid "Receive notifications for system errors" msgstr "接收系統錯誤通知" -#: common/setting/user.py:255 +#: common/setting/user.py:261 msgid "Last used printing machines" msgstr "上次使用的打印設備" -#: common/setting/user.py:256 +#: common/setting/user.py:262 msgid "Save the last used printing machines for a user" msgstr "為用户保存上次使用的打印設備" -#: common/validators.py:34 +#: common/validators.py:38 +msgid "All models" +msgstr "" + +#: common/validators.py:63 msgid "No attachment model type provided" msgstr "未提供附件型號" -#: common/validators.py:40 +#: common/validators.py:69 msgid "Invalid attachment model type" msgstr "附件模型類型無效" -#: common/validators.py:81 +#: common/validators.py:110 msgid "Minimum places cannot be greater than maximum places" msgstr "最小位置不能大於最大位置" -#: common/validators.py:93 +#: common/validators.py:122 msgid "Maximum places cannot be less than minimum places" msgstr "最大名額不能小於最小名額" -#: common/validators.py:104 +#: common/validators.py:133 msgid "An empty domain is not allowed." msgstr "不允許空域。" -#: common/validators.py:106 +#: common/validators.py:135 #, python-brace-format msgid "Invalid domain name: {domain}" msgstr "無效的域名: {domain}" -#: common/validators.py:122 +#: common/validators.py:151 msgid "Value must be uppercase" msgstr "值必須為大寫" -#: common/validators.py:128 +#: common/validators.py:157 msgid "Value must be a valid variable identifier" msgstr "值必須為有效的變數識別符" -#: company/api.py:147 +#: company/api.py:141 msgid "Part is Active" msgstr "零件已激活" -#: company/api.py:151 +#: company/api.py:145 msgid "Manufacturer is Active" msgstr "製造商處於活動狀態" -#: company/api.py:286 +#: company/api.py:246 msgid "Supplier Part is Active" msgstr "供應商零件處於激活狀態" -#: company/api.py:290 +#: company/api.py:250 msgid "Internal Part is Active" msgstr "內部零件已激活" -#: company/api.py:295 +#: company/api.py:255 msgid "Supplier is Active" msgstr "供應商已激活" -#: company/api.py:307 company/models.py:520 company/serializers.py:457 -#: part/serializers.py:566 +#: company/api.py:267 company/models.py:522 company/serializers.py:502 +#: part/serializers.py:477 msgid "Manufacturer" msgstr "製造商" -#: company/api.py:314 company/models.py:121 company/models.py:392 +#: company/api.py:274 company/models.py:122 company/models.py:393 #: stock/api.py:900 msgid "Company" msgstr "公司" -#: company/api.py:324 +#: company/api.py:284 msgid "Has Stock" msgstr "有庫存" -#: company/models.py:122 +#: company/models.py:123 msgid "Companies" msgstr "公司" -#: company/models.py:150 +#: company/models.py:151 msgid "Company description" msgstr "公司簡介" -#: company/models.py:151 +#: company/models.py:152 msgid "Description of the company" msgstr "公司簡介" -#: company/models.py:157 +#: company/models.py:158 msgid "Website" msgstr "網站" -#: company/models.py:158 +#: company/models.py:159 msgid "Company website URL" msgstr "公司網站" -#: company/models.py:164 +#: company/models.py:165 msgid "Phone number" msgstr "電話號碼" -#: company/models.py:166 +#: company/models.py:167 msgid "Contact phone number" msgstr "聯繫電話" -#: company/models.py:173 +#: company/models.py:174 msgid "Contact email address" msgstr "聯繫人電子郵箱地址" -#: company/models.py:178 company/models.py:296 order/models.py:513 +#: company/models.py:179 company/models.py:297 order/models.py:514 #: users/models.py:561 msgid "Contact" msgstr "聯繫人" -#: company/models.py:180 +#: company/models.py:181 msgid "Point of contact" msgstr "聯絡點" -#: company/models.py:186 +#: company/models.py:187 msgid "Link to external company information" msgstr "外部公司信息鏈接" -#: company/models.py:191 +#: company/models.py:192 msgid "Is this company active?" msgstr "這家公司是否激活?" -#: company/models.py:196 +#: company/models.py:197 msgid "Is customer" msgstr "是客户" -#: company/models.py:197 +#: company/models.py:198 msgid "Do you sell items to this company?" msgstr "你是否向該公司出售商品?" -#: company/models.py:202 +#: company/models.py:203 msgid "Is supplier" msgstr "是否為供應商" -#: company/models.py:203 +#: company/models.py:204 msgid "Do you purchase items from this company?" msgstr "你從這家公司買東西嗎?" -#: company/models.py:208 +#: company/models.py:209 msgid "Is manufacturer" msgstr "是製造商嗎" -#: company/models.py:209 +#: company/models.py:210 msgid "Does this company manufacture parts?" msgstr "這家公司生產零件嗎?" -#: company/models.py:217 +#: company/models.py:218 msgid "Default currency used for this company" msgstr "此公司使用的默認貨幣" -#: company/models.py:224 +#: company/models.py:225 msgid "Tax ID" msgstr "稅籍編號" -#: company/models.py:225 +#: company/models.py:226 msgid "Company Tax ID" msgstr "公司稅籍編號" -#: company/models.py:335 order/models.py:523 order/models.py:2288 +#: company/models.py:336 order/models.py:524 order/models.py:2289 msgid "Address" msgstr "地址" -#: company/models.py:336 +#: company/models.py:337 msgid "Addresses" msgstr "地址" -#: company/models.py:393 +#: company/models.py:394 msgid "Select company" msgstr "選擇公司" -#: company/models.py:398 +#: company/models.py:399 msgid "Address title" msgstr "地址標題" -#: company/models.py:399 +#: company/models.py:400 msgid "Title describing the address entry" msgstr "描述地址條目的標題" -#: company/models.py:405 +#: company/models.py:406 msgid "Primary address" msgstr "主要地址" -#: company/models.py:406 +#: company/models.py:407 msgid "Set as primary address" msgstr "設置主要地址" -#: company/models.py:411 +#: company/models.py:412 msgid "Line 1" msgstr "第1行" -#: company/models.py:412 +#: company/models.py:413 msgid "Address line 1" msgstr "地址行1" -#: company/models.py:418 +#: company/models.py:419 msgid "Line 2" msgstr "第2行" -#: company/models.py:419 +#: company/models.py:420 msgid "Address line 2" msgstr "地址行2" -#: company/models.py:425 company/models.py:426 +#: company/models.py:426 company/models.py:427 msgid "Postal code" msgstr "郵政編碼" -#: company/models.py:432 +#: company/models.py:433 msgid "City/Region" msgstr "城市/地區" -#: company/models.py:433 +#: company/models.py:434 msgid "Postal code city/region" msgstr "郵政編碼城市/地區" -#: company/models.py:439 +#: company/models.py:440 msgid "State/Province" msgstr "省/市/自治區" -#: company/models.py:440 +#: company/models.py:441 msgid "State or province" msgstr "省、自治區或直轄市" -#: company/models.py:446 +#: company/models.py:447 msgid "Country" msgstr "國家/地區" -#: company/models.py:447 +#: company/models.py:448 msgid "Address country" msgstr "地址所在國家" -#: company/models.py:453 +#: company/models.py:454 msgid "Courier shipping notes" msgstr "快遞運單" -#: company/models.py:454 +#: company/models.py:455 msgid "Notes for shipping courier" msgstr "運輸快遞注意事項" -#: company/models.py:460 +#: company/models.py:461 msgid "Internal shipping notes" msgstr "內部裝運通知單" -#: company/models.py:461 +#: company/models.py:462 msgid "Shipping notes for internal use" msgstr "內部使用的裝運通知單" -#: company/models.py:468 +#: company/models.py:469 msgid "Link to address information (external)" msgstr "鏈接地址信息 (外部)" -#: company/models.py:492 company/models.py:609 company/models.py:832 -#: company/serializers.py:471 stock/api.py:561 +#: company/models.py:494 company/models.py:786 company/serializers.py:516 +#: stock/api.py:561 msgid "Manufacturer Part" msgstr "製造商零件" -#: company/models.py:509 company/models.py:800 stock/models.py:1025 +#: company/models.py:511 company/models.py:754 stock/models.py:1025 #: stock/serializers.py:407 msgid "Base Part" msgstr "基礎零件" -#: company/models.py:511 company/models.py:802 +#: company/models.py:513 company/models.py:756 msgid "Select part" msgstr "選擇零件" -#: company/models.py:521 +#: company/models.py:523 msgid "Select manufacturer" msgstr "選擇製造商" -#: company/models.py:527 company/serializers.py:479 order/serializers.py:734 -#: part/serializers.py:576 +#: company/models.py:529 company/serializers.py:524 order/serializers.py:745 +#: part/serializers.py:487 msgid "MPN" msgstr "製造商零件編號" -#: company/models.py:528 stock/serializers.py:572 +#: company/models.py:530 stock/serializers.py:572 msgid "Manufacturer Part Number" msgstr "製造商零件編號" -#: company/models.py:535 +#: company/models.py:537 msgid "URL for external manufacturer part link" msgstr "外部製造商零件鏈接的URL" -#: company/models.py:544 +#: company/models.py:546 msgid "Manufacturer part description" msgstr "製造商零件説明" -#: company/models.py:597 -msgid "Manufacturer Part Parameter" -msgstr "製造商零件參數" - -#: company/models.py:616 -msgid "Parameter name" -msgstr "參數名稱" - -#: company/models.py:623 -msgid "Parameter value" -msgstr "參數值" - -#: company/models.py:630 part/models.py:1195 part/models.py:3857 -msgid "Units" -msgstr "單位" - -#: company/models.py:631 -msgid "Parameter units" -msgstr "參數單位" - -#: company/models.py:740 +#: company/models.py:694 msgid "Pack units must be compatible with the base part units" msgstr "包裝單位必須與基礎零件單位兼容" -#: company/models.py:747 +#: company/models.py:701 msgid "Pack units must be greater than zero" msgstr "包裝單位必須大於零" -#: company/models.py:761 +#: company/models.py:715 msgid "Linked manufacturer part must reference the same base part" msgstr "鏈接的製造商零件必須引用相同的基礎零件" -#: company/models.py:810 company/serializers.py:449 company/serializers.py:467 -#: order/models.py:639 part/serializers.py:550 +#: company/models.py:764 company/serializers.py:494 company/serializers.py:512 +#: order/models.py:640 part/serializers.py:461 #: plugin/builtin/suppliers/digikey.py:26 plugin/builtin/suppliers/lcsc.py:27 #: plugin/builtin/suppliers/mouser.py:25 plugin/builtin/suppliers/tme.py:27 #: stock/api.py:567 templates/email/overdue_purchase_order.html:16 msgid "Supplier" msgstr "供應商" -#: company/models.py:811 +#: company/models.py:765 msgid "Select supplier" msgstr "選擇供應商" -#: company/models.py:817 part/serializers.py:561 +#: company/models.py:771 part/serializers.py:472 msgid "Supplier stock keeping unit" msgstr "供應商庫存管理單位" -#: company/models.py:823 +#: company/models.py:777 msgid "Is this supplier part active?" msgstr "此供應商零件是否處於活動狀態?" -#: company/models.py:833 +#: company/models.py:787 msgid "Select manufacturer part" msgstr "選擇製造商零件" -#: company/models.py:840 +#: company/models.py:794 msgid "URL for external supplier part link" msgstr "外部供應商零件鏈接的URL" -#: company/models.py:849 +#: company/models.py:803 msgid "Supplier part description" msgstr "供應商零件説明" -#: company/models.py:856 order/serializers.py:883 order/serializers.py:2047 -#: part/models.py:4070 part/models.py:4450 part/models.py:4819 -#: report/templates/report/inventree_bill_of_materials_report.html:140 -#: report/templates/report/inventree_purchase_order_report.html:39 -#: report/templates/report/inventree_return_order_report.html:27 -#: report/templates/report/inventree_sales_order_report.html:32 -#: report/templates/report/inventree_stock_location_report.html:105 -#: stock/serializers.py:813 -msgid "Note" -msgstr "備註" - -#: company/models.py:865 part/models.py:2250 +#: company/models.py:819 part/models.py:2338 msgid "base cost" msgstr "基本費用" -#: company/models.py:866 part/models.py:2251 +#: company/models.py:820 part/models.py:2339 msgid "Minimum charge (e.g. stocking fee)" msgstr "最低費用(例如庫存費)" -#: company/models.py:873 order/serializers.py:875 stock/models.py:1056 +#: company/models.py:827 order/serializers.py:886 stock/models.py:1056 #: stock/serializers.py:1606 msgid "Packaging" msgstr "打包" -#: company/models.py:874 +#: company/models.py:828 msgid "Part packaging" msgstr "零件打包" -#: company/models.py:879 +#: company/models.py:833 msgid "Pack Quantity" msgstr "包裝數量" -#: company/models.py:881 +#: company/models.py:835 msgid "Total quantity supplied in a single pack. Leave empty for single items." msgstr "單包供應的總數量。為單個項目留空。" -#: company/models.py:900 part/models.py:2257 +#: company/models.py:854 part/models.py:2345 msgid "multiple" msgstr "多個" -#: company/models.py:901 +#: company/models.py:855 msgid "Order multiple" msgstr "訂購多個" -#: company/models.py:913 +#: company/models.py:867 msgid "Quantity available from supplier" msgstr "供應商提供的數量" -#: company/models.py:919 +#: company/models.py:873 msgid "Availability Updated" msgstr "可用性已更新" -#: company/models.py:920 +#: company/models.py:874 msgid "Date of last update of availability data" msgstr "上次更新可用性數據的日期" -#: company/models.py:1048 +#: company/models.py:1002 msgid "Supplier Price Break" msgstr "供應商批發價" -#: company/serializers.py:181 +#: company/serializers.py:184 +msgid "Primary Address" +msgstr "" + +#: company/serializers.py:186 msgid "Return the string representation for the primary address. This property exists for backwards compatibility." msgstr "回傳主要地址的字串表示;此屬性保留以維持回溯相容。" -#: company/serializers.py:212 +#: company/serializers.py:218 msgid "Default currency used for this supplier" msgstr "此供應商使用的默認貨幣" -#: company/serializers.py:248 +#: company/serializers.py:260 msgid "Company Name" msgstr "公司名稱" -#: company/serializers.py:433 part/serializers.py:955 stock/serializers.py:428 +#: company/serializers.py:460 part/serializers.py:840 stock/serializers.py:428 msgid "In Stock" msgstr "有庫存" +#: company/serializers.py:477 +msgid "Price Breaks" +msgstr "" + #: data_exporter/mixins.py:325 data_exporter/mixins.py:403 msgid "Error occurred during data export" msgstr "資料匯出過程發生錯誤" @@ -4290,7 +4418,7 @@ msgstr "原始行數據" msgid "Errors" msgstr "錯誤" -#: importer/models.py:550 part/serializers.py:1268 +#: importer/models.py:550 part/serializers.py:1133 msgid "Valid" msgstr "有效" @@ -4402,7 +4530,7 @@ msgstr "每個標籤要打印的份數" msgid "Connected" msgstr "已連接" -#: machine/machine_types/label_printer.py:232 order/api.py:1795 +#: machine/machine_types/label_printer.py:232 order/api.py:1800 msgid "Unknown" msgstr "未知" @@ -4530,105 +4658,105 @@ msgstr "" msgid "Maximum value for progress type, required if type=progress" msgstr "" -#: order/api.py:125 +#: order/api.py:130 msgid "Order Reference" msgstr "訂單參考" -#: order/api.py:153 order/api.py:1207 +#: order/api.py:158 order/api.py:1212 msgid "Outstanding" msgstr "未完成" -#: order/api.py:169 +#: order/api.py:174 msgid "Has Project Code" msgstr "有項目編碼" -#: order/api.py:183 order/models.py:488 +#: order/api.py:188 order/models.py:489 msgid "Created By" msgstr "創建人" -#: order/api.py:187 +#: order/api.py:192 msgid "Created Before" msgstr "建立時間早於" -#: order/api.py:191 +#: order/api.py:196 msgid "Created After" msgstr "建立時間晚於" -#: order/api.py:195 +#: order/api.py:200 msgid "Has Start Date" msgstr "具有開始日期" -#: order/api.py:203 +#: order/api.py:208 msgid "Start Date Before" msgstr "開始日期早於" -#: order/api.py:207 +#: order/api.py:212 msgid "Start Date After" msgstr "開始日期晚於" -#: order/api.py:211 +#: order/api.py:216 msgid "Has Target Date" msgstr "具有目標日期" -#: order/api.py:219 +#: order/api.py:224 msgid "Target Date Before" msgstr "目標日期早於" -#: order/api.py:223 +#: order/api.py:228 msgid "Target Date After" msgstr "目標日期晚於" -#: order/api.py:274 +#: order/api.py:279 msgid "Has Pricing" msgstr "有定價" -#: order/api.py:327 order/api.py:812 order/api.py:1490 +#: order/api.py:332 order/api.py:818 order/api.py:1495 msgid "Completed Before" msgstr "完成時間早於" -#: order/api.py:331 order/api.py:816 order/api.py:1494 +#: order/api.py:336 order/api.py:822 order/api.py:1499 msgid "Completed After" msgstr "完成時間晚於" -#: order/api.py:337 order/api.py:341 +#: order/api.py:342 order/api.py:346 msgid "External Build Order" msgstr "外部生產工單" -#: order/api.py:526 order/api.py:914 order/api.py:1170 order/models.py:1922 -#: order/models.py:2049 order/models.py:2099 order/models.py:2279 -#: order/models.py:2477 order/models.py:2999 order/models.py:3065 +#: order/api.py:532 order/api.py:919 order/api.py:1175 order/models.py:1923 +#: order/models.py:2050 order/models.py:2100 order/models.py:2280 +#: order/models.py:2478 order/models.py:3000 order/models.py:3066 msgid "Order" msgstr "訂單" -#: order/api.py:530 order/api.py:982 +#: order/api.py:536 order/api.py:987 msgid "Order Complete" msgstr "訂單完成" -#: order/api.py:562 order/api.py:566 order/serializers.py:745 +#: order/api.py:568 order/api.py:572 order/serializers.py:756 msgid "Internal Part" msgstr "內部零件" -#: order/api.py:584 +#: order/api.py:590 msgid "Order Pending" msgstr "訂單待定" -#: order/api.py:967 +#: order/api.py:972 msgid "Completed" msgstr "已完成" -#: order/api.py:1223 +#: order/api.py:1228 msgid "Has Shipment" msgstr "已出貨" -#: order/api.py:1789 order/models.py:552 order/models.py:1923 -#: order/models.py:2050 +#: order/api.py:1794 order/models.py:553 order/models.py:1924 +#: order/models.py:2051 #: report/templates/report/inventree_purchase_order_report.html:14 #: stock/serializers.py:129 templates/email/overdue_purchase_order.html:15 msgid "Purchase Order" msgstr "採購訂單" -#: order/api.py:1791 order/models.py:1251 order/models.py:2100 -#: order/models.py:2280 order/models.py:2478 +#: order/api.py:1796 order/models.py:1252 order/models.py:2101 +#: order/models.py:2281 order/models.py:2479 #: report/templates/report/inventree_build_order_report.html:135 #: report/templates/report/inventree_sales_order_report.html:14 #: report/templates/report/inventree_sales_order_shipment_report.html:15 @@ -4636,8 +4764,8 @@ msgstr "採購訂單" msgid "Sales Order" msgstr "銷售訂單" -#: order/api.py:1793 order/models.py:2649 order/models.py:3000 -#: order/models.py:3066 +#: order/api.py:1798 order/models.py:2650 order/models.py:3001 +#: order/models.py:3067 #: report/templates/report/inventree_return_order_report.html:13 #: templates/email/overdue_return_order.html:15 msgid "Return Order" @@ -4653,722 +4781,722 @@ msgstr "總價格" msgid "Total price for this order" msgstr "此訂單的總價" -#: order/models.py:96 order/serializers.py:77 +#: order/models.py:96 order/serializers.py:78 msgid "Order Currency" msgstr "訂單貨幣" -#: order/models.py:99 order/serializers.py:78 +#: order/models.py:99 order/serializers.py:79 msgid "Currency for this order (leave blank to use company default)" msgstr "此訂單的貨幣 (留空以使用公司默認值)" -#: order/models.py:324 +#: order/models.py:325 msgid "This order is locked and cannot be modified" msgstr "此訂單已鎖定,無法修改" -#: order/models.py:376 +#: order/models.py:377 msgid "Contact does not match selected company" msgstr "聯繫人與所選公司不匹配" -#: order/models.py:383 +#: order/models.py:384 msgid "Start date must be before target date" msgstr "開始日期必須早於目標日期" -#: order/models.py:390 +#: order/models.py:391 msgid "Address does not match selected company" msgstr "" -#: order/models.py:443 +#: order/models.py:444 msgid "Order description (optional)" msgstr "訂單描述 (可選)" -#: order/models.py:452 order/models.py:1806 +#: order/models.py:453 order/models.py:1807 msgid "Select project code for this order" msgstr "為此訂單選擇項目編碼" -#: order/models.py:458 order/models.py:1787 order/models.py:2344 +#: order/models.py:459 order/models.py:1788 order/models.py:2345 msgid "Link to external page" msgstr "鏈接到外部頁面" -#: order/models.py:465 +#: order/models.py:466 msgid "Start date" msgstr "開始日期" -#: order/models.py:466 +#: order/models.py:467 msgid "Scheduled start date for this order" msgstr "此訂單的預定開始日期" -#: order/models.py:472 order/models.py:1794 order/serializers.py:309 +#: order/models.py:473 order/models.py:1795 order/serializers.py:317 #: report/templates/report/inventree_build_order_report.html:125 msgid "Target Date" msgstr "預計日期" -#: order/models.py:474 +#: order/models.py:475 msgid "Expected date for order delivery. Order will be overdue after this date." msgstr "訂單交付的預期日期。訂單將在此日期後過期。" -#: order/models.py:494 +#: order/models.py:495 msgid "Issue Date" msgstr "簽發日期" -#: order/models.py:495 +#: order/models.py:496 msgid "Date order was issued" msgstr "訂單發出日期" -#: order/models.py:503 +#: order/models.py:504 msgid "User or group responsible for this order" msgstr "負責此訂單的用户或組" -#: order/models.py:514 +#: order/models.py:515 msgid "Point of contact for this order" msgstr "此訂單的聯繫人" -#: order/models.py:524 +#: order/models.py:525 msgid "Company address for this order" msgstr "此訂單的公司地址" -#: order/models.py:615 order/models.py:1312 +#: order/models.py:616 order/models.py:1313 msgid "Order reference" msgstr "訂單參考" -#: order/models.py:624 order/models.py:1336 order/models.py:2737 +#: order/models.py:625 order/models.py:1337 order/models.py:2738 #: stock/serializers.py:559 stock/serializers.py:988 users/models.py:542 msgid "Status" msgstr "狀態" -#: order/models.py:625 +#: order/models.py:626 msgid "Purchase order status" msgstr "採購訂單狀態" -#: order/models.py:640 +#: order/models.py:641 msgid "Company from which the items are being ordered" msgstr "訂購物品的公司" -#: order/models.py:651 +#: order/models.py:652 msgid "Supplier Reference" msgstr "供應商參考" -#: order/models.py:652 +#: order/models.py:653 msgid "Supplier order reference code" msgstr "供應商訂單參考代碼" -#: order/models.py:661 +#: order/models.py:662 msgid "received by" msgstr "接收人" -#: order/models.py:668 order/models.py:2752 +#: order/models.py:669 order/models.py:2753 msgid "Date order was completed" msgstr "訂單完成日期" -#: order/models.py:677 order/models.py:1981 +#: order/models.py:678 order/models.py:1982 msgid "Destination" msgstr "目的地" -#: order/models.py:678 order/models.py:1985 +#: order/models.py:679 order/models.py:1986 msgid "Destination for received items" msgstr "收到項目的存放目的地" -#: order/models.py:724 +#: order/models.py:725 msgid "Part supplier must match PO supplier" msgstr "零件供應商必須與採購訂單供應商匹配" -#: order/models.py:994 +#: order/models.py:995 msgid "Line item does not match purchase order" msgstr "行項目與採購訂單不匹配" -#: order/models.py:997 +#: order/models.py:998 msgid "Line item is missing a linked part" msgstr "行項目缺少關聯零件" -#: order/models.py:1011 +#: order/models.py:1012 msgid "Quantity must be a positive number" msgstr "數量必須是正數" -#: order/models.py:1323 order/models.py:2724 stock/models.py:1078 +#: order/models.py:1324 order/models.py:2725 stock/models.py:1078 #: stock/models.py:1079 stock/serializers.py:1322 #: templates/email/overdue_return_order.html:16 #: templates/email/overdue_sales_order.html:16 msgid "Customer" msgstr "客户" -#: order/models.py:1324 +#: order/models.py:1325 msgid "Company to which the items are being sold" msgstr "出售物品的公司" -#: order/models.py:1337 +#: order/models.py:1338 msgid "Sales order status" msgstr "銷售訂單狀態" -#: order/models.py:1348 order/models.py:2744 +#: order/models.py:1349 order/models.py:2745 msgid "Customer Reference " msgstr "客户參考 " -#: order/models.py:1349 order/models.py:2745 +#: order/models.py:1350 order/models.py:2746 msgid "Customer order reference code" msgstr "客户訂單參考代碼" -#: order/models.py:1353 order/models.py:2296 +#: order/models.py:1354 order/models.py:2297 msgid "Shipment Date" msgstr "發貨日期" -#: order/models.py:1362 +#: order/models.py:1363 msgid "shipped by" msgstr "發貨人" -#: order/models.py:1413 +#: order/models.py:1414 msgid "Order is already complete" msgstr "訂單已完成" -#: order/models.py:1416 +#: order/models.py:1417 msgid "Order is already cancelled" msgstr "訂單已取消" -#: order/models.py:1420 +#: order/models.py:1421 msgid "Only an open order can be marked as complete" msgstr "只有未結訂單才能標記為已完成" -#: order/models.py:1424 +#: order/models.py:1425 msgid "Order cannot be completed as there are incomplete shipments" msgstr "由於發貨不完整,訂單無法完成" -#: order/models.py:1429 +#: order/models.py:1430 msgid "Order cannot be completed as there are incomplete allocations" msgstr "訂單無法完成,因為仍有未完成的分配" -#: order/models.py:1438 +#: order/models.py:1439 msgid "Order cannot be completed as there are incomplete line items" msgstr "訂單無法完成,因為行項目不完整" -#: order/models.py:1733 order/models.py:1749 +#: order/models.py:1734 order/models.py:1750 msgid "The order is locked and cannot be modified" msgstr "此訂單已鎖定,無法修改" -#: order/models.py:1757 +#: order/models.py:1758 msgid "Item quantity" msgstr "項目數量" -#: order/models.py:1774 +#: order/models.py:1775 msgid "Line item reference" msgstr "行項目參考" -#: order/models.py:1781 +#: order/models.py:1782 msgid "Line item notes" msgstr "行項目註釋" -#: order/models.py:1796 +#: order/models.py:1797 msgid "Target date for this line item (leave blank to use the target date from the order)" msgstr "此行項目的目標日期 (留空以使用訂單中的目標日期)" -#: order/models.py:1826 +#: order/models.py:1827 msgid "Line item description (optional)" msgstr "行項目描述 (可選)" -#: order/models.py:1833 +#: order/models.py:1834 msgid "Additional context for this line" msgstr "此行的附加上下文" -#: order/models.py:1843 +#: order/models.py:1844 msgid "Unit price" msgstr "單位價格" -#: order/models.py:1862 +#: order/models.py:1863 msgid "Purchase Order Line Item" msgstr "採購訂單行項目" -#: order/models.py:1889 +#: order/models.py:1890 msgid "Supplier part must match supplier" msgstr "供應商零件必須與供應商匹配" -#: order/models.py:1894 +#: order/models.py:1895 msgid "Build order must be marked as external" msgstr "生產工單必須標記為外部" -#: order/models.py:1901 +#: order/models.py:1902 msgid "Build orders can only be linked to assembly parts" msgstr "生產工單只能連結到組裝零件" -#: order/models.py:1907 +#: order/models.py:1908 msgid "Build order part must match line item part" msgstr "生產工單的零件必須與行項目的零件一致" -#: order/models.py:1942 +#: order/models.py:1943 msgid "Supplier part" msgstr "供應商零件" -#: order/models.py:1949 +#: order/models.py:1950 msgid "Received" msgstr "已接收" -#: order/models.py:1950 +#: order/models.py:1951 msgid "Number of items received" msgstr "收到的物品數量" -#: order/models.py:1958 stock/models.py:1201 stock/serializers.py:637 +#: order/models.py:1959 stock/models.py:1201 stock/serializers.py:637 msgid "Purchase Price" msgstr "採購價格" -#: order/models.py:1959 +#: order/models.py:1960 msgid "Unit purchase price" msgstr "每單位的採購價格" -#: order/models.py:1975 +#: order/models.py:1976 msgid "External Build Order to be fulfilled by this line item" msgstr "由此行項目履行的外部生產工單" -#: order/models.py:2038 +#: order/models.py:2039 msgid "Purchase Order Extra Line" msgstr "採購訂單附加行" -#: order/models.py:2067 +#: order/models.py:2068 msgid "Sales Order Line Item" msgstr "銷售訂單行項目" -#: order/models.py:2092 +#: order/models.py:2093 msgid "Only salable parts can be assigned to a sales order" msgstr "只有可銷售的零件才能分配給銷售訂單" -#: order/models.py:2118 +#: order/models.py:2119 msgid "Sale Price" msgstr "售出價格" -#: order/models.py:2119 +#: order/models.py:2120 msgid "Unit sale price" msgstr "單位售出價格" -#: order/models.py:2128 order/status_codes.py:50 +#: order/models.py:2129 order/status_codes.py:50 msgid "Shipped" msgstr "已配送" -#: order/models.py:2129 +#: order/models.py:2130 msgid "Shipped quantity" msgstr "發貨數量" -#: order/models.py:2240 +#: order/models.py:2241 msgid "Sales Order Shipment" msgstr "銷售訂單發貨" -#: order/models.py:2253 +#: order/models.py:2254 msgid "Shipment address must match the customer" msgstr "" -#: order/models.py:2289 +#: order/models.py:2290 msgid "Shipping address for this shipment" msgstr "" -#: order/models.py:2297 +#: order/models.py:2298 msgid "Date of shipment" msgstr "發貨日期" -#: order/models.py:2303 +#: order/models.py:2304 msgid "Delivery Date" msgstr "送達日期" -#: order/models.py:2304 +#: order/models.py:2305 msgid "Date of delivery of shipment" msgstr "裝運交貨日期" -#: order/models.py:2312 +#: order/models.py:2313 msgid "Checked By" msgstr "審核人" -#: order/models.py:2313 +#: order/models.py:2314 msgid "User who checked this shipment" msgstr "檢查此裝運的用户" -#: order/models.py:2320 order/models.py:2574 order/serializers.py:1711 -#: order/serializers.py:1835 +#: order/models.py:2321 order/models.py:2575 order/serializers.py:1725 +#: order/serializers.py:1849 #: report/templates/report/inventree_sales_order_shipment_report.html:14 msgid "Shipment" msgstr "配送" -#: order/models.py:2321 +#: order/models.py:2322 msgid "Shipment number" msgstr "配送單號" -#: order/models.py:2329 +#: order/models.py:2330 msgid "Tracking Number" msgstr "跟蹤單號" -#: order/models.py:2330 +#: order/models.py:2331 msgid "Shipment tracking information" msgstr "配送跟蹤信息" -#: order/models.py:2337 +#: order/models.py:2338 msgid "Invoice Number" msgstr "發票編號" -#: order/models.py:2338 +#: order/models.py:2339 msgid "Reference number for associated invoice" msgstr "相關發票的參考號" -#: order/models.py:2377 +#: order/models.py:2378 msgid "Shipment has already been sent" msgstr "貨物已發出" -#: order/models.py:2380 +#: order/models.py:2381 msgid "Shipment has no allocated stock items" msgstr "發貨沒有分配庫存項目" -#: order/models.py:2387 +#: order/models.py:2388 msgid "Shipment must be checked before it can be completed" msgstr "" -#: order/models.py:2466 +#: order/models.py:2467 msgid "Sales Order Extra Line" msgstr "銷售訂單加行" -#: order/models.py:2495 +#: order/models.py:2496 msgid "Sales Order Allocation" msgstr "銷售訂單分配" -#: order/models.py:2518 order/models.py:2520 +#: order/models.py:2519 order/models.py:2521 msgid "Stock item has not been assigned" msgstr "庫存項目尚未分配" -#: order/models.py:2527 +#: order/models.py:2528 msgid "Cannot allocate stock item to a line with a different part" msgstr "無法將庫存項目分配給具有不同零件的行" -#: order/models.py:2530 +#: order/models.py:2531 msgid "Cannot allocate stock to a line without a part" msgstr "無法將庫存分配給沒有零件的生產線" -#: order/models.py:2533 +#: order/models.py:2534 msgid "Allocation quantity cannot exceed stock quantity" msgstr "分配數量不能超過庫存數量" -#: order/models.py:2552 order/serializers.py:1581 +#: order/models.py:2553 order/serializers.py:1595 msgid "Quantity must be 1 for serialized stock item" msgstr "序列化庫存項目的數量必須為1" -#: order/models.py:2555 +#: order/models.py:2556 msgid "Sales order does not match shipment" msgstr "銷售訂單與發貨不匹配" -#: order/models.py:2556 plugin/base/barcodes/api.py:642 +#: order/models.py:2557 plugin/base/barcodes/api.py:642 msgid "Shipment does not match sales order" msgstr "發貨與銷售訂單不匹配" -#: order/models.py:2564 +#: order/models.py:2565 msgid "Line" msgstr "行" -#: order/models.py:2575 +#: order/models.py:2576 msgid "Sales order shipment reference" msgstr "銷售訂單發貨參考" -#: order/models.py:2588 order/models.py:3007 +#: order/models.py:2589 order/models.py:3008 msgid "Item" msgstr "項目" -#: order/models.py:2589 +#: order/models.py:2590 msgid "Select stock item to allocate" msgstr "選擇要分配的庫存項目" -#: order/models.py:2598 +#: order/models.py:2599 msgid "Enter stock allocation quantity" msgstr "輸入庫存分配數量" -#: order/models.py:2713 +#: order/models.py:2714 msgid "Return Order reference" msgstr "退貨訂單參考" -#: order/models.py:2725 +#: order/models.py:2726 msgid "Company from which items are being returned" msgstr "退回物品的公司" -#: order/models.py:2738 +#: order/models.py:2739 msgid "Return order status" msgstr "退貨訂單狀態" -#: order/models.py:2965 +#: order/models.py:2966 msgid "Return Order Line Item" msgstr "退貨訂單行項目" -#: order/models.py:2978 +#: order/models.py:2979 msgid "Stock item must be specified" msgstr "必須指定庫存項目" -#: order/models.py:2982 +#: order/models.py:2983 msgid "Return quantity exceeds stock quantity" msgstr "退回數量超過庫存數量" -#: order/models.py:2987 +#: order/models.py:2988 msgid "Return quantity must be greater than zero" msgstr "退回數量必須大於零" -#: order/models.py:2992 +#: order/models.py:2993 msgid "Invalid quantity for serialized stock item" msgstr "序列化庫存項目的數量無效" -#: order/models.py:3008 +#: order/models.py:3009 msgid "Select item to return from customer" msgstr "選擇要從客户處退回的商品" -#: order/models.py:3023 +#: order/models.py:3024 msgid "Received Date" msgstr "接收日期" -#: order/models.py:3024 +#: order/models.py:3025 msgid "The date this this return item was received" msgstr "收到此退貨的日期" -#: order/models.py:3036 +#: order/models.py:3037 msgid "Outcome" msgstr "結果" -#: order/models.py:3037 +#: order/models.py:3038 msgid "Outcome for this line item" msgstr "該行項目的結果" -#: order/models.py:3044 +#: order/models.py:3045 msgid "Cost associated with return or repair for this line item" msgstr "與此行項目的退貨或維修相關的成本" -#: order/models.py:3054 +#: order/models.py:3055 msgid "Return Order Extra Line" msgstr "退貨訂單附加行" -#: order/serializers.py:91 +#: order/serializers.py:92 msgid "Order ID" msgstr "訂單ID" -#: order/serializers.py:91 +#: order/serializers.py:92 msgid "ID of the order to duplicate" msgstr "要複製的訂單ID" -#: order/serializers.py:97 +#: order/serializers.py:98 msgid "Copy Lines" msgstr "複製行" -#: order/serializers.py:98 +#: order/serializers.py:99 msgid "Copy line items from the original order" msgstr "從原始訂單複製行項目" -#: order/serializers.py:104 +#: order/serializers.py:105 msgid "Copy Extra Lines" msgstr "複製額外行" -#: order/serializers.py:105 +#: order/serializers.py:106 msgid "Copy extra line items from the original order" msgstr "從原始訂單複製額外的行項目" -#: order/serializers.py:120 +#: order/serializers.py:121 #: report/templates/report/inventree_purchase_order_report.html:29 #: report/templates/report/inventree_return_order_report.html:19 #: report/templates/report/inventree_sales_order_report.html:22 msgid "Line Items" msgstr "行項目" -#: order/serializers.py:125 +#: order/serializers.py:126 msgid "Completed Lines" msgstr "已完成行項目" -#: order/serializers.py:192 +#: order/serializers.py:199 msgid "Duplicate Order" msgstr "複製訂單" -#: order/serializers.py:193 +#: order/serializers.py:200 msgid "Specify options for duplicating this order" msgstr "指定複製此訂單的選項" -#: order/serializers.py:270 +#: order/serializers.py:278 msgid "Invalid order ID" msgstr "訂單ID不正確" -#: order/serializers.py:466 +#: order/serializers.py:477 msgid "Supplier Name" msgstr "供應商名稱" -#: order/serializers.py:510 +#: order/serializers.py:521 msgid "Order cannot be cancelled" msgstr "訂單不能取消" -#: order/serializers.py:525 order/serializers.py:1602 +#: order/serializers.py:536 order/serializers.py:1616 msgid "Allow order to be closed with incomplete line items" msgstr "允許關閉行項目不完整的訂單" -#: order/serializers.py:535 order/serializers.py:1612 +#: order/serializers.py:546 order/serializers.py:1626 msgid "Order has incomplete line items" msgstr "訂單中的行項目不完整" -#: order/serializers.py:665 +#: order/serializers.py:676 msgid "Order is not open" msgstr "訂單未打開" -#: order/serializers.py:692 +#: order/serializers.py:703 msgid "Auto Pricing" msgstr "自動定價" -#: order/serializers.py:694 +#: order/serializers.py:705 msgid "Automatically calculate purchase price based on supplier part data" msgstr "根據供應商零件數據自動計算採購價格" -#: order/serializers.py:704 +#: order/serializers.py:715 msgid "Purchase price currency" msgstr "購買價格貨幣" -#: order/serializers.py:718 +#: order/serializers.py:729 msgid "Merge Items" msgstr "合併項目" -#: order/serializers.py:720 +#: order/serializers.py:731 msgid "Merge items with the same part, destination and target date into one line item" msgstr "將具有相同零件、目的地和目標日期的項目合併到一個行項目中" -#: order/serializers.py:727 part/serializers.py:560 +#: order/serializers.py:738 part/serializers.py:471 msgid "SKU" msgstr "庫存量單位" -#: order/serializers.py:741 part/models.py:1089 part/serializers.py:372 +#: order/serializers.py:752 part/models.py:1177 part/serializers.py:337 msgid "Internal Part Number" msgstr "內部零件編號" -#: order/serializers.py:749 +#: order/serializers.py:760 msgid "Internal Part Name" msgstr "內部零件名稱" -#: order/serializers.py:765 +#: order/serializers.py:776 msgid "Supplier part must be specified" msgstr "必須指定供應商零件" -#: order/serializers.py:768 +#: order/serializers.py:779 msgid "Purchase order must be specified" msgstr "必須指定採購訂單" -#: order/serializers.py:776 +#: order/serializers.py:787 msgid "Supplier must match purchase order" msgstr "供應商必須匹配採購訂單" -#: order/serializers.py:777 +#: order/serializers.py:788 msgid "Purchase order must match supplier" msgstr "採購訂單必須與供應商匹配" -#: order/serializers.py:825 order/serializers.py:1682 +#: order/serializers.py:836 order/serializers.py:1696 msgid "Line Item" msgstr "行項目" -#: order/serializers.py:834 order/serializers.py:974 order/serializers.py:2043 +#: order/serializers.py:845 order/serializers.py:985 order/serializers.py:2060 msgid "Select destination location for received items" msgstr "為收到的物品選擇目的地位置" -#: order/serializers.py:850 +#: order/serializers.py:861 msgid "Enter batch code for incoming stock items" msgstr "輸入入庫項目的批號" -#: order/serializers.py:857 stock/models.py:1160 +#: order/serializers.py:868 stock/models.py:1160 #: templates/email/stale_stock_notification.html:22 users/models.py:137 msgid "Expiry Date" msgstr "有效期至" -#: order/serializers.py:858 +#: order/serializers.py:869 msgid "Enter expiry date for incoming stock items" msgstr "輸入入庫庫存項目的到期日" -#: order/serializers.py:866 +#: order/serializers.py:877 msgid "Enter serial numbers for incoming stock items" msgstr "輸入入庫庫存項目的序列號" -#: order/serializers.py:876 +#: order/serializers.py:887 msgid "Override packaging information for incoming stock items" msgstr "覆蓋傳入庫存項目的包裝資料" -#: order/serializers.py:884 order/serializers.py:2048 +#: order/serializers.py:895 order/serializers.py:2065 msgid "Additional note for incoming stock items" msgstr "傳入庫存項目的附加説明" -#: order/serializers.py:891 +#: order/serializers.py:902 msgid "Barcode" msgstr "條形碼" -#: order/serializers.py:892 +#: order/serializers.py:903 msgid "Scanned barcode" msgstr "掃描條形碼" -#: order/serializers.py:908 +#: order/serializers.py:919 msgid "Barcode is already in use" msgstr "條形碼已被使用" -#: order/serializers.py:991 order/serializers.py:2067 +#: order/serializers.py:1002 order/serializers.py:2084 msgid "Line items must be provided" msgstr "必須提供行項目" -#: order/serializers.py:1010 +#: order/serializers.py:1021 msgid "Destination location must be specified" msgstr "必須指定目標位置" -#: order/serializers.py:1017 +#: order/serializers.py:1028 msgid "Supplied barcode values must be unique" msgstr "提供的條形碼值必須是唯一的" -#: order/serializers.py:1121 +#: order/serializers.py:1135 msgid "Shipments" msgstr "配送紀錄" -#: order/serializers.py:1125 +#: order/serializers.py:1139 msgid "Completed Shipments" msgstr "完成配送" -#: order/serializers.py:1293 +#: order/serializers.py:1307 msgid "Sale price currency" msgstr "售出價格貨幣" -#: order/serializers.py:1339 +#: order/serializers.py:1353 msgid "Allocated Items" msgstr "已分配項目" -#: order/serializers.py:1484 +#: order/serializers.py:1498 msgid "No shipment details provided" msgstr "未提供裝運詳細信息" -#: order/serializers.py:1545 order/serializers.py:1691 +#: order/serializers.py:1559 order/serializers.py:1705 msgid "Line item is not associated with this order" msgstr "行項目與此訂單不關聯" -#: order/serializers.py:1564 +#: order/serializers.py:1578 msgid "Quantity must be positive" msgstr "數量必須為正" -#: order/serializers.py:1701 +#: order/serializers.py:1715 msgid "Enter serial numbers to allocate" msgstr "輸入要分配的序列號" -#: order/serializers.py:1723 order/serializers.py:1843 +#: order/serializers.py:1737 order/serializers.py:1857 msgid "Shipment has already been shipped" msgstr "貨物已發出" -#: order/serializers.py:1726 order/serializers.py:1846 +#: order/serializers.py:1740 order/serializers.py:1860 msgid "Shipment is not associated with this order" msgstr "發貨與此訂單無關" -#: order/serializers.py:1781 +#: order/serializers.py:1795 msgid "No match found for the following serial numbers" msgstr "未找到以下序列號的匹配項" -#: order/serializers.py:1788 +#: order/serializers.py:1802 msgid "The following serial numbers are unavailable" msgstr "以下序列號不可用" -#: order/serializers.py:2009 +#: order/serializers.py:2026 msgid "Return order line item" msgstr "退貨訂單行項目" -#: order/serializers.py:2019 +#: order/serializers.py:2036 msgid "Line item does not match return order" msgstr "行項目與退貨訂單不匹配" -#: order/serializers.py:2022 +#: order/serializers.py:2039 msgid "Line item has already been received" msgstr "行項目已收到" -#: order/serializers.py:2059 +#: order/serializers.py:2076 msgid "Items can only be received against orders which are in progress" msgstr "只能根據正在進行的訂單接收物品" -#: order/serializers.py:2124 +#: order/serializers.py:2141 msgid "Quantity to return" msgstr "退回數量" -#: order/serializers.py:2140 +#: order/serializers.py:2157 msgid "Line price currency" msgstr "行價格貨幣" @@ -5431,1190 +5559,1109 @@ msgstr "逾期退貨訂單" msgid "Return order {ro} is now overdue" msgstr "退貨訂單 {ro} 已逾期" -#: part/api.py:108 +#: part/api.py:103 msgid "Starred" msgstr "已加星標" -#: part/api.py:110 +#: part/api.py:105 msgid "Filter by starred categories" msgstr "按星標類別篩選" -#: part/api.py:127 stock/api.py:288 +#: part/api.py:122 stock/api.py:288 msgid "Depth" msgstr "深度" -#: part/api.py:127 +#: part/api.py:122 msgid "Filter by category depth" msgstr "按類別深度篩選" -#: part/api.py:145 stock/api.py:306 +#: part/api.py:140 stock/api.py:306 msgid "Top Level" msgstr "頂級" -#: part/api.py:147 +#: part/api.py:142 msgid "Filter by top-level categories" msgstr "按頂級類別篩選" -#: part/api.py:160 stock/api.py:321 +#: part/api.py:155 stock/api.py:321 msgid "Cascade" msgstr "級聯" -#: part/api.py:162 +#: part/api.py:157 msgid "Include sub-categories in filtered results" msgstr "在篩選結果中包含子類別" -#: part/api.py:182 +#: part/api.py:177 msgid "Parent" msgstr "父類" -#: part/api.py:184 +#: part/api.py:179 msgid "Filter by parent category" msgstr "按父類別篩選" -#: part/api.py:219 +#: part/api.py:214 msgid "Exclude sub-categories under the specified category" msgstr "排除指定類別下的子類別" -#: part/api.py:445 +#: part/api.py:440 msgid "Has Results" msgstr "有結果" -#: part/api.py:666 +#: part/api.py:661 msgid "Is Variant" msgstr "為變體" -#: part/api.py:674 +#: part/api.py:669 msgid "Is Revision" msgstr "是修訂版本" -#: part/api.py:684 +#: part/api.py:679 msgid "Has Revisions" msgstr "有修訂版本" -#: part/api.py:865 +#: part/api.py:860 msgid "BOM Valid" msgstr "物料清單合規" -#: part/api.py:974 +#: part/api.py:969 msgid "Cascade Categories" msgstr "" -#: part/api.py:975 +#: part/api.py:970 msgid "If true, include items in child categories of the given category" msgstr "" -#: part/api.py:981 +#: part/api.py:976 msgid "Filter by numeric category ID or the literal 'null'" msgstr "" -#: part/api.py:1533 +#: part/api.py:1258 msgid "Assembly part is testable" msgstr "裝配部份是可測試的" -#: part/api.py:1542 +#: part/api.py:1267 msgid "Component part is testable" msgstr "組件部份是可測試的" -#: part/api.py:1611 +#: part/api.py:1336 msgid "Uses" msgstr "使用" -#: part/models.py:96 part/models.py:4163 +#: part/models.py:93 part/models.py:436 #: templates/email/part_event_notification.html:16 msgid "Part Category" msgstr "零件類別" -#: part/models.py:97 users/ruleset.py:27 +#: part/models.py:94 users/ruleset.py:27 msgid "Part Categories" msgstr "零件類別" -#: part/models.py:115 part/models.py:1125 +#: part/models.py:112 part/models.py:1213 msgid "Default Location" msgstr "默認位置" -#: part/models.py:116 +#: part/models.py:113 msgid "Default location for parts in this category" msgstr "此類別零件的默認庫存地點" -#: part/models.py:121 stock/models.py:216 +#: part/models.py:118 stock/models.py:216 msgid "Structural" msgstr "結構性" -#: part/models.py:123 +#: part/models.py:120 msgid "Parts may not be directly assigned to a structural category, but may be assigned to child categories." msgstr "零件可能無法直接分配到結構類別,但可以分配到子類別。" -#: part/models.py:132 +#: part/models.py:129 msgid "Default keywords" msgstr "默認關鍵字" -#: part/models.py:133 +#: part/models.py:130 msgid "Default keywords for parts in this category" msgstr "此類別零件的默認關鍵字" -#: part/models.py:140 stock/models.py:97 stock/models.py:198 +#: part/models.py:137 stock/models.py:97 stock/models.py:198 msgid "Icon" msgstr "圖標" -#: part/models.py:141 part/serializers.py:148 part/serializers.py:167 +#: part/models.py:138 part/serializers.py:147 part/serializers.py:166 #: stock/models.py:199 msgid "Icon (optional)" msgstr "圖標(可選)" -#: part/models.py:185 +#: part/models.py:182 msgid "You cannot make this part category structural because some parts are already assigned to it!" msgstr "您不能使這個零件類別結構化,因為有些零件已經分配給了它!" -#: part/models.py:473 part/serializers.py:119 part/serializers.py:310 -#: users/ruleset.py:28 +#: part/models.py:392 +msgid "Part Category Parameter Template" +msgstr "零件類別參數模板" + +#: part/models.py:448 +msgid "Default Value" +msgstr "默認值" + +#: part/models.py:449 +msgid "Default Parameter Value" +msgstr "默認參數值" + +#: part/models.py:551 part/serializers.py:118 users/ruleset.py:28 msgid "Parts" msgstr "零件" -#: part/models.py:525 +#: part/models.py:597 +msgid "Cannot delete parameters of a locked part" +msgstr "" + +#: part/models.py:602 +msgid "Cannot modify parameters of a locked part" +msgstr "" + +#: part/models.py:613 msgid "Cannot delete this part as it is locked" msgstr "無法刪除這個零件,因為它已被鎖定" -#: part/models.py:528 +#: part/models.py:616 msgid "Cannot delete this part as it is still active" msgstr "無法刪除這個零件,因為它仍然處於活動狀態" -#: part/models.py:533 +#: part/models.py:621 msgid "Cannot delete this part as it is used in an assembly" msgstr "無法刪除這個零件,因為它被使用在了裝配中" -#: part/models.py:616 part/models.py:623 +#: part/models.py:704 part/models.py:711 #, python-brace-format msgid "Part '{self}' cannot be used in BOM for '{parent}' (recursive)" msgstr "零件 \"{self}\" 不能用在 \"{parent}\" 的物料清單 (遞歸)" -#: part/models.py:635 +#: part/models.py:723 #, python-brace-format msgid "Part '{parent}' is used in BOM for '{self}' (recursive)" msgstr "零件 \"{parent}\" 被使用在了 \"{self}\" 的物料清單 (遞歸)" -#: part/models.py:702 +#: part/models.py:790 #, python-brace-format msgid "IPN must match regex pattern {pattern}" msgstr "內部零件號必須匹配正則表達式 {pattern}" -#: part/models.py:710 +#: part/models.py:798 msgid "Part cannot be a revision of itself" msgstr "零件不能是對自身的修訂" -#: part/models.py:717 +#: part/models.py:805 msgid "Cannot make a revision of a part which is already a revision" msgstr "無法對已經是修訂版本的零件進行修訂" -#: part/models.py:724 +#: part/models.py:812 msgid "Revision code must be specified" msgstr "必須指定修訂代碼" -#: part/models.py:731 +#: part/models.py:819 msgid "Revisions are only allowed for assembly parts" msgstr "修訂僅對裝配零件允許" -#: part/models.py:738 +#: part/models.py:826 msgid "Cannot make a revision of a template part" msgstr "無法對模版零件進行修訂" -#: part/models.py:744 +#: part/models.py:832 msgid "Parent part must point to the same template" msgstr "上級零件必須指向相同的模版" -#: part/models.py:841 +#: part/models.py:929 msgid "Stock item with this serial number already exists" msgstr "該序列號庫存項己存在" -#: part/models.py:971 +#: part/models.py:1059 msgid "Duplicate IPN not allowed in part settings" msgstr "在零件設置中不允許重複的內部零件號" -#: part/models.py:983 +#: part/models.py:1071 msgid "Duplicate part revision already exists." msgstr "重複的零件修訂版本已經存在。" -#: part/models.py:992 +#: part/models.py:1080 msgid "Part with this Name, IPN and Revision already exists." msgstr "有這個名字,內部零件號,和修訂版本的零件已經存在" -#: part/models.py:1007 +#: part/models.py:1095 msgid "Parts cannot be assigned to structural part categories!" msgstr "零件不能分配到結構性零件類別!" -#: part/models.py:1039 +#: part/models.py:1127 msgid "Part name" msgstr "零件名稱" -#: part/models.py:1044 +#: part/models.py:1132 msgid "Is Template" msgstr "是模板" -#: part/models.py:1045 +#: part/models.py:1133 msgid "Is this part a template part?" msgstr "這個零件是一個模版零件嗎?" -#: part/models.py:1055 +#: part/models.py:1143 msgid "Is this part a variant of another part?" msgstr "這個零件是另一零件的變體嗎?" -#: part/models.py:1056 +#: part/models.py:1144 msgid "Variant Of" msgstr "變體" -#: part/models.py:1063 +#: part/models.py:1151 msgid "Part description (optional)" msgstr "零件描述(可選)" -#: part/models.py:1070 +#: part/models.py:1158 msgid "Keywords" msgstr "關鍵詞" -#: part/models.py:1071 +#: part/models.py:1159 msgid "Part keywords to improve visibility in search results" msgstr "提高搜索結果可見性的零件關鍵字" -#: part/models.py:1081 +#: part/models.py:1169 msgid "Part category" msgstr "零件類別" -#: part/models.py:1088 part/serializers.py:929 +#: part/models.py:1176 part/serializers.py:814 #: report/templates/report/inventree_stock_location_report.html:103 msgid "IPN" msgstr "內部零件號 IPN" -#: part/models.py:1096 +#: part/models.py:1184 msgid "Part revision or version number" msgstr "零件修訂版本或版本號" -#: part/models.py:1097 report/models.py:228 +#: part/models.py:1185 report/models.py:228 msgid "Revision" msgstr "版本" -#: part/models.py:1106 +#: part/models.py:1194 msgid "Is this part a revision of another part?" msgstr "這零件是另一零件的修訂版本嗎?" -#: part/models.py:1107 +#: part/models.py:1195 msgid "Revision Of" msgstr "修訂版本" -#: part/models.py:1123 +#: part/models.py:1211 msgid "Where is this item normally stored?" msgstr "該物品通常存放在哪裏?" -#: part/models.py:1169 +#: part/models.py:1257 msgid "Default Supplier" msgstr "默認供應商" -#: part/models.py:1170 +#: part/models.py:1258 msgid "Default supplier part" msgstr "默認供應商零件" -#: part/models.py:1177 +#: part/models.py:1265 msgid "Default Expiry" msgstr "默認到期" -#: part/models.py:1178 +#: part/models.py:1266 msgid "Expiry time (in days) for stock items of this part" msgstr "此零件庫存項的過期時間 (天)" -#: part/models.py:1186 part/serializers.py:1003 +#: part/models.py:1274 part/serializers.py:888 msgid "Minimum Stock" msgstr "最低庫存" -#: part/models.py:1187 +#: part/models.py:1275 msgid "Minimum allowed stock level" msgstr "允許的最小庫存量" -#: part/models.py:1196 +#: part/models.py:1284 msgid "Units of measure for this part" msgstr "此零件的計量單位" -#: part/models.py:1203 +#: part/models.py:1291 msgid "Can this part be built from other parts?" msgstr "這個零件可由其他零件加工而成嗎?" -#: part/models.py:1209 +#: part/models.py:1297 msgid "Can this part be used to build other parts?" msgstr "這個零件可用於創建其他零件嗎?" -#: part/models.py:1215 +#: part/models.py:1303 msgid "Does this part have tracking for unique items?" msgstr "此零件是否有唯一物品的追蹤功能" -#: part/models.py:1221 +#: part/models.py:1309 msgid "Can this part have test results recorded against it?" msgstr "這一部分能否記錄到測試結果?" -#: part/models.py:1227 +#: part/models.py:1315 msgid "Can this part be purchased from external suppliers?" msgstr "這個零件可從外部供應商購買嗎?" -#: part/models.py:1233 +#: part/models.py:1321 msgid "Can this part be sold to customers?" msgstr "此零件可以銷售給客户嗎?" -#: part/models.py:1237 +#: part/models.py:1325 msgid "Is this part active?" msgstr "這個零件是否已激活?" -#: part/models.py:1243 +#: part/models.py:1331 msgid "Locked parts cannot be edited" msgstr "無法編輯鎖定的零件" -#: part/models.py:1249 +#: part/models.py:1337 msgid "Is this a virtual part, such as a software product or license?" msgstr "這是一個虛擬零件,例如一個軟件產品或許可證嗎?" -#: part/models.py:1254 +#: part/models.py:1342 msgid "BOM Validated" msgstr "BOM 已驗證" -#: part/models.py:1255 +#: part/models.py:1343 msgid "Is the BOM for this part valid?" msgstr "此零件的 BOM 是否已通過驗證?" -#: part/models.py:1261 +#: part/models.py:1349 msgid "BOM checksum" msgstr "物料清單校驗和" -#: part/models.py:1262 +#: part/models.py:1350 msgid "Stored BOM checksum" msgstr "保存的物料清單校驗和" -#: part/models.py:1270 +#: part/models.py:1358 msgid "BOM checked by" msgstr "物料清單檢查人" -#: part/models.py:1275 +#: part/models.py:1363 msgid "BOM checked date" msgstr "物料清單檢查日期" -#: part/models.py:1291 +#: part/models.py:1379 msgid "Creation User" msgstr "新建用户" -#: part/models.py:1301 +#: part/models.py:1389 msgid "Owner responsible for this part" msgstr "此零件的負責人" -#: part/models.py:2258 +#: part/models.py:2346 msgid "Sell multiple" msgstr "出售多個" -#: part/models.py:3286 +#: part/models.py:3350 msgid "Currency used to cache pricing calculations" msgstr "用於緩存定價計算的貨幣" -#: part/models.py:3302 +#: part/models.py:3366 msgid "Minimum BOM Cost" msgstr "最低物料清單成本" -#: part/models.py:3303 +#: part/models.py:3367 msgid "Minimum cost of component parts" msgstr "元件的最低成本" -#: part/models.py:3309 +#: part/models.py:3373 msgid "Maximum BOM Cost" msgstr "物料清單的最高成本" -#: part/models.py:3310 +#: part/models.py:3374 msgid "Maximum cost of component parts" msgstr "元件的最高成本" -#: part/models.py:3316 +#: part/models.py:3380 msgid "Minimum Purchase Cost" msgstr "最低購買成本" -#: part/models.py:3317 +#: part/models.py:3381 msgid "Minimum historical purchase cost" msgstr "最高歷史購買成本" -#: part/models.py:3323 +#: part/models.py:3387 msgid "Maximum Purchase Cost" msgstr "最大購買成本" -#: part/models.py:3324 +#: part/models.py:3388 msgid "Maximum historical purchase cost" msgstr "最高歷史購買成本" -#: part/models.py:3330 +#: part/models.py:3394 msgid "Minimum Internal Price" msgstr "最低內部價格" -#: part/models.py:3331 +#: part/models.py:3395 msgid "Minimum cost based on internal price breaks" msgstr "基於內部批發價的最低成本" -#: part/models.py:3337 +#: part/models.py:3401 msgid "Maximum Internal Price" msgstr "最大內部價格" -#: part/models.py:3338 +#: part/models.py:3402 msgid "Maximum cost based on internal price breaks" msgstr "基於內部批發價的最高成本" -#: part/models.py:3344 +#: part/models.py:3408 msgid "Minimum Supplier Price" msgstr "供應商最低價格" -#: part/models.py:3345 +#: part/models.py:3409 msgid "Minimum price of part from external suppliers" msgstr "外部供應商零件的最低價格" -#: part/models.py:3351 +#: part/models.py:3415 msgid "Maximum Supplier Price" msgstr "供應商最高價格" -#: part/models.py:3352 +#: part/models.py:3416 msgid "Maximum price of part from external suppliers" msgstr "來自外部供應商的商零件的最高價格" -#: part/models.py:3358 +#: part/models.py:3422 msgid "Minimum Variant Cost" msgstr "最小變體成本" -#: part/models.py:3359 +#: part/models.py:3423 msgid "Calculated minimum cost of variant parts" msgstr "計算出的變體零件的最低成本" -#: part/models.py:3365 +#: part/models.py:3429 msgid "Maximum Variant Cost" msgstr "最大變體成本" -#: part/models.py:3366 +#: part/models.py:3430 msgid "Calculated maximum cost of variant parts" msgstr "計算出的變體零件的最大成本" -#: part/models.py:3372 part/models.py:3386 +#: part/models.py:3436 part/models.py:3450 msgid "Minimum Cost" msgstr "最低成本" -#: part/models.py:3373 +#: part/models.py:3437 msgid "Override minimum cost" msgstr "覆蓋最低成本" -#: part/models.py:3379 part/models.py:3393 +#: part/models.py:3443 part/models.py:3457 msgid "Maximum Cost" msgstr "最高成本" -#: part/models.py:3380 +#: part/models.py:3444 msgid "Override maximum cost" msgstr "覆蓋最大成本" -#: part/models.py:3387 +#: part/models.py:3451 msgid "Calculated overall minimum cost" msgstr "計算總最低成本" -#: part/models.py:3394 +#: part/models.py:3458 msgid "Calculated overall maximum cost" msgstr "計算總最大成本" -#: part/models.py:3400 +#: part/models.py:3464 msgid "Minimum Sale Price" msgstr "最低售出價格" -#: part/models.py:3401 +#: part/models.py:3465 msgid "Minimum sale price based on price breaks" msgstr "基於批發價的最低售出價格" -#: part/models.py:3407 +#: part/models.py:3471 msgid "Maximum Sale Price" msgstr "最高售出價格" -#: part/models.py:3408 +#: part/models.py:3472 msgid "Maximum sale price based on price breaks" msgstr "基於批發價的最大售出價格" -#: part/models.py:3414 +#: part/models.py:3478 msgid "Minimum Sale Cost" msgstr "最低銷售成本" -#: part/models.py:3415 +#: part/models.py:3479 msgid "Minimum historical sale price" msgstr "歷史最低售出價格" -#: part/models.py:3421 +#: part/models.py:3485 msgid "Maximum Sale Cost" msgstr "最高銷售成本" -#: part/models.py:3422 +#: part/models.py:3486 msgid "Maximum historical sale price" msgstr "歷史最高售出價格" -#: part/models.py:3440 +#: part/models.py:3504 msgid "Part for stocktake" msgstr "用於盤點的零件" -#: part/models.py:3445 +#: part/models.py:3509 msgid "Item Count" msgstr "物品數量" -#: part/models.py:3446 +#: part/models.py:3510 msgid "Number of individual stock entries at time of stocktake" msgstr "盤點時的個別庫存條目數" -#: part/models.py:3454 +#: part/models.py:3518 msgid "Total available stock at time of stocktake" msgstr "盤點時可用庫存總額" -#: part/models.py:3458 report/templates/report/inventree_test_report.html:106 +#: part/models.py:3522 report/templates/report/inventree_test_report.html:106 msgid "Date" msgstr "日期" -#: part/models.py:3459 +#: part/models.py:3523 msgid "Date stocktake was performed" msgstr "進行盤點的日期" -#: part/models.py:3466 +#: part/models.py:3530 msgid "Minimum Stock Cost" msgstr "最低庫存成本" -#: part/models.py:3467 +#: part/models.py:3531 msgid "Estimated minimum cost of stock on hand" msgstr "現有存庫存最低成本估算" -#: part/models.py:3473 +#: part/models.py:3537 msgid "Maximum Stock Cost" msgstr "最高庫存成本" -#: part/models.py:3474 +#: part/models.py:3538 msgid "Estimated maximum cost of stock on hand" msgstr "目前庫存最高成本估算" -#: part/models.py:3484 +#: part/models.py:3548 msgid "Part Sale Price Break" msgstr "零件售出價格折扣" -#: part/models.py:3596 +#: part/models.py:3660 msgid "Part Test Template" msgstr "零件測試模板" -#: part/models.py:3622 +#: part/models.py:3686 msgid "Invalid template name - must include at least one alphanumeric character" msgstr "模板名稱無效 - 必須包含至少一個字母或者數字" -#: part/models.py:3643 part/models.py:3816 -msgid "Choices must be unique" -msgstr "選擇必須是唯一的" - -#: part/models.py:3654 +#: part/models.py:3718 msgid "Test templates can only be created for testable parts" msgstr "測試模板只能為可拆分的部件創建" -#: part/models.py:3668 +#: part/models.py:3732 msgid "Test template with the same key already exists for part" msgstr "零件已存在具有相同主鍵的測試模板" -#: part/models.py:3685 +#: part/models.py:3749 msgid "Test Name" msgstr "測試名" -#: part/models.py:3686 +#: part/models.py:3750 msgid "Enter a name for the test" msgstr "輸入測試的名稱" -#: part/models.py:3692 +#: part/models.py:3756 msgid "Test Key" msgstr "測試主鍵" -#: part/models.py:3693 +#: part/models.py:3757 msgid "Simplified key for the test" msgstr "簡化測試主鍵" -#: part/models.py:3700 +#: part/models.py:3764 msgid "Test Description" msgstr "測試説明" -#: part/models.py:3701 +#: part/models.py:3765 msgid "Enter description for this test" msgstr "輸入測試的描述" -#: part/models.py:3705 report/models.py:287 -msgid "Enabled" -msgstr "已啓用" - -#: part/models.py:3705 +#: part/models.py:3769 msgid "Is this test enabled?" msgstr "此測試是否已啓用?" -#: part/models.py:3710 +#: part/models.py:3774 msgid "Required" msgstr "必須的" -#: part/models.py:3711 +#: part/models.py:3775 msgid "Is this test required to pass?" msgstr "需要此測試才能通過嗎?" -#: part/models.py:3716 +#: part/models.py:3780 msgid "Requires Value" msgstr "需要值" -#: part/models.py:3717 +#: part/models.py:3781 msgid "Does this test require a value when adding a test result?" msgstr "添加測試結果時是否需要一個值?" -#: part/models.py:3722 +#: part/models.py:3786 msgid "Requires Attachment" msgstr "需要附件" -#: part/models.py:3724 +#: part/models.py:3788 msgid "Does this test require a file attachment when adding a test result?" msgstr "添加測試結果時是否需要文件附件?" -#: part/models.py:3730 part/models.py:3878 -msgid "Choices" -msgstr "選項" - -#: part/models.py:3731 +#: part/models.py:3795 msgid "Valid choices for this test (comma-separated)" msgstr "此測試的有效選擇 (逗號分隔)" -#: part/models.py:3764 -msgid "Part Parameter Template" -msgstr "零件參數模板" - -#: part/models.py:3791 -msgid "Checkbox parameters cannot have units" -msgstr "勾選框參數不能有單位" - -#: part/models.py:3796 -msgid "Checkbox parameters cannot have choices" -msgstr "複選框參數不能有選項" - -#: part/models.py:3833 -msgid "Parameter template name must be unique" -msgstr "參數模板名稱必須是唯一的" - -#: part/models.py:3851 -msgid "Parameter Name" -msgstr "參數名稱" - -#: part/models.py:3858 -msgid "Physical units for this parameter" -msgstr "此參數的物理單位" - -#: part/models.py:3866 -msgid "Parameter description" -msgstr "參數説明" - -#: part/models.py:3872 -msgid "Checkbox" -msgstr "勾選框" - -#: part/models.py:3873 -msgid "Is this parameter a checkbox?" -msgstr "此參數是否為勾選框?" - -#: part/models.py:3879 -msgid "Valid choices for this parameter (comma-separated)" -msgstr "此參數的有效選擇 (逗號分隔)" - -#: part/models.py:3890 -msgid "Selection list for this parameter" -msgstr "此參數的選擇清單" - -#: part/models.py:3932 -msgid "Part Parameter" -msgstr "零件參數" - -#: part/models.py:3958 -msgid "Parameter cannot be modified - part is locked" -msgstr "參數不能被修改 - 零件被鎖定" - -#: part/models.py:3996 -msgid "Invalid choice for parameter value" -msgstr "無效的參數值選擇" - -#: part/models.py:4047 -msgid "Parent Part" -msgstr "父零件" - -#: part/models.py:4055 part/models.py:4170 part/models.py:4171 -msgid "Parameter Template" -msgstr "參數模板" - -#: part/models.py:4061 -msgid "Parameter Value" -msgstr "參數值" - -#: part/models.py:4071 stock/serializers.py:718 -msgid "Optional note field" -msgstr "可選註釋字段" - -#: part/models.py:4118 -msgid "Part Category Parameter Template" -msgstr "零件類別參數模板" - -#: part/models.py:4177 -msgid "Default Value" -msgstr "默認值" - -#: part/models.py:4178 -msgid "Default Parameter Value" -msgstr "默認參數值" - -#: part/models.py:4352 +#: part/models.py:3977 msgid "BOM item cannot be modified - assembly is locked" msgstr "物料清單項目不能被修改 - 裝配已鎖定" -#: part/models.py:4359 +#: part/models.py:3984 msgid "BOM item cannot be modified - variant assembly is locked" msgstr "物料清單項目不能修改 - 變體裝配已鎖定" -#: part/models.py:4369 +#: part/models.py:3994 msgid "Select parent part" msgstr "選擇父零件" -#: part/models.py:4379 +#: part/models.py:4004 msgid "Sub part" msgstr "子零件" -#: part/models.py:4380 +#: part/models.py:4005 msgid "Select part to be used in BOM" msgstr "選擇要用於物料清單的零件" -#: part/models.py:4391 +#: part/models.py:4016 msgid "BOM quantity for this BOM item" msgstr "此物料清單項目的數量" -#: part/models.py:4397 +#: part/models.py:4022 msgid "This BOM item is optional" msgstr "此物料清單項目是可選的" -#: part/models.py:4403 +#: part/models.py:4028 msgid "This BOM item is consumable (it is not tracked in build orders)" msgstr "這個物料清單項目是耗材 (它沒有在生產訂單中被追蹤)" -#: part/models.py:4411 +#: part/models.py:4036 msgid "Setup Quantity" msgstr "建置額外數量" -#: part/models.py:4412 +#: part/models.py:4037 msgid "Extra required quantity for a build, to account for setup losses" msgstr "為彌補建置 / 開工損耗所需的額外數量" -#: part/models.py:4420 +#: part/models.py:4045 msgid "Attrition" msgstr "損耗率" -#: part/models.py:4422 +#: part/models.py:4047 msgid "Estimated attrition for a build, expressed as a percentage (0-100)" msgstr "製造預估損耗(百分比 0–100)" -#: part/models.py:4433 +#: part/models.py:4058 msgid "Rounding Multiple" msgstr "進位倍數" -#: part/models.py:4435 +#: part/models.py:4060 msgid "Round up required production quantity to nearest multiple of this value" msgstr "將所需生產數量向上取整到此數值的整數倍" -#: part/models.py:4443 +#: part/models.py:4068 msgid "BOM item reference" msgstr "物料清單項目引用" -#: part/models.py:4451 +#: part/models.py:4076 msgid "BOM item notes" msgstr "物料清單項目註釋" -#: part/models.py:4457 +#: part/models.py:4082 msgid "Checksum" msgstr "校驗和" -#: part/models.py:4458 +#: part/models.py:4083 msgid "BOM line checksum" msgstr "物料清單行校驗和" -#: part/models.py:4463 +#: part/models.py:4088 msgid "Validated" msgstr "已驗證" -#: part/models.py:4464 +#: part/models.py:4089 msgid "This BOM item has been validated" msgstr "此物料清單項目已驗證" -#: part/models.py:4469 +#: part/models.py:4094 msgid "Gets inherited" msgstr "獲取繼承的" -#: part/models.py:4470 +#: part/models.py:4095 msgid "This BOM item is inherited by BOMs for variant parts" msgstr "此物料清單項目是由物料清單繼承的變體零件" -#: part/models.py:4476 +#: part/models.py:4101 msgid "Stock items for variant parts can be used for this BOM item" msgstr "變體零件的庫存項可以用於此物料清單項目" -#: part/models.py:4583 stock/models.py:925 +#: part/models.py:4208 stock/models.py:925 msgid "Quantity must be integer value for trackable parts" msgstr "可追蹤零件的數量必須是整數" -#: part/models.py:4593 part/models.py:4595 +#: part/models.py:4218 part/models.py:4220 msgid "Sub part must be specified" msgstr "必須指定子零件" -#: part/models.py:4746 +#: part/models.py:4371 msgid "BOM Item Substitute" msgstr "物料清單項目替代品" -#: part/models.py:4767 +#: part/models.py:4392 msgid "Substitute part cannot be the same as the master part" msgstr "替代品零件不能與主零件相同" -#: part/models.py:4780 +#: part/models.py:4405 msgid "Parent BOM item" msgstr "上級物料清單項目" -#: part/models.py:4788 +#: part/models.py:4413 msgid "Substitute part" msgstr "替代品零件" -#: part/models.py:4804 +#: part/models.py:4429 msgid "Part 1" msgstr "零件 1" -#: part/models.py:4812 +#: part/models.py:4437 msgid "Part 2" msgstr "零件2" -#: part/models.py:4813 +#: part/models.py:4438 msgid "Select Related Part" msgstr "選擇相關的零件" -#: part/models.py:4820 +#: part/models.py:4445 msgid "Note for this relationship" msgstr "此關係的備註" -#: part/models.py:4839 +#: part/models.py:4464 msgid "Part relationship cannot be created between a part and itself" msgstr "零件關係不能在零件和自身之間創建" -#: part/models.py:4844 +#: part/models.py:4469 msgid "Duplicate relationship already exists" msgstr "複製關係已經存在" -#: part/serializers.py:114 +#: part/serializers.py:113 msgid "Parent Category" msgstr "上級類別" -#: part/serializers.py:115 +#: part/serializers.py:114 msgid "Parent part category" msgstr "上級零件類別" -#: part/serializers.py:123 part/serializers.py:164 +#: part/serializers.py:122 part/serializers.py:163 msgid "Subcategories" msgstr "子類別" -#: part/serializers.py:203 +#: part/serializers.py:202 msgid "Results" msgstr "結果" -#: part/serializers.py:204 +#: part/serializers.py:203 msgid "Number of results recorded against this template" msgstr "根據該模板記錄的結果數量" -#: part/serializers.py:235 part/serializers.py:253 stock/serializers.py:643 +#: part/serializers.py:234 part/serializers.py:252 stock/serializers.py:643 msgid "Purchase currency of this stock item" msgstr "購買此庫存項的貨幣" -#: part/serializers.py:280 +#: part/serializers.py:279 msgid "File is not an image" msgstr "檔案不是圖片" -#: part/serializers.py:311 -msgid "Number of parts using this template" -msgstr "使用此模板的零件數" - -#: part/serializers.py:471 +#: part/serializers.py:382 msgid "Original Part" msgstr "原始零件" -#: part/serializers.py:472 +#: part/serializers.py:383 msgid "Select original part to duplicate" msgstr "選擇要複製的原始零件" -#: part/serializers.py:477 +#: part/serializers.py:388 msgid "Copy Image" msgstr "複製圖片" -#: part/serializers.py:478 +#: part/serializers.py:389 msgid "Copy image from original part" msgstr "從原零件複製圖片" -#: part/serializers.py:484 +#: part/serializers.py:395 msgid "Copy BOM" msgstr "複製物料清單" -#: part/serializers.py:485 +#: part/serializers.py:396 msgid "Copy bill of materials from original part" msgstr "從原始零件複製材料清單" -#: part/serializers.py:491 +#: part/serializers.py:402 msgid "Copy Parameters" msgstr "複製參數" -#: part/serializers.py:492 +#: part/serializers.py:403 msgid "Copy parameter data from original part" msgstr "從原始零件複製參數數據" -#: part/serializers.py:498 +#: part/serializers.py:409 msgid "Copy Notes" msgstr "複製備註" -#: part/serializers.py:499 +#: part/serializers.py:410 msgid "Copy notes from original part" msgstr "從原始零件複製備註" -#: part/serializers.py:505 +#: part/serializers.py:416 msgid "Copy Tests" msgstr "複製測試模板" -#: part/serializers.py:506 +#: part/serializers.py:417 msgid "Copy test templates from original part" msgstr "從原始零件複製測試模板" -#: part/serializers.py:524 +#: part/serializers.py:435 msgid "Initial Stock Quantity" msgstr "初始化庫存數量" -#: part/serializers.py:526 +#: part/serializers.py:437 msgid "Specify initial stock quantity for this Part. If quantity is zero, no stock is added." msgstr "指定此零件的初始庫存數量。如果數量為零,則不添加任何庫存。" -#: part/serializers.py:533 +#: part/serializers.py:444 msgid "Initial Stock Location" msgstr "初始化庫存地點" -#: part/serializers.py:534 +#: part/serializers.py:445 msgid "Specify initial stock location for this Part" msgstr "初始化指定此零件的庫存地點" -#: part/serializers.py:551 +#: part/serializers.py:462 msgid "Select supplier (or leave blank to skip)" msgstr "選擇供應商(或為空以跳過)" -#: part/serializers.py:567 +#: part/serializers.py:478 msgid "Select manufacturer (or leave blank to skip)" msgstr "選擇製造商(或為空)" -#: part/serializers.py:577 +#: part/serializers.py:488 msgid "Manufacturer part number" msgstr "製造商零件號" -#: part/serializers.py:584 +#: part/serializers.py:495 msgid "Selected company is not a valid supplier" msgstr "所選公司不是一個有效的供應商" -#: part/serializers.py:593 +#: part/serializers.py:504 msgid "Selected company is not a valid manufacturer" msgstr "所選公司不是一個有效的製造商" -#: part/serializers.py:604 +#: part/serializers.py:515 msgid "Manufacturer part matching this MPN already exists" msgstr "與此製造商零件編號 (MPN) 的相匹配的製造商零件已存在" -#: part/serializers.py:611 +#: part/serializers.py:522 msgid "Supplier part matching this SKU already exists" msgstr "匹配此庫存單位 (SKU) 的供應商零件已存在" -#: part/serializers.py:914 +#: part/serializers.py:799 msgid "Category Name" msgstr "類別名稱" -#: part/serializers.py:943 +#: part/serializers.py:828 msgid "Building" msgstr "正在生產" -#: part/serializers.py:944 +#: part/serializers.py:829 msgid "Quantity of this part currently being in production" msgstr "此零件目前生產中數量" -#: part/serializers.py:951 +#: part/serializers.py:836 msgid "Outstanding quantity of this part scheduled to be built" msgstr "此零件排程待製造未完成數量" -#: part/serializers.py:971 stock/serializers.py:1019 stock/serializers.py:1189 +#: part/serializers.py:856 stock/serializers.py:1019 stock/serializers.py:1189 #: users/ruleset.py:30 msgid "Stock Items" msgstr "庫存項" -#: part/serializers.py:975 +#: part/serializers.py:860 msgid "Revisions" msgstr "修訂" -#: part/serializers.py:979 +#: part/serializers.py:864 msgid "Suppliers" msgstr "供應商" -#: part/serializers.py:983 part/serializers.py:1297 +#: part/serializers.py:868 part/serializers.py:1162 #: templates/email/low_stock_notification.html:16 #: templates/email/part_event_notification.html:17 msgid "Total Stock" msgstr "庫存總量" -#: part/serializers.py:991 +#: part/serializers.py:876 msgid "Unallocated Stock" msgstr "未分配的庫存" -#: part/serializers.py:999 +#: part/serializers.py:884 msgid "Variant Stock" msgstr "變體庫存" -#: part/serializers.py:1054 +#: part/serializers.py:943 msgid "Duplicate Part" msgstr "重複零件" -#: part/serializers.py:1055 +#: part/serializers.py:944 msgid "Copy initial data from another Part" msgstr "從另一個零件複製初始數據" -#: part/serializers.py:1061 +#: part/serializers.py:950 msgid "Initial Stock" msgstr "初始庫存" -#: part/serializers.py:1062 +#: part/serializers.py:951 msgid "Create Part with initial stock quantity" msgstr "創建具有初始庫存數量的零件" -#: part/serializers.py:1068 +#: part/serializers.py:957 msgid "Supplier Information" msgstr "供應商信息" -#: part/serializers.py:1069 +#: part/serializers.py:958 msgid "Add initial supplier information for this part" msgstr "添加此零件的初始供應商信息" -#: part/serializers.py:1077 +#: part/serializers.py:966 msgid "Copy Category Parameters" msgstr "複製類別參數" -#: part/serializers.py:1078 +#: part/serializers.py:967 msgid "Copy parameter templates from selected part category" msgstr "從選擇的零件複製參數模版" -#: part/serializers.py:1083 +#: part/serializers.py:972 msgid "Existing Image" msgstr "現有的圖片" -#: part/serializers.py:1084 +#: part/serializers.py:973 msgid "Filename of an existing part image" msgstr "現有零件圖片的文件名" -#: part/serializers.py:1101 +#: part/serializers.py:990 msgid "Image file does not exist" msgstr "圖片不存在" -#: part/serializers.py:1269 +#: part/serializers.py:1134 msgid "Validate entire Bill of Materials" msgstr "驗證整個物料清單" -#: part/serializers.py:1303 part/serializers.py:1769 +#: part/serializers.py:1168 part/serializers.py:1634 msgid "Can Build" msgstr "可以創建" -#: part/serializers.py:1320 +#: part/serializers.py:1185 msgid "Required for Build Orders" msgstr "生產工單需求數" -#: part/serializers.py:1325 +#: part/serializers.py:1190 msgid "Allocated to Build Orders" msgstr "已分配至生產工單" -#: part/serializers.py:1332 +#: part/serializers.py:1197 msgid "Required for Sales Orders" msgstr "銷售訂單需求數" -#: part/serializers.py:1336 +#: part/serializers.py:1201 msgid "Allocated to Sales Orders" msgstr "已分配至銷售訂單" -#: part/serializers.py:1475 +#: part/serializers.py:1340 msgid "Minimum Price" msgstr "最低價格" -#: part/serializers.py:1476 +#: part/serializers.py:1341 msgid "Override calculated value for minimum price" msgstr "覆蓋已計算的最低價格值" -#: part/serializers.py:1483 +#: part/serializers.py:1348 msgid "Minimum price currency" msgstr "最低價格貨幣" -#: part/serializers.py:1490 +#: part/serializers.py:1355 msgid "Maximum Price" msgstr "最高價格" -#: part/serializers.py:1491 +#: part/serializers.py:1356 msgid "Override calculated value for maximum price" msgstr "覆蓋已計算的最高價格值" -#: part/serializers.py:1498 +#: part/serializers.py:1363 msgid "Maximum price currency" msgstr "最高價格貨幣" -#: part/serializers.py:1527 +#: part/serializers.py:1392 msgid "Update" msgstr "更新" -#: part/serializers.py:1528 +#: part/serializers.py:1393 msgid "Update pricing for this part" msgstr "更新這個零件的價格" -#: part/serializers.py:1551 +#: part/serializers.py:1416 #, python-brace-format msgid "Could not convert from provided currencies to {default_currency}" msgstr "無法將所提供的貨幣轉換為 {default_currency}" -#: part/serializers.py:1558 +#: part/serializers.py:1423 msgid "Minimum price must not be greater than maximum price" msgstr "最低價格不能高於最高價格。" -#: part/serializers.py:1561 +#: part/serializers.py:1426 msgid "Maximum price must not be less than minimum price" msgstr "最高價格不能低於最低價格" -#: part/serializers.py:1715 +#: part/serializers.py:1580 msgid "Select the parent assembly" msgstr "選擇父裝配" -#: part/serializers.py:1735 +#: part/serializers.py:1600 msgid "Select the component part" msgstr "選擇零部件" -#: part/serializers.py:1929 +#: part/serializers.py:1802 msgid "Select part to copy BOM from" msgstr "選擇要複製物料清單的零件" -#: part/serializers.py:1937 +#: part/serializers.py:1810 msgid "Remove Existing Data" msgstr "移除現有數據" -#: part/serializers.py:1938 +#: part/serializers.py:1811 msgid "Remove existing BOM items before copying" msgstr "複製前刪除現有的物料清單項目" -#: part/serializers.py:1943 +#: part/serializers.py:1816 msgid "Include Inherited" msgstr "包含繼承的" -#: part/serializers.py:1944 +#: part/serializers.py:1817 msgid "Include BOM items which are inherited from templated parts" msgstr "包含從模板零件繼承的物料清單項目" -#: part/serializers.py:1949 +#: part/serializers.py:1822 msgid "Skip Invalid Rows" msgstr "跳過無效行" -#: part/serializers.py:1950 +#: part/serializers.py:1823 msgid "Enable this option to skip invalid rows" msgstr "啓用此選項以跳過無效行" -#: part/serializers.py:1955 +#: part/serializers.py:1828 msgid "Copy Substitute Parts" msgstr "複製替代品零件" -#: part/serializers.py:1956 +#: part/serializers.py:1829 msgid "Copy substitute parts when duplicate BOM items" msgstr "複製物料清單項目時複製替代品零件" @@ -6927,7 +6974,7 @@ msgstr "提供條形碼本地支持" #: plugin/builtin/events/auto_issue_orders.py:19 #: plugin/builtin/exporter/bom_exporter.py:73 #: plugin/builtin/exporter/inventree_exporter.py:17 -#: plugin/builtin/exporter/part_parameter_exporter.py:36 +#: plugin/builtin/exporter/parameter_exporter.py:32 #: plugin/builtin/exporter/stocktake_exporter.py:47 #: plugin/builtin/integration/core_notifications.py:25 #: plugin/builtin/integration/core_notifications.py:69 @@ -7041,23 +7088,19 @@ msgid "Include total quantity of each part in the BOM" msgstr "包含每個零件於 BOM 中的總需求量" #: plugin/builtin/exporter/bom_exporter.py:35 -#: plugin/builtin/exporter/part_parameter_exporter.py:17 msgid "Stock Data" msgstr "庫存資料" #: plugin/builtin/exporter/bom_exporter.py:35 -#: plugin/builtin/exporter/part_parameter_exporter.py:17 msgid "Include part stock data" msgstr "包含零件庫存資料" #: plugin/builtin/exporter/bom_exporter.py:39 -#: plugin/builtin/exporter/part_parameter_exporter.py:21 #: plugin/builtin/exporter/stocktake_exporter.py:20 msgid "Pricing Data" msgstr "價格資料" #: plugin/builtin/exporter/bom_exporter.py:39 -#: plugin/builtin/exporter/part_parameter_exporter.py:21 #: plugin/builtin/exporter/stocktake_exporter.py:20 msgid "Include part pricing data" msgstr "包含零件價格資料" @@ -7144,13 +7187,21 @@ msgstr "InvenTree 通用匯出器" msgid "Provides support for exporting data from InvenTree" msgstr "支援自 InvenTree 匯出資料" -#: plugin/builtin/exporter/part_parameter_exporter.py:33 -msgid "Part Parameter Exporter" -msgstr "零件參數匯出器" +#: plugin/builtin/exporter/parameter_exporter.py:16 +msgid "Exclude Inactive" +msgstr "" -#: plugin/builtin/exporter/part_parameter_exporter.py:34 -msgid "Exporter for part parameter data" -msgstr "匯出零件參數資料的工具" +#: plugin/builtin/exporter/parameter_exporter.py:17 +msgid "Exclude parameters which are inactive" +msgstr "" + +#: plugin/builtin/exporter/parameter_exporter.py:29 +msgid "Parameter Exporter" +msgstr "" + +#: plugin/builtin/exporter/parameter_exporter.py:30 +msgid "Exporter for model parameter data" +msgstr "" #: plugin/builtin/exporter/stocktake_exporter.py:25 msgid "Include External Stock" @@ -8079,19 +8130,19 @@ msgstr "無結果 (必填)" msgid "No result" msgstr "沒有結果" -#: report/templatetags/report.py:167 +#: report/templatetags/report.py:169 msgid "Asset file does not exist" msgstr "資產文件不存在" -#: report/templatetags/report.py:224 report/templatetags/report.py:300 +#: report/templatetags/report.py:226 report/templatetags/report.py:302 msgid "Image file not found" msgstr "找不到圖片文件" -#: report/templatetags/report.py:325 +#: report/templatetags/report.py:327 msgid "part_image tag requires a Part instance" msgstr "parpart_image 標籤需要一個零件實例" -#: report/templatetags/report.py:362 +#: report/templatetags/report.py:383 msgid "company_image tag requires a Company instance" msgstr "公司_圖片標籤需要一個公司實例" @@ -8455,115 +8506,119 @@ msgstr "序列號需以清單提供" msgid "Quantity does not match serial numbers" msgstr "數量不匹配序列號" -#: stock/models.py:2012 stock/models.py:2917 +#: stock/models.py:1912 +msgid "Cannot assign stock to structural location" +msgstr "" + +#: stock/models.py:2029 stock/models.py:2934 msgid "Test template does not exist" msgstr "測試模板不存在" -#: stock/models.py:2030 +#: stock/models.py:2047 msgid "Stock item has been assigned to a sales order" msgstr "庫存項已分配到銷售訂單" -#: stock/models.py:2034 +#: stock/models.py:2051 msgid "Stock item is installed in another item" msgstr "庫存項已安裝在另一個項目中" -#: stock/models.py:2037 +#: stock/models.py:2054 msgid "Stock item contains other items" msgstr "庫存項包含其他項目" -#: stock/models.py:2040 +#: stock/models.py:2057 msgid "Stock item has been assigned to a customer" msgstr "庫存項已分配給客户" -#: stock/models.py:2043 stock/models.py:2226 +#: stock/models.py:2060 stock/models.py:2243 msgid "Stock item is currently in production" msgstr "庫存項目前正在生產" -#: stock/models.py:2046 +#: stock/models.py:2063 msgid "Serialized stock cannot be merged" msgstr "序列化的庫存不能合併" -#: stock/models.py:2053 stock/serializers.py:1462 +#: stock/models.py:2070 stock/serializers.py:1462 msgid "Duplicate stock items" msgstr "複製庫存項" -#: stock/models.py:2057 +#: stock/models.py:2074 msgid "Stock items must refer to the same part" msgstr "庫存項必須指相同零件" -#: stock/models.py:2065 +#: stock/models.py:2082 msgid "Stock items must refer to the same supplier part" msgstr "庫存項必須是同一供應商的零件" -#: stock/models.py:2070 +#: stock/models.py:2087 msgid "Stock status codes must match" msgstr "庫存狀態碼必須匹配" -#: stock/models.py:2349 +#: stock/models.py:2366 msgid "StockItem cannot be moved as it is not in stock" msgstr "庫存項不能移動,因為它沒有庫存" -#: stock/models.py:2818 +#: stock/models.py:2835 msgid "Stock Item Tracking" msgstr "庫存項跟蹤" -#: stock/models.py:2849 +#: stock/models.py:2866 msgid "Entry notes" msgstr "條目註釋" -#: stock/models.py:2889 +#: stock/models.py:2906 msgid "Stock Item Test Result" msgstr "庫存項測試結果" -#: stock/models.py:2920 +#: stock/models.py:2937 msgid "Value must be provided for this test" msgstr "必須為此測試提供值" -#: stock/models.py:2924 +#: stock/models.py:2941 msgid "Attachment must be uploaded for this test" msgstr "測試附件必須上傳" -#: stock/models.py:2929 +#: stock/models.py:2946 msgid "Invalid value for this test" msgstr "此測試的值無效" -#: stock/models.py:2953 +#: stock/models.py:2970 msgid "Test result" msgstr "測試結果" -#: stock/models.py:2960 +#: stock/models.py:2977 msgid "Test output value" msgstr "測試輸出值" -#: stock/models.py:2968 stock/serializers.py:248 +#: stock/models.py:2985 stock/serializers.py:248 msgid "Test result attachment" msgstr "測驗結果附件" -#: stock/models.py:2972 +#: stock/models.py:2989 msgid "Test notes" msgstr "測試備註" -#: stock/models.py:2980 +#: stock/models.py:2997 msgid "Test station" msgstr "測試站" -#: stock/models.py:2981 +#: stock/models.py:2998 msgid "The identifier of the test station where the test was performed" msgstr "進行測試的測試站的標識符" -#: stock/models.py:2987 +#: stock/models.py:3004 msgid "Started" msgstr "已開始" -#: stock/models.py:2988 +#: stock/models.py:3005 msgid "The timestamp of the test start" msgstr "測試開始的時間戳" -#: stock/models.py:2994 +#: stock/models.py:3011 msgid "Finished" msgstr "已完成" -#: stock/models.py:2995 +#: stock/models.py:3012 msgid "The timestamp of the test finish" msgstr "測試結束的時間戳" @@ -8677,8 +8732,8 @@ msgstr "未提供庫存項" msgid "Quantity must not exceed available stock quantity ({q})" msgstr "數量不得超過現有庫存量 ({q})" -#: stock/serializers.py:711 stock/serializers.py:1419 stock/serializers.py:1732 -#: stock/serializers.py:1781 +#: stock/serializers.py:711 stock/serializers.py:1419 stock/serializers.py:1740 +#: stock/serializers.py:1789 msgid "Destination stock location" msgstr "目標庫存位置" @@ -8834,19 +8889,19 @@ msgstr "數量不可為負" msgid "Stock transaction notes" msgstr "庫存交易記錄" -#: stock/serializers.py:1787 +#: stock/serializers.py:1795 msgid "Merge into existing stock" msgstr "合併至現有庫存" -#: stock/serializers.py:1788 +#: stock/serializers.py:1796 msgid "Merge returned items into existing stock items if possible" msgstr "可行時將退回項目併入現有庫存" -#: stock/serializers.py:1831 +#: stock/serializers.py:1839 msgid "Next Serial Number" msgstr "下一個序列號" -#: stock/serializers.py:1837 +#: stock/serializers.py:1845 msgid "Previous Serial Number" msgstr "上一個序列號" @@ -8902,83 +8957,87 @@ msgstr "已手動添加庫存" msgid "Stock manually removed" msgstr "已手動刪除庫存" -#: stock/status_codes.py:57 +#: stock/status_codes.py:56 +msgid "Serialized stock items" +msgstr "" + +#: stock/status_codes.py:58 msgid "Returned to stock" msgstr "退回庫存" -#: stock/status_codes.py:60 +#: stock/status_codes.py:61 msgid "Location changed" msgstr "地點已更改" -#: stock/status_codes.py:61 +#: stock/status_codes.py:62 msgid "Stock updated" msgstr "庫存已更新" -#: stock/status_codes.py:64 +#: stock/status_codes.py:65 msgid "Installed into assembly" msgstr "已安裝到裝配中" -#: stock/status_codes.py:65 +#: stock/status_codes.py:66 msgid "Removed from assembly" msgstr "已從裝配中刪除" -#: stock/status_codes.py:67 +#: stock/status_codes.py:68 msgid "Installed component item" msgstr "已安裝組件項" -#: stock/status_codes.py:68 +#: stock/status_codes.py:69 msgid "Removed component item" msgstr "已刪除組件項" -#: stock/status_codes.py:71 +#: stock/status_codes.py:72 msgid "Split from parent item" msgstr "從上級項拆分" -#: stock/status_codes.py:72 +#: stock/status_codes.py:73 msgid "Split child item" msgstr "拆分子項" -#: stock/status_codes.py:75 +#: stock/status_codes.py:76 msgid "Merged stock items" msgstr "合併的庫存項" -#: stock/status_codes.py:78 +#: stock/status_codes.py:79 msgid "Converted to variant" msgstr "轉換為變體" -#: stock/status_codes.py:81 +#: stock/status_codes.py:82 msgid "Build order output created" msgstr "已創建生產訂單產出" -#: stock/status_codes.py:82 +#: stock/status_codes.py:83 msgid "Build order output completed" msgstr "生產訂單已出產" -#: stock/status_codes.py:83 +#: stock/status_codes.py:84 msgid "Build order output rejected" msgstr "生產訂單產出被拒絕" -#: stock/status_codes.py:84 +#: stock/status_codes.py:85 msgid "Consumed by build order" msgstr "被工單消耗的" -#: stock/status_codes.py:87 +#: stock/status_codes.py:88 msgid "Shipped against Sales Order" msgstr "按銷售訂單出貨" -#: stock/status_codes.py:90 +#: stock/status_codes.py:91 msgid "Received against Purchase Order" msgstr "按採購訂單接收" -#: stock/status_codes.py:93 +#: stock/status_codes.py:94 msgid "Returned against Return Order" msgstr "按退貨訂單退回" -#: stock/status_codes.py:96 +#: stock/status_codes.py:97 msgid "Sent to customer" msgstr "寄送給客户" -#: stock/status_codes.py:97 +#: stock/status_codes.py:98 msgid "Returned from customer" msgstr "從客户端退回" diff --git a/src/backend/InvenTree/machine/apps.py b/src/backend/InvenTree/machine/apps.py index 95ab925dc1..7130393cce 100755 --- a/src/backend/InvenTree/machine/apps.py +++ b/src/backend/InvenTree/machine/apps.py @@ -7,6 +7,7 @@ import structlog from InvenTree.ready import ( canAppAccessDatabase, + ignore_ready_warning, isImportingData, isInMainThread, isPluginRegistryLoaded, @@ -32,12 +33,17 @@ class MachineConfig(AppConfig): logger.debug('Machine app: Skipping machine loading sequence') return - from machine import registry - try: - logger.info('Loading InvenTree machines') - if not registry.is_ready: - registry.initialize(main=isInMainThread()) + self.initialize_registry() except (OperationalError, ProgrammingError): # Database might not yet be ready logger.warn('Database was not ready for initializing machines') + + @ignore_ready_warning + def initialize_registry(self): + """Initialize the machine registry.""" + from machine import registry + + if not registry.is_ready: + logger.info('Loading InvenTree machines') + registry.initialize(main=isInMainThread()) diff --git a/src/backend/InvenTree/order/api.py b/src/backend/InvenTree/order/api.py index ddf7dadb57..899f2b4411 100644 --- a/src/backend/InvenTree/order/api.py +++ b/src/backend/InvenTree/order/api.py @@ -28,7 +28,12 @@ import stock.models as stock_models import stock.serializers as stock_serializers from data_exporter.mixins import DataExportViewMixin from generic.states.api import StatusView -from InvenTree.api import BulkUpdateMixin, ListCreateDestroyAPIView, MetadataView +from InvenTree.api import ( + BulkUpdateMixin, + ListCreateDestroyAPIView, + MetadataView, + ParameterListMixin, +) from InvenTree.fields import InvenTreeOutputOption, OutputConfiguration from InvenTree.filters import ( SEARCH_ORDER_FILTER, @@ -364,12 +369,10 @@ class PurchaseOrderMixin(SerializerContextMixin): """Return the annotated queryset for this endpoint.""" queryset = super().get_queryset(*args, **kwargs) - queryset = queryset.prefetch_related( - 'supplier', 'project_code', 'lines', 'responsible' - ) - queryset = serializers.PurchaseOrderSerializer.annotate_queryset(queryset) + queryset = queryset.prefetch_related('supplier', 'created_by') + return queryset @@ -378,6 +381,7 @@ class PurchaseOrderList( OrderCreateMixin, DataExportViewMixin, OutputOptionsMixin, + ParameterListMixin, ListCreateAPI, ): """API endpoint for accessing a list of PurchaseOrder objects. @@ -827,9 +831,7 @@ class SalesOrderMixin(SerializerContextMixin): """Return annotated queryset for this endpoint.""" queryset = super().get_queryset(*args, **kwargs) - queryset = queryset.prefetch_related( - 'customer', 'responsible', 'project_code', 'lines' - ) + queryset = queryset.prefetch_related('customer', 'created_by') queryset = serializers.SalesOrderSerializer.annotate_queryset(queryset) @@ -847,6 +849,7 @@ class SalesOrderList( OrderCreateMixin, DataExportViewMixin, OutputOptionsMixin, + ParameterListMixin, ListCreateAPI, ): """API endpoint for accessing a list of SalesOrder objects. @@ -856,9 +859,7 @@ class SalesOrderList( """ filterset_class = SalesOrderFilter - filter_backends = SEARCH_ORDER_FILTER_ALIAS - output_options = SalesOrderOutputOptions ordering_field_aliases = { @@ -1013,17 +1014,13 @@ class SalesOrderLineItemMixin(SerializerContextMixin): queryset = queryset.prefetch_related( 'part', - 'part__stock_items', 'allocations', 'allocations__shipment', 'allocations__item__part', 'allocations__item__location', 'order', - 'order__stock_items', ) - queryset = queryset.select_related('part__pricing_data') - queryset = serializers.SalesOrderLineItemSerializer.annotate_queryset(queryset) return queryset @@ -1323,7 +1320,7 @@ class SalesOrderAllocationList( class SalesOrderAllocationDetail(SalesOrderAllocationMixin, RetrieveUpdateDestroyAPI): - """API endpoint for detali view of a SalesOrderAllocation object.""" + """API endpoint for detail view of a SalesOrderAllocation object.""" class SalesOrderShipmentFilter(FilterSet): @@ -1374,7 +1371,7 @@ class SalesOrderShipmentFilter(FilterSet): ) def filter_order_status(self, queryset, name, value): - """Filter by linked SalesOrderrder status.""" + """Filter by linked SalesOrder status.""" q1 = Q(order__status=value, order__status_custom_key__isnull=True) q2 = Q(order__status_custom_key=value) @@ -1412,7 +1409,7 @@ class SalesOrderShipmentList(SalesOrderShipmentMixin, ListCreateAPI): class SalesOrderShipmentDetail(SalesOrderShipmentMixin, RetrieveUpdateDestroyAPI): - """API detail endpooint for SalesOrderShipment model.""" + """API detail endpoint for SalesOrderShipment model.""" class SalesOrderShipmentComplete(CreateAPI): @@ -1504,12 +1501,10 @@ class ReturnOrderMixin(SerializerContextMixin): def get_queryset(self, *args, **kwargs): """Return annotated queryset for this endpoint.""" queryset = super().get_queryset(*args, **kwargs) - - queryset = queryset.prefetch_related( - 'customer', 'lines', 'project_code', 'responsible' - ) - queryset = serializers.ReturnOrderSerializer.annotate_queryset(queryset) + queryset = queryset.prefetch_related( + 'contact', 'created_by', 'customer', 'responsible' + ) return queryset @@ -1525,12 +1520,12 @@ class ReturnOrderList( OrderCreateMixin, DataExportViewMixin, OutputOptionsMixin, + ParameterListMixin, ListCreateAPI, ): """API endpoint for accessing a list of ReturnOrder objects.""" filterset_class = ReturnOrderFilter - filter_backends = SEARCH_ORDER_FILTER_ALIAS output_options = ReturnOrderOutputOptions @@ -1964,7 +1959,7 @@ order_api_urls = [ ), ]), ), - # API endpoints for sales ordesr + # API endpoints for sales orders path( 'so/', include([ diff --git a/src/backend/InvenTree/order/models.py b/src/backend/InvenTree/order/models.py index 4efa189e71..d159b988eb 100644 --- a/src/backend/InvenTree/order/models.py +++ b/src/backend/InvenTree/order/models.py @@ -268,6 +268,7 @@ class ReturnOrderReportContext(report.mixins.BaseReportContext): class Order( StatusCodeMixin, StateTransitionMixin, + InvenTree.models.InvenTreeParameterMixin, InvenTree.models.InvenTreeAttachmentMixin, InvenTree.models.InvenTreeBarcodeMixin, InvenTree.models.InvenTreeNotesMixin, @@ -988,7 +989,7 @@ class PurchaseOrder(TotalPriceMixin, Order): # Before we continue, validate that each line item is valid # We validate this here because it is far more efficient, - # after we have fetched *all* line itemes in a single DB query + # after we have fetched *all* line items in a single DB query for line_item in line_item_map.values(): if line_item.order != self: raise ValidationError({_('Line item does not match purchase order')}) @@ -1988,17 +1989,16 @@ class PurchaseOrderLineItem(OrderLineItem): def get_destination(self): """Show where the line item is or should be placed. - NOTE: If a line item gets split when received, only an arbitrary - stock items location will be reported as the location for the - entire line. + 1. If a destination is specified against this line item, return that. + 2. If a destination is specified against the PurchaseOrderPart, return that. + 3. If a default location is specified against the linked Part, return that. """ - for item in stock.models.StockItem.objects.filter( - supplier_part=self.part, purchase_order=self.order - ): - if item.location: - return item.location if self.destination: return self.destination + + if self.order.destination: + return self.order.destination + if self.part and self.part.part and self.part.part.default_location: return self.part.part.default_location diff --git a/src/backend/InvenTree/order/serializers.py b/src/backend/InvenTree/order/serializers.py index bc993581c1..33e5b6cf6f 100644 --- a/src/backend/InvenTree/order/serializers.py +++ b/src/backend/InvenTree/order/serializers.py @@ -4,16 +4,7 @@ from decimal import Decimal from django.core.exceptions import ValidationError as DjangoValidationError from django.db import models, transaction -from django.db.models import ( - BooleanField, - Case, - ExpressionWrapper, - F, - Prefetch, - Q, - Value, - When, -) +from django.db.models import BooleanField, Case, ExpressionWrapper, F, Q, Value, When from django.db.models.functions import Coalesce, Greatest from django.utils.translation import gettext_lazy as _ @@ -22,12 +13,12 @@ from rest_framework.serializers import ValidationError from sql_util.utils import SubqueryCount, SubquerySum import build.serializers +import common.filters import order.models import part.filters as part_filters import part.models as part_models import stock.models import stock.serializers -from common.serializers import ProjectCodeSerializer from company.serializers import ( AddressBriefSerializer, CompanyBriefSerializer, @@ -45,7 +36,6 @@ from InvenTree.helpers import ( ) from InvenTree.mixins import DataImportExportSerializerMixin from InvenTree.serializers import ( - FilterableCharField, FilterableSerializerMixin, InvenTreeCurrencySerializer, InvenTreeDecimalField, @@ -140,6 +130,7 @@ class AbstractOrderSerializer( source='contact', many=False, read_only=True, allow_null=True ), True, + prefetch_fields=['contact'], ) # Detail for responsible field @@ -148,26 +139,11 @@ class AbstractOrderSerializer( source='responsible', read_only=True, allow_null=True, many=False ), True, + prefetch_fields=['responsible'], ) - project_code_label = enable_filter( - FilterableCharField( - source='project_code.code', - read_only=True, - label='Project Code Label', - allow_null=True, - ), - True, - filter_name='project_code_detail', - ) - - # Detail for project code field - project_code_detail = enable_filter( - ProjectCodeSerializer( - source='project_code', read_only=True, many=False, allow_null=True - ), - True, - ) + project_code_label = common.filters.enable_project_label_filter() + project_code_detail = common.filters.enable_project_code_filter() # Detail for address field address_detail = enable_filter( @@ -175,8 +151,11 @@ class AbstractOrderSerializer( source='address', many=False, read_only=True, allow_null=True ), True, + prefetch_fields=['address'], ) + parameters = common.filters.enable_parameters_filter() + # Boolean field indicating if this order is overdue (Note: must be annotated) overdue = serializers.BooleanField(read_only=True, allow_null=True) @@ -240,6 +219,7 @@ class AbstractOrderSerializer( 'project_code_detail', 'project_code_label', 'responsible_detail', + 'parameters', *extra_fields, ] @@ -309,23 +289,9 @@ class AbstractLineItemSerializer(FilterableSerializerMixin, serializers.Serializ required=False, allow_null=True, label=_('Target Date') ) - project_code_label = enable_filter( - FilterableCharField( - source='project_code.code', - read_only=True, - label='Project Code Label', - allow_null=True, - ), - True, - filter_name='project_code_detail', - ) + project_code_label = common.filters.enable_project_label_filter() - project_code_detail = enable_filter( - ProjectCodeSerializer( - source='project_code', read_only=True, many=False, allow_null=True - ), - True, - ) + project_code_detail = common.filters.enable_project_code_filter() class AbstractExtraLineSerializer( @@ -361,24 +327,9 @@ class AbstractExtraLineSerializer( price_currency = InvenTreeCurrencySerializer() - project_code_label = enable_filter( - FilterableCharField( - source='project_code.code', - read_only=True, - label='Project Code Label', - allow_null=True, - ), - True, - filter_name='project_code_detail', - ) + project_code_label = common.filters.enable_project_label_filter() - # Detail for project code field - project_code_detail = enable_filter( - ProjectCodeSerializer( - source='project_code', read_only=True, many=False, allow_null=True - ), - True, - ) + project_code_detail = common.filters.enable_project_code_filter() class AbstractExtraLineMeta: @@ -460,6 +411,8 @@ class PurchaseOrderSerializer( ) ) + queryset = queryset.prefetch_related('created_by') + return queryset supplier_name = serializers.CharField( @@ -469,7 +422,8 @@ class PurchaseOrderSerializer( supplier_detail = enable_filter( CompanyBriefSerializer( source='supplier', many=False, read_only=True, allow_null=True - ) + ), + prefetch_fields=['supplier'], ) @@ -601,27 +555,17 @@ class PurchaseOrderLineItemSerializer( - "total_price" = purchase_price * quantity - "overdue" status (boolean field) """ - queryset = queryset.prefetch_related( - Prefetch( - 'part__part', - queryset=part_models.Part.objects.annotate( - category_default_location=part_filters.annotate_default_location( - 'category__' - ) - ).prefetch_related(None), - ) - ) - queryset = queryset.prefetch_related( 'order', 'order__responsible', 'order__stock_items', - 'part__tags', + 'part', + 'part__part', + 'part__part__pricing_data', + 'part__part__default_location', 'part__supplier', 'part__manufacturer_part', 'part__manufacturer_part__manufacturer', - 'part__part__pricing_data', - 'part__part__tags', ) queryset = queryset.annotate( @@ -676,6 +620,7 @@ class PurchaseOrderLineItemSerializer( PartBriefSerializer( source='get_base_part', many=False, read_only=True, allow_null=True ), + False, filter_name='part_detail', ) @@ -683,6 +628,7 @@ class PurchaseOrderLineItemSerializer( SupplierPartSerializer( source='part', brief=True, many=False, read_only=True, allow_null=True ), + False, filter_name='part_detail', ) @@ -696,8 +642,12 @@ class PurchaseOrderLineItemSerializer( default=True, ) - destination_detail = stock.serializers.LocationBriefSerializer( - source='get_destination', read_only=True, allow_null=True + destination_detail = enable_filter( + stock.serializers.LocationBriefSerializer( + source='get_destination', read_only=True, allow_null=True + ), + True, + prefetch_fields=['destination', 'order__destination'], ) purchase_price_currency = InvenTreeCurrencySerializer( @@ -710,8 +660,16 @@ class PurchaseOrderLineItemSerializer( ) ) - build_order_detail = build.serializers.BuildSerializer( - source='build_order', read_only=True, allow_null=True, many=False + build_order_detail = enable_filter( + build.serializers.BuildSerializer( + source='build_order', read_only=True, allow_null=True, many=False + ), + True, + prefetch_fields=[ + 'build_order__responsible', + 'build_order__issued_by', + 'build_order__part', + ], ) merge_items = serializers.BooleanField( @@ -1114,7 +1072,8 @@ class SalesOrderSerializer( customer_detail = enable_filter( CompanyBriefSerializer( source='customer', many=False, read_only=True, allow_null=True - ) + ), + prefetch_fields=['customer'], ) shipments_count = serializers.IntegerField( @@ -1263,15 +1222,26 @@ class SalesOrderLineItemSerializer( order_detail = enable_filter( SalesOrderSerializer( source='order', many=False, read_only=True, allow_null=True - ) + ), + prefetch_fields=[ + 'order__created_by', + 'order__responsible', + 'order__address', + 'order__project_code', + 'order__contact', + ], ) + part_detail = enable_filter( - PartBriefSerializer(source='part', many=False, read_only=True, allow_null=True) + PartBriefSerializer(source='part', many=False, read_only=True, allow_null=True), + prefetch_fields=['part__pricing_data'], ) + customer_detail = enable_filter( CompanyBriefSerializer( source='order.customer', many=False, read_only=True, allow_null=True - ) + ), + prefetch_fields=['order__customer'], ) # Annotated fields @@ -1328,9 +1298,6 @@ class SalesOrderShipmentSerializer( @staticmethod def annotate_queryset(queryset): """Annotate the queryset with extra information.""" - # Prefetch related objects - queryset = queryset.prefetch_related('order', 'order__customer', 'allocations') - queryset = queryset.annotate(allocated_items=SubqueryCount('allocations')) return queryset @@ -1344,6 +1311,7 @@ class SalesOrderShipmentSerializer( source='checked_by', many=False, read_only=True, allow_null=True ), True, + prefetch_fields=['checked_by'], ) order_detail = enable_filter( @@ -1351,6 +1319,13 @@ class SalesOrderShipmentSerializer( source='order', read_only=True, allow_null=True, many=False ), True, + prefetch_fields=[ + 'order', + 'order__customer', + 'order__created_by', + 'order__responsible', + 'order__project_code', + ], ) customer_detail = enable_filter( @@ -1358,6 +1333,7 @@ class SalesOrderShipmentSerializer( source='order.customer', many=False, read_only=True, allow_null=True ), False, + prefetch_fields=['order__customer'], ) shipment_address_detail = enable_filter( @@ -1365,6 +1341,7 @@ class SalesOrderShipmentSerializer( source='shipment_address', many=False, read_only=True, allow_null=True ), True, + prefetch_fields=['shipment_address'], ) @@ -1957,7 +1934,8 @@ class ReturnOrderSerializer( customer_detail = enable_filter( CompanyBriefSerializer( source='customer', many=False, read_only=True, allow_null=True - ) + ), + prefetch_fields=['customer'], ) @@ -2117,7 +2095,14 @@ class ReturnOrderLineItemSerializer( order_detail = enable_filter( ReturnOrderSerializer( source='order', many=False, read_only=True, allow_null=True - ) + ), + prefetch_fields=[ + 'order__created_by', + 'order__responsible', + 'order__address', + 'order__project_code', + 'order__contact', + ], ) quantity = serializers.FloatField( @@ -2127,7 +2112,8 @@ class ReturnOrderLineItemSerializer( item_detail = enable_filter( stock.serializers.StockItemSerializer( source='item', many=False, read_only=True, allow_null=True - ) + ), + prefetch_fields=['item__supplier_part'], ) part_detail = enable_filter( diff --git a/src/backend/InvenTree/order/test_api.py b/src/backend/InvenTree/order/test_api.py index 93610e80ed..58c74e7f6d 100644 --- a/src/backend/InvenTree/order/test_api.py +++ b/src/backend/InvenTree/order/test_api.py @@ -204,8 +204,8 @@ class PurchaseOrderTest(OrderTest): self.LIST_URL, data={'limit': limit}, expected_code=200 ) - # Total database queries must be below 20, independent of the number of results - self.assertLess(len(ctx), 20) + # Total database queries must be below 25, independent of the number of results + self.assertLess(len(ctx), 25) for result in response.data['results']: self.assertIn('total_price', result) @@ -1267,7 +1267,7 @@ class PurchaseOrderReceiveTest(OrderTest): ], 'location': location.pk, }, - max_query_count=100 + 2 * N_LINES, + max_query_count=104 + 2 * N_LINES, ).data # Check for expected response @@ -1428,8 +1428,8 @@ class SalesOrderTest(OrderTest): self.LIST_URL, data={'limit': limit}, expected_code=200 ) - # Total database queries must be less than 20 - self.assertLess(len(ctx), 20) + # Total database queries must be less than 25 + self.assertLess(len(ctx), 25) n = len(response.data['results']) diff --git a/src/backend/InvenTree/part/admin.py b/src/backend/InvenTree/part/admin.py index 6c6ae85b7a..377a0b1a4a 100644 --- a/src/backend/InvenTree/part/admin.py +++ b/src/backend/InvenTree/part/admin.py @@ -5,12 +5,6 @@ from django.contrib import admin from part import models -class PartParameterInline(admin.TabularInline): - """Inline for part parameter data.""" - - model = models.PartParameter - - @admin.register(models.Part) class PartAdmin(admin.ModelAdmin): """Admin class for the Part model.""" @@ -36,7 +30,7 @@ class PartAdmin(admin.ModelAdmin): 'creation_user', ] - inlines = [PartParameterInline] + inlines = [] @admin.register(models.PartPricing) @@ -99,33 +93,6 @@ class BomItemAdmin(admin.ModelAdmin): autocomplete_fields = ('part', 'sub_part') -@admin.register(models.PartParameterTemplate) -class ParameterTemplateAdmin(admin.ModelAdmin): - """Admin class for the PartParameterTemplate model.""" - - list_display = ('name', 'units') - - search_fields = ('name', 'units') - - -@admin.register(models.PartParameter) -class ParameterAdmin(admin.ModelAdmin): - """Admin class for the PartParameter model.""" - - list_display = ('part', 'template', 'data') - - readonly_fields = ('updated', 'updated_by') - - autocomplete_fields = ('part', 'template') - - -@admin.register(models.PartCategoryParameterTemplate) -class PartCategoryParameterAdmin(admin.ModelAdmin): - """Admin class for the PartCategoryParameterTemplate model.""" - - autocomplete_fields = ('category', 'parameter_template') - - @admin.register(models.PartSellPriceBreak) class PartSellPriceBreakAdmin(admin.ModelAdmin): """Admin class for the PartSellPriceBreak model.""" diff --git a/src/backend/InvenTree/part/api.py b/src/backend/InvenTree/part/api.py index 2af9a7f05f..8e969dea30 100644 --- a/src/backend/InvenTree/part/api.py +++ b/src/backend/InvenTree/part/api.py @@ -1,7 +1,5 @@ """Provides a JSON API for the Part app.""" -import re - from django.db.models import Count, F, Q from django.urls import include, path from django.utils.translation import gettext_lazy as _ @@ -14,15 +12,14 @@ from drf_spectacular.utils import extend_schema_field from rest_framework import serializers from rest_framework.response import Response -import part.filters import part.tasks as part_tasks from data_exporter.mixins import DataExportViewMixin from InvenTree.api import ( - BulkCreateMixin, BulkDeleteMixin, BulkUpdateMixin, ListCreateDestroyAPIView, MetadataView, + ParameterListMixin, ) from InvenTree.fields import InvenTreeOutputOption, OutputConfiguration from InvenTree.filters import ( @@ -59,8 +56,6 @@ from .models import ( PartCategory, PartCategoryParameterTemplate, PartInternalPriceBreak, - PartParameter, - PartParameterTemplate, PartRelated, PartSellPriceBreak, PartStocktake, @@ -323,7 +318,7 @@ class CategoryTree(ListAPI): return queryset -class CategoryParameterList(DataExportViewMixin, ListCreateAPI): +class CategoryParameterList(DataExportViewMixin, OutputOptionsMixin, ListCreateAPI): """API endpoint for accessing a list of PartCategoryParameterTemplate objects. - GET: Return a list of PartCategoryParameterTemplate objects @@ -575,7 +570,7 @@ class PartPricingDetail(RetrieveUpdateAPI): """API endpoint for viewing part pricing data.""" serializer_class = part_serializers.PartPricingSerializer - queryset = Part.objects.all() + queryset = Part.objects.all().select_related('pricing_data') def get_object(self): """Return the PartPricing object associated with the linked Part.""" @@ -1014,7 +1009,7 @@ class PartMixin(SerializerContextMixin): """Mixin class for Part API endpoints.""" serializer_class = part_serializers.PartSerializer - queryset = Part.objects.all() + queryset = Part.objects.all().select_related('pricing_data') starred_parts = None is_create = False @@ -1025,13 +1020,6 @@ class PartMixin(SerializerContextMixin): queryset = part_serializers.PartSerializer.annotate_queryset(queryset) - # Annotate with parameter template data? - if str2bool(self.request.query_params.get('parameters', False)): - queryset = queryset.prefetch_related('parameters', 'parameters__template') - - if str2bool(self.request.query_params.get('price_breaks', True)): - queryset = queryset.prefetch_related('salepricebreaks') - return queryset def get_serializer(self, *args, **kwargs): @@ -1072,11 +1060,17 @@ class PartOutputOptions(OutputConfiguration): InvenTreeOutputOption('location_detail'), InvenTreeOutputOption('path_detail'), InvenTreeOutputOption('price_breaks'), + InvenTreeOutputOption('tags'), ] class PartList( - PartMixin, BulkUpdateMixin, DataExportViewMixin, OutputOptionsMixin, ListCreateAPI + PartMixin, + BulkUpdateMixin, + ParameterListMixin, + DataExportViewMixin, + OutputOptionsMixin, + ListCreateAPI, ): """API endpoint for accessing a list of Part objects, or creating a new Part instance.""" @@ -1084,75 +1078,6 @@ class PartList( filterset_class = PartFilter is_create = True - def filter_queryset(self, queryset): - """Perform custom filtering of the queryset.""" - queryset = super().filter_queryset(queryset) - - queryset = self.filter_parametric_data(queryset) - queryset = self.order_by_parameter(queryset) - - return queryset - - def filter_parametric_data(self, queryset): - """Filter queryset against part parameters. - - Used to filter returned parts based on their parameter values. - - To filter based on parameter value, supply query parameters like: - - parameter_= - - parameter__gt= - - parameter__lte= - - where: - - is the ID of the PartParameterTemplate. - - is the value to filter against. - """ - # Allowed lookup operations for parameter values - operators = '|'.join(part.filters.PARAMETER_FILTER_OPERATORS) - - regex_pattern = rf'^parameter_(\d+)(_({operators}))?$' - - for param in self.request.query_params: - result = re.match(regex_pattern, param) - - if not result: - continue - - template_id = result.group(1) - operator = result.group(3) or '' - - value = self.request.query_params.get(param, None) - - queryset = part.filters.filter_by_parameter( - queryset, template_id, value, func=operator - ) - - return queryset - - def order_by_parameter(self, queryset): - """Perform queryset ordering based on parameter value. - - - Used if the 'ordering' query param points to a parameter - - e.g. '&ordering=param_' where specifies the PartParameterTemplate - - Only parts which have a matching parameter are returned - - Queryset is ordered based on parameter value - """ - # Extract "ordering" parameter from query args - ordering = self.request.query_params.get('ordering', None) - - if ordering: - # Ordering value must match required regex pattern - result = re.match(r'^\-?parameter_(\d+)$', ordering) - - if result: - template_id = result.group(1) - ascending = not ordering.startswith('-') - queryset = part.filters.order_by_parameter( - queryset, template_id, ascending - ) - - return queryset - filter_backends = SEARCH_ORDER_FILTER_ALIAS ordering_fields = [ @@ -1267,208 +1192,6 @@ class PartRelatedDetail(PartRelatedMixin, RetrieveUpdateDestroyAPI): """API endpoint for accessing detail view of a PartRelated object.""" -class PartParameterTemplateFilter(FilterSet): - """FilterSet for PartParameterTemplate objects.""" - - class Meta: - """Metaclass options.""" - - model = PartParameterTemplate - - # Simple filter fields - fields = ['name', 'units', 'checkbox'] - - has_choices = rest_filters.BooleanFilter( - method='filter_has_choices', label='Has Choice' - ) - - def filter_has_choices(self, queryset, name, value): - """Filter queryset to include only PartParameterTemplates with choices.""" - if str2bool(value): - return queryset.exclude(Q(choices=None) | Q(choices='')) - - return queryset.filter(Q(choices=None) | Q(choices='')).distinct() - - has_units = rest_filters.BooleanFilter(method='filter_has_units', label='Has Units') - - def filter_has_units(self, queryset, name, value): - """Filter queryset to include only PartParameterTemplates with units.""" - if str2bool(value): - return queryset.exclude(Q(units=None) | Q(units='')) - - return queryset.filter(Q(units=None) | Q(units='')).distinct() - - part = rest_filters.ModelChoiceFilter( - queryset=Part.objects.all(), method='filter_part', label=_('Part') - ) - - @extend_schema_field(OpenApiTypes.INT) - def filter_part(self, queryset, name, part): - """Filter queryset to include only PartParameterTemplates which are referenced by a part.""" - parameters = PartParameter.objects.filter(part=part) - template_ids = parameters.values_list('template').distinct() - return queryset.filter(pk__in=[el[0] for el in template_ids]) - - # Filter against a "PartCategory" - return only parameter templates which are referenced by parts in this category - category = rest_filters.ModelChoiceFilter( - queryset=PartCategory.objects.all(), - method='filter_category', - label=_('Category'), - ) - - @extend_schema_field(OpenApiTypes.INT) - def filter_category(self, queryset, name, category): - """Filter queryset to include only PartParameterTemplates which are referenced by parts in this category.""" - cats = category.get_descendants(include_self=True) - parameters = PartParameter.objects.filter(part__category__in=cats) - template_ids = parameters.values_list('template').distinct() - return queryset.filter(pk__in=[el[0] for el in template_ids]) - - -class PartParameterTemplateMixin: - """Mixin class for PartParameterTemplate API endpoints.""" - - queryset = PartParameterTemplate.objects.all() - serializer_class = part_serializers.PartParameterTemplateSerializer - - def get_queryset(self, *args, **kwargs): - """Return an annotated queryset for the PartParameterTemplateDetail endpoint.""" - queryset = super().get_queryset(*args, **kwargs) - - queryset = part_serializers.PartParameterTemplateSerializer.annotate_queryset( - queryset - ) - - return queryset - - -class PartParameterTemplateList( - PartParameterTemplateMixin, DataExportViewMixin, ListCreateAPI -): - """API endpoint for accessing a list of PartParameterTemplate objects. - - - GET: Return list of PartParameterTemplate objects - - POST: Create a new PartParameterTemplate object - """ - - filterset_class = PartParameterTemplateFilter - - filter_backends = SEARCH_ORDER_FILTER - - search_fields = ['name', 'description'] - - ordering_fields = ['name', 'units', 'checkbox', 'parts'] - - -class PartParameterTemplateDetail(PartParameterTemplateMixin, RetrieveUpdateDestroyAPI): - """API endpoint for accessing the detail view for a PartParameterTemplate object.""" - - -class PartParameterOutputOptions(OutputConfiguration): - """Output options for the PartParameter endpoints.""" - - OPTIONS = [ - InvenTreeOutputOption('part_detail'), - InvenTreeOutputOption( - 'template_detail', - default=True, - description='Include detailed information about the part parameter template.', - ), - ] - - -class PartParameterAPIMixin: - """Mixin class for PartParameter API endpoints.""" - - queryset = PartParameter.objects.all() - serializer_class = part_serializers.PartParameterSerializer - output_options = PartParameterOutputOptions - - def get_queryset(self, *args, **kwargs): - """Override get_queryset method to prefetch related fields.""" - queryset = super().get_queryset(*args, **kwargs) - queryset = queryset.prefetch_related('part', 'template', 'updated_by') - return queryset - - def get_serializer_context(self): - """Pass the 'request' object through to the serializer context.""" - context = super().get_serializer_context() - context['request'] = self.request - - return context - - -class PartParameterFilter(FilterSet): - """Custom filters for the PartParameterList API endpoint.""" - - class Meta: - """Metaclass options for the filterset.""" - - model = PartParameter - fields = ['template', 'updated_by'] - - part = rest_filters.ModelChoiceFilter( - queryset=Part.objects.all(), method='filter_part' - ) - - def filter_part(self, queryset, name, part): - """Filter against the provided part. - - If 'include_variants' query parameter is provided, filter against variant parts also - """ - try: - include_variants = str2bool(self.request.GET.get('include_variants', False)) - except AttributeError: - include_variants = False - - if include_variants: - return queryset.filter(part__in=part.get_descendants(include_self=True)) - else: - return queryset.filter(part=part) - - -class PartParameterList( - BulkCreateMixin, - PartParameterAPIMixin, - OutputOptionsMixin, - DataExportViewMixin, - ListCreateAPI, -): - """API endpoint for accessing a list of PartParameter objects. - - - GET: Return list of PartParameter objects - - POST: Create a new PartParameter object - """ - - filterset_class = PartParameterFilter - - filter_backends = SEARCH_ORDER_FILTER_ALIAS - - ordering_fields = ['name', 'data', 'part', 'template', 'updated', 'updated_by'] - - ordering_field_aliases = { - 'name': 'template__name', - 'units': 'template__units', - 'data': ['data_numeric', 'data'], - 'part': 'part__name', - } - - search_fields = [ - 'data', - 'template__name', - 'template__description', - 'template__units', - ] - - unique_create_fields = ['part', 'template'] - - -class PartParameterDetail( - PartParameterAPIMixin, OutputOptionsMixin, RetrieveUpdateDestroyAPI -): - """API endpoint for detail view of a single PartParameter object.""" - - class PartStocktakeFilter(FilterSet): """Custom filter for the PartStocktakeList endpoint.""" @@ -1639,6 +1362,8 @@ class BomOutputOptions(OutputConfiguration): InvenTreeOutputOption('can_build', default=True), InvenTreeOutputOption('part_detail'), InvenTreeOutputOption('sub_part_detail'), + InvenTreeOutputOption('substitutes'), + InvenTreeOutputOption('pricing'), ] @@ -1880,53 +1605,6 @@ part_api_urls = [ path('', PartRelatedList.as_view(), name='api-part-related-list'), ]), ), - # Base URL for PartParameter API endpoints - path( - 'parameter/', - include([ - path( - 'template/', - include([ - path( - '/', - include([ - path( - 'metadata/', - MetadataView.as_view(model=PartParameterTemplate), - name='api-part-parameter-template-metadata', - ), - path( - '', - PartParameterTemplateDetail.as_view(), - name='api-part-parameter-template-detail', - ), - ]), - ), - path( - '', - PartParameterTemplateList.as_view(), - name='api-part-parameter-template-list', - ), - ]), - ), - path( - '/', - include([ - path( - 'metadata/', - MetadataView.as_view(model=PartParameter), - name='api-part-parameter-metadata', - ), - path( - '', - PartParameterDetail.as_view(), - name='api-part-parameter-detail', - ), - ]), - ), - path('', PartParameterList.as_view(), name='api-part-parameter-list'), - ]), - ), # Part stocktake data path( 'stocktake/', diff --git a/src/backend/InvenTree/part/filters.py b/src/backend/InvenTree/part/filters.py index 33f3998ab6..ad4107566e 100644 --- a/src/backend/InvenTree/part/filters.py +++ b/src/backend/InvenTree/part/filters.py @@ -18,7 +18,6 @@ from django.db import models from django.db.models import ( Case, DecimalField, - Exists, ExpressionWrapper, F, FloatField, @@ -35,8 +34,6 @@ from django.db.models.query import QuerySet from sql_util.utils import SubquerySum -import InvenTree.conversion -import InvenTree.helpers import part.models import stock.models from build.status_codes import BuildStatusGroups @@ -519,159 +516,3 @@ def annotate_bom_item_can_build(queryset: QuerySet, reference: str = '') -> Quer ) return queryset - - -"""A list of valid operators for filtering part parameters.""" -PARAMETER_FILTER_OPERATORS: list[str] = ['gt', 'gte', 'lt', 'lte', 'ne', 'icontains'] - - -def filter_by_parameter( - queryset: QuerySet, template_id: int, value: str, func: str = '' -) -> QuerySet: - """Filter the given queryset by a given template parameter. - - Parts which do not have a value for the given parameter are excluded. - - Arguments: - queryset: A queryset of Part objects - template_id (int): The ID of the template parameter to filter by - value (str): The value of the parameter to filter by - func (str): The function to use for the filter (e.g. __gt, __lt, __contains) - - Returns: - A queryset of Part objects filtered by the given parameter - """ - if func and func not in PARAMETER_FILTER_OPERATORS: - raise ValueError(f'Invalid parameter filter function supplied: {func}.') - - try: - template = part.models.PartParameterTemplate.objects.get(pk=template_id) - except (ValueError, part.models.PartParameterTemplate.DoesNotExist): - # Return queryset unchanged if the template does not exist - return queryset - - # Construct a "numeric" value - try: - value_numeric = float(value) - except (ValueError, TypeError): - value_numeric = None - - if template.checkbox: - # Account for 'boolean' parameter values - # Convert to "True" or "False" string in this case - bool_value = InvenTree.helpers.str2bool(value) - value_numeric = 1 if bool_value else 0 - value = str(bool_value) - - # Boolean filtering is limited to exact matches - func = '' - - elif value_numeric is None and template.units: - # Convert the raw value to the units of the template parameter - try: - value_numeric = InvenTree.conversion.convert_physical_value( - value, template.units - ) - except Exception: - # The value cannot be converted - return an empty queryset - return queryset.none() - - # Special handling for the "not equal" operator - if func == 'ne': - invert = True - func = '' - else: - invert = False - - # Some filters are only applicable to string values - text_only = any([func in ['icontains'], value_numeric is None]) - - # Ensure the function starts with a double underscore - if func and not func.startswith('__'): - func = f'__{func}' - - # Query for 'numeric' value - this has priority over 'string' value - data_numeric = { - 'parameters__template': template, - 'parameters__data_numeric__isnull': False, - f'parameters__data_numeric{func}': value_numeric, - } - - query_numeric = Q(**data_numeric) - - # Query for 'string' value - data_text = { - 'parameters__template': template, - f'parameters__data{func}': str(value), - } - - if not text_only: - data_text['parameters__data_numeric__isnull'] = True - - query_text = Q(**data_text) - - # Combine the queries based on whether we are filtering by text or numeric value - q = query_text if text_only else query_text | query_numeric - - # Special handling for the '__ne' (not equal) operator - # In this case, we want the *opposite* of the above queries - if invert: - return queryset.exclude(q).distinct() - else: - return queryset.filter(q).distinct() - - -def order_by_parameter( - queryset: QuerySet, template_id: int, ascending: bool = True -) -> QuerySet: - """Order the given queryset by a given template parameter. - - Parts which do not have a value for the given parameter are ordered last. - - Arguments: - queryset: A queryset of Part objects - template_id (int): The ID of the template parameter to order by - ascending (bool): Order by ascending or descending (default = True) - - Returns: - A queryset of Part objects ordered by the given parameter - """ - template_filter = part.models.PartParameter.objects.filter( - template__id=template_id, part_id=OuterRef('id') - ) - - # Annotate the queryset with the parameter value, and whether it exists - queryset = queryset.annotate(parameter_exists=Exists(template_filter)) - - # Annotate the text data value - queryset = queryset.annotate( - parameter_value=Case( - When( - parameter_exists=True, - then=Subquery( - template_filter.values('data')[:1], output_field=models.CharField() - ), - ), - default=Value('', output_field=models.CharField()), - ), - parameter_value_numeric=Case( - When( - parameter_exists=True, - then=Subquery( - template_filter.values('data_numeric')[:1], - output_field=models.FloatField(), - ), - ), - default=Value(0, output_field=models.FloatField()), - ), - ) - - prefix = '' if ascending else '-' - - # Return filtered queryset - - return queryset.order_by( - '-parameter_exists', - f'{prefix}parameter_value_numeric', - f'{prefix}parameter_value', - ) diff --git a/src/backend/InvenTree/part/fixtures/params.yaml b/src/backend/InvenTree/part/fixtures/params.yaml index 2364a95fdb..54c1e3fd2b 100644 --- a/src/backend/InvenTree/part/fixtures/params.yaml +++ b/src/backend/InvenTree/part/fixtures/params.yaml @@ -1,70 +1,100 @@ # Create some PartParameter templtes -- model: part.PartParameterTemplate +- model: common.parametertemplate pk: 1 fields: name: Length units: mm + model_type: + - part + - part -- model: part.PartParameterTemplate +- model: common.parametertemplate pk: 2 fields: name: Width units: mm + model_type: + - part + - part -- model: part.PartParameterTemplate +- model: common.parametertemplate pk: 3 fields: name: Thickness units: mm + model_type: + - part + - part # Add some parameters to parts (requires part.yaml) -- model: part.PartParameter +- model: common.parameter pk: 1 fields: - part: 1 + model_id: 1 + model_type: + - part + - part template: 1 data: 4 -- model: part.PartParameter +- model: common.parameter pk: 2 fields: - part: 2 + model_id: 2 + model_type: + - part + - part template: 1 data: 12 -- model: part.PartParameter +- model: common.parameter pk: 3 fields: - part: 3 + model_id: 3 + model_type: + - part + - part template: 1 data: 12 -- model: part.PartParameter +- model: common.parameter pk: 4 fields: - part: 3 + model_id: 3 + model_type: + - part + - part template: 2 data: 12 -- model: part.PartParameter +- model: common.parameter pk: 5 fields: - part: 3 + model_id: 3 + model_type: + - part + - part template: 3 data: 12 -- model: part.PartParameter +- model: common.parameter pk: 6 fields: - part: 100 + model_id: 100 + model_type: + - part + - part template: 3 data: 12 -- model: part.PartParameter +- model: common.parameter pk: 7 fields: - part: 100 + model_id: 100 + model_type: + - part + - part template: 1 data: 12 @@ -73,12 +103,12 @@ pk: 1 fields: category: 7 - parameter_template: 1 + template: 1 default_value: '2.8' - model: part.PartCategoryParameterTemplate pk: 2 fields: category: 7 - parameter_template: 3 + template: 3 default_value: '0.5' diff --git a/src/backend/InvenTree/part/migrations/0071_alter_partparametertemplate_name.py b/src/backend/InvenTree/part/migrations/0071_alter_partparametertemplate_name.py index fef49e73f6..4fad4a9bf1 100644 --- a/src/backend/InvenTree/part/migrations/0071_alter_partparametertemplate_name.py +++ b/src/backend/InvenTree/part/migrations/0071_alter_partparametertemplate_name.py @@ -14,6 +14,6 @@ class Migration(migrations.Migration): migrations.AlterField( model_name='partparametertemplate', name='name', - field=models.CharField(help_text='Parameter Name', max_length=100, unique=True, validators=[part.models.validate_template_name], verbose_name='Name'), + field=models.CharField(help_text='Parameter Name', max_length=100, unique=True, validators=[], verbose_name='Name'), ), ] diff --git a/src/backend/InvenTree/part/migrations/0144_auto_20251203_1045.py b/src/backend/InvenTree/part/migrations/0144_auto_20251203_1045.py new file mode 100644 index 0000000000..52d9b61ffa --- /dev/null +++ b/src/backend/InvenTree/part/migrations/0144_auto_20251203_1045.py @@ -0,0 +1,161 @@ +# Generated by Django 5.2.8 on 2025-12-03 10:45 + +from django.db import migrations, models +from django.db.models import deletion + + +def update_parameter(apps, schema_editor): + """Data migration to update existing PartParameter records. + + - Set 'model_type' to the ContentType for 'part.Part' + - Set 'model_id' to the existing 'part_id' value + """ + + PartParameter = apps.get_model("part", "PartParameter") + ContentType = apps.get_model("contenttypes", "ContentType") + + part_content_type, created = ContentType.objects.get_or_create( + app_label="part", + model="part", + ) + + parameters_to_update = [] + + N = PartParameter.objects.count() + + # Update any existing PartParameter object, setting the new fields + for parameter in PartParameter.objects.all(): + parameter.model_type = part_content_type + parameter.model_id = parameter.part_id + parameters_to_update.append(parameter) + + if len(parameters_to_update) > 0: + + print(f"Updating {len(parameters_to_update)} PartParameter records.") + + PartParameter.objects.bulk_update( + parameters_to_update, + fields=["model_type", "model_id"], + ) + + # Ensure that the number of updated records matches the total number of records + assert PartParameter.objects.count() == N + + # Ensure that no PartParameter records have null model_type or model_id + assert PartParameter.objects.filter(model_type=None).count() == 0 + assert PartParameter.objects.filter(model_id=None).count() == 0 + + +def reverse_update_parameter(apps, schema_editor): + """Reverse data migration to restore existing PartParameter records. + + - Set 'part_id' to the existing 'model_id' value + """ + + PartParameter = apps.get_model("part", "PartParameter") + + parmeters_to_update = [] + + for parameter in PartParameter.objects.all(): + parameter.part = parameter.model_id + parmeters_to_update.append(parameter) + + if len(parmeters_to_update) > 0: + + print(f"Reversing update of {len(parmeters_to_update)} PartParameter records.") + + PartParameter.objects.bulk_update( + parmeters_to_update, + fields=["part"], + ) + + +class Migration(migrations.Migration): + """Data migration for making the PartParameterTemplate and PartParameter models generic. + + - Add new fields to the "PartParameterTemplate" and "PartParameter" models + - Migrate existing data to populate the new fields + - Make the new fields non-nullable (if appropriate) + - Remove any obsolete fields (if necessary) + """ + + atomic = False + + dependencies = [ + ("part", "0143_alter_part_image"), + ] + + operations = [ + # Add the new "enabled" field to the PartParameterTemplate model + migrations.AddField( + model_name="partparametertemplate", + name="enabled", + field=models.BooleanField( + default=True, + help_text="Is this parameter template enabled?", + verbose_name="Enabled", + ), + ), + # Add the "model_type" field to the PartParmaeterTemplate model + migrations.AddField( + model_name="partparametertemplate", + name="model_type", + field=models.ForeignKey( + blank=True, null=True, + help_text="Target model type for this parameter template", + on_delete=deletion.SET_NULL, + to="contenttypes.contenttype", + verbose_name="Model type", + ), + ), + # Add the "model_type" field to the PartParameter model + # Note: This field is initially nullable, to allow existing records to remain valid. + migrations.AddField( + model_name="partparameter", + name="model_type", + field=models.ForeignKey( + blank=True, null=True, + on_delete=deletion.CASCADE, + to="contenttypes.contenttype", + ), + ), + # Add the "model_id" field to the PartParameter model + # Note: This field is initially nullable, to allow existing records to remain valid. + migrations.AddField( + model_name="partparameter", + name="model_id", + field=models.PositiveIntegerField( + blank=True, null=True, + help_text="ID of the target model for this parameter", + verbose_name="Model ID", + ) + ), + # Migrate existing PartParameter records to populate the new fields + migrations.RunPython( + update_parameter, + reverse_code=reverse_update_parameter, + ), + # Update the "model_type" field on the PartParameter model to be non-nullable + migrations.AlterField( + model_name="partparameter", + name="model_type", + field=models.ForeignKey( + on_delete=deletion.CASCADE, + to="contenttypes.contenttype", + ), + ), + # Update the "model_id" field on the PartParameter model to be non-nullable + migrations.AlterField( + model_name="partparameter", + name="model_id", + field=models.PositiveIntegerField( + help_text="ID of the target model for this parameter", + verbose_name="Model ID", + ) + ), + # Remove the "unique_together" constraint on the PartParameter model + migrations.AlterUniqueTogether( + name="partparameter", + unique_together={('model_type', 'model_id', 'template')}, + ), + ] diff --git a/src/backend/InvenTree/part/migrations/0145_auto_20251203_1238.py b/src/backend/InvenTree/part/migrations/0145_auto_20251203_1238.py new file mode 100644 index 0000000000..0924f9065e --- /dev/null +++ b/src/backend/InvenTree/part/migrations/0145_auto_20251203_1238.py @@ -0,0 +1,111 @@ +# Generated by Django 5.2.8 on 2025-12-03 12:38 + +from django.db import migrations, models +from django.db.models import deletion + + +def update_category_parameters(apps, schema_editor): + """Copy the 'parameter_template' field to the new 'template' field.""" + + PartCategoryParameterTemplate = apps.get_model("part", "PartCategoryParameterTemplate") + ParameterTemplate = apps.get_model("common", "ParameterTemplate") + + category_parameters_to_update = [] + + for cat_param in PartCategoryParameterTemplate.objects.all(): + template = ParameterTemplate.objects.get(pk=cat_param.parameter_template_id) + cat_param.template = template + category_parameters_to_update.append(cat_param) + + if len(category_parameters_to_update) > 0: + + print(f"Updating {len(category_parameters_to_update)} PartCategoryParameterTemplate records.") + + PartCategoryParameterTemplate.objects.bulk_update( + category_parameters_to_update, + fields=["template"], + ) + + +def reverse_update_category_parameters(apps, schema_editor): + """Copy the 'template' field back to the 'parameter_template' field.""" + + PartParameterTemplate = apps.get_model("part", "PartParameterTemplate") + PartCategoryParameterTemplate = apps.get_model("part", "PartCategoryParameterTemplate") + + category_parameters_to_update = [] + + for cat_param in PartCategoryParameterTemplate.objects.all(): + template = PartParameterTemplate.objects.get(pk=cat_param.template_id) + cat_param.parameter_template = template + category_parameters_to_update.append(cat_param) + + if len(category_parameters_to_update) > 0: + + print(f"Reversing update of {len(category_parameters_to_update)} PartCategoryParameterTemplate records.") + + PartCategoryParameterTemplate.objects.bulk_update( + category_parameters_to_update, + fields=["parameter_template"], + ) + + +class Migration(migrations.Migration): + + dependencies = [ + ("part", "0144_auto_20251203_1045"), + ("common", "0040_parametertemplate_parameter") + ] + + operations = [ + # Remove the obsolete "part" field from the PartParameter model + migrations.RemoveField( + model_name="partparameter", + name="part", + ), + # Add a new "template" field to the PartCategoryParameterTemplate model + migrations.AddField( + model_name="partcategoryparametertemplate", + name="template", + field=models.ForeignKey( + blank=True, + null=True, + on_delete=deletion.CASCADE, + related_name="part_categories", + to="common.parametertemplate", + ), + ), + # Remove unique constraint on PartCategoryParameterTemplate model + migrations.RemoveConstraint( + model_name="partcategoryparametertemplate", + name="unique_category_parameter_template_pair", + ), + # Perform data migration for the PartCategoryParameterTemplate model + migrations.RunPython( + update_category_parameters, + reverse_code=reverse_update_category_parameters, + ), + # Remove the obsolete "part_template" field from the PartCategoryParameterTemplate model + migrations.RemoveField( + model_name="partcategoryparametertemplate", + name="parameter_template", + ), + # Remove nullable attribute from the new 'template' field + migrations.AlterField( + model_name="partcategoryparametertemplate", + name="template", + field=models.ForeignKey( + on_delete=deletion.CASCADE, + related_name="part_categories", + to="common.parametertemplate", + ), + ), + # Update uniqueness constraint on PartCategoryParameterTemplate model + migrations.AddConstraint( + model_name="partcategoryparametertemplate", + constraint=models.UniqueConstraint( + fields=("category", "template"), + name="unique_category_parameter_pair", + ), + ), + ] diff --git a/src/backend/InvenTree/part/migrations/0146_auto_20251203_1241.py b/src/backend/InvenTree/part/migrations/0146_auto_20251203_1241.py new file mode 100644 index 0000000000..bd6bdfbe31 --- /dev/null +++ b/src/backend/InvenTree/part/migrations/0146_auto_20251203_1241.py @@ -0,0 +1,23 @@ +# Generated by Django 5.2.8 on 2025-12-03 12:41 + +from django.db import migrations + + +class Migration(migrations.Migration): + + dependencies = [ + ("part", "0145_auto_20251203_1238"), + ] + + # Remove the PartParameterTemplate and PartParameter models + # Note: We *DO NOT* drop the underlying database tables, + # as these are now used by the common.ParameterTemplate and common.Parameter models + operations = [ + migrations.SeparateDatabaseAndState( + state_operations=[ + migrations.DeleteModel(name='PartParameterTemplate'), + migrations.DeleteModel(name='PartParameter'), + ], + database_operations=[] + ), + ] diff --git a/src/backend/InvenTree/part/models.py b/src/backend/InvenTree/part/models.py index e02602a90c..6de1d544d0 100644 --- a/src/backend/InvenTree/part/models.py +++ b/src/backend/InvenTree/part/models.py @@ -14,12 +14,9 @@ from typing import cast from django.conf import settings from django.contrib.auth.models import User +from django.contrib.contenttypes.models import ContentType from django.core.exceptions import ValidationError -from django.core.validators import ( - MaxValueValidator, - MinLengthValidator, - MinValueValidator, -) +from django.core.validators import MaxValueValidator, MinValueValidator from django.db import models, transaction from django.db.models import F, Q, QuerySet, Sum, UniqueConstraint from django.db.models.functions import Coalesce @@ -59,7 +56,7 @@ from company.models import SupplierPart from InvenTree import helpers, validators from InvenTree.exceptions import log_error from InvenTree.fields import InvenTreeURLField -from InvenTree.helpers import decimal2money, decimal2string, normalize, str2bool +from InvenTree.helpers import decimal2money, decimal2string, normalize from order import models as OrderModels from order.status_codes import ( PurchaseOrderStatus, @@ -229,7 +226,7 @@ class PartCategory( """Prefectch parts parameters.""" return ( self.get_parts(cascade=cascade) - .prefetch_related('parameters', 'parameters__template') + .prefetch_related('parameters_list', 'parameters_list__template') .all() ) @@ -240,7 +237,7 @@ class PartCategory( parts = prefetch or self.prefetch_parts_parameters(cascade=cascade) for part in parts: - for parameter in part.parameters.all(): + for parameter in part.parameters_list.all(): parameter_name = parameter.template.name if parameter_name not in unique_parameters_names: unique_parameters_names.append(parameter_name) @@ -263,7 +260,7 @@ class PartCategory( if part.IPN: part_parameters['IPN'] = part.IPN - for parameter in part.parameters.all(): + for parameter in part.parameters_list.all(): parameter_name = parameter.template.name parameter_value = parameter.data part_parameters[parameter_name] = parameter_value @@ -287,7 +284,7 @@ class PartCategory( def get_parameter_templates(self): """Return parameter templates associated to category.""" prefetch = PartCategoryParameterTemplate.objects.prefetch_related( - 'category', 'parameter_template' + 'category', 'parameter' ) return prefetch.filter(category=self.id) @@ -350,28 +347,85 @@ def rename_part_image(instance, filename): return os.path.join(base, fname) -class PartManager(TreeManager): - """Defines a custom object manager for the Part model. +class PartCategoryParameterTemplate(InvenTree.models.InvenTreeMetadataModel): + """A PartCategoryParameterTemplate creates a unique relationship between a PartCategory and a ParameterTemplate. - The main purpose of this manager is to reduce the number of database hits, - as the Part model has a large number of ForeignKey fields! + Multiple ParameterTemplate instances can be associated to a PartCategory to drive a default list of parameter templates attached to a Part instance upon creation. + + Attributes: + category: Reference to a single PartCategory object + template: Reference to a single ParameterTemplate object + default_value: The default value for the parameter in the context of the selected category """ - def get_queryset(self): - """Perform default prefetch operations when accessing Part model from the database.""" - return ( - super() - .get_queryset() - .prefetch_related( - 'category', - 'pricing_data', - 'category__parent', - 'stock_items', - 'builds', - 'tags', + @staticmethod + def get_api_url(): + """Return the API endpoint URL associated with the PartCategoryParameterTemplate model.""" + return reverse('api-part-category-parameter-list') + + class Meta: + """Metaclass providing extra model definition.""" + + verbose_name = _('Part Category Parameter Template') + + constraints = [ + UniqueConstraint( + fields=['category', 'template'], name='unique_category_parameter_pair' ) + ] + + def __str__(self): + """String representation of a PartCategoryParameterTemplate (admin interface).""" + if self.default_value: + return f'{self.category.name} | {self.template.name} | {self.default_value}' + return f'{self.category.name} | {self.template.name}' + + def clean(self): + """Validate this PartCategoryParameterTemplate instance. + + Checks the provided 'default_value', and (if not blank), ensure it is valid. + """ + super().clean() + + self.default_value = ( + '' if self.default_value is None else str(self.default_value.strip()) ) + if ( + self.default_value + and get_global_setting( + 'PARAMETER_ENFORCE_UNITS', True, cache=False, create=False + ) + and self.template.units + ): + try: + InvenTree.conversion.convert_physical_value( + self.default_value, self.template.units + ) + except ValidationError as e: + raise ValidationError({'default_value': e.message}) + + category = models.ForeignKey( + PartCategory, + on_delete=models.CASCADE, + related_name='parameter_templates', + verbose_name=_('Category'), + help_text=_('Part Category'), + ) + + template = models.ForeignKey( + common.models.ParameterTemplate, + on_delete=models.CASCADE, + related_name='part_categories', + ) + + default_value = models.CharField( + max_length=500, + blank=True, + verbose_name=_('Default Value'), + help_text=_('Default Parameter Value'), + ) + class PartReportContext(report.mixins.BaseReportContext): """Report context for the Part model. @@ -408,6 +462,7 @@ class PartReportContext(report.mixins.BaseReportContext): @cleanup.ignore class Part( InvenTree.models.PluginValidationMixin, + InvenTree.models.InvenTreeParameterMixin, InvenTree.models.InvenTreeAttachmentMixin, InvenTree.models.InvenTreeBarcodeMixin, InvenTree.models.InvenTreeNotesMixin, @@ -462,7 +517,7 @@ class Part( NODE_PARENT_KEY = 'variant_of' IMAGE_RENAME = rename_part_image - objects = PartManager() + objects = TreeManager() tags = TaggableManager(blank=True) @@ -513,6 +568,16 @@ class Part( 'test_templates': self.getTestTemplateMap(), } + def check_parameter_delete(self, parameter): + """Custom delete check for Paramteter instances associated with this Part.""" + if self.locked: + raise ValidationError(_('Cannot delete parameters of a locked part')) + + def check_parameter_save(self, parameter): + """Custom save check for Parameter instances associated with this Part.""" + if self.locked: + raise ValidationError(_('Cannot modify parameters of a locked part')) + def delete(self, **kwargs): """Custom delete method for the Part model. @@ -1027,7 +1092,7 @@ class Part( self.ensure_trackable() def ensure_trackable(self): - """Ensure that trackable is set correctly downline.""" + """Ensure that trackable is set correctly downstream.""" if self.trackable: for part in self.get_used_in(): if not part.trackable: @@ -2387,36 +2452,6 @@ class Part( sub.bom_item = bom_item sub.save() - @transaction.atomic - def copy_parameters_from(self, other: Part, **kwargs) -> None: - """Copy all parameter values from another Part instance.""" - clear = kwargs.get('clear', True) - - if clear: - self.get_parameters().delete() - - parameters = [] - - for parameter in other.get_parameters(): - # If this part already has a parameter pointing to the same template, - # delete that parameter from this part first! - - try: - existing = PartParameter.objects.get( - part=self, template=parameter.template - ) - existing.delete() - except PartParameter.DoesNotExist: - pass - - parameter.part = self - parameter.pk = None - - parameters.append(parameter) - - if len(parameters) > 0: - PartParameter.objects.bulk_create(parameters) - @transaction.atomic def copy_tests_from(self, other: Part, **kwargs) -> None: """Copy all test templates from another Part instance. @@ -2444,6 +2479,42 @@ class Part( if len(templates) > 0: PartTestTemplate.objects.bulk_create(templates) + @transaction.atomic + def copy_category_parameters(self, category: PartCategory): + """Copy parameter templates from the specified PartCategory. + + This function is normally called when the Part is first created. + """ + from common.models import Parameter + + categories = category.get_ancestors(include_self=True) + + category_templates = PartCategoryParameterTemplate.objects.filter( + category__in=categories + ).order_by('-category__level') + + parameters = [] + content_type = ContentType.objects.get_for_model(Part) + + for category_template in category_templates: + # First ensure that the part doesn't have that parameter + if self.parameters_list.filter( + template=category_template.template + ).exists(): + continue + + parameters.append( + Parameter( + template=category_template.template, + model_type=content_type, + model_id=self.pk, + data=category_template.default_value, + ) + ) + + if len(parameters) > 0: + Parameter.objects.bulk_create(parameters) + def getTestTemplates( self, required=None, include_parent: bool = True, enabled=None ) -> QuerySet[PartTestTemplate]: @@ -2543,36 +2614,6 @@ class Part( return quantity - def get_parameter(self, name): - """Return the parameter with the given name. - - If no matching parameter is found, return None. - """ - try: - return self.parameters.get(template__name=name) - except PartParameter.DoesNotExist: - return None - - def get_parameters(self): - """Return all parameters for this part, ordered by name.""" - return self.parameters.order_by('template__name') - - def parameters_map(self): - """Return a map (dict) of parameter values associated with this Part instance, of the form. - - Example: - { - "name_1": "value_1", - "name_2": "value_2", - } - """ - params = {} - - for parameter in self.parameters.all(): - params[parameter.template.name] = parameter.data - - return params - @property def has_variants(self): """Check if this Part object has variants underneath it.""" @@ -3740,445 +3781,6 @@ class PartTestTemplate(InvenTree.models.InvenTreeMetadataModel): return [x.strip() for x in self.choices.split(',') if x.strip()] -def validate_template_name(name): - """Placeholder for legacy function used in migrations.""" - - -class PartParameterTemplate(InvenTree.models.InvenTreeMetadataModel): - """A PartParameterTemplate provides a template for key:value pairs for extra parameters fields/values to be added to a Part. - - This allows users to arbitrarily assign data fields to a Part beyond the built-in attributes. - - Attributes: - name: The name (key) of the Parameter [string] - units: The units of the Parameter [string] - description: Description of the parameter [string] - checkbox: Boolean flag to indicate whether the parameter is a checkbox [bool] - choices: List of valid choices for the parameter [string] - selectionlist: SelectionList that should be used for choices [selectionlist] - """ - - class Meta: - """Metaclass options for the PartParameterTemplate model.""" - - verbose_name = _('Part Parameter Template') - - @staticmethod - def get_api_url(): - """Return the list API endpoint URL associated with the PartParameterTemplate model.""" - return reverse('api-part-parameter-template-list') - - def __str__(self): - """Return a string representation of a PartParameterTemplate instance.""" - s = str(self.name) - if self.units: - s += f' ({self.units})' - return s - - def clean(self): - """Custom cleaning step for this model. - - Checks: - - A 'checkbox' field cannot have 'choices' set - - A 'checkbox' field cannot have 'units' set - """ - super().clean() - - # Check that checkbox parameters do not have units or choices - if self.checkbox: - if self.units: - raise ValidationError({ - 'units': _('Checkbox parameters cannot have units') - }) - - if self.choices: - raise ValidationError({ - 'choices': _('Checkbox parameters cannot have choices') - }) - - # Check that 'choices' are in fact valid - if self.choices is None: - self.choices = '' - else: - self.choices = str(self.choices).strip() - - if self.choices: - choice_set = set() - - for choice in self.choices.split(','): - choice = choice.strip() - - # Ignore empty choices - if not choice: - continue - - if choice in choice_set: - raise ValidationError({'choices': _('Choices must be unique')}) - - choice_set.add(choice) - - def validate_unique(self, exclude=None): - """Ensure that PartParameterTemplates cannot be created with the same name. - - This test should be case-insensitive (which the unique caveat does not cover). - """ - super().validate_unique(exclude) - - try: - others = PartParameterTemplate.objects.filter( - name__iexact=self.name - ).exclude(pk=self.pk) - - if others.exists(): - msg = _('Parameter template name must be unique') - raise ValidationError({'name': msg}) - except PartParameterTemplate.DoesNotExist: - pass - - def get_choices(self): - """Return a list of choices for this parameter template.""" - if self.selectionlist: - return self.selectionlist.get_choices() - - if not self.choices: - return [] - - return [x.strip() for x in self.choices.split(',') if x.strip()] - - name = models.CharField( - max_length=100, - verbose_name=_('Name'), - help_text=_('Parameter Name'), - unique=True, - ) - - units = models.CharField( - max_length=25, - verbose_name=_('Units'), - help_text=_('Physical units for this parameter'), - blank=True, - validators=[validators.validate_physical_units], - ) - - description = models.CharField( - max_length=250, - verbose_name=_('Description'), - help_text=_('Parameter description'), - blank=True, - ) - - checkbox = models.BooleanField( - default=False, - verbose_name=_('Checkbox'), - help_text=_('Is this parameter a checkbox?'), - ) - - choices = models.CharField( - max_length=5000, - verbose_name=_('Choices'), - help_text=_('Valid choices for this parameter (comma-separated)'), - blank=True, - ) - - selectionlist = models.ForeignKey( - common.models.SelectionList, - blank=True, - null=True, - on_delete=models.SET_NULL, - related_name='parameter_templates', - verbose_name=_('Selection List'), - help_text=_('Selection list for this parameter'), - ) - - -@receiver( - post_save, - sender=PartParameterTemplate, - dispatch_uid='post_save_part_parameter_template', -) -def post_save_part_parameter_template(sender, instance, created, **kwargs): - """Callback function when a PartParameterTemplate is created or saved.""" - import part.tasks as part_tasks - - if InvenTree.ready.canAppAccessDatabase() and not InvenTree.ready.isImportingData(): - if not created: - # Schedule a background task to rebuild the parameters against this template - InvenTree.tasks.offload_task( - part_tasks.rebuild_parameters, - instance.pk, - force_async=True, - group='part', - ) - - -class PartParameter( - common.models.UpdatedUserMixin, InvenTree.models.InvenTreeMetadataModel -): - """A PartParameter is a specific instance of a PartParameterTemplate. It assigns a particular parameter pair to a part. - - Attributes: - part: Reference to a single Part object - template: Reference to a single PartParameterTemplate object - data: The data (value) of the Parameter [string] - data_numeric: Numeric value of the parameter (if applicable) [float] - note: Optional note field for the parameter [string] - updated: Timestamp of when the parameter was last updated [datetime] - updated_by: Reference to the User who last updated the parameter [User] - """ - - class Meta: - """Metaclass providing extra model definition.""" - - verbose_name = _('Part Parameter') - # Prevent multiple instances of a parameter for a single part - unique_together = ('part', 'template') - - @staticmethod - def get_api_url(): - """Return the list API endpoint URL associated with the PartParameter model.""" - return reverse('api-part-parameter-list') - - def __str__(self): - """String representation of a PartParameter (used in the admin interface).""" - return f'{self.part.full_name} : {self.template.name} = {self.data} ({self.template.units})' - - def delete(self): - """Custom delete handler for the PartParameter model. - - - Check if the parameter can be deleted - """ - self.check_part_lock() - super().delete() - - def check_part_lock(self): - """Check if the referenced part is locked.""" - # TODO: Potentially control this behaviour via a global setting - - if self.part.locked: - raise ValidationError(_('Parameter cannot be modified - part is locked')) - - def save(self, *args, **kwargs): - """Custom save method for the PartParameter model.""" - # Validate the PartParameter before saving - self.calculate_numeric_value() - - # Check if the part is locked - self.check_part_lock() - - # Convert 'boolean' values to 'True' / 'False' - if self.template.checkbox: - self.data = str2bool(self.data) - self.data_numeric = 1 if self.data else 0 - - super().save(*args, **kwargs) - - def clean(self): - """Validate the PartParameter before saving to the database.""" - super().clean() - - # Validate the parameter data against the template units - if ( - get_global_setting( - 'PART_PARAMETER_ENFORCE_UNITS', True, cache=False, create=False - ) - and self.template.units - ): - try: - InvenTree.conversion.convert_physical_value( - self.data, self.template.units - ) - except ValidationError as e: - raise ValidationError({'data': e.message}) - - # Validate the parameter data against the template choices - if choices := self.template.get_choices(): - if self.data not in choices: - raise ValidationError({'data': _('Invalid choice for parameter value')}) - - self.calculate_numeric_value() - - # Run custom validation checks (via plugins) - from plugin import PluginMixinEnum, registry - - for plugin in registry.with_mixin(PluginMixinEnum.VALIDATION): - # Note: The validate_part_parameter function may raise a ValidationError - try: - result = plugin.validate_part_parameter(self, self.data) - if result: - break - except ValidationError as exc: - # Re-throw the ValidationError against the 'data' field - raise ValidationError({'data': exc.message}) - except Exception: - log_error('validate_part_parameter', plugin=plugin.slug) - - def calculate_numeric_value(self): - """Calculate a numeric value for the parameter data. - - - If a 'units' field is provided, then the data will be converted to the base SI unit. - - Otherwise, we'll try to do a simple float cast - """ - if self.template.units: - try: - self.data_numeric = InvenTree.conversion.convert_physical_value( - self.data, self.template.units - ) - except (ValidationError, ValueError): - self.data_numeric = None - - # No units provided, so try to cast to a float - else: - try: - self.data_numeric = float(self.data) - except ValueError: - self.data_numeric = None - - if self.data_numeric is not None and type(self.data_numeric) is float: - # Prevent out of range numbers, etc - # Ref: https://github.com/inventree/InvenTree/issues/7593 - if math.isnan(self.data_numeric) or math.isinf(self.data_numeric): - self.data_numeric = None - - part = models.ForeignKey( - Part, - on_delete=models.CASCADE, - related_name='parameters', - verbose_name=_('Part'), - help_text=_('Parent Part'), - ) - - template = models.ForeignKey( - PartParameterTemplate, - on_delete=models.CASCADE, - related_name='instances', - verbose_name=_('Template'), - help_text=_('Parameter Template'), - ) - - data = models.CharField( - max_length=500, - verbose_name=_('Data'), - help_text=_('Parameter Value'), - validators=[MinLengthValidator(1)], - ) - - data_numeric = models.FloatField(default=None, null=True, blank=True) - - note = models.CharField( - max_length=500, - blank=True, - verbose_name=_('Note'), - help_text=_('Optional note field'), - ) - - @property - def units(self): - """Return the units associated with the template.""" - return self.template.units - - @property - def name(self): - """Return the name of the template.""" - return self.template.name - - @property - def description(self): - """Return the description of the template.""" - return self.template.description - - @classmethod - def create(cls, part, template, data, save=False): - """Custom save method for the PartParameter class.""" - part_parameter = cls(part=part, template=template, data=data) - if save: - part_parameter.save() - return part_parameter - - -class PartCategoryParameterTemplate(InvenTree.models.InvenTreeMetadataModel): - """A PartCategoryParameterTemplate creates a unique relationship between a PartCategory and a PartParameterTemplate. - - Multiple PartParameterTemplate instances can be associated to a PartCategory to drive a default list of parameter templates attached to a Part instance upon creation. - - Attributes: - category: Reference to a single PartCategory object - parameter_template: Reference to a single PartParameterTemplate object - default_value: The default value for the parameter in the context of the selected - category - """ - - @staticmethod - def get_api_url(): - """Return the API endpoint URL associated with the PartCategoryParameterTemplate model.""" - return reverse('api-part-category-parameter-list') - - class Meta: - """Metaclass providing extra model definition.""" - - verbose_name = _('Part Category Parameter Template') - - constraints = [ - UniqueConstraint( - fields=['category', 'parameter_template'], - name='unique_category_parameter_template_pair', - ) - ] - - def __str__(self): - """String representation of a PartCategoryParameterTemplate (admin interface).""" - if self.default_value: - return f'{self.category.name} | {self.parameter_template.name} | {self.default_value}' - return f'{self.category.name} | {self.parameter_template.name}' - - def clean(self): - """Validate this PartCategoryParameterTemplate instance. - - Checks the provided 'default_value', and (if not blank), ensure it is valid. - """ - super().clean() - - self.default_value = ( - '' if self.default_value is None else str(self.default_value.strip()) - ) - - if ( - self.default_value - and get_global_setting( - 'PART_PARAMETER_ENFORCE_UNITS', True, cache=False, create=False - ) - and self.parameter_template.units - ): - try: - InvenTree.conversion.convert_physical_value( - self.default_value, self.parameter_template.units - ) - except ValidationError as e: - raise ValidationError({'default_value': e.message}) - - category = models.ForeignKey( - PartCategory, - on_delete=models.CASCADE, - related_name='parameter_templates', - verbose_name=_('Category'), - help_text=_('Part Category'), - ) - - parameter_template = models.ForeignKey( - PartParameterTemplate, - on_delete=models.CASCADE, - related_name='part_categories', - verbose_name=_('Parameter Template'), - help_text=_('Parameter Template'), - ) - - default_value = models.CharField( - max_length=500, - blank=True, - verbose_name=_('Default Value'), - help_text=_('Default Parameter Value'), - ) - - class BomItem(InvenTree.models.MetadataMixin, InvenTree.models.InvenTreeModel): """A BomItem links a part to its component items. diff --git a/src/backend/InvenTree/part/serializers.py b/src/backend/InvenTree/part/serializers.py index 2a8b62fa52..60ce08275a 100644 --- a/src/backend/InvenTree/part/serializers.py +++ b/src/backend/InvenTree/part/serializers.py @@ -7,9 +7,9 @@ from decimal import Decimal from django.core.exceptions import ValidationError from django.core.files.base import ContentFile from django.core.validators import MinValueValidator -from django.db import IntegrityError, models, transaction +from django.db import models, transaction from django.db.models import ExpressionWrapper, F, Q -from django.db.models.functions import Coalesce, Greatest +from django.db.models.functions import Greatest from django.urls import reverse_lazy from django.utils.translation import gettext_lazy as _ @@ -19,9 +19,10 @@ from djmoney.contrib.exchange.models import convert_money from drf_spectacular.utils import extend_schema_field from rest_framework import serializers from sql_util.utils import SubqueryCount -from taggit.serializers import TagListSerializerField import common.currency +import common.filters +import common.serializers import company.models import InvenTree.helpers import InvenTree.serializers @@ -48,8 +49,6 @@ from .models import ( PartCategory, PartCategoryParameterTemplate, PartInternalPriceBreak, - PartParameter, - PartParameterTemplate, PartPricing, PartRelated, PartSellPriceBreak, @@ -283,40 +282,6 @@ class PartThumbSerializerUpdate(InvenTree.serializers.InvenTreeModelSerializer): image = InvenTree.serializers.InvenTreeAttachmentSerializerField(required=True) -@register_importer() -class PartParameterTemplateSerializer( - DataImportExportSerializerMixin, InvenTree.serializers.InvenTreeModelSerializer -): - """JSON serializer for the PartParameterTemplate model.""" - - class Meta: - """Metaclass defining serializer fields.""" - - model = PartParameterTemplate - fields = [ - 'pk', - 'name', - 'units', - 'description', - 'parts', - 'checkbox', - 'choices', - 'selectionlist', - ] - - parts = serializers.IntegerField( - read_only=True, - allow_null=True, - label=_('Parts'), - help_text=_('Number of parts using this template'), - ) - - @staticmethod - def annotate_queryset(queryset): - """Annotate the queryset with the number of parts which use each parameter template.""" - return queryset.annotate(parts=SubqueryCount('instances')) - - class PartBriefSerializer( InvenTree.serializers.FilterableSerializerMixin, InvenTree.serializers.InvenTreeModelSerializer, @@ -394,60 +359,6 @@ class PartBriefSerializer( ) -@register_importer() -class PartParameterSerializer( - InvenTree.serializers.FilterableSerializerMixin, - DataImportExportSerializerMixin, - InvenTree.serializers.InvenTreeModelSerializer, -): - """JSON serializers for the PartParameter model.""" - - class Meta: - """Metaclass defining serializer fields.""" - - model = PartParameter - fields = [ - 'pk', - 'part', - 'part_detail', - 'template', - 'template_detail', - 'data', - 'data_numeric', - 'note', - 'updated', - 'updated_by', - 'updated_by_detail', - ] - read_only_fields = ['updated', 'updated_by'] - - def save(self): - """Save the PartParameter instance.""" - instance = super().save() - - if request := self.context.get('request', None): - # If the request is provided, update the 'updated_by' field - instance.updated_by = request.user - instance.save() - - return instance - - part_detail = enable_filter( - PartBriefSerializer(source='part', many=False, read_only=True, allow_null=True) - ) - - template_detail = enable_filter( - PartParameterTemplateSerializer( - source='template', many=False, read_only=True, allow_null=True - ), - True, - ) - - updated_by_detail = UserSerializer( - source='updated_by', many=False, read_only=True, allow_null=True - ) - - class DuplicatePartSerializer(serializers.Serializer): """Serializer for specifying options when duplicating a Part. @@ -708,7 +619,6 @@ class PartSerializer( 'required_for_build_orders', 'required_for_sales_orders', 'stock_item_count', - 'suppliers', 'total_in_stock', 'external_stock', 'unallocated_stock', @@ -722,8 +632,6 @@ class PartSerializer( ] read_only_fields = ['barcode_hash', 'creation_date', 'creation_user'] - tags = TagListSerializerField(required=False) - def __init__(self, *args, **kwargs): """Custom initialization method for PartSerializer. @@ -769,8 +677,6 @@ class PartSerializer( Performing database queries as efficiently as possible, to reduce database trips. """ - queryset = queryset.prefetch_related('category', 'default_location') - # Annotate with the total number of revisions queryset = queryset.annotate(revision_count=SubqueryCount('revisions')) @@ -795,15 +701,6 @@ class PartSerializer( scheduled_to_build=part_filters.annotate_scheduled_to_build_quantity() ) - # Annotate with the number of 'suppliers' - queryset = queryset.annotate( - suppliers=Coalesce( - SubqueryCount('supplier_parts'), - Decimal(0), - output_field=models.DecimalField(), - ) - ) - queryset = queryset.annotate( ordering=part_filters.annotate_on_order_quantity(), in_stock=part_filters.annotate_total_stock(), @@ -862,7 +759,8 @@ class PartSerializer( category_detail = enable_filter( CategorySerializer( source='category', many=False, read_only=True, allow_null=True - ) + ), + prefetch_fields=['category'], ) category_path = enable_filter( @@ -873,6 +771,7 @@ class PartSerializer( allow_null=True, ), filter_name='path_detail', + prefetch_fields=['category'], ) default_location_detail = enable_filter( @@ -880,6 +779,7 @@ class PartSerializer( source='default_location', many=False, read_only=True, allow_null=True ), filter_name='location_detail', + prefetch_fields=['default_location'], ) category_name = serializers.CharField( @@ -947,10 +847,6 @@ class PartSerializer( read_only=True, allow_null=True, label=_('Revisions') ) - suppliers = serializers.IntegerField( - read_only=True, allow_null=True, label=_('Suppliers') - ) - total_in_stock = serializers.FloatField( read_only=True, allow_null=True, label=_('Total Stock') ) @@ -1009,9 +905,9 @@ class PartSerializer( filter_name='pricing', ) - parameters = enable_filter( - PartParameterSerializer(many=True, read_only=True, allow_null=True) - ) + parameters = common.filters.enable_parameters_filter() + + tags = common.filters.enable_tags_filter() price_breaks = enable_filter( PartSalePriceSerializer( @@ -1019,6 +915,7 @@ class PartSerializer( ), False, filter_name='price_breaks', + prefetch_fields=['salepricebreaks'], ) # Extra fields used only for creation of a new Part instance @@ -1046,6 +943,7 @@ class PartSerializer( copy_category_parameters = serializers.BooleanField( default=True, required=False, + write_only=True, label=_('Copy Category Parameters'), help_text=_('Copy parameter templates from selected part category'), ) @@ -1113,31 +1011,7 @@ class PartSerializer( # Duplicate parameter data from part category (and parents) if copy_category_parameters and instance.category is not None: # Get flattened list of parent categories - categories = instance.category.get_ancestors(include_self=True) - - # All parameter templates within these categories - templates = PartCategoryParameterTemplate.objects.filter( - category__in=categories - ) - - for template in templates: - # First ensure that the part doesn't have that parameter - if PartParameter.objects.filter( - part=instance, template=template.parameter_template - ).exists(): - continue - - try: - PartParameter.create( - part=instance, - template=template.parameter_template, - data=template.default_value, - save=True, - ) - except IntegrityError: - logger.exception( - 'Could not create new PartParameter for part %s', instance - ) + instance.copy_category_parameters(instance.category) # Create initial stock entry if initial_stock: @@ -1688,7 +1562,15 @@ class BomItemSerializer( ) substitutes = enable_filter( - BomItemSubstituteSerializer(many=True, read_only=True, allow_null=True), True + BomItemSubstituteSerializer(many=True, read_only=True, allow_null=True), + False, + filter_name='substitutes', + prefetch_fields=[ + 'substitutes', + 'substitutes__part', + 'substitutes__part__stock_items', + 'substitutes__part__pricing_data', + ], ) part_detail = enable_filter( @@ -1809,9 +1691,7 @@ class BomItemSerializer( 'sub_part__stock_items', 'sub_part__stock_items__allocations', 'sub_part__stock_items__sales_order_allocations', - 'substitutes', - 'substitutes__part__stock_items', - ).select_related('part__pricing_data', 'sub_part__pricing_data') + ) # Annotate with the 'total pricing' information based on unit pricing and quantity queryset = queryset.annotate( @@ -1852,7 +1732,9 @@ class BomItemSerializer( @register_importer() class CategoryParameterTemplateSerializer( - DataImportExportSerializerMixin, InvenTree.serializers.InvenTreeModelSerializer + InvenTree.serializers.FilterableSerializerMixin, + DataImportExportSerializerMixin, + InvenTree.serializers.InvenTreeModelSerializer, ): """Serializer for the PartCategoryParameterTemplate model.""" @@ -1864,17 +1746,25 @@ class CategoryParameterTemplateSerializer( 'pk', 'category', 'category_detail', - 'parameter_template', - 'parameter_template_detail', + 'template', + 'template_detail', 'default_value', ] - parameter_template_detail = PartParameterTemplateSerializer( - source='parameter_template', many=False, read_only=True + template_detail = enable_filter( + common.serializers.ParameterTemplateSerializer( + source='template', many=False, read_only=True + ), + True, + prefetch_fields=['template'], ) - category_detail = CategorySerializer( - source='category', many=False, read_only=True, allow_null=True + category_detail = enable_filter( + CategorySerializer( + source='category', many=False, read_only=True, allow_null=True + ), + True, + prefetch_fields=['category'], ) diff --git a/src/backend/InvenTree/part/tasks.py b/src/backend/InvenTree/part/tasks.py index e168b6d33a..a7008f7576 100644 --- a/src/backend/InvenTree/part/tasks.py +++ b/src/backend/InvenTree/part/tasks.py @@ -355,38 +355,6 @@ def scheduled_stocktake_reports(): record_task_success('STOCKTAKE_RECENT_REPORT') -@tracer.start_as_current_span('rebuild_parameters') -def rebuild_parameters(template_id): - """Rebuild all parameters for a given template. - - This function is called when a base template is changed, - which may cause the base unit to be adjusted. - """ - from part.models import PartParameter, PartParameterTemplate - - try: - template = PartParameterTemplate.objects.get(pk=template_id) - except PartParameterTemplate.DoesNotExist: - return - - parameters = PartParameter.objects.filter(template=template) - - n = 0 - - for parameter in parameters: - # Update the parameter if the numeric value has changed - value_old = parameter.data_numeric - parameter.calculate_numeric_value() - - if value_old != parameter.data_numeric: - parameter.full_clean() - parameter.save() - n += 1 - - if n > 0: - logger.info("Rebuilt %s parameters for template '%s'", n, template.name) - - @tracer.start_as_current_span('rebuild_supplier_parts') def rebuild_supplier_parts(part_id: int): """Rebuild all SupplierPart objects for a given part. diff --git a/src/backend/InvenTree/part/test_api.py b/src/backend/InvenTree/part/test_api.py index 2344c63aa8..224d0c6ab6 100644 --- a/src/backend/InvenTree/part/test_api.py +++ b/src/backend/InvenTree/part/test_api.py @@ -11,6 +11,7 @@ from django.db import connection from django.test.utils import CaptureQueriesContext from django.urls import reverse +import pytest from PIL import Image from rest_framework.test import APIClient @@ -18,10 +19,10 @@ import build.models import company.models import order.models from build.status_codes import BuildStatus -from common.models import InvenTreeSetting +from common.models import InvenTreeSetting, ParameterTemplate from company.models import Company, SupplierPart from InvenTree.config import get_testfolder_dir -from InvenTree.unit_test import InvenTreeAPITestCase +from InvenTree.unit_test import InvenTreeAPIPerformanceTestCase, InvenTreeAPITestCase from order.status_codes import PurchaseOrderStatusGroups from part.models import ( BomItem, @@ -29,8 +30,6 @@ from part.models import ( Part, PartCategory, PartCategoryParameterTemplate, - PartParameter, - PartParameterTemplate, PartRelated, PartSellPriceBreak, PartTestTemplate, @@ -235,21 +234,14 @@ class PartCategoryAPITest(InvenTreeAPITestCase): self.assertEqual(len(response.data), 2) # Add some more category templates via the API - n = PartParameterTemplate.objects.count() + n = ParameterTemplate.objects.count() # Ensure validation of parameter values is disabled for these checks - InvenTreeSetting.set_setting( - 'PART_PARAMETER_ENFORCE_UNITS', False, change_user=None - ) + InvenTreeSetting.set_setting('PARAMETER_ENFORCE_UNITS', False, change_user=None) - for template in PartParameterTemplate.objects.all(): + for template in ParameterTemplate.objects.all(): response = self.post( - url, - { - 'category': 2, - 'parameter_template': template.pk, - 'default_value': 'xyz', - }, + url, {'category': 2, 'template': template.pk, 'default_value': '123'} ) # Total number of category templates should have increased @@ -273,8 +265,8 @@ class PartCategoryAPITest(InvenTreeAPITestCase): 'pk', 'category', 'category_detail', - 'parameter_template', - 'parameter_template_detail', + 'template', + 'template_detail', 'default_value', ]: self.assertIn(key, data.keys()) @@ -1645,7 +1637,7 @@ class PartCreationTests(PartAPITestBase): # Add some parameter template to the parent category for pk in [1, 2, 3]: PartCategoryParameterTemplate.objects.create( - parameter_template=PartParameterTemplate.objects.get(pk=pk), + template=ParameterTemplate.objects.get(pk=pk), category=cat, default_value=f'Value {pk}', ) @@ -1743,8 +1735,6 @@ class PartDetailTests(PartImageTestMixin, PartAPITestBase): # Now, try to set the name to the *same* value # 2021-06-22 this test is to check that the "duplicate part" checks don't do strange things response = self.patch(url, {'name': 'a new better name'}) - - # Try to remove a tag response = self.patch(url, {'tags': ['tag1']}) self.assertEqual(response.data['tags'], ['tag1']) @@ -2060,8 +2050,7 @@ class PartListTests(PartAPITestBase): with CaptureQueriesContext(connection) as ctx: self.get(url, query, expected_code=200) - # No more than 25 database queries - self.assertLess(len(ctx), 25) + self.assertLess(len(ctx), 30) # Test 'category_detail' annotation for b in [False, True]: @@ -2074,8 +2063,7 @@ class PartListTests(PartAPITestBase): if b and result['category'] is not None: self.assertIn('category_detail', result) - # No more than 20 DB queries - self.assertLessEqual(len(ctx), 20) + self.assertLessEqual(len(ctx), 30) def test_price_breaks(self): """Test that price_breaks parameter works correctly and efficiently.""" @@ -2717,7 +2705,7 @@ class BomItemTest(InvenTreeAPITestCase): """Get the detail view for a single BomItem object.""" url = reverse('api-bom-item-detail', kwargs={'pk': 3}) - response = self.get(url, expected_code=200) + response = self.get(url, {'substitutes': True}, expected_code=200) expected_values = [ 'allow_variants', @@ -2891,6 +2879,7 @@ class BomItemTest(InvenTreeAPITestCase): # The BomItem detail endpoint should now also reflect the substitute data data = self.get( reverse('api-bom-item-detail', kwargs={'pk': bom_item.pk}), + data={'substitutes': True}, expected_code=200, ).data @@ -3056,13 +3045,13 @@ class BomItemTest(InvenTreeAPITestCase): self.assertAlmostEqual(can_build, 482.9, places=1) -class PartAttachmentTest(InvenTreeAPITestCase): - """Unit tests for the PartAttachment API endpoint.""" +class AttachmentTest(InvenTreeAPITestCase): + """Unit tests for the Attachment API endpoint.""" fixtures = ['category', 'part', 'location'] def test_add_attachment(self): - """Test that we can create a new PartAttachment via the API.""" + """Test that we can create a new Attachment instances via the API.""" url = reverse('api-attachment-list') # Upload without permission @@ -3238,8 +3227,6 @@ class PartMetadataAPITest(InvenTreeAPITestCase): 'api-part-category-metadata': PartCategory, 'api-part-test-template-metadata': PartTestTemplate, 'api-part-related-metadata': PartRelated, - 'api-part-parameter-template-metadata': PartParameterTemplate, - 'api-part-parameter-metadata': PartParameter, 'api-part-metadata': Part, 'api-bom-substitute-metadata': BomItemSubstitute, 'api-bom-item-metadata': BomItem, @@ -3341,12 +3328,12 @@ class PartTestTemplateTest(PartAPITestBase): self.assertIn('Choices must be unique', str(response.data['choices'])) -class PartParameterTests(PartAPITestBase): - """Unit test for PartParameter API endpoints.""" +class ParameterTests(PartAPITestBase): + """Unit test for Parameter API endpoints.""" def test_export_data(self): - """Test data export functionality for PartParameter objects.""" - url = reverse('api-part-parameter-list') + """Test data export functionality for Parameter objects.""" + url = reverse('api-parameter-list') response = self.options( url, @@ -3363,3 +3350,15 @@ class PartParameterTests(PartAPITestBase): self.assertIn('export_format', fields) self.assertIn('export_plugin', fields) + + +class PartApiPerformanceTest(PartAPITestBase, InvenTreeAPIPerformanceTestCase): + """Performance tests for the Part API.""" + + @pytest.mark.django_db + @pytest.mark.benchmark + def test_api_part_list(self): + """Test that Part API queries are performant.""" + url = reverse('api-part-list') + response = self.get(url, expected_code=200) + self.assertGreater(len(response.data), 13) diff --git a/src/backend/InvenTree/part/test_category.py b/src/backend/InvenTree/part/test_category.py index c7672245e5..dca64697da 100644 --- a/src/backend/InvenTree/part/test_category.py +++ b/src/backend/InvenTree/part/test_category.py @@ -3,9 +3,9 @@ from django.core.exceptions import ValidationError from django.test import TestCase -from common.models import InvenTreeSetting +from common.models import InvenTreeSetting, Parameter, ParameterTemplate -from .models import Part, PartCategory, PartParameter, PartParameterTemplate +from .models import Part, PartCategory class CategoryTest(TestCase): @@ -157,15 +157,15 @@ class CategoryTest(TestCase): def test_parameters(self): """Test that the Category parameters are correctly fetched.""" # Check number of SQL queries to iterate other parameters - with self.assertNumQueries(9): + with self.assertNumQueries(3): # Prefetch: 3 queries (parts, parameters and parameters_template) fasteners = self.fasteners.prefetch_parts_parameters() # Iterate through all parts and parameters for fastener in fasteners: self.assertIsInstance(fastener, Part) - for parameter in fastener.parameters.all(): - self.assertIsInstance(parameter, PartParameter) - self.assertIsInstance(parameter.template, PartParameterTemplate) + for parameter in fastener.parameters_list.all(): + self.assertIsInstance(parameter, Parameter) + self.assertIsInstance(parameter.template, ParameterTemplate) # Test number of unique parameters self.assertEqual( diff --git a/src/backend/InvenTree/part/test_migrations.py b/src/backend/InvenTree/part/test_migrations.py index 1a15e57ebf..643ec7043f 100644 --- a/src/backend/InvenTree/part/test_migrations.py +++ b/src/backend/InvenTree/part/test_migrations.py @@ -52,7 +52,7 @@ class TestBomItemMigrations(MigratorTestCase): """Tests for BomItem migrations.""" migrate_from = ('part', '0002_auto_20190520_2204') - migrate_to = ('part', unit_test.getNewestMigrationFile('part')) + migrate_to = ('part', '0101_bomitem_validated') def prepare(self): """Create initial dataset.""" @@ -86,7 +86,7 @@ class TestParameterMigrations(MigratorTestCase): """Unit test for part parameter migrations.""" migrate_from = ('part', '0106_part_tags') - migrate_to = ('part', unit_test.getNewestMigrationFile('part')) + migrate_to = ('part', '0143_alter_part_image') def prepare(self): """Create some parts, and templates with parameters.""" @@ -158,7 +158,7 @@ class PartUnitsMigrationTest(MigratorTestCase): """Test for data migration of Part.units field.""" migrate_from = ('part', '0109_auto_20230517_1048') - migrate_to = ('part', unit_test.getNewestMigrationFile('part')) + migrate_to = ('part', '0115_part_responsible_owner') def prepare(self): """Prepare some parts with units.""" @@ -273,3 +273,113 @@ class TestPartTestParameterMigration(MigratorTestCase): for key, value in self.test_keys.items(): template = PartTestTemplate.objects.get(test_name=value) self.assertEqual(template.key, key) + + +class TestPartParameterDeletion(MigratorTestCase): + """Test for PartParameter deletion migration. + + Ref: https://github.com/inventree/InvenTree/pull/10699 + + In the linked PR: + + 1. The Parameter and ParameterTemplate models are added + 2. Data is migrated from PartParameter to Parameter and PartParameterTemplate to ParameterTemplate + 3. The PartParameter and PartParameterTemplate models are deleted + """ + + UNITS = ['mm', 'Ampere', 'kg'] + + migrate_from = ('part', '0143_alter_part_image') + migrate_to = ('part', '0146_auto_20251203_1241') + + def prepare(self): + """Prepare some parts and parameters.""" + Part = self.old_state.apps.get_model('part', 'part') + PartParameter = self.old_state.apps.get_model('part', 'partparameter') + PartParameterTemplate = self.old_state.apps.get_model( + 'part', 'partparametertemplate' + ) + + # Create some parts + for i in range(3): + Part.objects.create( + name=f'Part {i + 1}', + description=f'My part {i + 1}', + level=0, + lft=0, + rght=0, + tree_id=0, + ) + + self.templates = {} + + # Create some parameter templates + for idx, units in enumerate(self.UNITS): + template = PartParameterTemplate.objects.create( + name=f'Template {idx + 1}', + description=f'Description for template {idx + 1}', + units=units, + ) + + self.templates[template.pk] = template + + # Keep track of the parameters we create + # We need to ensure that the PK values are preserved across the migration + self.parameters = {} + + # Create some parameters + for ii, part in enumerate(Part.objects.all()): + for jj, template in enumerate(PartParameterTemplate.objects.all()): + parameter = PartParameter.objects.create( + part=part, template=template, data=str(ii * jj) + ) + + self.parameters[parameter.pk] = parameter + + self.assertEqual(Part.objects.count(), 3) + self.assertEqual(PartParameterTemplate.objects.count(), 3) + self.assertEqual(PartParameter.objects.count(), 9) + + def test_parameter_deletion(self): + """Test that PartParameter objects have been deleted.""" + # Test that the PartParameter objects have been deleted + with self.assertRaises(LookupError): + self.new_state.apps.get_model('part', 'partparameter') + + # Load the new PartParameter model + ParameterTemplate = self.new_state.apps.get_model('common', 'parametertemplate') + Parameter = self.new_state.apps.get_model('common', 'parameter') + Part = self.new_state.apps.get_model('part', 'part') + ContentType = self.new_state.apps.get_model('contenttypes', 'contenttype') + + self.assertEqual(ParameterTemplate.objects.count(), 3) + self.assertEqual(Parameter.objects.count(), 9) + self.assertEqual(Part.objects.count(), 3) + + content_type, _created = ContentType.objects.get_or_create( + app_label='part', model='part' + ) + + for p in Part.objects.all(): + params = Parameter.objects.filter(model_type=content_type, model_id=p.id) + + self.assertEqual(len(params), 3) + + for unit in self.UNITS: + self.assertTrue(params.filter(template__units=unit).exists()) + + # Test that each parameter has been migrated correctly + for pk, old_parameter in self.parameters.items(): + new_parameter = Parameter.objects.get(pk=pk) + + self.assertEqual(new_parameter.data, old_parameter.data) + self.assertEqual(new_parameter.template.name, old_parameter.template.name) + self.assertEqual(new_parameter.template.units, old_parameter.template.units) + + # Test that each template has been migrated correctly + for pk, old_template in self.templates.items(): + new_template = ParameterTemplate.objects.get(pk=pk) + + self.assertEqual(new_template.name, old_template.name) + self.assertEqual(new_template.description, old_template.description) + self.assertTrue(new_template.enabled) diff --git a/src/backend/InvenTree/part/test_param.py b/src/backend/InvenTree/part/test_param.py index 2891f5c839..76b3fb241b 100644 --- a/src/backend/InvenTree/part/test_param.py +++ b/src/backend/InvenTree/part/test_param.py @@ -5,37 +5,32 @@ from django.contrib.auth.models import User from django.test import TestCase, TransactionTestCase from django.urls import reverse -from common.models import InvenTreeSetting +from common.models import InvenTreeSetting, Parameter, ParameterTemplate from InvenTree.unit_test import InvenTreeAPITestCase -from .models import ( - Part, - PartCategory, - PartCategoryParameterTemplate, - PartParameter, - PartParameterTemplate, -) +from .models import Part, PartCategory, PartCategoryParameterTemplate class TestParams(TestCase): - """Unit test class for testing the PartParameter model.""" + """Unit test class for testing the Parameter model.""" fixtures = ['location', 'category', 'part', 'params', 'users'] def test_str(self): - """Test the str representation of the PartParameterTemplate model.""" - t1 = PartParameterTemplate.objects.get(pk=1) + """Test the str representation of the ParameterTemplate model.""" + t1 = ParameterTemplate.objects.get(pk=1) self.assertEqual(str(t1), 'Length (mm)') - p1 = PartParameter.objects.get(pk=1) - self.assertEqual(str(p1), 'M2x4 LPHS : Length = 4 (mm)') + # TODO fix assertion + # p1 = Parameter.objects.get(pk=1) + # self.assertEqual(str(p1), 'M2x4 LPHS : Length = 4 (mm)') c1 = PartCategoryParameterTemplate.objects.get(pk=1) self.assertEqual(str(c1), 'Mechanical | Length | 2.8') def test_updated(self): """Test that the 'updated' field is correctly set.""" - p1 = PartParameter.objects.get(pk=1) + p1 = Parameter.objects.get(pk=1) self.assertIsNone(p1.updated) self.assertIsNone(p1.updated_by) @@ -47,41 +42,41 @@ class TestParams(TestCase): def test_validate(self): """Test validation for part templates.""" - n = PartParameterTemplate.objects.all().count() + n = ParameterTemplate.objects.all().count() - t1 = PartParameterTemplate(name='abcde', units='dd') + t1 = ParameterTemplate(name='abcde', units='dd') t1.save() - self.assertEqual(n + 1, PartParameterTemplate.objects.all().count()) + self.assertEqual(n + 1, ParameterTemplate.objects.all().count()) # Test that the case-insensitive name throws a ValidationError with self.assertRaises(django_exceptions.ValidationError): - t3 = PartParameterTemplate(name='aBcde', units='dd') + t3 = ParameterTemplate(name='aBcde', units='dd') t3.full_clean() t3.save() # pragma: no cover def test_invalid_numbers(self): """Test that invalid floating point numbers are correctly handled.""" p = Part.objects.first() - t = PartParameterTemplate.objects.create(name='Yaks') + t = ParameterTemplate.objects.create(name='Yaks') valid_floats = ['-12', '1.234', '17', '3e45', '-12e34'] for value in valid_floats: - param = PartParameter(part=p, template=t, data=value) + param = Parameter(content_object=p, template=t, data=value) param.full_clean() self.assertIsNotNone(param.data_numeric) invalid_floats = ['88E6352', 'inf', '-inf', 'nan', '3.14.15', '3eee3'] for value in invalid_floats: - param = PartParameter(part=p, template=t, data=value) + param = Parameter(content_object=p, template=t, data=value) param.full_clean() self.assertIsNone(param.data_numeric) def test_metadata(self): """Unit tests for the metadata field.""" - for model in [PartParameterTemplate]: + for model in [ParameterTemplate]: p = model.objects.first() self.assertIsNone(p.get_metadata('test')) @@ -118,8 +113,8 @@ class TestParams(TestCase): IPN='TEST-PART', ) - parameter = PartParameter.objects.create( - part=part, template=PartParameterTemplate.objects.first(), data='123' + parameter = Parameter.objects.create( + content_object=part, template=ParameterTemplate.objects.first(), data='123' ) # Lock the part @@ -160,9 +155,9 @@ class TestCategoryTemplates(TransactionTestCase): category = PartCategory.objects.get(pk=8) - t1 = PartParameterTemplate.objects.get(pk=2) + t1 = ParameterTemplate.objects.get(pk=2) c1 = PartCategoryParameterTemplate( - category=category, parameter_template=t1, default_value='xyz' + category=category, template=t1, default_value='xyz' ) c1.save() @@ -177,7 +172,7 @@ class ParameterTests(TestCase): def test_choice_validation(self): """Test that parameter choices are correctly validated.""" - template = PartParameterTemplate.objects.create( + template = ParameterTemplate.objects.create( name='My Template', description='A template with choices', choices='red, blue, green', @@ -189,16 +184,16 @@ class ParameterTests(TestCase): part = Part.objects.all().first() for value in pass_values: - param = PartParameter(part=part, template=template, data=value) + param = Parameter(content_object=part, template=template, data=value) param.full_clean() for value in fail_values: - param = PartParameter(part=part, template=template, data=value) + param = Parameter(content_object=part, template=template, data=value) with self.assertRaises(django_exceptions.ValidationError): param.full_clean() def test_unit_validation(self): - """Test validation of 'units' field for PartParameterTemplate.""" + """Test validation of 'units' field for ParameterTemplate.""" # Test that valid units pass for unit in [ None, @@ -215,18 +210,18 @@ class ParameterTests(TestCase): 'mF', 'millifarad', ]: - tmp = PartParameterTemplate(name='test', units=unit) + tmp = ParameterTemplate(name='test', units=unit) tmp.full_clean() # Test that invalid units fail for unit in ['mmmmm', '-', 'x', int]: - tmp = PartParameterTemplate(name='test', units=unit) + tmp = ParameterTemplate(name='test', units=unit) with self.assertRaises(django_exceptions.ValidationError): tmp.full_clean() def test_param_unit_validation(self): """Test that parameters are correctly validated against template units.""" - template = PartParameterTemplate.objects.create(name='My Template', units='m') + template = ParameterTemplate.objects.create(name='My Template', units='m') prt = Part.objects.get(pk=1) @@ -243,42 +238,36 @@ class ParameterTests(TestCase): 'foot', '3 yards', ]: - param = PartParameter(part=prt, template=template, data=value) + param = Parameter(content_object=prt, template=template, data=value) param.full_clean() # Test that percent unit is working - template2 = PartParameterTemplate.objects.create( - name='My Template 2', units='%' - ) + template2 = ParameterTemplate.objects.create(name='My Template 2', units='%') for value in ['1', '1%', '1 percent']: - param = PartParameter(part=prt, template=template2, data=value) + param = Parameter(content_object=prt, template=template2, data=value) param.full_clean() bad_values = ['3 Amps', '-3 zogs', '3.14F'] # Disable enforcing of part parameter units - InvenTreeSetting.set_setting( - 'PART_PARAMETER_ENFORCE_UNITS', False, change_user=None - ) + InvenTreeSetting.set_setting('PARAMETER_ENFORCE_UNITS', False, change_user=None) # Invalid units also pass, but will be converted to the template units for value in bad_values: - param = PartParameter(part=prt, template=template, data=value) + param = Parameter(content_object=prt, template=template, data=value) param.full_clean() # Enable enforcing of part parameter units - InvenTreeSetting.set_setting( - 'PART_PARAMETER_ENFORCE_UNITS', True, change_user=None - ) + InvenTreeSetting.set_setting('PARAMETER_ENFORCE_UNITS', True, change_user=None) for value in bad_values: - param = PartParameter(part=prt, template=template, data=value) + param = Parameter(content_object=prt, template=template, data=value) with self.assertRaises(django_exceptions.ValidationError): param.full_clean() def test_param_unit_conversion(self): """Test that parameters are correctly converted to template units.""" - template = PartParameterTemplate.objects.create(name='My Template', units='m') + template = ParameterTemplate.objects.create(name='My Template', units='m') tests = { '1': 1.0, @@ -290,7 +279,7 @@ class ParameterTests(TestCase): } prt = Part.objects.get(pk=1) - param = PartParameter(part=prt, template=template, data='1') + param = Parameter(content_object=prt, template=template, data='1') for value, expected in tests.items(): param.data = value @@ -298,8 +287,8 @@ class ParameterTests(TestCase): self.assertAlmostEqual(param.data_numeric, expected, places=2) -class PartParameterTest(InvenTreeAPITestCase): - """Tests for the ParParameter API.""" +class ParameterTest(InvenTreeAPITestCase): + """Tests for the Parameter API.""" superuser = True @@ -307,14 +296,14 @@ class PartParameterTest(InvenTreeAPITestCase): def test_list_params(self): """Test for listing part parameters.""" - url = reverse('api-part-parameter-list') + url = reverse('api-parameter-list') response = self.get(url) self.assertEqual(len(response.data), 7) # Filter by part - response = self.get(url, {'part': 3}) + response = self.get(url, {'model_id': 3, 'model_type': 'part.part'}) self.assertEqual(len(response.data), 3) @@ -327,7 +316,7 @@ class PartParameterTest(InvenTreeAPITestCase): """Test that part parameter template validation routines work correctly.""" # Checkbox parameter cannot have "units" specified with self.assertRaises(django_exceptions.ValidationError): - template = PartParameterTemplate( + template = ParameterTemplate( name='test', description='My description', units='mm', checkbox=True ) @@ -335,7 +324,7 @@ class PartParameterTest(InvenTreeAPITestCase): # Checkbox parameter cannot have "choices" specified with self.assertRaises(django_exceptions.ValidationError): - template = PartParameterTemplate( + template = ParameterTemplate( name='test', description='My description', choices='a,b,c', @@ -346,7 +335,7 @@ class PartParameterTest(InvenTreeAPITestCase): # Choices must be 'unique' with self.assertRaises(django_exceptions.ValidationError): - template = PartParameterTemplate( + template = ParameterTemplate( name='test', description='My description', choices='a,a,b' ) @@ -354,9 +343,12 @@ class PartParameterTest(InvenTreeAPITestCase): def test_create_param(self): """Test that we can create a param via the API.""" - url = reverse('api-part-parameter-list') + url = reverse('api-parameter-list') - response = self.post(url, {'part': '2', 'template': '3', 'data': 70}) + response = self.post( + url, + {'model_id': '2', 'model_type': 'part.part', 'template': '3', 'data': 70}, + ) self.assertEqual(response.status_code, 201) @@ -366,37 +358,51 @@ class PartParameterTest(InvenTreeAPITestCase): def test_bulk_create_params(self): """Test that we can bulk create parameters via the API.""" - url = reverse('api-part-parameter-list') + url = reverse('api-parameter-list') part4 = Part.objects.get(pk=4) data = [ - {'part': 4, 'template': 1, 'data': 70}, - {'part': 4, 'template': 2, 'data': 80}, - {'part': 4, 'template': 1, 'data': 80}, + {'model_id': 4, 'model_type': 'part.part', 'template': 1, 'data': 70}, + {'model_id': 4, 'model_type': 'part.part', 'template': 2, 'data': 80}, + {'model_id': 4, 'model_type': 'part.part', 'template': 1, 'data': 80}, ] # test that having non unique part/template combinations fails res = self.post(url, data, expected_code=400) + self.assertEqual(len(res.data), 3) self.assertEqual(len(res.data[1]), 0) for err in [res.data[0], res.data[2]]: - self.assertEqual(len(err), 2) - self.assertEqual(str(err['part'][0]), 'This field must be unique.') + self.assertEqual(len(err), 3) + self.assertEqual(str(err['model_id'][0]), 'This field must be unique.') + self.assertEqual(str(err['model_type'][0]), 'This field must be unique.') self.assertEqual(str(err['template'][0]), 'This field must be unique.') - self.assertEqual(PartParameter.objects.filter(part=part4).count(), 0) + + self.assertEqual( + Parameter.objects.filter( + model_type=part4.get_content_type(), model_id=part4.pk + ).count(), + 0, + ) # Now, create a valid set of parameters data = [ - {'part': 4, 'template': 1, 'data': 70}, - {'part': 4, 'template': 2, 'data': 80}, + {'model_id': 4, 'model_type': 'part.part', 'template': 1, 'data': 70}, + {'model_id': 4, 'model_type': 'part.part', 'template': 2, 'data': 80}, ] res = self.post(url, data, expected_code=201) self.assertEqual(len(res.data), 2) - self.assertEqual(PartParameter.objects.filter(part=part4).count(), 2) + + self.assertEqual( + Parameter.objects.filter( + model_type=part4.get_content_type(), model_id=part4.pk + ).count(), + 2, + ) def test_param_detail(self): - """Tests for the PartParameter detail endpoint.""" - url = reverse('api-part-parameter-detail', kwargs={'pk': 5}) + """Tests for the Parameter detail endpoint.""" + url = reverse('api-parameter-detail', kwargs={'pk': 5}) response = self.get(url) @@ -405,7 +411,7 @@ class PartParameterTest(InvenTreeAPITestCase): data = response.data self.assertEqual(data['pk'], 5) - self.assertEqual(data['part'], 3) + self.assertEqual(data['model_id'], 3) self.assertEqual(data['data'], '12') # PATCH data back in @@ -435,7 +441,7 @@ class PartParameterTest(InvenTreeAPITestCase): return None # Create a new parameter template - template = PartParameterTemplate.objects.create( + template = ParameterTemplate.objects.create( name='Test Template', description='My test template', units='m' ) @@ -452,8 +458,8 @@ class PartParameterTest(InvenTreeAPITestCase): suffix = 'mm' if idx % 3 == 0 else 'm' params.append( - PartParameter.objects.create( - part=part, template=template, data=f'{idx}{suffix}' + Parameter.objects.create( + content_object=part, template=template, data=f'{idx}{suffix}' ) ) @@ -490,7 +496,7 @@ class PartParameterTest(InvenTreeAPITestCase): self.assertEqual(actual, expected) -class PartParameterFilterTest(InvenTreeAPITestCase): +class ParameterFilterTest(InvenTreeAPITestCase): """Unit tests for filtering parts by parameter values.""" superuser = True @@ -503,19 +509,19 @@ class PartParameterFilterTest(InvenTreeAPITestCase): cls.url = reverse('api-part-list') # Create a number of part parameter templates - cls.template_length = PartParameterTemplate.objects.create( + cls.template_length = ParameterTemplate.objects.create( name='Length', description='Length of the part', units='mm' ) - cls.template_width = PartParameterTemplate.objects.create( + cls.template_width = ParameterTemplate.objects.create( name='Width', description='Width of the part', units='mm' ) - cls.template_ionized = PartParameterTemplate.objects.create( + cls.template_ionized = ParameterTemplate.objects.create( name='Ionized', description='Is the part ionized?', checkbox=True ) - cls.template_color = PartParameterTemplate.objects.create( + cls.template_color = ParameterTemplate.objects.create( name='Color', description='Color of the part', choices='red,green,blue' ) @@ -545,8 +551,8 @@ class PartParameterFilterTest(InvenTreeAPITestCase): for ii, part in enumerate(Part.objects.all()): parameters.append( - PartParameter( - part=part, + Parameter( + content_object=part, template=cls.template_length, data=(ii * 10) + 5, # Length in mm data_numeric=(ii * 10) + 5, # Numeric value for length @@ -554,8 +560,8 @@ class PartParameterFilterTest(InvenTreeAPITestCase): ) parameters.append( - PartParameter( - part=part, + Parameter( + content_object=part, template=cls.template_width, data=(50 - ii) * 5 + 2, # Width in mm data_numeric=(50 - ii) * 5 + 2, # Width in mm @@ -564,8 +570,8 @@ class PartParameterFilterTest(InvenTreeAPITestCase): if ii < 25: parameters.append( - PartParameter( - part=part, + Parameter( + content_object=part, template=cls.template_ionized, data='true' if ii % 5 == 0 @@ -578,8 +584,8 @@ class PartParameterFilterTest(InvenTreeAPITestCase): if ii < 15: parameters.append( - PartParameter( - part=part, + Parameter( + content_object=part, template=cls.template_color, data=['red', 'green', 'blue'][ii % 3], # Cycle through colors data_numeric=None, # No numeric value for color @@ -587,7 +593,7 @@ class PartParameterFilterTest(InvenTreeAPITestCase): ) # Bulk create all parameters - PartParameter.objects.bulk_create(parameters) + Parameter.objects.bulk_create(parameters) def test_filter_by_length(self): """Test basic filtering by length parameter.""" diff --git a/src/backend/InvenTree/plugin/apps.py b/src/backend/InvenTree/plugin/apps.py index f37e91d006..86655cf70b 100644 --- a/src/backend/InvenTree/plugin/apps.py +++ b/src/backend/InvenTree/plugin/apps.py @@ -9,7 +9,12 @@ from django.apps import AppConfig import structlog from maintenance_mode.core import set_maintenance_mode -from InvenTree.ready import canAppAccessDatabase, isInMainThread, isInWorkerThread +from InvenTree.ready import ( + canAppAccessDatabase, + ignore_ready_warning, + isInMainThread, + isInWorkerThread, +) from plugin import registry logger = structlog.get_logger('inventree') @@ -24,6 +29,7 @@ class PluginAppConfig(AppConfig): """The ready method is extended to initialize plugins.""" self.reload_plugin_registry() + @ignore_ready_warning def reload_plugin_registry(self): """Reload the plugin registry.""" if not isInMainThread() and not isInWorkerThread(): diff --git a/src/backend/InvenTree/plugin/base/integration/ValidationMixin.py b/src/backend/InvenTree/plugin/base/integration/ValidationMixin.py index 0678bb3260..134c2206a6 100644 --- a/src/backend/InvenTree/plugin/base/integration/ValidationMixin.py +++ b/src/backend/InvenTree/plugin/base/integration/ValidationMixin.py @@ -5,6 +5,7 @@ from typing import Optional from django.core.exceptions import ValidationError from django.db.models import Model +import common.models import part.models import stock.models from plugin import PluginMixinEnum @@ -227,8 +228,8 @@ class ValidationMixin: """ return None - def validate_part_parameter( - self, parameter: part.models.PartParameter, data: str + def validate_parameter( + self, parameter: common.models.Parameter, data: str ) -> Optional[bool]: """Validate a parameter value. @@ -242,3 +243,4 @@ class ValidationMixin: Raises: ValidationError: If the proposed parameter value is objectionable """ + return None diff --git a/src/backend/InvenTree/plugin/base/supplier/api.py b/src/backend/InvenTree/plugin/base/supplier/api.py index ec96e21e04..7dc6c6045b 100644 --- a/src/backend/InvenTree/plugin/base/supplier/api.py +++ b/src/backend/InvenTree/plugin/base/supplier/api.py @@ -213,17 +213,17 @@ class ImportPart(APIView): for c in category_parameters: for p in parameters: - if p.parameter_template == c.parameter_template: + if p.parameter_template == c.template: p.on_category = True p.value = p.value if p.value is not None else c.default_value break else: parameters.append( supplier.ImportParameter( - name=c.parameter_template.name, + name=c.template.name, value=c.default_value, on_category=True, - parameter_template=c.parameter_template, + parameter_template=c.template, ) ) parameters.sort(key=lambda x: x.on_category, reverse=True) diff --git a/src/backend/InvenTree/plugin/base/supplier/helpers.py b/src/backend/InvenTree/plugin/base/supplier/helpers.py index da4828fd91..de11f5bf1e 100644 --- a/src/backend/InvenTree/plugin/base/supplier/helpers.py +++ b/src/backend/InvenTree/plugin/base/supplier/helpers.py @@ -3,6 +3,7 @@ from dataclasses import dataclass from typing import Optional +import common.models import part.models as part_models @@ -61,22 +62,22 @@ class ImportParameter: name (str): The name of the parameter. value (str): The value of the parameter. on_category (Optional[bool]): Indicates if the parameter is associated with a category. This will be automatically set by InvenTree - parameter_template (Optional[PartParameterTemplate]): The associated parameter template, if any. + parameter_template (Optional[ParameterTemplate]): The associated parameter template, if any. """ name: str value: str on_category: Optional[bool] = False - parameter_template: Optional[part_models.PartParameterTemplate] = None + parameter_template: Optional[common.models.ParameterTemplate] = None def __post_init__(self): """Post-initialization to fetch the parameter template if not provided.""" if not self.parameter_template: try: - self.parameter_template = part_models.PartParameterTemplate.objects.get( + self.parameter_template = common.models.ParameterTemplate.objects.get( name__iexact=self.name ) - except part_models.PartParameterTemplate.DoesNotExist: + except common.models.ParameterTemplate.DoesNotExist: pass diff --git a/src/backend/InvenTree/plugin/builtin/exporter/bom_exporter.py b/src/backend/InvenTree/plugin/builtin/exporter/bom_exporter.py index a432a2c6e2..fd5efcbaab 100644 --- a/src/backend/InvenTree/plugin/builtin/exporter/bom_exporter.py +++ b/src/backend/InvenTree/plugin/builtin/exporter/bom_exporter.py @@ -9,6 +9,7 @@ import rest_framework.serializers as serializers from InvenTree.helpers import normalize from part.models import BomItem +from part.serializers import BomItemSerializer from plugin import InvenTreePlugin from plugin.mixins import DataExportMixin @@ -76,7 +77,10 @@ class BomExporterPlugin(DataExportMixin, InvenTreePlugin): def supports_export(self, model_class: type, user, *args, **kwargs) -> bool: """This exported only supports the BomItem model.""" - return model_class == BomItem + return ( + model_class == BomItem + and kwargs.get('serializer_class') == BomItemSerializer + ) def update_headers(self, headers, context, **kwargs): """Update headers for the BOM export.""" @@ -149,17 +153,23 @@ class BomExporterPlugin(DataExportMixin, InvenTreePlugin): queryset = queryset.prefetch_related('substitutes') if self.export_supplier_data: - queryset = queryset.prefetch_related('sub_part__supplier_parts') queryset = queryset.prefetch_related( - 'sub_part__supplier_parts__manufacturer_part' + 'sub_part__supplier_parts', + 'sub_part__supplier_parts__supplier', + 'sub_part__supplier_parts__manufacturer_part', + 'sub_part__supplier_parts__manufacturer_part__manufacturer', ) if self.export_manufacturer_data: - queryset = queryset.prefetch_related('sub_part__manufacturer_parts') + queryset = queryset.prefetch_related( + 'sub_part__manufacturer_parts', + 'sub_part__manufacturer_parts__manufacturer', + ) if self.export_parameter_data: - queryset = queryset.prefetch_related('sub_part__parameters') - queryset = queryset.prefetch_related('sub_part__parameters__template') + queryset = queryset.prefetch_related( + 'sub_part__parameters_list', 'sub_part__parameters_list__template' + ) return queryset @@ -242,6 +252,7 @@ class BomExporterPlugin(DataExportMixin, InvenTreePlugin): ): sub_items = bom_item.sub_part.get_bom_items() sub_items = self.prefetch_queryset(sub_items) + sub_items = BomItemSerializer.annotate_queryset(sub_items) for item in sub_items.all(): self.process_bom_row( diff --git a/src/backend/InvenTree/plugin/builtin/exporter/parameter_exporter.py b/src/backend/InvenTree/plugin/builtin/exporter/parameter_exporter.py new file mode 100644 index 0000000000..0c890d8a8b --- /dev/null +++ b/src/backend/InvenTree/plugin/builtin/exporter/parameter_exporter.py @@ -0,0 +1,98 @@ +"""Custom exporter for Parameter data.""" + +from django.utils.translation import gettext_lazy as _ + +from rest_framework import serializers + +from plugin import InvenTreePlugin +from plugin.mixins import DataExportMixin + + +class ParameterExportOptionsSerializer(serializers.Serializer): + """Custom export options for the ParameterExporter plugin.""" + + export_exclude_inactive_parameters = serializers.BooleanField( + default=True, + label=_('Exclude Inactive'), + help_text=_('Exclude parameters which are inactive'), + ) + + +class ParameterExporter(DataExportMixin, InvenTreePlugin): + """Builtin plugin for exporting Parameter data. + + Extends the export process, to include all associated Parameter data. + """ + + NAME = 'Parameter Exporter' + SLUG = 'parameter-exporter' + TITLE = _('Parameter Exporter') + DESCRIPTION = _('Exporter for model parameter data') + VERSION = '2.0.0' + AUTHOR = _('InvenTree contributors') + + ExportOptionsSerializer = ParameterExportOptionsSerializer + + def supports_export( + self, + model_class: type, + user=None, + serializer_class=None, + view_class=None, + *args, + **kwargs, + ) -> bool: + """Supported if the base model implements the InvenTreeParameterMixin.""" + from InvenTree.models import InvenTreeParameterMixin + + return issubclass(model_class, InvenTreeParameterMixin) + + def update_headers(self, headers, context, **kwargs): + """Update headers for the export.""" + # Add in a header for each parameter + for pk, name in self.parameters.items(): + headers[f'parameter_{pk}'] = str(name) + + return headers + + def prefetch_queryset(self, queryset): + """Ensure that the associated parameters are prefetched.""" + from InvenTree.models import InvenTreeParameterMixin + + queryset = InvenTreeParameterMixin.annotate_parameters(queryset) + return queryset + + def export_data( + self, queryset, serializer_class, headers, context, output, **kwargs + ): + """Export parameter data.""" + # Extract custom serializer options and cache + queryset = self.prefetch_queryset(queryset) + self.serializer_class = serializer_class + + self.exclude_inactive = context.get('export_exclude_inactive_parameters', True) + + # Keep a dict of observed parameters against their primary key + self.parameters = {} + + # Serialize the queryset using DRF first + rows = self.serializer_class( + queryset, parameters=True, exporting=True, many=True + ).data + + for row in rows: + # Extract the associated parameters from the serialized data + for parameter in row.get('parameters', []): + template_detail = parameter['template_detail'] + template_id = template_detail['pk'] + + active = template_detail.get('enabled', True) + + if not active and self.exclude_inactive: + continue + + self.parameters[template_id] = template_detail['name'] + + row[f'parameter_{template_id}'] = parameter['data'] + + return rows diff --git a/src/backend/InvenTree/plugin/builtin/exporter/part_parameter_exporter.py b/src/backend/InvenTree/plugin/builtin/exporter/part_parameter_exporter.py deleted file mode 100644 index 8ecab0e447..0000000000 --- a/src/backend/InvenTree/plugin/builtin/exporter/part_parameter_exporter.py +++ /dev/null @@ -1,130 +0,0 @@ -"""Custom exporter for PartParameters.""" - -from django.utils.translation import gettext_lazy as _ - -from rest_framework import serializers - -from part.models import Part -from part.serializers import PartSerializer -from plugin import InvenTreePlugin -from plugin.mixins import DataExportMixin - - -class PartParameterExportOptionsSerializer(serializers.Serializer): - """Custom export options for the PartParameterExporter plugin.""" - - export_stock_data = serializers.BooleanField( - default=True, label=_('Stock Data'), help_text=_('Include part stock data') - ) - - export_pricing_data = serializers.BooleanField( - default=True, label=_('Pricing Data'), help_text=_('Include part pricing data') - ) - - -class PartParameterExporter(DataExportMixin, InvenTreePlugin): - """Builtin plugin for exporting PartParameter data. - - Extends the "part" export process, to include all associated PartParameter data. - """ - - NAME = 'Part Parameter Exporter' - SLUG = 'parameter-exporter' - TITLE = _('Part Parameter Exporter') - DESCRIPTION = _('Exporter for part parameter data') - VERSION = '1.0.0' - AUTHOR = _('InvenTree contributors') - - ExportOptionsSerializer = PartParameterExportOptionsSerializer - - def supports_export( - self, - model_class: type, - user=None, - serializer_class=None, - view_class=None, - *args, - **kwargs, - ) -> bool: - """Supported if the base model is Part.""" - return model_class == Part and serializer_class == PartSerializer - - def update_headers(self, headers, context, **kwargs): - """Update headers for the export.""" - if not self.export_stock_data: - # Remove stock data from the headers - for field in [ - 'allocated_to_build_orders', - 'allocated_to_sales_orders', - 'available_stock', - 'available_substitute_stock', - 'available_variant_stock', - 'building', - 'can_build', - 'external_stock', - 'in_stock', - 'on_order', - 'ordering', - 'required_for_build_orders', - 'required_for_sales_orders', - 'stock_item_count', - 'total_in_stock', - 'unallocated_stock', - 'variant_stock', - ]: - headers.pop(field, None) - - if not self.export_pricing_data: - # Remove pricing data from the headers - for field in [ - 'pricing_min', - 'pricing_max', - 'pricing_min_total', - 'pricing_max_total', - 'pricing_updated', - ]: - headers.pop(field, None) - - # Add in a header for each part parameter - for pk, name in self.parameters.items(): - headers[f'parameter_{pk}'] = str(name) - - return headers - - def prefetch_queryset(self, queryset): - """Ensure that the part parameters are prefetched.""" - queryset = queryset.prefetch_related('parameters', 'parameters__template') - - return queryset - - def export_data( - self, queryset, serializer_class, headers, context, output, **kwargs - ): - """Export part and parameter data.""" - # Extract custom serializer options and cache - self.export_stock_data = context.get('export_stock_data', True) - self.export_pricing_data = context.get('export_pricing_data', True) - - queryset = self.prefetch_queryset(queryset) - self.serializer_class = serializer_class - - # Keep a dict of observed part parameters against their primary key - self.parameters = {} - - # Serialize the queryset using DRF first - parts = self.serializer_class( - queryset, parameters=True, exporting=True, many=True - ).data - - for part in parts: - # Extract the part parameters from the serialized data - for parameter in part.get('parameters', []): - if template := parameter.get('template_detail', None): - template_id = template['pk'] - - if template_id not in self.parameters: - self.parameters[template_id] = template['name'] - - part[f'parameter_{template_id}'] = parameter['data'] - - return parts diff --git a/src/backend/InvenTree/plugin/samples/integration/validation_sample.py b/src/backend/InvenTree/plugin/samples/integration/validation_sample.py index 903cc59b34..7a8592f25d 100644 --- a/src/backend/InvenTree/plugin/samples/integration/validation_sample.py +++ b/src/backend/InvenTree/plugin/samples/integration/validation_sample.py @@ -111,8 +111,8 @@ class SampleValidatorPlugin(SettingsMixin, ValidationMixin, InvenTreePlugin): if self.get_setting('IPN_MUST_CONTAIN_Q') and 'Q' not in ipn: self.raise_error("IPN must contain 'Q'") - def validate_part_parameter(self, parameter, data): - """Validate part parameter data. + def validate_parameter(self, parameter, data): + """Validate parameter data. These examples are silly, but serve to demonstrate how the feature could be used """ diff --git a/src/backend/InvenTree/plugin/samples/supplier/test_supplier_sample.py b/src/backend/InvenTree/plugin/samples/supplier/test_supplier_sample.py index 22f86a05a5..a8772a0707 100644 --- a/src/backend/InvenTree/plugin/samples/supplier/test_supplier_sample.py +++ b/src/backend/InvenTree/plugin/samples/supplier/test_supplier_sample.py @@ -2,14 +2,10 @@ from django.urls import reverse +from common.models import ParameterTemplate from company.models import ManufacturerPart, SupplierPart from InvenTree.unit_test import InvenTreeAPITestCase -from part.models import ( - Part, - PartCategory, - PartCategoryParameterTemplate, - PartParameterTemplate, -) +from part.models import Part, PartCategory, PartCategoryParameterTemplate from plugin import registry @@ -134,14 +130,14 @@ class SampleSupplierTest(InvenTreeAPITestCase): # valid supplier, valid part import category = PartCategory.objects.get(pk=1) - p_len = PartParameterTemplate(name='Length', units='mm') - p_test = PartParameterTemplate(name='Test Parameter') + p_len = ParameterTemplate(name='Length', units='mm') + p_test = ParameterTemplate(name='Test Parameter') p_len.save() p_test.save() PartCategoryParameterTemplate.objects.bulk_create([ - PartCategoryParameterTemplate(category=category, parameter_template=p_len), + PartCategoryParameterTemplate(category=category, template=p_len), PartCategoryParameterTemplate( - category=category, parameter_template=p_test, default_value='Test Value' + category=category, template=p_test, default_value='Test Value' ), ]) res = self.post( diff --git a/src/backend/InvenTree/report/models.py b/src/backend/InvenTree/report/models.py index f2bedd9e67..677500ea3b 100644 --- a/src/backend/InvenTree/report/models.py +++ b/src/backend/InvenTree/report/models.py @@ -272,7 +272,7 @@ class ReportTemplateBase(MetadataMixin, InvenTree.models.InvenTreeModel): bytes: PDF data """ html = self.render_as_string(instance, request, context, **kwargs) - pdf = HTML(string=html).write_pdf() + pdf = HTML(string=html).write_pdf(pdf_forms=True) return pdf diff --git a/src/backend/InvenTree/report/templatetags/report.py b/src/backend/InvenTree/report/templatetags/report.py index 1455028fdf..6329b5a9dc 100644 --- a/src/backend/InvenTree/report/templatetags/report.py +++ b/src/backend/InvenTree/report/templatetags/report.py @@ -11,6 +11,7 @@ from django import template from django.apps.registry import apps from django.conf import settings from django.core.exceptions import ValidationError +from django.db.models import Model from django.db.models.query import QuerySet from django.utils.safestring import SafeString, mark_safe from django.utils.translation import gettext_lazy as _ @@ -22,6 +23,7 @@ from PIL import Image import common.currency import common.icons +import common.models import InvenTree.helpers import InvenTree.helpers_model import report.helpers @@ -329,19 +331,38 @@ def part_image(part: Part, preview: bool = False, thumbnail: bool = False, **kwa @register.simple_tag() -def part_parameter(part: Part, parameter_name: str) -> Optional[str]: - """Return a PartParameter object for the given part and parameter name. +def parameter( + instance: Model, parameter_name: str +) -> Optional[common.models.Parameter]: + """Return a Parameter object for the given part and parameter name. Arguments: - part: A Part object + instance: A Model object parameter_name: The name of the parameter to retrieve Returns: - A PartParameter object, or None if not found + A Parameter object, or None if not found """ - if type(part) is Part: - return part.get_parameter(parameter_name) - return None + if instance is None: + raise ValueError('parameter tag requires a valid Model instance') + + if not isinstance(instance, Model) or not hasattr(instance, 'parameters'): + raise TypeError("parameter tag requires a Model with 'parameters' attribute") + + return ( + instance.parameters.prefetch_related('template') + .filter(template__name=parameter_name) + .first() + ) + + +@register.simple_tag() +def part_parameter(instance, parameter_name): + """Included for backwards compatibility - use 'parameter' tag instead. + + Ref: https://github.com/inventree/InvenTree/pull/10699 + """ + return parameter(instance, parameter_name) @register.simple_tag() diff --git a/src/backend/InvenTree/report/test_tags.py b/src/backend/InvenTree/report/test_tags.py index f2f3a8b8f7..337b46e6b2 100644 --- a/src/backend/InvenTree/report/test_tags.py +++ b/src/backend/InvenTree/report/test_tags.py @@ -4,6 +4,7 @@ from decimal import Decimal from zoneinfo import ZoneInfo from django.conf import settings +from django.contrib.contenttypes.models import ContentType from django.core.exceptions import ValidationError from django.test import TestCase, override_settings from django.utils import timezone @@ -12,10 +13,10 @@ from django.utils.safestring import SafeString from djmoney.money import Money from PIL import Image -from common.models import InvenTreeSetting +from common.models import InvenTreeSetting, Parameter, ParameterTemplate from InvenTree.config import get_testfolder_dir from InvenTree.unit_test import InvenTreeTestCase -from part.models import Part, PartParameter, PartParameterTemplate +from part.models import Part # TODO fix import: PartParameter, PartParameterTemplate from part.test_api import PartImageTestMixin from report.templatetags import barcode as barcode_tags from report.templatetags import report as report_tags @@ -408,13 +409,24 @@ class ReportTagTest(PartImageTestMixin, InvenTreeTestCase): """Test the part_parameter template tag.""" # Test with a valid part part = Part.objects.create(name='test', description='test') - t1 = PartParameterTemplate.objects.create(name='Template 1', units='mm') - parameter = PartParameter.objects.create(part=part, template=t1, data='test') + t1 = ParameterTemplate.objects.create(name='Template 1', units='mm') + content_type = ContentType.objects.get_for_model(Part) + parameter = Parameter.objects.create( + model_type=content_type, model_id=part.pk, template=t1, data='test' + ) + + # Note, use the 'parameter' and 'part_parameter' tags interchangeably here self.assertEqual(report_tags.part_parameter(part, 'name'), None) - self.assertEqual(report_tags.part_parameter(part, 'Template 1'), parameter) - # Test with an invalid part - self.assertEqual(report_tags.part_parameter(None, 'name'), None) + self.assertEqual(report_tags.parameter(part, 'Template 1'), parameter) + + # Test with a null part + with self.assertRaises(ValueError): + report_tags.parameter(None, 'name') + + # Test with an invalid model type + with self.assertRaises(TypeError): + report_tags.parameter(parameter, 'name') def test_render_currency(self): """Test the render_currency template tag.""" diff --git a/src/backend/InvenTree/stock/models.py b/src/backend/InvenTree/stock/models.py index 5d12cb4032..07fef64c5c 100644 --- a/src/backend/InvenTree/stock/models.py +++ b/src/backend/InvenTree/stock/models.py @@ -100,21 +100,6 @@ class StockLocationType(InvenTree.models.MetadataMixin, models.Model): ) -class StockLocationManager(TreeManager): - """Custom database manager for the StockLocation class. - - StockLocation querysets will automatically select related fields for performance. - """ - - def get_queryset(self): - """Prefetch queryset to optimize db hits. - - - Joins the StockLocationType by default for speedier icon access - """ - # return super().get_queryset().select_related("location_type") - return super().get_queryset() - - class StockLocationReportContext(report.mixins.BaseReportContext): """Report context for the StockLocation model. @@ -151,7 +136,7 @@ class StockLocation( EXTRA_PATH_FIELDS = ['icon'] - objects = StockLocationManager() + objects = TreeManager() class Meta: """Metaclass defines extra model properties.""" diff --git a/src/backend/InvenTree/stock/serializers.py b/src/backend/InvenTree/stock/serializers.py index 421d943cf2..f8d76e543a 100644 --- a/src/backend/InvenTree/stock/serializers.py +++ b/src/backend/InvenTree/stock/serializers.py @@ -14,9 +14,9 @@ from drf_spectacular.utils import extend_schema_field from rest_framework import serializers from rest_framework.serializers import ValidationError from sql_util.utils import SubqueryCount, SubquerySum -from taggit.serializers import TagListSerializerField import build.models +import common.filters import company.models import company.serializers as company_serializers import InvenTree.helpers @@ -223,7 +223,8 @@ class StockItemTestResultSerializer( read_only_fields = ['pk', 'user', 'date'] user_detail = enable_filter( - UserSerializer(source='user', read_only=True, allow_null=True) + UserSerializer(source='user', read_only=True, allow_null=True), + prefetch_fields=['user'], ) template = serializers.PrimaryKeyRelatedField( @@ -238,7 +239,8 @@ class StockItemTestResultSerializer( template_detail = enable_filter( part_serializers.PartTestTemplateSerializer( source='template', read_only=True, allow_null=True - ) + ), + prefetch_fields=['template'], ) attachment = InvenTree.serializers.InvenTreeAttachmentSerializerField( @@ -475,9 +477,7 @@ class StockItemSerializer( """Add some extra annotations to the queryset, performing database queries as efficiently as possible.""" queryset = queryset.prefetch_related( 'location', - 'allocations', 'sales_order', - 'sales_order_allocations', 'purchase_order', Prefetch( 'part', @@ -489,25 +489,14 @@ class StockItemSerializer( ), 'parent', 'part__category', - 'part__supplier_parts', - 'part__supplier_parts__purchase_order_line_items', 'part__pricing_data', - 'part__tags', 'supplier_part', - 'supplier_part__part', - 'supplier_part__supplier', 'supplier_part__manufacturer_part', - 'supplier_part__manufacturer_part__manufacturer', - 'supplier_part__manufacturer_part__tags', - 'supplier_part__purchase_order_line_items', - 'supplier_part__tags', - 'test_results', 'customer', 'belongs_to', 'sales_order', 'consumed_by', - 'tags', - ) + ).select_related('part') # Annotate the queryset with the total allocated to sales orders queryset = queryset.annotate( @@ -586,7 +575,12 @@ class StockItemSerializer( read_only=True, allow_null=True, ), - True, + False, + prefetch_fields=[ + 'supplier_part__supplier', + 'supplier_part__purchase_order_line_items', + 'supplier_part__manufacturer_part__manufacturer', + ], ) part_detail = enable_filter( @@ -604,13 +598,20 @@ class StockItemSerializer( read_only=True, allow_null=True, ), - True, + False, + prefetch_fields=['location'], ) tests = enable_filter( StockItemTestResultSerializer( source='test_results', many=True, read_only=True, allow_null=True - ) + ), + False, + prefetch_fields=[ + 'test_results', + 'test_results__user', + 'test_results__template', + ], ) quantity = InvenTreeDecimalField() @@ -651,7 +652,7 @@ class StockItemSerializer( source='sales_order.reference', read_only=True, allow_null=True ) - tags = TagListSerializerField(required=False) + tags = common.filters.enable_tags_filter() class SerializeStockItemSerializer(serializers.Serializer): @@ -1192,7 +1193,7 @@ class LocationSerializer( level = serializers.IntegerField(read_only=True) - tags = TagListSerializerField(required=False) + tags = common.filters.enable_tags_filter() path = enable_filter( FilterableListField( @@ -1242,11 +1243,13 @@ class StockTrackingSerializer( label = serializers.CharField(read_only=True) item_detail = enable_filter( - StockItemSerializer(source='item', many=False, read_only=True, allow_null=True) + StockItemSerializer(source='item', many=False, read_only=True, allow_null=True), + prefetch_fields=['item'], ) user_detail = enable_filter( - UserSerializer(source='user', many=False, read_only=True, allow_null=True) + UserSerializer(source='user', many=False, read_only=True, allow_null=True), + prefetch_fields=['user'], ) deltas = serializers.JSONField(read_only=True) @@ -1678,6 +1681,10 @@ class StockAddSerializer(StockAdjustmentSerializer): stock_item = item['pk'] quantity = item['quantity'] + if quantity is None or quantity <= 0: + # Ignore in this case - no stock to add + continue + # Optional fields extra = {} @@ -1703,6 +1710,10 @@ class StockRemoveSerializer(StockAdjustmentSerializer): stock_item = item['pk'] quantity = item['quantity'] + # Ignore in this case - no stock to remove + if quantity is None or quantity <= 0: + continue + # Optional fields extra = {} diff --git a/src/backend/InvenTree/stock/test_api.py b/src/backend/InvenTree/stock/test_api.py index f3973676ef..7b267facb2 100644 --- a/src/backend/InvenTree/stock/test_api.py +++ b/src/backend/InvenTree/stock/test_api.py @@ -9,6 +9,7 @@ from django.contrib.contenttypes.models import ContentType from django.core.exceptions import ValidationError from django.urls import reverse +import pytest from djmoney.money import Money from rest_framework import status @@ -17,7 +18,7 @@ import company.models import part.models from common.models import InvenTreeCustomUserStateModel, InvenTreeSetting from common.settings import set_global_setting -from InvenTree.unit_test import InvenTreeAPITestCase +from InvenTree.unit_test import InvenTreeAPIPerformanceTestCase, InvenTreeAPITestCase from part.models import Part, PartTestTemplate from stock.models import ( StockItem, @@ -866,7 +867,9 @@ class StockItemListTest(StockAPITestCase): excluded_headers = ['metadata'] - with self.export_data(self.list_url) as data_file: + filters = {} + + with self.export_data(self.list_url, filters) as data_file: self.process_csv( data_file, required_cols=required_headers, @@ -875,9 +878,10 @@ class StockItemListTest(StockAPITestCase): ) # Now, add a filter to the results - with self.export_data( - self.list_url, {'location': 1, 'cascade': True} - ) as data_file: + filters['location'] = 1 + filters['cascade'] = True + + with self.export_data(self.list_url, filters) as data_file: data = self.process_csv(data_file, required_rows=9) for row in data: @@ -2546,3 +2550,15 @@ class StockMetadataAPITest(InvenTreeAPITestCase): 'api-stock-item-metadata': StockItem, }.items(): self.metatester(apikey, model) + + +class StockApiPerformanceTest(StockAPITestCase, InvenTreeAPIPerformanceTestCase): + """Performance tests for the Stock API.""" + + @pytest.mark.django_db + @pytest.mark.benchmark + def test_api_stock_list(self): + """Test that Stock API queries are performant.""" + url = reverse('api-stock-list') + response = self.get(url, expected_code=200) + self.assertGreater(len(response.data), 13) diff --git a/src/backend/InvenTree/stock/test_migrations.py b/src/backend/InvenTree/stock/test_migrations.py index 6407f5ea29..7901239951 100644 --- a/src/backend/InvenTree/stock/test_migrations.py +++ b/src/backend/InvenTree/stock/test_migrations.py @@ -2,14 +2,12 @@ from django_test_migrations.contrib.unittest_case import MigratorTestCase -from InvenTree import unit_test - class TestSerialNumberMigration(MigratorTestCase): """Test data migration which updates serial numbers.""" migrate_from = ('stock', '0067_alter_stockitem_part') - migrate_to = ('stock', unit_test.getNewestMigrationFile('stock')) + migrate_to = ('stock', '0070_auto_20211128_0151') def prepare(self): """Create initial data for this migration.""" @@ -72,7 +70,7 @@ class TestScheduledForDeletionMigration(MigratorTestCase): """Test data migration for removing 'scheduled_for_deletion' field.""" migrate_from = ('stock', '0066_stockitem_scheduled_for_deletion') - migrate_to = ('stock', unit_test.getNewestMigrationFile('stock')) + migrate_to = ('stock', '0073_alter_stockitem_belongs_to') def prepare(self): """Create some initial stock items.""" diff --git a/src/backend/InvenTree/users/api.py b/src/backend/InvenTree/users/api.py index 5cb0646719..42201ed095 100644 --- a/src/backend/InvenTree/users/api.py +++ b/src/backend/InvenTree/users/api.py @@ -291,13 +291,6 @@ class GroupMixin(SerializerContextMixin): serializer_class = GroupSerializer permission_classes = [InvenTree.permissions.IsStaffOrReadOnlyScope] - def get_queryset(self): - """Return queryset for this endpoint. - - Note that the queryset is filtered by the permissions of the current user. - """ - return super().get_queryset().prefetch_related('rule_sets', 'user_set') - class GroupOutputOptions(OutputConfiguration): """Holds all available output options for Group views.""" diff --git a/src/backend/InvenTree/users/permissions.py b/src/backend/InvenTree/users/permissions.py index c4dd898ed6..67b735ae4b 100644 --- a/src/backend/InvenTree/users/permissions.py +++ b/src/backend/InvenTree/users/permissions.py @@ -1,7 +1,10 @@ """Helper functions for user permission checks.""" +from typing import Optional + from django.contrib.auth.models import User from django.db import models +from django.db.models.query import Prefetch, QuerySet import InvenTree.cache from users.ruleset import RULESET_CHANGE_INHERIT, get_ruleset_ignore, get_ruleset_models @@ -55,8 +58,26 @@ def split_permission(app: str, perm: str) -> tuple[str, str]: return perm, model +def prefetch_rule_sets(user) -> QuerySet: + """Return a queryset of groups with prefetched rule sets for the given user. + + Arguments: + user: The user object + + Returns: + QuerySet: The queryset of groups with prefetched rule sets + """ + return user.groups.all().prefetch_related( + Prefetch('rule_sets', to_attr='prefetched_rule_sets') + ) + + def check_user_role( - user: User, role: str, permission: str, allow_inactive: bool = False + user: User, + role: str, + permission: str, + allow_inactive: bool = False, + groups: Optional[QuerySet] = None, ) -> bool: """Check if a user has a particular role:permission combination. @@ -65,6 +86,7 @@ def check_user_role( role: The role to check (e.g. 'part' / 'stock') permission: The permission to check (e.g. 'view' / 'delete') allow_inactive: If False, disallow inactive users from having permissions + groups: Optional cached queryset of groups to check (defaults to user's groups) Returns: bool: True if the user has the specified role:permission combination @@ -90,8 +112,10 @@ def check_user_role( # Default for no match result = False - for group in user.groups.all(): - for rule in group.rule_sets.all(): + groups = groups or prefetch_rule_sets(user) + + for group in groups: + for rule in group.prefetched_rule_sets: if rule.name == role: # Check if the rule has the specified permission # e.g. "view" role maps to "can_view" attribute diff --git a/src/backend/InvenTree/users/ruleset.py b/src/backend/InvenTree/users/ruleset.py index 0fe705bfd5..7beb4f1eec 100644 --- a/src/backend/InvenTree/users/ruleset.py +++ b/src/backend/InvenTree/users/ruleset.py @@ -40,7 +40,7 @@ RULESET_NAMES = [choice[0] for choice in RULESET_CHOICES] # Permission types available for each ruleset. RULESET_PERMISSIONS = ['view', 'add', 'change', 'delete'] -RULESET_CHANGE_INHERIT = [('part', 'partparameter'), ('part', 'bomitem')] +RULESET_CHANGE_INHERIT = [('part', 'bomitem')] def get_ruleset_models() -> dict: @@ -106,15 +106,12 @@ def get_ruleset_models() -> dict: 'part_partsellpricebreak', 'part_partinternalpricebreak', 'part_parttesttemplate', - 'part_partparametertemplate', - 'part_partparameter', 'part_partrelated', 'part_partstar', 'part_partstocktake', 'part_partcategorystar', 'company_supplierpart', 'company_manufacturerpart', - 'company_manufacturerpartparameter', ], RuleSetEnum.STOCK_LOCATION: ['stock_stocklocation', 'stock_stocklocationtype'], RuleSetEnum.STOCK: [ @@ -138,7 +135,6 @@ def get_ruleset_models() -> dict: 'company_contact', 'company_address', 'company_manufacturerpart', - 'company_manufacturerpartparameter', 'company_supplierpart', 'company_supplierpricebreak', 'order_purchaseorder', @@ -179,6 +175,8 @@ def get_ruleset_ignore() -> list[str]: 'contenttypes_contenttype', # Models which currently do not require permissions 'common_attachment', + 'common_parametertemplate', + 'common_parameter', 'common_customunit', 'common_dataoutput', 'common_inventreesetting', diff --git a/src/backend/InvenTree/users/serializers.py b/src/backend/InvenTree/users/serializers.py index 178d8c483c..0fdd481137 100644 --- a/src/backend/InvenTree/users/serializers.py +++ b/src/backend/InvenTree/users/serializers.py @@ -19,7 +19,7 @@ from InvenTree.serializers import ( ) from .models import ApiToken, Owner, RuleSet, UserProfile -from .permissions import check_user_role +from .permissions import check_user_role, prefetch_rule_sets from .ruleset import RULESET_CHOICES, RULESET_PERMISSIONS, RuleSetEnum @@ -83,13 +83,16 @@ class RoleSerializer(InvenTreeModelSerializer): """Roles associated with the user.""" roles = {} + # Cache the 'groups' queryset for the user + groups = prefetch_rule_sets(user) + for ruleset in RULESET_CHOICES: role, _text = ruleset permissions = [] for permission in RULESET_PERMISSIONS: - if check_user_role(user, role, permission): + if check_user_role(user, role, permission, groups=groups): permissions.append(permission) if len(permissions) > 0: @@ -265,11 +268,13 @@ class GroupSerializer(FilterableSerializerMixin, InvenTreeModelSerializer): source='rule_sets', many=True, read_only=True, allow_null=True ), filter_name='role_detail', + prefetch_fields=['rule_sets'], ) users = enable_filter( UserSerializer(source='user_set', many=True, read_only=True, allow_null=True), filter_name='user_detail', + prefetch_fields=['user_set'], ) diff --git a/src/backend/requirements-dev.in b/src/backend/requirements-dev.in index 686068e18d..a149abf7b0 100644 --- a/src/backend/requirements-dev.in +++ b/src/backend/requirements-dev.in @@ -2,6 +2,7 @@ -c requirements.txt coverage[toml] # Unit test coverage django-querycount # Display number of URL queries for requests +django-silk # API query profiling django-slowtests # Show which unit tests are running slowly django-test-migrations # Unit testing for database migrations isort # python import sorting @@ -13,3 +14,5 @@ ty # type checking django-types # typing django-stubs # typing requests-mock # Mock requests for unit tests +pytest-codspeed # Performance testing with Codspeed +pytest-django # Pytest support for Django (for benchnmarking) diff --git a/src/backend/requirements-dev.txt b/src/backend/requirements-dev.txt index 9068c90531..ba69523baf 100644 --- a/src/backend/requirements-dev.txt +++ b/src/backend/requirements-dev.txt @@ -104,9 +104,10 @@ cffi==2.0.0 \ # via # -c src/backend/requirements.txt # cryptography -cfgv==3.4.0 \ - --hash=sha256:b7265b1f29fd3316bfcd2b330d63d024f2bfd8bcb8b0272f8e19a504856c48f9 \ - --hash=sha256:e52591d4c5f5dead8e0f673fb16db7949d2cfb3f7da4582893288f0ded8fe560 + # pytest-codspeed +cfgv==3.5.0 \ + --hash=sha256:a8dc6b26ad22ff227d2634a65cb388215ce6cc96bbcc5cfde7641ae87e8dacc0 \ + --hash=sha256:d5b1034354820651caa73ede66a6294d6e95c1b00acc5e9b098e917404669132 # via pre-commit charset-normalizer==3.4.4 \ --hash=sha256:027f6de494925c0ab2a55eab46ae5129951638a49a34d87f4c3eda90f696b4ad \ @@ -226,103 +227,103 @@ charset-normalizer==3.4.4 \ # -c src/backend/requirements.txt # pdfminer-six # requests -click==8.3.0 \ - --hash=sha256:9b9f285302c6e3064f4330c05f05b81945b2a39544279343e6e7c5f27a9baddc \ - --hash=sha256:e7b8232224eba16f4ebe410c25ced9f7875cb5f3263ffc93cc3e8da705e229c4 +click==8.3.1 \ + --hash=sha256:12ff4785d337a1bb490bb7e9c2b1ee5da3112e94a8622f26a6c77f5d2fc6842a \ + --hash=sha256:981153a64e25f12d547d3426c367a4857371575ee7ad18df2a6183ab0545b2a6 # via pip-tools -coverage[toml]==7.12.0 \ - --hash=sha256:01d24af36fedda51c2b1aca56e4330a3710f83b02a5ff3743a6b015ffa7c9384 \ - --hash=sha256:04a79245ab2b7a61688958f7a855275997134bc84f4a03bc240cf64ff132abf6 \ - --hash=sha256:083631eeff5eb9992c923e14b810a179798bb598e6a0dd60586819fc23be6e60 \ - --hash=sha256:099d11698385d572ceafb3288a5b80fe1fc58bf665b3f9d362389de488361d3d \ - --hash=sha256:09a86acaaa8455f13d6a99221d9654df249b33937b4e212b4e5a822065f12aa7 \ - --hash=sha256:159d50c0b12e060b15ed3d39f87ed43d4f7f7ad40b8a534f4dd331adbb51104a \ - --hash=sha256:172cf3a34bfef42611963e2b661302a8931f44df31629e5b1050567d6b90287d \ - --hash=sha256:22a7aade354a72dff3b59c577bfd18d6945c61f97393bc5fb7bd293a4237024b \ - --hash=sha256:24cff9d1f5743f67db7ba46ff284018a6e9aeb649b67aa1e70c396aa1b7cb23c \ - --hash=sha256:29644c928772c78512b48e14156b81255000dcfd4817574ff69def189bcb3647 \ - --hash=sha256:297bc2da28440f5ae51c845a47c8175a4db0553a53827886e4fb25c66633000c \ - --hash=sha256:2fd8354ed5d69775ac42986a691fbf68b4084278710cee9d7c3eaa0c28fa982a \ - --hash=sha256:313672140638b6ddb2c6455ddeda41c6a0b208298034544cfca138978c6baed6 \ - --hash=sha256:31b8b2e38391a56e3cea39d22a23faaa7c3fc911751756ef6d2621d2a9daf742 \ - --hash=sha256:32b75c2ba3f324ee37af3ccee5b30458038c50b349ad9b88cee85096132a575b \ - --hash=sha256:33baadc0efd5c7294f436a632566ccc1f72c867f82833eb59820ee37dc811c6f \ - --hash=sha256:3ff651dcd36d2fea66877cd4a82de478004c59b849945446acb5baf9379a1b64 \ - --hash=sha256:40c867af715f22592e0d0fb533a33a71ec9e0f73a6945f722a0c85c8c1cbe3a2 \ - --hash=sha256:42435d46d6461a3b305cdfcad7cdd3248787771f53fe18305548cba474e6523b \ - --hash=sha256:459443346509476170d553035e4a3eed7b860f4fe5242f02de1010501956ce87 \ - --hash=sha256:4648158fd8dd9381b5847622df1c90ff314efbfc1df4550092ab6013c238a5fc \ - --hash=sha256:47324fffca8d8eae7e185b5bb20c14645f23350f870c1649003618ea91a78941 \ - --hash=sha256:473dc45d69694069adb7680c405fb1e81f60b2aff42c81e2f2c3feaf544d878c \ - --hash=sha256:4b59b501455535e2e5dde5881739897967b272ba25988c89145c12d772810ccb \ - --hash=sha256:4c589361263ab2953e3c4cd2a94db94c4ad4a8e572776ecfbad2389c626e4507 \ - --hash=sha256:51777647a749abdf6f6fd8c7cffab12de68ab93aab15efc72fbbb83036c2a068 \ - --hash=sha256:52ca620260bd8cd6027317bdd8b8ba929be1d741764ee765b42c4d79a408601e \ - --hash=sha256:5560c7e0d82b42eb1951e4f68f071f8017c824ebfd5a6ebe42c60ac16c6c2434 \ - --hash=sha256:5734b5d913c3755e72f70bf6cc37a0518d4f4745cde760c5d8e12005e62f9832 \ - --hash=sha256:583f9adbefd278e9de33c33d6846aa8f5d164fa49b47144180a0e037f0688bb9 \ - --hash=sha256:58c1c6aa677f3a1411fe6fb28ec3a942e4f665df036a3608816e0847fad23296 \ - --hash=sha256:5b3c889c0b8b283a24d721a9eabc8ccafcfc3aebf167e4cd0d0e23bf8ec4e339 \ - --hash=sha256:5bcead88c8423e1855e64b8057d0544e33e4080b95b240c2a355334bb7ced937 \ - --hash=sha256:5ea5a9f7dc8877455b13dd1effd3202e0bca72f6f3ab09f9036b1bcf728f69ac \ - --hash=sha256:5f3738279524e988d9da2893f307c2093815c623f8d05a8f79e3eff3a7a9e553 \ - --hash=sha256:68b0d0a2d84f333de875666259dadf28cc67858bc8fd8b3f1eae84d3c2bec455 \ - --hash=sha256:6d907ddccbca819afa2cd014bc69983b146cca2735a0b1e6259b2a6c10be1e70 \ - --hash=sha256:6e1a8c066dabcde56d5d9fed6a66bc19a2883a3fe051f0c397a41fc42aedd4cc \ - --hash=sha256:6ff7651cc01a246908eac162a6a86fc0dbab6de1ad165dfb9a1e2ec660b44984 \ - --hash=sha256:737c3814903be30695b2de20d22bcc5428fdae305c61ba44cdc8b3252984c49c \ - --hash=sha256:73f9e7fbd51a221818fd11b7090eaa835a353ddd59c236c57b2199486b116c6d \ - --hash=sha256:76336c19a9ef4a94b2f8dc79f8ac2da3f193f625bb5d6f51a328cd19bfc19933 \ - --hash=sha256:7670d860e18b1e3ee5930b17a7d55ae6287ec6e55d9799982aa103a2cc1fa2ef \ - --hash=sha256:79a44421cd5fba96aa57b5e3b5a4d3274c449d4c622e8f76882d76635501fd13 \ - --hash=sha256:7c1059b600aec6ef090721f8f633f60ed70afaffe8ecab85b59df748f24b31fe \ - --hash=sha256:8638cbb002eaa5d7c8d04da667813ce1067080b9a91099801a0053086e52b736 \ - --hash=sha256:874fe69a0785d96bd066059cd4368022cebbec1a8958f224f0016979183916e6 \ - --hash=sha256:8787b0f982e020adb732b9f051f3e49dd5054cebbc3f3432061278512a2b1360 \ - --hash=sha256:8bb5b894b3ec09dcd6d3743229dc7f2c42ef7787dc40596ae04c0edda487371e \ - --hash=sha256:907e0df1b71ba77463687a74149c6122c3f6aac56c2510a5d906b2f368208560 \ - --hash=sha256:90d58ac63bc85e0fb919f14d09d6caa63f35a5512a2205284b7816cafd21bb03 \ - --hash=sha256:9157a5e233c40ce6613dead4c131a006adfda70e557b6856b97aceed01b0e27a \ - --hash=sha256:91b810a163ccad2e43b1faa11d70d3cf4b6f3d83f9fd5f2df82a32d47b648e0d \ - --hash=sha256:950411f1eb5d579999c5f66c62a40961f126fc71e5e14419f004471957b51508 \ - --hash=sha256:99d5415c73ca12d558e07776bd957c4222c687b9f1d26fa0e1b57e3598bdcde8 \ - --hash=sha256:9b57e2d0ddd5f0582bae5437c04ee71c46cd908e7bc5d4d0391f9a41e812dd12 \ - --hash=sha256:9bb44c889fb68004e94cab71f6a021ec83eac9aeabdbb5a5a88821ec46e1da73 \ - --hash=sha256:a00594770eb715854fb1c57e0dea08cce6720cfbc531accdb9850d7c7770396c \ - --hash=sha256:a1783ed5bd0d5938d4435014626568dc7f93e3cb99bc59188cc18857c47aa3c4 \ - --hash=sha256:a1c59b7dc169809a88b21a936eccf71c3895a78f5592051b1af8f4d59c2b4f92 \ - --hash=sha256:aa124a3683d2af98bd9d9c2bfa7a5076ca7e5ab09fdb96b81fa7d89376ae928f \ - --hash=sha256:aa7d48520a32cb21c7a9b31f81799e8eaec7239db36c3b670be0fa2403828d1d \ - --hash=sha256:b1518ecbad4e6173f4c6e6c4a46e49555ea5679bf3feda5edb1b935c7c44e8a0 \ - --hash=sha256:b1aab7302a87bafebfe76b12af681b56ff446dc6f32ed178ff9c092ca776e6bc \ - --hash=sha256:b2089cc445f2dc0af6f801f0d1355c025b76c24481935303cf1af28f636688f0 \ - --hash=sha256:b365adc70a6936c6b0582dc38746b33b2454148c02349345412c6e743efb646d \ - --hash=sha256:b527a08cdf15753279b7afb2339a12073620b761d79b81cbe2cdebdb43d90daa \ - --hash=sha256:bc13baf85cd8a4cfcf4a35c7bc9d795837ad809775f782f697bf630b7e200211 \ - --hash=sha256:bcec6f47e4cb8a4c2dc91ce507f6eefc6a1b10f58df32cdc61dff65455031dfc \ - --hash=sha256:c406a71f544800ef7e9e0000af706b88465f3573ae8b8de37e5f96c59f689ad1 \ - --hash=sha256:c5a6f20bf48b8866095c6820641e7ffbe23f2ac84a2efc218d91235e404c7777 \ - --hash=sha256:c87395744f5c77c866d0f5a43d97cc39e17c7f1cb0115e54a2fe67ca75c5d14d \ - --hash=sha256:ca8ecfa283764fdda3eae1bdb6afe58bf78c2c3ec2b2edcb05a671f0bba7b3f9 \ - --hash=sha256:cb2a1b6ab9fe833714a483a915de350abc624a37149649297624c8d57add089c \ - --hash=sha256:ccf3b2ede91decd2fb53ec73c1f949c3e034129d1e0b07798ff1d02ea0c8fa4a \ - --hash=sha256:ce61969812d6a98a981d147d9ac583a36ac7db7766f2e64a9d4d059c2fe29d07 \ - --hash=sha256:d6c2e26b481c9159c2773a37947a9718cfdc58893029cdfb177531793e375cfc \ - --hash=sha256:d7e0d0303c13b54db495eb636bc2465b2fb8475d4c8bcec8fe4b5ca454dfbae8 \ - --hash=sha256:d8842f17095b9868a05837b7b1b73495293091bed870e099521ada176aa3e00e \ - --hash=sha256:d93fbf446c31c0140208dcd07c5d882029832e8ed7891a39d6d44bd65f2316c3 \ - --hash=sha256:dcbb630ab034e86d2a0f79aefd2be07e583202f41e037602d438c80044957baa \ - --hash=sha256:e0d68c1f7eabbc8abe582d11fa393ea483caf4f44b0af86881174769f185c94d \ - --hash=sha256:e0f483ab4f749039894abaf80c2f9e7ed77bbf3c737517fb88c8e8e305896a17 \ - --hash=sha256:e71bba6a40883b00c6d571599b4627f50c360b3d0d02bfc658168936be74027b \ - --hash=sha256:e84da3a0fd233aeec797b981c51af1cabac74f9bd67be42458365b30d11b5291 \ - --hash=sha256:e949ebf60c717c3df63adb4a1a366c096c8d7fd8472608cd09359e1bd48ef59f \ - --hash=sha256:f3433ffd541380f3a0e423cff0f4926d55b0cc8c1d160fdc3be24a4c03aa65f7 \ - --hash=sha256:f7ba9da4726e446d8dd8aae5a6cd872511184a5d861de80a86ef970b5dacce3e \ - --hash=sha256:f7bbb321d4adc9f65e402c677cd1c8e4c2d0105d3ce285b51b4d87f1d5db5245 \ - --hash=sha256:f999813dddeb2a56aab5841e687b68169da0d3f6fc78ccf50952fa2463746022 \ - --hash=sha256:fc11e0a4e372cb5f282f16ef90d4a585034050ccda536451901abfb19a57f40c \ - --hash=sha256:fdba9f15849534594f60b47c9a30bc70409b54947319a7c4fd0e8e3d8d2f355d +coverage[toml]==7.13.0 \ + --hash=sha256:0018f73dfb4301a89292c73be6ba5f58722ff79f51593352759c1790ded1cabe \ + --hash=sha256:00c3d22cf6fb1cf3bf662aaaa4e563be8243a5ed2630339069799835a9cc7f9b \ + --hash=sha256:02d9fb9eccd48f6843c98a37bd6817462f130b86da8660461e8f5e54d4c06070 \ + --hash=sha256:0602f701057c6823e5db1b74530ce85f17c3c5be5c85fc042ac939cbd909426e \ + --hash=sha256:06cac81bf10f74034e055e903f5f946e3e26fc51c09fc9f584e4a1605d977053 \ + --hash=sha256:086cede306d96202e15a4b77ace8472e39d9f4e5f9fd92dd4fecdfb2313b2080 \ + --hash=sha256:0900872f2fdb3ee5646b557918d02279dc3af3dfb39029ac4e945458b13f73bc \ + --hash=sha256:0a3a30f0e257df382f5f9534d4ce3d4cf06eafaf5192beb1a7bd066cb10e78fb \ + --hash=sha256:0b3d67d31383c4c68e19a88e28fc4c2e29517580f1b0ebec4a069d502ce1e0bf \ + --hash=sha256:0dfa3855031070058add1a59fdfda0192fd3e8f97e7c81de0596c145dea51820 \ + --hash=sha256:0f4872f5d6c54419c94c25dd6ae1d015deeb337d06e448cd890a1e89a8ee7f3b \ + --hash=sha256:11c21557d0e0a5a38632cbbaca5f008723b26a89d70db6315523df6df77d6232 \ + --hash=sha256:166ad2a22ee770f5656e1257703139d3533b4a0b6909af67c6b4a3adc1c98657 \ + --hash=sha256:193c3887285eec1dbdb3f2bd7fbc351d570ca9c02ca756c3afbc71b3c98af6ef \ + --hash=sha256:1d84e91521c5e4cb6602fe11ece3e1de03b2760e14ae4fcf1a4b56fa3c801fcd \ + --hash=sha256:1ed5630d946859de835a85e9a43b721123a8a44ec26e2830b296d478c7fd4259 \ + --hash=sha256:22486cdafba4f9e471c816a2a5745337742a617fef68e890d8baf9f3036d7833 \ + --hash=sha256:22ccfe8d9bb0d6134892cbe1262493a8c70d736b9df930f3f3afae0fe3ac924d \ + --hash=sha256:24e4e56304fdb56f96f80eabf840eab043b3afea9348b88be680ec5986780a0f \ + --hash=sha256:25dc33618d45456ccb1d37bce44bc78cf269909aa14c4db2e03d63146a8a1493 \ + --hash=sha256:263c3dbccc78e2e331e59e90115941b5f53e85cfcc6b3b2fbff1fd4e3d2c6ea8 \ + --hash=sha256:28ee1c96109974af104028a8ef57cec21447d42d0e937c0275329272e370ebcf \ + --hash=sha256:30a3a201a127ea57f7e14ba43c93c9c4be8b7d17a26e03bb49e6966d019eede9 \ + --hash=sha256:3188936845cd0cb114fa6a51842a304cdbac2958145d03be2377ec41eb285d19 \ + --hash=sha256:367449cf07d33dc216c083f2036bb7d976c6e4903ab31be400ad74ad9f85ce98 \ + --hash=sha256:37eee4e552a65866f15dedd917d5e5f3d59805994260720821e2c1b51ac3248f \ + --hash=sha256:3a10260e6a152e5f03f26db4a407c4c62d3830b9af9b7c0450b183615f05d43b \ + --hash=sha256:3a7b1cd820e1b6116f92c6128f1188e7afe421c7e1b35fa9836b11444e53ebd9 \ + --hash=sha256:3ab483ea0e251b5790c2aac03acde31bff0c736bf8a86829b89382b407cd1c3b \ + --hash=sha256:3ad968d1e3aa6ce5be295ab5fe3ae1bf5bb4769d0f98a80a0252d543a2ef2e9e \ + --hash=sha256:445badb539005283825959ac9fa4a28f712c214b65af3a2c464f1adc90f5fcbc \ + --hash=sha256:453b7ec753cf5e4356e14fe858064e5520c460d3bbbcb9c35e55c0d21155c256 \ + --hash=sha256:494f5459ffa1bd45e18558cd98710c36c0b8fbfa82a5eabcbe671d80ecffbfe8 \ + --hash=sha256:4b5de7d4583e60d5fd246dd57fcd3a8aa23c6e118a8c72b38adf666ba8e7e927 \ + --hash=sha256:4f3e223b2b2db5e0db0c2b97286aba0036ca000f06aca9b12112eaa9af3d92ae \ + --hash=sha256:4fdb6f54f38e334db97f72fa0c701e66d8479af0bc3f9bfb5b90f1c30f54500f \ + --hash=sha256:51a202e0f80f241ccb68e3e26e19ab5b3bf0f813314f2c967642f13ebcf1ddfe \ + --hash=sha256:581f086833d24a22c89ae0fe2142cfaa1c92c930adf637ddf122d55083fb5a0f \ + --hash=sha256:583221913fbc8f53b88c42e8dbb8fca1d0f2e597cb190ce45916662b8b9d9621 \ + --hash=sha256:58632b187be6f0be500f553be41e277712baa278147ecb7559983c6d9faf7ae1 \ + --hash=sha256:5c67dace46f361125e6b9cace8fe0b729ed8479f47e70c89b838d319375c8137 \ + --hash=sha256:5e70f92ef89bac1ac8a99b3324923b4749f008fdbd7aa9cb35e01d7a284a04f9 \ + --hash=sha256:5f5d9bd30756fff3e7216491a0d6d520c448d5124d3d8e8f56446d6412499e74 \ + --hash=sha256:5f8a0297355e652001015e93be345ee54393e45dc3050af4a0475c5a2b767d46 \ + --hash=sha256:62d7c4f13102148c78d7353c6052af6d899a7f6df66a32bddcc0c0eb7c5326f8 \ + --hash=sha256:69ac2c492918c2461bc6ace42d0479638e60719f2a4ef3f0815fa2df88e9f940 \ + --hash=sha256:6abb3a4c52f05e08460bd9acf04fec027f8718ecaa0d09c40ffbc3fbd70ecc39 \ + --hash=sha256:6e63ccc6e0ad8986386461c3c4b737540f20426e7ec932f42e030320896c311a \ + --hash=sha256:6e9e451dee940a86789134b6b0ffbe31c454ade3b849bb8a9d2cca2541a8e91d \ + --hash=sha256:6fb2d5d272341565f08e962cce14cdf843a08ac43bd621783527adb06b089c4b \ + --hash=sha256:71936a8b3b977ddd0b694c28c6a34f4fff2e9dd201969a4ff5d5fc7742d614b0 \ + --hash=sha256:73419b89f812f498aca53f757dd834919b48ce4799f9d5cad33ca0ae442bdb1a \ + --hash=sha256:739c6c051a7540608d097b8e13c76cfa85263ced467168dc6b477bae3df7d0e2 \ + --hash=sha256:7464663eaca6adba4175f6c19354feea61ebbdd735563a03d1e472c7072d27bb \ + --hash=sha256:74c136e4093627cf04b26a35dab8cbfc9b37c647f0502fc313376e11726ba303 \ + --hash=sha256:76541dc8d53715fb4f7a3a06b34b0dc6846e3c69bc6204c55653a85dd6220971 \ + --hash=sha256:7a485ff48fbd231efa32d58f479befce52dcb6bfb2a88bb7bf9a0b89b1bc8030 \ + --hash=sha256:7e442c013447d1d8d195be62852270b78b6e255b79b8675bad8479641e21fd96 \ + --hash=sha256:7f15a931a668e58087bc39d05d2b4bf4b14ff2875b49c994bbdb1c2217a8daeb \ + --hash=sha256:7f88ae3e69df2ab62fb0bc5219a597cb890ba5c438190ffa87490b315190bb33 \ + --hash=sha256:8069e831f205d2ff1f3d355e82f511eb7c5522d7d413f5db5756b772ec8697f8 \ + --hash=sha256:850d2998f380b1e266459ca5b47bc9e7daf9af1d070f66317972f382d46f1904 \ + --hash=sha256:898cce66d0836973f48dda4e3514d863d70142bdf6dfab932b9b6a90ea5b222d \ + --hash=sha256:9097818b6cc1cfb5f174e3263eba4a62a17683bcfe5c4b5d07f4c97fa51fbf28 \ + --hash=sha256:936bc20503ce24770c71938d1369461f0c5320830800933bc3956e2a4ded930e \ + --hash=sha256:9372dff5ea15930fea0445eaf37bbbafbc771a49e70c0aeed8b4e2c2614cc00e \ + --hash=sha256:9987a9e4f8197a1000280f7cc089e3ea2c8b3c0a64d750537809879a7b4ceaf9 \ + --hash=sha256:99acd4dfdfeb58e1937629eb1ab6ab0899b131f183ee5f23e0b5da5cba2fec74 \ + --hash=sha256:9b01c22bc74a7fb44066aaf765224c0d933ddf1f5047d6cdfe4795504a4493f8 \ + --hash=sha256:a00d3a393207ae12f7c49bb1c113190883b500f48979abb118d8b72b8c95c032 \ + --hash=sha256:a23e5a1f8b982d56fa64f8e442e037f6ce29322f1f9e6c2344cd9e9f4407ee57 \ + --hash=sha256:a2bdb3babb74079f021696cb46b8bb5f5661165c385d3a238712b031a12355be \ + --hash=sha256:a394aa27f2d7ff9bc04cf703817773a59ad6dfbd577032e690f961d2460ee936 \ + --hash=sha256:a6c6e16b663be828a8f0b6c5027d36471d4a9f90d28444aa4ced4d48d7d6ae8f \ + --hash=sha256:af0a583efaacc52ae2521f8d7910aff65cdb093091d76291ac5820d5e947fc1c \ + --hash=sha256:af827b7cbb303e1befa6c4f94fd2bf72f108089cfa0f8abab8f4ca553cf5ca5a \ + --hash=sha256:c4be718e51e86f553bcf515305a158a1cd180d23b72f07ae76d6017c3cc5d791 \ + --hash=sha256:cdb3c9f8fef0a954c632f64328a3935988d33a6604ce4bf67ec3e39670f12ae5 \ + --hash=sha256:d10fd186aac2316f9bbb46ef91977f9d394ded67050ad6d84d94ed6ea2e8e54e \ + --hash=sha256:d1e97353dcc5587b85986cda4ff3ec98081d7e84dd95e8b2a6d59820f0545f8a \ + --hash=sha256:d2a9d7f1c11487b1c69367ab3ac2d81b9b3721f097aa409a3191c3e90f8f3dd7 \ + --hash=sha256:de7f6748b890708578fc4b7bb967d810aeb6fcc9bff4bb77dbca77dab2f9df6a \ + --hash=sha256:e5330fa0cc1f5c3c4c3bb8e101b742025933e7848989370a1d4c8c5e401ea753 \ + --hash=sha256:e999e2dcc094002d6e2c7bbc1fb85b58ba4f465a760a8014d97619330cdbbbf3 \ + --hash=sha256:eb76670874fdd6091eedcc856128ee48c41a9bbbb9c3f1c7c3cf169290e3ffd6 \ + --hash=sha256:f1c23e24a7000da892a312fb17e33c5f94f8b001de44b7cf8ba2e36fbd15859e \ + --hash=sha256:f2ffc92b46ed6e6760f1d47a71e56b5664781bc68986dbd1836b2b70c0ce2071 \ + --hash=sha256:f4f72a85316d8e13234cafe0a9f81b40418ad7a082792fa4165bd7d45d96066b \ + --hash=sha256:f59883c643cb19630500f57016f76cfdcd6845ca8c5b5ea1f6e17f74c8e5f511 \ + --hash=sha256:f6aaef16d65d1787280943f1c8718dc32e9cf141014e4634d64446702d26e0ff \ + --hash=sha256:fe81055d8c6c9de76d60c94ddea73c290b416e061d40d542b24a5871bad498b7 \ + --hash=sha256:ff45e0cd8451e293b63ced93161e189780baf444119391b3e7d25315060368a6 # via -r src/backend/requirements-dev.in cryptography==46.0.3 \ --hash=sha256:00a5e7e87938e5ff9ff5447ab086a5706a957137e6e433841e9d24f38a065217 \ @@ -386,27 +387,32 @@ distlib==0.4.0 \ --hash=sha256:9659f7d87e46584a30b5780e43ac7a2143098441670ff0a49d5f9034c54a6c16 \ --hash=sha256:feec40075be03a04501a973d81f633735b4b69f98b05450592310c0f401a4e0d # via virtualenv -django==5.2.8 \ - --hash=sha256:23254866a5bb9a2cfa6004e8b809ec6246eba4b58a7589bc2772f1bcc8456c7f \ - --hash=sha256:37e687f7bd73ddf043e2b6b97cfe02fcbb11f2dbb3adccc6a2b18c6daa054d7f +django==5.2.9 \ + --hash=sha256:16b5ccfc5e8c27e6c0561af551d2ea32852d7352c67d452ae3e76b4f6b2ca495 \ + --hash=sha256:3a4ea88a70370557ab1930b332fd2887a9f48654261cdffda663fef5976bb00a # via # -c src/backend/requirements.txt + # django-silk # django-slowtests # django-stubs # django-stubs-ext django-querycount==0.8.3 \ --hash=sha256:0782484e8a1bd29498fa0195a67106e47cdcc98fafe80cebb1991964077cb694 # via -r src/backend/requirements-dev.in +django-silk==5.4.3 \ + --hash=sha256:bedb17c8fd9c029a7746cb947864f5c9ea943ae33d6a9581e60f67c45e4490ad \ + --hash=sha256:f7920ae91a34716654296140b2cbf449e9798237a0c6eb7cf2cd79c2cfb39321 + # via -r src/backend/requirements-dev.in django-slowtests==1.1.1 \ --hash=sha256:3c6936d420c9df444ac03625b41d97de043c662bbde61fbcd33e4cd407d0c247 # via -r src/backend/requirements-dev.in -django-stubs==5.2.7 \ - --hash=sha256:2864e74b56ead866ff1365a051f24d852f6ed02238959664f558a6c9601c95bf \ - --hash=sha256:2a07e47a8a867836a763c6bba8bf3775847b4fd9555bfa940360e32d0ee384a1 +django-stubs==5.2.8 \ + --hash=sha256:9bba597c9a8ed8c025cae4696803d5c8be1cf55bfc7648a084cbf864187e2f8b \ + --hash=sha256:a3c63119fd7062ac63d58869698d07c9e5ec0561295c4e700317c54e8d26716c # via -r src/backend/requirements-dev.in -django-stubs-ext==5.2.7 \ - --hash=sha256:0466a7132587d49c5bbe12082ac9824d117a0dedcad5d0ada75a6e0d3aca6f60 \ - --hash=sha256:b690655bd4cb8a44ae57abb314e0995dc90414280db8f26fff0cb9fb367d1cac +django-stubs-ext==5.2.8 \ + --hash=sha256:1dd5470c9675591362c78a157a3cf8aec45d0e7a7f0cf32f227a1363e54e0652 \ + --hash=sha256:b39938c46d7a547cd84e4a6378dbe51a3dd64d70300459087229e5fee27e5c6b # via django-stubs django-test-migrations==1.5.0 \ --hash=sha256:1cbff04b1e82c5564a6f635284907b381cc11a2ff883adff46776d9126824f07 \ @@ -416,10 +422,14 @@ django-types==0.22.0 \ --hash=sha256:4cecc9eee846e7ff2a398bec9dfe6543e76efb922a7a58c5d6064bcb0e6a3dc5 \ --hash=sha256:ba15c756c7a732e58afd0737e54489f1c5e6f1bd24132e9199c637b1f88b057c # via -r src/backend/requirements-dev.in -filelock==3.20.0 \ - --hash=sha256:339b4732ffda5cd79b13f4e2711a31b0365ce445d95d243bb996273d072546a2 \ - --hash=sha256:711e943b4ec6be42e1d4e6690b48dc175c822967466bb31c0c293f34334c13f4 +filelock==3.20.1 \ + --hash=sha256:15d9e9a67306188a44baa72f569d2bfd803076269365fdea0934385da4dc361a \ + --hash=sha256:b8360948b351b80f420878d8516519a2204b07aefcdcfd24912a5d33127f188c # via virtualenv +gprof2dot==2025.4.14 \ + --hash=sha256:0742e4c0b4409a5e8777e739388a11e1ed3750be86895655312ea7c20bd0090e \ + --hash=sha256:35743e2d2ca027bf48fa7cba37021aaf4a27beeae1ae8e05a50b55f1f921a6ce + # via django-silk identify==2.6.15 \ --hash=sha256:1181ef7608e00704db228516541eb83a88a9f94433a8c80bb9b5bd54b1d81757 \ --hash=sha256:e4f4864b96c6557ef2a1e1c951771838f4edc9df3a72ec7118b338801b11c7bf @@ -430,10 +440,22 @@ idna==3.11 \ # via # -c src/backend/requirements.txt # requests +iniconfig==2.3.0 \ + --hash=sha256:c76315c77db068650d49c5b56314774a7804df16fee4402c1f19d6d15d8c4730 \ + --hash=sha256:f631c04d2c48c52b84d0d0549c99ff3859c98df65b3101406327ecc7d53fbf12 + # via pytest isort==7.0.0 \ --hash=sha256:1bcabac8bc3c36c7fb7b98a76c8abb18e0f841a3ba81decac7691008592499c1 \ --hash=sha256:5513527951aadb3ac4292a41a16cbc50dd1642432f5e8c20057d414bdafb4187 # via -r src/backend/requirements-dev.in +markdown-it-py==4.0.0 \ + --hash=sha256:87327c59b172c5011896038353a81343b6754500a08cd7a4973bb48c6d578147 \ + --hash=sha256:cb0a2b4aa34f932c007117b194e945bd74e0ec24133ceb5bac59009cda1cb9f3 + # via rich +mdurl==0.1.2 \ + --hash=sha256:84008a41e51615a49fc9966191ff91509e3c40b939176e643fd50a5c2196b8f8 \ + --hash=sha256:bb413d29f5eea38f31dd4754dd7377d4465116fb207585f97bf925588687c1ba + # via markdown-it-py nodeenv==1.9.1 \ --hash=sha256:6ec12890a2dab7946721edbfbcd91f3319c6ccc9aec47be7c7e6b7011ee6645f \ --hash=sha256:ba11c9782d29c27c70ffbdda2d7415098754709be8a7056d79a737cd901155c9 @@ -444,6 +466,7 @@ packaging==25.0 \ # via # -c src/backend/requirements.txt # build + # pytest pdfminer-six==20251107 \ --hash=sha256:5fb0c553799c591777f22c0c72b77fc2522d7d10c70654e25f4c5f1fd996e008 \ --hash=sha256:c09df33e4cbe6b26b2a79248a4ffcccafaa5c5d39c9fff0e6e81567f165b5401 @@ -462,9 +485,13 @@ platformdirs==4.5.0 \ # via # -c src/backend/requirements.txt # virtualenv -pre-commit==4.4.0 \ - --hash=sha256:b35ea52957cbf83dcc5d8ee636cbead8624e3a15fbfa61a370e42158ac8a5813 \ - --hash=sha256:f0233ebab440e9f17cabbb558706eb173d19ace965c68cdce2c081042b4fab15 +pluggy==1.6.0 \ + --hash=sha256:7dcc130b76258d33b90f61b658791dede3486c3e6bfb003ee5c9bfb396dd22f3 \ + --hash=sha256:e920276dd6813095e9377c0bc5566d94c932c33b27a3e3945d8389c374dd4746 + # via pytest +pre-commit==4.5.0 \ + --hash=sha256:25e2ce09595174d9c97860a95609f9f852c0614ba602de3561e267547f2335e1 \ + --hash=sha256:dc5a065e932b19fc1d4c653c6939068fe54325af8e741e74e88db4d28a4dd66b # via -r src/backend/requirements-dev.in pycparser==2.23 \ --hash=sha256:78816d4f24add8f10a06d6f05b4d424ad9e96cfebf68a4ddc99c65c0720d00c2 \ @@ -472,12 +499,46 @@ pycparser==2.23 \ # via # -c src/backend/requirements.txt # cffi +pygments==2.19.2 \ + --hash=sha256:636cb2477cec7f8952536970bc533bc43743542f70392ae026374600add5b887 \ + --hash=sha256:86540386c03d588bb81d44bc3928634ff26449851e99741617ecb9037ee5ec0b + # via + # pytest + # rich pyproject-hooks==1.2.0 \ --hash=sha256:1e859bd5c40fae9448642dd871adf459e5e2084186e8d2c2a79a824c970da1f8 \ --hash=sha256:9e5c6bfa8dcc30091c74b0cf803c81fdd29d94f01992a7707bc97babb1141913 # via # build # pip-tools +pytest==9.0.2 \ + --hash=sha256:711ffd45bf766d5264d487b917733b453d917afd2b0ad65223959f59089f875b \ + --hash=sha256:75186651a92bd89611d1d9fc20f0b4345fd827c41ccd5c299a868a05d70edf11 + # via + # pytest-codspeed + # pytest-django +pytest-codspeed==4.2.0 \ + --hash=sha256:04b5d0bc5a1851ba1504d46bf9d7dbb355222a69f2cd440d54295db721b331f7 \ + --hash=sha256:0881a736285f33b9a8894da8fe8e1775aa1a4310226abe5d1f0329228efb680c \ + --hash=sha256:238e17abe8f08d8747fa6c7acff34fefd3c40f17a56a7847ca13dc8d6e8c6009 \ + --hash=sha256:23a0c0fbf8bb4de93a3454fd9e5efcdca164c778aaef0a9da4f233d85cb7f5b8 \ + --hash=sha256:2de87bde9fbc6fd53f0fd21dcf2599c89e0b8948d49f9bad224edce51c47e26b \ + --hash=sha256:309b4227f57fcbb9df21e889ea1ae191d0d1cd8b903b698fdb9ea0461dbf1dfe \ + --hash=sha256:50794dabea6ec90d4288904452051e2febace93e7edf4ca9f2bce8019dd8cd37 \ + --hash=sha256:609828b03972966b75b9b7416fa2570c4a0f6124f67e02d35cd3658e64312a7b \ + --hash=sha256:684fcd9491d810ded653a8d38de4835daa2d001645f4a23942862950664273f8 \ + --hash=sha256:72aab8278452a6d020798b9e4f82780966adb00f80d27a25d1274272c54630d5 \ + --hash=sha256:748411c832147bfc85f805af78a1ab1684f52d08e14aabe22932bbe46c079a5f \ + --hash=sha256:7d4fefbd4ae401e2c60f6be920a0be50eef0c3e4a1f0a1c83962efd45be38b39 \ + --hash=sha256:95aeb2479ca383f6b18e2cc9ebcd3b03ab184980a59a232aea6f370bbf59a1e3 \ + --hash=sha256:a0ebd87f2a99467a1cfd8e83492c4712976e43d353ee0b5f71cbb057f1393aca \ + --hash=sha256:dbbb2d61b85bef8fc7e2193f723f9ac2db388a48259d981bbce96319043e9830 \ + --hash=sha256:e81bbb45c130874ef99aca97929d72682733527a49f84239ba575b5cb843bab0 + # via -r src/backend/requirements-dev.in +pytest-django==4.11.1 \ + --hash=sha256:1b63773f648aa3d8541000c26929c1ea63934be1cfa674c76436966d73fe6a10 \ + --hash=sha256:a949141a1ee103cb0e7a20f1451d355f83f5e4a5d07bdd4dcfdd1fd0ff227991 + # via -r src/backend/requirements-dev.in pyyaml==6.0.3 \ --hash=sha256:00c4bdeba853cc34e7dd471f16b4114f4162dc03e6b7afcc2128711f0eca823c \ --hash=sha256:0150219816b6a1fa26fb4699fb7daa9caf09eb1999f3b70fb6e786805e80375a \ @@ -565,6 +626,10 @@ requests-mock==1.12.1 \ --hash=sha256:b1e37054004cdd5e56c84454cc7df12b25f90f382159087f4b6915aaeef39563 \ --hash=sha256:e9e12e333b525156e82a3c852f22016b9158220d2f47454de9cae8a77d371401 # via -r src/backend/requirements-dev.in +rich==14.2.0 \ + --hash=sha256:73ff50c7c0c1c77c8243079283f4edb376f0f6442433aecb8ce7e6d0b92d1fe4 \ + --hash=sha256:76bc51fe2e57d2b1be1f96c524b890b816e334ab4c1e45888799bfaab0021edd + # via pytest-codspeed setuptools==80.9.0 \ --hash=sha256:062d34222ad13e0cc312a4c02d73f059e86a4acbfbdea8f8f76b28c99f306922 \ --hash=sha256:f36b47402ecde768dbfafc46e8e4207b4360c654f1f3bb84475f0a28628fb19c @@ -578,6 +643,7 @@ sqlparse==0.5.3 \ # via # -c src/backend/requirements.txt # django + # django-silk tomli==2.3.0 \ --hash=sha256:00b5f5d95bbfc7d12f91ad8c593a1659b6387b43f054104cda404be6bda62456 \ --hash=sha256:0a154a9ae14bfcf5d8917a59b51ffd5a3ac1fd149b71b47a3a104ca4edcfa845 \ @@ -658,9 +724,9 @@ typing-extensions==4.15.0 \ # django-stubs # django-stubs-ext # django-test-migrations -urllib3==2.5.0 \ - --hash=sha256:3fc47733c7e419d4bc3f6b3dc2b4f890bb743906a30d56ba4a5bfa4bbff92760 \ - --hash=sha256:e6b01673c0fa6a13e374b50871808eb3bf7046c4b125b216f6bf1cc604cff0dc +urllib3==2.6.0 \ + --hash=sha256:c90f7a39f716c572c4e3e58509581ebd83f9b59cced005b7db7ad2d22b0db99f \ + --hash=sha256:cb9bcef5a4b345d5da5d145dc3e30834f58e8018828cbc724d30b4cb7d4d49f1 # via # -c src/backend/requirements.txt # requests diff --git a/src/backend/requirements.in b/src/backend/requirements.in index 16c3e438cd..0336a282c8 100644 --- a/src/backend/requirements.in +++ b/src/backend/requirements.in @@ -3,7 +3,7 @@ django<6.0 # Django package blessed # CLI for Q Monitor cryptography>=44.0.0 # Core cryptographic functionality django-anymail[amazon_ses,postal] # Email backend for various providers -django-allauth[mfa,socialaccount,saml,openid] # SSO for external providers via OpenID +django-allauth[mfa,socialaccount,saml,openid,headless] # SSO for external providers via OpenID django-cleanup # Automated deletion of old / unused uploaded files django-cors-headers # CORS headers extension for DRF django-dbbackup>=5.0.0 # Backup / restore of database and media files diff --git a/src/backend/requirements.txt b/src/backend/requirements.txt index 9d26df6989..b7fa2f4d9e 100644 --- a/src/backend/requirements.txt +++ b/src/backend/requirements.txt @@ -490,9 +490,9 @@ defusedxml==0.7.1 \ --hash=sha256:1bb3032db185915b62d7c6209c5a8792be6a32ab2fedacc84e01b52c51aa3e69 \ --hash=sha256:a352e7e428770286cc899e2542b6cdaedb2b4953ff269a210103ec58f6198a61 # via python3-openid -django==5.2.8 \ - --hash=sha256:23254866a5bb9a2cfa6004e8b809ec6246eba4b58a7589bc2772f1bcc8456c7f \ - --hash=sha256:37e687f7bd73ddf043e2b6b97cfe02fcbb11f2dbb3adccc6a2b18c6daa054d7f +django==5.2.9 \ + --hash=sha256:16b5ccfc5e8c27e6c0561af551d2ea32852d7352c67d452ae3e76b4f6b2ca495 \ + --hash=sha256:3a4ea88a70370557ab1930b332fd2887a9f48654261cdffda663fef5976bb00a # via # -r src/backend/requirements.in # django-allauth @@ -523,8 +523,9 @@ django==5.2.8 \ # djangorestframework # djangorestframework-simplejwt # drf-spectacular -django-allauth[mfa, openid, saml, socialaccount]==65.12.1 \ - --hash=sha256:662666ff2d5c71766f66b1629ac7345c30796813221184e13e11ed7460940c6a +django-allauth[headless, mfa, openid, saml, socialaccount]==65.13.1 \ + --hash=sha256:2887294beedfd108b4b52ebd182e0ed373deaeb927fc5a22f77bbde3174704a6 \ + --hash=sha256:2af0d07812f8c1a8e3732feaabe6a9db5ecf3fad6b45b6a0f7fd825f656c5a15 # via -r src/backend/requirements.in django-anymail[amazon-ses, postal]==13.1 \ --hash=sha256:63e48402ec8258f17640eb73c8c64141f16d2f8ae7d448d0fb1c66e82b7cbcf6 \ @@ -573,9 +574,9 @@ django-maintenance-mode==0.22.0 \ --hash=sha256:502f04f845d6996e8add321186b3b9236c3702de7cb0ab14952890af6523b9e5 \ --hash=sha256:a9cf2ba79c9945bd67f98755a6cfd281869d39b3745bbb5d1f571d058657aa85 # via -r src/backend/requirements.in -django-markdownify==0.9.5 \ - --hash=sha256:2c4ae44e386c209453caf5e9ea1b74f64535985d338ad2d5ad5e7089cc94be86 \ - --hash=sha256:34c34eba4a797282a5c5bd97b13cec84d6a4c0673ad47ce1c1d000d74dd8d4ab +django-markdownify==0.9.6 \ + --hash=sha256:9863b2bfa6d159ad1423dc93bf0d6eadc6413776de304049aa9fcfa5edd2ce1c \ + --hash=sha256:edcf47b2026d55a8439049d35c8b54e11066a4856c4fad1060e139cb3d2eee52 # via -r src/backend/requirements.in django-money==3.5.4 \ --hash=sha256:25933ed6177f8dc981114db813c7c5d36c7c89bc4017f2b1b2bb0209b5f68876 \ @@ -600,9 +601,9 @@ django-picklefield==3.3 \ django-q-sentry==0.1.6 \ --hash=sha256:9b8b4d7fad253a7d9a47f2c2ab0d9dea83078b7ef45c8849dbb1e4176ef8d050 # via -r src/backend/requirements.in -django-q2==1.8.0 \ - --hash=sha256:78aaaf18dff1ad3e35bcf6556666f2c26494120f0b75961c13206e37d180dfaa \ - --hash=sha256:e86b9625c0ce57a5ae31ca8fd7e798d63b9ef91a227c52f8b47536ba50b2b284 +django-q2==1.9.0 \ + --hash=sha256:4eded27644b0ffb291839c9f9c12fea6c0dec63ebd891fa6881b0b446098a49d \ + --hash=sha256:ef7facca96fae9c11ddf2c5252d3817975c7a9a6d989fa0d65487d8823d57799 # via -r src/backend/requirements.in django-recurrence==1.11.1 \ --hash=sha256:0c65f30872599b5813a9bab6952dada23c55894f28674490a753ada559f14bc5 \ @@ -714,65 +715,57 @@ flexparser==0.4 \ --hash=sha256:266d98905595be2ccc5da964fe0a2c3526fbbffdc45b65b3146d75db992ef6b2 \ --hash=sha256:3738b456192dcb3e15620f324c447721023c0293f6af9955b481e91d00179846 # via pint -fonttools[woff]==4.60.1 \ - --hash=sha256:022beaea4b73a70295b688f817ddc24ed3e3418b5036ffcd5658141184ef0d0c \ - --hash=sha256:026290e4ec76583881763fac284aca67365e0be9f13a7fb137257096114cb3bc \ - --hash=sha256:0b0835ed15dd5b40d726bb61c846a688f5b4ce2208ec68779bc81860adb5851a \ - --hash=sha256:0eae96373e4b7c9e45d099d7a523444e3554360927225c1cdae221a58a45b856 \ - --hash=sha256:122e1a8ada290423c493491d002f622b1992b1ab0b488c68e31c413390dc7eb2 \ - --hash=sha256:1410155d0e764a4615774e5c2c6fc516259fe3eca5882f034eb9bfdbee056259 \ - --hash=sha256:145daa14bf24824b677b9357c5e44fd8895c2a8f53596e1b9ea3496081dc692c \ - --hash=sha256:1525796c3ffe27bb6268ed2a1bb0dcf214d561dfaf04728abf01489eb5339dce \ - --hash=sha256:154cb6ee417e417bf5f7c42fe25858c9140c26f647c7347c06f0cc2d47eff003 \ - --hash=sha256:2299df884c11162617a66b7c316957d74a18e3758c0274762d2cc87df7bc0272 \ - --hash=sha256:2409d5fb7b55fd70f715e6d34e7a6e4f7511b8ad29a49d6df225ee76da76dd77 \ - --hash=sha256:268ecda8ca6cb5c4f044b1fb9b3b376e8cd1b361cef275082429dc4174907038 \ - --hash=sha256:282dafa55f9659e8999110bd8ed422ebe1c8aecd0dc396550b038e6c9a08b8ea \ - --hash=sha256:2ee06fc57512144d8b0445194c2da9f190f61ad51e230f14836286470c99f854 \ - --hash=sha256:3630e86c484263eaac71d117085d509cbcf7b18f677906824e4bace598fb70d2 \ - --hash=sha256:398447f3d8c0c786cbf1209711e79080a40761eb44b27cdafffb48f52bcec258 \ - --hash=sha256:4ba4bd646e86de16160f0fb72e31c3b9b7d0721c3e5b26b9fa2fc931dfdb2652 \ - --hash=sha256:5664fd1a9ea7f244487ac8f10340c4e37664675e8667d6fee420766e0fb3cf08 \ - --hash=sha256:583b7f8e3c49486e4d489ad1deacfb8d5be54a8ef34d6df824f6a171f8511d99 \ - --hash=sha256:596ecaca36367027d525b3b426d8a8208169d09edcf8c7506aceb3a38bfb55c7 \ - --hash=sha256:5c1015318e4fec75dd4943ad5f6a206d9727adf97410d58b7e32ab644a807914 \ - --hash=sha256:66929e2ea2810c6533a5184f938502cfdaea4bc3efb7130d8cc02e1c1b4108d6 \ - --hash=sha256:6ec722ee589e89a89f5b7574f5c45604030aa6ae24cb2c751e2707193b466fed \ - --hash=sha256:6f68576bb4bbf6060c7ab047b1574a1ebe5c50a17de62830079967b211059ebb \ - --hash=sha256:7473a8ed9ed09aeaa191301244a5a9dbe46fe0bf54f9d6cd21d83044c3321217 \ - --hash=sha256:7b0c6d57ab00dae9529f3faf187f2254ea0aa1e04215cf2f1a8ec277c96661bc \ - --hash=sha256:7b4c32e232a71f63a5d00259ca3d88345ce2a43295bb049d21061f338124246f \ - --hash=sha256:8177ec9676ea6e1793c8a084a90b65a9f778771998eb919d05db6d4b1c0b114c \ - --hash=sha256:839565cbf14645952d933853e8ade66a463684ed6ed6c9345d0faf1f0e868877 \ - --hash=sha256:875cb7764708b3132637f6c5fb385b16eeba0f7ac9fa45a69d35e09b47045801 \ - --hash=sha256:8a44788d9d91df72d1a5eac49b31aeb887a5f4aab761b4cffc4196c74907ea85 \ - --hash=sha256:8b4eb332f9501cb1cd3d4d099374a1e1306783ff95489a1026bde9eb02ccc34a \ - --hash=sha256:906306ac7afe2156fcf0042173d6ebbb05416af70f6b370967b47f8f00103bbb \ - --hash=sha256:992775c9fbe2cf794786fa0ffca7f09f564ba3499b8fe9f2f80bd7197db60383 \ - --hash=sha256:996a4d1834524adbb423385d5a629b868ef9d774670856c63c9a0408a3063401 \ - --hash=sha256:9a52f254ce051e196b8fe2af4634c2d2f02c981756c6464dc192f1b6050b4e28 \ - --hash=sha256:9d0ced62b59e0430b3690dbc5373df1c2aa7585e9a8ce38eff87f0fd993c5b01 \ - --hash=sha256:a140761c4ff63d0cb9256ac752f230460ee225ccef4ad8f68affc723c88e2036 \ - --hash=sha256:a184b2ea57b13680ab6d5fbde99ccef152c95c06746cb7718c583abd8f945ccc \ - --hash=sha256:a3db56f153bd4c5c2b619ab02c5db5192e222150ce5a1bc10f16164714bc39ac \ - --hash=sha256:a46b2f450bc79e06ef3b6394f0c68660529ed51692606ad7f953fc2e448bc903 \ - --hash=sha256:a884aef09d45ba1206712c7dbda5829562d3fea7726935d3289d343232ecb0d3 \ - --hash=sha256:b2cf105cee600d2de04ca3cfa1f74f1127f8455b71dbad02b9da6ec266e116d6 \ - --hash=sha256:b33a7884fabd72bdf5f910d0cf46be50dce86a0362a65cfc746a4168c67eb96c \ - --hash=sha256:b42d86938e8dda1cd9a1a87a6d82f1818eaf933348429653559a458d027446da \ - --hash=sha256:b6379e7546ba4ae4b18f8ae2b9bc5960936007a1c0e30b342f662577e8bc3299 \ - --hash=sha256:c7420a2696a44650120cdd269a5d2e56a477e2bfa9d95e86229059beb1c19e15 \ - --hash=sha256:c8651e0d4b3bdeda6602b85fdc2abbefc1b41e573ecb37b6779c4ca50753a199 \ - --hash=sha256:d066ea419f719ed87bc2c99a4a4bfd77c2e5949cb724588b9dd58f3fd90b92bf \ - --hash=sha256:e6c58beb17380f7c2ea181ea11e7db8c0ceb474c9dd45f48e71e2cb577d146a1 \ - --hash=sha256:e852d9dda9f93ad3651ae1e3bb770eac544ec93c3807888798eccddf84596537 \ - --hash=sha256:ec3681a0cb34c255d76dd9d865a55f260164adb9fa02628415cdc2d43ee2c05d \ - --hash=sha256:ee0c0b3b35b34f782afc673d503167157094a16f442ace7c6c5e0ca80b08f50c \ - --hash=sha256:eedacb5c5d22b7097482fa834bda0dafa3d914a4e829ec83cdea2a01f8c813c4 \ - --hash=sha256:ef00af0439ebfee806b25f24c8f92109157ff3fac5731dc7867957812e87b8d9 \ - --hash=sha256:f0e8817c7d1a0c2eedebf57ef9a9896f3ea23324769a9a2061a80fe8852705ed \ - --hash=sha256:f3d5be054c461d6a2268831f04091dc82753176f6ea06dc6047a5e168265a987 \ - --hash=sha256:f4b5c37a5f40e4d733d3bbaaef082149bee5a5ea3156a785ff64d949bd1353fa +fonttools[woff]==4.61.0 \ + --hash=sha256:0011d640afa61053bc6590f9a3394bd222de7cfde19346588beabac374e9d8ac \ + --hash=sha256:02bdf8e04d1a70476564b8640380f04bb4ac74edc1fc71f1bacb840b3e398ee9 \ + --hash=sha256:0bdcf2e29d65c26299cc3d502f4612365e8b90a939f46cd92d037b6cb7bb544a \ + --hash=sha256:13e3e20a5463bfeb77b3557d04b30bd6a96a6bb5c15c7b2e7908903e69d437a0 \ + --hash=sha256:14a290c5c93fcab76b7f451e6a4b7721b712d90b3b5ed6908f1abcf794e90d6d \ + --hash=sha256:14fafda386377b6131d9e448af42d0926bad47e038de0e5ba1d58c25d621f028 \ + --hash=sha256:1cfa2eb9bae650e58f0e8ad53c49d19a844d6034d6b259f30f197238abc1ccee \ + --hash=sha256:276f14c560e6f98d24ef7f5f44438e55ff5a67f78fa85236b218462c9f5d0635 \ + --hash=sha256:2cb5e45a824ce14b90510024d0d39dae51bd4fbb54c42a9334ea8c8cf4d95cbe \ + --hash=sha256:2de14557d113faa5fb519f7f29c3abe4d69c17fe6a5a2595cc8cda7338029219 \ + --hash=sha256:2f0bafc8a3b3749c69cc610e5aa3da832d39c2a37a68f03d18ec9a02ecaac04a \ + --hash=sha256:328a9c227984bebaf69f3ac9062265f8f6acc7ddf2e4e344c63358579af0aa3d \ + --hash=sha256:3b2065d94e5d63aafc2591c8b6ccbdb511001d9619f1bca8ad39b745ebeb5efa \ + --hash=sha256:4238120002e68296d55e091411c09eab94e111c8ce64716d17df53fd0eb3bb3d \ + --hash=sha256:46cb3d9279f758ac0cf671dc3482da877104b65682679f01b246515db03dbb72 \ + --hash=sha256:58b4f1b78dfbfe855bb8a6801b31b8cdcca0e2847ec769ad8e0b0b692832dd3b \ + --hash=sha256:59587bbe455dbdf75354a9dbca1697a35a8903e01fab4248d6b98a17032cee52 \ + --hash=sha256:5a9b78da5d5faa17e63b2404b77feeae105c1b7e75f26020ab7a27b76e02039f \ + --hash=sha256:627216062d90ab0d98215176d8b9562c4dd5b61271d35f130bcd30f6a8aaa33a \ + --hash=sha256:63c7125d31abe3e61d7bb917329b5543c5b3448db95f24081a13aaf064360fc8 \ + --hash=sha256:6781e7a4bb010be1cd69a29927b0305c86b843395f2613bdabe115f7d6ea7f34 \ + --hash=sha256:67d841aa272be5500de7f447c40d1d8452783af33b4c3599899319f6ef9ad3c1 \ + --hash=sha256:68704a8bbe0b61976262b255e90cde593dc0fe3676542d9b4d846bad2a890a76 \ + --hash=sha256:6b493c32d2555e9944ec1b911ea649ff8f01a649ad9cba6c118d6798e932b3f0 \ + --hash=sha256:6e5ca8c62efdec7972dfdfd454415c4db49b89aeaefaaacada432f3b7eea9866 \ + --hash=sha256:70e2a0c0182ee75e493ef33061bfebf140ea57e035481d2f95aa03b66c7a0e05 \ + --hash=sha256:787ef9dfd1ea9fe49573c272412ae5f479d78e671981819538143bec65863865 \ + --hash=sha256:7b446623c9cd5f14a59493818eaa80255eec2468c27d2c01b56e05357c263195 \ + --hash=sha256:7fb5b84f48a6a733ca3d7f41aa9551908ccabe8669ffe79586560abcc00a9cfd \ + --hash=sha256:9064b0f55b947e929ac669af5311ab1f26f750214db6dd9a0c97e091e918f486 \ + --hash=sha256:96dfc9bc1f2302224e48e6ee37e656eddbab810b724b52e9d9c13a57a6abad01 \ + --hash=sha256:9821ed77bb676736b88fa87a737c97b6af06e8109667e625a4f00158540ce044 \ + --hash=sha256:a32a16951cbf113d38f1dd8551b277b6e06e0f6f776fece0f99f746d739e1be3 \ + --hash=sha256:a5c5fff72bf31b0e558ed085e4fd7ed96eb85881404ecc39ed2a779e7cf724eb \ + --hash=sha256:ad751319dc532a79bdf628b8439af167181b4210a0cd28a8935ca615d9fdd727 \ + --hash=sha256:adbb4ecee1a779469a77377bbe490565effe8fce6fb2e6f95f064de58f8bac85 \ + --hash=sha256:b2b734d8391afe3c682320840c8191de9bd24e7eb85768dd4dc06ed1b63dbb1b \ + --hash=sha256:b5ca59b7417d149cf24e4c1933c9f44b2957424fc03536f132346d5242e0ebe5 \ + --hash=sha256:b6ceac262cc62bec01b3bb59abccf41b24ef6580869e306a4e88b7e56bb4bdda \ + --hash=sha256:ba774b8cbd8754f54b8eb58124e8bd45f736b2743325ab1a5229698942b9b433 \ + --hash=sha256:c53b47834ae41e8e4829171cc44fec0fdf125545a15f6da41776b926b9645a9a \ + --hash=sha256:c84b430616ed73ce46e9cafd0bf0800e366a3e02fb7e1ad7c1e214dbe3862b1f \ + --hash=sha256:dc25a4a9c1225653e4431a9413d0381b1c62317b0f543bdcec24e1991f612f33 \ + --hash=sha256:df8cbce85cf482eb01f4551edca978c719f099c623277bda8332e5dbe7dba09d \ + --hash=sha256:e074bc07c31406f45c418e17c1722e83560f181d122c412fa9e815df0ff74810 \ + --hash=sha256:e0d87e81e4d869549585ba0beb3f033718501c1095004f5e6aef598d13ebc216 \ + --hash=sha256:e24a1565c4e57111ec7f4915f8981ecbb61adf66a55f378fdc00e206059fcfef \ + --hash=sha256:e2bfacb5351303cae9f072ccf3fc6ecb437a6f359c0606bae4b1ab6715201d87 \ + --hash=sha256:e6cd0d9051b8ddaf7385f99dd82ec2a058e2b46cf1f1961e68e1ff20fcbb61af \ + --hash=sha256:ec520a1f0c7758d7a858a00f090c1745f6cde6a7c5e76fb70ea4044a15f712e7 # via weasyprint googleapis-common-protos==1.72.0 \ --hash=sha256:4299c5a82d5ae1a9702ada957347726b167f9f8d1fc352477702a1e851ff4038 \ @@ -1482,9 +1475,9 @@ pynacl==1.6.0 \ --hash=sha256:f46386c24a65383a9081d68e9c2de909b1834ec74ff3013271f1bca9c2d233eb \ --hash=sha256:f4b3824920e206b4f52abd7de621ea7a44fd3cb5c8daceb7c3612345dfc54f2e # via paramiko -pypdf==6.3.0 \ - --hash=sha256:2d5f9741e851e378908692d571374b3cbd94582fdd1c740fcf7c029ec35ac0e6 \ - --hash=sha256:d066a2fdf8195e1811ae5a9d5a2f97f5bed0e1e7954297295eadee6357e76c5d +pypdf==6.4.1 \ + --hash=sha256:1782ee0766f0b77defc305f1eb2bafe738a2ef6313f3f3d2ee85b4542ba7e535 \ + --hash=sha256:36eb0b52730fc3077d2b8d4122751e696d46af9ef9e5383db492df1ab0cc4647 # via -r src/backend/requirements.in pyphen==0.17.2 \ --hash=sha256:3a07fb017cb2341e1d9ff31b8634efb1ae4dc4b130468c7c39dd3d32e7c3affd \ @@ -1832,9 +1825,9 @@ s3transfer==0.14.0 \ --hash=sha256:ea3b790c7077558ed1f02a3072fb3cb992bbbd253392f4b6e9e8976941c7d456 \ --hash=sha256:eff12264e7c8b4985074ccce27a3b38a485bb7f7422cc8046fee9be4983e4125 # via boto3 -sentry-sdk==2.45.0 \ - --hash=sha256:86c8ab05dc3e8666aece77a5c747b45b25aa1d5f35f06cde250608f495d50f23 \ - --hash=sha256:e9bbfe69d5f6742f48bad22452beffb525bbc5b797d817c7f1b1f7d210cdd271 +sentry-sdk==2.47.0 \ + --hash=sha256:8218891d5e41b4ea8d61d2aed62ed10c80e39d9f2959d6f939efbf056857e050 \ + --hash=sha256:d72f8c61025b7d1d9e52510d03a6247b280094a327dd900d987717a4fce93412 # via # -r src/backend/requirements.in # django-q-sentry @@ -1901,9 +1894,9 @@ uritemplate==4.2.0 \ --hash=sha256:480c2ed180878955863323eea31b0ede668795de182617fef9c6ca09e6ec9d0e \ --hash=sha256:962201ba1c4edcab02e60f9a0d3821e82dfc5d2d6662a21abd533879bdb8a686 # via drf-spectacular -urllib3==2.5.0 \ - --hash=sha256:3fc47733c7e419d4bc3f6b3dc2b4f890bb743906a30d56ba4a5bfa4bbff92760 \ - --hash=sha256:e6b01673c0fa6a13e374b50871808eb3bf7046c4b125b216f6bf1cc604cff0dc +urllib3==2.6.0 \ + --hash=sha256:c90f7a39f716c572c4e3e58509581ebd83f9b59cced005b7db7ad2d22b0db99f \ + --hash=sha256:cb9bcef5a4b345d5da5d145dc3e30834f58e8018828cbc724d30b4cb7d4d49f1 # via # botocore # django-anymail diff --git a/src/frontend/lib/enums/ApiEndpoints.tsx b/src/frontend/lib/enums/ApiEndpoints.tsx index c3c3ecdd8b..c46d50af71 100644 --- a/src/frontend/lib/enums/ApiEndpoints.tsx +++ b/src/frontend/lib/enums/ApiEndpoints.tsx @@ -111,8 +111,6 @@ export enum ApiEndpoints { // Part API endpoints part_list = 'part/', - part_parameter_list = 'part/parameter/', - part_parameter_template_list = 'part/parameter/template/', part_thumbs_list = 'part/thumbs/', part_pricing = 'part/:id/pricing/', part_requirements = 'part/:id/requirements/', @@ -134,7 +132,6 @@ export enum ApiEndpoints { supplier_part_list = 'company/part/', supplier_part_pricing_list = 'company/price-break/', manufacturer_part_list = 'company/part/manufacturer/', - manufacturer_part_parameter_list = 'company/part/manufacturer/parameter/', // Stock location endpoints stock_location_list = 'stock/location/', @@ -243,5 +240,7 @@ export enum ApiEndpoints { notes_image_upload = 'notes-image-upload/', email_list = 'admin/email/', email_test = 'admin/email/test/', - config_list = 'admin/config/' + config_list = 'admin/config/', + parameter_list = 'parameter/', + parameter_template_list = 'parameter/template/' } diff --git a/src/frontend/lib/enums/ModelInformation.tsx b/src/frontend/lib/enums/ModelInformation.tsx index ba73e5ddf3..6f93a1ebeb 100644 --- a/src/frontend/lib/enums/ModelInformation.tsx +++ b/src/frontend/lib/enums/ModelInformation.tsx @@ -10,6 +10,7 @@ export interface ModelInformationInterface { url_detail?: string; api_endpoint: ApiEndpoints; admin_url?: string; + supports_barcode?: boolean; icon: keyof InvenTreeIconType; } @@ -31,15 +32,21 @@ export const ModelInformationDict: ModelDict = { url_detail: '/part/:pk/', api_endpoint: ApiEndpoints.part_list, admin_url: '/part/part/', + supports_barcode: true, icon: 'part' }, - partparametertemplate: { - label: () => t`Part Parameter Template`, - label_multiple: () => t`Part Parameter Templates`, - url_overview: '/settings/admin/part-parameters', - url_detail: '/partparametertemplate/:pk/', - api_endpoint: ApiEndpoints.part_parameter_template_list, - icon: 'test_templates' + parameter: { + label: () => t`Parameter`, + label_multiple: () => t`Parameters`, + api_endpoint: ApiEndpoints.parameter_list, + icon: 'list_details' + }, + parametertemplate: { + label: () => t`Parameter Template`, + label_multiple: () => t`Parameter Templates`, + api_endpoint: ApiEndpoints.parameter_template_list, + admin_url: '/common/parametertemplate/', + icon: 'list' }, parttesttemplate: { label: () => t`Part Test Template`, @@ -55,6 +62,7 @@ export const ModelInformationDict: ModelDict = { url_detail: '/purchasing/supplier-part/:pk/', api_endpoint: ApiEndpoints.supplier_part_list, admin_url: '/company/supplierpart/', + supports_barcode: true, icon: 'supplier_part' }, manufacturerpart: { @@ -64,6 +72,7 @@ export const ModelInformationDict: ModelDict = { url_detail: '/purchasing/manufacturer-part/:pk/', api_endpoint: ApiEndpoints.manufacturer_part_list, admin_url: '/company/manufacturerpart/', + supports_barcode: true, icon: 'manufacturers' }, partcategory: { @@ -82,6 +91,7 @@ export const ModelInformationDict: ModelDict = { url_detail: '/stock/item/:pk/', api_endpoint: ApiEndpoints.stock_item_list, admin_url: '/stock/stockitem/', + supports_barcode: true, icon: 'stock' }, stocklocation: { @@ -91,6 +101,7 @@ export const ModelInformationDict: ModelDict = { url_detail: '/stock/location/:pk/', api_endpoint: ApiEndpoints.stock_location_list, admin_url: '/stock/stocklocation/', + supports_barcode: true, icon: 'location' }, stocklocationtype: { @@ -112,6 +123,7 @@ export const ModelInformationDict: ModelDict = { url_detail: '/manufacturing/build-order/:pk/', api_endpoint: ApiEndpoints.build_order_list, admin_url: '/build/build/', + supports_barcode: true, icon: 'build_order' }, buildline: { @@ -150,6 +162,7 @@ export const ModelInformationDict: ModelDict = { url_detail: '/purchasing/purchase-order/:pk/', api_endpoint: ApiEndpoints.purchase_order_list, admin_url: '/order/purchaseorder/', + supports_barcode: true, icon: 'purchase_orders' }, purchaseorderlineitem: { @@ -165,6 +178,7 @@ export const ModelInformationDict: ModelDict = { url_detail: '/sales/sales-order/:pk/', api_endpoint: ApiEndpoints.sales_order_list, admin_url: '/order/salesorder/', + supports_barcode: true, icon: 'sales_orders' }, salesordershipment: { @@ -173,6 +187,7 @@ export const ModelInformationDict: ModelDict = { url_overview: '/sales/index/shipments', url_detail: '/sales/shipment/:pk/', api_endpoint: ApiEndpoints.sales_order_shipment_list, + supports_barcode: true, icon: 'shipment' }, returnorder: { @@ -182,6 +197,7 @@ export const ModelInformationDict: ModelDict = { url_detail: '/sales/return-order/:pk/', api_endpoint: ApiEndpoints.return_order_list, admin_url: '/order/returnorder/', + supports_barcode: true, icon: 'return_orders' }, returnorderlineitem: { diff --git a/src/frontend/lib/enums/ModelType.tsx b/src/frontend/lib/enums/ModelType.tsx index 84bf7ca60b..57aa1b7205 100644 --- a/src/frontend/lib/enums/ModelType.tsx +++ b/src/frontend/lib/enums/ModelType.tsx @@ -6,7 +6,6 @@ export enum ModelType { supplierpart = 'supplierpart', manufacturerpart = 'manufacturerpart', partcategory = 'partcategory', - partparametertemplate = 'partparametertemplate', parttesttemplate = 'parttesttemplate', projectcode = 'projectcode', stockitem = 'stockitem', @@ -17,6 +16,8 @@ export enum ModelType { buildline = 'buildline', builditem = 'builditem', company = 'company', + parameter = 'parameter', + parametertemplate = 'parametertemplate', purchaseorder = 'purchaseorder', purchaseorderlineitem = 'purchaseorderlineitem', salesorder = 'salesorder', diff --git a/src/frontend/lib/types/Forms.tsx b/src/frontend/lib/types/Forms.tsx index 364dc38e6f..f37a291921 100644 --- a/src/frontend/lib/types/Forms.tsx +++ b/src/frontend/lib/types/Forms.tsx @@ -48,6 +48,8 @@ export type ApiFormFieldHeader = { * @param model : The model to use for related fields * @param filters : Optional API filters to apply to related fields * @param required : Whether the field is required + * @param allow_null: Whether the field allows null values + * @param allow_blank: Whether the field allows blank values * @param hidden : Whether the field is hidden * @param disabled : Whether the field is disabled * @param error : Optional error message to display @@ -103,6 +105,8 @@ export type ApiFormFieldType = { choices?: ApiFormFieldChoice[]; hidden?: boolean; disabled?: boolean; + allow_null?: boolean; + allow_blank?: boolean; exclude?: boolean; read_only?: boolean; placeholder?: string; diff --git a/src/frontend/package.json b/src/frontend/package.json index 29f04e6fe5..1e6d57d0b3 100644 --- a/src/frontend/package.json +++ b/src/frontend/package.json @@ -91,11 +91,11 @@ "mantine-contextmenu": "^8.2.0", "mantine-datatable": "^8.2.0", "qrcode": "^1.5.4", - "react": "^19.1.1", - "react-dom": "^19.1.1", + "react": "^19.1.2", + "react-dom": "^19.1.2", "react-grid-layout": "1.4.4", "react-hook-form": "^7.62.0", - "react-is": "^19.1.1", + "react-is": "^19.1.2", "react-router-dom": "^6.26.2", "react-select": "^5.9.0", "react-simplemde-editor": "^5.2.0", diff --git a/src/frontend/src/components/barcodes/BarcodeScanDialog.tsx b/src/frontend/src/components/barcodes/BarcodeScanDialog.tsx index 3457d55534..6e2eb50640 100644 --- a/src/frontend/src/components/barcodes/BarcodeScanDialog.tsx +++ b/src/frontend/src/components/barcodes/BarcodeScanDialog.tsx @@ -19,6 +19,11 @@ export type BarcodeScanResult = { error?: string; }; +export type BarcodeScanSuccessCallback = ( + barcode: string, + response: any +) => void; + // Callback function for handling a barcode scan // This function should return true if the barcode was handled successfully export type BarcodeScanCallback = ( @@ -31,13 +36,15 @@ export default function BarcodeScanDialog({ opened, callback, modelType, - onClose + onClose, + onScanSuccess }: Readonly<{ title?: string; opened: boolean; modelType?: ModelType; callback?: BarcodeScanCallback; onClose: () => void; + onScanSuccess?: BarcodeScanSuccessCallback; }>) { const navigate = useNavigate(); @@ -53,6 +60,7 @@ export default function BarcodeScanDialog({ @@ -65,10 +73,12 @@ export function ScanInputHandler({ callback, modelType, onClose, + onScanSuccess, navigate }: Readonly<{ callback?: BarcodeScanCallback; onClose: () => void; + onScanSuccess?: BarcodeScanSuccessCallback; modelType?: ModelType; navigate: NavigateFunction; }>) { @@ -94,7 +104,13 @@ export function ScanInputHandler({ data[model_type]['pk'] ); onClose(); - navigate(url); + + if (onScanSuccess) { + onScanSuccess(data['barcode'], data); + } else { + navigate(url); + } + match = true; break; } diff --git a/src/frontend/src/components/buttons/PrintingActions.tsx b/src/frontend/src/components/buttons/PrintingActions.tsx index dad818e96f..7f028320b8 100644 --- a/src/frontend/src/components/buttons/PrintingActions.tsx +++ b/src/frontend/src/components/buttons/PrintingActions.tsx @@ -52,22 +52,24 @@ export function PrintingActions({ const [labelId, setLabelId] = useState(undefined); const [reportId, setReportId] = useState(undefined); - const labelProgress = useDataOutput({ + useDataOutput({ title: t`Printing Labels`, id: labelId }); - const reportProgress = useDataOutput({ + useDataOutput({ title: t`Printing Reports`, id: reportId }); const [itemIdList, setItemIdList] = useState([]); + const [labelDialogOpen, setLabelDialogOpen] = useState(false); + // Fetch available printing fields via OPTIONS request const printingFields = useQuery({ - enabled: labelPrintingEnabled, - queryKey: ['printingFields', modelType, pluginKey], + enabled: labelDialogOpen && !!modelType && !!labelPrintingEnabled, + queryKey: ['printingFields', modelType, pluginKey, labelDialogOpen], gcTime: 500, queryFn: () => api @@ -126,9 +128,11 @@ export function PrintingActions({ fields: labelFields, timeout: 5000, onOpen: () => { + setLabelDialogOpen(true); setItemIdList(items); }, onClose: () => { + setLabelDialogOpen(false); setPluginKey(''); }, submitText: t`Print`, diff --git a/src/frontend/src/components/buttons/ScanButton.tsx b/src/frontend/src/components/buttons/ScanButton.tsx index 46676b6033..286f3ef4ac 100644 --- a/src/frontend/src/components/buttons/ScanButton.tsx +++ b/src/frontend/src/components/buttons/ScanButton.tsx @@ -1,27 +1,45 @@ +import type { ModelType } from '@lib/index'; import { t } from '@lingui/core/macro'; import { ActionIcon, Tooltip } from '@mantine/core'; import { useDisclosure } from '@mantine/hooks'; import { IconQrcode } from '@tabler/icons-react'; -import BarcodeScanDialog from '../barcodes/BarcodeScanDialog'; +import BarcodeScanDialog, { + type BarcodeScanCallback, + type BarcodeScanSuccessCallback +} from '../barcodes/BarcodeScanDialog'; /** * A button which opens the QR code scanner modal */ -export function ScanButton() { +export function ScanButton({ + modelType, + callback, + onScanSuccess +}: { + modelType?: ModelType; + callback?: BarcodeScanCallback; + onScanSuccess?: BarcodeScanSuccessCallback; +}) { const [opened, { open, close }] = useDisclosure(false); return ( <> - + ); } diff --git a/src/frontend/src/components/buttons/SegmentedIconControl.tsx b/src/frontend/src/components/buttons/SegmentedIconControl.tsx index 9cdbfc9132..0271a2dcbe 100644 --- a/src/frontend/src/components/buttons/SegmentedIconControl.tsx +++ b/src/frontend/src/components/buttons/SegmentedIconControl.tsx @@ -33,7 +33,7 @@ export default function SegmentedIconControl({ data={data.map((item) => ({ value: item.value, label: ( - + { let value: any = data[key]; - const field_type = fields[key]?.field_type; - const exclude = fields[key]?.exclude; + const field: ApiFormFieldType = fields[key] ?? {}; + const field_type = field?.field_type; + const exclude = field?.exclude; if (field_type == 'file upload' && !!value) { hasFiles = true; } - // Ensure any boolean values are actually boolean - if (field_type === 'boolean') { - value = isTrue(value) || false; + // Special consideration for various field types + switch (field_type) { + case 'boolean': + // Ensure boolean values are actually boolean + value = isTrue(value) || false; + break; + case 'string': + // Replace null string values with an empty string + if (value === null && field?.allow_null == false) { + value = ''; + jsonData[key] = value; + } + break; + default: + break; } // Stringify any JSON objects @@ -393,7 +410,9 @@ export function ApiForm({ case 'file upload': break; default: - value = JSON.stringify(value); + if (value !== null && value !== undefined) { + value = JSON.stringify(value); + } break; } } diff --git a/src/frontend/src/components/forms/fields/RelatedModelField.tsx b/src/frontend/src/components/forms/fields/RelatedModelField.tsx index d66fe76aa9..85398bac35 100644 --- a/src/frontend/src/components/forms/fields/RelatedModelField.tsx +++ b/src/frontend/src/components/forms/fields/RelatedModelField.tsx @@ -1,5 +1,6 @@ import { t } from '@lingui/core/macro'; import { + Group, Input, darken, useMantineColorScheme, @@ -15,9 +16,16 @@ import { } from 'react-hook-form'; import Select from 'react-select'; +import { ModelInformationDict } from '@lib/enums/ModelInformation'; import type { ApiFormFieldType } from '@lib/types/Forms'; import { useApi } from '../../../contexts/ApiContext'; +import { + useGlobalSettingsState, + useUserSettingsState +} from '../../../states/SettingsStates'; import { vars } from '../../../theme'; +import { ScanButton } from '../../buttons/ScanButton'; +import Expand from '../../items/Expand'; import { RenderInstance } from '../../render/Instance'; /** @@ -60,6 +68,101 @@ export function RelatedModelField({ const [data, setData] = useState([]); const dataRef = useRef([]); + const globalSettings = useGlobalSettingsState(); + const userSettings = useUserSettingsState(); + + // Search input query + const [value, setValue] = useState(''); + const [searchText] = useDebouncedValue(value, 250); + + // Fetch a single field by primary key, using the provided API filters + const fetchSingleField = useCallback( + (pk: number) => { + if (!definition?.api_url) { + return; + } + + const params = definition?.filters ?? {}; + const url = `${definition.api_url}${pk}/`; + + api + .get(url, { + params: params + }) + .then((response) => { + const pk_field = definition.pk_field ?? 'pk'; + if (response.data?.[pk_field]) { + const value = { + value: response.data[pk_field], + data: response.data + }; + + // Run custom callback for this field (if provided) + if (definition.onValueChange) { + definition.onValueChange(response.data[pk_field], response.data); + } + + setInitialData(value); + dataRef.current = [value]; + setPk(response.data[pk_field]); + } + }); + }, + [ + definition.api_url, + definition.filters, + definition.onValueChange, + definition.pk_field, + setValue, + setPk + ] + ); + + // Memoize the model type information for this field + const modelInfo = useMemo(() => { + if (!definition.model) { + return null; + } + return ModelInformationDict[definition.model]; + }, [definition.model]); + + // Determine whether a barcode field should be added + const addBarcodeField: boolean = useMemo(() => { + if (!modelInfo || !modelInfo.supports_barcode) { + return false; + } + + if (!globalSettings.isSet('BARCODE_ENABLE')) { + return false; + } + + if (!userSettings.isSet('BARCODE_IN_FORM_FIELDS')) { + return false; + } + + return true; + }, [globalSettings, userSettings, modelInfo]); + + // Callback function to handle barcode scan results + const onBarcodeScan = useCallback( + (barcode: string, response: any) => { + // Fetch model information from the response + const modelData = response?.[definition.model ?? ''] ?? null; + + if (modelData) { + const pk_field = definition.pk_field ?? 'pk'; + const pk = modelData[pk_field]; + + if (pk) { + // Perform a full re-fetch of the field data + // This is necessary as the barcode scan does not provide full data necessarily + fetchSingleField(pk); + } + } + }, + [definition.model, definition.pk_field, fetchSingleField] + ); + const [isOpen, setIsOpen] = useState(false); const [autoFilled, setAutoFilled] = useState(false); @@ -144,37 +247,7 @@ export function RelatedModelField({ const id = pk || field.value; if (id !== null && id !== undefined && id !== '') { - const url = `${definition.api_url}${id}/`; - - if (!url) { - setPk(null); - return; - } - - const params = definition?.filters ?? {}; - - api - .get(url, { - params: params - }) - .then((response) => { - const pk_field = definition.pk_field ?? 'pk'; - if (response.data?.[pk_field]) { - const value = { - value: response.data[pk_field], - data: response.data - }; - - // Run custom callback for this field (if provided) - if (definition.onValueChange) { - definition.onValueChange(response.data[pk_field], response.data); - } - - setInitialData(value); - dataRef.current = [value]; - setPk(response.data[pk_field]); - } - }); + fetchSingleField(id); } else { setPk(null); } @@ -185,10 +258,6 @@ export function RelatedModelField({ field.value ]); - // Search input query - const [value, setValue] = useState(''); - const [searchText] = useDebouncedValue(value, 250); - const [filters, setFilters] = useState({}); const resetSearch = useCallback(() => { @@ -377,58 +446,68 @@ export function RelatedModelField({ error={definition.error ?? error?.message} styles={{ description: { paddingBottom: '5px' } }} > - { + setValue(value); + }} + onChange={onChange} + onMenuScrollToBottom={() => setOffset(offset + limit)} + onMenuOpen={() => { + setIsOpen(true); + resetSearch(); + selectQuery.refetch(); + }} + onMenuClose={() => { + setIsOpen(false); + }} + isLoading={ + selectQuery.isFetching || + selectQuery.isLoading || + selectQuery.isRefetching } - }; - }} - /> + isClearable={!definition.required} + isDisabled={definition.disabled} + isSearchable={true} + placeholder={definition.placeholder || `${t`Search`}...`} + loadingMessage={() => `${t`Loading`}...`} + menuPortalTarget={document.body} + noOptionsMessage={() => t`No results found`} + menuPosition='fixed' + styles={{ + menuPortal: (base: any) => ({ ...base, zIndex: 9999 }), + clearIndicator: (base: any) => ({ + ...base, + color: 'red', + ':hover': { color: 'red' } + }) + }} + formatOptionLabel={(option: any) => formatOption(option)} + theme={(theme) => { + return { + ...theme, + colors: { + ...theme.colors, + ...colors + } + }; + }} + /> + + {addBarcodeField && ( + + )} + ); } diff --git a/src/frontend/src/components/nav/Alerts.tsx b/src/frontend/src/components/nav/Alerts.tsx index 7e689ca00b..b69f58e19c 100644 --- a/src/frontend/src/components/nav/Alerts.tsx +++ b/src/frontend/src/components/nav/Alerts.tsx @@ -1,5 +1,5 @@ import { ActionIcon, Alert, Group, Menu, Stack, Tooltip } from '@mantine/core'; -import { IconExclamationCircle } from '@tabler/icons-react'; +import { IconCircleCheck, IconExclamationCircle } from '@tabler/icons-react'; import { useMemo, useState } from 'react'; import type { SettingsStateProps } from '@lib/types/Settings'; @@ -34,7 +34,7 @@ export function Alerts() { const [dismissed, setDismissed] = useState([]); - const alerts: AlertInfo[] = useMemo( + const alerts: ExtendedAlertInfo[] = useMemo( () => getAlerts(server, globalSettings).filter( (alert) => !dismissed.includes(alert.key) @@ -79,11 +79,12 @@ export function Alerts() { export function ServerAlert({ alert, closeAlert -}: { alert: AlertInfo; closeAlert?: (key: string) => void }) { +}: { alert: ExtendedAlertInfo; closeAlert?: (key: string) => void }) { return ( : } title={ {alert.code && `${alert.code}: `} @@ -93,14 +94,15 @@ export function ServerAlert({ onClose={closeAlert ? () => closeAlert(alert.key) : undefined} > - {alert.message} - {alert.code && errorCodeLink(alert.code)} + {!alert.condition && t`No issues detected`} + {alert.condition && alert.message} + {alert.condition && alert.code && errorCodeLink(alert.code)} ); } -type ExtendedAlertInfo = AlertInfo & { +export type ExtendedAlertInfo = AlertInfo & { condition: boolean; }; @@ -112,7 +114,7 @@ export function getAlerts( const n_migrations = Number.parseInt(globalSettings.getSetting('_PENDING_MIGRATIONS')) ?? 0; - const allalerts: ExtendedAlertInfo[] = [ + const allAlerts: ExtendedAlertInfo[] = [ { key: 'debug', title: t`Debug Mode`, @@ -150,7 +152,7 @@ export function getAlerts( } ]; - return allalerts.filter((alert) => inactive || alert.condition); + return allAlerts.filter((alert) => inactive || alert.condition); } export function errorCodeLink(code: string) { diff --git a/src/frontend/src/components/panels/Panel.tsx b/src/frontend/src/components/panels/Panel.tsx index e1940bbb93..d8b82eaf13 100644 --- a/src/frontend/src/components/panels/Panel.tsx +++ b/src/frontend/src/components/panels/Panel.tsx @@ -8,7 +8,7 @@ export type PanelType = { label: string; controls?: ReactNode; icon?: ReactNode; - content: ReactNode; + content?: ReactNode; hidden?: boolean; disabled?: boolean; showHeadline?: boolean; diff --git a/src/frontend/src/components/panels/ParametersPanel.tsx b/src/frontend/src/components/panels/ParametersPanel.tsx new file mode 100644 index 0000000000..03450e2aa8 --- /dev/null +++ b/src/frontend/src/components/panels/ParametersPanel.tsx @@ -0,0 +1,32 @@ +import type { ModelType } from '@lib/enums/ModelType'; +import { t } from '@lingui/core/macro'; +import { Skeleton } from '@mantine/core'; +import { IconListDetails } from '@tabler/icons-react'; +import { ParameterTable } from '../../tables/general/ParameterTable'; +import type { PanelType } from './Panel'; + +export default function ParametersPanel({ + model_type, + model_id, + allowEdit = true +}: { + model_type: ModelType; + model_id: number | undefined; + allowEdit?: boolean; +}): PanelType { + return { + name: 'parameters', + label: t`Parameters`, + icon: , + content: + model_type && model_id ? ( + + ) : ( + + ) + }; +} diff --git a/src/frontend/src/components/panels/SegmentedControlPanel.tsx b/src/frontend/src/components/panels/SegmentedControlPanel.tsx new file mode 100644 index 0000000000..e403948070 --- /dev/null +++ b/src/frontend/src/components/panels/SegmentedControlPanel.tsx @@ -0,0 +1,53 @@ +import SegmentedIconControl from '../buttons/SegmentedIconControl'; +import type { PanelType } from './Panel'; + +export type SegmentedControlPanelSelection = { + value: string; + label: string; + icon: React.ReactNode; + content: React.ReactNode; +}; + +interface SegmentedPanelType extends PanelType { + options: SegmentedControlPanelSelection[]; + selection: string; + onChange: (value: string) => void; +} + +/** + * Display a panel which can be used to display multiple options, + * based on a built-in segmented control. + */ +export default function SegmentedControlPanel( + props: SegmentedPanelType +): PanelType { + // Extract the content based on the selection + let content = null; + + for (const option of props.options) { + if (option.value === props.selection) { + content = option.content; + break; + } + } + + if (content === null && props.options.length > 0) { + content = props.options[0].content; + } + + return { + ...props, + content: content, + controls: ( + ({ + value: option.value, + label: option.label, + icon: option.icon + }))} + /> + ) + }; +} diff --git a/src/frontend/src/components/render/Generic.tsx b/src/frontend/src/components/render/Generic.tsx index b828c8b00a..9c08837567 100644 --- a/src/frontend/src/components/render/Generic.tsx +++ b/src/frontend/src/components/render/Generic.tsx @@ -2,6 +2,30 @@ import type { ReactNode } from 'react'; import { type InstanceRenderInterface, RenderInlineModel } from './Instance'; +export function RenderParameterTemplate({ + instance +}: Readonly): ReactNode { + return ( + + ); +} + +export function RenderParameter({ + instance +}: Readonly): ReactNode { + return ( + + ); +} + export function RenderProjectCode({ instance }: Readonly): ReactNode { diff --git a/src/frontend/src/components/render/Instance.tsx b/src/frontend/src/components/render/Instance.tsx index 09a7c33e2d..a3174e1c58 100644 --- a/src/frontend/src/components/render/Instance.tsx +++ b/src/frontend/src/components/render/Instance.tsx @@ -36,6 +36,8 @@ import { RenderContentType, RenderError, RenderImportSession, + RenderParameter, + RenderParameterTemplate, RenderProjectCode, RenderSelectionList } from './Generic'; @@ -46,12 +48,7 @@ import { RenderSalesOrder, RenderSalesOrderShipment } from './Order'; -import { - RenderPart, - RenderPartCategory, - RenderPartParameterTemplate, - RenderPartTestTemplate -} from './Part'; +import { RenderPart, RenderPartCategory, RenderPartTestTemplate } from './Part'; import { RenderPlugin } from './Plugin'; import { RenderLabelTemplate, RenderReportTemplate } from './Report'; import { @@ -71,11 +68,12 @@ export const RendererLookup: ModelRendererDict = { [ModelType.builditem]: RenderBuildItem, [ModelType.company]: RenderCompany, [ModelType.contact]: RenderContact, + [ModelType.parameter]: RenderParameter, + [ModelType.parametertemplate]: RenderParameterTemplate, [ModelType.manufacturerpart]: RenderManufacturerPart, [ModelType.owner]: RenderOwner, [ModelType.part]: RenderPart, [ModelType.partcategory]: RenderPartCategory, - [ModelType.partparametertemplate]: RenderPartParameterTemplate, [ModelType.parttesttemplate]: RenderPartTestTemplate, [ModelType.projectcode]: RenderProjectCode, [ModelType.purchaseorder]: RenderPurchaseOrder, diff --git a/src/frontend/src/components/render/Part.tsx b/src/frontend/src/components/render/Part.tsx index fc11a73c86..14be70f6ce 100644 --- a/src/frontend/src/components/render/Part.tsx +++ b/src/frontend/src/components/render/Part.tsx @@ -141,23 +141,6 @@ export function RenderPartCategory( ); } -/** - * Inline rendering of a PartParameterTemplate instance - */ -export function RenderPartParameterTemplate({ - instance -}: Readonly<{ - instance: any; -}>): ReactNode { - return ( - - ); -} - export function RenderPartTestTemplate({ instance }: Readonly<{ diff --git a/src/frontend/src/components/wizards/ImportPartWizard.tsx b/src/frontend/src/components/wizards/ImportPartWizard.tsx index 6759148031..68c3fa6aae 100644 --- a/src/frontend/src/components/wizards/ImportPartWizard.tsx +++ b/src/frontend/src/components/wizards/ImportPartWizard.tsx @@ -419,8 +419,8 @@ const ParametersStep = ({ hideLabels fieldDefinition={{ field_type: 'related field', - model: ModelType.partparametertemplate, - api_url: apiUrl(ApiEndpoints.part_parameter_template_list), + model: ModelType.parametertemplate, + api_url: apiUrl(ApiEndpoints.parameter_template_list), disabled: p.on_category, value: p.parameter_template, onValueChange: (v) => { @@ -677,13 +677,14 @@ export default function ImportPartWizard({ {} as Record ); const createParameters = useParameters.map((p) => ({ - part: importResult!.part_id, + model_type: 'part', + model_id: importResult!.part_id, template: p.parameter_template, data: p.value })); try { await api.post( - apiUrl(ApiEndpoints.part_parameter_list), + apiUrl(ApiEndpoints.parameter_list), createParameters ); showNotification({ diff --git a/src/frontend/src/defaults/actions.tsx b/src/frontend/src/defaults/actions.tsx index c8ac22fd81..cf42a8960f 100644 --- a/src/frontend/src/defaults/actions.tsx +++ b/src/frontend/src/defaults/actions.tsx @@ -3,6 +3,7 @@ import type { SpotlightActionData } from '@mantine/spotlight'; import { IconBarcode, IconLink, + IconPlug, IconPointer, IconSettings, IconUserBolt, @@ -152,10 +153,19 @@ export function getActions(navigate: NavigateFunction) { id: 'admin-center', label: t`Admin Center`, description: t`Go to the Admin Center`, - onClick: () => {}, /// navigate(menuItems['settings-admin'].link),} + onClick: () => navigate('/settings/admin'), leftSection: }); + user?.isStaff() && + _actions.push({ + id: 'plugin-settings', + label: t`Plugins`, + description: t`Manage InvenTree plugins`, + onClick: () => navigate('/settings/admin/plugin'), + leftSection: + }); + return _actions; }, [navigate, setNavigationOpen, globalSettings, user]); diff --git a/src/frontend/src/forms/CommonForms.tsx b/src/frontend/src/forms/CommonForms.tsx index e8992746f3..04d1da4ed9 100644 --- a/src/frontend/src/forms/CommonForms.tsx +++ b/src/frontend/src/forms/CommonForms.tsx @@ -1,12 +1,16 @@ import { IconUsers } from '@tabler/icons-react'; -import { useMemo, useState } from 'react'; +import { useEffect, useMemo, useState } from 'react'; +import { ApiEndpoints } from '@lib/enums/ApiEndpoints'; +import type { ModelType } from '@lib/enums/ModelType'; +import { apiUrl } from '@lib/functions/Api'; import type { ApiFormFieldSet } from '@lib/types/Forms'; import { t } from '@lingui/core/macro'; import type { StatusCodeInterface, StatusCodeListInterface } from '../components/render/StatusRenderer'; +import { useApi } from '../contexts/ApiContext'; import { useGlobalStatusState } from '../states/GlobalStatusState'; export function projectCodeFields(): ApiFormFieldSet { @@ -91,3 +95,117 @@ export function extraLineItemFields(): ApiFormFieldSet { link: {} }; } + +export function useParameterFields({ + modelType, + modelId +}: { + modelType: ModelType; + modelId: number; +}): ApiFormFieldSet { + const api = useApi(); + + // Valid field choices + const [choices, setChoices] = useState([]); + + // Field type for "data" input + const [fieldType, setFieldType] = useState<'string' | 'boolean' | 'choice'>( + 'string' + ); + + const [data, setData] = useState(''); + + // Reset the field type and choices when the model changes + useEffect(() => { + setFieldType('string'); + setChoices([]); + setData(''); + }, [modelType, modelId]); + + return useMemo(() => { + return { + model_type: { + hidden: true, + value: modelType + }, + model_id: { + hidden: true, + value: modelId + }, + template: { + filters: { + for_model: modelType, + enabled: true + }, + onValueChange: (value: any, record: any) => { + // Adjust the type of the "data" field based on the selected template + if (record?.checkbox) { + // This is a "checkbox" field + setChoices([]); + setFieldType('boolean'); + } else if (record?.choices) { + const _choices: string[] = record.choices.split(','); + + if (_choices.length > 0) { + setChoices( + _choices.map((choice) => { + return { + display_name: choice.trim(), + value: choice.trim() + }; + }) + ); + setFieldType('choice'); + } else { + setChoices([]); + setFieldType('string'); + } + } else if (record?.selectionlist) { + api + .get( + apiUrl(ApiEndpoints.selectionlist_detail, record.selectionlist) + ) + .then((res) => { + setChoices( + res.data.choices.map((item: any) => { + return { + value: item.value, + display_name: item.label + }; + }) + ); + setFieldType('choice'); + }); + } else { + setChoices([]); + setFieldType('string'); + } + } + }, + data: { + value: data, + onValueChange: (value: any) => { + setData(value); + }, + type: fieldType, + field_type: fieldType, + choices: fieldType === 'choice' ? choices : undefined, + default: fieldType === 'boolean' ? false : undefined, + adjustValue: (value: any) => { + // Coerce boolean value into a string (required by backend) + + let v: string = value.toString().trim(); + + if (fieldType === 'boolean') { + if (v.toLowerCase() !== 'true') { + v = 'false'; + } + } + + return v; + } + }, + note: {} + }; + }, [data, modelType, fieldType, choices, modelId]); +} diff --git a/src/frontend/src/forms/CompanyForms.tsx b/src/frontend/src/forms/CompanyForms.tsx index 3d442863e7..8336aa4fc8 100644 --- a/src/frontend/src/forms/CompanyForms.tsx +++ b/src/frontend/src/forms/CompanyForms.tsx @@ -97,21 +97,6 @@ export function useManufacturerPartFields() { }, []); } -export function useManufacturerPartParameterFields() { - return useMemo(() => { - const fields: ApiFormFieldSet = { - manufacturer_part: { - disabled: true - }, - name: {}, - value: {}, - units: {} - }; - - return fields; - }, []); -} - /** * Field set for editing a company instance */ diff --git a/src/frontend/src/forms/PartForms.tsx b/src/frontend/src/forms/PartForms.tsx index 4125d00788..bdb3e25b74 100644 --- a/src/frontend/src/forms/PartForms.tsx +++ b/src/frontend/src/forms/PartForms.tsx @@ -1,11 +1,8 @@ +import { ApiEndpoints, ModelType, apiUrl } from '@lib/index'; +import type { ApiFormFieldSet } from '@lib/types/Forms'; import { t } from '@lingui/core/macro'; import { IconBuildingStore, IconCopy, IconPackages } from '@tabler/icons-react'; import { useMemo, useState } from 'react'; - -import { ApiEndpoints } from '@lib/enums/ApiEndpoints'; -import { apiUrl } from '@lib/functions/Api'; -import type { ApiFormFieldSet } from '@lib/types/Forms'; -import { useApi } from '../contexts/ApiContext'; import { useGlobalSettingsState } from '../states/SettingsStates'; /** @@ -20,8 +17,12 @@ export function usePartFields({ }): ApiFormFieldSet { const settings = useGlobalSettingsState(); - const [virtual, setVirtual] = useState(false); - const [purchaseable, setPurchaseable] = useState(false); + const globalSettings = useGlobalSettingsState(); + + const [virtual, setVirtual] = useState(undefined); + const [purchaseable, setPurchaseable] = useState( + undefined + ); return useMemo(() => { const fields: ApiFormFieldSet = { @@ -53,6 +54,13 @@ export function usePartFields({ structural: false } }, + default_supplier: { + model: ModelType.company, + api_url: apiUrl(ApiEndpoints.company_list), + filters: { + is_supplier: true + } + }, default_expiry: {}, minimum_stock: {}, responsible: { @@ -60,19 +68,33 @@ export function usePartFields({ is_active: true } }, - component: {}, - assembly: {}, - is_template: {}, - testable: {}, - trackable: {}, + component: { + default: globalSettings.isSet('PART_COMPONENT') + }, + assembly: { + default: globalSettings.isSet('PART_ASSEMBLY') + }, + is_template: { + default: globalSettings.isSet('PART_TEMPLATE') + }, + testable: { + default: false + }, + trackable: { + default: globalSettings.isSet('PART_TRACKABLE') + }, purchaseable: { value: purchaseable, + default: globalSettings.isSet('PART_PURCHASEABLE'), onValueChange: (value: boolean) => { setPurchaseable(value); } }, - salable: {}, + salable: { + default: globalSettings.isSet('PART_SALABLE') + }, virtual: { + default: globalSettings.isSet('PART_VIRTUAL'), value: virtual, onValueChange: (value: boolean) => { setVirtual(value); @@ -93,7 +115,7 @@ export function usePartFields({ if (create) { fields.copy_category_parameters = {}; - if (!virtual) { + if (virtual != false) { fields.initial_stock = { icon: , children: { @@ -176,7 +198,14 @@ export function usePartFields({ } return fields; - }, [virtual, purchaseable, create, duplicatePartInstance, settings]); + }, [ + virtual, + purchaseable, + create, + globalSettings, + duplicatePartInstance, + settings + ]); } /** @@ -224,97 +253,6 @@ export function partCategoryFields({ return fields; } -export function usePartParameterFields({ - editTemplate -}: { - editTemplate?: boolean; -}): ApiFormFieldSet { - const api = useApi(); - - // Valid field choices - const [choices, setChoices] = useState([]); - - // Field type for "data" input - const [fieldType, setFieldType] = useState<'string' | 'boolean' | 'choice'>( - 'string' - ); - - return useMemo(() => { - return { - part: { - disabled: true - }, - template: { - disabled: editTemplate == false, - onValueChange: (value: any, record: any) => { - // Adjust the type of the "data" field based on the selected template - if (record?.checkbox) { - // This is a "checkbox" field - setChoices([]); - setFieldType('boolean'); - } else if (record?.choices) { - const _choices: string[] = record.choices.split(','); - - if (_choices.length > 0) { - setChoices( - _choices.map((choice) => { - return { - display_name: choice.trim(), - value: choice.trim() - }; - }) - ); - setFieldType('choice'); - } else { - setChoices([]); - setFieldType('string'); - } - } else if (record?.selectionlist) { - api - .get( - apiUrl(ApiEndpoints.selectionlist_detail, record.selectionlist) - ) - .then((res) => { - setChoices( - res.data.choices.map((item: any) => { - return { - value: item.value, - display_name: item.label - }; - }) - ); - setFieldType('choice'); - }); - } else { - setChoices([]); - setFieldType('string'); - } - } - }, - data: { - type: fieldType, - field_type: fieldType, - choices: fieldType === 'choice' ? choices : undefined, - default: fieldType === 'boolean' ? false : undefined, - adjustValue: (value: any) => { - // Coerce boolean value into a string (required by backend) - - let v: string = value.toString().trim(); - - if (fieldType === 'boolean') { - if (v.toLowerCase() !== 'true') { - v = 'false'; - } - } - - return v; - } - }, - note: {} - }; - }, [editTemplate, fieldType, choices]); -} - export function partStocktakeFields(): ApiFormFieldSet { return { part: { diff --git a/src/frontend/src/forms/SalesOrderForms.tsx b/src/frontend/src/forms/SalesOrderForms.tsx index 36a0963e7f..7550534dc0 100644 --- a/src/frontend/src/forms/SalesOrderForms.tsx +++ b/src/frontend/src/forms/SalesOrderForms.tsx @@ -1,8 +1,10 @@ import { t } from '@lingui/core/macro'; -import { Table } from '@mantine/core'; +import { Alert, Table, Text } from '@mantine/core'; import { IconAddressBook, IconCalendar, + IconCircleCheck, + IconCircleX, IconCoins, IconUser, IconUsers @@ -23,8 +25,9 @@ import type { ApiFormFieldType } from '@lib/types/Forms'; import type { TableFieldRowProps } from '../components/forms/fields/TableField'; -import { useCreateApiFormModal } from '../hooks/UseForm'; +import { useCreateApiFormModal, useEditApiFormModal } from '../hooks/UseForm'; import { useGlobalSettingsState } from '../states/SettingsStates'; +import { useUserState } from '../states/UserState'; import { RenderPartColumn } from '../tables/ColumnRenderers'; export function useSalesOrderFields({ @@ -190,6 +193,64 @@ export function useSalesOrderLineItemFields({ }, [salePrice, partCurrency, orderId, create]); } +export function useCheckShipmentForm({ + shipmentId, + onSuccess +}: { + shipmentId: number; + onSuccess: (response: any) => void; +}) { + const user = useUserState(); + + return useEditApiFormModal({ + url: ApiEndpoints.sales_order_shipment_list, + pk: shipmentId, + title: t`Check Shipment`, + preFormContent: ( + } title={t`Check Shipment`}> + {t`Marking the shipment as checked indicates that you have verified that all items included in this shipment are correct`} + + ), + fetchInitialData: false, + fields: { + checked_by: { + hidden: true, + value: user.getUser()?.pk + } + }, + successMessage: t`Shipment marked as checked`, + onFormSuccess: onSuccess + }); +} + +export function useUncheckShipmentForm({ + shipmentId, + onSuccess +}: { + shipmentId: number; + onSuccess: (response: any) => void; +}) { + return useEditApiFormModal({ + url: ApiEndpoints.sales_order_shipment_list, + pk: shipmentId, + title: t`Uncheck Shipment`, + preFormContent: ( + } title={t`Uncheck Shipment`}> + {t`Marking the shipment as unchecked indicates that the shipment requires further verification`} + + ), + fetchInitialData: false, + fields: { + checked_by: { + hidden: true, + value: null + } + }, + successMessage: t`Shipment marked as unchecked`, + onFormSuccess: onSuccess + }); +} + function SalesOrderAllocateLineRow({ props, record, diff --git a/src/frontend/src/forms/StockForms.tsx b/src/frontend/src/forms/StockForms.tsx index 508d7415c3..70476d591e 100644 --- a/src/frontend/src/forms/StockForms.tsx +++ b/src/frontend/src/forms/StockForms.tsx @@ -862,10 +862,17 @@ function stockRemoveFields(items: any[]): ApiFormFieldSet { const records = Object.fromEntries(items.map((item) => [item.pk, item])); + const initialValue = mapAdjustmentItems(items).map((elem) => { + return { + ...elem, + quantity: 0 + }; + }); + const fields: ApiFormFieldSet = { items: { field_type: 'table', - value: mapAdjustmentItems(items), + value: initialValue, modelRenderer: (row: TableFieldRowProps) => { const record = records[row.item.pk]; @@ -902,10 +909,17 @@ function stockAddFields(items: any[]): ApiFormFieldSet { const records = Object.fromEntries(items.map((item) => [item.pk, item])); + const initialValue = mapAdjustmentItems(items).map((elem) => { + return { + ...elem, + quantity: 0 + }; + }); + const fields: ApiFormFieldSet = { items: { field_type: 'table', - value: mapAdjustmentItems(items), + value: initialValue, modelRenderer: (row: TableFieldRowProps) => { const record = records[row.item.pk]; @@ -941,10 +955,12 @@ function stockCountFields(items: any[]): ApiFormFieldSet { const records = Object.fromEntries(items.map((item) => [item.pk, item])); + const initialValue = mapAdjustmentItems(items); + const fields: ApiFormFieldSet = { items: { field_type: 'table', - value: mapAdjustmentItems(items), + value: initialValue, modelRenderer: (row: TableFieldRowProps) => { return ( (undefined); - const progress = useDataOutput({ + useDataOutput({ title: t`Exporting Data`, id: exportId }); @@ -59,10 +59,12 @@ export default function useDataExport({ return queryParams; }, [pluginKey, filters, searchTerm]); + const [exportDialogOpen, setExportDialogOpen] = useState(false); + // Fetch available export fields via OPTIONS request const extraExportFields = useQuery({ - enabled: !!url && enabled, - queryKey: ['export-fields', pluginKey, url, exportParams], + enabled: !!url && enabled && exportDialogOpen, + queryKey: ['export-fields', pluginKey, url, exportParams, exportDialogOpen], gcTime: 500, queryFn: () => api @@ -112,6 +114,12 @@ export default function useDataExport({ submitText: t`Export`, successMessage: null, timeout: 30 * 1000, + onOpen: () => { + setExportDialogOpen(true); + }, + onClose: () => { + setExportDialogOpen(false); + }, onFormSuccess: (response: any) => { setExportId(response.pk); setPluginKey('inventree-exporter'); diff --git a/src/frontend/src/hooks/UseDataOutput.tsx b/src/frontend/src/hooks/UseDataOutput.tsx index 7844e899c0..84be903f70 100644 --- a/src/frontend/src/hooks/UseDataOutput.tsx +++ b/src/frontend/src/hooks/UseDataOutput.tsx @@ -40,7 +40,7 @@ export default function useDataOutput({ } else setLoading(false); }, [id, title]); - const progress = useQuery({ + useQuery({ enabled: !!id && loading && visibility === 'visible', refetchInterval: 500, queryKey: ['data-output', id, title], diff --git a/src/frontend/src/hooks/UseImportSession.tsx b/src/frontend/src/hooks/UseImportSession.tsx index 7503228c03..5410e77ee7 100644 --- a/src/frontend/src/hooks/UseImportSession.tsx +++ b/src/frontend/src/hooks/UseImportSession.tsx @@ -49,7 +49,7 @@ export function useImportSession({ setInstance(data); }, []); - const importSessionStatus = useStatusCodes({ + useStatusCodes({ modelType: ModelType.importsession }); diff --git a/src/frontend/src/locales/ar/messages.po b/src/frontend/src/locales/ar/messages.po index 6c1050e483..4af1aee875 100644 --- a/src/frontend/src/locales/ar/messages.po +++ b/src/frontend/src/locales/ar/messages.po @@ -8,7 +8,7 @@ msgstr "" "Language: ar\n" "Project-Id-Version: inventree\n" "Report-Msgid-Bugs-To: \n" -"PO-Revision-Date: 2025-11-19 19:39\n" +"PO-Revision-Date: 2025-12-07 07:36\n" "Last-Translator: \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" @@ -30,7 +30,7 @@ msgid "Edit" msgstr "" #: lib/components/RowActions.tsx:56 -#: src/components/forms/ApiForm.tsx:735 +#: src/components/forms/ApiForm.tsx:754 #: src/components/items/ActionDropdown.tsx:257 #: src/components/items/RoleTable.tsx:155 #: src/hooks/UseForm.tsx:164 @@ -56,24 +56,24 @@ msgstr "" #: lib/components/RowActions.tsx:136 #: src/components/nav/NavigationDrawer.tsx:190 -#: src/forms/PurchaseOrderForms.tsx:802 +#: src/forms/PurchaseOrderForms.tsx:854 #: src/forms/StockForms.tsx:796 #: src/forms/StockForms.tsx:843 -#: src/forms/StockForms.tsx:889 -#: src/forms/StockForms.tsx:928 -#: src/forms/StockForms.tsx:964 -#: src/forms/StockForms.tsx:1050 +#: src/forms/StockForms.tsx:896 +#: src/forms/StockForms.tsx:942 +#: src/forms/StockForms.tsx:980 +#: src/forms/StockForms.tsx:1066 #: src/pages/Index/Settings/AccountSettings/MFASettings.tsx:962 msgid "Actions" msgstr "" #: lib/components/SearchInput.tsx:34 -#: src/components/forms/fields/RelatedModelField.tsx:408 +#: src/components/forms/fields/RelatedModelField.tsx:479 #: src/components/nav/Header.tsx:169 #: src/components/wizards/ImportPartWizard.tsx:200 #: src/components/wizards/ImportPartWizard.tsx:233 -#: src/pages/Index/Settings/UserSettings.tsx:74 -#: src/pages/part/PartDetail.tsx:1155 +#: src/pages/Index/Settings/UserSettings.tsx:75 +#: src/pages/part/PartDetail.tsx:1176 msgid "Search" msgstr "" @@ -95,7 +95,7 @@ msgstr "" msgid "No" msgstr "" -#: lib/enums/ModelInformation.tsx:28 +#: lib/enums/ModelInformation.tsx:29 #: src/components/wizards/OrderPartsWizard.tsx:279 #: src/forms/BuildForms.tsx:332 #: src/forms/BuildForms.tsx:407 @@ -103,208 +103,234 @@ msgstr "" #: src/forms/BuildForms.tsx:630 #: src/forms/BuildForms.tsx:793 #: src/forms/BuildForms.tsx:896 -#: src/forms/PurchaseOrderForms.tsx:798 +#: src/forms/PurchaseOrderForms.tsx:850 #: src/forms/ReturnOrderForms.tsx:242 -#: src/forms/SalesOrderForms.tsx:305 +#: src/forms/SalesOrderForms.tsx:384 #: src/forms/StockForms.tsx:360 #: src/forms/StockForms.tsx:791 #: src/forms/StockForms.tsx:838 -#: src/forms/StockForms.tsx:884 -#: src/forms/StockForms.tsx:923 -#: src/forms/StockForms.tsx:959 -#: src/forms/StockForms.tsx:1002 -#: src/forms/StockForms.tsx:1046 -#: src/forms/StockForms.tsx:1094 -#: src/forms/StockForms.tsx:1138 -#: src/pages/build/BuildDetail.tsx:200 -#: src/pages/part/PartDetail.tsx:1207 +#: src/forms/StockForms.tsx:891 +#: src/forms/StockForms.tsx:937 +#: src/forms/StockForms.tsx:975 +#: src/forms/StockForms.tsx:1018 +#: src/forms/StockForms.tsx:1062 +#: src/forms/StockForms.tsx:1110 +#: src/forms/StockForms.tsx:1154 +#: src/pages/build/BuildDetail.tsx:201 +#: src/pages/part/PartDetail.tsx:1228 #: src/tables/ColumnRenderers.tsx:91 +#: src/tables/part/PartTestResultTable.tsx:247 #: src/tables/part/RelatedPartTable.tsx:53 #: src/tables/stock/StockTrackingTable.tsx:87 msgid "Part" msgstr "" -#: lib/enums/ModelInformation.tsx:29 +#: lib/enums/ModelInformation.tsx:30 #: lib/enums/Roles.tsx:35 #: src/components/nav/NavigationDrawer.tsx:70 #: src/defaults/links.tsx:36 -#: src/pages/Index/Settings/SystemSettings.tsx:190 -#: src/pages/part/CategoryDetail.tsx:132 -#: src/pages/part/CategoryDetail.tsx:277 -#: src/pages/part/CategoryDetail.tsx:323 -#: src/pages/part/CategoryDetail.tsx:354 -#: src/pages/part/PartDetail.tsx:965 +#: src/pages/Index/Settings/SystemSettings.tsx:197 +#: src/pages/part/CategoryDetail.tsx:135 +#: src/pages/part/CategoryDetail.tsx:285 +#: src/pages/part/CategoryDetail.tsx:340 +#: src/pages/part/CategoryDetail.tsx:371 +#: src/pages/part/PartDetail.tsx:978 msgid "Parts" msgstr "" #: lib/enums/ModelInformation.tsx:37 #: src/pages/Index/Settings/AdminCenter/PartParameterPanel.tsx:13 -msgid "Part Parameter Template" -msgstr "" +#~ msgid "Part Parameter Template" +#~ msgstr "Part Parameter Template" #: lib/enums/ModelInformation.tsx:38 -msgid "Part Parameter Templates" +#~ msgid "Part Parameter Templates" +#~ msgstr "Part Parameter Templates" + +#: lib/enums/ModelInformation.tsx:39 +msgid "Parameter" +msgstr "" + +#: lib/enums/ModelInformation.tsx:40 +#: src/components/panels/ParametersPanel.tsx:19 +#: src/components/wizards/ImportPartWizard.tsx:807 +#: src/pages/Index/Settings/AdminCenter/Index.tsx:195 +#: src/pages/Index/Settings/SystemSettings.tsx:191 +#: src/pages/part/PartDetail.tsx:943 +msgid "Parameters" msgstr "" #: lib/enums/ModelInformation.tsx:45 -msgid "Part Test Template" +#: src/tables/part/PartCategoryTemplateTable.tsx:87 +msgid "Parameter Template" msgstr "" #: lib/enums/ModelInformation.tsx:46 -msgid "Part Test Templates" +#: src/pages/Index/Settings/AdminCenter/ParameterPanel.tsx:13 +msgid "Parameter Templates" msgstr "" #: lib/enums/ModelInformation.tsx:52 +msgid "Part Test Template" +msgstr "" + +#: lib/enums/ModelInformation.tsx:53 +msgid "Part Test Templates" +msgstr "" + +#: lib/enums/ModelInformation.tsx:59 #: src/components/wizards/OrderPartsWizard.tsx:290 -#: src/pages/company/SupplierPartDetail.tsx:413 +#: src/pages/company/SupplierPartDetail.tsx:418 #: src/pages/stock/StockDetail.tsx:289 -#: src/tables/build/BuildAllocatedStockTable.tsx:155 +#: src/tables/build/BuildAllocatedStockTable.tsx:152 #: src/tables/part/PartPurchaseOrdersTable.tsx:50 +#: src/tables/purchasing/SupplierPartParametricTable.tsx:29 #: src/tables/purchasing/SupplierPartTable.tsx:83 #: src/tables/stock/StockItemTable.tsx:247 msgid "Supplier Part" msgstr "" -#: lib/enums/ModelInformation.tsx:53 -#: src/pages/purchasing/PurchasingIndex.tsx:92 +#: lib/enums/ModelInformation.tsx:60 +#: src/pages/purchasing/PurchasingIndex.tsx:128 msgid "Supplier Parts" msgstr "" -#: lib/enums/ModelInformation.tsx:61 -#: src/pages/company/ManufacturerPartDetail.tsx:297 -#: src/pages/company/SupplierPartDetail.tsx:161 +#: lib/enums/ModelInformation.tsx:69 +#: src/pages/company/ManufacturerPartDetail.tsx:288 +#: src/pages/company/SupplierPartDetail.tsx:162 #: src/tables/part/PartPurchaseOrdersTable.tsx:56 #: src/tables/stock/StockItemTable.tsx:253 msgid "Manufacturer Part" msgstr "" -#: lib/enums/ModelInformation.tsx:62 -#: src/pages/purchasing/PurchasingIndex.tsx:109 +#: lib/enums/ModelInformation.tsx:70 +#: src/pages/purchasing/PurchasingIndex.tsx:177 msgid "Manufacturer Parts" msgstr "" -#: lib/enums/ModelInformation.tsx:70 -#: src/pages/part/CategoryDetail.tsx:354 +#: lib/enums/ModelInformation.tsx:79 +#: src/pages/part/CategoryDetail.tsx:371 #: src/tables/Filter.tsx:389 msgid "Part Category" msgstr "" -#: lib/enums/ModelInformation.tsx:71 +#: lib/enums/ModelInformation.tsx:80 #: lib/enums/Roles.tsx:37 -#: src/pages/part/CategoryDetail.tsx:271 -#: src/pages/part/CategoryDetail.tsx:345 -#: src/pages/part/PartDetail.tsx:1196 +#: src/pages/part/CategoryDetail.tsx:279 +#: src/pages/part/CategoryDetail.tsx:362 +#: src/pages/part/PartDetail.tsx:1217 msgid "Part Categories" msgstr "" -#: lib/enums/ModelInformation.tsx:79 +#: lib/enums/ModelInformation.tsx:88 #: src/forms/BuildForms.tsx:473 #: src/forms/BuildForms.tsx:633 #: src/forms/BuildForms.tsx:794 -#: src/forms/SalesOrderForms.tsx:307 +#: src/forms/SalesOrderForms.tsx:386 #: src/pages/stock/StockDetail.tsx:1005 -#: src/tables/part/PartTestResultTable.tsx:248 +#: src/tables/part/PartTestResultTable.tsx:256 #: src/tables/stock/StockTrackingTable.tsx:48 #: src/tables/stock/StockTrackingTable.tsx:55 msgid "Stock Item" msgstr "" -#: lib/enums/ModelInformation.tsx:80 +#: lib/enums/ModelInformation.tsx:89 #: lib/enums/Roles.tsx:45 -#: src/pages/company/CompanyDetail.tsx:210 -#: src/pages/part/CategoryDetail.tsx:291 +#: src/pages/company/CompanyDetail.tsx:211 +#: src/pages/part/CategoryDetail.tsx:314 #: src/pages/part/PartStockHistoryDetail.tsx:101 #: src/pages/stock/LocationDetail.tsx:121 #: src/pages/stock/LocationDetail.tsx:180 msgid "Stock Items" msgstr "" -#: lib/enums/ModelInformation.tsx:88 +#: lib/enums/ModelInformation.tsx:98 #: lib/enums/Roles.tsx:47 #: src/pages/stock/LocationDetail.tsx:420 msgid "Stock Location" msgstr "" -#: lib/enums/ModelInformation.tsx:89 +#: lib/enums/ModelInformation.tsx:99 #: src/pages/stock/LocationDetail.tsx:174 #: src/pages/stock/LocationDetail.tsx:412 #: src/pages/stock/StockDetail.tsx:996 msgid "Stock Locations" msgstr "" -#: lib/enums/ModelInformation.tsx:97 +#: lib/enums/ModelInformation.tsx:108 msgid "Stock Location Type" msgstr "" -#: lib/enums/ModelInformation.tsx:98 +#: lib/enums/ModelInformation.tsx:109 msgid "Stock Location Types" msgstr "" -#: lib/enums/ModelInformation.tsx:103 -#: src/pages/Index/Settings/SystemSettings.tsx:248 -#: src/pages/part/PartDetail.tsx:911 +#: lib/enums/ModelInformation.tsx:114 +#: src/pages/Index/Settings/SystemSettings.tsx:254 +#: src/pages/part/PartDetail.tsx:900 msgid "Stock History" msgstr "" -#: lib/enums/ModelInformation.tsx:104 +#: lib/enums/ModelInformation.tsx:115 msgid "Stock Histories" msgstr "" -#: lib/enums/ModelInformation.tsx:109 +#: lib/enums/ModelInformation.tsx:120 msgid "Build" msgstr "" -#: lib/enums/ModelInformation.tsx:110 +#: lib/enums/ModelInformation.tsx:121 msgid "Builds" msgstr "" -#: lib/enums/ModelInformation.tsx:118 +#: lib/enums/ModelInformation.tsx:130 msgid "Build Line" msgstr "" -#: lib/enums/ModelInformation.tsx:119 +#: lib/enums/ModelInformation.tsx:131 msgid "Build Lines" msgstr "" -#: lib/enums/ModelInformation.tsx:126 +#: lib/enums/ModelInformation.tsx:138 msgid "Build Item" msgstr "" -#: lib/enums/ModelInformation.tsx:127 +#: lib/enums/ModelInformation.tsx:139 msgid "Build Items" msgstr "" -#: lib/enums/ModelInformation.tsx:132 -#: src/pages/company/CompanyDetail.tsx:340 +#: lib/enums/ModelInformation.tsx:144 +#: src/pages/company/CompanyDetail.tsx:345 #: src/tables/company/CompanyTable.tsx:47 #: src/tables/company/ContactTable.tsx:67 +#: src/tables/company/ParametricCompanyTable.tsx:18 msgid "Company" msgstr "" -#: lib/enums/ModelInformation.tsx:133 +#: lib/enums/ModelInformation.tsx:145 msgid "Companies" msgstr "" -#: lib/enums/ModelInformation.tsx:140 -#: src/pages/build/BuildDetail.tsx:316 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:253 -#: src/pages/sales/ReturnOrderDetail.tsx:231 -#: src/pages/sales/SalesOrderDetail.tsx:224 +#: lib/enums/ModelInformation.tsx:152 +#: src/pages/build/BuildDetail.tsx:317 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:254 +#: src/pages/sales/ReturnOrderDetail.tsx:232 +#: src/pages/sales/SalesOrderDetail.tsx:225 #: src/tables/ColumnRenderers.tsx:362 #: src/tables/Filter.tsx:286 #: src/tables/TableHoverCard.tsx:101 msgid "Project Code" msgstr "" -#: lib/enums/ModelInformation.tsx:141 +#: lib/enums/ModelInformation.tsx:153 #: src/pages/Index/Settings/AdminCenter/Index.tsx:172 msgid "Project Codes" msgstr "" -#: lib/enums/ModelInformation.tsx:147 +#: lib/enums/ModelInformation.tsx:159 #: src/components/wizards/OrderPartsWizard.tsx:338 #: src/pages/part/pricing/PurchaseHistoryPanel.tsx:33 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:550 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:555 #: src/pages/stock/StockDetail.tsx:352 #: src/tables/part/PartPurchaseOrdersTable.tsx:32 #: src/tables/stock/StockItemTable.tsx:239 @@ -312,117 +338,117 @@ msgstr "" msgid "Purchase Order" msgstr "" -#: lib/enums/ModelInformation.tsx:148 +#: lib/enums/ModelInformation.tsx:160 #: lib/enums/Roles.tsx:39 #: src/defaults/actions.tsx:104 -#: src/pages/Index/Settings/SystemSettings.tsx:283 -#: src/pages/company/CompanyDetail.tsx:203 -#: src/pages/company/SupplierPartDetail.tsx:266 -#: src/pages/part/PartDetail.tsx:875 -#: src/pages/purchasing/PurchasingIndex.tsx:60 +#: src/pages/Index/Settings/SystemSettings.tsx:289 +#: src/pages/company/CompanyDetail.tsx:204 +#: src/pages/company/SupplierPartDetail.tsx:267 +#: src/pages/part/PartDetail.tsx:864 +#: src/pages/purchasing/PurchasingIndex.tsx:66 msgid "Purchase Orders" msgstr "" -#: lib/enums/ModelInformation.tsx:156 +#: lib/enums/ModelInformation.tsx:169 msgid "Purchase Order Line" msgstr "" -#: lib/enums/ModelInformation.tsx:157 +#: lib/enums/ModelInformation.tsx:170 msgid "Purchase Order Lines" msgstr "" -#: lib/enums/ModelInformation.tsx:162 -#: src/pages/build/BuildDetail.tsx:289 +#: lib/enums/ModelInformation.tsx:175 +#: src/pages/build/BuildDetail.tsx:290 #: src/pages/part/pricing/SaleHistoryPanel.tsx:24 -#: src/pages/sales/SalesOrderDetail.tsx:614 -#: src/pages/sales/SalesOrderShipmentDetail.tsx:105 -#: src/pages/sales/SalesOrderShipmentDetail.tsx:478 +#: src/pages/sales/SalesOrderDetail.tsx:619 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:103 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:446 #: src/pages/stock/StockDetail.tsx:361 #: src/tables/part/PartSalesAllocationsTable.tsx:41 #: src/tables/sales/SalesOrderAllocationTable.tsx:110 -#: src/tables/sales/SalesOrderShipmentTable.tsx:122 +#: src/tables/sales/SalesOrderShipmentTable.tsx:143 #: src/tables/stock/StockTrackingTable.tsx:131 msgid "Sales Order" msgstr "" -#: lib/enums/ModelInformation.tsx:163 +#: lib/enums/ModelInformation.tsx:176 #: lib/enums/Roles.tsx:43 #: src/defaults/actions.tsx:114 -#: src/pages/Index/Settings/SystemSettings.tsx:299 -#: src/pages/company/CompanyDetail.tsx:223 -#: src/pages/part/PartDetail.tsx:887 -#: src/pages/sales/SalesIndex.tsx:84 +#: src/pages/Index/Settings/SystemSettings.tsx:305 +#: src/pages/company/CompanyDetail.tsx:224 +#: src/pages/part/PartDetail.tsx:876 +#: src/pages/sales/SalesIndex.tsx:53 msgid "Sales Orders" msgstr "" -#: lib/enums/ModelInformation.tsx:171 -#: src/pages/sales/SalesOrderShipmentDetail.tsx:477 +#: lib/enums/ModelInformation.tsx:185 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:445 msgid "Sales Order Shipment" msgstr "" -#: lib/enums/ModelInformation.tsx:172 +#: lib/enums/ModelInformation.tsx:186 msgid "Sales Order Shipments" msgstr "" -#: lib/enums/ModelInformation.tsx:179 -#: src/pages/sales/ReturnOrderDetail.tsx:549 +#: lib/enums/ModelInformation.tsx:194 +#: src/pages/sales/ReturnOrderDetail.tsx:554 #: src/tables/stock/StockTrackingTable.tsx:142 msgid "Return Order" msgstr "" -#: lib/enums/ModelInformation.tsx:180 +#: lib/enums/ModelInformation.tsx:195 #: lib/enums/Roles.tsx:41 #: src/defaults/actions.tsx:125 -#: src/pages/Index/Settings/SystemSettings.tsx:316 -#: src/pages/company/CompanyDetail.tsx:230 -#: src/pages/part/PartDetail.tsx:894 -#: src/pages/sales/SalesIndex.tsx:117 +#: src/pages/Index/Settings/SystemSettings.tsx:322 +#: src/pages/company/CompanyDetail.tsx:231 +#: src/pages/part/PartDetail.tsx:883 +#: src/pages/sales/SalesIndex.tsx:99 msgid "Return Orders" msgstr "" -#: lib/enums/ModelInformation.tsx:188 +#: lib/enums/ModelInformation.tsx:204 msgid "Return Order Line Item" msgstr "" -#: lib/enums/ModelInformation.tsx:189 +#: lib/enums/ModelInformation.tsx:205 msgid "Return Order Line Items" msgstr "" -#: lib/enums/ModelInformation.tsx:194 +#: lib/enums/ModelInformation.tsx:210 #: src/tables/company/AddressTable.tsx:52 msgid "Address" msgstr "" -#: lib/enums/ModelInformation.tsx:195 -#: src/pages/company/CompanyDetail.tsx:264 +#: lib/enums/ModelInformation.tsx:211 +#: src/pages/company/CompanyDetail.tsx:265 msgid "Addresses" msgstr "" -#: lib/enums/ModelInformation.tsx:201 +#: lib/enums/ModelInformation.tsx:217 #: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:89 #: src/pages/core/UserDetail.tsx:135 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:229 -#: src/pages/sales/ReturnOrderDetail.tsx:207 -#: src/pages/sales/SalesOrderDetail.tsx:200 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:230 +#: src/pages/sales/ReturnOrderDetail.tsx:208 +#: src/pages/sales/SalesOrderDetail.tsx:201 msgid "Contact" msgstr "" -#: lib/enums/ModelInformation.tsx:202 -#: src/pages/company/CompanyDetail.tsx:258 +#: lib/enums/ModelInformation.tsx:218 +#: src/pages/company/CompanyDetail.tsx:259 #: src/pages/core/CoreIndex.tsx:33 msgid "Contacts" msgstr "" -#: lib/enums/ModelInformation.tsx:208 +#: lib/enums/ModelInformation.tsx:224 #: src/tables/ColumnRenderers.tsx:444 msgid "Owner" msgstr "" -#: lib/enums/ModelInformation.tsx:209 +#: lib/enums/ModelInformation.tsx:225 msgid "Owners" msgstr "" -#: lib/enums/ModelInformation.tsx:215 +#: lib/enums/ModelInformation.tsx:231 #: src/pages/Auth/ChangePassword.tsx:36 #: src/pages/core/UserDetail.tsx:220 #: src/tables/ColumnRenderers.tsx:395 @@ -437,7 +463,7 @@ msgstr "" msgid "User" msgstr "" -#: lib/enums/ModelInformation.tsx:216 +#: lib/enums/ModelInformation.tsx:232 #: src/components/nav/NavigationDrawer.tsx:105 #: src/pages/Index/Settings/AdminCenter/UserManagementPanel.tsx:15 #: src/pages/core/CoreIndex.tsx:21 @@ -445,12 +471,12 @@ msgstr "" msgid "Users" msgstr "" -#: lib/enums/ModelInformation.tsx:222 +#: lib/enums/ModelInformation.tsx:238 #: src/pages/core/GroupDetail.tsx:78 msgid "Group" msgstr "" -#: lib/enums/ModelInformation.tsx:223 +#: lib/enums/ModelInformation.tsx:239 #: src/components/nav/NavigationDrawer.tsx:111 #: src/pages/Index/Settings/AdminCenter/UserManagementPanel.tsx:23 #: src/pages/core/CoreIndex.tsx:27 @@ -460,64 +486,64 @@ msgstr "" msgid "Groups" msgstr "" -#: lib/enums/ModelInformation.tsx:230 +#: lib/enums/ModelInformation.tsx:246 msgid "Import Session" msgstr "" -#: lib/enums/ModelInformation.tsx:231 +#: lib/enums/ModelInformation.tsx:247 msgid "Import Sessions" msgstr "" -#: lib/enums/ModelInformation.tsx:238 +#: lib/enums/ModelInformation.tsx:254 msgid "Label Template" msgstr "" -#: lib/enums/ModelInformation.tsx:239 +#: lib/enums/ModelInformation.tsx:255 #: src/pages/Index/Settings/AdminCenter/Index.tsx:209 msgid "Label Templates" msgstr "" -#: lib/enums/ModelInformation.tsx:246 +#: lib/enums/ModelInformation.tsx:262 msgid "Report Template" msgstr "" -#: lib/enums/ModelInformation.tsx:247 +#: lib/enums/ModelInformation.tsx:263 #: src/pages/Index/Settings/AdminCenter/Index.tsx:215 msgid "Report Templates" msgstr "" -#: lib/enums/ModelInformation.tsx:254 +#: lib/enums/ModelInformation.tsx:270 #: src/components/plugins/PluginDrawer.tsx:145 msgid "Plugin Configuration" msgstr "" -#: lib/enums/ModelInformation.tsx:255 +#: lib/enums/ModelInformation.tsx:271 msgid "Plugin Configurations" msgstr "" -#: lib/enums/ModelInformation.tsx:262 +#: lib/enums/ModelInformation.tsx:278 msgid "Content Type" msgstr "" -#: lib/enums/ModelInformation.tsx:263 +#: lib/enums/ModelInformation.tsx:279 msgid "Content Types" msgstr "" -#: lib/enums/ModelInformation.tsx:268 +#: lib/enums/ModelInformation.tsx:284 msgid "Selection List" msgstr "" -#: lib/enums/ModelInformation.tsx:269 -#: src/pages/Index/Settings/AdminCenter/PartParameterPanel.tsx:21 +#: lib/enums/ModelInformation.tsx:285 +#: src/pages/Index/Settings/AdminCenter/ParameterPanel.tsx:21 msgid "Selection Lists" msgstr "" -#: lib/enums/ModelInformation.tsx:275 +#: lib/enums/ModelInformation.tsx:291 #: src/components/barcodes/BarcodeInput.tsx:114 #: src/components/dashboard/DashboardLayout.tsx:281 #: src/components/editors/NotesEditor.tsx:74 #: src/components/editors/TemplateEditor/TemplateEditor.tsx:158 -#: src/components/forms/fields/ApiFormField.tsx:273 +#: src/components/forms/fields/ApiFormField.tsx:237 #: src/components/forms/fields/TableField.tsx:45 #: src/components/importer/ImportDataSelector.tsx:192 #: src/components/importer/ImporterColumnSelector.tsx:234 @@ -528,7 +554,7 @@ msgstr "" #: src/components/nav/SearchDrawer.tsx:572 #: src/components/settings/SettingList.tsx:139 #: src/components/wizards/ImportPartWizard.tsx:574 -#: src/components/wizards/ImportPartWizard.tsx:718 +#: src/components/wizards/ImportPartWizard.tsx:719 #: src/forms/BomForms.tsx:69 #: src/functions/auth.tsx:643 #: src/pages/ErrorPage.tsx:11 @@ -547,9 +573,9 @@ msgstr "" msgid "Error" msgstr "" -#: lib/enums/ModelInformation.tsx:276 +#: lib/enums/ModelInformation.tsx:292 #: src/tables/machine/MachineListTable.tsx:402 -#: src/tables/machine/MachineTypeTable.tsx:299 +#: src/tables/machine/MachineTypeTable.tsx:297 msgid "Errors" msgstr "" @@ -559,10 +585,10 @@ msgstr "" #: lib/enums/Roles.tsx:33 #: src/defaults/actions.tsx:135 -#: src/pages/Index/Settings/SystemSettings.tsx:264 -#: src/pages/build/BuildIndex.tsx:75 -#: src/pages/part/PartDetail.tsx:904 -#: src/pages/sales/SalesOrderDetail.tsx:421 +#: src/pages/Index/Settings/SystemSettings.tsx:270 +#: src/pages/build/BuildIndex.tsx:67 +#: src/pages/part/PartDetail.tsx:893 +#: src/pages/sales/SalesOrderDetail.tsx:422 msgid "Build Orders" msgstr "" @@ -639,39 +665,39 @@ msgstr "" msgid "Enter barcode data" msgstr "" -#: src/components/barcodes/BarcodeScanDialog.tsx:49 -#: src/components/buttons/ScanButton.tsx:15 +#: src/components/barcodes/BarcodeScanDialog.tsx:56 +#: src/components/buttons/ScanButton.tsx:27 #: src/components/nav/NavigationDrawer.tsx:122 -#: src/forms/PurchaseOrderForms.tsx:457 -#: src/forms/PurchaseOrderForms.tsx:563 +#: src/forms/PurchaseOrderForms.tsx:509 +#: src/forms/PurchaseOrderForms.tsx:615 msgid "Scan Barcode" msgstr "" -#: src/components/barcodes/BarcodeScanDialog.tsx:105 +#: src/components/barcodes/BarcodeScanDialog.tsx:121 msgid "No matching item found" msgstr "" -#: src/components/barcodes/BarcodeScanDialog.tsx:134 +#: src/components/barcodes/BarcodeScanDialog.tsx:150 msgid "Barcode does not match the expected model type" msgstr "" -#: src/components/barcodes/BarcodeScanDialog.tsx:145 +#: src/components/barcodes/BarcodeScanDialog.tsx:161 #: src/components/editors/NotesEditor.tsx:84 #: src/components/editors/NotesEditor.tsx:118 -#: src/components/forms/ApiForm.tsx:465 +#: src/components/forms/ApiForm.tsx:484 #: src/components/wizards/ImportPartWizard.tsx:566 -#: src/components/wizards/ImportPartWizard.tsx:690 +#: src/components/wizards/ImportPartWizard.tsx:691 #: src/pages/Index/Settings/AdminCenter/CurrencyManagementPanel.tsx:45 #: src/tables/bom/BomTable.tsx:548 #: src/tables/settings/PendingTasksTable.tsx:68 msgid "Success" msgstr "" -#: src/components/barcodes/BarcodeScanDialog.tsx:151 +#: src/components/barcodes/BarcodeScanDialog.tsx:167 msgid "Failed to handle barcode" msgstr "" -#: src/components/barcodes/BarcodeScanDialog.tsx:167 +#: src/components/barcodes/BarcodeScanDialog.tsx:183 #: src/pages/Index/Scan.tsx:129 msgid "Failed to scan barcode" msgstr "" @@ -714,10 +740,10 @@ msgstr "" #: src/components/barcodes/QRCode.tsx:179 #: src/pages/part/PartDetail.tsx:521 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:222 -#: src/pages/sales/ReturnOrderDetail.tsx:188 -#: src/pages/sales/SalesOrderDetail.tsx:181 -#: src/pages/sales/SalesOrderShipmentDetail.tsx:122 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:223 +#: src/pages/sales/ReturnOrderDetail.tsx:189 +#: src/pages/sales/SalesOrderDetail.tsx:182 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:120 #: src/pages/stock/StockDetail.tsx:186 msgid "Link" msgstr "" @@ -728,7 +754,7 @@ msgstr "" #: src/components/barcodes/QRCode.tsx:205 #: src/components/items/ActionDropdown.tsx:192 -#: src/forms/PurchaseOrderForms.tsx:554 +#: src/forms/PurchaseOrderForms.tsx:606 msgid "Unlink Barcode" msgstr "" @@ -829,14 +855,14 @@ msgstr "" #~ msgid "Scan QR code" #~ msgstr "Scan QR code" -#: src/components/buttons/ScanButton.tsx:19 -msgid "Open Barcode Scanner" -msgstr "" - #: src/components/buttons/ScanButton.tsx:20 #~ msgid "Open QR code scanner" #~ msgstr "Open QR code scanner" +#: src/components/buttons/ScanButton.tsx:32 +msgid "Open Barcode Scanner" +msgstr "" + #: src/components/buttons/SpotlightButton.tsx:12 msgid "Open spotlight" msgstr "" @@ -1059,7 +1085,7 @@ msgid "Show the number of sales orders which are assigned to you" msgstr "" #: src/components/dashboard/DashboardWidgetLibrary.tsx:129 -#: src/pages/sales/SalesIndex.tsx:105 +#: src/pages/sales/SalesIndex.tsx:87 msgid "Pending Shipments" msgstr "" @@ -1210,12 +1236,18 @@ msgid "Remove the associated image from this item?" msgstr "" #: src/components/details/DetailsImage.tsx:83 -#: src/forms/StockForms.tsx:888 +#: src/forms/StockForms.tsx:895 #: src/pages/Index/Settings/AccountSettings/MFASettings.tsx:324 #: src/pages/Index/Settings/AccountSettings/MFASettings.tsx:415 #: src/pages/Index/Settings/AccountSettings/MFASettings.tsx:884 #: src/pages/Index/Settings/AccountSettings/MFASettings.tsx:903 #: src/pages/Index/Settings/AccountSettings/SecurityContent.tsx:254 +#: src/tables/build/BuildAllocatedStockTable.tsx:178 +#: src/tables/build/BuildAllocatedStockTable.tsx:258 +#: src/tables/build/BuildLineTable.tsx:111 +#: src/tables/build/BuildLineTable.tsx:665 +#: src/tables/sales/SalesOrderAllocationTable.tsx:224 +#: src/tables/sales/SalesOrderAllocationTable.tsx:247 msgid "Remove" msgstr "" @@ -1241,12 +1273,12 @@ msgid "Upload Error" msgstr "" #: src/components/details/DetailsImage.tsx:250 -#: src/components/forms/fields/TextField.tsx:65 +#: src/components/forms/fields/AutoFillRightSection.tsx:34 msgid "Clear" msgstr "" #: src/components/details/DetailsImage.tsx:256 -#: src/components/forms/ApiForm.tsx:677 +#: src/components/forms/ApiForm.tsx:696 #: src/contexts/ThemeContext.tsx:44 #: src/pages/Index/Settings/AccountSettings/MFASettings.tsx:149 #: src/pages/Index/Settings/AccountSettings/MFASettings.tsx:568 @@ -1499,8 +1531,8 @@ msgstr "" msgid "A server error occurred" msgstr "" -#: src/components/forms/ApiForm.tsx:103 -#: src/components/forms/ApiForm.tsx:594 +#: src/components/forms/ApiForm.tsx:107 +#: src/components/forms/ApiForm.tsx:613 msgid "Form Error" msgstr "" @@ -1508,11 +1540,11 @@ msgstr "" #~ msgid "Form Errors Exist" #~ msgstr "Form Errors Exist" -#: src/components/forms/ApiForm.tsx:604 +#: src/components/forms/ApiForm.tsx:623 msgid "Errors exist for one or more form fields" msgstr "" -#: src/components/forms/ApiForm.tsx:715 +#: src/components/forms/ApiForm.tsx:734 #: src/hooks/UseForm.tsx:133 #: src/tables/plugin/PluginListTable.tsx:204 msgid "Update" @@ -1698,15 +1730,14 @@ msgstr "" #: src/components/forms/InstanceOptions.tsx:124 #: src/components/plugins/PluginDrawer.tsx:68 #: src/pages/Index/Settings/AdminCenter/UnitManagementPanel.tsx:19 -#: src/pages/part/CategoryDetail.tsx:88 +#: src/pages/part/CategoryDetail.tsx:91 #: src/pages/part/PartDetail.tsx:446 #: src/pages/stock/LocationDetail.tsx:82 #: src/tables/machine/MachineTypeTable.tsx:67 -#: src/tables/machine/MachineTypeTable.tsx:151 -#: src/tables/machine/MachineTypeTable.tsx:254 -#: src/tables/machine/MachineTypeTable.tsx:357 +#: src/tables/machine/MachineTypeTable.tsx:149 +#: src/tables/machine/MachineTypeTable.tsx:252 +#: src/tables/machine/MachineTypeTable.tsx:355 #: src/tables/plugin/PluginErrorTable.tsx:33 -#: src/tables/purchasing/ManufacturerPartParameterTable.tsx:36 #: src/tables/settings/ApiTokenTable.tsx:57 #: src/tables/settings/GroupTable.tsx:95 #: src/tables/settings/GroupTable.tsx:148 @@ -1769,7 +1800,7 @@ msgstr "" #~ msgstr "State: <0>worker ({0}), <1>plugins{1}" #: src/components/forms/InstanceOptions.tsx:118 -#: src/pages/Index/Settings/SystemSettings.tsx:45 +#: src/pages/Index/Settings/SystemSettings.tsx:46 msgid "Server" msgstr "" @@ -1793,6 +1824,8 @@ msgid "Plugins" msgstr "" #: src/components/forms/InstanceOptions.tsx:143 +#: src/tables/general/ParameterTemplateTable.tsx:153 +#: src/tables/general/ParameterTemplateTable.tsx:188 #: src/tables/part/PartTestTemplateTable.tsx:117 #: src/tables/settings/TemplateTable.tsx:251 #: src/tables/settings/TemplateTable.tsx:362 @@ -1817,10 +1850,14 @@ msgstr "" msgid "Running" msgstr "" -#: src/components/forms/fields/ApiFormField.tsx:233 +#: src/components/forms/fields/ApiFormField.tsx:197 msgid "Select file to upload" msgstr "" +#: src/components/forms/fields/AutoFillRightSection.tsx:47 +msgid "Accept suggested value" +msgstr "" + #: src/components/forms/fields/DateField.tsx:76 msgid "Select date" msgstr "" @@ -1853,13 +1890,13 @@ msgstr "" msgid "{0} icons" msgstr "" -#: src/components/forms/fields/RelatedModelField.tsx:409 +#: src/components/forms/fields/RelatedModelField.tsx:480 #: src/components/modals/AboutInvenTreeModal.tsx:96 #: src/pages/Index/Settings/AccountSettings/SecurityContent.tsx:383 msgid "Loading" msgstr "" -#: src/components/forms/fields/RelatedModelField.tsx:411 +#: src/components/forms/fields/RelatedModelField.tsx:482 msgid "No results found" msgstr "" @@ -1875,10 +1912,6 @@ msgstr "" msgid "Add new row" msgstr "" -#: src/components/forms/fields/TextField.tsx:82 -msgid "Accept suggested value" -msgstr "" - #: src/components/images/DetailsImage.tsx:252 #~ msgid "Select image" #~ msgstr "Select image" @@ -2036,7 +2069,7 @@ msgstr "" #: src/components/importer/ImporterDrawer.tsx:109 #: src/components/modals/AboutInvenTreeModal.tsx:205 #: src/components/modals/ServerInfoModal.tsx:134 -#: src/components/wizards/ImportPartWizard.tsx:772 +#: src/components/wizards/ImportPartWizard.tsx:773 #: src/forms/BomForms.tsx:132 #: src/pages/Index/Settings/AccountSettings/MFASettings.tsx:685 msgid "Close" @@ -2199,7 +2232,7 @@ msgid "Change" msgstr "" #: src/components/items/RoleTable.tsx:150 -#: src/forms/StockForms.tsx:927 +#: src/forms/StockForms.tsx:941 #: src/tables/stock/StockItemTestResultTable.tsx:367 msgid "Add" msgstr "" @@ -2222,11 +2255,11 @@ msgstr "" #: src/components/items/TransferList.tsx:161 #: src/components/render/Stock.tsx:102 -#: src/pages/part/PartDetail.tsx:994 +#: src/pages/part/PartDetail.tsx:1009 #: src/pages/stock/StockDetail.tsx:265 #: src/pages/stock/StockDetail.tsx:942 -#: src/tables/build/BuildAllocatedStockTable.tsx:135 -#: src/tables/build/BuildLineTable.tsx:192 +#: src/tables/build/BuildAllocatedStockTable.tsx:132 +#: src/tables/build/BuildLineTable.tsx:193 #: src/tables/part/PartTable.tsx:137 #: src/tables/stock/StockItemTable.tsx:182 #: src/tables/stock/StockItemTable.tsx:343 @@ -2373,7 +2406,7 @@ msgid "Database" msgstr "" #: src/components/modals/ServerInfoModal.tsx:49 -#: src/components/nav/Alerts.tsx:118 +#: src/components/nav/Alerts.tsx:120 msgid "Debug Mode" msgstr "" @@ -2414,7 +2447,7 @@ msgid "Issues detected" msgstr "" #: src/components/modals/ServerInfoModal.tsx:102 -#: src/components/nav/Alerts.tsx:125 +#: src/components/nav/Alerts.tsx:127 msgid "Background Worker" msgstr "" @@ -2436,7 +2469,7 @@ msgstr "" #~ msgstr "Email settings not configured" #: src/components/modals/ServerInfoModal.tsx:120 -#: src/components/nav/Alerts.tsx:141 +#: src/components/nav/Alerts.tsx:143 msgid "Email settings not configured." msgstr "" @@ -2444,43 +2477,47 @@ msgstr "" msgid "Alerts" msgstr "" -#: src/components/nav/Alerts.tsx:120 +#: src/components/nav/Alerts.tsx:97 +msgid "No issues detected" +msgstr "" + +#: src/components/nav/Alerts.tsx:122 msgid "The server is running in debug mode." msgstr "" -#: src/components/nav/Alerts.tsx:127 +#: src/components/nav/Alerts.tsx:129 msgid "The background worker process is not running." msgstr "" -#: src/components/nav/Alerts.tsx:132 +#: src/components/nav/Alerts.tsx:134 msgid "Server Restart" msgstr "" -#: src/components/nav/Alerts.tsx:134 +#: src/components/nav/Alerts.tsx:136 msgid "The server requires a restart to apply changes." msgstr "" -#: src/components/nav/Alerts.tsx:139 +#: src/components/nav/Alerts.tsx:141 msgid "Email settings" msgstr "" -#: src/components/nav/Alerts.tsx:146 +#: src/components/nav/Alerts.tsx:148 msgid "Database Migrations" msgstr "" -#: src/components/nav/Alerts.tsx:148 +#: src/components/nav/Alerts.tsx:150 msgid "There are pending database migrations." msgstr "" -#: src/components/nav/Alerts.tsx:163 +#: src/components/nav/Alerts.tsx:165 msgid "Learn more about {code}" msgstr "" #: src/components/nav/Header.tsx:188 #: src/components/nav/NavigationDrawer.tsx:134 #: src/components/nav/NotificationDrawer.tsx:181 -#: src/pages/Index/Settings/SystemSettings.tsx:121 -#: src/pages/Index/Settings/UserSettings.tsx:106 +#: src/pages/Index/Settings/SystemSettings.tsx:122 +#: src/pages/Index/Settings/UserSettings.tsx:107 #: src/pages/Notifications.tsx:45 #: src/pages/Notifications.tsx:130 msgid "Notifications" @@ -2511,8 +2548,8 @@ msgstr "" #: src/components/nav/NavigationDrawer.tsx:140 #: src/components/nav/SettingsHeader.tsx:40 #: src/defaults/actions.tsx:92 -#: src/pages/Index/Settings/UserSettings.tsx:141 -#: src/pages/Index/Settings/UserSettings.tsx:145 +#: src/pages/Index/Settings/UserSettings.tsx:142 +#: src/pages/Index/Settings/UserSettings.tsx:146 msgid "User Settings" msgstr "" @@ -2529,8 +2566,8 @@ msgstr "" #: src/components/nav/NavigationDrawer.tsx:146 #: src/components/nav/SettingsHeader.tsx:41 #: src/defaults/actions.tsx:144 -#: src/pages/Index/Settings/SystemSettings.tsx:348 -#: src/pages/Index/Settings/SystemSettings.tsx:353 +#: src/pages/Index/Settings/SystemSettings.tsx:354 +#: src/pages/Index/Settings/SystemSettings.tsx:359 msgid "System Settings" msgstr "" @@ -2577,11 +2614,11 @@ msgstr "" #: src/components/nav/NavigationDrawer.tsx:77 #: src/components/render/Part.tsx:36 -#: src/components/wizards/ImportPartWizard.tsx:807 +#: src/components/wizards/ImportPartWizard.tsx:808 #: src/defaults/links.tsx:42 #: src/forms/StockForms.tsx:794 -#: src/pages/Index/Settings/SystemSettings.tsx:224 -#: src/pages/part/PartDetail.tsx:804 +#: src/pages/Index/Settings/SystemSettings.tsx:230 +#: src/pages/part/PartDetail.tsx:793 #: src/pages/stock/LocationDetail.tsx:390 #: src/pages/stock/LocationDetail.tsx:420 #: src/pages/stock/StockDetail.tsx:642 @@ -2591,29 +2628,29 @@ msgstr "" #: src/components/nav/NavigationDrawer.tsx:84 #: src/defaults/links.tsx:48 -#: src/pages/build/BuildDetail.tsx:748 -#: src/pages/build/BuildIndex.tsx:102 +#: src/pages/build/BuildDetail.tsx:753 +#: src/pages/build/BuildIndex.tsx:101 msgid "Manufacturing" msgstr "" #: src/components/nav/NavigationDrawer.tsx:91 #: src/defaults/links.tsx:54 #: src/pages/company/ManufacturerDetail.tsx:9 -#: src/pages/company/ManufacturerPartDetail.tsx:276 +#: src/pages/company/ManufacturerPartDetail.tsx:267 #: src/pages/company/SupplierDetail.tsx:9 -#: src/pages/company/SupplierPartDetail.tsx:360 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:553 -#: src/pages/purchasing/PurchasingIndex.tsx:122 +#: src/pages/company/SupplierPartDetail.tsx:365 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:558 +#: src/pages/purchasing/PurchasingIndex.tsx:212 msgid "Purchasing" msgstr "" #: src/components/nav/NavigationDrawer.tsx:98 #: src/defaults/links.tsx:60 #: src/pages/company/CustomerDetail.tsx:9 -#: src/pages/sales/ReturnOrderDetail.tsx:554 -#: src/pages/sales/SalesIndex.tsx:153 -#: src/pages/sales/SalesOrderDetail.tsx:619 -#: src/pages/sales/SalesOrderShipmentDetail.tsx:480 +#: src/pages/sales/ReturnOrderDetail.tsx:559 +#: src/pages/sales/SalesIndex.tsx:168 +#: src/pages/sales/SalesOrderDetail.tsx:624 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:448 msgid "Sales" msgstr "" @@ -2667,21 +2704,21 @@ msgid "Remove search group" msgstr "" #: src/components/nav/SearchDrawer.tsx:288 -#: src/pages/company/ManufacturerPartDetail.tsx:192 -#: src/pages/part/PartDetail.tsx:862 +#: src/pages/company/ManufacturerPartDetail.tsx:179 +#: src/pages/part/PartDetail.tsx:851 #: src/pages/part/PartSupplierDetail.tsx:15 -#: src/pages/purchasing/PurchasingIndex.tsx:81 +#: src/pages/purchasing/PurchasingIndex.tsx:100 msgid "Suppliers" msgstr "" #: src/components/nav/SearchDrawer.tsx:298 #: src/pages/part/PartSupplierDetail.tsx:23 -#: src/pages/purchasing/PurchasingIndex.tsx:98 +#: src/pages/purchasing/PurchasingIndex.tsx:149 msgid "Manufacturers" msgstr "" #: src/components/nav/SearchDrawer.tsx:308 -#: src/pages/sales/SalesIndex.tsx:138 +#: src/pages/sales/SalesIndex.tsx:133 msgid "Customers" msgstr "" @@ -2772,21 +2809,21 @@ msgstr "" #: src/components/plugins/PluginDrawer.tsx:73 #: src/forms/selectionListFields.tsx:102 -#: src/pages/build/BuildDetail.tsx:250 -#: src/pages/company/CompanyDetail.tsx:93 -#: src/pages/company/ManufacturerPartDetail.tsx:93 -#: src/pages/company/ManufacturerPartDetail.tsx:120 -#: src/pages/company/SupplierPartDetail.tsx:145 -#: src/pages/part/CategoryDetail.tsx:108 +#: src/pages/build/BuildDetail.tsx:251 +#: src/pages/company/CompanyDetail.tsx:94 +#: src/pages/company/ManufacturerPartDetail.tsx:92 +#: src/pages/company/ManufacturerPartDetail.tsx:119 +#: src/pages/company/SupplierPartDetail.tsx:146 +#: src/pages/part/CategoryDetail.tsx:111 #: src/pages/part/PartDetail.tsx:460 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:162 -#: src/pages/sales/ReturnOrderDetail.tsx:129 -#: src/pages/sales/SalesOrderDetail.tsx:119 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:163 +#: src/pages/sales/ReturnOrderDetail.tsx:130 +#: src/pages/sales/SalesOrderDetail.tsx:120 #: src/pages/stock/LocationDetail.tsx:102 #: src/tables/ColumnRenderers.tsx:278 -#: src/tables/build/BuildAllocatedStockTable.tsx:91 -#: src/tables/machine/MachineTypeTable.tsx:161 -#: src/tables/machine/MachineTypeTable.tsx:257 +#: src/tables/build/BuildAllocatedStockTable.tsx:88 +#: src/tables/machine/MachineTypeTable.tsx:159 +#: src/tables/machine/MachineTypeTable.tsx:255 #: src/tables/plugin/PluginListTable.tsx:110 msgid "Description" msgstr "" @@ -2814,7 +2851,7 @@ msgstr "" #: src/tables/company/CompanyTable.tsx:91 #: src/tables/machine/MachineListTable.tsx:384 #: src/tables/machine/MachineListTable.tsx:799 -#: src/tables/part/ParametricPartTable.tsx:354 +#: src/tables/part/ParametricPartTable.tsx:19 #: src/tables/part/PartTable.tsx:197 #: src/tables/part/PartVariantTable.tsx:15 #: src/tables/plugin/PluginListTable.tsx:96 @@ -2836,8 +2873,8 @@ msgid "Installation Path" msgstr "" #: src/components/plugins/PluginDrawer.tsx:116 -#: src/tables/machine/MachineTypeTable.tsx:184 -#: src/tables/machine/MachineTypeTable.tsx:293 +#: src/tables/machine/MachineTypeTable.tsx:182 +#: src/tables/machine/MachineTypeTable.tsx:291 #: src/tables/plugin/PluginListTable.tsx:101 #: src/tables/plugin/PluginListTable.tsx:417 msgid "Builtin" @@ -2849,8 +2886,8 @@ msgstr "" #: src/components/plugins/PluginDrawer.tsx:133 #: src/pages/Index/Settings/AdminCenter/PluginManagementPanel.tsx:55 -#: src/pages/Index/Settings/SystemSettings.tsx:331 -#: src/pages/Index/Settings/UserSettings.tsx:128 +#: src/pages/Index/Settings/SystemSettings.tsx:337 +#: src/pages/Index/Settings/UserSettings.tsx:129 msgid "Plugin Settings" msgstr "" @@ -2911,7 +2948,7 @@ msgstr "" #~ msgid "Unknown model: {model}" #~ msgstr "Unknown model: {model}" -#: src/components/render/Instance.tsx:249 +#: src/components/render/Instance.tsx:247 msgid "Unknown model: {model_name}" msgstr "" @@ -2939,10 +2976,10 @@ msgstr "" #: src/components/render/Part.tsx:28 #: src/components/render/Plugin.tsx:17 #: src/components/render/User.tsx:37 -#: src/pages/company/CompanyDetail.tsx:323 -#: src/pages/company/SupplierPartDetail.tsx:373 +#: src/pages/company/CompanyDetail.tsx:328 +#: src/pages/company/SupplierPartDetail.tsx:378 #: src/pages/core/UserDetail.tsx:211 -#: src/pages/part/PartDetail.tsx:1027 +#: src/pages/part/PartDetail.tsx:1048 #: src/tables/ColumnRenderers.tsx:410 msgid "Inactive" msgstr "" @@ -2962,11 +2999,11 @@ msgstr "" #: src/components/render/Part.tsx:47 #: src/components/wizards/OrderPartsWizard.tsx:135 -#: src/pages/company/SupplierPartDetail.tsx:197 -#: src/pages/company/SupplierPartDetail.tsx:394 -#: src/pages/part/PartDetail.tsx:1015 +#: src/pages/company/SupplierPartDetail.tsx:198 +#: src/pages/company/SupplierPartDetail.tsx:399 +#: src/pages/part/PartDetail.tsx:1030 #: src/tables/bom/BomTable.tsx:444 -#: src/tables/build/BuildLineTable.tsx:222 +#: src/tables/build/BuildLineTable.tsx:223 #: src/tables/part/PartTable.tsx:108 msgid "On Order" msgstr "" @@ -2974,9 +3011,9 @@ msgstr "" #: src/components/render/Part.tsx:55 #: src/components/wizards/OrderPartsWizard.tsx:141 #: src/pages/part/PartDetail.tsx:587 -#: src/pages/part/PartDetail.tsx:1021 +#: src/pages/part/PartDetail.tsx:1036 #: src/pages/stock/StockDetail.tsx:925 -#: src/tables/part/PartTestResultTable.tsx:297 +#: src/tables/part/PartTestResultTable.tsx:305 #: src/tables/stock/StockItemTable.tsx:359 msgid "In Production" msgstr "" @@ -2987,7 +3024,7 @@ msgid "Details" msgstr "" #: src/components/render/Part.tsx:112 -#: src/components/wizards/ImportPartWizard.tsx:806 +#: src/components/wizards/ImportPartWizard.tsx:807 #: src/pages/part/PartDetail.tsx:487 #: src/tables/ColumnRenderers.tsx:233 #: src/tables/ColumnRenderers.tsx:242 @@ -3000,16 +3037,16 @@ msgstr "" #: src/components/render/Stock.tsx:114 #: src/components/render/Stock.tsx:132 #: src/forms/BuildForms.tsx:795 -#: src/forms/PurchaseOrderForms.tsx:595 +#: src/forms/PurchaseOrderForms.tsx:647 #: src/forms/StockForms.tsx:792 #: src/forms/StockForms.tsx:839 -#: src/forms/StockForms.tsx:885 -#: src/forms/StockForms.tsx:924 -#: src/forms/StockForms.tsx:960 -#: src/forms/StockForms.tsx:1003 -#: src/forms/StockForms.tsx:1047 -#: src/forms/StockForms.tsx:1095 -#: src/forms/StockForms.tsx:1139 +#: src/forms/StockForms.tsx:892 +#: src/forms/StockForms.tsx:938 +#: src/forms/StockForms.tsx:976 +#: src/forms/StockForms.tsx:1019 +#: src/forms/StockForms.tsx:1063 +#: src/forms/StockForms.tsx:1111 +#: src/forms/StockForms.tsx:1155 #: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:88 #: src/pages/core/UserDetail.tsx:158 #: src/pages/stock/StockDetail.tsx:298 @@ -3023,7 +3060,7 @@ msgstr "" #: src/components/render/Stock.tsx:99 #: src/pages/stock/StockDetail.tsx:198 #: src/pages/stock/StockDetail.tsx:930 -#: src/tables/build/BuildAllocatedStockTable.tsx:121 +#: src/tables/build/BuildAllocatedStockTable.tsx:118 #: src/tables/build/BuildOutputTable.tsx:107 #: src/tables/sales/SalesOrderAllocationTable.tsx:142 msgid "Serial Number" @@ -3034,9 +3071,9 @@ msgstr "" #: src/forms/BuildForms.tsx:240 #: src/forms/BuildForms.tsx:634 #: src/forms/BuildForms.tsx:797 -#: src/forms/PurchaseOrderForms.tsx:801 +#: src/forms/PurchaseOrderForms.tsx:853 #: src/forms/ReturnOrderForms.tsx:243 -#: src/forms/SalesOrderForms.tsx:308 +#: src/forms/SalesOrderForms.tsx:387 #: src/forms/StockForms.tsx:841 #: src/pages/part/PartStockHistoryDetail.tsx:56 #: src/pages/part/PartStockHistoryDetail.tsx:210 @@ -3046,9 +3083,9 @@ msgstr "" #: src/pages/part/pricing/PriceBreakPanel.tsx:172 #: src/pages/stock/StockDetail.tsx:258 #: src/pages/stock/StockDetail.tsx:936 -#: src/tables/build/BuildLineTable.tsx:86 +#: src/tables/build/BuildLineTable.tsx:83 #: src/tables/part/PartPurchaseOrdersTable.tsx:94 -#: src/tables/part/PartTestResultTable.tsx:269 +#: src/tables/part/PartTestResultTable.tsx:277 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:175 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:206 #: src/tables/purchasing/SupplierPriceBreakTable.tsx:69 @@ -3063,14 +3100,14 @@ msgstr "" #: src/forms/BuildForms.tsx:474 #: src/forms/StockForms.tsx:793 #: src/forms/StockForms.tsx:840 -#: src/forms/StockForms.tsx:886 -#: src/forms/StockForms.tsx:925 -#: src/forms/StockForms.tsx:961 -#: src/forms/StockForms.tsx:1004 -#: src/forms/StockForms.tsx:1048 -#: src/forms/StockForms.tsx:1096 -#: src/forms/StockForms.tsx:1140 -#: src/tables/build/BuildLineTable.tsx:96 +#: src/forms/StockForms.tsx:893 +#: src/forms/StockForms.tsx:939 +#: src/forms/StockForms.tsx:977 +#: src/forms/StockForms.tsx:1020 +#: src/forms/StockForms.tsx:1064 +#: src/forms/StockForms.tsx:1112 +#: src/forms/StockForms.tsx:1156 +#: src/tables/build/BuildLineTable.tsx:93 msgid "Batch" msgstr "" @@ -3306,10 +3343,6 @@ msgstr "" #~ msgid "Part category updated" #~ msgstr "Part category updated" -#: src/components/tables/part/PartParameterTable.tsx:41 -#~ msgid "Parameter" -#~ msgstr "Parameter" - #: src/components/tables/part/PartParameterTable.tsx:114 #~ msgid "Part parameter updated" #~ msgstr "Part parameter updated" @@ -3571,15 +3604,16 @@ msgid "Already Imported" msgstr "" #: src/components/wizards/ImportPartWizard.tsx:205 -#: src/pages/company/CompanyDetail.tsx:136 +#: src/pages/company/CompanyDetail.tsx:137 #: src/pages/company/SupplierDetail.tsx:8 -#: src/pages/company/SupplierPartDetail.tsx:130 -#: src/pages/company/SupplierPartDetail.tsx:235 -#: src/pages/company/SupplierPartDetail.tsx:364 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:156 +#: src/pages/company/SupplierPartDetail.tsx:131 +#: src/pages/company/SupplierPartDetail.tsx:236 +#: src/pages/company/SupplierPartDetail.tsx:369 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:157 #: src/tables/Filter.tsx:360 #: src/tables/company/CompanyTable.tsx:96 #: src/tables/part/PartPurchaseOrdersTable.tsx:43 +#: src/tables/purchasing/PurchaseOrderParametricTable.tsx:34 #: src/tables/purchasing/PurchaseOrderTable.tsx:109 #: src/tables/purchasing/SupplierPriceBreakTable.tsx:40 msgid "Supplier" @@ -3648,7 +3682,7 @@ msgid "Next" msgstr "" #: src/components/wizards/ImportPartWizard.tsx:540 -#: src/pages/part/PartDetail.tsx:1046 +#: src/pages/part/PartDetail.tsx:1067 #: src/tables/part/PartTable.tsx:408 msgid "Edit Part" msgstr "" @@ -3669,28 +3703,28 @@ msgstr "" msgid "Import" msgstr "" -#: src/components/wizards/ImportPartWizard.tsx:691 +#: src/components/wizards/ImportPartWizard.tsx:692 msgid "Parameters created successfully!" msgstr "" -#: src/components/wizards/ImportPartWizard.tsx:719 +#: src/components/wizards/ImportPartWizard.tsx:720 msgid "Failed to create parameters, please fix the errors and try again" msgstr "" #. placeholder {0}: supplierPart?.supplier -#: src/components/wizards/ImportPartWizard.tsx:739 +#: src/components/wizards/ImportPartWizard.tsx:740 msgid "Part imported successfully from supplier {0}." msgstr "" -#: src/components/wizards/ImportPartWizard.tsx:752 +#: src/components/wizards/ImportPartWizard.tsx:753 msgid "Open Part" msgstr "" -#: src/components/wizards/ImportPartWizard.tsx:759 +#: src/components/wizards/ImportPartWizard.tsx:760 msgid "Open Supplier Part" msgstr "" -#: src/components/wizards/ImportPartWizard.tsx:766 +#: src/components/wizards/ImportPartWizard.tsx:767 msgid "Open Manufacturer Part" msgstr "" @@ -3699,25 +3733,19 @@ msgstr "" #~ msgid "Import Part" #~ msgstr "Import Part" -#: src/components/wizards/ImportPartWizard.tsx:802 +#: src/components/wizards/ImportPartWizard.tsx:803 msgid "Import Supplier Part" msgstr "" -#: src/components/wizards/ImportPartWizard.tsx:804 +#: src/components/wizards/ImportPartWizard.tsx:805 msgid "Search Supplier Part" msgstr "" -#: src/components/wizards/ImportPartWizard.tsx:806 -#: src/pages/company/ManufacturerPartDetail.tsx:166 -#: src/pages/part/PartDetail.tsx:793 -msgid "Parameters" -msgstr "" - -#: src/components/wizards/ImportPartWizard.tsx:806 +#: src/components/wizards/ImportPartWizard.tsx:807 msgid "Confirm import" msgstr "" -#: src/components/wizards/ImportPartWizard.tsx:808 +#: src/components/wizards/ImportPartWizard.tsx:809 msgid "Done" msgstr "" @@ -3738,24 +3766,24 @@ msgid "Sales Requirements" msgstr "" #: src/components/wizards/OrderPartsWizard.tsx:129 -#: src/forms/StockForms.tsx:887 -#: src/forms/StockForms.tsx:926 -#: src/forms/StockForms.tsx:962 -#: src/forms/StockForms.tsx:1005 -#: src/forms/StockForms.tsx:1049 -#: src/forms/StockForms.tsx:1097 -#: src/forms/StockForms.tsx:1141 -#: src/pages/company/SupplierPartDetail.tsx:190 -#: src/pages/company/SupplierPartDetail.tsx:378 +#: src/forms/StockForms.tsx:894 +#: src/forms/StockForms.tsx:940 +#: src/forms/StockForms.tsx:978 +#: src/forms/StockForms.tsx:1021 +#: src/forms/StockForms.tsx:1065 +#: src/forms/StockForms.tsx:1113 +#: src/forms/StockForms.tsx:1157 +#: src/pages/company/SupplierPartDetail.tsx:191 +#: src/pages/company/SupplierPartDetail.tsx:383 #: src/pages/part/PartDetail.tsx:534 -#: src/pages/part/PartDetail.tsx:984 +#: src/pages/part/PartDetail.tsx:999 #: src/tables/Filter.tsx:92 #: src/tables/purchasing/SupplierPartTable.tsx:230 msgid "In Stock" msgstr "" #: src/components/wizards/OrderPartsWizard.tsx:146 -#: src/tables/build/BuildLineTable.tsx:404 +#: src/tables/build/BuildLineTable.tsx:405 msgid "Required Quantity" msgstr "" @@ -3847,7 +3875,7 @@ msgid "Please correct the errors in the selected parts" msgstr "" #: src/components/wizards/OrderPartsWizard.tsx:587 -#: src/tables/build/BuildLineTable.tsx:815 +#: src/tables/build/BuildLineTable.tsx:822 #: src/tables/part/PartTable.tsx:522 #: src/tables/sales/SalesOrderLineItemTable.tsx:370 msgid "Order Parts" @@ -4349,9 +4377,9 @@ msgstr "" #: src/forms/BuildForms.tsx:333 #: src/forms/BuildForms.tsx:408 #: src/forms/BuildForms.tsx:685 -#: src/tables/build/BuildAllocatedStockTable.tsx:150 +#: src/tables/build/BuildAllocatedStockTable.tsx:147 #: src/tables/build/BuildOutputTable.tsx:582 -#: src/tables/part/PartTestResultTable.tsx:272 +#: src/tables/part/PartTestResultTable.tsx:280 msgid "Build Output" msgstr "" @@ -4362,22 +4390,22 @@ msgstr "" #: src/forms/BuildForms.tsx:336 #: src/forms/BuildForms.tsx:411 #: src/forms/BuildForms.tsx:475 -#: src/forms/PurchaseOrderForms.tsx:717 +#: src/forms/PurchaseOrderForms.tsx:769 #: src/forms/ReturnOrderForms.tsx:197 #: src/forms/ReturnOrderForms.tsx:244 #: src/forms/StockForms.tsx:712 #: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:87 -#: src/pages/build/BuildDetail.tsx:222 +#: src/pages/build/BuildDetail.tsx:223 #: src/pages/core/UserDetail.tsx:151 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:168 -#: src/pages/sales/ReturnOrderDetail.tsx:135 -#: src/pages/sales/SalesOrderDetail.tsx:125 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:169 +#: src/pages/sales/ReturnOrderDetail.tsx:136 +#: src/pages/sales/SalesOrderDetail.tsx:126 #: src/pages/stock/StockDetail.tsx:170 #: src/tables/Filter.tsx:274 #: src/tables/build/BuildOutputTable.tsx:404 #: src/tables/machine/MachineListTable.tsx:387 #: src/tables/part/PartPurchaseOrdersTable.tsx:38 -#: src/tables/part/PartTestResultTable.tsx:309 +#: src/tables/part/PartTestResultTable.tsx:317 #: src/tables/sales/ReturnOrderLineItemTable.tsx:138 #: src/tables/sales/ReturnOrderLineItemTable.tsx:176 #: src/tables/settings/CustomStateTable.tsx:79 @@ -4443,18 +4471,19 @@ msgid "Build outputs have been cancelled" msgstr "" #: src/forms/BuildForms.tsx:631 -#: src/pages/build/BuildDetail.tsx:207 -#: src/pages/company/ManufacturerPartDetail.tsx:85 -#: src/pages/company/SupplierPartDetail.tsx:96 +#: src/pages/build/BuildDetail.tsx:208 +#: src/pages/company/ManufacturerPartDetail.tsx:84 +#: src/pages/company/SupplierPartDetail.tsx:97 #: src/pages/part/PartDetail.tsx:453 #: src/pages/stock/StockDetail.tsx:153 #: src/tables/bom/BomTable.tsx:134 #: src/tables/bom/UsedInTable.tsx:40 -#: src/tables/build/BuildAllocatedStockTable.tsx:108 -#: src/tables/build/BuildLineTable.tsx:336 +#: src/tables/build/BuildAllocatedStockTable.tsx:105 +#: src/tables/build/BuildLineTable.tsx:337 #: src/tables/build/BuildOrderTable.tsx:79 #: src/tables/part/PartSalesAllocationsTable.tsx:61 #: src/tables/part/RelatedPartTable.tsx:73 +#: src/tables/purchasing/ManufacturerPartParametricTable.tsx:21 #: src/tables/purchasing/ManufacturerPartTable.tsx:69 #: src/tables/purchasing/SupplierPartTable.tsx:70 #: src/tables/sales/SalesOrderAllocationTable.tsx:135 @@ -4466,47 +4495,47 @@ msgstr "" #: src/forms/BuildForms.tsx:632 #: src/forms/BuildForms.tsx:796 #: src/forms/BuildForms.tsx:897 -#: src/forms/SalesOrderForms.tsx:306 -#: src/tables/build/BuildAllocatedStockTable.tsx:139 -#: src/tables/build/BuildLineTable.tsx:182 +#: src/forms/SalesOrderForms.tsx:385 +#: src/tables/build/BuildAllocatedStockTable.tsx:136 +#: src/tables/build/BuildLineTable.tsx:183 #: src/tables/sales/SalesOrderLineItemTable.tsx:342 #: src/tables/stock/StockItemTable.tsx:338 msgid "Allocated" msgstr "" #: src/forms/BuildForms.tsx:667 -#: src/forms/SalesOrderForms.tsx:295 -#: src/pages/build/BuildDetail.tsx:108 -#: src/pages/build/BuildDetail.tsx:326 +#: src/forms/SalesOrderForms.tsx:374 +#: src/pages/build/BuildDetail.tsx:109 +#: src/pages/build/BuildDetail.tsx:327 msgid "Source Location" msgstr "" #: src/forms/BuildForms.tsx:668 -#: src/forms/SalesOrderForms.tsx:296 +#: src/forms/SalesOrderForms.tsx:375 msgid "Select the source location for the stock allocation" msgstr "اختر موقع المصدر لتخصيص المخزون" #: src/forms/BuildForms.tsx:700 -#: src/forms/SalesOrderForms.tsx:336 -#: src/tables/build/BuildLineTable.tsx:574 -#: src/tables/build/BuildLineTable.tsx:731 -#: src/tables/build/BuildLineTable.tsx:830 +#: src/forms/SalesOrderForms.tsx:415 +#: src/tables/build/BuildLineTable.tsx:575 +#: src/tables/build/BuildLineTable.tsx:738 +#: src/tables/build/BuildLineTable.tsx:837 #: src/tables/sales/SalesOrderLineItemTable.tsx:380 #: src/tables/sales/SalesOrderLineItemTable.tsx:406 msgid "Allocate Stock" msgstr "" #: src/forms/BuildForms.tsx:703 -#: src/forms/SalesOrderForms.tsx:341 +#: src/forms/SalesOrderForms.tsx:420 msgid "Stock items allocated" msgstr "تم تخصيص عناصر المخزون" #: src/forms/BuildForms.tsx:816 #: src/forms/BuildForms.tsx:917 -#: src/tables/build/BuildAllocatedStockTable.tsx:240 -#: src/tables/build/BuildAllocatedStockTable.tsx:272 -#: src/tables/build/BuildLineTable.tsx:741 -#: src/tables/build/BuildLineTable.tsx:864 +#: src/tables/build/BuildAllocatedStockTable.tsx:243 +#: src/tables/build/BuildAllocatedStockTable.tsx:279 +#: src/tables/build/BuildLineTable.tsx:748 +#: src/tables/build/BuildLineTable.tsx:871 msgid "Consume Stock" msgstr "" @@ -4521,21 +4550,21 @@ msgstr "" #~ msgstr "Stock items consumed" #: src/forms/BuildForms.tsx:853 -#: src/tables/build/BuildLineTable.tsx:514 +#: src/tables/build/BuildLineTable.tsx:515 #: src/tables/part/PartBuildAllocationsTable.tsx:101 msgid "Fully consumed" msgstr "" #: src/forms/BuildForms.tsx:898 -#: src/tables/build/BuildLineTable.tsx:187 +#: src/tables/build/BuildLineTable.tsx:188 #: src/tables/stock/StockItemTable.tsx:367 msgid "Consumed" msgstr "" -#: src/forms/CommonForms.tsx:88 -#: src/forms/PurchaseOrderForms.tsx:125 +#: src/forms/CommonForms.tsx:92 +#: src/forms/PurchaseOrderForms.tsx:176 #: src/forms/ReturnOrderForms.tsx:138 -#: src/forms/SalesOrderForms.tsx:164 +#: src/forms/SalesOrderForms.tsx:185 msgid "Select project code for this line item" msgstr "" @@ -4543,16 +4572,16 @@ msgstr "" #~ msgid "Company updated" #~ msgstr "Company updated" -#: src/forms/PartForms.tsx:85 -#: src/forms/PartForms.tsx:207 -#: src/pages/part/CategoryDetail.tsx:124 +#: src/forms/PartForms.tsx:99 +#: src/forms/PartForms.tsx:228 +#: src/pages/part/CategoryDetail.tsx:127 #: src/pages/part/PartDetail.tsx:668 #: src/tables/part/PartCategoryTable.tsx:94 #: src/tables/part/PartTable.tsx:325 msgid "Subscribed" msgstr "" -#: src/forms/PartForms.tsx:86 +#: src/forms/PartForms.tsx:100 msgid "Subscribe to notifications for this part" msgstr "" @@ -4564,40 +4593,24 @@ msgstr "" #~ msgid "Part updated" #~ msgstr "Part updated" -#: src/forms/PartForms.tsx:193 +#: src/forms/PartForms.tsx:214 msgid "Parent part category" msgstr "" -#: src/forms/PartForms.tsx:208 +#: src/forms/PartForms.tsx:229 msgid "Subscribe to notifications for this category" msgstr "" -#: src/forms/PurchaseOrderForms.tsx:388 -msgid "Assign Batch Code and Serial Numbers" -msgstr "" - -#: src/forms/PurchaseOrderForms.tsx:390 -msgid "Assign Batch Code" -msgstr "" - -#: src/forms/PurchaseOrderForms.tsx:410 -msgid "Choose Location" -msgstr "" - -#: src/forms/PurchaseOrderForms.tsx:418 -msgid "Item Destination selected" -msgstr "" - #: src/forms/PurchaseOrderForms.tsx:421 #~ msgid "Assign Batch Code{0}" #~ msgstr "Assign Batch Code{0}" -#: src/forms/PurchaseOrderForms.tsx:428 -msgid "Part category default location selected" +#: src/forms/PurchaseOrderForms.tsx:440 +msgid "Assign Batch Code and Serial Numbers" msgstr "" -#: src/forms/PurchaseOrderForms.tsx:438 -msgid "Received stock location selected" +#: src/forms/PurchaseOrderForms.tsx:442 +msgid "Assign Batch Code" msgstr "" #: src/forms/PurchaseOrderForms.tsx:444 @@ -4605,115 +4618,131 @@ msgstr "" #~ msgid "Remove item from list" #~ msgstr "Remove item from list" -#: src/forms/PurchaseOrderForms.tsx:446 +#: src/forms/PurchaseOrderForms.tsx:462 +msgid "Choose Location" +msgstr "" + +#: src/forms/PurchaseOrderForms.tsx:470 +msgid "Item Destination selected" +msgstr "" + +#: src/forms/PurchaseOrderForms.tsx:480 +msgid "Part category default location selected" +msgstr "" + +#: src/forms/PurchaseOrderForms.tsx:490 +msgid "Received stock location selected" +msgstr "" + +#: src/forms/PurchaseOrderForms.tsx:498 msgid "Default location selected" msgstr "" -#: src/forms/PurchaseOrderForms.tsx:507 +#: src/forms/PurchaseOrderForms.tsx:559 msgid "Set Location" msgstr "" -#: src/forms/PurchaseOrderForms.tsx:524 -msgid "Set Expiry Date" -msgstr "" - -#: src/forms/PurchaseOrderForms.tsx:532 -#: src/forms/StockForms.tsx:693 -msgid "Adjust Packaging" -msgstr "" - -#: src/forms/PurchaseOrderForms.tsx:540 -#: src/forms/StockForms.tsx:684 -#: src/hooks/UseStockAdjustActions.tsx:148 -msgid "Change Status" -msgstr "" - -#: src/forms/PurchaseOrderForms.tsx:546 -msgid "Add Note" -msgstr "" - #: src/forms/PurchaseOrderForms.tsx:566 #~ msgid "Serial numbers" #~ msgstr "Serial numbers" +#: src/forms/PurchaseOrderForms.tsx:576 +msgid "Set Expiry Date" +msgstr "" + #: src/forms/PurchaseOrderForms.tsx:582 #~ msgid "Store at line item destination" #~ msgstr "Store at line item destination" -#: src/forms/PurchaseOrderForms.tsx:610 -msgid "Store at default location" +#: src/forms/PurchaseOrderForms.tsx:584 +#: src/forms/StockForms.tsx:693 +msgid "Adjust Packaging" msgstr "" -#: src/forms/PurchaseOrderForms.tsx:625 -msgid "Store at line item destination " +#: src/forms/PurchaseOrderForms.tsx:592 +#: src/forms/StockForms.tsx:684 +#: src/hooks/UseStockAdjustActions.tsx:148 +msgid "Change Status" msgstr "" -#: src/forms/PurchaseOrderForms.tsx:637 -msgid "Store with already received stock" +#: src/forms/PurchaseOrderForms.tsx:598 +msgid "Add Note" msgstr "" #: src/forms/PurchaseOrderForms.tsx:658 #~ msgid "Receive line items" #~ msgstr "Receive line items" -#: src/forms/PurchaseOrderForms.tsx:661 -#: src/pages/build/BuildDetail.tsx:340 +#: src/forms/PurchaseOrderForms.tsx:662 +msgid "Store at default location" +msgstr "" + +#: src/forms/PurchaseOrderForms.tsx:677 +msgid "Store at line item destination " +msgstr "" + +#: src/forms/PurchaseOrderForms.tsx:689 +msgid "Store with already received stock" +msgstr "" + +#: src/forms/PurchaseOrderForms.tsx:713 +#: src/pages/build/BuildDetail.tsx:341 #: src/pages/stock/StockDetail.tsx:280 #: src/pages/stock/StockDetail.tsx:952 #: src/tables/Filter.tsx:83 -#: src/tables/build/BuildAllocatedStockTable.tsx:128 +#: src/tables/build/BuildAllocatedStockTable.tsx:125 #: src/tables/build/BuildOutputTable.tsx:112 -#: src/tables/part/PartTestResultTable.tsx:260 -#: src/tables/part/PartTestResultTable.tsx:281 +#: src/tables/part/PartTestResultTable.tsx:268 +#: src/tables/part/PartTestResultTable.tsx:289 #: src/tables/sales/SalesOrderAllocationTable.tsx:149 msgid "Batch Code" msgstr "" -#: src/forms/PurchaseOrderForms.tsx:662 +#: src/forms/PurchaseOrderForms.tsx:714 msgid "Enter batch code for received items" msgstr "" -#: src/forms/PurchaseOrderForms.tsx:675 +#: src/forms/PurchaseOrderForms.tsx:727 #: src/forms/StockForms.tsx:218 msgid "Serial Numbers" msgstr "" -#: src/forms/PurchaseOrderForms.tsx:676 +#: src/forms/PurchaseOrderForms.tsx:728 msgid "Enter serial numbers for received items" msgstr "" -#: src/forms/PurchaseOrderForms.tsx:690 +#: src/forms/PurchaseOrderForms.tsx:742 #: src/pages/stock/StockDetail.tsx:382 #: src/tables/stock/StockItemTable.tsx:294 msgid "Expiry Date" msgstr "" -#: src/forms/PurchaseOrderForms.tsx:691 +#: src/forms/PurchaseOrderForms.tsx:743 msgid "Enter an expiry date for received items" msgstr "" -#: src/forms/PurchaseOrderForms.tsx:703 +#: src/forms/PurchaseOrderForms.tsx:755 #: src/forms/StockForms.tsx:728 -#: src/pages/company/SupplierPartDetail.tsx:172 -#: src/pages/company/SupplierPartDetail.tsx:236 +#: src/pages/company/SupplierPartDetail.tsx:173 +#: src/pages/company/SupplierPartDetail.tsx:237 #: src/pages/stock/StockDetail.tsx:419 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:227 msgid "Packaging" msgstr "" -#: src/forms/PurchaseOrderForms.tsx:727 -#: src/pages/company/SupplierPartDetail.tsx:120 +#: src/forms/PurchaseOrderForms.tsx:779 +#: src/pages/company/SupplierPartDetail.tsx:121 #: src/tables/ColumnRenderers.tsx:332 msgid "Note" msgstr "" -#: src/forms/PurchaseOrderForms.tsx:799 -#: src/pages/company/SupplierPartDetail.tsx:138 +#: src/forms/PurchaseOrderForms.tsx:851 +#: src/pages/company/SupplierPartDetail.tsx:139 #: src/tables/purchasing/SupplierPriceBreakTable.tsx:49 msgid "SKU" msgstr "" -#: src/forms/PurchaseOrderForms.tsx:800 +#: src/forms/PurchaseOrderForms.tsx:852 #: src/tables/part/PartPurchaseOrdersTable.tsx:127 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:213 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:283 @@ -4721,11 +4750,11 @@ msgstr "" msgid "Received" msgstr "" -#: src/forms/PurchaseOrderForms.tsx:817 +#: src/forms/PurchaseOrderForms.tsx:869 msgid "Receive Line Items" msgstr "" -#: src/forms/PurchaseOrderForms.tsx:823 +#: src/forms/PurchaseOrderForms.tsx:875 msgid "Items received" msgstr "" @@ -4737,7 +4766,35 @@ msgstr "" msgid "Item received into stock" msgstr "" -#: src/forms/SalesOrderForms.tsx:401 +#: src/forms/SalesOrderForms.tsx:208 +#: src/forms/SalesOrderForms.tsx:210 +#: src/tables/sales/SalesOrderShipmentTable.tsx:215 +msgid "Check Shipment" +msgstr "" + +#: src/forms/SalesOrderForms.tsx:211 +msgid "Marking the shipment as checked indicates that you have verified that all items included in this shipment are correct" +msgstr "" + +#: src/forms/SalesOrderForms.tsx:221 +msgid "Shipment marked as checked" +msgstr "" + +#: src/forms/SalesOrderForms.tsx:236 +#: src/forms/SalesOrderForms.tsx:238 +#: src/tables/sales/SalesOrderShipmentTable.tsx:228 +msgid "Uncheck Shipment" +msgstr "" + +#: src/forms/SalesOrderForms.tsx:239 +msgid "Marking the shipment as unchecked indicates that the shipment requires further verification" +msgstr "" + +#: src/forms/SalesOrderForms.tsx:249 +msgid "Shipment marked as unchecked" +msgstr "" + +#: src/forms/SalesOrderForms.tsx:480 msgid "Leave blank to use the order address" msgstr "" @@ -4792,150 +4849,150 @@ msgstr "" msgid "Return" msgstr "" -#: src/forms/StockForms.tsx:963 +#: src/forms/StockForms.tsx:979 #: src/pages/Index/Scan.tsx:182 msgid "Count" msgstr "" -#: src/forms/StockForms.tsx:1246 +#: src/forms/StockForms.tsx:1262 #: src/hooks/UseStockAdjustActions.tsx:108 msgid "Add Stock" msgstr "" -#: src/forms/StockForms.tsx:1247 +#: src/forms/StockForms.tsx:1263 msgid "Stock added" msgstr "" -#: src/forms/StockForms.tsx:1250 +#: src/forms/StockForms.tsx:1266 msgid "Increase the quantity of the selected stock items by a given amount." msgstr "" -#: src/forms/StockForms.tsx:1261 +#: src/forms/StockForms.tsx:1277 #: src/hooks/UseStockAdjustActions.tsx:118 msgid "Remove Stock" msgstr "" -#: src/forms/StockForms.tsx:1262 +#: src/forms/StockForms.tsx:1278 msgid "Stock removed" msgstr "" -#: src/forms/StockForms.tsx:1265 +#: src/forms/StockForms.tsx:1281 msgid "Decrease the quantity of the selected stock items by a given amount." msgstr "" -#: src/forms/StockForms.tsx:1276 +#: src/forms/StockForms.tsx:1292 #: src/hooks/UseStockAdjustActions.tsx:128 msgid "Transfer Stock" msgstr "" -#: src/forms/StockForms.tsx:1277 +#: src/forms/StockForms.tsx:1293 msgid "Stock transferred" msgstr "" -#: src/forms/StockForms.tsx:1280 +#: src/forms/StockForms.tsx:1296 msgid "Transfer selected items to the specified location." msgstr "" -#: src/forms/StockForms.tsx:1291 +#: src/forms/StockForms.tsx:1307 #: src/hooks/UseStockAdjustActions.tsx:168 msgid "Return Stock" msgstr "" -#: src/forms/StockForms.tsx:1292 +#: src/forms/StockForms.tsx:1308 msgid "Stock returned" msgstr "" -#: src/forms/StockForms.tsx:1295 +#: src/forms/StockForms.tsx:1311 msgid "Return selected items into stock, to the specified location." msgstr "" -#: src/forms/StockForms.tsx:1306 +#: src/forms/StockForms.tsx:1322 #: src/hooks/UseStockAdjustActions.tsx:98 msgid "Count Stock" msgstr "" -#: src/forms/StockForms.tsx:1307 +#: src/forms/StockForms.tsx:1323 msgid "Stock counted" msgstr "" -#: src/forms/StockForms.tsx:1310 +#: src/forms/StockForms.tsx:1326 msgid "Count the selected stock items, and adjust the quantity accordingly." msgstr "" -#: src/forms/StockForms.tsx:1321 +#: src/forms/StockForms.tsx:1337 msgid "Change Stock Status" msgstr "" -#: src/forms/StockForms.tsx:1322 +#: src/forms/StockForms.tsx:1338 msgid "Stock status changed" msgstr "" -#: src/forms/StockForms.tsx:1325 +#: src/forms/StockForms.tsx:1341 msgid "Change the status of the selected stock items." msgstr "" -#: src/forms/StockForms.tsx:1336 +#: src/forms/StockForms.tsx:1352 #: src/hooks/UseStockAdjustActions.tsx:138 msgid "Merge Stock" msgstr "" -#: src/forms/StockForms.tsx:1337 +#: src/forms/StockForms.tsx:1353 msgid "Stock merged" msgstr "" -#: src/forms/StockForms.tsx:1339 +#: src/forms/StockForms.tsx:1355 msgid "Merge Stock Items" msgstr "" -#: src/forms/StockForms.tsx:1341 +#: src/forms/StockForms.tsx:1357 msgid "Merge operation cannot be reversed" msgstr "" -#: src/forms/StockForms.tsx:1342 +#: src/forms/StockForms.tsx:1358 msgid "Tracking information may be lost when merging items" msgstr "" -#: src/forms/StockForms.tsx:1343 +#: src/forms/StockForms.tsx:1359 msgid "Supplier information may be lost when merging items" msgstr "" -#: src/forms/StockForms.tsx:1361 +#: src/forms/StockForms.tsx:1377 msgid "Assign Stock to Customer" msgstr "" -#: src/forms/StockForms.tsx:1362 +#: src/forms/StockForms.tsx:1378 msgid "Stock assigned to customer" msgstr "" -#: src/forms/StockForms.tsx:1372 +#: src/forms/StockForms.tsx:1388 msgid "Delete Stock Items" msgstr "" -#: src/forms/StockForms.tsx:1373 +#: src/forms/StockForms.tsx:1389 msgid "Stock deleted" msgstr "" -#: src/forms/StockForms.tsx:1376 +#: src/forms/StockForms.tsx:1392 msgid "This operation will permanently delete the selected stock items." msgstr "" -#: src/forms/StockForms.tsx:1385 +#: src/forms/StockForms.tsx:1401 msgid "Parent stock location" msgstr "" -#: src/forms/StockForms.tsx:1512 +#: src/forms/StockForms.tsx:1528 msgid "Find Serial Number" msgstr "" -#: src/forms/StockForms.tsx:1523 +#: src/forms/StockForms.tsx:1539 msgid "No matching items" msgstr "" -#: src/forms/StockForms.tsx:1529 +#: src/forms/StockForms.tsx:1545 msgid "Multiple matching items" msgstr "" -#: src/forms/StockForms.tsx:1538 +#: src/forms/StockForms.tsx:1554 msgid "Invalid response from server" msgstr "" @@ -4953,7 +5010,6 @@ msgstr "" #: src/tables/FilterSelectDrawer.tsx:137 #: src/tables/FilterSelectDrawer.tsx:149 #: src/tables/part/PartTestResultTable.tsx:206 -#: src/tables/purchasing/ManufacturerPartParameterTable.tsx:42 #: src/tables/stock/StockItemTestResultTable.tsx:207 msgid "Value" msgstr "" @@ -5244,7 +5300,7 @@ msgid "Delete selected stock items" msgstr "" #: src/hooks/UseStockAdjustActions.tsx:205 -#: src/pages/part/PartDetail.tsx:1137 +#: src/pages/part/PartDetail.tsx:1158 msgid "Stock Actions" msgstr "" @@ -5932,6 +5988,9 @@ msgstr "" #: src/pages/Index/Settings/AccountSettings/MFASettings.tsx:310 #: src/pages/Index/Settings/AccountSettings/MFASettings.tsx:401 +#: src/tables/build/BuildAllocatedStockTable.tsx:181 +#: src/tables/build/BuildLineTable.tsx:668 +#: src/tables/sales/SalesOrderAllocationTable.tsx:220 msgid "Confirm Removal" msgstr "" @@ -6394,30 +6453,34 @@ msgid "Email Messages" msgstr "" #: src/pages/Index/Settings/AdminCenter/HomePanel.tsx:22 -msgid "Active Alerts" -msgstr "" +#~ msgid "Active Alerts" +#~ msgstr "Active Alerts" #: src/pages/Index/Settings/AdminCenter/HomePanel.tsx:27 -msgid "Inactive Alerts" +#~ msgid "Inactive Alerts" +#~ msgstr "Inactive Alerts" + +#: src/pages/Index/Settings/AdminCenter/HomePanel.tsx:36 +msgid "System Status" msgstr "" -#: src/pages/Index/Settings/AdminCenter/HomePanel.tsx:38 +#: src/pages/Index/Settings/AdminCenter/HomePanel.tsx:47 msgid "Admin Center Information" msgstr "" -#: src/pages/Index/Settings/AdminCenter/HomePanel.tsx:44 +#: src/pages/Index/Settings/AdminCenter/HomePanel.tsx:53 msgid "The home panel (and the whole Admin Center) is a new feature starting with the new UI and was previously (before 1.0) not available." msgstr "" -#: src/pages/Index/Settings/AdminCenter/HomePanel.tsx:51 +#: src/pages/Index/Settings/AdminCenter/HomePanel.tsx:60 msgid "The admin center provides a centralized location for all administration functionality and is meant to replace all interaction with the (django) backend admin interface." msgstr "" -#: src/pages/Index/Settings/AdminCenter/HomePanel.tsx:58 +#: src/pages/Index/Settings/AdminCenter/HomePanel.tsx:67 msgid "Please open feature requests (after checking the tracker) for any existing backend admin functionality you are missing in this UI. The backend admin interface should be used carefully and seldom." msgstr "" -#: src/pages/Index/Settings/AdminCenter/HomePanel.tsx:76 +#: src/pages/Index/Settings/AdminCenter/HomePanel.tsx:85 msgid "Quick Actions" msgstr "" @@ -6476,11 +6539,11 @@ msgstr "" #: src/pages/Index/Settings/AdminCenter/Index.tsx:195 #: src/pages/part/CategoryDetail.tsx:313 -msgid "Part Parameters" -msgstr "" +#~ msgid "Part Parameters" +#~ msgstr "Part Parameters" #: src/pages/Index/Settings/AdminCenter/Index.tsx:202 -#: src/pages/part/CategoryDetail.tsx:306 +#: src/pages/part/CategoryDetail.tsx:329 msgid "Category Parameters" msgstr "" @@ -6494,7 +6557,7 @@ msgstr "" #: src/pages/Index/Settings/AdminCenter/Index.tsx:235 #: src/pages/Index/Settings/AdminCenter/MachineManagementPanel.tsx:52 -#: src/tables/machine/MachineTypeTable.tsx:325 +#: src/tables/machine/MachineTypeTable.tsx:323 msgid "Machines" msgstr "" @@ -6507,8 +6570,8 @@ msgid "Data Management" msgstr "" #: src/pages/Index/Settings/AdminCenter/Index.tsx:270 -#: src/pages/Index/Settings/SystemSettings.tsx:175 -#: src/pages/Index/Settings/UserSettings.tsx:118 +#: src/pages/Index/Settings/SystemSettings.tsx:176 +#: src/pages/Index/Settings/UserSettings.tsx:119 msgid "Reporting" msgstr "" @@ -6709,11 +6772,11 @@ msgstr "" msgid "The settings below are specific to each available plugin" msgstr "" -#: src/pages/Index/Settings/SystemSettings.tsx:77 +#: src/pages/Index/Settings/SystemSettings.tsx:78 msgid "Authentication" msgstr "" -#: src/pages/Index/Settings/SystemSettings.tsx:103 +#: src/pages/Index/Settings/SystemSettings.tsx:104 msgid "Barcodes" msgstr "" @@ -6725,12 +6788,12 @@ msgstr "" #~ msgid "This panel is a placeholder." #~ msgstr "This panel is a placeholder." -#: src/pages/Index/Settings/SystemSettings.tsx:127 -#: src/pages/Index/Settings/UserSettings.tsx:112 +#: src/pages/Index/Settings/SystemSettings.tsx:128 +#: src/pages/Index/Settings/UserSettings.tsx:113 msgid "The settings below are specific to each available notification method" msgstr "" -#: src/pages/Index/Settings/SystemSettings.tsx:133 +#: src/pages/Index/Settings/SystemSettings.tsx:134 msgid "Pricing" msgstr "" @@ -6738,7 +6801,7 @@ msgstr "" #~ msgid "Exchange Rates" #~ msgstr "Exchange Rates" -#: src/pages/Index/Settings/SystemSettings.tsx:169 +#: src/pages/Index/Settings/SystemSettings.tsx:170 msgid "Labels" msgstr "" @@ -6790,15 +6853,15 @@ msgstr "" #~ msgid "Delete notifications" #~ msgstr "Delete notifications" -#: src/pages/build/BuildDetail.tsx:69 +#: src/pages/build/BuildDetail.tsx:70 msgid "No Required Items" msgstr "" -#: src/pages/build/BuildDetail.tsx:71 +#: src/pages/build/BuildDetail.tsx:72 msgid "This build order does not have any required items." msgstr "" -#: src/pages/build/BuildDetail.tsx:72 +#: src/pages/build/BuildDetail.tsx:73 msgid "The assembled part may not have a Bill of Materials (BOM) defined, or the BOM is empty." msgstr "" @@ -6826,7 +6889,7 @@ msgstr "" #~ msgid "Build Order updated" #~ msgstr "Build Order updated" -#: src/pages/build/BuildDetail.tsx:215 +#: src/pages/build/BuildDetail.tsx:216 #: src/pages/part/PartDetail.tsx:480 #: src/pages/stock/StockDetail.tsx:161 #: src/tables/bom/UsedInTable.tsx:44 @@ -6843,10 +6906,10 @@ msgstr "" #~ msgid "Duplicate build order" #~ msgstr "Duplicate build order" -#: src/pages/build/BuildDetail.tsx:228 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:174 -#: src/pages/sales/ReturnOrderDetail.tsx:141 -#: src/pages/sales/SalesOrderDetail.tsx:131 +#: src/pages/build/BuildDetail.tsx:229 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:175 +#: src/pages/sales/ReturnOrderDetail.tsx:142 +#: src/pages/sales/SalesOrderDetail.tsx:132 #: src/pages/stock/StockDetail.tsx:176 msgid "Custom Status" msgstr "" @@ -6855,9 +6918,9 @@ msgstr "" #~ msgid "Delete build order" #~ msgstr "Delete build order" -#: src/pages/build/BuildDetail.tsx:237 -#: src/pages/build/BuildDetail.tsx:723 -#: src/pages/build/BuildIndex.tsx:28 +#: src/pages/build/BuildDetail.tsx:238 +#: src/pages/build/BuildDetail.tsx:728 +#: src/pages/build/BuildIndex.tsx:34 #: src/pages/stock/LocationDetail.tsx:140 #: src/tables/build/BuildOrderTable.tsx:123 #: src/tables/build/BuildOrderTable.tsx:183 @@ -6865,57 +6928,57 @@ msgstr "" msgid "External" msgstr "" -#: src/pages/build/BuildDetail.tsx:244 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:141 -#: src/pages/sales/ReturnOrderDetail.tsx:108 -#: src/pages/sales/SalesOrderDetail.tsx:98 +#: src/pages/build/BuildDetail.tsx:245 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:142 +#: src/pages/sales/ReturnOrderDetail.tsx:109 +#: src/pages/sales/SalesOrderDetail.tsx:99 #: src/tables/ColumnRenderers.tsx:321 -#: src/tables/build/BuildAllocatedStockTable.tsx:115 -#: src/tables/build/BuildLineTable.tsx:352 +#: src/tables/build/BuildAllocatedStockTable.tsx:112 +#: src/tables/build/BuildLineTable.tsx:353 msgid "Reference" msgstr "" -#: src/pages/build/BuildDetail.tsx:258 +#: src/pages/build/BuildDetail.tsx:259 msgid "Parent Build" msgstr "" -#: src/pages/build/BuildDetail.tsx:269 +#: src/pages/build/BuildDetail.tsx:270 msgid "Build Quantity" msgstr "" -#: src/pages/build/BuildDetail.tsx:275 +#: src/pages/build/BuildDetail.tsx:276 #: src/pages/part/PartDetail.tsx:598 #: src/tables/bom/BomTable.tsx:365 #: src/tables/bom/BomTable.tsx:407 msgid "Can Build" msgstr "" -#: src/pages/build/BuildDetail.tsx:284 -#: src/pages/build/BuildDetail.tsx:474 +#: src/pages/build/BuildDetail.tsx:285 +#: src/pages/build/BuildDetail.tsx:475 msgid "Completed Outputs" msgstr "" -#: src/pages/build/BuildDetail.tsx:301 +#: src/pages/build/BuildDetail.tsx:302 #: src/tables/Filter.tsx:381 #: src/tables/build/BuildOrderTable.tsx:143 msgid "Issued By" msgstr "" -#: src/pages/build/BuildDetail.tsx:309 +#: src/pages/build/BuildDetail.tsx:310 #: src/pages/part/PartDetail.tsx:691 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:261 -#: src/pages/sales/ReturnOrderDetail.tsx:239 -#: src/pages/sales/SalesOrderDetail.tsx:232 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:262 +#: src/pages/sales/ReturnOrderDetail.tsx:240 +#: src/pages/sales/SalesOrderDetail.tsx:233 #: src/tables/ColumnRenderers.tsx:464 #: src/tables/Filter.tsx:319 msgid "Responsible" msgstr "" -#: src/pages/build/BuildDetail.tsx:327 +#: src/pages/build/BuildDetail.tsx:328 msgid "Any location" msgstr "" -#: src/pages/build/BuildDetail.tsx:334 +#: src/pages/build/BuildDetail.tsx:335 msgid "Destination Location" msgstr "" @@ -6924,24 +6987,24 @@ msgstr "" #~ msgid "Test Statistics" #~ msgstr "Test Statistics" -#: src/pages/build/BuildDetail.tsx:350 +#: src/pages/build/BuildDetail.tsx:351 #: src/tables/settings/ApiTokenTable.tsx:97 #: src/tables/settings/PendingTasksTable.tsx:41 msgid "Created" msgstr "" -#: src/pages/build/BuildDetail.tsx:358 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:286 -#: src/pages/sales/ReturnOrderDetail.tsx:265 -#: src/pages/sales/SalesOrderDetail.tsx:257 +#: src/pages/build/BuildDetail.tsx:359 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:287 +#: src/pages/sales/ReturnOrderDetail.tsx:266 +#: src/pages/sales/SalesOrderDetail.tsx:258 #: src/tables/ColumnRenderers.tsx:486 msgid "Start Date" msgstr "" -#: src/pages/build/BuildDetail.tsx:366 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:294 -#: src/pages/sales/ReturnOrderDetail.tsx:273 -#: src/pages/sales/SalesOrderDetail.tsx:265 +#: src/pages/build/BuildDetail.tsx:367 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:295 +#: src/pages/sales/ReturnOrderDetail.tsx:274 +#: src/pages/sales/SalesOrderDetail.tsx:266 #: src/tables/ColumnRenderers.tsx:494 #: src/tables/part/PartPurchaseOrdersTable.tsx:101 #: src/tables/sales/ReturnOrderLineItemTable.tsx:154 @@ -6954,185 +7017,185 @@ msgstr "" #~ msgstr "Reporting Actions" #: src/pages/build/BuildDetail.tsx:374 +#~ msgid "Print build report" +#~ msgstr "Print build report" + +#: src/pages/build/BuildDetail.tsx:375 #: src/tables/build/BuildOrderTable.tsx:93 #: src/tables/sales/SalesOrderLineItemTable.tsx:347 msgid "Completed" msgstr "" -#: src/pages/build/BuildDetail.tsx:374 -#~ msgid "Print build report" -#~ msgstr "Print build report" - -#: src/pages/build/BuildDetail.tsx:410 +#: src/pages/build/BuildDetail.tsx:411 msgid "Build Details" msgstr "" -#: src/pages/build/BuildDetail.tsx:416 +#: src/pages/build/BuildDetail.tsx:417 msgid "Required Parts" msgstr "" -#: src/pages/build/BuildDetail.tsx:428 -#: src/pages/sales/SalesOrderDetail.tsx:407 -#: src/pages/sales/SalesOrderShipmentDetail.tsx:261 +#: src/pages/build/BuildDetail.tsx:429 +#: src/pages/sales/SalesOrderDetail.tsx:408 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:259 #: src/tables/part/PartSalesAllocationsTable.tsx:73 msgid "Allocated Stock" msgstr "" -#: src/pages/build/BuildDetail.tsx:444 +#: src/pages/build/BuildDetail.tsx:445 msgid "Consumed Stock" msgstr "" -#: src/pages/build/BuildDetail.tsx:461 +#: src/pages/build/BuildDetail.tsx:462 msgid "Incomplete Outputs" msgstr "" -#: src/pages/build/BuildDetail.tsx:489 +#: src/pages/build/BuildDetail.tsx:490 msgid "External Orders" msgstr "" -#: src/pages/build/BuildDetail.tsx:503 +#: src/pages/build/BuildDetail.tsx:504 msgid "Child Build Orders" msgstr "" -#: src/pages/build/BuildDetail.tsx:513 -#: src/pages/part/PartDetail.tsx:937 +#: src/pages/build/BuildDetail.tsx:514 +#: src/pages/part/PartDetail.tsx:926 #: src/pages/stock/StockDetail.tsx:587 #: src/tables/build/BuildOutputTable.tsx:654 #: src/tables/stock/StockItemTestResultTable.tsx:173 msgid "Test Results" msgstr "" -#: src/pages/build/BuildDetail.tsx:550 +#: src/pages/build/BuildDetail.tsx:555 msgid "Edit Build Order" msgstr "" -#: src/pages/build/BuildDetail.tsx:572 +#: src/pages/build/BuildDetail.tsx:577 #: src/tables/build/BuildOrderTable.tsx:207 #: src/tables/build/BuildOrderTable.tsx:223 msgid "Add Build Order" msgstr "" -#: src/pages/build/BuildDetail.tsx:582 +#: src/pages/build/BuildDetail.tsx:587 msgid "Cancel Build Order" msgstr "" -#: src/pages/build/BuildDetail.tsx:584 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:416 -#: src/pages/sales/ReturnOrderDetail.tsx:427 -#: src/pages/sales/SalesOrderDetail.tsx:454 +#: src/pages/build/BuildDetail.tsx:589 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:421 +#: src/pages/sales/ReturnOrderDetail.tsx:432 +#: src/pages/sales/SalesOrderDetail.tsx:459 msgid "Order cancelled" msgstr "" -#: src/pages/build/BuildDetail.tsx:585 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:415 -#: src/pages/sales/ReturnOrderDetail.tsx:426 -#: src/pages/sales/SalesOrderDetail.tsx:453 +#: src/pages/build/BuildDetail.tsx:590 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:420 +#: src/pages/sales/ReturnOrderDetail.tsx:431 +#: src/pages/sales/SalesOrderDetail.tsx:458 msgid "Cancel this order" msgstr "" -#: src/pages/build/BuildDetail.tsx:594 +#: src/pages/build/BuildDetail.tsx:599 msgid "Hold Build Order" msgstr "" -#: src/pages/build/BuildDetail.tsx:596 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:423 -#: src/pages/sales/ReturnOrderDetail.tsx:434 -#: src/pages/sales/SalesOrderDetail.tsx:461 +#: src/pages/build/BuildDetail.tsx:601 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:428 +#: src/pages/sales/ReturnOrderDetail.tsx:439 +#: src/pages/sales/SalesOrderDetail.tsx:466 msgid "Place this order on hold" msgstr "" -#: src/pages/build/BuildDetail.tsx:597 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:424 -#: src/pages/sales/ReturnOrderDetail.tsx:435 -#: src/pages/sales/SalesOrderDetail.tsx:462 +#: src/pages/build/BuildDetail.tsx:602 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:429 +#: src/pages/sales/ReturnOrderDetail.tsx:440 +#: src/pages/sales/SalesOrderDetail.tsx:467 msgid "Order placed on hold" msgstr "" -#: src/pages/build/BuildDetail.tsx:602 +#: src/pages/build/BuildDetail.tsx:607 msgid "Issue Build Order" msgstr "" -#: src/pages/build/BuildDetail.tsx:604 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:407 -#: src/pages/sales/ReturnOrderDetail.tsx:418 -#: src/pages/sales/SalesOrderDetail.tsx:445 +#: src/pages/build/BuildDetail.tsx:609 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:412 +#: src/pages/sales/ReturnOrderDetail.tsx:423 +#: src/pages/sales/SalesOrderDetail.tsx:450 msgid "Issue this order" msgstr "" -#: src/pages/build/BuildDetail.tsx:605 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:408 -#: src/pages/sales/ReturnOrderDetail.tsx:419 -#: src/pages/sales/SalesOrderDetail.tsx:446 +#: src/pages/build/BuildDetail.tsx:610 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:413 +#: src/pages/sales/ReturnOrderDetail.tsx:424 +#: src/pages/sales/SalesOrderDetail.tsx:451 msgid "Order issued" msgstr "" -#: src/pages/build/BuildDetail.tsx:624 +#: src/pages/build/BuildDetail.tsx:629 msgid "Complete Build Order" msgstr "" -#: src/pages/build/BuildDetail.tsx:630 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:436 -#: src/pages/sales/ReturnOrderDetail.tsx:442 -#: src/pages/sales/SalesOrderDetail.tsx:480 +#: src/pages/build/BuildDetail.tsx:635 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:441 +#: src/pages/sales/ReturnOrderDetail.tsx:447 +#: src/pages/sales/SalesOrderDetail.tsx:485 msgid "Mark this order as complete" msgstr "" -#: src/pages/build/BuildDetail.tsx:633 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:430 -#: src/pages/sales/ReturnOrderDetail.tsx:443 -#: src/pages/sales/SalesOrderDetail.tsx:481 +#: src/pages/build/BuildDetail.tsx:638 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:435 +#: src/pages/sales/ReturnOrderDetail.tsx:448 +#: src/pages/sales/SalesOrderDetail.tsx:486 msgid "Order completed" msgstr "" -#: src/pages/build/BuildDetail.tsx:660 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:459 -#: src/pages/sales/ReturnOrderDetail.tsx:470 -#: src/pages/sales/SalesOrderDetail.tsx:516 +#: src/pages/build/BuildDetail.tsx:665 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:464 +#: src/pages/sales/ReturnOrderDetail.tsx:475 +#: src/pages/sales/SalesOrderDetail.tsx:521 msgid "Issue Order" msgstr "" -#: src/pages/build/BuildDetail.tsx:667 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:466 -#: src/pages/sales/ReturnOrderDetail.tsx:477 -#: src/pages/sales/SalesOrderDetail.tsx:530 +#: src/pages/build/BuildDetail.tsx:672 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:471 +#: src/pages/sales/ReturnOrderDetail.tsx:482 +#: src/pages/sales/SalesOrderDetail.tsx:535 msgid "Complete Order" msgstr "" -#: src/pages/build/BuildDetail.tsx:686 +#: src/pages/build/BuildDetail.tsx:691 msgid "Build Order Actions" msgstr "" -#: src/pages/build/BuildDetail.tsx:691 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:489 -#: src/pages/sales/ReturnOrderDetail.tsx:500 -#: src/pages/sales/SalesOrderDetail.tsx:554 +#: src/pages/build/BuildDetail.tsx:696 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:494 +#: src/pages/sales/ReturnOrderDetail.tsx:505 +#: src/pages/sales/SalesOrderDetail.tsx:559 msgid "Edit order" msgstr "" -#: src/pages/build/BuildDetail.tsx:695 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:497 -#: src/pages/sales/ReturnOrderDetail.tsx:506 -#: src/pages/sales/SalesOrderDetail.tsx:559 -msgid "Duplicate order" -msgstr "" - -#: src/pages/build/BuildDetail.tsx:699 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:500 +#: src/pages/build/BuildDetail.tsx:700 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:502 #: src/pages/sales/ReturnOrderDetail.tsx:511 -#: src/pages/sales/SalesOrderDetail.tsx:562 -msgid "Hold order" +#: src/pages/sales/SalesOrderDetail.tsx:564 +msgid "Duplicate order" msgstr "" #: src/pages/build/BuildDetail.tsx:704 #: src/pages/purchasing/PurchaseOrderDetail.tsx:505 #: src/pages/sales/ReturnOrderDetail.tsx:516 #: src/pages/sales/SalesOrderDetail.tsx:567 +msgid "Hold order" +msgstr "" + +#: src/pages/build/BuildDetail.tsx:709 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:510 +#: src/pages/sales/ReturnOrderDetail.tsx:521 +#: src/pages/sales/SalesOrderDetail.tsx:572 msgid "Cancel order" msgstr "" -#: src/pages/build/BuildDetail.tsx:742 +#: src/pages/build/BuildDetail.tsx:747 #: src/pages/stock/StockDetail.tsx:344 -#: src/tables/build/BuildAllocatedStockTable.tsx:85 +#: src/tables/build/BuildAllocatedStockTable.tsx:82 #: src/tables/part/PartBuildAllocationsTable.tsx:45 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:157 #: src/tables/stock/StockTrackingTable.tsx:109 @@ -7143,7 +7206,7 @@ msgstr "" #~ msgid "Build order created" #~ msgstr "Build order created" -#: src/pages/build/BuildIndex.tsx:29 +#: src/pages/build/BuildIndex.tsx:35 #: src/tables/build/BuildOrderTable.tsx:184 msgid "Show external build orders" msgstr "" @@ -7152,61 +7215,82 @@ msgstr "" #~ msgid "New Build Order" #~ msgstr "New Build Order" -#: src/pages/build/BuildIndex.tsx:83 -#: src/pages/purchasing/PurchasingIndex.tsx:69 -#: src/pages/sales/SalesIndex.tsx:92 -#: src/pages/sales/SalesIndex.tsx:125 +#: src/pages/build/BuildIndex.tsx:74 +#: src/pages/part/CategoryDetail.tsx:292 +#: src/pages/purchasing/PurchasingIndex.tsx:74 +#: src/pages/purchasing/PurchasingIndex.tsx:107 +#: src/pages/purchasing/PurchasingIndex.tsx:135 +#: src/pages/purchasing/PurchasingIndex.tsx:156 +#: src/pages/purchasing/PurchasingIndex.tsx:184 +#: src/pages/sales/SalesIndex.tsx:61 +#: src/pages/sales/SalesIndex.tsx:107 +#: src/pages/sales/SalesIndex.tsx:140 msgid "Table View" msgstr "" -#: src/pages/build/BuildIndex.tsx:86 -#: src/pages/purchasing/PurchasingIndex.tsx:72 -#: src/pages/sales/SalesIndex.tsx:95 -#: src/pages/sales/SalesIndex.tsx:128 +#: src/pages/build/BuildIndex.tsx:80 +#: src/pages/purchasing/PurchasingIndex.tsx:80 +#: src/pages/sales/SalesIndex.tsx:67 +#: src/pages/sales/SalesIndex.tsx:113 msgid "Calendar View" msgstr "" -#: src/pages/company/CompanyDetail.tsx:99 +#: src/pages/build/BuildIndex.tsx:86 +#: src/pages/part/CategoryDetail.tsx:306 +#: src/pages/purchasing/PurchasingIndex.tsx:92 +#: src/pages/purchasing/PurchasingIndex.tsx:118 +#: src/pages/purchasing/PurchasingIndex.tsx:141 +#: src/pages/purchasing/PurchasingIndex.tsx:167 +#: src/pages/purchasing/PurchasingIndex.tsx:190 +#: src/pages/sales/SalesIndex.tsx:79 +#: src/pages/sales/SalesIndex.tsx:125 +#: src/pages/sales/SalesIndex.tsx:151 +msgid "Parametric View" +msgstr "" + +#: src/pages/company/CompanyDetail.tsx:100 msgid "Website" msgstr "" -#: src/pages/company/CompanyDetail.tsx:107 +#: src/pages/company/CompanyDetail.tsx:108 msgid "Phone Number" msgstr "" -#: src/pages/company/CompanyDetail.tsx:114 +#: src/pages/company/CompanyDetail.tsx:115 msgid "Email Address" msgstr "" -#: src/pages/company/CompanyDetail.tsx:121 +#: src/pages/company/CompanyDetail.tsx:122 msgid "Tax ID" msgstr "" -#: src/pages/company/CompanyDetail.tsx:131 +#: src/pages/company/CompanyDetail.tsx:132 msgid "Default Currency" msgstr "" -#: src/pages/company/CompanyDetail.tsx:142 +#: src/pages/company/CompanyDetail.tsx:143 #: src/pages/company/ManufacturerDetail.tsx:8 -#: src/pages/company/ManufacturerPartDetail.tsx:104 -#: src/pages/company/ManufacturerPartDetail.tsx:280 -#: src/pages/company/SupplierPartDetail.tsx:152 +#: src/pages/company/ManufacturerPartDetail.tsx:103 +#: src/pages/company/ManufacturerPartDetail.tsx:271 +#: src/pages/company/SupplierPartDetail.tsx:153 #: src/tables/Filter.tsx:347 #: src/tables/company/CompanyTable.tsx:101 #: src/tables/purchasing/SupplierPartTable.tsx:89 msgid "Manufacturer" msgstr "" -#: src/pages/company/CompanyDetail.tsx:148 +#: src/pages/company/CompanyDetail.tsx:149 #: src/pages/company/CustomerDetail.tsx:8 #: src/pages/part/pricing/SaleHistoryPanel.tsx:31 -#: src/pages/sales/ReturnOrderDetail.tsx:123 -#: src/pages/sales/SalesOrderDetail.tsx:113 -#: src/pages/sales/SalesOrderShipmentDetail.tsx:113 +#: src/pages/sales/ReturnOrderDetail.tsx:124 +#: src/pages/sales/SalesOrderDetail.tsx:114 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:111 #: src/pages/stock/StockDetail.tsx:370 #: src/tables/company/CompanyTable.tsx:106 +#: src/tables/sales/ReturnOrderParametricTable.tsx:32 #: src/tables/sales/ReturnOrderTable.tsx:108 -#: src/tables/sales/SalesOrderShipmentTable.tsx:111 +#: src/tables/sales/SalesOrderParametricTable.tsx:32 +#: src/tables/sales/SalesOrderShipmentTable.tsx:132 #: src/tables/sales/SalesOrderTable.tsx:133 #: src/tables/stock/StockTrackingTable.tsx:153 msgid "Customer" @@ -7216,11 +7300,11 @@ msgstr "" #~ msgid "Edit company" #~ msgstr "Edit company" -#: src/pages/company/CompanyDetail.tsx:181 +#: src/pages/company/CompanyDetail.tsx:182 msgid "Company Details" msgstr "" -#: src/pages/company/CompanyDetail.tsx:187 +#: src/pages/company/CompanyDetail.tsx:188 msgid "Supplied Parts" msgstr "" @@ -7228,79 +7312,79 @@ msgstr "" #~ msgid "Delete company" #~ msgstr "Delete company" -#: src/pages/company/CompanyDetail.tsx:194 +#: src/pages/company/CompanyDetail.tsx:195 msgid "Manufactured Parts" msgstr "" -#: src/pages/company/CompanyDetail.tsx:241 +#: src/pages/company/CompanyDetail.tsx:242 msgid "Assigned Stock" msgstr "" -#: src/pages/company/CompanyDetail.tsx:282 +#: src/pages/company/CompanyDetail.tsx:287 #: src/tables/company/CompanyTable.tsx:82 msgid "Edit Company" msgstr "" -#: src/pages/company/CompanyDetail.tsx:290 +#: src/pages/company/CompanyDetail.tsx:295 msgid "Delete Company" msgstr "" -#: src/pages/company/CompanyDetail.tsx:305 +#: src/pages/company/CompanyDetail.tsx:310 msgid "Company Actions" msgstr "" -#: src/pages/company/ManufacturerPartDetail.tsx:78 -#: src/pages/company/SupplierPartDetail.tsx:89 +#: src/pages/company/ManufacturerPartDetail.tsx:77 +#: src/pages/company/SupplierPartDetail.tsx:90 msgid "Internal Part" msgstr "" -#: src/pages/company/ManufacturerPartDetail.tsx:112 +#: src/pages/company/ManufacturerPartDetail.tsx:111 msgid "Manufacturer Part Number" msgstr "" -#: src/pages/company/ManufacturerPartDetail.tsx:129 -#: src/pages/company/SupplierPartDetail.tsx:113 +#: src/pages/company/ManufacturerPartDetail.tsx:128 +#: src/pages/company/SupplierPartDetail.tsx:114 msgid "External Link" msgstr "" -#: src/pages/company/ManufacturerPartDetail.tsx:148 -#: src/pages/company/SupplierPartDetail.tsx:232 +#: src/pages/company/ManufacturerPartDetail.tsx:147 +#: src/pages/company/SupplierPartDetail.tsx:233 #: src/pages/part/PartDetail.tsx:787 msgid "Part Details" msgstr "" -#: src/pages/company/ManufacturerPartDetail.tsx:151 +#: src/pages/company/ManufacturerPartDetail.tsx:150 msgid "Manufacturer Details" msgstr "" -#: src/pages/company/ManufacturerPartDetail.tsx:160 +#: src/pages/company/ManufacturerPartDetail.tsx:159 msgid "Manufacturer Part Details" msgstr "" -#: src/pages/company/ManufacturerPartDetail.tsx:178 -#: src/pages/company/SupplierPartDetail.tsx:252 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:381 +#: src/pages/company/ManufacturerPartDetail.tsx:165 +#: src/pages/company/SupplierPartDetail.tsx:253 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:382 msgid "Received Stock" msgstr "" -#: src/pages/company/ManufacturerPartDetail.tsx:220 +#: src/pages/company/ManufacturerPartDetail.tsx:211 #: src/tables/purchasing/ManufacturerPartTable.tsx:108 msgid "Edit Manufacturer Part" msgstr "" -#: src/pages/company/ManufacturerPartDetail.tsx:227 +#: src/pages/company/ManufacturerPartDetail.tsx:218 #: src/tables/purchasing/ManufacturerPartTable.tsx:96 #: src/tables/purchasing/ManufacturerPartTable.tsx:115 #: src/tables/purchasing/ManufacturerPartTable.tsx:156 msgid "Add Manufacturer Part" msgstr "" -#: src/pages/company/ManufacturerPartDetail.tsx:239 +#: src/pages/company/ManufacturerPartDetail.tsx:230 #: src/tables/purchasing/ManufacturerPartTable.tsx:126 msgid "Delete Manufacturer Part" msgstr "" -#: src/pages/company/ManufacturerPartDetail.tsx:254 +#: src/pages/company/ManufacturerPartDetail.tsx:245 msgid "Manufacturer Part Actions" msgstr "" @@ -7308,12 +7392,12 @@ msgstr "" #~ msgid "ManufacturerPart" #~ msgstr "ManufacturerPart" -#: src/pages/company/SupplierPartDetail.tsx:104 +#: src/pages/company/SupplierPartDetail.tsx:105 #: src/tables/part/RelatedPartTable.tsx:82 msgid "Part Description" msgstr "" -#: src/pages/company/SupplierPartDetail.tsx:179 +#: src/pages/company/SupplierPartDetail.tsx:180 #: src/tables/part/PartPurchaseOrdersTable.tsx:73 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:191 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:233 @@ -7321,50 +7405,50 @@ msgstr "" msgid "Pack Quantity" msgstr "" -#: src/pages/company/SupplierPartDetail.tsx:204 +#: src/pages/company/SupplierPartDetail.tsx:205 msgid "Supplier Availability" msgstr "" -#: src/pages/company/SupplierPartDetail.tsx:212 +#: src/pages/company/SupplierPartDetail.tsx:213 msgid "Availability Updated" msgstr "" -#: src/pages/company/SupplierPartDetail.tsx:237 +#: src/pages/company/SupplierPartDetail.tsx:238 msgid "Availability" msgstr "" -#: src/pages/company/SupplierPartDetail.tsx:246 +#: src/pages/company/SupplierPartDetail.tsx:247 msgid "Supplier Part Details" msgstr "" -#: src/pages/company/SupplierPartDetail.tsx:279 +#: src/pages/company/SupplierPartDetail.tsx:280 #: src/pages/part/PartPricingPanel.tsx:113 #: src/pages/part/pricing/PricingOverviewPanel.tsx:239 msgid "Supplier Pricing" msgstr "" -#: src/pages/company/SupplierPartDetail.tsx:308 +#: src/pages/company/SupplierPartDetail.tsx:313 msgid "Supplier Part Actions" msgstr "" -#: src/pages/company/SupplierPartDetail.tsx:332 +#: src/pages/company/SupplierPartDetail.tsx:337 #: src/tables/purchasing/SupplierPartTable.tsx:244 msgid "Edit Supplier Part" msgstr "" -#: src/pages/company/SupplierPartDetail.tsx:340 +#: src/pages/company/SupplierPartDetail.tsx:345 #: src/tables/purchasing/SupplierPartTable.tsx:264 msgid "Delete Supplier Part" msgstr "" -#: src/pages/company/SupplierPartDetail.tsx:348 +#: src/pages/company/SupplierPartDetail.tsx:353 #: src/tables/purchasing/SupplierPartTable.tsx:172 #: src/tables/purchasing/SupplierPartTable.tsx:251 msgid "Add Supplier Part" msgstr "" -#: src/pages/company/SupplierPartDetail.tsx:388 -#: src/pages/part/PartDetail.tsx:1003 +#: src/pages/company/SupplierPartDetail.tsx:393 +#: src/pages/part/PartDetail.tsx:1018 msgid "No Stock" msgstr "" @@ -7411,83 +7495,83 @@ msgstr "" msgid "Basic user" msgstr "" -#: src/pages/part/CategoryDetail.tsx:100 +#: src/pages/part/CategoryDetail.tsx:103 #: src/pages/stock/LocationDetail.tsx:94 #: src/tables/settings/ErrorTable.tsx:63 #: src/tables/settings/ErrorTable.tsx:108 msgid "Path" msgstr "" -#: src/pages/part/CategoryDetail.tsx:116 +#: src/pages/part/CategoryDetail.tsx:119 msgid "Parent Category" msgstr "" -#: src/pages/part/CategoryDetail.tsx:139 -#: src/pages/part/CategoryDetail.tsx:271 +#: src/pages/part/CategoryDetail.tsx:142 +#: src/pages/part/CategoryDetail.tsx:279 msgid "Subcategories" msgstr "" -#: src/pages/part/CategoryDetail.tsx:146 +#: src/pages/part/CategoryDetail.tsx:149 #: src/pages/stock/LocationDetail.tsx:134 #: src/tables/part/PartCategoryTable.tsx:89 #: src/tables/stock/StockLocationTable.tsx:43 msgid "Structural" msgstr "" -#: src/pages/part/CategoryDetail.tsx:152 +#: src/pages/part/CategoryDetail.tsx:155 msgid "Parent default location" msgstr "" -#: src/pages/part/CategoryDetail.tsx:159 +#: src/pages/part/CategoryDetail.tsx:162 msgid "Default location" msgstr "" -#: src/pages/part/CategoryDetail.tsx:170 +#: src/pages/part/CategoryDetail.tsx:173 msgid "Top level part category" msgstr "" -#: src/pages/part/CategoryDetail.tsx:180 -#: src/pages/part/CategoryDetail.tsx:248 +#: src/pages/part/CategoryDetail.tsx:183 +#: src/pages/part/CategoryDetail.tsx:251 #: src/tables/part/PartCategoryTable.tsx:122 msgid "Edit Part Category" msgstr "" -#: src/pages/part/CategoryDetail.tsx:189 +#: src/pages/part/CategoryDetail.tsx:192 msgid "Move items to parent category" msgstr "" -#: src/pages/part/CategoryDetail.tsx:193 +#: src/pages/part/CategoryDetail.tsx:196 #: src/pages/stock/LocationDetail.tsx:226 msgid "Delete items" msgstr "" -#: src/pages/part/CategoryDetail.tsx:201 -#: src/pages/part/CategoryDetail.tsx:253 +#: src/pages/part/CategoryDetail.tsx:204 +#: src/pages/part/CategoryDetail.tsx:256 msgid "Delete Part Category" msgstr "" -#: src/pages/part/CategoryDetail.tsx:204 +#: src/pages/part/CategoryDetail.tsx:207 msgid "Parts Action" msgstr "" -#: src/pages/part/CategoryDetail.tsx:205 +#: src/pages/part/CategoryDetail.tsx:208 msgid "Action for parts in this category" msgstr "" -#: src/pages/part/CategoryDetail.tsx:211 +#: src/pages/part/CategoryDetail.tsx:214 msgid "Child Categories Action" msgstr "" -#: src/pages/part/CategoryDetail.tsx:212 +#: src/pages/part/CategoryDetail.tsx:215 msgid "Action for child categories in this category" msgstr "" -#: src/pages/part/CategoryDetail.tsx:244 +#: src/pages/part/CategoryDetail.tsx:247 #: src/tables/part/PartCategoryTable.tsx:143 msgid "Category Actions" msgstr "" -#: src/pages/part/CategoryDetail.tsx:265 +#: src/pages/part/CategoryDetail.tsx:273 msgid "Category Details" msgstr "" @@ -7585,7 +7669,6 @@ msgid "Category Default Location" msgstr "" #: src/pages/part/PartDetail.tsx:507 -#: src/tables/purchasing/ManufacturerPartParameterTable.tsx:48 msgid "Units" msgstr "" @@ -7600,7 +7683,7 @@ msgstr "" #: src/pages/part/PartDetail.tsx:542 #: src/tables/bom/BomTable.tsx:439 -#: src/tables/build/BuildLineTable.tsx:305 +#: src/tables/build/BuildLineTable.tsx:306 #: src/tables/part/PartTable.tsx:319 #: src/tables/sales/SalesOrderLineItemTable.tsx:138 msgid "Available Stock" @@ -7608,7 +7691,7 @@ msgstr "" #: src/pages/part/PartDetail.tsx:548 #: src/tables/bom/BomTable.tsx:341 -#: src/tables/build/BuildLineTable.tsx:267 +#: src/tables/build/BuildLineTable.tsx:268 #: src/tables/sales/SalesOrderLineItemTable.tsx:180 msgid "On order" msgstr "" @@ -7634,7 +7717,7 @@ msgstr "" #~ msgstr "Scheduling" #: src/pages/part/PartDetail.tsx:620 -#: src/tables/part/ParametricPartTable.tsx:359 +#: src/tables/part/ParametricPartTable.tsx:24 #: src/tables/part/PartTable.tsx:203 msgid "Locked" msgstr "" @@ -7671,16 +7754,16 @@ msgid "Saleable Part" msgstr "" #: src/pages/part/PartDetail.tsx:663 -#: src/pages/part/PartDetail.tsx:1033 +#: src/pages/part/PartDetail.tsx:1054 #: src/tables/bom/BomTable.tsx:150 #: src/tables/bom/BomTable.tsx:434 msgid "Virtual Part" msgstr "" #: src/pages/part/PartDetail.tsx:678 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:271 -#: src/pages/sales/ReturnOrderDetail.tsx:249 -#: src/pages/sales/SalesOrderDetail.tsx:242 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:272 +#: src/pages/sales/ReturnOrderDetail.tsx:250 +#: src/pages/sales/SalesOrderDetail.tsx:243 #: src/tables/ColumnRenderers.tsx:502 msgid "Creation Date" msgstr "" @@ -7718,35 +7801,46 @@ msgstr "" msgid "Select Part Revision" msgstr "" -#: src/pages/part/PartDetail.tsx:823 +#: src/pages/part/PartDetail.tsx:812 msgid "Variants" msgstr "" -#: src/pages/part/PartDetail.tsx:830 +#: src/pages/part/PartDetail.tsx:819 #: src/pages/stock/StockDetail.tsx:542 msgid "Allocations" msgstr "" -#: src/pages/part/PartDetail.tsx:837 +#: src/pages/part/PartDetail.tsx:826 msgid "Bill of Materials" msgstr "" -#: src/pages/part/PartDetail.tsx:849 +#: src/pages/part/PartDetail.tsx:838 msgid "Used In" msgstr "" -#: src/pages/part/PartDetail.tsx:856 +#: src/pages/part/PartDetail.tsx:845 msgid "Part Pricing" msgstr "" -#: src/pages/part/PartDetail.tsx:926 +#: src/pages/part/PartDetail.tsx:915 msgid "Test Templates" msgstr "" -#: src/pages/part/PartDetail.tsx:948 +#: src/pages/part/PartDetail.tsx:937 msgid "Related Parts" msgstr "" +#: src/pages/part/PartDetail.tsx:949 +#: src/tables/ColumnRenderers.tsx:73 +#: src/tables/bom/BomTable.tsx:657 +#: src/tables/part/PartTestTemplateTable.tsx:258 +msgid "Part is Locked" +msgstr "" + +#: src/pages/part/PartDetail.tsx:954 +msgid "Part parameters cannot be edited, as the part is locked" +msgstr "" + #: src/pages/part/PartDetail.tsx:956 #~ msgid "Count part stock" #~ msgstr "Count part stock" @@ -7755,42 +7849,46 @@ msgstr "" #~ msgid "Transfer part stock" #~ msgstr "Transfer part stock" -#: src/pages/part/PartDetail.tsx:1009 +#: src/pages/part/PartDetail.tsx:1024 #: src/tables/part/PartTestTemplateTable.tsx:112 #: src/tables/stock/StockItemTestResultTable.tsx:404 msgid "Required" msgstr "" -#: src/pages/part/PartDetail.tsx:1058 +#: src/pages/part/PartDetail.tsx:1042 +msgid "Deficit" +msgstr "" + +#: src/pages/part/PartDetail.tsx:1079 #: src/tables/part/PartTable.tsx:396 #: src/tables/part/PartTable.tsx:449 msgid "Add Part" msgstr "" -#: src/pages/part/PartDetail.tsx:1072 +#: src/pages/part/PartDetail.tsx:1093 msgid "Delete Part" msgstr "" -#: src/pages/part/PartDetail.tsx:1081 +#: src/pages/part/PartDetail.tsx:1102 msgid "Deleting this part cannot be reversed" msgstr "" -#: src/pages/part/PartDetail.tsx:1143 +#: src/pages/part/PartDetail.tsx:1164 #: src/pages/stock/StockDetail.tsx:883 msgid "Order" msgstr "" -#: src/pages/part/PartDetail.tsx:1144 +#: src/pages/part/PartDetail.tsx:1165 #: src/pages/stock/StockDetail.tsx:884 -#: src/tables/build/BuildLineTable.tsx:761 +#: src/tables/build/BuildLineTable.tsx:768 msgid "Order Stock" msgstr "" -#: src/pages/part/PartDetail.tsx:1156 +#: src/pages/part/PartDetail.tsx:1177 msgid "Search by serial number" msgstr "" -#: src/pages/part/PartDetail.tsx:1164 +#: src/pages/part/PartDetail.tsx:1185 #: src/tables/part/PartTable.tsx:506 msgid "Part Actions" msgstr "" @@ -8039,7 +8137,7 @@ msgstr "" #: src/pages/part/pricing/PricingOverviewPanel.tsx:288 #: src/pages/stock/StockDetail.tsx:426 -#: src/tables/part/PartParameterTable.tsx:121 +#: src/tables/general/ParameterTable.tsx:101 #: src/tables/stock/StockItemTable.tsx:300 msgid "Last Updated" msgstr "" @@ -8107,17 +8205,17 @@ msgstr "" msgid "Variant Part" msgstr "" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:89 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:90 msgid "Edit Purchase Order" msgstr "" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:125 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:126 #: src/tables/purchasing/PurchaseOrderTable.tsx:154 #: src/tables/purchasing/PurchaseOrderTable.tsx:167 msgid "Add Purchase Order" msgstr "" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:147 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:148 msgid "Supplier Reference" msgstr "" @@ -8127,20 +8225,20 @@ msgstr "" #~ msgid "Order Currency," #~ msgstr "Order Currency," -#: src/pages/purchasing/PurchaseOrderDetail.tsx:187 -#: src/pages/sales/ReturnOrderDetail.tsx:160 -#: src/pages/sales/SalesOrderDetail.tsx:144 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:188 +#: src/pages/sales/ReturnOrderDetail.tsx:161 +#: src/pages/sales/SalesOrderDetail.tsx:145 msgid "Completed Line Items" msgstr "" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:196 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:197 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:272 msgid "Destination" msgstr "" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:202 -#: src/pages/sales/ReturnOrderDetail.tsx:167 -#: src/pages/sales/SalesOrderDetail.tsx:161 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:203 +#: src/pages/sales/ReturnOrderDetail.tsx:168 +#: src/pages/sales/SalesOrderDetail.tsx:162 msgid "Order Currency" msgstr "" @@ -8150,97 +8248,97 @@ msgstr "" #~ msgid "Created On" #~ msgstr "Created On" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:208 -#: src/pages/sales/ReturnOrderDetail.tsx:174 -#: src/pages/sales/SalesOrderDetail.tsx:167 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:209 +#: src/pages/sales/ReturnOrderDetail.tsx:175 +#: src/pages/sales/SalesOrderDetail.tsx:168 msgid "Total Cost" msgstr "" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:237 -#: src/pages/sales/ReturnOrderDetail.tsx:215 -#: src/pages/sales/SalesOrderDetail.tsx:208 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:238 +#: src/pages/sales/ReturnOrderDetail.tsx:216 +#: src/pages/sales/SalesOrderDetail.tsx:209 msgid "Contact Email" msgstr "" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:245 -#: src/pages/sales/ReturnOrderDetail.tsx:223 -#: src/pages/sales/SalesOrderDetail.tsx:216 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:246 +#: src/pages/sales/ReturnOrderDetail.tsx:224 +#: src/pages/sales/SalesOrderDetail.tsx:217 msgid "Contact Phone" msgstr "" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:278 -#: src/pages/sales/ReturnOrderDetail.tsx:257 -#: src/pages/sales/SalesOrderDetail.tsx:249 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:279 +#: src/pages/sales/ReturnOrderDetail.tsx:258 +#: src/pages/sales/SalesOrderDetail.tsx:250 msgid "Issue Date" msgstr "" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:303 -#: src/pages/sales/ReturnOrderDetail.tsx:281 -#: src/pages/sales/SalesOrderDetail.tsx:272 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:304 +#: src/pages/sales/ReturnOrderDetail.tsx:282 +#: src/pages/sales/SalesOrderDetail.tsx:273 #: src/tables/ColumnRenderers.tsx:510 #: src/tables/build/BuildOrderTable.tsx:137 #: src/tables/part/PartPurchaseOrdersTable.tsx:106 msgid "Completion Date" msgstr "" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:333 -#: src/pages/sales/ReturnOrderDetail.tsx:311 -#: src/pages/sales/SalesOrderDetail.tsx:349 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:334 +#: src/pages/sales/ReturnOrderDetail.tsx:312 +#: src/pages/sales/SalesOrderDetail.tsx:350 msgid "Order Details" msgstr "" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:339 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:348 -#: src/pages/sales/ReturnOrderDetail.tsx:153 -#: src/pages/sales/ReturnOrderDetail.tsx:317 -#: src/pages/sales/ReturnOrderDetail.tsx:326 -#: src/pages/sales/SalesOrderDetail.tsx:355 -#: src/pages/sales/SalesOrderDetail.tsx:364 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:340 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:349 +#: src/pages/sales/ReturnOrderDetail.tsx:154 +#: src/pages/sales/ReturnOrderDetail.tsx:318 +#: src/pages/sales/ReturnOrderDetail.tsx:327 +#: src/pages/sales/SalesOrderDetail.tsx:356 +#: src/pages/sales/SalesOrderDetail.tsx:365 msgid "Line Items" msgstr "" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:363 -#: src/pages/sales/ReturnOrderDetail.tsx:341 -#: src/pages/sales/SalesOrderDetail.tsx:378 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:364 +#: src/pages/sales/ReturnOrderDetail.tsx:342 +#: src/pages/sales/SalesOrderDetail.tsx:379 msgid "Extra Line Items" msgstr "" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:405 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:410 msgid "Issue Purchase Order" msgstr "" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:413 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:418 msgid "Cancel Purchase Order" msgstr "" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:421 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:426 msgid "Hold Purchase Order" msgstr "" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:429 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:434 msgid "Complete Purchase Order" msgstr "" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:485 -#: src/pages/sales/ReturnOrderDetail.tsx:496 -#: src/pages/sales/SalesOrderDetail.tsx:549 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:490 +#: src/pages/sales/ReturnOrderDetail.tsx:501 +#: src/pages/sales/SalesOrderDetail.tsx:554 msgid "Order Actions" msgstr "" -#: src/pages/sales/ReturnOrderDetail.tsx:114 -#: src/pages/sales/SalesOrderDetail.tsx:104 -#: src/pages/sales/SalesOrderShipmentDetail.tsx:134 +#: src/pages/sales/ReturnOrderDetail.tsx:115 +#: src/pages/sales/SalesOrderDetail.tsx:105 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:132 #: src/tables/sales/SalesOrderTable.tsx:141 msgid "Customer Reference" msgstr "" -#: src/pages/sales/ReturnOrderDetail.tsx:195 +#: src/pages/sales/ReturnOrderDetail.tsx:196 msgid "Return Address" msgstr "" -#: src/pages/sales/ReturnOrderDetail.tsx:201 -#: src/pages/sales/SalesOrderDetail.tsx:194 -#: src/pages/sales/SalesOrderShipmentDetail.tsx:181 +#: src/pages/sales/ReturnOrderDetail.tsx:202 +#: src/pages/sales/SalesOrderDetail.tsx:195 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:179 msgid "Not specified" msgstr "" @@ -8248,117 +8346,117 @@ msgstr "" #~ msgid "Order canceled" #~ msgstr "Order canceled" -#: src/pages/sales/ReturnOrderDetail.tsx:389 +#: src/pages/sales/ReturnOrderDetail.tsx:394 msgid "Edit Return Order" msgstr "" -#: src/pages/sales/ReturnOrderDetail.tsx:407 +#: src/pages/sales/ReturnOrderDetail.tsx:412 #: src/tables/sales/ReturnOrderTable.tsx:154 #: src/tables/sales/ReturnOrderTable.tsx:167 msgid "Add Return Order" msgstr "" -#: src/pages/sales/ReturnOrderDetail.tsx:416 +#: src/pages/sales/ReturnOrderDetail.tsx:421 msgid "Issue Return Order" msgstr "" -#: src/pages/sales/ReturnOrderDetail.tsx:424 +#: src/pages/sales/ReturnOrderDetail.tsx:429 msgid "Cancel Return Order" msgstr "" -#: src/pages/sales/ReturnOrderDetail.tsx:432 +#: src/pages/sales/ReturnOrderDetail.tsx:437 msgid "Hold Return Order" msgstr "" -#: src/pages/sales/ReturnOrderDetail.tsx:440 +#: src/pages/sales/ReturnOrderDetail.tsx:445 msgid "Complete Return Order" msgstr "" -#: src/pages/sales/SalesOrderDetail.tsx:153 +#: src/pages/sales/SalesOrderDetail.tsx:154 msgid "Completed Shipments" msgstr "" -#: src/pages/sales/SalesOrderDetail.tsx:188 -#: src/pages/sales/SalesOrderShipmentDetail.tsx:170 +#: src/pages/sales/SalesOrderDetail.tsx:189 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:168 msgid "Shipping Address" msgstr "" -#: src/pages/sales/SalesOrderDetail.tsx:316 +#: src/pages/sales/SalesOrderDetail.tsx:317 msgid "Edit Sales Order" msgstr "" -#: src/pages/sales/SalesOrderDetail.tsx:338 +#: src/pages/sales/SalesOrderDetail.tsx:339 #: src/tables/sales/SalesOrderTable.tsx:108 #: src/tables/sales/SalesOrderTable.tsx:121 msgid "Add Sales Order" msgstr "" -#: src/pages/sales/SalesOrderDetail.tsx:396 +#: src/pages/sales/SalesOrderDetail.tsx:397 #: src/tables/sales/SalesOrderTable.tsx:147 msgid "Shipments" msgstr "" -#: src/pages/sales/SalesOrderDetail.tsx:443 +#: src/pages/sales/SalesOrderDetail.tsx:448 msgid "Issue Sales Order" msgstr "" -#: src/pages/sales/SalesOrderDetail.tsx:451 +#: src/pages/sales/SalesOrderDetail.tsx:456 msgid "Cancel Sales Order" msgstr "" -#: src/pages/sales/SalesOrderDetail.tsx:459 +#: src/pages/sales/SalesOrderDetail.tsx:464 msgid "Hold Sales Order" msgstr "" -#: src/pages/sales/SalesOrderDetail.tsx:467 +#: src/pages/sales/SalesOrderDetail.tsx:472 msgid "Ship Sales Order" msgstr "" -#: src/pages/sales/SalesOrderDetail.tsx:469 +#: src/pages/sales/SalesOrderDetail.tsx:474 msgid "Ship this order?" msgstr "" -#: src/pages/sales/SalesOrderDetail.tsx:470 +#: src/pages/sales/SalesOrderDetail.tsx:475 msgid "Order shipped" msgstr "" -#: src/pages/sales/SalesOrderDetail.tsx:478 +#: src/pages/sales/SalesOrderDetail.tsx:483 msgid "Complete Sales Order" msgstr "" -#: src/pages/sales/SalesOrderDetail.tsx:523 +#: src/pages/sales/SalesOrderDetail.tsx:528 msgid "Ship Order" msgstr "" -#: src/pages/sales/SalesOrderShipmentDetail.tsx:142 -#: src/tables/sales/SalesOrderShipmentTable.tsx:135 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:140 +#: src/tables/sales/SalesOrderShipmentTable.tsx:156 msgid "Shipment Reference" msgstr "" -#: src/pages/sales/SalesOrderShipmentDetail.tsx:148 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:146 msgid "Tracking Number" msgstr "" -#: src/pages/sales/SalesOrderShipmentDetail.tsx:156 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:154 msgid "Invoice Number" msgstr "" -#: src/pages/sales/SalesOrderShipmentDetail.tsx:191 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:189 msgid "Allocated Items" msgstr "" -#: src/pages/sales/SalesOrderShipmentDetail.tsx:196 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:194 msgid "Checked By" msgstr "" -#: src/pages/sales/SalesOrderShipmentDetail.tsx:202 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:200 msgid "Not checked" msgstr "" -#: src/pages/sales/SalesOrderShipmentDetail.tsx:208 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:206 #: src/tables/ColumnRenderers.tsx:518 #: src/tables/sales/SalesOrderAllocationTable.tsx:182 -#: src/tables/sales/SalesOrderShipmentTable.tsx:168 +#: src/tables/sales/SalesOrderShipmentTable.tsx:189 msgid "Shipment Date" msgstr "" @@ -8366,108 +8464,82 @@ msgstr "" #~ msgid "Assigned Items" #~ msgstr "Assigned Items" -#: src/pages/sales/SalesOrderShipmentDetail.tsx:216 -#: src/tables/sales/SalesOrderShipmentTable.tsx:172 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:214 +#: src/tables/sales/SalesOrderShipmentTable.tsx:193 msgid "Delivery Date" msgstr "" -#: src/pages/sales/SalesOrderShipmentDetail.tsx:255 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:253 msgid "Shipment Details" msgstr "" -#: src/pages/sales/SalesOrderShipmentDetail.tsx:294 -#: src/pages/sales/SalesOrderShipmentDetail.tsx:438 -#: src/tables/sales/SalesOrderShipmentTable.tsx:90 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:292 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:406 +#: src/tables/sales/SalesOrderShipmentTable.tsx:97 msgid "Edit Shipment" msgstr "" -#: src/pages/sales/SalesOrderShipmentDetail.tsx:301 -#: src/pages/sales/SalesOrderShipmentDetail.tsx:457 -#: src/tables/sales/SalesOrderShipmentTable.tsx:82 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:299 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:425 +#: src/tables/sales/SalesOrderShipmentTable.tsx:89 msgid "Cancel Shipment" msgstr "" -#: src/pages/sales/SalesOrderShipmentDetail.tsx:314 -#: src/tables/sales/SalesOrderShipmentTable.tsx:98 -#: src/tables/sales/SalesOrderShipmentTable.tsx:193 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:312 +#: src/tables/sales/SalesOrderShipmentTable.tsx:119 +#: src/tables/sales/SalesOrderShipmentTable.tsx:238 msgid "Complete Shipment" msgstr "" -#: src/pages/sales/SalesOrderShipmentDetail.tsx:326 -#: src/pages/sales/SalesOrderShipmentDetail.tsx:328 -msgid "Check Shipment" -msgstr "" - -#: src/pages/sales/SalesOrderShipmentDetail.tsx:329 -msgid "Marking the shipment as checked indicates that you have verified that all items included in this shipment are correct" -msgstr "" - #: src/pages/sales/SalesOrderShipmentDetail.tsx:339 -msgid "Shipment marked as checked" -msgstr "" - -#: src/pages/sales/SalesOrderShipmentDetail.tsx:346 -#: src/pages/sales/SalesOrderShipmentDetail.tsx:348 -msgid "Uncheck Shipment" -msgstr "" - -#: src/pages/sales/SalesOrderShipmentDetail.tsx:349 -msgid "Marking the shipment as unchecked indicates that the shipment requires further verification" -msgstr "" - -#: src/pages/sales/SalesOrderShipmentDetail.tsx:359 -msgid "Shipment marked as unchecked" -msgstr "" - -#: src/pages/sales/SalesOrderShipmentDetail.tsx:371 #: src/tables/part/PartPurchaseOrdersTable.tsx:122 msgid "Pending" msgstr "" -#: src/pages/sales/SalesOrderShipmentDetail.tsx:377 -#: src/tables/sales/SalesOrderShipmentTable.tsx:147 -#: src/tables/sales/SalesOrderShipmentTable.tsx:254 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:345 +#: src/tables/sales/SalesOrderShipmentTable.tsx:168 +#: src/tables/sales/SalesOrderShipmentTable.tsx:299 msgid "Checked" msgstr "" -#: src/pages/sales/SalesOrderShipmentDetail.tsx:383 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:351 msgid "Not Checked" msgstr "" -#: src/pages/sales/SalesOrderShipmentDetail.tsx:389 -#: src/tables/sales/SalesOrderShipmentTable.tsx:154 -#: src/tables/sales/SalesOrderShipmentTable.tsx:259 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:357 +#: src/tables/sales/SalesOrderShipmentTable.tsx:175 +#: src/tables/sales/SalesOrderShipmentTable.tsx:304 msgid "Shipped" msgstr "" -#: src/pages/sales/SalesOrderShipmentDetail.tsx:395 -#: src/tables/sales/SalesOrderShipmentTable.tsx:161 -#: src/tables/sales/SalesOrderShipmentTable.tsx:264 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:363 +#: src/tables/sales/SalesOrderShipmentTable.tsx:182 +#: src/tables/sales/SalesOrderShipmentTable.tsx:309 #: src/tables/settings/EmailTable.tsx:31 msgid "Delivered" msgstr "" -#: src/pages/sales/SalesOrderShipmentDetail.tsx:410 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:378 msgid "Send Shipment" msgstr "" -#: src/pages/sales/SalesOrderShipmentDetail.tsx:433 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:401 msgid "Shipment Actions" msgstr "" -#: src/pages/sales/SalesOrderShipmentDetail.tsx:442 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:410 msgid "Check" msgstr "" -#: src/pages/sales/SalesOrderShipmentDetail.tsx:443 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:411 msgid "Mark shipment as checked" msgstr "" -#: src/pages/sales/SalesOrderShipmentDetail.tsx:449 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:417 msgid "Uncheck" msgstr "" -#: src/pages/sales/SalesOrderShipmentDetail.tsx:450 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:418 msgid "Mark shipment as unchecked" msgstr "" @@ -8775,13 +8847,6 @@ msgstr "" msgid "Part is not active" msgstr "" -#: src/tables/ColumnRenderers.tsx:73 -#: src/tables/bom/BomTable.tsx:657 -#: src/tables/part/PartParameterTable.tsx:227 -#: src/tables/part/PartTestTemplateTable.tsx:258 -msgid "Part is Locked" -msgstr "" - #: src/tables/ColumnRenderers.tsx:78 msgid "You are subscribed to notifications for this part" msgstr "" @@ -9219,13 +9284,13 @@ msgstr "" #~ msgstr "Show asssmbled items" #: src/tables/bom/BomTable.tsx:315 -#: src/tables/build/BuildLineTable.tsx:276 +#: src/tables/build/BuildLineTable.tsx:277 #: src/tables/part/PartTable.tsx:145 msgid "External stock" msgstr "" #: src/tables/bom/BomTable.tsx:323 -#: src/tables/build/BuildLineTable.tsx:239 +#: src/tables/build/BuildLineTable.tsx:240 msgid "Includes substitute stock" msgstr "" @@ -9234,7 +9299,7 @@ msgstr "" #~ msgstr "Edit Bom Item" #: src/tables/bom/BomTable.tsx:332 -#: src/tables/build/BuildLineTable.tsx:249 +#: src/tables/build/BuildLineTable.tsx:250 #: src/tables/sales/SalesOrderLineItemTable.tsx:166 msgid "Includes variant stock" msgstr "" @@ -9272,8 +9337,8 @@ msgid "Stock Information" msgstr "" #: src/tables/bom/BomTable.tsx:399 -#: src/tables/build/BuildLineTable.tsx:496 -#: src/tables/build/BuildLineTable.tsx:537 +#: src/tables/build/BuildLineTable.tsx:497 +#: src/tables/build/BuildLineTable.tsx:538 msgid "Consumable item" msgstr "" @@ -9282,7 +9347,7 @@ msgid "No available stock" msgstr "" #: src/tables/bom/BomTable.tsx:420 -#: src/tables/build/BuildLineTable.tsx:213 +#: src/tables/build/BuildLineTable.tsx:214 msgid "Show testable items" msgstr "" @@ -9291,7 +9356,7 @@ msgid "Show trackable items" msgstr "" #: src/tables/bom/BomTable.tsx:430 -#: src/tables/build/BuildLineTable.tsx:208 +#: src/tables/build/BuildLineTable.tsx:209 msgid "Show assembled items" msgstr "" @@ -9335,7 +9400,7 @@ msgstr "" #: src/tables/bom/BomTable.tsx:464 #: src/tables/bom/UsedInTable.tsx:85 -#: src/tables/build/BuildLineTable.tsx:202 +#: src/tables/build/BuildLineTable.tsx:203 msgid "Optional" msgstr "" @@ -9345,7 +9410,7 @@ msgid "Show optional items" msgstr "" #: src/tables/bom/BomTable.tsx:469 -#: src/tables/build/BuildLineTable.tsx:197 +#: src/tables/build/BuildLineTable.tsx:198 msgid "Consumable" msgstr "" @@ -9420,6 +9485,7 @@ msgid "Add a single BOM item" msgstr "" #: src/tables/bom/BomTable.tsx:637 +#: src/tables/general/ParameterTable.tsx:206 #: src/tables/part/PartTable.tsx:546 msgid "Import from File" msgstr "" @@ -9433,8 +9499,8 @@ msgid "Bill of materials cannot be edited, as the part is locked" msgstr "" #: src/tables/bom/UsedInTable.tsx:34 -#: src/tables/build/BuildLineTable.tsx:207 -#: src/tables/part/ParametricPartTable.tsx:364 +#: src/tables/build/BuildLineTable.tsx:208 +#: src/tables/part/ParametricPartTable.tsx:29 #: src/tables/part/PartBuildAllocationsTable.tsx:60 #: src/tables/part/PartTable.tsx:209 #: src/tables/stock/StockItemTable.tsx:333 @@ -9455,11 +9521,11 @@ msgstr "" msgid "Show trackable assemblies" msgstr "" -#: src/tables/build/BuildAllocatedStockTable.tsx:67 +#: src/tables/build/BuildAllocatedStockTable.tsx:64 msgid "Allocated to Output" msgstr "" -#: src/tables/build/BuildAllocatedStockTable.tsx:68 +#: src/tables/build/BuildAllocatedStockTable.tsx:65 msgid "Show items allocated to a build output" msgstr "" @@ -9472,50 +9538,68 @@ msgstr "" #~ msgid "Include orders for part variants" #~ msgstr "Include orders for part variants" -#: src/tables/build/BuildAllocatedStockTable.tsx:97 +#: src/tables/build/BuildAllocatedStockTable.tsx:94 #: src/tables/part/PartBuildAllocationsTable.tsx:84 #: src/tables/part/PartPurchaseOrdersTable.tsx:132 #: src/tables/part/PartSalesAllocationsTable.tsx:69 #: src/tables/sales/SalesOrderAllocationTable.tsx:122 -#: src/tables/sales/SalesOrderShipmentTable.tsx:130 +#: src/tables/sales/SalesOrderShipmentTable.tsx:151 msgid "Order Status" msgstr "" +#: src/tables/build/BuildAllocatedStockTable.tsx:164 +#: src/tables/build/BuildLineTable.tsx:651 +msgid "Edit Stock Allocation" +msgstr "" + #: src/tables/build/BuildAllocatedStockTable.tsx:164 #~ msgid "Edit Build Item" #~ msgstr "Edit Build Item" -#: src/tables/build/BuildAllocatedStockTable.tsx:167 -#: src/tables/build/BuildLineTable.tsx:650 -msgid "Edit Stock Allocation" -msgstr "" - #: src/tables/build/BuildAllocatedStockTable.tsx:174 #~ msgid "Delete Build Item" #~ msgstr "Delete Build Item" -#: src/tables/build/BuildAllocatedStockTable.tsx:180 -#: src/tables/build/BuildLineTable.tsx:663 -msgid "Delete Stock Allocation" +#: src/tables/build/BuildAllocatedStockTable.tsx:177 +#: src/tables/build/BuildLineTable.tsx:664 +#: src/tables/sales/SalesOrderAllocationTable.tsx:218 +msgid "Remove Allocated Stock" msgstr "" -#: src/tables/build/BuildAllocatedStockTable.tsx:239 +#: src/tables/build/BuildAllocatedStockTable.tsx:180 +#: src/tables/build/BuildLineTable.tsx:663 +#~ msgid "Delete Stock Allocation" +#~ msgstr "Delete Stock Allocation" + +#: src/tables/build/BuildAllocatedStockTable.tsx:182 +#: src/tables/build/BuildLineTable.tsx:669 +#: src/tables/sales/SalesOrderAllocationTable.tsx:221 +msgid "Are you sure you want to remove this allocated stock from the order?" +msgstr "" + +#: src/tables/build/BuildAllocatedStockTable.tsx:242 msgid "Consume" msgstr "" +#: src/tables/build/BuildAllocatedStockTable.tsx:259 +#: src/tables/build/BuildLineTable.tsx:112 +#: src/tables/sales/SalesOrderAllocationTable.tsx:248 +msgid "Remove allocated stock" +msgstr "" + #: src/tables/build/BuildLineTable.tsx:59 #~ msgid "Show lines with available stock" #~ msgstr "Show lines with available stock" -#: src/tables/build/BuildLineTable.tsx:120 +#: src/tables/build/BuildLineTable.tsx:121 msgid "View Stock Item" msgstr "" -#: src/tables/build/BuildLineTable.tsx:183 +#: src/tables/build/BuildLineTable.tsx:184 msgid "Show fully allocated lines" msgstr "" -#: src/tables/build/BuildLineTable.tsx:188 +#: src/tables/build/BuildLineTable.tsx:189 msgid "Show fully consumed lines" msgstr "" @@ -9523,124 +9607,124 @@ msgstr "" #~ msgid "Show allocated lines" #~ msgstr "Show allocated lines" -#: src/tables/build/BuildLineTable.tsx:193 +#: src/tables/build/BuildLineTable.tsx:194 msgid "Show items with sufficient available stock" msgstr "" -#: src/tables/build/BuildLineTable.tsx:198 +#: src/tables/build/BuildLineTable.tsx:199 msgid "Show consumable lines" msgstr "" -#: src/tables/build/BuildLineTable.tsx:203 +#: src/tables/build/BuildLineTable.tsx:204 msgid "Show optional lines" msgstr "" -#: src/tables/build/BuildLineTable.tsx:212 +#: src/tables/build/BuildLineTable.tsx:213 #: src/tables/part/PartTable.tsx:233 msgid "Testable" msgstr "" -#: src/tables/build/BuildLineTable.tsx:217 +#: src/tables/build/BuildLineTable.tsx:218 #: src/tables/stock/StockItemTable.tsx:388 msgid "Tracked" msgstr "" -#: src/tables/build/BuildLineTable.tsx:218 +#: src/tables/build/BuildLineTable.tsx:219 msgid "Show tracked lines" msgstr "" -#: src/tables/build/BuildLineTable.tsx:223 +#: src/tables/build/BuildLineTable.tsx:224 msgid "Show items with stock on order" msgstr "" -#: src/tables/build/BuildLineTable.tsx:258 +#: src/tables/build/BuildLineTable.tsx:259 #: src/tables/sales/SalesOrderLineItemTable.tsx:172 msgid "In production" msgstr "" -#: src/tables/build/BuildLineTable.tsx:286 +#: src/tables/build/BuildLineTable.tsx:287 msgid "Insufficient stock" msgstr "" -#: src/tables/build/BuildLineTable.tsx:302 +#: src/tables/build/BuildLineTable.tsx:303 #: src/tables/sales/SalesOrderLineItemTable.tsx:160 #: src/tables/stock/StockItemTable.tsx:191 msgid "No stock available" msgstr "" -#: src/tables/build/BuildLineTable.tsx:375 +#: src/tables/build/BuildLineTable.tsx:376 msgid "Gets Inherited" msgstr "" -#: src/tables/build/BuildLineTable.tsx:388 +#: src/tables/build/BuildLineTable.tsx:389 msgid "Unit Quantity" msgstr "" -#: src/tables/build/BuildLineTable.tsx:415 +#: src/tables/build/BuildLineTable.tsx:416 msgid "Setup Quantity" msgstr "" -#: src/tables/build/BuildLineTable.tsx:424 +#: src/tables/build/BuildLineTable.tsx:425 msgid "Attrition" msgstr "" -#: src/tables/build/BuildLineTable.tsx:432 +#: src/tables/build/BuildLineTable.tsx:433 msgid "Rounding Multiple" msgstr "" -#: src/tables/build/BuildLineTable.tsx:441 +#: src/tables/build/BuildLineTable.tsx:442 msgid "BOM Information" msgstr "" -#: src/tables/build/BuildLineTable.tsx:515 +#: src/tables/build/BuildLineTable.tsx:516 #: src/tables/part/PartBuildAllocationsTable.tsx:102 msgid "Fully allocated" msgstr "" -#: src/tables/build/BuildLineTable.tsx:563 +#: src/tables/build/BuildLineTable.tsx:564 #: src/tables/sales/SalesOrderLineItemTable.tsx:311 msgid "Create Build Order" msgstr "" -#: src/tables/build/BuildLineTable.tsx:592 +#: src/tables/build/BuildLineTable.tsx:593 msgid "Auto allocation in progress" msgstr "التخصيص التلقائي قيد التنفيذ" -#: src/tables/build/BuildLineTable.tsx:595 -#: src/tables/build/BuildLineTable.tsx:802 +#: src/tables/build/BuildLineTable.tsx:596 +#: src/tables/build/BuildLineTable.tsx:809 msgid "Auto Allocate Stock" msgstr "تخصيص تلقائي للمخزون" -#: src/tables/build/BuildLineTable.tsx:596 +#: src/tables/build/BuildLineTable.tsx:597 msgid "Automatically allocate stock to this build according to the selected options" msgstr "تخصيص المخزون تِلْقائيًا لهذا البناء وفقا للخيارات المحددة" -#: src/tables/build/BuildLineTable.tsx:616 -#: src/tables/build/BuildLineTable.tsx:630 -#: src/tables/build/BuildLineTable.tsx:751 -#: src/tables/build/BuildLineTable.tsx:852 +#: src/tables/build/BuildLineTable.tsx:617 +#: src/tables/build/BuildLineTable.tsx:631 +#: src/tables/build/BuildLineTable.tsx:758 +#: src/tables/build/BuildLineTable.tsx:859 #: src/tables/build/BuildOutputTable.tsx:355 #: src/tables/build/BuildOutputTable.tsx:360 msgid "Deallocate Stock" msgstr "إلغاء تخصيص المخزون" -#: src/tables/build/BuildLineTable.tsx:632 +#: src/tables/build/BuildLineTable.tsx:633 msgid "Deallocate all untracked stock for this build order" msgstr "إلغاء تخصيص جميع المخزون الغير متابع لطلب البناء هذا" -#: src/tables/build/BuildLineTable.tsx:634 +#: src/tables/build/BuildLineTable.tsx:635 msgid "Deallocate stock from the selected line item" msgstr "إلغاء تخصيص المخزون من العنصر المحدد" -#: src/tables/build/BuildLineTable.tsx:638 +#: src/tables/build/BuildLineTable.tsx:639 msgid "Stock has been deallocated" msgstr "تم إلغاء تخصيص المخزون" -#: src/tables/build/BuildLineTable.tsx:771 +#: src/tables/build/BuildLineTable.tsx:778 msgid "Build Stock" msgstr "" -#: src/tables/build/BuildLineTable.tsx:784 +#: src/tables/build/BuildLineTable.tsx:791 #: src/tables/sales/SalesOrderLineItemTable.tsx:487 msgid "View Part" msgstr "" @@ -9739,7 +9823,7 @@ msgid "Serialize Build Output" msgstr "" #: src/tables/build/BuildOutputTable.tsx:405 -#: src/tables/part/PartTestResultTable.tsx:310 +#: src/tables/part/PartTestResultTable.tsx:318 #: src/tables/stock/StockItemTable.tsx:328 msgid "Filter by stock status" msgstr "" @@ -9964,8 +10048,8 @@ msgid "View Item" msgstr "" #: src/tables/general/ExtraLineItemTable.tsx:95 -#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:299 -#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:403 +#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:300 +#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:405 #: src/tables/sales/ReturnOrderLineItemTable.tsx:83 #: src/tables/sales/ReturnOrderLineItemTable.tsx:187 #: src/tables/sales/SalesOrderLineItemTable.tsx:252 @@ -9974,14 +10058,14 @@ msgid "Add Line Item" msgstr "" #: src/tables/general/ExtraLineItemTable.tsx:108 -#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:320 +#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:322 #: src/tables/sales/ReturnOrderLineItemTable.tsx:96 #: src/tables/sales/SalesOrderLineItemTable.tsx:271 msgid "Edit Line Item" msgstr "" #: src/tables/general/ExtraLineItemTable.tsx:117 -#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:329 +#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:331 #: src/tables/sales/ReturnOrderLineItemTable.tsx:105 #: src/tables/sales/SalesOrderLineItemTable.tsx:280 msgid "Delete Line Item" @@ -9991,6 +10075,137 @@ msgstr "" msgid "Add Extra Line Item" msgstr "" +#: src/tables/general/ParameterTable.tsx:88 +msgid "Internal Units" +msgstr "" + +#: src/tables/general/ParameterTable.tsx:108 +#: src/tables/general/ParameterTable.tsx:123 +msgid "Updated By" +msgstr "" + +#: src/tables/general/ParameterTable.tsx:118 +msgid "Show parameters for enabled templates" +msgstr "" + +#: src/tables/general/ParameterTable.tsx:124 +msgid "Filter by user who last updated the parameter" +msgstr "" + +#: src/tables/general/ParameterTable.tsx:154 +msgid "Import Parameters" +msgstr "" + +#: src/tables/general/ParameterTable.tsx:164 +#: src/tables/general/ParametricDataTable.tsx:261 +#: src/tables/general/ParametricDataTable.tsx:392 +msgid "Add Parameter" +msgstr "" + +#: src/tables/general/ParameterTable.tsx:175 +#: src/tables/general/ParameterTable.tsx:222 +#: src/tables/general/ParametricDataTable.tsx:285 +msgid "Edit Parameter" +msgstr "" + +#: src/tables/general/ParameterTable.tsx:183 +#: src/tables/general/ParameterTable.tsx:230 +msgid "Delete Parameter" +msgstr "" + +#: src/tables/general/ParameterTable.tsx:191 +msgid "Add Parameters" +msgstr "" + +#: src/tables/general/ParameterTable.tsx:197 +msgid "Create Parameter" +msgstr "" + +#: src/tables/general/ParameterTable.tsx:199 +msgid "Create a new parameter" +msgstr "" + +#: src/tables/general/ParameterTable.tsx:208 +msgid "Import parameters from a file" +msgstr "" + +#: src/tables/general/ParameterTemplateTable.tsx:48 +#: src/tables/general/ParameterTemplateTable.tsx:197 +msgid "Add Parameter Template" +msgstr "" + +#: src/tables/general/ParameterTemplateTable.tsx:64 +msgid "Duplicate Parameter Template" +msgstr "" + +#: src/tables/general/ParameterTemplateTable.tsx:78 +msgid "Delete Parameter Template" +msgstr "" + +#: src/tables/general/ParameterTemplateTable.tsx:85 +msgid "Edit Parameter Template" +msgstr "" + +#: src/tables/general/ParameterTemplateTable.tsx:138 +msgid "Checkbox" +msgstr "" + +#: src/tables/general/ParameterTemplateTable.tsx:139 +msgid "Show checkbox templates" +msgstr "" + +#: src/tables/general/ParameterTemplateTable.tsx:143 +msgid "Has choices" +msgstr "" + +#: src/tables/general/ParameterTemplateTable.tsx:144 +msgid "Show templates with choices" +msgstr "" + +#: src/tables/general/ParameterTemplateTable.tsx:148 +#: src/tables/part/PartTable.tsx:245 +msgid "Has Units" +msgstr "" + +#: src/tables/general/ParameterTemplateTable.tsx:149 +msgid "Show templates with units" +msgstr "" + +#: src/tables/general/ParameterTemplateTable.tsx:154 +msgid "Show enabled templates" +msgstr "" + +#: src/tables/general/ParameterTemplateTable.tsx:158 +#: src/tables/settings/ImportSessionTable.tsx:111 +#: src/tables/settings/TemplateTable.tsx:368 +msgid "Model Type" +msgstr "" + +#: src/tables/general/ParameterTemplateTable.tsx:159 +msgid "Filter by model type" +msgstr "" + +#: src/tables/general/ParametricDataTable.tsx:79 +msgid "Click to edit" +msgstr "" + +#: src/tables/general/ParametricDataTableFilters.tsx:36 +msgid "True" +msgstr "" + +#: src/tables/general/ParametricDataTableFilters.tsx:37 +msgid "False" +msgstr "" + +#: src/tables/general/ParametricDataTableFilters.tsx:47 +#: src/tables/general/ParametricDataTableFilters.tsx:80 +msgid "Select a choice" +msgstr "" + +#: src/tables/general/ParametricDataTableFilters.tsx:100 +msgid "Enter a value" +msgstr "" + #: src/tables/machine/MachineListTable.tsx:133 msgid "Machine restarted" msgstr "" @@ -10071,7 +10286,7 @@ msgid "Initialized" msgstr "" #: src/tables/machine/MachineListTable.tsx:410 -#: src/tables/machine/MachineTypeTable.tsx:307 +#: src/tables/machine/MachineTypeTable.tsx:305 msgid "No errors reported" msgstr "" @@ -10132,15 +10347,15 @@ msgstr "" #~ msgid "Machine type information" #~ msgstr "Machine type information" -#: src/tables/machine/MachineTypeTable.tsx:128 +#: src/tables/machine/MachineTypeTable.tsx:126 msgid "Not Found" msgstr "" -#: src/tables/machine/MachineTypeTable.tsx:131 +#: src/tables/machine/MachineTypeTable.tsx:129 msgid "Machine type not found." msgstr "" -#: src/tables/machine/MachineTypeTable.tsx:141 +#: src/tables/machine/MachineTypeTable.tsx:139 msgid "Machine Type Information" msgstr "" @@ -10148,34 +10363,34 @@ msgstr "" #~ msgid "Available drivers" #~ msgstr "Available drivers" -#: src/tables/machine/MachineTypeTable.tsx:156 -#: src/tables/machine/MachineTypeTable.tsx:255 +#: src/tables/machine/MachineTypeTable.tsx:154 +#: src/tables/machine/MachineTypeTable.tsx:253 msgid "Slug" msgstr "" -#: src/tables/machine/MachineTypeTable.tsx:167 -#: src/tables/machine/MachineTypeTable.tsx:276 +#: src/tables/machine/MachineTypeTable.tsx:165 +#: src/tables/machine/MachineTypeTable.tsx:274 msgid "Provider plugin" msgstr "" -#: src/tables/machine/MachineTypeTable.tsx:179 -#: src/tables/machine/MachineTypeTable.tsx:288 +#: src/tables/machine/MachineTypeTable.tsx:177 +#: src/tables/machine/MachineTypeTable.tsx:286 msgid "Provider file" msgstr "" -#: src/tables/machine/MachineTypeTable.tsx:194 +#: src/tables/machine/MachineTypeTable.tsx:192 msgid "Available Drivers" msgstr "" -#: src/tables/machine/MachineTypeTable.tsx:234 +#: src/tables/machine/MachineTypeTable.tsx:232 msgid "Machine driver not found." msgstr "" -#: src/tables/machine/MachineTypeTable.tsx:242 +#: src/tables/machine/MachineTypeTable.tsx:240 msgid "Machine driver information" msgstr "" -#: src/tables/machine/MachineTypeTable.tsx:262 +#: src/tables/machine/MachineTypeTable.tsx:260 msgid "Machine type" msgstr "" @@ -10187,15 +10402,15 @@ msgstr "" #~ msgid "Machine driver detail" #~ msgstr "Machine driver detail" -#: src/tables/machine/MachineTypeTable.tsx:362 +#: src/tables/machine/MachineTypeTable.tsx:360 msgid "Builtin type" msgstr "" -#: src/tables/machine/MachineTypeTable.tsx:371 +#: src/tables/machine/MachineTypeTable.tsx:369 msgid "Machine Type Detail" msgstr "" -#: src/tables/machine/MachineTypeTable.tsx:381 +#: src/tables/machine/MachineTypeTable.tsx:379 msgid "Machine Driver Detail" msgstr "" @@ -10213,8 +10428,16 @@ msgstr "" msgid "Message" msgstr "" -#: src/tables/part/ParametricPartTable.tsx:78 -msgid "Click to edit" +#: src/tables/part/ParametricPartTable.tsx:20 +msgid "Show active parts" +msgstr "" + +#: src/tables/part/ParametricPartTable.tsx:25 +msgid "Show locked parts" +msgstr "" + +#: src/tables/part/ParametricPartTable.tsx:30 +msgid "Show assembly parts" msgstr "" #: src/tables/part/ParametricPartTable.tsx:82 @@ -10222,43 +10445,14 @@ msgstr "" #~ msgstr "Edit parameter" #: src/tables/part/ParametricPartTable.tsx:244 -msgid "Add Part Parameter" -msgstr "" +#~ msgid "Add Part Parameter" +#~ msgstr "Add Part Parameter" #: src/tables/part/ParametricPartTable.tsx:258 #: src/tables/part/PartParameterTable.tsx:164 #: src/tables/part/PartParameterTable.tsx:187 -msgid "Edit Part Parameter" -msgstr "" - -#: src/tables/part/ParametricPartTable.tsx:355 -msgid "Show active parts" -msgstr "" - -#: src/tables/part/ParametricPartTable.tsx:360 -msgid "Show locked parts" -msgstr "" - -#: src/tables/part/ParametricPartTable.tsx:365 -msgid "Show assembly parts" -msgstr "" - -#: src/tables/part/ParametricPartTableFilters.tsx:36 -msgid "True" -msgstr "" - -#: src/tables/part/ParametricPartTableFilters.tsx:37 -msgid "False" -msgstr "" - -#: src/tables/part/ParametricPartTableFilters.tsx:47 -#: src/tables/part/ParametricPartTableFilters.tsx:80 -msgid "Select a choice" -msgstr "" - -#: src/tables/part/ParametricPartTableFilters.tsx:100 -msgid "Enter a value" -msgstr "" +#~ msgid "Edit Part Parameter" +#~ msgstr "Edit Part Parameter" #: src/tables/part/PartBuildAllocationsTable.tsx:64 msgid "Assembly IPN" @@ -10273,7 +10467,7 @@ msgid "Required Stock" msgstr "" #: src/tables/part/PartBuildAllocationsTable.tsx:124 -#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:381 +#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:383 msgid "View Build Order" msgstr "" @@ -10332,85 +10526,22 @@ msgstr "" msgid "Delete Category Parameter" msgstr "" -#: src/tables/part/PartCategoryTemplateTable.tsx:87 -msgid "Parameter Template" -msgstr "" - #: src/tables/part/PartCategoryTemplateTable.tsx:93 #~ msgid "[{0}]" #~ msgstr "[{0}]" -#: src/tables/part/PartParameterTable.tsx:108 -msgid "Internal Units" -msgstr "" - -#: src/tables/part/PartParameterTable.tsx:128 -#: src/tables/part/PartParameterTable.tsx:138 -msgid "Updated By" -msgstr "" - -#: src/tables/part/PartParameterTable.tsx:139 -msgid "Filter by user who last updated the parameter" -msgstr "" - #: src/tables/part/PartParameterTable.tsx:148 -msgid "New Part Parameter" -msgstr "" +#~ msgid "New Part Parameter" +#~ msgstr "New Part Parameter" #: src/tables/part/PartParameterTable.tsx:173 #: src/tables/part/PartParameterTable.tsx:195 -msgid "Delete Part Parameter" -msgstr "" +#~ msgid "Delete Part Parameter" +#~ msgstr "Delete Part Parameter" #: src/tables/part/PartParameterTable.tsx:213 -msgid "Add parameter" -msgstr "" - -#: src/tables/part/PartParameterTable.tsx:232 -msgid "Part parameters cannot be edited, as the part is locked" -msgstr "" - -#: src/tables/part/PartParameterTemplateTable.tsx:36 -msgid "Checkbox" -msgstr "" - -#: src/tables/part/PartParameterTemplateTable.tsx:37 -msgid "Show checkbox templates" -msgstr "" - -#: src/tables/part/PartParameterTemplateTable.tsx:41 -msgid "Has choices" -msgstr "" - -#: src/tables/part/PartParameterTemplateTable.tsx:42 -msgid "Show templates with choices" -msgstr "" - -#: src/tables/part/PartParameterTemplateTable.tsx:46 -#: src/tables/part/PartTable.tsx:245 -msgid "Has Units" -msgstr "" - -#: src/tables/part/PartParameterTemplateTable.tsx:47 -msgid "Show templates with units" -msgstr "" - -#: src/tables/part/PartParameterTemplateTable.tsx:91 -#: src/tables/part/PartParameterTemplateTable.tsx:166 -msgid "Add Parameter Template" -msgstr "" - -#: src/tables/part/PartParameterTemplateTable.tsx:105 -msgid "Duplicate Parameter Template" -msgstr "" - -#: src/tables/part/PartParameterTemplateTable.tsx:117 -msgid "Edit Parameter Template" -msgstr "" - -#: src/tables/part/PartParameterTemplateTable.tsx:128 -msgid "Delete Parameter Template" -msgstr "" +#~ msgid "Add parameter" +#~ msgstr "Add parameter" #: src/tables/part/PartParameterTemplateTable.tsx:141 #~ msgid "Add parameter template" @@ -10430,7 +10561,7 @@ msgid "Show received items" msgstr "" #: src/tables/part/PartSalesAllocationsTable.tsx:90 -#: src/tables/sales/SalesOrderShipmentTable.tsx:218 +#: src/tables/sales/SalesOrderShipmentTable.tsx:263 msgid "View Sales Order" msgstr "" @@ -10617,8 +10748,8 @@ msgstr "" #: src/tables/part/PartTestResultTable.tsx:103 #: src/tables/part/PartTestResultTable.tsx:181 -#: src/tables/part/PartTestResultTable.tsx:320 -#: src/tables/part/PartTestResultTable.tsx:334 +#: src/tables/part/PartTestResultTable.tsx:328 +#: src/tables/part/PartTestResultTable.tsx:342 #: src/tables/stock/StockItemTestResultTable.tsx:296 #: src/tables/stock/StockItemTestResultTable.tsx:368 #: src/tables/stock/StockItemTestResultTable.tsx:429 @@ -10643,7 +10774,7 @@ msgstr "" msgid "No Result" msgstr "" -#: src/tables/part/PartTestResultTable.tsx:298 +#: src/tables/part/PartTestResultTable.tsx:306 msgid "Show build outputs currently in production" msgstr "" @@ -11013,36 +11144,45 @@ msgstr "" #~ msgid "Parameter updated" #~ msgstr "Parameter updated" -#: src/tables/purchasing/ManufacturerPartParameterTable.tsx:63 -#: src/tables/purchasing/ManufacturerPartParameterTable.tsx:112 -msgid "Add Parameter" -msgstr "" - #: src/tables/purchasing/ManufacturerPartParameterTable.tsx:73 #~ msgid "Parameter deleted" #~ msgstr "Parameter deleted" -#: src/tables/purchasing/ManufacturerPartParameterTable.tsx:74 -msgid "Edit Parameter" -msgstr "" - #: src/tables/purchasing/ManufacturerPartParameterTable.tsx:74 #~ msgid "Are you sure you want to delete this parameter?" #~ msgstr "Are you sure you want to delete this parameter?" -#: src/tables/purchasing/ManufacturerPartParameterTable.tsx:82 -msgid "Delete Parameter" +#: src/tables/purchasing/ManufacturerPartParametricTable.tsx:34 +#: src/tables/purchasing/ManufacturerPartTable.tsx:82 +#: src/tables/purchasing/SupplierPartTable.tsx:99 +msgid "MPN" +msgstr "" + +#: src/tables/purchasing/ManufacturerPartParametricTable.tsx:44 +#: src/tables/purchasing/ManufacturerPartTable.tsx:134 +#: src/tables/purchasing/SupplierPartTable.tsx:220 +msgid "Active Part" +msgstr "" + +#: src/tables/purchasing/ManufacturerPartParametricTable.tsx:45 +#: src/tables/purchasing/ManufacturerPartTable.tsx:135 +msgid "Show manufacturer parts for active internal parts." +msgstr "" + +#: src/tables/purchasing/ManufacturerPartParametricTable.tsx:50 +#: src/tables/purchasing/ManufacturerPartTable.tsx:140 +msgid "Active Manufacturer" +msgstr "" + +#: src/tables/purchasing/ManufacturerPartParametricTable.tsx:51 +#: src/tables/purchasing/ManufacturerPartTable.tsx:142 +msgid "Show manufacturer parts for active manufacturers." msgstr "" #: src/tables/purchasing/ManufacturerPartTable.tsx:63 #~ msgid "Create Manufacturer Part" #~ msgstr "Create Manufacturer Part" -#: src/tables/purchasing/ManufacturerPartTable.tsx:82 -#: src/tables/purchasing/SupplierPartTable.tsx:99 -msgid "MPN" -msgstr "" - #: src/tables/purchasing/ManufacturerPartTable.tsx:100 #~ msgid "Manufacturer part updated" #~ msgstr "Manufacturer part updated" @@ -11055,25 +11195,8 @@ msgstr "" #~ msgid "Are you sure you want to remove this manufacturer part?" #~ msgstr "Are you sure you want to remove this manufacturer part?" -#: src/tables/purchasing/ManufacturerPartTable.tsx:134 -#: src/tables/purchasing/SupplierPartTable.tsx:220 -msgid "Active Part" -msgstr "" - -#: src/tables/purchasing/ManufacturerPartTable.tsx:135 -msgid "Show manufacturer parts for active internal parts." -msgstr "" - -#: src/tables/purchasing/ManufacturerPartTable.tsx:140 -msgid "Active Manufacturer" -msgstr "" - -#: src/tables/purchasing/ManufacturerPartTable.tsx:142 -msgid "Show manufacturer parts for active manufacturers." -msgstr "" - #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:115 -#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:397 +#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:399 msgid "Import Line Items" msgstr "" @@ -11099,11 +11222,11 @@ msgstr "" #~ msgid "Add line item" #~ msgstr "Add line item" -#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:350 +#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:352 msgid "Receive line item" msgstr "" -#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:414 +#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:416 msgid "Receive items" msgstr "" @@ -11201,25 +11324,25 @@ msgid "Not shipped" msgstr "" #: src/tables/sales/SalesOrderAllocationTable.tsx:211 -#: src/tables/sales/SalesOrderAllocationTable.tsx:229 +#: src/tables/sales/SalesOrderAllocationTable.tsx:235 msgid "Edit Allocation" msgstr "" #: src/tables/sales/SalesOrderAllocationTable.tsx:218 #: src/tables/sales/SalesOrderAllocationTable.tsx:241 -msgid "Delete Allocation" -msgstr "" +#~ msgid "Delete Allocation" +#~ msgstr "Delete Allocation" -#: src/tables/sales/SalesOrderAllocationTable.tsx:252 -#: src/tables/sales/SalesOrderAllocationTable.tsx:253 +#: src/tables/sales/SalesOrderAllocationTable.tsx:261 +#: src/tables/sales/SalesOrderAllocationTable.tsx:262 msgid "View Shipment" msgstr "" -#: src/tables/sales/SalesOrderAllocationTable.tsx:308 +#: src/tables/sales/SalesOrderAllocationTable.tsx:317 msgid "Assign to Shipment" msgstr "" -#: src/tables/sales/SalesOrderAllocationTable.tsx:324 +#: src/tables/sales/SalesOrderAllocationTable.tsx:333 msgid "Assign to shipment" msgstr "" @@ -11259,35 +11382,35 @@ msgstr "" #~ msgid "Delete Shipment" #~ msgstr "Delete Shipment" -#: src/tables/sales/SalesOrderShipmentTable.tsx:72 +#: src/tables/sales/SalesOrderShipmentTable.tsx:79 msgid "Create Shipment" msgstr "" -#: src/tables/sales/SalesOrderShipmentTable.tsx:143 +#: src/tables/sales/SalesOrderShipmentTable.tsx:164 msgid "Items" msgstr "" -#: src/tables/sales/SalesOrderShipmentTable.tsx:203 +#: src/tables/sales/SalesOrderShipmentTable.tsx:248 msgid "Edit shipment" msgstr "" -#: src/tables/sales/SalesOrderShipmentTable.tsx:211 +#: src/tables/sales/SalesOrderShipmentTable.tsx:256 msgid "Cancel shipment" msgstr "" -#: src/tables/sales/SalesOrderShipmentTable.tsx:241 +#: src/tables/sales/SalesOrderShipmentTable.tsx:286 msgid "Add shipment" msgstr "" -#: src/tables/sales/SalesOrderShipmentTable.tsx:255 +#: src/tables/sales/SalesOrderShipmentTable.tsx:300 msgid "Show shipments which have been checked" msgstr "" -#: src/tables/sales/SalesOrderShipmentTable.tsx:260 +#: src/tables/sales/SalesOrderShipmentTable.tsx:305 msgid "Show shipments which have been shipped" msgstr "" -#: src/tables/sales/SalesOrderShipmentTable.tsx:265 +#: src/tables/sales/SalesOrderShipmentTable.tsx:310 msgid "Show shipments which have been delivered" msgstr "" @@ -11621,11 +11744,6 @@ msgstr "" msgid "Imported Rows" msgstr "" -#: src/tables/settings/ImportSessionTable.tsx:111 -#: src/tables/settings/TemplateTable.tsx:368 -msgid "Model Type" -msgstr "" - #: src/tables/settings/ImportSessionTable.tsx:112 #: src/tables/settings/TemplateTable.tsx:369 msgid "Filter by target model type" diff --git a/src/frontend/src/locales/bg/messages.po b/src/frontend/src/locales/bg/messages.po index 987efff888..43660f9cce 100644 --- a/src/frontend/src/locales/bg/messages.po +++ b/src/frontend/src/locales/bg/messages.po @@ -8,7 +8,7 @@ msgstr "" "Language: bg\n" "Project-Id-Version: inventree\n" "Report-Msgid-Bugs-To: \n" -"PO-Revision-Date: 2025-11-19 19:39\n" +"PO-Revision-Date: 2025-12-07 07:36\n" "Last-Translator: \n" "Language-Team: Bulgarian\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" @@ -30,7 +30,7 @@ msgid "Edit" msgstr "" #: lib/components/RowActions.tsx:56 -#: src/components/forms/ApiForm.tsx:735 +#: src/components/forms/ApiForm.tsx:754 #: src/components/items/ActionDropdown.tsx:257 #: src/components/items/RoleTable.tsx:155 #: src/hooks/UseForm.tsx:164 @@ -56,24 +56,24 @@ msgstr "" #: lib/components/RowActions.tsx:136 #: src/components/nav/NavigationDrawer.tsx:190 -#: src/forms/PurchaseOrderForms.tsx:802 +#: src/forms/PurchaseOrderForms.tsx:854 #: src/forms/StockForms.tsx:796 #: src/forms/StockForms.tsx:843 -#: src/forms/StockForms.tsx:889 -#: src/forms/StockForms.tsx:928 -#: src/forms/StockForms.tsx:964 -#: src/forms/StockForms.tsx:1050 +#: src/forms/StockForms.tsx:896 +#: src/forms/StockForms.tsx:942 +#: src/forms/StockForms.tsx:980 +#: src/forms/StockForms.tsx:1066 #: src/pages/Index/Settings/AccountSettings/MFASettings.tsx:962 msgid "Actions" msgstr "" #: lib/components/SearchInput.tsx:34 -#: src/components/forms/fields/RelatedModelField.tsx:408 +#: src/components/forms/fields/RelatedModelField.tsx:479 #: src/components/nav/Header.tsx:169 #: src/components/wizards/ImportPartWizard.tsx:200 #: src/components/wizards/ImportPartWizard.tsx:233 -#: src/pages/Index/Settings/UserSettings.tsx:74 -#: src/pages/part/PartDetail.tsx:1155 +#: src/pages/Index/Settings/UserSettings.tsx:75 +#: src/pages/part/PartDetail.tsx:1176 msgid "Search" msgstr "" @@ -95,7 +95,7 @@ msgstr "" msgid "No" msgstr "" -#: lib/enums/ModelInformation.tsx:28 +#: lib/enums/ModelInformation.tsx:29 #: src/components/wizards/OrderPartsWizard.tsx:279 #: src/forms/BuildForms.tsx:332 #: src/forms/BuildForms.tsx:407 @@ -103,208 +103,234 @@ msgstr "" #: src/forms/BuildForms.tsx:630 #: src/forms/BuildForms.tsx:793 #: src/forms/BuildForms.tsx:896 -#: src/forms/PurchaseOrderForms.tsx:798 +#: src/forms/PurchaseOrderForms.tsx:850 #: src/forms/ReturnOrderForms.tsx:242 -#: src/forms/SalesOrderForms.tsx:305 +#: src/forms/SalesOrderForms.tsx:384 #: src/forms/StockForms.tsx:360 #: src/forms/StockForms.tsx:791 #: src/forms/StockForms.tsx:838 -#: src/forms/StockForms.tsx:884 -#: src/forms/StockForms.tsx:923 -#: src/forms/StockForms.tsx:959 -#: src/forms/StockForms.tsx:1002 -#: src/forms/StockForms.tsx:1046 -#: src/forms/StockForms.tsx:1094 -#: src/forms/StockForms.tsx:1138 -#: src/pages/build/BuildDetail.tsx:200 -#: src/pages/part/PartDetail.tsx:1207 +#: src/forms/StockForms.tsx:891 +#: src/forms/StockForms.tsx:937 +#: src/forms/StockForms.tsx:975 +#: src/forms/StockForms.tsx:1018 +#: src/forms/StockForms.tsx:1062 +#: src/forms/StockForms.tsx:1110 +#: src/forms/StockForms.tsx:1154 +#: src/pages/build/BuildDetail.tsx:201 +#: src/pages/part/PartDetail.tsx:1228 #: src/tables/ColumnRenderers.tsx:91 +#: src/tables/part/PartTestResultTable.tsx:247 #: src/tables/part/RelatedPartTable.tsx:53 #: src/tables/stock/StockTrackingTable.tsx:87 msgid "Part" msgstr "" -#: lib/enums/ModelInformation.tsx:29 +#: lib/enums/ModelInformation.tsx:30 #: lib/enums/Roles.tsx:35 #: src/components/nav/NavigationDrawer.tsx:70 #: src/defaults/links.tsx:36 -#: src/pages/Index/Settings/SystemSettings.tsx:190 -#: src/pages/part/CategoryDetail.tsx:132 -#: src/pages/part/CategoryDetail.tsx:277 -#: src/pages/part/CategoryDetail.tsx:323 -#: src/pages/part/CategoryDetail.tsx:354 -#: src/pages/part/PartDetail.tsx:965 +#: src/pages/Index/Settings/SystemSettings.tsx:197 +#: src/pages/part/CategoryDetail.tsx:135 +#: src/pages/part/CategoryDetail.tsx:285 +#: src/pages/part/CategoryDetail.tsx:340 +#: src/pages/part/CategoryDetail.tsx:371 +#: src/pages/part/PartDetail.tsx:978 msgid "Parts" msgstr "" #: lib/enums/ModelInformation.tsx:37 #: src/pages/Index/Settings/AdminCenter/PartParameterPanel.tsx:13 -msgid "Part Parameter Template" -msgstr "" +#~ msgid "Part Parameter Template" +#~ msgstr "Part Parameter Template" #: lib/enums/ModelInformation.tsx:38 -msgid "Part Parameter Templates" +#~ msgid "Part Parameter Templates" +#~ msgstr "Part Parameter Templates" + +#: lib/enums/ModelInformation.tsx:39 +msgid "Parameter" +msgstr "" + +#: lib/enums/ModelInformation.tsx:40 +#: src/components/panels/ParametersPanel.tsx:19 +#: src/components/wizards/ImportPartWizard.tsx:807 +#: src/pages/Index/Settings/AdminCenter/Index.tsx:195 +#: src/pages/Index/Settings/SystemSettings.tsx:191 +#: src/pages/part/PartDetail.tsx:943 +msgid "Parameters" msgstr "" #: lib/enums/ModelInformation.tsx:45 -msgid "Part Test Template" +#: src/tables/part/PartCategoryTemplateTable.tsx:87 +msgid "Parameter Template" msgstr "" #: lib/enums/ModelInformation.tsx:46 -msgid "Part Test Templates" +#: src/pages/Index/Settings/AdminCenter/ParameterPanel.tsx:13 +msgid "Parameter Templates" msgstr "" #: lib/enums/ModelInformation.tsx:52 +msgid "Part Test Template" +msgstr "" + +#: lib/enums/ModelInformation.tsx:53 +msgid "Part Test Templates" +msgstr "" + +#: lib/enums/ModelInformation.tsx:59 #: src/components/wizards/OrderPartsWizard.tsx:290 -#: src/pages/company/SupplierPartDetail.tsx:413 +#: src/pages/company/SupplierPartDetail.tsx:418 #: src/pages/stock/StockDetail.tsx:289 -#: src/tables/build/BuildAllocatedStockTable.tsx:155 +#: src/tables/build/BuildAllocatedStockTable.tsx:152 #: src/tables/part/PartPurchaseOrdersTable.tsx:50 +#: src/tables/purchasing/SupplierPartParametricTable.tsx:29 #: src/tables/purchasing/SupplierPartTable.tsx:83 #: src/tables/stock/StockItemTable.tsx:247 msgid "Supplier Part" msgstr "" -#: lib/enums/ModelInformation.tsx:53 -#: src/pages/purchasing/PurchasingIndex.tsx:92 +#: lib/enums/ModelInformation.tsx:60 +#: src/pages/purchasing/PurchasingIndex.tsx:128 msgid "Supplier Parts" msgstr "" -#: lib/enums/ModelInformation.tsx:61 -#: src/pages/company/ManufacturerPartDetail.tsx:297 -#: src/pages/company/SupplierPartDetail.tsx:161 +#: lib/enums/ModelInformation.tsx:69 +#: src/pages/company/ManufacturerPartDetail.tsx:288 +#: src/pages/company/SupplierPartDetail.tsx:162 #: src/tables/part/PartPurchaseOrdersTable.tsx:56 #: src/tables/stock/StockItemTable.tsx:253 msgid "Manufacturer Part" msgstr "" -#: lib/enums/ModelInformation.tsx:62 -#: src/pages/purchasing/PurchasingIndex.tsx:109 +#: lib/enums/ModelInformation.tsx:70 +#: src/pages/purchasing/PurchasingIndex.tsx:177 msgid "Manufacturer Parts" msgstr "" -#: lib/enums/ModelInformation.tsx:70 -#: src/pages/part/CategoryDetail.tsx:354 +#: lib/enums/ModelInformation.tsx:79 +#: src/pages/part/CategoryDetail.tsx:371 #: src/tables/Filter.tsx:389 msgid "Part Category" msgstr "" -#: lib/enums/ModelInformation.tsx:71 +#: lib/enums/ModelInformation.tsx:80 #: lib/enums/Roles.tsx:37 -#: src/pages/part/CategoryDetail.tsx:271 -#: src/pages/part/CategoryDetail.tsx:345 -#: src/pages/part/PartDetail.tsx:1196 +#: src/pages/part/CategoryDetail.tsx:279 +#: src/pages/part/CategoryDetail.tsx:362 +#: src/pages/part/PartDetail.tsx:1217 msgid "Part Categories" msgstr "" -#: lib/enums/ModelInformation.tsx:79 +#: lib/enums/ModelInformation.tsx:88 #: src/forms/BuildForms.tsx:473 #: src/forms/BuildForms.tsx:633 #: src/forms/BuildForms.tsx:794 -#: src/forms/SalesOrderForms.tsx:307 +#: src/forms/SalesOrderForms.tsx:386 #: src/pages/stock/StockDetail.tsx:1005 -#: src/tables/part/PartTestResultTable.tsx:248 +#: src/tables/part/PartTestResultTable.tsx:256 #: src/tables/stock/StockTrackingTable.tsx:48 #: src/tables/stock/StockTrackingTable.tsx:55 msgid "Stock Item" msgstr "" -#: lib/enums/ModelInformation.tsx:80 +#: lib/enums/ModelInformation.tsx:89 #: lib/enums/Roles.tsx:45 -#: src/pages/company/CompanyDetail.tsx:210 -#: src/pages/part/CategoryDetail.tsx:291 +#: src/pages/company/CompanyDetail.tsx:211 +#: src/pages/part/CategoryDetail.tsx:314 #: src/pages/part/PartStockHistoryDetail.tsx:101 #: src/pages/stock/LocationDetail.tsx:121 #: src/pages/stock/LocationDetail.tsx:180 msgid "Stock Items" msgstr "" -#: lib/enums/ModelInformation.tsx:88 +#: lib/enums/ModelInformation.tsx:98 #: lib/enums/Roles.tsx:47 #: src/pages/stock/LocationDetail.tsx:420 msgid "Stock Location" msgstr "" -#: lib/enums/ModelInformation.tsx:89 +#: lib/enums/ModelInformation.tsx:99 #: src/pages/stock/LocationDetail.tsx:174 #: src/pages/stock/LocationDetail.tsx:412 #: src/pages/stock/StockDetail.tsx:996 msgid "Stock Locations" msgstr "" -#: lib/enums/ModelInformation.tsx:97 +#: lib/enums/ModelInformation.tsx:108 msgid "Stock Location Type" msgstr "" -#: lib/enums/ModelInformation.tsx:98 +#: lib/enums/ModelInformation.tsx:109 msgid "Stock Location Types" msgstr "" -#: lib/enums/ModelInformation.tsx:103 -#: src/pages/Index/Settings/SystemSettings.tsx:248 -#: src/pages/part/PartDetail.tsx:911 +#: lib/enums/ModelInformation.tsx:114 +#: src/pages/Index/Settings/SystemSettings.tsx:254 +#: src/pages/part/PartDetail.tsx:900 msgid "Stock History" msgstr "" -#: lib/enums/ModelInformation.tsx:104 +#: lib/enums/ModelInformation.tsx:115 msgid "Stock Histories" msgstr "" -#: lib/enums/ModelInformation.tsx:109 +#: lib/enums/ModelInformation.tsx:120 msgid "Build" msgstr "" -#: lib/enums/ModelInformation.tsx:110 +#: lib/enums/ModelInformation.tsx:121 msgid "Builds" msgstr "" -#: lib/enums/ModelInformation.tsx:118 +#: lib/enums/ModelInformation.tsx:130 msgid "Build Line" msgstr "" -#: lib/enums/ModelInformation.tsx:119 +#: lib/enums/ModelInformation.tsx:131 msgid "Build Lines" msgstr "" -#: lib/enums/ModelInformation.tsx:126 +#: lib/enums/ModelInformation.tsx:138 msgid "Build Item" msgstr "" -#: lib/enums/ModelInformation.tsx:127 +#: lib/enums/ModelInformation.tsx:139 msgid "Build Items" msgstr "" -#: lib/enums/ModelInformation.tsx:132 -#: src/pages/company/CompanyDetail.tsx:340 +#: lib/enums/ModelInformation.tsx:144 +#: src/pages/company/CompanyDetail.tsx:345 #: src/tables/company/CompanyTable.tsx:47 #: src/tables/company/ContactTable.tsx:67 +#: src/tables/company/ParametricCompanyTable.tsx:18 msgid "Company" msgstr "" -#: lib/enums/ModelInformation.tsx:133 +#: lib/enums/ModelInformation.tsx:145 msgid "Companies" msgstr "" -#: lib/enums/ModelInformation.tsx:140 -#: src/pages/build/BuildDetail.tsx:316 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:253 -#: src/pages/sales/ReturnOrderDetail.tsx:231 -#: src/pages/sales/SalesOrderDetail.tsx:224 +#: lib/enums/ModelInformation.tsx:152 +#: src/pages/build/BuildDetail.tsx:317 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:254 +#: src/pages/sales/ReturnOrderDetail.tsx:232 +#: src/pages/sales/SalesOrderDetail.tsx:225 #: src/tables/ColumnRenderers.tsx:362 #: src/tables/Filter.tsx:286 #: src/tables/TableHoverCard.tsx:101 msgid "Project Code" msgstr "" -#: lib/enums/ModelInformation.tsx:141 +#: lib/enums/ModelInformation.tsx:153 #: src/pages/Index/Settings/AdminCenter/Index.tsx:172 msgid "Project Codes" msgstr "" -#: lib/enums/ModelInformation.tsx:147 +#: lib/enums/ModelInformation.tsx:159 #: src/components/wizards/OrderPartsWizard.tsx:338 #: src/pages/part/pricing/PurchaseHistoryPanel.tsx:33 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:550 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:555 #: src/pages/stock/StockDetail.tsx:352 #: src/tables/part/PartPurchaseOrdersTable.tsx:32 #: src/tables/stock/StockItemTable.tsx:239 @@ -312,117 +338,117 @@ msgstr "" msgid "Purchase Order" msgstr "" -#: lib/enums/ModelInformation.tsx:148 +#: lib/enums/ModelInformation.tsx:160 #: lib/enums/Roles.tsx:39 #: src/defaults/actions.tsx:104 -#: src/pages/Index/Settings/SystemSettings.tsx:283 -#: src/pages/company/CompanyDetail.tsx:203 -#: src/pages/company/SupplierPartDetail.tsx:266 -#: src/pages/part/PartDetail.tsx:875 -#: src/pages/purchasing/PurchasingIndex.tsx:60 +#: src/pages/Index/Settings/SystemSettings.tsx:289 +#: src/pages/company/CompanyDetail.tsx:204 +#: src/pages/company/SupplierPartDetail.tsx:267 +#: src/pages/part/PartDetail.tsx:864 +#: src/pages/purchasing/PurchasingIndex.tsx:66 msgid "Purchase Orders" msgstr "" -#: lib/enums/ModelInformation.tsx:156 +#: lib/enums/ModelInformation.tsx:169 msgid "Purchase Order Line" msgstr "" -#: lib/enums/ModelInformation.tsx:157 +#: lib/enums/ModelInformation.tsx:170 msgid "Purchase Order Lines" msgstr "" -#: lib/enums/ModelInformation.tsx:162 -#: src/pages/build/BuildDetail.tsx:289 +#: lib/enums/ModelInformation.tsx:175 +#: src/pages/build/BuildDetail.tsx:290 #: src/pages/part/pricing/SaleHistoryPanel.tsx:24 -#: src/pages/sales/SalesOrderDetail.tsx:614 -#: src/pages/sales/SalesOrderShipmentDetail.tsx:105 -#: src/pages/sales/SalesOrderShipmentDetail.tsx:478 +#: src/pages/sales/SalesOrderDetail.tsx:619 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:103 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:446 #: src/pages/stock/StockDetail.tsx:361 #: src/tables/part/PartSalesAllocationsTable.tsx:41 #: src/tables/sales/SalesOrderAllocationTable.tsx:110 -#: src/tables/sales/SalesOrderShipmentTable.tsx:122 +#: src/tables/sales/SalesOrderShipmentTable.tsx:143 #: src/tables/stock/StockTrackingTable.tsx:131 msgid "Sales Order" msgstr "" -#: lib/enums/ModelInformation.tsx:163 +#: lib/enums/ModelInformation.tsx:176 #: lib/enums/Roles.tsx:43 #: src/defaults/actions.tsx:114 -#: src/pages/Index/Settings/SystemSettings.tsx:299 -#: src/pages/company/CompanyDetail.tsx:223 -#: src/pages/part/PartDetail.tsx:887 -#: src/pages/sales/SalesIndex.tsx:84 +#: src/pages/Index/Settings/SystemSettings.tsx:305 +#: src/pages/company/CompanyDetail.tsx:224 +#: src/pages/part/PartDetail.tsx:876 +#: src/pages/sales/SalesIndex.tsx:53 msgid "Sales Orders" msgstr "" -#: lib/enums/ModelInformation.tsx:171 -#: src/pages/sales/SalesOrderShipmentDetail.tsx:477 +#: lib/enums/ModelInformation.tsx:185 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:445 msgid "Sales Order Shipment" msgstr "" -#: lib/enums/ModelInformation.tsx:172 +#: lib/enums/ModelInformation.tsx:186 msgid "Sales Order Shipments" msgstr "" -#: lib/enums/ModelInformation.tsx:179 -#: src/pages/sales/ReturnOrderDetail.tsx:549 +#: lib/enums/ModelInformation.tsx:194 +#: src/pages/sales/ReturnOrderDetail.tsx:554 #: src/tables/stock/StockTrackingTable.tsx:142 msgid "Return Order" msgstr "" -#: lib/enums/ModelInformation.tsx:180 +#: lib/enums/ModelInformation.tsx:195 #: lib/enums/Roles.tsx:41 #: src/defaults/actions.tsx:125 -#: src/pages/Index/Settings/SystemSettings.tsx:316 -#: src/pages/company/CompanyDetail.tsx:230 -#: src/pages/part/PartDetail.tsx:894 -#: src/pages/sales/SalesIndex.tsx:117 +#: src/pages/Index/Settings/SystemSettings.tsx:322 +#: src/pages/company/CompanyDetail.tsx:231 +#: src/pages/part/PartDetail.tsx:883 +#: src/pages/sales/SalesIndex.tsx:99 msgid "Return Orders" msgstr "" -#: lib/enums/ModelInformation.tsx:188 +#: lib/enums/ModelInformation.tsx:204 msgid "Return Order Line Item" msgstr "" -#: lib/enums/ModelInformation.tsx:189 +#: lib/enums/ModelInformation.tsx:205 msgid "Return Order Line Items" msgstr "" -#: lib/enums/ModelInformation.tsx:194 +#: lib/enums/ModelInformation.tsx:210 #: src/tables/company/AddressTable.tsx:52 msgid "Address" msgstr "" -#: lib/enums/ModelInformation.tsx:195 -#: src/pages/company/CompanyDetail.tsx:264 +#: lib/enums/ModelInformation.tsx:211 +#: src/pages/company/CompanyDetail.tsx:265 msgid "Addresses" msgstr "" -#: lib/enums/ModelInformation.tsx:201 +#: lib/enums/ModelInformation.tsx:217 #: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:89 #: src/pages/core/UserDetail.tsx:135 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:229 -#: src/pages/sales/ReturnOrderDetail.tsx:207 -#: src/pages/sales/SalesOrderDetail.tsx:200 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:230 +#: src/pages/sales/ReturnOrderDetail.tsx:208 +#: src/pages/sales/SalesOrderDetail.tsx:201 msgid "Contact" msgstr "" -#: lib/enums/ModelInformation.tsx:202 -#: src/pages/company/CompanyDetail.tsx:258 +#: lib/enums/ModelInformation.tsx:218 +#: src/pages/company/CompanyDetail.tsx:259 #: src/pages/core/CoreIndex.tsx:33 msgid "Contacts" msgstr "" -#: lib/enums/ModelInformation.tsx:208 +#: lib/enums/ModelInformation.tsx:224 #: src/tables/ColumnRenderers.tsx:444 msgid "Owner" msgstr "" -#: lib/enums/ModelInformation.tsx:209 +#: lib/enums/ModelInformation.tsx:225 msgid "Owners" msgstr "" -#: lib/enums/ModelInformation.tsx:215 +#: lib/enums/ModelInformation.tsx:231 #: src/pages/Auth/ChangePassword.tsx:36 #: src/pages/core/UserDetail.tsx:220 #: src/tables/ColumnRenderers.tsx:395 @@ -437,7 +463,7 @@ msgstr "" msgid "User" msgstr "" -#: lib/enums/ModelInformation.tsx:216 +#: lib/enums/ModelInformation.tsx:232 #: src/components/nav/NavigationDrawer.tsx:105 #: src/pages/Index/Settings/AdminCenter/UserManagementPanel.tsx:15 #: src/pages/core/CoreIndex.tsx:21 @@ -445,12 +471,12 @@ msgstr "" msgid "Users" msgstr "" -#: lib/enums/ModelInformation.tsx:222 +#: lib/enums/ModelInformation.tsx:238 #: src/pages/core/GroupDetail.tsx:78 msgid "Group" msgstr "" -#: lib/enums/ModelInformation.tsx:223 +#: lib/enums/ModelInformation.tsx:239 #: src/components/nav/NavigationDrawer.tsx:111 #: src/pages/Index/Settings/AdminCenter/UserManagementPanel.tsx:23 #: src/pages/core/CoreIndex.tsx:27 @@ -460,64 +486,64 @@ msgstr "" msgid "Groups" msgstr "" -#: lib/enums/ModelInformation.tsx:230 +#: lib/enums/ModelInformation.tsx:246 msgid "Import Session" msgstr "" -#: lib/enums/ModelInformation.tsx:231 +#: lib/enums/ModelInformation.tsx:247 msgid "Import Sessions" msgstr "" -#: lib/enums/ModelInformation.tsx:238 +#: lib/enums/ModelInformation.tsx:254 msgid "Label Template" msgstr "" -#: lib/enums/ModelInformation.tsx:239 +#: lib/enums/ModelInformation.tsx:255 #: src/pages/Index/Settings/AdminCenter/Index.tsx:209 msgid "Label Templates" msgstr "" -#: lib/enums/ModelInformation.tsx:246 +#: lib/enums/ModelInformation.tsx:262 msgid "Report Template" msgstr "" -#: lib/enums/ModelInformation.tsx:247 +#: lib/enums/ModelInformation.tsx:263 #: src/pages/Index/Settings/AdminCenter/Index.tsx:215 msgid "Report Templates" msgstr "" -#: lib/enums/ModelInformation.tsx:254 +#: lib/enums/ModelInformation.tsx:270 #: src/components/plugins/PluginDrawer.tsx:145 msgid "Plugin Configuration" msgstr "" -#: lib/enums/ModelInformation.tsx:255 +#: lib/enums/ModelInformation.tsx:271 msgid "Plugin Configurations" msgstr "" -#: lib/enums/ModelInformation.tsx:262 +#: lib/enums/ModelInformation.tsx:278 msgid "Content Type" msgstr "" -#: lib/enums/ModelInformation.tsx:263 +#: lib/enums/ModelInformation.tsx:279 msgid "Content Types" msgstr "" -#: lib/enums/ModelInformation.tsx:268 +#: lib/enums/ModelInformation.tsx:284 msgid "Selection List" msgstr "" -#: lib/enums/ModelInformation.tsx:269 -#: src/pages/Index/Settings/AdminCenter/PartParameterPanel.tsx:21 +#: lib/enums/ModelInformation.tsx:285 +#: src/pages/Index/Settings/AdminCenter/ParameterPanel.tsx:21 msgid "Selection Lists" msgstr "" -#: lib/enums/ModelInformation.tsx:275 +#: lib/enums/ModelInformation.tsx:291 #: src/components/barcodes/BarcodeInput.tsx:114 #: src/components/dashboard/DashboardLayout.tsx:281 #: src/components/editors/NotesEditor.tsx:74 #: src/components/editors/TemplateEditor/TemplateEditor.tsx:158 -#: src/components/forms/fields/ApiFormField.tsx:273 +#: src/components/forms/fields/ApiFormField.tsx:237 #: src/components/forms/fields/TableField.tsx:45 #: src/components/importer/ImportDataSelector.tsx:192 #: src/components/importer/ImporterColumnSelector.tsx:234 @@ -528,7 +554,7 @@ msgstr "" #: src/components/nav/SearchDrawer.tsx:572 #: src/components/settings/SettingList.tsx:139 #: src/components/wizards/ImportPartWizard.tsx:574 -#: src/components/wizards/ImportPartWizard.tsx:718 +#: src/components/wizards/ImportPartWizard.tsx:719 #: src/forms/BomForms.tsx:69 #: src/functions/auth.tsx:643 #: src/pages/ErrorPage.tsx:11 @@ -547,9 +573,9 @@ msgstr "" msgid "Error" msgstr "" -#: lib/enums/ModelInformation.tsx:276 +#: lib/enums/ModelInformation.tsx:292 #: src/tables/machine/MachineListTable.tsx:402 -#: src/tables/machine/MachineTypeTable.tsx:299 +#: src/tables/machine/MachineTypeTable.tsx:297 msgid "Errors" msgstr "" @@ -559,10 +585,10 @@ msgstr "" #: lib/enums/Roles.tsx:33 #: src/defaults/actions.tsx:135 -#: src/pages/Index/Settings/SystemSettings.tsx:264 -#: src/pages/build/BuildIndex.tsx:75 -#: src/pages/part/PartDetail.tsx:904 -#: src/pages/sales/SalesOrderDetail.tsx:421 +#: src/pages/Index/Settings/SystemSettings.tsx:270 +#: src/pages/build/BuildIndex.tsx:67 +#: src/pages/part/PartDetail.tsx:893 +#: src/pages/sales/SalesOrderDetail.tsx:422 msgid "Build Orders" msgstr "" @@ -639,39 +665,39 @@ msgstr "" msgid "Enter barcode data" msgstr "" -#: src/components/barcodes/BarcodeScanDialog.tsx:49 -#: src/components/buttons/ScanButton.tsx:15 +#: src/components/barcodes/BarcodeScanDialog.tsx:56 +#: src/components/buttons/ScanButton.tsx:27 #: src/components/nav/NavigationDrawer.tsx:122 -#: src/forms/PurchaseOrderForms.tsx:457 -#: src/forms/PurchaseOrderForms.tsx:563 +#: src/forms/PurchaseOrderForms.tsx:509 +#: src/forms/PurchaseOrderForms.tsx:615 msgid "Scan Barcode" msgstr "" -#: src/components/barcodes/BarcodeScanDialog.tsx:105 +#: src/components/barcodes/BarcodeScanDialog.tsx:121 msgid "No matching item found" msgstr "" -#: src/components/barcodes/BarcodeScanDialog.tsx:134 +#: src/components/barcodes/BarcodeScanDialog.tsx:150 msgid "Barcode does not match the expected model type" msgstr "" -#: src/components/barcodes/BarcodeScanDialog.tsx:145 +#: src/components/barcodes/BarcodeScanDialog.tsx:161 #: src/components/editors/NotesEditor.tsx:84 #: src/components/editors/NotesEditor.tsx:118 -#: src/components/forms/ApiForm.tsx:465 +#: src/components/forms/ApiForm.tsx:484 #: src/components/wizards/ImportPartWizard.tsx:566 -#: src/components/wizards/ImportPartWizard.tsx:690 +#: src/components/wizards/ImportPartWizard.tsx:691 #: src/pages/Index/Settings/AdminCenter/CurrencyManagementPanel.tsx:45 #: src/tables/bom/BomTable.tsx:548 #: src/tables/settings/PendingTasksTable.tsx:68 msgid "Success" msgstr "" -#: src/components/barcodes/BarcodeScanDialog.tsx:151 +#: src/components/barcodes/BarcodeScanDialog.tsx:167 msgid "Failed to handle barcode" msgstr "" -#: src/components/barcodes/BarcodeScanDialog.tsx:167 +#: src/components/barcodes/BarcodeScanDialog.tsx:183 #: src/pages/Index/Scan.tsx:129 msgid "Failed to scan barcode" msgstr "" @@ -714,10 +740,10 @@ msgstr "" #: src/components/barcodes/QRCode.tsx:179 #: src/pages/part/PartDetail.tsx:521 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:222 -#: src/pages/sales/ReturnOrderDetail.tsx:188 -#: src/pages/sales/SalesOrderDetail.tsx:181 -#: src/pages/sales/SalesOrderShipmentDetail.tsx:122 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:223 +#: src/pages/sales/ReturnOrderDetail.tsx:189 +#: src/pages/sales/SalesOrderDetail.tsx:182 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:120 #: src/pages/stock/StockDetail.tsx:186 msgid "Link" msgstr "" @@ -728,7 +754,7 @@ msgstr "" #: src/components/barcodes/QRCode.tsx:205 #: src/components/items/ActionDropdown.tsx:192 -#: src/forms/PurchaseOrderForms.tsx:554 +#: src/forms/PurchaseOrderForms.tsx:606 msgid "Unlink Barcode" msgstr "" @@ -829,14 +855,14 @@ msgstr "" #~ msgid "Scan QR code" #~ msgstr "Scan QR code" -#: src/components/buttons/ScanButton.tsx:19 -msgid "Open Barcode Scanner" -msgstr "" - #: src/components/buttons/ScanButton.tsx:20 #~ msgid "Open QR code scanner" #~ msgstr "Open QR code scanner" +#: src/components/buttons/ScanButton.tsx:32 +msgid "Open Barcode Scanner" +msgstr "" + #: src/components/buttons/SpotlightButton.tsx:12 msgid "Open spotlight" msgstr "" @@ -1059,7 +1085,7 @@ msgid "Show the number of sales orders which are assigned to you" msgstr "" #: src/components/dashboard/DashboardWidgetLibrary.tsx:129 -#: src/pages/sales/SalesIndex.tsx:105 +#: src/pages/sales/SalesIndex.tsx:87 msgid "Pending Shipments" msgstr "" @@ -1210,12 +1236,18 @@ msgid "Remove the associated image from this item?" msgstr "" #: src/components/details/DetailsImage.tsx:83 -#: src/forms/StockForms.tsx:888 +#: src/forms/StockForms.tsx:895 #: src/pages/Index/Settings/AccountSettings/MFASettings.tsx:324 #: src/pages/Index/Settings/AccountSettings/MFASettings.tsx:415 #: src/pages/Index/Settings/AccountSettings/MFASettings.tsx:884 #: src/pages/Index/Settings/AccountSettings/MFASettings.tsx:903 #: src/pages/Index/Settings/AccountSettings/SecurityContent.tsx:254 +#: src/tables/build/BuildAllocatedStockTable.tsx:178 +#: src/tables/build/BuildAllocatedStockTable.tsx:258 +#: src/tables/build/BuildLineTable.tsx:111 +#: src/tables/build/BuildLineTable.tsx:665 +#: src/tables/sales/SalesOrderAllocationTable.tsx:224 +#: src/tables/sales/SalesOrderAllocationTable.tsx:247 msgid "Remove" msgstr "" @@ -1241,12 +1273,12 @@ msgid "Upload Error" msgstr "" #: src/components/details/DetailsImage.tsx:250 -#: src/components/forms/fields/TextField.tsx:65 +#: src/components/forms/fields/AutoFillRightSection.tsx:34 msgid "Clear" msgstr "" #: src/components/details/DetailsImage.tsx:256 -#: src/components/forms/ApiForm.tsx:677 +#: src/components/forms/ApiForm.tsx:696 #: src/contexts/ThemeContext.tsx:44 #: src/pages/Index/Settings/AccountSettings/MFASettings.tsx:149 #: src/pages/Index/Settings/AccountSettings/MFASettings.tsx:568 @@ -1499,8 +1531,8 @@ msgstr "" msgid "A server error occurred" msgstr "" -#: src/components/forms/ApiForm.tsx:103 -#: src/components/forms/ApiForm.tsx:594 +#: src/components/forms/ApiForm.tsx:107 +#: src/components/forms/ApiForm.tsx:613 msgid "Form Error" msgstr "" @@ -1508,11 +1540,11 @@ msgstr "" #~ msgid "Form Errors Exist" #~ msgstr "Form Errors Exist" -#: src/components/forms/ApiForm.tsx:604 +#: src/components/forms/ApiForm.tsx:623 msgid "Errors exist for one or more form fields" msgstr "" -#: src/components/forms/ApiForm.tsx:715 +#: src/components/forms/ApiForm.tsx:734 #: src/hooks/UseForm.tsx:133 #: src/tables/plugin/PluginListTable.tsx:204 msgid "Update" @@ -1698,15 +1730,14 @@ msgstr "" #: src/components/forms/InstanceOptions.tsx:124 #: src/components/plugins/PluginDrawer.tsx:68 #: src/pages/Index/Settings/AdminCenter/UnitManagementPanel.tsx:19 -#: src/pages/part/CategoryDetail.tsx:88 +#: src/pages/part/CategoryDetail.tsx:91 #: src/pages/part/PartDetail.tsx:446 #: src/pages/stock/LocationDetail.tsx:82 #: src/tables/machine/MachineTypeTable.tsx:67 -#: src/tables/machine/MachineTypeTable.tsx:151 -#: src/tables/machine/MachineTypeTable.tsx:254 -#: src/tables/machine/MachineTypeTable.tsx:357 +#: src/tables/machine/MachineTypeTable.tsx:149 +#: src/tables/machine/MachineTypeTable.tsx:252 +#: src/tables/machine/MachineTypeTable.tsx:355 #: src/tables/plugin/PluginErrorTable.tsx:33 -#: src/tables/purchasing/ManufacturerPartParameterTable.tsx:36 #: src/tables/settings/ApiTokenTable.tsx:57 #: src/tables/settings/GroupTable.tsx:95 #: src/tables/settings/GroupTable.tsx:148 @@ -1769,7 +1800,7 @@ msgstr "" #~ msgstr "State: <0>worker ({0}), <1>plugins{1}" #: src/components/forms/InstanceOptions.tsx:118 -#: src/pages/Index/Settings/SystemSettings.tsx:45 +#: src/pages/Index/Settings/SystemSettings.tsx:46 msgid "Server" msgstr "" @@ -1793,6 +1824,8 @@ msgid "Plugins" msgstr "" #: src/components/forms/InstanceOptions.tsx:143 +#: src/tables/general/ParameterTemplateTable.tsx:153 +#: src/tables/general/ParameterTemplateTable.tsx:188 #: src/tables/part/PartTestTemplateTable.tsx:117 #: src/tables/settings/TemplateTable.tsx:251 #: src/tables/settings/TemplateTable.tsx:362 @@ -1817,10 +1850,14 @@ msgstr "" msgid "Running" msgstr "" -#: src/components/forms/fields/ApiFormField.tsx:233 +#: src/components/forms/fields/ApiFormField.tsx:197 msgid "Select file to upload" msgstr "" +#: src/components/forms/fields/AutoFillRightSection.tsx:47 +msgid "Accept suggested value" +msgstr "" + #: src/components/forms/fields/DateField.tsx:76 msgid "Select date" msgstr "" @@ -1853,13 +1890,13 @@ msgstr "" msgid "{0} icons" msgstr "" -#: src/components/forms/fields/RelatedModelField.tsx:409 +#: src/components/forms/fields/RelatedModelField.tsx:480 #: src/components/modals/AboutInvenTreeModal.tsx:96 #: src/pages/Index/Settings/AccountSettings/SecurityContent.tsx:383 msgid "Loading" msgstr "" -#: src/components/forms/fields/RelatedModelField.tsx:411 +#: src/components/forms/fields/RelatedModelField.tsx:482 msgid "No results found" msgstr "" @@ -1875,10 +1912,6 @@ msgstr "" msgid "Add new row" msgstr "" -#: src/components/forms/fields/TextField.tsx:82 -msgid "Accept suggested value" -msgstr "" - #: src/components/images/DetailsImage.tsx:252 #~ msgid "Select image" #~ msgstr "Select image" @@ -2036,7 +2069,7 @@ msgstr "" #: src/components/importer/ImporterDrawer.tsx:109 #: src/components/modals/AboutInvenTreeModal.tsx:205 #: src/components/modals/ServerInfoModal.tsx:134 -#: src/components/wizards/ImportPartWizard.tsx:772 +#: src/components/wizards/ImportPartWizard.tsx:773 #: src/forms/BomForms.tsx:132 #: src/pages/Index/Settings/AccountSettings/MFASettings.tsx:685 msgid "Close" @@ -2199,7 +2232,7 @@ msgid "Change" msgstr "" #: src/components/items/RoleTable.tsx:150 -#: src/forms/StockForms.tsx:927 +#: src/forms/StockForms.tsx:941 #: src/tables/stock/StockItemTestResultTable.tsx:367 msgid "Add" msgstr "" @@ -2222,11 +2255,11 @@ msgstr "" #: src/components/items/TransferList.tsx:161 #: src/components/render/Stock.tsx:102 -#: src/pages/part/PartDetail.tsx:994 +#: src/pages/part/PartDetail.tsx:1009 #: src/pages/stock/StockDetail.tsx:265 #: src/pages/stock/StockDetail.tsx:942 -#: src/tables/build/BuildAllocatedStockTable.tsx:135 -#: src/tables/build/BuildLineTable.tsx:192 +#: src/tables/build/BuildAllocatedStockTable.tsx:132 +#: src/tables/build/BuildLineTable.tsx:193 #: src/tables/part/PartTable.tsx:137 #: src/tables/stock/StockItemTable.tsx:182 #: src/tables/stock/StockItemTable.tsx:343 @@ -2373,7 +2406,7 @@ msgid "Database" msgstr "" #: src/components/modals/ServerInfoModal.tsx:49 -#: src/components/nav/Alerts.tsx:118 +#: src/components/nav/Alerts.tsx:120 msgid "Debug Mode" msgstr "" @@ -2414,7 +2447,7 @@ msgid "Issues detected" msgstr "" #: src/components/modals/ServerInfoModal.tsx:102 -#: src/components/nav/Alerts.tsx:125 +#: src/components/nav/Alerts.tsx:127 msgid "Background Worker" msgstr "" @@ -2436,7 +2469,7 @@ msgstr "" #~ msgstr "Email settings not configured" #: src/components/modals/ServerInfoModal.tsx:120 -#: src/components/nav/Alerts.tsx:141 +#: src/components/nav/Alerts.tsx:143 msgid "Email settings not configured." msgstr "" @@ -2444,43 +2477,47 @@ msgstr "" msgid "Alerts" msgstr "" -#: src/components/nav/Alerts.tsx:120 +#: src/components/nav/Alerts.tsx:97 +msgid "No issues detected" +msgstr "" + +#: src/components/nav/Alerts.tsx:122 msgid "The server is running in debug mode." msgstr "" -#: src/components/nav/Alerts.tsx:127 +#: src/components/nav/Alerts.tsx:129 msgid "The background worker process is not running." msgstr "" -#: src/components/nav/Alerts.tsx:132 +#: src/components/nav/Alerts.tsx:134 msgid "Server Restart" msgstr "" -#: src/components/nav/Alerts.tsx:134 +#: src/components/nav/Alerts.tsx:136 msgid "The server requires a restart to apply changes." msgstr "" -#: src/components/nav/Alerts.tsx:139 +#: src/components/nav/Alerts.tsx:141 msgid "Email settings" msgstr "" -#: src/components/nav/Alerts.tsx:146 +#: src/components/nav/Alerts.tsx:148 msgid "Database Migrations" msgstr "" -#: src/components/nav/Alerts.tsx:148 +#: src/components/nav/Alerts.tsx:150 msgid "There are pending database migrations." msgstr "" -#: src/components/nav/Alerts.tsx:163 +#: src/components/nav/Alerts.tsx:165 msgid "Learn more about {code}" msgstr "" #: src/components/nav/Header.tsx:188 #: src/components/nav/NavigationDrawer.tsx:134 #: src/components/nav/NotificationDrawer.tsx:181 -#: src/pages/Index/Settings/SystemSettings.tsx:121 -#: src/pages/Index/Settings/UserSettings.tsx:106 +#: src/pages/Index/Settings/SystemSettings.tsx:122 +#: src/pages/Index/Settings/UserSettings.tsx:107 #: src/pages/Notifications.tsx:45 #: src/pages/Notifications.tsx:130 msgid "Notifications" @@ -2511,8 +2548,8 @@ msgstr "" #: src/components/nav/NavigationDrawer.tsx:140 #: src/components/nav/SettingsHeader.tsx:40 #: src/defaults/actions.tsx:92 -#: src/pages/Index/Settings/UserSettings.tsx:141 -#: src/pages/Index/Settings/UserSettings.tsx:145 +#: src/pages/Index/Settings/UserSettings.tsx:142 +#: src/pages/Index/Settings/UserSettings.tsx:146 msgid "User Settings" msgstr "" @@ -2529,8 +2566,8 @@ msgstr "" #: src/components/nav/NavigationDrawer.tsx:146 #: src/components/nav/SettingsHeader.tsx:41 #: src/defaults/actions.tsx:144 -#: src/pages/Index/Settings/SystemSettings.tsx:348 -#: src/pages/Index/Settings/SystemSettings.tsx:353 +#: src/pages/Index/Settings/SystemSettings.tsx:354 +#: src/pages/Index/Settings/SystemSettings.tsx:359 msgid "System Settings" msgstr "" @@ -2577,11 +2614,11 @@ msgstr "" #: src/components/nav/NavigationDrawer.tsx:77 #: src/components/render/Part.tsx:36 -#: src/components/wizards/ImportPartWizard.tsx:807 +#: src/components/wizards/ImportPartWizard.tsx:808 #: src/defaults/links.tsx:42 #: src/forms/StockForms.tsx:794 -#: src/pages/Index/Settings/SystemSettings.tsx:224 -#: src/pages/part/PartDetail.tsx:804 +#: src/pages/Index/Settings/SystemSettings.tsx:230 +#: src/pages/part/PartDetail.tsx:793 #: src/pages/stock/LocationDetail.tsx:390 #: src/pages/stock/LocationDetail.tsx:420 #: src/pages/stock/StockDetail.tsx:642 @@ -2591,29 +2628,29 @@ msgstr "" #: src/components/nav/NavigationDrawer.tsx:84 #: src/defaults/links.tsx:48 -#: src/pages/build/BuildDetail.tsx:748 -#: src/pages/build/BuildIndex.tsx:102 +#: src/pages/build/BuildDetail.tsx:753 +#: src/pages/build/BuildIndex.tsx:101 msgid "Manufacturing" msgstr "" #: src/components/nav/NavigationDrawer.tsx:91 #: src/defaults/links.tsx:54 #: src/pages/company/ManufacturerDetail.tsx:9 -#: src/pages/company/ManufacturerPartDetail.tsx:276 +#: src/pages/company/ManufacturerPartDetail.tsx:267 #: src/pages/company/SupplierDetail.tsx:9 -#: src/pages/company/SupplierPartDetail.tsx:360 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:553 -#: src/pages/purchasing/PurchasingIndex.tsx:122 +#: src/pages/company/SupplierPartDetail.tsx:365 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:558 +#: src/pages/purchasing/PurchasingIndex.tsx:212 msgid "Purchasing" msgstr "" #: src/components/nav/NavigationDrawer.tsx:98 #: src/defaults/links.tsx:60 #: src/pages/company/CustomerDetail.tsx:9 -#: src/pages/sales/ReturnOrderDetail.tsx:554 -#: src/pages/sales/SalesIndex.tsx:153 -#: src/pages/sales/SalesOrderDetail.tsx:619 -#: src/pages/sales/SalesOrderShipmentDetail.tsx:480 +#: src/pages/sales/ReturnOrderDetail.tsx:559 +#: src/pages/sales/SalesIndex.tsx:168 +#: src/pages/sales/SalesOrderDetail.tsx:624 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:448 msgid "Sales" msgstr "" @@ -2667,21 +2704,21 @@ msgid "Remove search group" msgstr "" #: src/components/nav/SearchDrawer.tsx:288 -#: src/pages/company/ManufacturerPartDetail.tsx:192 -#: src/pages/part/PartDetail.tsx:862 +#: src/pages/company/ManufacturerPartDetail.tsx:179 +#: src/pages/part/PartDetail.tsx:851 #: src/pages/part/PartSupplierDetail.tsx:15 -#: src/pages/purchasing/PurchasingIndex.tsx:81 +#: src/pages/purchasing/PurchasingIndex.tsx:100 msgid "Suppliers" msgstr "" #: src/components/nav/SearchDrawer.tsx:298 #: src/pages/part/PartSupplierDetail.tsx:23 -#: src/pages/purchasing/PurchasingIndex.tsx:98 +#: src/pages/purchasing/PurchasingIndex.tsx:149 msgid "Manufacturers" msgstr "" #: src/components/nav/SearchDrawer.tsx:308 -#: src/pages/sales/SalesIndex.tsx:138 +#: src/pages/sales/SalesIndex.tsx:133 msgid "Customers" msgstr "" @@ -2772,21 +2809,21 @@ msgstr "" #: src/components/plugins/PluginDrawer.tsx:73 #: src/forms/selectionListFields.tsx:102 -#: src/pages/build/BuildDetail.tsx:250 -#: src/pages/company/CompanyDetail.tsx:93 -#: src/pages/company/ManufacturerPartDetail.tsx:93 -#: src/pages/company/ManufacturerPartDetail.tsx:120 -#: src/pages/company/SupplierPartDetail.tsx:145 -#: src/pages/part/CategoryDetail.tsx:108 +#: src/pages/build/BuildDetail.tsx:251 +#: src/pages/company/CompanyDetail.tsx:94 +#: src/pages/company/ManufacturerPartDetail.tsx:92 +#: src/pages/company/ManufacturerPartDetail.tsx:119 +#: src/pages/company/SupplierPartDetail.tsx:146 +#: src/pages/part/CategoryDetail.tsx:111 #: src/pages/part/PartDetail.tsx:460 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:162 -#: src/pages/sales/ReturnOrderDetail.tsx:129 -#: src/pages/sales/SalesOrderDetail.tsx:119 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:163 +#: src/pages/sales/ReturnOrderDetail.tsx:130 +#: src/pages/sales/SalesOrderDetail.tsx:120 #: src/pages/stock/LocationDetail.tsx:102 #: src/tables/ColumnRenderers.tsx:278 -#: src/tables/build/BuildAllocatedStockTable.tsx:91 -#: src/tables/machine/MachineTypeTable.tsx:161 -#: src/tables/machine/MachineTypeTable.tsx:257 +#: src/tables/build/BuildAllocatedStockTable.tsx:88 +#: src/tables/machine/MachineTypeTable.tsx:159 +#: src/tables/machine/MachineTypeTable.tsx:255 #: src/tables/plugin/PluginListTable.tsx:110 msgid "Description" msgstr "" @@ -2814,7 +2851,7 @@ msgstr "" #: src/tables/company/CompanyTable.tsx:91 #: src/tables/machine/MachineListTable.tsx:384 #: src/tables/machine/MachineListTable.tsx:799 -#: src/tables/part/ParametricPartTable.tsx:354 +#: src/tables/part/ParametricPartTable.tsx:19 #: src/tables/part/PartTable.tsx:197 #: src/tables/part/PartVariantTable.tsx:15 #: src/tables/plugin/PluginListTable.tsx:96 @@ -2836,8 +2873,8 @@ msgid "Installation Path" msgstr "" #: src/components/plugins/PluginDrawer.tsx:116 -#: src/tables/machine/MachineTypeTable.tsx:184 -#: src/tables/machine/MachineTypeTable.tsx:293 +#: src/tables/machine/MachineTypeTable.tsx:182 +#: src/tables/machine/MachineTypeTable.tsx:291 #: src/tables/plugin/PluginListTable.tsx:101 #: src/tables/plugin/PluginListTable.tsx:417 msgid "Builtin" @@ -2849,8 +2886,8 @@ msgstr "" #: src/components/plugins/PluginDrawer.tsx:133 #: src/pages/Index/Settings/AdminCenter/PluginManagementPanel.tsx:55 -#: src/pages/Index/Settings/SystemSettings.tsx:331 -#: src/pages/Index/Settings/UserSettings.tsx:128 +#: src/pages/Index/Settings/SystemSettings.tsx:337 +#: src/pages/Index/Settings/UserSettings.tsx:129 msgid "Plugin Settings" msgstr "" @@ -2911,7 +2948,7 @@ msgstr "" #~ msgid "Unknown model: {model}" #~ msgstr "Unknown model: {model}" -#: src/components/render/Instance.tsx:249 +#: src/components/render/Instance.tsx:247 msgid "Unknown model: {model_name}" msgstr "" @@ -2939,10 +2976,10 @@ msgstr "" #: src/components/render/Part.tsx:28 #: src/components/render/Plugin.tsx:17 #: src/components/render/User.tsx:37 -#: src/pages/company/CompanyDetail.tsx:323 -#: src/pages/company/SupplierPartDetail.tsx:373 +#: src/pages/company/CompanyDetail.tsx:328 +#: src/pages/company/SupplierPartDetail.tsx:378 #: src/pages/core/UserDetail.tsx:211 -#: src/pages/part/PartDetail.tsx:1027 +#: src/pages/part/PartDetail.tsx:1048 #: src/tables/ColumnRenderers.tsx:410 msgid "Inactive" msgstr "" @@ -2962,11 +2999,11 @@ msgstr "" #: src/components/render/Part.tsx:47 #: src/components/wizards/OrderPartsWizard.tsx:135 -#: src/pages/company/SupplierPartDetail.tsx:197 -#: src/pages/company/SupplierPartDetail.tsx:394 -#: src/pages/part/PartDetail.tsx:1015 +#: src/pages/company/SupplierPartDetail.tsx:198 +#: src/pages/company/SupplierPartDetail.tsx:399 +#: src/pages/part/PartDetail.tsx:1030 #: src/tables/bom/BomTable.tsx:444 -#: src/tables/build/BuildLineTable.tsx:222 +#: src/tables/build/BuildLineTable.tsx:223 #: src/tables/part/PartTable.tsx:108 msgid "On Order" msgstr "" @@ -2974,9 +3011,9 @@ msgstr "" #: src/components/render/Part.tsx:55 #: src/components/wizards/OrderPartsWizard.tsx:141 #: src/pages/part/PartDetail.tsx:587 -#: src/pages/part/PartDetail.tsx:1021 +#: src/pages/part/PartDetail.tsx:1036 #: src/pages/stock/StockDetail.tsx:925 -#: src/tables/part/PartTestResultTable.tsx:297 +#: src/tables/part/PartTestResultTable.tsx:305 #: src/tables/stock/StockItemTable.tsx:359 msgid "In Production" msgstr "" @@ -2987,7 +3024,7 @@ msgid "Details" msgstr "" #: src/components/render/Part.tsx:112 -#: src/components/wizards/ImportPartWizard.tsx:806 +#: src/components/wizards/ImportPartWizard.tsx:807 #: src/pages/part/PartDetail.tsx:487 #: src/tables/ColumnRenderers.tsx:233 #: src/tables/ColumnRenderers.tsx:242 @@ -3000,16 +3037,16 @@ msgstr "" #: src/components/render/Stock.tsx:114 #: src/components/render/Stock.tsx:132 #: src/forms/BuildForms.tsx:795 -#: src/forms/PurchaseOrderForms.tsx:595 +#: src/forms/PurchaseOrderForms.tsx:647 #: src/forms/StockForms.tsx:792 #: src/forms/StockForms.tsx:839 -#: src/forms/StockForms.tsx:885 -#: src/forms/StockForms.tsx:924 -#: src/forms/StockForms.tsx:960 -#: src/forms/StockForms.tsx:1003 -#: src/forms/StockForms.tsx:1047 -#: src/forms/StockForms.tsx:1095 -#: src/forms/StockForms.tsx:1139 +#: src/forms/StockForms.tsx:892 +#: src/forms/StockForms.tsx:938 +#: src/forms/StockForms.tsx:976 +#: src/forms/StockForms.tsx:1019 +#: src/forms/StockForms.tsx:1063 +#: src/forms/StockForms.tsx:1111 +#: src/forms/StockForms.tsx:1155 #: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:88 #: src/pages/core/UserDetail.tsx:158 #: src/pages/stock/StockDetail.tsx:298 @@ -3023,7 +3060,7 @@ msgstr "" #: src/components/render/Stock.tsx:99 #: src/pages/stock/StockDetail.tsx:198 #: src/pages/stock/StockDetail.tsx:930 -#: src/tables/build/BuildAllocatedStockTable.tsx:121 +#: src/tables/build/BuildAllocatedStockTable.tsx:118 #: src/tables/build/BuildOutputTable.tsx:107 #: src/tables/sales/SalesOrderAllocationTable.tsx:142 msgid "Serial Number" @@ -3034,9 +3071,9 @@ msgstr "" #: src/forms/BuildForms.tsx:240 #: src/forms/BuildForms.tsx:634 #: src/forms/BuildForms.tsx:797 -#: src/forms/PurchaseOrderForms.tsx:801 +#: src/forms/PurchaseOrderForms.tsx:853 #: src/forms/ReturnOrderForms.tsx:243 -#: src/forms/SalesOrderForms.tsx:308 +#: src/forms/SalesOrderForms.tsx:387 #: src/forms/StockForms.tsx:841 #: src/pages/part/PartStockHistoryDetail.tsx:56 #: src/pages/part/PartStockHistoryDetail.tsx:210 @@ -3046,9 +3083,9 @@ msgstr "" #: src/pages/part/pricing/PriceBreakPanel.tsx:172 #: src/pages/stock/StockDetail.tsx:258 #: src/pages/stock/StockDetail.tsx:936 -#: src/tables/build/BuildLineTable.tsx:86 +#: src/tables/build/BuildLineTable.tsx:83 #: src/tables/part/PartPurchaseOrdersTable.tsx:94 -#: src/tables/part/PartTestResultTable.tsx:269 +#: src/tables/part/PartTestResultTable.tsx:277 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:175 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:206 #: src/tables/purchasing/SupplierPriceBreakTable.tsx:69 @@ -3063,14 +3100,14 @@ msgstr "" #: src/forms/BuildForms.tsx:474 #: src/forms/StockForms.tsx:793 #: src/forms/StockForms.tsx:840 -#: src/forms/StockForms.tsx:886 -#: src/forms/StockForms.tsx:925 -#: src/forms/StockForms.tsx:961 -#: src/forms/StockForms.tsx:1004 -#: src/forms/StockForms.tsx:1048 -#: src/forms/StockForms.tsx:1096 -#: src/forms/StockForms.tsx:1140 -#: src/tables/build/BuildLineTable.tsx:96 +#: src/forms/StockForms.tsx:893 +#: src/forms/StockForms.tsx:939 +#: src/forms/StockForms.tsx:977 +#: src/forms/StockForms.tsx:1020 +#: src/forms/StockForms.tsx:1064 +#: src/forms/StockForms.tsx:1112 +#: src/forms/StockForms.tsx:1156 +#: src/tables/build/BuildLineTable.tsx:93 msgid "Batch" msgstr "" @@ -3306,10 +3343,6 @@ msgstr "" #~ msgid "Part category updated" #~ msgstr "Part category updated" -#: src/components/tables/part/PartParameterTable.tsx:41 -#~ msgid "Parameter" -#~ msgstr "Parameter" - #: src/components/tables/part/PartParameterTable.tsx:114 #~ msgid "Part parameter updated" #~ msgstr "Part parameter updated" @@ -3571,15 +3604,16 @@ msgid "Already Imported" msgstr "" #: src/components/wizards/ImportPartWizard.tsx:205 -#: src/pages/company/CompanyDetail.tsx:136 +#: src/pages/company/CompanyDetail.tsx:137 #: src/pages/company/SupplierDetail.tsx:8 -#: src/pages/company/SupplierPartDetail.tsx:130 -#: src/pages/company/SupplierPartDetail.tsx:235 -#: src/pages/company/SupplierPartDetail.tsx:364 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:156 +#: src/pages/company/SupplierPartDetail.tsx:131 +#: src/pages/company/SupplierPartDetail.tsx:236 +#: src/pages/company/SupplierPartDetail.tsx:369 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:157 #: src/tables/Filter.tsx:360 #: src/tables/company/CompanyTable.tsx:96 #: src/tables/part/PartPurchaseOrdersTable.tsx:43 +#: src/tables/purchasing/PurchaseOrderParametricTable.tsx:34 #: src/tables/purchasing/PurchaseOrderTable.tsx:109 #: src/tables/purchasing/SupplierPriceBreakTable.tsx:40 msgid "Supplier" @@ -3648,7 +3682,7 @@ msgid "Next" msgstr "" #: src/components/wizards/ImportPartWizard.tsx:540 -#: src/pages/part/PartDetail.tsx:1046 +#: src/pages/part/PartDetail.tsx:1067 #: src/tables/part/PartTable.tsx:408 msgid "Edit Part" msgstr "" @@ -3669,28 +3703,28 @@ msgstr "" msgid "Import" msgstr "" -#: src/components/wizards/ImportPartWizard.tsx:691 +#: src/components/wizards/ImportPartWizard.tsx:692 msgid "Parameters created successfully!" msgstr "" -#: src/components/wizards/ImportPartWizard.tsx:719 +#: src/components/wizards/ImportPartWizard.tsx:720 msgid "Failed to create parameters, please fix the errors and try again" msgstr "" #. placeholder {0}: supplierPart?.supplier -#: src/components/wizards/ImportPartWizard.tsx:739 +#: src/components/wizards/ImportPartWizard.tsx:740 msgid "Part imported successfully from supplier {0}." msgstr "" -#: src/components/wizards/ImportPartWizard.tsx:752 +#: src/components/wizards/ImportPartWizard.tsx:753 msgid "Open Part" msgstr "" -#: src/components/wizards/ImportPartWizard.tsx:759 +#: src/components/wizards/ImportPartWizard.tsx:760 msgid "Open Supplier Part" msgstr "" -#: src/components/wizards/ImportPartWizard.tsx:766 +#: src/components/wizards/ImportPartWizard.tsx:767 msgid "Open Manufacturer Part" msgstr "" @@ -3699,25 +3733,19 @@ msgstr "" #~ msgid "Import Part" #~ msgstr "Import Part" -#: src/components/wizards/ImportPartWizard.tsx:802 +#: src/components/wizards/ImportPartWizard.tsx:803 msgid "Import Supplier Part" msgstr "" -#: src/components/wizards/ImportPartWizard.tsx:804 +#: src/components/wizards/ImportPartWizard.tsx:805 msgid "Search Supplier Part" msgstr "" -#: src/components/wizards/ImportPartWizard.tsx:806 -#: src/pages/company/ManufacturerPartDetail.tsx:166 -#: src/pages/part/PartDetail.tsx:793 -msgid "Parameters" -msgstr "" - -#: src/components/wizards/ImportPartWizard.tsx:806 +#: src/components/wizards/ImportPartWizard.tsx:807 msgid "Confirm import" msgstr "" -#: src/components/wizards/ImportPartWizard.tsx:808 +#: src/components/wizards/ImportPartWizard.tsx:809 msgid "Done" msgstr "" @@ -3738,24 +3766,24 @@ msgid "Sales Requirements" msgstr "" #: src/components/wizards/OrderPartsWizard.tsx:129 -#: src/forms/StockForms.tsx:887 -#: src/forms/StockForms.tsx:926 -#: src/forms/StockForms.tsx:962 -#: src/forms/StockForms.tsx:1005 -#: src/forms/StockForms.tsx:1049 -#: src/forms/StockForms.tsx:1097 -#: src/forms/StockForms.tsx:1141 -#: src/pages/company/SupplierPartDetail.tsx:190 -#: src/pages/company/SupplierPartDetail.tsx:378 +#: src/forms/StockForms.tsx:894 +#: src/forms/StockForms.tsx:940 +#: src/forms/StockForms.tsx:978 +#: src/forms/StockForms.tsx:1021 +#: src/forms/StockForms.tsx:1065 +#: src/forms/StockForms.tsx:1113 +#: src/forms/StockForms.tsx:1157 +#: src/pages/company/SupplierPartDetail.tsx:191 +#: src/pages/company/SupplierPartDetail.tsx:383 #: src/pages/part/PartDetail.tsx:534 -#: src/pages/part/PartDetail.tsx:984 +#: src/pages/part/PartDetail.tsx:999 #: src/tables/Filter.tsx:92 #: src/tables/purchasing/SupplierPartTable.tsx:230 msgid "In Stock" msgstr "" #: src/components/wizards/OrderPartsWizard.tsx:146 -#: src/tables/build/BuildLineTable.tsx:404 +#: src/tables/build/BuildLineTable.tsx:405 msgid "Required Quantity" msgstr "" @@ -3847,7 +3875,7 @@ msgid "Please correct the errors in the selected parts" msgstr "" #: src/components/wizards/OrderPartsWizard.tsx:587 -#: src/tables/build/BuildLineTable.tsx:815 +#: src/tables/build/BuildLineTable.tsx:822 #: src/tables/part/PartTable.tsx:522 #: src/tables/sales/SalesOrderLineItemTable.tsx:370 msgid "Order Parts" @@ -4349,9 +4377,9 @@ msgstr "" #: src/forms/BuildForms.tsx:333 #: src/forms/BuildForms.tsx:408 #: src/forms/BuildForms.tsx:685 -#: src/tables/build/BuildAllocatedStockTable.tsx:150 +#: src/tables/build/BuildAllocatedStockTable.tsx:147 #: src/tables/build/BuildOutputTable.tsx:582 -#: src/tables/part/PartTestResultTable.tsx:272 +#: src/tables/part/PartTestResultTable.tsx:280 msgid "Build Output" msgstr "" @@ -4362,22 +4390,22 @@ msgstr "" #: src/forms/BuildForms.tsx:336 #: src/forms/BuildForms.tsx:411 #: src/forms/BuildForms.tsx:475 -#: src/forms/PurchaseOrderForms.tsx:717 +#: src/forms/PurchaseOrderForms.tsx:769 #: src/forms/ReturnOrderForms.tsx:197 #: src/forms/ReturnOrderForms.tsx:244 #: src/forms/StockForms.tsx:712 #: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:87 -#: src/pages/build/BuildDetail.tsx:222 +#: src/pages/build/BuildDetail.tsx:223 #: src/pages/core/UserDetail.tsx:151 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:168 -#: src/pages/sales/ReturnOrderDetail.tsx:135 -#: src/pages/sales/SalesOrderDetail.tsx:125 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:169 +#: src/pages/sales/ReturnOrderDetail.tsx:136 +#: src/pages/sales/SalesOrderDetail.tsx:126 #: src/pages/stock/StockDetail.tsx:170 #: src/tables/Filter.tsx:274 #: src/tables/build/BuildOutputTable.tsx:404 #: src/tables/machine/MachineListTable.tsx:387 #: src/tables/part/PartPurchaseOrdersTable.tsx:38 -#: src/tables/part/PartTestResultTable.tsx:309 +#: src/tables/part/PartTestResultTable.tsx:317 #: src/tables/sales/ReturnOrderLineItemTable.tsx:138 #: src/tables/sales/ReturnOrderLineItemTable.tsx:176 #: src/tables/settings/CustomStateTable.tsx:79 @@ -4443,18 +4471,19 @@ msgid "Build outputs have been cancelled" msgstr "" #: src/forms/BuildForms.tsx:631 -#: src/pages/build/BuildDetail.tsx:207 -#: src/pages/company/ManufacturerPartDetail.tsx:85 -#: src/pages/company/SupplierPartDetail.tsx:96 +#: src/pages/build/BuildDetail.tsx:208 +#: src/pages/company/ManufacturerPartDetail.tsx:84 +#: src/pages/company/SupplierPartDetail.tsx:97 #: src/pages/part/PartDetail.tsx:453 #: src/pages/stock/StockDetail.tsx:153 #: src/tables/bom/BomTable.tsx:134 #: src/tables/bom/UsedInTable.tsx:40 -#: src/tables/build/BuildAllocatedStockTable.tsx:108 -#: src/tables/build/BuildLineTable.tsx:336 +#: src/tables/build/BuildAllocatedStockTable.tsx:105 +#: src/tables/build/BuildLineTable.tsx:337 #: src/tables/build/BuildOrderTable.tsx:79 #: src/tables/part/PartSalesAllocationsTable.tsx:61 #: src/tables/part/RelatedPartTable.tsx:73 +#: src/tables/purchasing/ManufacturerPartParametricTable.tsx:21 #: src/tables/purchasing/ManufacturerPartTable.tsx:69 #: src/tables/purchasing/SupplierPartTable.tsx:70 #: src/tables/sales/SalesOrderAllocationTable.tsx:135 @@ -4466,47 +4495,47 @@ msgstr "" #: src/forms/BuildForms.tsx:632 #: src/forms/BuildForms.tsx:796 #: src/forms/BuildForms.tsx:897 -#: src/forms/SalesOrderForms.tsx:306 -#: src/tables/build/BuildAllocatedStockTable.tsx:139 -#: src/tables/build/BuildLineTable.tsx:182 +#: src/forms/SalesOrderForms.tsx:385 +#: src/tables/build/BuildAllocatedStockTable.tsx:136 +#: src/tables/build/BuildLineTable.tsx:183 #: src/tables/sales/SalesOrderLineItemTable.tsx:342 #: src/tables/stock/StockItemTable.tsx:338 msgid "Allocated" msgstr "" #: src/forms/BuildForms.tsx:667 -#: src/forms/SalesOrderForms.tsx:295 -#: src/pages/build/BuildDetail.tsx:108 -#: src/pages/build/BuildDetail.tsx:326 +#: src/forms/SalesOrderForms.tsx:374 +#: src/pages/build/BuildDetail.tsx:109 +#: src/pages/build/BuildDetail.tsx:327 msgid "Source Location" msgstr "" #: src/forms/BuildForms.tsx:668 -#: src/forms/SalesOrderForms.tsx:296 +#: src/forms/SalesOrderForms.tsx:375 msgid "Select the source location for the stock allocation" msgstr "" #: src/forms/BuildForms.tsx:700 -#: src/forms/SalesOrderForms.tsx:336 -#: src/tables/build/BuildLineTable.tsx:574 -#: src/tables/build/BuildLineTable.tsx:731 -#: src/tables/build/BuildLineTable.tsx:830 +#: src/forms/SalesOrderForms.tsx:415 +#: src/tables/build/BuildLineTable.tsx:575 +#: src/tables/build/BuildLineTable.tsx:738 +#: src/tables/build/BuildLineTable.tsx:837 #: src/tables/sales/SalesOrderLineItemTable.tsx:380 #: src/tables/sales/SalesOrderLineItemTable.tsx:406 msgid "Allocate Stock" msgstr "" #: src/forms/BuildForms.tsx:703 -#: src/forms/SalesOrderForms.tsx:341 +#: src/forms/SalesOrderForms.tsx:420 msgid "Stock items allocated" msgstr "" #: src/forms/BuildForms.tsx:816 #: src/forms/BuildForms.tsx:917 -#: src/tables/build/BuildAllocatedStockTable.tsx:240 -#: src/tables/build/BuildAllocatedStockTable.tsx:272 -#: src/tables/build/BuildLineTable.tsx:741 -#: src/tables/build/BuildLineTable.tsx:864 +#: src/tables/build/BuildAllocatedStockTable.tsx:243 +#: src/tables/build/BuildAllocatedStockTable.tsx:279 +#: src/tables/build/BuildLineTable.tsx:748 +#: src/tables/build/BuildLineTable.tsx:871 msgid "Consume Stock" msgstr "" @@ -4521,21 +4550,21 @@ msgstr "" #~ msgstr "Stock items consumed" #: src/forms/BuildForms.tsx:853 -#: src/tables/build/BuildLineTable.tsx:514 +#: src/tables/build/BuildLineTable.tsx:515 #: src/tables/part/PartBuildAllocationsTable.tsx:101 msgid "Fully consumed" msgstr "" #: src/forms/BuildForms.tsx:898 -#: src/tables/build/BuildLineTable.tsx:187 +#: src/tables/build/BuildLineTable.tsx:188 #: src/tables/stock/StockItemTable.tsx:367 msgid "Consumed" msgstr "" -#: src/forms/CommonForms.tsx:88 -#: src/forms/PurchaseOrderForms.tsx:125 +#: src/forms/CommonForms.tsx:92 +#: src/forms/PurchaseOrderForms.tsx:176 #: src/forms/ReturnOrderForms.tsx:138 -#: src/forms/SalesOrderForms.tsx:164 +#: src/forms/SalesOrderForms.tsx:185 msgid "Select project code for this line item" msgstr "" @@ -4543,16 +4572,16 @@ msgstr "" #~ msgid "Company updated" #~ msgstr "Company updated" -#: src/forms/PartForms.tsx:85 -#: src/forms/PartForms.tsx:207 -#: src/pages/part/CategoryDetail.tsx:124 +#: src/forms/PartForms.tsx:99 +#: src/forms/PartForms.tsx:228 +#: src/pages/part/CategoryDetail.tsx:127 #: src/pages/part/PartDetail.tsx:668 #: src/tables/part/PartCategoryTable.tsx:94 #: src/tables/part/PartTable.tsx:325 msgid "Subscribed" msgstr "" -#: src/forms/PartForms.tsx:86 +#: src/forms/PartForms.tsx:100 msgid "Subscribe to notifications for this part" msgstr "" @@ -4564,40 +4593,24 @@ msgstr "" #~ msgid "Part updated" #~ msgstr "Part updated" -#: src/forms/PartForms.tsx:193 +#: src/forms/PartForms.tsx:214 msgid "Parent part category" msgstr "" -#: src/forms/PartForms.tsx:208 +#: src/forms/PartForms.tsx:229 msgid "Subscribe to notifications for this category" msgstr "" -#: src/forms/PurchaseOrderForms.tsx:388 -msgid "Assign Batch Code and Serial Numbers" -msgstr "" - -#: src/forms/PurchaseOrderForms.tsx:390 -msgid "Assign Batch Code" -msgstr "" - -#: src/forms/PurchaseOrderForms.tsx:410 -msgid "Choose Location" -msgstr "" - -#: src/forms/PurchaseOrderForms.tsx:418 -msgid "Item Destination selected" -msgstr "" - #: src/forms/PurchaseOrderForms.tsx:421 #~ msgid "Assign Batch Code{0}" #~ msgstr "Assign Batch Code{0}" -#: src/forms/PurchaseOrderForms.tsx:428 -msgid "Part category default location selected" +#: src/forms/PurchaseOrderForms.tsx:440 +msgid "Assign Batch Code and Serial Numbers" msgstr "" -#: src/forms/PurchaseOrderForms.tsx:438 -msgid "Received stock location selected" +#: src/forms/PurchaseOrderForms.tsx:442 +msgid "Assign Batch Code" msgstr "" #: src/forms/PurchaseOrderForms.tsx:444 @@ -4605,115 +4618,131 @@ msgstr "" #~ msgid "Remove item from list" #~ msgstr "Remove item from list" -#: src/forms/PurchaseOrderForms.tsx:446 +#: src/forms/PurchaseOrderForms.tsx:462 +msgid "Choose Location" +msgstr "" + +#: src/forms/PurchaseOrderForms.tsx:470 +msgid "Item Destination selected" +msgstr "" + +#: src/forms/PurchaseOrderForms.tsx:480 +msgid "Part category default location selected" +msgstr "" + +#: src/forms/PurchaseOrderForms.tsx:490 +msgid "Received stock location selected" +msgstr "" + +#: src/forms/PurchaseOrderForms.tsx:498 msgid "Default location selected" msgstr "" -#: src/forms/PurchaseOrderForms.tsx:507 +#: src/forms/PurchaseOrderForms.tsx:559 msgid "Set Location" msgstr "" -#: src/forms/PurchaseOrderForms.tsx:524 -msgid "Set Expiry Date" -msgstr "" - -#: src/forms/PurchaseOrderForms.tsx:532 -#: src/forms/StockForms.tsx:693 -msgid "Adjust Packaging" -msgstr "" - -#: src/forms/PurchaseOrderForms.tsx:540 -#: src/forms/StockForms.tsx:684 -#: src/hooks/UseStockAdjustActions.tsx:148 -msgid "Change Status" -msgstr "" - -#: src/forms/PurchaseOrderForms.tsx:546 -msgid "Add Note" -msgstr "" - #: src/forms/PurchaseOrderForms.tsx:566 #~ msgid "Serial numbers" #~ msgstr "Serial numbers" +#: src/forms/PurchaseOrderForms.tsx:576 +msgid "Set Expiry Date" +msgstr "" + #: src/forms/PurchaseOrderForms.tsx:582 #~ msgid "Store at line item destination" #~ msgstr "Store at line item destination" -#: src/forms/PurchaseOrderForms.tsx:610 -msgid "Store at default location" +#: src/forms/PurchaseOrderForms.tsx:584 +#: src/forms/StockForms.tsx:693 +msgid "Adjust Packaging" msgstr "" -#: src/forms/PurchaseOrderForms.tsx:625 -msgid "Store at line item destination " +#: src/forms/PurchaseOrderForms.tsx:592 +#: src/forms/StockForms.tsx:684 +#: src/hooks/UseStockAdjustActions.tsx:148 +msgid "Change Status" msgstr "" -#: src/forms/PurchaseOrderForms.tsx:637 -msgid "Store with already received stock" +#: src/forms/PurchaseOrderForms.tsx:598 +msgid "Add Note" msgstr "" #: src/forms/PurchaseOrderForms.tsx:658 #~ msgid "Receive line items" #~ msgstr "Receive line items" -#: src/forms/PurchaseOrderForms.tsx:661 -#: src/pages/build/BuildDetail.tsx:340 +#: src/forms/PurchaseOrderForms.tsx:662 +msgid "Store at default location" +msgstr "" + +#: src/forms/PurchaseOrderForms.tsx:677 +msgid "Store at line item destination " +msgstr "" + +#: src/forms/PurchaseOrderForms.tsx:689 +msgid "Store with already received stock" +msgstr "" + +#: src/forms/PurchaseOrderForms.tsx:713 +#: src/pages/build/BuildDetail.tsx:341 #: src/pages/stock/StockDetail.tsx:280 #: src/pages/stock/StockDetail.tsx:952 #: src/tables/Filter.tsx:83 -#: src/tables/build/BuildAllocatedStockTable.tsx:128 +#: src/tables/build/BuildAllocatedStockTable.tsx:125 #: src/tables/build/BuildOutputTable.tsx:112 -#: src/tables/part/PartTestResultTable.tsx:260 -#: src/tables/part/PartTestResultTable.tsx:281 +#: src/tables/part/PartTestResultTable.tsx:268 +#: src/tables/part/PartTestResultTable.tsx:289 #: src/tables/sales/SalesOrderAllocationTable.tsx:149 msgid "Batch Code" msgstr "" -#: src/forms/PurchaseOrderForms.tsx:662 +#: src/forms/PurchaseOrderForms.tsx:714 msgid "Enter batch code for received items" msgstr "" -#: src/forms/PurchaseOrderForms.tsx:675 +#: src/forms/PurchaseOrderForms.tsx:727 #: src/forms/StockForms.tsx:218 msgid "Serial Numbers" msgstr "" -#: src/forms/PurchaseOrderForms.tsx:676 +#: src/forms/PurchaseOrderForms.tsx:728 msgid "Enter serial numbers for received items" msgstr "" -#: src/forms/PurchaseOrderForms.tsx:690 +#: src/forms/PurchaseOrderForms.tsx:742 #: src/pages/stock/StockDetail.tsx:382 #: src/tables/stock/StockItemTable.tsx:294 msgid "Expiry Date" msgstr "" -#: src/forms/PurchaseOrderForms.tsx:691 +#: src/forms/PurchaseOrderForms.tsx:743 msgid "Enter an expiry date for received items" msgstr "" -#: src/forms/PurchaseOrderForms.tsx:703 +#: src/forms/PurchaseOrderForms.tsx:755 #: src/forms/StockForms.tsx:728 -#: src/pages/company/SupplierPartDetail.tsx:172 -#: src/pages/company/SupplierPartDetail.tsx:236 +#: src/pages/company/SupplierPartDetail.tsx:173 +#: src/pages/company/SupplierPartDetail.tsx:237 #: src/pages/stock/StockDetail.tsx:419 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:227 msgid "Packaging" msgstr "" -#: src/forms/PurchaseOrderForms.tsx:727 -#: src/pages/company/SupplierPartDetail.tsx:120 +#: src/forms/PurchaseOrderForms.tsx:779 +#: src/pages/company/SupplierPartDetail.tsx:121 #: src/tables/ColumnRenderers.tsx:332 msgid "Note" msgstr "" -#: src/forms/PurchaseOrderForms.tsx:799 -#: src/pages/company/SupplierPartDetail.tsx:138 +#: src/forms/PurchaseOrderForms.tsx:851 +#: src/pages/company/SupplierPartDetail.tsx:139 #: src/tables/purchasing/SupplierPriceBreakTable.tsx:49 msgid "SKU" msgstr "" -#: src/forms/PurchaseOrderForms.tsx:800 +#: src/forms/PurchaseOrderForms.tsx:852 #: src/tables/part/PartPurchaseOrdersTable.tsx:127 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:213 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:283 @@ -4721,11 +4750,11 @@ msgstr "" msgid "Received" msgstr "" -#: src/forms/PurchaseOrderForms.tsx:817 +#: src/forms/PurchaseOrderForms.tsx:869 msgid "Receive Line Items" msgstr "" -#: src/forms/PurchaseOrderForms.tsx:823 +#: src/forms/PurchaseOrderForms.tsx:875 msgid "Items received" msgstr "" @@ -4737,7 +4766,35 @@ msgstr "" msgid "Item received into stock" msgstr "" -#: src/forms/SalesOrderForms.tsx:401 +#: src/forms/SalesOrderForms.tsx:208 +#: src/forms/SalesOrderForms.tsx:210 +#: src/tables/sales/SalesOrderShipmentTable.tsx:215 +msgid "Check Shipment" +msgstr "" + +#: src/forms/SalesOrderForms.tsx:211 +msgid "Marking the shipment as checked indicates that you have verified that all items included in this shipment are correct" +msgstr "" + +#: src/forms/SalesOrderForms.tsx:221 +msgid "Shipment marked as checked" +msgstr "" + +#: src/forms/SalesOrderForms.tsx:236 +#: src/forms/SalesOrderForms.tsx:238 +#: src/tables/sales/SalesOrderShipmentTable.tsx:228 +msgid "Uncheck Shipment" +msgstr "" + +#: src/forms/SalesOrderForms.tsx:239 +msgid "Marking the shipment as unchecked indicates that the shipment requires further verification" +msgstr "" + +#: src/forms/SalesOrderForms.tsx:249 +msgid "Shipment marked as unchecked" +msgstr "" + +#: src/forms/SalesOrderForms.tsx:480 msgid "Leave blank to use the order address" msgstr "" @@ -4792,150 +4849,150 @@ msgstr "" msgid "Return" msgstr "" -#: src/forms/StockForms.tsx:963 +#: src/forms/StockForms.tsx:979 #: src/pages/Index/Scan.tsx:182 msgid "Count" msgstr "" -#: src/forms/StockForms.tsx:1246 +#: src/forms/StockForms.tsx:1262 #: src/hooks/UseStockAdjustActions.tsx:108 msgid "Add Stock" msgstr "" -#: src/forms/StockForms.tsx:1247 +#: src/forms/StockForms.tsx:1263 msgid "Stock added" msgstr "" -#: src/forms/StockForms.tsx:1250 +#: src/forms/StockForms.tsx:1266 msgid "Increase the quantity of the selected stock items by a given amount." msgstr "" -#: src/forms/StockForms.tsx:1261 +#: src/forms/StockForms.tsx:1277 #: src/hooks/UseStockAdjustActions.tsx:118 msgid "Remove Stock" msgstr "" -#: src/forms/StockForms.tsx:1262 +#: src/forms/StockForms.tsx:1278 msgid "Stock removed" msgstr "" -#: src/forms/StockForms.tsx:1265 +#: src/forms/StockForms.tsx:1281 msgid "Decrease the quantity of the selected stock items by a given amount." msgstr "" -#: src/forms/StockForms.tsx:1276 +#: src/forms/StockForms.tsx:1292 #: src/hooks/UseStockAdjustActions.tsx:128 msgid "Transfer Stock" msgstr "" -#: src/forms/StockForms.tsx:1277 +#: src/forms/StockForms.tsx:1293 msgid "Stock transferred" msgstr "" -#: src/forms/StockForms.tsx:1280 +#: src/forms/StockForms.tsx:1296 msgid "Transfer selected items to the specified location." msgstr "" -#: src/forms/StockForms.tsx:1291 +#: src/forms/StockForms.tsx:1307 #: src/hooks/UseStockAdjustActions.tsx:168 msgid "Return Stock" msgstr "" -#: src/forms/StockForms.tsx:1292 +#: src/forms/StockForms.tsx:1308 msgid "Stock returned" msgstr "" -#: src/forms/StockForms.tsx:1295 +#: src/forms/StockForms.tsx:1311 msgid "Return selected items into stock, to the specified location." msgstr "" -#: src/forms/StockForms.tsx:1306 +#: src/forms/StockForms.tsx:1322 #: src/hooks/UseStockAdjustActions.tsx:98 msgid "Count Stock" msgstr "" -#: src/forms/StockForms.tsx:1307 +#: src/forms/StockForms.tsx:1323 msgid "Stock counted" msgstr "" -#: src/forms/StockForms.tsx:1310 +#: src/forms/StockForms.tsx:1326 msgid "Count the selected stock items, and adjust the quantity accordingly." msgstr "" -#: src/forms/StockForms.tsx:1321 +#: src/forms/StockForms.tsx:1337 msgid "Change Stock Status" msgstr "" -#: src/forms/StockForms.tsx:1322 +#: src/forms/StockForms.tsx:1338 msgid "Stock status changed" msgstr "" -#: src/forms/StockForms.tsx:1325 +#: src/forms/StockForms.tsx:1341 msgid "Change the status of the selected stock items." msgstr "" -#: src/forms/StockForms.tsx:1336 +#: src/forms/StockForms.tsx:1352 #: src/hooks/UseStockAdjustActions.tsx:138 msgid "Merge Stock" msgstr "" -#: src/forms/StockForms.tsx:1337 +#: src/forms/StockForms.tsx:1353 msgid "Stock merged" msgstr "" -#: src/forms/StockForms.tsx:1339 +#: src/forms/StockForms.tsx:1355 msgid "Merge Stock Items" msgstr "" -#: src/forms/StockForms.tsx:1341 +#: src/forms/StockForms.tsx:1357 msgid "Merge operation cannot be reversed" msgstr "" -#: src/forms/StockForms.tsx:1342 +#: src/forms/StockForms.tsx:1358 msgid "Tracking information may be lost when merging items" msgstr "" -#: src/forms/StockForms.tsx:1343 +#: src/forms/StockForms.tsx:1359 msgid "Supplier information may be lost when merging items" msgstr "" -#: src/forms/StockForms.tsx:1361 +#: src/forms/StockForms.tsx:1377 msgid "Assign Stock to Customer" msgstr "" -#: src/forms/StockForms.tsx:1362 +#: src/forms/StockForms.tsx:1378 msgid "Stock assigned to customer" msgstr "" -#: src/forms/StockForms.tsx:1372 +#: src/forms/StockForms.tsx:1388 msgid "Delete Stock Items" msgstr "" -#: src/forms/StockForms.tsx:1373 +#: src/forms/StockForms.tsx:1389 msgid "Stock deleted" msgstr "" -#: src/forms/StockForms.tsx:1376 +#: src/forms/StockForms.tsx:1392 msgid "This operation will permanently delete the selected stock items." msgstr "" -#: src/forms/StockForms.tsx:1385 +#: src/forms/StockForms.tsx:1401 msgid "Parent stock location" msgstr "" -#: src/forms/StockForms.tsx:1512 +#: src/forms/StockForms.tsx:1528 msgid "Find Serial Number" msgstr "" -#: src/forms/StockForms.tsx:1523 +#: src/forms/StockForms.tsx:1539 msgid "No matching items" msgstr "" -#: src/forms/StockForms.tsx:1529 +#: src/forms/StockForms.tsx:1545 msgid "Multiple matching items" msgstr "" -#: src/forms/StockForms.tsx:1538 +#: src/forms/StockForms.tsx:1554 msgid "Invalid response from server" msgstr "" @@ -4953,7 +5010,6 @@ msgstr "" #: src/tables/FilterSelectDrawer.tsx:137 #: src/tables/FilterSelectDrawer.tsx:149 #: src/tables/part/PartTestResultTable.tsx:206 -#: src/tables/purchasing/ManufacturerPartParameterTable.tsx:42 #: src/tables/stock/StockItemTestResultTable.tsx:207 msgid "Value" msgstr "" @@ -5244,7 +5300,7 @@ msgid "Delete selected stock items" msgstr "" #: src/hooks/UseStockAdjustActions.tsx:205 -#: src/pages/part/PartDetail.tsx:1137 +#: src/pages/part/PartDetail.tsx:1158 msgid "Stock Actions" msgstr "" @@ -5932,6 +5988,9 @@ msgstr "" #: src/pages/Index/Settings/AccountSettings/MFASettings.tsx:310 #: src/pages/Index/Settings/AccountSettings/MFASettings.tsx:401 +#: src/tables/build/BuildAllocatedStockTable.tsx:181 +#: src/tables/build/BuildLineTable.tsx:668 +#: src/tables/sales/SalesOrderAllocationTable.tsx:220 msgid "Confirm Removal" msgstr "" @@ -6394,30 +6453,34 @@ msgid "Email Messages" msgstr "" #: src/pages/Index/Settings/AdminCenter/HomePanel.tsx:22 -msgid "Active Alerts" -msgstr "" +#~ msgid "Active Alerts" +#~ msgstr "Active Alerts" #: src/pages/Index/Settings/AdminCenter/HomePanel.tsx:27 -msgid "Inactive Alerts" +#~ msgid "Inactive Alerts" +#~ msgstr "Inactive Alerts" + +#: src/pages/Index/Settings/AdminCenter/HomePanel.tsx:36 +msgid "System Status" msgstr "" -#: src/pages/Index/Settings/AdminCenter/HomePanel.tsx:38 +#: src/pages/Index/Settings/AdminCenter/HomePanel.tsx:47 msgid "Admin Center Information" msgstr "" -#: src/pages/Index/Settings/AdminCenter/HomePanel.tsx:44 +#: src/pages/Index/Settings/AdminCenter/HomePanel.tsx:53 msgid "The home panel (and the whole Admin Center) is a new feature starting with the new UI and was previously (before 1.0) not available." msgstr "" -#: src/pages/Index/Settings/AdminCenter/HomePanel.tsx:51 +#: src/pages/Index/Settings/AdminCenter/HomePanel.tsx:60 msgid "The admin center provides a centralized location for all administration functionality and is meant to replace all interaction with the (django) backend admin interface." msgstr "" -#: src/pages/Index/Settings/AdminCenter/HomePanel.tsx:58 +#: src/pages/Index/Settings/AdminCenter/HomePanel.tsx:67 msgid "Please open feature requests (after checking the tracker) for any existing backend admin functionality you are missing in this UI. The backend admin interface should be used carefully and seldom." msgstr "" -#: src/pages/Index/Settings/AdminCenter/HomePanel.tsx:76 +#: src/pages/Index/Settings/AdminCenter/HomePanel.tsx:85 msgid "Quick Actions" msgstr "" @@ -6476,11 +6539,11 @@ msgstr "" #: src/pages/Index/Settings/AdminCenter/Index.tsx:195 #: src/pages/part/CategoryDetail.tsx:313 -msgid "Part Parameters" -msgstr "" +#~ msgid "Part Parameters" +#~ msgstr "Part Parameters" #: src/pages/Index/Settings/AdminCenter/Index.tsx:202 -#: src/pages/part/CategoryDetail.tsx:306 +#: src/pages/part/CategoryDetail.tsx:329 msgid "Category Parameters" msgstr "" @@ -6494,7 +6557,7 @@ msgstr "" #: src/pages/Index/Settings/AdminCenter/Index.tsx:235 #: src/pages/Index/Settings/AdminCenter/MachineManagementPanel.tsx:52 -#: src/tables/machine/MachineTypeTable.tsx:325 +#: src/tables/machine/MachineTypeTable.tsx:323 msgid "Machines" msgstr "" @@ -6507,8 +6570,8 @@ msgid "Data Management" msgstr "" #: src/pages/Index/Settings/AdminCenter/Index.tsx:270 -#: src/pages/Index/Settings/SystemSettings.tsx:175 -#: src/pages/Index/Settings/UserSettings.tsx:118 +#: src/pages/Index/Settings/SystemSettings.tsx:176 +#: src/pages/Index/Settings/UserSettings.tsx:119 msgid "Reporting" msgstr "" @@ -6709,11 +6772,11 @@ msgstr "" msgid "The settings below are specific to each available plugin" msgstr "" -#: src/pages/Index/Settings/SystemSettings.tsx:77 +#: src/pages/Index/Settings/SystemSettings.tsx:78 msgid "Authentication" msgstr "" -#: src/pages/Index/Settings/SystemSettings.tsx:103 +#: src/pages/Index/Settings/SystemSettings.tsx:104 msgid "Barcodes" msgstr "" @@ -6725,12 +6788,12 @@ msgstr "" #~ msgid "This panel is a placeholder." #~ msgstr "This panel is a placeholder." -#: src/pages/Index/Settings/SystemSettings.tsx:127 -#: src/pages/Index/Settings/UserSettings.tsx:112 +#: src/pages/Index/Settings/SystemSettings.tsx:128 +#: src/pages/Index/Settings/UserSettings.tsx:113 msgid "The settings below are specific to each available notification method" msgstr "" -#: src/pages/Index/Settings/SystemSettings.tsx:133 +#: src/pages/Index/Settings/SystemSettings.tsx:134 msgid "Pricing" msgstr "" @@ -6738,7 +6801,7 @@ msgstr "" #~ msgid "Exchange Rates" #~ msgstr "Exchange Rates" -#: src/pages/Index/Settings/SystemSettings.tsx:169 +#: src/pages/Index/Settings/SystemSettings.tsx:170 msgid "Labels" msgstr "" @@ -6790,15 +6853,15 @@ msgstr "" #~ msgid "Delete notifications" #~ msgstr "Delete notifications" -#: src/pages/build/BuildDetail.tsx:69 +#: src/pages/build/BuildDetail.tsx:70 msgid "No Required Items" msgstr "" -#: src/pages/build/BuildDetail.tsx:71 +#: src/pages/build/BuildDetail.tsx:72 msgid "This build order does not have any required items." msgstr "" -#: src/pages/build/BuildDetail.tsx:72 +#: src/pages/build/BuildDetail.tsx:73 msgid "The assembled part may not have a Bill of Materials (BOM) defined, or the BOM is empty." msgstr "" @@ -6826,7 +6889,7 @@ msgstr "" #~ msgid "Build Order updated" #~ msgstr "Build Order updated" -#: src/pages/build/BuildDetail.tsx:215 +#: src/pages/build/BuildDetail.tsx:216 #: src/pages/part/PartDetail.tsx:480 #: src/pages/stock/StockDetail.tsx:161 #: src/tables/bom/UsedInTable.tsx:44 @@ -6843,10 +6906,10 @@ msgstr "" #~ msgid "Duplicate build order" #~ msgstr "Duplicate build order" -#: src/pages/build/BuildDetail.tsx:228 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:174 -#: src/pages/sales/ReturnOrderDetail.tsx:141 -#: src/pages/sales/SalesOrderDetail.tsx:131 +#: src/pages/build/BuildDetail.tsx:229 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:175 +#: src/pages/sales/ReturnOrderDetail.tsx:142 +#: src/pages/sales/SalesOrderDetail.tsx:132 #: src/pages/stock/StockDetail.tsx:176 msgid "Custom Status" msgstr "" @@ -6855,9 +6918,9 @@ msgstr "" #~ msgid "Delete build order" #~ msgstr "Delete build order" -#: src/pages/build/BuildDetail.tsx:237 -#: src/pages/build/BuildDetail.tsx:723 -#: src/pages/build/BuildIndex.tsx:28 +#: src/pages/build/BuildDetail.tsx:238 +#: src/pages/build/BuildDetail.tsx:728 +#: src/pages/build/BuildIndex.tsx:34 #: src/pages/stock/LocationDetail.tsx:140 #: src/tables/build/BuildOrderTable.tsx:123 #: src/tables/build/BuildOrderTable.tsx:183 @@ -6865,57 +6928,57 @@ msgstr "" msgid "External" msgstr "" -#: src/pages/build/BuildDetail.tsx:244 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:141 -#: src/pages/sales/ReturnOrderDetail.tsx:108 -#: src/pages/sales/SalesOrderDetail.tsx:98 +#: src/pages/build/BuildDetail.tsx:245 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:142 +#: src/pages/sales/ReturnOrderDetail.tsx:109 +#: src/pages/sales/SalesOrderDetail.tsx:99 #: src/tables/ColumnRenderers.tsx:321 -#: src/tables/build/BuildAllocatedStockTable.tsx:115 -#: src/tables/build/BuildLineTable.tsx:352 +#: src/tables/build/BuildAllocatedStockTable.tsx:112 +#: src/tables/build/BuildLineTable.tsx:353 msgid "Reference" msgstr "" -#: src/pages/build/BuildDetail.tsx:258 +#: src/pages/build/BuildDetail.tsx:259 msgid "Parent Build" msgstr "" -#: src/pages/build/BuildDetail.tsx:269 +#: src/pages/build/BuildDetail.tsx:270 msgid "Build Quantity" msgstr "" -#: src/pages/build/BuildDetail.tsx:275 +#: src/pages/build/BuildDetail.tsx:276 #: src/pages/part/PartDetail.tsx:598 #: src/tables/bom/BomTable.tsx:365 #: src/tables/bom/BomTable.tsx:407 msgid "Can Build" msgstr "" -#: src/pages/build/BuildDetail.tsx:284 -#: src/pages/build/BuildDetail.tsx:474 +#: src/pages/build/BuildDetail.tsx:285 +#: src/pages/build/BuildDetail.tsx:475 msgid "Completed Outputs" msgstr "" -#: src/pages/build/BuildDetail.tsx:301 +#: src/pages/build/BuildDetail.tsx:302 #: src/tables/Filter.tsx:381 #: src/tables/build/BuildOrderTable.tsx:143 msgid "Issued By" msgstr "" -#: src/pages/build/BuildDetail.tsx:309 +#: src/pages/build/BuildDetail.tsx:310 #: src/pages/part/PartDetail.tsx:691 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:261 -#: src/pages/sales/ReturnOrderDetail.tsx:239 -#: src/pages/sales/SalesOrderDetail.tsx:232 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:262 +#: src/pages/sales/ReturnOrderDetail.tsx:240 +#: src/pages/sales/SalesOrderDetail.tsx:233 #: src/tables/ColumnRenderers.tsx:464 #: src/tables/Filter.tsx:319 msgid "Responsible" msgstr "" -#: src/pages/build/BuildDetail.tsx:327 +#: src/pages/build/BuildDetail.tsx:328 msgid "Any location" msgstr "" -#: src/pages/build/BuildDetail.tsx:334 +#: src/pages/build/BuildDetail.tsx:335 msgid "Destination Location" msgstr "" @@ -6924,24 +6987,24 @@ msgstr "" #~ msgid "Test Statistics" #~ msgstr "Test Statistics" -#: src/pages/build/BuildDetail.tsx:350 +#: src/pages/build/BuildDetail.tsx:351 #: src/tables/settings/ApiTokenTable.tsx:97 #: src/tables/settings/PendingTasksTable.tsx:41 msgid "Created" msgstr "" -#: src/pages/build/BuildDetail.tsx:358 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:286 -#: src/pages/sales/ReturnOrderDetail.tsx:265 -#: src/pages/sales/SalesOrderDetail.tsx:257 +#: src/pages/build/BuildDetail.tsx:359 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:287 +#: src/pages/sales/ReturnOrderDetail.tsx:266 +#: src/pages/sales/SalesOrderDetail.tsx:258 #: src/tables/ColumnRenderers.tsx:486 msgid "Start Date" msgstr "" -#: src/pages/build/BuildDetail.tsx:366 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:294 -#: src/pages/sales/ReturnOrderDetail.tsx:273 -#: src/pages/sales/SalesOrderDetail.tsx:265 +#: src/pages/build/BuildDetail.tsx:367 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:295 +#: src/pages/sales/ReturnOrderDetail.tsx:274 +#: src/pages/sales/SalesOrderDetail.tsx:266 #: src/tables/ColumnRenderers.tsx:494 #: src/tables/part/PartPurchaseOrdersTable.tsx:101 #: src/tables/sales/ReturnOrderLineItemTable.tsx:154 @@ -6954,185 +7017,185 @@ msgstr "" #~ msgstr "Reporting Actions" #: src/pages/build/BuildDetail.tsx:374 +#~ msgid "Print build report" +#~ msgstr "Print build report" + +#: src/pages/build/BuildDetail.tsx:375 #: src/tables/build/BuildOrderTable.tsx:93 #: src/tables/sales/SalesOrderLineItemTable.tsx:347 msgid "Completed" msgstr "" -#: src/pages/build/BuildDetail.tsx:374 -#~ msgid "Print build report" -#~ msgstr "Print build report" - -#: src/pages/build/BuildDetail.tsx:410 +#: src/pages/build/BuildDetail.tsx:411 msgid "Build Details" msgstr "" -#: src/pages/build/BuildDetail.tsx:416 +#: src/pages/build/BuildDetail.tsx:417 msgid "Required Parts" msgstr "" -#: src/pages/build/BuildDetail.tsx:428 -#: src/pages/sales/SalesOrderDetail.tsx:407 -#: src/pages/sales/SalesOrderShipmentDetail.tsx:261 +#: src/pages/build/BuildDetail.tsx:429 +#: src/pages/sales/SalesOrderDetail.tsx:408 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:259 #: src/tables/part/PartSalesAllocationsTable.tsx:73 msgid "Allocated Stock" msgstr "" -#: src/pages/build/BuildDetail.tsx:444 +#: src/pages/build/BuildDetail.tsx:445 msgid "Consumed Stock" msgstr "" -#: src/pages/build/BuildDetail.tsx:461 +#: src/pages/build/BuildDetail.tsx:462 msgid "Incomplete Outputs" msgstr "" -#: src/pages/build/BuildDetail.tsx:489 +#: src/pages/build/BuildDetail.tsx:490 msgid "External Orders" msgstr "" -#: src/pages/build/BuildDetail.tsx:503 +#: src/pages/build/BuildDetail.tsx:504 msgid "Child Build Orders" msgstr "" -#: src/pages/build/BuildDetail.tsx:513 -#: src/pages/part/PartDetail.tsx:937 +#: src/pages/build/BuildDetail.tsx:514 +#: src/pages/part/PartDetail.tsx:926 #: src/pages/stock/StockDetail.tsx:587 #: src/tables/build/BuildOutputTable.tsx:654 #: src/tables/stock/StockItemTestResultTable.tsx:173 msgid "Test Results" msgstr "" -#: src/pages/build/BuildDetail.tsx:550 +#: src/pages/build/BuildDetail.tsx:555 msgid "Edit Build Order" msgstr "" -#: src/pages/build/BuildDetail.tsx:572 +#: src/pages/build/BuildDetail.tsx:577 #: src/tables/build/BuildOrderTable.tsx:207 #: src/tables/build/BuildOrderTable.tsx:223 msgid "Add Build Order" msgstr "" -#: src/pages/build/BuildDetail.tsx:582 +#: src/pages/build/BuildDetail.tsx:587 msgid "Cancel Build Order" msgstr "" -#: src/pages/build/BuildDetail.tsx:584 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:416 -#: src/pages/sales/ReturnOrderDetail.tsx:427 -#: src/pages/sales/SalesOrderDetail.tsx:454 +#: src/pages/build/BuildDetail.tsx:589 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:421 +#: src/pages/sales/ReturnOrderDetail.tsx:432 +#: src/pages/sales/SalesOrderDetail.tsx:459 msgid "Order cancelled" msgstr "" -#: src/pages/build/BuildDetail.tsx:585 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:415 -#: src/pages/sales/ReturnOrderDetail.tsx:426 -#: src/pages/sales/SalesOrderDetail.tsx:453 +#: src/pages/build/BuildDetail.tsx:590 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:420 +#: src/pages/sales/ReturnOrderDetail.tsx:431 +#: src/pages/sales/SalesOrderDetail.tsx:458 msgid "Cancel this order" msgstr "" -#: src/pages/build/BuildDetail.tsx:594 +#: src/pages/build/BuildDetail.tsx:599 msgid "Hold Build Order" msgstr "" -#: src/pages/build/BuildDetail.tsx:596 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:423 -#: src/pages/sales/ReturnOrderDetail.tsx:434 -#: src/pages/sales/SalesOrderDetail.tsx:461 +#: src/pages/build/BuildDetail.tsx:601 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:428 +#: src/pages/sales/ReturnOrderDetail.tsx:439 +#: src/pages/sales/SalesOrderDetail.tsx:466 msgid "Place this order on hold" msgstr "" -#: src/pages/build/BuildDetail.tsx:597 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:424 -#: src/pages/sales/ReturnOrderDetail.tsx:435 -#: src/pages/sales/SalesOrderDetail.tsx:462 +#: src/pages/build/BuildDetail.tsx:602 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:429 +#: src/pages/sales/ReturnOrderDetail.tsx:440 +#: src/pages/sales/SalesOrderDetail.tsx:467 msgid "Order placed on hold" msgstr "" -#: src/pages/build/BuildDetail.tsx:602 +#: src/pages/build/BuildDetail.tsx:607 msgid "Issue Build Order" msgstr "" -#: src/pages/build/BuildDetail.tsx:604 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:407 -#: src/pages/sales/ReturnOrderDetail.tsx:418 -#: src/pages/sales/SalesOrderDetail.tsx:445 +#: src/pages/build/BuildDetail.tsx:609 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:412 +#: src/pages/sales/ReturnOrderDetail.tsx:423 +#: src/pages/sales/SalesOrderDetail.tsx:450 msgid "Issue this order" msgstr "" -#: src/pages/build/BuildDetail.tsx:605 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:408 -#: src/pages/sales/ReturnOrderDetail.tsx:419 -#: src/pages/sales/SalesOrderDetail.tsx:446 +#: src/pages/build/BuildDetail.tsx:610 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:413 +#: src/pages/sales/ReturnOrderDetail.tsx:424 +#: src/pages/sales/SalesOrderDetail.tsx:451 msgid "Order issued" msgstr "" -#: src/pages/build/BuildDetail.tsx:624 +#: src/pages/build/BuildDetail.tsx:629 msgid "Complete Build Order" msgstr "" -#: src/pages/build/BuildDetail.tsx:630 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:436 -#: src/pages/sales/ReturnOrderDetail.tsx:442 -#: src/pages/sales/SalesOrderDetail.tsx:480 +#: src/pages/build/BuildDetail.tsx:635 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:441 +#: src/pages/sales/ReturnOrderDetail.tsx:447 +#: src/pages/sales/SalesOrderDetail.tsx:485 msgid "Mark this order as complete" msgstr "" -#: src/pages/build/BuildDetail.tsx:633 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:430 -#: src/pages/sales/ReturnOrderDetail.tsx:443 -#: src/pages/sales/SalesOrderDetail.tsx:481 +#: src/pages/build/BuildDetail.tsx:638 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:435 +#: src/pages/sales/ReturnOrderDetail.tsx:448 +#: src/pages/sales/SalesOrderDetail.tsx:486 msgid "Order completed" msgstr "" -#: src/pages/build/BuildDetail.tsx:660 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:459 -#: src/pages/sales/ReturnOrderDetail.tsx:470 -#: src/pages/sales/SalesOrderDetail.tsx:516 +#: src/pages/build/BuildDetail.tsx:665 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:464 +#: src/pages/sales/ReturnOrderDetail.tsx:475 +#: src/pages/sales/SalesOrderDetail.tsx:521 msgid "Issue Order" msgstr "" -#: src/pages/build/BuildDetail.tsx:667 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:466 -#: src/pages/sales/ReturnOrderDetail.tsx:477 -#: src/pages/sales/SalesOrderDetail.tsx:530 +#: src/pages/build/BuildDetail.tsx:672 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:471 +#: src/pages/sales/ReturnOrderDetail.tsx:482 +#: src/pages/sales/SalesOrderDetail.tsx:535 msgid "Complete Order" msgstr "" -#: src/pages/build/BuildDetail.tsx:686 +#: src/pages/build/BuildDetail.tsx:691 msgid "Build Order Actions" msgstr "" -#: src/pages/build/BuildDetail.tsx:691 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:489 -#: src/pages/sales/ReturnOrderDetail.tsx:500 -#: src/pages/sales/SalesOrderDetail.tsx:554 +#: src/pages/build/BuildDetail.tsx:696 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:494 +#: src/pages/sales/ReturnOrderDetail.tsx:505 +#: src/pages/sales/SalesOrderDetail.tsx:559 msgid "Edit order" msgstr "" -#: src/pages/build/BuildDetail.tsx:695 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:497 -#: src/pages/sales/ReturnOrderDetail.tsx:506 -#: src/pages/sales/SalesOrderDetail.tsx:559 -msgid "Duplicate order" -msgstr "" - -#: src/pages/build/BuildDetail.tsx:699 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:500 +#: src/pages/build/BuildDetail.tsx:700 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:502 #: src/pages/sales/ReturnOrderDetail.tsx:511 -#: src/pages/sales/SalesOrderDetail.tsx:562 -msgid "Hold order" +#: src/pages/sales/SalesOrderDetail.tsx:564 +msgid "Duplicate order" msgstr "" #: src/pages/build/BuildDetail.tsx:704 #: src/pages/purchasing/PurchaseOrderDetail.tsx:505 #: src/pages/sales/ReturnOrderDetail.tsx:516 #: src/pages/sales/SalesOrderDetail.tsx:567 +msgid "Hold order" +msgstr "" + +#: src/pages/build/BuildDetail.tsx:709 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:510 +#: src/pages/sales/ReturnOrderDetail.tsx:521 +#: src/pages/sales/SalesOrderDetail.tsx:572 msgid "Cancel order" msgstr "" -#: src/pages/build/BuildDetail.tsx:742 +#: src/pages/build/BuildDetail.tsx:747 #: src/pages/stock/StockDetail.tsx:344 -#: src/tables/build/BuildAllocatedStockTable.tsx:85 +#: src/tables/build/BuildAllocatedStockTable.tsx:82 #: src/tables/part/PartBuildAllocationsTable.tsx:45 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:157 #: src/tables/stock/StockTrackingTable.tsx:109 @@ -7143,7 +7206,7 @@ msgstr "" #~ msgid "Build order created" #~ msgstr "Build order created" -#: src/pages/build/BuildIndex.tsx:29 +#: src/pages/build/BuildIndex.tsx:35 #: src/tables/build/BuildOrderTable.tsx:184 msgid "Show external build orders" msgstr "" @@ -7152,61 +7215,82 @@ msgstr "" #~ msgid "New Build Order" #~ msgstr "New Build Order" -#: src/pages/build/BuildIndex.tsx:83 -#: src/pages/purchasing/PurchasingIndex.tsx:69 -#: src/pages/sales/SalesIndex.tsx:92 -#: src/pages/sales/SalesIndex.tsx:125 +#: src/pages/build/BuildIndex.tsx:74 +#: src/pages/part/CategoryDetail.tsx:292 +#: src/pages/purchasing/PurchasingIndex.tsx:74 +#: src/pages/purchasing/PurchasingIndex.tsx:107 +#: src/pages/purchasing/PurchasingIndex.tsx:135 +#: src/pages/purchasing/PurchasingIndex.tsx:156 +#: src/pages/purchasing/PurchasingIndex.tsx:184 +#: src/pages/sales/SalesIndex.tsx:61 +#: src/pages/sales/SalesIndex.tsx:107 +#: src/pages/sales/SalesIndex.tsx:140 msgid "Table View" msgstr "" -#: src/pages/build/BuildIndex.tsx:86 -#: src/pages/purchasing/PurchasingIndex.tsx:72 -#: src/pages/sales/SalesIndex.tsx:95 -#: src/pages/sales/SalesIndex.tsx:128 +#: src/pages/build/BuildIndex.tsx:80 +#: src/pages/purchasing/PurchasingIndex.tsx:80 +#: src/pages/sales/SalesIndex.tsx:67 +#: src/pages/sales/SalesIndex.tsx:113 msgid "Calendar View" msgstr "" -#: src/pages/company/CompanyDetail.tsx:99 +#: src/pages/build/BuildIndex.tsx:86 +#: src/pages/part/CategoryDetail.tsx:306 +#: src/pages/purchasing/PurchasingIndex.tsx:92 +#: src/pages/purchasing/PurchasingIndex.tsx:118 +#: src/pages/purchasing/PurchasingIndex.tsx:141 +#: src/pages/purchasing/PurchasingIndex.tsx:167 +#: src/pages/purchasing/PurchasingIndex.tsx:190 +#: src/pages/sales/SalesIndex.tsx:79 +#: src/pages/sales/SalesIndex.tsx:125 +#: src/pages/sales/SalesIndex.tsx:151 +msgid "Parametric View" +msgstr "" + +#: src/pages/company/CompanyDetail.tsx:100 msgid "Website" msgstr "" -#: src/pages/company/CompanyDetail.tsx:107 +#: src/pages/company/CompanyDetail.tsx:108 msgid "Phone Number" msgstr "" -#: src/pages/company/CompanyDetail.tsx:114 +#: src/pages/company/CompanyDetail.tsx:115 msgid "Email Address" msgstr "" -#: src/pages/company/CompanyDetail.tsx:121 +#: src/pages/company/CompanyDetail.tsx:122 msgid "Tax ID" msgstr "" -#: src/pages/company/CompanyDetail.tsx:131 +#: src/pages/company/CompanyDetail.tsx:132 msgid "Default Currency" msgstr "" -#: src/pages/company/CompanyDetail.tsx:142 +#: src/pages/company/CompanyDetail.tsx:143 #: src/pages/company/ManufacturerDetail.tsx:8 -#: src/pages/company/ManufacturerPartDetail.tsx:104 -#: src/pages/company/ManufacturerPartDetail.tsx:280 -#: src/pages/company/SupplierPartDetail.tsx:152 +#: src/pages/company/ManufacturerPartDetail.tsx:103 +#: src/pages/company/ManufacturerPartDetail.tsx:271 +#: src/pages/company/SupplierPartDetail.tsx:153 #: src/tables/Filter.tsx:347 #: src/tables/company/CompanyTable.tsx:101 #: src/tables/purchasing/SupplierPartTable.tsx:89 msgid "Manufacturer" msgstr "" -#: src/pages/company/CompanyDetail.tsx:148 +#: src/pages/company/CompanyDetail.tsx:149 #: src/pages/company/CustomerDetail.tsx:8 #: src/pages/part/pricing/SaleHistoryPanel.tsx:31 -#: src/pages/sales/ReturnOrderDetail.tsx:123 -#: src/pages/sales/SalesOrderDetail.tsx:113 -#: src/pages/sales/SalesOrderShipmentDetail.tsx:113 +#: src/pages/sales/ReturnOrderDetail.tsx:124 +#: src/pages/sales/SalesOrderDetail.tsx:114 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:111 #: src/pages/stock/StockDetail.tsx:370 #: src/tables/company/CompanyTable.tsx:106 +#: src/tables/sales/ReturnOrderParametricTable.tsx:32 #: src/tables/sales/ReturnOrderTable.tsx:108 -#: src/tables/sales/SalesOrderShipmentTable.tsx:111 +#: src/tables/sales/SalesOrderParametricTable.tsx:32 +#: src/tables/sales/SalesOrderShipmentTable.tsx:132 #: src/tables/sales/SalesOrderTable.tsx:133 #: src/tables/stock/StockTrackingTable.tsx:153 msgid "Customer" @@ -7216,11 +7300,11 @@ msgstr "" #~ msgid "Edit company" #~ msgstr "Edit company" -#: src/pages/company/CompanyDetail.tsx:181 +#: src/pages/company/CompanyDetail.tsx:182 msgid "Company Details" msgstr "" -#: src/pages/company/CompanyDetail.tsx:187 +#: src/pages/company/CompanyDetail.tsx:188 msgid "Supplied Parts" msgstr "" @@ -7228,79 +7312,79 @@ msgstr "" #~ msgid "Delete company" #~ msgstr "Delete company" -#: src/pages/company/CompanyDetail.tsx:194 +#: src/pages/company/CompanyDetail.tsx:195 msgid "Manufactured Parts" msgstr "" -#: src/pages/company/CompanyDetail.tsx:241 +#: src/pages/company/CompanyDetail.tsx:242 msgid "Assigned Stock" msgstr "" -#: src/pages/company/CompanyDetail.tsx:282 +#: src/pages/company/CompanyDetail.tsx:287 #: src/tables/company/CompanyTable.tsx:82 msgid "Edit Company" msgstr "" -#: src/pages/company/CompanyDetail.tsx:290 +#: src/pages/company/CompanyDetail.tsx:295 msgid "Delete Company" msgstr "" -#: src/pages/company/CompanyDetail.tsx:305 +#: src/pages/company/CompanyDetail.tsx:310 msgid "Company Actions" msgstr "" -#: src/pages/company/ManufacturerPartDetail.tsx:78 -#: src/pages/company/SupplierPartDetail.tsx:89 +#: src/pages/company/ManufacturerPartDetail.tsx:77 +#: src/pages/company/SupplierPartDetail.tsx:90 msgid "Internal Part" msgstr "" -#: src/pages/company/ManufacturerPartDetail.tsx:112 +#: src/pages/company/ManufacturerPartDetail.tsx:111 msgid "Manufacturer Part Number" msgstr "" -#: src/pages/company/ManufacturerPartDetail.tsx:129 -#: src/pages/company/SupplierPartDetail.tsx:113 +#: src/pages/company/ManufacturerPartDetail.tsx:128 +#: src/pages/company/SupplierPartDetail.tsx:114 msgid "External Link" msgstr "" -#: src/pages/company/ManufacturerPartDetail.tsx:148 -#: src/pages/company/SupplierPartDetail.tsx:232 +#: src/pages/company/ManufacturerPartDetail.tsx:147 +#: src/pages/company/SupplierPartDetail.tsx:233 #: src/pages/part/PartDetail.tsx:787 msgid "Part Details" msgstr "" -#: src/pages/company/ManufacturerPartDetail.tsx:151 +#: src/pages/company/ManufacturerPartDetail.tsx:150 msgid "Manufacturer Details" msgstr "" -#: src/pages/company/ManufacturerPartDetail.tsx:160 +#: src/pages/company/ManufacturerPartDetail.tsx:159 msgid "Manufacturer Part Details" msgstr "" -#: src/pages/company/ManufacturerPartDetail.tsx:178 -#: src/pages/company/SupplierPartDetail.tsx:252 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:381 +#: src/pages/company/ManufacturerPartDetail.tsx:165 +#: src/pages/company/SupplierPartDetail.tsx:253 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:382 msgid "Received Stock" msgstr "" -#: src/pages/company/ManufacturerPartDetail.tsx:220 +#: src/pages/company/ManufacturerPartDetail.tsx:211 #: src/tables/purchasing/ManufacturerPartTable.tsx:108 msgid "Edit Manufacturer Part" msgstr "" -#: src/pages/company/ManufacturerPartDetail.tsx:227 +#: src/pages/company/ManufacturerPartDetail.tsx:218 #: src/tables/purchasing/ManufacturerPartTable.tsx:96 #: src/tables/purchasing/ManufacturerPartTable.tsx:115 #: src/tables/purchasing/ManufacturerPartTable.tsx:156 msgid "Add Manufacturer Part" msgstr "" -#: src/pages/company/ManufacturerPartDetail.tsx:239 +#: src/pages/company/ManufacturerPartDetail.tsx:230 #: src/tables/purchasing/ManufacturerPartTable.tsx:126 msgid "Delete Manufacturer Part" msgstr "" -#: src/pages/company/ManufacturerPartDetail.tsx:254 +#: src/pages/company/ManufacturerPartDetail.tsx:245 msgid "Manufacturer Part Actions" msgstr "" @@ -7308,12 +7392,12 @@ msgstr "" #~ msgid "ManufacturerPart" #~ msgstr "ManufacturerPart" -#: src/pages/company/SupplierPartDetail.tsx:104 +#: src/pages/company/SupplierPartDetail.tsx:105 #: src/tables/part/RelatedPartTable.tsx:82 msgid "Part Description" msgstr "" -#: src/pages/company/SupplierPartDetail.tsx:179 +#: src/pages/company/SupplierPartDetail.tsx:180 #: src/tables/part/PartPurchaseOrdersTable.tsx:73 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:191 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:233 @@ -7321,50 +7405,50 @@ msgstr "" msgid "Pack Quantity" msgstr "" -#: src/pages/company/SupplierPartDetail.tsx:204 +#: src/pages/company/SupplierPartDetail.tsx:205 msgid "Supplier Availability" msgstr "" -#: src/pages/company/SupplierPartDetail.tsx:212 +#: src/pages/company/SupplierPartDetail.tsx:213 msgid "Availability Updated" msgstr "" -#: src/pages/company/SupplierPartDetail.tsx:237 +#: src/pages/company/SupplierPartDetail.tsx:238 msgid "Availability" msgstr "" -#: src/pages/company/SupplierPartDetail.tsx:246 +#: src/pages/company/SupplierPartDetail.tsx:247 msgid "Supplier Part Details" msgstr "" -#: src/pages/company/SupplierPartDetail.tsx:279 +#: src/pages/company/SupplierPartDetail.tsx:280 #: src/pages/part/PartPricingPanel.tsx:113 #: src/pages/part/pricing/PricingOverviewPanel.tsx:239 msgid "Supplier Pricing" msgstr "" -#: src/pages/company/SupplierPartDetail.tsx:308 +#: src/pages/company/SupplierPartDetail.tsx:313 msgid "Supplier Part Actions" msgstr "" -#: src/pages/company/SupplierPartDetail.tsx:332 +#: src/pages/company/SupplierPartDetail.tsx:337 #: src/tables/purchasing/SupplierPartTable.tsx:244 msgid "Edit Supplier Part" msgstr "" -#: src/pages/company/SupplierPartDetail.tsx:340 +#: src/pages/company/SupplierPartDetail.tsx:345 #: src/tables/purchasing/SupplierPartTable.tsx:264 msgid "Delete Supplier Part" msgstr "" -#: src/pages/company/SupplierPartDetail.tsx:348 +#: src/pages/company/SupplierPartDetail.tsx:353 #: src/tables/purchasing/SupplierPartTable.tsx:172 #: src/tables/purchasing/SupplierPartTable.tsx:251 msgid "Add Supplier Part" msgstr "" -#: src/pages/company/SupplierPartDetail.tsx:388 -#: src/pages/part/PartDetail.tsx:1003 +#: src/pages/company/SupplierPartDetail.tsx:393 +#: src/pages/part/PartDetail.tsx:1018 msgid "No Stock" msgstr "" @@ -7411,83 +7495,83 @@ msgstr "" msgid "Basic user" msgstr "" -#: src/pages/part/CategoryDetail.tsx:100 +#: src/pages/part/CategoryDetail.tsx:103 #: src/pages/stock/LocationDetail.tsx:94 #: src/tables/settings/ErrorTable.tsx:63 #: src/tables/settings/ErrorTable.tsx:108 msgid "Path" msgstr "" -#: src/pages/part/CategoryDetail.tsx:116 +#: src/pages/part/CategoryDetail.tsx:119 msgid "Parent Category" msgstr "" -#: src/pages/part/CategoryDetail.tsx:139 -#: src/pages/part/CategoryDetail.tsx:271 +#: src/pages/part/CategoryDetail.tsx:142 +#: src/pages/part/CategoryDetail.tsx:279 msgid "Subcategories" msgstr "" -#: src/pages/part/CategoryDetail.tsx:146 +#: src/pages/part/CategoryDetail.tsx:149 #: src/pages/stock/LocationDetail.tsx:134 #: src/tables/part/PartCategoryTable.tsx:89 #: src/tables/stock/StockLocationTable.tsx:43 msgid "Structural" msgstr "" -#: src/pages/part/CategoryDetail.tsx:152 +#: src/pages/part/CategoryDetail.tsx:155 msgid "Parent default location" msgstr "" -#: src/pages/part/CategoryDetail.tsx:159 +#: src/pages/part/CategoryDetail.tsx:162 msgid "Default location" msgstr "" -#: src/pages/part/CategoryDetail.tsx:170 +#: src/pages/part/CategoryDetail.tsx:173 msgid "Top level part category" msgstr "" -#: src/pages/part/CategoryDetail.tsx:180 -#: src/pages/part/CategoryDetail.tsx:248 +#: src/pages/part/CategoryDetail.tsx:183 +#: src/pages/part/CategoryDetail.tsx:251 #: src/tables/part/PartCategoryTable.tsx:122 msgid "Edit Part Category" msgstr "" -#: src/pages/part/CategoryDetail.tsx:189 +#: src/pages/part/CategoryDetail.tsx:192 msgid "Move items to parent category" msgstr "" -#: src/pages/part/CategoryDetail.tsx:193 +#: src/pages/part/CategoryDetail.tsx:196 #: src/pages/stock/LocationDetail.tsx:226 msgid "Delete items" msgstr "" -#: src/pages/part/CategoryDetail.tsx:201 -#: src/pages/part/CategoryDetail.tsx:253 +#: src/pages/part/CategoryDetail.tsx:204 +#: src/pages/part/CategoryDetail.tsx:256 msgid "Delete Part Category" msgstr "" -#: src/pages/part/CategoryDetail.tsx:204 +#: src/pages/part/CategoryDetail.tsx:207 msgid "Parts Action" msgstr "" -#: src/pages/part/CategoryDetail.tsx:205 +#: src/pages/part/CategoryDetail.tsx:208 msgid "Action for parts in this category" msgstr "" -#: src/pages/part/CategoryDetail.tsx:211 +#: src/pages/part/CategoryDetail.tsx:214 msgid "Child Categories Action" msgstr "" -#: src/pages/part/CategoryDetail.tsx:212 +#: src/pages/part/CategoryDetail.tsx:215 msgid "Action for child categories in this category" msgstr "" -#: src/pages/part/CategoryDetail.tsx:244 +#: src/pages/part/CategoryDetail.tsx:247 #: src/tables/part/PartCategoryTable.tsx:143 msgid "Category Actions" msgstr "" -#: src/pages/part/CategoryDetail.tsx:265 +#: src/pages/part/CategoryDetail.tsx:273 msgid "Category Details" msgstr "" @@ -7585,7 +7669,6 @@ msgid "Category Default Location" msgstr "" #: src/pages/part/PartDetail.tsx:507 -#: src/tables/purchasing/ManufacturerPartParameterTable.tsx:48 msgid "Units" msgstr "" @@ -7600,7 +7683,7 @@ msgstr "" #: src/pages/part/PartDetail.tsx:542 #: src/tables/bom/BomTable.tsx:439 -#: src/tables/build/BuildLineTable.tsx:305 +#: src/tables/build/BuildLineTable.tsx:306 #: src/tables/part/PartTable.tsx:319 #: src/tables/sales/SalesOrderLineItemTable.tsx:138 msgid "Available Stock" @@ -7608,7 +7691,7 @@ msgstr "" #: src/pages/part/PartDetail.tsx:548 #: src/tables/bom/BomTable.tsx:341 -#: src/tables/build/BuildLineTable.tsx:267 +#: src/tables/build/BuildLineTable.tsx:268 #: src/tables/sales/SalesOrderLineItemTable.tsx:180 msgid "On order" msgstr "" @@ -7634,7 +7717,7 @@ msgstr "" #~ msgstr "Scheduling" #: src/pages/part/PartDetail.tsx:620 -#: src/tables/part/ParametricPartTable.tsx:359 +#: src/tables/part/ParametricPartTable.tsx:24 #: src/tables/part/PartTable.tsx:203 msgid "Locked" msgstr "" @@ -7671,16 +7754,16 @@ msgid "Saleable Part" msgstr "" #: src/pages/part/PartDetail.tsx:663 -#: src/pages/part/PartDetail.tsx:1033 +#: src/pages/part/PartDetail.tsx:1054 #: src/tables/bom/BomTable.tsx:150 #: src/tables/bom/BomTable.tsx:434 msgid "Virtual Part" msgstr "" #: src/pages/part/PartDetail.tsx:678 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:271 -#: src/pages/sales/ReturnOrderDetail.tsx:249 -#: src/pages/sales/SalesOrderDetail.tsx:242 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:272 +#: src/pages/sales/ReturnOrderDetail.tsx:250 +#: src/pages/sales/SalesOrderDetail.tsx:243 #: src/tables/ColumnRenderers.tsx:502 msgid "Creation Date" msgstr "" @@ -7718,35 +7801,46 @@ msgstr "" msgid "Select Part Revision" msgstr "" -#: src/pages/part/PartDetail.tsx:823 +#: src/pages/part/PartDetail.tsx:812 msgid "Variants" msgstr "" -#: src/pages/part/PartDetail.tsx:830 +#: src/pages/part/PartDetail.tsx:819 #: src/pages/stock/StockDetail.tsx:542 msgid "Allocations" msgstr "" -#: src/pages/part/PartDetail.tsx:837 +#: src/pages/part/PartDetail.tsx:826 msgid "Bill of Materials" msgstr "" -#: src/pages/part/PartDetail.tsx:849 +#: src/pages/part/PartDetail.tsx:838 msgid "Used In" msgstr "" -#: src/pages/part/PartDetail.tsx:856 +#: src/pages/part/PartDetail.tsx:845 msgid "Part Pricing" msgstr "" -#: src/pages/part/PartDetail.tsx:926 +#: src/pages/part/PartDetail.tsx:915 msgid "Test Templates" msgstr "" -#: src/pages/part/PartDetail.tsx:948 +#: src/pages/part/PartDetail.tsx:937 msgid "Related Parts" msgstr "" +#: src/pages/part/PartDetail.tsx:949 +#: src/tables/ColumnRenderers.tsx:73 +#: src/tables/bom/BomTable.tsx:657 +#: src/tables/part/PartTestTemplateTable.tsx:258 +msgid "Part is Locked" +msgstr "" + +#: src/pages/part/PartDetail.tsx:954 +msgid "Part parameters cannot be edited, as the part is locked" +msgstr "" + #: src/pages/part/PartDetail.tsx:956 #~ msgid "Count part stock" #~ msgstr "Count part stock" @@ -7755,42 +7849,46 @@ msgstr "" #~ msgid "Transfer part stock" #~ msgstr "Transfer part stock" -#: src/pages/part/PartDetail.tsx:1009 +#: src/pages/part/PartDetail.tsx:1024 #: src/tables/part/PartTestTemplateTable.tsx:112 #: src/tables/stock/StockItemTestResultTable.tsx:404 msgid "Required" msgstr "" -#: src/pages/part/PartDetail.tsx:1058 +#: src/pages/part/PartDetail.tsx:1042 +msgid "Deficit" +msgstr "" + +#: src/pages/part/PartDetail.tsx:1079 #: src/tables/part/PartTable.tsx:396 #: src/tables/part/PartTable.tsx:449 msgid "Add Part" msgstr "" -#: src/pages/part/PartDetail.tsx:1072 +#: src/pages/part/PartDetail.tsx:1093 msgid "Delete Part" msgstr "" -#: src/pages/part/PartDetail.tsx:1081 +#: src/pages/part/PartDetail.tsx:1102 msgid "Deleting this part cannot be reversed" msgstr "" -#: src/pages/part/PartDetail.tsx:1143 +#: src/pages/part/PartDetail.tsx:1164 #: src/pages/stock/StockDetail.tsx:883 msgid "Order" msgstr "" -#: src/pages/part/PartDetail.tsx:1144 +#: src/pages/part/PartDetail.tsx:1165 #: src/pages/stock/StockDetail.tsx:884 -#: src/tables/build/BuildLineTable.tsx:761 +#: src/tables/build/BuildLineTable.tsx:768 msgid "Order Stock" msgstr "" -#: src/pages/part/PartDetail.tsx:1156 +#: src/pages/part/PartDetail.tsx:1177 msgid "Search by serial number" msgstr "" -#: src/pages/part/PartDetail.tsx:1164 +#: src/pages/part/PartDetail.tsx:1185 #: src/tables/part/PartTable.tsx:506 msgid "Part Actions" msgstr "" @@ -8039,7 +8137,7 @@ msgstr "" #: src/pages/part/pricing/PricingOverviewPanel.tsx:288 #: src/pages/stock/StockDetail.tsx:426 -#: src/tables/part/PartParameterTable.tsx:121 +#: src/tables/general/ParameterTable.tsx:101 #: src/tables/stock/StockItemTable.tsx:300 msgid "Last Updated" msgstr "" @@ -8107,17 +8205,17 @@ msgstr "" msgid "Variant Part" msgstr "" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:89 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:90 msgid "Edit Purchase Order" msgstr "" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:125 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:126 #: src/tables/purchasing/PurchaseOrderTable.tsx:154 #: src/tables/purchasing/PurchaseOrderTable.tsx:167 msgid "Add Purchase Order" msgstr "" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:147 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:148 msgid "Supplier Reference" msgstr "" @@ -8127,20 +8225,20 @@ msgstr "" #~ msgid "Order Currency," #~ msgstr "Order Currency," -#: src/pages/purchasing/PurchaseOrderDetail.tsx:187 -#: src/pages/sales/ReturnOrderDetail.tsx:160 -#: src/pages/sales/SalesOrderDetail.tsx:144 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:188 +#: src/pages/sales/ReturnOrderDetail.tsx:161 +#: src/pages/sales/SalesOrderDetail.tsx:145 msgid "Completed Line Items" msgstr "" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:196 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:197 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:272 msgid "Destination" msgstr "" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:202 -#: src/pages/sales/ReturnOrderDetail.tsx:167 -#: src/pages/sales/SalesOrderDetail.tsx:161 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:203 +#: src/pages/sales/ReturnOrderDetail.tsx:168 +#: src/pages/sales/SalesOrderDetail.tsx:162 msgid "Order Currency" msgstr "" @@ -8150,97 +8248,97 @@ msgstr "" #~ msgid "Created On" #~ msgstr "Created On" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:208 -#: src/pages/sales/ReturnOrderDetail.tsx:174 -#: src/pages/sales/SalesOrderDetail.tsx:167 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:209 +#: src/pages/sales/ReturnOrderDetail.tsx:175 +#: src/pages/sales/SalesOrderDetail.tsx:168 msgid "Total Cost" msgstr "" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:237 -#: src/pages/sales/ReturnOrderDetail.tsx:215 -#: src/pages/sales/SalesOrderDetail.tsx:208 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:238 +#: src/pages/sales/ReturnOrderDetail.tsx:216 +#: src/pages/sales/SalesOrderDetail.tsx:209 msgid "Contact Email" msgstr "" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:245 -#: src/pages/sales/ReturnOrderDetail.tsx:223 -#: src/pages/sales/SalesOrderDetail.tsx:216 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:246 +#: src/pages/sales/ReturnOrderDetail.tsx:224 +#: src/pages/sales/SalesOrderDetail.tsx:217 msgid "Contact Phone" msgstr "" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:278 -#: src/pages/sales/ReturnOrderDetail.tsx:257 -#: src/pages/sales/SalesOrderDetail.tsx:249 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:279 +#: src/pages/sales/ReturnOrderDetail.tsx:258 +#: src/pages/sales/SalesOrderDetail.tsx:250 msgid "Issue Date" msgstr "" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:303 -#: src/pages/sales/ReturnOrderDetail.tsx:281 -#: src/pages/sales/SalesOrderDetail.tsx:272 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:304 +#: src/pages/sales/ReturnOrderDetail.tsx:282 +#: src/pages/sales/SalesOrderDetail.tsx:273 #: src/tables/ColumnRenderers.tsx:510 #: src/tables/build/BuildOrderTable.tsx:137 #: src/tables/part/PartPurchaseOrdersTable.tsx:106 msgid "Completion Date" msgstr "" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:333 -#: src/pages/sales/ReturnOrderDetail.tsx:311 -#: src/pages/sales/SalesOrderDetail.tsx:349 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:334 +#: src/pages/sales/ReturnOrderDetail.tsx:312 +#: src/pages/sales/SalesOrderDetail.tsx:350 msgid "Order Details" msgstr "" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:339 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:348 -#: src/pages/sales/ReturnOrderDetail.tsx:153 -#: src/pages/sales/ReturnOrderDetail.tsx:317 -#: src/pages/sales/ReturnOrderDetail.tsx:326 -#: src/pages/sales/SalesOrderDetail.tsx:355 -#: src/pages/sales/SalesOrderDetail.tsx:364 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:340 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:349 +#: src/pages/sales/ReturnOrderDetail.tsx:154 +#: src/pages/sales/ReturnOrderDetail.tsx:318 +#: src/pages/sales/ReturnOrderDetail.tsx:327 +#: src/pages/sales/SalesOrderDetail.tsx:356 +#: src/pages/sales/SalesOrderDetail.tsx:365 msgid "Line Items" msgstr "" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:363 -#: src/pages/sales/ReturnOrderDetail.tsx:341 -#: src/pages/sales/SalesOrderDetail.tsx:378 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:364 +#: src/pages/sales/ReturnOrderDetail.tsx:342 +#: src/pages/sales/SalesOrderDetail.tsx:379 msgid "Extra Line Items" msgstr "" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:405 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:410 msgid "Issue Purchase Order" msgstr "" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:413 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:418 msgid "Cancel Purchase Order" msgstr "" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:421 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:426 msgid "Hold Purchase Order" msgstr "" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:429 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:434 msgid "Complete Purchase Order" msgstr "" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:485 -#: src/pages/sales/ReturnOrderDetail.tsx:496 -#: src/pages/sales/SalesOrderDetail.tsx:549 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:490 +#: src/pages/sales/ReturnOrderDetail.tsx:501 +#: src/pages/sales/SalesOrderDetail.tsx:554 msgid "Order Actions" msgstr "" -#: src/pages/sales/ReturnOrderDetail.tsx:114 -#: src/pages/sales/SalesOrderDetail.tsx:104 -#: src/pages/sales/SalesOrderShipmentDetail.tsx:134 +#: src/pages/sales/ReturnOrderDetail.tsx:115 +#: src/pages/sales/SalesOrderDetail.tsx:105 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:132 #: src/tables/sales/SalesOrderTable.tsx:141 msgid "Customer Reference" msgstr "" -#: src/pages/sales/ReturnOrderDetail.tsx:195 +#: src/pages/sales/ReturnOrderDetail.tsx:196 msgid "Return Address" msgstr "" -#: src/pages/sales/ReturnOrderDetail.tsx:201 -#: src/pages/sales/SalesOrderDetail.tsx:194 -#: src/pages/sales/SalesOrderShipmentDetail.tsx:181 +#: src/pages/sales/ReturnOrderDetail.tsx:202 +#: src/pages/sales/SalesOrderDetail.tsx:195 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:179 msgid "Not specified" msgstr "" @@ -8248,117 +8346,117 @@ msgstr "" #~ msgid "Order canceled" #~ msgstr "Order canceled" -#: src/pages/sales/ReturnOrderDetail.tsx:389 +#: src/pages/sales/ReturnOrderDetail.tsx:394 msgid "Edit Return Order" msgstr "" -#: src/pages/sales/ReturnOrderDetail.tsx:407 +#: src/pages/sales/ReturnOrderDetail.tsx:412 #: src/tables/sales/ReturnOrderTable.tsx:154 #: src/tables/sales/ReturnOrderTable.tsx:167 msgid "Add Return Order" msgstr "" -#: src/pages/sales/ReturnOrderDetail.tsx:416 +#: src/pages/sales/ReturnOrderDetail.tsx:421 msgid "Issue Return Order" msgstr "" -#: src/pages/sales/ReturnOrderDetail.tsx:424 +#: src/pages/sales/ReturnOrderDetail.tsx:429 msgid "Cancel Return Order" msgstr "" -#: src/pages/sales/ReturnOrderDetail.tsx:432 +#: src/pages/sales/ReturnOrderDetail.tsx:437 msgid "Hold Return Order" msgstr "" -#: src/pages/sales/ReturnOrderDetail.tsx:440 +#: src/pages/sales/ReturnOrderDetail.tsx:445 msgid "Complete Return Order" msgstr "" -#: src/pages/sales/SalesOrderDetail.tsx:153 +#: src/pages/sales/SalesOrderDetail.tsx:154 msgid "Completed Shipments" msgstr "" -#: src/pages/sales/SalesOrderDetail.tsx:188 -#: src/pages/sales/SalesOrderShipmentDetail.tsx:170 +#: src/pages/sales/SalesOrderDetail.tsx:189 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:168 msgid "Shipping Address" msgstr "" -#: src/pages/sales/SalesOrderDetail.tsx:316 +#: src/pages/sales/SalesOrderDetail.tsx:317 msgid "Edit Sales Order" msgstr "" -#: src/pages/sales/SalesOrderDetail.tsx:338 +#: src/pages/sales/SalesOrderDetail.tsx:339 #: src/tables/sales/SalesOrderTable.tsx:108 #: src/tables/sales/SalesOrderTable.tsx:121 msgid "Add Sales Order" msgstr "" -#: src/pages/sales/SalesOrderDetail.tsx:396 +#: src/pages/sales/SalesOrderDetail.tsx:397 #: src/tables/sales/SalesOrderTable.tsx:147 msgid "Shipments" msgstr "" -#: src/pages/sales/SalesOrderDetail.tsx:443 +#: src/pages/sales/SalesOrderDetail.tsx:448 msgid "Issue Sales Order" msgstr "" -#: src/pages/sales/SalesOrderDetail.tsx:451 +#: src/pages/sales/SalesOrderDetail.tsx:456 msgid "Cancel Sales Order" msgstr "" -#: src/pages/sales/SalesOrderDetail.tsx:459 +#: src/pages/sales/SalesOrderDetail.tsx:464 msgid "Hold Sales Order" msgstr "" -#: src/pages/sales/SalesOrderDetail.tsx:467 +#: src/pages/sales/SalesOrderDetail.tsx:472 msgid "Ship Sales Order" msgstr "" -#: src/pages/sales/SalesOrderDetail.tsx:469 +#: src/pages/sales/SalesOrderDetail.tsx:474 msgid "Ship this order?" msgstr "" -#: src/pages/sales/SalesOrderDetail.tsx:470 +#: src/pages/sales/SalesOrderDetail.tsx:475 msgid "Order shipped" msgstr "" -#: src/pages/sales/SalesOrderDetail.tsx:478 +#: src/pages/sales/SalesOrderDetail.tsx:483 msgid "Complete Sales Order" msgstr "" -#: src/pages/sales/SalesOrderDetail.tsx:523 +#: src/pages/sales/SalesOrderDetail.tsx:528 msgid "Ship Order" msgstr "" -#: src/pages/sales/SalesOrderShipmentDetail.tsx:142 -#: src/tables/sales/SalesOrderShipmentTable.tsx:135 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:140 +#: src/tables/sales/SalesOrderShipmentTable.tsx:156 msgid "Shipment Reference" msgstr "" -#: src/pages/sales/SalesOrderShipmentDetail.tsx:148 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:146 msgid "Tracking Number" msgstr "" -#: src/pages/sales/SalesOrderShipmentDetail.tsx:156 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:154 msgid "Invoice Number" msgstr "" -#: src/pages/sales/SalesOrderShipmentDetail.tsx:191 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:189 msgid "Allocated Items" msgstr "" -#: src/pages/sales/SalesOrderShipmentDetail.tsx:196 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:194 msgid "Checked By" msgstr "" -#: src/pages/sales/SalesOrderShipmentDetail.tsx:202 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:200 msgid "Not checked" msgstr "" -#: src/pages/sales/SalesOrderShipmentDetail.tsx:208 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:206 #: src/tables/ColumnRenderers.tsx:518 #: src/tables/sales/SalesOrderAllocationTable.tsx:182 -#: src/tables/sales/SalesOrderShipmentTable.tsx:168 +#: src/tables/sales/SalesOrderShipmentTable.tsx:189 msgid "Shipment Date" msgstr "" @@ -8366,108 +8464,82 @@ msgstr "" #~ msgid "Assigned Items" #~ msgstr "Assigned Items" -#: src/pages/sales/SalesOrderShipmentDetail.tsx:216 -#: src/tables/sales/SalesOrderShipmentTable.tsx:172 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:214 +#: src/tables/sales/SalesOrderShipmentTable.tsx:193 msgid "Delivery Date" msgstr "" -#: src/pages/sales/SalesOrderShipmentDetail.tsx:255 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:253 msgid "Shipment Details" msgstr "" -#: src/pages/sales/SalesOrderShipmentDetail.tsx:294 -#: src/pages/sales/SalesOrderShipmentDetail.tsx:438 -#: src/tables/sales/SalesOrderShipmentTable.tsx:90 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:292 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:406 +#: src/tables/sales/SalesOrderShipmentTable.tsx:97 msgid "Edit Shipment" msgstr "" -#: src/pages/sales/SalesOrderShipmentDetail.tsx:301 -#: src/pages/sales/SalesOrderShipmentDetail.tsx:457 -#: src/tables/sales/SalesOrderShipmentTable.tsx:82 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:299 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:425 +#: src/tables/sales/SalesOrderShipmentTable.tsx:89 msgid "Cancel Shipment" msgstr "" -#: src/pages/sales/SalesOrderShipmentDetail.tsx:314 -#: src/tables/sales/SalesOrderShipmentTable.tsx:98 -#: src/tables/sales/SalesOrderShipmentTable.tsx:193 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:312 +#: src/tables/sales/SalesOrderShipmentTable.tsx:119 +#: src/tables/sales/SalesOrderShipmentTable.tsx:238 msgid "Complete Shipment" msgstr "" -#: src/pages/sales/SalesOrderShipmentDetail.tsx:326 -#: src/pages/sales/SalesOrderShipmentDetail.tsx:328 -msgid "Check Shipment" -msgstr "" - -#: src/pages/sales/SalesOrderShipmentDetail.tsx:329 -msgid "Marking the shipment as checked indicates that you have verified that all items included in this shipment are correct" -msgstr "" - #: src/pages/sales/SalesOrderShipmentDetail.tsx:339 -msgid "Shipment marked as checked" -msgstr "" - -#: src/pages/sales/SalesOrderShipmentDetail.tsx:346 -#: src/pages/sales/SalesOrderShipmentDetail.tsx:348 -msgid "Uncheck Shipment" -msgstr "" - -#: src/pages/sales/SalesOrderShipmentDetail.tsx:349 -msgid "Marking the shipment as unchecked indicates that the shipment requires further verification" -msgstr "" - -#: src/pages/sales/SalesOrderShipmentDetail.tsx:359 -msgid "Shipment marked as unchecked" -msgstr "" - -#: src/pages/sales/SalesOrderShipmentDetail.tsx:371 #: src/tables/part/PartPurchaseOrdersTable.tsx:122 msgid "Pending" msgstr "" -#: src/pages/sales/SalesOrderShipmentDetail.tsx:377 -#: src/tables/sales/SalesOrderShipmentTable.tsx:147 -#: src/tables/sales/SalesOrderShipmentTable.tsx:254 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:345 +#: src/tables/sales/SalesOrderShipmentTable.tsx:168 +#: src/tables/sales/SalesOrderShipmentTable.tsx:299 msgid "Checked" msgstr "" -#: src/pages/sales/SalesOrderShipmentDetail.tsx:383 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:351 msgid "Not Checked" msgstr "" -#: src/pages/sales/SalesOrderShipmentDetail.tsx:389 -#: src/tables/sales/SalesOrderShipmentTable.tsx:154 -#: src/tables/sales/SalesOrderShipmentTable.tsx:259 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:357 +#: src/tables/sales/SalesOrderShipmentTable.tsx:175 +#: src/tables/sales/SalesOrderShipmentTable.tsx:304 msgid "Shipped" msgstr "" -#: src/pages/sales/SalesOrderShipmentDetail.tsx:395 -#: src/tables/sales/SalesOrderShipmentTable.tsx:161 -#: src/tables/sales/SalesOrderShipmentTable.tsx:264 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:363 +#: src/tables/sales/SalesOrderShipmentTable.tsx:182 +#: src/tables/sales/SalesOrderShipmentTable.tsx:309 #: src/tables/settings/EmailTable.tsx:31 msgid "Delivered" msgstr "" -#: src/pages/sales/SalesOrderShipmentDetail.tsx:410 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:378 msgid "Send Shipment" msgstr "" -#: src/pages/sales/SalesOrderShipmentDetail.tsx:433 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:401 msgid "Shipment Actions" msgstr "" -#: src/pages/sales/SalesOrderShipmentDetail.tsx:442 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:410 msgid "Check" msgstr "" -#: src/pages/sales/SalesOrderShipmentDetail.tsx:443 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:411 msgid "Mark shipment as checked" msgstr "" -#: src/pages/sales/SalesOrderShipmentDetail.tsx:449 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:417 msgid "Uncheck" msgstr "" -#: src/pages/sales/SalesOrderShipmentDetail.tsx:450 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:418 msgid "Mark shipment as unchecked" msgstr "" @@ -8775,13 +8847,6 @@ msgstr "" msgid "Part is not active" msgstr "" -#: src/tables/ColumnRenderers.tsx:73 -#: src/tables/bom/BomTable.tsx:657 -#: src/tables/part/PartParameterTable.tsx:227 -#: src/tables/part/PartTestTemplateTable.tsx:258 -msgid "Part is Locked" -msgstr "" - #: src/tables/ColumnRenderers.tsx:78 msgid "You are subscribed to notifications for this part" msgstr "" @@ -9219,13 +9284,13 @@ msgstr "" #~ msgstr "Show asssmbled items" #: src/tables/bom/BomTable.tsx:315 -#: src/tables/build/BuildLineTable.tsx:276 +#: src/tables/build/BuildLineTable.tsx:277 #: src/tables/part/PartTable.tsx:145 msgid "External stock" msgstr "" #: src/tables/bom/BomTable.tsx:323 -#: src/tables/build/BuildLineTable.tsx:239 +#: src/tables/build/BuildLineTable.tsx:240 msgid "Includes substitute stock" msgstr "" @@ -9234,7 +9299,7 @@ msgstr "" #~ msgstr "Edit Bom Item" #: src/tables/bom/BomTable.tsx:332 -#: src/tables/build/BuildLineTable.tsx:249 +#: src/tables/build/BuildLineTable.tsx:250 #: src/tables/sales/SalesOrderLineItemTable.tsx:166 msgid "Includes variant stock" msgstr "" @@ -9272,8 +9337,8 @@ msgid "Stock Information" msgstr "" #: src/tables/bom/BomTable.tsx:399 -#: src/tables/build/BuildLineTable.tsx:496 -#: src/tables/build/BuildLineTable.tsx:537 +#: src/tables/build/BuildLineTable.tsx:497 +#: src/tables/build/BuildLineTable.tsx:538 msgid "Consumable item" msgstr "" @@ -9282,7 +9347,7 @@ msgid "No available stock" msgstr "" #: src/tables/bom/BomTable.tsx:420 -#: src/tables/build/BuildLineTable.tsx:213 +#: src/tables/build/BuildLineTable.tsx:214 msgid "Show testable items" msgstr "" @@ -9291,7 +9356,7 @@ msgid "Show trackable items" msgstr "" #: src/tables/bom/BomTable.tsx:430 -#: src/tables/build/BuildLineTable.tsx:208 +#: src/tables/build/BuildLineTable.tsx:209 msgid "Show assembled items" msgstr "" @@ -9335,7 +9400,7 @@ msgstr "" #: src/tables/bom/BomTable.tsx:464 #: src/tables/bom/UsedInTable.tsx:85 -#: src/tables/build/BuildLineTable.tsx:202 +#: src/tables/build/BuildLineTable.tsx:203 msgid "Optional" msgstr "" @@ -9345,7 +9410,7 @@ msgid "Show optional items" msgstr "" #: src/tables/bom/BomTable.tsx:469 -#: src/tables/build/BuildLineTable.tsx:197 +#: src/tables/build/BuildLineTable.tsx:198 msgid "Consumable" msgstr "" @@ -9420,6 +9485,7 @@ msgid "Add a single BOM item" msgstr "" #: src/tables/bom/BomTable.tsx:637 +#: src/tables/general/ParameterTable.tsx:206 #: src/tables/part/PartTable.tsx:546 msgid "Import from File" msgstr "" @@ -9433,8 +9499,8 @@ msgid "Bill of materials cannot be edited, as the part is locked" msgstr "" #: src/tables/bom/UsedInTable.tsx:34 -#: src/tables/build/BuildLineTable.tsx:207 -#: src/tables/part/ParametricPartTable.tsx:364 +#: src/tables/build/BuildLineTable.tsx:208 +#: src/tables/part/ParametricPartTable.tsx:29 #: src/tables/part/PartBuildAllocationsTable.tsx:60 #: src/tables/part/PartTable.tsx:209 #: src/tables/stock/StockItemTable.tsx:333 @@ -9455,11 +9521,11 @@ msgstr "" msgid "Show trackable assemblies" msgstr "" -#: src/tables/build/BuildAllocatedStockTable.tsx:67 +#: src/tables/build/BuildAllocatedStockTable.tsx:64 msgid "Allocated to Output" msgstr "" -#: src/tables/build/BuildAllocatedStockTable.tsx:68 +#: src/tables/build/BuildAllocatedStockTable.tsx:65 msgid "Show items allocated to a build output" msgstr "" @@ -9472,50 +9538,68 @@ msgstr "" #~ msgid "Include orders for part variants" #~ msgstr "Include orders for part variants" -#: src/tables/build/BuildAllocatedStockTable.tsx:97 +#: src/tables/build/BuildAllocatedStockTable.tsx:94 #: src/tables/part/PartBuildAllocationsTable.tsx:84 #: src/tables/part/PartPurchaseOrdersTable.tsx:132 #: src/tables/part/PartSalesAllocationsTable.tsx:69 #: src/tables/sales/SalesOrderAllocationTable.tsx:122 -#: src/tables/sales/SalesOrderShipmentTable.tsx:130 +#: src/tables/sales/SalesOrderShipmentTable.tsx:151 msgid "Order Status" msgstr "" +#: src/tables/build/BuildAllocatedStockTable.tsx:164 +#: src/tables/build/BuildLineTable.tsx:651 +msgid "Edit Stock Allocation" +msgstr "" + #: src/tables/build/BuildAllocatedStockTable.tsx:164 #~ msgid "Edit Build Item" #~ msgstr "Edit Build Item" -#: src/tables/build/BuildAllocatedStockTable.tsx:167 -#: src/tables/build/BuildLineTable.tsx:650 -msgid "Edit Stock Allocation" -msgstr "" - #: src/tables/build/BuildAllocatedStockTable.tsx:174 #~ msgid "Delete Build Item" #~ msgstr "Delete Build Item" -#: src/tables/build/BuildAllocatedStockTable.tsx:180 -#: src/tables/build/BuildLineTable.tsx:663 -msgid "Delete Stock Allocation" +#: src/tables/build/BuildAllocatedStockTable.tsx:177 +#: src/tables/build/BuildLineTable.tsx:664 +#: src/tables/sales/SalesOrderAllocationTable.tsx:218 +msgid "Remove Allocated Stock" msgstr "" -#: src/tables/build/BuildAllocatedStockTable.tsx:239 +#: src/tables/build/BuildAllocatedStockTable.tsx:180 +#: src/tables/build/BuildLineTable.tsx:663 +#~ msgid "Delete Stock Allocation" +#~ msgstr "Delete Stock Allocation" + +#: src/tables/build/BuildAllocatedStockTable.tsx:182 +#: src/tables/build/BuildLineTable.tsx:669 +#: src/tables/sales/SalesOrderAllocationTable.tsx:221 +msgid "Are you sure you want to remove this allocated stock from the order?" +msgstr "" + +#: src/tables/build/BuildAllocatedStockTable.tsx:242 msgid "Consume" msgstr "" +#: src/tables/build/BuildAllocatedStockTable.tsx:259 +#: src/tables/build/BuildLineTable.tsx:112 +#: src/tables/sales/SalesOrderAllocationTable.tsx:248 +msgid "Remove allocated stock" +msgstr "" + #: src/tables/build/BuildLineTable.tsx:59 #~ msgid "Show lines with available stock" #~ msgstr "Show lines with available stock" -#: src/tables/build/BuildLineTable.tsx:120 +#: src/tables/build/BuildLineTable.tsx:121 msgid "View Stock Item" msgstr "" -#: src/tables/build/BuildLineTable.tsx:183 +#: src/tables/build/BuildLineTable.tsx:184 msgid "Show fully allocated lines" msgstr "" -#: src/tables/build/BuildLineTable.tsx:188 +#: src/tables/build/BuildLineTable.tsx:189 msgid "Show fully consumed lines" msgstr "" @@ -9523,124 +9607,124 @@ msgstr "" #~ msgid "Show allocated lines" #~ msgstr "Show allocated lines" -#: src/tables/build/BuildLineTable.tsx:193 +#: src/tables/build/BuildLineTable.tsx:194 msgid "Show items with sufficient available stock" msgstr "" -#: src/tables/build/BuildLineTable.tsx:198 +#: src/tables/build/BuildLineTable.tsx:199 msgid "Show consumable lines" msgstr "" -#: src/tables/build/BuildLineTable.tsx:203 +#: src/tables/build/BuildLineTable.tsx:204 msgid "Show optional lines" msgstr "" -#: src/tables/build/BuildLineTable.tsx:212 +#: src/tables/build/BuildLineTable.tsx:213 #: src/tables/part/PartTable.tsx:233 msgid "Testable" msgstr "" -#: src/tables/build/BuildLineTable.tsx:217 +#: src/tables/build/BuildLineTable.tsx:218 #: src/tables/stock/StockItemTable.tsx:388 msgid "Tracked" msgstr "" -#: src/tables/build/BuildLineTable.tsx:218 +#: src/tables/build/BuildLineTable.tsx:219 msgid "Show tracked lines" msgstr "" -#: src/tables/build/BuildLineTable.tsx:223 +#: src/tables/build/BuildLineTable.tsx:224 msgid "Show items with stock on order" msgstr "" -#: src/tables/build/BuildLineTable.tsx:258 +#: src/tables/build/BuildLineTable.tsx:259 #: src/tables/sales/SalesOrderLineItemTable.tsx:172 msgid "In production" msgstr "" -#: src/tables/build/BuildLineTable.tsx:286 +#: src/tables/build/BuildLineTable.tsx:287 msgid "Insufficient stock" msgstr "" -#: src/tables/build/BuildLineTable.tsx:302 +#: src/tables/build/BuildLineTable.tsx:303 #: src/tables/sales/SalesOrderLineItemTable.tsx:160 #: src/tables/stock/StockItemTable.tsx:191 msgid "No stock available" msgstr "" -#: src/tables/build/BuildLineTable.tsx:375 +#: src/tables/build/BuildLineTable.tsx:376 msgid "Gets Inherited" msgstr "" -#: src/tables/build/BuildLineTable.tsx:388 +#: src/tables/build/BuildLineTable.tsx:389 msgid "Unit Quantity" msgstr "" -#: src/tables/build/BuildLineTable.tsx:415 +#: src/tables/build/BuildLineTable.tsx:416 msgid "Setup Quantity" msgstr "" -#: src/tables/build/BuildLineTable.tsx:424 +#: src/tables/build/BuildLineTable.tsx:425 msgid "Attrition" msgstr "" -#: src/tables/build/BuildLineTable.tsx:432 +#: src/tables/build/BuildLineTable.tsx:433 msgid "Rounding Multiple" msgstr "" -#: src/tables/build/BuildLineTable.tsx:441 +#: src/tables/build/BuildLineTable.tsx:442 msgid "BOM Information" msgstr "" -#: src/tables/build/BuildLineTable.tsx:515 +#: src/tables/build/BuildLineTable.tsx:516 #: src/tables/part/PartBuildAllocationsTable.tsx:102 msgid "Fully allocated" msgstr "" -#: src/tables/build/BuildLineTable.tsx:563 +#: src/tables/build/BuildLineTable.tsx:564 #: src/tables/sales/SalesOrderLineItemTable.tsx:311 msgid "Create Build Order" msgstr "" -#: src/tables/build/BuildLineTable.tsx:592 +#: src/tables/build/BuildLineTable.tsx:593 msgid "Auto allocation in progress" msgstr "" -#: src/tables/build/BuildLineTable.tsx:595 -#: src/tables/build/BuildLineTable.tsx:802 +#: src/tables/build/BuildLineTable.tsx:596 +#: src/tables/build/BuildLineTable.tsx:809 msgid "Auto Allocate Stock" msgstr "" -#: src/tables/build/BuildLineTable.tsx:596 +#: src/tables/build/BuildLineTable.tsx:597 msgid "Automatically allocate stock to this build according to the selected options" msgstr "" -#: src/tables/build/BuildLineTable.tsx:616 -#: src/tables/build/BuildLineTable.tsx:630 -#: src/tables/build/BuildLineTable.tsx:751 -#: src/tables/build/BuildLineTable.tsx:852 +#: src/tables/build/BuildLineTable.tsx:617 +#: src/tables/build/BuildLineTable.tsx:631 +#: src/tables/build/BuildLineTable.tsx:758 +#: src/tables/build/BuildLineTable.tsx:859 #: src/tables/build/BuildOutputTable.tsx:355 #: src/tables/build/BuildOutputTable.tsx:360 msgid "Deallocate Stock" msgstr "" -#: src/tables/build/BuildLineTable.tsx:632 +#: src/tables/build/BuildLineTable.tsx:633 msgid "Deallocate all untracked stock for this build order" msgstr "" -#: src/tables/build/BuildLineTable.tsx:634 +#: src/tables/build/BuildLineTable.tsx:635 msgid "Deallocate stock from the selected line item" msgstr "" -#: src/tables/build/BuildLineTable.tsx:638 +#: src/tables/build/BuildLineTable.tsx:639 msgid "Stock has been deallocated" msgstr "" -#: src/tables/build/BuildLineTable.tsx:771 +#: src/tables/build/BuildLineTable.tsx:778 msgid "Build Stock" msgstr "" -#: src/tables/build/BuildLineTable.tsx:784 +#: src/tables/build/BuildLineTable.tsx:791 #: src/tables/sales/SalesOrderLineItemTable.tsx:487 msgid "View Part" msgstr "" @@ -9739,7 +9823,7 @@ msgid "Serialize Build Output" msgstr "" #: src/tables/build/BuildOutputTable.tsx:405 -#: src/tables/part/PartTestResultTable.tsx:310 +#: src/tables/part/PartTestResultTable.tsx:318 #: src/tables/stock/StockItemTable.tsx:328 msgid "Filter by stock status" msgstr "" @@ -9964,8 +10048,8 @@ msgid "View Item" msgstr "" #: src/tables/general/ExtraLineItemTable.tsx:95 -#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:299 -#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:403 +#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:300 +#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:405 #: src/tables/sales/ReturnOrderLineItemTable.tsx:83 #: src/tables/sales/ReturnOrderLineItemTable.tsx:187 #: src/tables/sales/SalesOrderLineItemTable.tsx:252 @@ -9974,14 +10058,14 @@ msgid "Add Line Item" msgstr "" #: src/tables/general/ExtraLineItemTable.tsx:108 -#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:320 +#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:322 #: src/tables/sales/ReturnOrderLineItemTable.tsx:96 #: src/tables/sales/SalesOrderLineItemTable.tsx:271 msgid "Edit Line Item" msgstr "" #: src/tables/general/ExtraLineItemTable.tsx:117 -#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:329 +#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:331 #: src/tables/sales/ReturnOrderLineItemTable.tsx:105 #: src/tables/sales/SalesOrderLineItemTable.tsx:280 msgid "Delete Line Item" @@ -9991,6 +10075,137 @@ msgstr "" msgid "Add Extra Line Item" msgstr "" +#: src/tables/general/ParameterTable.tsx:88 +msgid "Internal Units" +msgstr "" + +#: src/tables/general/ParameterTable.tsx:108 +#: src/tables/general/ParameterTable.tsx:123 +msgid "Updated By" +msgstr "" + +#: src/tables/general/ParameterTable.tsx:118 +msgid "Show parameters for enabled templates" +msgstr "" + +#: src/tables/general/ParameterTable.tsx:124 +msgid "Filter by user who last updated the parameter" +msgstr "" + +#: src/tables/general/ParameterTable.tsx:154 +msgid "Import Parameters" +msgstr "" + +#: src/tables/general/ParameterTable.tsx:164 +#: src/tables/general/ParametricDataTable.tsx:261 +#: src/tables/general/ParametricDataTable.tsx:392 +msgid "Add Parameter" +msgstr "" + +#: src/tables/general/ParameterTable.tsx:175 +#: src/tables/general/ParameterTable.tsx:222 +#: src/tables/general/ParametricDataTable.tsx:285 +msgid "Edit Parameter" +msgstr "" + +#: src/tables/general/ParameterTable.tsx:183 +#: src/tables/general/ParameterTable.tsx:230 +msgid "Delete Parameter" +msgstr "" + +#: src/tables/general/ParameterTable.tsx:191 +msgid "Add Parameters" +msgstr "" + +#: src/tables/general/ParameterTable.tsx:197 +msgid "Create Parameter" +msgstr "" + +#: src/tables/general/ParameterTable.tsx:199 +msgid "Create a new parameter" +msgstr "" + +#: src/tables/general/ParameterTable.tsx:208 +msgid "Import parameters from a file" +msgstr "" + +#: src/tables/general/ParameterTemplateTable.tsx:48 +#: src/tables/general/ParameterTemplateTable.tsx:197 +msgid "Add Parameter Template" +msgstr "" + +#: src/tables/general/ParameterTemplateTable.tsx:64 +msgid "Duplicate Parameter Template" +msgstr "" + +#: src/tables/general/ParameterTemplateTable.tsx:78 +msgid "Delete Parameter Template" +msgstr "" + +#: src/tables/general/ParameterTemplateTable.tsx:85 +msgid "Edit Parameter Template" +msgstr "" + +#: src/tables/general/ParameterTemplateTable.tsx:138 +msgid "Checkbox" +msgstr "" + +#: src/tables/general/ParameterTemplateTable.tsx:139 +msgid "Show checkbox templates" +msgstr "" + +#: src/tables/general/ParameterTemplateTable.tsx:143 +msgid "Has choices" +msgstr "" + +#: src/tables/general/ParameterTemplateTable.tsx:144 +msgid "Show templates with choices" +msgstr "" + +#: src/tables/general/ParameterTemplateTable.tsx:148 +#: src/tables/part/PartTable.tsx:245 +msgid "Has Units" +msgstr "" + +#: src/tables/general/ParameterTemplateTable.tsx:149 +msgid "Show templates with units" +msgstr "" + +#: src/tables/general/ParameterTemplateTable.tsx:154 +msgid "Show enabled templates" +msgstr "" + +#: src/tables/general/ParameterTemplateTable.tsx:158 +#: src/tables/settings/ImportSessionTable.tsx:111 +#: src/tables/settings/TemplateTable.tsx:368 +msgid "Model Type" +msgstr "" + +#: src/tables/general/ParameterTemplateTable.tsx:159 +msgid "Filter by model type" +msgstr "" + +#: src/tables/general/ParametricDataTable.tsx:79 +msgid "Click to edit" +msgstr "" + +#: src/tables/general/ParametricDataTableFilters.tsx:36 +msgid "True" +msgstr "" + +#: src/tables/general/ParametricDataTableFilters.tsx:37 +msgid "False" +msgstr "" + +#: src/tables/general/ParametricDataTableFilters.tsx:47 +#: src/tables/general/ParametricDataTableFilters.tsx:80 +msgid "Select a choice" +msgstr "" + +#: src/tables/general/ParametricDataTableFilters.tsx:100 +msgid "Enter a value" +msgstr "" + #: src/tables/machine/MachineListTable.tsx:133 msgid "Machine restarted" msgstr "" @@ -10071,7 +10286,7 @@ msgid "Initialized" msgstr "" #: src/tables/machine/MachineListTable.tsx:410 -#: src/tables/machine/MachineTypeTable.tsx:307 +#: src/tables/machine/MachineTypeTable.tsx:305 msgid "No errors reported" msgstr "" @@ -10132,15 +10347,15 @@ msgstr "" #~ msgid "Machine type information" #~ msgstr "Machine type information" -#: src/tables/machine/MachineTypeTable.tsx:128 +#: src/tables/machine/MachineTypeTable.tsx:126 msgid "Not Found" msgstr "" -#: src/tables/machine/MachineTypeTable.tsx:131 +#: src/tables/machine/MachineTypeTable.tsx:129 msgid "Machine type not found." msgstr "" -#: src/tables/machine/MachineTypeTable.tsx:141 +#: src/tables/machine/MachineTypeTable.tsx:139 msgid "Machine Type Information" msgstr "" @@ -10148,34 +10363,34 @@ msgstr "" #~ msgid "Available drivers" #~ msgstr "Available drivers" -#: src/tables/machine/MachineTypeTable.tsx:156 -#: src/tables/machine/MachineTypeTable.tsx:255 +#: src/tables/machine/MachineTypeTable.tsx:154 +#: src/tables/machine/MachineTypeTable.tsx:253 msgid "Slug" msgstr "" -#: src/tables/machine/MachineTypeTable.tsx:167 -#: src/tables/machine/MachineTypeTable.tsx:276 +#: src/tables/machine/MachineTypeTable.tsx:165 +#: src/tables/machine/MachineTypeTable.tsx:274 msgid "Provider plugin" msgstr "" -#: src/tables/machine/MachineTypeTable.tsx:179 -#: src/tables/machine/MachineTypeTable.tsx:288 +#: src/tables/machine/MachineTypeTable.tsx:177 +#: src/tables/machine/MachineTypeTable.tsx:286 msgid "Provider file" msgstr "" -#: src/tables/machine/MachineTypeTable.tsx:194 +#: src/tables/machine/MachineTypeTable.tsx:192 msgid "Available Drivers" msgstr "" -#: src/tables/machine/MachineTypeTable.tsx:234 +#: src/tables/machine/MachineTypeTable.tsx:232 msgid "Machine driver not found." msgstr "" -#: src/tables/machine/MachineTypeTable.tsx:242 +#: src/tables/machine/MachineTypeTable.tsx:240 msgid "Machine driver information" msgstr "" -#: src/tables/machine/MachineTypeTable.tsx:262 +#: src/tables/machine/MachineTypeTable.tsx:260 msgid "Machine type" msgstr "" @@ -10187,15 +10402,15 @@ msgstr "" #~ msgid "Machine driver detail" #~ msgstr "Machine driver detail" -#: src/tables/machine/MachineTypeTable.tsx:362 +#: src/tables/machine/MachineTypeTable.tsx:360 msgid "Builtin type" msgstr "" -#: src/tables/machine/MachineTypeTable.tsx:371 +#: src/tables/machine/MachineTypeTable.tsx:369 msgid "Machine Type Detail" msgstr "" -#: src/tables/machine/MachineTypeTable.tsx:381 +#: src/tables/machine/MachineTypeTable.tsx:379 msgid "Machine Driver Detail" msgstr "" @@ -10213,8 +10428,16 @@ msgstr "" msgid "Message" msgstr "" -#: src/tables/part/ParametricPartTable.tsx:78 -msgid "Click to edit" +#: src/tables/part/ParametricPartTable.tsx:20 +msgid "Show active parts" +msgstr "" + +#: src/tables/part/ParametricPartTable.tsx:25 +msgid "Show locked parts" +msgstr "" + +#: src/tables/part/ParametricPartTable.tsx:30 +msgid "Show assembly parts" msgstr "" #: src/tables/part/ParametricPartTable.tsx:82 @@ -10222,43 +10445,14 @@ msgstr "" #~ msgstr "Edit parameter" #: src/tables/part/ParametricPartTable.tsx:244 -msgid "Add Part Parameter" -msgstr "" +#~ msgid "Add Part Parameter" +#~ msgstr "Add Part Parameter" #: src/tables/part/ParametricPartTable.tsx:258 #: src/tables/part/PartParameterTable.tsx:164 #: src/tables/part/PartParameterTable.tsx:187 -msgid "Edit Part Parameter" -msgstr "" - -#: src/tables/part/ParametricPartTable.tsx:355 -msgid "Show active parts" -msgstr "" - -#: src/tables/part/ParametricPartTable.tsx:360 -msgid "Show locked parts" -msgstr "" - -#: src/tables/part/ParametricPartTable.tsx:365 -msgid "Show assembly parts" -msgstr "" - -#: src/tables/part/ParametricPartTableFilters.tsx:36 -msgid "True" -msgstr "" - -#: src/tables/part/ParametricPartTableFilters.tsx:37 -msgid "False" -msgstr "" - -#: src/tables/part/ParametricPartTableFilters.tsx:47 -#: src/tables/part/ParametricPartTableFilters.tsx:80 -msgid "Select a choice" -msgstr "" - -#: src/tables/part/ParametricPartTableFilters.tsx:100 -msgid "Enter a value" -msgstr "" +#~ msgid "Edit Part Parameter" +#~ msgstr "Edit Part Parameter" #: src/tables/part/PartBuildAllocationsTable.tsx:64 msgid "Assembly IPN" @@ -10273,7 +10467,7 @@ msgid "Required Stock" msgstr "" #: src/tables/part/PartBuildAllocationsTable.tsx:124 -#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:381 +#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:383 msgid "View Build Order" msgstr "" @@ -10332,85 +10526,22 @@ msgstr "" msgid "Delete Category Parameter" msgstr "" -#: src/tables/part/PartCategoryTemplateTable.tsx:87 -msgid "Parameter Template" -msgstr "" - #: src/tables/part/PartCategoryTemplateTable.tsx:93 #~ msgid "[{0}]" #~ msgstr "[{0}]" -#: src/tables/part/PartParameterTable.tsx:108 -msgid "Internal Units" -msgstr "" - -#: src/tables/part/PartParameterTable.tsx:128 -#: src/tables/part/PartParameterTable.tsx:138 -msgid "Updated By" -msgstr "" - -#: src/tables/part/PartParameterTable.tsx:139 -msgid "Filter by user who last updated the parameter" -msgstr "" - #: src/tables/part/PartParameterTable.tsx:148 -msgid "New Part Parameter" -msgstr "" +#~ msgid "New Part Parameter" +#~ msgstr "New Part Parameter" #: src/tables/part/PartParameterTable.tsx:173 #: src/tables/part/PartParameterTable.tsx:195 -msgid "Delete Part Parameter" -msgstr "" +#~ msgid "Delete Part Parameter" +#~ msgstr "Delete Part Parameter" #: src/tables/part/PartParameterTable.tsx:213 -msgid "Add parameter" -msgstr "" - -#: src/tables/part/PartParameterTable.tsx:232 -msgid "Part parameters cannot be edited, as the part is locked" -msgstr "" - -#: src/tables/part/PartParameterTemplateTable.tsx:36 -msgid "Checkbox" -msgstr "" - -#: src/tables/part/PartParameterTemplateTable.tsx:37 -msgid "Show checkbox templates" -msgstr "" - -#: src/tables/part/PartParameterTemplateTable.tsx:41 -msgid "Has choices" -msgstr "" - -#: src/tables/part/PartParameterTemplateTable.tsx:42 -msgid "Show templates with choices" -msgstr "" - -#: src/tables/part/PartParameterTemplateTable.tsx:46 -#: src/tables/part/PartTable.tsx:245 -msgid "Has Units" -msgstr "" - -#: src/tables/part/PartParameterTemplateTable.tsx:47 -msgid "Show templates with units" -msgstr "" - -#: src/tables/part/PartParameterTemplateTable.tsx:91 -#: src/tables/part/PartParameterTemplateTable.tsx:166 -msgid "Add Parameter Template" -msgstr "" - -#: src/tables/part/PartParameterTemplateTable.tsx:105 -msgid "Duplicate Parameter Template" -msgstr "" - -#: src/tables/part/PartParameterTemplateTable.tsx:117 -msgid "Edit Parameter Template" -msgstr "" - -#: src/tables/part/PartParameterTemplateTable.tsx:128 -msgid "Delete Parameter Template" -msgstr "" +#~ msgid "Add parameter" +#~ msgstr "Add parameter" #: src/tables/part/PartParameterTemplateTable.tsx:141 #~ msgid "Add parameter template" @@ -10430,7 +10561,7 @@ msgid "Show received items" msgstr "" #: src/tables/part/PartSalesAllocationsTable.tsx:90 -#: src/tables/sales/SalesOrderShipmentTable.tsx:218 +#: src/tables/sales/SalesOrderShipmentTable.tsx:263 msgid "View Sales Order" msgstr "" @@ -10617,8 +10748,8 @@ msgstr "" #: src/tables/part/PartTestResultTable.tsx:103 #: src/tables/part/PartTestResultTable.tsx:181 -#: src/tables/part/PartTestResultTable.tsx:320 -#: src/tables/part/PartTestResultTable.tsx:334 +#: src/tables/part/PartTestResultTable.tsx:328 +#: src/tables/part/PartTestResultTable.tsx:342 #: src/tables/stock/StockItemTestResultTable.tsx:296 #: src/tables/stock/StockItemTestResultTable.tsx:368 #: src/tables/stock/StockItemTestResultTable.tsx:429 @@ -10643,7 +10774,7 @@ msgstr "" msgid "No Result" msgstr "" -#: src/tables/part/PartTestResultTable.tsx:298 +#: src/tables/part/PartTestResultTable.tsx:306 msgid "Show build outputs currently in production" msgstr "" @@ -11013,36 +11144,45 @@ msgstr "" #~ msgid "Parameter updated" #~ msgstr "Parameter updated" -#: src/tables/purchasing/ManufacturerPartParameterTable.tsx:63 -#: src/tables/purchasing/ManufacturerPartParameterTable.tsx:112 -msgid "Add Parameter" -msgstr "" - #: src/tables/purchasing/ManufacturerPartParameterTable.tsx:73 #~ msgid "Parameter deleted" #~ msgstr "Parameter deleted" -#: src/tables/purchasing/ManufacturerPartParameterTable.tsx:74 -msgid "Edit Parameter" -msgstr "" - #: src/tables/purchasing/ManufacturerPartParameterTable.tsx:74 #~ msgid "Are you sure you want to delete this parameter?" #~ msgstr "Are you sure you want to delete this parameter?" -#: src/tables/purchasing/ManufacturerPartParameterTable.tsx:82 -msgid "Delete Parameter" +#: src/tables/purchasing/ManufacturerPartParametricTable.tsx:34 +#: src/tables/purchasing/ManufacturerPartTable.tsx:82 +#: src/tables/purchasing/SupplierPartTable.tsx:99 +msgid "MPN" +msgstr "" + +#: src/tables/purchasing/ManufacturerPartParametricTable.tsx:44 +#: src/tables/purchasing/ManufacturerPartTable.tsx:134 +#: src/tables/purchasing/SupplierPartTable.tsx:220 +msgid "Active Part" +msgstr "" + +#: src/tables/purchasing/ManufacturerPartParametricTable.tsx:45 +#: src/tables/purchasing/ManufacturerPartTable.tsx:135 +msgid "Show manufacturer parts for active internal parts." +msgstr "" + +#: src/tables/purchasing/ManufacturerPartParametricTable.tsx:50 +#: src/tables/purchasing/ManufacturerPartTable.tsx:140 +msgid "Active Manufacturer" +msgstr "" + +#: src/tables/purchasing/ManufacturerPartParametricTable.tsx:51 +#: src/tables/purchasing/ManufacturerPartTable.tsx:142 +msgid "Show manufacturer parts for active manufacturers." msgstr "" #: src/tables/purchasing/ManufacturerPartTable.tsx:63 #~ msgid "Create Manufacturer Part" #~ msgstr "Create Manufacturer Part" -#: src/tables/purchasing/ManufacturerPartTable.tsx:82 -#: src/tables/purchasing/SupplierPartTable.tsx:99 -msgid "MPN" -msgstr "" - #: src/tables/purchasing/ManufacturerPartTable.tsx:100 #~ msgid "Manufacturer part updated" #~ msgstr "Manufacturer part updated" @@ -11055,25 +11195,8 @@ msgstr "" #~ msgid "Are you sure you want to remove this manufacturer part?" #~ msgstr "Are you sure you want to remove this manufacturer part?" -#: src/tables/purchasing/ManufacturerPartTable.tsx:134 -#: src/tables/purchasing/SupplierPartTable.tsx:220 -msgid "Active Part" -msgstr "" - -#: src/tables/purchasing/ManufacturerPartTable.tsx:135 -msgid "Show manufacturer parts for active internal parts." -msgstr "" - -#: src/tables/purchasing/ManufacturerPartTable.tsx:140 -msgid "Active Manufacturer" -msgstr "" - -#: src/tables/purchasing/ManufacturerPartTable.tsx:142 -msgid "Show manufacturer parts for active manufacturers." -msgstr "" - #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:115 -#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:397 +#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:399 msgid "Import Line Items" msgstr "" @@ -11099,11 +11222,11 @@ msgstr "" #~ msgid "Add line item" #~ msgstr "Add line item" -#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:350 +#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:352 msgid "Receive line item" msgstr "" -#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:414 +#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:416 msgid "Receive items" msgstr "" @@ -11201,25 +11324,25 @@ msgid "Not shipped" msgstr "" #: src/tables/sales/SalesOrderAllocationTable.tsx:211 -#: src/tables/sales/SalesOrderAllocationTable.tsx:229 +#: src/tables/sales/SalesOrderAllocationTable.tsx:235 msgid "Edit Allocation" msgstr "" #: src/tables/sales/SalesOrderAllocationTable.tsx:218 #: src/tables/sales/SalesOrderAllocationTable.tsx:241 -msgid "Delete Allocation" -msgstr "" +#~ msgid "Delete Allocation" +#~ msgstr "Delete Allocation" -#: src/tables/sales/SalesOrderAllocationTable.tsx:252 -#: src/tables/sales/SalesOrderAllocationTable.tsx:253 +#: src/tables/sales/SalesOrderAllocationTable.tsx:261 +#: src/tables/sales/SalesOrderAllocationTable.tsx:262 msgid "View Shipment" msgstr "" -#: src/tables/sales/SalesOrderAllocationTable.tsx:308 +#: src/tables/sales/SalesOrderAllocationTable.tsx:317 msgid "Assign to Shipment" msgstr "" -#: src/tables/sales/SalesOrderAllocationTable.tsx:324 +#: src/tables/sales/SalesOrderAllocationTable.tsx:333 msgid "Assign to shipment" msgstr "" @@ -11259,35 +11382,35 @@ msgstr "" #~ msgid "Delete Shipment" #~ msgstr "Delete Shipment" -#: src/tables/sales/SalesOrderShipmentTable.tsx:72 +#: src/tables/sales/SalesOrderShipmentTable.tsx:79 msgid "Create Shipment" msgstr "" -#: src/tables/sales/SalesOrderShipmentTable.tsx:143 +#: src/tables/sales/SalesOrderShipmentTable.tsx:164 msgid "Items" msgstr "" -#: src/tables/sales/SalesOrderShipmentTable.tsx:203 +#: src/tables/sales/SalesOrderShipmentTable.tsx:248 msgid "Edit shipment" msgstr "" -#: src/tables/sales/SalesOrderShipmentTable.tsx:211 +#: src/tables/sales/SalesOrderShipmentTable.tsx:256 msgid "Cancel shipment" msgstr "" -#: src/tables/sales/SalesOrderShipmentTable.tsx:241 +#: src/tables/sales/SalesOrderShipmentTable.tsx:286 msgid "Add shipment" msgstr "" -#: src/tables/sales/SalesOrderShipmentTable.tsx:255 +#: src/tables/sales/SalesOrderShipmentTable.tsx:300 msgid "Show shipments which have been checked" msgstr "" -#: src/tables/sales/SalesOrderShipmentTable.tsx:260 +#: src/tables/sales/SalesOrderShipmentTable.tsx:305 msgid "Show shipments which have been shipped" msgstr "" -#: src/tables/sales/SalesOrderShipmentTable.tsx:265 +#: src/tables/sales/SalesOrderShipmentTable.tsx:310 msgid "Show shipments which have been delivered" msgstr "" @@ -11621,11 +11744,6 @@ msgstr "" msgid "Imported Rows" msgstr "" -#: src/tables/settings/ImportSessionTable.tsx:111 -#: src/tables/settings/TemplateTable.tsx:368 -msgid "Model Type" -msgstr "" - #: src/tables/settings/ImportSessionTable.tsx:112 #: src/tables/settings/TemplateTable.tsx:369 msgid "Filter by target model type" diff --git a/src/frontend/src/locales/cs/messages.po b/src/frontend/src/locales/cs/messages.po index 9d45f83268..940e5f2888 100644 --- a/src/frontend/src/locales/cs/messages.po +++ b/src/frontend/src/locales/cs/messages.po @@ -8,7 +8,7 @@ msgstr "" "Language: cs\n" "Project-Id-Version: inventree\n" "Report-Msgid-Bugs-To: \n" -"PO-Revision-Date: 2025-11-19 19:39\n" +"PO-Revision-Date: 2025-12-07 07:36\n" "Last-Translator: \n" "Language-Team: Czech\n" "Plural-Forms: nplurals=4; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 3;\n" @@ -30,7 +30,7 @@ msgid "Edit" msgstr "Upravit" #: lib/components/RowActions.tsx:56 -#: src/components/forms/ApiForm.tsx:735 +#: src/components/forms/ApiForm.tsx:754 #: src/components/items/ActionDropdown.tsx:257 #: src/components/items/RoleTable.tsx:155 #: src/hooks/UseForm.tsx:164 @@ -56,24 +56,24 @@ msgstr "Zrušit" #: lib/components/RowActions.tsx:136 #: src/components/nav/NavigationDrawer.tsx:190 -#: src/forms/PurchaseOrderForms.tsx:802 +#: src/forms/PurchaseOrderForms.tsx:854 #: src/forms/StockForms.tsx:796 #: src/forms/StockForms.tsx:843 -#: src/forms/StockForms.tsx:889 -#: src/forms/StockForms.tsx:928 -#: src/forms/StockForms.tsx:964 -#: src/forms/StockForms.tsx:1050 +#: src/forms/StockForms.tsx:896 +#: src/forms/StockForms.tsx:942 +#: src/forms/StockForms.tsx:980 +#: src/forms/StockForms.tsx:1066 #: src/pages/Index/Settings/AccountSettings/MFASettings.tsx:962 msgid "Actions" msgstr "Akce" #: lib/components/SearchInput.tsx:34 -#: src/components/forms/fields/RelatedModelField.tsx:408 +#: src/components/forms/fields/RelatedModelField.tsx:479 #: src/components/nav/Header.tsx:169 #: src/components/wizards/ImportPartWizard.tsx:200 #: src/components/wizards/ImportPartWizard.tsx:233 -#: src/pages/Index/Settings/UserSettings.tsx:74 -#: src/pages/part/PartDetail.tsx:1155 +#: src/pages/Index/Settings/UserSettings.tsx:75 +#: src/pages/part/PartDetail.tsx:1176 msgid "Search" msgstr "Hledat" @@ -95,7 +95,7 @@ msgstr "Ano" msgid "No" msgstr "Ne" -#: lib/enums/ModelInformation.tsx:28 +#: lib/enums/ModelInformation.tsx:29 #: src/components/wizards/OrderPartsWizard.tsx:279 #: src/forms/BuildForms.tsx:332 #: src/forms/BuildForms.tsx:407 @@ -103,208 +103,234 @@ msgstr "Ne" #: src/forms/BuildForms.tsx:630 #: src/forms/BuildForms.tsx:793 #: src/forms/BuildForms.tsx:896 -#: src/forms/PurchaseOrderForms.tsx:798 +#: src/forms/PurchaseOrderForms.tsx:850 #: src/forms/ReturnOrderForms.tsx:242 -#: src/forms/SalesOrderForms.tsx:305 +#: src/forms/SalesOrderForms.tsx:384 #: src/forms/StockForms.tsx:360 #: src/forms/StockForms.tsx:791 #: src/forms/StockForms.tsx:838 -#: src/forms/StockForms.tsx:884 -#: src/forms/StockForms.tsx:923 -#: src/forms/StockForms.tsx:959 -#: src/forms/StockForms.tsx:1002 -#: src/forms/StockForms.tsx:1046 -#: src/forms/StockForms.tsx:1094 -#: src/forms/StockForms.tsx:1138 -#: src/pages/build/BuildDetail.tsx:200 -#: src/pages/part/PartDetail.tsx:1207 +#: src/forms/StockForms.tsx:891 +#: src/forms/StockForms.tsx:937 +#: src/forms/StockForms.tsx:975 +#: src/forms/StockForms.tsx:1018 +#: src/forms/StockForms.tsx:1062 +#: src/forms/StockForms.tsx:1110 +#: src/forms/StockForms.tsx:1154 +#: src/pages/build/BuildDetail.tsx:201 +#: src/pages/part/PartDetail.tsx:1228 #: src/tables/ColumnRenderers.tsx:91 +#: src/tables/part/PartTestResultTable.tsx:247 #: src/tables/part/RelatedPartTable.tsx:53 #: src/tables/stock/StockTrackingTable.tsx:87 msgid "Part" msgstr "Díl" -#: lib/enums/ModelInformation.tsx:29 +#: lib/enums/ModelInformation.tsx:30 #: lib/enums/Roles.tsx:35 #: src/components/nav/NavigationDrawer.tsx:70 #: src/defaults/links.tsx:36 -#: src/pages/Index/Settings/SystemSettings.tsx:190 -#: src/pages/part/CategoryDetail.tsx:132 -#: src/pages/part/CategoryDetail.tsx:277 -#: src/pages/part/CategoryDetail.tsx:323 -#: src/pages/part/CategoryDetail.tsx:354 -#: src/pages/part/PartDetail.tsx:965 +#: src/pages/Index/Settings/SystemSettings.tsx:197 +#: src/pages/part/CategoryDetail.tsx:135 +#: src/pages/part/CategoryDetail.tsx:285 +#: src/pages/part/CategoryDetail.tsx:340 +#: src/pages/part/CategoryDetail.tsx:371 +#: src/pages/part/PartDetail.tsx:978 msgid "Parts" msgstr "Díly" #: lib/enums/ModelInformation.tsx:37 #: src/pages/Index/Settings/AdminCenter/PartParameterPanel.tsx:13 -msgid "Part Parameter Template" -msgstr "Šablona parametru dílu" +#~ msgid "Part Parameter Template" +#~ msgstr "Part Parameter Template" #: lib/enums/ModelInformation.tsx:38 -msgid "Part Parameter Templates" -msgstr "Šablona parametru dílu" +#~ msgid "Part Parameter Templates" +#~ msgstr "Part Parameter Templates" + +#: lib/enums/ModelInformation.tsx:39 +msgid "Parameter" +msgstr "Parametr" + +#: lib/enums/ModelInformation.tsx:40 +#: src/components/panels/ParametersPanel.tsx:19 +#: src/components/wizards/ImportPartWizard.tsx:807 +#: src/pages/Index/Settings/AdminCenter/Index.tsx:195 +#: src/pages/Index/Settings/SystemSettings.tsx:191 +#: src/pages/part/PartDetail.tsx:943 +msgid "Parameters" +msgstr "Parametry" #: lib/enums/ModelInformation.tsx:45 +#: src/tables/part/PartCategoryTemplateTable.tsx:87 +msgid "Parameter Template" +msgstr "Šablona parametru" + +#: lib/enums/ModelInformation.tsx:46 +#: src/pages/Index/Settings/AdminCenter/ParameterPanel.tsx:13 +msgid "Parameter Templates" +msgstr "Šablony parametru" + +#: lib/enums/ModelInformation.tsx:52 msgid "Part Test Template" msgstr "Šablona testu položky" -#: lib/enums/ModelInformation.tsx:46 +#: lib/enums/ModelInformation.tsx:53 msgid "Part Test Templates" msgstr "Šablony testu položky" -#: lib/enums/ModelInformation.tsx:52 +#: lib/enums/ModelInformation.tsx:59 #: src/components/wizards/OrderPartsWizard.tsx:290 -#: src/pages/company/SupplierPartDetail.tsx:413 +#: src/pages/company/SupplierPartDetail.tsx:418 #: src/pages/stock/StockDetail.tsx:289 -#: src/tables/build/BuildAllocatedStockTable.tsx:155 +#: src/tables/build/BuildAllocatedStockTable.tsx:152 #: src/tables/part/PartPurchaseOrdersTable.tsx:50 +#: src/tables/purchasing/SupplierPartParametricTable.tsx:29 #: src/tables/purchasing/SupplierPartTable.tsx:83 #: src/tables/stock/StockItemTable.tsx:247 msgid "Supplier Part" msgstr "Díl dodavatele" -#: lib/enums/ModelInformation.tsx:53 -#: src/pages/purchasing/PurchasingIndex.tsx:92 +#: lib/enums/ModelInformation.tsx:60 +#: src/pages/purchasing/PurchasingIndex.tsx:128 msgid "Supplier Parts" msgstr "Díly dodavatele" -#: lib/enums/ModelInformation.tsx:61 -#: src/pages/company/ManufacturerPartDetail.tsx:297 -#: src/pages/company/SupplierPartDetail.tsx:161 +#: lib/enums/ModelInformation.tsx:69 +#: src/pages/company/ManufacturerPartDetail.tsx:288 +#: src/pages/company/SupplierPartDetail.tsx:162 #: src/tables/part/PartPurchaseOrdersTable.tsx:56 #: src/tables/stock/StockItemTable.tsx:253 msgid "Manufacturer Part" msgstr "Díl výrobce" -#: lib/enums/ModelInformation.tsx:62 -#: src/pages/purchasing/PurchasingIndex.tsx:109 +#: lib/enums/ModelInformation.tsx:70 +#: src/pages/purchasing/PurchasingIndex.tsx:177 msgid "Manufacturer Parts" msgstr "Díly výrobce" -#: lib/enums/ModelInformation.tsx:70 -#: src/pages/part/CategoryDetail.tsx:354 +#: lib/enums/ModelInformation.tsx:79 +#: src/pages/part/CategoryDetail.tsx:371 #: src/tables/Filter.tsx:389 msgid "Part Category" msgstr "Kategorie dílu" -#: lib/enums/ModelInformation.tsx:71 +#: lib/enums/ModelInformation.tsx:80 #: lib/enums/Roles.tsx:37 -#: src/pages/part/CategoryDetail.tsx:271 -#: src/pages/part/CategoryDetail.tsx:345 -#: src/pages/part/PartDetail.tsx:1196 +#: src/pages/part/CategoryDetail.tsx:279 +#: src/pages/part/CategoryDetail.tsx:362 +#: src/pages/part/PartDetail.tsx:1217 msgid "Part Categories" msgstr "Kategorie dílů" -#: lib/enums/ModelInformation.tsx:79 +#: lib/enums/ModelInformation.tsx:88 #: src/forms/BuildForms.tsx:473 #: src/forms/BuildForms.tsx:633 #: src/forms/BuildForms.tsx:794 -#: src/forms/SalesOrderForms.tsx:307 +#: src/forms/SalesOrderForms.tsx:386 #: src/pages/stock/StockDetail.tsx:1005 -#: src/tables/part/PartTestResultTable.tsx:248 +#: src/tables/part/PartTestResultTable.tsx:256 #: src/tables/stock/StockTrackingTable.tsx:48 #: src/tables/stock/StockTrackingTable.tsx:55 msgid "Stock Item" msgstr "Skladová položka" -#: lib/enums/ModelInformation.tsx:80 +#: lib/enums/ModelInformation.tsx:89 #: lib/enums/Roles.tsx:45 -#: src/pages/company/CompanyDetail.tsx:210 -#: src/pages/part/CategoryDetail.tsx:291 +#: src/pages/company/CompanyDetail.tsx:211 +#: src/pages/part/CategoryDetail.tsx:314 #: src/pages/part/PartStockHistoryDetail.tsx:101 #: src/pages/stock/LocationDetail.tsx:121 #: src/pages/stock/LocationDetail.tsx:180 msgid "Stock Items" msgstr "Skladové položky" -#: lib/enums/ModelInformation.tsx:88 +#: lib/enums/ModelInformation.tsx:98 #: lib/enums/Roles.tsx:47 #: src/pages/stock/LocationDetail.tsx:420 msgid "Stock Location" msgstr "Umístění skladu" -#: lib/enums/ModelInformation.tsx:89 +#: lib/enums/ModelInformation.tsx:99 #: src/pages/stock/LocationDetail.tsx:174 #: src/pages/stock/LocationDetail.tsx:412 #: src/pages/stock/StockDetail.tsx:996 msgid "Stock Locations" msgstr "Skladová umístění" -#: lib/enums/ModelInformation.tsx:97 +#: lib/enums/ModelInformation.tsx:108 msgid "Stock Location Type" msgstr "Typ skladového umístění" -#: lib/enums/ModelInformation.tsx:98 +#: lib/enums/ModelInformation.tsx:109 msgid "Stock Location Types" msgstr "Typy skladových umístění" -#: lib/enums/ModelInformation.tsx:103 -#: src/pages/Index/Settings/SystemSettings.tsx:248 -#: src/pages/part/PartDetail.tsx:911 +#: lib/enums/ModelInformation.tsx:114 +#: src/pages/Index/Settings/SystemSettings.tsx:254 +#: src/pages/part/PartDetail.tsx:900 msgid "Stock History" msgstr "Historie skladu" -#: lib/enums/ModelInformation.tsx:104 +#: lib/enums/ModelInformation.tsx:115 msgid "Stock Histories" msgstr "Historie skladů" -#: lib/enums/ModelInformation.tsx:109 +#: lib/enums/ModelInformation.tsx:120 msgid "Build" msgstr "Sestava" -#: lib/enums/ModelInformation.tsx:110 +#: lib/enums/ModelInformation.tsx:121 msgid "Builds" msgstr "Sestavy" -#: lib/enums/ModelInformation.tsx:118 +#: lib/enums/ModelInformation.tsx:130 msgid "Build Line" msgstr "Řádek sestavy" -#: lib/enums/ModelInformation.tsx:119 +#: lib/enums/ModelInformation.tsx:131 msgid "Build Lines" msgstr "Řádky sestavy" -#: lib/enums/ModelInformation.tsx:126 +#: lib/enums/ModelInformation.tsx:138 msgid "Build Item" msgstr "Položka sestavy" -#: lib/enums/ModelInformation.tsx:127 +#: lib/enums/ModelInformation.tsx:139 msgid "Build Items" msgstr "Položky sestavy" -#: lib/enums/ModelInformation.tsx:132 -#: src/pages/company/CompanyDetail.tsx:340 +#: lib/enums/ModelInformation.tsx:144 +#: src/pages/company/CompanyDetail.tsx:345 #: src/tables/company/CompanyTable.tsx:47 #: src/tables/company/ContactTable.tsx:67 +#: src/tables/company/ParametricCompanyTable.tsx:18 msgid "Company" msgstr "Firma" -#: lib/enums/ModelInformation.tsx:133 +#: lib/enums/ModelInformation.tsx:145 msgid "Companies" msgstr "Firmy" -#: lib/enums/ModelInformation.tsx:140 -#: src/pages/build/BuildDetail.tsx:316 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:253 -#: src/pages/sales/ReturnOrderDetail.tsx:231 -#: src/pages/sales/SalesOrderDetail.tsx:224 +#: lib/enums/ModelInformation.tsx:152 +#: src/pages/build/BuildDetail.tsx:317 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:254 +#: src/pages/sales/ReturnOrderDetail.tsx:232 +#: src/pages/sales/SalesOrderDetail.tsx:225 #: src/tables/ColumnRenderers.tsx:362 #: src/tables/Filter.tsx:286 #: src/tables/TableHoverCard.tsx:101 msgid "Project Code" msgstr "Kód projektu" -#: lib/enums/ModelInformation.tsx:141 +#: lib/enums/ModelInformation.tsx:153 #: src/pages/Index/Settings/AdminCenter/Index.tsx:172 msgid "Project Codes" msgstr "Kódy projektu" -#: lib/enums/ModelInformation.tsx:147 +#: lib/enums/ModelInformation.tsx:159 #: src/components/wizards/OrderPartsWizard.tsx:338 #: src/pages/part/pricing/PurchaseHistoryPanel.tsx:33 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:550 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:555 #: src/pages/stock/StockDetail.tsx:352 #: src/tables/part/PartPurchaseOrdersTable.tsx:32 #: src/tables/stock/StockItemTable.tsx:239 @@ -312,117 +338,117 @@ msgstr "Kódy projektu" msgid "Purchase Order" msgstr "Objednávka" -#: lib/enums/ModelInformation.tsx:148 +#: lib/enums/ModelInformation.tsx:160 #: lib/enums/Roles.tsx:39 #: src/defaults/actions.tsx:104 -#: src/pages/Index/Settings/SystemSettings.tsx:283 -#: src/pages/company/CompanyDetail.tsx:203 -#: src/pages/company/SupplierPartDetail.tsx:266 -#: src/pages/part/PartDetail.tsx:875 -#: src/pages/purchasing/PurchasingIndex.tsx:60 +#: src/pages/Index/Settings/SystemSettings.tsx:289 +#: src/pages/company/CompanyDetail.tsx:204 +#: src/pages/company/SupplierPartDetail.tsx:267 +#: src/pages/part/PartDetail.tsx:864 +#: src/pages/purchasing/PurchasingIndex.tsx:66 msgid "Purchase Orders" msgstr "Objednávky" -#: lib/enums/ModelInformation.tsx:156 +#: lib/enums/ModelInformation.tsx:169 msgid "Purchase Order Line" msgstr "Řádek objednávky" -#: lib/enums/ModelInformation.tsx:157 +#: lib/enums/ModelInformation.tsx:170 msgid "Purchase Order Lines" msgstr "Řádky objednávky" -#: lib/enums/ModelInformation.tsx:162 -#: src/pages/build/BuildDetail.tsx:289 +#: lib/enums/ModelInformation.tsx:175 +#: src/pages/build/BuildDetail.tsx:290 #: src/pages/part/pricing/SaleHistoryPanel.tsx:24 -#: src/pages/sales/SalesOrderDetail.tsx:614 -#: src/pages/sales/SalesOrderShipmentDetail.tsx:105 -#: src/pages/sales/SalesOrderShipmentDetail.tsx:478 +#: src/pages/sales/SalesOrderDetail.tsx:619 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:103 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:446 #: src/pages/stock/StockDetail.tsx:361 #: src/tables/part/PartSalesAllocationsTable.tsx:41 #: src/tables/sales/SalesOrderAllocationTable.tsx:110 -#: src/tables/sales/SalesOrderShipmentTable.tsx:122 +#: src/tables/sales/SalesOrderShipmentTable.tsx:143 #: src/tables/stock/StockTrackingTable.tsx:131 msgid "Sales Order" msgstr "Prodejní objednávka" -#: lib/enums/ModelInformation.tsx:163 +#: lib/enums/ModelInformation.tsx:176 #: lib/enums/Roles.tsx:43 #: src/defaults/actions.tsx:114 -#: src/pages/Index/Settings/SystemSettings.tsx:299 -#: src/pages/company/CompanyDetail.tsx:223 -#: src/pages/part/PartDetail.tsx:887 -#: src/pages/sales/SalesIndex.tsx:84 +#: src/pages/Index/Settings/SystemSettings.tsx:305 +#: src/pages/company/CompanyDetail.tsx:224 +#: src/pages/part/PartDetail.tsx:876 +#: src/pages/sales/SalesIndex.tsx:53 msgid "Sales Orders" msgstr "Prodejní objednávky" -#: lib/enums/ModelInformation.tsx:171 -#: src/pages/sales/SalesOrderShipmentDetail.tsx:477 +#: lib/enums/ModelInformation.tsx:185 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:445 msgid "Sales Order Shipment" msgstr "" -#: lib/enums/ModelInformation.tsx:172 +#: lib/enums/ModelInformation.tsx:186 msgid "Sales Order Shipments" msgstr "Nastavení prodejních objednávek" -#: lib/enums/ModelInformation.tsx:179 -#: src/pages/sales/ReturnOrderDetail.tsx:549 +#: lib/enums/ModelInformation.tsx:194 +#: src/pages/sales/ReturnOrderDetail.tsx:554 #: src/tables/stock/StockTrackingTable.tsx:142 msgid "Return Order" msgstr "Vrácená objednávka" -#: lib/enums/ModelInformation.tsx:180 +#: lib/enums/ModelInformation.tsx:195 #: lib/enums/Roles.tsx:41 #: src/defaults/actions.tsx:125 -#: src/pages/Index/Settings/SystemSettings.tsx:316 -#: src/pages/company/CompanyDetail.tsx:230 -#: src/pages/part/PartDetail.tsx:894 -#: src/pages/sales/SalesIndex.tsx:117 +#: src/pages/Index/Settings/SystemSettings.tsx:322 +#: src/pages/company/CompanyDetail.tsx:231 +#: src/pages/part/PartDetail.tsx:883 +#: src/pages/sales/SalesIndex.tsx:99 msgid "Return Orders" msgstr "Vrácené objednávky" -#: lib/enums/ModelInformation.tsx:188 +#: lib/enums/ModelInformation.tsx:204 msgid "Return Order Line Item" msgstr "Řádek vrácené objednávky" -#: lib/enums/ModelInformation.tsx:189 +#: lib/enums/ModelInformation.tsx:205 msgid "Return Order Line Items" msgstr "Řádek vrácených objednávek" -#: lib/enums/ModelInformation.tsx:194 +#: lib/enums/ModelInformation.tsx:210 #: src/tables/company/AddressTable.tsx:52 msgid "Address" msgstr "Adresa" -#: lib/enums/ModelInformation.tsx:195 -#: src/pages/company/CompanyDetail.tsx:264 +#: lib/enums/ModelInformation.tsx:211 +#: src/pages/company/CompanyDetail.tsx:265 msgid "Addresses" msgstr "Adresy" -#: lib/enums/ModelInformation.tsx:201 +#: lib/enums/ModelInformation.tsx:217 #: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:89 #: src/pages/core/UserDetail.tsx:135 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:229 -#: src/pages/sales/ReturnOrderDetail.tsx:207 -#: src/pages/sales/SalesOrderDetail.tsx:200 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:230 +#: src/pages/sales/ReturnOrderDetail.tsx:208 +#: src/pages/sales/SalesOrderDetail.tsx:201 msgid "Contact" msgstr "Kontakt" -#: lib/enums/ModelInformation.tsx:202 -#: src/pages/company/CompanyDetail.tsx:258 +#: lib/enums/ModelInformation.tsx:218 +#: src/pages/company/CompanyDetail.tsx:259 #: src/pages/core/CoreIndex.tsx:33 msgid "Contacts" msgstr "Kontakty" -#: lib/enums/ModelInformation.tsx:208 +#: lib/enums/ModelInformation.tsx:224 #: src/tables/ColumnRenderers.tsx:444 msgid "Owner" msgstr "Správce" -#: lib/enums/ModelInformation.tsx:209 +#: lib/enums/ModelInformation.tsx:225 msgid "Owners" msgstr "Správci" -#: lib/enums/ModelInformation.tsx:215 +#: lib/enums/ModelInformation.tsx:231 #: src/pages/Auth/ChangePassword.tsx:36 #: src/pages/core/UserDetail.tsx:220 #: src/tables/ColumnRenderers.tsx:395 @@ -437,7 +463,7 @@ msgstr "Správci" msgid "User" msgstr "Uživatel" -#: lib/enums/ModelInformation.tsx:216 +#: lib/enums/ModelInformation.tsx:232 #: src/components/nav/NavigationDrawer.tsx:105 #: src/pages/Index/Settings/AdminCenter/UserManagementPanel.tsx:15 #: src/pages/core/CoreIndex.tsx:21 @@ -445,12 +471,12 @@ msgstr "Uživatel" msgid "Users" msgstr "Uživatelé" -#: lib/enums/ModelInformation.tsx:222 +#: lib/enums/ModelInformation.tsx:238 #: src/pages/core/GroupDetail.tsx:78 msgid "Group" msgstr "Skupina" -#: lib/enums/ModelInformation.tsx:223 +#: lib/enums/ModelInformation.tsx:239 #: src/components/nav/NavigationDrawer.tsx:111 #: src/pages/Index/Settings/AdminCenter/UserManagementPanel.tsx:23 #: src/pages/core/CoreIndex.tsx:27 @@ -460,64 +486,64 @@ msgstr "Skupina" msgid "Groups" msgstr "Skupiny" -#: lib/enums/ModelInformation.tsx:230 +#: lib/enums/ModelInformation.tsx:246 msgid "Import Session" msgstr "Importovat relaci" -#: lib/enums/ModelInformation.tsx:231 +#: lib/enums/ModelInformation.tsx:247 msgid "Import Sessions" msgstr "Importovat relace" -#: lib/enums/ModelInformation.tsx:238 +#: lib/enums/ModelInformation.tsx:254 msgid "Label Template" msgstr "Šablona štítku" -#: lib/enums/ModelInformation.tsx:239 +#: lib/enums/ModelInformation.tsx:255 #: src/pages/Index/Settings/AdminCenter/Index.tsx:209 msgid "Label Templates" msgstr "Šablony štítků" -#: lib/enums/ModelInformation.tsx:246 +#: lib/enums/ModelInformation.tsx:262 msgid "Report Template" msgstr "Šablona hlášení" -#: lib/enums/ModelInformation.tsx:247 +#: lib/enums/ModelInformation.tsx:263 #: src/pages/Index/Settings/AdminCenter/Index.tsx:215 msgid "Report Templates" msgstr "Šablony hlášení" -#: lib/enums/ModelInformation.tsx:254 +#: lib/enums/ModelInformation.tsx:270 #: src/components/plugins/PluginDrawer.tsx:145 msgid "Plugin Configuration" msgstr "Nastavení pluginu" -#: lib/enums/ModelInformation.tsx:255 +#: lib/enums/ModelInformation.tsx:271 msgid "Plugin Configurations" msgstr "Nastavení přídavných modulů" -#: lib/enums/ModelInformation.tsx:262 +#: lib/enums/ModelInformation.tsx:278 msgid "Content Type" msgstr "Typ obsahu" -#: lib/enums/ModelInformation.tsx:263 +#: lib/enums/ModelInformation.tsx:279 msgid "Content Types" msgstr "Typy obsahu" -#: lib/enums/ModelInformation.tsx:268 +#: lib/enums/ModelInformation.tsx:284 msgid "Selection List" msgstr "Výběrové pole" -#: lib/enums/ModelInformation.tsx:269 -#: src/pages/Index/Settings/AdminCenter/PartParameterPanel.tsx:21 +#: lib/enums/ModelInformation.tsx:285 +#: src/pages/Index/Settings/AdminCenter/ParameterPanel.tsx:21 msgid "Selection Lists" msgstr "Výběrová pole" -#: lib/enums/ModelInformation.tsx:275 +#: lib/enums/ModelInformation.tsx:291 #: src/components/barcodes/BarcodeInput.tsx:114 #: src/components/dashboard/DashboardLayout.tsx:281 #: src/components/editors/NotesEditor.tsx:74 #: src/components/editors/TemplateEditor/TemplateEditor.tsx:158 -#: src/components/forms/fields/ApiFormField.tsx:273 +#: src/components/forms/fields/ApiFormField.tsx:237 #: src/components/forms/fields/TableField.tsx:45 #: src/components/importer/ImportDataSelector.tsx:192 #: src/components/importer/ImporterColumnSelector.tsx:234 @@ -528,7 +554,7 @@ msgstr "Výběrová pole" #: src/components/nav/SearchDrawer.tsx:572 #: src/components/settings/SettingList.tsx:139 #: src/components/wizards/ImportPartWizard.tsx:574 -#: src/components/wizards/ImportPartWizard.tsx:718 +#: src/components/wizards/ImportPartWizard.tsx:719 #: src/forms/BomForms.tsx:69 #: src/functions/auth.tsx:643 #: src/pages/ErrorPage.tsx:11 @@ -547,9 +573,9 @@ msgstr "Výběrová pole" msgid "Error" msgstr "Chyba" -#: lib/enums/ModelInformation.tsx:276 +#: lib/enums/ModelInformation.tsx:292 #: src/tables/machine/MachineListTable.tsx:402 -#: src/tables/machine/MachineTypeTable.tsx:299 +#: src/tables/machine/MachineTypeTable.tsx:297 msgid "Errors" msgstr "Chyby" @@ -559,10 +585,10 @@ msgstr "Administrace" #: lib/enums/Roles.tsx:33 #: src/defaults/actions.tsx:135 -#: src/pages/Index/Settings/SystemSettings.tsx:264 -#: src/pages/build/BuildIndex.tsx:75 -#: src/pages/part/PartDetail.tsx:904 -#: src/pages/sales/SalesOrderDetail.tsx:421 +#: src/pages/Index/Settings/SystemSettings.tsx:270 +#: src/pages/build/BuildIndex.tsx:67 +#: src/pages/part/PartDetail.tsx:893 +#: src/pages/sales/SalesOrderDetail.tsx:422 msgid "Build Orders" msgstr "Vytvořené objednávky" @@ -639,39 +665,39 @@ msgstr "Skenovat nebo zadávat data čárového kódu" msgid "Enter barcode data" msgstr "Zadat data čárového kódu" -#: src/components/barcodes/BarcodeScanDialog.tsx:49 -#: src/components/buttons/ScanButton.tsx:15 +#: src/components/barcodes/BarcodeScanDialog.tsx:56 +#: src/components/buttons/ScanButton.tsx:27 #: src/components/nav/NavigationDrawer.tsx:122 -#: src/forms/PurchaseOrderForms.tsx:457 -#: src/forms/PurchaseOrderForms.tsx:563 +#: src/forms/PurchaseOrderForms.tsx:509 +#: src/forms/PurchaseOrderForms.tsx:615 msgid "Scan Barcode" msgstr "Skenovat čárový kód" -#: src/components/barcodes/BarcodeScanDialog.tsx:105 +#: src/components/barcodes/BarcodeScanDialog.tsx:121 msgid "No matching item found" msgstr "Nebyly nalezeny žádné odpovídající položky" -#: src/components/barcodes/BarcodeScanDialog.tsx:134 +#: src/components/barcodes/BarcodeScanDialog.tsx:150 msgid "Barcode does not match the expected model type" msgstr "Čárkový kód neodpovídá očekávanému typu modelu" -#: src/components/barcodes/BarcodeScanDialog.tsx:145 +#: src/components/barcodes/BarcodeScanDialog.tsx:161 #: src/components/editors/NotesEditor.tsx:84 #: src/components/editors/NotesEditor.tsx:118 -#: src/components/forms/ApiForm.tsx:465 +#: src/components/forms/ApiForm.tsx:484 #: src/components/wizards/ImportPartWizard.tsx:566 -#: src/components/wizards/ImportPartWizard.tsx:690 +#: src/components/wizards/ImportPartWizard.tsx:691 #: src/pages/Index/Settings/AdminCenter/CurrencyManagementPanel.tsx:45 #: src/tables/bom/BomTable.tsx:548 #: src/tables/settings/PendingTasksTable.tsx:68 msgid "Success" msgstr "Dokončeno" -#: src/components/barcodes/BarcodeScanDialog.tsx:151 +#: src/components/barcodes/BarcodeScanDialog.tsx:167 msgid "Failed to handle barcode" msgstr "Skenování čárového kódu se nezdařilo" -#: src/components/barcodes/BarcodeScanDialog.tsx:167 +#: src/components/barcodes/BarcodeScanDialog.tsx:183 #: src/pages/Index/Scan.tsx:129 msgid "Failed to scan barcode" msgstr "Skenování čárového kódu se nezdařilo" @@ -714,10 +740,10 @@ msgstr "Nepodařilo se propojit čárový kód" #: src/components/barcodes/QRCode.tsx:179 #: src/pages/part/PartDetail.tsx:521 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:222 -#: src/pages/sales/ReturnOrderDetail.tsx:188 -#: src/pages/sales/SalesOrderDetail.tsx:181 -#: src/pages/sales/SalesOrderShipmentDetail.tsx:122 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:223 +#: src/pages/sales/ReturnOrderDetail.tsx:189 +#: src/pages/sales/SalesOrderDetail.tsx:182 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:120 #: src/pages/stock/StockDetail.tsx:186 msgid "Link" msgstr "Odkaz" @@ -728,7 +754,7 @@ msgstr "Tímto odstraníte odkaz na přidružený čárový kód" #: src/components/barcodes/QRCode.tsx:205 #: src/components/items/ActionDropdown.tsx:192 -#: src/forms/PurchaseOrderForms.tsx:554 +#: src/forms/PurchaseOrderForms.tsx:606 msgid "Unlink Barcode" msgstr "Odstranit čárový kód" @@ -829,14 +855,14 @@ msgstr "Budete přesměrováni na poskytovatele pro další akce." #~ msgid "Scan QR code" #~ msgstr "Scan QR code" -#: src/components/buttons/ScanButton.tsx:19 -msgid "Open Barcode Scanner" -msgstr "Otevřít skener čárového kódu" - #: src/components/buttons/ScanButton.tsx:20 #~ msgid "Open QR code scanner" #~ msgstr "Open QR code scanner" +#: src/components/buttons/ScanButton.tsx:32 +msgid "Open Barcode Scanner" +msgstr "Otevřít skener čárového kódu" + #: src/components/buttons/SpotlightButton.tsx:12 msgid "Open spotlight" msgstr "Otevřít spotlight" @@ -1059,7 +1085,7 @@ msgid "Show the number of sales orders which are assigned to you" msgstr "Zobrazit počet objednávek, které vám jsou přiděleny" #: src/components/dashboard/DashboardWidgetLibrary.tsx:129 -#: src/pages/sales/SalesIndex.tsx:105 +#: src/pages/sales/SalesIndex.tsx:87 msgid "Pending Shipments" msgstr "Čekající zásilky" @@ -1210,12 +1236,18 @@ msgid "Remove the associated image from this item?" msgstr "Odstranit přidružený obrázek z této položky?" #: src/components/details/DetailsImage.tsx:83 -#: src/forms/StockForms.tsx:888 +#: src/forms/StockForms.tsx:895 #: src/pages/Index/Settings/AccountSettings/MFASettings.tsx:324 #: src/pages/Index/Settings/AccountSettings/MFASettings.tsx:415 #: src/pages/Index/Settings/AccountSettings/MFASettings.tsx:884 #: src/pages/Index/Settings/AccountSettings/MFASettings.tsx:903 #: src/pages/Index/Settings/AccountSettings/SecurityContent.tsx:254 +#: src/tables/build/BuildAllocatedStockTable.tsx:178 +#: src/tables/build/BuildAllocatedStockTable.tsx:258 +#: src/tables/build/BuildLineTable.tsx:111 +#: src/tables/build/BuildLineTable.tsx:665 +#: src/tables/sales/SalesOrderAllocationTable.tsx:224 +#: src/tables/sales/SalesOrderAllocationTable.tsx:247 msgid "Remove" msgstr "Odstranit" @@ -1241,12 +1273,12 @@ msgid "Upload Error" msgstr "Chyba nahrávání" #: src/components/details/DetailsImage.tsx:250 -#: src/components/forms/fields/TextField.tsx:65 +#: src/components/forms/fields/AutoFillRightSection.tsx:34 msgid "Clear" msgstr "Vymazat" #: src/components/details/DetailsImage.tsx:256 -#: src/components/forms/ApiForm.tsx:677 +#: src/components/forms/ApiForm.tsx:696 #: src/contexts/ThemeContext.tsx:44 #: src/pages/Index/Settings/AccountSettings/MFASettings.tsx:149 #: src/pages/Index/Settings/AccountSettings/MFASettings.tsx:568 @@ -1499,8 +1531,8 @@ msgstr "Chyba serveru" msgid "A server error occurred" msgstr "Došlo k chybě serveru" -#: src/components/forms/ApiForm.tsx:103 -#: src/components/forms/ApiForm.tsx:594 +#: src/components/forms/ApiForm.tsx:107 +#: src/components/forms/ApiForm.tsx:613 msgid "Form Error" msgstr "Chyba formuláře" @@ -1508,11 +1540,11 @@ msgstr "Chyba formuláře" #~ msgid "Form Errors Exist" #~ msgstr "Form Errors Exist" -#: src/components/forms/ApiForm.tsx:604 +#: src/components/forms/ApiForm.tsx:623 msgid "Errors exist for one or more form fields" msgstr "Existují chyby pro jedno nebo více polí formuláře" -#: src/components/forms/ApiForm.tsx:715 +#: src/components/forms/ApiForm.tsx:734 #: src/hooks/UseForm.tsx:133 #: src/tables/plugin/PluginListTable.tsx:204 msgid "Update" @@ -1698,15 +1730,14 @@ msgstr "Server" #: src/components/forms/InstanceOptions.tsx:124 #: src/components/plugins/PluginDrawer.tsx:68 #: src/pages/Index/Settings/AdminCenter/UnitManagementPanel.tsx:19 -#: src/pages/part/CategoryDetail.tsx:88 +#: src/pages/part/CategoryDetail.tsx:91 #: src/pages/part/PartDetail.tsx:446 #: src/pages/stock/LocationDetail.tsx:82 #: src/tables/machine/MachineTypeTable.tsx:67 -#: src/tables/machine/MachineTypeTable.tsx:151 -#: src/tables/machine/MachineTypeTable.tsx:254 -#: src/tables/machine/MachineTypeTable.tsx:357 +#: src/tables/machine/MachineTypeTable.tsx:149 +#: src/tables/machine/MachineTypeTable.tsx:252 +#: src/tables/machine/MachineTypeTable.tsx:355 #: src/tables/plugin/PluginErrorTable.tsx:33 -#: src/tables/purchasing/ManufacturerPartParameterTable.tsx:36 #: src/tables/settings/ApiTokenTable.tsx:57 #: src/tables/settings/GroupTable.tsx:95 #: src/tables/settings/GroupTable.tsx:148 @@ -1769,7 +1800,7 @@ msgstr "Uložit výběr hostitele" #~ msgstr "State: <0>worker ({0}), <1>plugins{1}" #: src/components/forms/InstanceOptions.tsx:118 -#: src/pages/Index/Settings/SystemSettings.tsx:45 +#: src/pages/Index/Settings/SystemSettings.tsx:46 msgid "Server" msgstr "Server" @@ -1793,6 +1824,8 @@ msgid "Plugins" msgstr "Pluginy" #: src/components/forms/InstanceOptions.tsx:143 +#: src/tables/general/ParameterTemplateTable.tsx:153 +#: src/tables/general/ParameterTemplateTable.tsx:188 #: src/tables/part/PartTestTemplateTable.tsx:117 #: src/tables/settings/TemplateTable.tsx:251 #: src/tables/settings/TemplateTable.tsx:362 @@ -1817,10 +1850,14 @@ msgstr "Zastaveno" msgid "Running" msgstr "Spuštěno" -#: src/components/forms/fields/ApiFormField.tsx:233 +#: src/components/forms/fields/ApiFormField.tsx:197 msgid "Select file to upload" msgstr "Vyberte soubor k nahrání" +#: src/components/forms/fields/AutoFillRightSection.tsx:47 +msgid "Accept suggested value" +msgstr "Přijmout doporučenou hodnotu" + #: src/components/forms/fields/DateField.tsx:76 msgid "Select date" msgstr "Vyberte datum" @@ -1853,13 +1890,13 @@ msgstr "Vyberte balení" msgid "{0} icons" msgstr "Ikony {0}" -#: src/components/forms/fields/RelatedModelField.tsx:409 +#: src/components/forms/fields/RelatedModelField.tsx:480 #: src/components/modals/AboutInvenTreeModal.tsx:96 #: src/pages/Index/Settings/AccountSettings/SecurityContent.tsx:383 msgid "Loading" msgstr "Načítání" -#: src/components/forms/fields/RelatedModelField.tsx:411 +#: src/components/forms/fields/RelatedModelField.tsx:482 msgid "No results found" msgstr "Nebyly nalezeny žádné výsledky" @@ -1875,10 +1912,6 @@ msgstr "Nejsou žádné záznamy" msgid "Add new row" msgstr "Přidat nový řádek" -#: src/components/forms/fields/TextField.tsx:82 -msgid "Accept suggested value" -msgstr "Přijmout doporučenou hodnotu" - #: src/components/images/DetailsImage.tsx:252 #~ msgid "Select image" #~ msgstr "Select image" @@ -2036,7 +2069,7 @@ msgstr "Data byla úspěšně importována" #: src/components/importer/ImporterDrawer.tsx:109 #: src/components/modals/AboutInvenTreeModal.tsx:205 #: src/components/modals/ServerInfoModal.tsx:134 -#: src/components/wizards/ImportPartWizard.tsx:772 +#: src/components/wizards/ImportPartWizard.tsx:773 #: src/forms/BomForms.tsx:132 #: src/pages/Index/Settings/AccountSettings/MFASettings.tsx:685 msgid "Close" @@ -2199,7 +2232,7 @@ msgid "Change" msgstr "Změnit" #: src/components/items/RoleTable.tsx:150 -#: src/forms/StockForms.tsx:927 +#: src/forms/StockForms.tsx:941 #: src/tables/stock/StockItemTestResultTable.tsx:367 msgid "Add" msgstr "Přidat" @@ -2222,11 +2255,11 @@ msgstr "Žádné položky" #: src/components/items/TransferList.tsx:161 #: src/components/render/Stock.tsx:102 -#: src/pages/part/PartDetail.tsx:994 +#: src/pages/part/PartDetail.tsx:1009 #: src/pages/stock/StockDetail.tsx:265 #: src/pages/stock/StockDetail.tsx:942 -#: src/tables/build/BuildAllocatedStockTable.tsx:135 -#: src/tables/build/BuildLineTable.tsx:192 +#: src/tables/build/BuildAllocatedStockTable.tsx:132 +#: src/tables/build/BuildLineTable.tsx:193 #: src/tables/part/PartTable.tsx:137 #: src/tables/stock/StockItemTable.tsx:182 #: src/tables/stock/StockItemTable.tsx:343 @@ -2373,7 +2406,7 @@ msgid "Database" msgstr "Databáze" #: src/components/modals/ServerInfoModal.tsx:49 -#: src/components/nav/Alerts.tsx:118 +#: src/components/nav/Alerts.tsx:120 msgid "Debug Mode" msgstr "Režim ladění" @@ -2414,7 +2447,7 @@ msgid "Issues detected" msgstr "Zjištěn problém" #: src/components/modals/ServerInfoModal.tsx:102 -#: src/components/nav/Alerts.tsx:125 +#: src/components/nav/Alerts.tsx:127 msgid "Background Worker" msgstr "Pracovník na pozadí" @@ -2436,7 +2469,7 @@ msgstr "Nastavení e-mailu" #~ msgstr "Email settings not configured" #: src/components/modals/ServerInfoModal.tsx:120 -#: src/components/nav/Alerts.tsx:141 +#: src/components/nav/Alerts.tsx:143 msgid "Email settings not configured." msgstr "Email není nakonfigurován." @@ -2444,43 +2477,47 @@ msgstr "Email není nakonfigurován." msgid "Alerts" msgstr "Výstrahy" -#: src/components/nav/Alerts.tsx:120 +#: src/components/nav/Alerts.tsx:97 +msgid "No issues detected" +msgstr "Nebyly zjištěny žádné problémy" + +#: src/components/nav/Alerts.tsx:122 msgid "The server is running in debug mode." msgstr "Server běží v režimu ladění." -#: src/components/nav/Alerts.tsx:127 +#: src/components/nav/Alerts.tsx:129 msgid "The background worker process is not running." msgstr "Pracovník na pozadí není spuštěn." -#: src/components/nav/Alerts.tsx:132 +#: src/components/nav/Alerts.tsx:134 msgid "Server Restart" msgstr "Restartovat server" -#: src/components/nav/Alerts.tsx:134 +#: src/components/nav/Alerts.tsx:136 msgid "The server requires a restart to apply changes." msgstr "Server vyžaduje restartování pro aplikaci změn." -#: src/components/nav/Alerts.tsx:139 +#: src/components/nav/Alerts.tsx:141 msgid "Email settings" msgstr "Nastavení e-mailů" -#: src/components/nav/Alerts.tsx:146 +#: src/components/nav/Alerts.tsx:148 msgid "Database Migrations" msgstr "Migrace databáze" -#: src/components/nav/Alerts.tsx:148 +#: src/components/nav/Alerts.tsx:150 msgid "There are pending database migrations." msgstr "Některé databáze čekají na migraci." -#: src/components/nav/Alerts.tsx:163 +#: src/components/nav/Alerts.tsx:165 msgid "Learn more about {code}" msgstr "Další informace o {code}" #: src/components/nav/Header.tsx:188 #: src/components/nav/NavigationDrawer.tsx:134 #: src/components/nav/NotificationDrawer.tsx:181 -#: src/pages/Index/Settings/SystemSettings.tsx:121 -#: src/pages/Index/Settings/UserSettings.tsx:106 +#: src/pages/Index/Settings/SystemSettings.tsx:122 +#: src/pages/Index/Settings/UserSettings.tsx:107 #: src/pages/Notifications.tsx:45 #: src/pages/Notifications.tsx:130 msgid "Notifications" @@ -2511,8 +2548,8 @@ msgstr "Nastavení" #: src/components/nav/NavigationDrawer.tsx:140 #: src/components/nav/SettingsHeader.tsx:40 #: src/defaults/actions.tsx:92 -#: src/pages/Index/Settings/UserSettings.tsx:141 -#: src/pages/Index/Settings/UserSettings.tsx:145 +#: src/pages/Index/Settings/UserSettings.tsx:142 +#: src/pages/Index/Settings/UserSettings.tsx:146 msgid "User Settings" msgstr "Uživatelská nastavení" @@ -2529,8 +2566,8 @@ msgstr "Uživatelská nastavení" #: src/components/nav/NavigationDrawer.tsx:146 #: src/components/nav/SettingsHeader.tsx:41 #: src/defaults/actions.tsx:144 -#: src/pages/Index/Settings/SystemSettings.tsx:348 -#: src/pages/Index/Settings/SystemSettings.tsx:353 +#: src/pages/Index/Settings/SystemSettings.tsx:354 +#: src/pages/Index/Settings/SystemSettings.tsx:359 msgid "System Settings" msgstr "Nastavení systému" @@ -2577,11 +2614,11 @@ msgstr "Odhlásit" #: src/components/nav/NavigationDrawer.tsx:77 #: src/components/render/Part.tsx:36 -#: src/components/wizards/ImportPartWizard.tsx:807 +#: src/components/wizards/ImportPartWizard.tsx:808 #: src/defaults/links.tsx:42 #: src/forms/StockForms.tsx:794 -#: src/pages/Index/Settings/SystemSettings.tsx:224 -#: src/pages/part/PartDetail.tsx:804 +#: src/pages/Index/Settings/SystemSettings.tsx:230 +#: src/pages/part/PartDetail.tsx:793 #: src/pages/stock/LocationDetail.tsx:390 #: src/pages/stock/LocationDetail.tsx:420 #: src/pages/stock/StockDetail.tsx:642 @@ -2591,29 +2628,29 @@ msgstr "Zásoby" #: src/components/nav/NavigationDrawer.tsx:84 #: src/defaults/links.tsx:48 -#: src/pages/build/BuildDetail.tsx:748 -#: src/pages/build/BuildIndex.tsx:102 +#: src/pages/build/BuildDetail.tsx:753 +#: src/pages/build/BuildIndex.tsx:101 msgid "Manufacturing" msgstr "Výroba" #: src/components/nav/NavigationDrawer.tsx:91 #: src/defaults/links.tsx:54 #: src/pages/company/ManufacturerDetail.tsx:9 -#: src/pages/company/ManufacturerPartDetail.tsx:276 +#: src/pages/company/ManufacturerPartDetail.tsx:267 #: src/pages/company/SupplierDetail.tsx:9 -#: src/pages/company/SupplierPartDetail.tsx:360 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:553 -#: src/pages/purchasing/PurchasingIndex.tsx:122 +#: src/pages/company/SupplierPartDetail.tsx:365 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:558 +#: src/pages/purchasing/PurchasingIndex.tsx:212 msgid "Purchasing" msgstr "Nákup" #: src/components/nav/NavigationDrawer.tsx:98 #: src/defaults/links.tsx:60 #: src/pages/company/CustomerDetail.tsx:9 -#: src/pages/sales/ReturnOrderDetail.tsx:554 -#: src/pages/sales/SalesIndex.tsx:153 -#: src/pages/sales/SalesOrderDetail.tsx:619 -#: src/pages/sales/SalesOrderShipmentDetail.tsx:480 +#: src/pages/sales/ReturnOrderDetail.tsx:559 +#: src/pages/sales/SalesIndex.tsx:168 +#: src/pages/sales/SalesOrderDetail.tsx:624 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:448 msgid "Sales" msgstr "Prodej" @@ -2667,21 +2704,21 @@ msgid "Remove search group" msgstr "Odstranit skupinu vyhledávání" #: src/components/nav/SearchDrawer.tsx:288 -#: src/pages/company/ManufacturerPartDetail.tsx:192 -#: src/pages/part/PartDetail.tsx:862 +#: src/pages/company/ManufacturerPartDetail.tsx:179 +#: src/pages/part/PartDetail.tsx:851 #: src/pages/part/PartSupplierDetail.tsx:15 -#: src/pages/purchasing/PurchasingIndex.tsx:81 +#: src/pages/purchasing/PurchasingIndex.tsx:100 msgid "Suppliers" msgstr "Dodavatelé" #: src/components/nav/SearchDrawer.tsx:298 #: src/pages/part/PartSupplierDetail.tsx:23 -#: src/pages/purchasing/PurchasingIndex.tsx:98 +#: src/pages/purchasing/PurchasingIndex.tsx:149 msgid "Manufacturers" msgstr "Výrobci" #: src/components/nav/SearchDrawer.tsx:308 -#: src/pages/sales/SalesIndex.tsx:138 +#: src/pages/sales/SalesIndex.tsx:133 msgid "Customers" msgstr "Zákazníci" @@ -2772,21 +2809,21 @@ msgstr "Informace o pluginu" #: src/components/plugins/PluginDrawer.tsx:73 #: src/forms/selectionListFields.tsx:102 -#: src/pages/build/BuildDetail.tsx:250 -#: src/pages/company/CompanyDetail.tsx:93 -#: src/pages/company/ManufacturerPartDetail.tsx:93 -#: src/pages/company/ManufacturerPartDetail.tsx:120 -#: src/pages/company/SupplierPartDetail.tsx:145 -#: src/pages/part/CategoryDetail.tsx:108 +#: src/pages/build/BuildDetail.tsx:251 +#: src/pages/company/CompanyDetail.tsx:94 +#: src/pages/company/ManufacturerPartDetail.tsx:92 +#: src/pages/company/ManufacturerPartDetail.tsx:119 +#: src/pages/company/SupplierPartDetail.tsx:146 +#: src/pages/part/CategoryDetail.tsx:111 #: src/pages/part/PartDetail.tsx:460 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:162 -#: src/pages/sales/ReturnOrderDetail.tsx:129 -#: src/pages/sales/SalesOrderDetail.tsx:119 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:163 +#: src/pages/sales/ReturnOrderDetail.tsx:130 +#: src/pages/sales/SalesOrderDetail.tsx:120 #: src/pages/stock/LocationDetail.tsx:102 #: src/tables/ColumnRenderers.tsx:278 -#: src/tables/build/BuildAllocatedStockTable.tsx:91 -#: src/tables/machine/MachineTypeTable.tsx:161 -#: src/tables/machine/MachineTypeTable.tsx:257 +#: src/tables/build/BuildAllocatedStockTable.tsx:88 +#: src/tables/machine/MachineTypeTable.tsx:159 +#: src/tables/machine/MachineTypeTable.tsx:255 #: src/tables/plugin/PluginListTable.tsx:110 msgid "Description" msgstr "Popis" @@ -2814,7 +2851,7 @@ msgstr "Datum" #: src/tables/company/CompanyTable.tsx:91 #: src/tables/machine/MachineListTable.tsx:384 #: src/tables/machine/MachineListTable.tsx:799 -#: src/tables/part/ParametricPartTable.tsx:354 +#: src/tables/part/ParametricPartTable.tsx:19 #: src/tables/part/PartTable.tsx:197 #: src/tables/part/PartVariantTable.tsx:15 #: src/tables/plugin/PluginListTable.tsx:96 @@ -2836,8 +2873,8 @@ msgid "Installation Path" msgstr "Instalační cesta" #: src/components/plugins/PluginDrawer.tsx:116 -#: src/tables/machine/MachineTypeTable.tsx:184 -#: src/tables/machine/MachineTypeTable.tsx:293 +#: src/tables/machine/MachineTypeTable.tsx:182 +#: src/tables/machine/MachineTypeTable.tsx:291 #: src/tables/plugin/PluginListTable.tsx:101 #: src/tables/plugin/PluginListTable.tsx:417 msgid "Builtin" @@ -2849,8 +2886,8 @@ msgstr "Balík" #: src/components/plugins/PluginDrawer.tsx:133 #: src/pages/Index/Settings/AdminCenter/PluginManagementPanel.tsx:55 -#: src/pages/Index/Settings/SystemSettings.tsx:331 -#: src/pages/Index/Settings/UserSettings.tsx:128 +#: src/pages/Index/Settings/SystemSettings.tsx:337 +#: src/pages/Index/Settings/UserSettings.tsx:129 msgid "Plugin Settings" msgstr "Nastavení pluginů" @@ -2911,7 +2948,7 @@ msgstr "Při načítání obsahu pluginu došlo k chybě" #~ msgid "Unknown model: {model}" #~ msgstr "Unknown model: {model}" -#: src/components/render/Instance.tsx:249 +#: src/components/render/Instance.tsx:247 msgid "Unknown model: {model_name}" msgstr "Neznámý model: {model_name}" @@ -2939,10 +2976,10 @@ msgstr "Doprava" #: src/components/render/Part.tsx:28 #: src/components/render/Plugin.tsx:17 #: src/components/render/User.tsx:37 -#: src/pages/company/CompanyDetail.tsx:323 -#: src/pages/company/SupplierPartDetail.tsx:373 +#: src/pages/company/CompanyDetail.tsx:328 +#: src/pages/company/SupplierPartDetail.tsx:378 #: src/pages/core/UserDetail.tsx:211 -#: src/pages/part/PartDetail.tsx:1027 +#: src/pages/part/PartDetail.tsx:1048 #: src/tables/ColumnRenderers.tsx:410 msgid "Inactive" msgstr "Neaktivní" @@ -2962,11 +2999,11 @@ msgstr "Není skladem" #: src/components/render/Part.tsx:47 #: src/components/wizards/OrderPartsWizard.tsx:135 -#: src/pages/company/SupplierPartDetail.tsx:197 -#: src/pages/company/SupplierPartDetail.tsx:394 -#: src/pages/part/PartDetail.tsx:1015 +#: src/pages/company/SupplierPartDetail.tsx:198 +#: src/pages/company/SupplierPartDetail.tsx:399 +#: src/pages/part/PartDetail.tsx:1030 #: src/tables/bom/BomTable.tsx:444 -#: src/tables/build/BuildLineTable.tsx:222 +#: src/tables/build/BuildLineTable.tsx:223 #: src/tables/part/PartTable.tsx:108 msgid "On Order" msgstr "V objednávce" @@ -2974,9 +3011,9 @@ msgstr "V objednávce" #: src/components/render/Part.tsx:55 #: src/components/wizards/OrderPartsWizard.tsx:141 #: src/pages/part/PartDetail.tsx:587 -#: src/pages/part/PartDetail.tsx:1021 +#: src/pages/part/PartDetail.tsx:1036 #: src/pages/stock/StockDetail.tsx:925 -#: src/tables/part/PartTestResultTable.tsx:297 +#: src/tables/part/PartTestResultTable.tsx:305 #: src/tables/stock/StockItemTable.tsx:359 msgid "In Production" msgstr "Ve výrobě" @@ -2987,7 +3024,7 @@ msgid "Details" msgstr "Detaily" #: src/components/render/Part.tsx:112 -#: src/components/wizards/ImportPartWizard.tsx:806 +#: src/components/wizards/ImportPartWizard.tsx:807 #: src/pages/part/PartDetail.tsx:487 #: src/tables/ColumnRenderers.tsx:233 #: src/tables/ColumnRenderers.tsx:242 @@ -3000,16 +3037,16 @@ msgstr "Kategorie" #: src/components/render/Stock.tsx:114 #: src/components/render/Stock.tsx:132 #: src/forms/BuildForms.tsx:795 -#: src/forms/PurchaseOrderForms.tsx:595 +#: src/forms/PurchaseOrderForms.tsx:647 #: src/forms/StockForms.tsx:792 #: src/forms/StockForms.tsx:839 -#: src/forms/StockForms.tsx:885 -#: src/forms/StockForms.tsx:924 -#: src/forms/StockForms.tsx:960 -#: src/forms/StockForms.tsx:1003 -#: src/forms/StockForms.tsx:1047 -#: src/forms/StockForms.tsx:1095 -#: src/forms/StockForms.tsx:1139 +#: src/forms/StockForms.tsx:892 +#: src/forms/StockForms.tsx:938 +#: src/forms/StockForms.tsx:976 +#: src/forms/StockForms.tsx:1019 +#: src/forms/StockForms.tsx:1063 +#: src/forms/StockForms.tsx:1111 +#: src/forms/StockForms.tsx:1155 #: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:88 #: src/pages/core/UserDetail.tsx:158 #: src/pages/stock/StockDetail.tsx:298 @@ -3023,7 +3060,7 @@ msgstr "Lokace" #: src/components/render/Stock.tsx:99 #: src/pages/stock/StockDetail.tsx:198 #: src/pages/stock/StockDetail.tsx:930 -#: src/tables/build/BuildAllocatedStockTable.tsx:121 +#: src/tables/build/BuildAllocatedStockTable.tsx:118 #: src/tables/build/BuildOutputTable.tsx:107 #: src/tables/sales/SalesOrderAllocationTable.tsx:142 msgid "Serial Number" @@ -3034,9 +3071,9 @@ msgstr "Sériové číslo" #: src/forms/BuildForms.tsx:240 #: src/forms/BuildForms.tsx:634 #: src/forms/BuildForms.tsx:797 -#: src/forms/PurchaseOrderForms.tsx:801 +#: src/forms/PurchaseOrderForms.tsx:853 #: src/forms/ReturnOrderForms.tsx:243 -#: src/forms/SalesOrderForms.tsx:308 +#: src/forms/SalesOrderForms.tsx:387 #: src/forms/StockForms.tsx:841 #: src/pages/part/PartStockHistoryDetail.tsx:56 #: src/pages/part/PartStockHistoryDetail.tsx:210 @@ -3046,9 +3083,9 @@ msgstr "Sériové číslo" #: src/pages/part/pricing/PriceBreakPanel.tsx:172 #: src/pages/stock/StockDetail.tsx:258 #: src/pages/stock/StockDetail.tsx:936 -#: src/tables/build/BuildLineTable.tsx:86 +#: src/tables/build/BuildLineTable.tsx:83 #: src/tables/part/PartPurchaseOrdersTable.tsx:94 -#: src/tables/part/PartTestResultTable.tsx:269 +#: src/tables/part/PartTestResultTable.tsx:277 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:175 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:206 #: src/tables/purchasing/SupplierPriceBreakTable.tsx:69 @@ -3063,14 +3100,14 @@ msgstr "Množství" #: src/forms/BuildForms.tsx:474 #: src/forms/StockForms.tsx:793 #: src/forms/StockForms.tsx:840 -#: src/forms/StockForms.tsx:886 -#: src/forms/StockForms.tsx:925 -#: src/forms/StockForms.tsx:961 -#: src/forms/StockForms.tsx:1004 -#: src/forms/StockForms.tsx:1048 -#: src/forms/StockForms.tsx:1096 -#: src/forms/StockForms.tsx:1140 -#: src/tables/build/BuildLineTable.tsx:96 +#: src/forms/StockForms.tsx:893 +#: src/forms/StockForms.tsx:939 +#: src/forms/StockForms.tsx:977 +#: src/forms/StockForms.tsx:1020 +#: src/forms/StockForms.tsx:1064 +#: src/forms/StockForms.tsx:1112 +#: src/forms/StockForms.tsx:1156 +#: src/tables/build/BuildLineTable.tsx:93 msgid "Batch" msgstr "Dávka" @@ -3306,10 +3343,6 @@ msgstr "Bez specifikovaného nastavení" #~ msgid "Part category updated" #~ msgstr "Part category updated" -#: src/components/tables/part/PartParameterTable.tsx:41 -#~ msgid "Parameter" -#~ msgstr "Parameter" - #: src/components/tables/part/PartParameterTable.tsx:114 #~ msgid "Part parameter updated" #~ msgstr "Part parameter updated" @@ -3571,15 +3604,16 @@ msgid "Already Imported" msgstr "Již importováno" #: src/components/wizards/ImportPartWizard.tsx:205 -#: src/pages/company/CompanyDetail.tsx:136 +#: src/pages/company/CompanyDetail.tsx:137 #: src/pages/company/SupplierDetail.tsx:8 -#: src/pages/company/SupplierPartDetail.tsx:130 -#: src/pages/company/SupplierPartDetail.tsx:235 -#: src/pages/company/SupplierPartDetail.tsx:364 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:156 +#: src/pages/company/SupplierPartDetail.tsx:131 +#: src/pages/company/SupplierPartDetail.tsx:236 +#: src/pages/company/SupplierPartDetail.tsx:369 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:157 #: src/tables/Filter.tsx:360 #: src/tables/company/CompanyTable.tsx:96 #: src/tables/part/PartPurchaseOrdersTable.tsx:43 +#: src/tables/purchasing/PurchaseOrderParametricTable.tsx:34 #: src/tables/purchasing/PurchaseOrderTable.tsx:109 #: src/tables/purchasing/SupplierPriceBreakTable.tsx:40 msgid "Supplier" @@ -3648,7 +3682,7 @@ msgid "Next" msgstr "Další" #: src/components/wizards/ImportPartWizard.tsx:540 -#: src/pages/part/PartDetail.tsx:1046 +#: src/pages/part/PartDetail.tsx:1067 #: src/tables/part/PartTable.tsx:408 msgid "Edit Part" msgstr "Upravit díl" @@ -3669,28 +3703,28 @@ msgstr "Jste si jisti, že chcete importovat dodavatele a výrobce pro tento dí msgid "Import" msgstr "Importovat" -#: src/components/wizards/ImportPartWizard.tsx:691 +#: src/components/wizards/ImportPartWizard.tsx:692 msgid "Parameters created successfully!" msgstr "Parametry vytvořeny úspěšně!" -#: src/components/wizards/ImportPartWizard.tsx:719 +#: src/components/wizards/ImportPartWizard.tsx:720 msgid "Failed to create parameters, please fix the errors and try again" msgstr "Nezdařilo se vytvořit parametry, prosím opravte chyby a zkuste to znovu" #. placeholder {0}: supplierPart?.supplier -#: src/components/wizards/ImportPartWizard.tsx:739 +#: src/components/wizards/ImportPartWizard.tsx:740 msgid "Part imported successfully from supplier {0}." msgstr "Díl úspěšně importován od dodavatele {0}." -#: src/components/wizards/ImportPartWizard.tsx:752 +#: src/components/wizards/ImportPartWizard.tsx:753 msgid "Open Part" msgstr "Otevřít díl" -#: src/components/wizards/ImportPartWizard.tsx:759 +#: src/components/wizards/ImportPartWizard.tsx:760 msgid "Open Supplier Part" msgstr "Otevřít díl dodavatele" -#: src/components/wizards/ImportPartWizard.tsx:766 +#: src/components/wizards/ImportPartWizard.tsx:767 msgid "Open Manufacturer Part" msgstr "Otevřít díl výrobce" @@ -3699,25 +3733,19 @@ msgstr "Otevřít díl výrobce" #~ msgid "Import Part" #~ msgstr "Import Part" -#: src/components/wizards/ImportPartWizard.tsx:802 +#: src/components/wizards/ImportPartWizard.tsx:803 msgid "Import Supplier Part" msgstr "Importovat díl dodavatele" -#: src/components/wizards/ImportPartWizard.tsx:804 +#: src/components/wizards/ImportPartWizard.tsx:805 msgid "Search Supplier Part" msgstr "Hledat díl dodavatele" -#: src/components/wizards/ImportPartWizard.tsx:806 -#: src/pages/company/ManufacturerPartDetail.tsx:166 -#: src/pages/part/PartDetail.tsx:793 -msgid "Parameters" -msgstr "Parametry" - -#: src/components/wizards/ImportPartWizard.tsx:806 +#: src/components/wizards/ImportPartWizard.tsx:807 msgid "Confirm import" msgstr "Potvrdit import" -#: src/components/wizards/ImportPartWizard.tsx:808 +#: src/components/wizards/ImportPartWizard.tsx:809 msgid "Done" msgstr "Hotovo" @@ -3738,24 +3766,24 @@ msgid "Sales Requirements" msgstr "Požadavky prodeje" #: src/components/wizards/OrderPartsWizard.tsx:129 -#: src/forms/StockForms.tsx:887 -#: src/forms/StockForms.tsx:926 -#: src/forms/StockForms.tsx:962 -#: src/forms/StockForms.tsx:1005 -#: src/forms/StockForms.tsx:1049 -#: src/forms/StockForms.tsx:1097 -#: src/forms/StockForms.tsx:1141 -#: src/pages/company/SupplierPartDetail.tsx:190 -#: src/pages/company/SupplierPartDetail.tsx:378 +#: src/forms/StockForms.tsx:894 +#: src/forms/StockForms.tsx:940 +#: src/forms/StockForms.tsx:978 +#: src/forms/StockForms.tsx:1021 +#: src/forms/StockForms.tsx:1065 +#: src/forms/StockForms.tsx:1113 +#: src/forms/StockForms.tsx:1157 +#: src/pages/company/SupplierPartDetail.tsx:191 +#: src/pages/company/SupplierPartDetail.tsx:383 #: src/pages/part/PartDetail.tsx:534 -#: src/pages/part/PartDetail.tsx:984 +#: src/pages/part/PartDetail.tsx:999 #: src/tables/Filter.tsx:92 #: src/tables/purchasing/SupplierPartTable.tsx:230 msgid "In Stock" msgstr "Na skladě" #: src/components/wizards/OrderPartsWizard.tsx:146 -#: src/tables/build/BuildLineTable.tsx:404 +#: src/tables/build/BuildLineTable.tsx:405 msgid "Required Quantity" msgstr "Požadované množství" @@ -3847,7 +3875,7 @@ msgid "Please correct the errors in the selected parts" msgstr "Opravte chyby ve vybraných položkách" #: src/components/wizards/OrderPartsWizard.tsx:587 -#: src/tables/build/BuildLineTable.tsx:815 +#: src/tables/build/BuildLineTable.tsx:822 #: src/tables/part/PartTable.tsx:522 #: src/tables/sales/SalesOrderLineItemTable.tsx:370 msgid "Order Parts" @@ -4349,9 +4377,9 @@ msgstr "Náhrada přidána" #: src/forms/BuildForms.tsx:333 #: src/forms/BuildForms.tsx:408 #: src/forms/BuildForms.tsx:685 -#: src/tables/build/BuildAllocatedStockTable.tsx:150 +#: src/tables/build/BuildAllocatedStockTable.tsx:147 #: src/tables/build/BuildOutputTable.tsx:582 -#: src/tables/part/PartTestResultTable.tsx:272 +#: src/tables/part/PartTestResultTable.tsx:280 msgid "Build Output" msgstr "Výstup sestavy" @@ -4362,22 +4390,22 @@ msgstr "Množství k dokončení" #: src/forms/BuildForms.tsx:336 #: src/forms/BuildForms.tsx:411 #: src/forms/BuildForms.tsx:475 -#: src/forms/PurchaseOrderForms.tsx:717 +#: src/forms/PurchaseOrderForms.tsx:769 #: src/forms/ReturnOrderForms.tsx:197 #: src/forms/ReturnOrderForms.tsx:244 #: src/forms/StockForms.tsx:712 #: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:87 -#: src/pages/build/BuildDetail.tsx:222 +#: src/pages/build/BuildDetail.tsx:223 #: src/pages/core/UserDetail.tsx:151 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:168 -#: src/pages/sales/ReturnOrderDetail.tsx:135 -#: src/pages/sales/SalesOrderDetail.tsx:125 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:169 +#: src/pages/sales/ReturnOrderDetail.tsx:136 +#: src/pages/sales/SalesOrderDetail.tsx:126 #: src/pages/stock/StockDetail.tsx:170 #: src/tables/Filter.tsx:274 #: src/tables/build/BuildOutputTable.tsx:404 #: src/tables/machine/MachineListTable.tsx:387 #: src/tables/part/PartPurchaseOrdersTable.tsx:38 -#: src/tables/part/PartTestResultTable.tsx:309 +#: src/tables/part/PartTestResultTable.tsx:317 #: src/tables/sales/ReturnOrderLineItemTable.tsx:138 #: src/tables/sales/ReturnOrderLineItemTable.tsx:176 #: src/tables/settings/CustomStateTable.tsx:79 @@ -4443,18 +4471,19 @@ msgid "Build outputs have been cancelled" msgstr "Výrobní příkaz byl zrušen" #: src/forms/BuildForms.tsx:631 -#: src/pages/build/BuildDetail.tsx:207 -#: src/pages/company/ManufacturerPartDetail.tsx:85 -#: src/pages/company/SupplierPartDetail.tsx:96 +#: src/pages/build/BuildDetail.tsx:208 +#: src/pages/company/ManufacturerPartDetail.tsx:84 +#: src/pages/company/SupplierPartDetail.tsx:97 #: src/pages/part/PartDetail.tsx:453 #: src/pages/stock/StockDetail.tsx:153 #: src/tables/bom/BomTable.tsx:134 #: src/tables/bom/UsedInTable.tsx:40 -#: src/tables/build/BuildAllocatedStockTable.tsx:108 -#: src/tables/build/BuildLineTable.tsx:336 +#: src/tables/build/BuildAllocatedStockTable.tsx:105 +#: src/tables/build/BuildLineTable.tsx:337 #: src/tables/build/BuildOrderTable.tsx:79 #: src/tables/part/PartSalesAllocationsTable.tsx:61 #: src/tables/part/RelatedPartTable.tsx:73 +#: src/tables/purchasing/ManufacturerPartParametricTable.tsx:21 #: src/tables/purchasing/ManufacturerPartTable.tsx:69 #: src/tables/purchasing/SupplierPartTable.tsx:70 #: src/tables/sales/SalesOrderAllocationTable.tsx:135 @@ -4466,47 +4495,47 @@ msgstr "IČO" #: src/forms/BuildForms.tsx:632 #: src/forms/BuildForms.tsx:796 #: src/forms/BuildForms.tsx:897 -#: src/forms/SalesOrderForms.tsx:306 -#: src/tables/build/BuildAllocatedStockTable.tsx:139 -#: src/tables/build/BuildLineTable.tsx:182 +#: src/forms/SalesOrderForms.tsx:385 +#: src/tables/build/BuildAllocatedStockTable.tsx:136 +#: src/tables/build/BuildLineTable.tsx:183 #: src/tables/sales/SalesOrderLineItemTable.tsx:342 #: src/tables/stock/StockItemTable.tsx:338 msgid "Allocated" msgstr "Přiděleno" #: src/forms/BuildForms.tsx:667 -#: src/forms/SalesOrderForms.tsx:295 -#: src/pages/build/BuildDetail.tsx:108 -#: src/pages/build/BuildDetail.tsx:326 +#: src/forms/SalesOrderForms.tsx:374 +#: src/pages/build/BuildDetail.tsx:109 +#: src/pages/build/BuildDetail.tsx:327 msgid "Source Location" msgstr "Zdrojové umístění" #: src/forms/BuildForms.tsx:668 -#: src/forms/SalesOrderForms.tsx:296 +#: src/forms/SalesOrderForms.tsx:375 msgid "Select the source location for the stock allocation" msgstr "Vyberte umístění pro přiřazení zásob" #: src/forms/BuildForms.tsx:700 -#: src/forms/SalesOrderForms.tsx:336 -#: src/tables/build/BuildLineTable.tsx:574 -#: src/tables/build/BuildLineTable.tsx:731 -#: src/tables/build/BuildLineTable.tsx:830 +#: src/forms/SalesOrderForms.tsx:415 +#: src/tables/build/BuildLineTable.tsx:575 +#: src/tables/build/BuildLineTable.tsx:738 +#: src/tables/build/BuildLineTable.tsx:837 #: src/tables/sales/SalesOrderLineItemTable.tsx:380 #: src/tables/sales/SalesOrderLineItemTable.tsx:406 msgid "Allocate Stock" msgstr "Přidělit zásoby" #: src/forms/BuildForms.tsx:703 -#: src/forms/SalesOrderForms.tsx:341 +#: src/forms/SalesOrderForms.tsx:420 msgid "Stock items allocated" msgstr "Zásoba přidělena" #: src/forms/BuildForms.tsx:816 #: src/forms/BuildForms.tsx:917 -#: src/tables/build/BuildAllocatedStockTable.tsx:240 -#: src/tables/build/BuildAllocatedStockTable.tsx:272 -#: src/tables/build/BuildLineTable.tsx:741 -#: src/tables/build/BuildLineTable.tsx:864 +#: src/tables/build/BuildAllocatedStockTable.tsx:243 +#: src/tables/build/BuildAllocatedStockTable.tsx:279 +#: src/tables/build/BuildLineTable.tsx:748 +#: src/tables/build/BuildLineTable.tsx:871 msgid "Consume Stock" msgstr "Spotřebovat zásoby" @@ -4521,21 +4550,21 @@ msgstr "Zásoby plánované ke spotřebě" #~ msgstr "Stock items consumed" #: src/forms/BuildForms.tsx:853 -#: src/tables/build/BuildLineTable.tsx:514 +#: src/tables/build/BuildLineTable.tsx:515 #: src/tables/part/PartBuildAllocationsTable.tsx:101 msgid "Fully consumed" msgstr "Plně spotřebovány" #: src/forms/BuildForms.tsx:898 -#: src/tables/build/BuildLineTable.tsx:187 +#: src/tables/build/BuildLineTable.tsx:188 #: src/tables/stock/StockItemTable.tsx:367 msgid "Consumed" msgstr "Spotřebovány" -#: src/forms/CommonForms.tsx:88 -#: src/forms/PurchaseOrderForms.tsx:125 +#: src/forms/CommonForms.tsx:92 +#: src/forms/PurchaseOrderForms.tsx:176 #: src/forms/ReturnOrderForms.tsx:138 -#: src/forms/SalesOrderForms.tsx:164 +#: src/forms/SalesOrderForms.tsx:185 msgid "Select project code for this line item" msgstr "Vyberte kód projektu pro tuto položku" @@ -4543,16 +4572,16 @@ msgstr "Vyberte kód projektu pro tuto položku" #~ msgid "Company updated" #~ msgstr "Company updated" -#: src/forms/PartForms.tsx:85 -#: src/forms/PartForms.tsx:207 -#: src/pages/part/CategoryDetail.tsx:124 +#: src/forms/PartForms.tsx:99 +#: src/forms/PartForms.tsx:228 +#: src/pages/part/CategoryDetail.tsx:127 #: src/pages/part/PartDetail.tsx:668 #: src/tables/part/PartCategoryTable.tsx:94 #: src/tables/part/PartTable.tsx:325 msgid "Subscribed" msgstr "Odebírané" -#: src/forms/PartForms.tsx:86 +#: src/forms/PartForms.tsx:100 msgid "Subscribe to notifications for this part" msgstr "Přihlásit se k odběru oznámení pro tuto položku" @@ -4564,156 +4593,156 @@ msgstr "Přihlásit se k odběru oznámení pro tuto položku" #~ msgid "Part updated" #~ msgstr "Part updated" -#: src/forms/PartForms.tsx:193 +#: src/forms/PartForms.tsx:214 msgid "Parent part category" msgstr "Nadřazená kategorie" -#: src/forms/PartForms.tsx:208 +#: src/forms/PartForms.tsx:229 msgid "Subscribe to notifications for this category" msgstr "Přihlásit se k odběru oznámení pro tuto kategorii" -#: src/forms/PurchaseOrderForms.tsx:388 -msgid "Assign Batch Code and Serial Numbers" -msgstr "Přiřadit kód dávky a sériová čísla" - -#: src/forms/PurchaseOrderForms.tsx:390 -msgid "Assign Batch Code" -msgstr "Přiřadit kód dávky" - -#: src/forms/PurchaseOrderForms.tsx:410 -msgid "Choose Location" -msgstr "Zvolte umístění" - -#: src/forms/PurchaseOrderForms.tsx:418 -msgid "Item Destination selected" -msgstr "Cíl položky byl vybrán" - #: src/forms/PurchaseOrderForms.tsx:421 #~ msgid "Assign Batch Code{0}" #~ msgstr "Assign Batch Code{0}" -#: src/forms/PurchaseOrderForms.tsx:428 -msgid "Part category default location selected" -msgstr "Vybráno výchozí umístění kategorie dílu" +#: src/forms/PurchaseOrderForms.tsx:440 +msgid "Assign Batch Code and Serial Numbers" +msgstr "Přiřadit kód dávky a sériová čísla" -#: src/forms/PurchaseOrderForms.tsx:438 -msgid "Received stock location selected" -msgstr "Vybráno skladové umístění" +#: src/forms/PurchaseOrderForms.tsx:442 +msgid "Assign Batch Code" +msgstr "Přiřadit kód dávky" #: src/forms/PurchaseOrderForms.tsx:444 #: src/forms/StockForms.tsx:428 #~ msgid "Remove item from list" #~ msgstr "Remove item from list" -#: src/forms/PurchaseOrderForms.tsx:446 +#: src/forms/PurchaseOrderForms.tsx:462 +msgid "Choose Location" +msgstr "Zvolte umístění" + +#: src/forms/PurchaseOrderForms.tsx:470 +msgid "Item Destination selected" +msgstr "Cíl položky byl vybrán" + +#: src/forms/PurchaseOrderForms.tsx:480 +msgid "Part category default location selected" +msgstr "Vybráno výchozí umístění kategorie dílu" + +#: src/forms/PurchaseOrderForms.tsx:490 +msgid "Received stock location selected" +msgstr "Vybráno skladové umístění" + +#: src/forms/PurchaseOrderForms.tsx:498 msgid "Default location selected" msgstr "Výchozí lokace vybrána" -#: src/forms/PurchaseOrderForms.tsx:507 +#: src/forms/PurchaseOrderForms.tsx:559 msgid "Set Location" msgstr "Nastavit umístění" -#: src/forms/PurchaseOrderForms.tsx:524 -msgid "Set Expiry Date" -msgstr "Nastavit datum expirace" - -#: src/forms/PurchaseOrderForms.tsx:532 -#: src/forms/StockForms.tsx:693 -msgid "Adjust Packaging" -msgstr "Upravit balení" - -#: src/forms/PurchaseOrderForms.tsx:540 -#: src/forms/StockForms.tsx:684 -#: src/hooks/UseStockAdjustActions.tsx:148 -msgid "Change Status" -msgstr "Změnit stav" - -#: src/forms/PurchaseOrderForms.tsx:546 -msgid "Add Note" -msgstr "Přidat poznámku" - #: src/forms/PurchaseOrderForms.tsx:566 #~ msgid "Serial numbers" #~ msgstr "Serial numbers" +#: src/forms/PurchaseOrderForms.tsx:576 +msgid "Set Expiry Date" +msgstr "Nastavit datum expirace" + #: src/forms/PurchaseOrderForms.tsx:582 #~ msgid "Store at line item destination" #~ msgstr "Store at line item destination" -#: src/forms/PurchaseOrderForms.tsx:610 -msgid "Store at default location" -msgstr "Uložit ve výchozím umístění" +#: src/forms/PurchaseOrderForms.tsx:584 +#: src/forms/StockForms.tsx:693 +msgid "Adjust Packaging" +msgstr "Upravit balení" -#: src/forms/PurchaseOrderForms.tsx:625 -msgid "Store at line item destination " -msgstr "Uložit na cíl řádkového předmětu " +#: src/forms/PurchaseOrderForms.tsx:592 +#: src/forms/StockForms.tsx:684 +#: src/hooks/UseStockAdjustActions.tsx:148 +msgid "Change Status" +msgstr "Změnit stav" -#: src/forms/PurchaseOrderForms.tsx:637 -msgid "Store with already received stock" -msgstr "Uložit již s přijatými zásobami" +#: src/forms/PurchaseOrderForms.tsx:598 +msgid "Add Note" +msgstr "Přidat poznámku" #: src/forms/PurchaseOrderForms.tsx:658 #~ msgid "Receive line items" #~ msgstr "Receive line items" -#: src/forms/PurchaseOrderForms.tsx:661 -#: src/pages/build/BuildDetail.tsx:340 +#: src/forms/PurchaseOrderForms.tsx:662 +msgid "Store at default location" +msgstr "Uložit ve výchozím umístění" + +#: src/forms/PurchaseOrderForms.tsx:677 +msgid "Store at line item destination " +msgstr "Uložit na cíl řádkového předmětu " + +#: src/forms/PurchaseOrderForms.tsx:689 +msgid "Store with already received stock" +msgstr "Uložit již s přijatými zásobami" + +#: src/forms/PurchaseOrderForms.tsx:713 +#: src/pages/build/BuildDetail.tsx:341 #: src/pages/stock/StockDetail.tsx:280 #: src/pages/stock/StockDetail.tsx:952 #: src/tables/Filter.tsx:83 -#: src/tables/build/BuildAllocatedStockTable.tsx:128 +#: src/tables/build/BuildAllocatedStockTable.tsx:125 #: src/tables/build/BuildOutputTable.tsx:112 -#: src/tables/part/PartTestResultTable.tsx:260 -#: src/tables/part/PartTestResultTable.tsx:281 +#: src/tables/part/PartTestResultTable.tsx:268 +#: src/tables/part/PartTestResultTable.tsx:289 #: src/tables/sales/SalesOrderAllocationTable.tsx:149 msgid "Batch Code" msgstr "Kód dávky" -#: src/forms/PurchaseOrderForms.tsx:662 +#: src/forms/PurchaseOrderForms.tsx:714 msgid "Enter batch code for received items" msgstr "Zadat kód dávky pro příchozí položky skladu" -#: src/forms/PurchaseOrderForms.tsx:675 +#: src/forms/PurchaseOrderForms.tsx:727 #: src/forms/StockForms.tsx:218 msgid "Serial Numbers" msgstr "Sériová čísla" -#: src/forms/PurchaseOrderForms.tsx:676 +#: src/forms/PurchaseOrderForms.tsx:728 msgid "Enter serial numbers for received items" msgstr "Zadat sériová čísla pro příchozí skladové položky" -#: src/forms/PurchaseOrderForms.tsx:690 +#: src/forms/PurchaseOrderForms.tsx:742 #: src/pages/stock/StockDetail.tsx:382 #: src/tables/stock/StockItemTable.tsx:294 msgid "Expiry Date" msgstr "Datum expirace" -#: src/forms/PurchaseOrderForms.tsx:691 +#: src/forms/PurchaseOrderForms.tsx:743 msgid "Enter an expiry date for received items" msgstr "Zadejte datum expirace pro přijaté položky" -#: src/forms/PurchaseOrderForms.tsx:703 +#: src/forms/PurchaseOrderForms.tsx:755 #: src/forms/StockForms.tsx:728 -#: src/pages/company/SupplierPartDetail.tsx:172 -#: src/pages/company/SupplierPartDetail.tsx:236 +#: src/pages/company/SupplierPartDetail.tsx:173 +#: src/pages/company/SupplierPartDetail.tsx:237 #: src/pages/stock/StockDetail.tsx:419 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:227 msgid "Packaging" msgstr "Balení" -#: src/forms/PurchaseOrderForms.tsx:727 -#: src/pages/company/SupplierPartDetail.tsx:120 +#: src/forms/PurchaseOrderForms.tsx:779 +#: src/pages/company/SupplierPartDetail.tsx:121 #: src/tables/ColumnRenderers.tsx:332 msgid "Note" msgstr "Poznámka" -#: src/forms/PurchaseOrderForms.tsx:799 -#: src/pages/company/SupplierPartDetail.tsx:138 +#: src/forms/PurchaseOrderForms.tsx:851 +#: src/pages/company/SupplierPartDetail.tsx:139 #: src/tables/purchasing/SupplierPriceBreakTable.tsx:49 msgid "SKU" msgstr "Číslo zboží (SKU)" -#: src/forms/PurchaseOrderForms.tsx:800 +#: src/forms/PurchaseOrderForms.tsx:852 #: src/tables/part/PartPurchaseOrdersTable.tsx:127 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:213 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:283 @@ -4721,11 +4750,11 @@ msgstr "Číslo zboží (SKU)" msgid "Received" msgstr "Přijaté" -#: src/forms/PurchaseOrderForms.tsx:817 +#: src/forms/PurchaseOrderForms.tsx:869 msgid "Receive Line Items" msgstr "Řádek přijatých položek" -#: src/forms/PurchaseOrderForms.tsx:823 +#: src/forms/PurchaseOrderForms.tsx:875 msgid "Items received" msgstr "Přijaté položky" @@ -4737,7 +4766,35 @@ msgstr "Přijaté položky" msgid "Item received into stock" msgstr "Položka byla přijata na skladě" -#: src/forms/SalesOrderForms.tsx:401 +#: src/forms/SalesOrderForms.tsx:208 +#: src/forms/SalesOrderForms.tsx:210 +#: src/tables/sales/SalesOrderShipmentTable.tsx:215 +msgid "Check Shipment" +msgstr "Zkontrolovat zásilku" + +#: src/forms/SalesOrderForms.tsx:211 +msgid "Marking the shipment as checked indicates that you have verified that all items included in this shipment are correct" +msgstr "Označení zásilky jako zkontrolovanou znamená, že jste ověřily, že všechny položky v této zásilce jsou správné" + +#: src/forms/SalesOrderForms.tsx:221 +msgid "Shipment marked as checked" +msgstr "Zásilka označena jako zkontrolována" + +#: src/forms/SalesOrderForms.tsx:236 +#: src/forms/SalesOrderForms.tsx:238 +#: src/tables/sales/SalesOrderShipmentTable.tsx:228 +msgid "Uncheck Shipment" +msgstr "Odznačit zásilku" + +#: src/forms/SalesOrderForms.tsx:239 +msgid "Marking the shipment as unchecked indicates that the shipment requires further verification" +msgstr "Označení zásilky jako nezkontrolované znamená, že zásilka vyžaduje další ověření" + +#: src/forms/SalesOrderForms.tsx:249 +msgid "Shipment marked as unchecked" +msgstr "Zásilka označená jako nezkontrolována" + +#: src/forms/SalesOrderForms.tsx:480 msgid "Leave blank to use the order address" msgstr "Ponechte prázdné pro použití adresy objednávky" @@ -4792,150 +4849,150 @@ msgstr "Přesunout" msgid "Return" msgstr "Vrátit" -#: src/forms/StockForms.tsx:963 +#: src/forms/StockForms.tsx:979 #: src/pages/Index/Scan.tsx:182 msgid "Count" msgstr "Počet" -#: src/forms/StockForms.tsx:1246 +#: src/forms/StockForms.tsx:1262 #: src/hooks/UseStockAdjustActions.tsx:108 msgid "Add Stock" msgstr "Přidat zásobu" -#: src/forms/StockForms.tsx:1247 +#: src/forms/StockForms.tsx:1263 msgid "Stock added" msgstr "Zásoba přidána" -#: src/forms/StockForms.tsx:1250 +#: src/forms/StockForms.tsx:1266 msgid "Increase the quantity of the selected stock items by a given amount." msgstr "Zvyšte množství vybraných skladových položek o danou částku." -#: src/forms/StockForms.tsx:1261 +#: src/forms/StockForms.tsx:1277 #: src/hooks/UseStockAdjustActions.tsx:118 msgid "Remove Stock" msgstr "Snížit zásobu" -#: src/forms/StockForms.tsx:1262 +#: src/forms/StockForms.tsx:1278 msgid "Stock removed" msgstr "Zásoba snížena" -#: src/forms/StockForms.tsx:1265 +#: src/forms/StockForms.tsx:1281 msgid "Decrease the quantity of the selected stock items by a given amount." msgstr "Snižte množství vybraných skladových položek o danou částku." -#: src/forms/StockForms.tsx:1276 +#: src/forms/StockForms.tsx:1292 #: src/hooks/UseStockAdjustActions.tsx:128 msgid "Transfer Stock" msgstr "Převést zásobu" -#: src/forms/StockForms.tsx:1277 +#: src/forms/StockForms.tsx:1293 msgid "Stock transferred" msgstr "Skladová položka převedena" -#: src/forms/StockForms.tsx:1280 +#: src/forms/StockForms.tsx:1296 msgid "Transfer selected items to the specified location." msgstr "Přesunout vybrané položky do určeného umístění." -#: src/forms/StockForms.tsx:1291 +#: src/forms/StockForms.tsx:1307 #: src/hooks/UseStockAdjustActions.tsx:168 msgid "Return Stock" msgstr "Vrátit zásoby" -#: src/forms/StockForms.tsx:1292 +#: src/forms/StockForms.tsx:1308 msgid "Stock returned" msgstr "Zásoby vráceny" -#: src/forms/StockForms.tsx:1295 +#: src/forms/StockForms.tsx:1311 msgid "Return selected items into stock, to the specified location." msgstr "Vrátit vybrané položky do skladu na určené místo." -#: src/forms/StockForms.tsx:1306 +#: src/forms/StockForms.tsx:1322 #: src/hooks/UseStockAdjustActions.tsx:98 msgid "Count Stock" msgstr "Spočítat zásoby" -#: src/forms/StockForms.tsx:1307 +#: src/forms/StockForms.tsx:1323 msgid "Stock counted" msgstr "Spočítáno" -#: src/forms/StockForms.tsx:1310 +#: src/forms/StockForms.tsx:1326 msgid "Count the selected stock items, and adjust the quantity accordingly." msgstr "Spočítat vybrané skladové položky, a podle toho upravit množství." -#: src/forms/StockForms.tsx:1321 +#: src/forms/StockForms.tsx:1337 msgid "Change Stock Status" msgstr "Změnit stav skladu" -#: src/forms/StockForms.tsx:1322 +#: src/forms/StockForms.tsx:1338 msgid "Stock status changed" msgstr "Stav skladu byl změněn" -#: src/forms/StockForms.tsx:1325 +#: src/forms/StockForms.tsx:1341 msgid "Change the status of the selected stock items." msgstr "Změnit stav vybraných skladových položek." -#: src/forms/StockForms.tsx:1336 +#: src/forms/StockForms.tsx:1352 #: src/hooks/UseStockAdjustActions.tsx:138 msgid "Merge Stock" msgstr "Sloučit zásoby" -#: src/forms/StockForms.tsx:1337 +#: src/forms/StockForms.tsx:1353 msgid "Stock merged" msgstr "Zásoby sloučeny" -#: src/forms/StockForms.tsx:1339 +#: src/forms/StockForms.tsx:1355 msgid "Merge Stock Items" msgstr "Sloučit skladové položky" -#: src/forms/StockForms.tsx:1341 +#: src/forms/StockForms.tsx:1357 msgid "Merge operation cannot be reversed" msgstr "Sloučení nelze vrátit zpět" -#: src/forms/StockForms.tsx:1342 +#: src/forms/StockForms.tsx:1358 msgid "Tracking information may be lost when merging items" msgstr "Při slučování položek mohou být informace o sledování ztraceny" -#: src/forms/StockForms.tsx:1343 +#: src/forms/StockForms.tsx:1359 msgid "Supplier information may be lost when merging items" msgstr "Informace o dodavateli mohou být při slučování položek ztraceny" -#: src/forms/StockForms.tsx:1361 +#: src/forms/StockForms.tsx:1377 msgid "Assign Stock to Customer" msgstr "Přiřadit sklad zákazníkovi" -#: src/forms/StockForms.tsx:1362 +#: src/forms/StockForms.tsx:1378 msgid "Stock assigned to customer" msgstr "Zásoby přiřazené zákazníkovi" -#: src/forms/StockForms.tsx:1372 +#: src/forms/StockForms.tsx:1388 msgid "Delete Stock Items" msgstr "Odstranit skladové položky" -#: src/forms/StockForms.tsx:1373 +#: src/forms/StockForms.tsx:1389 msgid "Stock deleted" msgstr "Skladová položka odstraněna" -#: src/forms/StockForms.tsx:1376 +#: src/forms/StockForms.tsx:1392 msgid "This operation will permanently delete the selected stock items." msgstr "Tato operace trvale odstraní vybrané skladové položky." -#: src/forms/StockForms.tsx:1385 +#: src/forms/StockForms.tsx:1401 msgid "Parent stock location" msgstr "Nadřazené skladové umístění" -#: src/forms/StockForms.tsx:1512 +#: src/forms/StockForms.tsx:1528 msgid "Find Serial Number" msgstr "Najít sériové číslo" -#: src/forms/StockForms.tsx:1523 +#: src/forms/StockForms.tsx:1539 msgid "No matching items" msgstr "Žádné odpovídající položky" -#: src/forms/StockForms.tsx:1529 +#: src/forms/StockForms.tsx:1545 msgid "Multiple matching items" msgstr "Více odpovídajících položek" -#: src/forms/StockForms.tsx:1538 +#: src/forms/StockForms.tsx:1554 msgid "Invalid response from server" msgstr "Neplatná odpověď ze serveru" @@ -4953,7 +5010,6 @@ msgstr "Seznam záznamů pro výběr" #: src/tables/FilterSelectDrawer.tsx:137 #: src/tables/FilterSelectDrawer.tsx:149 #: src/tables/part/PartTestResultTable.tsx:206 -#: src/tables/purchasing/ManufacturerPartParameterTable.tsx:42 #: src/tables/stock/StockItemTestResultTable.tsx:207 msgid "Value" msgstr "Hodnota" @@ -5244,7 +5300,7 @@ msgid "Delete selected stock items" msgstr "Odstranit vybrané skladové položky" #: src/hooks/UseStockAdjustActions.tsx:205 -#: src/pages/part/PartDetail.tsx:1137 +#: src/pages/part/PartDetail.tsx:1158 msgid "Stock Actions" msgstr "Akce skladu" @@ -5932,6 +5988,9 @@ msgstr "Odstranit WebAuthn údaje" #: src/pages/Index/Settings/AccountSettings/MFASettings.tsx:310 #: src/pages/Index/Settings/AccountSettings/MFASettings.tsx:401 +#: src/tables/build/BuildAllocatedStockTable.tsx:181 +#: src/tables/build/BuildLineTable.tsx:668 +#: src/tables/sales/SalesOrderAllocationTable.tsx:220 msgid "Confirm Removal" msgstr "Potvrdit odstranění" @@ -6394,30 +6453,34 @@ msgid "Email Messages" msgstr "E-mailové zprávy" #: src/pages/Index/Settings/AdminCenter/HomePanel.tsx:22 -msgid "Active Alerts" -msgstr "Aktivní výstrahy" +#~ msgid "Active Alerts" +#~ msgstr "Active Alerts" #: src/pages/Index/Settings/AdminCenter/HomePanel.tsx:27 -msgid "Inactive Alerts" -msgstr "Neaktivní výstrahy" +#~ msgid "Inactive Alerts" +#~ msgstr "Inactive Alerts" -#: src/pages/Index/Settings/AdminCenter/HomePanel.tsx:38 +#: src/pages/Index/Settings/AdminCenter/HomePanel.tsx:36 +msgid "System Status" +msgstr "Stav systému" + +#: src/pages/Index/Settings/AdminCenter/HomePanel.tsx:47 msgid "Admin Center Information" msgstr "Informace admin centra" -#: src/pages/Index/Settings/AdminCenter/HomePanel.tsx:44 +#: src/pages/Index/Settings/AdminCenter/HomePanel.tsx:53 msgid "The home panel (and the whole Admin Center) is a new feature starting with the new UI and was previously (before 1.0) not available." msgstr "Domovský panel (a celé centrum administrace) je nová funkce, počínaje novým uživatelským rozhraním a dříve (před 1.0) nebyla k dispozici." -#: src/pages/Index/Settings/AdminCenter/HomePanel.tsx:51 +#: src/pages/Index/Settings/AdminCenter/HomePanel.tsx:60 msgid "The admin center provides a centralized location for all administration functionality and is meant to replace all interaction with the (django) backend admin interface." msgstr "Admin centrum poskytuje centralizované místo pro všechny funkce správy a je určeno k nahrazení veškeré interakce s (django) backend admin rozhraním." -#: src/pages/Index/Settings/AdminCenter/HomePanel.tsx:58 +#: src/pages/Index/Settings/AdminCenter/HomePanel.tsx:67 msgid "Please open feature requests (after checking the tracker) for any existing backend admin functionality you are missing in this UI. The backend admin interface should be used carefully and seldom." msgstr "Otevřete prosím požadavek na funkci (po kontrole trackeru) pro jakoukoliv existující funkci backend admin panelu která vám v tomto rozhraní chybí. Backend admin rozhraní by se mělo využívat opatrně." -#: src/pages/Index/Settings/AdminCenter/HomePanel.tsx:76 +#: src/pages/Index/Settings/AdminCenter/HomePanel.tsx:85 msgid "Quick Actions" msgstr "Rychlé akce" @@ -6476,11 +6539,11 @@ msgstr "Vlastní jednotky" #: src/pages/Index/Settings/AdminCenter/Index.tsx:195 #: src/pages/part/CategoryDetail.tsx:313 -msgid "Part Parameters" -msgstr "Parametry dílu" +#~ msgid "Part Parameters" +#~ msgstr "Part Parameters" #: src/pages/Index/Settings/AdminCenter/Index.tsx:202 -#: src/pages/part/CategoryDetail.tsx:306 +#: src/pages/part/CategoryDetail.tsx:329 msgid "Category Parameters" msgstr "Parametry kategorie" @@ -6494,7 +6557,7 @@ msgstr "Typy umístění" #: src/pages/Index/Settings/AdminCenter/Index.tsx:235 #: src/pages/Index/Settings/AdminCenter/MachineManagementPanel.tsx:52 -#: src/tables/machine/MachineTypeTable.tsx:325 +#: src/tables/machine/MachineTypeTable.tsx:323 msgid "Machines" msgstr "Stroje" @@ -6507,8 +6570,8 @@ msgid "Data Management" msgstr "Správa dat" #: src/pages/Index/Settings/AdminCenter/Index.tsx:270 -#: src/pages/Index/Settings/SystemSettings.tsx:175 -#: src/pages/Index/Settings/UserSettings.tsx:118 +#: src/pages/Index/Settings/SystemSettings.tsx:176 +#: src/pages/Index/Settings/UserSettings.tsx:119 msgid "Reporting" msgstr "Reporty" @@ -6709,11 +6772,11 @@ msgstr "Tokeny" msgid "The settings below are specific to each available plugin" msgstr "Níže uvedená nastavení jsou specifická pro každý dostupný plugin" -#: src/pages/Index/Settings/SystemSettings.tsx:77 +#: src/pages/Index/Settings/SystemSettings.tsx:78 msgid "Authentication" msgstr "Ověření totožnosti" -#: src/pages/Index/Settings/SystemSettings.tsx:103 +#: src/pages/Index/Settings/SystemSettings.tsx:104 msgid "Barcodes" msgstr "Čárové kódy" @@ -6725,12 +6788,12 @@ msgstr "Čárové kódy" #~ msgid "This panel is a placeholder." #~ msgstr "This panel is a placeholder." -#: src/pages/Index/Settings/SystemSettings.tsx:127 -#: src/pages/Index/Settings/UserSettings.tsx:112 +#: src/pages/Index/Settings/SystemSettings.tsx:128 +#: src/pages/Index/Settings/UserSettings.tsx:113 msgid "The settings below are specific to each available notification method" msgstr "Níže uvedená nastavení jsou specifická pro každou dostupnou metodu oznámení" -#: src/pages/Index/Settings/SystemSettings.tsx:133 +#: src/pages/Index/Settings/SystemSettings.tsx:134 msgid "Pricing" msgstr "Ceník" @@ -6738,7 +6801,7 @@ msgstr "Ceník" #~ msgid "Exchange Rates" #~ msgstr "Exchange Rates" -#: src/pages/Index/Settings/SystemSettings.tsx:169 +#: src/pages/Index/Settings/SystemSettings.tsx:170 msgid "Labels" msgstr "Štítky" @@ -6790,15 +6853,15 @@ msgstr "Označit jako nepřečtenou" #~ msgid "Delete notifications" #~ msgstr "Delete notifications" -#: src/pages/build/BuildDetail.tsx:69 +#: src/pages/build/BuildDetail.tsx:70 msgid "No Required Items" msgstr "Žádné požadované položky" -#: src/pages/build/BuildDetail.tsx:71 +#: src/pages/build/BuildDetail.tsx:72 msgid "This build order does not have any required items." msgstr "Tato objednávka k sestavení nemá žádné požadované položky." -#: src/pages/build/BuildDetail.tsx:72 +#: src/pages/build/BuildDetail.tsx:73 msgid "The assembled part may not have a Bill of Materials (BOM) defined, or the BOM is empty." msgstr "Sestavená část nemusí mít definovaný kusovník (BOM) nebo je kusovník prázdný." @@ -6826,7 +6889,7 @@ msgstr "Sestavená část nemusí mít definovaný kusovník (BOM) nebo je kusov #~ msgid "Build Order updated" #~ msgstr "Build Order updated" -#: src/pages/build/BuildDetail.tsx:215 +#: src/pages/build/BuildDetail.tsx:216 #: src/pages/part/PartDetail.tsx:480 #: src/pages/stock/StockDetail.tsx:161 #: src/tables/bom/UsedInTable.tsx:44 @@ -6843,10 +6906,10 @@ msgstr "Revize" #~ msgid "Duplicate build order" #~ msgstr "Duplicate build order" -#: src/pages/build/BuildDetail.tsx:228 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:174 -#: src/pages/sales/ReturnOrderDetail.tsx:141 -#: src/pages/sales/SalesOrderDetail.tsx:131 +#: src/pages/build/BuildDetail.tsx:229 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:175 +#: src/pages/sales/ReturnOrderDetail.tsx:142 +#: src/pages/sales/SalesOrderDetail.tsx:132 #: src/pages/stock/StockDetail.tsx:176 msgid "Custom Status" msgstr "Vlastní status" @@ -6855,9 +6918,9 @@ msgstr "Vlastní status" #~ msgid "Delete build order" #~ msgstr "Delete build order" -#: src/pages/build/BuildDetail.tsx:237 -#: src/pages/build/BuildDetail.tsx:723 -#: src/pages/build/BuildIndex.tsx:28 +#: src/pages/build/BuildDetail.tsx:238 +#: src/pages/build/BuildDetail.tsx:728 +#: src/pages/build/BuildIndex.tsx:34 #: src/pages/stock/LocationDetail.tsx:140 #: src/tables/build/BuildOrderTable.tsx:123 #: src/tables/build/BuildOrderTable.tsx:183 @@ -6865,57 +6928,57 @@ msgstr "Vlastní status" msgid "External" msgstr "Externí" -#: src/pages/build/BuildDetail.tsx:244 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:141 -#: src/pages/sales/ReturnOrderDetail.tsx:108 -#: src/pages/sales/SalesOrderDetail.tsx:98 +#: src/pages/build/BuildDetail.tsx:245 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:142 +#: src/pages/sales/ReturnOrderDetail.tsx:109 +#: src/pages/sales/SalesOrderDetail.tsx:99 #: src/tables/ColumnRenderers.tsx:321 -#: src/tables/build/BuildAllocatedStockTable.tsx:115 -#: src/tables/build/BuildLineTable.tsx:352 +#: src/tables/build/BuildAllocatedStockTable.tsx:112 +#: src/tables/build/BuildLineTable.tsx:353 msgid "Reference" msgstr "Reference" -#: src/pages/build/BuildDetail.tsx:258 +#: src/pages/build/BuildDetail.tsx:259 msgid "Parent Build" msgstr "Nadřazená sestava" -#: src/pages/build/BuildDetail.tsx:269 +#: src/pages/build/BuildDetail.tsx:270 msgid "Build Quantity" msgstr "Množství sestav" -#: src/pages/build/BuildDetail.tsx:275 +#: src/pages/build/BuildDetail.tsx:276 #: src/pages/part/PartDetail.tsx:598 #: src/tables/bom/BomTable.tsx:365 #: src/tables/bom/BomTable.tsx:407 msgid "Can Build" msgstr "Lze postavit" -#: src/pages/build/BuildDetail.tsx:284 -#: src/pages/build/BuildDetail.tsx:474 +#: src/pages/build/BuildDetail.tsx:285 +#: src/pages/build/BuildDetail.tsx:475 msgid "Completed Outputs" msgstr "Dokončené výstupy" -#: src/pages/build/BuildDetail.tsx:301 +#: src/pages/build/BuildDetail.tsx:302 #: src/tables/Filter.tsx:381 #: src/tables/build/BuildOrderTable.tsx:143 msgid "Issued By" msgstr "Vystavil" -#: src/pages/build/BuildDetail.tsx:309 +#: src/pages/build/BuildDetail.tsx:310 #: src/pages/part/PartDetail.tsx:691 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:261 -#: src/pages/sales/ReturnOrderDetail.tsx:239 -#: src/pages/sales/SalesOrderDetail.tsx:232 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:262 +#: src/pages/sales/ReturnOrderDetail.tsx:240 +#: src/pages/sales/SalesOrderDetail.tsx:233 #: src/tables/ColumnRenderers.tsx:464 #: src/tables/Filter.tsx:319 msgid "Responsible" msgstr "Odpovědný" -#: src/pages/build/BuildDetail.tsx:327 +#: src/pages/build/BuildDetail.tsx:328 msgid "Any location" msgstr "Libovolné místo" -#: src/pages/build/BuildDetail.tsx:334 +#: src/pages/build/BuildDetail.tsx:335 msgid "Destination Location" msgstr "Cílové umístění" @@ -6924,24 +6987,24 @@ msgstr "Cílové umístění" #~ msgid "Test Statistics" #~ msgstr "Test Statistics" -#: src/pages/build/BuildDetail.tsx:350 +#: src/pages/build/BuildDetail.tsx:351 #: src/tables/settings/ApiTokenTable.tsx:97 #: src/tables/settings/PendingTasksTable.tsx:41 msgid "Created" msgstr "Vytvořeno" -#: src/pages/build/BuildDetail.tsx:358 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:286 -#: src/pages/sales/ReturnOrderDetail.tsx:265 -#: src/pages/sales/SalesOrderDetail.tsx:257 +#: src/pages/build/BuildDetail.tsx:359 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:287 +#: src/pages/sales/ReturnOrderDetail.tsx:266 +#: src/pages/sales/SalesOrderDetail.tsx:258 #: src/tables/ColumnRenderers.tsx:486 msgid "Start Date" msgstr "Počáteční datum" -#: src/pages/build/BuildDetail.tsx:366 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:294 -#: src/pages/sales/ReturnOrderDetail.tsx:273 -#: src/pages/sales/SalesOrderDetail.tsx:265 +#: src/pages/build/BuildDetail.tsx:367 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:295 +#: src/pages/sales/ReturnOrderDetail.tsx:274 +#: src/pages/sales/SalesOrderDetail.tsx:266 #: src/tables/ColumnRenderers.tsx:494 #: src/tables/part/PartPurchaseOrdersTable.tsx:101 #: src/tables/sales/ReturnOrderLineItemTable.tsx:154 @@ -6954,185 +7017,185 @@ msgstr "Cílové datum" #~ msgstr "Reporting Actions" #: src/pages/build/BuildDetail.tsx:374 +#~ msgid "Print build report" +#~ msgstr "Print build report" + +#: src/pages/build/BuildDetail.tsx:375 #: src/tables/build/BuildOrderTable.tsx:93 #: src/tables/sales/SalesOrderLineItemTable.tsx:347 msgid "Completed" msgstr "Dokončeno" -#: src/pages/build/BuildDetail.tsx:374 -#~ msgid "Print build report" -#~ msgstr "Print build report" - -#: src/pages/build/BuildDetail.tsx:410 +#: src/pages/build/BuildDetail.tsx:411 msgid "Build Details" msgstr "Detaily sestavy" -#: src/pages/build/BuildDetail.tsx:416 +#: src/pages/build/BuildDetail.tsx:417 msgid "Required Parts" msgstr "Požadované díly" -#: src/pages/build/BuildDetail.tsx:428 -#: src/pages/sales/SalesOrderDetail.tsx:407 -#: src/pages/sales/SalesOrderShipmentDetail.tsx:261 +#: src/pages/build/BuildDetail.tsx:429 +#: src/pages/sales/SalesOrderDetail.tsx:408 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:259 #: src/tables/part/PartSalesAllocationsTable.tsx:73 msgid "Allocated Stock" msgstr "Přidělené zásoby" -#: src/pages/build/BuildDetail.tsx:444 +#: src/pages/build/BuildDetail.tsx:445 msgid "Consumed Stock" msgstr "Použité zásoby" -#: src/pages/build/BuildDetail.tsx:461 +#: src/pages/build/BuildDetail.tsx:462 msgid "Incomplete Outputs" msgstr "Neúplné výstupy" -#: src/pages/build/BuildDetail.tsx:489 +#: src/pages/build/BuildDetail.tsx:490 msgid "External Orders" msgstr "Externí objednávky" -#: src/pages/build/BuildDetail.tsx:503 +#: src/pages/build/BuildDetail.tsx:504 msgid "Child Build Orders" msgstr "Podřízené objednávky sestavy" -#: src/pages/build/BuildDetail.tsx:513 -#: src/pages/part/PartDetail.tsx:937 +#: src/pages/build/BuildDetail.tsx:514 +#: src/pages/part/PartDetail.tsx:926 #: src/pages/stock/StockDetail.tsx:587 #: src/tables/build/BuildOutputTable.tsx:654 #: src/tables/stock/StockItemTestResultTable.tsx:173 msgid "Test Results" msgstr "Výsledky testu" -#: src/pages/build/BuildDetail.tsx:550 +#: src/pages/build/BuildDetail.tsx:555 msgid "Edit Build Order" msgstr "Upravit výrobní příkaz" -#: src/pages/build/BuildDetail.tsx:572 +#: src/pages/build/BuildDetail.tsx:577 #: src/tables/build/BuildOrderTable.tsx:207 #: src/tables/build/BuildOrderTable.tsx:223 msgid "Add Build Order" msgstr "Přidat výrobní příkaz" -#: src/pages/build/BuildDetail.tsx:582 +#: src/pages/build/BuildDetail.tsx:587 msgid "Cancel Build Order" msgstr "Zrušit výrobní příkaz" -#: src/pages/build/BuildDetail.tsx:584 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:416 -#: src/pages/sales/ReturnOrderDetail.tsx:427 -#: src/pages/sales/SalesOrderDetail.tsx:454 +#: src/pages/build/BuildDetail.tsx:589 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:421 +#: src/pages/sales/ReturnOrderDetail.tsx:432 +#: src/pages/sales/SalesOrderDetail.tsx:459 msgid "Order cancelled" msgstr "Objednávka zrušena" -#: src/pages/build/BuildDetail.tsx:585 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:415 -#: src/pages/sales/ReturnOrderDetail.tsx:426 -#: src/pages/sales/SalesOrderDetail.tsx:453 +#: src/pages/build/BuildDetail.tsx:590 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:420 +#: src/pages/sales/ReturnOrderDetail.tsx:431 +#: src/pages/sales/SalesOrderDetail.tsx:458 msgid "Cancel this order" msgstr "Zrušit tuto objednávku" -#: src/pages/build/BuildDetail.tsx:594 +#: src/pages/build/BuildDetail.tsx:599 msgid "Hold Build Order" msgstr "Pozastavit výrobní příkaz" -#: src/pages/build/BuildDetail.tsx:596 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:423 -#: src/pages/sales/ReturnOrderDetail.tsx:434 -#: src/pages/sales/SalesOrderDetail.tsx:461 +#: src/pages/build/BuildDetail.tsx:601 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:428 +#: src/pages/sales/ReturnOrderDetail.tsx:439 +#: src/pages/sales/SalesOrderDetail.tsx:466 msgid "Place this order on hold" msgstr "Pozastavit tento výrobní příkaz" -#: src/pages/build/BuildDetail.tsx:597 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:424 -#: src/pages/sales/ReturnOrderDetail.tsx:435 -#: src/pages/sales/SalesOrderDetail.tsx:462 +#: src/pages/build/BuildDetail.tsx:602 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:429 +#: src/pages/sales/ReturnOrderDetail.tsx:440 +#: src/pages/sales/SalesOrderDetail.tsx:467 msgid "Order placed on hold" msgstr "Objednávka pozastavena" -#: src/pages/build/BuildDetail.tsx:602 +#: src/pages/build/BuildDetail.tsx:607 msgid "Issue Build Order" msgstr "Zadat výrobní příkaz" -#: src/pages/build/BuildDetail.tsx:604 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:407 -#: src/pages/sales/ReturnOrderDetail.tsx:418 -#: src/pages/sales/SalesOrderDetail.tsx:445 +#: src/pages/build/BuildDetail.tsx:609 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:412 +#: src/pages/sales/ReturnOrderDetail.tsx:423 +#: src/pages/sales/SalesOrderDetail.tsx:450 msgid "Issue this order" msgstr "Zadat tuto objednávku" -#: src/pages/build/BuildDetail.tsx:605 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:408 -#: src/pages/sales/ReturnOrderDetail.tsx:419 -#: src/pages/sales/SalesOrderDetail.tsx:446 +#: src/pages/build/BuildDetail.tsx:610 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:413 +#: src/pages/sales/ReturnOrderDetail.tsx:424 +#: src/pages/sales/SalesOrderDetail.tsx:451 msgid "Order issued" msgstr "Objednávka zadána" -#: src/pages/build/BuildDetail.tsx:624 +#: src/pages/build/BuildDetail.tsx:629 msgid "Complete Build Order" msgstr "Dokončit výrobní příkaz" -#: src/pages/build/BuildDetail.tsx:630 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:436 -#: src/pages/sales/ReturnOrderDetail.tsx:442 -#: src/pages/sales/SalesOrderDetail.tsx:480 +#: src/pages/build/BuildDetail.tsx:635 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:441 +#: src/pages/sales/ReturnOrderDetail.tsx:447 +#: src/pages/sales/SalesOrderDetail.tsx:485 msgid "Mark this order as complete" msgstr "Označit tuto objednávku za dokončenou" -#: src/pages/build/BuildDetail.tsx:633 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:430 -#: src/pages/sales/ReturnOrderDetail.tsx:443 -#: src/pages/sales/SalesOrderDetail.tsx:481 +#: src/pages/build/BuildDetail.tsx:638 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:435 +#: src/pages/sales/ReturnOrderDetail.tsx:448 +#: src/pages/sales/SalesOrderDetail.tsx:486 msgid "Order completed" msgstr "Objednávka dokončena" -#: src/pages/build/BuildDetail.tsx:660 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:459 -#: src/pages/sales/ReturnOrderDetail.tsx:470 -#: src/pages/sales/SalesOrderDetail.tsx:516 +#: src/pages/build/BuildDetail.tsx:665 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:464 +#: src/pages/sales/ReturnOrderDetail.tsx:475 +#: src/pages/sales/SalesOrderDetail.tsx:521 msgid "Issue Order" msgstr "Zadat objednávku" -#: src/pages/build/BuildDetail.tsx:667 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:466 -#: src/pages/sales/ReturnOrderDetail.tsx:477 -#: src/pages/sales/SalesOrderDetail.tsx:530 +#: src/pages/build/BuildDetail.tsx:672 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:471 +#: src/pages/sales/ReturnOrderDetail.tsx:482 +#: src/pages/sales/SalesOrderDetail.tsx:535 msgid "Complete Order" msgstr "Dokončit objednávku" -#: src/pages/build/BuildDetail.tsx:686 +#: src/pages/build/BuildDetail.tsx:691 msgid "Build Order Actions" msgstr "Akce výrobní objednávky" -#: src/pages/build/BuildDetail.tsx:691 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:489 -#: src/pages/sales/ReturnOrderDetail.tsx:500 -#: src/pages/sales/SalesOrderDetail.tsx:554 +#: src/pages/build/BuildDetail.tsx:696 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:494 +#: src/pages/sales/ReturnOrderDetail.tsx:505 +#: src/pages/sales/SalesOrderDetail.tsx:559 msgid "Edit order" msgstr "Upravit objednávku" -#: src/pages/build/BuildDetail.tsx:695 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:497 -#: src/pages/sales/ReturnOrderDetail.tsx:506 -#: src/pages/sales/SalesOrderDetail.tsx:559 +#: src/pages/build/BuildDetail.tsx:700 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:502 +#: src/pages/sales/ReturnOrderDetail.tsx:511 +#: src/pages/sales/SalesOrderDetail.tsx:564 msgid "Duplicate order" msgstr "Duplikovat objednávku" -#: src/pages/build/BuildDetail.tsx:699 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:500 -#: src/pages/sales/ReturnOrderDetail.tsx:511 -#: src/pages/sales/SalesOrderDetail.tsx:562 -msgid "Hold order" -msgstr "Pozastavit objednávku" - #: src/pages/build/BuildDetail.tsx:704 #: src/pages/purchasing/PurchaseOrderDetail.tsx:505 #: src/pages/sales/ReturnOrderDetail.tsx:516 #: src/pages/sales/SalesOrderDetail.tsx:567 +msgid "Hold order" +msgstr "Pozastavit objednávku" + +#: src/pages/build/BuildDetail.tsx:709 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:510 +#: src/pages/sales/ReturnOrderDetail.tsx:521 +#: src/pages/sales/SalesOrderDetail.tsx:572 msgid "Cancel order" msgstr "Zrušit objednávku" -#: src/pages/build/BuildDetail.tsx:742 +#: src/pages/build/BuildDetail.tsx:747 #: src/pages/stock/StockDetail.tsx:344 -#: src/tables/build/BuildAllocatedStockTable.tsx:85 +#: src/tables/build/BuildAllocatedStockTable.tsx:82 #: src/tables/part/PartBuildAllocationsTable.tsx:45 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:157 #: src/tables/stock/StockTrackingTable.tsx:109 @@ -7143,7 +7206,7 @@ msgstr "Výrobní příkaz" #~ msgid "Build order created" #~ msgstr "Build order created" -#: src/pages/build/BuildIndex.tsx:29 +#: src/pages/build/BuildIndex.tsx:35 #: src/tables/build/BuildOrderTable.tsx:184 msgid "Show external build orders" msgstr "Zobrazit externí výrobní příkazy" @@ -7152,61 +7215,82 @@ msgstr "Zobrazit externí výrobní příkazy" #~ msgid "New Build Order" #~ msgstr "New Build Order" -#: src/pages/build/BuildIndex.tsx:83 -#: src/pages/purchasing/PurchasingIndex.tsx:69 -#: src/pages/sales/SalesIndex.tsx:92 -#: src/pages/sales/SalesIndex.tsx:125 +#: src/pages/build/BuildIndex.tsx:74 +#: src/pages/part/CategoryDetail.tsx:292 +#: src/pages/purchasing/PurchasingIndex.tsx:74 +#: src/pages/purchasing/PurchasingIndex.tsx:107 +#: src/pages/purchasing/PurchasingIndex.tsx:135 +#: src/pages/purchasing/PurchasingIndex.tsx:156 +#: src/pages/purchasing/PurchasingIndex.tsx:184 +#: src/pages/sales/SalesIndex.tsx:61 +#: src/pages/sales/SalesIndex.tsx:107 +#: src/pages/sales/SalesIndex.tsx:140 msgid "Table View" msgstr "Zobrazení tabulky" -#: src/pages/build/BuildIndex.tsx:86 -#: src/pages/purchasing/PurchasingIndex.tsx:72 -#: src/pages/sales/SalesIndex.tsx:95 -#: src/pages/sales/SalesIndex.tsx:128 +#: src/pages/build/BuildIndex.tsx:80 +#: src/pages/purchasing/PurchasingIndex.tsx:80 +#: src/pages/sales/SalesIndex.tsx:67 +#: src/pages/sales/SalesIndex.tsx:113 msgid "Calendar View" msgstr "Zobrazení kalendáře" -#: src/pages/company/CompanyDetail.tsx:99 +#: src/pages/build/BuildIndex.tsx:86 +#: src/pages/part/CategoryDetail.tsx:306 +#: src/pages/purchasing/PurchasingIndex.tsx:92 +#: src/pages/purchasing/PurchasingIndex.tsx:118 +#: src/pages/purchasing/PurchasingIndex.tsx:141 +#: src/pages/purchasing/PurchasingIndex.tsx:167 +#: src/pages/purchasing/PurchasingIndex.tsx:190 +#: src/pages/sales/SalesIndex.tsx:79 +#: src/pages/sales/SalesIndex.tsx:125 +#: src/pages/sales/SalesIndex.tsx:151 +msgid "Parametric View" +msgstr "Parametrické zobrazení" + +#: src/pages/company/CompanyDetail.tsx:100 msgid "Website" msgstr "Webová stránka" -#: src/pages/company/CompanyDetail.tsx:107 +#: src/pages/company/CompanyDetail.tsx:108 msgid "Phone Number" msgstr "Telefonní číslo" -#: src/pages/company/CompanyDetail.tsx:114 +#: src/pages/company/CompanyDetail.tsx:115 msgid "Email Address" msgstr "Emailová adresa" -#: src/pages/company/CompanyDetail.tsx:121 +#: src/pages/company/CompanyDetail.tsx:122 msgid "Tax ID" msgstr "DIČ" -#: src/pages/company/CompanyDetail.tsx:131 +#: src/pages/company/CompanyDetail.tsx:132 msgid "Default Currency" msgstr "Výchozí měna" -#: src/pages/company/CompanyDetail.tsx:142 +#: src/pages/company/CompanyDetail.tsx:143 #: src/pages/company/ManufacturerDetail.tsx:8 -#: src/pages/company/ManufacturerPartDetail.tsx:104 -#: src/pages/company/ManufacturerPartDetail.tsx:280 -#: src/pages/company/SupplierPartDetail.tsx:152 +#: src/pages/company/ManufacturerPartDetail.tsx:103 +#: src/pages/company/ManufacturerPartDetail.tsx:271 +#: src/pages/company/SupplierPartDetail.tsx:153 #: src/tables/Filter.tsx:347 #: src/tables/company/CompanyTable.tsx:101 #: src/tables/purchasing/SupplierPartTable.tsx:89 msgid "Manufacturer" msgstr "Výrobce" -#: src/pages/company/CompanyDetail.tsx:148 +#: src/pages/company/CompanyDetail.tsx:149 #: src/pages/company/CustomerDetail.tsx:8 #: src/pages/part/pricing/SaleHistoryPanel.tsx:31 -#: src/pages/sales/ReturnOrderDetail.tsx:123 -#: src/pages/sales/SalesOrderDetail.tsx:113 -#: src/pages/sales/SalesOrderShipmentDetail.tsx:113 +#: src/pages/sales/ReturnOrderDetail.tsx:124 +#: src/pages/sales/SalesOrderDetail.tsx:114 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:111 #: src/pages/stock/StockDetail.tsx:370 #: src/tables/company/CompanyTable.tsx:106 +#: src/tables/sales/ReturnOrderParametricTable.tsx:32 #: src/tables/sales/ReturnOrderTable.tsx:108 -#: src/tables/sales/SalesOrderShipmentTable.tsx:111 +#: src/tables/sales/SalesOrderParametricTable.tsx:32 +#: src/tables/sales/SalesOrderShipmentTable.tsx:132 #: src/tables/sales/SalesOrderTable.tsx:133 #: src/tables/stock/StockTrackingTable.tsx:153 msgid "Customer" @@ -7216,11 +7300,11 @@ msgstr "Zákazník" #~ msgid "Edit company" #~ msgstr "Edit company" -#: src/pages/company/CompanyDetail.tsx:181 +#: src/pages/company/CompanyDetail.tsx:182 msgid "Company Details" msgstr "Údaje o společnosti" -#: src/pages/company/CompanyDetail.tsx:187 +#: src/pages/company/CompanyDetail.tsx:188 msgid "Supplied Parts" msgstr "Dodané díly" @@ -7228,79 +7312,79 @@ msgstr "Dodané díly" #~ msgid "Delete company" #~ msgstr "Delete company" -#: src/pages/company/CompanyDetail.tsx:194 +#: src/pages/company/CompanyDetail.tsx:195 msgid "Manufactured Parts" msgstr "Vyrobené díly" -#: src/pages/company/CompanyDetail.tsx:241 +#: src/pages/company/CompanyDetail.tsx:242 msgid "Assigned Stock" msgstr "Přiřazené zásoby" -#: src/pages/company/CompanyDetail.tsx:282 +#: src/pages/company/CompanyDetail.tsx:287 #: src/tables/company/CompanyTable.tsx:82 msgid "Edit Company" msgstr "Upravit společnost" -#: src/pages/company/CompanyDetail.tsx:290 +#: src/pages/company/CompanyDetail.tsx:295 msgid "Delete Company" msgstr "Odstranit společnost" -#: src/pages/company/CompanyDetail.tsx:305 +#: src/pages/company/CompanyDetail.tsx:310 msgid "Company Actions" msgstr "Akce společnosti" -#: src/pages/company/ManufacturerPartDetail.tsx:78 -#: src/pages/company/SupplierPartDetail.tsx:89 +#: src/pages/company/ManufacturerPartDetail.tsx:77 +#: src/pages/company/SupplierPartDetail.tsx:90 msgid "Internal Part" msgstr "Interní díl" -#: src/pages/company/ManufacturerPartDetail.tsx:112 +#: src/pages/company/ManufacturerPartDetail.tsx:111 msgid "Manufacturer Part Number" msgstr "Číslo dílu výrobce (MPN)" -#: src/pages/company/ManufacturerPartDetail.tsx:129 -#: src/pages/company/SupplierPartDetail.tsx:113 +#: src/pages/company/ManufacturerPartDetail.tsx:128 +#: src/pages/company/SupplierPartDetail.tsx:114 msgid "External Link" msgstr "Externí odkaz" -#: src/pages/company/ManufacturerPartDetail.tsx:148 -#: src/pages/company/SupplierPartDetail.tsx:232 +#: src/pages/company/ManufacturerPartDetail.tsx:147 +#: src/pages/company/SupplierPartDetail.tsx:233 #: src/pages/part/PartDetail.tsx:787 msgid "Part Details" msgstr "Podrobnosti dílu" -#: src/pages/company/ManufacturerPartDetail.tsx:151 +#: src/pages/company/ManufacturerPartDetail.tsx:150 msgid "Manufacturer Details" msgstr "Podrobnosti výrobce" -#: src/pages/company/ManufacturerPartDetail.tsx:160 +#: src/pages/company/ManufacturerPartDetail.tsx:159 msgid "Manufacturer Part Details" msgstr "Podrobnosti dílu výrobce" -#: src/pages/company/ManufacturerPartDetail.tsx:178 -#: src/pages/company/SupplierPartDetail.tsx:252 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:381 +#: src/pages/company/ManufacturerPartDetail.tsx:165 +#: src/pages/company/SupplierPartDetail.tsx:253 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:382 msgid "Received Stock" msgstr "Přijaté zásoby" -#: src/pages/company/ManufacturerPartDetail.tsx:220 +#: src/pages/company/ManufacturerPartDetail.tsx:211 #: src/tables/purchasing/ManufacturerPartTable.tsx:108 msgid "Edit Manufacturer Part" msgstr "Editovat díl výrobce" -#: src/pages/company/ManufacturerPartDetail.tsx:227 +#: src/pages/company/ManufacturerPartDetail.tsx:218 #: src/tables/purchasing/ManufacturerPartTable.tsx:96 #: src/tables/purchasing/ManufacturerPartTable.tsx:115 #: src/tables/purchasing/ManufacturerPartTable.tsx:156 msgid "Add Manufacturer Part" msgstr "Přidat díl výrobce" -#: src/pages/company/ManufacturerPartDetail.tsx:239 +#: src/pages/company/ManufacturerPartDetail.tsx:230 #: src/tables/purchasing/ManufacturerPartTable.tsx:126 msgid "Delete Manufacturer Part" msgstr "Odstranit díl výrobce" -#: src/pages/company/ManufacturerPartDetail.tsx:254 +#: src/pages/company/ManufacturerPartDetail.tsx:245 msgid "Manufacturer Part Actions" msgstr "Akce s dílem výrobce" @@ -7308,12 +7392,12 @@ msgstr "Akce s dílem výrobce" #~ msgid "ManufacturerPart" #~ msgstr "ManufacturerPart" -#: src/pages/company/SupplierPartDetail.tsx:104 +#: src/pages/company/SupplierPartDetail.tsx:105 #: src/tables/part/RelatedPartTable.tsx:82 msgid "Part Description" msgstr "Popis dílu" -#: src/pages/company/SupplierPartDetail.tsx:179 +#: src/pages/company/SupplierPartDetail.tsx:180 #: src/tables/part/PartPurchaseOrdersTable.tsx:73 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:191 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:233 @@ -7321,50 +7405,50 @@ msgstr "Popis dílu" msgid "Pack Quantity" msgstr "Počet kusů v balení" -#: src/pages/company/SupplierPartDetail.tsx:204 +#: src/pages/company/SupplierPartDetail.tsx:205 msgid "Supplier Availability" msgstr "Dostupnost dodavatele" -#: src/pages/company/SupplierPartDetail.tsx:212 +#: src/pages/company/SupplierPartDetail.tsx:213 msgid "Availability Updated" msgstr "Dostupnost aktualizována" -#: src/pages/company/SupplierPartDetail.tsx:237 +#: src/pages/company/SupplierPartDetail.tsx:238 msgid "Availability" msgstr "Dostupnost" -#: src/pages/company/SupplierPartDetail.tsx:246 +#: src/pages/company/SupplierPartDetail.tsx:247 msgid "Supplier Part Details" msgstr "Podrobnosti o dílu dodavatele" -#: src/pages/company/SupplierPartDetail.tsx:279 +#: src/pages/company/SupplierPartDetail.tsx:280 #: src/pages/part/PartPricingPanel.tsx:113 #: src/pages/part/pricing/PricingOverviewPanel.tsx:239 msgid "Supplier Pricing" msgstr "Cena dodavatele" -#: src/pages/company/SupplierPartDetail.tsx:308 +#: src/pages/company/SupplierPartDetail.tsx:313 msgid "Supplier Part Actions" msgstr "Akce týkající se dílu dodavatele" -#: src/pages/company/SupplierPartDetail.tsx:332 +#: src/pages/company/SupplierPartDetail.tsx:337 #: src/tables/purchasing/SupplierPartTable.tsx:244 msgid "Edit Supplier Part" msgstr "Upravit položku" -#: src/pages/company/SupplierPartDetail.tsx:340 +#: src/pages/company/SupplierPartDetail.tsx:345 #: src/tables/purchasing/SupplierPartTable.tsx:264 msgid "Delete Supplier Part" msgstr "Odstranit položku" -#: src/pages/company/SupplierPartDetail.tsx:348 +#: src/pages/company/SupplierPartDetail.tsx:353 #: src/tables/purchasing/SupplierPartTable.tsx:172 #: src/tables/purchasing/SupplierPartTable.tsx:251 msgid "Add Supplier Part" msgstr "Přidat položku" -#: src/pages/company/SupplierPartDetail.tsx:388 -#: src/pages/part/PartDetail.tsx:1003 +#: src/pages/company/SupplierPartDetail.tsx:393 +#: src/pages/part/PartDetail.tsx:1018 msgid "No Stock" msgstr "Není skladem" @@ -7411,83 +7495,83 @@ msgstr "Údaje o uživateli" msgid "Basic user" msgstr "Základní uživatel" -#: src/pages/part/CategoryDetail.tsx:100 +#: src/pages/part/CategoryDetail.tsx:103 #: src/pages/stock/LocationDetail.tsx:94 #: src/tables/settings/ErrorTable.tsx:63 #: src/tables/settings/ErrorTable.tsx:108 msgid "Path" msgstr "Cesta" -#: src/pages/part/CategoryDetail.tsx:116 +#: src/pages/part/CategoryDetail.tsx:119 msgid "Parent Category" msgstr "Nadřazená kategorie" -#: src/pages/part/CategoryDetail.tsx:139 -#: src/pages/part/CategoryDetail.tsx:271 +#: src/pages/part/CategoryDetail.tsx:142 +#: src/pages/part/CategoryDetail.tsx:279 msgid "Subcategories" msgstr "Podkategorie" -#: src/pages/part/CategoryDetail.tsx:146 +#: src/pages/part/CategoryDetail.tsx:149 #: src/pages/stock/LocationDetail.tsx:134 #: src/tables/part/PartCategoryTable.tsx:89 #: src/tables/stock/StockLocationTable.tsx:43 msgid "Structural" msgstr "Strukturální" -#: src/pages/part/CategoryDetail.tsx:152 +#: src/pages/part/CategoryDetail.tsx:155 msgid "Parent default location" msgstr "Výchozí výchozí umístění nadřazeného zařízení" -#: src/pages/part/CategoryDetail.tsx:159 +#: src/pages/part/CategoryDetail.tsx:162 msgid "Default location" msgstr "Výchozí umístění" -#: src/pages/part/CategoryDetail.tsx:170 +#: src/pages/part/CategoryDetail.tsx:173 msgid "Top level part category" msgstr "Kategorie dílu nejvyšší úrovně" -#: src/pages/part/CategoryDetail.tsx:180 -#: src/pages/part/CategoryDetail.tsx:248 +#: src/pages/part/CategoryDetail.tsx:183 +#: src/pages/part/CategoryDetail.tsx:251 #: src/tables/part/PartCategoryTable.tsx:122 msgid "Edit Part Category" msgstr "Upravit kategorii dílu" -#: src/pages/part/CategoryDetail.tsx:189 +#: src/pages/part/CategoryDetail.tsx:192 msgid "Move items to parent category" msgstr "Přesunout položky do nadřazené kategorie" -#: src/pages/part/CategoryDetail.tsx:193 +#: src/pages/part/CategoryDetail.tsx:196 #: src/pages/stock/LocationDetail.tsx:226 msgid "Delete items" msgstr "Odstranit položky" -#: src/pages/part/CategoryDetail.tsx:201 -#: src/pages/part/CategoryDetail.tsx:253 +#: src/pages/part/CategoryDetail.tsx:204 +#: src/pages/part/CategoryDetail.tsx:256 msgid "Delete Part Category" msgstr "Odstranit kategorii dílu" -#: src/pages/part/CategoryDetail.tsx:204 +#: src/pages/part/CategoryDetail.tsx:207 msgid "Parts Action" msgstr "Akce s položkou" -#: src/pages/part/CategoryDetail.tsx:205 +#: src/pages/part/CategoryDetail.tsx:208 msgid "Action for parts in this category" msgstr "Akce pro položky v této kategorii" -#: src/pages/part/CategoryDetail.tsx:211 +#: src/pages/part/CategoryDetail.tsx:214 msgid "Child Categories Action" msgstr "Akce pro podkategorie" -#: src/pages/part/CategoryDetail.tsx:212 +#: src/pages/part/CategoryDetail.tsx:215 msgid "Action for child categories in this category" msgstr "Akce pro podkategorie v této kategorii" -#: src/pages/part/CategoryDetail.tsx:244 +#: src/pages/part/CategoryDetail.tsx:247 #: src/tables/part/PartCategoryTable.tsx:143 msgid "Category Actions" msgstr "Akce kategorie." -#: src/pages/part/CategoryDetail.tsx:265 +#: src/pages/part/CategoryDetail.tsx:273 msgid "Category Details" msgstr "Podrobnosti o kategorii" @@ -7585,7 +7669,6 @@ msgid "Category Default Location" msgstr "Kategorie výchozího umístění" #: src/pages/part/PartDetail.tsx:507 -#: src/tables/purchasing/ManufacturerPartParameterTable.tsx:48 msgid "Units" msgstr "Jednotky" @@ -7600,7 +7683,7 @@ msgstr "Klíčová slova" #: src/pages/part/PartDetail.tsx:542 #: src/tables/bom/BomTable.tsx:439 -#: src/tables/build/BuildLineTable.tsx:305 +#: src/tables/build/BuildLineTable.tsx:306 #: src/tables/part/PartTable.tsx:319 #: src/tables/sales/SalesOrderLineItemTable.tsx:138 msgid "Available Stock" @@ -7608,7 +7691,7 @@ msgstr "Dostupná zásoba" #: src/pages/part/PartDetail.tsx:548 #: src/tables/bom/BomTable.tsx:341 -#: src/tables/build/BuildLineTable.tsx:267 +#: src/tables/build/BuildLineTable.tsx:268 #: src/tables/sales/SalesOrderLineItemTable.tsx:180 msgid "On order" msgstr "Na objednávku" @@ -7634,7 +7717,7 @@ msgstr "Minimální zásoby" #~ msgstr "Scheduling" #: src/pages/part/PartDetail.tsx:620 -#: src/tables/part/ParametricPartTable.tsx:359 +#: src/tables/part/ParametricPartTable.tsx:24 #: src/tables/part/PartTable.tsx:203 msgid "Locked" msgstr "Uzamčeno" @@ -7671,16 +7754,16 @@ msgid "Saleable Part" msgstr "Prodejní díl" #: src/pages/part/PartDetail.tsx:663 -#: src/pages/part/PartDetail.tsx:1033 +#: src/pages/part/PartDetail.tsx:1054 #: src/tables/bom/BomTable.tsx:150 #: src/tables/bom/BomTable.tsx:434 msgid "Virtual Part" msgstr "Virtuální díl" #: src/pages/part/PartDetail.tsx:678 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:271 -#: src/pages/sales/ReturnOrderDetail.tsx:249 -#: src/pages/sales/SalesOrderDetail.tsx:242 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:272 +#: src/pages/sales/ReturnOrderDetail.tsx:250 +#: src/pages/sales/SalesOrderDetail.tsx:243 #: src/tables/ColumnRenderers.tsx:502 msgid "Creation Date" msgstr "Datum vytvoření" @@ -7718,35 +7801,46 @@ msgstr "Poslední sériové číslo" msgid "Select Part Revision" msgstr "Vybrat revizi části" -#: src/pages/part/PartDetail.tsx:823 +#: src/pages/part/PartDetail.tsx:812 msgid "Variants" msgstr "Varianty" -#: src/pages/part/PartDetail.tsx:830 +#: src/pages/part/PartDetail.tsx:819 #: src/pages/stock/StockDetail.tsx:542 msgid "Allocations" msgstr "Přiřazení" -#: src/pages/part/PartDetail.tsx:837 +#: src/pages/part/PartDetail.tsx:826 msgid "Bill of Materials" msgstr "Kusovník" -#: src/pages/part/PartDetail.tsx:849 +#: src/pages/part/PartDetail.tsx:838 msgid "Used In" msgstr "Použito v" -#: src/pages/part/PartDetail.tsx:856 +#: src/pages/part/PartDetail.tsx:845 msgid "Part Pricing" msgstr "Cena dílu" -#: src/pages/part/PartDetail.tsx:926 +#: src/pages/part/PartDetail.tsx:915 msgid "Test Templates" msgstr "Testovací šablony" -#: src/pages/part/PartDetail.tsx:948 +#: src/pages/part/PartDetail.tsx:937 msgid "Related Parts" msgstr "Související díly" +#: src/pages/part/PartDetail.tsx:949 +#: src/tables/ColumnRenderers.tsx:73 +#: src/tables/bom/BomTable.tsx:657 +#: src/tables/part/PartTestTemplateTable.tsx:258 +msgid "Part is Locked" +msgstr "Díl je uzamčen" + +#: src/pages/part/PartDetail.tsx:954 +msgid "Part parameters cannot be edited, as the part is locked" +msgstr "Parametr dílu nemůže být upraven, díl je uzamčen" + #: src/pages/part/PartDetail.tsx:956 #~ msgid "Count part stock" #~ msgstr "Count part stock" @@ -7755,42 +7849,46 @@ msgstr "Související díly" #~ msgid "Transfer part stock" #~ msgstr "Transfer part stock" -#: src/pages/part/PartDetail.tsx:1009 +#: src/pages/part/PartDetail.tsx:1024 #: src/tables/part/PartTestTemplateTable.tsx:112 #: src/tables/stock/StockItemTestResultTable.tsx:404 msgid "Required" msgstr "Požadováno" -#: src/pages/part/PartDetail.tsx:1058 +#: src/pages/part/PartDetail.tsx:1042 +msgid "Deficit" +msgstr "Deficit" + +#: src/pages/part/PartDetail.tsx:1079 #: src/tables/part/PartTable.tsx:396 #: src/tables/part/PartTable.tsx:449 msgid "Add Part" msgstr "Přidat díl" -#: src/pages/part/PartDetail.tsx:1072 +#: src/pages/part/PartDetail.tsx:1093 msgid "Delete Part" msgstr "Odstranit díl" -#: src/pages/part/PartDetail.tsx:1081 +#: src/pages/part/PartDetail.tsx:1102 msgid "Deleting this part cannot be reversed" msgstr "Odstranění této části nelze vrátit zpět" -#: src/pages/part/PartDetail.tsx:1143 +#: src/pages/part/PartDetail.tsx:1164 #: src/pages/stock/StockDetail.tsx:883 msgid "Order" msgstr "Objednávka" -#: src/pages/part/PartDetail.tsx:1144 +#: src/pages/part/PartDetail.tsx:1165 #: src/pages/stock/StockDetail.tsx:884 -#: src/tables/build/BuildLineTable.tsx:761 +#: src/tables/build/BuildLineTable.tsx:768 msgid "Order Stock" msgstr "Objednat zásoby" -#: src/pages/part/PartDetail.tsx:1156 +#: src/pages/part/PartDetail.tsx:1177 msgid "Search by serial number" msgstr "Vyhledat podle sériového čísla" -#: src/pages/part/PartDetail.tsx:1164 +#: src/pages/part/PartDetail.tsx:1185 #: src/tables/part/PartTable.tsx:506 msgid "Part Actions" msgstr "Akce s položkou" @@ -8039,7 +8137,7 @@ msgstr "Nákupní cena" #: src/pages/part/pricing/PricingOverviewPanel.tsx:288 #: src/pages/stock/StockDetail.tsx:426 -#: src/tables/part/PartParameterTable.tsx:121 +#: src/tables/general/ParameterTable.tsx:101 #: src/tables/stock/StockItemTable.tsx:300 msgid "Last Updated" msgstr "Naposledy aktualizováno" @@ -8107,17 +8205,17 @@ msgstr "Cena dodavatele" msgid "Variant Part" msgstr "Část varianty" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:89 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:90 msgid "Edit Purchase Order" msgstr "Upravit objednávku" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:125 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:126 #: src/tables/purchasing/PurchaseOrderTable.tsx:154 #: src/tables/purchasing/PurchaseOrderTable.tsx:167 msgid "Add Purchase Order" msgstr "Přidat do objednávky" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:147 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:148 msgid "Supplier Reference" msgstr "Reference dodavatele" @@ -8127,20 +8225,20 @@ msgstr "Reference dodavatele" #~ msgid "Order Currency," #~ msgstr "Order Currency," -#: src/pages/purchasing/PurchaseOrderDetail.tsx:187 -#: src/pages/sales/ReturnOrderDetail.tsx:160 -#: src/pages/sales/SalesOrderDetail.tsx:144 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:188 +#: src/pages/sales/ReturnOrderDetail.tsx:161 +#: src/pages/sales/SalesOrderDetail.tsx:145 msgid "Completed Line Items" msgstr "Dokončené řádkové položky" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:196 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:197 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:272 msgid "Destination" msgstr "Destinace" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:202 -#: src/pages/sales/ReturnOrderDetail.tsx:167 -#: src/pages/sales/SalesOrderDetail.tsx:161 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:203 +#: src/pages/sales/ReturnOrderDetail.tsx:168 +#: src/pages/sales/SalesOrderDetail.tsx:162 msgid "Order Currency" msgstr "Měna objednávky:" @@ -8150,97 +8248,97 @@ msgstr "Měna objednávky:" #~ msgid "Created On" #~ msgstr "Created On" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:208 -#: src/pages/sales/ReturnOrderDetail.tsx:174 -#: src/pages/sales/SalesOrderDetail.tsx:167 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:209 +#: src/pages/sales/ReturnOrderDetail.tsx:175 +#: src/pages/sales/SalesOrderDetail.tsx:168 msgid "Total Cost" msgstr "Celková cena" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:237 -#: src/pages/sales/ReturnOrderDetail.tsx:215 -#: src/pages/sales/SalesOrderDetail.tsx:208 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:238 +#: src/pages/sales/ReturnOrderDetail.tsx:216 +#: src/pages/sales/SalesOrderDetail.tsx:209 msgid "Contact Email" msgstr "Kontaktní e-mail" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:245 -#: src/pages/sales/ReturnOrderDetail.tsx:223 -#: src/pages/sales/SalesOrderDetail.tsx:216 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:246 +#: src/pages/sales/ReturnOrderDetail.tsx:224 +#: src/pages/sales/SalesOrderDetail.tsx:217 msgid "Contact Phone" msgstr "Kontaktní telefon" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:278 -#: src/pages/sales/ReturnOrderDetail.tsx:257 -#: src/pages/sales/SalesOrderDetail.tsx:249 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:279 +#: src/pages/sales/ReturnOrderDetail.tsx:258 +#: src/pages/sales/SalesOrderDetail.tsx:250 msgid "Issue Date" msgstr "Datum vystavení" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:303 -#: src/pages/sales/ReturnOrderDetail.tsx:281 -#: src/pages/sales/SalesOrderDetail.tsx:272 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:304 +#: src/pages/sales/ReturnOrderDetail.tsx:282 +#: src/pages/sales/SalesOrderDetail.tsx:273 #: src/tables/ColumnRenderers.tsx:510 #: src/tables/build/BuildOrderTable.tsx:137 #: src/tables/part/PartPurchaseOrdersTable.tsx:106 msgid "Completion Date" msgstr "Datum dokončení" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:333 -#: src/pages/sales/ReturnOrderDetail.tsx:311 -#: src/pages/sales/SalesOrderDetail.tsx:349 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:334 +#: src/pages/sales/ReturnOrderDetail.tsx:312 +#: src/pages/sales/SalesOrderDetail.tsx:350 msgid "Order Details" msgstr "Detail objednávky" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:339 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:348 -#: src/pages/sales/ReturnOrderDetail.tsx:153 -#: src/pages/sales/ReturnOrderDetail.tsx:317 -#: src/pages/sales/ReturnOrderDetail.tsx:326 -#: src/pages/sales/SalesOrderDetail.tsx:355 -#: src/pages/sales/SalesOrderDetail.tsx:364 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:340 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:349 +#: src/pages/sales/ReturnOrderDetail.tsx:154 +#: src/pages/sales/ReturnOrderDetail.tsx:318 +#: src/pages/sales/ReturnOrderDetail.tsx:327 +#: src/pages/sales/SalesOrderDetail.tsx:356 +#: src/pages/sales/SalesOrderDetail.tsx:365 msgid "Line Items" msgstr "Položky" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:363 -#: src/pages/sales/ReturnOrderDetail.tsx:341 -#: src/pages/sales/SalesOrderDetail.tsx:378 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:364 +#: src/pages/sales/ReturnOrderDetail.tsx:342 +#: src/pages/sales/SalesOrderDetail.tsx:379 msgid "Extra Line Items" msgstr "Položky navíc" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:405 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:410 msgid "Issue Purchase Order" msgstr "Vystavit objednávku" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:413 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:418 msgid "Cancel Purchase Order" msgstr "Zrušit objednávku" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:421 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:426 msgid "Hold Purchase Order" msgstr "Pozastavit objednávku" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:429 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:434 msgid "Complete Purchase Order" msgstr "Dokončit objednávku" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:485 -#: src/pages/sales/ReturnOrderDetail.tsx:496 -#: src/pages/sales/SalesOrderDetail.tsx:549 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:490 +#: src/pages/sales/ReturnOrderDetail.tsx:501 +#: src/pages/sales/SalesOrderDetail.tsx:554 msgid "Order Actions" msgstr "Akce objednávky" -#: src/pages/sales/ReturnOrderDetail.tsx:114 -#: src/pages/sales/SalesOrderDetail.tsx:104 -#: src/pages/sales/SalesOrderShipmentDetail.tsx:134 +#: src/pages/sales/ReturnOrderDetail.tsx:115 +#: src/pages/sales/SalesOrderDetail.tsx:105 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:132 #: src/tables/sales/SalesOrderTable.tsx:141 msgid "Customer Reference" msgstr "Reference zákazníka" -#: src/pages/sales/ReturnOrderDetail.tsx:195 +#: src/pages/sales/ReturnOrderDetail.tsx:196 msgid "Return Address" msgstr "Zpáteční adresa" -#: src/pages/sales/ReturnOrderDetail.tsx:201 -#: src/pages/sales/SalesOrderDetail.tsx:194 -#: src/pages/sales/SalesOrderShipmentDetail.tsx:181 +#: src/pages/sales/ReturnOrderDetail.tsx:202 +#: src/pages/sales/SalesOrderDetail.tsx:195 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:179 msgid "Not specified" msgstr "Není specifikováno" @@ -8248,117 +8346,117 @@ msgstr "Není specifikováno" #~ msgid "Order canceled" #~ msgstr "Order canceled" -#: src/pages/sales/ReturnOrderDetail.tsx:389 +#: src/pages/sales/ReturnOrderDetail.tsx:394 msgid "Edit Return Order" msgstr "Upravit vratku" -#: src/pages/sales/ReturnOrderDetail.tsx:407 +#: src/pages/sales/ReturnOrderDetail.tsx:412 #: src/tables/sales/ReturnOrderTable.tsx:154 #: src/tables/sales/ReturnOrderTable.tsx:167 msgid "Add Return Order" msgstr "Přidat vratku" -#: src/pages/sales/ReturnOrderDetail.tsx:416 +#: src/pages/sales/ReturnOrderDetail.tsx:421 msgid "Issue Return Order" msgstr "Zadat vratku" -#: src/pages/sales/ReturnOrderDetail.tsx:424 +#: src/pages/sales/ReturnOrderDetail.tsx:429 msgid "Cancel Return Order" msgstr "Zkušit vratku" -#: src/pages/sales/ReturnOrderDetail.tsx:432 +#: src/pages/sales/ReturnOrderDetail.tsx:437 msgid "Hold Return Order" msgstr "Pozastavit vratku" -#: src/pages/sales/ReturnOrderDetail.tsx:440 +#: src/pages/sales/ReturnOrderDetail.tsx:445 msgid "Complete Return Order" msgstr "Dokončit vratku" -#: src/pages/sales/SalesOrderDetail.tsx:153 +#: src/pages/sales/SalesOrderDetail.tsx:154 msgid "Completed Shipments" msgstr "Dokončit zásilky" -#: src/pages/sales/SalesOrderDetail.tsx:188 -#: src/pages/sales/SalesOrderShipmentDetail.tsx:170 +#: src/pages/sales/SalesOrderDetail.tsx:189 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:168 msgid "Shipping Address" msgstr "Doručovací adresa" -#: src/pages/sales/SalesOrderDetail.tsx:316 +#: src/pages/sales/SalesOrderDetail.tsx:317 msgid "Edit Sales Order" msgstr "Upravit projední objednávky" -#: src/pages/sales/SalesOrderDetail.tsx:338 +#: src/pages/sales/SalesOrderDetail.tsx:339 #: src/tables/sales/SalesOrderTable.tsx:108 #: src/tables/sales/SalesOrderTable.tsx:121 msgid "Add Sales Order" msgstr "Přidat prodejní objednávku" -#: src/pages/sales/SalesOrderDetail.tsx:396 +#: src/pages/sales/SalesOrderDetail.tsx:397 #: src/tables/sales/SalesOrderTable.tsx:147 msgid "Shipments" msgstr "Zásilky" -#: src/pages/sales/SalesOrderDetail.tsx:443 +#: src/pages/sales/SalesOrderDetail.tsx:448 msgid "Issue Sales Order" msgstr "Zadat prodejní objednávku" -#: src/pages/sales/SalesOrderDetail.tsx:451 +#: src/pages/sales/SalesOrderDetail.tsx:456 msgid "Cancel Sales Order" msgstr "Zrušit prodejní objednávku" -#: src/pages/sales/SalesOrderDetail.tsx:459 +#: src/pages/sales/SalesOrderDetail.tsx:464 msgid "Hold Sales Order" msgstr "Pozastavit prodejní objednávku" -#: src/pages/sales/SalesOrderDetail.tsx:467 +#: src/pages/sales/SalesOrderDetail.tsx:472 msgid "Ship Sales Order" msgstr "Odeslat prodejní objednávku" -#: src/pages/sales/SalesOrderDetail.tsx:469 +#: src/pages/sales/SalesOrderDetail.tsx:474 msgid "Ship this order?" msgstr "Odeslat tuto objednávku?" -#: src/pages/sales/SalesOrderDetail.tsx:470 +#: src/pages/sales/SalesOrderDetail.tsx:475 msgid "Order shipped" msgstr "Objednávka odeslána" -#: src/pages/sales/SalesOrderDetail.tsx:478 +#: src/pages/sales/SalesOrderDetail.tsx:483 msgid "Complete Sales Order" msgstr "Dokončit prodejní objednávku" -#: src/pages/sales/SalesOrderDetail.tsx:523 +#: src/pages/sales/SalesOrderDetail.tsx:528 msgid "Ship Order" msgstr "Odeslat objednávku" -#: src/pages/sales/SalesOrderShipmentDetail.tsx:142 -#: src/tables/sales/SalesOrderShipmentTable.tsx:135 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:140 +#: src/tables/sales/SalesOrderShipmentTable.tsx:156 msgid "Shipment Reference" msgstr "Referenční číslo zásilky" -#: src/pages/sales/SalesOrderShipmentDetail.tsx:148 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:146 msgid "Tracking Number" msgstr "Sledovací číslo" -#: src/pages/sales/SalesOrderShipmentDetail.tsx:156 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:154 msgid "Invoice Number" msgstr "Číslo faktury" -#: src/pages/sales/SalesOrderShipmentDetail.tsx:191 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:189 msgid "Allocated Items" msgstr "Přidělené položky" -#: src/pages/sales/SalesOrderShipmentDetail.tsx:196 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:194 msgid "Checked By" msgstr "Zkontroloval(a)" -#: src/pages/sales/SalesOrderShipmentDetail.tsx:202 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:200 msgid "Not checked" msgstr "Není zkontrolováno" -#: src/pages/sales/SalesOrderShipmentDetail.tsx:208 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:206 #: src/tables/ColumnRenderers.tsx:518 #: src/tables/sales/SalesOrderAllocationTable.tsx:182 -#: src/tables/sales/SalesOrderShipmentTable.tsx:168 +#: src/tables/sales/SalesOrderShipmentTable.tsx:189 msgid "Shipment Date" msgstr "Datum odeslání" @@ -8366,108 +8464,82 @@ msgstr "Datum odeslání" #~ msgid "Assigned Items" #~ msgstr "Assigned Items" -#: src/pages/sales/SalesOrderShipmentDetail.tsx:216 -#: src/tables/sales/SalesOrderShipmentTable.tsx:172 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:214 +#: src/tables/sales/SalesOrderShipmentTable.tsx:193 msgid "Delivery Date" msgstr "Datum doručení" -#: src/pages/sales/SalesOrderShipmentDetail.tsx:255 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:253 msgid "Shipment Details" msgstr "Podrobnosti o zásilce" -#: src/pages/sales/SalesOrderShipmentDetail.tsx:294 -#: src/pages/sales/SalesOrderShipmentDetail.tsx:438 -#: src/tables/sales/SalesOrderShipmentTable.tsx:90 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:292 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:406 +#: src/tables/sales/SalesOrderShipmentTable.tsx:97 msgid "Edit Shipment" msgstr "Upravit zásilku" -#: src/pages/sales/SalesOrderShipmentDetail.tsx:301 -#: src/pages/sales/SalesOrderShipmentDetail.tsx:457 -#: src/tables/sales/SalesOrderShipmentTable.tsx:82 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:299 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:425 +#: src/tables/sales/SalesOrderShipmentTable.tsx:89 msgid "Cancel Shipment" msgstr "Zrušit zásilku" -#: src/pages/sales/SalesOrderShipmentDetail.tsx:314 -#: src/tables/sales/SalesOrderShipmentTable.tsx:98 -#: src/tables/sales/SalesOrderShipmentTable.tsx:193 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:312 +#: src/tables/sales/SalesOrderShipmentTable.tsx:119 +#: src/tables/sales/SalesOrderShipmentTable.tsx:238 msgid "Complete Shipment" msgstr "Dokončit zásilku" -#: src/pages/sales/SalesOrderShipmentDetail.tsx:326 -#: src/pages/sales/SalesOrderShipmentDetail.tsx:328 -msgid "Check Shipment" -msgstr "Zkontrolovat zásilku" - -#: src/pages/sales/SalesOrderShipmentDetail.tsx:329 -msgid "Marking the shipment as checked indicates that you have verified that all items included in this shipment are correct" -msgstr "Označení zásilky jako zkontrolovanou znamená, že jste ověřily, že všechny položky v této zásilce jsou správné" - #: src/pages/sales/SalesOrderShipmentDetail.tsx:339 -msgid "Shipment marked as checked" -msgstr "Zásilka označena jako zkontrolována" - -#: src/pages/sales/SalesOrderShipmentDetail.tsx:346 -#: src/pages/sales/SalesOrderShipmentDetail.tsx:348 -msgid "Uncheck Shipment" -msgstr "Odznačit zásilku" - -#: src/pages/sales/SalesOrderShipmentDetail.tsx:349 -msgid "Marking the shipment as unchecked indicates that the shipment requires further verification" -msgstr "Označení zásilky jako nezkontrolované znamená, že zásilka vyžaduje další ověření" - -#: src/pages/sales/SalesOrderShipmentDetail.tsx:359 -msgid "Shipment marked as unchecked" -msgstr "Zásilka označená jako nezkontrolována" - -#: src/pages/sales/SalesOrderShipmentDetail.tsx:371 #: src/tables/part/PartPurchaseOrdersTable.tsx:122 msgid "Pending" msgstr "Nevyřízeno" -#: src/pages/sales/SalesOrderShipmentDetail.tsx:377 -#: src/tables/sales/SalesOrderShipmentTable.tsx:147 -#: src/tables/sales/SalesOrderShipmentTable.tsx:254 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:345 +#: src/tables/sales/SalesOrderShipmentTable.tsx:168 +#: src/tables/sales/SalesOrderShipmentTable.tsx:299 msgid "Checked" msgstr "Zkontrolováno" -#: src/pages/sales/SalesOrderShipmentDetail.tsx:383 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:351 msgid "Not Checked" msgstr "Nezkontrolováno" -#: src/pages/sales/SalesOrderShipmentDetail.tsx:389 -#: src/tables/sales/SalesOrderShipmentTable.tsx:154 -#: src/tables/sales/SalesOrderShipmentTable.tsx:259 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:357 +#: src/tables/sales/SalesOrderShipmentTable.tsx:175 +#: src/tables/sales/SalesOrderShipmentTable.tsx:304 msgid "Shipped" msgstr "Odesláno" -#: src/pages/sales/SalesOrderShipmentDetail.tsx:395 -#: src/tables/sales/SalesOrderShipmentTable.tsx:161 -#: src/tables/sales/SalesOrderShipmentTable.tsx:264 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:363 +#: src/tables/sales/SalesOrderShipmentTable.tsx:182 +#: src/tables/sales/SalesOrderShipmentTable.tsx:309 #: src/tables/settings/EmailTable.tsx:31 msgid "Delivered" msgstr "Doručeno" -#: src/pages/sales/SalesOrderShipmentDetail.tsx:410 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:378 msgid "Send Shipment" msgstr "Odeslat zásilku" -#: src/pages/sales/SalesOrderShipmentDetail.tsx:433 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:401 msgid "Shipment Actions" msgstr "Akce dodávky" -#: src/pages/sales/SalesOrderShipmentDetail.tsx:442 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:410 msgid "Check" msgstr "Kontrola" -#: src/pages/sales/SalesOrderShipmentDetail.tsx:443 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:411 msgid "Mark shipment as checked" msgstr "Označit zásilku jako zkontrolovanou" -#: src/pages/sales/SalesOrderShipmentDetail.tsx:449 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:417 msgid "Uncheck" msgstr "Odznačit zkontrolování" -#: src/pages/sales/SalesOrderShipmentDetail.tsx:450 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:418 msgid "Mark shipment as unchecked" msgstr "Označit zásilku jako nezkontrolovanou" @@ -8775,13 +8847,6 @@ msgstr "Chyba při načítání balíčku ikon ze serveru" msgid "Part is not active" msgstr "Součást není aktivní" -#: src/tables/ColumnRenderers.tsx:73 -#: src/tables/bom/BomTable.tsx:657 -#: src/tables/part/PartParameterTable.tsx:227 -#: src/tables/part/PartTestTemplateTable.tsx:258 -msgid "Part is Locked" -msgstr "Díl je uzamčen" - #: src/tables/ColumnRenderers.tsx:78 msgid "You are subscribed to notifications for this part" msgstr "Jste přihlášeni k odběru oznámení v tomto dílu" @@ -9219,13 +9284,13 @@ msgstr "Virtuální díl" #~ msgstr "Show asssmbled items" #: src/tables/bom/BomTable.tsx:315 -#: src/tables/build/BuildLineTable.tsx:276 +#: src/tables/build/BuildLineTable.tsx:277 #: src/tables/part/PartTable.tsx:145 msgid "External stock" msgstr "Externí zásoby" #: src/tables/bom/BomTable.tsx:323 -#: src/tables/build/BuildLineTable.tsx:239 +#: src/tables/build/BuildLineTable.tsx:240 msgid "Includes substitute stock" msgstr "Zahrnuje náhradní zásoby" @@ -9234,7 +9299,7 @@ msgstr "Zahrnuje náhradní zásoby" #~ msgstr "Edit Bom Item" #: src/tables/bom/BomTable.tsx:332 -#: src/tables/build/BuildLineTable.tsx:249 +#: src/tables/build/BuildLineTable.tsx:250 #: src/tables/sales/SalesOrderLineItemTable.tsx:166 msgid "Includes variant stock" msgstr "Zahrnuje variantu zásob" @@ -9272,8 +9337,8 @@ msgid "Stock Information" msgstr "Informace o skladu" #: src/tables/bom/BomTable.tsx:399 -#: src/tables/build/BuildLineTable.tsx:496 -#: src/tables/build/BuildLineTable.tsx:537 +#: src/tables/build/BuildLineTable.tsx:497 +#: src/tables/build/BuildLineTable.tsx:538 msgid "Consumable item" msgstr "Spotřební materiál" @@ -9282,7 +9347,7 @@ msgid "No available stock" msgstr "Není k dispozici skladem" #: src/tables/bom/BomTable.tsx:420 -#: src/tables/build/BuildLineTable.tsx:213 +#: src/tables/build/BuildLineTable.tsx:214 msgid "Show testable items" msgstr "Zobrazovat testovatelné položky" @@ -9291,7 +9356,7 @@ msgid "Show trackable items" msgstr "Zobrazit sledovatelné předměty" #: src/tables/bom/BomTable.tsx:430 -#: src/tables/build/BuildLineTable.tsx:208 +#: src/tables/build/BuildLineTable.tsx:209 msgid "Show assembled items" msgstr "Zobrazit smontované položky" @@ -9335,7 +9400,7 @@ msgstr "Zobrazit položky, které umožňují výměnu variant" #: src/tables/bom/BomTable.tsx:464 #: src/tables/bom/UsedInTable.tsx:85 -#: src/tables/build/BuildLineTable.tsx:202 +#: src/tables/build/BuildLineTable.tsx:203 msgid "Optional" msgstr "Volitelné" @@ -9345,7 +9410,7 @@ msgid "Show optional items" msgstr "Zobrazit volitelné položky" #: src/tables/bom/BomTable.tsx:469 -#: src/tables/build/BuildLineTable.tsx:197 +#: src/tables/build/BuildLineTable.tsx:198 msgid "Consumable" msgstr "Spotřební" @@ -9420,6 +9485,7 @@ msgid "Add a single BOM item" msgstr "Přidat jednu BOM položku" #: src/tables/bom/BomTable.tsx:637 +#: src/tables/general/ParameterTable.tsx:206 #: src/tables/part/PartTable.tsx:546 msgid "Import from File" msgstr "Importovat ze souboru" @@ -9433,8 +9499,8 @@ msgid "Bill of materials cannot be edited, as the part is locked" msgstr "Kusovník nemůže být upraven, díl je uzamčen" #: src/tables/bom/UsedInTable.tsx:34 -#: src/tables/build/BuildLineTable.tsx:207 -#: src/tables/part/ParametricPartTable.tsx:364 +#: src/tables/build/BuildLineTable.tsx:208 +#: src/tables/part/ParametricPartTable.tsx:29 #: src/tables/part/PartBuildAllocationsTable.tsx:60 #: src/tables/part/PartTable.tsx:209 #: src/tables/stock/StockItemTable.tsx:333 @@ -9455,11 +9521,11 @@ msgstr "Sledovatelné" msgid "Show trackable assemblies" msgstr "Zobrazit sledovatelné montáže" -#: src/tables/build/BuildAllocatedStockTable.tsx:67 +#: src/tables/build/BuildAllocatedStockTable.tsx:64 msgid "Allocated to Output" msgstr "Přidělen výstup" -#: src/tables/build/BuildAllocatedStockTable.tsx:68 +#: src/tables/build/BuildAllocatedStockTable.tsx:65 msgid "Show items allocated to a build output" msgstr "Zobrazit položky přiřazené k výstupu výstavby" @@ -9472,50 +9538,68 @@ msgstr "Zobrazit položky přiřazené k výstupu výstavby" #~ msgid "Include orders for part variants" #~ msgstr "Include orders for part variants" -#: src/tables/build/BuildAllocatedStockTable.tsx:97 +#: src/tables/build/BuildAllocatedStockTable.tsx:94 #: src/tables/part/PartBuildAllocationsTable.tsx:84 #: src/tables/part/PartPurchaseOrdersTable.tsx:132 #: src/tables/part/PartSalesAllocationsTable.tsx:69 #: src/tables/sales/SalesOrderAllocationTable.tsx:122 -#: src/tables/sales/SalesOrderShipmentTable.tsx:130 +#: src/tables/sales/SalesOrderShipmentTable.tsx:151 msgid "Order Status" msgstr "Stav objednávky" +#: src/tables/build/BuildAllocatedStockTable.tsx:164 +#: src/tables/build/BuildLineTable.tsx:651 +msgid "Edit Stock Allocation" +msgstr "Upravit přiřazení zásob" + #: src/tables/build/BuildAllocatedStockTable.tsx:164 #~ msgid "Edit Build Item" #~ msgstr "Edit Build Item" -#: src/tables/build/BuildAllocatedStockTable.tsx:167 -#: src/tables/build/BuildLineTable.tsx:650 -msgid "Edit Stock Allocation" -msgstr "Upravit přiřazení zásob" - #: src/tables/build/BuildAllocatedStockTable.tsx:174 #~ msgid "Delete Build Item" #~ msgstr "Delete Build Item" +#: src/tables/build/BuildAllocatedStockTable.tsx:177 +#: src/tables/build/BuildLineTable.tsx:664 +#: src/tables/sales/SalesOrderAllocationTable.tsx:218 +msgid "Remove Allocated Stock" +msgstr "Odstranit přidělené zásoby" + #: src/tables/build/BuildAllocatedStockTable.tsx:180 #: src/tables/build/BuildLineTable.tsx:663 -msgid "Delete Stock Allocation" -msgstr "Odstranit přiřazení zásob" +#~ msgid "Delete Stock Allocation" +#~ msgstr "Delete Stock Allocation" -#: src/tables/build/BuildAllocatedStockTable.tsx:239 +#: src/tables/build/BuildAllocatedStockTable.tsx:182 +#: src/tables/build/BuildLineTable.tsx:669 +#: src/tables/sales/SalesOrderAllocationTable.tsx:221 +msgid "Are you sure you want to remove this allocated stock from the order?" +msgstr "Jste si jisti, že chcete odstranit tuto přiřazenou skladovou zásobu z objednávky?" + +#: src/tables/build/BuildAllocatedStockTable.tsx:242 msgid "Consume" msgstr "Spotřebovat" +#: src/tables/build/BuildAllocatedStockTable.tsx:259 +#: src/tables/build/BuildLineTable.tsx:112 +#: src/tables/sales/SalesOrderAllocationTable.tsx:248 +msgid "Remove allocated stock" +msgstr "Odstranit přidělené zásoby" + #: src/tables/build/BuildLineTable.tsx:59 #~ msgid "Show lines with available stock" #~ msgstr "Show lines with available stock" -#: src/tables/build/BuildLineTable.tsx:120 +#: src/tables/build/BuildLineTable.tsx:121 msgid "View Stock Item" msgstr "Zobrazit skladovou položku" -#: src/tables/build/BuildLineTable.tsx:183 +#: src/tables/build/BuildLineTable.tsx:184 msgid "Show fully allocated lines" msgstr "Zobrazit plně přidělené řádky" -#: src/tables/build/BuildLineTable.tsx:188 +#: src/tables/build/BuildLineTable.tsx:189 msgid "Show fully consumed lines" msgstr "Zobrazit plně spotřebované řádky" @@ -9523,124 +9607,124 @@ msgstr "Zobrazit plně spotřebované řádky" #~ msgid "Show allocated lines" #~ msgstr "Show allocated lines" -#: src/tables/build/BuildLineTable.tsx:193 +#: src/tables/build/BuildLineTable.tsx:194 msgid "Show items with sufficient available stock" msgstr "Zobrazit předměty s dostatečnými zásobami" -#: src/tables/build/BuildLineTable.tsx:198 +#: src/tables/build/BuildLineTable.tsx:199 msgid "Show consumable lines" msgstr "Zobrazit spotřební řádky" -#: src/tables/build/BuildLineTable.tsx:203 +#: src/tables/build/BuildLineTable.tsx:204 msgid "Show optional lines" msgstr "Zobrazit volitelné řádky" -#: src/tables/build/BuildLineTable.tsx:212 +#: src/tables/build/BuildLineTable.tsx:213 #: src/tables/part/PartTable.tsx:233 msgid "Testable" msgstr "Testovatelné" -#: src/tables/build/BuildLineTable.tsx:217 +#: src/tables/build/BuildLineTable.tsx:218 #: src/tables/stock/StockItemTable.tsx:388 msgid "Tracked" msgstr "Sledováno" -#: src/tables/build/BuildLineTable.tsx:218 +#: src/tables/build/BuildLineTable.tsx:219 msgid "Show tracked lines" msgstr "Zobrazit sledované řádky" -#: src/tables/build/BuildLineTable.tsx:223 +#: src/tables/build/BuildLineTable.tsx:224 msgid "Show items with stock on order" msgstr "Zobrazit položky skladem k objednávce" -#: src/tables/build/BuildLineTable.tsx:258 +#: src/tables/build/BuildLineTable.tsx:259 #: src/tables/sales/SalesOrderLineItemTable.tsx:172 msgid "In production" msgstr "Ve výrobě" -#: src/tables/build/BuildLineTable.tsx:286 +#: src/tables/build/BuildLineTable.tsx:287 msgid "Insufficient stock" msgstr "Nedostatek zásob" -#: src/tables/build/BuildLineTable.tsx:302 +#: src/tables/build/BuildLineTable.tsx:303 #: src/tables/sales/SalesOrderLineItemTable.tsx:160 #: src/tables/stock/StockItemTable.tsx:191 msgid "No stock available" msgstr "Není na skladě" -#: src/tables/build/BuildLineTable.tsx:375 +#: src/tables/build/BuildLineTable.tsx:376 msgid "Gets Inherited" msgstr "Zděděný" -#: src/tables/build/BuildLineTable.tsx:388 +#: src/tables/build/BuildLineTable.tsx:389 msgid "Unit Quantity" msgstr "Jednotkové množství" -#: src/tables/build/BuildLineTable.tsx:415 +#: src/tables/build/BuildLineTable.tsx:416 msgid "Setup Quantity" msgstr "Nastavit množství" -#: src/tables/build/BuildLineTable.tsx:424 +#: src/tables/build/BuildLineTable.tsx:425 msgid "Attrition" msgstr "Přirozené ztráty" -#: src/tables/build/BuildLineTable.tsx:432 +#: src/tables/build/BuildLineTable.tsx:433 msgid "Rounding Multiple" msgstr "Zaokrouhlení více" -#: src/tables/build/BuildLineTable.tsx:441 +#: src/tables/build/BuildLineTable.tsx:442 msgid "BOM Information" msgstr "Informace kusovníku" -#: src/tables/build/BuildLineTable.tsx:515 +#: src/tables/build/BuildLineTable.tsx:516 #: src/tables/part/PartBuildAllocationsTable.tsx:102 msgid "Fully allocated" msgstr "Plně přiděleno" -#: src/tables/build/BuildLineTable.tsx:563 +#: src/tables/build/BuildLineTable.tsx:564 #: src/tables/sales/SalesOrderLineItemTable.tsx:311 msgid "Create Build Order" msgstr "Vytvořit výrobní příkaz" -#: src/tables/build/BuildLineTable.tsx:592 +#: src/tables/build/BuildLineTable.tsx:593 msgid "Auto allocation in progress" msgstr "Probíhá automatické přidělování" -#: src/tables/build/BuildLineTable.tsx:595 -#: src/tables/build/BuildLineTable.tsx:802 +#: src/tables/build/BuildLineTable.tsx:596 +#: src/tables/build/BuildLineTable.tsx:809 msgid "Auto Allocate Stock" msgstr "Automatické přiřazení zásob" -#: src/tables/build/BuildLineTable.tsx:596 +#: src/tables/build/BuildLineTable.tsx:597 msgid "Automatically allocate stock to this build according to the selected options" msgstr "Automaticky přiřadit zásoby do této výstavby podle zvolených možností" -#: src/tables/build/BuildLineTable.tsx:616 -#: src/tables/build/BuildLineTable.tsx:630 -#: src/tables/build/BuildLineTable.tsx:751 -#: src/tables/build/BuildLineTable.tsx:852 +#: src/tables/build/BuildLineTable.tsx:617 +#: src/tables/build/BuildLineTable.tsx:631 +#: src/tables/build/BuildLineTable.tsx:758 +#: src/tables/build/BuildLineTable.tsx:859 #: src/tables/build/BuildOutputTable.tsx:355 #: src/tables/build/BuildOutputTable.tsx:360 msgid "Deallocate Stock" msgstr "Uvolnění zásob" -#: src/tables/build/BuildLineTable.tsx:632 +#: src/tables/build/BuildLineTable.tsx:633 msgid "Deallocate all untracked stock for this build order" msgstr "Uvolnit všechny nesledované zásoby pro tuto stavební objednávku" -#: src/tables/build/BuildLineTable.tsx:634 +#: src/tables/build/BuildLineTable.tsx:635 msgid "Deallocate stock from the selected line item" msgstr "Uvolnit veškeré zásoby z vybrané položky" -#: src/tables/build/BuildLineTable.tsx:638 +#: src/tables/build/BuildLineTable.tsx:639 msgid "Stock has been deallocated" msgstr "Zásoby byly uvolněné" -#: src/tables/build/BuildLineTable.tsx:771 +#: src/tables/build/BuildLineTable.tsx:778 msgid "Build Stock" msgstr "Zásoby stavby" -#: src/tables/build/BuildLineTable.tsx:784 +#: src/tables/build/BuildLineTable.tsx:791 #: src/tables/sales/SalesOrderLineItemTable.tsx:487 msgid "View Part" msgstr "Zobrazit díl" @@ -9739,7 +9823,7 @@ msgid "Serialize Build Output" msgstr "Serializovat výstup výroby" #: src/tables/build/BuildOutputTable.tsx:405 -#: src/tables/part/PartTestResultTable.tsx:310 +#: src/tables/part/PartTestResultTable.tsx:318 #: src/tables/stock/StockItemTable.tsx:328 msgid "Filter by stock status" msgstr "Filtrovat podle stavu zásob" @@ -9964,8 +10048,8 @@ msgid "View Item" msgstr "Zobrazit položku" #: src/tables/general/ExtraLineItemTable.tsx:95 -#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:299 -#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:403 +#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:300 +#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:405 #: src/tables/sales/ReturnOrderLineItemTable.tsx:83 #: src/tables/sales/ReturnOrderLineItemTable.tsx:187 #: src/tables/sales/SalesOrderLineItemTable.tsx:252 @@ -9974,14 +10058,14 @@ msgid "Add Line Item" msgstr "Přidat řádek položky" #: src/tables/general/ExtraLineItemTable.tsx:108 -#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:320 +#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:322 #: src/tables/sales/ReturnOrderLineItemTable.tsx:96 #: src/tables/sales/SalesOrderLineItemTable.tsx:271 msgid "Edit Line Item" msgstr "Upravit řádkovou položku" #: src/tables/general/ExtraLineItemTable.tsx:117 -#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:329 +#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:331 #: src/tables/sales/ReturnOrderLineItemTable.tsx:105 #: src/tables/sales/SalesOrderLineItemTable.tsx:280 msgid "Delete Line Item" @@ -9991,6 +10075,137 @@ msgstr "Odstranit řádkovou položku" msgid "Add Extra Line Item" msgstr "Položka navíc" +#: src/tables/general/ParameterTable.tsx:88 +msgid "Internal Units" +msgstr "Interní jednotky" + +#: src/tables/general/ParameterTable.tsx:108 +#: src/tables/general/ParameterTable.tsx:123 +msgid "Updated By" +msgstr "Aktualizoval(a)" + +#: src/tables/general/ParameterTable.tsx:118 +msgid "Show parameters for enabled templates" +msgstr "Zobrazit parametry pro povoloné šablony" + +#: src/tables/general/ParameterTable.tsx:124 +msgid "Filter by user who last updated the parameter" +msgstr "Filtrovat podle uživatele, který naposledy aktualizoval parametr" + +#: src/tables/general/ParameterTable.tsx:154 +msgid "Import Parameters" +msgstr "Importovat parametry" + +#: src/tables/general/ParameterTable.tsx:164 +#: src/tables/general/ParametricDataTable.tsx:261 +#: src/tables/general/ParametricDataTable.tsx:392 +msgid "Add Parameter" +msgstr "Přidat parametr" + +#: src/tables/general/ParameterTable.tsx:175 +#: src/tables/general/ParameterTable.tsx:222 +#: src/tables/general/ParametricDataTable.tsx:285 +msgid "Edit Parameter" +msgstr "Upravit parametr" + +#: src/tables/general/ParameterTable.tsx:183 +#: src/tables/general/ParameterTable.tsx:230 +msgid "Delete Parameter" +msgstr "Odstranit parametr" + +#: src/tables/general/ParameterTable.tsx:191 +msgid "Add Parameters" +msgstr "Přidat parametry" + +#: src/tables/general/ParameterTable.tsx:197 +msgid "Create Parameter" +msgstr "Vytvořit parametry" + +#: src/tables/general/ParameterTable.tsx:199 +msgid "Create a new parameter" +msgstr "Vytvořit nový parametr" + +#: src/tables/general/ParameterTable.tsx:208 +msgid "Import parameters from a file" +msgstr "Importovat parametr ze souboru" + +#: src/tables/general/ParameterTemplateTable.tsx:48 +#: src/tables/general/ParameterTemplateTable.tsx:197 +msgid "Add Parameter Template" +msgstr "Přidat šablonu parametru" + +#: src/tables/general/ParameterTemplateTable.tsx:64 +msgid "Duplicate Parameter Template" +msgstr "Duplikovat šablonu parametru" + +#: src/tables/general/ParameterTemplateTable.tsx:78 +msgid "Delete Parameter Template" +msgstr "Odstranit šablonu parametru" + +#: src/tables/general/ParameterTemplateTable.tsx:85 +msgid "Edit Parameter Template" +msgstr "Upravit šablonu parametru" + +#: src/tables/general/ParameterTemplateTable.tsx:138 +msgid "Checkbox" +msgstr "Zaškrtávací políčko" + +#: src/tables/general/ParameterTemplateTable.tsx:139 +msgid "Show checkbox templates" +msgstr "Zobrazit zaškrtávací šablony" + +#: src/tables/general/ParameterTemplateTable.tsx:143 +msgid "Has choices" +msgstr "Má volby" + +#: src/tables/general/ParameterTemplateTable.tsx:144 +msgid "Show templates with choices" +msgstr "Zobrazit šablony s volbami" + +#: src/tables/general/ParameterTemplateTable.tsx:148 +#: src/tables/part/PartTable.tsx:245 +msgid "Has Units" +msgstr "Má jednotky" + +#: src/tables/general/ParameterTemplateTable.tsx:149 +msgid "Show templates with units" +msgstr "Zobrazit šablony s jednotkami" + +#: src/tables/general/ParameterTemplateTable.tsx:154 +msgid "Show enabled templates" +msgstr "Zobrazit povolené šablony" + +#: src/tables/general/ParameterTemplateTable.tsx:158 +#: src/tables/settings/ImportSessionTable.tsx:111 +#: src/tables/settings/TemplateTable.tsx:368 +msgid "Model Type" +msgstr "Typ modelu" + +#: src/tables/general/ParameterTemplateTable.tsx:159 +msgid "Filter by model type" +msgstr "Filtrovat podle typu modelu" + +#: src/tables/general/ParametricDataTable.tsx:79 +msgid "Click to edit" +msgstr "Klikněte pro editaci" + +#: src/tables/general/ParametricDataTableFilters.tsx:36 +msgid "True" +msgstr "Pravda" + +#: src/tables/general/ParametricDataTableFilters.tsx:37 +msgid "False" +msgstr "Nepravda" + +#: src/tables/general/ParametricDataTableFilters.tsx:47 +#: src/tables/general/ParametricDataTableFilters.tsx:80 +msgid "Select a choice" +msgstr "Vyberte volbu" + +#: src/tables/general/ParametricDataTableFilters.tsx:100 +msgid "Enter a value" +msgstr "Zadejte hodnotu" + #: src/tables/machine/MachineListTable.tsx:133 msgid "Machine restarted" msgstr "Zařízení restartováno" @@ -10071,7 +10286,7 @@ msgid "Initialized" msgstr "Zahájeno" #: src/tables/machine/MachineListTable.tsx:410 -#: src/tables/machine/MachineTypeTable.tsx:307 +#: src/tables/machine/MachineTypeTable.tsx:305 msgid "No errors reported" msgstr "Žádné chyby nebyly nahlášeny" @@ -10132,15 +10347,15 @@ msgstr "Vestavěný ovladač" #~ msgid "Machine type information" #~ msgstr "Machine type information" -#: src/tables/machine/MachineTypeTable.tsx:128 +#: src/tables/machine/MachineTypeTable.tsx:126 msgid "Not Found" msgstr "Nenalezeno" -#: src/tables/machine/MachineTypeTable.tsx:131 +#: src/tables/machine/MachineTypeTable.tsx:129 msgid "Machine type not found." msgstr "Typ zařízení nebyl nalezen." -#: src/tables/machine/MachineTypeTable.tsx:141 +#: src/tables/machine/MachineTypeTable.tsx:139 msgid "Machine Type Information" msgstr "Informace o typu zařízení" @@ -10148,34 +10363,34 @@ msgstr "Informace o typu zařízení" #~ msgid "Available drivers" #~ msgstr "Available drivers" -#: src/tables/machine/MachineTypeTable.tsx:156 -#: src/tables/machine/MachineTypeTable.tsx:255 +#: src/tables/machine/MachineTypeTable.tsx:154 +#: src/tables/machine/MachineTypeTable.tsx:253 msgid "Slug" msgstr "Slug" -#: src/tables/machine/MachineTypeTable.tsx:167 -#: src/tables/machine/MachineTypeTable.tsx:276 +#: src/tables/machine/MachineTypeTable.tsx:165 +#: src/tables/machine/MachineTypeTable.tsx:274 msgid "Provider plugin" msgstr "Poskytovatelský plugin" -#: src/tables/machine/MachineTypeTable.tsx:179 -#: src/tables/machine/MachineTypeTable.tsx:288 +#: src/tables/machine/MachineTypeTable.tsx:177 +#: src/tables/machine/MachineTypeTable.tsx:286 msgid "Provider file" msgstr "Poskytovatel souboru" -#: src/tables/machine/MachineTypeTable.tsx:194 +#: src/tables/machine/MachineTypeTable.tsx:192 msgid "Available Drivers" msgstr "Dostupné ovladače" -#: src/tables/machine/MachineTypeTable.tsx:234 +#: src/tables/machine/MachineTypeTable.tsx:232 msgid "Machine driver not found." msgstr "Ovladač zařízení nebyl nalezen." -#: src/tables/machine/MachineTypeTable.tsx:242 +#: src/tables/machine/MachineTypeTable.tsx:240 msgid "Machine driver information" msgstr "Informace o ovladači zařízení" -#: src/tables/machine/MachineTypeTable.tsx:262 +#: src/tables/machine/MachineTypeTable.tsx:260 msgid "Machine type" msgstr "Typ zařízení" @@ -10187,15 +10402,15 @@ msgstr "Typ zařízení" #~ msgid "Machine driver detail" #~ msgstr "Machine driver detail" -#: src/tables/machine/MachineTypeTable.tsx:362 +#: src/tables/machine/MachineTypeTable.tsx:360 msgid "Builtin type" msgstr "Typ vestavěného" -#: src/tables/machine/MachineTypeTable.tsx:371 +#: src/tables/machine/MachineTypeTable.tsx:369 msgid "Machine Type Detail" msgstr "Detail typu zařízení" -#: src/tables/machine/MachineTypeTable.tsx:381 +#: src/tables/machine/MachineTypeTable.tsx:379 msgid "Machine Driver Detail" msgstr "Detail ovladače zařízení" @@ -10213,52 +10428,31 @@ msgstr "Notifikace" msgid "Message" msgstr "Zpráva" -#: src/tables/part/ParametricPartTable.tsx:78 -msgid "Click to edit" -msgstr "Klikněte pro editaci" +#: src/tables/part/ParametricPartTable.tsx:20 +msgid "Show active parts" +msgstr "Zobrazit aktivní díly" + +#: src/tables/part/ParametricPartTable.tsx:25 +msgid "Show locked parts" +msgstr "Zobrazit uzamčené díly" + +#: src/tables/part/ParametricPartTable.tsx:30 +msgid "Show assembly parts" +msgstr "Zobrazit díly sestavy" #: src/tables/part/ParametricPartTable.tsx:82 #~ msgid "Edit parameter" #~ msgstr "Edit parameter" #: src/tables/part/ParametricPartTable.tsx:244 -msgid "Add Part Parameter" -msgstr "Přidat parametr dílu" +#~ msgid "Add Part Parameter" +#~ msgstr "Add Part Parameter" #: src/tables/part/ParametricPartTable.tsx:258 #: src/tables/part/PartParameterTable.tsx:164 #: src/tables/part/PartParameterTable.tsx:187 -msgid "Edit Part Parameter" -msgstr "Upravit parametr dílu" - -#: src/tables/part/ParametricPartTable.tsx:355 -msgid "Show active parts" -msgstr "Zobrazit aktivní díly" - -#: src/tables/part/ParametricPartTable.tsx:360 -msgid "Show locked parts" -msgstr "Zobrazit uzamčené díly" - -#: src/tables/part/ParametricPartTable.tsx:365 -msgid "Show assembly parts" -msgstr "Zobrazit díly sestavy" - -#: src/tables/part/ParametricPartTableFilters.tsx:36 -msgid "True" -msgstr "Pravda" - -#: src/tables/part/ParametricPartTableFilters.tsx:37 -msgid "False" -msgstr "Nepravda" - -#: src/tables/part/ParametricPartTableFilters.tsx:47 -#: src/tables/part/ParametricPartTableFilters.tsx:80 -msgid "Select a choice" -msgstr "Vyberte volbu" - -#: src/tables/part/ParametricPartTableFilters.tsx:100 -msgid "Enter a value" -msgstr "Zadejte hodnotu" +#~ msgid "Edit Part Parameter" +#~ msgstr "Edit Part Parameter" #: src/tables/part/PartBuildAllocationsTable.tsx:64 msgid "Assembly IPN" @@ -10273,7 +10467,7 @@ msgid "Required Stock" msgstr "Vyžadované zásoby" #: src/tables/part/PartBuildAllocationsTable.tsx:124 -#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:381 +#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:383 msgid "View Build Order" msgstr "Zobrazit výrobní příkaz" @@ -10332,85 +10526,22 @@ msgstr "Upravit kategorii parametru" msgid "Delete Category Parameter" msgstr "Odstranit kategorii parametru" -#: src/tables/part/PartCategoryTemplateTable.tsx:87 -msgid "Parameter Template" -msgstr "Šablona parametru" - #: src/tables/part/PartCategoryTemplateTable.tsx:93 #~ msgid "[{0}]" #~ msgstr "[{0}]" -#: src/tables/part/PartParameterTable.tsx:108 -msgid "Internal Units" -msgstr "Interní jednotky" - -#: src/tables/part/PartParameterTable.tsx:128 -#: src/tables/part/PartParameterTable.tsx:138 -msgid "Updated By" -msgstr "Aktualizoval(a)" - -#: src/tables/part/PartParameterTable.tsx:139 -msgid "Filter by user who last updated the parameter" -msgstr "Filtrovat podle uživatele, který naposledy aktualizoval parametr" - #: src/tables/part/PartParameterTable.tsx:148 -msgid "New Part Parameter" -msgstr "Nový parametr dílu" +#~ msgid "New Part Parameter" +#~ msgstr "New Part Parameter" #: src/tables/part/PartParameterTable.tsx:173 #: src/tables/part/PartParameterTable.tsx:195 -msgid "Delete Part Parameter" -msgstr "Odstranit parametr dílu" +#~ msgid "Delete Part Parameter" +#~ msgstr "Delete Part Parameter" #: src/tables/part/PartParameterTable.tsx:213 -msgid "Add parameter" -msgstr "Přídat parametr" - -#: src/tables/part/PartParameterTable.tsx:232 -msgid "Part parameters cannot be edited, as the part is locked" -msgstr "Parametr dílu nemůže být upraven, díl je uzamčen" - -#: src/tables/part/PartParameterTemplateTable.tsx:36 -msgid "Checkbox" -msgstr "Zaškrtávací políčko" - -#: src/tables/part/PartParameterTemplateTable.tsx:37 -msgid "Show checkbox templates" -msgstr "Zobrazit zaškrtávací šablony" - -#: src/tables/part/PartParameterTemplateTable.tsx:41 -msgid "Has choices" -msgstr "Má volby" - -#: src/tables/part/PartParameterTemplateTable.tsx:42 -msgid "Show templates with choices" -msgstr "Zobrazit šablony s volbami" - -#: src/tables/part/PartParameterTemplateTable.tsx:46 -#: src/tables/part/PartTable.tsx:245 -msgid "Has Units" -msgstr "Má jednotky" - -#: src/tables/part/PartParameterTemplateTable.tsx:47 -msgid "Show templates with units" -msgstr "Zobrazit šablony s jednotkami" - -#: src/tables/part/PartParameterTemplateTable.tsx:91 -#: src/tables/part/PartParameterTemplateTable.tsx:166 -msgid "Add Parameter Template" -msgstr "Přidat šablonu parametru" - -#: src/tables/part/PartParameterTemplateTable.tsx:105 -msgid "Duplicate Parameter Template" -msgstr "Duplikovat šablonu parametru" - -#: src/tables/part/PartParameterTemplateTable.tsx:117 -msgid "Edit Parameter Template" -msgstr "Upravit šablonu parametru" - -#: src/tables/part/PartParameterTemplateTable.tsx:128 -msgid "Delete Parameter Template" -msgstr "Odstranit šablonu parametru" +#~ msgid "Add parameter" +#~ msgstr "Add parameter" #: src/tables/part/PartParameterTemplateTable.tsx:141 #~ msgid "Add parameter template" @@ -10430,7 +10561,7 @@ msgid "Show received items" msgstr "Zobrazit přijaté položky" #: src/tables/part/PartSalesAllocationsTable.tsx:90 -#: src/tables/sales/SalesOrderShipmentTable.tsx:218 +#: src/tables/sales/SalesOrderShipmentTable.tsx:263 msgid "View Sales Order" msgstr "Zobrazit prodejní objednávku" @@ -10617,8 +10748,8 @@ msgstr "Importovat od pluginu dodavatele" #: src/tables/part/PartTestResultTable.tsx:103 #: src/tables/part/PartTestResultTable.tsx:181 -#: src/tables/part/PartTestResultTable.tsx:320 -#: src/tables/part/PartTestResultTable.tsx:334 +#: src/tables/part/PartTestResultTable.tsx:328 +#: src/tables/part/PartTestResultTable.tsx:342 #: src/tables/stock/StockItemTestResultTable.tsx:296 #: src/tables/stock/StockItemTestResultTable.tsx:368 #: src/tables/stock/StockItemTestResultTable.tsx:429 @@ -10643,7 +10774,7 @@ msgstr "Výsledky testu přidány" msgid "No Result" msgstr "Žádný výsledek" -#: src/tables/part/PartTestResultTable.tsx:298 +#: src/tables/part/PartTestResultTable.tsx:306 msgid "Show build outputs currently in production" msgstr "Zobrazit výsledky výrobních výstupů v současné výrobě" @@ -11013,36 +11144,45 @@ msgstr "Nainstalováno" #~ msgid "Parameter updated" #~ msgstr "Parameter updated" -#: src/tables/purchasing/ManufacturerPartParameterTable.tsx:63 -#: src/tables/purchasing/ManufacturerPartParameterTable.tsx:112 -msgid "Add Parameter" -msgstr "Přidat parametr" - #: src/tables/purchasing/ManufacturerPartParameterTable.tsx:73 #~ msgid "Parameter deleted" #~ msgstr "Parameter deleted" -#: src/tables/purchasing/ManufacturerPartParameterTable.tsx:74 -msgid "Edit Parameter" -msgstr "Upravit parametr" - #: src/tables/purchasing/ManufacturerPartParameterTable.tsx:74 #~ msgid "Are you sure you want to delete this parameter?" #~ msgstr "Are you sure you want to delete this parameter?" -#: src/tables/purchasing/ManufacturerPartParameterTable.tsx:82 -msgid "Delete Parameter" -msgstr "Odstranit parametr" - -#: src/tables/purchasing/ManufacturerPartTable.tsx:63 -#~ msgid "Create Manufacturer Part" -#~ msgstr "Create Manufacturer Part" - +#: src/tables/purchasing/ManufacturerPartParametricTable.tsx:34 #: src/tables/purchasing/ManufacturerPartTable.tsx:82 #: src/tables/purchasing/SupplierPartTable.tsx:99 msgid "MPN" msgstr "MPN" +#: src/tables/purchasing/ManufacturerPartParametricTable.tsx:44 +#: src/tables/purchasing/ManufacturerPartTable.tsx:134 +#: src/tables/purchasing/SupplierPartTable.tsx:220 +msgid "Active Part" +msgstr "Aktivní díl" + +#: src/tables/purchasing/ManufacturerPartParametricTable.tsx:45 +#: src/tables/purchasing/ManufacturerPartTable.tsx:135 +msgid "Show manufacturer parts for active internal parts." +msgstr "Zobrazit díly výrobce pro aktivní interní díly." + +#: src/tables/purchasing/ManufacturerPartParametricTable.tsx:50 +#: src/tables/purchasing/ManufacturerPartTable.tsx:140 +msgid "Active Manufacturer" +msgstr "Aktivní výrobce" + +#: src/tables/purchasing/ManufacturerPartParametricTable.tsx:51 +#: src/tables/purchasing/ManufacturerPartTable.tsx:142 +msgid "Show manufacturer parts for active manufacturers." +msgstr "Zobrazit díly výrobce pro aktivní výrobce." + +#: src/tables/purchasing/ManufacturerPartTable.tsx:63 +#~ msgid "Create Manufacturer Part" +#~ msgstr "Create Manufacturer Part" + #: src/tables/purchasing/ManufacturerPartTable.tsx:100 #~ msgid "Manufacturer part updated" #~ msgstr "Manufacturer part updated" @@ -11055,25 +11195,8 @@ msgstr "MPN" #~ msgid "Are you sure you want to remove this manufacturer part?" #~ msgstr "Are you sure you want to remove this manufacturer part?" -#: src/tables/purchasing/ManufacturerPartTable.tsx:134 -#: src/tables/purchasing/SupplierPartTable.tsx:220 -msgid "Active Part" -msgstr "Aktivní díl" - -#: src/tables/purchasing/ManufacturerPartTable.tsx:135 -msgid "Show manufacturer parts for active internal parts." -msgstr "Zobrazit díly výrobce pro aktivní interní díly." - -#: src/tables/purchasing/ManufacturerPartTable.tsx:140 -msgid "Active Manufacturer" -msgstr "Aktivní výrobce" - -#: src/tables/purchasing/ManufacturerPartTable.tsx:142 -msgid "Show manufacturer parts for active manufacturers." -msgstr "Zobrazit díly výrobce pro aktivní výrobce." - #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:115 -#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:397 +#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:399 msgid "Import Line Items" msgstr "Importovat položky řádku" @@ -11099,11 +11222,11 @@ msgstr "Zobrazit řádkové položky, které byly přijaty" #~ msgid "Add line item" #~ msgstr "Add line item" -#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:350 +#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:352 msgid "Receive line item" msgstr "Přijímat položku" -#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:414 +#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:416 msgid "Receive items" msgstr "Přijímat položky" @@ -11201,25 +11324,25 @@ msgid "Not shipped" msgstr "Neodesláno" #: src/tables/sales/SalesOrderAllocationTable.tsx:211 -#: src/tables/sales/SalesOrderAllocationTable.tsx:229 +#: src/tables/sales/SalesOrderAllocationTable.tsx:235 msgid "Edit Allocation" msgstr "Upravit přiřazení" #: src/tables/sales/SalesOrderAllocationTable.tsx:218 #: src/tables/sales/SalesOrderAllocationTable.tsx:241 -msgid "Delete Allocation" -msgstr "Odstranit přiřazení" +#~ msgid "Delete Allocation" +#~ msgstr "Delete Allocation" -#: src/tables/sales/SalesOrderAllocationTable.tsx:252 -#: src/tables/sales/SalesOrderAllocationTable.tsx:253 +#: src/tables/sales/SalesOrderAllocationTable.tsx:261 +#: src/tables/sales/SalesOrderAllocationTable.tsx:262 msgid "View Shipment" msgstr "Zobrazit zásilku" -#: src/tables/sales/SalesOrderAllocationTable.tsx:308 +#: src/tables/sales/SalesOrderAllocationTable.tsx:317 msgid "Assign to Shipment" msgstr "Přiřadit k zásilce" -#: src/tables/sales/SalesOrderAllocationTable.tsx:324 +#: src/tables/sales/SalesOrderAllocationTable.tsx:333 msgid "Assign to shipment" msgstr "Přiřadit k zásilce" @@ -11259,35 +11382,35 @@ msgstr "Objednat zásoby" #~ msgid "Delete Shipment" #~ msgstr "Delete Shipment" -#: src/tables/sales/SalesOrderShipmentTable.tsx:72 +#: src/tables/sales/SalesOrderShipmentTable.tsx:79 msgid "Create Shipment" msgstr "Vytvořit zásilku" -#: src/tables/sales/SalesOrderShipmentTable.tsx:143 +#: src/tables/sales/SalesOrderShipmentTable.tsx:164 msgid "Items" msgstr "Předměty" -#: src/tables/sales/SalesOrderShipmentTable.tsx:203 +#: src/tables/sales/SalesOrderShipmentTable.tsx:248 msgid "Edit shipment" msgstr "Upravit zásilku" -#: src/tables/sales/SalesOrderShipmentTable.tsx:211 +#: src/tables/sales/SalesOrderShipmentTable.tsx:256 msgid "Cancel shipment" msgstr "Zrušit zásilku" -#: src/tables/sales/SalesOrderShipmentTable.tsx:241 +#: src/tables/sales/SalesOrderShipmentTable.tsx:286 msgid "Add shipment" msgstr "Přidat zásilku" -#: src/tables/sales/SalesOrderShipmentTable.tsx:255 +#: src/tables/sales/SalesOrderShipmentTable.tsx:300 msgid "Show shipments which have been checked" msgstr "Zobrazit zásilky které byly zkontrolovány" -#: src/tables/sales/SalesOrderShipmentTable.tsx:260 +#: src/tables/sales/SalesOrderShipmentTable.tsx:305 msgid "Show shipments which have been shipped" msgstr "Zobrazit zásilky, které byly odeslány" -#: src/tables/sales/SalesOrderShipmentTable.tsx:265 +#: src/tables/sales/SalesOrderShipmentTable.tsx:310 msgid "Show shipments which have been delivered" msgstr "Zobrazit zásilky, které byly dodány" @@ -11621,11 +11744,6 @@ msgstr "Nahráno" msgid "Imported Rows" msgstr "Importované řádky" -#: src/tables/settings/ImportSessionTable.tsx:111 -#: src/tables/settings/TemplateTable.tsx:368 -msgid "Model Type" -msgstr "Typ modelu" - #: src/tables/settings/ImportSessionTable.tsx:112 #: src/tables/settings/TemplateTable.tsx:369 msgid "Filter by target model type" diff --git a/src/frontend/src/locales/da/messages.po b/src/frontend/src/locales/da/messages.po index 706d39a21c..a7f35ff844 100644 --- a/src/frontend/src/locales/da/messages.po +++ b/src/frontend/src/locales/da/messages.po @@ -8,7 +8,7 @@ msgstr "" "Language: da\n" "Project-Id-Version: inventree\n" "Report-Msgid-Bugs-To: \n" -"PO-Revision-Date: 2025-11-19 19:39\n" +"PO-Revision-Date: 2025-12-07 07:36\n" "Last-Translator: \n" "Language-Team: Danish\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" @@ -30,7 +30,7 @@ msgid "Edit" msgstr "" #: lib/components/RowActions.tsx:56 -#: src/components/forms/ApiForm.tsx:735 +#: src/components/forms/ApiForm.tsx:754 #: src/components/items/ActionDropdown.tsx:257 #: src/components/items/RoleTable.tsx:155 #: src/hooks/UseForm.tsx:164 @@ -56,24 +56,24 @@ msgstr "" #: lib/components/RowActions.tsx:136 #: src/components/nav/NavigationDrawer.tsx:190 -#: src/forms/PurchaseOrderForms.tsx:802 +#: src/forms/PurchaseOrderForms.tsx:854 #: src/forms/StockForms.tsx:796 #: src/forms/StockForms.tsx:843 -#: src/forms/StockForms.tsx:889 -#: src/forms/StockForms.tsx:928 -#: src/forms/StockForms.tsx:964 -#: src/forms/StockForms.tsx:1050 +#: src/forms/StockForms.tsx:896 +#: src/forms/StockForms.tsx:942 +#: src/forms/StockForms.tsx:980 +#: src/forms/StockForms.tsx:1066 #: src/pages/Index/Settings/AccountSettings/MFASettings.tsx:962 msgid "Actions" msgstr "" #: lib/components/SearchInput.tsx:34 -#: src/components/forms/fields/RelatedModelField.tsx:408 +#: src/components/forms/fields/RelatedModelField.tsx:479 #: src/components/nav/Header.tsx:169 #: src/components/wizards/ImportPartWizard.tsx:200 #: src/components/wizards/ImportPartWizard.tsx:233 -#: src/pages/Index/Settings/UserSettings.tsx:74 -#: src/pages/part/PartDetail.tsx:1155 +#: src/pages/Index/Settings/UserSettings.tsx:75 +#: src/pages/part/PartDetail.tsx:1176 msgid "Search" msgstr "" @@ -95,7 +95,7 @@ msgstr "" msgid "No" msgstr "" -#: lib/enums/ModelInformation.tsx:28 +#: lib/enums/ModelInformation.tsx:29 #: src/components/wizards/OrderPartsWizard.tsx:279 #: src/forms/BuildForms.tsx:332 #: src/forms/BuildForms.tsx:407 @@ -103,208 +103,234 @@ msgstr "" #: src/forms/BuildForms.tsx:630 #: src/forms/BuildForms.tsx:793 #: src/forms/BuildForms.tsx:896 -#: src/forms/PurchaseOrderForms.tsx:798 +#: src/forms/PurchaseOrderForms.tsx:850 #: src/forms/ReturnOrderForms.tsx:242 -#: src/forms/SalesOrderForms.tsx:305 +#: src/forms/SalesOrderForms.tsx:384 #: src/forms/StockForms.tsx:360 #: src/forms/StockForms.tsx:791 #: src/forms/StockForms.tsx:838 -#: src/forms/StockForms.tsx:884 -#: src/forms/StockForms.tsx:923 -#: src/forms/StockForms.tsx:959 -#: src/forms/StockForms.tsx:1002 -#: src/forms/StockForms.tsx:1046 -#: src/forms/StockForms.tsx:1094 -#: src/forms/StockForms.tsx:1138 -#: src/pages/build/BuildDetail.tsx:200 -#: src/pages/part/PartDetail.tsx:1207 +#: src/forms/StockForms.tsx:891 +#: src/forms/StockForms.tsx:937 +#: src/forms/StockForms.tsx:975 +#: src/forms/StockForms.tsx:1018 +#: src/forms/StockForms.tsx:1062 +#: src/forms/StockForms.tsx:1110 +#: src/forms/StockForms.tsx:1154 +#: src/pages/build/BuildDetail.tsx:201 +#: src/pages/part/PartDetail.tsx:1228 #: src/tables/ColumnRenderers.tsx:91 +#: src/tables/part/PartTestResultTable.tsx:247 #: src/tables/part/RelatedPartTable.tsx:53 #: src/tables/stock/StockTrackingTable.tsx:87 msgid "Part" msgstr "" -#: lib/enums/ModelInformation.tsx:29 +#: lib/enums/ModelInformation.tsx:30 #: lib/enums/Roles.tsx:35 #: src/components/nav/NavigationDrawer.tsx:70 #: src/defaults/links.tsx:36 -#: src/pages/Index/Settings/SystemSettings.tsx:190 -#: src/pages/part/CategoryDetail.tsx:132 -#: src/pages/part/CategoryDetail.tsx:277 -#: src/pages/part/CategoryDetail.tsx:323 -#: src/pages/part/CategoryDetail.tsx:354 -#: src/pages/part/PartDetail.tsx:965 +#: src/pages/Index/Settings/SystemSettings.tsx:197 +#: src/pages/part/CategoryDetail.tsx:135 +#: src/pages/part/CategoryDetail.tsx:285 +#: src/pages/part/CategoryDetail.tsx:340 +#: src/pages/part/CategoryDetail.tsx:371 +#: src/pages/part/PartDetail.tsx:978 msgid "Parts" msgstr "" #: lib/enums/ModelInformation.tsx:37 #: src/pages/Index/Settings/AdminCenter/PartParameterPanel.tsx:13 -msgid "Part Parameter Template" -msgstr "" +#~ msgid "Part Parameter Template" +#~ msgstr "Part Parameter Template" #: lib/enums/ModelInformation.tsx:38 -msgid "Part Parameter Templates" +#~ msgid "Part Parameter Templates" +#~ msgstr "Part Parameter Templates" + +#: lib/enums/ModelInformation.tsx:39 +msgid "Parameter" +msgstr "" + +#: lib/enums/ModelInformation.tsx:40 +#: src/components/panels/ParametersPanel.tsx:19 +#: src/components/wizards/ImportPartWizard.tsx:807 +#: src/pages/Index/Settings/AdminCenter/Index.tsx:195 +#: src/pages/Index/Settings/SystemSettings.tsx:191 +#: src/pages/part/PartDetail.tsx:943 +msgid "Parameters" msgstr "" #: lib/enums/ModelInformation.tsx:45 -msgid "Part Test Template" +#: src/tables/part/PartCategoryTemplateTable.tsx:87 +msgid "Parameter Template" msgstr "" #: lib/enums/ModelInformation.tsx:46 -msgid "Part Test Templates" +#: src/pages/Index/Settings/AdminCenter/ParameterPanel.tsx:13 +msgid "Parameter Templates" msgstr "" #: lib/enums/ModelInformation.tsx:52 +msgid "Part Test Template" +msgstr "" + +#: lib/enums/ModelInformation.tsx:53 +msgid "Part Test Templates" +msgstr "" + +#: lib/enums/ModelInformation.tsx:59 #: src/components/wizards/OrderPartsWizard.tsx:290 -#: src/pages/company/SupplierPartDetail.tsx:413 +#: src/pages/company/SupplierPartDetail.tsx:418 #: src/pages/stock/StockDetail.tsx:289 -#: src/tables/build/BuildAllocatedStockTable.tsx:155 +#: src/tables/build/BuildAllocatedStockTable.tsx:152 #: src/tables/part/PartPurchaseOrdersTable.tsx:50 +#: src/tables/purchasing/SupplierPartParametricTable.tsx:29 #: src/tables/purchasing/SupplierPartTable.tsx:83 #: src/tables/stock/StockItemTable.tsx:247 msgid "Supplier Part" msgstr "" -#: lib/enums/ModelInformation.tsx:53 -#: src/pages/purchasing/PurchasingIndex.tsx:92 +#: lib/enums/ModelInformation.tsx:60 +#: src/pages/purchasing/PurchasingIndex.tsx:128 msgid "Supplier Parts" msgstr "" -#: lib/enums/ModelInformation.tsx:61 -#: src/pages/company/ManufacturerPartDetail.tsx:297 -#: src/pages/company/SupplierPartDetail.tsx:161 +#: lib/enums/ModelInformation.tsx:69 +#: src/pages/company/ManufacturerPartDetail.tsx:288 +#: src/pages/company/SupplierPartDetail.tsx:162 #: src/tables/part/PartPurchaseOrdersTable.tsx:56 #: src/tables/stock/StockItemTable.tsx:253 msgid "Manufacturer Part" msgstr "" -#: lib/enums/ModelInformation.tsx:62 -#: src/pages/purchasing/PurchasingIndex.tsx:109 +#: lib/enums/ModelInformation.tsx:70 +#: src/pages/purchasing/PurchasingIndex.tsx:177 msgid "Manufacturer Parts" msgstr "" -#: lib/enums/ModelInformation.tsx:70 -#: src/pages/part/CategoryDetail.tsx:354 +#: lib/enums/ModelInformation.tsx:79 +#: src/pages/part/CategoryDetail.tsx:371 #: src/tables/Filter.tsx:389 msgid "Part Category" msgstr "" -#: lib/enums/ModelInformation.tsx:71 +#: lib/enums/ModelInformation.tsx:80 #: lib/enums/Roles.tsx:37 -#: src/pages/part/CategoryDetail.tsx:271 -#: src/pages/part/CategoryDetail.tsx:345 -#: src/pages/part/PartDetail.tsx:1196 +#: src/pages/part/CategoryDetail.tsx:279 +#: src/pages/part/CategoryDetail.tsx:362 +#: src/pages/part/PartDetail.tsx:1217 msgid "Part Categories" msgstr "" -#: lib/enums/ModelInformation.tsx:79 +#: lib/enums/ModelInformation.tsx:88 #: src/forms/BuildForms.tsx:473 #: src/forms/BuildForms.tsx:633 #: src/forms/BuildForms.tsx:794 -#: src/forms/SalesOrderForms.tsx:307 +#: src/forms/SalesOrderForms.tsx:386 #: src/pages/stock/StockDetail.tsx:1005 -#: src/tables/part/PartTestResultTable.tsx:248 +#: src/tables/part/PartTestResultTable.tsx:256 #: src/tables/stock/StockTrackingTable.tsx:48 #: src/tables/stock/StockTrackingTable.tsx:55 msgid "Stock Item" msgstr "" -#: lib/enums/ModelInformation.tsx:80 +#: lib/enums/ModelInformation.tsx:89 #: lib/enums/Roles.tsx:45 -#: src/pages/company/CompanyDetail.tsx:210 -#: src/pages/part/CategoryDetail.tsx:291 +#: src/pages/company/CompanyDetail.tsx:211 +#: src/pages/part/CategoryDetail.tsx:314 #: src/pages/part/PartStockHistoryDetail.tsx:101 #: src/pages/stock/LocationDetail.tsx:121 #: src/pages/stock/LocationDetail.tsx:180 msgid "Stock Items" msgstr "" -#: lib/enums/ModelInformation.tsx:88 +#: lib/enums/ModelInformation.tsx:98 #: lib/enums/Roles.tsx:47 #: src/pages/stock/LocationDetail.tsx:420 msgid "Stock Location" msgstr "" -#: lib/enums/ModelInformation.tsx:89 +#: lib/enums/ModelInformation.tsx:99 #: src/pages/stock/LocationDetail.tsx:174 #: src/pages/stock/LocationDetail.tsx:412 #: src/pages/stock/StockDetail.tsx:996 msgid "Stock Locations" msgstr "" -#: lib/enums/ModelInformation.tsx:97 +#: lib/enums/ModelInformation.tsx:108 msgid "Stock Location Type" msgstr "" -#: lib/enums/ModelInformation.tsx:98 +#: lib/enums/ModelInformation.tsx:109 msgid "Stock Location Types" msgstr "" -#: lib/enums/ModelInformation.tsx:103 -#: src/pages/Index/Settings/SystemSettings.tsx:248 -#: src/pages/part/PartDetail.tsx:911 +#: lib/enums/ModelInformation.tsx:114 +#: src/pages/Index/Settings/SystemSettings.tsx:254 +#: src/pages/part/PartDetail.tsx:900 msgid "Stock History" msgstr "" -#: lib/enums/ModelInformation.tsx:104 +#: lib/enums/ModelInformation.tsx:115 msgid "Stock Histories" msgstr "" -#: lib/enums/ModelInformation.tsx:109 +#: lib/enums/ModelInformation.tsx:120 msgid "Build" msgstr "" -#: lib/enums/ModelInformation.tsx:110 +#: lib/enums/ModelInformation.tsx:121 msgid "Builds" msgstr "" -#: lib/enums/ModelInformation.tsx:118 +#: lib/enums/ModelInformation.tsx:130 msgid "Build Line" msgstr "" -#: lib/enums/ModelInformation.tsx:119 +#: lib/enums/ModelInformation.tsx:131 msgid "Build Lines" msgstr "" -#: lib/enums/ModelInformation.tsx:126 +#: lib/enums/ModelInformation.tsx:138 msgid "Build Item" msgstr "" -#: lib/enums/ModelInformation.tsx:127 +#: lib/enums/ModelInformation.tsx:139 msgid "Build Items" msgstr "" -#: lib/enums/ModelInformation.tsx:132 -#: src/pages/company/CompanyDetail.tsx:340 +#: lib/enums/ModelInformation.tsx:144 +#: src/pages/company/CompanyDetail.tsx:345 #: src/tables/company/CompanyTable.tsx:47 #: src/tables/company/ContactTable.tsx:67 +#: src/tables/company/ParametricCompanyTable.tsx:18 msgid "Company" msgstr "" -#: lib/enums/ModelInformation.tsx:133 +#: lib/enums/ModelInformation.tsx:145 msgid "Companies" msgstr "" -#: lib/enums/ModelInformation.tsx:140 -#: src/pages/build/BuildDetail.tsx:316 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:253 -#: src/pages/sales/ReturnOrderDetail.tsx:231 -#: src/pages/sales/SalesOrderDetail.tsx:224 +#: lib/enums/ModelInformation.tsx:152 +#: src/pages/build/BuildDetail.tsx:317 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:254 +#: src/pages/sales/ReturnOrderDetail.tsx:232 +#: src/pages/sales/SalesOrderDetail.tsx:225 #: src/tables/ColumnRenderers.tsx:362 #: src/tables/Filter.tsx:286 #: src/tables/TableHoverCard.tsx:101 msgid "Project Code" msgstr "" -#: lib/enums/ModelInformation.tsx:141 +#: lib/enums/ModelInformation.tsx:153 #: src/pages/Index/Settings/AdminCenter/Index.tsx:172 msgid "Project Codes" msgstr "" -#: lib/enums/ModelInformation.tsx:147 +#: lib/enums/ModelInformation.tsx:159 #: src/components/wizards/OrderPartsWizard.tsx:338 #: src/pages/part/pricing/PurchaseHistoryPanel.tsx:33 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:550 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:555 #: src/pages/stock/StockDetail.tsx:352 #: src/tables/part/PartPurchaseOrdersTable.tsx:32 #: src/tables/stock/StockItemTable.tsx:239 @@ -312,117 +338,117 @@ msgstr "" msgid "Purchase Order" msgstr "" -#: lib/enums/ModelInformation.tsx:148 +#: lib/enums/ModelInformation.tsx:160 #: lib/enums/Roles.tsx:39 #: src/defaults/actions.tsx:104 -#: src/pages/Index/Settings/SystemSettings.tsx:283 -#: src/pages/company/CompanyDetail.tsx:203 -#: src/pages/company/SupplierPartDetail.tsx:266 -#: src/pages/part/PartDetail.tsx:875 -#: src/pages/purchasing/PurchasingIndex.tsx:60 +#: src/pages/Index/Settings/SystemSettings.tsx:289 +#: src/pages/company/CompanyDetail.tsx:204 +#: src/pages/company/SupplierPartDetail.tsx:267 +#: src/pages/part/PartDetail.tsx:864 +#: src/pages/purchasing/PurchasingIndex.tsx:66 msgid "Purchase Orders" msgstr "" -#: lib/enums/ModelInformation.tsx:156 +#: lib/enums/ModelInformation.tsx:169 msgid "Purchase Order Line" msgstr "" -#: lib/enums/ModelInformation.tsx:157 +#: lib/enums/ModelInformation.tsx:170 msgid "Purchase Order Lines" msgstr "" -#: lib/enums/ModelInformation.tsx:162 -#: src/pages/build/BuildDetail.tsx:289 +#: lib/enums/ModelInformation.tsx:175 +#: src/pages/build/BuildDetail.tsx:290 #: src/pages/part/pricing/SaleHistoryPanel.tsx:24 -#: src/pages/sales/SalesOrderDetail.tsx:614 -#: src/pages/sales/SalesOrderShipmentDetail.tsx:105 -#: src/pages/sales/SalesOrderShipmentDetail.tsx:478 +#: src/pages/sales/SalesOrderDetail.tsx:619 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:103 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:446 #: src/pages/stock/StockDetail.tsx:361 #: src/tables/part/PartSalesAllocationsTable.tsx:41 #: src/tables/sales/SalesOrderAllocationTable.tsx:110 -#: src/tables/sales/SalesOrderShipmentTable.tsx:122 +#: src/tables/sales/SalesOrderShipmentTable.tsx:143 #: src/tables/stock/StockTrackingTable.tsx:131 msgid "Sales Order" msgstr "" -#: lib/enums/ModelInformation.tsx:163 +#: lib/enums/ModelInformation.tsx:176 #: lib/enums/Roles.tsx:43 #: src/defaults/actions.tsx:114 -#: src/pages/Index/Settings/SystemSettings.tsx:299 -#: src/pages/company/CompanyDetail.tsx:223 -#: src/pages/part/PartDetail.tsx:887 -#: src/pages/sales/SalesIndex.tsx:84 +#: src/pages/Index/Settings/SystemSettings.tsx:305 +#: src/pages/company/CompanyDetail.tsx:224 +#: src/pages/part/PartDetail.tsx:876 +#: src/pages/sales/SalesIndex.tsx:53 msgid "Sales Orders" msgstr "" -#: lib/enums/ModelInformation.tsx:171 -#: src/pages/sales/SalesOrderShipmentDetail.tsx:477 +#: lib/enums/ModelInformation.tsx:185 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:445 msgid "Sales Order Shipment" msgstr "" -#: lib/enums/ModelInformation.tsx:172 +#: lib/enums/ModelInformation.tsx:186 msgid "Sales Order Shipments" msgstr "" -#: lib/enums/ModelInformation.tsx:179 -#: src/pages/sales/ReturnOrderDetail.tsx:549 +#: lib/enums/ModelInformation.tsx:194 +#: src/pages/sales/ReturnOrderDetail.tsx:554 #: src/tables/stock/StockTrackingTable.tsx:142 msgid "Return Order" msgstr "" -#: lib/enums/ModelInformation.tsx:180 +#: lib/enums/ModelInformation.tsx:195 #: lib/enums/Roles.tsx:41 #: src/defaults/actions.tsx:125 -#: src/pages/Index/Settings/SystemSettings.tsx:316 -#: src/pages/company/CompanyDetail.tsx:230 -#: src/pages/part/PartDetail.tsx:894 -#: src/pages/sales/SalesIndex.tsx:117 +#: src/pages/Index/Settings/SystemSettings.tsx:322 +#: src/pages/company/CompanyDetail.tsx:231 +#: src/pages/part/PartDetail.tsx:883 +#: src/pages/sales/SalesIndex.tsx:99 msgid "Return Orders" msgstr "" -#: lib/enums/ModelInformation.tsx:188 +#: lib/enums/ModelInformation.tsx:204 msgid "Return Order Line Item" msgstr "" -#: lib/enums/ModelInformation.tsx:189 +#: lib/enums/ModelInformation.tsx:205 msgid "Return Order Line Items" msgstr "" -#: lib/enums/ModelInformation.tsx:194 +#: lib/enums/ModelInformation.tsx:210 #: src/tables/company/AddressTable.tsx:52 msgid "Address" msgstr "" -#: lib/enums/ModelInformation.tsx:195 -#: src/pages/company/CompanyDetail.tsx:264 +#: lib/enums/ModelInformation.tsx:211 +#: src/pages/company/CompanyDetail.tsx:265 msgid "Addresses" msgstr "" -#: lib/enums/ModelInformation.tsx:201 +#: lib/enums/ModelInformation.tsx:217 #: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:89 #: src/pages/core/UserDetail.tsx:135 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:229 -#: src/pages/sales/ReturnOrderDetail.tsx:207 -#: src/pages/sales/SalesOrderDetail.tsx:200 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:230 +#: src/pages/sales/ReturnOrderDetail.tsx:208 +#: src/pages/sales/SalesOrderDetail.tsx:201 msgid "Contact" msgstr "" -#: lib/enums/ModelInformation.tsx:202 -#: src/pages/company/CompanyDetail.tsx:258 +#: lib/enums/ModelInformation.tsx:218 +#: src/pages/company/CompanyDetail.tsx:259 #: src/pages/core/CoreIndex.tsx:33 msgid "Contacts" msgstr "" -#: lib/enums/ModelInformation.tsx:208 +#: lib/enums/ModelInformation.tsx:224 #: src/tables/ColumnRenderers.tsx:444 msgid "Owner" msgstr "" -#: lib/enums/ModelInformation.tsx:209 +#: lib/enums/ModelInformation.tsx:225 msgid "Owners" msgstr "" -#: lib/enums/ModelInformation.tsx:215 +#: lib/enums/ModelInformation.tsx:231 #: src/pages/Auth/ChangePassword.tsx:36 #: src/pages/core/UserDetail.tsx:220 #: src/tables/ColumnRenderers.tsx:395 @@ -437,7 +463,7 @@ msgstr "" msgid "User" msgstr "" -#: lib/enums/ModelInformation.tsx:216 +#: lib/enums/ModelInformation.tsx:232 #: src/components/nav/NavigationDrawer.tsx:105 #: src/pages/Index/Settings/AdminCenter/UserManagementPanel.tsx:15 #: src/pages/core/CoreIndex.tsx:21 @@ -445,12 +471,12 @@ msgstr "" msgid "Users" msgstr "" -#: lib/enums/ModelInformation.tsx:222 +#: lib/enums/ModelInformation.tsx:238 #: src/pages/core/GroupDetail.tsx:78 msgid "Group" msgstr "" -#: lib/enums/ModelInformation.tsx:223 +#: lib/enums/ModelInformation.tsx:239 #: src/components/nav/NavigationDrawer.tsx:111 #: src/pages/Index/Settings/AdminCenter/UserManagementPanel.tsx:23 #: src/pages/core/CoreIndex.tsx:27 @@ -460,64 +486,64 @@ msgstr "" msgid "Groups" msgstr "" -#: lib/enums/ModelInformation.tsx:230 +#: lib/enums/ModelInformation.tsx:246 msgid "Import Session" msgstr "" -#: lib/enums/ModelInformation.tsx:231 +#: lib/enums/ModelInformation.tsx:247 msgid "Import Sessions" msgstr "" -#: lib/enums/ModelInformation.tsx:238 +#: lib/enums/ModelInformation.tsx:254 msgid "Label Template" msgstr "" -#: lib/enums/ModelInformation.tsx:239 +#: lib/enums/ModelInformation.tsx:255 #: src/pages/Index/Settings/AdminCenter/Index.tsx:209 msgid "Label Templates" msgstr "" -#: lib/enums/ModelInformation.tsx:246 +#: lib/enums/ModelInformation.tsx:262 msgid "Report Template" msgstr "" -#: lib/enums/ModelInformation.tsx:247 +#: lib/enums/ModelInformation.tsx:263 #: src/pages/Index/Settings/AdminCenter/Index.tsx:215 msgid "Report Templates" msgstr "" -#: lib/enums/ModelInformation.tsx:254 +#: lib/enums/ModelInformation.tsx:270 #: src/components/plugins/PluginDrawer.tsx:145 msgid "Plugin Configuration" msgstr "" -#: lib/enums/ModelInformation.tsx:255 +#: lib/enums/ModelInformation.tsx:271 msgid "Plugin Configurations" msgstr "" -#: lib/enums/ModelInformation.tsx:262 +#: lib/enums/ModelInformation.tsx:278 msgid "Content Type" msgstr "" -#: lib/enums/ModelInformation.tsx:263 +#: lib/enums/ModelInformation.tsx:279 msgid "Content Types" msgstr "" -#: lib/enums/ModelInformation.tsx:268 +#: lib/enums/ModelInformation.tsx:284 msgid "Selection List" msgstr "" -#: lib/enums/ModelInformation.tsx:269 -#: src/pages/Index/Settings/AdminCenter/PartParameterPanel.tsx:21 +#: lib/enums/ModelInformation.tsx:285 +#: src/pages/Index/Settings/AdminCenter/ParameterPanel.tsx:21 msgid "Selection Lists" msgstr "" -#: lib/enums/ModelInformation.tsx:275 +#: lib/enums/ModelInformation.tsx:291 #: src/components/barcodes/BarcodeInput.tsx:114 #: src/components/dashboard/DashboardLayout.tsx:281 #: src/components/editors/NotesEditor.tsx:74 #: src/components/editors/TemplateEditor/TemplateEditor.tsx:158 -#: src/components/forms/fields/ApiFormField.tsx:273 +#: src/components/forms/fields/ApiFormField.tsx:237 #: src/components/forms/fields/TableField.tsx:45 #: src/components/importer/ImportDataSelector.tsx:192 #: src/components/importer/ImporterColumnSelector.tsx:234 @@ -528,7 +554,7 @@ msgstr "" #: src/components/nav/SearchDrawer.tsx:572 #: src/components/settings/SettingList.tsx:139 #: src/components/wizards/ImportPartWizard.tsx:574 -#: src/components/wizards/ImportPartWizard.tsx:718 +#: src/components/wizards/ImportPartWizard.tsx:719 #: src/forms/BomForms.tsx:69 #: src/functions/auth.tsx:643 #: src/pages/ErrorPage.tsx:11 @@ -547,9 +573,9 @@ msgstr "" msgid "Error" msgstr "" -#: lib/enums/ModelInformation.tsx:276 +#: lib/enums/ModelInformation.tsx:292 #: src/tables/machine/MachineListTable.tsx:402 -#: src/tables/machine/MachineTypeTable.tsx:299 +#: src/tables/machine/MachineTypeTable.tsx:297 msgid "Errors" msgstr "" @@ -559,10 +585,10 @@ msgstr "" #: lib/enums/Roles.tsx:33 #: src/defaults/actions.tsx:135 -#: src/pages/Index/Settings/SystemSettings.tsx:264 -#: src/pages/build/BuildIndex.tsx:75 -#: src/pages/part/PartDetail.tsx:904 -#: src/pages/sales/SalesOrderDetail.tsx:421 +#: src/pages/Index/Settings/SystemSettings.tsx:270 +#: src/pages/build/BuildIndex.tsx:67 +#: src/pages/part/PartDetail.tsx:893 +#: src/pages/sales/SalesOrderDetail.tsx:422 msgid "Build Orders" msgstr "" @@ -639,39 +665,39 @@ msgstr "" msgid "Enter barcode data" msgstr "" -#: src/components/barcodes/BarcodeScanDialog.tsx:49 -#: src/components/buttons/ScanButton.tsx:15 +#: src/components/barcodes/BarcodeScanDialog.tsx:56 +#: src/components/buttons/ScanButton.tsx:27 #: src/components/nav/NavigationDrawer.tsx:122 -#: src/forms/PurchaseOrderForms.tsx:457 -#: src/forms/PurchaseOrderForms.tsx:563 +#: src/forms/PurchaseOrderForms.tsx:509 +#: src/forms/PurchaseOrderForms.tsx:615 msgid "Scan Barcode" msgstr "" -#: src/components/barcodes/BarcodeScanDialog.tsx:105 +#: src/components/barcodes/BarcodeScanDialog.tsx:121 msgid "No matching item found" msgstr "" -#: src/components/barcodes/BarcodeScanDialog.tsx:134 +#: src/components/barcodes/BarcodeScanDialog.tsx:150 msgid "Barcode does not match the expected model type" msgstr "" -#: src/components/barcodes/BarcodeScanDialog.tsx:145 +#: src/components/barcodes/BarcodeScanDialog.tsx:161 #: src/components/editors/NotesEditor.tsx:84 #: src/components/editors/NotesEditor.tsx:118 -#: src/components/forms/ApiForm.tsx:465 +#: src/components/forms/ApiForm.tsx:484 #: src/components/wizards/ImportPartWizard.tsx:566 -#: src/components/wizards/ImportPartWizard.tsx:690 +#: src/components/wizards/ImportPartWizard.tsx:691 #: src/pages/Index/Settings/AdminCenter/CurrencyManagementPanel.tsx:45 #: src/tables/bom/BomTable.tsx:548 #: src/tables/settings/PendingTasksTable.tsx:68 msgid "Success" msgstr "" -#: src/components/barcodes/BarcodeScanDialog.tsx:151 +#: src/components/barcodes/BarcodeScanDialog.tsx:167 msgid "Failed to handle barcode" msgstr "" -#: src/components/barcodes/BarcodeScanDialog.tsx:167 +#: src/components/barcodes/BarcodeScanDialog.tsx:183 #: src/pages/Index/Scan.tsx:129 msgid "Failed to scan barcode" msgstr "" @@ -714,10 +740,10 @@ msgstr "" #: src/components/barcodes/QRCode.tsx:179 #: src/pages/part/PartDetail.tsx:521 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:222 -#: src/pages/sales/ReturnOrderDetail.tsx:188 -#: src/pages/sales/SalesOrderDetail.tsx:181 -#: src/pages/sales/SalesOrderShipmentDetail.tsx:122 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:223 +#: src/pages/sales/ReturnOrderDetail.tsx:189 +#: src/pages/sales/SalesOrderDetail.tsx:182 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:120 #: src/pages/stock/StockDetail.tsx:186 msgid "Link" msgstr "" @@ -728,7 +754,7 @@ msgstr "" #: src/components/barcodes/QRCode.tsx:205 #: src/components/items/ActionDropdown.tsx:192 -#: src/forms/PurchaseOrderForms.tsx:554 +#: src/forms/PurchaseOrderForms.tsx:606 msgid "Unlink Barcode" msgstr "" @@ -829,14 +855,14 @@ msgstr "" #~ msgid "Scan QR code" #~ msgstr "Scan QR code" -#: src/components/buttons/ScanButton.tsx:19 -msgid "Open Barcode Scanner" -msgstr "" - #: src/components/buttons/ScanButton.tsx:20 #~ msgid "Open QR code scanner" #~ msgstr "Open QR code scanner" +#: src/components/buttons/ScanButton.tsx:32 +msgid "Open Barcode Scanner" +msgstr "" + #: src/components/buttons/SpotlightButton.tsx:12 msgid "Open spotlight" msgstr "" @@ -1059,7 +1085,7 @@ msgid "Show the number of sales orders which are assigned to you" msgstr "" #: src/components/dashboard/DashboardWidgetLibrary.tsx:129 -#: src/pages/sales/SalesIndex.tsx:105 +#: src/pages/sales/SalesIndex.tsx:87 msgid "Pending Shipments" msgstr "" @@ -1210,12 +1236,18 @@ msgid "Remove the associated image from this item?" msgstr "" #: src/components/details/DetailsImage.tsx:83 -#: src/forms/StockForms.tsx:888 +#: src/forms/StockForms.tsx:895 #: src/pages/Index/Settings/AccountSettings/MFASettings.tsx:324 #: src/pages/Index/Settings/AccountSettings/MFASettings.tsx:415 #: src/pages/Index/Settings/AccountSettings/MFASettings.tsx:884 #: src/pages/Index/Settings/AccountSettings/MFASettings.tsx:903 #: src/pages/Index/Settings/AccountSettings/SecurityContent.tsx:254 +#: src/tables/build/BuildAllocatedStockTable.tsx:178 +#: src/tables/build/BuildAllocatedStockTable.tsx:258 +#: src/tables/build/BuildLineTable.tsx:111 +#: src/tables/build/BuildLineTable.tsx:665 +#: src/tables/sales/SalesOrderAllocationTable.tsx:224 +#: src/tables/sales/SalesOrderAllocationTable.tsx:247 msgid "Remove" msgstr "" @@ -1241,12 +1273,12 @@ msgid "Upload Error" msgstr "" #: src/components/details/DetailsImage.tsx:250 -#: src/components/forms/fields/TextField.tsx:65 +#: src/components/forms/fields/AutoFillRightSection.tsx:34 msgid "Clear" msgstr "" #: src/components/details/DetailsImage.tsx:256 -#: src/components/forms/ApiForm.tsx:677 +#: src/components/forms/ApiForm.tsx:696 #: src/contexts/ThemeContext.tsx:44 #: src/pages/Index/Settings/AccountSettings/MFASettings.tsx:149 #: src/pages/Index/Settings/AccountSettings/MFASettings.tsx:568 @@ -1499,8 +1531,8 @@ msgstr "" msgid "A server error occurred" msgstr "" -#: src/components/forms/ApiForm.tsx:103 -#: src/components/forms/ApiForm.tsx:594 +#: src/components/forms/ApiForm.tsx:107 +#: src/components/forms/ApiForm.tsx:613 msgid "Form Error" msgstr "" @@ -1508,11 +1540,11 @@ msgstr "" #~ msgid "Form Errors Exist" #~ msgstr "Form Errors Exist" -#: src/components/forms/ApiForm.tsx:604 +#: src/components/forms/ApiForm.tsx:623 msgid "Errors exist for one or more form fields" msgstr "" -#: src/components/forms/ApiForm.tsx:715 +#: src/components/forms/ApiForm.tsx:734 #: src/hooks/UseForm.tsx:133 #: src/tables/plugin/PluginListTable.tsx:204 msgid "Update" @@ -1698,15 +1730,14 @@ msgstr "" #: src/components/forms/InstanceOptions.tsx:124 #: src/components/plugins/PluginDrawer.tsx:68 #: src/pages/Index/Settings/AdminCenter/UnitManagementPanel.tsx:19 -#: src/pages/part/CategoryDetail.tsx:88 +#: src/pages/part/CategoryDetail.tsx:91 #: src/pages/part/PartDetail.tsx:446 #: src/pages/stock/LocationDetail.tsx:82 #: src/tables/machine/MachineTypeTable.tsx:67 -#: src/tables/machine/MachineTypeTable.tsx:151 -#: src/tables/machine/MachineTypeTable.tsx:254 -#: src/tables/machine/MachineTypeTable.tsx:357 +#: src/tables/machine/MachineTypeTable.tsx:149 +#: src/tables/machine/MachineTypeTable.tsx:252 +#: src/tables/machine/MachineTypeTable.tsx:355 #: src/tables/plugin/PluginErrorTable.tsx:33 -#: src/tables/purchasing/ManufacturerPartParameterTable.tsx:36 #: src/tables/settings/ApiTokenTable.tsx:57 #: src/tables/settings/GroupTable.tsx:95 #: src/tables/settings/GroupTable.tsx:148 @@ -1769,7 +1800,7 @@ msgstr "" #~ msgstr "State: <0>worker ({0}), <1>plugins{1}" #: src/components/forms/InstanceOptions.tsx:118 -#: src/pages/Index/Settings/SystemSettings.tsx:45 +#: src/pages/Index/Settings/SystemSettings.tsx:46 msgid "Server" msgstr "" @@ -1793,6 +1824,8 @@ msgid "Plugins" msgstr "" #: src/components/forms/InstanceOptions.tsx:143 +#: src/tables/general/ParameterTemplateTable.tsx:153 +#: src/tables/general/ParameterTemplateTable.tsx:188 #: src/tables/part/PartTestTemplateTable.tsx:117 #: src/tables/settings/TemplateTable.tsx:251 #: src/tables/settings/TemplateTable.tsx:362 @@ -1817,10 +1850,14 @@ msgstr "" msgid "Running" msgstr "" -#: src/components/forms/fields/ApiFormField.tsx:233 +#: src/components/forms/fields/ApiFormField.tsx:197 msgid "Select file to upload" msgstr "" +#: src/components/forms/fields/AutoFillRightSection.tsx:47 +msgid "Accept suggested value" +msgstr "" + #: src/components/forms/fields/DateField.tsx:76 msgid "Select date" msgstr "" @@ -1853,13 +1890,13 @@ msgstr "" msgid "{0} icons" msgstr "" -#: src/components/forms/fields/RelatedModelField.tsx:409 +#: src/components/forms/fields/RelatedModelField.tsx:480 #: src/components/modals/AboutInvenTreeModal.tsx:96 #: src/pages/Index/Settings/AccountSettings/SecurityContent.tsx:383 msgid "Loading" msgstr "" -#: src/components/forms/fields/RelatedModelField.tsx:411 +#: src/components/forms/fields/RelatedModelField.tsx:482 msgid "No results found" msgstr "" @@ -1875,10 +1912,6 @@ msgstr "" msgid "Add new row" msgstr "" -#: src/components/forms/fields/TextField.tsx:82 -msgid "Accept suggested value" -msgstr "" - #: src/components/images/DetailsImage.tsx:252 #~ msgid "Select image" #~ msgstr "Select image" @@ -2036,7 +2069,7 @@ msgstr "" #: src/components/importer/ImporterDrawer.tsx:109 #: src/components/modals/AboutInvenTreeModal.tsx:205 #: src/components/modals/ServerInfoModal.tsx:134 -#: src/components/wizards/ImportPartWizard.tsx:772 +#: src/components/wizards/ImportPartWizard.tsx:773 #: src/forms/BomForms.tsx:132 #: src/pages/Index/Settings/AccountSettings/MFASettings.tsx:685 msgid "Close" @@ -2199,7 +2232,7 @@ msgid "Change" msgstr "" #: src/components/items/RoleTable.tsx:150 -#: src/forms/StockForms.tsx:927 +#: src/forms/StockForms.tsx:941 #: src/tables/stock/StockItemTestResultTable.tsx:367 msgid "Add" msgstr "" @@ -2222,11 +2255,11 @@ msgstr "" #: src/components/items/TransferList.tsx:161 #: src/components/render/Stock.tsx:102 -#: src/pages/part/PartDetail.tsx:994 +#: src/pages/part/PartDetail.tsx:1009 #: src/pages/stock/StockDetail.tsx:265 #: src/pages/stock/StockDetail.tsx:942 -#: src/tables/build/BuildAllocatedStockTable.tsx:135 -#: src/tables/build/BuildLineTable.tsx:192 +#: src/tables/build/BuildAllocatedStockTable.tsx:132 +#: src/tables/build/BuildLineTable.tsx:193 #: src/tables/part/PartTable.tsx:137 #: src/tables/stock/StockItemTable.tsx:182 #: src/tables/stock/StockItemTable.tsx:343 @@ -2373,7 +2406,7 @@ msgid "Database" msgstr "" #: src/components/modals/ServerInfoModal.tsx:49 -#: src/components/nav/Alerts.tsx:118 +#: src/components/nav/Alerts.tsx:120 msgid "Debug Mode" msgstr "" @@ -2414,7 +2447,7 @@ msgid "Issues detected" msgstr "" #: src/components/modals/ServerInfoModal.tsx:102 -#: src/components/nav/Alerts.tsx:125 +#: src/components/nav/Alerts.tsx:127 msgid "Background Worker" msgstr "" @@ -2436,7 +2469,7 @@ msgstr "" #~ msgstr "Email settings not configured" #: src/components/modals/ServerInfoModal.tsx:120 -#: src/components/nav/Alerts.tsx:141 +#: src/components/nav/Alerts.tsx:143 msgid "Email settings not configured." msgstr "" @@ -2444,43 +2477,47 @@ msgstr "" msgid "Alerts" msgstr "" -#: src/components/nav/Alerts.tsx:120 +#: src/components/nav/Alerts.tsx:97 +msgid "No issues detected" +msgstr "" + +#: src/components/nav/Alerts.tsx:122 msgid "The server is running in debug mode." msgstr "" -#: src/components/nav/Alerts.tsx:127 +#: src/components/nav/Alerts.tsx:129 msgid "The background worker process is not running." msgstr "" -#: src/components/nav/Alerts.tsx:132 +#: src/components/nav/Alerts.tsx:134 msgid "Server Restart" msgstr "" -#: src/components/nav/Alerts.tsx:134 +#: src/components/nav/Alerts.tsx:136 msgid "The server requires a restart to apply changes." msgstr "" -#: src/components/nav/Alerts.tsx:139 +#: src/components/nav/Alerts.tsx:141 msgid "Email settings" msgstr "" -#: src/components/nav/Alerts.tsx:146 +#: src/components/nav/Alerts.tsx:148 msgid "Database Migrations" msgstr "" -#: src/components/nav/Alerts.tsx:148 +#: src/components/nav/Alerts.tsx:150 msgid "There are pending database migrations." msgstr "" -#: src/components/nav/Alerts.tsx:163 +#: src/components/nav/Alerts.tsx:165 msgid "Learn more about {code}" msgstr "" #: src/components/nav/Header.tsx:188 #: src/components/nav/NavigationDrawer.tsx:134 #: src/components/nav/NotificationDrawer.tsx:181 -#: src/pages/Index/Settings/SystemSettings.tsx:121 -#: src/pages/Index/Settings/UserSettings.tsx:106 +#: src/pages/Index/Settings/SystemSettings.tsx:122 +#: src/pages/Index/Settings/UserSettings.tsx:107 #: src/pages/Notifications.tsx:45 #: src/pages/Notifications.tsx:130 msgid "Notifications" @@ -2511,8 +2548,8 @@ msgstr "" #: src/components/nav/NavigationDrawer.tsx:140 #: src/components/nav/SettingsHeader.tsx:40 #: src/defaults/actions.tsx:92 -#: src/pages/Index/Settings/UserSettings.tsx:141 -#: src/pages/Index/Settings/UserSettings.tsx:145 +#: src/pages/Index/Settings/UserSettings.tsx:142 +#: src/pages/Index/Settings/UserSettings.tsx:146 msgid "User Settings" msgstr "" @@ -2529,8 +2566,8 @@ msgstr "" #: src/components/nav/NavigationDrawer.tsx:146 #: src/components/nav/SettingsHeader.tsx:41 #: src/defaults/actions.tsx:144 -#: src/pages/Index/Settings/SystemSettings.tsx:348 -#: src/pages/Index/Settings/SystemSettings.tsx:353 +#: src/pages/Index/Settings/SystemSettings.tsx:354 +#: src/pages/Index/Settings/SystemSettings.tsx:359 msgid "System Settings" msgstr "" @@ -2577,11 +2614,11 @@ msgstr "" #: src/components/nav/NavigationDrawer.tsx:77 #: src/components/render/Part.tsx:36 -#: src/components/wizards/ImportPartWizard.tsx:807 +#: src/components/wizards/ImportPartWizard.tsx:808 #: src/defaults/links.tsx:42 #: src/forms/StockForms.tsx:794 -#: src/pages/Index/Settings/SystemSettings.tsx:224 -#: src/pages/part/PartDetail.tsx:804 +#: src/pages/Index/Settings/SystemSettings.tsx:230 +#: src/pages/part/PartDetail.tsx:793 #: src/pages/stock/LocationDetail.tsx:390 #: src/pages/stock/LocationDetail.tsx:420 #: src/pages/stock/StockDetail.tsx:642 @@ -2591,29 +2628,29 @@ msgstr "" #: src/components/nav/NavigationDrawer.tsx:84 #: src/defaults/links.tsx:48 -#: src/pages/build/BuildDetail.tsx:748 -#: src/pages/build/BuildIndex.tsx:102 +#: src/pages/build/BuildDetail.tsx:753 +#: src/pages/build/BuildIndex.tsx:101 msgid "Manufacturing" msgstr "" #: src/components/nav/NavigationDrawer.tsx:91 #: src/defaults/links.tsx:54 #: src/pages/company/ManufacturerDetail.tsx:9 -#: src/pages/company/ManufacturerPartDetail.tsx:276 +#: src/pages/company/ManufacturerPartDetail.tsx:267 #: src/pages/company/SupplierDetail.tsx:9 -#: src/pages/company/SupplierPartDetail.tsx:360 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:553 -#: src/pages/purchasing/PurchasingIndex.tsx:122 +#: src/pages/company/SupplierPartDetail.tsx:365 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:558 +#: src/pages/purchasing/PurchasingIndex.tsx:212 msgid "Purchasing" msgstr "" #: src/components/nav/NavigationDrawer.tsx:98 #: src/defaults/links.tsx:60 #: src/pages/company/CustomerDetail.tsx:9 -#: src/pages/sales/ReturnOrderDetail.tsx:554 -#: src/pages/sales/SalesIndex.tsx:153 -#: src/pages/sales/SalesOrderDetail.tsx:619 -#: src/pages/sales/SalesOrderShipmentDetail.tsx:480 +#: src/pages/sales/ReturnOrderDetail.tsx:559 +#: src/pages/sales/SalesIndex.tsx:168 +#: src/pages/sales/SalesOrderDetail.tsx:624 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:448 msgid "Sales" msgstr "" @@ -2667,21 +2704,21 @@ msgid "Remove search group" msgstr "" #: src/components/nav/SearchDrawer.tsx:288 -#: src/pages/company/ManufacturerPartDetail.tsx:192 -#: src/pages/part/PartDetail.tsx:862 +#: src/pages/company/ManufacturerPartDetail.tsx:179 +#: src/pages/part/PartDetail.tsx:851 #: src/pages/part/PartSupplierDetail.tsx:15 -#: src/pages/purchasing/PurchasingIndex.tsx:81 +#: src/pages/purchasing/PurchasingIndex.tsx:100 msgid "Suppliers" msgstr "" #: src/components/nav/SearchDrawer.tsx:298 #: src/pages/part/PartSupplierDetail.tsx:23 -#: src/pages/purchasing/PurchasingIndex.tsx:98 +#: src/pages/purchasing/PurchasingIndex.tsx:149 msgid "Manufacturers" msgstr "" #: src/components/nav/SearchDrawer.tsx:308 -#: src/pages/sales/SalesIndex.tsx:138 +#: src/pages/sales/SalesIndex.tsx:133 msgid "Customers" msgstr "" @@ -2772,21 +2809,21 @@ msgstr "" #: src/components/plugins/PluginDrawer.tsx:73 #: src/forms/selectionListFields.tsx:102 -#: src/pages/build/BuildDetail.tsx:250 -#: src/pages/company/CompanyDetail.tsx:93 -#: src/pages/company/ManufacturerPartDetail.tsx:93 -#: src/pages/company/ManufacturerPartDetail.tsx:120 -#: src/pages/company/SupplierPartDetail.tsx:145 -#: src/pages/part/CategoryDetail.tsx:108 +#: src/pages/build/BuildDetail.tsx:251 +#: src/pages/company/CompanyDetail.tsx:94 +#: src/pages/company/ManufacturerPartDetail.tsx:92 +#: src/pages/company/ManufacturerPartDetail.tsx:119 +#: src/pages/company/SupplierPartDetail.tsx:146 +#: src/pages/part/CategoryDetail.tsx:111 #: src/pages/part/PartDetail.tsx:460 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:162 -#: src/pages/sales/ReturnOrderDetail.tsx:129 -#: src/pages/sales/SalesOrderDetail.tsx:119 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:163 +#: src/pages/sales/ReturnOrderDetail.tsx:130 +#: src/pages/sales/SalesOrderDetail.tsx:120 #: src/pages/stock/LocationDetail.tsx:102 #: src/tables/ColumnRenderers.tsx:278 -#: src/tables/build/BuildAllocatedStockTable.tsx:91 -#: src/tables/machine/MachineTypeTable.tsx:161 -#: src/tables/machine/MachineTypeTable.tsx:257 +#: src/tables/build/BuildAllocatedStockTable.tsx:88 +#: src/tables/machine/MachineTypeTable.tsx:159 +#: src/tables/machine/MachineTypeTable.tsx:255 #: src/tables/plugin/PluginListTable.tsx:110 msgid "Description" msgstr "" @@ -2814,7 +2851,7 @@ msgstr "" #: src/tables/company/CompanyTable.tsx:91 #: src/tables/machine/MachineListTable.tsx:384 #: src/tables/machine/MachineListTable.tsx:799 -#: src/tables/part/ParametricPartTable.tsx:354 +#: src/tables/part/ParametricPartTable.tsx:19 #: src/tables/part/PartTable.tsx:197 #: src/tables/part/PartVariantTable.tsx:15 #: src/tables/plugin/PluginListTable.tsx:96 @@ -2836,8 +2873,8 @@ msgid "Installation Path" msgstr "" #: src/components/plugins/PluginDrawer.tsx:116 -#: src/tables/machine/MachineTypeTable.tsx:184 -#: src/tables/machine/MachineTypeTable.tsx:293 +#: src/tables/machine/MachineTypeTable.tsx:182 +#: src/tables/machine/MachineTypeTable.tsx:291 #: src/tables/plugin/PluginListTable.tsx:101 #: src/tables/plugin/PluginListTable.tsx:417 msgid "Builtin" @@ -2849,8 +2886,8 @@ msgstr "" #: src/components/plugins/PluginDrawer.tsx:133 #: src/pages/Index/Settings/AdminCenter/PluginManagementPanel.tsx:55 -#: src/pages/Index/Settings/SystemSettings.tsx:331 -#: src/pages/Index/Settings/UserSettings.tsx:128 +#: src/pages/Index/Settings/SystemSettings.tsx:337 +#: src/pages/Index/Settings/UserSettings.tsx:129 msgid "Plugin Settings" msgstr "" @@ -2911,7 +2948,7 @@ msgstr "" #~ msgid "Unknown model: {model}" #~ msgstr "Unknown model: {model}" -#: src/components/render/Instance.tsx:249 +#: src/components/render/Instance.tsx:247 msgid "Unknown model: {model_name}" msgstr "" @@ -2939,10 +2976,10 @@ msgstr "" #: src/components/render/Part.tsx:28 #: src/components/render/Plugin.tsx:17 #: src/components/render/User.tsx:37 -#: src/pages/company/CompanyDetail.tsx:323 -#: src/pages/company/SupplierPartDetail.tsx:373 +#: src/pages/company/CompanyDetail.tsx:328 +#: src/pages/company/SupplierPartDetail.tsx:378 #: src/pages/core/UserDetail.tsx:211 -#: src/pages/part/PartDetail.tsx:1027 +#: src/pages/part/PartDetail.tsx:1048 #: src/tables/ColumnRenderers.tsx:410 msgid "Inactive" msgstr "" @@ -2962,11 +2999,11 @@ msgstr "" #: src/components/render/Part.tsx:47 #: src/components/wizards/OrderPartsWizard.tsx:135 -#: src/pages/company/SupplierPartDetail.tsx:197 -#: src/pages/company/SupplierPartDetail.tsx:394 -#: src/pages/part/PartDetail.tsx:1015 +#: src/pages/company/SupplierPartDetail.tsx:198 +#: src/pages/company/SupplierPartDetail.tsx:399 +#: src/pages/part/PartDetail.tsx:1030 #: src/tables/bom/BomTable.tsx:444 -#: src/tables/build/BuildLineTable.tsx:222 +#: src/tables/build/BuildLineTable.tsx:223 #: src/tables/part/PartTable.tsx:108 msgid "On Order" msgstr "" @@ -2974,9 +3011,9 @@ msgstr "" #: src/components/render/Part.tsx:55 #: src/components/wizards/OrderPartsWizard.tsx:141 #: src/pages/part/PartDetail.tsx:587 -#: src/pages/part/PartDetail.tsx:1021 +#: src/pages/part/PartDetail.tsx:1036 #: src/pages/stock/StockDetail.tsx:925 -#: src/tables/part/PartTestResultTable.tsx:297 +#: src/tables/part/PartTestResultTable.tsx:305 #: src/tables/stock/StockItemTable.tsx:359 msgid "In Production" msgstr "" @@ -2987,7 +3024,7 @@ msgid "Details" msgstr "" #: src/components/render/Part.tsx:112 -#: src/components/wizards/ImportPartWizard.tsx:806 +#: src/components/wizards/ImportPartWizard.tsx:807 #: src/pages/part/PartDetail.tsx:487 #: src/tables/ColumnRenderers.tsx:233 #: src/tables/ColumnRenderers.tsx:242 @@ -3000,16 +3037,16 @@ msgstr "" #: src/components/render/Stock.tsx:114 #: src/components/render/Stock.tsx:132 #: src/forms/BuildForms.tsx:795 -#: src/forms/PurchaseOrderForms.tsx:595 +#: src/forms/PurchaseOrderForms.tsx:647 #: src/forms/StockForms.tsx:792 #: src/forms/StockForms.tsx:839 -#: src/forms/StockForms.tsx:885 -#: src/forms/StockForms.tsx:924 -#: src/forms/StockForms.tsx:960 -#: src/forms/StockForms.tsx:1003 -#: src/forms/StockForms.tsx:1047 -#: src/forms/StockForms.tsx:1095 -#: src/forms/StockForms.tsx:1139 +#: src/forms/StockForms.tsx:892 +#: src/forms/StockForms.tsx:938 +#: src/forms/StockForms.tsx:976 +#: src/forms/StockForms.tsx:1019 +#: src/forms/StockForms.tsx:1063 +#: src/forms/StockForms.tsx:1111 +#: src/forms/StockForms.tsx:1155 #: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:88 #: src/pages/core/UserDetail.tsx:158 #: src/pages/stock/StockDetail.tsx:298 @@ -3023,7 +3060,7 @@ msgstr "" #: src/components/render/Stock.tsx:99 #: src/pages/stock/StockDetail.tsx:198 #: src/pages/stock/StockDetail.tsx:930 -#: src/tables/build/BuildAllocatedStockTable.tsx:121 +#: src/tables/build/BuildAllocatedStockTable.tsx:118 #: src/tables/build/BuildOutputTable.tsx:107 #: src/tables/sales/SalesOrderAllocationTable.tsx:142 msgid "Serial Number" @@ -3034,9 +3071,9 @@ msgstr "" #: src/forms/BuildForms.tsx:240 #: src/forms/BuildForms.tsx:634 #: src/forms/BuildForms.tsx:797 -#: src/forms/PurchaseOrderForms.tsx:801 +#: src/forms/PurchaseOrderForms.tsx:853 #: src/forms/ReturnOrderForms.tsx:243 -#: src/forms/SalesOrderForms.tsx:308 +#: src/forms/SalesOrderForms.tsx:387 #: src/forms/StockForms.tsx:841 #: src/pages/part/PartStockHistoryDetail.tsx:56 #: src/pages/part/PartStockHistoryDetail.tsx:210 @@ -3046,9 +3083,9 @@ msgstr "" #: src/pages/part/pricing/PriceBreakPanel.tsx:172 #: src/pages/stock/StockDetail.tsx:258 #: src/pages/stock/StockDetail.tsx:936 -#: src/tables/build/BuildLineTable.tsx:86 +#: src/tables/build/BuildLineTable.tsx:83 #: src/tables/part/PartPurchaseOrdersTable.tsx:94 -#: src/tables/part/PartTestResultTable.tsx:269 +#: src/tables/part/PartTestResultTable.tsx:277 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:175 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:206 #: src/tables/purchasing/SupplierPriceBreakTable.tsx:69 @@ -3063,14 +3100,14 @@ msgstr "" #: src/forms/BuildForms.tsx:474 #: src/forms/StockForms.tsx:793 #: src/forms/StockForms.tsx:840 -#: src/forms/StockForms.tsx:886 -#: src/forms/StockForms.tsx:925 -#: src/forms/StockForms.tsx:961 -#: src/forms/StockForms.tsx:1004 -#: src/forms/StockForms.tsx:1048 -#: src/forms/StockForms.tsx:1096 -#: src/forms/StockForms.tsx:1140 -#: src/tables/build/BuildLineTable.tsx:96 +#: src/forms/StockForms.tsx:893 +#: src/forms/StockForms.tsx:939 +#: src/forms/StockForms.tsx:977 +#: src/forms/StockForms.tsx:1020 +#: src/forms/StockForms.tsx:1064 +#: src/forms/StockForms.tsx:1112 +#: src/forms/StockForms.tsx:1156 +#: src/tables/build/BuildLineTable.tsx:93 msgid "Batch" msgstr "" @@ -3306,10 +3343,6 @@ msgstr "" #~ msgid "Part category updated" #~ msgstr "Part category updated" -#: src/components/tables/part/PartParameterTable.tsx:41 -#~ msgid "Parameter" -#~ msgstr "Parameter" - #: src/components/tables/part/PartParameterTable.tsx:114 #~ msgid "Part parameter updated" #~ msgstr "Part parameter updated" @@ -3571,15 +3604,16 @@ msgid "Already Imported" msgstr "" #: src/components/wizards/ImportPartWizard.tsx:205 -#: src/pages/company/CompanyDetail.tsx:136 +#: src/pages/company/CompanyDetail.tsx:137 #: src/pages/company/SupplierDetail.tsx:8 -#: src/pages/company/SupplierPartDetail.tsx:130 -#: src/pages/company/SupplierPartDetail.tsx:235 -#: src/pages/company/SupplierPartDetail.tsx:364 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:156 +#: src/pages/company/SupplierPartDetail.tsx:131 +#: src/pages/company/SupplierPartDetail.tsx:236 +#: src/pages/company/SupplierPartDetail.tsx:369 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:157 #: src/tables/Filter.tsx:360 #: src/tables/company/CompanyTable.tsx:96 #: src/tables/part/PartPurchaseOrdersTable.tsx:43 +#: src/tables/purchasing/PurchaseOrderParametricTable.tsx:34 #: src/tables/purchasing/PurchaseOrderTable.tsx:109 #: src/tables/purchasing/SupplierPriceBreakTable.tsx:40 msgid "Supplier" @@ -3648,7 +3682,7 @@ msgid "Next" msgstr "" #: src/components/wizards/ImportPartWizard.tsx:540 -#: src/pages/part/PartDetail.tsx:1046 +#: src/pages/part/PartDetail.tsx:1067 #: src/tables/part/PartTable.tsx:408 msgid "Edit Part" msgstr "" @@ -3669,28 +3703,28 @@ msgstr "" msgid "Import" msgstr "" -#: src/components/wizards/ImportPartWizard.tsx:691 +#: src/components/wizards/ImportPartWizard.tsx:692 msgid "Parameters created successfully!" msgstr "" -#: src/components/wizards/ImportPartWizard.tsx:719 +#: src/components/wizards/ImportPartWizard.tsx:720 msgid "Failed to create parameters, please fix the errors and try again" msgstr "" #. placeholder {0}: supplierPart?.supplier -#: src/components/wizards/ImportPartWizard.tsx:739 +#: src/components/wizards/ImportPartWizard.tsx:740 msgid "Part imported successfully from supplier {0}." msgstr "" -#: src/components/wizards/ImportPartWizard.tsx:752 +#: src/components/wizards/ImportPartWizard.tsx:753 msgid "Open Part" msgstr "" -#: src/components/wizards/ImportPartWizard.tsx:759 +#: src/components/wizards/ImportPartWizard.tsx:760 msgid "Open Supplier Part" msgstr "" -#: src/components/wizards/ImportPartWizard.tsx:766 +#: src/components/wizards/ImportPartWizard.tsx:767 msgid "Open Manufacturer Part" msgstr "" @@ -3699,25 +3733,19 @@ msgstr "" #~ msgid "Import Part" #~ msgstr "Import Part" -#: src/components/wizards/ImportPartWizard.tsx:802 +#: src/components/wizards/ImportPartWizard.tsx:803 msgid "Import Supplier Part" msgstr "" -#: src/components/wizards/ImportPartWizard.tsx:804 +#: src/components/wizards/ImportPartWizard.tsx:805 msgid "Search Supplier Part" msgstr "" -#: src/components/wizards/ImportPartWizard.tsx:806 -#: src/pages/company/ManufacturerPartDetail.tsx:166 -#: src/pages/part/PartDetail.tsx:793 -msgid "Parameters" -msgstr "" - -#: src/components/wizards/ImportPartWizard.tsx:806 +#: src/components/wizards/ImportPartWizard.tsx:807 msgid "Confirm import" msgstr "" -#: src/components/wizards/ImportPartWizard.tsx:808 +#: src/components/wizards/ImportPartWizard.tsx:809 msgid "Done" msgstr "" @@ -3738,24 +3766,24 @@ msgid "Sales Requirements" msgstr "" #: src/components/wizards/OrderPartsWizard.tsx:129 -#: src/forms/StockForms.tsx:887 -#: src/forms/StockForms.tsx:926 -#: src/forms/StockForms.tsx:962 -#: src/forms/StockForms.tsx:1005 -#: src/forms/StockForms.tsx:1049 -#: src/forms/StockForms.tsx:1097 -#: src/forms/StockForms.tsx:1141 -#: src/pages/company/SupplierPartDetail.tsx:190 -#: src/pages/company/SupplierPartDetail.tsx:378 +#: src/forms/StockForms.tsx:894 +#: src/forms/StockForms.tsx:940 +#: src/forms/StockForms.tsx:978 +#: src/forms/StockForms.tsx:1021 +#: src/forms/StockForms.tsx:1065 +#: src/forms/StockForms.tsx:1113 +#: src/forms/StockForms.tsx:1157 +#: src/pages/company/SupplierPartDetail.tsx:191 +#: src/pages/company/SupplierPartDetail.tsx:383 #: src/pages/part/PartDetail.tsx:534 -#: src/pages/part/PartDetail.tsx:984 +#: src/pages/part/PartDetail.tsx:999 #: src/tables/Filter.tsx:92 #: src/tables/purchasing/SupplierPartTable.tsx:230 msgid "In Stock" msgstr "" #: src/components/wizards/OrderPartsWizard.tsx:146 -#: src/tables/build/BuildLineTable.tsx:404 +#: src/tables/build/BuildLineTable.tsx:405 msgid "Required Quantity" msgstr "" @@ -3847,7 +3875,7 @@ msgid "Please correct the errors in the selected parts" msgstr "" #: src/components/wizards/OrderPartsWizard.tsx:587 -#: src/tables/build/BuildLineTable.tsx:815 +#: src/tables/build/BuildLineTable.tsx:822 #: src/tables/part/PartTable.tsx:522 #: src/tables/sales/SalesOrderLineItemTable.tsx:370 msgid "Order Parts" @@ -4349,9 +4377,9 @@ msgstr "" #: src/forms/BuildForms.tsx:333 #: src/forms/BuildForms.tsx:408 #: src/forms/BuildForms.tsx:685 -#: src/tables/build/BuildAllocatedStockTable.tsx:150 +#: src/tables/build/BuildAllocatedStockTable.tsx:147 #: src/tables/build/BuildOutputTable.tsx:582 -#: src/tables/part/PartTestResultTable.tsx:272 +#: src/tables/part/PartTestResultTable.tsx:280 msgid "Build Output" msgstr "" @@ -4362,22 +4390,22 @@ msgstr "" #: src/forms/BuildForms.tsx:336 #: src/forms/BuildForms.tsx:411 #: src/forms/BuildForms.tsx:475 -#: src/forms/PurchaseOrderForms.tsx:717 +#: src/forms/PurchaseOrderForms.tsx:769 #: src/forms/ReturnOrderForms.tsx:197 #: src/forms/ReturnOrderForms.tsx:244 #: src/forms/StockForms.tsx:712 #: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:87 -#: src/pages/build/BuildDetail.tsx:222 +#: src/pages/build/BuildDetail.tsx:223 #: src/pages/core/UserDetail.tsx:151 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:168 -#: src/pages/sales/ReturnOrderDetail.tsx:135 -#: src/pages/sales/SalesOrderDetail.tsx:125 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:169 +#: src/pages/sales/ReturnOrderDetail.tsx:136 +#: src/pages/sales/SalesOrderDetail.tsx:126 #: src/pages/stock/StockDetail.tsx:170 #: src/tables/Filter.tsx:274 #: src/tables/build/BuildOutputTable.tsx:404 #: src/tables/machine/MachineListTable.tsx:387 #: src/tables/part/PartPurchaseOrdersTable.tsx:38 -#: src/tables/part/PartTestResultTable.tsx:309 +#: src/tables/part/PartTestResultTable.tsx:317 #: src/tables/sales/ReturnOrderLineItemTable.tsx:138 #: src/tables/sales/ReturnOrderLineItemTable.tsx:176 #: src/tables/settings/CustomStateTable.tsx:79 @@ -4443,18 +4471,19 @@ msgid "Build outputs have been cancelled" msgstr "" #: src/forms/BuildForms.tsx:631 -#: src/pages/build/BuildDetail.tsx:207 -#: src/pages/company/ManufacturerPartDetail.tsx:85 -#: src/pages/company/SupplierPartDetail.tsx:96 +#: src/pages/build/BuildDetail.tsx:208 +#: src/pages/company/ManufacturerPartDetail.tsx:84 +#: src/pages/company/SupplierPartDetail.tsx:97 #: src/pages/part/PartDetail.tsx:453 #: src/pages/stock/StockDetail.tsx:153 #: src/tables/bom/BomTable.tsx:134 #: src/tables/bom/UsedInTable.tsx:40 -#: src/tables/build/BuildAllocatedStockTable.tsx:108 -#: src/tables/build/BuildLineTable.tsx:336 +#: src/tables/build/BuildAllocatedStockTable.tsx:105 +#: src/tables/build/BuildLineTable.tsx:337 #: src/tables/build/BuildOrderTable.tsx:79 #: src/tables/part/PartSalesAllocationsTable.tsx:61 #: src/tables/part/RelatedPartTable.tsx:73 +#: src/tables/purchasing/ManufacturerPartParametricTable.tsx:21 #: src/tables/purchasing/ManufacturerPartTable.tsx:69 #: src/tables/purchasing/SupplierPartTable.tsx:70 #: src/tables/sales/SalesOrderAllocationTable.tsx:135 @@ -4466,47 +4495,47 @@ msgstr "" #: src/forms/BuildForms.tsx:632 #: src/forms/BuildForms.tsx:796 #: src/forms/BuildForms.tsx:897 -#: src/forms/SalesOrderForms.tsx:306 -#: src/tables/build/BuildAllocatedStockTable.tsx:139 -#: src/tables/build/BuildLineTable.tsx:182 +#: src/forms/SalesOrderForms.tsx:385 +#: src/tables/build/BuildAllocatedStockTable.tsx:136 +#: src/tables/build/BuildLineTable.tsx:183 #: src/tables/sales/SalesOrderLineItemTable.tsx:342 #: src/tables/stock/StockItemTable.tsx:338 msgid "Allocated" msgstr "" #: src/forms/BuildForms.tsx:667 -#: src/forms/SalesOrderForms.tsx:295 -#: src/pages/build/BuildDetail.tsx:108 -#: src/pages/build/BuildDetail.tsx:326 +#: src/forms/SalesOrderForms.tsx:374 +#: src/pages/build/BuildDetail.tsx:109 +#: src/pages/build/BuildDetail.tsx:327 msgid "Source Location" msgstr "" #: src/forms/BuildForms.tsx:668 -#: src/forms/SalesOrderForms.tsx:296 +#: src/forms/SalesOrderForms.tsx:375 msgid "Select the source location for the stock allocation" msgstr "" #: src/forms/BuildForms.tsx:700 -#: src/forms/SalesOrderForms.tsx:336 -#: src/tables/build/BuildLineTable.tsx:574 -#: src/tables/build/BuildLineTable.tsx:731 -#: src/tables/build/BuildLineTable.tsx:830 +#: src/forms/SalesOrderForms.tsx:415 +#: src/tables/build/BuildLineTable.tsx:575 +#: src/tables/build/BuildLineTable.tsx:738 +#: src/tables/build/BuildLineTable.tsx:837 #: src/tables/sales/SalesOrderLineItemTable.tsx:380 #: src/tables/sales/SalesOrderLineItemTable.tsx:406 msgid "Allocate Stock" msgstr "" #: src/forms/BuildForms.tsx:703 -#: src/forms/SalesOrderForms.tsx:341 +#: src/forms/SalesOrderForms.tsx:420 msgid "Stock items allocated" msgstr "" #: src/forms/BuildForms.tsx:816 #: src/forms/BuildForms.tsx:917 -#: src/tables/build/BuildAllocatedStockTable.tsx:240 -#: src/tables/build/BuildAllocatedStockTable.tsx:272 -#: src/tables/build/BuildLineTable.tsx:741 -#: src/tables/build/BuildLineTable.tsx:864 +#: src/tables/build/BuildAllocatedStockTable.tsx:243 +#: src/tables/build/BuildAllocatedStockTable.tsx:279 +#: src/tables/build/BuildLineTable.tsx:748 +#: src/tables/build/BuildLineTable.tsx:871 msgid "Consume Stock" msgstr "" @@ -4521,21 +4550,21 @@ msgstr "" #~ msgstr "Stock items consumed" #: src/forms/BuildForms.tsx:853 -#: src/tables/build/BuildLineTable.tsx:514 +#: src/tables/build/BuildLineTable.tsx:515 #: src/tables/part/PartBuildAllocationsTable.tsx:101 msgid "Fully consumed" msgstr "" #: src/forms/BuildForms.tsx:898 -#: src/tables/build/BuildLineTable.tsx:187 +#: src/tables/build/BuildLineTable.tsx:188 #: src/tables/stock/StockItemTable.tsx:367 msgid "Consumed" msgstr "" -#: src/forms/CommonForms.tsx:88 -#: src/forms/PurchaseOrderForms.tsx:125 +#: src/forms/CommonForms.tsx:92 +#: src/forms/PurchaseOrderForms.tsx:176 #: src/forms/ReturnOrderForms.tsx:138 -#: src/forms/SalesOrderForms.tsx:164 +#: src/forms/SalesOrderForms.tsx:185 msgid "Select project code for this line item" msgstr "" @@ -4543,16 +4572,16 @@ msgstr "" #~ msgid "Company updated" #~ msgstr "Company updated" -#: src/forms/PartForms.tsx:85 -#: src/forms/PartForms.tsx:207 -#: src/pages/part/CategoryDetail.tsx:124 +#: src/forms/PartForms.tsx:99 +#: src/forms/PartForms.tsx:228 +#: src/pages/part/CategoryDetail.tsx:127 #: src/pages/part/PartDetail.tsx:668 #: src/tables/part/PartCategoryTable.tsx:94 #: src/tables/part/PartTable.tsx:325 msgid "Subscribed" msgstr "" -#: src/forms/PartForms.tsx:86 +#: src/forms/PartForms.tsx:100 msgid "Subscribe to notifications for this part" msgstr "" @@ -4564,40 +4593,24 @@ msgstr "" #~ msgid "Part updated" #~ msgstr "Part updated" -#: src/forms/PartForms.tsx:193 +#: src/forms/PartForms.tsx:214 msgid "Parent part category" msgstr "" -#: src/forms/PartForms.tsx:208 +#: src/forms/PartForms.tsx:229 msgid "Subscribe to notifications for this category" msgstr "" -#: src/forms/PurchaseOrderForms.tsx:388 -msgid "Assign Batch Code and Serial Numbers" -msgstr "" - -#: src/forms/PurchaseOrderForms.tsx:390 -msgid "Assign Batch Code" -msgstr "" - -#: src/forms/PurchaseOrderForms.tsx:410 -msgid "Choose Location" -msgstr "" - -#: src/forms/PurchaseOrderForms.tsx:418 -msgid "Item Destination selected" -msgstr "" - #: src/forms/PurchaseOrderForms.tsx:421 #~ msgid "Assign Batch Code{0}" #~ msgstr "Assign Batch Code{0}" -#: src/forms/PurchaseOrderForms.tsx:428 -msgid "Part category default location selected" +#: src/forms/PurchaseOrderForms.tsx:440 +msgid "Assign Batch Code and Serial Numbers" msgstr "" -#: src/forms/PurchaseOrderForms.tsx:438 -msgid "Received stock location selected" +#: src/forms/PurchaseOrderForms.tsx:442 +msgid "Assign Batch Code" msgstr "" #: src/forms/PurchaseOrderForms.tsx:444 @@ -4605,115 +4618,131 @@ msgstr "" #~ msgid "Remove item from list" #~ msgstr "Remove item from list" -#: src/forms/PurchaseOrderForms.tsx:446 +#: src/forms/PurchaseOrderForms.tsx:462 +msgid "Choose Location" +msgstr "" + +#: src/forms/PurchaseOrderForms.tsx:470 +msgid "Item Destination selected" +msgstr "" + +#: src/forms/PurchaseOrderForms.tsx:480 +msgid "Part category default location selected" +msgstr "" + +#: src/forms/PurchaseOrderForms.tsx:490 +msgid "Received stock location selected" +msgstr "" + +#: src/forms/PurchaseOrderForms.tsx:498 msgid "Default location selected" msgstr "" -#: src/forms/PurchaseOrderForms.tsx:507 +#: src/forms/PurchaseOrderForms.tsx:559 msgid "Set Location" msgstr "" -#: src/forms/PurchaseOrderForms.tsx:524 -msgid "Set Expiry Date" -msgstr "" - -#: src/forms/PurchaseOrderForms.tsx:532 -#: src/forms/StockForms.tsx:693 -msgid "Adjust Packaging" -msgstr "" - -#: src/forms/PurchaseOrderForms.tsx:540 -#: src/forms/StockForms.tsx:684 -#: src/hooks/UseStockAdjustActions.tsx:148 -msgid "Change Status" -msgstr "" - -#: src/forms/PurchaseOrderForms.tsx:546 -msgid "Add Note" -msgstr "" - #: src/forms/PurchaseOrderForms.tsx:566 #~ msgid "Serial numbers" #~ msgstr "Serial numbers" +#: src/forms/PurchaseOrderForms.tsx:576 +msgid "Set Expiry Date" +msgstr "" + #: src/forms/PurchaseOrderForms.tsx:582 #~ msgid "Store at line item destination" #~ msgstr "Store at line item destination" -#: src/forms/PurchaseOrderForms.tsx:610 -msgid "Store at default location" +#: src/forms/PurchaseOrderForms.tsx:584 +#: src/forms/StockForms.tsx:693 +msgid "Adjust Packaging" msgstr "" -#: src/forms/PurchaseOrderForms.tsx:625 -msgid "Store at line item destination " +#: src/forms/PurchaseOrderForms.tsx:592 +#: src/forms/StockForms.tsx:684 +#: src/hooks/UseStockAdjustActions.tsx:148 +msgid "Change Status" msgstr "" -#: src/forms/PurchaseOrderForms.tsx:637 -msgid "Store with already received stock" +#: src/forms/PurchaseOrderForms.tsx:598 +msgid "Add Note" msgstr "" #: src/forms/PurchaseOrderForms.tsx:658 #~ msgid "Receive line items" #~ msgstr "Receive line items" -#: src/forms/PurchaseOrderForms.tsx:661 -#: src/pages/build/BuildDetail.tsx:340 +#: src/forms/PurchaseOrderForms.tsx:662 +msgid "Store at default location" +msgstr "" + +#: src/forms/PurchaseOrderForms.tsx:677 +msgid "Store at line item destination " +msgstr "" + +#: src/forms/PurchaseOrderForms.tsx:689 +msgid "Store with already received stock" +msgstr "" + +#: src/forms/PurchaseOrderForms.tsx:713 +#: src/pages/build/BuildDetail.tsx:341 #: src/pages/stock/StockDetail.tsx:280 #: src/pages/stock/StockDetail.tsx:952 #: src/tables/Filter.tsx:83 -#: src/tables/build/BuildAllocatedStockTable.tsx:128 +#: src/tables/build/BuildAllocatedStockTable.tsx:125 #: src/tables/build/BuildOutputTable.tsx:112 -#: src/tables/part/PartTestResultTable.tsx:260 -#: src/tables/part/PartTestResultTable.tsx:281 +#: src/tables/part/PartTestResultTable.tsx:268 +#: src/tables/part/PartTestResultTable.tsx:289 #: src/tables/sales/SalesOrderAllocationTable.tsx:149 msgid "Batch Code" msgstr "" -#: src/forms/PurchaseOrderForms.tsx:662 +#: src/forms/PurchaseOrderForms.tsx:714 msgid "Enter batch code for received items" msgstr "" -#: src/forms/PurchaseOrderForms.tsx:675 +#: src/forms/PurchaseOrderForms.tsx:727 #: src/forms/StockForms.tsx:218 msgid "Serial Numbers" msgstr "" -#: src/forms/PurchaseOrderForms.tsx:676 +#: src/forms/PurchaseOrderForms.tsx:728 msgid "Enter serial numbers for received items" msgstr "" -#: src/forms/PurchaseOrderForms.tsx:690 +#: src/forms/PurchaseOrderForms.tsx:742 #: src/pages/stock/StockDetail.tsx:382 #: src/tables/stock/StockItemTable.tsx:294 msgid "Expiry Date" msgstr "" -#: src/forms/PurchaseOrderForms.tsx:691 +#: src/forms/PurchaseOrderForms.tsx:743 msgid "Enter an expiry date for received items" msgstr "" -#: src/forms/PurchaseOrderForms.tsx:703 +#: src/forms/PurchaseOrderForms.tsx:755 #: src/forms/StockForms.tsx:728 -#: src/pages/company/SupplierPartDetail.tsx:172 -#: src/pages/company/SupplierPartDetail.tsx:236 +#: src/pages/company/SupplierPartDetail.tsx:173 +#: src/pages/company/SupplierPartDetail.tsx:237 #: src/pages/stock/StockDetail.tsx:419 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:227 msgid "Packaging" msgstr "" -#: src/forms/PurchaseOrderForms.tsx:727 -#: src/pages/company/SupplierPartDetail.tsx:120 +#: src/forms/PurchaseOrderForms.tsx:779 +#: src/pages/company/SupplierPartDetail.tsx:121 #: src/tables/ColumnRenderers.tsx:332 msgid "Note" msgstr "" -#: src/forms/PurchaseOrderForms.tsx:799 -#: src/pages/company/SupplierPartDetail.tsx:138 +#: src/forms/PurchaseOrderForms.tsx:851 +#: src/pages/company/SupplierPartDetail.tsx:139 #: src/tables/purchasing/SupplierPriceBreakTable.tsx:49 msgid "SKU" msgstr "" -#: src/forms/PurchaseOrderForms.tsx:800 +#: src/forms/PurchaseOrderForms.tsx:852 #: src/tables/part/PartPurchaseOrdersTable.tsx:127 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:213 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:283 @@ -4721,11 +4750,11 @@ msgstr "" msgid "Received" msgstr "" -#: src/forms/PurchaseOrderForms.tsx:817 +#: src/forms/PurchaseOrderForms.tsx:869 msgid "Receive Line Items" msgstr "" -#: src/forms/PurchaseOrderForms.tsx:823 +#: src/forms/PurchaseOrderForms.tsx:875 msgid "Items received" msgstr "" @@ -4737,7 +4766,35 @@ msgstr "" msgid "Item received into stock" msgstr "" -#: src/forms/SalesOrderForms.tsx:401 +#: src/forms/SalesOrderForms.tsx:208 +#: src/forms/SalesOrderForms.tsx:210 +#: src/tables/sales/SalesOrderShipmentTable.tsx:215 +msgid "Check Shipment" +msgstr "" + +#: src/forms/SalesOrderForms.tsx:211 +msgid "Marking the shipment as checked indicates that you have verified that all items included in this shipment are correct" +msgstr "" + +#: src/forms/SalesOrderForms.tsx:221 +msgid "Shipment marked as checked" +msgstr "" + +#: src/forms/SalesOrderForms.tsx:236 +#: src/forms/SalesOrderForms.tsx:238 +#: src/tables/sales/SalesOrderShipmentTable.tsx:228 +msgid "Uncheck Shipment" +msgstr "" + +#: src/forms/SalesOrderForms.tsx:239 +msgid "Marking the shipment as unchecked indicates that the shipment requires further verification" +msgstr "" + +#: src/forms/SalesOrderForms.tsx:249 +msgid "Shipment marked as unchecked" +msgstr "" + +#: src/forms/SalesOrderForms.tsx:480 msgid "Leave blank to use the order address" msgstr "" @@ -4792,150 +4849,150 @@ msgstr "" msgid "Return" msgstr "" -#: src/forms/StockForms.tsx:963 +#: src/forms/StockForms.tsx:979 #: src/pages/Index/Scan.tsx:182 msgid "Count" msgstr "" -#: src/forms/StockForms.tsx:1246 +#: src/forms/StockForms.tsx:1262 #: src/hooks/UseStockAdjustActions.tsx:108 msgid "Add Stock" msgstr "" -#: src/forms/StockForms.tsx:1247 +#: src/forms/StockForms.tsx:1263 msgid "Stock added" msgstr "" -#: src/forms/StockForms.tsx:1250 +#: src/forms/StockForms.tsx:1266 msgid "Increase the quantity of the selected stock items by a given amount." msgstr "" -#: src/forms/StockForms.tsx:1261 +#: src/forms/StockForms.tsx:1277 #: src/hooks/UseStockAdjustActions.tsx:118 msgid "Remove Stock" msgstr "" -#: src/forms/StockForms.tsx:1262 +#: src/forms/StockForms.tsx:1278 msgid "Stock removed" msgstr "" -#: src/forms/StockForms.tsx:1265 +#: src/forms/StockForms.tsx:1281 msgid "Decrease the quantity of the selected stock items by a given amount." msgstr "" -#: src/forms/StockForms.tsx:1276 +#: src/forms/StockForms.tsx:1292 #: src/hooks/UseStockAdjustActions.tsx:128 msgid "Transfer Stock" msgstr "" -#: src/forms/StockForms.tsx:1277 +#: src/forms/StockForms.tsx:1293 msgid "Stock transferred" msgstr "" -#: src/forms/StockForms.tsx:1280 +#: src/forms/StockForms.tsx:1296 msgid "Transfer selected items to the specified location." msgstr "" -#: src/forms/StockForms.tsx:1291 +#: src/forms/StockForms.tsx:1307 #: src/hooks/UseStockAdjustActions.tsx:168 msgid "Return Stock" msgstr "" -#: src/forms/StockForms.tsx:1292 +#: src/forms/StockForms.tsx:1308 msgid "Stock returned" msgstr "" -#: src/forms/StockForms.tsx:1295 +#: src/forms/StockForms.tsx:1311 msgid "Return selected items into stock, to the specified location." msgstr "" -#: src/forms/StockForms.tsx:1306 +#: src/forms/StockForms.tsx:1322 #: src/hooks/UseStockAdjustActions.tsx:98 msgid "Count Stock" msgstr "" -#: src/forms/StockForms.tsx:1307 +#: src/forms/StockForms.tsx:1323 msgid "Stock counted" msgstr "" -#: src/forms/StockForms.tsx:1310 +#: src/forms/StockForms.tsx:1326 msgid "Count the selected stock items, and adjust the quantity accordingly." msgstr "" -#: src/forms/StockForms.tsx:1321 +#: src/forms/StockForms.tsx:1337 msgid "Change Stock Status" msgstr "" -#: src/forms/StockForms.tsx:1322 +#: src/forms/StockForms.tsx:1338 msgid "Stock status changed" msgstr "" -#: src/forms/StockForms.tsx:1325 +#: src/forms/StockForms.tsx:1341 msgid "Change the status of the selected stock items." msgstr "" -#: src/forms/StockForms.tsx:1336 +#: src/forms/StockForms.tsx:1352 #: src/hooks/UseStockAdjustActions.tsx:138 msgid "Merge Stock" msgstr "" -#: src/forms/StockForms.tsx:1337 +#: src/forms/StockForms.tsx:1353 msgid "Stock merged" msgstr "" -#: src/forms/StockForms.tsx:1339 +#: src/forms/StockForms.tsx:1355 msgid "Merge Stock Items" msgstr "" -#: src/forms/StockForms.tsx:1341 +#: src/forms/StockForms.tsx:1357 msgid "Merge operation cannot be reversed" msgstr "" -#: src/forms/StockForms.tsx:1342 +#: src/forms/StockForms.tsx:1358 msgid "Tracking information may be lost when merging items" msgstr "" -#: src/forms/StockForms.tsx:1343 +#: src/forms/StockForms.tsx:1359 msgid "Supplier information may be lost when merging items" msgstr "" -#: src/forms/StockForms.tsx:1361 +#: src/forms/StockForms.tsx:1377 msgid "Assign Stock to Customer" msgstr "" -#: src/forms/StockForms.tsx:1362 +#: src/forms/StockForms.tsx:1378 msgid "Stock assigned to customer" msgstr "" -#: src/forms/StockForms.tsx:1372 +#: src/forms/StockForms.tsx:1388 msgid "Delete Stock Items" msgstr "" -#: src/forms/StockForms.tsx:1373 +#: src/forms/StockForms.tsx:1389 msgid "Stock deleted" msgstr "" -#: src/forms/StockForms.tsx:1376 +#: src/forms/StockForms.tsx:1392 msgid "This operation will permanently delete the selected stock items." msgstr "" -#: src/forms/StockForms.tsx:1385 +#: src/forms/StockForms.tsx:1401 msgid "Parent stock location" msgstr "" -#: src/forms/StockForms.tsx:1512 +#: src/forms/StockForms.tsx:1528 msgid "Find Serial Number" msgstr "" -#: src/forms/StockForms.tsx:1523 +#: src/forms/StockForms.tsx:1539 msgid "No matching items" msgstr "" -#: src/forms/StockForms.tsx:1529 +#: src/forms/StockForms.tsx:1545 msgid "Multiple matching items" msgstr "" -#: src/forms/StockForms.tsx:1538 +#: src/forms/StockForms.tsx:1554 msgid "Invalid response from server" msgstr "" @@ -4953,7 +5010,6 @@ msgstr "" #: src/tables/FilterSelectDrawer.tsx:137 #: src/tables/FilterSelectDrawer.tsx:149 #: src/tables/part/PartTestResultTable.tsx:206 -#: src/tables/purchasing/ManufacturerPartParameterTable.tsx:42 #: src/tables/stock/StockItemTestResultTable.tsx:207 msgid "Value" msgstr "" @@ -5244,7 +5300,7 @@ msgid "Delete selected stock items" msgstr "" #: src/hooks/UseStockAdjustActions.tsx:205 -#: src/pages/part/PartDetail.tsx:1137 +#: src/pages/part/PartDetail.tsx:1158 msgid "Stock Actions" msgstr "" @@ -5932,6 +5988,9 @@ msgstr "" #: src/pages/Index/Settings/AccountSettings/MFASettings.tsx:310 #: src/pages/Index/Settings/AccountSettings/MFASettings.tsx:401 +#: src/tables/build/BuildAllocatedStockTable.tsx:181 +#: src/tables/build/BuildLineTable.tsx:668 +#: src/tables/sales/SalesOrderAllocationTable.tsx:220 msgid "Confirm Removal" msgstr "" @@ -6394,30 +6453,34 @@ msgid "Email Messages" msgstr "" #: src/pages/Index/Settings/AdminCenter/HomePanel.tsx:22 -msgid "Active Alerts" -msgstr "" +#~ msgid "Active Alerts" +#~ msgstr "Active Alerts" #: src/pages/Index/Settings/AdminCenter/HomePanel.tsx:27 -msgid "Inactive Alerts" +#~ msgid "Inactive Alerts" +#~ msgstr "Inactive Alerts" + +#: src/pages/Index/Settings/AdminCenter/HomePanel.tsx:36 +msgid "System Status" msgstr "" -#: src/pages/Index/Settings/AdminCenter/HomePanel.tsx:38 +#: src/pages/Index/Settings/AdminCenter/HomePanel.tsx:47 msgid "Admin Center Information" msgstr "" -#: src/pages/Index/Settings/AdminCenter/HomePanel.tsx:44 +#: src/pages/Index/Settings/AdminCenter/HomePanel.tsx:53 msgid "The home panel (and the whole Admin Center) is a new feature starting with the new UI and was previously (before 1.0) not available." msgstr "" -#: src/pages/Index/Settings/AdminCenter/HomePanel.tsx:51 +#: src/pages/Index/Settings/AdminCenter/HomePanel.tsx:60 msgid "The admin center provides a centralized location for all administration functionality and is meant to replace all interaction with the (django) backend admin interface." msgstr "" -#: src/pages/Index/Settings/AdminCenter/HomePanel.tsx:58 +#: src/pages/Index/Settings/AdminCenter/HomePanel.tsx:67 msgid "Please open feature requests (after checking the tracker) for any existing backend admin functionality you are missing in this UI. The backend admin interface should be used carefully and seldom." msgstr "" -#: src/pages/Index/Settings/AdminCenter/HomePanel.tsx:76 +#: src/pages/Index/Settings/AdminCenter/HomePanel.tsx:85 msgid "Quick Actions" msgstr "" @@ -6476,11 +6539,11 @@ msgstr "" #: src/pages/Index/Settings/AdminCenter/Index.tsx:195 #: src/pages/part/CategoryDetail.tsx:313 -msgid "Part Parameters" -msgstr "" +#~ msgid "Part Parameters" +#~ msgstr "Part Parameters" #: src/pages/Index/Settings/AdminCenter/Index.tsx:202 -#: src/pages/part/CategoryDetail.tsx:306 +#: src/pages/part/CategoryDetail.tsx:329 msgid "Category Parameters" msgstr "" @@ -6494,7 +6557,7 @@ msgstr "" #: src/pages/Index/Settings/AdminCenter/Index.tsx:235 #: src/pages/Index/Settings/AdminCenter/MachineManagementPanel.tsx:52 -#: src/tables/machine/MachineTypeTable.tsx:325 +#: src/tables/machine/MachineTypeTable.tsx:323 msgid "Machines" msgstr "" @@ -6507,8 +6570,8 @@ msgid "Data Management" msgstr "" #: src/pages/Index/Settings/AdminCenter/Index.tsx:270 -#: src/pages/Index/Settings/SystemSettings.tsx:175 -#: src/pages/Index/Settings/UserSettings.tsx:118 +#: src/pages/Index/Settings/SystemSettings.tsx:176 +#: src/pages/Index/Settings/UserSettings.tsx:119 msgid "Reporting" msgstr "" @@ -6709,11 +6772,11 @@ msgstr "" msgid "The settings below are specific to each available plugin" msgstr "" -#: src/pages/Index/Settings/SystemSettings.tsx:77 +#: src/pages/Index/Settings/SystemSettings.tsx:78 msgid "Authentication" msgstr "" -#: src/pages/Index/Settings/SystemSettings.tsx:103 +#: src/pages/Index/Settings/SystemSettings.tsx:104 msgid "Barcodes" msgstr "" @@ -6725,12 +6788,12 @@ msgstr "" #~ msgid "This panel is a placeholder." #~ msgstr "This panel is a placeholder." -#: src/pages/Index/Settings/SystemSettings.tsx:127 -#: src/pages/Index/Settings/UserSettings.tsx:112 +#: src/pages/Index/Settings/SystemSettings.tsx:128 +#: src/pages/Index/Settings/UserSettings.tsx:113 msgid "The settings below are specific to each available notification method" msgstr "" -#: src/pages/Index/Settings/SystemSettings.tsx:133 +#: src/pages/Index/Settings/SystemSettings.tsx:134 msgid "Pricing" msgstr "" @@ -6738,7 +6801,7 @@ msgstr "" #~ msgid "Exchange Rates" #~ msgstr "Exchange Rates" -#: src/pages/Index/Settings/SystemSettings.tsx:169 +#: src/pages/Index/Settings/SystemSettings.tsx:170 msgid "Labels" msgstr "" @@ -6790,15 +6853,15 @@ msgstr "" #~ msgid "Delete notifications" #~ msgstr "Delete notifications" -#: src/pages/build/BuildDetail.tsx:69 +#: src/pages/build/BuildDetail.tsx:70 msgid "No Required Items" msgstr "" -#: src/pages/build/BuildDetail.tsx:71 +#: src/pages/build/BuildDetail.tsx:72 msgid "This build order does not have any required items." msgstr "" -#: src/pages/build/BuildDetail.tsx:72 +#: src/pages/build/BuildDetail.tsx:73 msgid "The assembled part may not have a Bill of Materials (BOM) defined, or the BOM is empty." msgstr "" @@ -6826,7 +6889,7 @@ msgstr "" #~ msgid "Build Order updated" #~ msgstr "Build Order updated" -#: src/pages/build/BuildDetail.tsx:215 +#: src/pages/build/BuildDetail.tsx:216 #: src/pages/part/PartDetail.tsx:480 #: src/pages/stock/StockDetail.tsx:161 #: src/tables/bom/UsedInTable.tsx:44 @@ -6843,10 +6906,10 @@ msgstr "" #~ msgid "Duplicate build order" #~ msgstr "Duplicate build order" -#: src/pages/build/BuildDetail.tsx:228 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:174 -#: src/pages/sales/ReturnOrderDetail.tsx:141 -#: src/pages/sales/SalesOrderDetail.tsx:131 +#: src/pages/build/BuildDetail.tsx:229 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:175 +#: src/pages/sales/ReturnOrderDetail.tsx:142 +#: src/pages/sales/SalesOrderDetail.tsx:132 #: src/pages/stock/StockDetail.tsx:176 msgid "Custom Status" msgstr "" @@ -6855,9 +6918,9 @@ msgstr "" #~ msgid "Delete build order" #~ msgstr "Delete build order" -#: src/pages/build/BuildDetail.tsx:237 -#: src/pages/build/BuildDetail.tsx:723 -#: src/pages/build/BuildIndex.tsx:28 +#: src/pages/build/BuildDetail.tsx:238 +#: src/pages/build/BuildDetail.tsx:728 +#: src/pages/build/BuildIndex.tsx:34 #: src/pages/stock/LocationDetail.tsx:140 #: src/tables/build/BuildOrderTable.tsx:123 #: src/tables/build/BuildOrderTable.tsx:183 @@ -6865,57 +6928,57 @@ msgstr "" msgid "External" msgstr "" -#: src/pages/build/BuildDetail.tsx:244 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:141 -#: src/pages/sales/ReturnOrderDetail.tsx:108 -#: src/pages/sales/SalesOrderDetail.tsx:98 +#: src/pages/build/BuildDetail.tsx:245 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:142 +#: src/pages/sales/ReturnOrderDetail.tsx:109 +#: src/pages/sales/SalesOrderDetail.tsx:99 #: src/tables/ColumnRenderers.tsx:321 -#: src/tables/build/BuildAllocatedStockTable.tsx:115 -#: src/tables/build/BuildLineTable.tsx:352 +#: src/tables/build/BuildAllocatedStockTable.tsx:112 +#: src/tables/build/BuildLineTable.tsx:353 msgid "Reference" msgstr "" -#: src/pages/build/BuildDetail.tsx:258 +#: src/pages/build/BuildDetail.tsx:259 msgid "Parent Build" msgstr "" -#: src/pages/build/BuildDetail.tsx:269 +#: src/pages/build/BuildDetail.tsx:270 msgid "Build Quantity" msgstr "" -#: src/pages/build/BuildDetail.tsx:275 +#: src/pages/build/BuildDetail.tsx:276 #: src/pages/part/PartDetail.tsx:598 #: src/tables/bom/BomTable.tsx:365 #: src/tables/bom/BomTable.tsx:407 msgid "Can Build" msgstr "" -#: src/pages/build/BuildDetail.tsx:284 -#: src/pages/build/BuildDetail.tsx:474 +#: src/pages/build/BuildDetail.tsx:285 +#: src/pages/build/BuildDetail.tsx:475 msgid "Completed Outputs" msgstr "" -#: src/pages/build/BuildDetail.tsx:301 +#: src/pages/build/BuildDetail.tsx:302 #: src/tables/Filter.tsx:381 #: src/tables/build/BuildOrderTable.tsx:143 msgid "Issued By" msgstr "" -#: src/pages/build/BuildDetail.tsx:309 +#: src/pages/build/BuildDetail.tsx:310 #: src/pages/part/PartDetail.tsx:691 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:261 -#: src/pages/sales/ReturnOrderDetail.tsx:239 -#: src/pages/sales/SalesOrderDetail.tsx:232 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:262 +#: src/pages/sales/ReturnOrderDetail.tsx:240 +#: src/pages/sales/SalesOrderDetail.tsx:233 #: src/tables/ColumnRenderers.tsx:464 #: src/tables/Filter.tsx:319 msgid "Responsible" msgstr "" -#: src/pages/build/BuildDetail.tsx:327 +#: src/pages/build/BuildDetail.tsx:328 msgid "Any location" msgstr "" -#: src/pages/build/BuildDetail.tsx:334 +#: src/pages/build/BuildDetail.tsx:335 msgid "Destination Location" msgstr "" @@ -6924,24 +6987,24 @@ msgstr "" #~ msgid "Test Statistics" #~ msgstr "Test Statistics" -#: src/pages/build/BuildDetail.tsx:350 +#: src/pages/build/BuildDetail.tsx:351 #: src/tables/settings/ApiTokenTable.tsx:97 #: src/tables/settings/PendingTasksTable.tsx:41 msgid "Created" msgstr "" -#: src/pages/build/BuildDetail.tsx:358 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:286 -#: src/pages/sales/ReturnOrderDetail.tsx:265 -#: src/pages/sales/SalesOrderDetail.tsx:257 +#: src/pages/build/BuildDetail.tsx:359 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:287 +#: src/pages/sales/ReturnOrderDetail.tsx:266 +#: src/pages/sales/SalesOrderDetail.tsx:258 #: src/tables/ColumnRenderers.tsx:486 msgid "Start Date" msgstr "" -#: src/pages/build/BuildDetail.tsx:366 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:294 -#: src/pages/sales/ReturnOrderDetail.tsx:273 -#: src/pages/sales/SalesOrderDetail.tsx:265 +#: src/pages/build/BuildDetail.tsx:367 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:295 +#: src/pages/sales/ReturnOrderDetail.tsx:274 +#: src/pages/sales/SalesOrderDetail.tsx:266 #: src/tables/ColumnRenderers.tsx:494 #: src/tables/part/PartPurchaseOrdersTable.tsx:101 #: src/tables/sales/ReturnOrderLineItemTable.tsx:154 @@ -6954,185 +7017,185 @@ msgstr "" #~ msgstr "Reporting Actions" #: src/pages/build/BuildDetail.tsx:374 +#~ msgid "Print build report" +#~ msgstr "Print build report" + +#: src/pages/build/BuildDetail.tsx:375 #: src/tables/build/BuildOrderTable.tsx:93 #: src/tables/sales/SalesOrderLineItemTable.tsx:347 msgid "Completed" msgstr "" -#: src/pages/build/BuildDetail.tsx:374 -#~ msgid "Print build report" -#~ msgstr "Print build report" - -#: src/pages/build/BuildDetail.tsx:410 +#: src/pages/build/BuildDetail.tsx:411 msgid "Build Details" msgstr "" -#: src/pages/build/BuildDetail.tsx:416 +#: src/pages/build/BuildDetail.tsx:417 msgid "Required Parts" msgstr "" -#: src/pages/build/BuildDetail.tsx:428 -#: src/pages/sales/SalesOrderDetail.tsx:407 -#: src/pages/sales/SalesOrderShipmentDetail.tsx:261 +#: src/pages/build/BuildDetail.tsx:429 +#: src/pages/sales/SalesOrderDetail.tsx:408 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:259 #: src/tables/part/PartSalesAllocationsTable.tsx:73 msgid "Allocated Stock" msgstr "" -#: src/pages/build/BuildDetail.tsx:444 +#: src/pages/build/BuildDetail.tsx:445 msgid "Consumed Stock" msgstr "" -#: src/pages/build/BuildDetail.tsx:461 +#: src/pages/build/BuildDetail.tsx:462 msgid "Incomplete Outputs" msgstr "" -#: src/pages/build/BuildDetail.tsx:489 +#: src/pages/build/BuildDetail.tsx:490 msgid "External Orders" msgstr "" -#: src/pages/build/BuildDetail.tsx:503 +#: src/pages/build/BuildDetail.tsx:504 msgid "Child Build Orders" msgstr "" -#: src/pages/build/BuildDetail.tsx:513 -#: src/pages/part/PartDetail.tsx:937 +#: src/pages/build/BuildDetail.tsx:514 +#: src/pages/part/PartDetail.tsx:926 #: src/pages/stock/StockDetail.tsx:587 #: src/tables/build/BuildOutputTable.tsx:654 #: src/tables/stock/StockItemTestResultTable.tsx:173 msgid "Test Results" msgstr "" -#: src/pages/build/BuildDetail.tsx:550 +#: src/pages/build/BuildDetail.tsx:555 msgid "Edit Build Order" msgstr "" -#: src/pages/build/BuildDetail.tsx:572 +#: src/pages/build/BuildDetail.tsx:577 #: src/tables/build/BuildOrderTable.tsx:207 #: src/tables/build/BuildOrderTable.tsx:223 msgid "Add Build Order" msgstr "" -#: src/pages/build/BuildDetail.tsx:582 +#: src/pages/build/BuildDetail.tsx:587 msgid "Cancel Build Order" msgstr "" -#: src/pages/build/BuildDetail.tsx:584 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:416 -#: src/pages/sales/ReturnOrderDetail.tsx:427 -#: src/pages/sales/SalesOrderDetail.tsx:454 +#: src/pages/build/BuildDetail.tsx:589 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:421 +#: src/pages/sales/ReturnOrderDetail.tsx:432 +#: src/pages/sales/SalesOrderDetail.tsx:459 msgid "Order cancelled" msgstr "" -#: src/pages/build/BuildDetail.tsx:585 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:415 -#: src/pages/sales/ReturnOrderDetail.tsx:426 -#: src/pages/sales/SalesOrderDetail.tsx:453 +#: src/pages/build/BuildDetail.tsx:590 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:420 +#: src/pages/sales/ReturnOrderDetail.tsx:431 +#: src/pages/sales/SalesOrderDetail.tsx:458 msgid "Cancel this order" msgstr "" -#: src/pages/build/BuildDetail.tsx:594 +#: src/pages/build/BuildDetail.tsx:599 msgid "Hold Build Order" msgstr "" -#: src/pages/build/BuildDetail.tsx:596 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:423 -#: src/pages/sales/ReturnOrderDetail.tsx:434 -#: src/pages/sales/SalesOrderDetail.tsx:461 +#: src/pages/build/BuildDetail.tsx:601 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:428 +#: src/pages/sales/ReturnOrderDetail.tsx:439 +#: src/pages/sales/SalesOrderDetail.tsx:466 msgid "Place this order on hold" msgstr "" -#: src/pages/build/BuildDetail.tsx:597 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:424 -#: src/pages/sales/ReturnOrderDetail.tsx:435 -#: src/pages/sales/SalesOrderDetail.tsx:462 +#: src/pages/build/BuildDetail.tsx:602 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:429 +#: src/pages/sales/ReturnOrderDetail.tsx:440 +#: src/pages/sales/SalesOrderDetail.tsx:467 msgid "Order placed on hold" msgstr "" -#: src/pages/build/BuildDetail.tsx:602 +#: src/pages/build/BuildDetail.tsx:607 msgid "Issue Build Order" msgstr "" -#: src/pages/build/BuildDetail.tsx:604 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:407 -#: src/pages/sales/ReturnOrderDetail.tsx:418 -#: src/pages/sales/SalesOrderDetail.tsx:445 +#: src/pages/build/BuildDetail.tsx:609 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:412 +#: src/pages/sales/ReturnOrderDetail.tsx:423 +#: src/pages/sales/SalesOrderDetail.tsx:450 msgid "Issue this order" msgstr "" -#: src/pages/build/BuildDetail.tsx:605 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:408 -#: src/pages/sales/ReturnOrderDetail.tsx:419 -#: src/pages/sales/SalesOrderDetail.tsx:446 +#: src/pages/build/BuildDetail.tsx:610 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:413 +#: src/pages/sales/ReturnOrderDetail.tsx:424 +#: src/pages/sales/SalesOrderDetail.tsx:451 msgid "Order issued" msgstr "" -#: src/pages/build/BuildDetail.tsx:624 +#: src/pages/build/BuildDetail.tsx:629 msgid "Complete Build Order" msgstr "" -#: src/pages/build/BuildDetail.tsx:630 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:436 -#: src/pages/sales/ReturnOrderDetail.tsx:442 -#: src/pages/sales/SalesOrderDetail.tsx:480 +#: src/pages/build/BuildDetail.tsx:635 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:441 +#: src/pages/sales/ReturnOrderDetail.tsx:447 +#: src/pages/sales/SalesOrderDetail.tsx:485 msgid "Mark this order as complete" msgstr "" -#: src/pages/build/BuildDetail.tsx:633 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:430 -#: src/pages/sales/ReturnOrderDetail.tsx:443 -#: src/pages/sales/SalesOrderDetail.tsx:481 +#: src/pages/build/BuildDetail.tsx:638 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:435 +#: src/pages/sales/ReturnOrderDetail.tsx:448 +#: src/pages/sales/SalesOrderDetail.tsx:486 msgid "Order completed" msgstr "" -#: src/pages/build/BuildDetail.tsx:660 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:459 -#: src/pages/sales/ReturnOrderDetail.tsx:470 -#: src/pages/sales/SalesOrderDetail.tsx:516 +#: src/pages/build/BuildDetail.tsx:665 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:464 +#: src/pages/sales/ReturnOrderDetail.tsx:475 +#: src/pages/sales/SalesOrderDetail.tsx:521 msgid "Issue Order" msgstr "" -#: src/pages/build/BuildDetail.tsx:667 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:466 -#: src/pages/sales/ReturnOrderDetail.tsx:477 -#: src/pages/sales/SalesOrderDetail.tsx:530 +#: src/pages/build/BuildDetail.tsx:672 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:471 +#: src/pages/sales/ReturnOrderDetail.tsx:482 +#: src/pages/sales/SalesOrderDetail.tsx:535 msgid "Complete Order" msgstr "" -#: src/pages/build/BuildDetail.tsx:686 +#: src/pages/build/BuildDetail.tsx:691 msgid "Build Order Actions" msgstr "" -#: src/pages/build/BuildDetail.tsx:691 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:489 -#: src/pages/sales/ReturnOrderDetail.tsx:500 -#: src/pages/sales/SalesOrderDetail.tsx:554 +#: src/pages/build/BuildDetail.tsx:696 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:494 +#: src/pages/sales/ReturnOrderDetail.tsx:505 +#: src/pages/sales/SalesOrderDetail.tsx:559 msgid "Edit order" msgstr "" -#: src/pages/build/BuildDetail.tsx:695 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:497 -#: src/pages/sales/ReturnOrderDetail.tsx:506 -#: src/pages/sales/SalesOrderDetail.tsx:559 -msgid "Duplicate order" -msgstr "" - -#: src/pages/build/BuildDetail.tsx:699 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:500 +#: src/pages/build/BuildDetail.tsx:700 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:502 #: src/pages/sales/ReturnOrderDetail.tsx:511 -#: src/pages/sales/SalesOrderDetail.tsx:562 -msgid "Hold order" +#: src/pages/sales/SalesOrderDetail.tsx:564 +msgid "Duplicate order" msgstr "" #: src/pages/build/BuildDetail.tsx:704 #: src/pages/purchasing/PurchaseOrderDetail.tsx:505 #: src/pages/sales/ReturnOrderDetail.tsx:516 #: src/pages/sales/SalesOrderDetail.tsx:567 +msgid "Hold order" +msgstr "" + +#: src/pages/build/BuildDetail.tsx:709 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:510 +#: src/pages/sales/ReturnOrderDetail.tsx:521 +#: src/pages/sales/SalesOrderDetail.tsx:572 msgid "Cancel order" msgstr "" -#: src/pages/build/BuildDetail.tsx:742 +#: src/pages/build/BuildDetail.tsx:747 #: src/pages/stock/StockDetail.tsx:344 -#: src/tables/build/BuildAllocatedStockTable.tsx:85 +#: src/tables/build/BuildAllocatedStockTable.tsx:82 #: src/tables/part/PartBuildAllocationsTable.tsx:45 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:157 #: src/tables/stock/StockTrackingTable.tsx:109 @@ -7143,7 +7206,7 @@ msgstr "" #~ msgid "Build order created" #~ msgstr "Build order created" -#: src/pages/build/BuildIndex.tsx:29 +#: src/pages/build/BuildIndex.tsx:35 #: src/tables/build/BuildOrderTable.tsx:184 msgid "Show external build orders" msgstr "" @@ -7152,61 +7215,82 @@ msgstr "" #~ msgid "New Build Order" #~ msgstr "New Build Order" -#: src/pages/build/BuildIndex.tsx:83 -#: src/pages/purchasing/PurchasingIndex.tsx:69 -#: src/pages/sales/SalesIndex.tsx:92 -#: src/pages/sales/SalesIndex.tsx:125 +#: src/pages/build/BuildIndex.tsx:74 +#: src/pages/part/CategoryDetail.tsx:292 +#: src/pages/purchasing/PurchasingIndex.tsx:74 +#: src/pages/purchasing/PurchasingIndex.tsx:107 +#: src/pages/purchasing/PurchasingIndex.tsx:135 +#: src/pages/purchasing/PurchasingIndex.tsx:156 +#: src/pages/purchasing/PurchasingIndex.tsx:184 +#: src/pages/sales/SalesIndex.tsx:61 +#: src/pages/sales/SalesIndex.tsx:107 +#: src/pages/sales/SalesIndex.tsx:140 msgid "Table View" msgstr "" -#: src/pages/build/BuildIndex.tsx:86 -#: src/pages/purchasing/PurchasingIndex.tsx:72 -#: src/pages/sales/SalesIndex.tsx:95 -#: src/pages/sales/SalesIndex.tsx:128 +#: src/pages/build/BuildIndex.tsx:80 +#: src/pages/purchasing/PurchasingIndex.tsx:80 +#: src/pages/sales/SalesIndex.tsx:67 +#: src/pages/sales/SalesIndex.tsx:113 msgid "Calendar View" msgstr "" -#: src/pages/company/CompanyDetail.tsx:99 +#: src/pages/build/BuildIndex.tsx:86 +#: src/pages/part/CategoryDetail.tsx:306 +#: src/pages/purchasing/PurchasingIndex.tsx:92 +#: src/pages/purchasing/PurchasingIndex.tsx:118 +#: src/pages/purchasing/PurchasingIndex.tsx:141 +#: src/pages/purchasing/PurchasingIndex.tsx:167 +#: src/pages/purchasing/PurchasingIndex.tsx:190 +#: src/pages/sales/SalesIndex.tsx:79 +#: src/pages/sales/SalesIndex.tsx:125 +#: src/pages/sales/SalesIndex.tsx:151 +msgid "Parametric View" +msgstr "" + +#: src/pages/company/CompanyDetail.tsx:100 msgid "Website" msgstr "" -#: src/pages/company/CompanyDetail.tsx:107 +#: src/pages/company/CompanyDetail.tsx:108 msgid "Phone Number" msgstr "" -#: src/pages/company/CompanyDetail.tsx:114 +#: src/pages/company/CompanyDetail.tsx:115 msgid "Email Address" msgstr "" -#: src/pages/company/CompanyDetail.tsx:121 +#: src/pages/company/CompanyDetail.tsx:122 msgid "Tax ID" msgstr "" -#: src/pages/company/CompanyDetail.tsx:131 +#: src/pages/company/CompanyDetail.tsx:132 msgid "Default Currency" msgstr "" -#: src/pages/company/CompanyDetail.tsx:142 +#: src/pages/company/CompanyDetail.tsx:143 #: src/pages/company/ManufacturerDetail.tsx:8 -#: src/pages/company/ManufacturerPartDetail.tsx:104 -#: src/pages/company/ManufacturerPartDetail.tsx:280 -#: src/pages/company/SupplierPartDetail.tsx:152 +#: src/pages/company/ManufacturerPartDetail.tsx:103 +#: src/pages/company/ManufacturerPartDetail.tsx:271 +#: src/pages/company/SupplierPartDetail.tsx:153 #: src/tables/Filter.tsx:347 #: src/tables/company/CompanyTable.tsx:101 #: src/tables/purchasing/SupplierPartTable.tsx:89 msgid "Manufacturer" msgstr "" -#: src/pages/company/CompanyDetail.tsx:148 +#: src/pages/company/CompanyDetail.tsx:149 #: src/pages/company/CustomerDetail.tsx:8 #: src/pages/part/pricing/SaleHistoryPanel.tsx:31 -#: src/pages/sales/ReturnOrderDetail.tsx:123 -#: src/pages/sales/SalesOrderDetail.tsx:113 -#: src/pages/sales/SalesOrderShipmentDetail.tsx:113 +#: src/pages/sales/ReturnOrderDetail.tsx:124 +#: src/pages/sales/SalesOrderDetail.tsx:114 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:111 #: src/pages/stock/StockDetail.tsx:370 #: src/tables/company/CompanyTable.tsx:106 +#: src/tables/sales/ReturnOrderParametricTable.tsx:32 #: src/tables/sales/ReturnOrderTable.tsx:108 -#: src/tables/sales/SalesOrderShipmentTable.tsx:111 +#: src/tables/sales/SalesOrderParametricTable.tsx:32 +#: src/tables/sales/SalesOrderShipmentTable.tsx:132 #: src/tables/sales/SalesOrderTable.tsx:133 #: src/tables/stock/StockTrackingTable.tsx:153 msgid "Customer" @@ -7216,11 +7300,11 @@ msgstr "" #~ msgid "Edit company" #~ msgstr "Edit company" -#: src/pages/company/CompanyDetail.tsx:181 +#: src/pages/company/CompanyDetail.tsx:182 msgid "Company Details" msgstr "" -#: src/pages/company/CompanyDetail.tsx:187 +#: src/pages/company/CompanyDetail.tsx:188 msgid "Supplied Parts" msgstr "" @@ -7228,79 +7312,79 @@ msgstr "" #~ msgid "Delete company" #~ msgstr "Delete company" -#: src/pages/company/CompanyDetail.tsx:194 +#: src/pages/company/CompanyDetail.tsx:195 msgid "Manufactured Parts" msgstr "" -#: src/pages/company/CompanyDetail.tsx:241 +#: src/pages/company/CompanyDetail.tsx:242 msgid "Assigned Stock" msgstr "" -#: src/pages/company/CompanyDetail.tsx:282 +#: src/pages/company/CompanyDetail.tsx:287 #: src/tables/company/CompanyTable.tsx:82 msgid "Edit Company" msgstr "" -#: src/pages/company/CompanyDetail.tsx:290 +#: src/pages/company/CompanyDetail.tsx:295 msgid "Delete Company" msgstr "" -#: src/pages/company/CompanyDetail.tsx:305 +#: src/pages/company/CompanyDetail.tsx:310 msgid "Company Actions" msgstr "" -#: src/pages/company/ManufacturerPartDetail.tsx:78 -#: src/pages/company/SupplierPartDetail.tsx:89 +#: src/pages/company/ManufacturerPartDetail.tsx:77 +#: src/pages/company/SupplierPartDetail.tsx:90 msgid "Internal Part" msgstr "" -#: src/pages/company/ManufacturerPartDetail.tsx:112 +#: src/pages/company/ManufacturerPartDetail.tsx:111 msgid "Manufacturer Part Number" msgstr "" -#: src/pages/company/ManufacturerPartDetail.tsx:129 -#: src/pages/company/SupplierPartDetail.tsx:113 +#: src/pages/company/ManufacturerPartDetail.tsx:128 +#: src/pages/company/SupplierPartDetail.tsx:114 msgid "External Link" msgstr "" -#: src/pages/company/ManufacturerPartDetail.tsx:148 -#: src/pages/company/SupplierPartDetail.tsx:232 +#: src/pages/company/ManufacturerPartDetail.tsx:147 +#: src/pages/company/SupplierPartDetail.tsx:233 #: src/pages/part/PartDetail.tsx:787 msgid "Part Details" msgstr "" -#: src/pages/company/ManufacturerPartDetail.tsx:151 +#: src/pages/company/ManufacturerPartDetail.tsx:150 msgid "Manufacturer Details" msgstr "" -#: src/pages/company/ManufacturerPartDetail.tsx:160 +#: src/pages/company/ManufacturerPartDetail.tsx:159 msgid "Manufacturer Part Details" msgstr "" -#: src/pages/company/ManufacturerPartDetail.tsx:178 -#: src/pages/company/SupplierPartDetail.tsx:252 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:381 +#: src/pages/company/ManufacturerPartDetail.tsx:165 +#: src/pages/company/SupplierPartDetail.tsx:253 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:382 msgid "Received Stock" msgstr "" -#: src/pages/company/ManufacturerPartDetail.tsx:220 +#: src/pages/company/ManufacturerPartDetail.tsx:211 #: src/tables/purchasing/ManufacturerPartTable.tsx:108 msgid "Edit Manufacturer Part" msgstr "" -#: src/pages/company/ManufacturerPartDetail.tsx:227 +#: src/pages/company/ManufacturerPartDetail.tsx:218 #: src/tables/purchasing/ManufacturerPartTable.tsx:96 #: src/tables/purchasing/ManufacturerPartTable.tsx:115 #: src/tables/purchasing/ManufacturerPartTable.tsx:156 msgid "Add Manufacturer Part" msgstr "" -#: src/pages/company/ManufacturerPartDetail.tsx:239 +#: src/pages/company/ManufacturerPartDetail.tsx:230 #: src/tables/purchasing/ManufacturerPartTable.tsx:126 msgid "Delete Manufacturer Part" msgstr "" -#: src/pages/company/ManufacturerPartDetail.tsx:254 +#: src/pages/company/ManufacturerPartDetail.tsx:245 msgid "Manufacturer Part Actions" msgstr "" @@ -7308,12 +7392,12 @@ msgstr "" #~ msgid "ManufacturerPart" #~ msgstr "ManufacturerPart" -#: src/pages/company/SupplierPartDetail.tsx:104 +#: src/pages/company/SupplierPartDetail.tsx:105 #: src/tables/part/RelatedPartTable.tsx:82 msgid "Part Description" msgstr "" -#: src/pages/company/SupplierPartDetail.tsx:179 +#: src/pages/company/SupplierPartDetail.tsx:180 #: src/tables/part/PartPurchaseOrdersTable.tsx:73 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:191 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:233 @@ -7321,50 +7405,50 @@ msgstr "" msgid "Pack Quantity" msgstr "" -#: src/pages/company/SupplierPartDetail.tsx:204 +#: src/pages/company/SupplierPartDetail.tsx:205 msgid "Supplier Availability" msgstr "" -#: src/pages/company/SupplierPartDetail.tsx:212 +#: src/pages/company/SupplierPartDetail.tsx:213 msgid "Availability Updated" msgstr "" -#: src/pages/company/SupplierPartDetail.tsx:237 +#: src/pages/company/SupplierPartDetail.tsx:238 msgid "Availability" msgstr "" -#: src/pages/company/SupplierPartDetail.tsx:246 +#: src/pages/company/SupplierPartDetail.tsx:247 msgid "Supplier Part Details" msgstr "" -#: src/pages/company/SupplierPartDetail.tsx:279 +#: src/pages/company/SupplierPartDetail.tsx:280 #: src/pages/part/PartPricingPanel.tsx:113 #: src/pages/part/pricing/PricingOverviewPanel.tsx:239 msgid "Supplier Pricing" msgstr "" -#: src/pages/company/SupplierPartDetail.tsx:308 +#: src/pages/company/SupplierPartDetail.tsx:313 msgid "Supplier Part Actions" msgstr "" -#: src/pages/company/SupplierPartDetail.tsx:332 +#: src/pages/company/SupplierPartDetail.tsx:337 #: src/tables/purchasing/SupplierPartTable.tsx:244 msgid "Edit Supplier Part" msgstr "" -#: src/pages/company/SupplierPartDetail.tsx:340 +#: src/pages/company/SupplierPartDetail.tsx:345 #: src/tables/purchasing/SupplierPartTable.tsx:264 msgid "Delete Supplier Part" msgstr "" -#: src/pages/company/SupplierPartDetail.tsx:348 +#: src/pages/company/SupplierPartDetail.tsx:353 #: src/tables/purchasing/SupplierPartTable.tsx:172 #: src/tables/purchasing/SupplierPartTable.tsx:251 msgid "Add Supplier Part" msgstr "" -#: src/pages/company/SupplierPartDetail.tsx:388 -#: src/pages/part/PartDetail.tsx:1003 +#: src/pages/company/SupplierPartDetail.tsx:393 +#: src/pages/part/PartDetail.tsx:1018 msgid "No Stock" msgstr "" @@ -7411,83 +7495,83 @@ msgstr "" msgid "Basic user" msgstr "" -#: src/pages/part/CategoryDetail.tsx:100 +#: src/pages/part/CategoryDetail.tsx:103 #: src/pages/stock/LocationDetail.tsx:94 #: src/tables/settings/ErrorTable.tsx:63 #: src/tables/settings/ErrorTable.tsx:108 msgid "Path" msgstr "" -#: src/pages/part/CategoryDetail.tsx:116 +#: src/pages/part/CategoryDetail.tsx:119 msgid "Parent Category" msgstr "" -#: src/pages/part/CategoryDetail.tsx:139 -#: src/pages/part/CategoryDetail.tsx:271 +#: src/pages/part/CategoryDetail.tsx:142 +#: src/pages/part/CategoryDetail.tsx:279 msgid "Subcategories" msgstr "" -#: src/pages/part/CategoryDetail.tsx:146 +#: src/pages/part/CategoryDetail.tsx:149 #: src/pages/stock/LocationDetail.tsx:134 #: src/tables/part/PartCategoryTable.tsx:89 #: src/tables/stock/StockLocationTable.tsx:43 msgid "Structural" msgstr "" -#: src/pages/part/CategoryDetail.tsx:152 +#: src/pages/part/CategoryDetail.tsx:155 msgid "Parent default location" msgstr "" -#: src/pages/part/CategoryDetail.tsx:159 +#: src/pages/part/CategoryDetail.tsx:162 msgid "Default location" msgstr "" -#: src/pages/part/CategoryDetail.tsx:170 +#: src/pages/part/CategoryDetail.tsx:173 msgid "Top level part category" msgstr "" -#: src/pages/part/CategoryDetail.tsx:180 -#: src/pages/part/CategoryDetail.tsx:248 +#: src/pages/part/CategoryDetail.tsx:183 +#: src/pages/part/CategoryDetail.tsx:251 #: src/tables/part/PartCategoryTable.tsx:122 msgid "Edit Part Category" msgstr "" -#: src/pages/part/CategoryDetail.tsx:189 +#: src/pages/part/CategoryDetail.tsx:192 msgid "Move items to parent category" msgstr "" -#: src/pages/part/CategoryDetail.tsx:193 +#: src/pages/part/CategoryDetail.tsx:196 #: src/pages/stock/LocationDetail.tsx:226 msgid "Delete items" msgstr "" -#: src/pages/part/CategoryDetail.tsx:201 -#: src/pages/part/CategoryDetail.tsx:253 +#: src/pages/part/CategoryDetail.tsx:204 +#: src/pages/part/CategoryDetail.tsx:256 msgid "Delete Part Category" msgstr "" -#: src/pages/part/CategoryDetail.tsx:204 +#: src/pages/part/CategoryDetail.tsx:207 msgid "Parts Action" msgstr "" -#: src/pages/part/CategoryDetail.tsx:205 +#: src/pages/part/CategoryDetail.tsx:208 msgid "Action for parts in this category" msgstr "" -#: src/pages/part/CategoryDetail.tsx:211 +#: src/pages/part/CategoryDetail.tsx:214 msgid "Child Categories Action" msgstr "" -#: src/pages/part/CategoryDetail.tsx:212 +#: src/pages/part/CategoryDetail.tsx:215 msgid "Action for child categories in this category" msgstr "" -#: src/pages/part/CategoryDetail.tsx:244 +#: src/pages/part/CategoryDetail.tsx:247 #: src/tables/part/PartCategoryTable.tsx:143 msgid "Category Actions" msgstr "" -#: src/pages/part/CategoryDetail.tsx:265 +#: src/pages/part/CategoryDetail.tsx:273 msgid "Category Details" msgstr "" @@ -7585,7 +7669,6 @@ msgid "Category Default Location" msgstr "" #: src/pages/part/PartDetail.tsx:507 -#: src/tables/purchasing/ManufacturerPartParameterTable.tsx:48 msgid "Units" msgstr "" @@ -7600,7 +7683,7 @@ msgstr "" #: src/pages/part/PartDetail.tsx:542 #: src/tables/bom/BomTable.tsx:439 -#: src/tables/build/BuildLineTable.tsx:305 +#: src/tables/build/BuildLineTable.tsx:306 #: src/tables/part/PartTable.tsx:319 #: src/tables/sales/SalesOrderLineItemTable.tsx:138 msgid "Available Stock" @@ -7608,7 +7691,7 @@ msgstr "" #: src/pages/part/PartDetail.tsx:548 #: src/tables/bom/BomTable.tsx:341 -#: src/tables/build/BuildLineTable.tsx:267 +#: src/tables/build/BuildLineTable.tsx:268 #: src/tables/sales/SalesOrderLineItemTable.tsx:180 msgid "On order" msgstr "" @@ -7634,7 +7717,7 @@ msgstr "" #~ msgstr "Scheduling" #: src/pages/part/PartDetail.tsx:620 -#: src/tables/part/ParametricPartTable.tsx:359 +#: src/tables/part/ParametricPartTable.tsx:24 #: src/tables/part/PartTable.tsx:203 msgid "Locked" msgstr "" @@ -7671,16 +7754,16 @@ msgid "Saleable Part" msgstr "" #: src/pages/part/PartDetail.tsx:663 -#: src/pages/part/PartDetail.tsx:1033 +#: src/pages/part/PartDetail.tsx:1054 #: src/tables/bom/BomTable.tsx:150 #: src/tables/bom/BomTable.tsx:434 msgid "Virtual Part" msgstr "" #: src/pages/part/PartDetail.tsx:678 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:271 -#: src/pages/sales/ReturnOrderDetail.tsx:249 -#: src/pages/sales/SalesOrderDetail.tsx:242 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:272 +#: src/pages/sales/ReturnOrderDetail.tsx:250 +#: src/pages/sales/SalesOrderDetail.tsx:243 #: src/tables/ColumnRenderers.tsx:502 msgid "Creation Date" msgstr "" @@ -7718,35 +7801,46 @@ msgstr "" msgid "Select Part Revision" msgstr "" -#: src/pages/part/PartDetail.tsx:823 +#: src/pages/part/PartDetail.tsx:812 msgid "Variants" msgstr "" -#: src/pages/part/PartDetail.tsx:830 +#: src/pages/part/PartDetail.tsx:819 #: src/pages/stock/StockDetail.tsx:542 msgid "Allocations" msgstr "" -#: src/pages/part/PartDetail.tsx:837 +#: src/pages/part/PartDetail.tsx:826 msgid "Bill of Materials" msgstr "" -#: src/pages/part/PartDetail.tsx:849 +#: src/pages/part/PartDetail.tsx:838 msgid "Used In" msgstr "" -#: src/pages/part/PartDetail.tsx:856 +#: src/pages/part/PartDetail.tsx:845 msgid "Part Pricing" msgstr "" -#: src/pages/part/PartDetail.tsx:926 +#: src/pages/part/PartDetail.tsx:915 msgid "Test Templates" msgstr "" -#: src/pages/part/PartDetail.tsx:948 +#: src/pages/part/PartDetail.tsx:937 msgid "Related Parts" msgstr "" +#: src/pages/part/PartDetail.tsx:949 +#: src/tables/ColumnRenderers.tsx:73 +#: src/tables/bom/BomTable.tsx:657 +#: src/tables/part/PartTestTemplateTable.tsx:258 +msgid "Part is Locked" +msgstr "" + +#: src/pages/part/PartDetail.tsx:954 +msgid "Part parameters cannot be edited, as the part is locked" +msgstr "" + #: src/pages/part/PartDetail.tsx:956 #~ msgid "Count part stock" #~ msgstr "Count part stock" @@ -7755,42 +7849,46 @@ msgstr "" #~ msgid "Transfer part stock" #~ msgstr "Transfer part stock" -#: src/pages/part/PartDetail.tsx:1009 +#: src/pages/part/PartDetail.tsx:1024 #: src/tables/part/PartTestTemplateTable.tsx:112 #: src/tables/stock/StockItemTestResultTable.tsx:404 msgid "Required" msgstr "" -#: src/pages/part/PartDetail.tsx:1058 +#: src/pages/part/PartDetail.tsx:1042 +msgid "Deficit" +msgstr "" + +#: src/pages/part/PartDetail.tsx:1079 #: src/tables/part/PartTable.tsx:396 #: src/tables/part/PartTable.tsx:449 msgid "Add Part" msgstr "" -#: src/pages/part/PartDetail.tsx:1072 +#: src/pages/part/PartDetail.tsx:1093 msgid "Delete Part" msgstr "" -#: src/pages/part/PartDetail.tsx:1081 +#: src/pages/part/PartDetail.tsx:1102 msgid "Deleting this part cannot be reversed" msgstr "" -#: src/pages/part/PartDetail.tsx:1143 +#: src/pages/part/PartDetail.tsx:1164 #: src/pages/stock/StockDetail.tsx:883 msgid "Order" msgstr "" -#: src/pages/part/PartDetail.tsx:1144 +#: src/pages/part/PartDetail.tsx:1165 #: src/pages/stock/StockDetail.tsx:884 -#: src/tables/build/BuildLineTable.tsx:761 +#: src/tables/build/BuildLineTable.tsx:768 msgid "Order Stock" msgstr "" -#: src/pages/part/PartDetail.tsx:1156 +#: src/pages/part/PartDetail.tsx:1177 msgid "Search by serial number" msgstr "" -#: src/pages/part/PartDetail.tsx:1164 +#: src/pages/part/PartDetail.tsx:1185 #: src/tables/part/PartTable.tsx:506 msgid "Part Actions" msgstr "" @@ -8039,7 +8137,7 @@ msgstr "" #: src/pages/part/pricing/PricingOverviewPanel.tsx:288 #: src/pages/stock/StockDetail.tsx:426 -#: src/tables/part/PartParameterTable.tsx:121 +#: src/tables/general/ParameterTable.tsx:101 #: src/tables/stock/StockItemTable.tsx:300 msgid "Last Updated" msgstr "" @@ -8107,17 +8205,17 @@ msgstr "" msgid "Variant Part" msgstr "" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:89 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:90 msgid "Edit Purchase Order" msgstr "" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:125 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:126 #: src/tables/purchasing/PurchaseOrderTable.tsx:154 #: src/tables/purchasing/PurchaseOrderTable.tsx:167 msgid "Add Purchase Order" msgstr "" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:147 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:148 msgid "Supplier Reference" msgstr "" @@ -8127,20 +8225,20 @@ msgstr "" #~ msgid "Order Currency," #~ msgstr "Order Currency," -#: src/pages/purchasing/PurchaseOrderDetail.tsx:187 -#: src/pages/sales/ReturnOrderDetail.tsx:160 -#: src/pages/sales/SalesOrderDetail.tsx:144 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:188 +#: src/pages/sales/ReturnOrderDetail.tsx:161 +#: src/pages/sales/SalesOrderDetail.tsx:145 msgid "Completed Line Items" msgstr "" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:196 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:197 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:272 msgid "Destination" msgstr "" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:202 -#: src/pages/sales/ReturnOrderDetail.tsx:167 -#: src/pages/sales/SalesOrderDetail.tsx:161 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:203 +#: src/pages/sales/ReturnOrderDetail.tsx:168 +#: src/pages/sales/SalesOrderDetail.tsx:162 msgid "Order Currency" msgstr "" @@ -8150,97 +8248,97 @@ msgstr "" #~ msgid "Created On" #~ msgstr "Created On" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:208 -#: src/pages/sales/ReturnOrderDetail.tsx:174 -#: src/pages/sales/SalesOrderDetail.tsx:167 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:209 +#: src/pages/sales/ReturnOrderDetail.tsx:175 +#: src/pages/sales/SalesOrderDetail.tsx:168 msgid "Total Cost" msgstr "" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:237 -#: src/pages/sales/ReturnOrderDetail.tsx:215 -#: src/pages/sales/SalesOrderDetail.tsx:208 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:238 +#: src/pages/sales/ReturnOrderDetail.tsx:216 +#: src/pages/sales/SalesOrderDetail.tsx:209 msgid "Contact Email" msgstr "" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:245 -#: src/pages/sales/ReturnOrderDetail.tsx:223 -#: src/pages/sales/SalesOrderDetail.tsx:216 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:246 +#: src/pages/sales/ReturnOrderDetail.tsx:224 +#: src/pages/sales/SalesOrderDetail.tsx:217 msgid "Contact Phone" msgstr "" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:278 -#: src/pages/sales/ReturnOrderDetail.tsx:257 -#: src/pages/sales/SalesOrderDetail.tsx:249 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:279 +#: src/pages/sales/ReturnOrderDetail.tsx:258 +#: src/pages/sales/SalesOrderDetail.tsx:250 msgid "Issue Date" msgstr "" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:303 -#: src/pages/sales/ReturnOrderDetail.tsx:281 -#: src/pages/sales/SalesOrderDetail.tsx:272 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:304 +#: src/pages/sales/ReturnOrderDetail.tsx:282 +#: src/pages/sales/SalesOrderDetail.tsx:273 #: src/tables/ColumnRenderers.tsx:510 #: src/tables/build/BuildOrderTable.tsx:137 #: src/tables/part/PartPurchaseOrdersTable.tsx:106 msgid "Completion Date" msgstr "" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:333 -#: src/pages/sales/ReturnOrderDetail.tsx:311 -#: src/pages/sales/SalesOrderDetail.tsx:349 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:334 +#: src/pages/sales/ReturnOrderDetail.tsx:312 +#: src/pages/sales/SalesOrderDetail.tsx:350 msgid "Order Details" msgstr "" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:339 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:348 -#: src/pages/sales/ReturnOrderDetail.tsx:153 -#: src/pages/sales/ReturnOrderDetail.tsx:317 -#: src/pages/sales/ReturnOrderDetail.tsx:326 -#: src/pages/sales/SalesOrderDetail.tsx:355 -#: src/pages/sales/SalesOrderDetail.tsx:364 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:340 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:349 +#: src/pages/sales/ReturnOrderDetail.tsx:154 +#: src/pages/sales/ReturnOrderDetail.tsx:318 +#: src/pages/sales/ReturnOrderDetail.tsx:327 +#: src/pages/sales/SalesOrderDetail.tsx:356 +#: src/pages/sales/SalesOrderDetail.tsx:365 msgid "Line Items" msgstr "" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:363 -#: src/pages/sales/ReturnOrderDetail.tsx:341 -#: src/pages/sales/SalesOrderDetail.tsx:378 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:364 +#: src/pages/sales/ReturnOrderDetail.tsx:342 +#: src/pages/sales/SalesOrderDetail.tsx:379 msgid "Extra Line Items" msgstr "" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:405 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:410 msgid "Issue Purchase Order" msgstr "" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:413 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:418 msgid "Cancel Purchase Order" msgstr "" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:421 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:426 msgid "Hold Purchase Order" msgstr "" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:429 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:434 msgid "Complete Purchase Order" msgstr "" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:485 -#: src/pages/sales/ReturnOrderDetail.tsx:496 -#: src/pages/sales/SalesOrderDetail.tsx:549 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:490 +#: src/pages/sales/ReturnOrderDetail.tsx:501 +#: src/pages/sales/SalesOrderDetail.tsx:554 msgid "Order Actions" msgstr "" -#: src/pages/sales/ReturnOrderDetail.tsx:114 -#: src/pages/sales/SalesOrderDetail.tsx:104 -#: src/pages/sales/SalesOrderShipmentDetail.tsx:134 +#: src/pages/sales/ReturnOrderDetail.tsx:115 +#: src/pages/sales/SalesOrderDetail.tsx:105 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:132 #: src/tables/sales/SalesOrderTable.tsx:141 msgid "Customer Reference" msgstr "" -#: src/pages/sales/ReturnOrderDetail.tsx:195 +#: src/pages/sales/ReturnOrderDetail.tsx:196 msgid "Return Address" msgstr "" -#: src/pages/sales/ReturnOrderDetail.tsx:201 -#: src/pages/sales/SalesOrderDetail.tsx:194 -#: src/pages/sales/SalesOrderShipmentDetail.tsx:181 +#: src/pages/sales/ReturnOrderDetail.tsx:202 +#: src/pages/sales/SalesOrderDetail.tsx:195 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:179 msgid "Not specified" msgstr "" @@ -8248,117 +8346,117 @@ msgstr "" #~ msgid "Order canceled" #~ msgstr "Order canceled" -#: src/pages/sales/ReturnOrderDetail.tsx:389 +#: src/pages/sales/ReturnOrderDetail.tsx:394 msgid "Edit Return Order" msgstr "" -#: src/pages/sales/ReturnOrderDetail.tsx:407 +#: src/pages/sales/ReturnOrderDetail.tsx:412 #: src/tables/sales/ReturnOrderTable.tsx:154 #: src/tables/sales/ReturnOrderTable.tsx:167 msgid "Add Return Order" msgstr "" -#: src/pages/sales/ReturnOrderDetail.tsx:416 +#: src/pages/sales/ReturnOrderDetail.tsx:421 msgid "Issue Return Order" msgstr "" -#: src/pages/sales/ReturnOrderDetail.tsx:424 +#: src/pages/sales/ReturnOrderDetail.tsx:429 msgid "Cancel Return Order" msgstr "" -#: src/pages/sales/ReturnOrderDetail.tsx:432 +#: src/pages/sales/ReturnOrderDetail.tsx:437 msgid "Hold Return Order" msgstr "" -#: src/pages/sales/ReturnOrderDetail.tsx:440 +#: src/pages/sales/ReturnOrderDetail.tsx:445 msgid "Complete Return Order" msgstr "" -#: src/pages/sales/SalesOrderDetail.tsx:153 +#: src/pages/sales/SalesOrderDetail.tsx:154 msgid "Completed Shipments" msgstr "" -#: src/pages/sales/SalesOrderDetail.tsx:188 -#: src/pages/sales/SalesOrderShipmentDetail.tsx:170 +#: src/pages/sales/SalesOrderDetail.tsx:189 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:168 msgid "Shipping Address" msgstr "" -#: src/pages/sales/SalesOrderDetail.tsx:316 +#: src/pages/sales/SalesOrderDetail.tsx:317 msgid "Edit Sales Order" msgstr "" -#: src/pages/sales/SalesOrderDetail.tsx:338 +#: src/pages/sales/SalesOrderDetail.tsx:339 #: src/tables/sales/SalesOrderTable.tsx:108 #: src/tables/sales/SalesOrderTable.tsx:121 msgid "Add Sales Order" msgstr "" -#: src/pages/sales/SalesOrderDetail.tsx:396 +#: src/pages/sales/SalesOrderDetail.tsx:397 #: src/tables/sales/SalesOrderTable.tsx:147 msgid "Shipments" msgstr "" -#: src/pages/sales/SalesOrderDetail.tsx:443 +#: src/pages/sales/SalesOrderDetail.tsx:448 msgid "Issue Sales Order" msgstr "" -#: src/pages/sales/SalesOrderDetail.tsx:451 +#: src/pages/sales/SalesOrderDetail.tsx:456 msgid "Cancel Sales Order" msgstr "" -#: src/pages/sales/SalesOrderDetail.tsx:459 +#: src/pages/sales/SalesOrderDetail.tsx:464 msgid "Hold Sales Order" msgstr "" -#: src/pages/sales/SalesOrderDetail.tsx:467 +#: src/pages/sales/SalesOrderDetail.tsx:472 msgid "Ship Sales Order" msgstr "" -#: src/pages/sales/SalesOrderDetail.tsx:469 +#: src/pages/sales/SalesOrderDetail.tsx:474 msgid "Ship this order?" msgstr "" -#: src/pages/sales/SalesOrderDetail.tsx:470 +#: src/pages/sales/SalesOrderDetail.tsx:475 msgid "Order shipped" msgstr "" -#: src/pages/sales/SalesOrderDetail.tsx:478 +#: src/pages/sales/SalesOrderDetail.tsx:483 msgid "Complete Sales Order" msgstr "" -#: src/pages/sales/SalesOrderDetail.tsx:523 +#: src/pages/sales/SalesOrderDetail.tsx:528 msgid "Ship Order" msgstr "" -#: src/pages/sales/SalesOrderShipmentDetail.tsx:142 -#: src/tables/sales/SalesOrderShipmentTable.tsx:135 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:140 +#: src/tables/sales/SalesOrderShipmentTable.tsx:156 msgid "Shipment Reference" msgstr "" -#: src/pages/sales/SalesOrderShipmentDetail.tsx:148 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:146 msgid "Tracking Number" msgstr "" -#: src/pages/sales/SalesOrderShipmentDetail.tsx:156 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:154 msgid "Invoice Number" msgstr "" -#: src/pages/sales/SalesOrderShipmentDetail.tsx:191 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:189 msgid "Allocated Items" msgstr "" -#: src/pages/sales/SalesOrderShipmentDetail.tsx:196 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:194 msgid "Checked By" msgstr "" -#: src/pages/sales/SalesOrderShipmentDetail.tsx:202 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:200 msgid "Not checked" msgstr "" -#: src/pages/sales/SalesOrderShipmentDetail.tsx:208 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:206 #: src/tables/ColumnRenderers.tsx:518 #: src/tables/sales/SalesOrderAllocationTable.tsx:182 -#: src/tables/sales/SalesOrderShipmentTable.tsx:168 +#: src/tables/sales/SalesOrderShipmentTable.tsx:189 msgid "Shipment Date" msgstr "" @@ -8366,108 +8464,82 @@ msgstr "" #~ msgid "Assigned Items" #~ msgstr "Assigned Items" -#: src/pages/sales/SalesOrderShipmentDetail.tsx:216 -#: src/tables/sales/SalesOrderShipmentTable.tsx:172 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:214 +#: src/tables/sales/SalesOrderShipmentTable.tsx:193 msgid "Delivery Date" msgstr "" -#: src/pages/sales/SalesOrderShipmentDetail.tsx:255 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:253 msgid "Shipment Details" msgstr "" -#: src/pages/sales/SalesOrderShipmentDetail.tsx:294 -#: src/pages/sales/SalesOrderShipmentDetail.tsx:438 -#: src/tables/sales/SalesOrderShipmentTable.tsx:90 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:292 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:406 +#: src/tables/sales/SalesOrderShipmentTable.tsx:97 msgid "Edit Shipment" msgstr "" -#: src/pages/sales/SalesOrderShipmentDetail.tsx:301 -#: src/pages/sales/SalesOrderShipmentDetail.tsx:457 -#: src/tables/sales/SalesOrderShipmentTable.tsx:82 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:299 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:425 +#: src/tables/sales/SalesOrderShipmentTable.tsx:89 msgid "Cancel Shipment" msgstr "" -#: src/pages/sales/SalesOrderShipmentDetail.tsx:314 -#: src/tables/sales/SalesOrderShipmentTable.tsx:98 -#: src/tables/sales/SalesOrderShipmentTable.tsx:193 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:312 +#: src/tables/sales/SalesOrderShipmentTable.tsx:119 +#: src/tables/sales/SalesOrderShipmentTable.tsx:238 msgid "Complete Shipment" msgstr "" -#: src/pages/sales/SalesOrderShipmentDetail.tsx:326 -#: src/pages/sales/SalesOrderShipmentDetail.tsx:328 -msgid "Check Shipment" -msgstr "" - -#: src/pages/sales/SalesOrderShipmentDetail.tsx:329 -msgid "Marking the shipment as checked indicates that you have verified that all items included in this shipment are correct" -msgstr "" - #: src/pages/sales/SalesOrderShipmentDetail.tsx:339 -msgid "Shipment marked as checked" -msgstr "" - -#: src/pages/sales/SalesOrderShipmentDetail.tsx:346 -#: src/pages/sales/SalesOrderShipmentDetail.tsx:348 -msgid "Uncheck Shipment" -msgstr "" - -#: src/pages/sales/SalesOrderShipmentDetail.tsx:349 -msgid "Marking the shipment as unchecked indicates that the shipment requires further verification" -msgstr "" - -#: src/pages/sales/SalesOrderShipmentDetail.tsx:359 -msgid "Shipment marked as unchecked" -msgstr "" - -#: src/pages/sales/SalesOrderShipmentDetail.tsx:371 #: src/tables/part/PartPurchaseOrdersTable.tsx:122 msgid "Pending" msgstr "" -#: src/pages/sales/SalesOrderShipmentDetail.tsx:377 -#: src/tables/sales/SalesOrderShipmentTable.tsx:147 -#: src/tables/sales/SalesOrderShipmentTable.tsx:254 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:345 +#: src/tables/sales/SalesOrderShipmentTable.tsx:168 +#: src/tables/sales/SalesOrderShipmentTable.tsx:299 msgid "Checked" msgstr "" -#: src/pages/sales/SalesOrderShipmentDetail.tsx:383 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:351 msgid "Not Checked" msgstr "" -#: src/pages/sales/SalesOrderShipmentDetail.tsx:389 -#: src/tables/sales/SalesOrderShipmentTable.tsx:154 -#: src/tables/sales/SalesOrderShipmentTable.tsx:259 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:357 +#: src/tables/sales/SalesOrderShipmentTable.tsx:175 +#: src/tables/sales/SalesOrderShipmentTable.tsx:304 msgid "Shipped" msgstr "" -#: src/pages/sales/SalesOrderShipmentDetail.tsx:395 -#: src/tables/sales/SalesOrderShipmentTable.tsx:161 -#: src/tables/sales/SalesOrderShipmentTable.tsx:264 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:363 +#: src/tables/sales/SalesOrderShipmentTable.tsx:182 +#: src/tables/sales/SalesOrderShipmentTable.tsx:309 #: src/tables/settings/EmailTable.tsx:31 msgid "Delivered" msgstr "" -#: src/pages/sales/SalesOrderShipmentDetail.tsx:410 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:378 msgid "Send Shipment" msgstr "" -#: src/pages/sales/SalesOrderShipmentDetail.tsx:433 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:401 msgid "Shipment Actions" msgstr "" -#: src/pages/sales/SalesOrderShipmentDetail.tsx:442 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:410 msgid "Check" msgstr "" -#: src/pages/sales/SalesOrderShipmentDetail.tsx:443 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:411 msgid "Mark shipment as checked" msgstr "" -#: src/pages/sales/SalesOrderShipmentDetail.tsx:449 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:417 msgid "Uncheck" msgstr "" -#: src/pages/sales/SalesOrderShipmentDetail.tsx:450 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:418 msgid "Mark shipment as unchecked" msgstr "" @@ -8775,13 +8847,6 @@ msgstr "" msgid "Part is not active" msgstr "" -#: src/tables/ColumnRenderers.tsx:73 -#: src/tables/bom/BomTable.tsx:657 -#: src/tables/part/PartParameterTable.tsx:227 -#: src/tables/part/PartTestTemplateTable.tsx:258 -msgid "Part is Locked" -msgstr "" - #: src/tables/ColumnRenderers.tsx:78 msgid "You are subscribed to notifications for this part" msgstr "" @@ -9219,13 +9284,13 @@ msgstr "" #~ msgstr "Show asssmbled items" #: src/tables/bom/BomTable.tsx:315 -#: src/tables/build/BuildLineTable.tsx:276 +#: src/tables/build/BuildLineTable.tsx:277 #: src/tables/part/PartTable.tsx:145 msgid "External stock" msgstr "" #: src/tables/bom/BomTable.tsx:323 -#: src/tables/build/BuildLineTable.tsx:239 +#: src/tables/build/BuildLineTable.tsx:240 msgid "Includes substitute stock" msgstr "" @@ -9234,7 +9299,7 @@ msgstr "" #~ msgstr "Edit Bom Item" #: src/tables/bom/BomTable.tsx:332 -#: src/tables/build/BuildLineTable.tsx:249 +#: src/tables/build/BuildLineTable.tsx:250 #: src/tables/sales/SalesOrderLineItemTable.tsx:166 msgid "Includes variant stock" msgstr "" @@ -9272,8 +9337,8 @@ msgid "Stock Information" msgstr "" #: src/tables/bom/BomTable.tsx:399 -#: src/tables/build/BuildLineTable.tsx:496 -#: src/tables/build/BuildLineTable.tsx:537 +#: src/tables/build/BuildLineTable.tsx:497 +#: src/tables/build/BuildLineTable.tsx:538 msgid "Consumable item" msgstr "" @@ -9282,7 +9347,7 @@ msgid "No available stock" msgstr "" #: src/tables/bom/BomTable.tsx:420 -#: src/tables/build/BuildLineTable.tsx:213 +#: src/tables/build/BuildLineTable.tsx:214 msgid "Show testable items" msgstr "" @@ -9291,7 +9356,7 @@ msgid "Show trackable items" msgstr "" #: src/tables/bom/BomTable.tsx:430 -#: src/tables/build/BuildLineTable.tsx:208 +#: src/tables/build/BuildLineTable.tsx:209 msgid "Show assembled items" msgstr "" @@ -9335,7 +9400,7 @@ msgstr "" #: src/tables/bom/BomTable.tsx:464 #: src/tables/bom/UsedInTable.tsx:85 -#: src/tables/build/BuildLineTable.tsx:202 +#: src/tables/build/BuildLineTable.tsx:203 msgid "Optional" msgstr "" @@ -9345,7 +9410,7 @@ msgid "Show optional items" msgstr "" #: src/tables/bom/BomTable.tsx:469 -#: src/tables/build/BuildLineTable.tsx:197 +#: src/tables/build/BuildLineTable.tsx:198 msgid "Consumable" msgstr "" @@ -9420,6 +9485,7 @@ msgid "Add a single BOM item" msgstr "" #: src/tables/bom/BomTable.tsx:637 +#: src/tables/general/ParameterTable.tsx:206 #: src/tables/part/PartTable.tsx:546 msgid "Import from File" msgstr "" @@ -9433,8 +9499,8 @@ msgid "Bill of materials cannot be edited, as the part is locked" msgstr "" #: src/tables/bom/UsedInTable.tsx:34 -#: src/tables/build/BuildLineTable.tsx:207 -#: src/tables/part/ParametricPartTable.tsx:364 +#: src/tables/build/BuildLineTable.tsx:208 +#: src/tables/part/ParametricPartTable.tsx:29 #: src/tables/part/PartBuildAllocationsTable.tsx:60 #: src/tables/part/PartTable.tsx:209 #: src/tables/stock/StockItemTable.tsx:333 @@ -9455,11 +9521,11 @@ msgstr "" msgid "Show trackable assemblies" msgstr "" -#: src/tables/build/BuildAllocatedStockTable.tsx:67 +#: src/tables/build/BuildAllocatedStockTable.tsx:64 msgid "Allocated to Output" msgstr "" -#: src/tables/build/BuildAllocatedStockTable.tsx:68 +#: src/tables/build/BuildAllocatedStockTable.tsx:65 msgid "Show items allocated to a build output" msgstr "" @@ -9472,50 +9538,68 @@ msgstr "" #~ msgid "Include orders for part variants" #~ msgstr "Include orders for part variants" -#: src/tables/build/BuildAllocatedStockTable.tsx:97 +#: src/tables/build/BuildAllocatedStockTable.tsx:94 #: src/tables/part/PartBuildAllocationsTable.tsx:84 #: src/tables/part/PartPurchaseOrdersTable.tsx:132 #: src/tables/part/PartSalesAllocationsTable.tsx:69 #: src/tables/sales/SalesOrderAllocationTable.tsx:122 -#: src/tables/sales/SalesOrderShipmentTable.tsx:130 +#: src/tables/sales/SalesOrderShipmentTable.tsx:151 msgid "Order Status" msgstr "" +#: src/tables/build/BuildAllocatedStockTable.tsx:164 +#: src/tables/build/BuildLineTable.tsx:651 +msgid "Edit Stock Allocation" +msgstr "" + #: src/tables/build/BuildAllocatedStockTable.tsx:164 #~ msgid "Edit Build Item" #~ msgstr "Edit Build Item" -#: src/tables/build/BuildAllocatedStockTable.tsx:167 -#: src/tables/build/BuildLineTable.tsx:650 -msgid "Edit Stock Allocation" -msgstr "" - #: src/tables/build/BuildAllocatedStockTable.tsx:174 #~ msgid "Delete Build Item" #~ msgstr "Delete Build Item" -#: src/tables/build/BuildAllocatedStockTable.tsx:180 -#: src/tables/build/BuildLineTable.tsx:663 -msgid "Delete Stock Allocation" +#: src/tables/build/BuildAllocatedStockTable.tsx:177 +#: src/tables/build/BuildLineTable.tsx:664 +#: src/tables/sales/SalesOrderAllocationTable.tsx:218 +msgid "Remove Allocated Stock" msgstr "" -#: src/tables/build/BuildAllocatedStockTable.tsx:239 +#: src/tables/build/BuildAllocatedStockTable.tsx:180 +#: src/tables/build/BuildLineTable.tsx:663 +#~ msgid "Delete Stock Allocation" +#~ msgstr "Delete Stock Allocation" + +#: src/tables/build/BuildAllocatedStockTable.tsx:182 +#: src/tables/build/BuildLineTable.tsx:669 +#: src/tables/sales/SalesOrderAllocationTable.tsx:221 +msgid "Are you sure you want to remove this allocated stock from the order?" +msgstr "" + +#: src/tables/build/BuildAllocatedStockTable.tsx:242 msgid "Consume" msgstr "" +#: src/tables/build/BuildAllocatedStockTable.tsx:259 +#: src/tables/build/BuildLineTable.tsx:112 +#: src/tables/sales/SalesOrderAllocationTable.tsx:248 +msgid "Remove allocated stock" +msgstr "" + #: src/tables/build/BuildLineTable.tsx:59 #~ msgid "Show lines with available stock" #~ msgstr "Show lines with available stock" -#: src/tables/build/BuildLineTable.tsx:120 +#: src/tables/build/BuildLineTable.tsx:121 msgid "View Stock Item" msgstr "" -#: src/tables/build/BuildLineTable.tsx:183 +#: src/tables/build/BuildLineTable.tsx:184 msgid "Show fully allocated lines" msgstr "" -#: src/tables/build/BuildLineTable.tsx:188 +#: src/tables/build/BuildLineTable.tsx:189 msgid "Show fully consumed lines" msgstr "" @@ -9523,124 +9607,124 @@ msgstr "" #~ msgid "Show allocated lines" #~ msgstr "Show allocated lines" -#: src/tables/build/BuildLineTable.tsx:193 +#: src/tables/build/BuildLineTable.tsx:194 msgid "Show items with sufficient available stock" msgstr "" -#: src/tables/build/BuildLineTable.tsx:198 +#: src/tables/build/BuildLineTable.tsx:199 msgid "Show consumable lines" msgstr "" -#: src/tables/build/BuildLineTable.tsx:203 +#: src/tables/build/BuildLineTable.tsx:204 msgid "Show optional lines" msgstr "" -#: src/tables/build/BuildLineTable.tsx:212 +#: src/tables/build/BuildLineTable.tsx:213 #: src/tables/part/PartTable.tsx:233 msgid "Testable" msgstr "" -#: src/tables/build/BuildLineTable.tsx:217 +#: src/tables/build/BuildLineTable.tsx:218 #: src/tables/stock/StockItemTable.tsx:388 msgid "Tracked" msgstr "" -#: src/tables/build/BuildLineTable.tsx:218 +#: src/tables/build/BuildLineTable.tsx:219 msgid "Show tracked lines" msgstr "" -#: src/tables/build/BuildLineTable.tsx:223 +#: src/tables/build/BuildLineTable.tsx:224 msgid "Show items with stock on order" msgstr "" -#: src/tables/build/BuildLineTable.tsx:258 +#: src/tables/build/BuildLineTable.tsx:259 #: src/tables/sales/SalesOrderLineItemTable.tsx:172 msgid "In production" msgstr "" -#: src/tables/build/BuildLineTable.tsx:286 +#: src/tables/build/BuildLineTable.tsx:287 msgid "Insufficient stock" msgstr "" -#: src/tables/build/BuildLineTable.tsx:302 +#: src/tables/build/BuildLineTable.tsx:303 #: src/tables/sales/SalesOrderLineItemTable.tsx:160 #: src/tables/stock/StockItemTable.tsx:191 msgid "No stock available" msgstr "" -#: src/tables/build/BuildLineTable.tsx:375 +#: src/tables/build/BuildLineTable.tsx:376 msgid "Gets Inherited" msgstr "" -#: src/tables/build/BuildLineTable.tsx:388 +#: src/tables/build/BuildLineTable.tsx:389 msgid "Unit Quantity" msgstr "" -#: src/tables/build/BuildLineTable.tsx:415 +#: src/tables/build/BuildLineTable.tsx:416 msgid "Setup Quantity" msgstr "" -#: src/tables/build/BuildLineTable.tsx:424 +#: src/tables/build/BuildLineTable.tsx:425 msgid "Attrition" msgstr "" -#: src/tables/build/BuildLineTable.tsx:432 +#: src/tables/build/BuildLineTable.tsx:433 msgid "Rounding Multiple" msgstr "" -#: src/tables/build/BuildLineTable.tsx:441 +#: src/tables/build/BuildLineTable.tsx:442 msgid "BOM Information" msgstr "" -#: src/tables/build/BuildLineTable.tsx:515 +#: src/tables/build/BuildLineTable.tsx:516 #: src/tables/part/PartBuildAllocationsTable.tsx:102 msgid "Fully allocated" msgstr "" -#: src/tables/build/BuildLineTable.tsx:563 +#: src/tables/build/BuildLineTable.tsx:564 #: src/tables/sales/SalesOrderLineItemTable.tsx:311 msgid "Create Build Order" msgstr "" -#: src/tables/build/BuildLineTable.tsx:592 +#: src/tables/build/BuildLineTable.tsx:593 msgid "Auto allocation in progress" msgstr "" -#: src/tables/build/BuildLineTable.tsx:595 -#: src/tables/build/BuildLineTable.tsx:802 +#: src/tables/build/BuildLineTable.tsx:596 +#: src/tables/build/BuildLineTable.tsx:809 msgid "Auto Allocate Stock" msgstr "" -#: src/tables/build/BuildLineTable.tsx:596 +#: src/tables/build/BuildLineTable.tsx:597 msgid "Automatically allocate stock to this build according to the selected options" msgstr "" -#: src/tables/build/BuildLineTable.tsx:616 -#: src/tables/build/BuildLineTable.tsx:630 -#: src/tables/build/BuildLineTable.tsx:751 -#: src/tables/build/BuildLineTable.tsx:852 +#: src/tables/build/BuildLineTable.tsx:617 +#: src/tables/build/BuildLineTable.tsx:631 +#: src/tables/build/BuildLineTable.tsx:758 +#: src/tables/build/BuildLineTable.tsx:859 #: src/tables/build/BuildOutputTable.tsx:355 #: src/tables/build/BuildOutputTable.tsx:360 msgid "Deallocate Stock" msgstr "" -#: src/tables/build/BuildLineTable.tsx:632 +#: src/tables/build/BuildLineTable.tsx:633 msgid "Deallocate all untracked stock for this build order" msgstr "" -#: src/tables/build/BuildLineTable.tsx:634 +#: src/tables/build/BuildLineTable.tsx:635 msgid "Deallocate stock from the selected line item" msgstr "" -#: src/tables/build/BuildLineTable.tsx:638 +#: src/tables/build/BuildLineTable.tsx:639 msgid "Stock has been deallocated" msgstr "" -#: src/tables/build/BuildLineTable.tsx:771 +#: src/tables/build/BuildLineTable.tsx:778 msgid "Build Stock" msgstr "" -#: src/tables/build/BuildLineTable.tsx:784 +#: src/tables/build/BuildLineTable.tsx:791 #: src/tables/sales/SalesOrderLineItemTable.tsx:487 msgid "View Part" msgstr "" @@ -9739,7 +9823,7 @@ msgid "Serialize Build Output" msgstr "" #: src/tables/build/BuildOutputTable.tsx:405 -#: src/tables/part/PartTestResultTable.tsx:310 +#: src/tables/part/PartTestResultTable.tsx:318 #: src/tables/stock/StockItemTable.tsx:328 msgid "Filter by stock status" msgstr "" @@ -9964,8 +10048,8 @@ msgid "View Item" msgstr "" #: src/tables/general/ExtraLineItemTable.tsx:95 -#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:299 -#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:403 +#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:300 +#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:405 #: src/tables/sales/ReturnOrderLineItemTable.tsx:83 #: src/tables/sales/ReturnOrderLineItemTable.tsx:187 #: src/tables/sales/SalesOrderLineItemTable.tsx:252 @@ -9974,14 +10058,14 @@ msgid "Add Line Item" msgstr "" #: src/tables/general/ExtraLineItemTable.tsx:108 -#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:320 +#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:322 #: src/tables/sales/ReturnOrderLineItemTable.tsx:96 #: src/tables/sales/SalesOrderLineItemTable.tsx:271 msgid "Edit Line Item" msgstr "" #: src/tables/general/ExtraLineItemTable.tsx:117 -#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:329 +#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:331 #: src/tables/sales/ReturnOrderLineItemTable.tsx:105 #: src/tables/sales/SalesOrderLineItemTable.tsx:280 msgid "Delete Line Item" @@ -9991,6 +10075,137 @@ msgstr "" msgid "Add Extra Line Item" msgstr "" +#: src/tables/general/ParameterTable.tsx:88 +msgid "Internal Units" +msgstr "" + +#: src/tables/general/ParameterTable.tsx:108 +#: src/tables/general/ParameterTable.tsx:123 +msgid "Updated By" +msgstr "" + +#: src/tables/general/ParameterTable.tsx:118 +msgid "Show parameters for enabled templates" +msgstr "" + +#: src/tables/general/ParameterTable.tsx:124 +msgid "Filter by user who last updated the parameter" +msgstr "" + +#: src/tables/general/ParameterTable.tsx:154 +msgid "Import Parameters" +msgstr "" + +#: src/tables/general/ParameterTable.tsx:164 +#: src/tables/general/ParametricDataTable.tsx:261 +#: src/tables/general/ParametricDataTable.tsx:392 +msgid "Add Parameter" +msgstr "" + +#: src/tables/general/ParameterTable.tsx:175 +#: src/tables/general/ParameterTable.tsx:222 +#: src/tables/general/ParametricDataTable.tsx:285 +msgid "Edit Parameter" +msgstr "" + +#: src/tables/general/ParameterTable.tsx:183 +#: src/tables/general/ParameterTable.tsx:230 +msgid "Delete Parameter" +msgstr "" + +#: src/tables/general/ParameterTable.tsx:191 +msgid "Add Parameters" +msgstr "" + +#: src/tables/general/ParameterTable.tsx:197 +msgid "Create Parameter" +msgstr "" + +#: src/tables/general/ParameterTable.tsx:199 +msgid "Create a new parameter" +msgstr "" + +#: src/tables/general/ParameterTable.tsx:208 +msgid "Import parameters from a file" +msgstr "" + +#: src/tables/general/ParameterTemplateTable.tsx:48 +#: src/tables/general/ParameterTemplateTable.tsx:197 +msgid "Add Parameter Template" +msgstr "" + +#: src/tables/general/ParameterTemplateTable.tsx:64 +msgid "Duplicate Parameter Template" +msgstr "" + +#: src/tables/general/ParameterTemplateTable.tsx:78 +msgid "Delete Parameter Template" +msgstr "" + +#: src/tables/general/ParameterTemplateTable.tsx:85 +msgid "Edit Parameter Template" +msgstr "" + +#: src/tables/general/ParameterTemplateTable.tsx:138 +msgid "Checkbox" +msgstr "" + +#: src/tables/general/ParameterTemplateTable.tsx:139 +msgid "Show checkbox templates" +msgstr "" + +#: src/tables/general/ParameterTemplateTable.tsx:143 +msgid "Has choices" +msgstr "" + +#: src/tables/general/ParameterTemplateTable.tsx:144 +msgid "Show templates with choices" +msgstr "" + +#: src/tables/general/ParameterTemplateTable.tsx:148 +#: src/tables/part/PartTable.tsx:245 +msgid "Has Units" +msgstr "" + +#: src/tables/general/ParameterTemplateTable.tsx:149 +msgid "Show templates with units" +msgstr "" + +#: src/tables/general/ParameterTemplateTable.tsx:154 +msgid "Show enabled templates" +msgstr "" + +#: src/tables/general/ParameterTemplateTable.tsx:158 +#: src/tables/settings/ImportSessionTable.tsx:111 +#: src/tables/settings/TemplateTable.tsx:368 +msgid "Model Type" +msgstr "" + +#: src/tables/general/ParameterTemplateTable.tsx:159 +msgid "Filter by model type" +msgstr "" + +#: src/tables/general/ParametricDataTable.tsx:79 +msgid "Click to edit" +msgstr "" + +#: src/tables/general/ParametricDataTableFilters.tsx:36 +msgid "True" +msgstr "" + +#: src/tables/general/ParametricDataTableFilters.tsx:37 +msgid "False" +msgstr "" + +#: src/tables/general/ParametricDataTableFilters.tsx:47 +#: src/tables/general/ParametricDataTableFilters.tsx:80 +msgid "Select a choice" +msgstr "" + +#: src/tables/general/ParametricDataTableFilters.tsx:100 +msgid "Enter a value" +msgstr "" + #: src/tables/machine/MachineListTable.tsx:133 msgid "Machine restarted" msgstr "" @@ -10071,7 +10286,7 @@ msgid "Initialized" msgstr "" #: src/tables/machine/MachineListTable.tsx:410 -#: src/tables/machine/MachineTypeTable.tsx:307 +#: src/tables/machine/MachineTypeTable.tsx:305 msgid "No errors reported" msgstr "" @@ -10132,15 +10347,15 @@ msgstr "" #~ msgid "Machine type information" #~ msgstr "Machine type information" -#: src/tables/machine/MachineTypeTable.tsx:128 +#: src/tables/machine/MachineTypeTable.tsx:126 msgid "Not Found" msgstr "" -#: src/tables/machine/MachineTypeTable.tsx:131 +#: src/tables/machine/MachineTypeTable.tsx:129 msgid "Machine type not found." msgstr "" -#: src/tables/machine/MachineTypeTable.tsx:141 +#: src/tables/machine/MachineTypeTable.tsx:139 msgid "Machine Type Information" msgstr "" @@ -10148,34 +10363,34 @@ msgstr "" #~ msgid "Available drivers" #~ msgstr "Available drivers" -#: src/tables/machine/MachineTypeTable.tsx:156 -#: src/tables/machine/MachineTypeTable.tsx:255 +#: src/tables/machine/MachineTypeTable.tsx:154 +#: src/tables/machine/MachineTypeTable.tsx:253 msgid "Slug" msgstr "" -#: src/tables/machine/MachineTypeTable.tsx:167 -#: src/tables/machine/MachineTypeTable.tsx:276 +#: src/tables/machine/MachineTypeTable.tsx:165 +#: src/tables/machine/MachineTypeTable.tsx:274 msgid "Provider plugin" msgstr "" -#: src/tables/machine/MachineTypeTable.tsx:179 -#: src/tables/machine/MachineTypeTable.tsx:288 +#: src/tables/machine/MachineTypeTable.tsx:177 +#: src/tables/machine/MachineTypeTable.tsx:286 msgid "Provider file" msgstr "" -#: src/tables/machine/MachineTypeTable.tsx:194 +#: src/tables/machine/MachineTypeTable.tsx:192 msgid "Available Drivers" msgstr "" -#: src/tables/machine/MachineTypeTable.tsx:234 +#: src/tables/machine/MachineTypeTable.tsx:232 msgid "Machine driver not found." msgstr "" -#: src/tables/machine/MachineTypeTable.tsx:242 +#: src/tables/machine/MachineTypeTable.tsx:240 msgid "Machine driver information" msgstr "" -#: src/tables/machine/MachineTypeTable.tsx:262 +#: src/tables/machine/MachineTypeTable.tsx:260 msgid "Machine type" msgstr "" @@ -10187,15 +10402,15 @@ msgstr "" #~ msgid "Machine driver detail" #~ msgstr "Machine driver detail" -#: src/tables/machine/MachineTypeTable.tsx:362 +#: src/tables/machine/MachineTypeTable.tsx:360 msgid "Builtin type" msgstr "" -#: src/tables/machine/MachineTypeTable.tsx:371 +#: src/tables/machine/MachineTypeTable.tsx:369 msgid "Machine Type Detail" msgstr "" -#: src/tables/machine/MachineTypeTable.tsx:381 +#: src/tables/machine/MachineTypeTable.tsx:379 msgid "Machine Driver Detail" msgstr "" @@ -10213,8 +10428,16 @@ msgstr "" msgid "Message" msgstr "" -#: src/tables/part/ParametricPartTable.tsx:78 -msgid "Click to edit" +#: src/tables/part/ParametricPartTable.tsx:20 +msgid "Show active parts" +msgstr "" + +#: src/tables/part/ParametricPartTable.tsx:25 +msgid "Show locked parts" +msgstr "" + +#: src/tables/part/ParametricPartTable.tsx:30 +msgid "Show assembly parts" msgstr "" #: src/tables/part/ParametricPartTable.tsx:82 @@ -10222,43 +10445,14 @@ msgstr "" #~ msgstr "Edit parameter" #: src/tables/part/ParametricPartTable.tsx:244 -msgid "Add Part Parameter" -msgstr "" +#~ msgid "Add Part Parameter" +#~ msgstr "Add Part Parameter" #: src/tables/part/ParametricPartTable.tsx:258 #: src/tables/part/PartParameterTable.tsx:164 #: src/tables/part/PartParameterTable.tsx:187 -msgid "Edit Part Parameter" -msgstr "" - -#: src/tables/part/ParametricPartTable.tsx:355 -msgid "Show active parts" -msgstr "" - -#: src/tables/part/ParametricPartTable.tsx:360 -msgid "Show locked parts" -msgstr "" - -#: src/tables/part/ParametricPartTable.tsx:365 -msgid "Show assembly parts" -msgstr "" - -#: src/tables/part/ParametricPartTableFilters.tsx:36 -msgid "True" -msgstr "" - -#: src/tables/part/ParametricPartTableFilters.tsx:37 -msgid "False" -msgstr "" - -#: src/tables/part/ParametricPartTableFilters.tsx:47 -#: src/tables/part/ParametricPartTableFilters.tsx:80 -msgid "Select a choice" -msgstr "" - -#: src/tables/part/ParametricPartTableFilters.tsx:100 -msgid "Enter a value" -msgstr "" +#~ msgid "Edit Part Parameter" +#~ msgstr "Edit Part Parameter" #: src/tables/part/PartBuildAllocationsTable.tsx:64 msgid "Assembly IPN" @@ -10273,7 +10467,7 @@ msgid "Required Stock" msgstr "" #: src/tables/part/PartBuildAllocationsTable.tsx:124 -#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:381 +#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:383 msgid "View Build Order" msgstr "" @@ -10332,85 +10526,22 @@ msgstr "" msgid "Delete Category Parameter" msgstr "" -#: src/tables/part/PartCategoryTemplateTable.tsx:87 -msgid "Parameter Template" -msgstr "" - #: src/tables/part/PartCategoryTemplateTable.tsx:93 #~ msgid "[{0}]" #~ msgstr "[{0}]" -#: src/tables/part/PartParameterTable.tsx:108 -msgid "Internal Units" -msgstr "" - -#: src/tables/part/PartParameterTable.tsx:128 -#: src/tables/part/PartParameterTable.tsx:138 -msgid "Updated By" -msgstr "" - -#: src/tables/part/PartParameterTable.tsx:139 -msgid "Filter by user who last updated the parameter" -msgstr "" - #: src/tables/part/PartParameterTable.tsx:148 -msgid "New Part Parameter" -msgstr "" +#~ msgid "New Part Parameter" +#~ msgstr "New Part Parameter" #: src/tables/part/PartParameterTable.tsx:173 #: src/tables/part/PartParameterTable.tsx:195 -msgid "Delete Part Parameter" -msgstr "" +#~ msgid "Delete Part Parameter" +#~ msgstr "Delete Part Parameter" #: src/tables/part/PartParameterTable.tsx:213 -msgid "Add parameter" -msgstr "" - -#: src/tables/part/PartParameterTable.tsx:232 -msgid "Part parameters cannot be edited, as the part is locked" -msgstr "" - -#: src/tables/part/PartParameterTemplateTable.tsx:36 -msgid "Checkbox" -msgstr "" - -#: src/tables/part/PartParameterTemplateTable.tsx:37 -msgid "Show checkbox templates" -msgstr "" - -#: src/tables/part/PartParameterTemplateTable.tsx:41 -msgid "Has choices" -msgstr "" - -#: src/tables/part/PartParameterTemplateTable.tsx:42 -msgid "Show templates with choices" -msgstr "" - -#: src/tables/part/PartParameterTemplateTable.tsx:46 -#: src/tables/part/PartTable.tsx:245 -msgid "Has Units" -msgstr "" - -#: src/tables/part/PartParameterTemplateTable.tsx:47 -msgid "Show templates with units" -msgstr "" - -#: src/tables/part/PartParameterTemplateTable.tsx:91 -#: src/tables/part/PartParameterTemplateTable.tsx:166 -msgid "Add Parameter Template" -msgstr "" - -#: src/tables/part/PartParameterTemplateTable.tsx:105 -msgid "Duplicate Parameter Template" -msgstr "" - -#: src/tables/part/PartParameterTemplateTable.tsx:117 -msgid "Edit Parameter Template" -msgstr "" - -#: src/tables/part/PartParameterTemplateTable.tsx:128 -msgid "Delete Parameter Template" -msgstr "" +#~ msgid "Add parameter" +#~ msgstr "Add parameter" #: src/tables/part/PartParameterTemplateTable.tsx:141 #~ msgid "Add parameter template" @@ -10430,7 +10561,7 @@ msgid "Show received items" msgstr "" #: src/tables/part/PartSalesAllocationsTable.tsx:90 -#: src/tables/sales/SalesOrderShipmentTable.tsx:218 +#: src/tables/sales/SalesOrderShipmentTable.tsx:263 msgid "View Sales Order" msgstr "" @@ -10617,8 +10748,8 @@ msgstr "" #: src/tables/part/PartTestResultTable.tsx:103 #: src/tables/part/PartTestResultTable.tsx:181 -#: src/tables/part/PartTestResultTable.tsx:320 -#: src/tables/part/PartTestResultTable.tsx:334 +#: src/tables/part/PartTestResultTable.tsx:328 +#: src/tables/part/PartTestResultTable.tsx:342 #: src/tables/stock/StockItemTestResultTable.tsx:296 #: src/tables/stock/StockItemTestResultTable.tsx:368 #: src/tables/stock/StockItemTestResultTable.tsx:429 @@ -10643,7 +10774,7 @@ msgstr "" msgid "No Result" msgstr "" -#: src/tables/part/PartTestResultTable.tsx:298 +#: src/tables/part/PartTestResultTable.tsx:306 msgid "Show build outputs currently in production" msgstr "" @@ -11013,36 +11144,45 @@ msgstr "" #~ msgid "Parameter updated" #~ msgstr "Parameter updated" -#: src/tables/purchasing/ManufacturerPartParameterTable.tsx:63 -#: src/tables/purchasing/ManufacturerPartParameterTable.tsx:112 -msgid "Add Parameter" -msgstr "" - #: src/tables/purchasing/ManufacturerPartParameterTable.tsx:73 #~ msgid "Parameter deleted" #~ msgstr "Parameter deleted" -#: src/tables/purchasing/ManufacturerPartParameterTable.tsx:74 -msgid "Edit Parameter" -msgstr "" - #: src/tables/purchasing/ManufacturerPartParameterTable.tsx:74 #~ msgid "Are you sure you want to delete this parameter?" #~ msgstr "Are you sure you want to delete this parameter?" -#: src/tables/purchasing/ManufacturerPartParameterTable.tsx:82 -msgid "Delete Parameter" +#: src/tables/purchasing/ManufacturerPartParametricTable.tsx:34 +#: src/tables/purchasing/ManufacturerPartTable.tsx:82 +#: src/tables/purchasing/SupplierPartTable.tsx:99 +msgid "MPN" +msgstr "" + +#: src/tables/purchasing/ManufacturerPartParametricTable.tsx:44 +#: src/tables/purchasing/ManufacturerPartTable.tsx:134 +#: src/tables/purchasing/SupplierPartTable.tsx:220 +msgid "Active Part" +msgstr "" + +#: src/tables/purchasing/ManufacturerPartParametricTable.tsx:45 +#: src/tables/purchasing/ManufacturerPartTable.tsx:135 +msgid "Show manufacturer parts for active internal parts." +msgstr "" + +#: src/tables/purchasing/ManufacturerPartParametricTable.tsx:50 +#: src/tables/purchasing/ManufacturerPartTable.tsx:140 +msgid "Active Manufacturer" +msgstr "" + +#: src/tables/purchasing/ManufacturerPartParametricTable.tsx:51 +#: src/tables/purchasing/ManufacturerPartTable.tsx:142 +msgid "Show manufacturer parts for active manufacturers." msgstr "" #: src/tables/purchasing/ManufacturerPartTable.tsx:63 #~ msgid "Create Manufacturer Part" #~ msgstr "Create Manufacturer Part" -#: src/tables/purchasing/ManufacturerPartTable.tsx:82 -#: src/tables/purchasing/SupplierPartTable.tsx:99 -msgid "MPN" -msgstr "" - #: src/tables/purchasing/ManufacturerPartTable.tsx:100 #~ msgid "Manufacturer part updated" #~ msgstr "Manufacturer part updated" @@ -11055,25 +11195,8 @@ msgstr "" #~ msgid "Are you sure you want to remove this manufacturer part?" #~ msgstr "Are you sure you want to remove this manufacturer part?" -#: src/tables/purchasing/ManufacturerPartTable.tsx:134 -#: src/tables/purchasing/SupplierPartTable.tsx:220 -msgid "Active Part" -msgstr "" - -#: src/tables/purchasing/ManufacturerPartTable.tsx:135 -msgid "Show manufacturer parts for active internal parts." -msgstr "" - -#: src/tables/purchasing/ManufacturerPartTable.tsx:140 -msgid "Active Manufacturer" -msgstr "" - -#: src/tables/purchasing/ManufacturerPartTable.tsx:142 -msgid "Show manufacturer parts for active manufacturers." -msgstr "" - #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:115 -#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:397 +#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:399 msgid "Import Line Items" msgstr "" @@ -11099,11 +11222,11 @@ msgstr "" #~ msgid "Add line item" #~ msgstr "Add line item" -#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:350 +#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:352 msgid "Receive line item" msgstr "" -#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:414 +#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:416 msgid "Receive items" msgstr "" @@ -11201,25 +11324,25 @@ msgid "Not shipped" msgstr "" #: src/tables/sales/SalesOrderAllocationTable.tsx:211 -#: src/tables/sales/SalesOrderAllocationTable.tsx:229 +#: src/tables/sales/SalesOrderAllocationTable.tsx:235 msgid "Edit Allocation" msgstr "" #: src/tables/sales/SalesOrderAllocationTable.tsx:218 #: src/tables/sales/SalesOrderAllocationTable.tsx:241 -msgid "Delete Allocation" -msgstr "" +#~ msgid "Delete Allocation" +#~ msgstr "Delete Allocation" -#: src/tables/sales/SalesOrderAllocationTable.tsx:252 -#: src/tables/sales/SalesOrderAllocationTable.tsx:253 +#: src/tables/sales/SalesOrderAllocationTable.tsx:261 +#: src/tables/sales/SalesOrderAllocationTable.tsx:262 msgid "View Shipment" msgstr "" -#: src/tables/sales/SalesOrderAllocationTable.tsx:308 +#: src/tables/sales/SalesOrderAllocationTable.tsx:317 msgid "Assign to Shipment" msgstr "" -#: src/tables/sales/SalesOrderAllocationTable.tsx:324 +#: src/tables/sales/SalesOrderAllocationTable.tsx:333 msgid "Assign to shipment" msgstr "" @@ -11259,35 +11382,35 @@ msgstr "" #~ msgid "Delete Shipment" #~ msgstr "Delete Shipment" -#: src/tables/sales/SalesOrderShipmentTable.tsx:72 +#: src/tables/sales/SalesOrderShipmentTable.tsx:79 msgid "Create Shipment" msgstr "" -#: src/tables/sales/SalesOrderShipmentTable.tsx:143 +#: src/tables/sales/SalesOrderShipmentTable.tsx:164 msgid "Items" msgstr "" -#: src/tables/sales/SalesOrderShipmentTable.tsx:203 +#: src/tables/sales/SalesOrderShipmentTable.tsx:248 msgid "Edit shipment" msgstr "" -#: src/tables/sales/SalesOrderShipmentTable.tsx:211 +#: src/tables/sales/SalesOrderShipmentTable.tsx:256 msgid "Cancel shipment" msgstr "" -#: src/tables/sales/SalesOrderShipmentTable.tsx:241 +#: src/tables/sales/SalesOrderShipmentTable.tsx:286 msgid "Add shipment" msgstr "" -#: src/tables/sales/SalesOrderShipmentTable.tsx:255 +#: src/tables/sales/SalesOrderShipmentTable.tsx:300 msgid "Show shipments which have been checked" msgstr "" -#: src/tables/sales/SalesOrderShipmentTable.tsx:260 +#: src/tables/sales/SalesOrderShipmentTable.tsx:305 msgid "Show shipments which have been shipped" msgstr "" -#: src/tables/sales/SalesOrderShipmentTable.tsx:265 +#: src/tables/sales/SalesOrderShipmentTable.tsx:310 msgid "Show shipments which have been delivered" msgstr "" @@ -11621,11 +11744,6 @@ msgstr "" msgid "Imported Rows" msgstr "" -#: src/tables/settings/ImportSessionTable.tsx:111 -#: src/tables/settings/TemplateTable.tsx:368 -msgid "Model Type" -msgstr "" - #: src/tables/settings/ImportSessionTable.tsx:112 #: src/tables/settings/TemplateTable.tsx:369 msgid "Filter by target model type" diff --git a/src/frontend/src/locales/de/messages.po b/src/frontend/src/locales/de/messages.po index 19e8ca67b6..47fef582f8 100644 --- a/src/frontend/src/locales/de/messages.po +++ b/src/frontend/src/locales/de/messages.po @@ -8,7 +8,7 @@ msgstr "" "Language: de\n" "Project-Id-Version: inventree\n" "Report-Msgid-Bugs-To: \n" -"PO-Revision-Date: 2025-11-19 19:39\n" +"PO-Revision-Date: 2025-12-07 07:36\n" "Last-Translator: \n" "Language-Team: German\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" @@ -30,7 +30,7 @@ msgid "Edit" msgstr "Bearbeiten" #: lib/components/RowActions.tsx:56 -#: src/components/forms/ApiForm.tsx:735 +#: src/components/forms/ApiForm.tsx:754 #: src/components/items/ActionDropdown.tsx:257 #: src/components/items/RoleTable.tsx:155 #: src/hooks/UseForm.tsx:164 @@ -56,24 +56,24 @@ msgstr "Abbrechen" #: lib/components/RowActions.tsx:136 #: src/components/nav/NavigationDrawer.tsx:190 -#: src/forms/PurchaseOrderForms.tsx:802 +#: src/forms/PurchaseOrderForms.tsx:854 #: src/forms/StockForms.tsx:796 #: src/forms/StockForms.tsx:843 -#: src/forms/StockForms.tsx:889 -#: src/forms/StockForms.tsx:928 -#: src/forms/StockForms.tsx:964 -#: src/forms/StockForms.tsx:1050 +#: src/forms/StockForms.tsx:896 +#: src/forms/StockForms.tsx:942 +#: src/forms/StockForms.tsx:980 +#: src/forms/StockForms.tsx:1066 #: src/pages/Index/Settings/AccountSettings/MFASettings.tsx:962 msgid "Actions" msgstr "Aktionen" #: lib/components/SearchInput.tsx:34 -#: src/components/forms/fields/RelatedModelField.tsx:408 +#: src/components/forms/fields/RelatedModelField.tsx:479 #: src/components/nav/Header.tsx:169 #: src/components/wizards/ImportPartWizard.tsx:200 #: src/components/wizards/ImportPartWizard.tsx:233 -#: src/pages/Index/Settings/UserSettings.tsx:74 -#: src/pages/part/PartDetail.tsx:1155 +#: src/pages/Index/Settings/UserSettings.tsx:75 +#: src/pages/part/PartDetail.tsx:1176 msgid "Search" msgstr "Suche" @@ -95,7 +95,7 @@ msgstr "Ja" msgid "No" msgstr "Nein" -#: lib/enums/ModelInformation.tsx:28 +#: lib/enums/ModelInformation.tsx:29 #: src/components/wizards/OrderPartsWizard.tsx:279 #: src/forms/BuildForms.tsx:332 #: src/forms/BuildForms.tsx:407 @@ -103,208 +103,234 @@ msgstr "Nein" #: src/forms/BuildForms.tsx:630 #: src/forms/BuildForms.tsx:793 #: src/forms/BuildForms.tsx:896 -#: src/forms/PurchaseOrderForms.tsx:798 +#: src/forms/PurchaseOrderForms.tsx:850 #: src/forms/ReturnOrderForms.tsx:242 -#: src/forms/SalesOrderForms.tsx:305 +#: src/forms/SalesOrderForms.tsx:384 #: src/forms/StockForms.tsx:360 #: src/forms/StockForms.tsx:791 #: src/forms/StockForms.tsx:838 -#: src/forms/StockForms.tsx:884 -#: src/forms/StockForms.tsx:923 -#: src/forms/StockForms.tsx:959 -#: src/forms/StockForms.tsx:1002 -#: src/forms/StockForms.tsx:1046 -#: src/forms/StockForms.tsx:1094 -#: src/forms/StockForms.tsx:1138 -#: src/pages/build/BuildDetail.tsx:200 -#: src/pages/part/PartDetail.tsx:1207 +#: src/forms/StockForms.tsx:891 +#: src/forms/StockForms.tsx:937 +#: src/forms/StockForms.tsx:975 +#: src/forms/StockForms.tsx:1018 +#: src/forms/StockForms.tsx:1062 +#: src/forms/StockForms.tsx:1110 +#: src/forms/StockForms.tsx:1154 +#: src/pages/build/BuildDetail.tsx:201 +#: src/pages/part/PartDetail.tsx:1228 #: src/tables/ColumnRenderers.tsx:91 +#: src/tables/part/PartTestResultTable.tsx:247 #: src/tables/part/RelatedPartTable.tsx:53 #: src/tables/stock/StockTrackingTable.tsx:87 msgid "Part" msgstr "Teil" -#: lib/enums/ModelInformation.tsx:29 +#: lib/enums/ModelInformation.tsx:30 #: lib/enums/Roles.tsx:35 #: src/components/nav/NavigationDrawer.tsx:70 #: src/defaults/links.tsx:36 -#: src/pages/Index/Settings/SystemSettings.tsx:190 -#: src/pages/part/CategoryDetail.tsx:132 -#: src/pages/part/CategoryDetail.tsx:277 -#: src/pages/part/CategoryDetail.tsx:323 -#: src/pages/part/CategoryDetail.tsx:354 -#: src/pages/part/PartDetail.tsx:965 +#: src/pages/Index/Settings/SystemSettings.tsx:197 +#: src/pages/part/CategoryDetail.tsx:135 +#: src/pages/part/CategoryDetail.tsx:285 +#: src/pages/part/CategoryDetail.tsx:340 +#: src/pages/part/CategoryDetail.tsx:371 +#: src/pages/part/PartDetail.tsx:978 msgid "Parts" msgstr "Teile" #: lib/enums/ModelInformation.tsx:37 #: src/pages/Index/Settings/AdminCenter/PartParameterPanel.tsx:13 -msgid "Part Parameter Template" -msgstr "Teil Parametervorlage" +#~ msgid "Part Parameter Template" +#~ msgstr "Part Parameter Template" #: lib/enums/ModelInformation.tsx:38 -msgid "Part Parameter Templates" -msgstr "Teil Parametervorlagen" +#~ msgid "Part Parameter Templates" +#~ msgstr "Part Parameter Templates" + +#: lib/enums/ModelInformation.tsx:39 +msgid "Parameter" +msgstr "" + +#: lib/enums/ModelInformation.tsx:40 +#: src/components/panels/ParametersPanel.tsx:19 +#: src/components/wizards/ImportPartWizard.tsx:807 +#: src/pages/Index/Settings/AdminCenter/Index.tsx:195 +#: src/pages/Index/Settings/SystemSettings.tsx:191 +#: src/pages/part/PartDetail.tsx:943 +msgid "Parameters" +msgstr "Parameter" #: lib/enums/ModelInformation.tsx:45 +#: src/tables/part/PartCategoryTemplateTable.tsx:87 +msgid "Parameter Template" +msgstr "Parameter Vorlage" + +#: lib/enums/ModelInformation.tsx:46 +#: src/pages/Index/Settings/AdminCenter/ParameterPanel.tsx:13 +msgid "Parameter Templates" +msgstr "" + +#: lib/enums/ModelInformation.tsx:52 msgid "Part Test Template" msgstr "Testvorlage für Teil" -#: lib/enums/ModelInformation.tsx:46 +#: lib/enums/ModelInformation.tsx:53 msgid "Part Test Templates" msgstr "Testvorlagen für Teil" -#: lib/enums/ModelInformation.tsx:52 +#: lib/enums/ModelInformation.tsx:59 #: src/components/wizards/OrderPartsWizard.tsx:290 -#: src/pages/company/SupplierPartDetail.tsx:413 +#: src/pages/company/SupplierPartDetail.tsx:418 #: src/pages/stock/StockDetail.tsx:289 -#: src/tables/build/BuildAllocatedStockTable.tsx:155 +#: src/tables/build/BuildAllocatedStockTable.tsx:152 #: src/tables/part/PartPurchaseOrdersTable.tsx:50 +#: src/tables/purchasing/SupplierPartParametricTable.tsx:29 #: src/tables/purchasing/SupplierPartTable.tsx:83 #: src/tables/stock/StockItemTable.tsx:247 msgid "Supplier Part" msgstr "Zuliefererteil" -#: lib/enums/ModelInformation.tsx:53 -#: src/pages/purchasing/PurchasingIndex.tsx:92 +#: lib/enums/ModelInformation.tsx:60 +#: src/pages/purchasing/PurchasingIndex.tsx:128 msgid "Supplier Parts" msgstr "Zuliefererteile" -#: lib/enums/ModelInformation.tsx:61 -#: src/pages/company/ManufacturerPartDetail.tsx:297 -#: src/pages/company/SupplierPartDetail.tsx:161 +#: lib/enums/ModelInformation.tsx:69 +#: src/pages/company/ManufacturerPartDetail.tsx:288 +#: src/pages/company/SupplierPartDetail.tsx:162 #: src/tables/part/PartPurchaseOrdersTable.tsx:56 #: src/tables/stock/StockItemTable.tsx:253 msgid "Manufacturer Part" msgstr "Herstellerteil" -#: lib/enums/ModelInformation.tsx:62 -#: src/pages/purchasing/PurchasingIndex.tsx:109 +#: lib/enums/ModelInformation.tsx:70 +#: src/pages/purchasing/PurchasingIndex.tsx:177 msgid "Manufacturer Parts" msgstr "Herstellerteile" -#: lib/enums/ModelInformation.tsx:70 -#: src/pages/part/CategoryDetail.tsx:354 +#: lib/enums/ModelInformation.tsx:79 +#: src/pages/part/CategoryDetail.tsx:371 #: src/tables/Filter.tsx:389 msgid "Part Category" msgstr "Teilkategorie" -#: lib/enums/ModelInformation.tsx:71 +#: lib/enums/ModelInformation.tsx:80 #: lib/enums/Roles.tsx:37 -#: src/pages/part/CategoryDetail.tsx:271 -#: src/pages/part/CategoryDetail.tsx:345 -#: src/pages/part/PartDetail.tsx:1196 +#: src/pages/part/CategoryDetail.tsx:279 +#: src/pages/part/CategoryDetail.tsx:362 +#: src/pages/part/PartDetail.tsx:1217 msgid "Part Categories" msgstr "Teil-Kategorien" -#: lib/enums/ModelInformation.tsx:79 +#: lib/enums/ModelInformation.tsx:88 #: src/forms/BuildForms.tsx:473 #: src/forms/BuildForms.tsx:633 #: src/forms/BuildForms.tsx:794 -#: src/forms/SalesOrderForms.tsx:307 +#: src/forms/SalesOrderForms.tsx:386 #: src/pages/stock/StockDetail.tsx:1005 -#: src/tables/part/PartTestResultTable.tsx:248 +#: src/tables/part/PartTestResultTable.tsx:256 #: src/tables/stock/StockTrackingTable.tsx:48 #: src/tables/stock/StockTrackingTable.tsx:55 msgid "Stock Item" msgstr "Lagerartikel" -#: lib/enums/ModelInformation.tsx:80 +#: lib/enums/ModelInformation.tsx:89 #: lib/enums/Roles.tsx:45 -#: src/pages/company/CompanyDetail.tsx:210 -#: src/pages/part/CategoryDetail.tsx:291 +#: src/pages/company/CompanyDetail.tsx:211 +#: src/pages/part/CategoryDetail.tsx:314 #: src/pages/part/PartStockHistoryDetail.tsx:101 #: src/pages/stock/LocationDetail.tsx:121 #: src/pages/stock/LocationDetail.tsx:180 msgid "Stock Items" msgstr "Lagerartikel" -#: lib/enums/ModelInformation.tsx:88 +#: lib/enums/ModelInformation.tsx:98 #: lib/enums/Roles.tsx:47 #: src/pages/stock/LocationDetail.tsx:420 msgid "Stock Location" msgstr "Lagerort" -#: lib/enums/ModelInformation.tsx:89 +#: lib/enums/ModelInformation.tsx:99 #: src/pages/stock/LocationDetail.tsx:174 #: src/pages/stock/LocationDetail.tsx:412 #: src/pages/stock/StockDetail.tsx:996 msgid "Stock Locations" msgstr "Lagerorte" -#: lib/enums/ModelInformation.tsx:97 +#: lib/enums/ModelInformation.tsx:108 msgid "Stock Location Type" msgstr "Lagerort Typ" -#: lib/enums/ModelInformation.tsx:98 +#: lib/enums/ModelInformation.tsx:109 msgid "Stock Location Types" msgstr "Lagerort Typen" -#: lib/enums/ModelInformation.tsx:103 -#: src/pages/Index/Settings/SystemSettings.tsx:248 -#: src/pages/part/PartDetail.tsx:911 +#: lib/enums/ModelInformation.tsx:114 +#: src/pages/Index/Settings/SystemSettings.tsx:254 +#: src/pages/part/PartDetail.tsx:900 msgid "Stock History" msgstr "Lagerhistorie" -#: lib/enums/ModelInformation.tsx:104 +#: lib/enums/ModelInformation.tsx:115 msgid "Stock Histories" msgstr "Bestandshistorie" -#: lib/enums/ModelInformation.tsx:109 +#: lib/enums/ModelInformation.tsx:120 msgid "Build" msgstr "Bauauftrag" -#: lib/enums/ModelInformation.tsx:110 +#: lib/enums/ModelInformation.tsx:121 msgid "Builds" msgstr "Builds" -#: lib/enums/ModelInformation.tsx:118 +#: lib/enums/ModelInformation.tsx:130 msgid "Build Line" msgstr "Bauauftragsposition" -#: lib/enums/ModelInformation.tsx:119 +#: lib/enums/ModelInformation.tsx:131 msgid "Build Lines" msgstr "Bauauftragspositionen" -#: lib/enums/ModelInformation.tsx:126 +#: lib/enums/ModelInformation.tsx:138 msgid "Build Item" msgstr "" -#: lib/enums/ModelInformation.tsx:127 +#: lib/enums/ModelInformation.tsx:139 msgid "Build Items" msgstr "" -#: lib/enums/ModelInformation.tsx:132 -#: src/pages/company/CompanyDetail.tsx:340 +#: lib/enums/ModelInformation.tsx:144 +#: src/pages/company/CompanyDetail.tsx:345 #: src/tables/company/CompanyTable.tsx:47 #: src/tables/company/ContactTable.tsx:67 +#: src/tables/company/ParametricCompanyTable.tsx:18 msgid "Company" msgstr "Firma" -#: lib/enums/ModelInformation.tsx:133 +#: lib/enums/ModelInformation.tsx:145 msgid "Companies" msgstr "Unternehmen" -#: lib/enums/ModelInformation.tsx:140 -#: src/pages/build/BuildDetail.tsx:316 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:253 -#: src/pages/sales/ReturnOrderDetail.tsx:231 -#: src/pages/sales/SalesOrderDetail.tsx:224 +#: lib/enums/ModelInformation.tsx:152 +#: src/pages/build/BuildDetail.tsx:317 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:254 +#: src/pages/sales/ReturnOrderDetail.tsx:232 +#: src/pages/sales/SalesOrderDetail.tsx:225 #: src/tables/ColumnRenderers.tsx:362 #: src/tables/Filter.tsx:286 #: src/tables/TableHoverCard.tsx:101 msgid "Project Code" msgstr "Projekt-Code" -#: lib/enums/ModelInformation.tsx:141 +#: lib/enums/ModelInformation.tsx:153 #: src/pages/Index/Settings/AdminCenter/Index.tsx:172 msgid "Project Codes" msgstr "Projektnummern" -#: lib/enums/ModelInformation.tsx:147 +#: lib/enums/ModelInformation.tsx:159 #: src/components/wizards/OrderPartsWizard.tsx:338 #: src/pages/part/pricing/PurchaseHistoryPanel.tsx:33 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:550 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:555 #: src/pages/stock/StockDetail.tsx:352 #: src/tables/part/PartPurchaseOrdersTable.tsx:32 #: src/tables/stock/StockItemTable.tsx:239 @@ -312,117 +338,117 @@ msgstr "Projektnummern" msgid "Purchase Order" msgstr "Einkaufsbestellung" -#: lib/enums/ModelInformation.tsx:148 +#: lib/enums/ModelInformation.tsx:160 #: lib/enums/Roles.tsx:39 #: src/defaults/actions.tsx:104 -#: src/pages/Index/Settings/SystemSettings.tsx:283 -#: src/pages/company/CompanyDetail.tsx:203 -#: src/pages/company/SupplierPartDetail.tsx:266 -#: src/pages/part/PartDetail.tsx:875 -#: src/pages/purchasing/PurchasingIndex.tsx:60 +#: src/pages/Index/Settings/SystemSettings.tsx:289 +#: src/pages/company/CompanyDetail.tsx:204 +#: src/pages/company/SupplierPartDetail.tsx:267 +#: src/pages/part/PartDetail.tsx:864 +#: src/pages/purchasing/PurchasingIndex.tsx:66 msgid "Purchase Orders" msgstr "Bestellungen" -#: lib/enums/ModelInformation.tsx:156 +#: lib/enums/ModelInformation.tsx:169 msgid "Purchase Order Line" msgstr "Bestellposition" -#: lib/enums/ModelInformation.tsx:157 +#: lib/enums/ModelInformation.tsx:170 msgid "Purchase Order Lines" msgstr "Bestellpositionen" -#: lib/enums/ModelInformation.tsx:162 -#: src/pages/build/BuildDetail.tsx:289 +#: lib/enums/ModelInformation.tsx:175 +#: src/pages/build/BuildDetail.tsx:290 #: src/pages/part/pricing/SaleHistoryPanel.tsx:24 -#: src/pages/sales/SalesOrderDetail.tsx:614 -#: src/pages/sales/SalesOrderShipmentDetail.tsx:105 -#: src/pages/sales/SalesOrderShipmentDetail.tsx:478 +#: src/pages/sales/SalesOrderDetail.tsx:619 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:103 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:446 #: src/pages/stock/StockDetail.tsx:361 #: src/tables/part/PartSalesAllocationsTable.tsx:41 #: src/tables/sales/SalesOrderAllocationTable.tsx:110 -#: src/tables/sales/SalesOrderShipmentTable.tsx:122 +#: src/tables/sales/SalesOrderShipmentTable.tsx:143 #: src/tables/stock/StockTrackingTable.tsx:131 msgid "Sales Order" msgstr "Verkaufsauftrag" -#: lib/enums/ModelInformation.tsx:163 +#: lib/enums/ModelInformation.tsx:176 #: lib/enums/Roles.tsx:43 #: src/defaults/actions.tsx:114 -#: src/pages/Index/Settings/SystemSettings.tsx:299 -#: src/pages/company/CompanyDetail.tsx:223 -#: src/pages/part/PartDetail.tsx:887 -#: src/pages/sales/SalesIndex.tsx:84 +#: src/pages/Index/Settings/SystemSettings.tsx:305 +#: src/pages/company/CompanyDetail.tsx:224 +#: src/pages/part/PartDetail.tsx:876 +#: src/pages/sales/SalesIndex.tsx:53 msgid "Sales Orders" msgstr "Aufträge" -#: lib/enums/ModelInformation.tsx:171 -#: src/pages/sales/SalesOrderShipmentDetail.tsx:477 +#: lib/enums/ModelInformation.tsx:185 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:445 msgid "Sales Order Shipment" msgstr "Versand der Bestellung" -#: lib/enums/ModelInformation.tsx:172 +#: lib/enums/ModelInformation.tsx:186 msgid "Sales Order Shipments" msgstr "Versand der Bestellungen" -#: lib/enums/ModelInformation.tsx:179 -#: src/pages/sales/ReturnOrderDetail.tsx:549 +#: lib/enums/ModelInformation.tsx:194 +#: src/pages/sales/ReturnOrderDetail.tsx:554 #: src/tables/stock/StockTrackingTable.tsx:142 msgid "Return Order" msgstr "Rückgabe Auftrag" -#: lib/enums/ModelInformation.tsx:180 +#: lib/enums/ModelInformation.tsx:195 #: lib/enums/Roles.tsx:41 #: src/defaults/actions.tsx:125 -#: src/pages/Index/Settings/SystemSettings.tsx:316 -#: src/pages/company/CompanyDetail.tsx:230 -#: src/pages/part/PartDetail.tsx:894 -#: src/pages/sales/SalesIndex.tsx:117 +#: src/pages/Index/Settings/SystemSettings.tsx:322 +#: src/pages/company/CompanyDetail.tsx:231 +#: src/pages/part/PartDetail.tsx:883 +#: src/pages/sales/SalesIndex.tsx:99 msgid "Return Orders" msgstr "Reklamationen" -#: lib/enums/ModelInformation.tsx:188 +#: lib/enums/ModelInformation.tsx:204 msgid "Return Order Line Item" msgstr "" -#: lib/enums/ModelInformation.tsx:189 +#: lib/enums/ModelInformation.tsx:205 msgid "Return Order Line Items" msgstr "" -#: lib/enums/ModelInformation.tsx:194 +#: lib/enums/ModelInformation.tsx:210 #: src/tables/company/AddressTable.tsx:52 msgid "Address" msgstr "Adresse" -#: lib/enums/ModelInformation.tsx:195 -#: src/pages/company/CompanyDetail.tsx:264 +#: lib/enums/ModelInformation.tsx:211 +#: src/pages/company/CompanyDetail.tsx:265 msgid "Addresses" msgstr "Adressen" -#: lib/enums/ModelInformation.tsx:201 +#: lib/enums/ModelInformation.tsx:217 #: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:89 #: src/pages/core/UserDetail.tsx:135 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:229 -#: src/pages/sales/ReturnOrderDetail.tsx:207 -#: src/pages/sales/SalesOrderDetail.tsx:200 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:230 +#: src/pages/sales/ReturnOrderDetail.tsx:208 +#: src/pages/sales/SalesOrderDetail.tsx:201 msgid "Contact" msgstr "Kontakt" -#: lib/enums/ModelInformation.tsx:202 -#: src/pages/company/CompanyDetail.tsx:258 +#: lib/enums/ModelInformation.tsx:218 +#: src/pages/company/CompanyDetail.tsx:259 #: src/pages/core/CoreIndex.tsx:33 msgid "Contacts" msgstr "Kontakte" -#: lib/enums/ModelInformation.tsx:208 +#: lib/enums/ModelInformation.tsx:224 #: src/tables/ColumnRenderers.tsx:444 msgid "Owner" msgstr "Eigentümer" -#: lib/enums/ModelInformation.tsx:209 +#: lib/enums/ModelInformation.tsx:225 msgid "Owners" msgstr "Eigentümer" -#: lib/enums/ModelInformation.tsx:215 +#: lib/enums/ModelInformation.tsx:231 #: src/pages/Auth/ChangePassword.tsx:36 #: src/pages/core/UserDetail.tsx:220 #: src/tables/ColumnRenderers.tsx:395 @@ -437,7 +463,7 @@ msgstr "Eigentümer" msgid "User" msgstr "Nutzer" -#: lib/enums/ModelInformation.tsx:216 +#: lib/enums/ModelInformation.tsx:232 #: src/components/nav/NavigationDrawer.tsx:105 #: src/pages/Index/Settings/AdminCenter/UserManagementPanel.tsx:15 #: src/pages/core/CoreIndex.tsx:21 @@ -445,12 +471,12 @@ msgstr "Nutzer" msgid "Users" msgstr "Benutzer" -#: lib/enums/ModelInformation.tsx:222 +#: lib/enums/ModelInformation.tsx:238 #: src/pages/core/GroupDetail.tsx:78 msgid "Group" msgstr "Gruppe" -#: lib/enums/ModelInformation.tsx:223 +#: lib/enums/ModelInformation.tsx:239 #: src/components/nav/NavigationDrawer.tsx:111 #: src/pages/Index/Settings/AdminCenter/UserManagementPanel.tsx:23 #: src/pages/core/CoreIndex.tsx:27 @@ -460,64 +486,64 @@ msgstr "Gruppe" msgid "Groups" msgstr "Gruppen" -#: lib/enums/ModelInformation.tsx:230 +#: lib/enums/ModelInformation.tsx:246 msgid "Import Session" msgstr "Importsitzung" -#: lib/enums/ModelInformation.tsx:231 +#: lib/enums/ModelInformation.tsx:247 msgid "Import Sessions" msgstr "Importsitzungen" -#: lib/enums/ModelInformation.tsx:238 +#: lib/enums/ModelInformation.tsx:254 msgid "Label Template" msgstr "Label Vorlage" -#: lib/enums/ModelInformation.tsx:239 +#: lib/enums/ModelInformation.tsx:255 #: src/pages/Index/Settings/AdminCenter/Index.tsx:209 msgid "Label Templates" msgstr "Label Vorlagen" -#: lib/enums/ModelInformation.tsx:246 +#: lib/enums/ModelInformation.tsx:262 msgid "Report Template" msgstr "Template melden" -#: lib/enums/ModelInformation.tsx:247 +#: lib/enums/ModelInformation.tsx:263 #: src/pages/Index/Settings/AdminCenter/Index.tsx:215 msgid "Report Templates" msgstr "Templates melden" -#: lib/enums/ModelInformation.tsx:254 +#: lib/enums/ModelInformation.tsx:270 #: src/components/plugins/PluginDrawer.tsx:145 msgid "Plugin Configuration" msgstr "Plugin-Konfiguration" -#: lib/enums/ModelInformation.tsx:255 +#: lib/enums/ModelInformation.tsx:271 msgid "Plugin Configurations" msgstr "Plugin-Konfigurationen" -#: lib/enums/ModelInformation.tsx:262 +#: lib/enums/ModelInformation.tsx:278 msgid "Content Type" msgstr "Inhalts-Typ" -#: lib/enums/ModelInformation.tsx:263 +#: lib/enums/ModelInformation.tsx:279 msgid "Content Types" msgstr "Inhalts-Typen" -#: lib/enums/ModelInformation.tsx:268 +#: lib/enums/ModelInformation.tsx:284 msgid "Selection List" msgstr "Auswahlliste" -#: lib/enums/ModelInformation.tsx:269 -#: src/pages/Index/Settings/AdminCenter/PartParameterPanel.tsx:21 +#: lib/enums/ModelInformation.tsx:285 +#: src/pages/Index/Settings/AdminCenter/ParameterPanel.tsx:21 msgid "Selection Lists" msgstr "Auswahlliste" -#: lib/enums/ModelInformation.tsx:275 +#: lib/enums/ModelInformation.tsx:291 #: src/components/barcodes/BarcodeInput.tsx:114 #: src/components/dashboard/DashboardLayout.tsx:281 #: src/components/editors/NotesEditor.tsx:74 #: src/components/editors/TemplateEditor/TemplateEditor.tsx:158 -#: src/components/forms/fields/ApiFormField.tsx:273 +#: src/components/forms/fields/ApiFormField.tsx:237 #: src/components/forms/fields/TableField.tsx:45 #: src/components/importer/ImportDataSelector.tsx:192 #: src/components/importer/ImporterColumnSelector.tsx:234 @@ -528,7 +554,7 @@ msgstr "Auswahlliste" #: src/components/nav/SearchDrawer.tsx:572 #: src/components/settings/SettingList.tsx:139 #: src/components/wizards/ImportPartWizard.tsx:574 -#: src/components/wizards/ImportPartWizard.tsx:718 +#: src/components/wizards/ImportPartWizard.tsx:719 #: src/forms/BomForms.tsx:69 #: src/functions/auth.tsx:643 #: src/pages/ErrorPage.tsx:11 @@ -547,9 +573,9 @@ msgstr "Auswahlliste" msgid "Error" msgstr "Fehler" -#: lib/enums/ModelInformation.tsx:276 +#: lib/enums/ModelInformation.tsx:292 #: src/tables/machine/MachineListTable.tsx:402 -#: src/tables/machine/MachineTypeTable.tsx:299 +#: src/tables/machine/MachineTypeTable.tsx:297 msgid "Errors" msgstr "Fehler" @@ -559,10 +585,10 @@ msgstr "Admin" #: lib/enums/Roles.tsx:33 #: src/defaults/actions.tsx:135 -#: src/pages/Index/Settings/SystemSettings.tsx:264 -#: src/pages/build/BuildIndex.tsx:75 -#: src/pages/part/PartDetail.tsx:904 -#: src/pages/sales/SalesOrderDetail.tsx:421 +#: src/pages/Index/Settings/SystemSettings.tsx:270 +#: src/pages/build/BuildIndex.tsx:67 +#: src/pages/part/PartDetail.tsx:893 +#: src/pages/sales/SalesOrderDetail.tsx:422 msgid "Build Orders" msgstr "Bauaufträge" @@ -639,39 +665,39 @@ msgstr "Barcode-Daten scannen oder eingeben" msgid "Enter barcode data" msgstr "Barcode-Daten eingeben" -#: src/components/barcodes/BarcodeScanDialog.tsx:49 -#: src/components/buttons/ScanButton.tsx:15 +#: src/components/barcodes/BarcodeScanDialog.tsx:56 +#: src/components/buttons/ScanButton.tsx:27 #: src/components/nav/NavigationDrawer.tsx:122 -#: src/forms/PurchaseOrderForms.tsx:457 -#: src/forms/PurchaseOrderForms.tsx:563 +#: src/forms/PurchaseOrderForms.tsx:509 +#: src/forms/PurchaseOrderForms.tsx:615 msgid "Scan Barcode" msgstr "Barcode scannen" -#: src/components/barcodes/BarcodeScanDialog.tsx:105 +#: src/components/barcodes/BarcodeScanDialog.tsx:121 msgid "No matching item found" msgstr "Kein passender Eintrag gefunden" -#: src/components/barcodes/BarcodeScanDialog.tsx:134 +#: src/components/barcodes/BarcodeScanDialog.tsx:150 msgid "Barcode does not match the expected model type" msgstr "Der Barcode stimmt nicht mit dem erwarteten Modelltyp überein" -#: src/components/barcodes/BarcodeScanDialog.tsx:145 +#: src/components/barcodes/BarcodeScanDialog.tsx:161 #: src/components/editors/NotesEditor.tsx:84 #: src/components/editors/NotesEditor.tsx:118 -#: src/components/forms/ApiForm.tsx:465 +#: src/components/forms/ApiForm.tsx:484 #: src/components/wizards/ImportPartWizard.tsx:566 -#: src/components/wizards/ImportPartWizard.tsx:690 +#: src/components/wizards/ImportPartWizard.tsx:691 #: src/pages/Index/Settings/AdminCenter/CurrencyManagementPanel.tsx:45 #: src/tables/bom/BomTable.tsx:548 #: src/tables/settings/PendingTasksTable.tsx:68 msgid "Success" msgstr "Abgeschlossen" -#: src/components/barcodes/BarcodeScanDialog.tsx:151 +#: src/components/barcodes/BarcodeScanDialog.tsx:167 msgid "Failed to handle barcode" msgstr "Fehler beim Verarbeiten des Barcodes" -#: src/components/barcodes/BarcodeScanDialog.tsx:167 +#: src/components/barcodes/BarcodeScanDialog.tsx:183 #: src/pages/Index/Scan.tsx:129 msgid "Failed to scan barcode" msgstr "Fehler beim Scannen des Barcodes" @@ -714,10 +740,10 @@ msgstr "Fehler beim Verknüpfen des Barcodes" #: src/components/barcodes/QRCode.tsx:179 #: src/pages/part/PartDetail.tsx:521 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:222 -#: src/pages/sales/ReturnOrderDetail.tsx:188 -#: src/pages/sales/SalesOrderDetail.tsx:181 -#: src/pages/sales/SalesOrderShipmentDetail.tsx:122 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:223 +#: src/pages/sales/ReturnOrderDetail.tsx:189 +#: src/pages/sales/SalesOrderDetail.tsx:182 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:120 #: src/pages/stock/StockDetail.tsx:186 msgid "Link" msgstr "Link" @@ -728,7 +754,7 @@ msgstr "Die Verknüpfung zum zugehörigen Barcode wird entfernt" #: src/components/barcodes/QRCode.tsx:205 #: src/components/items/ActionDropdown.tsx:192 -#: src/forms/PurchaseOrderForms.tsx:554 +#: src/forms/PurchaseOrderForms.tsx:606 msgid "Unlink Barcode" msgstr "Verknüpfung des Barcodes aufheben" @@ -829,14 +855,14 @@ msgstr "Sie werden zum Anbieter weitergeleitet, um weitere Schritte durchzuführ #~ msgid "Scan QR code" #~ msgstr "Scan QR code" -#: src/components/buttons/ScanButton.tsx:19 -msgid "Open Barcode Scanner" -msgstr "Barcodescanner öffnen" - #: src/components/buttons/ScanButton.tsx:20 #~ msgid "Open QR code scanner" #~ msgstr "Open QR code scanner" +#: src/components/buttons/ScanButton.tsx:32 +msgid "Open Barcode Scanner" +msgstr "Barcodescanner öffnen" + #: src/components/buttons/SpotlightButton.tsx:12 msgid "Open spotlight" msgstr "Spotlight öffnen" @@ -1059,7 +1085,7 @@ msgid "Show the number of sales orders which are assigned to you" msgstr "" #: src/components/dashboard/DashboardWidgetLibrary.tsx:129 -#: src/pages/sales/SalesIndex.tsx:105 +#: src/pages/sales/SalesIndex.tsx:87 msgid "Pending Shipments" msgstr "" @@ -1210,12 +1236,18 @@ msgid "Remove the associated image from this item?" msgstr "Verknüpftes Bild von diesem Teil entfernen?" #: src/components/details/DetailsImage.tsx:83 -#: src/forms/StockForms.tsx:888 +#: src/forms/StockForms.tsx:895 #: src/pages/Index/Settings/AccountSettings/MFASettings.tsx:324 #: src/pages/Index/Settings/AccountSettings/MFASettings.tsx:415 #: src/pages/Index/Settings/AccountSettings/MFASettings.tsx:884 #: src/pages/Index/Settings/AccountSettings/MFASettings.tsx:903 #: src/pages/Index/Settings/AccountSettings/SecurityContent.tsx:254 +#: src/tables/build/BuildAllocatedStockTable.tsx:178 +#: src/tables/build/BuildAllocatedStockTable.tsx:258 +#: src/tables/build/BuildLineTable.tsx:111 +#: src/tables/build/BuildLineTable.tsx:665 +#: src/tables/sales/SalesOrderAllocationTable.tsx:224 +#: src/tables/sales/SalesOrderAllocationTable.tsx:247 msgid "Remove" msgstr "Entfernen" @@ -1241,12 +1273,12 @@ msgid "Upload Error" msgstr "Upload fehlgeschlagen" #: src/components/details/DetailsImage.tsx:250 -#: src/components/forms/fields/TextField.tsx:65 +#: src/components/forms/fields/AutoFillRightSection.tsx:34 msgid "Clear" msgstr "Leeren" #: src/components/details/DetailsImage.tsx:256 -#: src/components/forms/ApiForm.tsx:677 +#: src/components/forms/ApiForm.tsx:696 #: src/contexts/ThemeContext.tsx:44 #: src/pages/Index/Settings/AccountSettings/MFASettings.tsx:149 #: src/pages/Index/Settings/AccountSettings/MFASettings.tsx:568 @@ -1499,8 +1531,8 @@ msgstr "Serverfehler" msgid "A server error occurred" msgstr "Ein Serverfehler ist aufgetreten" -#: src/components/forms/ApiForm.tsx:103 -#: src/components/forms/ApiForm.tsx:594 +#: src/components/forms/ApiForm.tsx:107 +#: src/components/forms/ApiForm.tsx:613 msgid "Form Error" msgstr "Formularfehler" @@ -1508,11 +1540,11 @@ msgstr "Formularfehler" #~ msgid "Form Errors Exist" #~ msgstr "Form Errors Exist" -#: src/components/forms/ApiForm.tsx:604 +#: src/components/forms/ApiForm.tsx:623 msgid "Errors exist for one or more form fields" msgstr "Fehler für ein oder mehrere Formularfelder vorhanden" -#: src/components/forms/ApiForm.tsx:715 +#: src/components/forms/ApiForm.tsx:734 #: src/hooks/UseForm.tsx:133 #: src/tables/plugin/PluginListTable.tsx:204 msgid "Update" @@ -1698,15 +1730,14 @@ msgstr "Adresse" #: src/components/forms/InstanceOptions.tsx:124 #: src/components/plugins/PluginDrawer.tsx:68 #: src/pages/Index/Settings/AdminCenter/UnitManagementPanel.tsx:19 -#: src/pages/part/CategoryDetail.tsx:88 +#: src/pages/part/CategoryDetail.tsx:91 #: src/pages/part/PartDetail.tsx:446 #: src/pages/stock/LocationDetail.tsx:82 #: src/tables/machine/MachineTypeTable.tsx:67 -#: src/tables/machine/MachineTypeTable.tsx:151 -#: src/tables/machine/MachineTypeTable.tsx:254 -#: src/tables/machine/MachineTypeTable.tsx:357 +#: src/tables/machine/MachineTypeTable.tsx:149 +#: src/tables/machine/MachineTypeTable.tsx:252 +#: src/tables/machine/MachineTypeTable.tsx:355 #: src/tables/plugin/PluginErrorTable.tsx:33 -#: src/tables/purchasing/ManufacturerPartParameterTable.tsx:36 #: src/tables/settings/ApiTokenTable.tsx:57 #: src/tables/settings/GroupTable.tsx:95 #: src/tables/settings/GroupTable.tsx:148 @@ -1769,7 +1800,7 @@ msgstr "Host-Auswahl speichern" #~ msgstr "State: <0>worker ({0}), <1>plugins{1}" #: src/components/forms/InstanceOptions.tsx:118 -#: src/pages/Index/Settings/SystemSettings.tsx:45 +#: src/pages/Index/Settings/SystemSettings.tsx:46 msgid "Server" msgstr "Server" @@ -1793,6 +1824,8 @@ msgid "Plugins" msgstr "Plugins" #: src/components/forms/InstanceOptions.tsx:143 +#: src/tables/general/ParameterTemplateTable.tsx:153 +#: src/tables/general/ParameterTemplateTable.tsx:188 #: src/tables/part/PartTestTemplateTable.tsx:117 #: src/tables/settings/TemplateTable.tsx:251 #: src/tables/settings/TemplateTable.tsx:362 @@ -1817,10 +1850,14 @@ msgstr "Gestoppt" msgid "Running" msgstr "Läuft" -#: src/components/forms/fields/ApiFormField.tsx:233 +#: src/components/forms/fields/ApiFormField.tsx:197 msgid "Select file to upload" msgstr "" +#: src/components/forms/fields/AutoFillRightSection.tsx:47 +msgid "Accept suggested value" +msgstr "" + #: src/components/forms/fields/DateField.tsx:76 msgid "Select date" msgstr "" @@ -1853,13 +1890,13 @@ msgstr "" msgid "{0} icons" msgstr "{0} Symbole" -#: src/components/forms/fields/RelatedModelField.tsx:409 +#: src/components/forms/fields/RelatedModelField.tsx:480 #: src/components/modals/AboutInvenTreeModal.tsx:96 #: src/pages/Index/Settings/AccountSettings/SecurityContent.tsx:383 msgid "Loading" msgstr "Wird geladen" -#: src/components/forms/fields/RelatedModelField.tsx:411 +#: src/components/forms/fields/RelatedModelField.tsx:482 msgid "No results found" msgstr "Keine Ergebnisse gefunden" @@ -1875,10 +1912,6 @@ msgstr "Keine Einträge vorhanden" msgid "Add new row" msgstr "Neue Zeile hinzufügen" -#: src/components/forms/fields/TextField.tsx:82 -msgid "Accept suggested value" -msgstr "" - #: src/components/images/DetailsImage.tsx:252 #~ msgid "Select image" #~ msgstr "Select image" @@ -2036,7 +2069,7 @@ msgstr "Daten wurden erfolgreich importiert" #: src/components/importer/ImporterDrawer.tsx:109 #: src/components/modals/AboutInvenTreeModal.tsx:205 #: src/components/modals/ServerInfoModal.tsx:134 -#: src/components/wizards/ImportPartWizard.tsx:772 +#: src/components/wizards/ImportPartWizard.tsx:773 #: src/forms/BomForms.tsx:132 #: src/pages/Index/Settings/AccountSettings/MFASettings.tsx:685 msgid "Close" @@ -2199,7 +2232,7 @@ msgid "Change" msgstr "Ändern" #: src/components/items/RoleTable.tsx:150 -#: src/forms/StockForms.tsx:927 +#: src/forms/StockForms.tsx:941 #: src/tables/stock/StockItemTestResultTable.tsx:367 msgid "Add" msgstr "Hinzufügen" @@ -2222,11 +2255,11 @@ msgstr "Keine Gegengenstände" #: src/components/items/TransferList.tsx:161 #: src/components/render/Stock.tsx:102 -#: src/pages/part/PartDetail.tsx:994 +#: src/pages/part/PartDetail.tsx:1009 #: src/pages/stock/StockDetail.tsx:265 #: src/pages/stock/StockDetail.tsx:942 -#: src/tables/build/BuildAllocatedStockTable.tsx:135 -#: src/tables/build/BuildLineTable.tsx:192 +#: src/tables/build/BuildAllocatedStockTable.tsx:132 +#: src/tables/build/BuildLineTable.tsx:193 #: src/tables/part/PartTable.tsx:137 #: src/tables/stock/StockItemTable.tsx:182 #: src/tables/stock/StockItemTable.tsx:343 @@ -2373,7 +2406,7 @@ msgid "Database" msgstr "Datenbank" #: src/components/modals/ServerInfoModal.tsx:49 -#: src/components/nav/Alerts.tsx:118 +#: src/components/nav/Alerts.tsx:120 msgid "Debug Mode" msgstr "Debug Modus" @@ -2414,7 +2447,7 @@ msgid "Issues detected" msgstr "Probleme erkannt" #: src/components/modals/ServerInfoModal.tsx:102 -#: src/components/nav/Alerts.tsx:125 +#: src/components/nav/Alerts.tsx:127 msgid "Background Worker" msgstr "Hintergrund-Prozess" @@ -2436,7 +2469,7 @@ msgstr "E-Mail Einstellungen" #~ msgstr "Email settings not configured" #: src/components/modals/ServerInfoModal.tsx:120 -#: src/components/nav/Alerts.tsx:141 +#: src/components/nav/Alerts.tsx:143 msgid "Email settings not configured." msgstr "E-Mail-Einstellungen nicht konfiguriert." @@ -2444,43 +2477,47 @@ msgstr "E-Mail-Einstellungen nicht konfiguriert." msgid "Alerts" msgstr "Alarme" -#: src/components/nav/Alerts.tsx:120 +#: src/components/nav/Alerts.tsx:97 +msgid "No issues detected" +msgstr "" + +#: src/components/nav/Alerts.tsx:122 msgid "The server is running in debug mode." msgstr "Server läuft im Debug-Modus." -#: src/components/nav/Alerts.tsx:127 +#: src/components/nav/Alerts.tsx:129 msgid "The background worker process is not running." msgstr "Der Hintergrund-Worker-Prozess läuft nicht" -#: src/components/nav/Alerts.tsx:132 +#: src/components/nav/Alerts.tsx:134 msgid "Server Restart" msgstr "Serverneustart" -#: src/components/nav/Alerts.tsx:134 +#: src/components/nav/Alerts.tsx:136 msgid "The server requires a restart to apply changes." msgstr "Der Server benötigt einen Neustart, um Änderungen zu übernehmen." -#: src/components/nav/Alerts.tsx:139 +#: src/components/nav/Alerts.tsx:141 msgid "Email settings" msgstr "E-Mail-Einstellungen" -#: src/components/nav/Alerts.tsx:146 +#: src/components/nav/Alerts.tsx:148 msgid "Database Migrations" msgstr "Datenbankmigrationen" -#: src/components/nav/Alerts.tsx:148 +#: src/components/nav/Alerts.tsx:150 msgid "There are pending database migrations." msgstr "Es gibt ausstehende Datenbankmigrationen." -#: src/components/nav/Alerts.tsx:163 +#: src/components/nav/Alerts.tsx:165 msgid "Learn more about {code}" msgstr "Mehr über {code} erfahren" #: src/components/nav/Header.tsx:188 #: src/components/nav/NavigationDrawer.tsx:134 #: src/components/nav/NotificationDrawer.tsx:181 -#: src/pages/Index/Settings/SystemSettings.tsx:121 -#: src/pages/Index/Settings/UserSettings.tsx:106 +#: src/pages/Index/Settings/SystemSettings.tsx:122 +#: src/pages/Index/Settings/UserSettings.tsx:107 #: src/pages/Notifications.tsx:45 #: src/pages/Notifications.tsx:130 msgid "Notifications" @@ -2511,8 +2548,8 @@ msgstr "Einstellungen" #: src/components/nav/NavigationDrawer.tsx:140 #: src/components/nav/SettingsHeader.tsx:40 #: src/defaults/actions.tsx:92 -#: src/pages/Index/Settings/UserSettings.tsx:141 -#: src/pages/Index/Settings/UserSettings.tsx:145 +#: src/pages/Index/Settings/UserSettings.tsx:142 +#: src/pages/Index/Settings/UserSettings.tsx:146 msgid "User Settings" msgstr "Benutzer-Einstellungen" @@ -2529,8 +2566,8 @@ msgstr "Benutzer-Einstellungen" #: src/components/nav/NavigationDrawer.tsx:146 #: src/components/nav/SettingsHeader.tsx:41 #: src/defaults/actions.tsx:144 -#: src/pages/Index/Settings/SystemSettings.tsx:348 -#: src/pages/Index/Settings/SystemSettings.tsx:353 +#: src/pages/Index/Settings/SystemSettings.tsx:354 +#: src/pages/Index/Settings/SystemSettings.tsx:359 msgid "System Settings" msgstr "Einstellungen" @@ -2577,11 +2614,11 @@ msgstr "Abmelden" #: src/components/nav/NavigationDrawer.tsx:77 #: src/components/render/Part.tsx:36 -#: src/components/wizards/ImportPartWizard.tsx:807 +#: src/components/wizards/ImportPartWizard.tsx:808 #: src/defaults/links.tsx:42 #: src/forms/StockForms.tsx:794 -#: src/pages/Index/Settings/SystemSettings.tsx:224 -#: src/pages/part/PartDetail.tsx:804 +#: src/pages/Index/Settings/SystemSettings.tsx:230 +#: src/pages/part/PartDetail.tsx:793 #: src/pages/stock/LocationDetail.tsx:390 #: src/pages/stock/LocationDetail.tsx:420 #: src/pages/stock/StockDetail.tsx:642 @@ -2591,29 +2628,29 @@ msgstr "Lager" #: src/components/nav/NavigationDrawer.tsx:84 #: src/defaults/links.tsx:48 -#: src/pages/build/BuildDetail.tsx:748 -#: src/pages/build/BuildIndex.tsx:102 +#: src/pages/build/BuildDetail.tsx:753 +#: src/pages/build/BuildIndex.tsx:101 msgid "Manufacturing" msgstr "Fertigung" #: src/components/nav/NavigationDrawer.tsx:91 #: src/defaults/links.tsx:54 #: src/pages/company/ManufacturerDetail.tsx:9 -#: src/pages/company/ManufacturerPartDetail.tsx:276 +#: src/pages/company/ManufacturerPartDetail.tsx:267 #: src/pages/company/SupplierDetail.tsx:9 -#: src/pages/company/SupplierPartDetail.tsx:360 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:553 -#: src/pages/purchasing/PurchasingIndex.tsx:122 +#: src/pages/company/SupplierPartDetail.tsx:365 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:558 +#: src/pages/purchasing/PurchasingIndex.tsx:212 msgid "Purchasing" msgstr "Einkauf" #: src/components/nav/NavigationDrawer.tsx:98 #: src/defaults/links.tsx:60 #: src/pages/company/CustomerDetail.tsx:9 -#: src/pages/sales/ReturnOrderDetail.tsx:554 -#: src/pages/sales/SalesIndex.tsx:153 -#: src/pages/sales/SalesOrderDetail.tsx:619 -#: src/pages/sales/SalesOrderShipmentDetail.tsx:480 +#: src/pages/sales/ReturnOrderDetail.tsx:559 +#: src/pages/sales/SalesIndex.tsx:168 +#: src/pages/sales/SalesOrderDetail.tsx:624 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:448 msgid "Sales" msgstr "Verkäufe" @@ -2667,21 +2704,21 @@ msgid "Remove search group" msgstr "" #: src/components/nav/SearchDrawer.tsx:288 -#: src/pages/company/ManufacturerPartDetail.tsx:192 -#: src/pages/part/PartDetail.tsx:862 +#: src/pages/company/ManufacturerPartDetail.tsx:179 +#: src/pages/part/PartDetail.tsx:851 #: src/pages/part/PartSupplierDetail.tsx:15 -#: src/pages/purchasing/PurchasingIndex.tsx:81 +#: src/pages/purchasing/PurchasingIndex.tsx:100 msgid "Suppliers" msgstr "Lieferanten" #: src/components/nav/SearchDrawer.tsx:298 #: src/pages/part/PartSupplierDetail.tsx:23 -#: src/pages/purchasing/PurchasingIndex.tsx:98 +#: src/pages/purchasing/PurchasingIndex.tsx:149 msgid "Manufacturers" msgstr "Hersteller" #: src/components/nav/SearchDrawer.tsx:308 -#: src/pages/sales/SalesIndex.tsx:138 +#: src/pages/sales/SalesIndex.tsx:133 msgid "Customers" msgstr "Kunden" @@ -2772,21 +2809,21 @@ msgstr "Plugin-Informationen" #: src/components/plugins/PluginDrawer.tsx:73 #: src/forms/selectionListFields.tsx:102 -#: src/pages/build/BuildDetail.tsx:250 -#: src/pages/company/CompanyDetail.tsx:93 -#: src/pages/company/ManufacturerPartDetail.tsx:93 -#: src/pages/company/ManufacturerPartDetail.tsx:120 -#: src/pages/company/SupplierPartDetail.tsx:145 -#: src/pages/part/CategoryDetail.tsx:108 +#: src/pages/build/BuildDetail.tsx:251 +#: src/pages/company/CompanyDetail.tsx:94 +#: src/pages/company/ManufacturerPartDetail.tsx:92 +#: src/pages/company/ManufacturerPartDetail.tsx:119 +#: src/pages/company/SupplierPartDetail.tsx:146 +#: src/pages/part/CategoryDetail.tsx:111 #: src/pages/part/PartDetail.tsx:460 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:162 -#: src/pages/sales/ReturnOrderDetail.tsx:129 -#: src/pages/sales/SalesOrderDetail.tsx:119 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:163 +#: src/pages/sales/ReturnOrderDetail.tsx:130 +#: src/pages/sales/SalesOrderDetail.tsx:120 #: src/pages/stock/LocationDetail.tsx:102 #: src/tables/ColumnRenderers.tsx:278 -#: src/tables/build/BuildAllocatedStockTable.tsx:91 -#: src/tables/machine/MachineTypeTable.tsx:161 -#: src/tables/machine/MachineTypeTable.tsx:257 +#: src/tables/build/BuildAllocatedStockTable.tsx:88 +#: src/tables/machine/MachineTypeTable.tsx:159 +#: src/tables/machine/MachineTypeTable.tsx:255 #: src/tables/plugin/PluginListTable.tsx:110 msgid "Description" msgstr "Beschreibung" @@ -2814,7 +2851,7 @@ msgstr "Datum" #: src/tables/company/CompanyTable.tsx:91 #: src/tables/machine/MachineListTable.tsx:384 #: src/tables/machine/MachineListTable.tsx:799 -#: src/tables/part/ParametricPartTable.tsx:354 +#: src/tables/part/ParametricPartTable.tsx:19 #: src/tables/part/PartTable.tsx:197 #: src/tables/part/PartVariantTable.tsx:15 #: src/tables/plugin/PluginListTable.tsx:96 @@ -2836,8 +2873,8 @@ msgid "Installation Path" msgstr "Installationspfad" #: src/components/plugins/PluginDrawer.tsx:116 -#: src/tables/machine/MachineTypeTable.tsx:184 -#: src/tables/machine/MachineTypeTable.tsx:293 +#: src/tables/machine/MachineTypeTable.tsx:182 +#: src/tables/machine/MachineTypeTable.tsx:291 #: src/tables/plugin/PluginListTable.tsx:101 #: src/tables/plugin/PluginListTable.tsx:417 msgid "Builtin" @@ -2849,8 +2886,8 @@ msgstr "Paket" #: src/components/plugins/PluginDrawer.tsx:133 #: src/pages/Index/Settings/AdminCenter/PluginManagementPanel.tsx:55 -#: src/pages/Index/Settings/SystemSettings.tsx:331 -#: src/pages/Index/Settings/UserSettings.tsx:128 +#: src/pages/Index/Settings/SystemSettings.tsx:337 +#: src/pages/Index/Settings/UserSettings.tsx:129 msgid "Plugin Settings" msgstr "Plugin Einstellungen" @@ -2911,7 +2948,7 @@ msgstr "Fehler beim Laden des Plugin-Inhalts" #~ msgid "Unknown model: {model}" #~ msgstr "Unknown model: {model}" -#: src/components/render/Instance.tsx:249 +#: src/components/render/Instance.tsx:247 msgid "Unknown model: {model_name}" msgstr "Unbekanntes Modell: {model_name}" @@ -2939,10 +2976,10 @@ msgstr "Sendung" #: src/components/render/Part.tsx:28 #: src/components/render/Plugin.tsx:17 #: src/components/render/User.tsx:37 -#: src/pages/company/CompanyDetail.tsx:323 -#: src/pages/company/SupplierPartDetail.tsx:373 +#: src/pages/company/CompanyDetail.tsx:328 +#: src/pages/company/SupplierPartDetail.tsx:378 #: src/pages/core/UserDetail.tsx:211 -#: src/pages/part/PartDetail.tsx:1027 +#: src/pages/part/PartDetail.tsx:1048 #: src/tables/ColumnRenderers.tsx:410 msgid "Inactive" msgstr "Inaktiv" @@ -2962,11 +2999,11 @@ msgstr "Kein Bestand" #: src/components/render/Part.tsx:47 #: src/components/wizards/OrderPartsWizard.tsx:135 -#: src/pages/company/SupplierPartDetail.tsx:197 -#: src/pages/company/SupplierPartDetail.tsx:394 -#: src/pages/part/PartDetail.tsx:1015 +#: src/pages/company/SupplierPartDetail.tsx:198 +#: src/pages/company/SupplierPartDetail.tsx:399 +#: src/pages/part/PartDetail.tsx:1030 #: src/tables/bom/BomTable.tsx:444 -#: src/tables/build/BuildLineTable.tsx:222 +#: src/tables/build/BuildLineTable.tsx:223 #: src/tables/part/PartTable.tsx:108 msgid "On Order" msgstr "In Bestellung" @@ -2974,9 +3011,9 @@ msgstr "In Bestellung" #: src/components/render/Part.tsx:55 #: src/components/wizards/OrderPartsWizard.tsx:141 #: src/pages/part/PartDetail.tsx:587 -#: src/pages/part/PartDetail.tsx:1021 +#: src/pages/part/PartDetail.tsx:1036 #: src/pages/stock/StockDetail.tsx:925 -#: src/tables/part/PartTestResultTable.tsx:297 +#: src/tables/part/PartTestResultTable.tsx:305 #: src/tables/stock/StockItemTable.tsx:359 msgid "In Production" msgstr "In Produktion" @@ -2987,7 +3024,7 @@ msgid "Details" msgstr "Details" #: src/components/render/Part.tsx:112 -#: src/components/wizards/ImportPartWizard.tsx:806 +#: src/components/wizards/ImportPartWizard.tsx:807 #: src/pages/part/PartDetail.tsx:487 #: src/tables/ColumnRenderers.tsx:233 #: src/tables/ColumnRenderers.tsx:242 @@ -3000,16 +3037,16 @@ msgstr "Kategorie" #: src/components/render/Stock.tsx:114 #: src/components/render/Stock.tsx:132 #: src/forms/BuildForms.tsx:795 -#: src/forms/PurchaseOrderForms.tsx:595 +#: src/forms/PurchaseOrderForms.tsx:647 #: src/forms/StockForms.tsx:792 #: src/forms/StockForms.tsx:839 -#: src/forms/StockForms.tsx:885 -#: src/forms/StockForms.tsx:924 -#: src/forms/StockForms.tsx:960 -#: src/forms/StockForms.tsx:1003 -#: src/forms/StockForms.tsx:1047 -#: src/forms/StockForms.tsx:1095 -#: src/forms/StockForms.tsx:1139 +#: src/forms/StockForms.tsx:892 +#: src/forms/StockForms.tsx:938 +#: src/forms/StockForms.tsx:976 +#: src/forms/StockForms.tsx:1019 +#: src/forms/StockForms.tsx:1063 +#: src/forms/StockForms.tsx:1111 +#: src/forms/StockForms.tsx:1155 #: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:88 #: src/pages/core/UserDetail.tsx:158 #: src/pages/stock/StockDetail.tsx:298 @@ -3023,7 +3060,7 @@ msgstr "Lagerort" #: src/components/render/Stock.tsx:99 #: src/pages/stock/StockDetail.tsx:198 #: src/pages/stock/StockDetail.tsx:930 -#: src/tables/build/BuildAllocatedStockTable.tsx:121 +#: src/tables/build/BuildAllocatedStockTable.tsx:118 #: src/tables/build/BuildOutputTable.tsx:107 #: src/tables/sales/SalesOrderAllocationTable.tsx:142 msgid "Serial Number" @@ -3034,9 +3071,9 @@ msgstr "Seriennummer" #: src/forms/BuildForms.tsx:240 #: src/forms/BuildForms.tsx:634 #: src/forms/BuildForms.tsx:797 -#: src/forms/PurchaseOrderForms.tsx:801 +#: src/forms/PurchaseOrderForms.tsx:853 #: src/forms/ReturnOrderForms.tsx:243 -#: src/forms/SalesOrderForms.tsx:308 +#: src/forms/SalesOrderForms.tsx:387 #: src/forms/StockForms.tsx:841 #: src/pages/part/PartStockHistoryDetail.tsx:56 #: src/pages/part/PartStockHistoryDetail.tsx:210 @@ -3046,9 +3083,9 @@ msgstr "Seriennummer" #: src/pages/part/pricing/PriceBreakPanel.tsx:172 #: src/pages/stock/StockDetail.tsx:258 #: src/pages/stock/StockDetail.tsx:936 -#: src/tables/build/BuildLineTable.tsx:86 +#: src/tables/build/BuildLineTable.tsx:83 #: src/tables/part/PartPurchaseOrdersTable.tsx:94 -#: src/tables/part/PartTestResultTable.tsx:269 +#: src/tables/part/PartTestResultTable.tsx:277 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:175 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:206 #: src/tables/purchasing/SupplierPriceBreakTable.tsx:69 @@ -3063,14 +3100,14 @@ msgstr "Anzahl" #: src/forms/BuildForms.tsx:474 #: src/forms/StockForms.tsx:793 #: src/forms/StockForms.tsx:840 -#: src/forms/StockForms.tsx:886 -#: src/forms/StockForms.tsx:925 -#: src/forms/StockForms.tsx:961 -#: src/forms/StockForms.tsx:1004 -#: src/forms/StockForms.tsx:1048 -#: src/forms/StockForms.tsx:1096 -#: src/forms/StockForms.tsx:1140 -#: src/tables/build/BuildLineTable.tsx:96 +#: src/forms/StockForms.tsx:893 +#: src/forms/StockForms.tsx:939 +#: src/forms/StockForms.tsx:977 +#: src/forms/StockForms.tsx:1020 +#: src/forms/StockForms.tsx:1064 +#: src/forms/StockForms.tsx:1112 +#: src/forms/StockForms.tsx:1156 +#: src/tables/build/BuildLineTable.tsx:93 msgid "Batch" msgstr "Losnummer" @@ -3306,10 +3343,6 @@ msgstr "Keine Einstellungen angegeben" #~ msgid "Part category updated" #~ msgstr "Part category updated" -#: src/components/tables/part/PartParameterTable.tsx:41 -#~ msgid "Parameter" -#~ msgstr "Parameter" - #: src/components/tables/part/PartParameterTable.tsx:114 #~ msgid "Part parameter updated" #~ msgstr "Part parameter updated" @@ -3571,15 +3604,16 @@ msgid "Already Imported" msgstr "" #: src/components/wizards/ImportPartWizard.tsx:205 -#: src/pages/company/CompanyDetail.tsx:136 +#: src/pages/company/CompanyDetail.tsx:137 #: src/pages/company/SupplierDetail.tsx:8 -#: src/pages/company/SupplierPartDetail.tsx:130 -#: src/pages/company/SupplierPartDetail.tsx:235 -#: src/pages/company/SupplierPartDetail.tsx:364 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:156 +#: src/pages/company/SupplierPartDetail.tsx:131 +#: src/pages/company/SupplierPartDetail.tsx:236 +#: src/pages/company/SupplierPartDetail.tsx:369 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:157 #: src/tables/Filter.tsx:360 #: src/tables/company/CompanyTable.tsx:96 #: src/tables/part/PartPurchaseOrdersTable.tsx:43 +#: src/tables/purchasing/PurchaseOrderParametricTable.tsx:34 #: src/tables/purchasing/PurchaseOrderTable.tsx:109 #: src/tables/purchasing/SupplierPriceBreakTable.tsx:40 msgid "Supplier" @@ -3613,7 +3647,7 @@ msgstr "" #: src/components/wizards/ImportPartWizard.tsx:326 msgid "Import Now" -msgstr "" +msgstr "Jetzt importieren" #: src/components/wizards/ImportPartWizard.tsx:372 msgid "Select and edit the parameters you want to add to this part." @@ -3648,7 +3682,7 @@ msgid "Next" msgstr "" #: src/components/wizards/ImportPartWizard.tsx:540 -#: src/pages/part/PartDetail.tsx:1046 +#: src/pages/part/PartDetail.tsx:1067 #: src/tables/part/PartTable.tsx:408 msgid "Edit Part" msgstr "Teil bearbeiten" @@ -3669,28 +3703,28 @@ msgstr "" msgid "Import" msgstr "" -#: src/components/wizards/ImportPartWizard.tsx:691 +#: src/components/wizards/ImportPartWizard.tsx:692 msgid "Parameters created successfully!" -msgstr "" +msgstr "Parameter erfolgreich angelegt!" -#: src/components/wizards/ImportPartWizard.tsx:719 +#: src/components/wizards/ImportPartWizard.tsx:720 msgid "Failed to create parameters, please fix the errors and try again" msgstr "" #. placeholder {0}: supplierPart?.supplier -#: src/components/wizards/ImportPartWizard.tsx:739 +#: src/components/wizards/ImportPartWizard.tsx:740 msgid "Part imported successfully from supplier {0}." msgstr "" -#: src/components/wizards/ImportPartWizard.tsx:752 +#: src/components/wizards/ImportPartWizard.tsx:753 msgid "Open Part" msgstr "" -#: src/components/wizards/ImportPartWizard.tsx:759 +#: src/components/wizards/ImportPartWizard.tsx:760 msgid "Open Supplier Part" msgstr "" -#: src/components/wizards/ImportPartWizard.tsx:766 +#: src/components/wizards/ImportPartWizard.tsx:767 msgid "Open Manufacturer Part" msgstr "" @@ -3699,25 +3733,19 @@ msgstr "" #~ msgid "Import Part" #~ msgstr "Import Part" -#: src/components/wizards/ImportPartWizard.tsx:802 +#: src/components/wizards/ImportPartWizard.tsx:803 msgid "Import Supplier Part" msgstr "" -#: src/components/wizards/ImportPartWizard.tsx:804 +#: src/components/wizards/ImportPartWizard.tsx:805 msgid "Search Supplier Part" msgstr "" -#: src/components/wizards/ImportPartWizard.tsx:806 -#: src/pages/company/ManufacturerPartDetail.tsx:166 -#: src/pages/part/PartDetail.tsx:793 -msgid "Parameters" -msgstr "Parameter" - -#: src/components/wizards/ImportPartWizard.tsx:806 +#: src/components/wizards/ImportPartWizard.tsx:807 msgid "Confirm import" msgstr "" -#: src/components/wizards/ImportPartWizard.tsx:808 +#: src/components/wizards/ImportPartWizard.tsx:809 msgid "Done" msgstr "" @@ -3738,24 +3766,24 @@ msgid "Sales Requirements" msgstr "" #: src/components/wizards/OrderPartsWizard.tsx:129 -#: src/forms/StockForms.tsx:887 -#: src/forms/StockForms.tsx:926 -#: src/forms/StockForms.tsx:962 -#: src/forms/StockForms.tsx:1005 -#: src/forms/StockForms.tsx:1049 -#: src/forms/StockForms.tsx:1097 -#: src/forms/StockForms.tsx:1141 -#: src/pages/company/SupplierPartDetail.tsx:190 -#: src/pages/company/SupplierPartDetail.tsx:378 +#: src/forms/StockForms.tsx:894 +#: src/forms/StockForms.tsx:940 +#: src/forms/StockForms.tsx:978 +#: src/forms/StockForms.tsx:1021 +#: src/forms/StockForms.tsx:1065 +#: src/forms/StockForms.tsx:1113 +#: src/forms/StockForms.tsx:1157 +#: src/pages/company/SupplierPartDetail.tsx:191 +#: src/pages/company/SupplierPartDetail.tsx:383 #: src/pages/part/PartDetail.tsx:534 -#: src/pages/part/PartDetail.tsx:984 +#: src/pages/part/PartDetail.tsx:999 #: src/tables/Filter.tsx:92 #: src/tables/purchasing/SupplierPartTable.tsx:230 msgid "In Stock" msgstr "Auf Lager" #: src/components/wizards/OrderPartsWizard.tsx:146 -#: src/tables/build/BuildLineTable.tsx:404 +#: src/tables/build/BuildLineTable.tsx:405 msgid "Required Quantity" msgstr "Benötigte Menge" @@ -3847,7 +3875,7 @@ msgid "Please correct the errors in the selected parts" msgstr "Bitte korrigieren Sie die Fehler in den ausgewählten Teilen" #: src/components/wizards/OrderPartsWizard.tsx:587 -#: src/tables/build/BuildLineTable.tsx:815 +#: src/tables/build/BuildLineTable.tsx:822 #: src/tables/part/PartTable.tsx:522 #: src/tables/sales/SalesOrderLineItemTable.tsx:370 msgid "Order Parts" @@ -4349,9 +4377,9 @@ msgstr "Ersatz-Teil hinzugefügt" #: src/forms/BuildForms.tsx:333 #: src/forms/BuildForms.tsx:408 #: src/forms/BuildForms.tsx:685 -#: src/tables/build/BuildAllocatedStockTable.tsx:150 +#: src/tables/build/BuildAllocatedStockTable.tsx:147 #: src/tables/build/BuildOutputTable.tsx:582 -#: src/tables/part/PartTestResultTable.tsx:272 +#: src/tables/part/PartTestResultTable.tsx:280 msgid "Build Output" msgstr "Bauprodukt" @@ -4362,22 +4390,22 @@ msgstr "" #: src/forms/BuildForms.tsx:336 #: src/forms/BuildForms.tsx:411 #: src/forms/BuildForms.tsx:475 -#: src/forms/PurchaseOrderForms.tsx:717 +#: src/forms/PurchaseOrderForms.tsx:769 #: src/forms/ReturnOrderForms.tsx:197 #: src/forms/ReturnOrderForms.tsx:244 #: src/forms/StockForms.tsx:712 #: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:87 -#: src/pages/build/BuildDetail.tsx:222 +#: src/pages/build/BuildDetail.tsx:223 #: src/pages/core/UserDetail.tsx:151 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:168 -#: src/pages/sales/ReturnOrderDetail.tsx:135 -#: src/pages/sales/SalesOrderDetail.tsx:125 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:169 +#: src/pages/sales/ReturnOrderDetail.tsx:136 +#: src/pages/sales/SalesOrderDetail.tsx:126 #: src/pages/stock/StockDetail.tsx:170 #: src/tables/Filter.tsx:274 #: src/tables/build/BuildOutputTable.tsx:404 #: src/tables/machine/MachineListTable.tsx:387 #: src/tables/part/PartPurchaseOrdersTable.tsx:38 -#: src/tables/part/PartTestResultTable.tsx:309 +#: src/tables/part/PartTestResultTable.tsx:317 #: src/tables/sales/ReturnOrderLineItemTable.tsx:138 #: src/tables/sales/ReturnOrderLineItemTable.tsx:176 #: src/tables/settings/CustomStateTable.tsx:79 @@ -4443,18 +4471,19 @@ msgid "Build outputs have been cancelled" msgstr "Bauprodukte wurden abgebrochen" #: src/forms/BuildForms.tsx:631 -#: src/pages/build/BuildDetail.tsx:207 -#: src/pages/company/ManufacturerPartDetail.tsx:85 -#: src/pages/company/SupplierPartDetail.tsx:96 +#: src/pages/build/BuildDetail.tsx:208 +#: src/pages/company/ManufacturerPartDetail.tsx:84 +#: src/pages/company/SupplierPartDetail.tsx:97 #: src/pages/part/PartDetail.tsx:453 #: src/pages/stock/StockDetail.tsx:153 #: src/tables/bom/BomTable.tsx:134 #: src/tables/bom/UsedInTable.tsx:40 -#: src/tables/build/BuildAllocatedStockTable.tsx:108 -#: src/tables/build/BuildLineTable.tsx:336 +#: src/tables/build/BuildAllocatedStockTable.tsx:105 +#: src/tables/build/BuildLineTable.tsx:337 #: src/tables/build/BuildOrderTable.tsx:79 #: src/tables/part/PartSalesAllocationsTable.tsx:61 #: src/tables/part/RelatedPartTable.tsx:73 +#: src/tables/purchasing/ManufacturerPartParametricTable.tsx:21 #: src/tables/purchasing/ManufacturerPartTable.tsx:69 #: src/tables/purchasing/SupplierPartTable.tsx:70 #: src/tables/sales/SalesOrderAllocationTable.tsx:135 @@ -4466,47 +4495,47 @@ msgstr "IPN" #: src/forms/BuildForms.tsx:632 #: src/forms/BuildForms.tsx:796 #: src/forms/BuildForms.tsx:897 -#: src/forms/SalesOrderForms.tsx:306 -#: src/tables/build/BuildAllocatedStockTable.tsx:139 -#: src/tables/build/BuildLineTable.tsx:182 +#: src/forms/SalesOrderForms.tsx:385 +#: src/tables/build/BuildAllocatedStockTable.tsx:136 +#: src/tables/build/BuildLineTable.tsx:183 #: src/tables/sales/SalesOrderLineItemTable.tsx:342 #: src/tables/stock/StockItemTable.tsx:338 msgid "Allocated" msgstr "Zugewiesen" #: src/forms/BuildForms.tsx:667 -#: src/forms/SalesOrderForms.tsx:295 -#: src/pages/build/BuildDetail.tsx:108 -#: src/pages/build/BuildDetail.tsx:326 +#: src/forms/SalesOrderForms.tsx:374 +#: src/pages/build/BuildDetail.tsx:109 +#: src/pages/build/BuildDetail.tsx:327 msgid "Source Location" msgstr "Quell Lagerort" #: src/forms/BuildForms.tsx:668 -#: src/forms/SalesOrderForms.tsx:296 +#: src/forms/SalesOrderForms.tsx:375 msgid "Select the source location for the stock allocation" msgstr "" #: src/forms/BuildForms.tsx:700 -#: src/forms/SalesOrderForms.tsx:336 -#: src/tables/build/BuildLineTable.tsx:574 -#: src/tables/build/BuildLineTable.tsx:731 -#: src/tables/build/BuildLineTable.tsx:830 +#: src/forms/SalesOrderForms.tsx:415 +#: src/tables/build/BuildLineTable.tsx:575 +#: src/tables/build/BuildLineTable.tsx:738 +#: src/tables/build/BuildLineTable.tsx:837 #: src/tables/sales/SalesOrderLineItemTable.tsx:380 #: src/tables/sales/SalesOrderLineItemTable.tsx:406 msgid "Allocate Stock" msgstr "Bestand zuweisen" #: src/forms/BuildForms.tsx:703 -#: src/forms/SalesOrderForms.tsx:341 +#: src/forms/SalesOrderForms.tsx:420 msgid "Stock items allocated" msgstr "" #: src/forms/BuildForms.tsx:816 #: src/forms/BuildForms.tsx:917 -#: src/tables/build/BuildAllocatedStockTable.tsx:240 -#: src/tables/build/BuildAllocatedStockTable.tsx:272 -#: src/tables/build/BuildLineTable.tsx:741 -#: src/tables/build/BuildLineTable.tsx:864 +#: src/tables/build/BuildAllocatedStockTable.tsx:243 +#: src/tables/build/BuildAllocatedStockTable.tsx:279 +#: src/tables/build/BuildLineTable.tsx:748 +#: src/tables/build/BuildLineTable.tsx:871 msgid "Consume Stock" msgstr "Lagerbestand verbrauchen" @@ -4521,21 +4550,21 @@ msgstr "" #~ msgstr "Stock items consumed" #: src/forms/BuildForms.tsx:853 -#: src/tables/build/BuildLineTable.tsx:514 +#: src/tables/build/BuildLineTable.tsx:515 #: src/tables/part/PartBuildAllocationsTable.tsx:101 msgid "Fully consumed" msgstr "komplett verbraucht" #: src/forms/BuildForms.tsx:898 -#: src/tables/build/BuildLineTable.tsx:187 +#: src/tables/build/BuildLineTable.tsx:188 #: src/tables/stock/StockItemTable.tsx:367 msgid "Consumed" msgstr "verbraucht" -#: src/forms/CommonForms.tsx:88 -#: src/forms/PurchaseOrderForms.tsx:125 +#: src/forms/CommonForms.tsx:92 +#: src/forms/PurchaseOrderForms.tsx:176 #: src/forms/ReturnOrderForms.tsx:138 -#: src/forms/SalesOrderForms.tsx:164 +#: src/forms/SalesOrderForms.tsx:185 msgid "Select project code for this line item" msgstr "" @@ -4543,16 +4572,16 @@ msgstr "" #~ msgid "Company updated" #~ msgstr "Company updated" -#: src/forms/PartForms.tsx:85 -#: src/forms/PartForms.tsx:207 -#: src/pages/part/CategoryDetail.tsx:124 +#: src/forms/PartForms.tsx:99 +#: src/forms/PartForms.tsx:228 +#: src/pages/part/CategoryDetail.tsx:127 #: src/pages/part/PartDetail.tsx:668 #: src/tables/part/PartCategoryTable.tsx:94 #: src/tables/part/PartTable.tsx:325 msgid "Subscribed" msgstr "abonniert" -#: src/forms/PartForms.tsx:86 +#: src/forms/PartForms.tsx:100 msgid "Subscribe to notifications for this part" msgstr "Benachrichtigungen für dieses Teil abonnieren" @@ -4564,156 +4593,156 @@ msgstr "Benachrichtigungen für dieses Teil abonnieren" #~ msgid "Part updated" #~ msgstr "Part updated" -#: src/forms/PartForms.tsx:193 +#: src/forms/PartForms.tsx:214 msgid "Parent part category" msgstr "Übergeordnete Teilkategorie" -#: src/forms/PartForms.tsx:208 +#: src/forms/PartForms.tsx:229 msgid "Subscribe to notifications for this category" msgstr "Benachrichtigungen für diese Kategorie abonnieren" -#: src/forms/PurchaseOrderForms.tsx:388 -msgid "Assign Batch Code and Serial Numbers" -msgstr "Losnummer- und Seriennummer zuweisen" - -#: src/forms/PurchaseOrderForms.tsx:390 -msgid "Assign Batch Code" -msgstr "Losnummer zuweisen" - -#: src/forms/PurchaseOrderForms.tsx:410 -msgid "Choose Location" -msgstr "Lagerort wählen" - -#: src/forms/PurchaseOrderForms.tsx:418 -msgid "Item Destination selected" -msgstr "Teile-Zielort ausgewählt" - #: src/forms/PurchaseOrderForms.tsx:421 #~ msgid "Assign Batch Code{0}" #~ msgstr "Assign Batch Code{0}" -#: src/forms/PurchaseOrderForms.tsx:428 -msgid "Part category default location selected" -msgstr "Standard-Lagerort der Teile-Kategorie ausgewählt" +#: src/forms/PurchaseOrderForms.tsx:440 +msgid "Assign Batch Code and Serial Numbers" +msgstr "Losnummer- und Seriennummer zuweisen" -#: src/forms/PurchaseOrderForms.tsx:438 -msgid "Received stock location selected" -msgstr "Lagerort zuvor empfangener Artikel ausgewählt" +#: src/forms/PurchaseOrderForms.tsx:442 +msgid "Assign Batch Code" +msgstr "Losnummer zuweisen" #: src/forms/PurchaseOrderForms.tsx:444 #: src/forms/StockForms.tsx:428 #~ msgid "Remove item from list" #~ msgstr "Remove item from list" -#: src/forms/PurchaseOrderForms.tsx:446 +#: src/forms/PurchaseOrderForms.tsx:462 +msgid "Choose Location" +msgstr "Lagerort wählen" + +#: src/forms/PurchaseOrderForms.tsx:470 +msgid "Item Destination selected" +msgstr "Teile-Zielort ausgewählt" + +#: src/forms/PurchaseOrderForms.tsx:480 +msgid "Part category default location selected" +msgstr "Standard-Lagerort der Teile-Kategorie ausgewählt" + +#: src/forms/PurchaseOrderForms.tsx:490 +msgid "Received stock location selected" +msgstr "Lagerort zuvor empfangener Artikel ausgewählt" + +#: src/forms/PurchaseOrderForms.tsx:498 msgid "Default location selected" msgstr "Standard-Lagerort ausgewählt" -#: src/forms/PurchaseOrderForms.tsx:507 +#: src/forms/PurchaseOrderForms.tsx:559 msgid "Set Location" msgstr "Lagerort festlegen" -#: src/forms/PurchaseOrderForms.tsx:524 -msgid "Set Expiry Date" -msgstr "Ablaufdatum festlegen" - -#: src/forms/PurchaseOrderForms.tsx:532 -#: src/forms/StockForms.tsx:693 -msgid "Adjust Packaging" -msgstr "Verpackung anpassen" - -#: src/forms/PurchaseOrderForms.tsx:540 -#: src/forms/StockForms.tsx:684 -#: src/hooks/UseStockAdjustActions.tsx:148 -msgid "Change Status" -msgstr "Status ändern" - -#: src/forms/PurchaseOrderForms.tsx:546 -msgid "Add Note" -msgstr "Notiz hinzufügen" - #: src/forms/PurchaseOrderForms.tsx:566 #~ msgid "Serial numbers" #~ msgstr "Serial numbers" +#: src/forms/PurchaseOrderForms.tsx:576 +msgid "Set Expiry Date" +msgstr "Ablaufdatum festlegen" + #: src/forms/PurchaseOrderForms.tsx:582 #~ msgid "Store at line item destination" #~ msgstr "Store at line item destination" -#: src/forms/PurchaseOrderForms.tsx:610 -msgid "Store at default location" -msgstr "Am Standard-Lagerort einbuchen" +#: src/forms/PurchaseOrderForms.tsx:584 +#: src/forms/StockForms.tsx:693 +msgid "Adjust Packaging" +msgstr "Verpackung anpassen" -#: src/forms/PurchaseOrderForms.tsx:625 -msgid "Store at line item destination " -msgstr "" +#: src/forms/PurchaseOrderForms.tsx:592 +#: src/forms/StockForms.tsx:684 +#: src/hooks/UseStockAdjustActions.tsx:148 +msgid "Change Status" +msgstr "Status ändern" -#: src/forms/PurchaseOrderForms.tsx:637 -msgid "Store with already received stock" -msgstr "Bei bereits vorhandenen Lagerbestand einbuchen" +#: src/forms/PurchaseOrderForms.tsx:598 +msgid "Add Note" +msgstr "Notiz hinzufügen" #: src/forms/PurchaseOrderForms.tsx:658 #~ msgid "Receive line items" #~ msgstr "Receive line items" -#: src/forms/PurchaseOrderForms.tsx:661 -#: src/pages/build/BuildDetail.tsx:340 +#: src/forms/PurchaseOrderForms.tsx:662 +msgid "Store at default location" +msgstr "Am Standard-Lagerort einbuchen" + +#: src/forms/PurchaseOrderForms.tsx:677 +msgid "Store at line item destination " +msgstr "" + +#: src/forms/PurchaseOrderForms.tsx:689 +msgid "Store with already received stock" +msgstr "Bei bereits vorhandenen Lagerbestand einbuchen" + +#: src/forms/PurchaseOrderForms.tsx:713 +#: src/pages/build/BuildDetail.tsx:341 #: src/pages/stock/StockDetail.tsx:280 #: src/pages/stock/StockDetail.tsx:952 #: src/tables/Filter.tsx:83 -#: src/tables/build/BuildAllocatedStockTable.tsx:128 +#: src/tables/build/BuildAllocatedStockTable.tsx:125 #: src/tables/build/BuildOutputTable.tsx:112 -#: src/tables/part/PartTestResultTable.tsx:260 -#: src/tables/part/PartTestResultTable.tsx:281 +#: src/tables/part/PartTestResultTable.tsx:268 +#: src/tables/part/PartTestResultTable.tsx:289 #: src/tables/sales/SalesOrderAllocationTable.tsx:149 msgid "Batch Code" msgstr "Losnummer" -#: src/forms/PurchaseOrderForms.tsx:662 +#: src/forms/PurchaseOrderForms.tsx:714 msgid "Enter batch code for received items" msgstr "Losnummern eingeben für empfangene Gegenstände" -#: src/forms/PurchaseOrderForms.tsx:675 +#: src/forms/PurchaseOrderForms.tsx:727 #: src/forms/StockForms.tsx:218 msgid "Serial Numbers" msgstr "Seriennummern" -#: src/forms/PurchaseOrderForms.tsx:676 +#: src/forms/PurchaseOrderForms.tsx:728 msgid "Enter serial numbers for received items" msgstr "Seriennummern eingeben für empfangene Gegenstände" -#: src/forms/PurchaseOrderForms.tsx:690 +#: src/forms/PurchaseOrderForms.tsx:742 #: src/pages/stock/StockDetail.tsx:382 #: src/tables/stock/StockItemTable.tsx:294 msgid "Expiry Date" msgstr "Ablaufdatum" -#: src/forms/PurchaseOrderForms.tsx:691 +#: src/forms/PurchaseOrderForms.tsx:743 msgid "Enter an expiry date for received items" msgstr "Ablaufdatum eingeben für empfangene Gegenstände" -#: src/forms/PurchaseOrderForms.tsx:703 +#: src/forms/PurchaseOrderForms.tsx:755 #: src/forms/StockForms.tsx:728 -#: src/pages/company/SupplierPartDetail.tsx:172 -#: src/pages/company/SupplierPartDetail.tsx:236 +#: src/pages/company/SupplierPartDetail.tsx:173 +#: src/pages/company/SupplierPartDetail.tsx:237 #: src/pages/stock/StockDetail.tsx:419 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:227 msgid "Packaging" msgstr "Verpackung" -#: src/forms/PurchaseOrderForms.tsx:727 -#: src/pages/company/SupplierPartDetail.tsx:120 +#: src/forms/PurchaseOrderForms.tsx:779 +#: src/pages/company/SupplierPartDetail.tsx:121 #: src/tables/ColumnRenderers.tsx:332 msgid "Note" msgstr "Notiz" -#: src/forms/PurchaseOrderForms.tsx:799 -#: src/pages/company/SupplierPartDetail.tsx:138 +#: src/forms/PurchaseOrderForms.tsx:851 +#: src/pages/company/SupplierPartDetail.tsx:139 #: src/tables/purchasing/SupplierPriceBreakTable.tsx:49 msgid "SKU" msgstr "SKU" -#: src/forms/PurchaseOrderForms.tsx:800 +#: src/forms/PurchaseOrderForms.tsx:852 #: src/tables/part/PartPurchaseOrdersTable.tsx:127 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:213 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:283 @@ -4721,11 +4750,11 @@ msgstr "SKU" msgid "Received" msgstr "Erhalten" -#: src/forms/PurchaseOrderForms.tsx:817 +#: src/forms/PurchaseOrderForms.tsx:869 msgid "Receive Line Items" msgstr "Positionen empfangen" -#: src/forms/PurchaseOrderForms.tsx:823 +#: src/forms/PurchaseOrderForms.tsx:875 msgid "Items received" msgstr "Empfangene Gegenstände" @@ -4737,7 +4766,35 @@ msgstr "Teile empfangen" msgid "Item received into stock" msgstr "" -#: src/forms/SalesOrderForms.tsx:401 +#: src/forms/SalesOrderForms.tsx:208 +#: src/forms/SalesOrderForms.tsx:210 +#: src/tables/sales/SalesOrderShipmentTable.tsx:215 +msgid "Check Shipment" +msgstr "" + +#: src/forms/SalesOrderForms.tsx:211 +msgid "Marking the shipment as checked indicates that you have verified that all items included in this shipment are correct" +msgstr "" + +#: src/forms/SalesOrderForms.tsx:221 +msgid "Shipment marked as checked" +msgstr "" + +#: src/forms/SalesOrderForms.tsx:236 +#: src/forms/SalesOrderForms.tsx:238 +#: src/tables/sales/SalesOrderShipmentTable.tsx:228 +msgid "Uncheck Shipment" +msgstr "" + +#: src/forms/SalesOrderForms.tsx:239 +msgid "Marking the shipment as unchecked indicates that the shipment requires further verification" +msgstr "" + +#: src/forms/SalesOrderForms.tsx:249 +msgid "Shipment marked as unchecked" +msgstr "" + +#: src/forms/SalesOrderForms.tsx:480 msgid "Leave blank to use the order address" msgstr "" @@ -4792,150 +4849,150 @@ msgstr "Verschieben" msgid "Return" msgstr "Zurück" -#: src/forms/StockForms.tsx:963 +#: src/forms/StockForms.tsx:979 #: src/pages/Index/Scan.tsx:182 msgid "Count" msgstr "Anzahl" -#: src/forms/StockForms.tsx:1246 +#: src/forms/StockForms.tsx:1262 #: src/hooks/UseStockAdjustActions.tsx:108 msgid "Add Stock" msgstr "Bestand hinzufügen" -#: src/forms/StockForms.tsx:1247 +#: src/forms/StockForms.tsx:1263 msgid "Stock added" msgstr "Bestand hinzugefügt" -#: src/forms/StockForms.tsx:1250 +#: src/forms/StockForms.tsx:1266 msgid "Increase the quantity of the selected stock items by a given amount." msgstr "Menge der ausgewählten Bestandteile um einen bestimmten Betrag erhöhen" -#: src/forms/StockForms.tsx:1261 +#: src/forms/StockForms.tsx:1277 #: src/hooks/UseStockAdjustActions.tsx:118 msgid "Remove Stock" msgstr "Bestand entfernen" -#: src/forms/StockForms.tsx:1262 +#: src/forms/StockForms.tsx:1278 msgid "Stock removed" msgstr "Bestand entfernt" -#: src/forms/StockForms.tsx:1265 +#: src/forms/StockForms.tsx:1281 msgid "Decrease the quantity of the selected stock items by a given amount." msgstr "Menge der ausgewählten Bestandteile um einen bestimmten Betrag reduzieren" -#: src/forms/StockForms.tsx:1276 +#: src/forms/StockForms.tsx:1292 #: src/hooks/UseStockAdjustActions.tsx:128 msgid "Transfer Stock" msgstr "Bestand verschieben" -#: src/forms/StockForms.tsx:1277 +#: src/forms/StockForms.tsx:1293 msgid "Stock transferred" msgstr "Bestand übertragen" -#: src/forms/StockForms.tsx:1280 +#: src/forms/StockForms.tsx:1296 msgid "Transfer selected items to the specified location." msgstr "Ausgewählte Elemente an den angegebenen Ort übertragen." -#: src/forms/StockForms.tsx:1291 +#: src/forms/StockForms.tsx:1307 #: src/hooks/UseStockAdjustActions.tsx:168 msgid "Return Stock" msgstr "Lagerbestand zurückgeben" -#: src/forms/StockForms.tsx:1292 +#: src/forms/StockForms.tsx:1308 msgid "Stock returned" msgstr "Lagerbestand zurückgegeben" -#: src/forms/StockForms.tsx:1295 +#: src/forms/StockForms.tsx:1311 msgid "Return selected items into stock, to the specified location." msgstr "" -#: src/forms/StockForms.tsx:1306 +#: src/forms/StockForms.tsx:1322 #: src/hooks/UseStockAdjustActions.tsx:98 msgid "Count Stock" msgstr "Bestand zählen" -#: src/forms/StockForms.tsx:1307 +#: src/forms/StockForms.tsx:1323 msgid "Stock counted" msgstr "Lagerbestand gezählt" -#: src/forms/StockForms.tsx:1310 +#: src/forms/StockForms.tsx:1326 msgid "Count the selected stock items, and adjust the quantity accordingly." msgstr "" -#: src/forms/StockForms.tsx:1321 +#: src/forms/StockForms.tsx:1337 msgid "Change Stock Status" msgstr "Bestandsstatus ändern" -#: src/forms/StockForms.tsx:1322 +#: src/forms/StockForms.tsx:1338 msgid "Stock status changed" msgstr "Bestandstatus geändert" -#: src/forms/StockForms.tsx:1325 +#: src/forms/StockForms.tsx:1341 msgid "Change the status of the selected stock items." msgstr "Status der ausgewählten Lagerartikel ändern." -#: src/forms/StockForms.tsx:1336 +#: src/forms/StockForms.tsx:1352 #: src/hooks/UseStockAdjustActions.tsx:138 msgid "Merge Stock" msgstr "Bestand zusammenführen" -#: src/forms/StockForms.tsx:1337 +#: src/forms/StockForms.tsx:1353 msgid "Stock merged" msgstr "Lagerbestand zusammengeführt" -#: src/forms/StockForms.tsx:1339 +#: src/forms/StockForms.tsx:1355 msgid "Merge Stock Items" msgstr "Lagerbestand zusammenführen" -#: src/forms/StockForms.tsx:1341 +#: src/forms/StockForms.tsx:1357 msgid "Merge operation cannot be reversed" msgstr "Das Zusammenführen kann nicht rückgängig gemacht werden" -#: src/forms/StockForms.tsx:1342 +#: src/forms/StockForms.tsx:1358 msgid "Tracking information may be lost when merging items" msgstr "Tracking-Informationen können beim Zusammenführen von Elementen verloren gehen" -#: src/forms/StockForms.tsx:1343 +#: src/forms/StockForms.tsx:1359 msgid "Supplier information may be lost when merging items" msgstr "Lieferanteninformationen können beim Zusammenführen verloren gehen" -#: src/forms/StockForms.tsx:1361 +#: src/forms/StockForms.tsx:1377 msgid "Assign Stock to Customer" msgstr "Lagerbestand einem Kunden zuweisen" -#: src/forms/StockForms.tsx:1362 +#: src/forms/StockForms.tsx:1378 msgid "Stock assigned to customer" msgstr "Lagerbestand wurde Kunden zugewiesen" -#: src/forms/StockForms.tsx:1372 +#: src/forms/StockForms.tsx:1388 msgid "Delete Stock Items" msgstr "Bestand löschen" -#: src/forms/StockForms.tsx:1373 +#: src/forms/StockForms.tsx:1389 msgid "Stock deleted" msgstr "Lagerbestand gelöscht" -#: src/forms/StockForms.tsx:1376 +#: src/forms/StockForms.tsx:1392 msgid "This operation will permanently delete the selected stock items." msgstr "Dieser Vorgang löscht die ausgewählten Lagerbestandteile unwiderruflich." -#: src/forms/StockForms.tsx:1385 +#: src/forms/StockForms.tsx:1401 msgid "Parent stock location" msgstr "Übergeordneter Lagerort" -#: src/forms/StockForms.tsx:1512 +#: src/forms/StockForms.tsx:1528 msgid "Find Serial Number" msgstr "Seriennummer finden" -#: src/forms/StockForms.tsx:1523 +#: src/forms/StockForms.tsx:1539 msgid "No matching items" msgstr "Keine passenden Elemente" -#: src/forms/StockForms.tsx:1529 +#: src/forms/StockForms.tsx:1545 msgid "Multiple matching items" msgstr "Mehrere passende Elemente" -#: src/forms/StockForms.tsx:1538 +#: src/forms/StockForms.tsx:1554 msgid "Invalid response from server" msgstr "Ungültige Antwort vom Server" @@ -4953,7 +5010,6 @@ msgstr "Liste der wählbaren Einträge" #: src/tables/FilterSelectDrawer.tsx:137 #: src/tables/FilterSelectDrawer.tsx:149 #: src/tables/part/PartTestResultTable.tsx:206 -#: src/tables/purchasing/ManufacturerPartParameterTable.tsx:42 #: src/tables/stock/StockItemTestResultTable.tsx:207 msgid "Value" msgstr "Wert" @@ -5244,7 +5300,7 @@ msgid "Delete selected stock items" msgstr "Ausgewählte Lagerartikel löschen" #: src/hooks/UseStockAdjustActions.tsx:205 -#: src/pages/part/PartDetail.tsx:1137 +#: src/pages/part/PartDetail.tsx:1158 msgid "Stock Actions" msgstr "Lager-Aktionen" @@ -5932,6 +5988,9 @@ msgstr "" #: src/pages/Index/Settings/AccountSettings/MFASettings.tsx:310 #: src/pages/Index/Settings/AccountSettings/MFASettings.tsx:401 +#: src/tables/build/BuildAllocatedStockTable.tsx:181 +#: src/tables/build/BuildLineTable.tsx:668 +#: src/tables/sales/SalesOrderAllocationTable.tsx:220 msgid "Confirm Removal" msgstr "" @@ -6394,30 +6453,34 @@ msgid "Email Messages" msgstr "E-Mail Nachrichten" #: src/pages/Index/Settings/AdminCenter/HomePanel.tsx:22 -msgid "Active Alerts" -msgstr "" +#~ msgid "Active Alerts" +#~ msgstr "Active Alerts" #: src/pages/Index/Settings/AdminCenter/HomePanel.tsx:27 -msgid "Inactive Alerts" +#~ msgid "Inactive Alerts" +#~ msgstr "Inactive Alerts" + +#: src/pages/Index/Settings/AdminCenter/HomePanel.tsx:36 +msgid "System Status" msgstr "" -#: src/pages/Index/Settings/AdminCenter/HomePanel.tsx:38 +#: src/pages/Index/Settings/AdminCenter/HomePanel.tsx:47 msgid "Admin Center Information" msgstr "" -#: src/pages/Index/Settings/AdminCenter/HomePanel.tsx:44 +#: src/pages/Index/Settings/AdminCenter/HomePanel.tsx:53 msgid "The home panel (and the whole Admin Center) is a new feature starting with the new UI and was previously (before 1.0) not available." msgstr "" -#: src/pages/Index/Settings/AdminCenter/HomePanel.tsx:51 +#: src/pages/Index/Settings/AdminCenter/HomePanel.tsx:60 msgid "The admin center provides a centralized location for all administration functionality and is meant to replace all interaction with the (django) backend admin interface." msgstr "" -#: src/pages/Index/Settings/AdminCenter/HomePanel.tsx:58 +#: src/pages/Index/Settings/AdminCenter/HomePanel.tsx:67 msgid "Please open feature requests (after checking the tracker) for any existing backend admin functionality you are missing in this UI. The backend admin interface should be used carefully and seldom." msgstr "" -#: src/pages/Index/Settings/AdminCenter/HomePanel.tsx:76 +#: src/pages/Index/Settings/AdminCenter/HomePanel.tsx:85 msgid "Quick Actions" msgstr "" @@ -6476,11 +6539,11 @@ msgstr "Kundenspezifische Einheiten" #: src/pages/Index/Settings/AdminCenter/Index.tsx:195 #: src/pages/part/CategoryDetail.tsx:313 -msgid "Part Parameters" -msgstr "Teile Parameter" +#~ msgid "Part Parameters" +#~ msgstr "Part Parameters" #: src/pages/Index/Settings/AdminCenter/Index.tsx:202 -#: src/pages/part/CategoryDetail.tsx:306 +#: src/pages/part/CategoryDetail.tsx:329 msgid "Category Parameters" msgstr "Kategorie Parameter" @@ -6494,7 +6557,7 @@ msgstr "Standorttyp" #: src/pages/Index/Settings/AdminCenter/Index.tsx:235 #: src/pages/Index/Settings/AdminCenter/MachineManagementPanel.tsx:52 -#: src/tables/machine/MachineTypeTable.tsx:325 +#: src/tables/machine/MachineTypeTable.tsx:323 msgid "Machines" msgstr "Maschinen" @@ -6507,8 +6570,8 @@ msgid "Data Management" msgstr "Datenmanagement" #: src/pages/Index/Settings/AdminCenter/Index.tsx:270 -#: src/pages/Index/Settings/SystemSettings.tsx:175 -#: src/pages/Index/Settings/UserSettings.tsx:118 +#: src/pages/Index/Settings/SystemSettings.tsx:176 +#: src/pages/Index/Settings/UserSettings.tsx:119 msgid "Reporting" msgstr "Berichte" @@ -6709,11 +6772,11 @@ msgstr "Token" msgid "The settings below are specific to each available plugin" msgstr "Die folgenden Einstellungen sind spezifisch für jedes verfügbare Plugin" -#: src/pages/Index/Settings/SystemSettings.tsx:77 +#: src/pages/Index/Settings/SystemSettings.tsx:78 msgid "Authentication" msgstr "Authentifizierung" -#: src/pages/Index/Settings/SystemSettings.tsx:103 +#: src/pages/Index/Settings/SystemSettings.tsx:104 msgid "Barcodes" msgstr "Barcode" @@ -6725,12 +6788,12 @@ msgstr "Barcode" #~ msgid "This panel is a placeholder." #~ msgstr "This panel is a placeholder." -#: src/pages/Index/Settings/SystemSettings.tsx:127 -#: src/pages/Index/Settings/UserSettings.tsx:112 +#: src/pages/Index/Settings/SystemSettings.tsx:128 +#: src/pages/Index/Settings/UserSettings.tsx:113 msgid "The settings below are specific to each available notification method" msgstr "Die folgenden Einstellungen sind spezifisch für jede verfügbare Benachrichtigungsmethode" -#: src/pages/Index/Settings/SystemSettings.tsx:133 +#: src/pages/Index/Settings/SystemSettings.tsx:134 msgid "Pricing" msgstr "Preise" @@ -6738,7 +6801,7 @@ msgstr "Preise" #~ msgid "Exchange Rates" #~ msgstr "Exchange Rates" -#: src/pages/Index/Settings/SystemSettings.tsx:169 +#: src/pages/Index/Settings/SystemSettings.tsx:170 msgid "Labels" msgstr "Beschriftungen" @@ -6790,15 +6853,15 @@ msgstr "Als ungelesen markieren" #~ msgid "Delete notifications" #~ msgstr "Delete notifications" -#: src/pages/build/BuildDetail.tsx:69 +#: src/pages/build/BuildDetail.tsx:70 msgid "No Required Items" msgstr "Keine benötigten Artikel" -#: src/pages/build/BuildDetail.tsx:71 +#: src/pages/build/BuildDetail.tsx:72 msgid "This build order does not have any required items." msgstr "Dieser Bauauftrag hat keine benötigten Elemente." -#: src/pages/build/BuildDetail.tsx:72 +#: src/pages/build/BuildDetail.tsx:73 msgid "The assembled part may not have a Bill of Materials (BOM) defined, or the BOM is empty." msgstr "Das zusammengebaute Teil darf keine BOM definiert haben, oder das BOM ist leer." @@ -6826,7 +6889,7 @@ msgstr "Das zusammengebaute Teil darf keine BOM definiert haben, oder das BOM is #~ msgid "Build Order updated" #~ msgstr "Build Order updated" -#: src/pages/build/BuildDetail.tsx:215 +#: src/pages/build/BuildDetail.tsx:216 #: src/pages/part/PartDetail.tsx:480 #: src/pages/stock/StockDetail.tsx:161 #: src/tables/bom/UsedInTable.tsx:44 @@ -6843,10 +6906,10 @@ msgstr "Version" #~ msgid "Duplicate build order" #~ msgstr "Duplicate build order" -#: src/pages/build/BuildDetail.tsx:228 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:174 -#: src/pages/sales/ReturnOrderDetail.tsx:141 -#: src/pages/sales/SalesOrderDetail.tsx:131 +#: src/pages/build/BuildDetail.tsx:229 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:175 +#: src/pages/sales/ReturnOrderDetail.tsx:142 +#: src/pages/sales/SalesOrderDetail.tsx:132 #: src/pages/stock/StockDetail.tsx:176 msgid "Custom Status" msgstr "Benutzerdefinierter Status" @@ -6855,9 +6918,9 @@ msgstr "Benutzerdefinierter Status" #~ msgid "Delete build order" #~ msgstr "Delete build order" -#: src/pages/build/BuildDetail.tsx:237 -#: src/pages/build/BuildDetail.tsx:723 -#: src/pages/build/BuildIndex.tsx:28 +#: src/pages/build/BuildDetail.tsx:238 +#: src/pages/build/BuildDetail.tsx:728 +#: src/pages/build/BuildIndex.tsx:34 #: src/pages/stock/LocationDetail.tsx:140 #: src/tables/build/BuildOrderTable.tsx:123 #: src/tables/build/BuildOrderTable.tsx:183 @@ -6865,57 +6928,57 @@ msgstr "Benutzerdefinierter Status" msgid "External" msgstr "Extern" -#: src/pages/build/BuildDetail.tsx:244 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:141 -#: src/pages/sales/ReturnOrderDetail.tsx:108 -#: src/pages/sales/SalesOrderDetail.tsx:98 +#: src/pages/build/BuildDetail.tsx:245 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:142 +#: src/pages/sales/ReturnOrderDetail.tsx:109 +#: src/pages/sales/SalesOrderDetail.tsx:99 #: src/tables/ColumnRenderers.tsx:321 -#: src/tables/build/BuildAllocatedStockTable.tsx:115 -#: src/tables/build/BuildLineTable.tsx:352 +#: src/tables/build/BuildAllocatedStockTable.tsx:112 +#: src/tables/build/BuildLineTable.tsx:353 msgid "Reference" msgstr "Referenz" -#: src/pages/build/BuildDetail.tsx:258 +#: src/pages/build/BuildDetail.tsx:259 msgid "Parent Build" msgstr "Übergeordneter Bauauftrag" -#: src/pages/build/BuildDetail.tsx:269 +#: src/pages/build/BuildDetail.tsx:270 msgid "Build Quantity" msgstr "Bauauftrag Anzahl" -#: src/pages/build/BuildDetail.tsx:275 +#: src/pages/build/BuildDetail.tsx:276 #: src/pages/part/PartDetail.tsx:598 #: src/tables/bom/BomTable.tsx:365 #: src/tables/bom/BomTable.tsx:407 msgid "Can Build" msgstr "Herstellbar" -#: src/pages/build/BuildDetail.tsx:284 -#: src/pages/build/BuildDetail.tsx:474 +#: src/pages/build/BuildDetail.tsx:285 +#: src/pages/build/BuildDetail.tsx:475 msgid "Completed Outputs" msgstr "Fertiggestellte Endprodukte" -#: src/pages/build/BuildDetail.tsx:301 +#: src/pages/build/BuildDetail.tsx:302 #: src/tables/Filter.tsx:381 #: src/tables/build/BuildOrderTable.tsx:143 msgid "Issued By" msgstr "Aufgegeben von" -#: src/pages/build/BuildDetail.tsx:309 +#: src/pages/build/BuildDetail.tsx:310 #: src/pages/part/PartDetail.tsx:691 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:261 -#: src/pages/sales/ReturnOrderDetail.tsx:239 -#: src/pages/sales/SalesOrderDetail.tsx:232 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:262 +#: src/pages/sales/ReturnOrderDetail.tsx:240 +#: src/pages/sales/SalesOrderDetail.tsx:233 #: src/tables/ColumnRenderers.tsx:464 #: src/tables/Filter.tsx:319 msgid "Responsible" msgstr "Verantwortlich" -#: src/pages/build/BuildDetail.tsx:327 +#: src/pages/build/BuildDetail.tsx:328 msgid "Any location" msgstr "Beliebiger Lagerort" -#: src/pages/build/BuildDetail.tsx:334 +#: src/pages/build/BuildDetail.tsx:335 msgid "Destination Location" msgstr "Ziel Lagerort" @@ -6924,24 +6987,24 @@ msgstr "Ziel Lagerort" #~ msgid "Test Statistics" #~ msgstr "Test Statistics" -#: src/pages/build/BuildDetail.tsx:350 +#: src/pages/build/BuildDetail.tsx:351 #: src/tables/settings/ApiTokenTable.tsx:97 #: src/tables/settings/PendingTasksTable.tsx:41 msgid "Created" msgstr "Erstellt" -#: src/pages/build/BuildDetail.tsx:358 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:286 -#: src/pages/sales/ReturnOrderDetail.tsx:265 -#: src/pages/sales/SalesOrderDetail.tsx:257 +#: src/pages/build/BuildDetail.tsx:359 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:287 +#: src/pages/sales/ReturnOrderDetail.tsx:266 +#: src/pages/sales/SalesOrderDetail.tsx:258 #: src/tables/ColumnRenderers.tsx:486 msgid "Start Date" msgstr "Startdatum" -#: src/pages/build/BuildDetail.tsx:366 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:294 -#: src/pages/sales/ReturnOrderDetail.tsx:273 -#: src/pages/sales/SalesOrderDetail.tsx:265 +#: src/pages/build/BuildDetail.tsx:367 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:295 +#: src/pages/sales/ReturnOrderDetail.tsx:274 +#: src/pages/sales/SalesOrderDetail.tsx:266 #: src/tables/ColumnRenderers.tsx:494 #: src/tables/part/PartPurchaseOrdersTable.tsx:101 #: src/tables/sales/ReturnOrderLineItemTable.tsx:154 @@ -6954,185 +7017,185 @@ msgstr "Zieldatum" #~ msgstr "Reporting Actions" #: src/pages/build/BuildDetail.tsx:374 +#~ msgid "Print build report" +#~ msgstr "Print build report" + +#: src/pages/build/BuildDetail.tsx:375 #: src/tables/build/BuildOrderTable.tsx:93 #: src/tables/sales/SalesOrderLineItemTable.tsx:347 msgid "Completed" msgstr "Abgeschlossen" -#: src/pages/build/BuildDetail.tsx:374 -#~ msgid "Print build report" -#~ msgstr "Print build report" - -#: src/pages/build/BuildDetail.tsx:410 +#: src/pages/build/BuildDetail.tsx:411 msgid "Build Details" msgstr "Bauauftrag Details" -#: src/pages/build/BuildDetail.tsx:416 +#: src/pages/build/BuildDetail.tsx:417 msgid "Required Parts" msgstr "Benötigte Teile" -#: src/pages/build/BuildDetail.tsx:428 -#: src/pages/sales/SalesOrderDetail.tsx:407 -#: src/pages/sales/SalesOrderShipmentDetail.tsx:261 +#: src/pages/build/BuildDetail.tsx:429 +#: src/pages/sales/SalesOrderDetail.tsx:408 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:259 #: src/tables/part/PartSalesAllocationsTable.tsx:73 msgid "Allocated Stock" msgstr "Zugewiesener Bestand" -#: src/pages/build/BuildDetail.tsx:444 +#: src/pages/build/BuildDetail.tsx:445 msgid "Consumed Stock" msgstr "Verbrauchte Bestände" -#: src/pages/build/BuildDetail.tsx:461 +#: src/pages/build/BuildDetail.tsx:462 msgid "Incomplete Outputs" msgstr "Unvollständige Endprodukte" -#: src/pages/build/BuildDetail.tsx:489 +#: src/pages/build/BuildDetail.tsx:490 msgid "External Orders" msgstr "Externe Bestellungen" -#: src/pages/build/BuildDetail.tsx:503 +#: src/pages/build/BuildDetail.tsx:504 msgid "Child Build Orders" msgstr "Unter-Bauaufträge" -#: src/pages/build/BuildDetail.tsx:513 -#: src/pages/part/PartDetail.tsx:937 +#: src/pages/build/BuildDetail.tsx:514 +#: src/pages/part/PartDetail.tsx:926 #: src/pages/stock/StockDetail.tsx:587 #: src/tables/build/BuildOutputTable.tsx:654 #: src/tables/stock/StockItemTestResultTable.tsx:173 msgid "Test Results" msgstr "Testergebnisse" -#: src/pages/build/BuildDetail.tsx:550 +#: src/pages/build/BuildDetail.tsx:555 msgid "Edit Build Order" msgstr "Bauauftrag bearbeiten" -#: src/pages/build/BuildDetail.tsx:572 +#: src/pages/build/BuildDetail.tsx:577 #: src/tables/build/BuildOrderTable.tsx:207 #: src/tables/build/BuildOrderTable.tsx:223 msgid "Add Build Order" msgstr "Neuer Bauauftrag" -#: src/pages/build/BuildDetail.tsx:582 +#: src/pages/build/BuildDetail.tsx:587 msgid "Cancel Build Order" msgstr "Bauauftrag abbrechen" -#: src/pages/build/BuildDetail.tsx:584 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:416 -#: src/pages/sales/ReturnOrderDetail.tsx:427 -#: src/pages/sales/SalesOrderDetail.tsx:454 +#: src/pages/build/BuildDetail.tsx:589 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:421 +#: src/pages/sales/ReturnOrderDetail.tsx:432 +#: src/pages/sales/SalesOrderDetail.tsx:459 msgid "Order cancelled" msgstr "Bestellung storniert" -#: src/pages/build/BuildDetail.tsx:585 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:415 -#: src/pages/sales/ReturnOrderDetail.tsx:426 -#: src/pages/sales/SalesOrderDetail.tsx:453 +#: src/pages/build/BuildDetail.tsx:590 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:420 +#: src/pages/sales/ReturnOrderDetail.tsx:431 +#: src/pages/sales/SalesOrderDetail.tsx:458 msgid "Cancel this order" msgstr "Diese Bestellung stornieren" -#: src/pages/build/BuildDetail.tsx:594 +#: src/pages/build/BuildDetail.tsx:599 msgid "Hold Build Order" msgstr "Bauauftrag halten" -#: src/pages/build/BuildDetail.tsx:596 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:423 -#: src/pages/sales/ReturnOrderDetail.tsx:434 -#: src/pages/sales/SalesOrderDetail.tsx:461 +#: src/pages/build/BuildDetail.tsx:601 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:428 +#: src/pages/sales/ReturnOrderDetail.tsx:439 +#: src/pages/sales/SalesOrderDetail.tsx:466 msgid "Place this order on hold" msgstr "Diese Bestellung halten" -#: src/pages/build/BuildDetail.tsx:597 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:424 -#: src/pages/sales/ReturnOrderDetail.tsx:435 -#: src/pages/sales/SalesOrderDetail.tsx:462 +#: src/pages/build/BuildDetail.tsx:602 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:429 +#: src/pages/sales/ReturnOrderDetail.tsx:440 +#: src/pages/sales/SalesOrderDetail.tsx:467 msgid "Order placed on hold" msgstr "Bestellung gehalten" -#: src/pages/build/BuildDetail.tsx:602 +#: src/pages/build/BuildDetail.tsx:607 msgid "Issue Build Order" msgstr "Bauauftrag erstellen" -#: src/pages/build/BuildDetail.tsx:604 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:407 -#: src/pages/sales/ReturnOrderDetail.tsx:418 -#: src/pages/sales/SalesOrderDetail.tsx:445 +#: src/pages/build/BuildDetail.tsx:609 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:412 +#: src/pages/sales/ReturnOrderDetail.tsx:423 +#: src/pages/sales/SalesOrderDetail.tsx:450 msgid "Issue this order" msgstr "Diese Bestellung ausstellen" -#: src/pages/build/BuildDetail.tsx:605 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:408 -#: src/pages/sales/ReturnOrderDetail.tsx:419 -#: src/pages/sales/SalesOrderDetail.tsx:446 +#: src/pages/build/BuildDetail.tsx:610 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:413 +#: src/pages/sales/ReturnOrderDetail.tsx:424 +#: src/pages/sales/SalesOrderDetail.tsx:451 msgid "Order issued" msgstr "Bestellung ausgestellt" -#: src/pages/build/BuildDetail.tsx:624 +#: src/pages/build/BuildDetail.tsx:629 msgid "Complete Build Order" msgstr "Bauauftrag fertigstellen" -#: src/pages/build/BuildDetail.tsx:630 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:436 -#: src/pages/sales/ReturnOrderDetail.tsx:442 -#: src/pages/sales/SalesOrderDetail.tsx:480 +#: src/pages/build/BuildDetail.tsx:635 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:441 +#: src/pages/sales/ReturnOrderDetail.tsx:447 +#: src/pages/sales/SalesOrderDetail.tsx:485 msgid "Mark this order as complete" msgstr "Diese Bestellung als vollständig markieren" -#: src/pages/build/BuildDetail.tsx:633 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:430 -#: src/pages/sales/ReturnOrderDetail.tsx:443 -#: src/pages/sales/SalesOrderDetail.tsx:481 +#: src/pages/build/BuildDetail.tsx:638 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:435 +#: src/pages/sales/ReturnOrderDetail.tsx:448 +#: src/pages/sales/SalesOrderDetail.tsx:486 msgid "Order completed" msgstr "Bestellung abgeschlossen" -#: src/pages/build/BuildDetail.tsx:660 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:459 -#: src/pages/sales/ReturnOrderDetail.tsx:470 -#: src/pages/sales/SalesOrderDetail.tsx:516 +#: src/pages/build/BuildDetail.tsx:665 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:464 +#: src/pages/sales/ReturnOrderDetail.tsx:475 +#: src/pages/sales/SalesOrderDetail.tsx:521 msgid "Issue Order" msgstr "Bestellung aufgeben" -#: src/pages/build/BuildDetail.tsx:667 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:466 -#: src/pages/sales/ReturnOrderDetail.tsx:477 -#: src/pages/sales/SalesOrderDetail.tsx:530 +#: src/pages/build/BuildDetail.tsx:672 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:471 +#: src/pages/sales/ReturnOrderDetail.tsx:482 +#: src/pages/sales/SalesOrderDetail.tsx:535 msgid "Complete Order" msgstr "Bestellung abschließen" -#: src/pages/build/BuildDetail.tsx:686 +#: src/pages/build/BuildDetail.tsx:691 msgid "Build Order Actions" msgstr "Bauauftrag-Aktionen" -#: src/pages/build/BuildDetail.tsx:691 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:489 -#: src/pages/sales/ReturnOrderDetail.tsx:500 -#: src/pages/sales/SalesOrderDetail.tsx:554 +#: src/pages/build/BuildDetail.tsx:696 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:494 +#: src/pages/sales/ReturnOrderDetail.tsx:505 +#: src/pages/sales/SalesOrderDetail.tsx:559 msgid "Edit order" msgstr "Bestellung bearbeiten" -#: src/pages/build/BuildDetail.tsx:695 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:497 -#: src/pages/sales/ReturnOrderDetail.tsx:506 -#: src/pages/sales/SalesOrderDetail.tsx:559 +#: src/pages/build/BuildDetail.tsx:700 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:502 +#: src/pages/sales/ReturnOrderDetail.tsx:511 +#: src/pages/sales/SalesOrderDetail.tsx:564 msgid "Duplicate order" msgstr "Bestellung duplizieren" -#: src/pages/build/BuildDetail.tsx:699 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:500 -#: src/pages/sales/ReturnOrderDetail.tsx:511 -#: src/pages/sales/SalesOrderDetail.tsx:562 -msgid "Hold order" -msgstr "Bestellung halten" - #: src/pages/build/BuildDetail.tsx:704 #: src/pages/purchasing/PurchaseOrderDetail.tsx:505 #: src/pages/sales/ReturnOrderDetail.tsx:516 #: src/pages/sales/SalesOrderDetail.tsx:567 +msgid "Hold order" +msgstr "Bestellung halten" + +#: src/pages/build/BuildDetail.tsx:709 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:510 +#: src/pages/sales/ReturnOrderDetail.tsx:521 +#: src/pages/sales/SalesOrderDetail.tsx:572 msgid "Cancel order" msgstr "Bestellung stornieren" -#: src/pages/build/BuildDetail.tsx:742 +#: src/pages/build/BuildDetail.tsx:747 #: src/pages/stock/StockDetail.tsx:344 -#: src/tables/build/BuildAllocatedStockTable.tsx:85 +#: src/tables/build/BuildAllocatedStockTable.tsx:82 #: src/tables/part/PartBuildAllocationsTable.tsx:45 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:157 #: src/tables/stock/StockTrackingTable.tsx:109 @@ -7143,7 +7206,7 @@ msgstr "Bauauftrag" #~ msgid "Build order created" #~ msgstr "Build order created" -#: src/pages/build/BuildIndex.tsx:29 +#: src/pages/build/BuildIndex.tsx:35 #: src/tables/build/BuildOrderTable.tsx:184 msgid "Show external build orders" msgstr "Externe Bauaufträge anzeigen" @@ -7152,61 +7215,82 @@ msgstr "Externe Bauaufträge anzeigen" #~ msgid "New Build Order" #~ msgstr "New Build Order" -#: src/pages/build/BuildIndex.tsx:83 -#: src/pages/purchasing/PurchasingIndex.tsx:69 -#: src/pages/sales/SalesIndex.tsx:92 -#: src/pages/sales/SalesIndex.tsx:125 +#: src/pages/build/BuildIndex.tsx:74 +#: src/pages/part/CategoryDetail.tsx:292 +#: src/pages/purchasing/PurchasingIndex.tsx:74 +#: src/pages/purchasing/PurchasingIndex.tsx:107 +#: src/pages/purchasing/PurchasingIndex.tsx:135 +#: src/pages/purchasing/PurchasingIndex.tsx:156 +#: src/pages/purchasing/PurchasingIndex.tsx:184 +#: src/pages/sales/SalesIndex.tsx:61 +#: src/pages/sales/SalesIndex.tsx:107 +#: src/pages/sales/SalesIndex.tsx:140 msgid "Table View" msgstr "Tabellenansicht" -#: src/pages/build/BuildIndex.tsx:86 -#: src/pages/purchasing/PurchasingIndex.tsx:72 -#: src/pages/sales/SalesIndex.tsx:95 -#: src/pages/sales/SalesIndex.tsx:128 +#: src/pages/build/BuildIndex.tsx:80 +#: src/pages/purchasing/PurchasingIndex.tsx:80 +#: src/pages/sales/SalesIndex.tsx:67 +#: src/pages/sales/SalesIndex.tsx:113 msgid "Calendar View" msgstr "Kalenderansicht" -#: src/pages/company/CompanyDetail.tsx:99 +#: src/pages/build/BuildIndex.tsx:86 +#: src/pages/part/CategoryDetail.tsx:306 +#: src/pages/purchasing/PurchasingIndex.tsx:92 +#: src/pages/purchasing/PurchasingIndex.tsx:118 +#: src/pages/purchasing/PurchasingIndex.tsx:141 +#: src/pages/purchasing/PurchasingIndex.tsx:167 +#: src/pages/purchasing/PurchasingIndex.tsx:190 +#: src/pages/sales/SalesIndex.tsx:79 +#: src/pages/sales/SalesIndex.tsx:125 +#: src/pages/sales/SalesIndex.tsx:151 +msgid "Parametric View" +msgstr "" + +#: src/pages/company/CompanyDetail.tsx:100 msgid "Website" msgstr "Webseite" -#: src/pages/company/CompanyDetail.tsx:107 +#: src/pages/company/CompanyDetail.tsx:108 msgid "Phone Number" msgstr "Telefonnummer" -#: src/pages/company/CompanyDetail.tsx:114 +#: src/pages/company/CompanyDetail.tsx:115 msgid "Email Address" msgstr "E-Mail-Adresse" -#: src/pages/company/CompanyDetail.tsx:121 +#: src/pages/company/CompanyDetail.tsx:122 msgid "Tax ID" msgstr "Steuer-ID" -#: src/pages/company/CompanyDetail.tsx:131 +#: src/pages/company/CompanyDetail.tsx:132 msgid "Default Currency" msgstr "Standardwährung" -#: src/pages/company/CompanyDetail.tsx:142 +#: src/pages/company/CompanyDetail.tsx:143 #: src/pages/company/ManufacturerDetail.tsx:8 -#: src/pages/company/ManufacturerPartDetail.tsx:104 -#: src/pages/company/ManufacturerPartDetail.tsx:280 -#: src/pages/company/SupplierPartDetail.tsx:152 +#: src/pages/company/ManufacturerPartDetail.tsx:103 +#: src/pages/company/ManufacturerPartDetail.tsx:271 +#: src/pages/company/SupplierPartDetail.tsx:153 #: src/tables/Filter.tsx:347 #: src/tables/company/CompanyTable.tsx:101 #: src/tables/purchasing/SupplierPartTable.tsx:89 msgid "Manufacturer" msgstr "Hersteller" -#: src/pages/company/CompanyDetail.tsx:148 +#: src/pages/company/CompanyDetail.tsx:149 #: src/pages/company/CustomerDetail.tsx:8 #: src/pages/part/pricing/SaleHistoryPanel.tsx:31 -#: src/pages/sales/ReturnOrderDetail.tsx:123 -#: src/pages/sales/SalesOrderDetail.tsx:113 -#: src/pages/sales/SalesOrderShipmentDetail.tsx:113 +#: src/pages/sales/ReturnOrderDetail.tsx:124 +#: src/pages/sales/SalesOrderDetail.tsx:114 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:111 #: src/pages/stock/StockDetail.tsx:370 #: src/tables/company/CompanyTable.tsx:106 +#: src/tables/sales/ReturnOrderParametricTable.tsx:32 #: src/tables/sales/ReturnOrderTable.tsx:108 -#: src/tables/sales/SalesOrderShipmentTable.tsx:111 +#: src/tables/sales/SalesOrderParametricTable.tsx:32 +#: src/tables/sales/SalesOrderShipmentTable.tsx:132 #: src/tables/sales/SalesOrderTable.tsx:133 #: src/tables/stock/StockTrackingTable.tsx:153 msgid "Customer" @@ -7216,11 +7300,11 @@ msgstr "Kunde" #~ msgid "Edit company" #~ msgstr "Edit company" -#: src/pages/company/CompanyDetail.tsx:181 +#: src/pages/company/CompanyDetail.tsx:182 msgid "Company Details" msgstr "Details zum Unternehmen" -#: src/pages/company/CompanyDetail.tsx:187 +#: src/pages/company/CompanyDetail.tsx:188 msgid "Supplied Parts" msgstr "Zuliefererteile" @@ -7228,79 +7312,79 @@ msgstr "Zuliefererteile" #~ msgid "Delete company" #~ msgstr "Delete company" -#: src/pages/company/CompanyDetail.tsx:194 +#: src/pages/company/CompanyDetail.tsx:195 msgid "Manufactured Parts" msgstr "Hergestellte Teile" -#: src/pages/company/CompanyDetail.tsx:241 +#: src/pages/company/CompanyDetail.tsx:242 msgid "Assigned Stock" msgstr "Zugeordneter Bestand" -#: src/pages/company/CompanyDetail.tsx:282 +#: src/pages/company/CompanyDetail.tsx:287 #: src/tables/company/CompanyTable.tsx:82 msgid "Edit Company" msgstr "Unternehmen bearbeiten" -#: src/pages/company/CompanyDetail.tsx:290 +#: src/pages/company/CompanyDetail.tsx:295 msgid "Delete Company" msgstr "Firma löschen" -#: src/pages/company/CompanyDetail.tsx:305 +#: src/pages/company/CompanyDetail.tsx:310 msgid "Company Actions" msgstr "Firmen-Aktionen" -#: src/pages/company/ManufacturerPartDetail.tsx:78 -#: src/pages/company/SupplierPartDetail.tsx:89 +#: src/pages/company/ManufacturerPartDetail.tsx:77 +#: src/pages/company/SupplierPartDetail.tsx:90 msgid "Internal Part" msgstr "Internes Teil" -#: src/pages/company/ManufacturerPartDetail.tsx:112 +#: src/pages/company/ManufacturerPartDetail.tsx:111 msgid "Manufacturer Part Number" msgstr "Teilenummer des Herstellers" -#: src/pages/company/ManufacturerPartDetail.tsx:129 -#: src/pages/company/SupplierPartDetail.tsx:113 +#: src/pages/company/ManufacturerPartDetail.tsx:128 +#: src/pages/company/SupplierPartDetail.tsx:114 msgid "External Link" msgstr "Externer Link" -#: src/pages/company/ManufacturerPartDetail.tsx:148 -#: src/pages/company/SupplierPartDetail.tsx:232 +#: src/pages/company/ManufacturerPartDetail.tsx:147 +#: src/pages/company/SupplierPartDetail.tsx:233 #: src/pages/part/PartDetail.tsx:787 msgid "Part Details" msgstr "Teil-Details" -#: src/pages/company/ManufacturerPartDetail.tsx:151 +#: src/pages/company/ManufacturerPartDetail.tsx:150 msgid "Manufacturer Details" msgstr "Herstellerdetails" -#: src/pages/company/ManufacturerPartDetail.tsx:160 +#: src/pages/company/ManufacturerPartDetail.tsx:159 msgid "Manufacturer Part Details" msgstr "Herstellerteil Details" -#: src/pages/company/ManufacturerPartDetail.tsx:178 -#: src/pages/company/SupplierPartDetail.tsx:252 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:381 +#: src/pages/company/ManufacturerPartDetail.tsx:165 +#: src/pages/company/SupplierPartDetail.tsx:253 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:382 msgid "Received Stock" msgstr "Empfangene Lagerartikel" -#: src/pages/company/ManufacturerPartDetail.tsx:220 +#: src/pages/company/ManufacturerPartDetail.tsx:211 #: src/tables/purchasing/ManufacturerPartTable.tsx:108 msgid "Edit Manufacturer Part" msgstr "Herstellerteil bearbeiten" -#: src/pages/company/ManufacturerPartDetail.tsx:227 +#: src/pages/company/ManufacturerPartDetail.tsx:218 #: src/tables/purchasing/ManufacturerPartTable.tsx:96 #: src/tables/purchasing/ManufacturerPartTable.tsx:115 #: src/tables/purchasing/ManufacturerPartTable.tsx:156 msgid "Add Manufacturer Part" msgstr "Herstellerteil hinzufügen" -#: src/pages/company/ManufacturerPartDetail.tsx:239 +#: src/pages/company/ManufacturerPartDetail.tsx:230 #: src/tables/purchasing/ManufacturerPartTable.tsx:126 msgid "Delete Manufacturer Part" msgstr "Herstellerteil löschen" -#: src/pages/company/ManufacturerPartDetail.tsx:254 +#: src/pages/company/ManufacturerPartDetail.tsx:245 msgid "Manufacturer Part Actions" msgstr "Herstellerteil Aktionen" @@ -7308,12 +7392,12 @@ msgstr "Herstellerteil Aktionen" #~ msgid "ManufacturerPart" #~ msgstr "ManufacturerPart" -#: src/pages/company/SupplierPartDetail.tsx:104 +#: src/pages/company/SupplierPartDetail.tsx:105 #: src/tables/part/RelatedPartTable.tsx:82 msgid "Part Description" msgstr "Teilebeschreibung" -#: src/pages/company/SupplierPartDetail.tsx:179 +#: src/pages/company/SupplierPartDetail.tsx:180 #: src/tables/part/PartPurchaseOrdersTable.tsx:73 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:191 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:233 @@ -7321,50 +7405,50 @@ msgstr "Teilebeschreibung" msgid "Pack Quantity" msgstr "Verpackungsmenge" -#: src/pages/company/SupplierPartDetail.tsx:204 +#: src/pages/company/SupplierPartDetail.tsx:205 msgid "Supplier Availability" msgstr "Lieferantenverfügbarkeit" -#: src/pages/company/SupplierPartDetail.tsx:212 +#: src/pages/company/SupplierPartDetail.tsx:213 msgid "Availability Updated" msgstr "Verfügbarkeit aktualisiert" -#: src/pages/company/SupplierPartDetail.tsx:237 +#: src/pages/company/SupplierPartDetail.tsx:238 msgid "Availability" msgstr "Verfügbarkeit" -#: src/pages/company/SupplierPartDetail.tsx:246 +#: src/pages/company/SupplierPartDetail.tsx:247 msgid "Supplier Part Details" msgstr "Zuliefererteil Details" -#: src/pages/company/SupplierPartDetail.tsx:279 +#: src/pages/company/SupplierPartDetail.tsx:280 #: src/pages/part/PartPricingPanel.tsx:113 #: src/pages/part/pricing/PricingOverviewPanel.tsx:239 msgid "Supplier Pricing" msgstr "Zulieferer-Preise" -#: src/pages/company/SupplierPartDetail.tsx:308 +#: src/pages/company/SupplierPartDetail.tsx:313 msgid "Supplier Part Actions" msgstr "Zuliefererteil Aktionen" -#: src/pages/company/SupplierPartDetail.tsx:332 +#: src/pages/company/SupplierPartDetail.tsx:337 #: src/tables/purchasing/SupplierPartTable.tsx:244 msgid "Edit Supplier Part" msgstr "Zuliefererteil bearbeiten" -#: src/pages/company/SupplierPartDetail.tsx:340 +#: src/pages/company/SupplierPartDetail.tsx:345 #: src/tables/purchasing/SupplierPartTable.tsx:264 msgid "Delete Supplier Part" msgstr "Zuliefererteil entfernen" -#: src/pages/company/SupplierPartDetail.tsx:348 +#: src/pages/company/SupplierPartDetail.tsx:353 #: src/tables/purchasing/SupplierPartTable.tsx:172 #: src/tables/purchasing/SupplierPartTable.tsx:251 msgid "Add Supplier Part" msgstr "Zuliefererteil hinzufügen" -#: src/pages/company/SupplierPartDetail.tsx:388 -#: src/pages/part/PartDetail.tsx:1003 +#: src/pages/company/SupplierPartDetail.tsx:393 +#: src/pages/part/PartDetail.tsx:1018 msgid "No Stock" msgstr "Kein Bestand" @@ -7411,83 +7495,83 @@ msgstr "Benutzerdetails" msgid "Basic user" msgstr "Basis-Benutzer" -#: src/pages/part/CategoryDetail.tsx:100 +#: src/pages/part/CategoryDetail.tsx:103 #: src/pages/stock/LocationDetail.tsx:94 #: src/tables/settings/ErrorTable.tsx:63 #: src/tables/settings/ErrorTable.tsx:108 msgid "Path" msgstr "Pfad" -#: src/pages/part/CategoryDetail.tsx:116 +#: src/pages/part/CategoryDetail.tsx:119 msgid "Parent Category" msgstr "Übergeordnete Kategorie" -#: src/pages/part/CategoryDetail.tsx:139 -#: src/pages/part/CategoryDetail.tsx:271 +#: src/pages/part/CategoryDetail.tsx:142 +#: src/pages/part/CategoryDetail.tsx:279 msgid "Subcategories" msgstr "Unterkategorien" -#: src/pages/part/CategoryDetail.tsx:146 +#: src/pages/part/CategoryDetail.tsx:149 #: src/pages/stock/LocationDetail.tsx:134 #: src/tables/part/PartCategoryTable.tsx:89 #: src/tables/stock/StockLocationTable.tsx:43 msgid "Structural" msgstr "Strukturell" -#: src/pages/part/CategoryDetail.tsx:152 +#: src/pages/part/CategoryDetail.tsx:155 msgid "Parent default location" msgstr "Übergeordneter Standard-Standort" -#: src/pages/part/CategoryDetail.tsx:159 +#: src/pages/part/CategoryDetail.tsx:162 msgid "Default location" msgstr "Standard-Lagerort" -#: src/pages/part/CategoryDetail.tsx:170 +#: src/pages/part/CategoryDetail.tsx:173 msgid "Top level part category" msgstr "Oberste Teile-Kategorie" -#: src/pages/part/CategoryDetail.tsx:180 -#: src/pages/part/CategoryDetail.tsx:248 +#: src/pages/part/CategoryDetail.tsx:183 +#: src/pages/part/CategoryDetail.tsx:251 #: src/tables/part/PartCategoryTable.tsx:122 msgid "Edit Part Category" msgstr "Teilekategorie bearbeiten" -#: src/pages/part/CategoryDetail.tsx:189 +#: src/pages/part/CategoryDetail.tsx:192 msgid "Move items to parent category" msgstr "Elemente in übergeordnete Kategorie verschieben" -#: src/pages/part/CategoryDetail.tsx:193 +#: src/pages/part/CategoryDetail.tsx:196 #: src/pages/stock/LocationDetail.tsx:226 msgid "Delete items" msgstr "Elemente löschen" -#: src/pages/part/CategoryDetail.tsx:201 -#: src/pages/part/CategoryDetail.tsx:253 +#: src/pages/part/CategoryDetail.tsx:204 +#: src/pages/part/CategoryDetail.tsx:256 msgid "Delete Part Category" msgstr "Teile-Kategorie löschen" -#: src/pages/part/CategoryDetail.tsx:204 +#: src/pages/part/CategoryDetail.tsx:207 msgid "Parts Action" msgstr "Teile Aktionen" -#: src/pages/part/CategoryDetail.tsx:205 +#: src/pages/part/CategoryDetail.tsx:208 msgid "Action for parts in this category" msgstr "Aktion für Teile in dieser Kategorie" -#: src/pages/part/CategoryDetail.tsx:211 +#: src/pages/part/CategoryDetail.tsx:214 msgid "Child Categories Action" msgstr "Unterkategorien-Aktion" -#: src/pages/part/CategoryDetail.tsx:212 +#: src/pages/part/CategoryDetail.tsx:215 msgid "Action for child categories in this category" msgstr "Aktion für untergeordnete Kategorien in dieser Kategorie" -#: src/pages/part/CategoryDetail.tsx:244 +#: src/pages/part/CategoryDetail.tsx:247 #: src/tables/part/PartCategoryTable.tsx:143 msgid "Category Actions" msgstr "Kategorieaktionen" -#: src/pages/part/CategoryDetail.tsx:265 +#: src/pages/part/CategoryDetail.tsx:273 msgid "Category Details" msgstr "Kategorie-Details" @@ -7585,7 +7669,6 @@ msgid "Category Default Location" msgstr "Standard-Lagerort der Kategorie" #: src/pages/part/PartDetail.tsx:507 -#: src/tables/purchasing/ManufacturerPartParameterTable.tsx:48 msgid "Units" msgstr "Einheiten" @@ -7600,7 +7683,7 @@ msgstr "Schlüsselwörter" #: src/pages/part/PartDetail.tsx:542 #: src/tables/bom/BomTable.tsx:439 -#: src/tables/build/BuildLineTable.tsx:305 +#: src/tables/build/BuildLineTable.tsx:306 #: src/tables/part/PartTable.tsx:319 #: src/tables/sales/SalesOrderLineItemTable.tsx:138 msgid "Available Stock" @@ -7608,7 +7691,7 @@ msgstr "Verfügbarer Bestand" #: src/pages/part/PartDetail.tsx:548 #: src/tables/bom/BomTable.tsx:341 -#: src/tables/build/BuildLineTable.tsx:267 +#: src/tables/build/BuildLineTable.tsx:268 #: src/tables/sales/SalesOrderLineItemTable.tsx:180 msgid "On order" msgstr "Bestellt" @@ -7634,7 +7717,7 @@ msgstr "Minimaler Bestand" #~ msgstr "Scheduling" #: src/pages/part/PartDetail.tsx:620 -#: src/tables/part/ParametricPartTable.tsx:359 +#: src/tables/part/ParametricPartTable.tsx:24 #: src/tables/part/PartTable.tsx:203 msgid "Locked" msgstr "Gesperrt" @@ -7671,16 +7754,16 @@ msgid "Saleable Part" msgstr "Verkäufliches Teil" #: src/pages/part/PartDetail.tsx:663 -#: src/pages/part/PartDetail.tsx:1033 +#: src/pages/part/PartDetail.tsx:1054 #: src/tables/bom/BomTable.tsx:150 #: src/tables/bom/BomTable.tsx:434 msgid "Virtual Part" msgstr "Virtuelles Teil" #: src/pages/part/PartDetail.tsx:678 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:271 -#: src/pages/sales/ReturnOrderDetail.tsx:249 -#: src/pages/sales/SalesOrderDetail.tsx:242 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:272 +#: src/pages/sales/ReturnOrderDetail.tsx:250 +#: src/pages/sales/SalesOrderDetail.tsx:243 #: src/tables/ColumnRenderers.tsx:502 msgid "Creation Date" msgstr "Erstelldatum" @@ -7718,35 +7801,46 @@ msgstr "letzte Seriennummer" msgid "Select Part Revision" msgstr "" -#: src/pages/part/PartDetail.tsx:823 +#: src/pages/part/PartDetail.tsx:812 msgid "Variants" msgstr "Varianten" -#: src/pages/part/PartDetail.tsx:830 +#: src/pages/part/PartDetail.tsx:819 #: src/pages/stock/StockDetail.tsx:542 msgid "Allocations" msgstr "Ferienguthaben/Freitage" -#: src/pages/part/PartDetail.tsx:837 +#: src/pages/part/PartDetail.tsx:826 msgid "Bill of Materials" msgstr "Stückliste" -#: src/pages/part/PartDetail.tsx:849 +#: src/pages/part/PartDetail.tsx:838 msgid "Used In" msgstr "Verwendet in" -#: src/pages/part/PartDetail.tsx:856 +#: src/pages/part/PartDetail.tsx:845 msgid "Part Pricing" msgstr "Teilbepreisung" -#: src/pages/part/PartDetail.tsx:926 +#: src/pages/part/PartDetail.tsx:915 msgid "Test Templates" msgstr "Testvorlagen" -#: src/pages/part/PartDetail.tsx:948 +#: src/pages/part/PartDetail.tsx:937 msgid "Related Parts" msgstr "Zugehörige Teile" +#: src/pages/part/PartDetail.tsx:949 +#: src/tables/ColumnRenderers.tsx:73 +#: src/tables/bom/BomTable.tsx:657 +#: src/tables/part/PartTestTemplateTable.tsx:258 +msgid "Part is Locked" +msgstr "Teil ist gesperrt" + +#: src/pages/part/PartDetail.tsx:954 +msgid "Part parameters cannot be edited, as the part is locked" +msgstr "" + #: src/pages/part/PartDetail.tsx:956 #~ msgid "Count part stock" #~ msgstr "Count part stock" @@ -7755,42 +7849,46 @@ msgstr "Zugehörige Teile" #~ msgid "Transfer part stock" #~ msgstr "Transfer part stock" -#: src/pages/part/PartDetail.tsx:1009 +#: src/pages/part/PartDetail.tsx:1024 #: src/tables/part/PartTestTemplateTable.tsx:112 #: src/tables/stock/StockItemTestResultTable.tsx:404 msgid "Required" msgstr "Erforderlich" -#: src/pages/part/PartDetail.tsx:1058 +#: src/pages/part/PartDetail.tsx:1042 +msgid "Deficit" +msgstr "" + +#: src/pages/part/PartDetail.tsx:1079 #: src/tables/part/PartTable.tsx:396 #: src/tables/part/PartTable.tsx:449 msgid "Add Part" msgstr "Teil hinzufügen" -#: src/pages/part/PartDetail.tsx:1072 +#: src/pages/part/PartDetail.tsx:1093 msgid "Delete Part" msgstr "Teil löschen" -#: src/pages/part/PartDetail.tsx:1081 +#: src/pages/part/PartDetail.tsx:1102 msgid "Deleting this part cannot be reversed" msgstr "Das Löschen dieses Teils kann nicht rückgängig gemacht werden" -#: src/pages/part/PartDetail.tsx:1143 +#: src/pages/part/PartDetail.tsx:1164 #: src/pages/stock/StockDetail.tsx:883 msgid "Order" msgstr "Bestellung" -#: src/pages/part/PartDetail.tsx:1144 +#: src/pages/part/PartDetail.tsx:1165 #: src/pages/stock/StockDetail.tsx:884 -#: src/tables/build/BuildLineTable.tsx:761 +#: src/tables/build/BuildLineTable.tsx:768 msgid "Order Stock" msgstr "Bestand bestellen" -#: src/pages/part/PartDetail.tsx:1156 +#: src/pages/part/PartDetail.tsx:1177 msgid "Search by serial number" msgstr "Nach Seriennummer suchen" -#: src/pages/part/PartDetail.tsx:1164 +#: src/pages/part/PartDetail.tsx:1185 #: src/tables/part/PartTable.tsx:506 msgid "Part Actions" msgstr "Teile-Aktionen" @@ -8039,7 +8137,7 @@ msgstr "Einkaufs Preise" #: src/pages/part/pricing/PricingOverviewPanel.tsx:288 #: src/pages/stock/StockDetail.tsx:426 -#: src/tables/part/PartParameterTable.tsx:121 +#: src/tables/general/ParameterTable.tsx:101 #: src/tables/stock/StockItemTable.tsx:300 msgid "Last Updated" msgstr "Zuletzt aktualisiert" @@ -8107,17 +8205,17 @@ msgstr "Lieferant Preis" msgid "Variant Part" msgstr "Variantenteil" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:89 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:90 msgid "Edit Purchase Order" msgstr "Bestellung bearbeiten" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:125 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:126 #: src/tables/purchasing/PurchaseOrderTable.tsx:154 #: src/tables/purchasing/PurchaseOrderTable.tsx:167 msgid "Add Purchase Order" msgstr "Bestellung hinzufügen" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:147 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:148 msgid "Supplier Reference" msgstr "Lieferanten-Referenz" @@ -8127,20 +8225,20 @@ msgstr "Lieferanten-Referenz" #~ msgid "Order Currency," #~ msgstr "Order Currency," -#: src/pages/purchasing/PurchaseOrderDetail.tsx:187 -#: src/pages/sales/ReturnOrderDetail.tsx:160 -#: src/pages/sales/SalesOrderDetail.tsx:144 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:188 +#: src/pages/sales/ReturnOrderDetail.tsx:161 +#: src/pages/sales/SalesOrderDetail.tsx:145 msgid "Completed Line Items" msgstr "Abgeschlossene Positionen" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:196 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:197 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:272 msgid "Destination" msgstr "Bestimmungsort" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:202 -#: src/pages/sales/ReturnOrderDetail.tsx:167 -#: src/pages/sales/SalesOrderDetail.tsx:161 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:203 +#: src/pages/sales/ReturnOrderDetail.tsx:168 +#: src/pages/sales/SalesOrderDetail.tsx:162 msgid "Order Currency" msgstr "Bestellwährung" @@ -8150,97 +8248,97 @@ msgstr "Bestellwährung" #~ msgid "Created On" #~ msgstr "Created On" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:208 -#: src/pages/sales/ReturnOrderDetail.tsx:174 -#: src/pages/sales/SalesOrderDetail.tsx:167 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:209 +#: src/pages/sales/ReturnOrderDetail.tsx:175 +#: src/pages/sales/SalesOrderDetail.tsx:168 msgid "Total Cost" msgstr "Gesamtkosten" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:237 -#: src/pages/sales/ReturnOrderDetail.tsx:215 -#: src/pages/sales/SalesOrderDetail.tsx:208 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:238 +#: src/pages/sales/ReturnOrderDetail.tsx:216 +#: src/pages/sales/SalesOrderDetail.tsx:209 msgid "Contact Email" msgstr "Kontakt E-Mail" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:245 -#: src/pages/sales/ReturnOrderDetail.tsx:223 -#: src/pages/sales/SalesOrderDetail.tsx:216 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:246 +#: src/pages/sales/ReturnOrderDetail.tsx:224 +#: src/pages/sales/SalesOrderDetail.tsx:217 msgid "Contact Phone" msgstr "Kontakt Telefon" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:278 -#: src/pages/sales/ReturnOrderDetail.tsx:257 -#: src/pages/sales/SalesOrderDetail.tsx:249 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:279 +#: src/pages/sales/ReturnOrderDetail.tsx:258 +#: src/pages/sales/SalesOrderDetail.tsx:250 msgid "Issue Date" msgstr "Herausgabedatum" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:303 -#: src/pages/sales/ReturnOrderDetail.tsx:281 -#: src/pages/sales/SalesOrderDetail.tsx:272 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:304 +#: src/pages/sales/ReturnOrderDetail.tsx:282 +#: src/pages/sales/SalesOrderDetail.tsx:273 #: src/tables/ColumnRenderers.tsx:510 #: src/tables/build/BuildOrderTable.tsx:137 #: src/tables/part/PartPurchaseOrdersTable.tsx:106 msgid "Completion Date" msgstr "Fertigstellungsdatum" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:333 -#: src/pages/sales/ReturnOrderDetail.tsx:311 -#: src/pages/sales/SalesOrderDetail.tsx:349 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:334 +#: src/pages/sales/ReturnOrderDetail.tsx:312 +#: src/pages/sales/SalesOrderDetail.tsx:350 msgid "Order Details" msgstr "Bestelldetails" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:339 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:348 -#: src/pages/sales/ReturnOrderDetail.tsx:153 -#: src/pages/sales/ReturnOrderDetail.tsx:317 -#: src/pages/sales/ReturnOrderDetail.tsx:326 -#: src/pages/sales/SalesOrderDetail.tsx:355 -#: src/pages/sales/SalesOrderDetail.tsx:364 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:340 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:349 +#: src/pages/sales/ReturnOrderDetail.tsx:154 +#: src/pages/sales/ReturnOrderDetail.tsx:318 +#: src/pages/sales/ReturnOrderDetail.tsx:327 +#: src/pages/sales/SalesOrderDetail.tsx:356 +#: src/pages/sales/SalesOrderDetail.tsx:365 msgid "Line Items" msgstr "Positionen" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:363 -#: src/pages/sales/ReturnOrderDetail.tsx:341 -#: src/pages/sales/SalesOrderDetail.tsx:378 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:364 +#: src/pages/sales/ReturnOrderDetail.tsx:342 +#: src/pages/sales/SalesOrderDetail.tsx:379 msgid "Extra Line Items" msgstr "" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:405 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:410 msgid "Issue Purchase Order" msgstr "Bestellung aufgeben" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:413 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:418 msgid "Cancel Purchase Order" msgstr "Bestellung stornieren" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:421 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:426 msgid "Hold Purchase Order" msgstr "Bestellung halten" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:429 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:434 msgid "Complete Purchase Order" msgstr "Bestellung abschließen" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:485 -#: src/pages/sales/ReturnOrderDetail.tsx:496 -#: src/pages/sales/SalesOrderDetail.tsx:549 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:490 +#: src/pages/sales/ReturnOrderDetail.tsx:501 +#: src/pages/sales/SalesOrderDetail.tsx:554 msgid "Order Actions" msgstr "Bestellaktionen" -#: src/pages/sales/ReturnOrderDetail.tsx:114 -#: src/pages/sales/SalesOrderDetail.tsx:104 -#: src/pages/sales/SalesOrderShipmentDetail.tsx:134 +#: src/pages/sales/ReturnOrderDetail.tsx:115 +#: src/pages/sales/SalesOrderDetail.tsx:105 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:132 #: src/tables/sales/SalesOrderTable.tsx:141 msgid "Customer Reference" msgstr "Kundenreferenz" -#: src/pages/sales/ReturnOrderDetail.tsx:195 +#: src/pages/sales/ReturnOrderDetail.tsx:196 msgid "Return Address" msgstr "" -#: src/pages/sales/ReturnOrderDetail.tsx:201 -#: src/pages/sales/SalesOrderDetail.tsx:194 -#: src/pages/sales/SalesOrderShipmentDetail.tsx:181 +#: src/pages/sales/ReturnOrderDetail.tsx:202 +#: src/pages/sales/SalesOrderDetail.tsx:195 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:179 msgid "Not specified" msgstr "" @@ -8248,117 +8346,117 @@ msgstr "" #~ msgid "Order canceled" #~ msgstr "Order canceled" -#: src/pages/sales/ReturnOrderDetail.tsx:389 +#: src/pages/sales/ReturnOrderDetail.tsx:394 msgid "Edit Return Order" msgstr "Rücksendeauftrag bearbeiten" -#: src/pages/sales/ReturnOrderDetail.tsx:407 +#: src/pages/sales/ReturnOrderDetail.tsx:412 #: src/tables/sales/ReturnOrderTable.tsx:154 #: src/tables/sales/ReturnOrderTable.tsx:167 msgid "Add Return Order" msgstr "Neuer Rücksendeauftrag" -#: src/pages/sales/ReturnOrderDetail.tsx:416 +#: src/pages/sales/ReturnOrderDetail.tsx:421 msgid "Issue Return Order" msgstr "Rücksendeauftrag erstellen" -#: src/pages/sales/ReturnOrderDetail.tsx:424 +#: src/pages/sales/ReturnOrderDetail.tsx:429 msgid "Cancel Return Order" msgstr "Rücksendeauftrag stornieren" -#: src/pages/sales/ReturnOrderDetail.tsx:432 +#: src/pages/sales/ReturnOrderDetail.tsx:437 msgid "Hold Return Order" msgstr "Rücksendeauftrag halten" -#: src/pages/sales/ReturnOrderDetail.tsx:440 +#: src/pages/sales/ReturnOrderDetail.tsx:445 msgid "Complete Return Order" msgstr "Rücksendeauftrag abschließen" -#: src/pages/sales/SalesOrderDetail.tsx:153 +#: src/pages/sales/SalesOrderDetail.tsx:154 msgid "Completed Shipments" msgstr "Abgeschlossene Sendungen" -#: src/pages/sales/SalesOrderDetail.tsx:188 -#: src/pages/sales/SalesOrderShipmentDetail.tsx:170 +#: src/pages/sales/SalesOrderDetail.tsx:189 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:168 msgid "Shipping Address" msgstr "" -#: src/pages/sales/SalesOrderDetail.tsx:316 +#: src/pages/sales/SalesOrderDetail.tsx:317 msgid "Edit Sales Order" msgstr "Auftrag bearbeiten" -#: src/pages/sales/SalesOrderDetail.tsx:338 +#: src/pages/sales/SalesOrderDetail.tsx:339 #: src/tables/sales/SalesOrderTable.tsx:108 #: src/tables/sales/SalesOrderTable.tsx:121 msgid "Add Sales Order" msgstr "Auftrag hinzufügen" -#: src/pages/sales/SalesOrderDetail.tsx:396 +#: src/pages/sales/SalesOrderDetail.tsx:397 #: src/tables/sales/SalesOrderTable.tsx:147 msgid "Shipments" msgstr "Lieferungen" -#: src/pages/sales/SalesOrderDetail.tsx:443 +#: src/pages/sales/SalesOrderDetail.tsx:448 msgid "Issue Sales Order" msgstr "" -#: src/pages/sales/SalesOrderDetail.tsx:451 +#: src/pages/sales/SalesOrderDetail.tsx:456 msgid "Cancel Sales Order" msgstr "" -#: src/pages/sales/SalesOrderDetail.tsx:459 +#: src/pages/sales/SalesOrderDetail.tsx:464 msgid "Hold Sales Order" msgstr "" -#: src/pages/sales/SalesOrderDetail.tsx:467 +#: src/pages/sales/SalesOrderDetail.tsx:472 msgid "Ship Sales Order" msgstr "" -#: src/pages/sales/SalesOrderDetail.tsx:469 +#: src/pages/sales/SalesOrderDetail.tsx:474 msgid "Ship this order?" msgstr "" -#: src/pages/sales/SalesOrderDetail.tsx:470 +#: src/pages/sales/SalesOrderDetail.tsx:475 msgid "Order shipped" msgstr "Bestellung versendet" -#: src/pages/sales/SalesOrderDetail.tsx:478 +#: src/pages/sales/SalesOrderDetail.tsx:483 msgid "Complete Sales Order" msgstr "Auftrag abschließen" -#: src/pages/sales/SalesOrderDetail.tsx:523 +#: src/pages/sales/SalesOrderDetail.tsx:528 msgid "Ship Order" msgstr "Bestellung versenden" -#: src/pages/sales/SalesOrderShipmentDetail.tsx:142 -#: src/tables/sales/SalesOrderShipmentTable.tsx:135 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:140 +#: src/tables/sales/SalesOrderShipmentTable.tsx:156 msgid "Shipment Reference" msgstr "Sendungsreferenz" -#: src/pages/sales/SalesOrderShipmentDetail.tsx:148 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:146 msgid "Tracking Number" msgstr "Sendungsverfolgungsnummer" -#: src/pages/sales/SalesOrderShipmentDetail.tsx:156 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:154 msgid "Invoice Number" msgstr "Rechnungsnummer" -#: src/pages/sales/SalesOrderShipmentDetail.tsx:191 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:189 msgid "Allocated Items" msgstr "Zugeordnete Positionen" -#: src/pages/sales/SalesOrderShipmentDetail.tsx:196 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:194 msgid "Checked By" msgstr "" -#: src/pages/sales/SalesOrderShipmentDetail.tsx:202 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:200 msgid "Not checked" msgstr "" -#: src/pages/sales/SalesOrderShipmentDetail.tsx:208 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:206 #: src/tables/ColumnRenderers.tsx:518 #: src/tables/sales/SalesOrderAllocationTable.tsx:182 -#: src/tables/sales/SalesOrderShipmentTable.tsx:168 +#: src/tables/sales/SalesOrderShipmentTable.tsx:189 msgid "Shipment Date" msgstr "Versanddatum" @@ -8366,108 +8464,82 @@ msgstr "Versanddatum" #~ msgid "Assigned Items" #~ msgstr "Assigned Items" -#: src/pages/sales/SalesOrderShipmentDetail.tsx:216 -#: src/tables/sales/SalesOrderShipmentTable.tsx:172 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:214 +#: src/tables/sales/SalesOrderShipmentTable.tsx:193 msgid "Delivery Date" msgstr "Lieferdatum" -#: src/pages/sales/SalesOrderShipmentDetail.tsx:255 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:253 msgid "Shipment Details" msgstr "Lieferungsdetails" -#: src/pages/sales/SalesOrderShipmentDetail.tsx:294 -#: src/pages/sales/SalesOrderShipmentDetail.tsx:438 -#: src/tables/sales/SalesOrderShipmentTable.tsx:90 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:292 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:406 +#: src/tables/sales/SalesOrderShipmentTable.tsx:97 msgid "Edit Shipment" msgstr "Lieferung bearbeiten" -#: src/pages/sales/SalesOrderShipmentDetail.tsx:301 -#: src/pages/sales/SalesOrderShipmentDetail.tsx:457 -#: src/tables/sales/SalesOrderShipmentTable.tsx:82 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:299 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:425 +#: src/tables/sales/SalesOrderShipmentTable.tsx:89 msgid "Cancel Shipment" msgstr "Lieferung abbrechen" -#: src/pages/sales/SalesOrderShipmentDetail.tsx:314 -#: src/tables/sales/SalesOrderShipmentTable.tsx:98 -#: src/tables/sales/SalesOrderShipmentTable.tsx:193 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:312 +#: src/tables/sales/SalesOrderShipmentTable.tsx:119 +#: src/tables/sales/SalesOrderShipmentTable.tsx:238 msgid "Complete Shipment" msgstr "Lieferung fertigstellen" -#: src/pages/sales/SalesOrderShipmentDetail.tsx:326 -#: src/pages/sales/SalesOrderShipmentDetail.tsx:328 -msgid "Check Shipment" -msgstr "" - -#: src/pages/sales/SalesOrderShipmentDetail.tsx:329 -msgid "Marking the shipment as checked indicates that you have verified that all items included in this shipment are correct" -msgstr "" - #: src/pages/sales/SalesOrderShipmentDetail.tsx:339 -msgid "Shipment marked as checked" -msgstr "" - -#: src/pages/sales/SalesOrderShipmentDetail.tsx:346 -#: src/pages/sales/SalesOrderShipmentDetail.tsx:348 -msgid "Uncheck Shipment" -msgstr "" - -#: src/pages/sales/SalesOrderShipmentDetail.tsx:349 -msgid "Marking the shipment as unchecked indicates that the shipment requires further verification" -msgstr "" - -#: src/pages/sales/SalesOrderShipmentDetail.tsx:359 -msgid "Shipment marked as unchecked" -msgstr "" - -#: src/pages/sales/SalesOrderShipmentDetail.tsx:371 #: src/tables/part/PartPurchaseOrdersTable.tsx:122 msgid "Pending" msgstr "Ausstehend" -#: src/pages/sales/SalesOrderShipmentDetail.tsx:377 -#: src/tables/sales/SalesOrderShipmentTable.tsx:147 -#: src/tables/sales/SalesOrderShipmentTable.tsx:254 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:345 +#: src/tables/sales/SalesOrderShipmentTable.tsx:168 +#: src/tables/sales/SalesOrderShipmentTable.tsx:299 msgid "Checked" msgstr "" -#: src/pages/sales/SalesOrderShipmentDetail.tsx:383 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:351 msgid "Not Checked" msgstr "" -#: src/pages/sales/SalesOrderShipmentDetail.tsx:389 -#: src/tables/sales/SalesOrderShipmentTable.tsx:154 -#: src/tables/sales/SalesOrderShipmentTable.tsx:259 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:357 +#: src/tables/sales/SalesOrderShipmentTable.tsx:175 +#: src/tables/sales/SalesOrderShipmentTable.tsx:304 msgid "Shipped" msgstr "Versandt" -#: src/pages/sales/SalesOrderShipmentDetail.tsx:395 -#: src/tables/sales/SalesOrderShipmentTable.tsx:161 -#: src/tables/sales/SalesOrderShipmentTable.tsx:264 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:363 +#: src/tables/sales/SalesOrderShipmentTable.tsx:182 +#: src/tables/sales/SalesOrderShipmentTable.tsx:309 #: src/tables/settings/EmailTable.tsx:31 msgid "Delivered" msgstr "Zugestellt" -#: src/pages/sales/SalesOrderShipmentDetail.tsx:410 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:378 msgid "Send Shipment" msgstr "Lieferung senden" -#: src/pages/sales/SalesOrderShipmentDetail.tsx:433 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:401 msgid "Shipment Actions" msgstr "Aktionen für Lieferung" -#: src/pages/sales/SalesOrderShipmentDetail.tsx:442 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:410 msgid "Check" msgstr "" -#: src/pages/sales/SalesOrderShipmentDetail.tsx:443 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:411 msgid "Mark shipment as checked" msgstr "" -#: src/pages/sales/SalesOrderShipmentDetail.tsx:449 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:417 msgid "Uncheck" msgstr "" -#: src/pages/sales/SalesOrderShipmentDetail.tsx:450 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:418 msgid "Mark shipment as unchecked" msgstr "" @@ -8775,13 +8847,6 @@ msgstr "Fehler beim Laden des Icon-Pakets vom Server" msgid "Part is not active" msgstr "Teil ist nicht aktiv" -#: src/tables/ColumnRenderers.tsx:73 -#: src/tables/bom/BomTable.tsx:657 -#: src/tables/part/PartParameterTable.tsx:227 -#: src/tables/part/PartTestTemplateTable.tsx:258 -msgid "Part is Locked" -msgstr "Teil ist gesperrt" - #: src/tables/ColumnRenderers.tsx:78 msgid "You are subscribed to notifications for this part" msgstr "Sie haben Benachrichtigungen für dieses Teil abonniert" @@ -9219,13 +9284,13 @@ msgstr "Virtuelles Teil" #~ msgstr "Show asssmbled items" #: src/tables/bom/BomTable.tsx:315 -#: src/tables/build/BuildLineTable.tsx:276 +#: src/tables/build/BuildLineTable.tsx:277 #: src/tables/part/PartTable.tsx:145 msgid "External stock" msgstr "Externer Bestand" #: src/tables/bom/BomTable.tsx:323 -#: src/tables/build/BuildLineTable.tsx:239 +#: src/tables/build/BuildLineTable.tsx:240 msgid "Includes substitute stock" msgstr "Ersatz Bestand einbeziehen" @@ -9234,7 +9299,7 @@ msgstr "Ersatz Bestand einbeziehen" #~ msgstr "Edit Bom Item" #: src/tables/bom/BomTable.tsx:332 -#: src/tables/build/BuildLineTable.tsx:249 +#: src/tables/build/BuildLineTable.tsx:250 #: src/tables/sales/SalesOrderLineItemTable.tsx:166 msgid "Includes variant stock" msgstr "Alternatives Lager einschließen" @@ -9272,8 +9337,8 @@ msgid "Stock Information" msgstr "Lagerinformationen" #: src/tables/bom/BomTable.tsx:399 -#: src/tables/build/BuildLineTable.tsx:496 -#: src/tables/build/BuildLineTable.tsx:537 +#: src/tables/build/BuildLineTable.tsx:497 +#: src/tables/build/BuildLineTable.tsx:538 msgid "Consumable item" msgstr "Verbrauchsartikel" @@ -9282,7 +9347,7 @@ msgid "No available stock" msgstr "Kein Lagerbestand verfügbar" #: src/tables/bom/BomTable.tsx:420 -#: src/tables/build/BuildLineTable.tsx:213 +#: src/tables/build/BuildLineTable.tsx:214 msgid "Show testable items" msgstr "" @@ -9291,7 +9356,7 @@ msgid "Show trackable items" msgstr "Nachverfolgbare Teile anzeigen" #: src/tables/bom/BomTable.tsx:430 -#: src/tables/build/BuildLineTable.tsx:208 +#: src/tables/build/BuildLineTable.tsx:209 msgid "Show assembled items" msgstr "" @@ -9335,7 +9400,7 @@ msgstr "" #: src/tables/bom/BomTable.tsx:464 #: src/tables/bom/UsedInTable.tsx:85 -#: src/tables/build/BuildLineTable.tsx:202 +#: src/tables/build/BuildLineTable.tsx:203 msgid "Optional" msgstr "Optional" @@ -9345,7 +9410,7 @@ msgid "Show optional items" msgstr "Optionale Elemente anzeigen" #: src/tables/bom/BomTable.tsx:469 -#: src/tables/build/BuildLineTable.tsx:197 +#: src/tables/build/BuildLineTable.tsx:198 msgid "Consumable" msgstr "Verbrauchsmaterial" @@ -9420,6 +9485,7 @@ msgid "Add a single BOM item" msgstr "" #: src/tables/bom/BomTable.tsx:637 +#: src/tables/general/ParameterTable.tsx:206 #: src/tables/part/PartTable.tsx:546 msgid "Import from File" msgstr "" @@ -9433,8 +9499,8 @@ msgid "Bill of materials cannot be edited, as the part is locked" msgstr "BOM kann nicht bearbeitet werden, weil das Teil gesperrt ist" #: src/tables/bom/UsedInTable.tsx:34 -#: src/tables/build/BuildLineTable.tsx:207 -#: src/tables/part/ParametricPartTable.tsx:364 +#: src/tables/build/BuildLineTable.tsx:208 +#: src/tables/part/ParametricPartTable.tsx:29 #: src/tables/part/PartBuildAllocationsTable.tsx:60 #: src/tables/part/PartTable.tsx:209 #: src/tables/stock/StockItemTable.tsx:333 @@ -9455,11 +9521,11 @@ msgstr "Nachverfolgbar" msgid "Show trackable assemblies" msgstr "Nachverfolgbare Baugruppen anzeigen" -#: src/tables/build/BuildAllocatedStockTable.tsx:67 +#: src/tables/build/BuildAllocatedStockTable.tsx:64 msgid "Allocated to Output" msgstr "" -#: src/tables/build/BuildAllocatedStockTable.tsx:68 +#: src/tables/build/BuildAllocatedStockTable.tsx:65 msgid "Show items allocated to a build output" msgstr "" @@ -9472,50 +9538,68 @@ msgstr "" #~ msgid "Include orders for part variants" #~ msgstr "Include orders for part variants" -#: src/tables/build/BuildAllocatedStockTable.tsx:97 +#: src/tables/build/BuildAllocatedStockTable.tsx:94 #: src/tables/part/PartBuildAllocationsTable.tsx:84 #: src/tables/part/PartPurchaseOrdersTable.tsx:132 #: src/tables/part/PartSalesAllocationsTable.tsx:69 #: src/tables/sales/SalesOrderAllocationTable.tsx:122 -#: src/tables/sales/SalesOrderShipmentTable.tsx:130 +#: src/tables/sales/SalesOrderShipmentTable.tsx:151 msgid "Order Status" msgstr "Bestellstatus" +#: src/tables/build/BuildAllocatedStockTable.tsx:164 +#: src/tables/build/BuildLineTable.tsx:651 +msgid "Edit Stock Allocation" +msgstr "Bestands-Zuordnung bearbeiten" + #: src/tables/build/BuildAllocatedStockTable.tsx:164 #~ msgid "Edit Build Item" #~ msgstr "Edit Build Item" -#: src/tables/build/BuildAllocatedStockTable.tsx:167 -#: src/tables/build/BuildLineTable.tsx:650 -msgid "Edit Stock Allocation" -msgstr "Bestands-Zuordnung bearbeiten" - #: src/tables/build/BuildAllocatedStockTable.tsx:174 #~ msgid "Delete Build Item" #~ msgstr "Delete Build Item" +#: src/tables/build/BuildAllocatedStockTable.tsx:177 +#: src/tables/build/BuildLineTable.tsx:664 +#: src/tables/sales/SalesOrderAllocationTable.tsx:218 +msgid "Remove Allocated Stock" +msgstr "" + #: src/tables/build/BuildAllocatedStockTable.tsx:180 #: src/tables/build/BuildLineTable.tsx:663 -msgid "Delete Stock Allocation" -msgstr "Bestands-Zuordnung löschen" +#~ msgid "Delete Stock Allocation" +#~ msgstr "Delete Stock Allocation" -#: src/tables/build/BuildAllocatedStockTable.tsx:239 +#: src/tables/build/BuildAllocatedStockTable.tsx:182 +#: src/tables/build/BuildLineTable.tsx:669 +#: src/tables/sales/SalesOrderAllocationTable.tsx:221 +msgid "Are you sure you want to remove this allocated stock from the order?" +msgstr "" + +#: src/tables/build/BuildAllocatedStockTable.tsx:242 msgid "Consume" msgstr "Verbrauchen" +#: src/tables/build/BuildAllocatedStockTable.tsx:259 +#: src/tables/build/BuildLineTable.tsx:112 +#: src/tables/sales/SalesOrderAllocationTable.tsx:248 +msgid "Remove allocated stock" +msgstr "" + #: src/tables/build/BuildLineTable.tsx:59 #~ msgid "Show lines with available stock" #~ msgstr "Show lines with available stock" -#: src/tables/build/BuildLineTable.tsx:120 +#: src/tables/build/BuildLineTable.tsx:121 msgid "View Stock Item" msgstr "" -#: src/tables/build/BuildLineTable.tsx:183 +#: src/tables/build/BuildLineTable.tsx:184 msgid "Show fully allocated lines" msgstr "" -#: src/tables/build/BuildLineTable.tsx:188 +#: src/tables/build/BuildLineTable.tsx:189 msgid "Show fully consumed lines" msgstr "" @@ -9523,124 +9607,124 @@ msgstr "" #~ msgid "Show allocated lines" #~ msgstr "Show allocated lines" -#: src/tables/build/BuildLineTable.tsx:193 +#: src/tables/build/BuildLineTable.tsx:194 msgid "Show items with sufficient available stock" msgstr "" -#: src/tables/build/BuildLineTable.tsx:198 +#: src/tables/build/BuildLineTable.tsx:199 msgid "Show consumable lines" msgstr "Verbrauchsmaterialien anzeigen" -#: src/tables/build/BuildLineTable.tsx:203 +#: src/tables/build/BuildLineTable.tsx:204 msgid "Show optional lines" msgstr "Optionale Positionen anzeigen" -#: src/tables/build/BuildLineTable.tsx:212 +#: src/tables/build/BuildLineTable.tsx:213 #: src/tables/part/PartTable.tsx:233 msgid "Testable" msgstr "Prüfbar" -#: src/tables/build/BuildLineTable.tsx:217 +#: src/tables/build/BuildLineTable.tsx:218 #: src/tables/stock/StockItemTable.tsx:388 msgid "Tracked" msgstr "Nachverfolgbare Freigabe" -#: src/tables/build/BuildLineTable.tsx:218 +#: src/tables/build/BuildLineTable.tsx:219 msgid "Show tracked lines" msgstr "Verfolgbare Positionen anzeigen" -#: src/tables/build/BuildLineTable.tsx:223 +#: src/tables/build/BuildLineTable.tsx:224 msgid "Show items with stock on order" msgstr "" -#: src/tables/build/BuildLineTable.tsx:258 +#: src/tables/build/BuildLineTable.tsx:259 #: src/tables/sales/SalesOrderLineItemTable.tsx:172 msgid "In production" msgstr "In Produktion" -#: src/tables/build/BuildLineTable.tsx:286 +#: src/tables/build/BuildLineTable.tsx:287 msgid "Insufficient stock" msgstr "Nicht genug Lagermenge" -#: src/tables/build/BuildLineTable.tsx:302 +#: src/tables/build/BuildLineTable.tsx:303 #: src/tables/sales/SalesOrderLineItemTable.tsx:160 #: src/tables/stock/StockItemTable.tsx:191 msgid "No stock available" msgstr "Kein Lagerbestand verfügbar" -#: src/tables/build/BuildLineTable.tsx:375 +#: src/tables/build/BuildLineTable.tsx:376 msgid "Gets Inherited" msgstr "Wird vererbt" -#: src/tables/build/BuildLineTable.tsx:388 +#: src/tables/build/BuildLineTable.tsx:389 msgid "Unit Quantity" msgstr "Einheiten Menge" -#: src/tables/build/BuildLineTable.tsx:415 +#: src/tables/build/BuildLineTable.tsx:416 msgid "Setup Quantity" msgstr "" -#: src/tables/build/BuildLineTable.tsx:424 +#: src/tables/build/BuildLineTable.tsx:425 msgid "Attrition" msgstr "" -#: src/tables/build/BuildLineTable.tsx:432 +#: src/tables/build/BuildLineTable.tsx:433 msgid "Rounding Multiple" msgstr "" -#: src/tables/build/BuildLineTable.tsx:441 +#: src/tables/build/BuildLineTable.tsx:442 msgid "BOM Information" msgstr "BOM Information" -#: src/tables/build/BuildLineTable.tsx:515 +#: src/tables/build/BuildLineTable.tsx:516 #: src/tables/part/PartBuildAllocationsTable.tsx:102 msgid "Fully allocated" msgstr "Komplett zugewiesen" -#: src/tables/build/BuildLineTable.tsx:563 +#: src/tables/build/BuildLineTable.tsx:564 #: src/tables/sales/SalesOrderLineItemTable.tsx:311 msgid "Create Build Order" msgstr "" -#: src/tables/build/BuildLineTable.tsx:592 +#: src/tables/build/BuildLineTable.tsx:593 msgid "Auto allocation in progress" msgstr "" -#: src/tables/build/BuildLineTable.tsx:595 -#: src/tables/build/BuildLineTable.tsx:802 +#: src/tables/build/BuildLineTable.tsx:596 +#: src/tables/build/BuildLineTable.tsx:809 msgid "Auto Allocate Stock" msgstr "Bestand automatisch zuordnen" -#: src/tables/build/BuildLineTable.tsx:596 +#: src/tables/build/BuildLineTable.tsx:597 msgid "Automatically allocate stock to this build according to the selected options" msgstr "" -#: src/tables/build/BuildLineTable.tsx:616 -#: src/tables/build/BuildLineTable.tsx:630 -#: src/tables/build/BuildLineTable.tsx:751 -#: src/tables/build/BuildLineTable.tsx:852 +#: src/tables/build/BuildLineTable.tsx:617 +#: src/tables/build/BuildLineTable.tsx:631 +#: src/tables/build/BuildLineTable.tsx:758 +#: src/tables/build/BuildLineTable.tsx:859 #: src/tables/build/BuildOutputTable.tsx:355 #: src/tables/build/BuildOutputTable.tsx:360 msgid "Deallocate Stock" msgstr "" -#: src/tables/build/BuildLineTable.tsx:632 +#: src/tables/build/BuildLineTable.tsx:633 msgid "Deallocate all untracked stock for this build order" msgstr "" -#: src/tables/build/BuildLineTable.tsx:634 +#: src/tables/build/BuildLineTable.tsx:635 msgid "Deallocate stock from the selected line item" msgstr "" -#: src/tables/build/BuildLineTable.tsx:638 +#: src/tables/build/BuildLineTable.tsx:639 msgid "Stock has been deallocated" msgstr "" -#: src/tables/build/BuildLineTable.tsx:771 +#: src/tables/build/BuildLineTable.tsx:778 msgid "Build Stock" msgstr "Bestand bauen" -#: src/tables/build/BuildLineTable.tsx:784 +#: src/tables/build/BuildLineTable.tsx:791 #: src/tables/sales/SalesOrderLineItemTable.tsx:487 msgid "View Part" msgstr "Teil anzeigen" @@ -9739,7 +9823,7 @@ msgid "Serialize Build Output" msgstr "" #: src/tables/build/BuildOutputTable.tsx:405 -#: src/tables/part/PartTestResultTable.tsx:310 +#: src/tables/part/PartTestResultTable.tsx:318 #: src/tables/stock/StockItemTable.tsx:328 msgid "Filter by stock status" msgstr "Nach Lagerstatus filtern" @@ -9964,8 +10048,8 @@ msgid "View Item" msgstr "Element anzeigen" #: src/tables/general/ExtraLineItemTable.tsx:95 -#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:299 -#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:403 +#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:300 +#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:405 #: src/tables/sales/ReturnOrderLineItemTable.tsx:83 #: src/tables/sales/ReturnOrderLineItemTable.tsx:187 #: src/tables/sales/SalesOrderLineItemTable.tsx:252 @@ -9974,14 +10058,14 @@ msgid "Add Line Item" msgstr "Position hinzufügen" #: src/tables/general/ExtraLineItemTable.tsx:108 -#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:320 +#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:322 #: src/tables/sales/ReturnOrderLineItemTable.tsx:96 #: src/tables/sales/SalesOrderLineItemTable.tsx:271 msgid "Edit Line Item" msgstr "Position bearbeiten" #: src/tables/general/ExtraLineItemTable.tsx:117 -#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:329 +#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:331 #: src/tables/sales/ReturnOrderLineItemTable.tsx:105 #: src/tables/sales/SalesOrderLineItemTable.tsx:280 msgid "Delete Line Item" @@ -9991,6 +10075,137 @@ msgstr "Position löschen" msgid "Add Extra Line Item" msgstr "" +#: src/tables/general/ParameterTable.tsx:88 +msgid "Internal Units" +msgstr "Interne Einheiten" + +#: src/tables/general/ParameterTable.tsx:108 +#: src/tables/general/ParameterTable.tsx:123 +msgid "Updated By" +msgstr "Aktualisiert von" + +#: src/tables/general/ParameterTable.tsx:118 +msgid "Show parameters for enabled templates" +msgstr "" + +#: src/tables/general/ParameterTable.tsx:124 +msgid "Filter by user who last updated the parameter" +msgstr "" + +#: src/tables/general/ParameterTable.tsx:154 +msgid "Import Parameters" +msgstr "" + +#: src/tables/general/ParameterTable.tsx:164 +#: src/tables/general/ParametricDataTable.tsx:261 +#: src/tables/general/ParametricDataTable.tsx:392 +msgid "Add Parameter" +msgstr "Parameter hinzufügen" + +#: src/tables/general/ParameterTable.tsx:175 +#: src/tables/general/ParameterTable.tsx:222 +#: src/tables/general/ParametricDataTable.tsx:285 +msgid "Edit Parameter" +msgstr "Parameter bearbeiten" + +#: src/tables/general/ParameterTable.tsx:183 +#: src/tables/general/ParameterTable.tsx:230 +msgid "Delete Parameter" +msgstr "Parameter löschen" + +#: src/tables/general/ParameterTable.tsx:191 +msgid "Add Parameters" +msgstr "" + +#: src/tables/general/ParameterTable.tsx:197 +msgid "Create Parameter" +msgstr "" + +#: src/tables/general/ParameterTable.tsx:199 +msgid "Create a new parameter" +msgstr "" + +#: src/tables/general/ParameterTable.tsx:208 +msgid "Import parameters from a file" +msgstr "" + +#: src/tables/general/ParameterTemplateTable.tsx:48 +#: src/tables/general/ParameterTemplateTable.tsx:197 +msgid "Add Parameter Template" +msgstr "Parametervorlage hinzufügen" + +#: src/tables/general/ParameterTemplateTable.tsx:64 +msgid "Duplicate Parameter Template" +msgstr "" + +#: src/tables/general/ParameterTemplateTable.tsx:78 +msgid "Delete Parameter Template" +msgstr "Parametervorlage löschen" + +#: src/tables/general/ParameterTemplateTable.tsx:85 +msgid "Edit Parameter Template" +msgstr "Parametervorlage bearbeiten" + +#: src/tables/general/ParameterTemplateTable.tsx:138 +msgid "Checkbox" +msgstr "Checkbox" + +#: src/tables/general/ParameterTemplateTable.tsx:139 +msgid "Show checkbox templates" +msgstr "Checkbox-Vorlagen anzeigen" + +#: src/tables/general/ParameterTemplateTable.tsx:143 +msgid "Has choices" +msgstr "Hat Auswahlen" + +#: src/tables/general/ParameterTemplateTable.tsx:144 +msgid "Show templates with choices" +msgstr "Vorlagen mit Auswahlen anzeigen" + +#: src/tables/general/ParameterTemplateTable.tsx:148 +#: src/tables/part/PartTable.tsx:245 +msgid "Has Units" +msgstr "Hat Einheiten" + +#: src/tables/general/ParameterTemplateTable.tsx:149 +msgid "Show templates with units" +msgstr "Vorlagen mit Einheiten anzeigen" + +#: src/tables/general/ParameterTemplateTable.tsx:154 +msgid "Show enabled templates" +msgstr "" + +#: src/tables/general/ParameterTemplateTable.tsx:158 +#: src/tables/settings/ImportSessionTable.tsx:111 +#: src/tables/settings/TemplateTable.tsx:368 +msgid "Model Type" +msgstr "Modelltyp" + +#: src/tables/general/ParameterTemplateTable.tsx:159 +msgid "Filter by model type" +msgstr "" + +#: src/tables/general/ParametricDataTable.tsx:79 +msgid "Click to edit" +msgstr "Zum Bearbeiten klicken" + +#: src/tables/general/ParametricDataTableFilters.tsx:36 +msgid "True" +msgstr "Wahr" + +#: src/tables/general/ParametricDataTableFilters.tsx:37 +msgid "False" +msgstr "Falsch" + +#: src/tables/general/ParametricDataTableFilters.tsx:47 +#: src/tables/general/ParametricDataTableFilters.tsx:80 +msgid "Select a choice" +msgstr "Auswahl treffen" + +#: src/tables/general/ParametricDataTableFilters.tsx:100 +msgid "Enter a value" +msgstr "Wert eingeben" + #: src/tables/machine/MachineListTable.tsx:133 msgid "Machine restarted" msgstr "Maschine neu gestartet" @@ -10071,7 +10286,7 @@ msgid "Initialized" msgstr "Initialisiert" #: src/tables/machine/MachineListTable.tsx:410 -#: src/tables/machine/MachineTypeTable.tsx:307 +#: src/tables/machine/MachineTypeTable.tsx:305 msgid "No errors reported" msgstr "Keine Fehler gemeldet" @@ -10132,15 +10347,15 @@ msgstr "Integrierter Treiber" #~ msgid "Machine type information" #~ msgstr "Machine type information" -#: src/tables/machine/MachineTypeTable.tsx:128 +#: src/tables/machine/MachineTypeTable.tsx:126 msgid "Not Found" msgstr "Nicht gefunden" -#: src/tables/machine/MachineTypeTable.tsx:131 +#: src/tables/machine/MachineTypeTable.tsx:129 msgid "Machine type not found." msgstr "Maschinentyp nicht gefunden." -#: src/tables/machine/MachineTypeTable.tsx:141 +#: src/tables/machine/MachineTypeTable.tsx:139 msgid "Machine Type Information" msgstr "Informationen zum Maschinentyp" @@ -10148,34 +10363,34 @@ msgstr "Informationen zum Maschinentyp" #~ msgid "Available drivers" #~ msgstr "Available drivers" -#: src/tables/machine/MachineTypeTable.tsx:156 -#: src/tables/machine/MachineTypeTable.tsx:255 +#: src/tables/machine/MachineTypeTable.tsx:154 +#: src/tables/machine/MachineTypeTable.tsx:253 msgid "Slug" msgstr "Slug" -#: src/tables/machine/MachineTypeTable.tsx:167 -#: src/tables/machine/MachineTypeTable.tsx:276 +#: src/tables/machine/MachineTypeTable.tsx:165 +#: src/tables/machine/MachineTypeTable.tsx:274 msgid "Provider plugin" msgstr "Anbieter Plugin" -#: src/tables/machine/MachineTypeTable.tsx:179 -#: src/tables/machine/MachineTypeTable.tsx:288 +#: src/tables/machine/MachineTypeTable.tsx:177 +#: src/tables/machine/MachineTypeTable.tsx:286 msgid "Provider file" msgstr "Anbieterdatei" -#: src/tables/machine/MachineTypeTable.tsx:194 +#: src/tables/machine/MachineTypeTable.tsx:192 msgid "Available Drivers" msgstr "" -#: src/tables/machine/MachineTypeTable.tsx:234 +#: src/tables/machine/MachineTypeTable.tsx:232 msgid "Machine driver not found." msgstr "Maschinentreiber nicht gefunden." -#: src/tables/machine/MachineTypeTable.tsx:242 +#: src/tables/machine/MachineTypeTable.tsx:240 msgid "Machine driver information" msgstr "Maschinentreiber Informationen" -#: src/tables/machine/MachineTypeTable.tsx:262 +#: src/tables/machine/MachineTypeTable.tsx:260 msgid "Machine type" msgstr "Maschinentyp" @@ -10187,15 +10402,15 @@ msgstr "Maschinentyp" #~ msgid "Machine driver detail" #~ msgstr "Machine driver detail" -#: src/tables/machine/MachineTypeTable.tsx:362 +#: src/tables/machine/MachineTypeTable.tsx:360 msgid "Builtin type" msgstr "Eingebauter Typ" -#: src/tables/machine/MachineTypeTable.tsx:371 +#: src/tables/machine/MachineTypeTable.tsx:369 msgid "Machine Type Detail" msgstr "Maschinentyp-Detail" -#: src/tables/machine/MachineTypeTable.tsx:381 +#: src/tables/machine/MachineTypeTable.tsx:379 msgid "Machine Driver Detail" msgstr "" @@ -10213,52 +10428,31 @@ msgstr "Benachrichtigung" msgid "Message" msgstr "Nachricht" -#: src/tables/part/ParametricPartTable.tsx:78 -msgid "Click to edit" -msgstr "Zum Bearbeiten klicken" +#: src/tables/part/ParametricPartTable.tsx:20 +msgid "Show active parts" +msgstr "" + +#: src/tables/part/ParametricPartTable.tsx:25 +msgid "Show locked parts" +msgstr "Gesperrte Teile anzeigen" + +#: src/tables/part/ParametricPartTable.tsx:30 +msgid "Show assembly parts" +msgstr "" #: src/tables/part/ParametricPartTable.tsx:82 #~ msgid "Edit parameter" #~ msgstr "Edit parameter" #: src/tables/part/ParametricPartTable.tsx:244 -msgid "Add Part Parameter" -msgstr "Teileparameter hinzufügen" +#~ msgid "Add Part Parameter" +#~ msgstr "Add Part Parameter" #: src/tables/part/ParametricPartTable.tsx:258 #: src/tables/part/PartParameterTable.tsx:164 #: src/tables/part/PartParameterTable.tsx:187 -msgid "Edit Part Parameter" -msgstr "Teileparameter bearbeiten" - -#: src/tables/part/ParametricPartTable.tsx:355 -msgid "Show active parts" -msgstr "" - -#: src/tables/part/ParametricPartTable.tsx:360 -msgid "Show locked parts" -msgstr "Gesperrte Teile anzeigen" - -#: src/tables/part/ParametricPartTable.tsx:365 -msgid "Show assembly parts" -msgstr "" - -#: src/tables/part/ParametricPartTableFilters.tsx:36 -msgid "True" -msgstr "Wahr" - -#: src/tables/part/ParametricPartTableFilters.tsx:37 -msgid "False" -msgstr "Falsch" - -#: src/tables/part/ParametricPartTableFilters.tsx:47 -#: src/tables/part/ParametricPartTableFilters.tsx:80 -msgid "Select a choice" -msgstr "Auswahl treffen" - -#: src/tables/part/ParametricPartTableFilters.tsx:100 -msgid "Enter a value" -msgstr "Wert eingeben" +#~ msgid "Edit Part Parameter" +#~ msgstr "Edit Part Parameter" #: src/tables/part/PartBuildAllocationsTable.tsx:64 msgid "Assembly IPN" @@ -10273,7 +10467,7 @@ msgid "Required Stock" msgstr "Benötigter Bestand" #: src/tables/part/PartBuildAllocationsTable.tsx:124 -#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:381 +#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:383 msgid "View Build Order" msgstr "" @@ -10332,85 +10526,22 @@ msgstr "Kategorieparameter bearbeiten" msgid "Delete Category Parameter" msgstr "Kategorieparameter löschen" -#: src/tables/part/PartCategoryTemplateTable.tsx:87 -msgid "Parameter Template" -msgstr "Parameter Vorlage" - #: src/tables/part/PartCategoryTemplateTable.tsx:93 #~ msgid "[{0}]" #~ msgstr "[{0}]" -#: src/tables/part/PartParameterTable.tsx:108 -msgid "Internal Units" -msgstr "Interne Einheiten" - -#: src/tables/part/PartParameterTable.tsx:128 -#: src/tables/part/PartParameterTable.tsx:138 -msgid "Updated By" -msgstr "Aktualisiert von" - -#: src/tables/part/PartParameterTable.tsx:139 -msgid "Filter by user who last updated the parameter" -msgstr "" - #: src/tables/part/PartParameterTable.tsx:148 -msgid "New Part Parameter" -msgstr "Teileparameter hinzufügen" +#~ msgid "New Part Parameter" +#~ msgstr "New Part Parameter" #: src/tables/part/PartParameterTable.tsx:173 #: src/tables/part/PartParameterTable.tsx:195 -msgid "Delete Part Parameter" -msgstr "Teilparameter löschen" +#~ msgid "Delete Part Parameter" +#~ msgstr "Delete Part Parameter" #: src/tables/part/PartParameterTable.tsx:213 -msgid "Add parameter" -msgstr "Parameter hinzufügen" - -#: src/tables/part/PartParameterTable.tsx:232 -msgid "Part parameters cannot be edited, as the part is locked" -msgstr "" - -#: src/tables/part/PartParameterTemplateTable.tsx:36 -msgid "Checkbox" -msgstr "Checkbox" - -#: src/tables/part/PartParameterTemplateTable.tsx:37 -msgid "Show checkbox templates" -msgstr "Checkbox-Vorlagen anzeigen" - -#: src/tables/part/PartParameterTemplateTable.tsx:41 -msgid "Has choices" -msgstr "Hat Auswahlen" - -#: src/tables/part/PartParameterTemplateTable.tsx:42 -msgid "Show templates with choices" -msgstr "Vorlagen mit Auswahlen anzeigen" - -#: src/tables/part/PartParameterTemplateTable.tsx:46 -#: src/tables/part/PartTable.tsx:245 -msgid "Has Units" -msgstr "Hat Einheiten" - -#: src/tables/part/PartParameterTemplateTable.tsx:47 -msgid "Show templates with units" -msgstr "Vorlagen mit Einheiten anzeigen" - -#: src/tables/part/PartParameterTemplateTable.tsx:91 -#: src/tables/part/PartParameterTemplateTable.tsx:166 -msgid "Add Parameter Template" -msgstr "Parametervorlage hinzufügen" - -#: src/tables/part/PartParameterTemplateTable.tsx:105 -msgid "Duplicate Parameter Template" -msgstr "" - -#: src/tables/part/PartParameterTemplateTable.tsx:117 -msgid "Edit Parameter Template" -msgstr "Parametervorlage bearbeiten" - -#: src/tables/part/PartParameterTemplateTable.tsx:128 -msgid "Delete Parameter Template" -msgstr "Parametervorlage löschen" +#~ msgid "Add parameter" +#~ msgstr "Add parameter" #: src/tables/part/PartParameterTemplateTable.tsx:141 #~ msgid "Add parameter template" @@ -10430,7 +10561,7 @@ msgid "Show received items" msgstr "" #: src/tables/part/PartSalesAllocationsTable.tsx:90 -#: src/tables/sales/SalesOrderShipmentTable.tsx:218 +#: src/tables/sales/SalesOrderShipmentTable.tsx:263 msgid "View Sales Order" msgstr "" @@ -10617,8 +10748,8 @@ msgstr "" #: src/tables/part/PartTestResultTable.tsx:103 #: src/tables/part/PartTestResultTable.tsx:181 -#: src/tables/part/PartTestResultTable.tsx:320 -#: src/tables/part/PartTestResultTable.tsx:334 +#: src/tables/part/PartTestResultTable.tsx:328 +#: src/tables/part/PartTestResultTable.tsx:342 #: src/tables/stock/StockItemTestResultTable.tsx:296 #: src/tables/stock/StockItemTestResultTable.tsx:368 #: src/tables/stock/StockItemTestResultTable.tsx:429 @@ -10643,7 +10774,7 @@ msgstr "Testergebnisse hinzugefügt" msgid "No Result" msgstr "Kein Ergebnis" -#: src/tables/part/PartTestResultTable.tsx:298 +#: src/tables/part/PartTestResultTable.tsx:306 msgid "Show build outputs currently in production" msgstr "" @@ -11013,36 +11144,45 @@ msgstr "Installiert" #~ msgid "Parameter updated" #~ msgstr "Parameter updated" -#: src/tables/purchasing/ManufacturerPartParameterTable.tsx:63 -#: src/tables/purchasing/ManufacturerPartParameterTable.tsx:112 -msgid "Add Parameter" -msgstr "Parameter hinzufügen" - #: src/tables/purchasing/ManufacturerPartParameterTable.tsx:73 #~ msgid "Parameter deleted" #~ msgstr "Parameter deleted" -#: src/tables/purchasing/ManufacturerPartParameterTable.tsx:74 -msgid "Edit Parameter" -msgstr "Parameter bearbeiten" - #: src/tables/purchasing/ManufacturerPartParameterTable.tsx:74 #~ msgid "Are you sure you want to delete this parameter?" #~ msgstr "Are you sure you want to delete this parameter?" -#: src/tables/purchasing/ManufacturerPartParameterTable.tsx:82 -msgid "Delete Parameter" -msgstr "Parameter löschen" - -#: src/tables/purchasing/ManufacturerPartTable.tsx:63 -#~ msgid "Create Manufacturer Part" -#~ msgstr "Create Manufacturer Part" - +#: src/tables/purchasing/ManufacturerPartParametricTable.tsx:34 #: src/tables/purchasing/ManufacturerPartTable.tsx:82 #: src/tables/purchasing/SupplierPartTable.tsx:99 msgid "MPN" msgstr "MPN" +#: src/tables/purchasing/ManufacturerPartParametricTable.tsx:44 +#: src/tables/purchasing/ManufacturerPartTable.tsx:134 +#: src/tables/purchasing/SupplierPartTable.tsx:220 +msgid "Active Part" +msgstr "Aktives Teil" + +#: src/tables/purchasing/ManufacturerPartParametricTable.tsx:45 +#: src/tables/purchasing/ManufacturerPartTable.tsx:135 +msgid "Show manufacturer parts for active internal parts." +msgstr "" + +#: src/tables/purchasing/ManufacturerPartParametricTable.tsx:50 +#: src/tables/purchasing/ManufacturerPartTable.tsx:140 +msgid "Active Manufacturer" +msgstr "" + +#: src/tables/purchasing/ManufacturerPartParametricTable.tsx:51 +#: src/tables/purchasing/ManufacturerPartTable.tsx:142 +msgid "Show manufacturer parts for active manufacturers." +msgstr "" + +#: src/tables/purchasing/ManufacturerPartTable.tsx:63 +#~ msgid "Create Manufacturer Part" +#~ msgstr "Create Manufacturer Part" + #: src/tables/purchasing/ManufacturerPartTable.tsx:100 #~ msgid "Manufacturer part updated" #~ msgstr "Manufacturer part updated" @@ -11055,25 +11195,8 @@ msgstr "MPN" #~ msgid "Are you sure you want to remove this manufacturer part?" #~ msgstr "Are you sure you want to remove this manufacturer part?" -#: src/tables/purchasing/ManufacturerPartTable.tsx:134 -#: src/tables/purchasing/SupplierPartTable.tsx:220 -msgid "Active Part" -msgstr "Aktives Teil" - -#: src/tables/purchasing/ManufacturerPartTable.tsx:135 -msgid "Show manufacturer parts for active internal parts." -msgstr "" - -#: src/tables/purchasing/ManufacturerPartTable.tsx:140 -msgid "Active Manufacturer" -msgstr "" - -#: src/tables/purchasing/ManufacturerPartTable.tsx:142 -msgid "Show manufacturer parts for active manufacturers." -msgstr "" - #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:115 -#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:397 +#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:399 msgid "Import Line Items" msgstr "" @@ -11099,11 +11222,11 @@ msgstr "" #~ msgid "Add line item" #~ msgstr "Add line item" -#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:350 +#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:352 msgid "Receive line item" msgstr "Position empfangen" -#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:414 +#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:416 msgid "Receive items" msgstr "Erhaltene Artikel" @@ -11201,25 +11324,25 @@ msgid "Not shipped" msgstr "Nicht versendet" #: src/tables/sales/SalesOrderAllocationTable.tsx:211 -#: src/tables/sales/SalesOrderAllocationTable.tsx:229 +#: src/tables/sales/SalesOrderAllocationTable.tsx:235 msgid "Edit Allocation" msgstr "Zuordnung bearbeiten" #: src/tables/sales/SalesOrderAllocationTable.tsx:218 #: src/tables/sales/SalesOrderAllocationTable.tsx:241 -msgid "Delete Allocation" -msgstr "Zuordnung entfernen" +#~ msgid "Delete Allocation" +#~ msgstr "Delete Allocation" -#: src/tables/sales/SalesOrderAllocationTable.tsx:252 -#: src/tables/sales/SalesOrderAllocationTable.tsx:253 +#: src/tables/sales/SalesOrderAllocationTable.tsx:261 +#: src/tables/sales/SalesOrderAllocationTable.tsx:262 msgid "View Shipment" msgstr "Lieferung anzeigen" -#: src/tables/sales/SalesOrderAllocationTable.tsx:308 +#: src/tables/sales/SalesOrderAllocationTable.tsx:317 msgid "Assign to Shipment" msgstr "Sendung zuweisen" -#: src/tables/sales/SalesOrderAllocationTable.tsx:324 +#: src/tables/sales/SalesOrderAllocationTable.tsx:333 msgid "Assign to shipment" msgstr "Sendung zuweisen" @@ -11259,35 +11382,35 @@ msgstr "Bestand bestellen" #~ msgid "Delete Shipment" #~ msgstr "Delete Shipment" -#: src/tables/sales/SalesOrderShipmentTable.tsx:72 +#: src/tables/sales/SalesOrderShipmentTable.tsx:79 msgid "Create Shipment" msgstr "Lieferung erstellen" -#: src/tables/sales/SalesOrderShipmentTable.tsx:143 +#: src/tables/sales/SalesOrderShipmentTable.tsx:164 msgid "Items" msgstr "" -#: src/tables/sales/SalesOrderShipmentTable.tsx:203 +#: src/tables/sales/SalesOrderShipmentTable.tsx:248 msgid "Edit shipment" msgstr "Lieferung bearbeiten" -#: src/tables/sales/SalesOrderShipmentTable.tsx:211 +#: src/tables/sales/SalesOrderShipmentTable.tsx:256 msgid "Cancel shipment" msgstr "Lieferung abbrechen" -#: src/tables/sales/SalesOrderShipmentTable.tsx:241 +#: src/tables/sales/SalesOrderShipmentTable.tsx:286 msgid "Add shipment" msgstr "Lieferung hinzufügen" -#: src/tables/sales/SalesOrderShipmentTable.tsx:255 +#: src/tables/sales/SalesOrderShipmentTable.tsx:300 msgid "Show shipments which have been checked" msgstr "" -#: src/tables/sales/SalesOrderShipmentTable.tsx:260 +#: src/tables/sales/SalesOrderShipmentTable.tsx:305 msgid "Show shipments which have been shipped" msgstr "versendete Lieferungen anzeigen" -#: src/tables/sales/SalesOrderShipmentTable.tsx:265 +#: src/tables/sales/SalesOrderShipmentTable.tsx:310 msgid "Show shipments which have been delivered" msgstr "zugestellte Lieferungen anzeigen" @@ -11621,11 +11744,6 @@ msgstr "Hochgeladen" msgid "Imported Rows" msgstr "Importierte Zeilen" -#: src/tables/settings/ImportSessionTable.tsx:111 -#: src/tables/settings/TemplateTable.tsx:368 -msgid "Model Type" -msgstr "Modelltyp" - #: src/tables/settings/ImportSessionTable.tsx:112 #: src/tables/settings/TemplateTable.tsx:369 msgid "Filter by target model type" diff --git a/src/frontend/src/locales/el/messages.po b/src/frontend/src/locales/el/messages.po index 8a83aa70d4..baeb520f79 100644 --- a/src/frontend/src/locales/el/messages.po +++ b/src/frontend/src/locales/el/messages.po @@ -8,7 +8,7 @@ msgstr "" "Language: el\n" "Project-Id-Version: inventree\n" "Report-Msgid-Bugs-To: \n" -"PO-Revision-Date: 2025-11-19 19:39\n" +"PO-Revision-Date: 2025-12-07 07:36\n" "Last-Translator: \n" "Language-Team: Greek\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" @@ -22,15 +22,15 @@ msgstr "" #: src/components/items/ActionDropdown.tsx:289 #: src/pages/Index/Scan.tsx:64 msgid "Duplicate" -msgstr "" +msgstr "Δημιουργία αντιγράφου" #: lib/components/RowActions.tsx:46 #: src/components/items/ActionDropdown.tsx:245 msgid "Edit" -msgstr "" +msgstr "Επεξεργασία" #: lib/components/RowActions.tsx:56 -#: src/components/forms/ApiForm.tsx:735 +#: src/components/forms/ApiForm.tsx:754 #: src/components/items/ActionDropdown.tsx:257 #: src/components/items/RoleTable.tsx:155 #: src/hooks/UseForm.tsx:164 @@ -56,46 +56,46 @@ msgstr "Ακύρωση" #: lib/components/RowActions.tsx:136 #: src/components/nav/NavigationDrawer.tsx:190 -#: src/forms/PurchaseOrderForms.tsx:802 +#: src/forms/PurchaseOrderForms.tsx:854 #: src/forms/StockForms.tsx:796 #: src/forms/StockForms.tsx:843 -#: src/forms/StockForms.tsx:889 -#: src/forms/StockForms.tsx:928 -#: src/forms/StockForms.tsx:964 -#: src/forms/StockForms.tsx:1050 +#: src/forms/StockForms.tsx:896 +#: src/forms/StockForms.tsx:942 +#: src/forms/StockForms.tsx:980 +#: src/forms/StockForms.tsx:1066 #: src/pages/Index/Settings/AccountSettings/MFASettings.tsx:962 msgid "Actions" -msgstr "" +msgstr "Ενέργειες" #: lib/components/SearchInput.tsx:34 -#: src/components/forms/fields/RelatedModelField.tsx:408 +#: src/components/forms/fields/RelatedModelField.tsx:479 #: src/components/nav/Header.tsx:169 #: src/components/wizards/ImportPartWizard.tsx:200 #: src/components/wizards/ImportPartWizard.tsx:233 -#: src/pages/Index/Settings/UserSettings.tsx:74 -#: src/pages/part/PartDetail.tsx:1155 +#: src/pages/Index/Settings/UserSettings.tsx:75 +#: src/pages/part/PartDetail.tsx:1176 msgid "Search" -msgstr "" +msgstr "Αναζήτηση" #: lib/components/YesNoButton.tsx:20 msgid "Pass" -msgstr "" +msgstr "Επιτυχία" #: lib/components/YesNoButton.tsx:21 msgid "Fail" -msgstr "" +msgstr "Αποτυχία" #: lib/components/YesNoButton.tsx:43 #: src/tables/Filter.tsx:35 msgid "Yes" -msgstr "" +msgstr "Ναι" #: lib/components/YesNoButton.tsx:44 #: src/tables/Filter.tsx:36 msgid "No" -msgstr "" +msgstr "Όχι" -#: lib/enums/ModelInformation.tsx:28 +#: lib/enums/ModelInformation.tsx:29 #: src/components/wizards/OrderPartsWizard.tsx:279 #: src/forms/BuildForms.tsx:332 #: src/forms/BuildForms.tsx:407 @@ -103,326 +103,352 @@ msgstr "" #: src/forms/BuildForms.tsx:630 #: src/forms/BuildForms.tsx:793 #: src/forms/BuildForms.tsx:896 -#: src/forms/PurchaseOrderForms.tsx:798 +#: src/forms/PurchaseOrderForms.tsx:850 #: src/forms/ReturnOrderForms.tsx:242 -#: src/forms/SalesOrderForms.tsx:305 +#: src/forms/SalesOrderForms.tsx:384 #: src/forms/StockForms.tsx:360 #: src/forms/StockForms.tsx:791 #: src/forms/StockForms.tsx:838 -#: src/forms/StockForms.tsx:884 -#: src/forms/StockForms.tsx:923 -#: src/forms/StockForms.tsx:959 -#: src/forms/StockForms.tsx:1002 -#: src/forms/StockForms.tsx:1046 -#: src/forms/StockForms.tsx:1094 -#: src/forms/StockForms.tsx:1138 -#: src/pages/build/BuildDetail.tsx:200 -#: src/pages/part/PartDetail.tsx:1207 +#: src/forms/StockForms.tsx:891 +#: src/forms/StockForms.tsx:937 +#: src/forms/StockForms.tsx:975 +#: src/forms/StockForms.tsx:1018 +#: src/forms/StockForms.tsx:1062 +#: src/forms/StockForms.tsx:1110 +#: src/forms/StockForms.tsx:1154 +#: src/pages/build/BuildDetail.tsx:201 +#: src/pages/part/PartDetail.tsx:1228 #: src/tables/ColumnRenderers.tsx:91 +#: src/tables/part/PartTestResultTable.tsx:247 #: src/tables/part/RelatedPartTable.tsx:53 #: src/tables/stock/StockTrackingTable.tsx:87 msgid "Part" -msgstr "Εξάρτημα" +msgstr "Προϊόν" -#: lib/enums/ModelInformation.tsx:29 +#: lib/enums/ModelInformation.tsx:30 #: lib/enums/Roles.tsx:35 #: src/components/nav/NavigationDrawer.tsx:70 #: src/defaults/links.tsx:36 -#: src/pages/Index/Settings/SystemSettings.tsx:190 -#: src/pages/part/CategoryDetail.tsx:132 -#: src/pages/part/CategoryDetail.tsx:277 -#: src/pages/part/CategoryDetail.tsx:323 -#: src/pages/part/CategoryDetail.tsx:354 -#: src/pages/part/PartDetail.tsx:965 +#: src/pages/Index/Settings/SystemSettings.tsx:197 +#: src/pages/part/CategoryDetail.tsx:135 +#: src/pages/part/CategoryDetail.tsx:285 +#: src/pages/part/CategoryDetail.tsx:340 +#: src/pages/part/CategoryDetail.tsx:371 +#: src/pages/part/PartDetail.tsx:978 msgid "Parts" -msgstr "Εξαρτήματα" +msgstr "Προϊόντα" #: lib/enums/ModelInformation.tsx:37 #: src/pages/Index/Settings/AdminCenter/PartParameterPanel.tsx:13 -msgid "Part Parameter Template" -msgstr "Πρότυπο Παραμέτρων Εξαρτημάτων" +#~ msgid "Part Parameter Template" +#~ msgstr "Part Parameter Template" #: lib/enums/ModelInformation.tsx:38 -msgid "Part Parameter Templates" -msgstr "Πρότυπα Παραμέτρων Εξαρτημάτων" +#~ msgid "Part Parameter Templates" +#~ msgstr "Part Parameter Templates" + +#: lib/enums/ModelInformation.tsx:39 +msgid "Parameter" +msgstr "" + +#: lib/enums/ModelInformation.tsx:40 +#: src/components/panels/ParametersPanel.tsx:19 +#: src/components/wizards/ImportPartWizard.tsx:807 +#: src/pages/Index/Settings/AdminCenter/Index.tsx:195 +#: src/pages/Index/Settings/SystemSettings.tsx:191 +#: src/pages/part/PartDetail.tsx:943 +msgid "Parameters" +msgstr "Παράμετροι" #: lib/enums/ModelInformation.tsx:45 -msgid "Part Test Template" -msgstr "Δοκιμαστικό Πρότυπο Εξαρτημάτων" +#: src/tables/part/PartCategoryTemplateTable.tsx:87 +msgid "Parameter Template" +msgstr "Πρότυπο παραμέτρου" #: lib/enums/ModelInformation.tsx:46 -msgid "Part Test Templates" -msgstr "Δοκιμαστικά Πρότυπα Εξαρτημάτων" +#: src/pages/Index/Settings/AdminCenter/ParameterPanel.tsx:13 +msgid "Parameter Templates" +msgstr "" #: lib/enums/ModelInformation.tsx:52 +msgid "Part Test Template" +msgstr "Δοκιμαστικό Πρότυπο Προϊόντων" + +#: lib/enums/ModelInformation.tsx:53 +msgid "Part Test Templates" +msgstr "Δοκιμαστικά Πρότυπα Προϊόντων" + +#: lib/enums/ModelInformation.tsx:59 #: src/components/wizards/OrderPartsWizard.tsx:290 -#: src/pages/company/SupplierPartDetail.tsx:413 +#: src/pages/company/SupplierPartDetail.tsx:418 #: src/pages/stock/StockDetail.tsx:289 -#: src/tables/build/BuildAllocatedStockTable.tsx:155 +#: src/tables/build/BuildAllocatedStockTable.tsx:152 #: src/tables/part/PartPurchaseOrdersTable.tsx:50 +#: src/tables/purchasing/SupplierPartParametricTable.tsx:29 #: src/tables/purchasing/SupplierPartTable.tsx:83 #: src/tables/stock/StockItemTable.tsx:247 msgid "Supplier Part" -msgstr "Εξάρτημα Προμηθευτή" +msgstr "Προϊόν Προμηθευτή" -#: lib/enums/ModelInformation.tsx:53 -#: src/pages/purchasing/PurchasingIndex.tsx:92 +#: lib/enums/ModelInformation.tsx:60 +#: src/pages/purchasing/PurchasingIndex.tsx:128 msgid "Supplier Parts" -msgstr "Εξαρτήματα Προμηθευτή" +msgstr "Προϊόντα Προμηθευτή" -#: lib/enums/ModelInformation.tsx:61 -#: src/pages/company/ManufacturerPartDetail.tsx:297 -#: src/pages/company/SupplierPartDetail.tsx:161 +#: lib/enums/ModelInformation.tsx:69 +#: src/pages/company/ManufacturerPartDetail.tsx:288 +#: src/pages/company/SupplierPartDetail.tsx:162 #: src/tables/part/PartPurchaseOrdersTable.tsx:56 #: src/tables/stock/StockItemTable.tsx:253 msgid "Manufacturer Part" -msgstr "Εξάρτημα Κατασκευαστή" - -#: lib/enums/ModelInformation.tsx:62 -#: src/pages/purchasing/PurchasingIndex.tsx:109 -msgid "Manufacturer Parts" -msgstr "Εξαρτήματα Κατασκευαστή" +msgstr "Προϊόν Κατασκευαστή" #: lib/enums/ModelInformation.tsx:70 -#: src/pages/part/CategoryDetail.tsx:354 -#: src/tables/Filter.tsx:389 -msgid "Part Category" -msgstr "" - -#: lib/enums/ModelInformation.tsx:71 -#: lib/enums/Roles.tsx:37 -#: src/pages/part/CategoryDetail.tsx:271 -#: src/pages/part/CategoryDetail.tsx:345 -#: src/pages/part/PartDetail.tsx:1196 -msgid "Part Categories" -msgstr "" +#: src/pages/purchasing/PurchasingIndex.tsx:177 +msgid "Manufacturer Parts" +msgstr "Προϊόντα Κατασκευαστή" #: lib/enums/ModelInformation.tsx:79 +#: src/pages/part/CategoryDetail.tsx:371 +#: src/tables/Filter.tsx:389 +msgid "Part Category" +msgstr "Κατηγορία Προϊόντος" + +#: lib/enums/ModelInformation.tsx:80 +#: lib/enums/Roles.tsx:37 +#: src/pages/part/CategoryDetail.tsx:279 +#: src/pages/part/CategoryDetail.tsx:362 +#: src/pages/part/PartDetail.tsx:1217 +msgid "Part Categories" +msgstr "Κατηγορίες Προϊόντων" + +#: lib/enums/ModelInformation.tsx:88 #: src/forms/BuildForms.tsx:473 #: src/forms/BuildForms.tsx:633 #: src/forms/BuildForms.tsx:794 -#: src/forms/SalesOrderForms.tsx:307 +#: src/forms/SalesOrderForms.tsx:386 #: src/pages/stock/StockDetail.tsx:1005 -#: src/tables/part/PartTestResultTable.tsx:248 +#: src/tables/part/PartTestResultTable.tsx:256 #: src/tables/stock/StockTrackingTable.tsx:48 #: src/tables/stock/StockTrackingTable.tsx:55 msgid "Stock Item" -msgstr "" +msgstr "Προϊόν Αποθέματος" -#: lib/enums/ModelInformation.tsx:80 +#: lib/enums/ModelInformation.tsx:89 #: lib/enums/Roles.tsx:45 -#: src/pages/company/CompanyDetail.tsx:210 -#: src/pages/part/CategoryDetail.tsx:291 +#: src/pages/company/CompanyDetail.tsx:211 +#: src/pages/part/CategoryDetail.tsx:314 #: src/pages/part/PartStockHistoryDetail.tsx:101 #: src/pages/stock/LocationDetail.tsx:121 #: src/pages/stock/LocationDetail.tsx:180 msgid "Stock Items" -msgstr "" +msgstr "Προϊόντα Αποθέματος" -#: lib/enums/ModelInformation.tsx:88 +#: lib/enums/ModelInformation.tsx:98 #: lib/enums/Roles.tsx:47 #: src/pages/stock/LocationDetail.tsx:420 msgid "Stock Location" -msgstr "" +msgstr "Τοποθεσία Αποθέματος" -#: lib/enums/ModelInformation.tsx:89 +#: lib/enums/ModelInformation.tsx:99 #: src/pages/stock/LocationDetail.tsx:174 #: src/pages/stock/LocationDetail.tsx:412 #: src/pages/stock/StockDetail.tsx:996 msgid "Stock Locations" -msgstr "" +msgstr "Τοποθεσίες Αποθέματος" -#: lib/enums/ModelInformation.tsx:97 +#: lib/enums/ModelInformation.tsx:108 msgid "Stock Location Type" -msgstr "" - -#: lib/enums/ModelInformation.tsx:98 -msgid "Stock Location Types" -msgstr "" - -#: lib/enums/ModelInformation.tsx:103 -#: src/pages/Index/Settings/SystemSettings.tsx:248 -#: src/pages/part/PartDetail.tsx:911 -msgid "Stock History" -msgstr "" - -#: lib/enums/ModelInformation.tsx:104 -msgid "Stock Histories" -msgstr "" +msgstr "Τύπος Τοποθεσίας Αποθέματος" #: lib/enums/ModelInformation.tsx:109 +msgid "Stock Location Types" +msgstr "Τύποι Τοποθεσιών Αποθέματος" + +#: lib/enums/ModelInformation.tsx:114 +#: src/pages/Index/Settings/SystemSettings.tsx:254 +#: src/pages/part/PartDetail.tsx:900 +msgid "Stock History" +msgstr "Ιστορικό Αποθέματος" + +#: lib/enums/ModelInformation.tsx:115 +msgid "Stock Histories" +msgstr "Ιστορικά Αποθέματος" + +#: lib/enums/ModelInformation.tsx:120 msgid "Build" -msgstr "" +msgstr "Κατασκευή" -#: lib/enums/ModelInformation.tsx:110 +#: lib/enums/ModelInformation.tsx:121 msgid "Builds" -msgstr "" +msgstr "Κατασκευές" -#: lib/enums/ModelInformation.tsx:118 +#: lib/enums/ModelInformation.tsx:130 msgid "Build Line" -msgstr "" +msgstr "Γραμμή Κατασκευής" -#: lib/enums/ModelInformation.tsx:119 +#: lib/enums/ModelInformation.tsx:131 msgid "Build Lines" -msgstr "" +msgstr "Γραμμές Κατασκευής" -#: lib/enums/ModelInformation.tsx:126 +#: lib/enums/ModelInformation.tsx:138 msgid "Build Item" -msgstr "" +msgstr "Προϊόν Κατασκευής" -#: lib/enums/ModelInformation.tsx:127 +#: lib/enums/ModelInformation.tsx:139 msgid "Build Items" -msgstr "" +msgstr "Προϊόντα Κατασκευής" -#: lib/enums/ModelInformation.tsx:132 -#: src/pages/company/CompanyDetail.tsx:340 +#: lib/enums/ModelInformation.tsx:144 +#: src/pages/company/CompanyDetail.tsx:345 #: src/tables/company/CompanyTable.tsx:47 #: src/tables/company/ContactTable.tsx:67 +#: src/tables/company/ParametricCompanyTable.tsx:18 msgid "Company" -msgstr "" +msgstr "Εταιρεία" -#: lib/enums/ModelInformation.tsx:133 +#: lib/enums/ModelInformation.tsx:145 msgid "Companies" -msgstr "" +msgstr "Εταιρείες" -#: lib/enums/ModelInformation.tsx:140 -#: src/pages/build/BuildDetail.tsx:316 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:253 -#: src/pages/sales/ReturnOrderDetail.tsx:231 -#: src/pages/sales/SalesOrderDetail.tsx:224 +#: lib/enums/ModelInformation.tsx:152 +#: src/pages/build/BuildDetail.tsx:317 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:254 +#: src/pages/sales/ReturnOrderDetail.tsx:232 +#: src/pages/sales/SalesOrderDetail.tsx:225 #: src/tables/ColumnRenderers.tsx:362 #: src/tables/Filter.tsx:286 #: src/tables/TableHoverCard.tsx:101 msgid "Project Code" -msgstr "" +msgstr "Κωδικός Έργου" -#: lib/enums/ModelInformation.tsx:141 +#: lib/enums/ModelInformation.tsx:153 #: src/pages/Index/Settings/AdminCenter/Index.tsx:172 msgid "Project Codes" -msgstr "" +msgstr "Κωδικοί Έργων" -#: lib/enums/ModelInformation.tsx:147 +#: lib/enums/ModelInformation.tsx:159 #: src/components/wizards/OrderPartsWizard.tsx:338 #: src/pages/part/pricing/PurchaseHistoryPanel.tsx:33 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:550 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:555 #: src/pages/stock/StockDetail.tsx:352 #: src/tables/part/PartPurchaseOrdersTable.tsx:32 #: src/tables/stock/StockItemTable.tsx:239 #: src/tables/stock/StockTrackingTable.tsx:120 msgid "Purchase Order" -msgstr "" +msgstr "Εντολή Αγοράς" -#: lib/enums/ModelInformation.tsx:148 +#: lib/enums/ModelInformation.tsx:160 #: lib/enums/Roles.tsx:39 #: src/defaults/actions.tsx:104 -#: src/pages/Index/Settings/SystemSettings.tsx:283 -#: src/pages/company/CompanyDetail.tsx:203 -#: src/pages/company/SupplierPartDetail.tsx:266 -#: src/pages/part/PartDetail.tsx:875 -#: src/pages/purchasing/PurchasingIndex.tsx:60 +#: src/pages/Index/Settings/SystemSettings.tsx:289 +#: src/pages/company/CompanyDetail.tsx:204 +#: src/pages/company/SupplierPartDetail.tsx:267 +#: src/pages/part/PartDetail.tsx:864 +#: src/pages/purchasing/PurchasingIndex.tsx:66 msgid "Purchase Orders" -msgstr "" +msgstr "Εντολές Αγοράς" -#: lib/enums/ModelInformation.tsx:156 +#: lib/enums/ModelInformation.tsx:169 msgid "Purchase Order Line" -msgstr "" +msgstr "Γραμμή Εντολής Αγοράς" -#: lib/enums/ModelInformation.tsx:157 +#: lib/enums/ModelInformation.tsx:170 msgid "Purchase Order Lines" -msgstr "" +msgstr "Γραμμές Εντολής Αγοράς" -#: lib/enums/ModelInformation.tsx:162 -#: src/pages/build/BuildDetail.tsx:289 +#: lib/enums/ModelInformation.tsx:175 +#: src/pages/build/BuildDetail.tsx:290 #: src/pages/part/pricing/SaleHistoryPanel.tsx:24 -#: src/pages/sales/SalesOrderDetail.tsx:614 -#: src/pages/sales/SalesOrderShipmentDetail.tsx:105 -#: src/pages/sales/SalesOrderShipmentDetail.tsx:478 +#: src/pages/sales/SalesOrderDetail.tsx:619 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:103 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:446 #: src/pages/stock/StockDetail.tsx:361 #: src/tables/part/PartSalesAllocationsTable.tsx:41 #: src/tables/sales/SalesOrderAllocationTable.tsx:110 -#: src/tables/sales/SalesOrderShipmentTable.tsx:122 +#: src/tables/sales/SalesOrderShipmentTable.tsx:143 #: src/tables/stock/StockTrackingTable.tsx:131 msgid "Sales Order" -msgstr "" +msgstr "Εντολή Πώλησης" -#: lib/enums/ModelInformation.tsx:163 +#: lib/enums/ModelInformation.tsx:176 #: lib/enums/Roles.tsx:43 #: src/defaults/actions.tsx:114 -#: src/pages/Index/Settings/SystemSettings.tsx:299 -#: src/pages/company/CompanyDetail.tsx:223 -#: src/pages/part/PartDetail.tsx:887 -#: src/pages/sales/SalesIndex.tsx:84 +#: src/pages/Index/Settings/SystemSettings.tsx:305 +#: src/pages/company/CompanyDetail.tsx:224 +#: src/pages/part/PartDetail.tsx:876 +#: src/pages/sales/SalesIndex.tsx:53 msgid "Sales Orders" -msgstr "" +msgstr "Εντολές Πώλησης" -#: lib/enums/ModelInformation.tsx:171 -#: src/pages/sales/SalesOrderShipmentDetail.tsx:477 +#: lib/enums/ModelInformation.tsx:185 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:445 msgid "Sales Order Shipment" -msgstr "" +msgstr "Αποστολή Εντολής Πώλησης" -#: lib/enums/ModelInformation.tsx:172 +#: lib/enums/ModelInformation.tsx:186 msgid "Sales Order Shipments" -msgstr "" - -#: lib/enums/ModelInformation.tsx:179 -#: src/pages/sales/ReturnOrderDetail.tsx:549 -#: src/tables/stock/StockTrackingTable.tsx:142 -msgid "Return Order" -msgstr "" - -#: lib/enums/ModelInformation.tsx:180 -#: lib/enums/Roles.tsx:41 -#: src/defaults/actions.tsx:125 -#: src/pages/Index/Settings/SystemSettings.tsx:316 -#: src/pages/company/CompanyDetail.tsx:230 -#: src/pages/part/PartDetail.tsx:894 -#: src/pages/sales/SalesIndex.tsx:117 -msgid "Return Orders" -msgstr "" - -#: lib/enums/ModelInformation.tsx:188 -msgid "Return Order Line Item" -msgstr "" - -#: lib/enums/ModelInformation.tsx:189 -msgid "Return Order Line Items" -msgstr "" +msgstr "Αποστολές Εντολών Πώλησης" #: lib/enums/ModelInformation.tsx:194 -#: src/tables/company/AddressTable.tsx:52 -msgid "Address" -msgstr "" +#: src/pages/sales/ReturnOrderDetail.tsx:554 +#: src/tables/stock/StockTrackingTable.tsx:142 +msgid "Return Order" +msgstr "Εντολή Επιστροφής" #: lib/enums/ModelInformation.tsx:195 -#: src/pages/company/CompanyDetail.tsx:264 -msgid "Addresses" -msgstr "" +#: lib/enums/Roles.tsx:41 +#: src/defaults/actions.tsx:125 +#: src/pages/Index/Settings/SystemSettings.tsx:322 +#: src/pages/company/CompanyDetail.tsx:231 +#: src/pages/part/PartDetail.tsx:883 +#: src/pages/sales/SalesIndex.tsx:99 +msgid "Return Orders" +msgstr "Εντολές Επιστροφής" -#: lib/enums/ModelInformation.tsx:201 +#: lib/enums/ModelInformation.tsx:204 +msgid "Return Order Line Item" +msgstr "Προϊόν Γραμμής Εντολής Επιστροφής" + +#: lib/enums/ModelInformation.tsx:205 +msgid "Return Order Line Items" +msgstr "Προϊόντα Γραμμής Εντολής Επιστροφής" + +#: lib/enums/ModelInformation.tsx:210 +#: src/tables/company/AddressTable.tsx:52 +msgid "Address" +msgstr "Διεύθυνση" + +#: lib/enums/ModelInformation.tsx:211 +#: src/pages/company/CompanyDetail.tsx:265 +msgid "Addresses" +msgstr "Διευθύνσεις" + +#: lib/enums/ModelInformation.tsx:217 #: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:89 #: src/pages/core/UserDetail.tsx:135 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:229 -#: src/pages/sales/ReturnOrderDetail.tsx:207 -#: src/pages/sales/SalesOrderDetail.tsx:200 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:230 +#: src/pages/sales/ReturnOrderDetail.tsx:208 +#: src/pages/sales/SalesOrderDetail.tsx:201 msgid "Contact" -msgstr "" +msgstr "Επαφή" -#: lib/enums/ModelInformation.tsx:202 -#: src/pages/company/CompanyDetail.tsx:258 +#: lib/enums/ModelInformation.tsx:218 +#: src/pages/company/CompanyDetail.tsx:259 #: src/pages/core/CoreIndex.tsx:33 msgid "Contacts" -msgstr "" +msgstr "Επαφές" -#: lib/enums/ModelInformation.tsx:208 +#: lib/enums/ModelInformation.tsx:224 #: src/tables/ColumnRenderers.tsx:444 msgid "Owner" -msgstr "" +msgstr "Ιδιοκτήτης" -#: lib/enums/ModelInformation.tsx:209 +#: lib/enums/ModelInformation.tsx:225 msgid "Owners" -msgstr "" +msgstr "Ιδιοκτήτες" -#: lib/enums/ModelInformation.tsx:215 +#: lib/enums/ModelInformation.tsx:231 #: src/pages/Auth/ChangePassword.tsx:36 #: src/pages/core/UserDetail.tsx:220 #: src/tables/ColumnRenderers.tsx:395 @@ -435,22 +461,22 @@ msgstr "" #: src/tables/stock/StockTrackingTable.tsx:190 #: src/tables/stock/StockTrackingTable.tsx:218 msgid "User" -msgstr "" +msgstr "Χρήστης" -#: lib/enums/ModelInformation.tsx:216 +#: lib/enums/ModelInformation.tsx:232 #: src/components/nav/NavigationDrawer.tsx:105 #: src/pages/Index/Settings/AdminCenter/UserManagementPanel.tsx:15 #: src/pages/core/CoreIndex.tsx:21 #: src/pages/core/UserDetail.tsx:226 msgid "Users" -msgstr "" +msgstr "Χρήστες" -#: lib/enums/ModelInformation.tsx:222 +#: lib/enums/ModelInformation.tsx:238 #: src/pages/core/GroupDetail.tsx:78 msgid "Group" -msgstr "" +msgstr "Ομάδα" -#: lib/enums/ModelInformation.tsx:223 +#: lib/enums/ModelInformation.tsx:239 #: src/components/nav/NavigationDrawer.tsx:111 #: src/pages/Index/Settings/AdminCenter/UserManagementPanel.tsx:23 #: src/pages/core/CoreIndex.tsx:27 @@ -458,66 +484,66 @@ msgstr "" #: src/pages/core/UserDetail.tsx:99 #: src/tables/settings/UserTable.tsx:276 msgid "Groups" -msgstr "" - -#: lib/enums/ModelInformation.tsx:230 -msgid "Import Session" -msgstr "" - -#: lib/enums/ModelInformation.tsx:231 -msgid "Import Sessions" -msgstr "" - -#: lib/enums/ModelInformation.tsx:238 -msgid "Label Template" -msgstr "" - -#: lib/enums/ModelInformation.tsx:239 -#: src/pages/Index/Settings/AdminCenter/Index.tsx:209 -msgid "Label Templates" -msgstr "" +msgstr "Ομάδες" #: lib/enums/ModelInformation.tsx:246 -msgid "Report Template" -msgstr "" +msgid "Import Session" +msgstr "Συνεδρία Εισαγωγής" #: lib/enums/ModelInformation.tsx:247 -#: src/pages/Index/Settings/AdminCenter/Index.tsx:215 -msgid "Report Templates" -msgstr "" +msgid "Import Sessions" +msgstr "Συνεδρίες Εισαγωγής" #: lib/enums/ModelInformation.tsx:254 -#: src/components/plugins/PluginDrawer.tsx:145 -msgid "Plugin Configuration" -msgstr "" +msgid "Label Template" +msgstr "Πρότυπο Ετικέτας" #: lib/enums/ModelInformation.tsx:255 -msgid "Plugin Configurations" -msgstr "" +#: src/pages/Index/Settings/AdminCenter/Index.tsx:209 +msgid "Label Templates" +msgstr "Πρότυπα Ετικετών" #: lib/enums/ModelInformation.tsx:262 -msgid "Content Type" -msgstr "" +msgid "Report Template" +msgstr "Πρότυπο Αναφοράς" #: lib/enums/ModelInformation.tsx:263 +#: src/pages/Index/Settings/AdminCenter/Index.tsx:215 +msgid "Report Templates" +msgstr "Πρότυπα Αναφορών" + +#: lib/enums/ModelInformation.tsx:270 +#: src/components/plugins/PluginDrawer.tsx:145 +msgid "Plugin Configuration" +msgstr "Ρύθμιση Plugin" + +#: lib/enums/ModelInformation.tsx:271 +msgid "Plugin Configurations" +msgstr "Ρυθμίσεις Plugin" + +#: lib/enums/ModelInformation.tsx:278 +msgid "Content Type" +msgstr "Τύπος Περιεχομένου" + +#: lib/enums/ModelInformation.tsx:279 msgid "Content Types" -msgstr "" +msgstr "Τύποι Περιεχομένου" -#: lib/enums/ModelInformation.tsx:268 +#: lib/enums/ModelInformation.tsx:284 msgid "Selection List" -msgstr "" +msgstr "Λίστα Επιλογών" -#: lib/enums/ModelInformation.tsx:269 -#: src/pages/Index/Settings/AdminCenter/PartParameterPanel.tsx:21 +#: lib/enums/ModelInformation.tsx:285 +#: src/pages/Index/Settings/AdminCenter/ParameterPanel.tsx:21 msgid "Selection Lists" -msgstr "" +msgstr "Λίστες Επιλογών" -#: lib/enums/ModelInformation.tsx:275 +#: lib/enums/ModelInformation.tsx:291 #: src/components/barcodes/BarcodeInput.tsx:114 #: src/components/dashboard/DashboardLayout.tsx:281 #: src/components/editors/NotesEditor.tsx:74 #: src/components/editors/TemplateEditor/TemplateEditor.tsx:158 -#: src/components/forms/fields/ApiFormField.tsx:273 +#: src/components/forms/fields/ApiFormField.tsx:237 #: src/components/forms/fields/TableField.tsx:45 #: src/components/importer/ImportDataSelector.tsx:192 #: src/components/importer/ImporterColumnSelector.tsx:234 @@ -528,7 +554,7 @@ msgstr "" #: src/components/nav/SearchDrawer.tsx:572 #: src/components/settings/SettingList.tsx:139 #: src/components/wizards/ImportPartWizard.tsx:574 -#: src/components/wizards/ImportPartWizard.tsx:718 +#: src/components/wizards/ImportPartWizard.tsx:719 #: src/forms/BomForms.tsx:69 #: src/functions/auth.tsx:643 #: src/pages/ErrorPage.tsx:11 @@ -545,26 +571,26 @@ msgstr "" #: src/tables/settings/EmailTable.tsx:109 #: src/tables/stock/StockItemTestResultTable.tsx:338 msgid "Error" -msgstr "" +msgstr "Σφάλμα" -#: lib/enums/ModelInformation.tsx:276 +#: lib/enums/ModelInformation.tsx:292 #: src/tables/machine/MachineListTable.tsx:402 -#: src/tables/machine/MachineTypeTable.tsx:299 +#: src/tables/machine/MachineTypeTable.tsx:297 msgid "Errors" -msgstr "" +msgstr "Σφάλματα" #: lib/enums/Roles.tsx:31 msgid "Admin" -msgstr "" +msgstr "Διαχειριστής" #: lib/enums/Roles.tsx:33 #: src/defaults/actions.tsx:135 -#: src/pages/Index/Settings/SystemSettings.tsx:264 -#: src/pages/build/BuildIndex.tsx:75 -#: src/pages/part/PartDetail.tsx:904 -#: src/pages/sales/SalesOrderDetail.tsx:421 +#: src/pages/Index/Settings/SystemSettings.tsx:270 +#: src/pages/build/BuildIndex.tsx:67 +#: src/pages/part/PartDetail.tsx:893 +#: src/pages/sales/SalesOrderDetail.tsx:422 msgid "Build Orders" -msgstr "" +msgstr "Εντολές Κατασκευής" #: lib/enums/Roles.tsx:50 #: src/pages/Index/Settings/AdminCenter/Index.tsx:202 @@ -573,7 +599,7 @@ msgstr "" #: src/components/Boundary.tsx:12 msgid "Error rendering component" -msgstr "" +msgstr "Σφάλμα κατά την απόδοση του component" #: src/components/Boundary.tsx:14 msgid "An error occurred while rendering this component. Refer to the console for more information." @@ -585,156 +611,156 @@ msgstr "" #: src/components/barcodes/BarcodeCameraInput.tsx:103 msgid "Error while scanning" -msgstr "" +msgstr "Σφάλμα κατά τη σάρωση" #: src/components/barcodes/BarcodeCameraInput.tsx:117 msgid "Error while stopping" -msgstr "" +msgstr "Σφάλμα κατά τη διακοπή" #: src/components/barcodes/BarcodeCameraInput.tsx:159 msgid "Start scanning by selecting a camera and pressing the play button." -msgstr "" +msgstr "Ξεκινήστε τη σάρωση επιλέγοντας μια κάμερα και πατώντας το κουμπί αναπαραγωγής." #: src/components/barcodes/BarcodeCameraInput.tsx:180 msgid "Stop scanning" -msgstr "" +msgstr "Διακοπή σάρωσης" #: src/components/barcodes/BarcodeCameraInput.tsx:190 msgid "Start scanning" -msgstr "" +msgstr "Έναρξη σάρωσης" #: src/components/barcodes/BarcodeInput.tsx:34 #: src/tables/general/BarcodeScanTable.tsx:55 #: src/tables/settings/BarcodeScanHistoryTable.tsx:64 msgid "Barcode" -msgstr "" +msgstr "Γραμμοκώδικας" #: src/components/barcodes/BarcodeInput.tsx:35 #: src/components/barcodes/BarcodeKeyboardInput.tsx:18 #: src/defaults/actions.tsx:85 msgid "Scan" -msgstr "" +msgstr "Σάρωση" #: src/components/barcodes/BarcodeInput.tsx:53 msgid "Camera Input" -msgstr "" +msgstr "Είσοδος Κάμερας" #: src/components/barcodes/BarcodeInput.tsx:63 msgid "Scanner Input" -msgstr "" +msgstr "Είσοδος Σαρωτή" #: src/components/barcodes/BarcodeInput.tsx:105 msgid "Barcode Data" -msgstr "" +msgstr "Δεδομένα Γραμμοκώδικα" #: src/components/barcodes/BarcodeInput.tsx:109 msgid "No barcode data" -msgstr "" +msgstr "Δεν υπάρχουν δεδομένα γραμμοκώδικα" #: src/components/barcodes/BarcodeInput.tsx:110 msgid "Scan or enter barcode data" -msgstr "" +msgstr "Σαρώστε ή εισάγετε δεδομένα γραμμοκώδικα" #: src/components/barcodes/BarcodeKeyboardInput.tsx:64 msgid "Enter barcode data" -msgstr "" +msgstr "Εισάγετε δεδομένα γραμμοκώδικα" -#: src/components/barcodes/BarcodeScanDialog.tsx:49 -#: src/components/buttons/ScanButton.tsx:15 +#: src/components/barcodes/BarcodeScanDialog.tsx:56 +#: src/components/buttons/ScanButton.tsx:27 #: src/components/nav/NavigationDrawer.tsx:122 -#: src/forms/PurchaseOrderForms.tsx:457 -#: src/forms/PurchaseOrderForms.tsx:563 +#: src/forms/PurchaseOrderForms.tsx:509 +#: src/forms/PurchaseOrderForms.tsx:615 msgid "Scan Barcode" -msgstr "" +msgstr "Σάρωση Γραμμοκώδικα" -#: src/components/barcodes/BarcodeScanDialog.tsx:105 +#: src/components/barcodes/BarcodeScanDialog.tsx:121 msgid "No matching item found" -msgstr "" +msgstr "Δεν βρέθηκε αντίστοιχο Προϊόν" -#: src/components/barcodes/BarcodeScanDialog.tsx:134 +#: src/components/barcodes/BarcodeScanDialog.tsx:150 msgid "Barcode does not match the expected model type" -msgstr "" +msgstr "Ο γραμμοκώδικας δεν ταιριάζει με τον αναμενόμενο τύπο μοντέλου" -#: src/components/barcodes/BarcodeScanDialog.tsx:145 +#: src/components/barcodes/BarcodeScanDialog.tsx:161 #: src/components/editors/NotesEditor.tsx:84 #: src/components/editors/NotesEditor.tsx:118 -#: src/components/forms/ApiForm.tsx:465 +#: src/components/forms/ApiForm.tsx:484 #: src/components/wizards/ImportPartWizard.tsx:566 -#: src/components/wizards/ImportPartWizard.tsx:690 +#: src/components/wizards/ImportPartWizard.tsx:691 #: src/pages/Index/Settings/AdminCenter/CurrencyManagementPanel.tsx:45 #: src/tables/bom/BomTable.tsx:548 #: src/tables/settings/PendingTasksTable.tsx:68 msgid "Success" msgstr "Επιτυχία" -#: src/components/barcodes/BarcodeScanDialog.tsx:151 -msgid "Failed to handle barcode" -msgstr "" - #: src/components/barcodes/BarcodeScanDialog.tsx:167 +msgid "Failed to handle barcode" +msgstr "Αποτυχία επεξεργασίας γραμμοκώδικα" + +#: src/components/barcodes/BarcodeScanDialog.tsx:183 #: src/pages/Index/Scan.tsx:129 msgid "Failed to scan barcode" -msgstr "" +msgstr "Αποτυχία σάρωσης γραμμοκώδικα" #: src/components/barcodes/QRCode.tsx:94 msgid "Low (7%)" -msgstr "" +msgstr "Χαμηλό (7%)" #: src/components/barcodes/QRCode.tsx:95 msgid "Medium (15%)" -msgstr "" +msgstr "Μεσαίο (15%)" #: src/components/barcodes/QRCode.tsx:96 msgid "Quartile (25%)" -msgstr "" +msgstr "Τεταρτημόριο (25%)" #: src/components/barcodes/QRCode.tsx:97 msgid "High (30%)" -msgstr "" +msgstr "Υψηλό (30%)" #: src/components/barcodes/QRCode.tsx:107 msgid "Custom barcode" -msgstr "" +msgstr "Προσαρμοσμένος γραμμοκώδικας" #: src/components/barcodes/QRCode.tsx:108 msgid "A custom barcode is registered for this item. The shown code is not that custom barcode." -msgstr "" +msgstr "Ένας προσαρμοσμένος γραμμοκώδικας είναι καταχωρημένος για αυτό το Προϊόν. Ο εμφανιζόμενος κωδικός δεν είναι ο προσαρμοσμένος." #: src/components/barcodes/QRCode.tsx:127 msgid "Barcode Data:" -msgstr "" +msgstr "Δεδομένα Γραμμοκώδικα:" #: src/components/barcodes/QRCode.tsx:138 msgid "Select Error Correction Level" -msgstr "" +msgstr "Επιλογή Επιπέδου Διόρθωσης Σφαλμάτων" #: src/components/barcodes/QRCode.tsx:170 msgid "Failed to link barcode" -msgstr "" +msgstr "Αποτυχία σύνδεσης γραμμοκώδικα" #: src/components/barcodes/QRCode.tsx:179 #: src/pages/part/PartDetail.tsx:521 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:222 -#: src/pages/sales/ReturnOrderDetail.tsx:188 -#: src/pages/sales/SalesOrderDetail.tsx:181 -#: src/pages/sales/SalesOrderShipmentDetail.tsx:122 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:223 +#: src/pages/sales/ReturnOrderDetail.tsx:189 +#: src/pages/sales/SalesOrderDetail.tsx:182 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:120 #: src/pages/stock/StockDetail.tsx:186 msgid "Link" -msgstr "" +msgstr "Σύνδεση" #: src/components/barcodes/QRCode.tsx:200 msgid "This will remove the link to the associated barcode" -msgstr "" +msgstr "Αυτό θα αφαιρέσει τη σύνδεση με τον σχετικό γραμμοκώδικα" #: src/components/barcodes/QRCode.tsx:205 #: src/components/items/ActionDropdown.tsx:192 -#: src/forms/PurchaseOrderForms.tsx:554 +#: src/forms/PurchaseOrderForms.tsx:606 msgid "Unlink Barcode" -msgstr "" +msgstr "Αποσύνδεση Γραμμοκώδικα" #: src/components/buttons/AdminButton.tsx:86 msgid "Open in admin interface" -msgstr "" +msgstr "Άνοιγμα στο περιβάλλον διαχειριστή" #: src/components/buttons/CopyButton.tsx:18 #~ msgid "Copy to clipboard" @@ -750,11 +776,11 @@ msgstr "Αντιγραφή" #: src/components/buttons/PrintingActions.tsx:56 msgid "Printing Labels" -msgstr "" +msgstr "Εκτύπωση Ετικετών" #: src/components/buttons/PrintingActions.tsx:61 msgid "Printing Reports" -msgstr "" +msgstr "Εκτύπωση Αναφορών" #: src/components/buttons/PrintingActions.tsx:77 #~ msgid "Printing" @@ -774,12 +800,12 @@ msgstr "" #: src/components/buttons/PrintingActions.tsx:124 msgid "Print Label" -msgstr "" +msgstr "Εκτύπωση Ετικέτας" #: src/components/buttons/PrintingActions.tsx:134 #: src/components/buttons/PrintingActions.tsx:168 msgid "Print" -msgstr "" +msgstr "Εκτύπωση" #: src/components/buttons/PrintingActions.tsx:152 #~ msgid "Generate" @@ -795,27 +821,27 @@ msgstr "" #: src/components/buttons/PrintingActions.tsx:161 msgid "Print Report" -msgstr "" +msgstr "Εκτύπωση Αναφοράς" #: src/components/buttons/PrintingActions.tsx:189 msgid "Printing Actions" -msgstr "" +msgstr "Ενέργειες Εκτύπωσης" #: src/components/buttons/PrintingActions.tsx:195 msgid "Print Labels" -msgstr "" +msgstr "Εκτύπωση Ετικετών" #: src/components/buttons/PrintingActions.tsx:201 msgid "Print Reports" -msgstr "" +msgstr "Εκτύπωση Αναφορών" #: src/components/buttons/RemoveRowButton.tsx:9 msgid "Remove this row" -msgstr "" +msgstr "Αφαίρεση αυτής της γραμμής" #: src/components/buttons/SSOButton.tsx:40 msgid "You will be redirected to the provider for further actions." -msgstr "" +msgstr "Θα ανακατευθυνθείτε στον πάροχο για περαιτέρω ενέργειες." #: src/components/buttons/SSOButton.tsx:44 #~ msgid "This provider is not full set up." @@ -829,21 +855,21 @@ msgstr "" #~ msgid "Scan QR code" #~ msgstr "Scan QR code" -#: src/components/buttons/ScanButton.tsx:19 -msgid "Open Barcode Scanner" -msgstr "" - #: src/components/buttons/ScanButton.tsx:20 #~ msgid "Open QR code scanner" #~ msgstr "Open QR code scanner" +#: src/components/buttons/ScanButton.tsx:32 +msgid "Open Barcode Scanner" +msgstr "Άνοιγμα Σαρωτή Γραμμοκώδικα" + #: src/components/buttons/SpotlightButton.tsx:12 msgid "Open spotlight" -msgstr "" +msgstr "Άνοιγμα spotlight" #: src/components/buttons/StarredToggleButton.tsx:36 msgid "Subscription Updated" -msgstr "" +msgstr "Η συνδρομή ενημερώθηκε" #: src/components/buttons/StarredToggleButton.tsx:57 #~ msgid "Unsubscribe from part" @@ -851,63 +877,63 @@ msgstr "" #: src/components/buttons/StarredToggleButton.tsx:66 msgid "Unsubscribe from notifications" -msgstr "" +msgstr "Απεγγραφή από τις ειδοποιήσεις" #: src/components/buttons/StarredToggleButton.tsx:67 msgid "Subscribe to notifications" -msgstr "" +msgstr "Εγγραφή στις ειδοποιήσεις" #: src/components/calendar/Calendar.tsx:102 #: src/components/calendar/Calendar.tsx:165 msgid "Calendar Filters" -msgstr "" +msgstr "Φίλτρα Ημερολογίου" #: src/components/calendar/Calendar.tsx:117 msgid "Previous month" -msgstr "" +msgstr "Προηγούμενος μήνας" #: src/components/calendar/Calendar.tsx:126 msgid "Select month" -msgstr "" +msgstr "Επιλογή μήνα" #: src/components/calendar/Calendar.tsx:147 msgid "Next month" -msgstr "" +msgstr "Επόμενος μήνας" #: src/components/calendar/Calendar.tsx:178 #: src/tables/InvenTreeTableHeader.tsx:294 msgid "Download data" -msgstr "" +msgstr "Λήψη δεδομένων" #: src/components/calendar/OrderCalendar.tsx:132 msgid "Order Updated" -msgstr "" +msgstr "Η παραγγελία ενημερώθηκε" #: src/components/calendar/OrderCalendar.tsx:142 msgid "Error updating order" -msgstr "" +msgstr "Σφάλμα κατά την ενημέρωση της παραγγελίας" #: src/components/calendar/OrderCalendar.tsx:178 #: src/tables/Filter.tsx:152 msgid "Overdue" -msgstr "" +msgstr "Εκπρόθεσμο" #: src/components/dashboard/DashboardLayout.tsx:282 msgid "Failed to load dashboard widgets." -msgstr "" +msgstr "Αποτυχία φόρτωσης widgets του πίνακα ελέγχου." #: src/components/dashboard/DashboardLayout.tsx:293 msgid "No Widgets Selected" -msgstr "" +msgstr "Δεν έχουν επιλεγεί Widgets" #: src/components/dashboard/DashboardLayout.tsx:296 msgid "Use the menu to add widgets to the dashboard" -msgstr "" +msgstr "Χρησιμοποιήστε το μενού για να προσθέσετε widgets στον πίνακα ελέγχου" #: src/components/dashboard/DashboardMenu.tsx:62 #: src/components/dashboard/DashboardMenu.tsx:138 msgid "Accept Layout" -msgstr "" +msgstr "Αποδοχή Διάταξης" #: src/components/dashboard/DashboardMenu.tsx:94 #: src/components/nav/NavigationDrawer.tsx:64 @@ -915,264 +941,264 @@ msgstr "" #: src/defaults/links.tsx:31 #: src/pages/Index/Home.tsx:8 msgid "Dashboard" -msgstr "" +msgstr "Πίνακας Ελέγχου" #: src/components/dashboard/DashboardMenu.tsx:102 msgid "Edit Layout" -msgstr "" +msgstr "Επεξεργασία Διάταξης" #: src/components/dashboard/DashboardMenu.tsx:111 msgid "Add Widget" -msgstr "" +msgstr "Προσθήκη Widget" #: src/components/dashboard/DashboardMenu.tsx:120 msgid "Remove Widgets" -msgstr "" +msgstr "Αφαίρεση Widgets" #: src/components/dashboard/DashboardMenu.tsx:129 msgid "Clear Widgets" -msgstr "" +msgstr "Εκκαθάριση Widgets" #: src/components/dashboard/DashboardWidget.tsx:81 msgid "Remove this widget from the dashboard" -msgstr "" +msgstr "Αφαίρεση αυτού του widget από τον πίνακα ελέγχου" #: src/components/dashboard/DashboardWidgetDrawer.tsx:77 msgid "Filter dashboard widgets" -msgstr "" +msgstr "Φιλτράρισμα widgets του πίνακα ελέγχου" #: src/components/dashboard/DashboardWidgetDrawer.tsx:98 msgid "Add this widget to the dashboard" -msgstr "" +msgstr "Προσθήκη αυτού του widget στον πίνακα ελέγχου" #: src/components/dashboard/DashboardWidgetDrawer.tsx:123 msgid "No Widgets Available" -msgstr "" +msgstr "Δεν υπάρχουν διαθέσιμα Widgets" #: src/components/dashboard/DashboardWidgetDrawer.tsx:124 msgid "There are no more widgets available for the dashboard" -msgstr "" +msgstr "Δεν υπάρχουν άλλα διαθέσιμα widgets για τον πίνακα ελέγχου" #: src/components/dashboard/DashboardWidgetLibrary.tsx:24 msgid "Subscribed Parts" -msgstr "" +msgstr "Εγγεγραμμένα Προϊόντα" #: src/components/dashboard/DashboardWidgetLibrary.tsx:25 msgid "Show the number of parts which you have subscribed to" -msgstr "" +msgstr "Εμφανίζει τον αριθμό Προϊόντων στα οποία είστε εγγεγραμμένος" #: src/components/dashboard/DashboardWidgetLibrary.tsx:31 msgid "Subscribed Categories" -msgstr "" +msgstr "Εγγεγραμμένες Κατηγορίες" #: src/components/dashboard/DashboardWidgetLibrary.tsx:32 msgid "Show the number of part categories which you have subscribed to" -msgstr "" +msgstr "Εμφανίζει τον αριθμό κατηγοριών στις οποίες είστε εγγεγραμμένος" #: src/components/dashboard/DashboardWidgetLibrary.tsx:41 msgid "Invalid BOMs" -msgstr "" +msgstr "Μη έγκυρα BOM" #: src/components/dashboard/DashboardWidgetLibrary.tsx:42 msgid "Assemblies requiring bill of materials validation" -msgstr "" +msgstr "Συναρμολογήσεις που απαιτούν επικύρωση λίστας υλικών" #: src/components/dashboard/DashboardWidgetLibrary.tsx:53 #: src/tables/part/PartTable.tsx:263 msgid "Low Stock" -msgstr "" +msgstr "Χαμηλό Απόθεμα" #: src/components/dashboard/DashboardWidgetLibrary.tsx:55 msgid "Show the number of parts which are low on stock" -msgstr "" +msgstr "Εμφανίζει τον αριθμό Προϊόντων που έχουν χαμηλό απόθεμα" #: src/components/dashboard/DashboardWidgetLibrary.tsx:64 msgid "Required for Build Orders" -msgstr "" +msgstr "Απαιτούνται για Εντολές Κατασκευής" #: src/components/dashboard/DashboardWidgetLibrary.tsx:66 msgid "Show parts which are required for active build orders" -msgstr "" +msgstr "Εμφανίζει Προϊόντα που απαιτούνται για ενεργές εντολές κατασκευής" #: src/components/dashboard/DashboardWidgetLibrary.tsx:71 msgid "Expired Stock Items" -msgstr "" +msgstr "Ληγμένα Προϊόντα Αποθέματος" #: src/components/dashboard/DashboardWidgetLibrary.tsx:73 msgid "Show the number of stock items which have expired" -msgstr "" +msgstr "Εμφανίζει τον αριθμό Προϊόντων αποθέματος που έχουν λήξει" #: src/components/dashboard/DashboardWidgetLibrary.tsx:79 msgid "Stale Stock Items" -msgstr "" +msgstr "Παρωχημένα Προϊόντα Αποθέματος" #: src/components/dashboard/DashboardWidgetLibrary.tsx:81 msgid "Show the number of stock items which are stale" -msgstr "" +msgstr "Εμφανίζει τον αριθμό Προϊόντων αποθέματος που είναι παρωχημένα" #: src/components/dashboard/DashboardWidgetLibrary.tsx:87 msgid "Active Build Orders" -msgstr "" +msgstr "Ενεργές Εντολές Κατασκευής" #: src/components/dashboard/DashboardWidgetLibrary.tsx:89 msgid "Show the number of build orders which are currently active" -msgstr "" +msgstr "Εμφανίζει τον αριθμό εντολών κατασκευής που είναι ενεργές" #: src/components/dashboard/DashboardWidgetLibrary.tsx:94 msgid "Overdue Build Orders" -msgstr "" +msgstr "Εκπρόθεσμες Εντολές Κατασκευής" #: src/components/dashboard/DashboardWidgetLibrary.tsx:96 msgid "Show the number of build orders which are overdue" -msgstr "" +msgstr "Εμφανίζει τον αριθμό εντολών κατασκευής που είναι εκπρόθεσμες" #: src/components/dashboard/DashboardWidgetLibrary.tsx:101 msgid "Assigned Build Orders" -msgstr "" +msgstr "Ανατεθειμένες Εντολές Κατασκευής" #: src/components/dashboard/DashboardWidgetLibrary.tsx:103 msgid "Show the number of build orders which are assigned to you" -msgstr "" +msgstr "Εμφανίζει τον αριθμό εντολών κατασκευής που σας έχουν ανατεθεί" #: src/components/dashboard/DashboardWidgetLibrary.tsx:108 msgid "Active Sales Orders" -msgstr "" +msgstr "Ενεργές Εντολές Πώλησης" #: src/components/dashboard/DashboardWidgetLibrary.tsx:110 msgid "Show the number of sales orders which are currently active" -msgstr "" +msgstr "Εμφανίζει τον αριθμό εντολών πώλησης που είναι ενεργές" #: src/components/dashboard/DashboardWidgetLibrary.tsx:115 msgid "Overdue Sales Orders" -msgstr "" +msgstr "Εκπρόθεσμες Εντολές Πώλησης" #: src/components/dashboard/DashboardWidgetLibrary.tsx:117 msgid "Show the number of sales orders which are overdue" -msgstr "" +msgstr "Εμφανίζει τον αριθμό εντολών πώλησης που είναι εκπρόθεσμες" #: src/components/dashboard/DashboardWidgetLibrary.tsx:122 msgid "Assigned Sales Orders" -msgstr "" +msgstr "Ανατεθειμένες Εντολές Πώλησης" #: src/components/dashboard/DashboardWidgetLibrary.tsx:124 msgid "Show the number of sales orders which are assigned to you" -msgstr "" +msgstr "Εμφανίζει τον αριθμό εντολών πώλησης που σας έχουν ανατεθεί" #: src/components/dashboard/DashboardWidgetLibrary.tsx:129 -#: src/pages/sales/SalesIndex.tsx:105 +#: src/pages/sales/SalesIndex.tsx:87 msgid "Pending Shipments" -msgstr "" +msgstr "Εκκρεμείς Αποστολές" #: src/components/dashboard/DashboardWidgetLibrary.tsx:131 msgid "Show the number of pending sales order shipments" -msgstr "" +msgstr "Εμφανίζει τον αριθμό εκκρεμών αποστολών εντολών πώλησης" #: src/components/dashboard/DashboardWidgetLibrary.tsx:136 msgid "Active Purchase Orders" -msgstr "" +msgstr "Ενεργές Εντολές Αγοράς" #: src/components/dashboard/DashboardWidgetLibrary.tsx:138 msgid "Show the number of purchase orders which are currently active" -msgstr "" +msgstr "Εμφανίζει τον αριθμό εντολών αγοράς που είναι ενεργές" #: src/components/dashboard/DashboardWidgetLibrary.tsx:143 msgid "Overdue Purchase Orders" -msgstr "" +msgstr "Εκπρόθεσμες Εντολές Αγοράς" #: src/components/dashboard/DashboardWidgetLibrary.tsx:145 msgid "Show the number of purchase orders which are overdue" -msgstr "" +msgstr "Εμφανίζει τον αριθμό εντολών αγοράς που είναι εκπρόθεσμες" #: src/components/dashboard/DashboardWidgetLibrary.tsx:150 msgid "Assigned Purchase Orders" -msgstr "" +msgstr "Ανατεθειμένες Εντολές Αγοράς" #: src/components/dashboard/DashboardWidgetLibrary.tsx:152 msgid "Show the number of purchase orders which are assigned to you" -msgstr "" +msgstr "Εμφανίζει τον αριθμό εντολών αγοράς που σας έχουν ανατεθεί" #: src/components/dashboard/DashboardWidgetLibrary.tsx:157 msgid "Active Return Orders" -msgstr "" +msgstr "Ενεργές Εντολές Επιστροφής" #: src/components/dashboard/DashboardWidgetLibrary.tsx:159 msgid "Show the number of return orders which are currently active" -msgstr "" +msgstr "Εμφανίζει τον αριθμό εντολών επιστροφής που είναι ενεργές" #: src/components/dashboard/DashboardWidgetLibrary.tsx:164 msgid "Overdue Return Orders" -msgstr "" +msgstr "Εκπρόθεσμες Εντολές Επιστροφής" #: src/components/dashboard/DashboardWidgetLibrary.tsx:166 msgid "Show the number of return orders which are overdue" -msgstr "" +msgstr "Εμφανίζει τον αριθμό εντολών επιστροφής που είναι εκπρόθεσμες" #: src/components/dashboard/DashboardWidgetLibrary.tsx:171 msgid "Assigned Return Orders" -msgstr "" +msgstr "Ανατεθειμένες Εντολές Επιστροφής" #: src/components/dashboard/DashboardWidgetLibrary.tsx:173 msgid "Show the number of return orders which are assigned to you" -msgstr "" +msgstr "Εμφανίζει τον αριθμό εντολών επιστροφής που σας έχουν ανατεθεί" #: src/components/dashboard/DashboardWidgetLibrary.tsx:193 #: src/components/dashboard/widgets/GetStartedWidget.tsx:15 #: src/defaults/links.tsx:86 msgid "Getting Started" -msgstr "" +msgstr "Ξεκινώντας" #: src/components/dashboard/DashboardWidgetLibrary.tsx:194 #: src/defaults/links.tsx:89 msgid "Getting started with InvenTree" -msgstr "" +msgstr "Ξεκινώντας με το InvenTree" #: src/components/dashboard/DashboardWidgetLibrary.tsx:201 #: src/components/dashboard/widgets/NewsWidget.tsx:123 msgid "News Updates" -msgstr "" +msgstr "Ενημερώσεις Ειδήσεων" #: src/components/dashboard/DashboardWidgetLibrary.tsx:202 msgid "The latest news from InvenTree" -msgstr "" +msgstr "Οι τελευταίες ειδήσεις από το InvenTree" #: src/components/dashboard/widgets/ColorToggleWidget.tsx:18 #: src/components/nav/MainMenu.tsx:93 msgid "Change Color Mode" -msgstr "" +msgstr "Αλλαγή λειτουργίας χρώματος" #: src/components/dashboard/widgets/ColorToggleWidget.tsx:23 msgid "Change the color mode of the user interface" -msgstr "" +msgstr "Αλλάξτε τη λειτουργία χρώματος του περιβάλλοντος χρήστη" #: src/components/dashboard/widgets/LanguageSelectWidget.tsx:18 msgid "Change Language" -msgstr "" +msgstr "Αλλαγή γλώσσας" #: src/components/dashboard/widgets/LanguageSelectWidget.tsx:23 msgid "Change the language of the user interface" -msgstr "" +msgstr "Αλλάξτε τη γλώσσα του περιβάλλοντος χρήστη" #: src/components/dashboard/widgets/NewsWidget.tsx:60 #: src/components/nav/NotificationDrawer.tsx:94 #: src/pages/Notifications.tsx:53 msgid "Mark as read" -msgstr "" +msgstr "Σήμανση ως αναγνωσμένο" #: src/components/dashboard/widgets/NewsWidget.tsx:115 msgid "Requires Superuser" -msgstr "" +msgstr "Απαιτεί Superuser" #: src/components/dashboard/widgets/NewsWidget.tsx:116 msgid "This widget requires superuser permissions" -msgstr "" +msgstr "Αυτό το widget απαιτεί δικαιώματα superuser" #: src/components/dashboard/widgets/NewsWidget.tsx:133 msgid "No News" -msgstr "" +msgstr "Δεν υπάρχουν νέα" #: src/components/dashboard/widgets/NewsWidget.tsx:134 msgid "There are no unread news items" -msgstr "" +msgstr "Δεν υπάρχουν μη αναγνωσμένα νέα" #: src/components/details/Details.tsx:117 #~ msgid "Email:" @@ -1184,22 +1210,22 @@ msgstr "" #: src/pages/core/UserDetail.tsx:203 #: src/tables/settings/UserTable.tsx:410 msgid "Superuser" -msgstr "" +msgstr "Superuser" #: src/components/details/Details.tsx:124 #: src/pages/core/UserDetail.tsx:87 #: src/pages/core/UserDetail.tsx:200 #: src/tables/settings/UserTable.tsx:405 msgid "Staff" -msgstr "" +msgstr "Προσωπικό" #: src/components/details/Details.tsx:125 msgid "Email: " -msgstr "" +msgstr "Email: " #: src/components/details/Details.tsx:411 msgid "No name defined" -msgstr "" +msgstr "Δεν έχει οριστεί όνομα" #: src/components/details/DetailsImage.tsx:77 msgid "Remove Image" @@ -1210,12 +1236,18 @@ msgid "Remove the associated image from this item?" msgstr "Αφαίρεση της σχετικής εικόνας από αυτό το στοιχείο;" #: src/components/details/DetailsImage.tsx:83 -#: src/forms/StockForms.tsx:888 +#: src/forms/StockForms.tsx:895 #: src/pages/Index/Settings/AccountSettings/MFASettings.tsx:324 #: src/pages/Index/Settings/AccountSettings/MFASettings.tsx:415 #: src/pages/Index/Settings/AccountSettings/MFASettings.tsx:884 #: src/pages/Index/Settings/AccountSettings/MFASettings.tsx:903 #: src/pages/Index/Settings/AccountSettings/SecurityContent.tsx:254 +#: src/tables/build/BuildAllocatedStockTable.tsx:178 +#: src/tables/build/BuildAllocatedStockTable.tsx:258 +#: src/tables/build/BuildLineTable.tsx:111 +#: src/tables/build/BuildLineTable.tsx:665 +#: src/tables/sales/SalesOrderAllocationTable.tsx:224 +#: src/tables/sales/SalesOrderAllocationTable.tsx:247 msgid "Remove" msgstr "Αφαίρεση" @@ -1229,24 +1261,24 @@ msgstr "Κάντε κλικ για να επιλέξετε αρχείο(α)" #: src/components/details/DetailsImage.tsx:172 msgid "Image uploaded" -msgstr "" +msgstr "Η εικόνα μεταφορτώθηκε" #: src/components/details/DetailsImage.tsx:173 msgid "Image has been uploaded successfully" -msgstr "" +msgstr "Η εικόνα μεταφορτώθηκε με επιτυχία" #: src/components/details/DetailsImage.tsx:180 #: src/tables/general/AttachmentTable.tsx:201 msgid "Upload Error" -msgstr "" +msgstr "Σφάλμα μεταφόρτωσης" #: src/components/details/DetailsImage.tsx:250 -#: src/components/forms/fields/TextField.tsx:65 +#: src/components/forms/fields/AutoFillRightSection.tsx:34 msgid "Clear" msgstr "Εκκαθάριση" #: src/components/details/DetailsImage.tsx:256 -#: src/components/forms/ApiForm.tsx:677 +#: src/components/forms/ApiForm.tsx:696 #: src/contexts/ThemeContext.tsx:44 #: src/pages/Index/Settings/AccountSettings/MFASettings.tsx:149 #: src/pages/Index/Settings/AccountSettings/MFASettings.tsx:568 @@ -1263,7 +1295,7 @@ msgstr "Επιλέξτε εικόνα" #: src/components/details/DetailsImage.tsx:324 msgid "Download remote image" -msgstr "" +msgstr "Λήψη απομακρυσμένης εικόνας" #: src/components/details/DetailsImage.tsx:339 msgid "Upload new image" @@ -1279,11 +1311,11 @@ msgstr "Διαγραφή εικόνας" #: src/components/details/DetailsImage.tsx:393 msgid "Download Image" -msgstr "" +msgstr "Λήψη εικόνας" #: src/components/details/DetailsImage.tsx:398 msgid "Image downloaded successfully" -msgstr "" +msgstr "Η εικόνα λήφθηκε με επιτυχία" #: src/components/details/PartIcons.tsx:43 #~ msgid "Part is a template part (variants can be made from this part)" @@ -1315,23 +1347,23 @@ msgstr "" #: src/components/editors/NotesEditor.tsx:75 msgid "Image upload failed" -msgstr "" +msgstr "Αποτυχία μεταφόρτωσης εικόνας" #: src/components/editors/NotesEditor.tsx:85 msgid "Image uploaded successfully" -msgstr "" +msgstr "Η εικόνα μεταφορτώθηκε με επιτυχία" #: src/components/editors/NotesEditor.tsx:119 msgid "Notes saved successfully" -msgstr "" +msgstr "Οι σημειώσεις αποθηκεύτηκαν με επιτυχία" #: src/components/editors/NotesEditor.tsx:130 msgid "Failed to save notes" -msgstr "" +msgstr "Αποτυχία αποθήκευσης σημειώσεων" #: src/components/editors/NotesEditor.tsx:133 msgid "Error Saving Notes" -msgstr "" +msgstr "Σφάλμα αποθήκευσης σημειώσεων" #: src/components/editors/NotesEditor.tsx:151 #~ msgid "Disable Editing" @@ -1339,15 +1371,15 @@ msgstr "" #: src/components/editors/NotesEditor.tsx:153 msgid "Save Notes" -msgstr "" +msgstr "Αποθήκευση σημειώσεων" #: src/components/editors/NotesEditor.tsx:172 msgid "Close Editor" -msgstr "" +msgstr "Κλείσιμο επεξεργαστή" #: src/components/editors/NotesEditor.tsx:179 msgid "Enable Editing" -msgstr "" +msgstr "Ενεργοποίηση επεξεργασίας" #: src/components/editors/NotesEditor.tsx:198 #~ msgid "Preview Notes" @@ -1367,7 +1399,7 @@ msgstr "Κωδικός" #: src/components/editors/TemplateEditor/PdfPreview/PdfPreview.tsx:50 msgid "Error rendering preview" -msgstr "" +msgstr "Σφάλμα δημιουργίας προεπισκόπησης" #: src/components/editors/TemplateEditor/PdfPreview/PdfPreview.tsx:120 msgid "Preview not available, click \"Reload Preview\"." @@ -1391,12 +1423,12 @@ msgstr "Σφάλμα αποθήκευσης προτύπου" #: src/components/editors/TemplateEditor/TemplateEditor.tsx:159 msgid "Could not load the template from the server." -msgstr "" +msgstr "Δεν ήταν δυνατή η φόρτωση του προτύπου από τον διακομιστή." #: src/components/editors/TemplateEditor/TemplateEditor.tsx:176 #: src/components/editors/TemplateEditor/TemplateEditor.tsx:319 msgid "Save & Reload Preview" -msgstr "" +msgstr "Αποθήκευση & Επαναφόρτωση Προεπισκόπησης" #: src/components/editors/TemplateEditor/TemplateEditor.tsx:181 msgid "Are you sure you want to Save & Reload the preview?" @@ -1420,7 +1452,7 @@ msgstr "Η προεπισκόπηση ενημερώθηκε με επιτυχί #: src/components/editors/TemplateEditor/TemplateEditor.tsx:236 msgid "An unknown error occurred while rendering the preview." -msgstr "" +msgstr "Προέκυψε άγνωστο σφάλμα κατά την απόδοση της προεπισκόπησης." #: src/components/editors/TemplateEditor/TemplateEditor.tsx:263 #~ msgid "Save & Reload preview" @@ -1444,7 +1476,7 @@ msgstr "Αποθήκευση του τρέχοντος προτύπου και #: src/components/editors/TemplateEditor/TemplateEditor.tsx:379 msgid "Select instance to preview" -msgstr "" +msgstr "Επιλέξτε Προϊόν για προεπισκόπηση" #: src/components/editors/TemplateEditor/TemplateEditor.tsx:423 msgid "Error rendering template" @@ -1452,55 +1484,55 @@ msgstr "Σφάλμα αποτύπωσης προτύπου" #: src/components/errors/ClientError.tsx:23 msgid "Client Error" -msgstr "" +msgstr "Σφάλμα πελάτη" #: src/components/errors/ClientError.tsx:24 msgid "Client error occurred" -msgstr "" +msgstr "Προέκυψε σφάλμα πελάτη" #: src/components/errors/GenericErrorPage.tsx:50 msgid "Status Code" -msgstr "" +msgstr "Κωδικός κατάστασης" #: src/components/errors/GenericErrorPage.tsx:63 msgid "Return to the index page" -msgstr "" +msgstr "Επιστροφή στην αρχική σελίδα" #: src/components/errors/NotAuthenticated.tsx:8 msgid "Not Authenticated" -msgstr "" +msgstr "Μη πιστοποιημένος" #: src/components/errors/NotAuthenticated.tsx:9 msgid "You are not logged in." -msgstr "" +msgstr "Δεν έχετε συνδεθεί." #: src/components/errors/NotFound.tsx:8 msgid "Page Not Found" -msgstr "" +msgstr "Η σελίδα δεν βρέθηκε" #: src/components/errors/NotFound.tsx:9 msgid "This page does not exist" -msgstr "" +msgstr "Αυτή η σελίδα δεν υπάρχει" #: src/components/errors/PermissionDenied.tsx:8 #: src/functions/notifications.tsx:25 msgid "Permission Denied" -msgstr "" +msgstr "Άρνηση πρόσβασης" #: src/components/errors/PermissionDenied.tsx:9 msgid "You do not have permission to view this page." -msgstr "" +msgstr "Δεν έχετε δικαίωμα πρόσβασης σε αυτήν τη σελίδα." #: src/components/errors/ServerError.tsx:8 msgid "Server Error" -msgstr "" +msgstr "Σφάλμα διακομιστή" #: src/components/errors/ServerError.tsx:9 msgid "A server error occurred" -msgstr "" +msgstr "Προέκυψε σφάλμα διακομιστή" -#: src/components/forms/ApiForm.tsx:103 -#: src/components/forms/ApiForm.tsx:594 +#: src/components/forms/ApiForm.tsx:107 +#: src/components/forms/ApiForm.tsx:613 msgid "Form Error" msgstr "Σφάλμα Φόρμας" @@ -1508,11 +1540,11 @@ msgstr "Σφάλμα Φόρμας" #~ msgid "Form Errors Exist" #~ msgstr "Form Errors Exist" -#: src/components/forms/ApiForm.tsx:604 +#: src/components/forms/ApiForm.tsx:623 msgid "Errors exist for one or more form fields" -msgstr "" +msgstr "Υπάρχουν σφάλματα σε ένα ή περισσότερα πεδία της φόρμας" -#: src/components/forms/ApiForm.tsx:715 +#: src/components/forms/ApiForm.tsx:734 #: src/hooks/UseForm.tsx:133 #: src/tables/plugin/PluginListTable.tsx:204 msgid "Update" @@ -1543,14 +1575,14 @@ msgstr "Επιτυχής σύνδεση" #: src/components/forms/AuthenticationForm.tsx:74 msgid "Logged in successfully" -msgstr "" +msgstr "Συνδεθήκατε με επιτυχία" #: src/components/forms/AuthenticationForm.tsx:81 #: src/components/forms/AuthenticationForm.tsx:89 #: src/functions/auth.tsx:132 #: src/functions/auth.tsx:141 msgid "Login failed" -msgstr "" +msgstr "Αποτυχία σύνδεσης" #: src/components/forms/AuthenticationForm.tsx:82 #: src/components/forms/AuthenticationForm.tsx:90 @@ -1558,31 +1590,31 @@ msgstr "" #: src/functions/auth.tsx:133 #: src/functions/auth.tsx:313 msgid "Check your input and try again." -msgstr "" +msgstr "Ελέγξτε τα στοιχεία σας και προσπαθήστε ξανά." #: src/components/forms/AuthenticationForm.tsx:100 #: src/functions/auth.tsx:304 msgid "Mail delivery successful" -msgstr "" +msgstr "Το email στάλθηκε με επιτυχία" #: src/components/forms/AuthenticationForm.tsx:101 msgid "Check your inbox for the login link. If you have an account, you will receive a login link. Check in spam too." -msgstr "" +msgstr "Ελέγξτε το inbox σας για τον σύνδεσμο σύνδεσης. Αν έχετε λογαριασμό, θα λάβετε έναν σύνδεσμο. Ελέγξτε και τα spam." #: src/components/forms/AuthenticationForm.tsx:105 msgid "Mail delivery failed" -msgstr "" +msgstr "Αποτυχία αποστολής email" #: src/components/forms/AuthenticationForm.tsx:125 msgid "Or continue with other methods" -msgstr "" +msgstr "Ή συνεχίστε με άλλες μεθόδους" #: src/components/forms/AuthenticationForm.tsx:136 #: src/components/forms/AuthenticationForm.tsx:296 #: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:64 #: src/pages/core/UserDetail.tsx:48 msgid "Username" -msgstr "" +msgstr "Όνομα χρήστη" #: src/components/forms/AuthenticationForm.tsx:136 #~ msgid "I will use username and password" @@ -1591,122 +1623,121 @@ msgstr "" #: src/components/forms/AuthenticationForm.tsx:138 #: src/components/forms/AuthenticationForm.tsx:298 msgid "Your username" -msgstr "" +msgstr "Το όνομα χρήστη σας" #: src/components/forms/AuthenticationForm.tsx:143 #: src/components/forms/AuthenticationForm.tsx:311 #: src/pages/Auth/ResetPassword.tsx:34 #: src/pages/Index/Settings/AccountSettings/MFASettings.tsx:193 msgid "Password" -msgstr "" +msgstr "Κωδικός πρόσβασης" #: src/components/forms/AuthenticationForm.tsx:145 #: src/components/forms/AuthenticationForm.tsx:313 msgid "Your password" -msgstr "" +msgstr "Ο κωδικός πρόσβασής σας" #: src/components/forms/AuthenticationForm.tsx:164 msgid "Reset password" -msgstr "" +msgstr "Επαναφορά κωδικού" #: src/components/forms/AuthenticationForm.tsx:173 #: src/components/forms/AuthenticationForm.tsx:303 #: src/pages/Auth/Reset.tsx:17 #: src/pages/core/UserDetail.tsx:71 msgid "Email" -msgstr "" +msgstr "Email" #: src/components/forms/AuthenticationForm.tsx:174 #: src/pages/Auth/Reset.tsx:18 msgid "We will send you a link to login - if you are registered" -msgstr "" +msgstr "Θα σας στείλουμε έναν σύνδεσμο σύνδεσης — αν είστε εγγεγραμμένος" #: src/components/forms/AuthenticationForm.tsx:190 msgid "Send me an email" -msgstr "" +msgstr "Στείλτε μου email" #: src/components/forms/AuthenticationForm.tsx:192 msgid "Use username and password" -msgstr "" +msgstr "Χρήση ονόματος χρήστη και κωδικού" #: src/components/forms/AuthenticationForm.tsx:201 msgid "Log In" -msgstr "" +msgstr "Σύνδεση" #: src/components/forms/AuthenticationForm.tsx:203 #: src/pages/Auth/Reset.tsx:26 msgid "Send Email" -msgstr "" +msgstr "Αποστολή Email" #: src/components/forms/AuthenticationForm.tsx:239 msgid "Passwords do not match" -msgstr "" +msgstr "Οι κωδικοί δεν ταιριάζουν" #: src/components/forms/AuthenticationForm.tsx:256 msgid "Registration successful" -msgstr "" +msgstr "Επιτυχής εγγραφή" #: src/components/forms/AuthenticationForm.tsx:257 msgid "Please confirm your email address to complete the registration" -msgstr "" +msgstr "Επιβεβαιώστε το email σας για να ολοκληρωθεί η εγγραφή" #: src/components/forms/AuthenticationForm.tsx:280 msgid "Input error" -msgstr "" +msgstr "Σφάλμα εισαγωγής" #: src/components/forms/AuthenticationForm.tsx:281 msgid "Check your input and try again. " -msgstr "" +msgstr "Ελέγξτε τα στοιχεία και προσπαθήστε ξανά. " #: src/components/forms/AuthenticationForm.tsx:305 msgid "This will be used for a confirmation" -msgstr "" +msgstr "Αυτό θα χρησιμοποιηθεί για επιβεβαίωση" #: src/components/forms/AuthenticationForm.tsx:318 msgid "Password repeat" -msgstr "" +msgstr "Επανάληψη κωδικού" #: src/components/forms/AuthenticationForm.tsx:320 msgid "Repeat password" -msgstr "" +msgstr "Επαναλάβετε τον κωδικό" #: src/components/forms/AuthenticationForm.tsx:332 #: src/pages/Auth/Login.tsx:121 #: src/pages/Auth/Register.tsx:13 msgid "Register" -msgstr "" +msgstr "Εγγραφή" #: src/components/forms/AuthenticationForm.tsx:338 msgid "Or use SSO" -msgstr "" +msgstr "Ή χρησιμοποιήστε SSO" #: src/components/forms/AuthenticationForm.tsx:348 msgid "Registration not active" -msgstr "" +msgstr "Η εγγραφή δεν είναι ενεργή" #: src/components/forms/AuthenticationForm.tsx:349 msgid "This might be related to missing mail settings or could be a deliberate decision." -msgstr "" +msgstr "Αυτό μπορεί να οφείλεται σε ελλιπείς ρυθμίσεις email ή να είναι σκόπιμη επιλογή." #: src/components/forms/HostOptionsForm.tsx:36 #: src/components/forms/HostOptionsForm.tsx:67 msgid "Host" -msgstr "" +msgstr "Υπολογιστής/Host" #: src/components/forms/HostOptionsForm.tsx:42 #: src/components/forms/HostOptionsForm.tsx:70 #: src/components/forms/InstanceOptions.tsx:124 #: src/components/plugins/PluginDrawer.tsx:68 #: src/pages/Index/Settings/AdminCenter/UnitManagementPanel.tsx:19 -#: src/pages/part/CategoryDetail.tsx:88 +#: src/pages/part/CategoryDetail.tsx:91 #: src/pages/part/PartDetail.tsx:446 #: src/pages/stock/LocationDetail.tsx:82 #: src/tables/machine/MachineTypeTable.tsx:67 -#: src/tables/machine/MachineTypeTable.tsx:151 -#: src/tables/machine/MachineTypeTable.tsx:254 -#: src/tables/machine/MachineTypeTable.tsx:357 +#: src/tables/machine/MachineTypeTable.tsx:149 +#: src/tables/machine/MachineTypeTable.tsx:252 +#: src/tables/machine/MachineTypeTable.tsx:355 #: src/tables/plugin/PluginErrorTable.tsx:33 -#: src/tables/purchasing/ManufacturerPartParameterTable.tsx:36 #: src/tables/settings/ApiTokenTable.tsx:57 #: src/tables/settings/GroupTable.tsx:95 #: src/tables/settings/GroupTable.tsx:148 @@ -1714,22 +1745,22 @@ msgstr "" #: src/tables/settings/PendingTasksTable.tsx:37 #: src/tables/stock/LocationTypesTable.tsx:74 msgid "Name" -msgstr "" +msgstr "Όνομα" #: src/components/forms/HostOptionsForm.tsx:75 msgid "No one here..." -msgstr "" +msgstr "Κανένας εδώ..." #: src/components/forms/HostOptionsForm.tsx:86 msgid "Add Host" -msgstr "" +msgstr "Προσθήκη Host" #: src/components/forms/HostOptionsForm.tsx:90 #: src/components/items/RoleTable.tsx:224 #: src/components/items/TransferList.tsx:215 #: src/components/items/TransferList.tsx:223 msgid "Save" -msgstr "" +msgstr "Αποθήκευση" #: src/components/forms/InstanceOptions.tsx:43 #~ msgid "Select destination instance" @@ -1737,12 +1768,12 @@ msgstr "" #: src/components/forms/InstanceOptions.tsx:58 msgid "Select Server" -msgstr "" +msgstr "Επιλέξτε Διακομιστή" #: src/components/forms/InstanceOptions.tsx:68 #: src/components/forms/InstanceOptions.tsx:92 msgid "Edit host options" -msgstr "" +msgstr "Επεξεργασία επιλογών host" #: src/components/forms/InstanceOptions.tsx:71 #~ msgid "Edit possible host options" @@ -1750,7 +1781,7 @@ msgstr "" #: src/components/forms/InstanceOptions.tsx:76 msgid "Save host selection" -msgstr "" +msgstr "Αποθήκευση επιλογής host" #: src/components/forms/InstanceOptions.tsx:98 #~ msgid "Version: {0}" @@ -1769,115 +1800,117 @@ msgstr "" #~ msgstr "State: <0>worker ({0}), <1>plugins{1}" #: src/components/forms/InstanceOptions.tsx:118 -#: src/pages/Index/Settings/SystemSettings.tsx:45 +#: src/pages/Index/Settings/SystemSettings.tsx:46 msgid "Server" -msgstr "" +msgstr "Διακομιστής" #: src/components/forms/InstanceOptions.tsx:130 #: src/components/plugins/PluginDrawer.tsx:88 #: src/tables/plugin/PluginListTable.tsx:127 msgid "Version" -msgstr "" +msgstr "Έκδοση" #: src/components/forms/InstanceOptions.tsx:136 #: src/components/modals/AboutInvenTreeModal.tsx:124 #: src/components/modals/ServerInfoModal.tsx:34 msgid "API Version" -msgstr "" +msgstr "Έκδοση API" #: src/components/forms/InstanceOptions.tsx:142 #: src/components/nav/NavigationDrawer.tsx:197 #: src/pages/Index/Settings/AdminCenter/Index.tsx:228 #: src/pages/Index/Settings/AdminCenter/PluginManagementPanel.tsx:46 msgid "Plugins" -msgstr "" +msgstr "Plugins" #: src/components/forms/InstanceOptions.tsx:143 +#: src/tables/general/ParameterTemplateTable.tsx:153 +#: src/tables/general/ParameterTemplateTable.tsx:188 #: src/tables/part/PartTestTemplateTable.tsx:117 #: src/tables/settings/TemplateTable.tsx:251 #: src/tables/settings/TemplateTable.tsx:362 #: src/tables/stock/StockItemTestResultTable.tsx:419 msgid "Enabled" -msgstr "" +msgstr "Ενεργό" #: src/components/forms/InstanceOptions.tsx:143 msgid "Disabled" -msgstr "" +msgstr "Ανενεργό" #: src/components/forms/InstanceOptions.tsx:149 msgid "Worker" -msgstr "" +msgstr "Worker" #: src/components/forms/InstanceOptions.tsx:150 #: src/tables/settings/FailedTasksTable.tsx:48 msgid "Stopped" -msgstr "" +msgstr "Σταματημένο" #: src/components/forms/InstanceOptions.tsx:150 msgid "Running" -msgstr "" +msgstr "Σε λειτουργία" -#: src/components/forms/fields/ApiFormField.tsx:233 +#: src/components/forms/fields/ApiFormField.tsx:197 msgid "Select file to upload" -msgstr "" +msgstr "Επιλέξτε αρχείο για μεταφόρτωση" + +#: src/components/forms/fields/AutoFillRightSection.tsx:47 +msgid "Accept suggested value" +msgstr "Αποδοχή προτεινόμενης τιμής" #: src/components/forms/fields/DateField.tsx:76 msgid "Select date" -msgstr "" +msgstr "Επιλέξτε ημερομηνία" #: src/components/forms/fields/IconField.tsx:83 msgid "No icon selected" -msgstr "" +msgstr "Δεν επιλέχθηκε εικονίδιο" #: src/components/forms/fields/IconField.tsx:161 msgid "Uncategorized" -msgstr "" +msgstr "Χωρίς κατηγορία" #: src/components/forms/fields/IconField.tsx:211 #: src/components/nav/Layout.tsx:138 #: src/tables/part/PartThumbTable.tsx:199 msgid "Search..." -msgstr "" +msgstr "Αναζήτηση..." #: src/components/forms/fields/IconField.tsx:225 #: src/components/wizards/ImportPartWizard.tsx:304 msgid "Select category" -msgstr "" +msgstr "Επιλέξτε κατηγορία" #: src/components/forms/fields/IconField.tsx:234 msgid "Select pack" -msgstr "" +msgstr "Επιλέξτε πακέτο" #. placeholder {0}: filteredIcons.length #: src/components/forms/fields/IconField.tsx:239 msgid "{0} icons" -msgstr "" +msgstr "{0} εικονίδια" -#: src/components/forms/fields/RelatedModelField.tsx:409 +#: src/components/forms/fields/RelatedModelField.tsx:480 #: src/components/modals/AboutInvenTreeModal.tsx:96 #: src/pages/Index/Settings/AccountSettings/SecurityContent.tsx:383 msgid "Loading" -msgstr "" +msgstr "Φόρτωση" -#: src/components/forms/fields/RelatedModelField.tsx:411 +#: src/components/forms/fields/RelatedModelField.tsx:482 msgid "No results found" -msgstr "" +msgstr "Δεν βρέθηκαν αποτελέσματα" #: src/components/forms/fields/TableField.tsx:46 msgid "modelRenderer entry required for tables" -msgstr "" +msgstr "Απαιτείται modelRenderer για πίνακες" #: src/components/forms/fields/TableField.tsx:187 msgid "No entries available" -msgstr "" +msgstr "Δεν υπάρχουν διαθέσιμες εγγραφές" #: src/components/forms/fields/TableField.tsx:198 msgid "Add new row" -msgstr "" - -#: src/components/forms/fields/TextField.tsx:82 -msgid "Accept suggested value" -msgstr "" +msgstr "Προσθήκη νέας γραμμής" #: src/components/images/DetailsImage.tsx:252 #~ msgid "Select image" @@ -1885,65 +1918,65 @@ msgstr "" #: src/components/images/Thumbnail.tsx:12 msgid "Thumbnail" -msgstr "" +msgstr "Μικρογραφία" #: src/components/importer/ImportDataSelector.tsx:175 msgid "Importing Rows" -msgstr "" +msgstr "Γίνεται εισαγωγή γραμμών" #: src/components/importer/ImportDataSelector.tsx:176 msgid "Please wait while the data is imported" -msgstr "" +msgstr "Παρακαλώ περιμένετε ενώ γίνεται η εισαγωγή δεδομένων" #: src/components/importer/ImportDataSelector.tsx:193 msgid "An error occurred while importing data" -msgstr "" +msgstr "Παρουσιάστηκε σφάλμα κατά την εισαγωγή δεδομένων" #: src/components/importer/ImportDataSelector.tsx:214 msgid "Edit Data" -msgstr "" +msgstr "Επεξεργασία δεδομένων" #: src/components/importer/ImportDataSelector.tsx:246 msgid "Delete Row" -msgstr "" +msgstr "Διαγραφή γραμμής" #: src/components/importer/ImportDataSelector.tsx:276 msgid "Row" -msgstr "" +msgstr "Γραμμή" #: src/components/importer/ImportDataSelector.tsx:294 msgid "Row contains errors" -msgstr "" +msgstr "Η γραμμή περιέχει σφάλματα" #: src/components/importer/ImportDataSelector.tsx:335 msgid "Accept" -msgstr "" +msgstr "Αποδοχή" #: src/components/importer/ImportDataSelector.tsx:368 msgid "Valid" -msgstr "" +msgstr "Έγκυρο" #: src/components/importer/ImportDataSelector.tsx:369 msgid "Filter by row validation status" -msgstr "" +msgstr "Φιλτράρισμα ανά κατάσταση εγκυρότητας" #: src/components/importer/ImportDataSelector.tsx:374 #: src/components/wizards/WizardDrawer.tsx:113 #: src/tables/build/BuildOutputTable.tsx:533 msgid "Complete" -msgstr "" +msgstr "Ολοκληρωμένο" #: src/components/importer/ImportDataSelector.tsx:375 msgid "Filter by row completion status" -msgstr "" +msgstr "Φιλτράρισμα ανά κατάσταση ολοκλήρωσης" #: src/components/importer/ImportDataSelector.tsx:393 msgid "Import selected rows" -msgstr "" +msgstr "Εισαγωγή επιλεγμένων γραμμών" #: src/components/importer/ImportDataSelector.tsx:408 msgid "Processing Data" -msgstr "" +msgstr "Επεξεργασία δεδομένων" #: src/components/importer/ImporterColumnSelector.tsx:56 #: src/components/importer/ImporterColumnSelector.tsx:203 @@ -1951,11 +1984,11 @@ msgstr "" #: src/functions/api.tsx:60 #: src/functions/auth.tsx:364 msgid "An error occurred" -msgstr "" +msgstr "Παρουσιάστηκε σφάλμα" #: src/components/importer/ImporterColumnSelector.tsx:69 msgid "Select column, or leave blank to ignore this field." -msgstr "" +msgstr "Επιλέξτε στήλη ή αφήστε κενό για να αγνοηθεί το πεδίο." #: src/components/importer/ImporterColumnSelector.tsx:91 #~ msgid "Select a column from the data file" @@ -1971,55 +2004,55 @@ msgstr "" #: src/components/importer/ImporterColumnSelector.tsx:209 msgid "Ignore this field" -msgstr "" +msgstr "Αγνόηση αυτού του πεδίου" #: src/components/importer/ImporterColumnSelector.tsx:223 msgid "Mapping data columns to database fields" -msgstr "" +msgstr "Αντιστοίχιση στηλών δεδομένων με πεδία βάσης δεδομένων" #: src/components/importer/ImporterColumnSelector.tsx:228 msgid "Accept Column Mapping" -msgstr "" +msgstr "Αποδοχή αντιστοίχισης στηλών" #: src/components/importer/ImporterColumnSelector.tsx:241 msgid "Database Field" -msgstr "" +msgstr "Πεδίο βάσης δεδομένων" #: src/components/importer/ImporterColumnSelector.tsx:242 msgid "Field Description" -msgstr "" +msgstr "Περιγραφή πεδίου" #: src/components/importer/ImporterColumnSelector.tsx:243 msgid "Imported Column" -msgstr "" +msgstr "Εισαγόμενη στήλη" #: src/components/importer/ImporterColumnSelector.tsx:244 msgid "Default Value" -msgstr "" +msgstr "Προεπιλεγμένη τιμή" #: src/components/importer/ImporterDrawer.tsx:43 msgid "Upload File" -msgstr "" +msgstr "Μεταφόρτωση αρχείου" #: src/components/importer/ImporterDrawer.tsx:44 msgid "Map Columns" -msgstr "" +msgstr "Αντιστοίχιση στηλών" #: src/components/importer/ImporterDrawer.tsx:45 msgid "Import Data" -msgstr "" +msgstr "Εισαγωγή δεδομένων" #: src/components/importer/ImporterDrawer.tsx:46 msgid "Process Data" -msgstr "" +msgstr "Επεξεργασία δεδομένων" #: src/components/importer/ImporterDrawer.tsx:47 msgid "Complete Import" -msgstr "" +msgstr "Ολοκλήρωση εισαγωγής" #: src/components/importer/ImporterDrawer.tsx:89 msgid "Failed to fetch import session data" -msgstr "" +msgstr "Αποτυχία λήψης δεδομένων συνεδρίας εισαγωγής" #: src/components/importer/ImporterDrawer.tsx:97 #~ msgid "Cancel import session" @@ -2027,20 +2060,20 @@ msgstr "" #: src/components/importer/ImporterDrawer.tsx:104 msgid "Import Complete" -msgstr "" +msgstr "Η εισαγωγή ολοκληρώθηκε" #: src/components/importer/ImporterDrawer.tsx:107 msgid "Data has been imported successfully" -msgstr "" +msgstr "Τα δεδομένα εισήχθησαν με επιτυχία" #: src/components/importer/ImporterDrawer.tsx:109 #: src/components/modals/AboutInvenTreeModal.tsx:205 #: src/components/modals/ServerInfoModal.tsx:134 -#: src/components/wizards/ImportPartWizard.tsx:772 +#: src/components/wizards/ImportPartWizard.tsx:773 #: src/forms/BomForms.tsx:132 #: src/pages/Index/Settings/AccountSettings/MFASettings.tsx:685 msgid "Close" -msgstr "" +msgstr "Κλείσιμο" #: src/components/importer/ImporterDrawer.tsx:119 #~ msgid "Import session has unknown status" @@ -2048,7 +2081,7 @@ msgstr "" #: src/components/importer/ImporterDrawer.tsx:128 msgid "Importing Data" -msgstr "" +msgstr "Γίνεται εισαγωγή δεδομένων" #: src/components/importer/ImporterImportProgress.tsx:36 #~ msgid "Importing Records" @@ -2060,11 +2093,11 @@ msgstr "" #: src/components/importer/ImporterStatus.tsx:19 msgid "Unknown Status" -msgstr "" +msgstr "Άγνωστη κατάσταση" #: src/components/items/ActionDropdown.tsx:135 msgid "Options" -msgstr "" +msgstr "Επιλογές" #: src/components/items/ActionDropdown.tsx:162 #~ msgid "Link custom barcode" @@ -2074,44 +2107,44 @@ msgstr "" #: src/tables/InvenTreeTableHeader.tsx:193 #: src/tables/InvenTreeTableHeader.tsx:194 msgid "Barcode Actions" -msgstr "" +msgstr "Ενέργειες Barcode" #: src/components/items/ActionDropdown.tsx:176 msgid "View Barcode" -msgstr "" +msgstr "Προβολή Barcode" #: src/components/items/ActionDropdown.tsx:178 msgid "View barcode" -msgstr "" +msgstr "Προβολή barcode" #: src/components/items/ActionDropdown.tsx:184 msgid "Link Barcode" -msgstr "" +msgstr "Σύνδεση Barcode" #: src/components/items/ActionDropdown.tsx:186 msgid "Link a custom barcode to this item" -msgstr "" +msgstr "Σύνδεση προσαρμοσμένου barcode με αυτό το στοιχείο" #: src/components/items/ActionDropdown.tsx:194 msgid "Unlink custom barcode" -msgstr "" +msgstr "Αποσύνδεση προσαρμοσμένου barcode" #: src/components/items/ActionDropdown.tsx:246 msgid "Edit item" -msgstr "" +msgstr "Επεξεργασία Προϊόντος" #: src/components/items/ActionDropdown.tsx:258 msgid "Delete item" -msgstr "" +msgstr "Διαγραφή Προϊόντος" #: src/components/items/ActionDropdown.tsx:266 #: src/components/items/ActionDropdown.tsx:267 msgid "Hold" -msgstr "" +msgstr "Κράτηση" #: src/components/items/ActionDropdown.tsx:290 msgid "Duplicate item" -msgstr "" +msgstr "Αντιγραφή Προϊόντος" #: src/components/items/BarcodeInput.tsx:24 #~ msgid "Scan barcode data here using barcode scanner" @@ -2119,18 +2152,18 @@ msgstr "" #: src/components/items/ColorToggle.tsx:17 msgid "Toggle color scheme" -msgstr "" +msgstr "Εναλλαγή χρωματικού θέματος" #: src/components/items/DocTooltip.tsx:92 #: src/components/items/GettingStartedCarousel.tsx:20 msgid "Read More" -msgstr "" +msgstr "Διαβάστε περισσότερα" #: src/components/items/ErrorItem.tsx:8 #: src/functions/api.tsx:51 #: src/tables/settings/PendingTasksTable.tsx:80 msgid "Unknown error" -msgstr "" +msgstr "Άγνωστο σφάλμα" #: src/components/items/ErrorItem.tsx:13 #~ msgid "An error occurred:" @@ -2142,20 +2175,20 @@ msgstr "" #: src/components/items/InfoItem.tsx:27 msgid "None" -msgstr "" +msgstr "Κανένα" #: src/components/items/InvenTreeLogo.tsx:23 msgid "InvenTree Logo" -msgstr "" +msgstr "Λογότυπο InvenTree" #: src/components/items/LanguageToggle.tsx:21 msgid "Select language" -msgstr "" +msgstr "Επιλέξτε γλώσσα" #: src/components/items/OnlyStaff.tsx:10 #: src/components/modals/AboutInvenTreeModal.tsx:50 msgid "This information is only available for staff users" -msgstr "" +msgstr "Αυτές οι πληροφορίες είναι διαθέσιμες μόνο σε προσωπικό" #: src/components/items/Placeholder.tsx:14 #~ msgid "This feature/button/site is a placeholder for a feature that is not implemented, only partial or intended for testing." @@ -2167,11 +2200,11 @@ msgstr "" #: src/components/items/RoleTable.tsx:81 msgid "Updating" -msgstr "" +msgstr "Γίνεται ενημέρωση" #: src/components/items/RoleTable.tsx:82 msgid "Updating group roles" -msgstr "" +msgstr "Ενημέρωση ρόλων ομάδας" #: src/components/items/RoleTable.tsx:118 #: src/components/settings/ConfigValueList.tsx:42 @@ -2179,63 +2212,63 @@ msgstr "" #: src/pages/part/pricing/VariantPricingPanel.tsx:51 #: src/tables/purchasing/SupplierPartTable.tsx:155 msgid "Updated" -msgstr "" +msgstr "Ενημερώθηκε" #: src/components/items/RoleTable.tsx:119 msgid "Group roles updated" -msgstr "" +msgstr "Οι ρόλοι της ομάδας ενημερώθηκαν" #: src/components/items/RoleTable.tsx:135 msgid "Role" -msgstr "" +msgstr "Ρόλος" #: src/components/items/RoleTable.tsx:140 #: src/pages/Index/Settings/AccountSettings/MFASettings.tsx:892 msgid "View" -msgstr "" +msgstr "Προβολή" #: src/components/items/RoleTable.tsx:145 msgid "Change" -msgstr "" +msgstr "Αλλαγή" #: src/components/items/RoleTable.tsx:150 -#: src/forms/StockForms.tsx:927 +#: src/forms/StockForms.tsx:941 #: src/tables/stock/StockItemTestResultTable.tsx:367 msgid "Add" -msgstr "" +msgstr "Προσθήκη" #: src/components/items/RoleTable.tsx:203 msgid "Reset group roles" -msgstr "" +msgstr "Επαναφορά ρόλων ομάδας" #: src/components/items/RoleTable.tsx:212 msgid "Reset" -msgstr "" +msgstr "Επαναφορά" #: src/components/items/RoleTable.tsx:215 msgid "Save group roles" -msgstr "" +msgstr "Αποθήκευση ρόλων ομάδας" #: src/components/items/TransferList.tsx:65 msgid "No items" -msgstr "" +msgstr "Κανένα στοιχείο" #: src/components/items/TransferList.tsx:161 #: src/components/render/Stock.tsx:102 -#: src/pages/part/PartDetail.tsx:994 +#: src/pages/part/PartDetail.tsx:1009 #: src/pages/stock/StockDetail.tsx:265 #: src/pages/stock/StockDetail.tsx:942 -#: src/tables/build/BuildAllocatedStockTable.tsx:135 -#: src/tables/build/BuildLineTable.tsx:192 +#: src/tables/build/BuildAllocatedStockTable.tsx:132 +#: src/tables/build/BuildLineTable.tsx:193 #: src/tables/part/PartTable.tsx:137 #: src/tables/stock/StockItemTable.tsx:182 #: src/tables/stock/StockItemTable.tsx:343 msgid "Available" -msgstr "" +msgstr "Διαθέσιμο" #: src/components/items/TransferList.tsx:162 msgid "Selected" -msgstr "" +msgstr "Επιλεγμένο" #: src/components/modals/AboutInvenTreeModal.tsx:103 #~ msgid "Your InvenTree version status is" @@ -2243,31 +2276,31 @@ msgstr "" #: src/components/modals/AboutInvenTreeModal.tsx:118 msgid "InvenTree Version" -msgstr "" +msgstr "Έκδοση InvenTree" #: src/components/modals/AboutInvenTreeModal.tsx:130 msgid "Python Version" -msgstr "" +msgstr "Έκδοση Python" #: src/components/modals/AboutInvenTreeModal.tsx:135 msgid "Django Version" -msgstr "" +msgstr "Έκδοση Django" #: src/components/modals/AboutInvenTreeModal.tsx:144 msgid "Commit Hash" -msgstr "" +msgstr "Commit Hash" #: src/components/modals/AboutInvenTreeModal.tsx:149 msgid "Commit Date" -msgstr "" +msgstr "Ημερομηνία Commit" #: src/components/modals/AboutInvenTreeModal.tsx:154 msgid "Commit Branch" -msgstr "" +msgstr "Branch Commit" #: src/components/modals/AboutInvenTreeModal.tsx:165 msgid "Version Information" -msgstr "" +msgstr "Πληροφορίες Έκδοσης" #: src/components/modals/AboutInvenTreeModal.tsx:165 #~ msgid "Credits" @@ -2283,25 +2316,25 @@ msgstr "" #: src/components/modals/AboutInvenTreeModal.tsx:174 msgid "Links" -msgstr "" +msgstr "Σύνδεσμοι" #: src/components/modals/AboutInvenTreeModal.tsx:180 #: src/components/nav/NavigationDrawer.tsx:208 #: src/defaults/actions.tsx:48 msgid "Documentation" -msgstr "" +msgstr "Τεκμηρίωση" #: src/components/modals/AboutInvenTreeModal.tsx:181 msgid "Source Code" -msgstr "" +msgstr "Πηγαίος Κώδικας" #: src/components/modals/AboutInvenTreeModal.tsx:182 msgid "Mobile App" -msgstr "" +msgstr "Εφαρμογή κινητού" #: src/components/modals/AboutInvenTreeModal.tsx:183 msgid "Submit Bug Report" -msgstr "" +msgstr "Υποβολή αναφοράς σφάλματος" #: src/components/modals/AboutInvenTreeModal.tsx:189 #: src/components/modals/ServerInfoModal.tsx:147 @@ -2310,39 +2343,39 @@ msgstr "" #: src/components/modals/AboutInvenTreeModal.tsx:195 msgid "Copy version information" -msgstr "" +msgstr "Αντιγραφή πληροφοριών έκδοσης" #: src/components/modals/AboutInvenTreeModal.tsx:215 msgid "Development Version" -msgstr "" +msgstr "Έκδοση ανάπτυξης" #: src/components/modals/AboutInvenTreeModal.tsx:217 msgid "Up to Date" -msgstr "" +msgstr "Ενημερωμένο" #: src/components/modals/AboutInvenTreeModal.tsx:219 msgid "Update Available" -msgstr "" +msgstr "Διαθέσιμη ενημέρωση" #: src/components/modals/LicenseModal.tsx:41 msgid "No license text available" -msgstr "" +msgstr "Δεν υπάρχει διαθέσιμο κείμενο άδειας" #: src/components/modals/LicenseModal.tsx:48 msgid "No Information provided - this is likely a server issue" -msgstr "" +msgstr "Δεν δόθηκαν πληροφορίες — πιθανό πρόβλημα διακομιστή" #: src/components/modals/LicenseModal.tsx:81 msgid "Loading license information" -msgstr "" +msgstr "Φόρτωση πληροφοριών άδειας" #: src/components/modals/LicenseModal.tsx:87 msgid "Failed to fetch license information" -msgstr "" +msgstr "Αποτυχία λήψης πληροφοριών άδειας" #: src/components/modals/LicenseModal.tsx:99 msgid "{key} Packages" -msgstr "" +msgstr "Πακέτα {key}" #: src/components/modals/QrCodeModal.tsx:24 #~ msgid "Unknown response" @@ -2358,11 +2391,11 @@ msgstr "" #: src/components/modals/ServerInfoModal.tsx:22 msgid "Instance Name" -msgstr "" +msgstr "Όνομα instance" #: src/components/modals/ServerInfoModal.tsx:28 msgid "Server Version" -msgstr "" +msgstr "Έκδοση διακομιστή" #: src/components/modals/ServerInfoModal.tsx:38 #~ msgid "Bebug Mode" @@ -2370,57 +2403,57 @@ msgstr "" #: src/components/modals/ServerInfoModal.tsx:40 msgid "Database" -msgstr "" +msgstr "Βάση δεδομένων" #: src/components/modals/ServerInfoModal.tsx:49 -#: src/components/nav/Alerts.tsx:118 +#: src/components/nav/Alerts.tsx:120 msgid "Debug Mode" -msgstr "" +msgstr "Λειτουργία αποσφαλμάτωσης" #: src/components/modals/ServerInfoModal.tsx:54 msgid "Server is running in debug mode" -msgstr "" +msgstr "Ο διακομιστής λειτουργεί σε debug mode" #: src/components/modals/ServerInfoModal.tsx:62 msgid "Docker Mode" -msgstr "" +msgstr "Λειτουργία Docker" #: src/components/modals/ServerInfoModal.tsx:65 msgid "Server is deployed using docker" -msgstr "" +msgstr "Ο διακομιστής έχει αναπτυχθεί μέσω Docker" #: src/components/modals/ServerInfoModal.tsx:71 msgid "Plugin Support" -msgstr "" +msgstr "Υποστήριξη plugin" #: src/components/modals/ServerInfoModal.tsx:76 msgid "Plugin support enabled" -msgstr "" +msgstr "Η υποστήριξη plugin είναι ενεργή" #: src/components/modals/ServerInfoModal.tsx:78 msgid "Plugin support disabled" -msgstr "" +msgstr "Η υποστήριξη plugin είναι απενεργοποιημένη" #: src/components/modals/ServerInfoModal.tsx:85 msgid "Server status" -msgstr "" +msgstr "Κατάσταση διακομιστή" #: src/components/modals/ServerInfoModal.tsx:91 msgid "Healthy" -msgstr "" +msgstr "Υγιής" #: src/components/modals/ServerInfoModal.tsx:93 msgid "Issues detected" -msgstr "" +msgstr "Εντοπίστηκαν προβλήματα" #: src/components/modals/ServerInfoModal.tsx:102 -#: src/components/nav/Alerts.tsx:125 +#: src/components/nav/Alerts.tsx:127 msgid "Background Worker" -msgstr "" +msgstr "Background Worker" #: src/components/modals/ServerInfoModal.tsx:107 msgid "The background worker process is not running" -msgstr "" +msgstr "Η διεργασία background worker δεν εκτελείται" #: src/components/modals/ServerInfoModal.tsx:107 #~ msgid "The Background worker process is not running." @@ -2429,66 +2462,70 @@ msgstr "" #: src/components/modals/ServerInfoModal.tsx:115 #: src/pages/Index/Settings/AdminCenter/Index.tsx:129 msgid "Email Settings" -msgstr "" +msgstr "Ρυθμίσεις email" #: src/components/modals/ServerInfoModal.tsx:118 #~ msgid "Email settings not configured" #~ msgstr "Email settings not configured" #: src/components/modals/ServerInfoModal.tsx:120 -#: src/components/nav/Alerts.tsx:141 +#: src/components/nav/Alerts.tsx:143 msgid "Email settings not configured." -msgstr "" +msgstr "Οι ρυθμίσεις email δεν έχουν διαμορφωθεί." #: src/components/nav/Alerts.tsx:57 msgid "Alerts" +msgstr "Ειδοποιήσεις" + +#: src/components/nav/Alerts.tsx:97 +msgid "No issues detected" msgstr "" -#: src/components/nav/Alerts.tsx:120 +#: src/components/nav/Alerts.tsx:122 msgid "The server is running in debug mode." -msgstr "" +msgstr "Ο διακομιστής λειτουργεί σε debug mode." -#: src/components/nav/Alerts.tsx:127 +#: src/components/nav/Alerts.tsx:129 msgid "The background worker process is not running." -msgstr "" - -#: src/components/nav/Alerts.tsx:132 -msgid "Server Restart" -msgstr "" +msgstr "Η διεργασία background worker δεν εκτελείται." #: src/components/nav/Alerts.tsx:134 +msgid "Server Restart" +msgstr "Επανεκκίνηση διακομιστή" + +#: src/components/nav/Alerts.tsx:136 msgid "The server requires a restart to apply changes." -msgstr "" +msgstr "Απαιτείται επανεκκίνηση του διακομιστή για να εφαρμοστούν οι αλλαγές." -#: src/components/nav/Alerts.tsx:139 +#: src/components/nav/Alerts.tsx:141 msgid "Email settings" -msgstr "" - -#: src/components/nav/Alerts.tsx:146 -msgid "Database Migrations" -msgstr "" +msgstr "Ρυθμίσεις email" #: src/components/nav/Alerts.tsx:148 -msgid "There are pending database migrations." -msgstr "" +msgid "Database Migrations" +msgstr "Μεταναστεύσεις βάσης δεδομένων" -#: src/components/nav/Alerts.tsx:163 +#: src/components/nav/Alerts.tsx:150 +msgid "There are pending database migrations." +msgstr "Υπάρχουν εκκρεμείς μεταναστεύσεις στη βάση δεδομένων." + +#: src/components/nav/Alerts.tsx:165 msgid "Learn more about {code}" -msgstr "" +msgstr "Μάθετε περισσότερα για {code}" #: src/components/nav/Header.tsx:188 #: src/components/nav/NavigationDrawer.tsx:134 #: src/components/nav/NotificationDrawer.tsx:181 -#: src/pages/Index/Settings/SystemSettings.tsx:121 -#: src/pages/Index/Settings/UserSettings.tsx:106 +#: src/pages/Index/Settings/SystemSettings.tsx:122 +#: src/pages/Index/Settings/UserSettings.tsx:107 #: src/pages/Notifications.tsx:45 #: src/pages/Notifications.tsx:130 msgid "Notifications" -msgstr "" +msgstr "Ειδοποιήσεις" #: src/components/nav/Layout.tsx:141 msgid "Nothing found..." -msgstr "" +msgstr "Δεν βρέθηκε τίποτα..." #: src/components/nav/MainMenu.tsx:40 #: src/pages/Index/Profile/Profile.tsx:15 @@ -2500,7 +2537,7 @@ msgstr "" #: src/pages/Index/Settings/AdminCenter/EmailManagementPanel.tsx:21 #: src/pages/Index/Settings/AdminCenter/UserManagementPanel.tsx:39 msgid "Settings" -msgstr "" +msgstr "Ρυθμίσεις" #: src/components/nav/MainMenu.tsx:59 #: src/defaults/menuItems.tsx:15 @@ -2511,10 +2548,10 @@ msgstr "" #: src/components/nav/NavigationDrawer.tsx:140 #: src/components/nav/SettingsHeader.tsx:40 #: src/defaults/actions.tsx:92 -#: src/pages/Index/Settings/UserSettings.tsx:141 -#: src/pages/Index/Settings/UserSettings.tsx:145 +#: src/pages/Index/Settings/UserSettings.tsx:142 +#: src/pages/Index/Settings/UserSettings.tsx:146 msgid "User Settings" -msgstr "" +msgstr "Ρυθμίσεις χρήστη" #: src/components/nav/MainMenu.tsx:61 #: src/pages/Index/Settings/UserSettings.tsx:145 @@ -2529,10 +2566,10 @@ msgstr "" #: src/components/nav/NavigationDrawer.tsx:146 #: src/components/nav/SettingsHeader.tsx:41 #: src/defaults/actions.tsx:144 -#: src/pages/Index/Settings/SystemSettings.tsx:348 -#: src/pages/Index/Settings/SystemSettings.tsx:353 +#: src/pages/Index/Settings/SystemSettings.tsx:354 +#: src/pages/Index/Settings/SystemSettings.tsx:359 msgid "System Settings" -msgstr "" +msgstr "Ρυθμίσεις συστήματος" #: src/components/nav/MainMenu.tsx:71 #~ msgid "Switch to pseudo language" @@ -2545,18 +2582,18 @@ msgstr "" #: src/pages/Index/Settings/AdminCenter/Index.tsx:293 #: src/pages/Index/Settings/AdminCenter/Index.tsx:298 msgid "Admin Center" -msgstr "" +msgstr "Κέντρο διαχείρισης" #: src/components/nav/MainMenu.tsx:99 #: src/defaults/actions.tsx:57 #: src/defaults/links.tsx:140 #: src/defaults/links.tsx:186 msgid "About InvenTree" -msgstr "" +msgstr "Σχετικά με το InvenTree" #: src/components/nav/MainMenu.tsx:108 msgid "Logout" -msgstr "" +msgstr "Αποσύνδεση" #: src/components/nav/NavHoverMenu.tsx:84 #~ msgid "View all" @@ -2577,113 +2614,113 @@ msgstr "" #: src/components/nav/NavigationDrawer.tsx:77 #: src/components/render/Part.tsx:36 -#: src/components/wizards/ImportPartWizard.tsx:807 +#: src/components/wizards/ImportPartWizard.tsx:808 #: src/defaults/links.tsx:42 #: src/forms/StockForms.tsx:794 -#: src/pages/Index/Settings/SystemSettings.tsx:224 -#: src/pages/part/PartDetail.tsx:804 +#: src/pages/Index/Settings/SystemSettings.tsx:230 +#: src/pages/part/PartDetail.tsx:793 #: src/pages/stock/LocationDetail.tsx:390 #: src/pages/stock/LocationDetail.tsx:420 #: src/pages/stock/StockDetail.tsx:642 #: src/tables/stock/StockItemTable.tsx:85 msgid "Stock" -msgstr "" +msgstr "Απόθεμα" #: src/components/nav/NavigationDrawer.tsx:84 #: src/defaults/links.tsx:48 -#: src/pages/build/BuildDetail.tsx:748 -#: src/pages/build/BuildIndex.tsx:102 +#: src/pages/build/BuildDetail.tsx:753 +#: src/pages/build/BuildIndex.tsx:101 msgid "Manufacturing" -msgstr "" +msgstr "Κατασκευή" #: src/components/nav/NavigationDrawer.tsx:91 #: src/defaults/links.tsx:54 #: src/pages/company/ManufacturerDetail.tsx:9 -#: src/pages/company/ManufacturerPartDetail.tsx:276 +#: src/pages/company/ManufacturerPartDetail.tsx:267 #: src/pages/company/SupplierDetail.tsx:9 -#: src/pages/company/SupplierPartDetail.tsx:360 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:553 -#: src/pages/purchasing/PurchasingIndex.tsx:122 +#: src/pages/company/SupplierPartDetail.tsx:365 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:558 +#: src/pages/purchasing/PurchasingIndex.tsx:212 msgid "Purchasing" -msgstr "" +msgstr "Προμήθειες" #: src/components/nav/NavigationDrawer.tsx:98 #: src/defaults/links.tsx:60 #: src/pages/company/CustomerDetail.tsx:9 -#: src/pages/sales/ReturnOrderDetail.tsx:554 -#: src/pages/sales/SalesIndex.tsx:153 -#: src/pages/sales/SalesOrderDetail.tsx:619 -#: src/pages/sales/SalesOrderShipmentDetail.tsx:480 +#: src/pages/sales/ReturnOrderDetail.tsx:559 +#: src/pages/sales/SalesIndex.tsx:168 +#: src/pages/sales/SalesOrderDetail.tsx:624 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:448 msgid "Sales" -msgstr "" +msgstr "Πωλήσεις" #: src/components/nav/NavigationDrawer.tsx:180 msgid "Navigation" -msgstr "" +msgstr "Πλοήγηση" #: src/components/nav/NavigationDrawer.tsx:214 msgid "About" -msgstr "" +msgstr "Σχετικά" #: src/components/nav/NavigationTree.tsx:212 msgid "Error loading navigation tree." -msgstr "" +msgstr "Σφάλμα φόρτωσης του δέντρου πλοήγησης." #: src/components/nav/NotificationDrawer.tsx:183 #: src/pages/Notifications.tsx:74 msgid "Mark all as read" -msgstr "" +msgstr "Σήμανση όλων ως αναγνωσμένων" #: src/components/nav/NotificationDrawer.tsx:193 msgid "View all notifications" -msgstr "" +msgstr "Προβολή όλων των ειδοποιήσεων" #: src/components/nav/NotificationDrawer.tsx:216 msgid "You have no unread notifications." -msgstr "" +msgstr "Δεν υπάρχουν μη αναγνωσμένες ειδοποιήσεις." #: src/components/nav/NotificationDrawer.tsx:238 msgid "Error loading notifications." -msgstr "" +msgstr "Σφάλμα φόρτωσης ειδοποιήσεων." #: src/components/nav/SearchDrawer.tsx:106 msgid "No Overview Available" -msgstr "" +msgstr "Δεν υπάρχει διαθέσιμη επισκόπηση" #: src/components/nav/SearchDrawer.tsx:107 msgid "No overview available for this model type" -msgstr "" +msgstr "Δεν υπάρχει διαθέσιμη επισκόπηση για αυτόν τον τύπο μοντέλου" #: src/components/nav/SearchDrawer.tsx:125 msgid "View all results" -msgstr "" +msgstr "Προβολή όλων των αποτελεσμάτων" #: src/components/nav/SearchDrawer.tsx:140 msgid "results" -msgstr "" +msgstr "αποτελέσματα" #: src/components/nav/SearchDrawer.tsx:144 msgid "Remove search group" -msgstr "" +msgstr "Αφαίρεση ομάδας αναζήτησης" #: src/components/nav/SearchDrawer.tsx:288 -#: src/pages/company/ManufacturerPartDetail.tsx:192 -#: src/pages/part/PartDetail.tsx:862 +#: src/pages/company/ManufacturerPartDetail.tsx:179 +#: src/pages/part/PartDetail.tsx:851 #: src/pages/part/PartSupplierDetail.tsx:15 -#: src/pages/purchasing/PurchasingIndex.tsx:81 +#: src/pages/purchasing/PurchasingIndex.tsx:100 msgid "Suppliers" -msgstr "" +msgstr "Προμηθευτές" #: src/components/nav/SearchDrawer.tsx:298 #: src/pages/part/PartSupplierDetail.tsx:23 -#: src/pages/purchasing/PurchasingIndex.tsx:98 +#: src/pages/purchasing/PurchasingIndex.tsx:149 msgid "Manufacturers" -msgstr "" +msgstr "Κατασκευαστές" #: src/components/nav/SearchDrawer.tsx:308 -#: src/pages/sales/SalesIndex.tsx:138 +#: src/pages/sales/SalesIndex.tsx:133 msgid "Customers" -msgstr "" +msgstr "Πελάτες" #: src/components/nav/SearchDrawer.tsx:462 #~ msgid "No results" @@ -2691,109 +2728,109 @@ msgstr "" #: src/components/nav/SearchDrawer.tsx:477 msgid "Enter search text" -msgstr "" +msgstr "Εισάγετε κείμενο αναζήτησης" #: src/components/nav/SearchDrawer.tsx:488 msgid "Refresh search results" -msgstr "" +msgstr "Ανανέωση αποτελεσμάτων αναζήτησης" #: src/components/nav/SearchDrawer.tsx:499 #: src/components/nav/SearchDrawer.tsx:506 msgid "Search Options" -msgstr "" +msgstr "Επιλογές αναζήτησης" #: src/components/nav/SearchDrawer.tsx:509 msgid "Whole word search" -msgstr "" +msgstr "Αναζήτηση ολόκληρης λέξης" #: src/components/nav/SearchDrawer.tsx:518 msgid "Regex search" -msgstr "" +msgstr "Αναζήτηση με regex" #: src/components/nav/SearchDrawer.tsx:527 msgid "Notes search" -msgstr "" +msgstr "Αναζήτηση στις σημειώσεις" #: src/components/nav/SearchDrawer.tsx:575 msgid "An error occurred during search query" -msgstr "" +msgstr "Παρουσιάστηκε σφάλμα κατά την αναζήτηση" #: src/components/nav/SearchDrawer.tsx:586 #: src/tables/part/PartTestTemplateTable.tsx:82 msgid "No Results" -msgstr "" +msgstr "Κανένα αποτέλεσμα" #: src/components/nav/SearchDrawer.tsx:589 msgid "No results available for search query" -msgstr "" +msgstr "Δεν υπάρχουν αποτελέσματα για το ερώτημα αναζήτησης" #: src/components/panels/AttachmentPanel.tsx:18 msgid "Attachments" -msgstr "" +msgstr "Συνημμένα" #: src/components/panels/NotesPanel.tsx:23 #: src/tables/part/PartTestResultTable.tsx:214 #: src/tables/stock/StockTrackingTable.tsx:212 msgid "Notes" -msgstr "" +msgstr "Σημειώσεις" #: src/components/panels/PanelGroup.tsx:158 msgid "Plugin Provided" -msgstr "" +msgstr "Παρέχεται από πρόσθετο" #: src/components/panels/PanelGroup.tsx:280 msgid "Collapse panels" -msgstr "" +msgstr "Σύμπτυξη πλαισίων" #: src/components/panels/PanelGroup.tsx:280 msgid "Expand panels" -msgstr "" +msgstr "Ανάπτυξη πλαισίων" #: src/components/plugins/LocateItemButton.tsx:68 #: src/components/plugins/LocateItemButton.tsx:88 msgid "Locate Item" -msgstr "" +msgstr "Εντοπισμός Προϊόντος" #: src/components/plugins/LocateItemButton.tsx:70 msgid "Item location requested" -msgstr "" +msgstr "Ζητήθηκε εντοπισμός Προϊόντος" #: src/components/plugins/PluginDrawer.tsx:47 msgid "Plugin Inactive" -msgstr "" +msgstr "Ανενεργό πρόσθετο" #: src/components/plugins/PluginDrawer.tsx:50 msgid "Plugin is not active" -msgstr "" +msgstr "Το πρόσθετο δεν είναι ενεργό" #: src/components/plugins/PluginDrawer.tsx:59 msgid "Plugin Information" -msgstr "" +msgstr "Πληροφορίες πρόσθετου" #: src/components/plugins/PluginDrawer.tsx:73 #: src/forms/selectionListFields.tsx:102 -#: src/pages/build/BuildDetail.tsx:250 -#: src/pages/company/CompanyDetail.tsx:93 -#: src/pages/company/ManufacturerPartDetail.tsx:93 -#: src/pages/company/ManufacturerPartDetail.tsx:120 -#: src/pages/company/SupplierPartDetail.tsx:145 -#: src/pages/part/CategoryDetail.tsx:108 +#: src/pages/build/BuildDetail.tsx:251 +#: src/pages/company/CompanyDetail.tsx:94 +#: src/pages/company/ManufacturerPartDetail.tsx:92 +#: src/pages/company/ManufacturerPartDetail.tsx:119 +#: src/pages/company/SupplierPartDetail.tsx:146 +#: src/pages/part/CategoryDetail.tsx:111 #: src/pages/part/PartDetail.tsx:460 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:162 -#: src/pages/sales/ReturnOrderDetail.tsx:129 -#: src/pages/sales/SalesOrderDetail.tsx:119 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:163 +#: src/pages/sales/ReturnOrderDetail.tsx:130 +#: src/pages/sales/SalesOrderDetail.tsx:120 #: src/pages/stock/LocationDetail.tsx:102 #: src/tables/ColumnRenderers.tsx:278 -#: src/tables/build/BuildAllocatedStockTable.tsx:91 -#: src/tables/machine/MachineTypeTable.tsx:161 -#: src/tables/machine/MachineTypeTable.tsx:257 +#: src/tables/build/BuildAllocatedStockTable.tsx:88 +#: src/tables/machine/MachineTypeTable.tsx:159 +#: src/tables/machine/MachineTypeTable.tsx:255 #: src/tables/plugin/PluginListTable.tsx:110 msgid "Description" -msgstr "" +msgstr "Περιγραφή" #: src/components/plugins/PluginDrawer.tsx:78 msgid "Author" -msgstr "" +msgstr "Συγγραφέας" #: src/components/plugins/PluginDrawer.tsx:83 #: src/pages/part/pricing/PurchaseHistoryPanel.tsx:41 @@ -2801,7 +2838,7 @@ msgstr "" #: src/tables/ColumnRenderers.tsx:473 #: src/tables/part/PartTestResultTable.tsx:222 msgid "Date" -msgstr "" +msgstr "Ημερομηνία" #: src/components/plugins/PluginDrawer.tsx:93 #: src/forms/selectionListFields.tsx:103 @@ -2814,7 +2851,7 @@ msgstr "" #: src/tables/company/CompanyTable.tsx:91 #: src/tables/machine/MachineListTable.tsx:384 #: src/tables/machine/MachineListTable.tsx:799 -#: src/tables/part/ParametricPartTable.tsx:354 +#: src/tables/part/ParametricPartTable.tsx:19 #: src/tables/part/PartTable.tsx:197 #: src/tables/part/PartVariantTable.tsx:15 #: src/tables/plugin/PluginListTable.tsx:96 @@ -2825,34 +2862,34 @@ msgstr "" #: src/tables/settings/UserTable.tsx:400 #: src/tables/stock/StockItemTable.tsx:322 msgid "Active" -msgstr "" +msgstr "Ενεργό" #: src/components/plugins/PluginDrawer.tsx:105 msgid "Package Name" -msgstr "" +msgstr "Όνομα πακέτου" #: src/components/plugins/PluginDrawer.tsx:111 msgid "Installation Path" -msgstr "" +msgstr "Μονοπάτι εγκατάστασης" #: src/components/plugins/PluginDrawer.tsx:116 -#: src/tables/machine/MachineTypeTable.tsx:184 -#: src/tables/machine/MachineTypeTable.tsx:293 +#: src/tables/machine/MachineTypeTable.tsx:182 +#: src/tables/machine/MachineTypeTable.tsx:291 #: src/tables/plugin/PluginListTable.tsx:101 #: src/tables/plugin/PluginListTable.tsx:417 msgid "Builtin" -msgstr "" +msgstr "Ενσωματωμένο" #: src/components/plugins/PluginDrawer.tsx:121 msgid "Package" -msgstr "" +msgstr "Πακέτο" #: src/components/plugins/PluginDrawer.tsx:133 #: src/pages/Index/Settings/AdminCenter/PluginManagementPanel.tsx:55 -#: src/pages/Index/Settings/SystemSettings.tsx:331 -#: src/pages/Index/Settings/UserSettings.tsx:128 +#: src/pages/Index/Settings/SystemSettings.tsx:337 +#: src/pages/Index/Settings/UserSettings.tsx:129 msgid "Plugin Settings" -msgstr "" +msgstr "Ρυθμίσεις πρόσθετου" #: src/components/plugins/PluginPanel.tsx:87 #~ msgid "Error occurred while rendering plugin content" @@ -2881,39 +2918,39 @@ msgstr "" #: src/components/plugins/PluginUIFeature.tsx:103 msgid "Error occurred while rendering the template editor." -msgstr "" +msgstr "Παρουσιάστηκε σφάλμα κατά την απόδοση του επεξεργαστή προτύπων." #: src/components/plugins/PluginUIFeature.tsx:120 msgid "Error Loading Plugin Editor" -msgstr "" +msgstr "Σφάλμα φόρτωσης του επεξεργαστή πρόσθετων" #: src/components/plugins/PluginUIFeature.tsx:158 msgid "Error occurred while rendering the template preview." -msgstr "" +msgstr "Παρουσιάστηκε σφάλμα κατά την απόδοση της προεπισκόπησης προτύπου." #: src/components/plugins/PluginUIFeature.tsx:169 msgid "Error Loading Plugin Preview" -msgstr "" +msgstr "Σφάλμα φόρτωσης προεπισκόπησης πρόσθετου" #: src/components/plugins/RemoteComponent.tsx:111 msgid "Invalid source or function name" -msgstr "" +msgstr "Μη έγκυρη πηγή ή όνομα συνάρτησης" #: src/components/plugins/RemoteComponent.tsx:143 msgid "Error Loading Content" -msgstr "" +msgstr "Σφάλμα φόρτωσης περιεχομένου" #: src/components/plugins/RemoteComponent.tsx:147 msgid "Error occurred while loading plugin content" -msgstr "" +msgstr "Παρουσιάστηκε σφάλμα κατά τη φόρτωση περιεχομένου πρόσθετου" #: src/components/render/Instance.tsx:238 #~ msgid "Unknown model: {model}" #~ msgstr "Unknown model: {model}" -#: src/components/render/Instance.tsx:249 +#: src/components/render/Instance.tsx:247 msgid "Unknown model: {model_name}" -msgstr "" +msgstr "Άγνωστο μοντέλο: {model_name}" #: src/components/render/ModelType.tsx:234 #~ msgid "Purchase Order Line Item" @@ -2934,15 +2971,15 @@ msgstr "" #: src/components/render/Order.tsx:122 #: src/tables/sales/SalesOrderAllocationTable.tsx:173 msgid "Shipment" -msgstr "" +msgstr "Αποστολή" #: src/components/render/Part.tsx:28 #: src/components/render/Plugin.tsx:17 #: src/components/render/User.tsx:37 -#: src/pages/company/CompanyDetail.tsx:323 -#: src/pages/company/SupplierPartDetail.tsx:373 +#: src/pages/company/CompanyDetail.tsx:328 +#: src/pages/company/SupplierPartDetail.tsx:378 #: src/pages/core/UserDetail.tsx:211 -#: src/pages/part/PartDetail.tsx:1027 +#: src/pages/part/PartDetail.tsx:1048 #: src/tables/ColumnRenderers.tsx:410 msgid "Inactive" msgstr "Ανενεργό" @@ -2958,58 +2995,58 @@ msgstr "Εικονικό" #: src/tables/bom/BomTable.tsx:307 #: src/tables/part/PartTable.tsx:152 msgid "No stock" -msgstr "" +msgstr "Χωρίς απόθεμα" #: src/components/render/Part.tsx:47 #: src/components/wizards/OrderPartsWizard.tsx:135 -#: src/pages/company/SupplierPartDetail.tsx:197 -#: src/pages/company/SupplierPartDetail.tsx:394 -#: src/pages/part/PartDetail.tsx:1015 +#: src/pages/company/SupplierPartDetail.tsx:198 +#: src/pages/company/SupplierPartDetail.tsx:399 +#: src/pages/part/PartDetail.tsx:1030 #: src/tables/bom/BomTable.tsx:444 -#: src/tables/build/BuildLineTable.tsx:222 +#: src/tables/build/BuildLineTable.tsx:223 #: src/tables/part/PartTable.tsx:108 msgid "On Order" -msgstr "" +msgstr "Σε παραγγελία" #: src/components/render/Part.tsx:55 #: src/components/wizards/OrderPartsWizard.tsx:141 #: src/pages/part/PartDetail.tsx:587 -#: src/pages/part/PartDetail.tsx:1021 +#: src/pages/part/PartDetail.tsx:1036 #: src/pages/stock/StockDetail.tsx:925 -#: src/tables/part/PartTestResultTable.tsx:297 +#: src/tables/part/PartTestResultTable.tsx:305 #: src/tables/stock/StockItemTable.tsx:359 msgid "In Production" -msgstr "" +msgstr "Σε παραγωγή" #: src/components/render/Part.tsx:74 #: src/tables/stock/StockTrackingTable.tsx:206 msgid "Details" -msgstr "" +msgstr "Λεπτομέρειες" #: src/components/render/Part.tsx:112 -#: src/components/wizards/ImportPartWizard.tsx:806 +#: src/components/wizards/ImportPartWizard.tsx:807 #: src/pages/part/PartDetail.tsx:487 #: src/tables/ColumnRenderers.tsx:233 #: src/tables/ColumnRenderers.tsx:242 #: src/tables/notifications/NotificationTable.tsx:32 #: src/tables/part/PartCategoryTemplateTable.tsx:78 msgid "Category" -msgstr "" +msgstr "Κατηγορία" #: src/components/render/Stock.tsx:36 #: src/components/render/Stock.tsx:114 #: src/components/render/Stock.tsx:132 #: src/forms/BuildForms.tsx:795 -#: src/forms/PurchaseOrderForms.tsx:595 +#: src/forms/PurchaseOrderForms.tsx:647 #: src/forms/StockForms.tsx:792 #: src/forms/StockForms.tsx:839 -#: src/forms/StockForms.tsx:885 -#: src/forms/StockForms.tsx:924 -#: src/forms/StockForms.tsx:960 -#: src/forms/StockForms.tsx:1003 -#: src/forms/StockForms.tsx:1047 -#: src/forms/StockForms.tsx:1095 -#: src/forms/StockForms.tsx:1139 +#: src/forms/StockForms.tsx:892 +#: src/forms/StockForms.tsx:938 +#: src/forms/StockForms.tsx:976 +#: src/forms/StockForms.tsx:1019 +#: src/forms/StockForms.tsx:1063 +#: src/forms/StockForms.tsx:1111 +#: src/forms/StockForms.tsx:1155 #: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:88 #: src/pages/core/UserDetail.tsx:158 #: src/pages/stock/StockDetail.tsx:298 @@ -3018,25 +3055,25 @@ msgstr "" #: src/tables/Filter.tsx:400 #: src/tables/stock/StockTrackingTable.tsx:98 msgid "Location" -msgstr "" +msgstr "Τοποθεσία" #: src/components/render/Stock.tsx:99 #: src/pages/stock/StockDetail.tsx:198 #: src/pages/stock/StockDetail.tsx:930 -#: src/tables/build/BuildAllocatedStockTable.tsx:121 +#: src/tables/build/BuildAllocatedStockTable.tsx:118 #: src/tables/build/BuildOutputTable.tsx:107 #: src/tables/sales/SalesOrderAllocationTable.tsx:142 msgid "Serial Number" -msgstr "" +msgstr "Σειριακός αριθμός" #: src/components/render/Stock.tsx:104 #: src/components/wizards/OrderPartsWizard.tsx:377 #: src/forms/BuildForms.tsx:240 #: src/forms/BuildForms.tsx:634 #: src/forms/BuildForms.tsx:797 -#: src/forms/PurchaseOrderForms.tsx:801 +#: src/forms/PurchaseOrderForms.tsx:853 #: src/forms/ReturnOrderForms.tsx:243 -#: src/forms/SalesOrderForms.tsx:308 +#: src/forms/SalesOrderForms.tsx:387 #: src/forms/StockForms.tsx:841 #: src/pages/part/PartStockHistoryDetail.tsx:56 #: src/pages/part/PartStockHistoryDetail.tsx:210 @@ -3046,16 +3083,16 @@ msgstr "" #: src/pages/part/pricing/PriceBreakPanel.tsx:172 #: src/pages/stock/StockDetail.tsx:258 #: src/pages/stock/StockDetail.tsx:936 -#: src/tables/build/BuildLineTable.tsx:86 +#: src/tables/build/BuildLineTable.tsx:83 #: src/tables/part/PartPurchaseOrdersTable.tsx:94 -#: src/tables/part/PartTestResultTable.tsx:269 +#: src/tables/part/PartTestResultTable.tsx:277 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:175 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:206 #: src/tables/purchasing/SupplierPriceBreakTable.tsx:69 #: src/tables/sales/ReturnOrderLineItemTable.tsx:124 #: src/tables/stock/StockTrackingTable.tsx:72 msgid "Quantity" -msgstr "" +msgstr "Ποσότητα" #: src/components/render/Stock.tsx:117 #: src/forms/BuildForms.tsx:335 @@ -3063,16 +3100,16 @@ msgstr "" #: src/forms/BuildForms.tsx:474 #: src/forms/StockForms.tsx:793 #: src/forms/StockForms.tsx:840 -#: src/forms/StockForms.tsx:886 -#: src/forms/StockForms.tsx:925 -#: src/forms/StockForms.tsx:961 -#: src/forms/StockForms.tsx:1004 -#: src/forms/StockForms.tsx:1048 -#: src/forms/StockForms.tsx:1096 -#: src/forms/StockForms.tsx:1140 -#: src/tables/build/BuildLineTable.tsx:96 +#: src/forms/StockForms.tsx:893 +#: src/forms/StockForms.tsx:939 +#: src/forms/StockForms.tsx:977 +#: src/forms/StockForms.tsx:1020 +#: src/forms/StockForms.tsx:1064 +#: src/forms/StockForms.tsx:1112 +#: src/forms/StockForms.tsx:1156 +#: src/tables/build/BuildLineTable.tsx:93 msgid "Batch" -msgstr "" +msgstr "Παραγωγική παρτίδα" #: src/components/settings/ConfigValueList.tsx:33 #~ msgid "<0>{0} is set via {1} and was last set {2}" @@ -3080,21 +3117,21 @@ msgstr "" #: src/components/settings/ConfigValueList.tsx:36 msgid "Setting" -msgstr "" +msgstr "Ρύθμιση" #: src/components/settings/ConfigValueList.tsx:39 msgid "Source" -msgstr "" +msgstr "Πηγή" #: src/components/settings/QuickAction.tsx:47 msgid "Act" -msgstr "" +msgstr "Ενέργεια" #: src/components/settings/QuickAction.tsx:73 #: src/components/settings/QuickAction.tsx:113 #: src/tables/settings/ProjectCodeTable.tsx:46 msgid "Add Project Code" -msgstr "" +msgstr "Προσθήκη κωδικού έργου" #: src/components/settings/QuickAction.tsx:78 #: src/components/settings/QuickAction.tsx:124 @@ -3102,59 +3139,59 @@ msgstr "" #: src/tables/settings/CustomStateTable.tsx:140 #: src/tables/settings/CustomStateTable.tsx:202 msgid "Add State" -msgstr "" +msgstr "Προσθήκη κατάστασης" #: src/components/settings/QuickAction.tsx:85 msgid "Open an Issue" -msgstr "" +msgstr "Άνοιγμα αιτήματος" #: src/components/settings/QuickAction.tsx:86 msgid "Report a bug or request a feature on GitHub" -msgstr "" +msgstr "Αναφορά σφάλματος ή αιτήματος λειτουργίας στο GitHub" #: src/components/settings/QuickAction.tsx:88 msgid "Open Issue" -msgstr "" +msgstr "Άνοιγμα αιτήματος" #: src/components/settings/QuickAction.tsx:97 msgid "Add New Group" -msgstr "" +msgstr "Προσθήκη νέας ομάδας" #: src/components/settings/QuickAction.tsx:98 msgid "Create a new group to manage your users" -msgstr "" +msgstr "Δημιουργία νέας ομάδας για τη διαχείριση χρηστών" #: src/components/settings/QuickAction.tsx:100 msgid "New Group" -msgstr "" +msgstr "Νέα ομάδα" #: src/components/settings/QuickAction.tsx:105 msgid "Add New User" -msgstr "" +msgstr "Προσθήκη νέου χρήστη" #: src/components/settings/QuickAction.tsx:106 msgid "Create a new user to manage your groups" -msgstr "" +msgstr "Δημιουργία νέου χρήστη για διαχείριση ομάδων" #: src/components/settings/QuickAction.tsx:108 msgid "New User" -msgstr "" +msgstr "Νέος χρήστης" #: src/components/settings/QuickAction.tsx:114 msgid "Create a new project code to organize your items" -msgstr "" +msgstr "Δημιουργία νέου κωδικού έργου για οργάνωση Προϊόντων" #: src/components/settings/QuickAction.tsx:116 msgid "Add Code" -msgstr "" +msgstr "Προσθήκη κωδικού" #: src/components/settings/QuickAction.tsx:121 msgid "Add Custom State" -msgstr "" +msgstr "Προσθήκη προσαρμοσμένης κατάστασης" #: src/components/settings/QuickAction.tsx:122 msgid "Create a new custom state for your workflow" -msgstr "" +msgstr "Δημιουργία προσαρμοσμένης κατάστασης για τη ροή εργασίας" #: src/components/settings/SettingItem.tsx:47 #: src/components/settings/SettingItem.tsx:100 @@ -3163,40 +3200,40 @@ msgstr "" #: src/components/settings/SettingList.tsx:72 msgid "Edit Setting" -msgstr "" +msgstr "Επεξεργασία ρύθμισης" #: src/components/settings/SettingList.tsx:85 msgid "Setting {key} updated successfully" -msgstr "" +msgstr "Η ρύθμιση {key} ενημερώθηκε με επιτυχία" #: src/components/settings/SettingList.tsx:114 msgid "Setting updated" -msgstr "" +msgstr "Η ρύθμιση ενημερώθηκε" #. placeholder {0}: setting.key #: src/components/settings/SettingList.tsx:115 msgid "Setting {0} updated successfully" -msgstr "" +msgstr "Η ρύθμιση {0} ενημερώθηκε με επιτυχία" #: src/components/settings/SettingList.tsx:124 msgid "Error editing setting" -msgstr "" +msgstr "Σφάλμα κατά την επεξεργασία της ρύθμισης" #: src/components/settings/SettingList.tsx:140 msgid "Error loading settings" -msgstr "" +msgstr "Σφάλμα φόρτωσης ρυθμίσεων" #: src/components/settings/SettingList.tsx:151 msgid "No Settings" -msgstr "" +msgstr "Δεν υπάρχουν ρυθμίσεις" #: src/components/settings/SettingList.tsx:152 msgid "There are no configurable settings available" -msgstr "" +msgstr "Δεν υπάρχουν διαθέσιμες ρυθμίσεις προς διαμόρφωση" #: src/components/settings/SettingList.tsx:189 msgid "No settings specified" -msgstr "" +msgstr "Δεν καθορίστηκαν ρυθμίσεις" #: src/components/tables/FilterGroup.tsx:29 #~ msgid "Add table filter" @@ -3306,10 +3343,6 @@ msgstr "" #~ msgid "Part category updated" #~ msgstr "Part category updated" -#: src/components/tables/part/PartParameterTable.tsx:41 -#~ msgid "Parameter" -#~ msgstr "Parameter" - #: src/components/tables/part/PartParameterTable.tsx:114 #~ msgid "Part parameter updated" #~ msgstr "Part parameter updated" @@ -3560,234 +3593,229 @@ msgstr "" #: src/components/wizards/ImportPartWizard.tsx:105 msgid "Exact Match" -msgstr "" +msgstr "Ακριβής αντιστοιχία" #: src/components/wizards/ImportPartWizard.tsx:112 msgid "Current part" -msgstr "" +msgstr "Τρέχον Προϊόν" #: src/components/wizards/ImportPartWizard.tsx:118 msgid "Already Imported" -msgstr "" +msgstr "Έχει ήδη εισαχθεί" #: src/components/wizards/ImportPartWizard.tsx:205 -#: src/pages/company/CompanyDetail.tsx:136 +#: src/pages/company/CompanyDetail.tsx:137 #: src/pages/company/SupplierDetail.tsx:8 -#: src/pages/company/SupplierPartDetail.tsx:130 -#: src/pages/company/SupplierPartDetail.tsx:235 -#: src/pages/company/SupplierPartDetail.tsx:364 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:156 +#: src/pages/company/SupplierPartDetail.tsx:131 +#: src/pages/company/SupplierPartDetail.tsx:236 +#: src/pages/company/SupplierPartDetail.tsx:369 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:157 #: src/tables/Filter.tsx:360 #: src/tables/company/CompanyTable.tsx:96 #: src/tables/part/PartPurchaseOrdersTable.tsx:43 +#: src/tables/purchasing/PurchaseOrderParametricTable.tsx:34 #: src/tables/purchasing/PurchaseOrderTable.tsx:109 #: src/tables/purchasing/SupplierPriceBreakTable.tsx:40 msgid "Supplier" -msgstr "" +msgstr "Προμηθευτής" #: src/components/wizards/ImportPartWizard.tsx:221 #: src/forms/StockForms.tsx:614 msgid "Loading..." -msgstr "" +msgstr "Φόρτωση..." #: src/components/wizards/ImportPartWizard.tsx:223 msgid "Error fetching suppliers" -msgstr "" +msgstr "Σφάλμα κατά την ανάκτηση προμηθευτών" #: src/components/wizards/ImportPartWizard.tsx:224 msgid "Select supplier" -msgstr "" +msgstr "Επιλέξτε προμηθευτή" #. placeholder {0}: searchResults.length #: src/components/wizards/ImportPartWizard.tsx:246 msgid "Found {0} results" -msgstr "" +msgstr "Βρέθηκαν {0} αποτελέσματα" #: src/components/wizards/ImportPartWizard.tsx:259 msgid "Import this part" -msgstr "" +msgstr "Εισαγωγή αυτού του προϊόντος" #: src/components/wizards/ImportPartWizard.tsx:313 msgid "Are you sure you want to import this part into the selected category now?" -msgstr "" +msgstr "Είστε σίγουρος ότι θέλετε να εισαγάγετε αυτό το Προϊόν στην επιλεγμένη κατηγορία τώρα;" #: src/components/wizards/ImportPartWizard.tsx:326 msgid "Import Now" -msgstr "" +msgstr "Εισαγωγή τώρα" #: src/components/wizards/ImportPartWizard.tsx:372 msgid "Select and edit the parameters you want to add to this part." -msgstr "" +msgstr "Επιλέξτε και επεξεργαστείτε τις παραμέτρους που θέλετε να προσθέσετε σε αυτό το Προϊόν." #: src/components/wizards/ImportPartWizard.tsx:379 msgid "Default category parameters" -msgstr "" +msgstr "Προεπιλεγμένες παράμετροι κατηγορίας" #: src/components/wizards/ImportPartWizard.tsx:391 msgid "Other parameters" -msgstr "" +msgstr "Άλλες παράμετροι" #: src/components/wizards/ImportPartWizard.tsx:446 msgid "Add a new parameter" -msgstr "" +msgstr "Προσθήκη νέας παραμέτρου" #: src/components/wizards/ImportPartWizard.tsx:468 msgid "Skip" -msgstr "" +msgstr "Παράλειψη" #: src/components/wizards/ImportPartWizard.tsx:476 msgid "Create Parameters" -msgstr "" +msgstr "Δημιουργία παραμέτρων" #: src/components/wizards/ImportPartWizard.tsx:493 msgid "Create initial stock for the imported part." -msgstr "" +msgstr "Δημιουργία αρχικού αποθέματος για το εισαγόμενο Προϊόν." #: src/components/wizards/ImportPartWizard.tsx:511 msgid "Next" -msgstr "" +msgstr "Επόμενο" #: src/components/wizards/ImportPartWizard.tsx:540 -#: src/pages/part/PartDetail.tsx:1046 +#: src/pages/part/PartDetail.tsx:1067 #: src/tables/part/PartTable.tsx:408 msgid "Edit Part" -msgstr "" +msgstr "Επεξεργασία Προϊόντος" #: src/components/wizards/ImportPartWizard.tsx:567 msgid "Part imported successfully!" -msgstr "" +msgstr "Το Προϊόν εισήχθη με επιτυχία!" #: src/components/wizards/ImportPartWizard.tsx:576 msgid "Failed to import part: " -msgstr "" +msgstr "Αποτυχία εισαγωγής Προϊόντος: " #: src/components/wizards/ImportPartWizard.tsx:641 msgid "Are you sure, you want to import the supplier and manufacturer part into this part?" -msgstr "" +msgstr "Είστε σίγουρος ότι θέλετε να εισαγάγετε το προμηθευτή και τον κατασκευαστή σε αυτό το Προϊόν;" #: src/components/wizards/ImportPartWizard.tsx:655 msgid "Import" -msgstr "" +msgstr "Εισαγωγή" -#: src/components/wizards/ImportPartWizard.tsx:691 +#: src/components/wizards/ImportPartWizard.tsx:692 msgid "Parameters created successfully!" -msgstr "" +msgstr "Οι παράμετροι δημιουργήθηκαν με επιτυχία!" -#: src/components/wizards/ImportPartWizard.tsx:719 +#: src/components/wizards/ImportPartWizard.tsx:720 msgid "Failed to create parameters, please fix the errors and try again" -msgstr "" +msgstr "Αποτυχία δημιουργίας παραμέτρων, διορθώστε τα σφάλματα και προσπαθήστε ξανά" #. placeholder {0}: supplierPart?.supplier -#: src/components/wizards/ImportPartWizard.tsx:739 +#: src/components/wizards/ImportPartWizard.tsx:740 msgid "Part imported successfully from supplier {0}." -msgstr "" +msgstr "Το Προϊόν εισήχθη με επιτυχία από τον προμηθευτή {0}." -#: src/components/wizards/ImportPartWizard.tsx:752 +#: src/components/wizards/ImportPartWizard.tsx:753 msgid "Open Part" -msgstr "" +msgstr "Άνοιγμα Προϊόντος" -#: src/components/wizards/ImportPartWizard.tsx:759 +#: src/components/wizards/ImportPartWizard.tsx:760 msgid "Open Supplier Part" -msgstr "" +msgstr "Άνοιγμα Προϊόντος προμηθευτή" -#: src/components/wizards/ImportPartWizard.tsx:766 +#: src/components/wizards/ImportPartWizard.tsx:767 msgid "Open Manufacturer Part" -msgstr "" +msgstr "Άνοιγμα Προϊόντος κατασκευαστή" #: src/components/wizards/ImportPartWizard.tsx:797 #: src/tables/part/PartTable.tsx:499 #~ msgid "Import Part" #~ msgstr "Import Part" -#: src/components/wizards/ImportPartWizard.tsx:802 +#: src/components/wizards/ImportPartWizard.tsx:803 msgid "Import Supplier Part" -msgstr "" +msgstr "Εισαγωγή Προϊόντος προμηθευτή" -#: src/components/wizards/ImportPartWizard.tsx:804 +#: src/components/wizards/ImportPartWizard.tsx:805 msgid "Search Supplier Part" -msgstr "" +msgstr "Αναζήτηση Προϊόντος προμηθευτή" -#: src/components/wizards/ImportPartWizard.tsx:806 -#: src/pages/company/ManufacturerPartDetail.tsx:166 -#: src/pages/part/PartDetail.tsx:793 -msgid "Parameters" -msgstr "" - -#: src/components/wizards/ImportPartWizard.tsx:806 +#: src/components/wizards/ImportPartWizard.tsx:807 msgid "Confirm import" -msgstr "" +msgstr "Επιβεβαίωση εισαγωγής" -#: src/components/wizards/ImportPartWizard.tsx:808 +#: src/components/wizards/ImportPartWizard.tsx:809 msgid "Done" -msgstr "" +msgstr "Ολοκληρώθηκε" #: src/components/wizards/OrderPartsWizard.tsx:75 msgid "Error fetching part requirements" -msgstr "" +msgstr "Σφάλμα κατά την ανάκτηση απαιτήσεων Προϊόντος" #: src/components/wizards/OrderPartsWizard.tsx:113 msgid "Requirements" -msgstr "" +msgstr "Απαιτήσεις" #: src/components/wizards/OrderPartsWizard.tsx:117 msgid "Build Requirements" -msgstr "" +msgstr "Απαιτήσεις παραγωγής" #: src/components/wizards/OrderPartsWizard.tsx:123 msgid "Sales Requirements" -msgstr "" +msgstr "Απαιτήσεις πωλήσεων" #: src/components/wizards/OrderPartsWizard.tsx:129 -#: src/forms/StockForms.tsx:887 -#: src/forms/StockForms.tsx:926 -#: src/forms/StockForms.tsx:962 -#: src/forms/StockForms.tsx:1005 -#: src/forms/StockForms.tsx:1049 -#: src/forms/StockForms.tsx:1097 -#: src/forms/StockForms.tsx:1141 -#: src/pages/company/SupplierPartDetail.tsx:190 -#: src/pages/company/SupplierPartDetail.tsx:378 +#: src/forms/StockForms.tsx:894 +#: src/forms/StockForms.tsx:940 +#: src/forms/StockForms.tsx:978 +#: src/forms/StockForms.tsx:1021 +#: src/forms/StockForms.tsx:1065 +#: src/forms/StockForms.tsx:1113 +#: src/forms/StockForms.tsx:1157 +#: src/pages/company/SupplierPartDetail.tsx:191 +#: src/pages/company/SupplierPartDetail.tsx:383 #: src/pages/part/PartDetail.tsx:534 -#: src/pages/part/PartDetail.tsx:984 +#: src/pages/part/PartDetail.tsx:999 #: src/tables/Filter.tsx:92 #: src/tables/purchasing/SupplierPartTable.tsx:230 msgid "In Stock" -msgstr "" +msgstr "Σε απόθεμα" #: src/components/wizards/OrderPartsWizard.tsx:146 -#: src/tables/build/BuildLineTable.tsx:404 +#: src/tables/build/BuildLineTable.tsx:405 msgid "Required Quantity" -msgstr "" +msgstr "Απαιτούμενη ποσότητα" #: src/components/wizards/OrderPartsWizard.tsx:203 msgid "New Purchase Order" -msgstr "" +msgstr "Νέα παραγγελία αγοράς" #: src/components/wizards/OrderPartsWizard.tsx:205 msgid "Purchase order created" -msgstr "" +msgstr "Η παραγγελία αγοράς δημιουργήθηκε" #: src/components/wizards/OrderPartsWizard.tsx:217 msgid "New Supplier Part" -msgstr "" +msgstr "Νέο Προϊόν προμηθευτή" #: src/components/wizards/OrderPartsWizard.tsx:219 #: src/tables/purchasing/SupplierPartTable.tsx:180 #: src/tables/purchasing/SupplierPartTable.tsx:258 msgid "Supplier part created" -msgstr "" +msgstr "Το Προϊόν προμηθευτή δημιουργήθηκε" #: src/components/wizards/OrderPartsWizard.tsx:247 msgid "Add to Purchase Order" -msgstr "" +msgstr "Προσθήκη στην παραγγελία αγοράς" #: src/components/wizards/OrderPartsWizard.tsx:259 msgid "Part added to purchase order" -msgstr "" +msgstr "Το Προϊόν προστέθηκε στην παραγγελία αγοράς" #: src/components/wizards/OrderPartsWizard.tsx:303 msgid "Select supplier part" -msgstr "" +msgstr "Επιλέξτε Προϊόν προμηθευτή" #: src/components/wizards/OrderPartsWizard.tsx:323 msgid "Copy supplier part number" @@ -3795,63 +3823,63 @@ msgstr "" #: src/components/wizards/OrderPartsWizard.tsx:326 msgid "New supplier part" -msgstr "" +msgstr "Νέο Προϊόν προμηθευτή" #: src/components/wizards/OrderPartsWizard.tsx:350 msgid "Select purchase order" -msgstr "" +msgstr "Επιλέξτε παραγγελία αγοράς" #: src/components/wizards/OrderPartsWizard.tsx:364 msgid "New purchase order" -msgstr "" +msgstr "Νέα παραγγελία αγοράς" #: src/components/wizards/OrderPartsWizard.tsx:420 msgid "Add to selected purchase order" -msgstr "" +msgstr "Προσθήκη στην επιλεγμένη παραγγελία αγοράς" #: src/components/wizards/OrderPartsWizard.tsx:432 #: src/components/wizards/OrderPartsWizard.tsx:545 msgid "No parts selected" -msgstr "" +msgstr "Δεν επιλέχθηκαν προϊόντα" #: src/components/wizards/OrderPartsWizard.tsx:433 msgid "No purchaseable parts selected" -msgstr "" +msgstr "Δεν επιλέχθηκαν αγοραζόμενα Προϊόντα" #: src/components/wizards/OrderPartsWizard.tsx:469 msgid "Parts Added" -msgstr "" +msgstr "Τα Προϊόντα προστέθηκαν" #: src/components/wizards/OrderPartsWizard.tsx:470 msgid "All selected parts added to a purchase order" -msgstr "" +msgstr "Όλα τα επιλεγμένα Προϊόντα προστέθηκαν σε παραγγελία αγοράς" #: src/components/wizards/OrderPartsWizard.tsx:546 msgid "You must select at least one part to order" -msgstr "" +msgstr "Πρέπει να επιλέξετε τουλάχιστον ένα Προϊόν για παραγγελία" #: src/components/wizards/OrderPartsWizard.tsx:557 msgid "Supplier part is required" -msgstr "" +msgstr "Απαιτείται Προϊόν προμηθευτή" #: src/components/wizards/OrderPartsWizard.tsx:561 msgid "Quantity is required" -msgstr "" +msgstr "Απαιτείται ποσότητα" #: src/components/wizards/OrderPartsWizard.tsx:574 msgid "Invalid part selection" -msgstr "" +msgstr "Μη έγκυρη επιλογή Προϊόντος" #: src/components/wizards/OrderPartsWizard.tsx:576 msgid "Please correct the errors in the selected parts" -msgstr "" +msgstr "Παρακαλώ διορθώστε τα σφάλματα στα επιλεγμένα Προϊόντα" #: src/components/wizards/OrderPartsWizard.tsx:587 -#: src/tables/build/BuildLineTable.tsx:815 +#: src/tables/build/BuildLineTable.tsx:822 #: src/tables/part/PartTable.tsx:522 #: src/tables/sales/SalesOrderLineItemTable.tsx:370 msgid "Order Parts" -msgstr "" +msgstr "Παραγγελία Προϊόντων" #: src/contexts/LanguageContext.tsx:22 #~ msgid "Arabic" @@ -4012,74 +4040,74 @@ msgstr "" #: src/defaults/actions.tsx:42 msgid "Go to the InvenTree dashboard" -msgstr "" +msgstr "Μετάβαση στο InvenTree dashboard" #: src/defaults/actions.tsx:49 msgid "Visit the documentation to learn more about InvenTree" -msgstr "" +msgstr "Επισκεφθείτε την τεκμηρίωση για να μάθετε περισσότερα για το InvenTree" #: src/defaults/actions.tsx:58 msgid "About the InvenTree org" -msgstr "" +msgstr "Σχετικά με τον οργανισμό InvenTree" #: src/defaults/actions.tsx:64 msgid "Server Information" -msgstr "" +msgstr "Πληροφορίες διακομιστή" #: src/defaults/actions.tsx:65 #: src/defaults/links.tsx:169 msgid "About this InvenTree instance" -msgstr "" +msgstr "Σχετικά με αυτήν την εγκατάσταση InvenTree" #: src/defaults/actions.tsx:71 #: src/defaults/links.tsx:153 #: src/defaults/links.tsx:175 msgid "License Information" -msgstr "" +msgstr "Πληροφορίες άδειας" #: src/defaults/actions.tsx:72 msgid "Licenses for dependencies of the service" -msgstr "" +msgstr "Άδειες για τις εξαρτήσεις της υπηρεσίας" #: src/defaults/actions.tsx:78 msgid "Open Navigation" -msgstr "" +msgstr "Άνοιγμα πλοήγησης" #: src/defaults/actions.tsx:79 msgid "Open the main navigation menu" -msgstr "" +msgstr "Άνοιγμα του κύριου μενού πλοήγησης" #: src/defaults/actions.tsx:86 msgid "Scan a barcode or QR code" -msgstr "" +msgstr "Σάρωση barcode ή QR code" #: src/defaults/actions.tsx:94 msgid "Go to your user settings" -msgstr "" +msgstr "Μετάβαση στις ρυθμίσεις χρήστη" #: src/defaults/actions.tsx:105 msgid "Go to Purchase Orders" -msgstr "" +msgstr "Μετάβαση στις Εντολές Αγοράς" #: src/defaults/actions.tsx:115 msgid "Go to Sales Orders" -msgstr "" +msgstr "Μετάβαση στις Εντολές Πώλησης" #: src/defaults/actions.tsx:126 msgid "Go to Return Orders" -msgstr "" +msgstr "Μετάβαση στις Εντολές Επιστροφής" #: src/defaults/actions.tsx:136 msgid "Go to Build Orders" -msgstr "" +msgstr "Μετάβαση στις Εντολές Κατασκευής" #: src/defaults/actions.tsx:145 msgid "Go to System Settings" -msgstr "" +msgstr "Μετάβαση στις Ρυθμίσεις Συστήματος" #: src/defaults/actions.tsx:154 msgid "Go to the Admin Center" -msgstr "" +msgstr "Μετάβαση στο Κέντρο Διαχείρισης" #: src/defaults/dashboardItems.tsx:29 #~ msgid "Latest Parts" @@ -4153,35 +4181,35 @@ msgstr "" #: src/defaults/links.tsx:93 msgid "API" -msgstr "" +msgstr "API" #: src/defaults/links.tsx:96 msgid "InvenTree API documentation" -msgstr "" +msgstr "Τεκμηρίωση API του InvenTree" #: src/defaults/links.tsx:100 msgid "Developer Manual" -msgstr "" +msgstr "Εγχειρίδιο Προγραμματιστή" #: src/defaults/links.tsx:103 msgid "InvenTree developer manual" -msgstr "" +msgstr "Εγχειρίδιο προγραμματιστών του InvenTree" #: src/defaults/links.tsx:107 msgid "FAQ" -msgstr "" +msgstr "Συχνές Ερωτήσεις" #: src/defaults/links.tsx:110 msgid "Frequently asked questions" -msgstr "" +msgstr "Συχνές ερωτήσεις" #: src/defaults/links.tsx:114 msgid "GitHub Repository" -msgstr "" +msgstr "Αποθετήριο GitHub" #: src/defaults/links.tsx:117 msgid "InvenTree source code on GitHub" -msgstr "" +msgstr "Πηγαίος κώδικας του InvenTree στο GitHub" #: src/defaults/links.tsx:117 #~ msgid "Licenses for packages used by InvenTree" @@ -4190,7 +4218,7 @@ msgstr "" #: src/defaults/links.tsx:127 #: src/defaults/links.tsx:168 msgid "System Information" -msgstr "" +msgstr "Πληροφορίες Συστήματος" #: src/defaults/links.tsx:134 #~ msgid "Licenses" @@ -4198,11 +4226,11 @@ msgstr "" #: src/defaults/links.tsx:176 msgid "Licenses for dependencies of the InvenTree software" -msgstr "" +msgstr "Άδειες για τις εξαρτήσεις του λογισμικού InvenTree" #: src/defaults/links.tsx:187 msgid "About the InvenTree Project" -msgstr "" +msgstr "Σχετικά με το έργο InvenTree" #: src/defaults/menuItems.tsx:7 #~ msgid "Open sourcea" @@ -4322,19 +4350,19 @@ msgstr "" #: src/forms/BomForms.tsx:109 msgid "Substitute Part" -msgstr "" +msgstr "Προϊόν υποκατάστασης" #: src/forms/BomForms.tsx:126 msgid "Edit BOM Substitutes" -msgstr "" +msgstr "Επεξεργασία υποκαταστάτων BOM" #: src/forms/BomForms.tsx:133 msgid "Add Substitute" -msgstr "" +msgstr "Προσθήκη υποκατάστατου" #: src/forms/BomForms.tsx:134 msgid "Substitute added" -msgstr "" +msgstr "Το υποκατάστατο προστέθηκε" #: src/forms/BuildForms.tsx:112 #: src/forms/BuildForms.tsx:217 @@ -4349,35 +4377,35 @@ msgstr "" #: src/forms/BuildForms.tsx:333 #: src/forms/BuildForms.tsx:408 #: src/forms/BuildForms.tsx:685 -#: src/tables/build/BuildAllocatedStockTable.tsx:150 +#: src/tables/build/BuildAllocatedStockTable.tsx:147 #: src/tables/build/BuildOutputTable.tsx:582 -#: src/tables/part/PartTestResultTable.tsx:272 +#: src/tables/part/PartTestResultTable.tsx:280 msgid "Build Output" -msgstr "" +msgstr "Αποτέλεσμα κατασκευής" #: src/forms/BuildForms.tsx:334 msgid "Quantity to Complete" -msgstr "" +msgstr "Ποσότητα προς ολοκλήρωση" #: src/forms/BuildForms.tsx:336 #: src/forms/BuildForms.tsx:411 #: src/forms/BuildForms.tsx:475 -#: src/forms/PurchaseOrderForms.tsx:717 +#: src/forms/PurchaseOrderForms.tsx:769 #: src/forms/ReturnOrderForms.tsx:197 #: src/forms/ReturnOrderForms.tsx:244 #: src/forms/StockForms.tsx:712 #: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:87 -#: src/pages/build/BuildDetail.tsx:222 +#: src/pages/build/BuildDetail.tsx:223 #: src/pages/core/UserDetail.tsx:151 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:168 -#: src/pages/sales/ReturnOrderDetail.tsx:135 -#: src/pages/sales/SalesOrderDetail.tsx:125 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:169 +#: src/pages/sales/ReturnOrderDetail.tsx:136 +#: src/pages/sales/SalesOrderDetail.tsx:126 #: src/pages/stock/StockDetail.tsx:170 #: src/tables/Filter.tsx:274 #: src/tables/build/BuildOutputTable.tsx:404 #: src/tables/machine/MachineListTable.tsx:387 #: src/tables/part/PartPurchaseOrdersTable.tsx:38 -#: src/tables/part/PartTestResultTable.tsx:309 +#: src/tables/part/PartTestResultTable.tsx:317 #: src/tables/sales/ReturnOrderLineItemTable.tsx:138 #: src/tables/sales/ReturnOrderLineItemTable.tsx:176 #: src/tables/settings/CustomStateTable.tsx:79 @@ -4386,15 +4414,15 @@ msgstr "" #: src/tables/stock/StockItemTable.tsx:327 #: src/tables/stock/StockTrackingTable.tsx:65 msgid "Status" -msgstr "" +msgstr "Κατάσταση" #: src/forms/BuildForms.tsx:358 msgid "Complete Build Outputs" -msgstr "" +msgstr "Ολοκλήρωση αποτελεσμάτων κατασκευής" #: src/forms/BuildForms.tsx:361 msgid "Build outputs have been completed" -msgstr "" +msgstr "Τα αποτελέσματα κατασκευής ολοκληρώθηκαν" #: src/forms/BuildForms.tsx:408 #~ msgid "Selected build outputs will be deleted" @@ -4402,24 +4430,24 @@ msgstr "" #: src/forms/BuildForms.tsx:409 msgid "Quantity to Scrap" -msgstr "" +msgstr "Ποσότητα προς απόρριψη" #: src/forms/BuildForms.tsx:429 #: src/forms/BuildForms.tsx:431 msgid "Scrap Build Outputs" -msgstr "" +msgstr "Απόρριψη αποτελεσμάτων κατασκευής" #: src/forms/BuildForms.tsx:434 msgid "Selected build outputs will be completed, but marked as scrapped" -msgstr "" +msgstr "Τα επιλεγμένα αποτελέσματα κατασκευής θα ολοκληρωθούν αλλά θα σημανθούν ως απορριφθέντα" #: src/forms/BuildForms.tsx:436 msgid "Allocated stock items will be consumed" -msgstr "" +msgstr "Τα δεσμευμένα είδη αποθέματος θα καταναλωθούν" #: src/forms/BuildForms.tsx:442 msgid "Build outputs have been scrapped" -msgstr "" +msgstr "Τα αποτελέσματα κατασκευής έχουν απορριφθεί" #: src/forms/BuildForms.tsx:470 #~ msgid "Remove line" @@ -4428,87 +4456,88 @@ msgstr "" #: src/forms/BuildForms.tsx:485 #: src/forms/BuildForms.tsx:487 msgid "Cancel Build Outputs" -msgstr "" +msgstr "Ακύρωση αποτελεσμάτων κατασκευής" #: src/forms/BuildForms.tsx:489 msgid "Selected build outputs will be removed" -msgstr "" +msgstr "Τα επιλεγμένα αποτελέσματα κατασκευής θα αφαιρεθούν" #: src/forms/BuildForms.tsx:491 msgid "Allocated stock items will be returned to stock" -msgstr "" +msgstr "Τα δεσμευμένα είδη θα επιστραφούν στο απόθεμα" #: src/forms/BuildForms.tsx:498 msgid "Build outputs have been cancelled" -msgstr "" +msgstr "Τα αποτελέσματα κατασκευής ακυρώθηκαν" #: src/forms/BuildForms.tsx:631 -#: src/pages/build/BuildDetail.tsx:207 -#: src/pages/company/ManufacturerPartDetail.tsx:85 -#: src/pages/company/SupplierPartDetail.tsx:96 +#: src/pages/build/BuildDetail.tsx:208 +#: src/pages/company/ManufacturerPartDetail.tsx:84 +#: src/pages/company/SupplierPartDetail.tsx:97 #: src/pages/part/PartDetail.tsx:453 #: src/pages/stock/StockDetail.tsx:153 #: src/tables/bom/BomTable.tsx:134 #: src/tables/bom/UsedInTable.tsx:40 -#: src/tables/build/BuildAllocatedStockTable.tsx:108 -#: src/tables/build/BuildLineTable.tsx:336 +#: src/tables/build/BuildAllocatedStockTable.tsx:105 +#: src/tables/build/BuildLineTable.tsx:337 #: src/tables/build/BuildOrderTable.tsx:79 #: src/tables/part/PartSalesAllocationsTable.tsx:61 #: src/tables/part/RelatedPartTable.tsx:73 +#: src/tables/purchasing/ManufacturerPartParametricTable.tsx:21 #: src/tables/purchasing/ManufacturerPartTable.tsx:69 #: src/tables/purchasing/SupplierPartTable.tsx:70 #: src/tables/sales/SalesOrderAllocationTable.tsx:135 #: src/tables/sales/SalesOrderLineItemTable.tsx:99 #: src/tables/stock/StockItemTable.tsx:69 msgid "IPN" -msgstr "" +msgstr "IPN" #: src/forms/BuildForms.tsx:632 #: src/forms/BuildForms.tsx:796 #: src/forms/BuildForms.tsx:897 -#: src/forms/SalesOrderForms.tsx:306 -#: src/tables/build/BuildAllocatedStockTable.tsx:139 -#: src/tables/build/BuildLineTable.tsx:182 +#: src/forms/SalesOrderForms.tsx:385 +#: src/tables/build/BuildAllocatedStockTable.tsx:136 +#: src/tables/build/BuildLineTable.tsx:183 #: src/tables/sales/SalesOrderLineItemTable.tsx:342 #: src/tables/stock/StockItemTable.tsx:338 msgid "Allocated" -msgstr "" +msgstr "Δεσμευμένο" #: src/forms/BuildForms.tsx:667 -#: src/forms/SalesOrderForms.tsx:295 -#: src/pages/build/BuildDetail.tsx:108 -#: src/pages/build/BuildDetail.tsx:326 +#: src/forms/SalesOrderForms.tsx:374 +#: src/pages/build/BuildDetail.tsx:109 +#: src/pages/build/BuildDetail.tsx:327 msgid "Source Location" -msgstr "" +msgstr "Τοποθεσία προέλευσης" #: src/forms/BuildForms.tsx:668 -#: src/forms/SalesOrderForms.tsx:296 +#: src/forms/SalesOrderForms.tsx:375 msgid "Select the source location for the stock allocation" -msgstr "" +msgstr "Επιλέξτε την τοποθεσία προέλευσης για τη δέσμευση αποθέματος" #: src/forms/BuildForms.tsx:700 -#: src/forms/SalesOrderForms.tsx:336 -#: src/tables/build/BuildLineTable.tsx:574 -#: src/tables/build/BuildLineTable.tsx:731 -#: src/tables/build/BuildLineTable.tsx:830 +#: src/forms/SalesOrderForms.tsx:415 +#: src/tables/build/BuildLineTable.tsx:575 +#: src/tables/build/BuildLineTable.tsx:738 +#: src/tables/build/BuildLineTable.tsx:837 #: src/tables/sales/SalesOrderLineItemTable.tsx:380 #: src/tables/sales/SalesOrderLineItemTable.tsx:406 msgid "Allocate Stock" -msgstr "" +msgstr "Δέσμευση αποθέματος" #: src/forms/BuildForms.tsx:703 -#: src/forms/SalesOrderForms.tsx:341 +#: src/forms/SalesOrderForms.tsx:420 msgid "Stock items allocated" -msgstr "" +msgstr "Τα είδη αποθέματος δεσμεύτηκαν" #: src/forms/BuildForms.tsx:816 #: src/forms/BuildForms.tsx:917 -#: src/tables/build/BuildAllocatedStockTable.tsx:240 -#: src/tables/build/BuildAllocatedStockTable.tsx:272 -#: src/tables/build/BuildLineTable.tsx:741 -#: src/tables/build/BuildLineTable.tsx:864 +#: src/tables/build/BuildAllocatedStockTable.tsx:243 +#: src/tables/build/BuildAllocatedStockTable.tsx:279 +#: src/tables/build/BuildLineTable.tsx:748 +#: src/tables/build/BuildLineTable.tsx:871 msgid "Consume Stock" -msgstr "" +msgstr "Κατανάλωση αποθέματος" #: src/forms/BuildForms.tsx:817 #: src/forms/BuildForms.tsx:918 @@ -4521,40 +4550,40 @@ msgstr "" #~ msgstr "Stock items consumed" #: src/forms/BuildForms.tsx:853 -#: src/tables/build/BuildLineTable.tsx:514 +#: src/tables/build/BuildLineTable.tsx:515 #: src/tables/part/PartBuildAllocationsTable.tsx:101 msgid "Fully consumed" -msgstr "" +msgstr "Πλήρως καταναλωμένο" #: src/forms/BuildForms.tsx:898 -#: src/tables/build/BuildLineTable.tsx:187 +#: src/tables/build/BuildLineTable.tsx:188 #: src/tables/stock/StockItemTable.tsx:367 msgid "Consumed" -msgstr "" +msgstr "Καταναλωμένο" -#: src/forms/CommonForms.tsx:88 -#: src/forms/PurchaseOrderForms.tsx:125 +#: src/forms/CommonForms.tsx:92 +#: src/forms/PurchaseOrderForms.tsx:176 #: src/forms/ReturnOrderForms.tsx:138 -#: src/forms/SalesOrderForms.tsx:164 +#: src/forms/SalesOrderForms.tsx:185 msgid "Select project code for this line item" -msgstr "" +msgstr "Επιλέξτε κωδικό έργου για αυτό το Προϊόν" #: src/forms/CompanyForms.tsx:150 #~ msgid "Company updated" #~ msgstr "Company updated" -#: src/forms/PartForms.tsx:85 -#: src/forms/PartForms.tsx:207 -#: src/pages/part/CategoryDetail.tsx:124 +#: src/forms/PartForms.tsx:99 +#: src/forms/PartForms.tsx:228 +#: src/pages/part/CategoryDetail.tsx:127 #: src/pages/part/PartDetail.tsx:668 #: src/tables/part/PartCategoryTable.tsx:94 #: src/tables/part/PartTable.tsx:325 msgid "Subscribed" -msgstr "" +msgstr "Σε εγγραφή" -#: src/forms/PartForms.tsx:86 +#: src/forms/PartForms.tsx:100 msgid "Subscribe to notifications for this part" -msgstr "" +msgstr "Εγγραφή σε ειδοποιήσεις για αυτό το Προϊόν" #: src/forms/PartForms.tsx:108 #~ msgid "Part created" @@ -4564,182 +4593,210 @@ msgstr "" #~ msgid "Part updated" #~ msgstr "Part updated" -#: src/forms/PartForms.tsx:193 +#: src/forms/PartForms.tsx:214 msgid "Parent part category" -msgstr "" +msgstr "Γονική κατηγορία Προϊόντος" -#: src/forms/PartForms.tsx:208 +#: src/forms/PartForms.tsx:229 msgid "Subscribe to notifications for this category" -msgstr "" - -#: src/forms/PurchaseOrderForms.tsx:388 -msgid "Assign Batch Code and Serial Numbers" -msgstr "" - -#: src/forms/PurchaseOrderForms.tsx:390 -msgid "Assign Batch Code" -msgstr "" - -#: src/forms/PurchaseOrderForms.tsx:410 -msgid "Choose Location" -msgstr "" - -#: src/forms/PurchaseOrderForms.tsx:418 -msgid "Item Destination selected" -msgstr "" +msgstr "Εγγραφή σε ειδοποιήσεις για αυτή την κατηγορία" #: src/forms/PurchaseOrderForms.tsx:421 #~ msgid "Assign Batch Code{0}" #~ msgstr "Assign Batch Code{0}" -#: src/forms/PurchaseOrderForms.tsx:428 -msgid "Part category default location selected" -msgstr "" +#: src/forms/PurchaseOrderForms.tsx:440 +msgid "Assign Batch Code and Serial Numbers" +msgstr "Ανάθεση κωδικού παρτίδας και σειριακών αριθμών" -#: src/forms/PurchaseOrderForms.tsx:438 -msgid "Received stock location selected" -msgstr "" +#: src/forms/PurchaseOrderForms.tsx:442 +msgid "Assign Batch Code" +msgstr "Ανάθεση κωδικού παρτίδας" #: src/forms/PurchaseOrderForms.tsx:444 #: src/forms/StockForms.tsx:428 #~ msgid "Remove item from list" #~ msgstr "Remove item from list" -#: src/forms/PurchaseOrderForms.tsx:446 +#: src/forms/PurchaseOrderForms.tsx:462 +msgid "Choose Location" +msgstr "Επιλογή τοποθεσίας" + +#: src/forms/PurchaseOrderForms.tsx:470 +msgid "Item Destination selected" +msgstr "Επιλέχθηκε προορισμός Προϊόντος" + +#: src/forms/PurchaseOrderForms.tsx:480 +msgid "Part category default location selected" +msgstr "Επιλέχθηκε η προεπιλεγμένη τοποθεσία της κατηγορίας" + +#: src/forms/PurchaseOrderForms.tsx:490 +msgid "Received stock location selected" +msgstr "Επιλέχθηκε τοποθεσία παραληφθέντος αποθέματος" + +#: src/forms/PurchaseOrderForms.tsx:498 msgid "Default location selected" -msgstr "" +msgstr "Επιλέχθηκε η προεπιλεγμένη τοποθεσία" -#: src/forms/PurchaseOrderForms.tsx:507 +#: src/forms/PurchaseOrderForms.tsx:559 msgid "Set Location" -msgstr "" - -#: src/forms/PurchaseOrderForms.tsx:524 -msgid "Set Expiry Date" -msgstr "" - -#: src/forms/PurchaseOrderForms.tsx:532 -#: src/forms/StockForms.tsx:693 -msgid "Adjust Packaging" -msgstr "" - -#: src/forms/PurchaseOrderForms.tsx:540 -#: src/forms/StockForms.tsx:684 -#: src/hooks/UseStockAdjustActions.tsx:148 -msgid "Change Status" -msgstr "" - -#: src/forms/PurchaseOrderForms.tsx:546 -msgid "Add Note" -msgstr "" +msgstr "Ορισμός τοποθεσίας" #: src/forms/PurchaseOrderForms.tsx:566 #~ msgid "Serial numbers" #~ msgstr "Serial numbers" +#: src/forms/PurchaseOrderForms.tsx:576 +msgid "Set Expiry Date" +msgstr "Ορισμός ημερομηνίας λήξης" + #: src/forms/PurchaseOrderForms.tsx:582 #~ msgid "Store at line item destination" #~ msgstr "Store at line item destination" -#: src/forms/PurchaseOrderForms.tsx:610 -msgid "Store at default location" -msgstr "" +#: src/forms/PurchaseOrderForms.tsx:584 +#: src/forms/StockForms.tsx:693 +msgid "Adjust Packaging" +msgstr "Προσαρμογή συσκευασίας" -#: src/forms/PurchaseOrderForms.tsx:625 -msgid "Store at line item destination " -msgstr "" +#: src/forms/PurchaseOrderForms.tsx:592 +#: src/forms/StockForms.tsx:684 +#: src/hooks/UseStockAdjustActions.tsx:148 +msgid "Change Status" +msgstr "Αλλαγή κατάστασης" -#: src/forms/PurchaseOrderForms.tsx:637 -msgid "Store with already received stock" -msgstr "" +#: src/forms/PurchaseOrderForms.tsx:598 +msgid "Add Note" +msgstr "Προσθήκη σημείωσης" #: src/forms/PurchaseOrderForms.tsx:658 #~ msgid "Receive line items" #~ msgstr "Receive line items" -#: src/forms/PurchaseOrderForms.tsx:661 -#: src/pages/build/BuildDetail.tsx:340 +#: src/forms/PurchaseOrderForms.tsx:662 +msgid "Store at default location" +msgstr "Αποθήκευση στην προεπιλεγμένη τοποθεσία" + +#: src/forms/PurchaseOrderForms.tsx:677 +msgid "Store at line item destination " +msgstr "Αποθήκευση στον προορισμό της γραμμής " + +#: src/forms/PurchaseOrderForms.tsx:689 +msgid "Store with already received stock" +msgstr "Αποθήκευση με ήδη παραληφθέν απόθεμα" + +#: src/forms/PurchaseOrderForms.tsx:713 +#: src/pages/build/BuildDetail.tsx:341 #: src/pages/stock/StockDetail.tsx:280 #: src/pages/stock/StockDetail.tsx:952 #: src/tables/Filter.tsx:83 -#: src/tables/build/BuildAllocatedStockTable.tsx:128 +#: src/tables/build/BuildAllocatedStockTable.tsx:125 #: src/tables/build/BuildOutputTable.tsx:112 -#: src/tables/part/PartTestResultTable.tsx:260 -#: src/tables/part/PartTestResultTable.tsx:281 +#: src/tables/part/PartTestResultTable.tsx:268 +#: src/tables/part/PartTestResultTable.tsx:289 #: src/tables/sales/SalesOrderAllocationTable.tsx:149 msgid "Batch Code" -msgstr "" +msgstr "Κωδικός παρτίδας" -#: src/forms/PurchaseOrderForms.tsx:662 +#: src/forms/PurchaseOrderForms.tsx:714 msgid "Enter batch code for received items" -msgstr "" +msgstr "Εισαγάγετε κωδικό παρτίδας για τα παραληφθέντα είδη" -#: src/forms/PurchaseOrderForms.tsx:675 +#: src/forms/PurchaseOrderForms.tsx:727 #: src/forms/StockForms.tsx:218 msgid "Serial Numbers" -msgstr "" +msgstr "Σειριακοί αριθμοί" -#: src/forms/PurchaseOrderForms.tsx:676 +#: src/forms/PurchaseOrderForms.tsx:728 msgid "Enter serial numbers for received items" -msgstr "" +msgstr "Εισαγάγετε σειριακούς αριθμούς για τα παραληφθέντα είδη" -#: src/forms/PurchaseOrderForms.tsx:690 +#: src/forms/PurchaseOrderForms.tsx:742 #: src/pages/stock/StockDetail.tsx:382 #: src/tables/stock/StockItemTable.tsx:294 msgid "Expiry Date" -msgstr "" +msgstr "Ημερομηνία λήξης" -#: src/forms/PurchaseOrderForms.tsx:691 +#: src/forms/PurchaseOrderForms.tsx:743 msgid "Enter an expiry date for received items" -msgstr "" +msgstr "Εισαγάγετε ημερομηνία λήξης για τα παραληφθέντα είδη" -#: src/forms/PurchaseOrderForms.tsx:703 +#: src/forms/PurchaseOrderForms.tsx:755 #: src/forms/StockForms.tsx:728 -#: src/pages/company/SupplierPartDetail.tsx:172 -#: src/pages/company/SupplierPartDetail.tsx:236 +#: src/pages/company/SupplierPartDetail.tsx:173 +#: src/pages/company/SupplierPartDetail.tsx:237 #: src/pages/stock/StockDetail.tsx:419 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:227 msgid "Packaging" -msgstr "" +msgstr "Συσκευασία" -#: src/forms/PurchaseOrderForms.tsx:727 -#: src/pages/company/SupplierPartDetail.tsx:120 +#: src/forms/PurchaseOrderForms.tsx:779 +#: src/pages/company/SupplierPartDetail.tsx:121 #: src/tables/ColumnRenderers.tsx:332 msgid "Note" -msgstr "" +msgstr "Σημείωση" -#: src/forms/PurchaseOrderForms.tsx:799 -#: src/pages/company/SupplierPartDetail.tsx:138 +#: src/forms/PurchaseOrderForms.tsx:851 +#: src/pages/company/SupplierPartDetail.tsx:139 #: src/tables/purchasing/SupplierPriceBreakTable.tsx:49 msgid "SKU" -msgstr "" +msgstr "SKU" -#: src/forms/PurchaseOrderForms.tsx:800 +#: src/forms/PurchaseOrderForms.tsx:852 #: src/tables/part/PartPurchaseOrdersTable.tsx:127 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:213 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:283 #: src/tables/sales/ReturnOrderLineItemTable.tsx:171 msgid "Received" -msgstr "" +msgstr "Παραλήφθηκε" -#: src/forms/PurchaseOrderForms.tsx:817 +#: src/forms/PurchaseOrderForms.tsx:869 msgid "Receive Line Items" -msgstr "" +msgstr "Παραλαβή Προϊόντων γραμμής" -#: src/forms/PurchaseOrderForms.tsx:823 +#: src/forms/PurchaseOrderForms.tsx:875 msgid "Items received" -msgstr "" +msgstr "Ελήφθησαν τα είδη" #: src/forms/ReturnOrderForms.tsx:257 msgid "Receive Items" -msgstr "" +msgstr "Παραλαβή ειδών" #: src/forms/ReturnOrderForms.tsx:264 msgid "Item received into stock" -msgstr "" +msgstr "Το είδος παραλήφθηκε στην αποθήκη" -#: src/forms/SalesOrderForms.tsx:401 +#: src/forms/SalesOrderForms.tsx:208 +#: src/forms/SalesOrderForms.tsx:210 +#: src/tables/sales/SalesOrderShipmentTable.tsx:215 +msgid "Check Shipment" +msgstr "Έλεγχος Αποστολής" + +#: src/forms/SalesOrderForms.tsx:211 +msgid "Marking the shipment as checked indicates that you have verified that all items included in this shipment are correct" +msgstr "Η σήμανση της αποστολής ως ελεγμένη δηλώνει ότι έχετε επαληθεύσει πως όλα τα είδη στην αποστολή είναι σωστά" + +#: src/forms/SalesOrderForms.tsx:221 +msgid "Shipment marked as checked" +msgstr "Η αποστολή σημειώθηκε ως ελεγμένη" + +#: src/forms/SalesOrderForms.tsx:236 +#: src/forms/SalesOrderForms.tsx:238 +#: src/tables/sales/SalesOrderShipmentTable.tsx:228 +msgid "Uncheck Shipment" +msgstr "Αναίρεση Ελέγχου Αποστολής" + +#: src/forms/SalesOrderForms.tsx:239 +msgid "Marking the shipment as unchecked indicates that the shipment requires further verification" +msgstr "Η σήμανση της αποστολής ως μη ελεγμένη δηλώνει ότι απαιτείται επιπλέον έλεγχος" + +#: src/forms/SalesOrderForms.tsx:249 +msgid "Shipment marked as unchecked" +msgstr "Η αποστολή σημειώθηκε ως μη ελεγμένη" + +#: src/forms/SalesOrderForms.tsx:480 msgid "Leave blank to use the order address" -msgstr "" +msgstr "Αφήστε κενό για χρήση της διεύθυνσης της παραγγελίας" #: src/forms/StockForms.tsx:110 #~ msgid "Create Stock Item" @@ -4751,201 +4808,201 @@ msgstr "" #: src/forms/StockForms.tsx:196 msgid "Add given quantity as packs instead of individual items" -msgstr "" +msgstr "Προσθέστε την ποσότητα ως πακέτα αντί για μεμονωμένα είδη" #: src/forms/StockForms.tsx:210 msgid "Enter initial quantity for this stock item" -msgstr "" +msgstr "Εισαγάγετε αρχική ποσότητα για αυτό το είδος" #: src/forms/StockForms.tsx:220 msgid "Enter serial numbers for new stock (or leave blank)" -msgstr "" +msgstr "Εισαγάγετε σειριακούς αριθμούς για νέο απόθεμα (ή αφήστε κενό)" #: src/forms/StockForms.tsx:240 msgid "Stock Status" -msgstr "" +msgstr "Κατάσταση αποθέματος" #: src/forms/StockForms.tsx:317 #: src/pages/stock/StockDetail.tsx:686 #: src/tables/stock/StockItemTable.tsx:525 #: src/tables/stock/StockItemTable.tsx:572 msgid "Add Stock Item" -msgstr "" +msgstr "Προσθήκη είδους αποθέματος" #: src/forms/StockForms.tsx:361 msgid "Select the part to install" -msgstr "" +msgstr "Επιλέξτε το Προϊόν προς εγκατάσταση" #: src/forms/StockForms.tsx:487 msgid "Confirm Stock Transfer" -msgstr "" +msgstr "Επιβεβαίωση μεταφοράς αποθέματος" #: src/forms/StockForms.tsx:672 msgid "Move to default location" -msgstr "" +msgstr "Μετακίνηση στην προεπιλεγμένη τοποθεσία" #: src/forms/StockForms.tsx:795 msgid "Move" -msgstr "" +msgstr "Μετακίνηση" #: src/forms/StockForms.tsx:842 msgid "Return" -msgstr "" +msgstr "Επιστροφή" -#: src/forms/StockForms.tsx:963 +#: src/forms/StockForms.tsx:979 #: src/pages/Index/Scan.tsx:182 msgid "Count" -msgstr "" - -#: src/forms/StockForms.tsx:1246 -#: src/hooks/UseStockAdjustActions.tsx:108 -msgid "Add Stock" -msgstr "" - -#: src/forms/StockForms.tsx:1247 -msgid "Stock added" -msgstr "" - -#: src/forms/StockForms.tsx:1250 -msgid "Increase the quantity of the selected stock items by a given amount." -msgstr "" - -#: src/forms/StockForms.tsx:1261 -#: src/hooks/UseStockAdjustActions.tsx:118 -msgid "Remove Stock" -msgstr "" +msgstr "Καταμέτρηση" #: src/forms/StockForms.tsx:1262 -msgid "Stock removed" -msgstr "" +#: src/hooks/UseStockAdjustActions.tsx:108 +msgid "Add Stock" +msgstr "Προσθήκη αποθέματος" -#: src/forms/StockForms.tsx:1265 -msgid "Decrease the quantity of the selected stock items by a given amount." -msgstr "" +#: src/forms/StockForms.tsx:1263 +msgid "Stock added" +msgstr "Το απόθεμα προστέθηκε" -#: src/forms/StockForms.tsx:1276 -#: src/hooks/UseStockAdjustActions.tsx:128 -msgid "Transfer Stock" -msgstr "" +#: src/forms/StockForms.tsx:1266 +msgid "Increase the quantity of the selected stock items by a given amount." +msgstr "Αυξήστε την ποσότητα των επιλεγμένων ειδών αποθέματος κατά μια δεδομένη τιμή." #: src/forms/StockForms.tsx:1277 -msgid "Stock transferred" -msgstr "" +#: src/hooks/UseStockAdjustActions.tsx:118 +msgid "Remove Stock" +msgstr "Αφαίρεση αποθέματος" -#: src/forms/StockForms.tsx:1280 -msgid "Transfer selected items to the specified location." -msgstr "" +#: src/forms/StockForms.tsx:1278 +msgid "Stock removed" +msgstr "Το απόθεμα αφαιρέθηκε" -#: src/forms/StockForms.tsx:1291 -#: src/hooks/UseStockAdjustActions.tsx:168 -msgid "Return Stock" -msgstr "" +#: src/forms/StockForms.tsx:1281 +msgid "Decrease the quantity of the selected stock items by a given amount." +msgstr "Μείωση της ποσότητας των επιλεγμένων ειδών αποθέματος κατά μια δεδομένη τιμή." #: src/forms/StockForms.tsx:1292 -msgid "Stock returned" -msgstr "" +#: src/hooks/UseStockAdjustActions.tsx:128 +msgid "Transfer Stock" +msgstr "Μεταφορά αποθέματος" -#: src/forms/StockForms.tsx:1295 -msgid "Return selected items into stock, to the specified location." -msgstr "" +#: src/forms/StockForms.tsx:1293 +msgid "Stock transferred" +msgstr "Το απόθεμα μεταφέρθηκε" -#: src/forms/StockForms.tsx:1306 -#: src/hooks/UseStockAdjustActions.tsx:98 -msgid "Count Stock" -msgstr "" +#: src/forms/StockForms.tsx:1296 +msgid "Transfer selected items to the specified location." +msgstr "Μεταφέρετε τα επιλεγμένα είδη στην καθορισμένη τοποθεσία." #: src/forms/StockForms.tsx:1307 -msgid "Stock counted" -msgstr "" +#: src/hooks/UseStockAdjustActions.tsx:168 +msgid "Return Stock" +msgstr "Επιστροφή αποθέματος" -#: src/forms/StockForms.tsx:1310 -msgid "Count the selected stock items, and adjust the quantity accordingly." -msgstr "" +#: src/forms/StockForms.tsx:1308 +msgid "Stock returned" +msgstr "Το απόθεμα επιστράφηκε" -#: src/forms/StockForms.tsx:1321 -msgid "Change Stock Status" -msgstr "" +#: src/forms/StockForms.tsx:1311 +msgid "Return selected items into stock, to the specified location." +msgstr "Επιστροφή των επιλεγμένων ειδών στο απόθεμα, στην καθορισμένη τοποθεσία." #: src/forms/StockForms.tsx:1322 -msgid "Stock status changed" -msgstr "" +#: src/hooks/UseStockAdjustActions.tsx:98 +msgid "Count Stock" +msgstr "Καταμέτρηση αποθέματος" -#: src/forms/StockForms.tsx:1325 -msgid "Change the status of the selected stock items." -msgstr "" +#: src/forms/StockForms.tsx:1323 +msgid "Stock counted" +msgstr "Το απόθεμα καταμετρήθηκε" -#: src/forms/StockForms.tsx:1336 -#: src/hooks/UseStockAdjustActions.tsx:138 -msgid "Merge Stock" -msgstr "" +#: src/forms/StockForms.tsx:1326 +msgid "Count the selected stock items, and adjust the quantity accordingly." +msgstr "Καταμετρήστε τα επιλεγμένα είδη αποθέματος και προσαρμόστε την ποσότητα ανάλογα." #: src/forms/StockForms.tsx:1337 -msgid "Stock merged" -msgstr "" +msgid "Change Stock Status" +msgstr "Αλλαγή κατάστασης αποθέματος" -#: src/forms/StockForms.tsx:1339 -msgid "Merge Stock Items" -msgstr "" +#: src/forms/StockForms.tsx:1338 +msgid "Stock status changed" +msgstr "Η κατάσταση αποθέματος άλλαξε" #: src/forms/StockForms.tsx:1341 +msgid "Change the status of the selected stock items." +msgstr "Αλλαγή της κατάστασης των επιλεγμένων ειδών αποθέματος." + +#: src/forms/StockForms.tsx:1352 +#: src/hooks/UseStockAdjustActions.tsx:138 +msgid "Merge Stock" +msgstr "Συγχώνευση αποθέματος" + +#: src/forms/StockForms.tsx:1353 +msgid "Stock merged" +msgstr "Το απόθεμα συγχωνεύτηκε" + +#: src/forms/StockForms.tsx:1355 +msgid "Merge Stock Items" +msgstr "Συγχώνευση ειδών αποθέματος" + +#: src/forms/StockForms.tsx:1357 msgid "Merge operation cannot be reversed" -msgstr "" +msgstr "Η ενέργεια συγχώνευσης δεν μπορεί να αναιρεθεί" -#: src/forms/StockForms.tsx:1342 +#: src/forms/StockForms.tsx:1358 msgid "Tracking information may be lost when merging items" -msgstr "" +msgstr "Οι πληροφορίες ιχνηλάτησης μπορεί να χαθούν κατά τη συγχώνευση" -#: src/forms/StockForms.tsx:1343 +#: src/forms/StockForms.tsx:1359 msgid "Supplier information may be lost when merging items" -msgstr "" +msgstr "Οι πληροφορίες προμηθευτή μπορεί να χαθούν κατά τη συγχώνευση" -#: src/forms/StockForms.tsx:1361 +#: src/forms/StockForms.tsx:1377 msgid "Assign Stock to Customer" -msgstr "" +msgstr "Ανάθεση αποθέματος σε πελάτη" -#: src/forms/StockForms.tsx:1362 +#: src/forms/StockForms.tsx:1378 msgid "Stock assigned to customer" -msgstr "" +msgstr "Το απόθεμα ανατέθηκε στον πελάτη" -#: src/forms/StockForms.tsx:1372 +#: src/forms/StockForms.tsx:1388 msgid "Delete Stock Items" -msgstr "" +msgstr "Διαγραφή ειδών αποθέματος" -#: src/forms/StockForms.tsx:1373 +#: src/forms/StockForms.tsx:1389 msgid "Stock deleted" -msgstr "" +msgstr "Το απόθεμα διαγράφηκε" -#: src/forms/StockForms.tsx:1376 +#: src/forms/StockForms.tsx:1392 msgid "This operation will permanently delete the selected stock items." -msgstr "" +msgstr "Αυτή η ενέργεια θα διαγράψει μόνιμα τα επιλεγμένα είδη αποθέματος." -#: src/forms/StockForms.tsx:1385 +#: src/forms/StockForms.tsx:1401 msgid "Parent stock location" -msgstr "" +msgstr "Γονική τοποθεσία αποθέματος" -#: src/forms/StockForms.tsx:1512 +#: src/forms/StockForms.tsx:1528 msgid "Find Serial Number" -msgstr "" +msgstr "Εύρεση σειριακού αριθμού" -#: src/forms/StockForms.tsx:1523 +#: src/forms/StockForms.tsx:1539 msgid "No matching items" -msgstr "" +msgstr "Δεν βρέθηκαν αντίστοιχα είδη" -#: src/forms/StockForms.tsx:1529 +#: src/forms/StockForms.tsx:1545 msgid "Multiple matching items" -msgstr "" +msgstr "Πολλαπλά αντίστοιχα είδη" -#: src/forms/StockForms.tsx:1538 +#: src/forms/StockForms.tsx:1554 msgid "Invalid response from server" -msgstr "" +msgstr "Μη έγκυρη απόκριση από τον διακομιστή" #: src/forms/selectionListFields.tsx:95 msgid "Entries" -msgstr "" +msgstr "Καταχωρήσεις" #: src/forms/selectionListFields.tsx:96 msgid "List of entries to choose from" -msgstr "" +msgstr "Λίστα διαθέσιμων καταχωρήσεων προς επιλογή" #: src/forms/selectionListFields.tsx:100 #: src/pages/part/PartStockHistoryDetail.tsx:59 @@ -4953,38 +5010,37 @@ msgstr "" #: src/tables/FilterSelectDrawer.tsx:137 #: src/tables/FilterSelectDrawer.tsx:149 #: src/tables/part/PartTestResultTable.tsx:206 -#: src/tables/purchasing/ManufacturerPartParameterTable.tsx:42 #: src/tables/stock/StockItemTestResultTable.tsx:207 msgid "Value" -msgstr "" +msgstr "Τιμή" #: src/forms/selectionListFields.tsx:101 msgid "Label" -msgstr "" +msgstr "Ετικέτα" #: src/functions/api.tsx:33 msgid "Bad request" -msgstr "" +msgstr "Εσφαλμένο αίτημα" #: src/functions/api.tsx:36 msgid "Unauthorized" -msgstr "" +msgstr "Μη εξουσιοδοτημένο" #: src/functions/api.tsx:39 msgid "Forbidden" -msgstr "" +msgstr "Απαγορευμένο" #: src/functions/api.tsx:42 msgid "Not found" -msgstr "" +msgstr "Δεν βρέθηκε" #: src/functions/api.tsx:45 msgid "Method not allowed" -msgstr "" +msgstr "Μη επιτρεπόμενη μέθοδος" #: src/functions/api.tsx:48 msgid "Internal server error" -msgstr "" +msgstr "Εσωτερικό σφάλμα διακομιστή" #: src/functions/auth.tsx:34 #~ msgid "Error fetching token from server." @@ -5009,16 +5065,16 @@ msgstr "" #: src/functions/auth.tsx:123 #: src/functions/auth.tsx:344 msgid "Already logged in" -msgstr "" +msgstr "Ήδη συνδεδεμένος" #: src/functions/auth.tsx:124 #: src/functions/auth.tsx:345 msgid "There is a conflicting session on the server for this browser. Please logout of that first." -msgstr "" +msgstr "Υπάρχει αντικρουόμενη συνεδρία στον διακομιστή για αυτόν τον browser. Παρακαλώ αποσυνδεθείτε πρώτα από αυτή." #: src/functions/auth.tsx:142 msgid "No response from server." -msgstr "" +msgstr "Δεν υπάρχει απόκριση από τον διακομιστή." #: src/functions/auth.tsx:142 #~ msgid "Found an existing login - using it to log you in." @@ -5030,77 +5086,77 @@ msgstr "" #: src/functions/auth.tsx:179 msgid "MFA Login successful" -msgstr "" +msgstr "Επιτυχής σύνδεση με MFA" #: src/functions/auth.tsx:180 msgid "MFA details were automatically provided in the browser" -msgstr "" +msgstr "Οι λεπτομέρειες MFA παρέχθηκαν αυτόματα από τον browser" #: src/functions/auth.tsx:209 msgid "Logged Out" -msgstr "" +msgstr "Αποσυνδεθήκατε" #: src/functions/auth.tsx:210 msgid "Successfully logged out" -msgstr "" +msgstr "Αποσυνδεθήκατε με επιτυχία" #: src/functions/auth.tsx:249 msgid "Language changed" -msgstr "" +msgstr "Η γλώσσα άλλαξε" #: src/functions/auth.tsx:250 msgid "Your active language has been changed to the one set in your profile" -msgstr "" +msgstr "Η ενεργή γλώσσα σας άλλαξε σε αυτή που έχει οριστεί στο προφίλ σας" #: src/functions/auth.tsx:270 msgid "Theme changed" -msgstr "" +msgstr "Το θέμα άλλαξε" #: src/functions/auth.tsx:271 msgid "Your active theme has been changed to the one set in your profile" -msgstr "" +msgstr "Το ενεργό θέμα άλλαξε σε αυτό που έχει οριστεί στο προφίλ σας" #: src/functions/auth.tsx:305 msgid "Check your inbox for a reset link. This only works if you have an account. Check in spam too." -msgstr "" +msgstr "Ελέγξτε τα εισερχόμενά σας για τον σύνδεσμο επαναφοράς. Λειτουργεί μόνο αν έχετε λογαριασμό. Ελέγξτε και στα spam." #: src/functions/auth.tsx:312 #: src/functions/auth.tsx:569 msgid "Reset failed" -msgstr "" +msgstr "Η επαναφορά απέτυχε" #: src/functions/auth.tsx:401 msgid "Logged In" -msgstr "" +msgstr "Συνδεθήκατε" #: src/functions/auth.tsx:402 msgid "Successfully logged in" -msgstr "" +msgstr "Συνδεθήκατε με επιτυχία" #: src/functions/auth.tsx:529 msgid "Failed to set up MFA" -msgstr "" +msgstr "Αποτυχία ρύθμισης MFA" #: src/functions/auth.tsx:559 msgid "Password set" -msgstr "" +msgstr "Ο κωδικός ορίστηκε" #: src/functions/auth.tsx:560 #: src/functions/auth.tsx:669 msgid "The password was set successfully. You can now login with your new password" -msgstr "" +msgstr "Ο κωδικός ορίστηκε με επιτυχία. Μπορείτε πλέον να συνδεθείτε με τον νέο σας κωδικό" #: src/functions/auth.tsx:634 msgid "Password could not be changed" -msgstr "" +msgstr "Ο κωδικός δεν μπόρεσε να αλλάξει" #: src/functions/auth.tsx:652 msgid "The two password fields didn’t match" -msgstr "" +msgstr "Οι δύο πεδία κωδικού δεν ταιριάζουν" #: src/functions/auth.tsx:668 msgid "Password Changed" -msgstr "" +msgstr "Ο κωδικός άλλαξε" #: src/functions/forms.tsx:50 #~ msgid "Form method not provided" @@ -5120,11 +5176,11 @@ msgstr "" #: src/functions/notifications.tsx:13 msgid "Not implemented" -msgstr "" +msgstr "Δεν έχει υλοποιηθεί" #: src/functions/notifications.tsx:14 msgid "This feature is not yet implemented" -msgstr "" +msgstr "Αυτή η λειτουργία δεν έχει υλοποιηθεί ακόμη" #: src/functions/notifications.tsx:24 #~ msgid "Permission denied" @@ -5132,68 +5188,68 @@ msgstr "" #: src/functions/notifications.tsx:26 msgid "You do not have permission to perform this action" -msgstr "" +msgstr "Δεν έχετε δικαιώματα για να πραγματοποιήσετε αυτή την ενέργεια" #: src/functions/notifications.tsx:37 msgid "Invalid Return Code" -msgstr "" +msgstr "Μη έγκυρος κωδικός επιστροφής" #: src/functions/notifications.tsx:38 msgid "Server returned status {returnCode}" -msgstr "" +msgstr "Ο διακομιστής επέστρεψε κατάσταση {returnCode}" #: src/functions/notifications.tsx:48 msgid "Timeout" -msgstr "" +msgstr "Λήξη χρόνου" #: src/functions/notifications.tsx:49 msgid "The request timed out" -msgstr "" +msgstr "Το αίτημα έληξε χρονικά" #: src/hooks/UseDataExport.tsx:34 msgid "Exporting Data" -msgstr "" +msgstr "Εξαγωγή δεδομένων" #: src/hooks/UseDataExport.tsx:109 msgid "Export Data" -msgstr "" +msgstr "Εξαγωγή δεδομένων" #: src/hooks/UseDataExport.tsx:112 msgid "Export" -msgstr "" +msgstr "Εξαγωγή" #: src/hooks/UseDataOutput.tsx:57 #: src/hooks/UseDataOutput.tsx:111 msgid "Process failed" -msgstr "" +msgstr "Η διαδικασία απέτυχε" #: src/hooks/UseDataOutput.tsx:75 msgid "Process completed successfully" -msgstr "" +msgstr "Η διαδικασία ολοκληρώθηκε επιτυχώς" #: src/hooks/UseForm.tsx:96 msgid "Item Created" -msgstr "" +msgstr "Το Προϊόν δημιουργήθηκε" #: src/hooks/UseForm.tsx:116 msgid "Item Updated" -msgstr "" +msgstr "Το Προϊόν ενημερώθηκε" #: src/hooks/UseForm.tsx:137 msgid "Items Updated" -msgstr "" +msgstr "Τα Προϊόντα ενημερώθηκαν" #: src/hooks/UseForm.tsx:139 msgid "Update multiple items" -msgstr "" +msgstr "Ενημέρωση πολλών Προϊόντων" #: src/hooks/UseForm.tsx:169 msgid "Item Deleted" -msgstr "" +msgstr "Το Προϊόν διαγράφηκε" #: src/hooks/UseForm.tsx:173 msgid "Are you sure you want to delete this item?" -msgstr "" +msgstr "Είστε σίγουρος ότι θέλετε να διαγράψετε αυτό το Προϊόν;" #: src/hooks/UsePlaceholder.tsx:59 #~ msgid "Latest serial number" @@ -5201,97 +5257,97 @@ msgstr "" #: src/hooks/UseStockAdjustActions.tsx:100 msgid "Count selected stock items" -msgstr "" +msgstr "Καταμέτρηση επιλεγμένων ειδών αποθέματος" #: src/hooks/UseStockAdjustActions.tsx:110 msgid "Add to selected stock items" -msgstr "" +msgstr "Προσθήκη στα επιλεγμένα είδη αποθέματος" #: src/hooks/UseStockAdjustActions.tsx:120 msgid "Remove from selected stock items" -msgstr "" +msgstr "Αφαίρεση από τα επιλεγμένα είδη αποθέματος" #: src/hooks/UseStockAdjustActions.tsx:130 msgid "Transfer selected stock items" -msgstr "" +msgstr "Μεταφορά επιλεγμένων ειδών αποθέματος" #: src/hooks/UseStockAdjustActions.tsx:140 msgid "Merge selected stock items" -msgstr "" +msgstr "Συγχώνευση επιλεγμένων ειδών αποθέματος" #: src/hooks/UseStockAdjustActions.tsx:150 msgid "Change status of selected stock items" -msgstr "" +msgstr "Αλλαγή κατάστασης των επιλεγμένων ειδών αποθέματος" #: src/hooks/UseStockAdjustActions.tsx:158 msgid "Assign Stock" -msgstr "" +msgstr "Ανάθεση Αποθέματος" #: src/hooks/UseStockAdjustActions.tsx:160 msgid "Assign selected stock items to a customer" -msgstr "" +msgstr "Ανάθεση των επιλεγμένων ειδών αποθέματος σε πελάτη" #: src/hooks/UseStockAdjustActions.tsx:170 msgid "Return selected items into stock" -msgstr "" +msgstr "Επιστροφή των επιλεγμένων ειδών στο απόθεμα" #: src/hooks/UseStockAdjustActions.tsx:178 msgid "Delete Stock" -msgstr "" +msgstr "Διαγραφή Αποθέματος" #: src/hooks/UseStockAdjustActions.tsx:180 msgid "Delete selected stock items" -msgstr "" +msgstr "Διαγραφή των επιλεγμένων ειδών αποθέματος" #: src/hooks/UseStockAdjustActions.tsx:205 -#: src/pages/part/PartDetail.tsx:1137 +#: src/pages/part/PartDetail.tsx:1158 msgid "Stock Actions" -msgstr "" +msgstr "Ενέργειες Αποθέματος" #: src/pages/Auth/ChangePassword.tsx:32 #: src/pages/Auth/Reset.tsx:14 msgid "Reset Password" -msgstr "" +msgstr "Επαναφορά Κωδικού" #: src/pages/Auth/ChangePassword.tsx:46 msgid "Current Password" -msgstr "" +msgstr "Τρέχων Κωδικός" #: src/pages/Auth/ChangePassword.tsx:47 msgid "Enter your current password" -msgstr "" +msgstr "Εισαγάγετε τον τρέχοντα κωδικό σας" #: src/pages/Auth/ChangePassword.tsx:53 msgid "New Password" -msgstr "" +msgstr "Νέος Κωδικός" #: src/pages/Auth/ChangePassword.tsx:54 msgid "Enter your new password" -msgstr "" +msgstr "Εισαγάγετε τον νέο σας κωδικό" #: src/pages/Auth/ChangePassword.tsx:60 msgid "Confirm New Password" -msgstr "" +msgstr "Επιβεβαίωση Νέου Κωδικού" #: src/pages/Auth/ChangePassword.tsx:61 msgid "Confirm your new password" -msgstr "" +msgstr "Επιβεβαιώστε τον νέο σας κωδικό" #: src/pages/Auth/ChangePassword.tsx:80 msgid "Confirm" -msgstr "" +msgstr "Επιβεβαίωση" #: src/pages/Auth/Layout.tsx:59 msgid "Log off" -msgstr "" +msgstr "Αποσύνδεση" #: src/pages/Auth/LoggedIn.tsx:19 msgid "Checking if you are already logged in" -msgstr "" +msgstr "Έλεγχος εάν είστε ήδη συνδεδεμένος" #: src/pages/Auth/Login.tsx:32 msgid "No selection" -msgstr "" +msgstr "Καμία επιλογή" #: src/pages/Auth/Login.tsx:91 #~ msgid "Welcome, log in below" @@ -5303,15 +5359,15 @@ msgstr "" #: src/pages/Auth/Login.tsx:100 msgid "Login" -msgstr "" +msgstr "Σύνδεση" #: src/pages/Auth/Login.tsx:106 msgid "Logging you in" -msgstr "" +msgstr "Γίνεται σύνδεση…" #: src/pages/Auth/Login.tsx:113 msgid "Don't have an account?" -msgstr "" +msgstr "Δεν έχετε λογαριασμό;" #: src/pages/Auth/Logout.tsx:22 #~ msgid "Logging out" @@ -5329,40 +5385,40 @@ msgstr "" #: src/pages/Auth/MFA.tsx:29 #: src/pages/Index/Settings/AccountSettings/SecurityContent.tsx:77 msgid "Multi-Factor Authentication" -msgstr "" +msgstr "Έλεγχος Ταυτότητας Πολλαπλών Παραγόντων" #: src/pages/Auth/MFA.tsx:33 #: src/pages/Index/Settings/AccountSettings/MFASettings.tsx:217 msgid "TOTP Code" -msgstr "" +msgstr "Κωδικός TOTP" #: src/pages/Auth/MFA.tsx:35 msgid "Enter one of your codes: {mfa_types}" -msgstr "" +msgstr "Εισαγάγετε έναν από τους κωδικούς σας: {mfa_types}" #: src/pages/Auth/MFA.tsx:42 msgid "Remember this device" -msgstr "" +msgstr "Να θυμάσαι αυτή τη συσκευή" #: src/pages/Auth/MFA.tsx:44 msgid "If enabled, you will not be asked for MFA on this device for 30 days." -msgstr "" +msgstr "Αν ενεργοποιηθεί, δεν θα σας ζητηθεί MFA σε αυτή τη συσκευή για 30 ημέρες." #: src/pages/Auth/MFA.tsx:53 msgid "Log in" -msgstr "" +msgstr "Σύνδεση" #: src/pages/Auth/MFASetup.tsx:23 msgid "MFA Setup Required" -msgstr "" +msgstr "Απαιτείται ρύθμιση MFA" #: src/pages/Auth/MFASetup.tsx:34 msgid "Add TOTP" -msgstr "" +msgstr "Προσθήκη TOTP" #: src/pages/Auth/Register.tsx:23 msgid "Go back to login" -msgstr "" +msgstr "Επιστροφή στη σύνδεση" #: src/pages/Auth/Reset.tsx:41 #: src/pages/Auth/Set-Password.tsx:112 @@ -5372,11 +5428,11 @@ msgstr "" #: src/pages/Auth/ResetPassword.tsx:22 #: src/pages/Auth/VerifyEmail.tsx:19 msgid "Key invalid" -msgstr "" +msgstr "Μη έγκυρο κλειδί" #: src/pages/Auth/ResetPassword.tsx:23 msgid "You need to provide a valid key to set a new password. Check your inbox for a reset link." -msgstr "" +msgstr "Πρέπει να δώσετε ένα έγκυρο κλειδί για να ορίσετε νέο κωδικό. Ελέγξτε τα εισερχόμενά σας για τον σύνδεσμο επαναφοράς." #: src/pages/Auth/ResetPassword.tsx:30 #~ msgid "Token invalid" @@ -5384,7 +5440,7 @@ msgstr "" #: src/pages/Auth/ResetPassword.tsx:31 msgid "Set new password" -msgstr "" +msgstr "Ορισμός νέου κωδικού" #: src/pages/Auth/ResetPassword.tsx:31 #~ msgid "You need to provide a valid token to set a new password. Check your inbox for a reset link." @@ -5392,11 +5448,11 @@ msgstr "" #: src/pages/Auth/ResetPassword.tsx:35 msgid "The desired new password" -msgstr "" +msgstr "Ο επιθυμητός νέος κωδικός" #: src/pages/Auth/ResetPassword.tsx:44 msgid "Send Password" -msgstr "" +msgstr "Αποστολή κωδικού" #: src/pages/Auth/Set-Password.tsx:49 #~ msgid "No token provided" @@ -5408,24 +5464,24 @@ msgstr "" #: src/pages/Auth/VerifyEmail.tsx:20 msgid "You need to provide a valid key." -msgstr "" +msgstr "Πρέπει να δώσετε ένα έγκυρο κλειδί." #: src/pages/Auth/VerifyEmail.tsx:28 msgid "Verify Email" -msgstr "" +msgstr "Επαλήθευση Email" #: src/pages/Auth/VerifyEmail.tsx:30 msgid "Verify" -msgstr "" +msgstr "Επαλήθευση" #. placeholder {0}: error.statusText #: src/pages/ErrorPage.tsx:16 msgid "Error: {0}" -msgstr "" +msgstr "Σφάλμα: {0}" #: src/pages/ErrorPage.tsx:23 msgid "An unexpected error has occurred" -msgstr "" +msgstr "Προέκυψε ένα απρόσμενο σφάλμα" #: src/pages/ErrorPage.tsx:28 #~ msgid "Sorry, an unexpected error has occurred." @@ -5585,27 +5641,27 @@ msgstr "" #: src/pages/Index/Scan.tsx:65 msgid "Item already scanned" -msgstr "" +msgstr "Το Προϊόν έχει ήδη σαρωθεί" #: src/pages/Index/Scan.tsx:82 msgid "API Error" -msgstr "" +msgstr "Σφάλμα API" #: src/pages/Index/Scan.tsx:83 msgid "Failed to fetch instance data" -msgstr "" +msgstr "Αποτυχία λήψης δεδομένων της εγκατάστασης" #: src/pages/Index/Scan.tsx:130 msgid "Scan Error" -msgstr "" +msgstr "Σφάλμα σάρωσης" #: src/pages/Index/Scan.tsx:162 msgid "Selected elements are not known" -msgstr "" +msgstr "Τα επιλεγμένα στοιχεία δεν είναι γνωστά" #: src/pages/Index/Scan.tsx:169 msgid "Multiple object types selected" -msgstr "" +msgstr "Επιλέχθηκαν πολλοί τύποι Προϊόντων" #: src/pages/Index/Scan.tsx:175 #~ msgid "Actions ..." @@ -5613,24 +5669,24 @@ msgstr "" #: src/pages/Index/Scan.tsx:177 msgid "Actions ... " -msgstr "" +msgstr "Ενέργειες ... " #: src/pages/Index/Scan.tsx:194 #: src/pages/Index/Scan.tsx:198 msgid "Barcode Scanning" -msgstr "" +msgstr "Σάρωση barcode" #: src/pages/Index/Scan.tsx:207 msgid "Barcode Input" -msgstr "" +msgstr "Εισαγωγή barcode" #: src/pages/Index/Scan.tsx:214 msgid "Action" -msgstr "" +msgstr "Ενέργεια" #: src/pages/Index/Scan.tsx:217 msgid "No Items Selected" -msgstr "" +msgstr "Δεν έχουν επιλεγεί Προϊόντα" #: src/pages/Index/Scan.tsx:217 #~ msgid "Manual input" @@ -5638,7 +5694,7 @@ msgstr "" #: src/pages/Index/Scan.tsx:218 msgid "Scan and select items to perform actions" -msgstr "" +msgstr "Σαρώστε και επιλέξτε Προϊόντα για να εκτελέσετε ενέργειες" #: src/pages/Index/Scan.tsx:218 #~ msgid "Image Barcode" @@ -5647,11 +5703,11 @@ msgstr "" #. placeholder {0}: selection.length #: src/pages/Index/Scan.tsx:223 msgid "{0} items selected" -msgstr "" +msgstr "Έχουν επιλεγεί {0} Προϊόντα" #: src/pages/Index/Scan.tsx:235 msgid "Scanned Items" -msgstr "" +msgstr "Σαρωμένα Προϊόντα" #: src/pages/Index/Scan.tsx:276 #~ msgid "Actions for {0}" @@ -5753,7 +5809,7 @@ msgstr "" #: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:33 #: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:113 msgid "Edit Account Information" -msgstr "" +msgstr "Επεξεργασία πληροφοριών λογαριασμού" #: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:34 #~ msgid "User details updated" @@ -5761,7 +5817,7 @@ msgstr "" #: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:37 msgid "Account details updated" -msgstr "" +msgstr "Τα στοιχεία λογαριασμού ενημερώθηκαν" #: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:46 #~ msgid "User Actions" @@ -5774,7 +5830,7 @@ msgstr "" #: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:55 #: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:136 msgid "Edit Profile Information" -msgstr "" +msgstr "Επεξεργασία πληροφοριών προφίλ" #: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:55 #~ msgid "Last name" @@ -5790,7 +5846,7 @@ msgstr "" #: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:59 msgid "Profile details updated" -msgstr "" +msgstr "Τα στοιχεία προφίλ ενημερώθηκαν" #: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:61 #~ msgid "Last name: {0}" @@ -5799,12 +5855,12 @@ msgstr "" #: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:65 #: src/pages/core/UserDetail.tsx:55 msgid "First Name" -msgstr "" +msgstr "Όνομα" #: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:66 #: src/pages/core/UserDetail.tsx:63 msgid "Last Name" -msgstr "" +msgstr "Επώνυμο" #: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:67 #~ msgid "First name:" @@ -5816,66 +5872,66 @@ msgstr "" #: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:72 msgid "Staff Access" -msgstr "" +msgstr "Πρόσβαση προσωπικού" #: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:85 #: src/pages/core/UserDetail.tsx:119 #: src/tables/settings/CustomStateTable.tsx:101 msgid "Display Name" -msgstr "" +msgstr "Όνομα Εμφάνισης" #: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:86 #: src/pages/core/UserDetail.tsx:127 msgid "Position" -msgstr "" +msgstr "Θέση" #: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:90 #: src/pages/Index/Settings/AccountSettings/MFASettings.tsx:953 msgid "Type" -msgstr "" +msgstr "Τύπος" #: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:91 #: src/pages/core/UserDetail.tsx:143 msgid "Organisation" -msgstr "" +msgstr "Οργανισμός" #: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:92 msgid "Primary Group" -msgstr "" +msgstr "Κύρια Ομάδα" #: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:104 msgid "Account Details" -msgstr "" +msgstr "Στοιχεία Λογαριασμού" #: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:107 msgid "Account Actions" -msgstr "" +msgstr "Ενέργειες Λογαριασμού" #: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:111 msgid "Edit Account" -msgstr "" +msgstr "Επεξεργασία Λογαριασμού" #: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:117 #: src/tables/settings/UserTable.tsx:322 msgid "Change Password" -msgstr "" +msgstr "Αλλαγή Κωδικού" #: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:119 msgid "Change User Password" -msgstr "" +msgstr "Αλλαγή Κωδικού Χρήστη" #: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:131 msgid "Profile Details" -msgstr "" +msgstr "Στοιχεία Προφίλ" #: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:134 msgid "Edit Profile" -msgstr "" +msgstr "Επεξεργασία Προφίλ" #. placeholder {0}: item.label #: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:153 msgid "{0}" -msgstr "" +msgstr "{0}" #: src/pages/Index/Settings/AccountSettings/MFASettings.tsx:103 msgid "Reauthentication Succeeded" @@ -5908,7 +5964,7 @@ msgstr "" #: src/pages/Index/Settings/AccountSettings/MFASettings.tsx:195 msgid "Enter your password" -msgstr "" +msgstr "Εισαγάγετε τον κωδικό σας" #: src/pages/Index/Settings/AccountSettings/MFASettings.tsx:219 msgid "Enter one of your TOTP codes" @@ -5932,6 +5988,9 @@ msgstr "" #: src/pages/Index/Settings/AccountSettings/MFASettings.tsx:310 #: src/pages/Index/Settings/AccountSettings/MFASettings.tsx:401 +#: src/tables/build/BuildAllocatedStockTable.tsx:181 +#: src/tables/build/BuildLineTable.tsx:668 +#: src/tables/sales/SalesOrderAllocationTable.tsx:220 msgid "Confirm Removal" msgstr "" @@ -5985,11 +6044,11 @@ msgstr "" #: src/pages/Index/Settings/AccountSettings/MFASettings.tsx:532 msgid "Error registering TOTP token" -msgstr "" +msgstr "Σφάλμα κατά την καταχώριση του TOTP token" #: src/pages/Index/Settings/AccountSettings/MFASettings.tsx:551 msgid "Register TOTP Token" -msgstr "" +msgstr "Καταχώριση TOTP Token" #: src/pages/Index/Settings/AccountSettings/MFASettings.tsx:596 msgid "Error fetching recovery codes" @@ -5999,7 +6058,7 @@ msgstr "" #: src/pages/Index/Settings/AccountSettings/MFASettings.tsx:648 #: src/pages/Index/Settings/AccountSettings/MFASettings.tsx:852 msgid "Recovery Codes" -msgstr "" +msgstr "Κωδικοί Ανάκτησης" #: src/pages/Index/Settings/AccountSettings/MFASettings.tsx:650 msgid "The following one time recovery codes are available for use" @@ -6043,41 +6102,41 @@ msgstr "" #: src/pages/Index/Settings/AccountSettings/MFASettings.tsx:845 msgid "TOTP" -msgstr "" +msgstr "TOTP" #: src/pages/Index/Settings/AccountSettings/MFASettings.tsx:846 msgid "Time-based One-Time Password" -msgstr "" +msgstr "Κωδικός μίας χρήσης βασισμένος στον χρόνο" #: src/pages/Index/Settings/AccountSettings/MFASettings.tsx:853 msgid "One-Time pre-generated recovery codes" -msgstr "" +msgstr "Προ-δημιουργημένοι κωδικοί ανάκτησης μίας χρήσης" #: src/pages/Index/Settings/AccountSettings/MFASettings.tsx:859 msgid "WebAuthn" -msgstr "" +msgstr "WebAuthn" #: src/pages/Index/Settings/AccountSettings/MFASettings.tsx:860 msgid "Web Authentication (WebAuthn) is a web standard for secure authentication" -msgstr "" +msgstr "Το Web Authentication (WebAuthn) είναι ένα πρότυπο ιστού για ασφαλή ταυτοποίηση" #: src/pages/Index/Settings/AccountSettings/MFASettings.tsx:956 msgid "Last used at" -msgstr "" +msgstr "Τελευταία χρήση στις" #: src/pages/Index/Settings/AccountSettings/MFASettings.tsx:959 msgid "Created at" -msgstr "" +msgstr "Δημιουργήθηκε στις" #: src/pages/Index/Settings/AccountSettings/MFASettings.tsx:970 #: src/pages/Index/Settings/AccountSettings/SecurityContent.tsx:190 #: src/pages/Index/Settings/AccountSettings/SecurityContent.tsx:348 msgid "Not Configured" -msgstr "" +msgstr "Μη Διαμορφωμένο" #: src/pages/Index/Settings/AccountSettings/MFASettings.tsx:974 msgid "No multi-factor tokens configured for this account" -msgstr "" +msgstr "Δεν έχουν ρυθμιστεί multi-factor tokens για αυτόν τον λογαριασμό" #: src/pages/Index/Settings/AccountSettings/MFASettings.tsx:979 msgid "Register Authentication Method" @@ -6093,19 +6152,19 @@ msgstr "" #: src/pages/Index/Settings/AccountSettings/QrRegistrationForm.tsx:27 msgid "Secret" -msgstr "" +msgstr "Μυστικό" #: src/pages/Index/Settings/AccountSettings/QrRegistrationForm.tsx:40 msgid "One-Time Password" -msgstr "" +msgstr "Κωδικός Μίας Χρήσης" #: src/pages/Index/Settings/AccountSettings/QrRegistrationForm.tsx:41 msgid "Enter the TOTP code to ensure it registered correctly" -msgstr "" +msgstr "Εισαγάγετε τον κωδικό TOTP για να επιβεβαιώσετε ότι καταχωρήθηκε σωστά" #: src/pages/Index/Settings/AccountSettings/SecurityContent.tsx:51 msgid "Email Addresses" -msgstr "" +msgstr "Διευθύνσεις Email" #: src/pages/Index/Settings/AccountSettings/SecurityContent.tsx:55 #~ msgid "Single Sign On Accounts" @@ -6113,11 +6172,11 @@ msgstr "" #: src/pages/Index/Settings/AccountSettings/SecurityContent.tsx:59 msgid "Single Sign On" -msgstr "" +msgstr "Single Sign On" #: src/pages/Index/Settings/AccountSettings/SecurityContent.tsx:67 msgid "Not enabled" -msgstr "" +msgstr "Μη ενεργοποιημένο" #: src/pages/Index/Settings/AccountSettings/SecurityContent.tsx:69 #~ msgid "Multifactor" @@ -6125,7 +6184,7 @@ msgstr "" #: src/pages/Index/Settings/AccountSettings/SecurityContent.tsx:70 msgid "Single Sign On is not enabled for this server " -msgstr "" +msgstr "Το Single Sign On δεν είναι ενεργοποιημένο για αυτόν τον διακομιστή" #: src/pages/Index/Settings/AccountSettings/SecurityContent.tsx:71 #~ msgid "Single Sign On is not enabled for this server" @@ -6137,11 +6196,11 @@ msgstr "" #: src/pages/Index/Settings/AccountSettings/SecurityContent.tsx:85 msgid "Access Tokens" -msgstr "" +msgstr "Κλειδιά Πρόσβασης" #: src/pages/Index/Settings/AccountSettings/SecurityContent.tsx:94 msgid "Session Information" -msgstr "" +msgstr "Πληροφορίες Συνεδρίας" #: src/pages/Index/Settings/AccountSettings/SecurityContent.tsx:132 #: src/tables/general/BarcodeScanTable.tsx:60 @@ -6149,55 +6208,55 @@ msgstr "" #: src/tables/settings/EmailTable.tsx:131 #: src/tables/settings/ErrorTable.tsx:59 msgid "Timestamp" -msgstr "" +msgstr "Χρονική Σήμανση" #: src/pages/Index/Settings/AccountSettings/SecurityContent.tsx:133 msgid "Method" -msgstr "" +msgstr "Μέθοδος" #: src/pages/Index/Settings/AccountSettings/SecurityContent.tsx:176 msgid "Error while updating email" -msgstr "" +msgstr "Σφάλμα κατά την ενημέρωση του email" #: src/pages/Index/Settings/AccountSettings/SecurityContent.tsx:193 msgid "Currently no email addresses are registered." -msgstr "" +msgstr "Δεν υπάρχουν καταχωρημένες διευθύνσεις email." #: src/pages/Index/Settings/AccountSettings/SecurityContent.tsx:201 msgid "The following email addresses are associated with your account:" -msgstr "" +msgstr "Οι παρακάτω διευθύνσεις email συνδέονται με τον λογαριασμό σας:" #: src/pages/Index/Settings/AccountSettings/SecurityContent.tsx:214 msgid "Primary" -msgstr "" +msgstr "Κύρια" #: src/pages/Index/Settings/AccountSettings/SecurityContent.tsx:219 msgid "Verified" -msgstr "" +msgstr "Επαληθευμένο" #: src/pages/Index/Settings/AccountSettings/SecurityContent.tsx:223 msgid "Unverified" -msgstr "" +msgstr "Μη Επαληθευμένο" #: src/pages/Index/Settings/AccountSettings/SecurityContent.tsx:241 msgid "Make Primary" -msgstr "" +msgstr "Ορισμός ως Κύριο" #: src/pages/Index/Settings/AccountSettings/SecurityContent.tsx:247 msgid "Re-send Verification" -msgstr "" +msgstr "Επαναποστολή Επαλήθευσης" #: src/pages/Index/Settings/AccountSettings/SecurityContent.tsx:261 msgid "Add Email Address" -msgstr "" +msgstr "Προσθήκη Διεύθυνσης Email" #: src/pages/Index/Settings/AccountSettings/SecurityContent.tsx:263 msgid "E-Mail" -msgstr "" +msgstr "E-Mail" #: src/pages/Index/Settings/AccountSettings/SecurityContent.tsx:264 msgid "E-Mail address" -msgstr "" +msgstr "Διεύθυνση E-Mail" #: src/pages/Index/Settings/AccountSettings/SecurityContent.tsx:270 #~ msgid "Provider has not been configured" @@ -6205,7 +6264,7 @@ msgstr "" #: src/pages/Index/Settings/AccountSettings/SecurityContent.tsx:276 msgid "Error while adding email" -msgstr "" +msgstr "Σφάλμα κατά την προσθήκη email" #: src/pages/Index/Settings/AccountSettings/SecurityContent.tsx:280 #~ msgid "Not configured" @@ -6217,7 +6276,7 @@ msgstr "" #: src/pages/Index/Settings/AccountSettings/SecurityContent.tsx:287 msgid "Add Email" -msgstr "" +msgstr "Προσθήκη Email" #: src/pages/Index/Settings/AccountSettings/SecurityContent.tsx:293 #~ msgid "You can sign in to your account using any of the following third party accounts" @@ -6225,15 +6284,15 @@ msgstr "" #: src/pages/Index/Settings/AccountSettings/SecurityContent.tsx:351 msgid "There are no providers connected to this account." -msgstr "" +msgstr "Δεν υπάρχουν συνδεδεμένοι πάροχοι σε αυτόν τον λογαριασμό." #: src/pages/Index/Settings/AccountSettings/SecurityContent.tsx:360 msgid "You can sign in to your account using any of the following providers" -msgstr "" +msgstr "Μπορείτε να συνδεθείτε στον λογαριασμό σας χρησιμοποιώντας οποιονδήποτε από τους παρακάτω παρόχους" #: src/pages/Index/Settings/AccountSettings/SecurityContent.tsx:373 msgid "Remove Provider Link" -msgstr "" +msgstr "Αφαίρεση σύνδεσης παρόχου" #: src/pages/Index/Settings/AccountSettings/SecurityContent.tsx:556 #~ msgid "Unused Codes" @@ -6278,7 +6337,7 @@ msgstr "" #: src/pages/Index/Settings/AccountSettings/UserThemePanel.tsx:61 msgid "Display Settings" -msgstr "" +msgstr "Ρυθμίσεις Εμφάνισης" #: src/pages/Index/Settings/AccountSettings/UserThemePanel.tsx:65 #~ msgid "bars" @@ -6290,7 +6349,7 @@ msgstr "" #: src/pages/Index/Settings/AccountSettings/UserThemePanel.tsx:67 msgid "Language" -msgstr "" +msgstr "Γλώσσα" #: src/pages/Index/Settings/AccountSettings/UserThemePanel.tsx:67 #~ msgid "dots" @@ -6298,7 +6357,7 @@ msgstr "" #: src/pages/Index/Settings/AccountSettings/UserThemePanel.tsx:78 msgid "Use pseudo language" -msgstr "" +msgstr "Χρήση ψευδογλώσσας" #: src/pages/Index/Settings/AccountSettings/UserThemePanel.tsx:81 #~ msgid "Theme" @@ -6306,7 +6365,7 @@ msgstr "" #: src/pages/Index/Settings/AccountSettings/UserThemePanel.tsx:85 msgid "Color Mode" -msgstr "" +msgstr "Λειτουργία χρώματος" #: src/pages/Index/Settings/AccountSettings/UserThemePanel.tsx:87 #~ msgid "Primary color" @@ -6314,39 +6373,39 @@ msgstr "" #: src/pages/Index/Settings/AccountSettings/UserThemePanel.tsx:96 msgid "Highlight color" -msgstr "" +msgstr "Χρώμα επισήμανσης" #: src/pages/Index/Settings/AccountSettings/UserThemePanel.tsx:110 msgid "Example" -msgstr "" +msgstr "Παράδειγμα" #: src/pages/Index/Settings/AccountSettings/UserThemePanel.tsx:116 msgid "White color" -msgstr "" +msgstr "Λευκό χρώμα" #: src/pages/Index/Settings/AccountSettings/UserThemePanel.tsx:139 msgid "Black color" -msgstr "" +msgstr "Μαύρο χρώμα" #: src/pages/Index/Settings/AccountSettings/UserThemePanel.tsx:162 msgid "Border Radius" -msgstr "" +msgstr "Καμπυλότητα γωνιών" #: src/pages/Index/Settings/AccountSettings/UserThemePanel.tsx:178 msgid "Loader" -msgstr "" +msgstr "Δείκτης φόρτωσης" #: src/pages/Index/Settings/AccountSettings/UserThemePanel.tsx:185 msgid "Bars" -msgstr "" +msgstr "Ράβδοι" #: src/pages/Index/Settings/AccountSettings/UserThemePanel.tsx:186 msgid "Oval" -msgstr "" +msgstr "Οβάλ" #: src/pages/Index/Settings/AccountSettings/UserThemePanel.tsx:187 msgid "Dots" -msgstr "" +msgstr "Τελείες" #: src/pages/Index/Settings/AccountSettings/useConfirm.tsx:93 #~ msgid "Reauthentication" @@ -6363,63 +6422,67 @@ msgstr "" #: src/pages/Index/Settings/AdminCenter/CurrencyManagementPanel.tsx:28 #: src/tables/ColumnRenderers.tsx:538 msgid "Currency" -msgstr "" +msgstr "Νόμισμα" #: src/pages/Index/Settings/AdminCenter/CurrencyManagementPanel.tsx:33 msgid "Rate" -msgstr "" +msgstr "Ισοτιμία" #: src/pages/Index/Settings/AdminCenter/CurrencyManagementPanel.tsx:46 msgid "Exchange rates updated" -msgstr "" +msgstr "Οι ισοτιμίες ενημερώθηκαν" #: src/pages/Index/Settings/AdminCenter/CurrencyManagementPanel.tsx:53 msgid "Exchange rate update error" -msgstr "" +msgstr "Σφάλμα ενημέρωσης ισοτιμιών" #: src/pages/Index/Settings/AdminCenter/CurrencyManagementPanel.tsx:63 msgid "Refresh currency exchange rates" -msgstr "" +msgstr "Ανανέωση ισοτιμιών νομισμάτων" #: src/pages/Index/Settings/AdminCenter/CurrencyManagementPanel.tsx:99 msgid "Last fetched" -msgstr "" +msgstr "Τελευταία λήψη" #: src/pages/Index/Settings/AdminCenter/CurrencyManagementPanel.tsx:100 msgid "Base currency" -msgstr "" +msgstr "Βασικό νόμισμα" #: src/pages/Index/Settings/AdminCenter/EmailManagementPanel.tsx:13 msgid "Email Messages" -msgstr "" +msgstr "Μηνύματα email" #: src/pages/Index/Settings/AdminCenter/HomePanel.tsx:22 -msgid "Active Alerts" -msgstr "" +#~ msgid "Active Alerts" +#~ msgstr "Active Alerts" #: src/pages/Index/Settings/AdminCenter/HomePanel.tsx:27 -msgid "Inactive Alerts" +#~ msgid "Inactive Alerts" +#~ msgstr "Inactive Alerts" + +#: src/pages/Index/Settings/AdminCenter/HomePanel.tsx:36 +msgid "System Status" msgstr "" -#: src/pages/Index/Settings/AdminCenter/HomePanel.tsx:38 +#: src/pages/Index/Settings/AdminCenter/HomePanel.tsx:47 msgid "Admin Center Information" -msgstr "" +msgstr "Πληροφορίες Κέντρου Διαχείρισης" -#: src/pages/Index/Settings/AdminCenter/HomePanel.tsx:44 +#: src/pages/Index/Settings/AdminCenter/HomePanel.tsx:53 msgid "The home panel (and the whole Admin Center) is a new feature starting with the new UI and was previously (before 1.0) not available." -msgstr "" +msgstr "Το κεντρικό πάνελ (και συνολικά το Κέντρο Διαχείρισης) είναι νέα λειτουργία που ξεκινά με το νέο UI και παλαιότερα (πριν την 1.0) δεν ήταν διαθέσιμη." -#: src/pages/Index/Settings/AdminCenter/HomePanel.tsx:51 +#: src/pages/Index/Settings/AdminCenter/HomePanel.tsx:60 msgid "The admin center provides a centralized location for all administration functionality and is meant to replace all interaction with the (django) backend admin interface." -msgstr "" +msgstr "Το κέντρο διαχείρισης παρέχει έναν κεντρικό χώρο για όλες τις λειτουργίες διαχείρισης και προορίζεται να αντικαταστήσει κάθε αλληλεπίδραση με το backend admin (Django)." -#: src/pages/Index/Settings/AdminCenter/HomePanel.tsx:58 +#: src/pages/Index/Settings/AdminCenter/HomePanel.tsx:67 msgid "Please open feature requests (after checking the tracker) for any existing backend admin functionality you are missing in this UI. The backend admin interface should be used carefully and seldom." -msgstr "" +msgstr "Άνοιξε αιτήματα νέων λειτουργιών (αφού ελέγξεις πρώτα το tracker) για οποιαδήποτε δυνατότητα του backend admin λείπει από αυτό το UI. Η διεπαφή backend admin πρέπει να χρησιμοποιείται σπάνια και με προσοχή." -#: src/pages/Index/Settings/AdminCenter/HomePanel.tsx:76 +#: src/pages/Index/Settings/AdminCenter/HomePanel.tsx:85 msgid "Quick Actions" -msgstr "" +msgstr "Γρήγορες ενέργειες" #: src/pages/Index/Settings/AdminCenter/Index.tsx:107 #~ msgid "User Management" @@ -6427,11 +6490,11 @@ msgstr "" #: src/pages/Index/Settings/AdminCenter/Index.tsx:115 msgid "Home" -msgstr "" +msgstr "Αρχική" #: src/pages/Index/Settings/AdminCenter/Index.tsx:122 msgid "Users / Access" -msgstr "" +msgstr "Χρήστες / Πρόσβαση" #: src/pages/Index/Settings/AdminCenter/Index.tsx:127 #~ msgid "Templates" @@ -6439,27 +6502,27 @@ msgstr "" #: src/pages/Index/Settings/AdminCenter/Index.tsx:136 msgid "Data Import" -msgstr "" +msgstr "Εισαγωγή δεδομένων" #: src/pages/Index/Settings/AdminCenter/Index.tsx:142 msgid "Data Export" -msgstr "" +msgstr "Εξαγωγή δεδομένων" #: src/pages/Index/Settings/AdminCenter/Index.tsx:148 msgid "Barcode Scans" -msgstr "" +msgstr "Σαρώσεις barcode" #: src/pages/Index/Settings/AdminCenter/Index.tsx:154 msgid "Background Tasks" -msgstr "" +msgstr "Εργασίες παρασκηνίου" #: src/pages/Index/Settings/AdminCenter/Index.tsx:160 msgid "Error Reports" -msgstr "" +msgstr "Αναφορές σφαλμάτων" #: src/pages/Index/Settings/AdminCenter/Index.tsx:166 msgid "Currencies" -msgstr "" +msgstr "Νομίσματα" #: src/pages/Index/Settings/AdminCenter/Index.tsx:170 #~ msgid "Location types" @@ -6467,26 +6530,26 @@ msgstr "" #: src/pages/Index/Settings/AdminCenter/Index.tsx:183 msgid "Custom States" -msgstr "" +msgstr "Προσαρμοσμένες καταστάσεις" #: src/pages/Index/Settings/AdminCenter/Index.tsx:189 #: src/pages/Index/Settings/AdminCenter/UnitManagementPanel.tsx:57 msgid "Custom Units" -msgstr "" +msgstr "Προσαρμοσμένες μονάδες" #: src/pages/Index/Settings/AdminCenter/Index.tsx:195 #: src/pages/part/CategoryDetail.tsx:313 -msgid "Part Parameters" -msgstr "" +#~ msgid "Part Parameters" +#~ msgstr "Part Parameters" #: src/pages/Index/Settings/AdminCenter/Index.tsx:202 -#: src/pages/part/CategoryDetail.tsx:306 +#: src/pages/part/CategoryDetail.tsx:329 msgid "Category Parameters" -msgstr "" +msgstr "Παράμετροι Κατηγορίας" #: src/pages/Index/Settings/AdminCenter/Index.tsx:221 msgid "Location Types" -msgstr "" +msgstr "Τύποι Τοποθεσιών" #: src/pages/Index/Settings/AdminCenter/Index.tsx:226 #~ msgid "Add a new user" @@ -6494,35 +6557,35 @@ msgstr "" #: src/pages/Index/Settings/AdminCenter/Index.tsx:235 #: src/pages/Index/Settings/AdminCenter/MachineManagementPanel.tsx:52 -#: src/tables/machine/MachineTypeTable.tsx:325 +#: src/tables/machine/MachineTypeTable.tsx:323 msgid "Machines" -msgstr "" +msgstr "Μηχανήματα" #: src/pages/Index/Settings/AdminCenter/Index.tsx:247 msgid "Operations" -msgstr "" +msgstr "Λειτουργίες" #: src/pages/Index/Settings/AdminCenter/Index.tsx:259 msgid "Data Management" -msgstr "" +msgstr "Διαχείριση Δεδομένων" #: src/pages/Index/Settings/AdminCenter/Index.tsx:270 -#: src/pages/Index/Settings/SystemSettings.tsx:175 -#: src/pages/Index/Settings/UserSettings.tsx:118 +#: src/pages/Index/Settings/SystemSettings.tsx:176 +#: src/pages/Index/Settings/UserSettings.tsx:119 msgid "Reporting" -msgstr "" +msgstr "Αναφορές" #: src/pages/Index/Settings/AdminCenter/Index.tsx:275 msgid "PLM" -msgstr "" +msgstr "PLM" #: src/pages/Index/Settings/AdminCenter/Index.tsx:285 msgid "Extend / Integrate" -msgstr "" +msgstr "Επέκταση / Ενσωμάτωση" #: src/pages/Index/Settings/AdminCenter/Index.tsx:299 msgid "Advanced Options" -msgstr "" +msgstr "Προχωρημένες Επιλογές" #: src/pages/Index/Settings/AdminCenter/LabelTemplatePanel.tsx:40 #~ msgid "Generated Labels" @@ -6538,7 +6601,7 @@ msgstr "" #: src/pages/Index/Settings/AdminCenter/MachineManagementPanel.tsx:60 msgid "Machine Drivers" -msgstr "" +msgstr "Οδηγοί Μηχανημάτων" #: src/pages/Index/Settings/AdminCenter/MachineManagementPanel.tsx:62 #~ msgid "There are no machine registry errors." @@ -6546,37 +6609,37 @@ msgstr "" #: src/pages/Index/Settings/AdminCenter/MachineManagementPanel.tsx:68 msgid "Machine Types" -msgstr "" +msgstr "Τύποι Μηχανημάτων" #: src/pages/Index/Settings/AdminCenter/MachineManagementPanel.tsx:76 msgid "Machine Errors" -msgstr "" +msgstr "Σφάλματα Μηχανημάτων" #: src/pages/Index/Settings/AdminCenter/MachineManagementPanel.tsx:89 msgid "Registry Registry Errors" -msgstr "" +msgstr "Σφάλματα Μητρώου" #: src/pages/Index/Settings/AdminCenter/MachineManagementPanel.tsx:92 msgid "There are machine registry errors" -msgstr "" +msgstr "Υπάρχουν σφάλματα μητρώου μηχανημάτων" #: src/pages/Index/Settings/AdminCenter/MachineManagementPanel.tsx:98 msgid "Machine Registry Errors" -msgstr "" +msgstr "Σφάλματα Μητρώου Μηχανημάτων" #: src/pages/Index/Settings/AdminCenter/MachineManagementPanel.tsx:101 msgid "There are no machine registry errors" -msgstr "" +msgstr "Δεν υπάρχουν σφάλματα μητρώου μηχανημάτων" #: src/pages/Index/Settings/AdminCenter/MachineManagementPanel.tsx:122 #: src/tables/machine/MachineListTable.tsx:502 msgid "Machine Settings" -msgstr "" +msgstr "Ρυθμίσεις Μηχανημάτων" #: src/pages/Index/Settings/AdminCenter/PluginManagementPanel.tsx:33 #: src/tables/settings/UserTable.tsx:195 msgid "Info" -msgstr "" +msgstr "Πληροφορίες" #: src/pages/Index/Settings/AdminCenter/PluginManagementPanel.tsx:33 #~ msgid "Plugin Error Stack" @@ -6584,7 +6647,7 @@ msgstr "" #: src/pages/Index/Settings/AdminCenter/PluginManagementPanel.tsx:37 msgid "External plugins are not enabled for this InvenTree installation." -msgstr "" +msgstr "Τα εξωτερικά πρόσθετα δεν είναι ενεργά σε αυτή την εγκατάσταση του InvenTree." #: src/pages/Index/Settings/AdminCenter/PluginManagementPanel.tsx:45 #~ msgid "Warning" @@ -6596,23 +6659,23 @@ msgstr "" #: src/pages/Index/Settings/AdminCenter/PluginManagementPanel.tsx:76 msgid "Plugin Errors" -msgstr "" +msgstr "Σφάλματα πρόσθετων" #: src/pages/Index/Settings/AdminCenter/ReportTemplatePanel.tsx:16 msgid "Page Size" -msgstr "" +msgstr "Μέγεθος Σελίδας" #: src/pages/Index/Settings/AdminCenter/ReportTemplatePanel.tsx:19 msgid "Landscape" -msgstr "" +msgstr "Οριζόντιος προσανατολισμός" #: src/pages/Index/Settings/AdminCenter/ReportTemplatePanel.tsx:25 msgid "Merge" -msgstr "" +msgstr "Συγχώνευση" #: src/pages/Index/Settings/AdminCenter/ReportTemplatePanel.tsx:31 msgid "Attach to Model" -msgstr "" +msgstr "Σύνδεση με Μοντέλο" #: src/pages/Index/Settings/AdminCenter/ReportTemplatePanel.tsx:55 #~ msgid "Generated Reports" @@ -6624,11 +6687,11 @@ msgstr "" #: src/pages/Index/Settings/AdminCenter/TaskManagementPanel.tsx:30 msgid "Background worker not running" -msgstr "" +msgstr "Η εργασία παρασκηνίου δεν εκτελείται" #: src/pages/Index/Settings/AdminCenter/TaskManagementPanel.tsx:31 msgid "The background task manager service is not running. Contact your system administrator." -msgstr "" +msgstr "Η υπηρεσία εργασιών παρασκηνίου δεν εκτελείται. Επικοινώνησε με τον διαχειριστή συστήματος." #: src/pages/Index/Settings/AdminCenter/TaskManagementPanel.tsx:35 #~ msgid "Background Worker Not Running" @@ -6637,17 +6700,17 @@ msgstr "" #: src/pages/Index/Settings/AdminCenter/TaskManagementPanel.tsx:38 #: src/pages/Index/Settings/AdminCenter/TaskManagementPanel.tsx:47 msgid "Pending Tasks" -msgstr "" +msgstr "Εκκρεμείς εργασίες" #: src/pages/Index/Settings/AdminCenter/TaskManagementPanel.tsx:39 #: src/pages/Index/Settings/AdminCenter/TaskManagementPanel.tsx:55 msgid "Scheduled Tasks" -msgstr "" +msgstr "Προγραμματισμένες εργασίες" #: src/pages/Index/Settings/AdminCenter/TaskManagementPanel.tsx:40 #: src/pages/Index/Settings/AdminCenter/TaskManagementPanel.tsx:63 msgid "Failed Tasks" -msgstr "" +msgstr "Αποτυχημένες εργασίες" #: src/pages/Index/Settings/AdminCenter/TemplateManagementPanel.tsx:67 #~ msgid "Stock item" @@ -6683,19 +6746,19 @@ msgstr "" #: src/pages/Index/Settings/AdminCenter/UnitManagementPanel.tsx:21 msgid "Alias" -msgstr "" +msgstr "Συντόμευση" #: src/pages/Index/Settings/AdminCenter/UnitManagementPanel.tsx:22 msgid "Dimensionless" -msgstr "" +msgstr "Άνευ διαστάσεων" #: src/pages/Index/Settings/AdminCenter/UnitManagementPanel.tsx:65 msgid "All units" -msgstr "" +msgstr "Όλες οι μονάδες" #: src/pages/Index/Settings/AdminCenter/UserManagementPanel.tsx:31 msgid "Tokens" -msgstr "" +msgstr "Tokens" #: src/pages/Index/Settings/AdminCenter/UserManagementPanel.tsx:32 #~ msgid "Select settings relevant for user lifecycle. More available in" @@ -6707,15 +6770,15 @@ msgstr "" #: src/pages/Index/Settings/PluginSettingsGroup.tsx:99 msgid "The settings below are specific to each available plugin" -msgstr "" +msgstr "Οι παρακάτω ρυθμίσεις είναι ειδικές για κάθε διαθέσιμο πρόσθετο" -#: src/pages/Index/Settings/SystemSettings.tsx:77 +#: src/pages/Index/Settings/SystemSettings.tsx:78 msgid "Authentication" -msgstr "" +msgstr "Ταυτοποίηση" -#: src/pages/Index/Settings/SystemSettings.tsx:103 +#: src/pages/Index/Settings/SystemSettings.tsx:104 msgid "Barcodes" -msgstr "" +msgstr "Barcodes" #: src/pages/Index/Settings/SystemSettings.tsx:118 #~ msgid "Physical Units" @@ -6725,22 +6788,22 @@ msgstr "" #~ msgid "This panel is a placeholder." #~ msgstr "This panel is a placeholder." -#: src/pages/Index/Settings/SystemSettings.tsx:127 -#: src/pages/Index/Settings/UserSettings.tsx:112 +#: src/pages/Index/Settings/SystemSettings.tsx:128 +#: src/pages/Index/Settings/UserSettings.tsx:113 msgid "The settings below are specific to each available notification method" -msgstr "" +msgstr "Οι παρακάτω ρυθμίσεις είναι ειδικές για κάθε διαθέσιμη μέθοδο ειδοποίησης" -#: src/pages/Index/Settings/SystemSettings.tsx:133 +#: src/pages/Index/Settings/SystemSettings.tsx:134 msgid "Pricing" -msgstr "" +msgstr "Τιμολόγηση" #: src/pages/Index/Settings/SystemSettings.tsx:135 #~ msgid "Exchange Rates" #~ msgstr "Exchange Rates" -#: src/pages/Index/Settings/SystemSettings.tsx:169 +#: src/pages/Index/Settings/SystemSettings.tsx:170 msgid "Labels" -msgstr "" +msgstr "Ετικέτες" #: src/pages/Index/Settings/SystemSettings.tsx:317 #~ msgid "Switch to User Setting" @@ -6748,15 +6811,15 @@ msgstr "" #: src/pages/Index/Settings/UserSettings.tsx:41 msgid "Account" -msgstr "" +msgstr "Λογαριασμός" #: src/pages/Index/Settings/UserSettings.tsx:47 msgid "Security" -msgstr "" +msgstr "Ασφάλεια" #: src/pages/Index/Settings/UserSettings.tsx:53 msgid "Display Options" -msgstr "" +msgstr "Επιλογές εμφάνισης" #: src/pages/Index/Settings/UserSettings.tsx:159 #~ msgid "Switch to System Setting" @@ -6780,27 +6843,27 @@ msgstr "" #: src/pages/Notifications.tsx:83 msgid "History" -msgstr "" +msgstr "Ιστορικό" #: src/pages/Notifications.tsx:91 msgid "Mark as unread" -msgstr "" +msgstr "Σήμανση ως μη αναγνωσμένο" #: src/pages/Notifications.tsx:146 #~ msgid "Delete notifications" #~ msgstr "Delete notifications" -#: src/pages/build/BuildDetail.tsx:69 +#: src/pages/build/BuildDetail.tsx:70 msgid "No Required Items" -msgstr "" - -#: src/pages/build/BuildDetail.tsx:71 -msgid "This build order does not have any required items." -msgstr "" +msgstr "Δεν υπάρχουν απαιτούμενα Προϊόντα" #: src/pages/build/BuildDetail.tsx:72 +msgid "This build order does not have any required items." +msgstr "Η εντολή κατασκευής δεν έχει απαιτούμενα Προϊόντα." + +#: src/pages/build/BuildDetail.tsx:73 msgid "The assembled part may not have a Bill of Materials (BOM) defined, or the BOM is empty." -msgstr "" +msgstr "Το συναρμολογημένο Προϊόν μπορεί να μην έχει ορισμένο BOM ή το BOM είναι άδειο." #: src/pages/build/BuildDetail.tsx:80 #~ msgid "Build Status" @@ -6826,14 +6889,14 @@ msgstr "" #~ msgid "Build Order updated" #~ msgstr "Build Order updated" -#: src/pages/build/BuildDetail.tsx:215 +#: src/pages/build/BuildDetail.tsx:216 #: src/pages/part/PartDetail.tsx:480 #: src/pages/stock/StockDetail.tsx:161 #: src/tables/bom/UsedInTable.tsx:44 #: src/tables/build/BuildOrderTable.tsx:83 #: src/tables/stock/StockItemTable.tsx:74 msgid "Revision" -msgstr "" +msgstr "Αναθεώρηση" #: src/pages/build/BuildDetail.tsx:221 #~ msgid "Edit build order" @@ -6843,679 +6906,700 @@ msgstr "" #~ msgid "Duplicate build order" #~ msgstr "Duplicate build order" -#: src/pages/build/BuildDetail.tsx:228 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:174 -#: src/pages/sales/ReturnOrderDetail.tsx:141 -#: src/pages/sales/SalesOrderDetail.tsx:131 +#: src/pages/build/BuildDetail.tsx:229 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:175 +#: src/pages/sales/ReturnOrderDetail.tsx:142 +#: src/pages/sales/SalesOrderDetail.tsx:132 #: src/pages/stock/StockDetail.tsx:176 msgid "Custom Status" -msgstr "" +msgstr "Προσαρμοσμένη κατάσταση" #: src/pages/build/BuildDetail.tsx:231 #~ msgid "Delete build order" #~ msgstr "Delete build order" -#: src/pages/build/BuildDetail.tsx:237 -#: src/pages/build/BuildDetail.tsx:723 -#: src/pages/build/BuildIndex.tsx:28 +#: src/pages/build/BuildDetail.tsx:238 +#: src/pages/build/BuildDetail.tsx:728 +#: src/pages/build/BuildIndex.tsx:34 #: src/pages/stock/LocationDetail.tsx:140 #: src/tables/build/BuildOrderTable.tsx:123 #: src/tables/build/BuildOrderTable.tsx:183 #: src/tables/stock/StockLocationTable.tsx:48 msgid "External" -msgstr "" +msgstr "Εξωτερικό" -#: src/pages/build/BuildDetail.tsx:244 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:141 -#: src/pages/sales/ReturnOrderDetail.tsx:108 -#: src/pages/sales/SalesOrderDetail.tsx:98 +#: src/pages/build/BuildDetail.tsx:245 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:142 +#: src/pages/sales/ReturnOrderDetail.tsx:109 +#: src/pages/sales/SalesOrderDetail.tsx:99 #: src/tables/ColumnRenderers.tsx:321 -#: src/tables/build/BuildAllocatedStockTable.tsx:115 -#: src/tables/build/BuildLineTable.tsx:352 +#: src/tables/build/BuildAllocatedStockTable.tsx:112 +#: src/tables/build/BuildLineTable.tsx:353 msgid "Reference" -msgstr "" +msgstr "Αναφορά" -#: src/pages/build/BuildDetail.tsx:258 +#: src/pages/build/BuildDetail.tsx:259 msgid "Parent Build" -msgstr "" +msgstr "Γονική κατασκευή" -#: src/pages/build/BuildDetail.tsx:269 +#: src/pages/build/BuildDetail.tsx:270 msgid "Build Quantity" -msgstr "" +msgstr "Ποσότητα Κατασκευής" -#: src/pages/build/BuildDetail.tsx:275 +#: src/pages/build/BuildDetail.tsx:276 #: src/pages/part/PartDetail.tsx:598 #: src/tables/bom/BomTable.tsx:365 #: src/tables/bom/BomTable.tsx:407 msgid "Can Build" -msgstr "" +msgstr "Μπορεί να Κατασκευαστεί" -#: src/pages/build/BuildDetail.tsx:284 -#: src/pages/build/BuildDetail.tsx:474 +#: src/pages/build/BuildDetail.tsx:285 +#: src/pages/build/BuildDetail.tsx:475 msgid "Completed Outputs" -msgstr "" +msgstr "Ολοκληρωμένες Παραγωγές" -#: src/pages/build/BuildDetail.tsx:301 +#: src/pages/build/BuildDetail.tsx:302 #: src/tables/Filter.tsx:381 #: src/tables/build/BuildOrderTable.tsx:143 msgid "Issued By" -msgstr "" +msgstr "Εκδόθηκε Από" -#: src/pages/build/BuildDetail.tsx:309 +#: src/pages/build/BuildDetail.tsx:310 #: src/pages/part/PartDetail.tsx:691 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:261 -#: src/pages/sales/ReturnOrderDetail.tsx:239 -#: src/pages/sales/SalesOrderDetail.tsx:232 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:262 +#: src/pages/sales/ReturnOrderDetail.tsx:240 +#: src/pages/sales/SalesOrderDetail.tsx:233 #: src/tables/ColumnRenderers.tsx:464 #: src/tables/Filter.tsx:319 msgid "Responsible" -msgstr "" +msgstr "Υπεύθυνος" -#: src/pages/build/BuildDetail.tsx:327 +#: src/pages/build/BuildDetail.tsx:328 msgid "Any location" -msgstr "" +msgstr "Οποιαδήποτε τοποθεσία" -#: src/pages/build/BuildDetail.tsx:334 +#: src/pages/build/BuildDetail.tsx:335 msgid "Destination Location" -msgstr "" +msgstr "Τοποθεσία Προορισμού" #: src/pages/build/BuildDetail.tsx:347 #: src/pages/part/PartDetail.tsx:727 #~ msgid "Test Statistics" #~ msgstr "Test Statistics" -#: src/pages/build/BuildDetail.tsx:350 +#: src/pages/build/BuildDetail.tsx:351 #: src/tables/settings/ApiTokenTable.tsx:97 #: src/tables/settings/PendingTasksTable.tsx:41 msgid "Created" -msgstr "" +msgstr "Δημιουργήθηκε" -#: src/pages/build/BuildDetail.tsx:358 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:286 -#: src/pages/sales/ReturnOrderDetail.tsx:265 -#: src/pages/sales/SalesOrderDetail.tsx:257 +#: src/pages/build/BuildDetail.tsx:359 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:287 +#: src/pages/sales/ReturnOrderDetail.tsx:266 +#: src/pages/sales/SalesOrderDetail.tsx:258 #: src/tables/ColumnRenderers.tsx:486 msgid "Start Date" -msgstr "" +msgstr "Ημερομηνία Έναρξης" -#: src/pages/build/BuildDetail.tsx:366 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:294 -#: src/pages/sales/ReturnOrderDetail.tsx:273 -#: src/pages/sales/SalesOrderDetail.tsx:265 +#: src/pages/build/BuildDetail.tsx:367 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:295 +#: src/pages/sales/ReturnOrderDetail.tsx:274 +#: src/pages/sales/SalesOrderDetail.tsx:266 #: src/tables/ColumnRenderers.tsx:494 #: src/tables/part/PartPurchaseOrdersTable.tsx:101 #: src/tables/sales/ReturnOrderLineItemTable.tsx:154 #: src/tables/sales/SalesOrderLineItemTable.tsx:134 msgid "Target Date" -msgstr "" +msgstr "Ημερομηνία Στόχος" #: src/pages/build/BuildDetail.tsx:368 #~ msgid "Reporting Actions" #~ msgstr "Reporting Actions" -#: src/pages/build/BuildDetail.tsx:374 -#: src/tables/build/BuildOrderTable.tsx:93 -#: src/tables/sales/SalesOrderLineItemTable.tsx:347 -msgid "Completed" -msgstr "" - #: src/pages/build/BuildDetail.tsx:374 #~ msgid "Print build report" #~ msgstr "Print build report" -#: src/pages/build/BuildDetail.tsx:410 +#: src/pages/build/BuildDetail.tsx:375 +#: src/tables/build/BuildOrderTable.tsx:93 +#: src/tables/sales/SalesOrderLineItemTable.tsx:347 +msgid "Completed" +msgstr "Ολοκληρώθηκε" + +#: src/pages/build/BuildDetail.tsx:411 msgid "Build Details" -msgstr "" +msgstr "Λεπτομέρειες Κατασκευής" -#: src/pages/build/BuildDetail.tsx:416 +#: src/pages/build/BuildDetail.tsx:417 msgid "Required Parts" -msgstr "" +msgstr "Απαιτούμενα Προϊόντα" -#: src/pages/build/BuildDetail.tsx:428 -#: src/pages/sales/SalesOrderDetail.tsx:407 -#: src/pages/sales/SalesOrderShipmentDetail.tsx:261 +#: src/pages/build/BuildDetail.tsx:429 +#: src/pages/sales/SalesOrderDetail.tsx:408 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:259 #: src/tables/part/PartSalesAllocationsTable.tsx:73 msgid "Allocated Stock" -msgstr "" +msgstr "Δεσμευμένο Απόθεμα" -#: src/pages/build/BuildDetail.tsx:444 +#: src/pages/build/BuildDetail.tsx:445 msgid "Consumed Stock" -msgstr "" +msgstr "Καταναλωμένο Απόθεμα" -#: src/pages/build/BuildDetail.tsx:461 +#: src/pages/build/BuildDetail.tsx:462 msgid "Incomplete Outputs" -msgstr "" +msgstr "Μη Ολοκληρωμένες Παραγωγές" -#: src/pages/build/BuildDetail.tsx:489 +#: src/pages/build/BuildDetail.tsx:490 msgid "External Orders" -msgstr "" +msgstr "Εξωτερικές Παραγγελίες" -#: src/pages/build/BuildDetail.tsx:503 +#: src/pages/build/BuildDetail.tsx:504 msgid "Child Build Orders" -msgstr "" +msgstr "Θυγατρικές Εντολές Κατασκευής" -#: src/pages/build/BuildDetail.tsx:513 -#: src/pages/part/PartDetail.tsx:937 +#: src/pages/build/BuildDetail.tsx:514 +#: src/pages/part/PartDetail.tsx:926 #: src/pages/stock/StockDetail.tsx:587 #: src/tables/build/BuildOutputTable.tsx:654 #: src/tables/stock/StockItemTestResultTable.tsx:173 msgid "Test Results" -msgstr "" +msgstr "Αποτελέσματα Δοκιμών" -#: src/pages/build/BuildDetail.tsx:550 +#: src/pages/build/BuildDetail.tsx:555 msgid "Edit Build Order" -msgstr "" +msgstr "Επεξεργασία Εντολής Κατασκευής" -#: src/pages/build/BuildDetail.tsx:572 +#: src/pages/build/BuildDetail.tsx:577 #: src/tables/build/BuildOrderTable.tsx:207 #: src/tables/build/BuildOrderTable.tsx:223 msgid "Add Build Order" -msgstr "" +msgstr "Προσθήκη Εντολής Κατασκευής" -#: src/pages/build/BuildDetail.tsx:582 +#: src/pages/build/BuildDetail.tsx:587 msgid "Cancel Build Order" -msgstr "" +msgstr "Ακύρωση Εντολής Κατασκευής" -#: src/pages/build/BuildDetail.tsx:584 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:416 -#: src/pages/sales/ReturnOrderDetail.tsx:427 -#: src/pages/sales/SalesOrderDetail.tsx:454 +#: src/pages/build/BuildDetail.tsx:589 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:421 +#: src/pages/sales/ReturnOrderDetail.tsx:432 +#: src/pages/sales/SalesOrderDetail.tsx:459 msgid "Order cancelled" -msgstr "" +msgstr "Η παραγγελία ακυρώθηκε" -#: src/pages/build/BuildDetail.tsx:585 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:415 -#: src/pages/sales/ReturnOrderDetail.tsx:426 -#: src/pages/sales/SalesOrderDetail.tsx:453 +#: src/pages/build/BuildDetail.tsx:590 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:420 +#: src/pages/sales/ReturnOrderDetail.tsx:431 +#: src/pages/sales/SalesOrderDetail.tsx:458 msgid "Cancel this order" -msgstr "" +msgstr "Ακύρωση της παραγγελίας" -#: src/pages/build/BuildDetail.tsx:594 +#: src/pages/build/BuildDetail.tsx:599 msgid "Hold Build Order" -msgstr "" +msgstr "Πάγωμα Εντολής Κατασκευής" -#: src/pages/build/BuildDetail.tsx:596 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:423 -#: src/pages/sales/ReturnOrderDetail.tsx:434 -#: src/pages/sales/SalesOrderDetail.tsx:461 +#: src/pages/build/BuildDetail.tsx:601 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:428 +#: src/pages/sales/ReturnOrderDetail.tsx:439 +#: src/pages/sales/SalesOrderDetail.tsx:466 msgid "Place this order on hold" -msgstr "" - -#: src/pages/build/BuildDetail.tsx:597 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:424 -#: src/pages/sales/ReturnOrderDetail.tsx:435 -#: src/pages/sales/SalesOrderDetail.tsx:462 -msgid "Order placed on hold" -msgstr "" +msgstr "Τοποθέτηση παραγγελίας σε αναμονή" #: src/pages/build/BuildDetail.tsx:602 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:429 +#: src/pages/sales/ReturnOrderDetail.tsx:440 +#: src/pages/sales/SalesOrderDetail.tsx:467 +msgid "Order placed on hold" +msgstr "Η παραγγελία τέθηκε σε αναμονή" + +#: src/pages/build/BuildDetail.tsx:607 msgid "Issue Build Order" -msgstr "" +msgstr "Έκδοση Εντολής Κατασκευής" -#: src/pages/build/BuildDetail.tsx:604 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:407 -#: src/pages/sales/ReturnOrderDetail.tsx:418 -#: src/pages/sales/SalesOrderDetail.tsx:445 +#: src/pages/build/BuildDetail.tsx:609 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:412 +#: src/pages/sales/ReturnOrderDetail.tsx:423 +#: src/pages/sales/SalesOrderDetail.tsx:450 msgid "Issue this order" -msgstr "" +msgstr "Έκδοση παραγγελίας" -#: src/pages/build/BuildDetail.tsx:605 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:408 -#: src/pages/sales/ReturnOrderDetail.tsx:419 -#: src/pages/sales/SalesOrderDetail.tsx:446 +#: src/pages/build/BuildDetail.tsx:610 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:413 +#: src/pages/sales/ReturnOrderDetail.tsx:424 +#: src/pages/sales/SalesOrderDetail.tsx:451 msgid "Order issued" -msgstr "" +msgstr "Η παραγγελία εκδόθηκε" -#: src/pages/build/BuildDetail.tsx:624 +#: src/pages/build/BuildDetail.tsx:629 msgid "Complete Build Order" -msgstr "" +msgstr "Ολοκλήρωση Εντολής Κατασκευής" -#: src/pages/build/BuildDetail.tsx:630 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:436 -#: src/pages/sales/ReturnOrderDetail.tsx:442 -#: src/pages/sales/SalesOrderDetail.tsx:480 +#: src/pages/build/BuildDetail.tsx:635 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:441 +#: src/pages/sales/ReturnOrderDetail.tsx:447 +#: src/pages/sales/SalesOrderDetail.tsx:485 msgid "Mark this order as complete" -msgstr "" +msgstr "Σήμανση παραγγελίας ως ολοκληρωμένη" -#: src/pages/build/BuildDetail.tsx:633 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:430 -#: src/pages/sales/ReturnOrderDetail.tsx:443 -#: src/pages/sales/SalesOrderDetail.tsx:481 +#: src/pages/build/BuildDetail.tsx:638 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:435 +#: src/pages/sales/ReturnOrderDetail.tsx:448 +#: src/pages/sales/SalesOrderDetail.tsx:486 msgid "Order completed" -msgstr "" +msgstr "Η παραγγελία ολοκληρώθηκε" -#: src/pages/build/BuildDetail.tsx:660 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:459 -#: src/pages/sales/ReturnOrderDetail.tsx:470 -#: src/pages/sales/SalesOrderDetail.tsx:516 +#: src/pages/build/BuildDetail.tsx:665 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:464 +#: src/pages/sales/ReturnOrderDetail.tsx:475 +#: src/pages/sales/SalesOrderDetail.tsx:521 msgid "Issue Order" -msgstr "" +msgstr "Έκδοση Παραγγελίας" -#: src/pages/build/BuildDetail.tsx:667 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:466 -#: src/pages/sales/ReturnOrderDetail.tsx:477 -#: src/pages/sales/SalesOrderDetail.tsx:530 +#: src/pages/build/BuildDetail.tsx:672 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:471 +#: src/pages/sales/ReturnOrderDetail.tsx:482 +#: src/pages/sales/SalesOrderDetail.tsx:535 msgid "Complete Order" -msgstr "" - -#: src/pages/build/BuildDetail.tsx:686 -msgid "Build Order Actions" -msgstr "" +msgstr "Ολοκλήρωση Παραγγελίας" #: src/pages/build/BuildDetail.tsx:691 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:489 -#: src/pages/sales/ReturnOrderDetail.tsx:500 -#: src/pages/sales/SalesOrderDetail.tsx:554 -msgid "Edit order" -msgstr "" +msgid "Build Order Actions" +msgstr "Ενέργειες Εντολής Κατασκευής" -#: src/pages/build/BuildDetail.tsx:695 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:497 -#: src/pages/sales/ReturnOrderDetail.tsx:506 +#: src/pages/build/BuildDetail.tsx:696 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:494 +#: src/pages/sales/ReturnOrderDetail.tsx:505 #: src/pages/sales/SalesOrderDetail.tsx:559 -msgid "Duplicate order" -msgstr "" +msgid "Edit order" +msgstr "Επεξεργασία παραγγελίας" -#: src/pages/build/BuildDetail.tsx:699 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:500 +#: src/pages/build/BuildDetail.tsx:700 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:502 #: src/pages/sales/ReturnOrderDetail.tsx:511 -#: src/pages/sales/SalesOrderDetail.tsx:562 -msgid "Hold order" -msgstr "" +#: src/pages/sales/SalesOrderDetail.tsx:564 +msgid "Duplicate order" +msgstr "Αντιγραφή παραγγελίας" #: src/pages/build/BuildDetail.tsx:704 #: src/pages/purchasing/PurchaseOrderDetail.tsx:505 #: src/pages/sales/ReturnOrderDetail.tsx:516 #: src/pages/sales/SalesOrderDetail.tsx:567 -msgid "Cancel order" -msgstr "" +msgid "Hold order" +msgstr "Κατάψυξη παραγγελίας" -#: src/pages/build/BuildDetail.tsx:742 +#: src/pages/build/BuildDetail.tsx:709 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:510 +#: src/pages/sales/ReturnOrderDetail.tsx:521 +#: src/pages/sales/SalesOrderDetail.tsx:572 +msgid "Cancel order" +msgstr "Ακύρωση παραγγελίας" + +#: src/pages/build/BuildDetail.tsx:747 #: src/pages/stock/StockDetail.tsx:344 -#: src/tables/build/BuildAllocatedStockTable.tsx:85 +#: src/tables/build/BuildAllocatedStockTable.tsx:82 #: src/tables/part/PartBuildAllocationsTable.tsx:45 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:157 #: src/tables/stock/StockTrackingTable.tsx:109 msgid "Build Order" -msgstr "" +msgstr "Εντολή Κατασκευής" #: src/pages/build/BuildIndex.tsx:23 #~ msgid "Build order created" #~ msgstr "Build order created" -#: src/pages/build/BuildIndex.tsx:29 +#: src/pages/build/BuildIndex.tsx:35 #: src/tables/build/BuildOrderTable.tsx:184 msgid "Show external build orders" -msgstr "" +msgstr "Εμφάνιση εξωτερικών εντολών κατασκευής" #: src/pages/build/BuildIndex.tsx:39 #~ msgid "New Build Order" #~ msgstr "New Build Order" -#: src/pages/build/BuildIndex.tsx:83 -#: src/pages/purchasing/PurchasingIndex.tsx:69 -#: src/pages/sales/SalesIndex.tsx:92 -#: src/pages/sales/SalesIndex.tsx:125 +#: src/pages/build/BuildIndex.tsx:74 +#: src/pages/part/CategoryDetail.tsx:292 +#: src/pages/purchasing/PurchasingIndex.tsx:74 +#: src/pages/purchasing/PurchasingIndex.tsx:107 +#: src/pages/purchasing/PurchasingIndex.tsx:135 +#: src/pages/purchasing/PurchasingIndex.tsx:156 +#: src/pages/purchasing/PurchasingIndex.tsx:184 +#: src/pages/sales/SalesIndex.tsx:61 +#: src/pages/sales/SalesIndex.tsx:107 +#: src/pages/sales/SalesIndex.tsx:140 msgid "Table View" -msgstr "" +msgstr "Προβολή Πίνακα" + +#: src/pages/build/BuildIndex.tsx:80 +#: src/pages/purchasing/PurchasingIndex.tsx:80 +#: src/pages/sales/SalesIndex.tsx:67 +#: src/pages/sales/SalesIndex.tsx:113 +msgid "Calendar View" +msgstr "Προβολή Ημερολογίου" #: src/pages/build/BuildIndex.tsx:86 -#: src/pages/purchasing/PurchasingIndex.tsx:72 -#: src/pages/sales/SalesIndex.tsx:95 -#: src/pages/sales/SalesIndex.tsx:128 -msgid "Calendar View" +#: src/pages/part/CategoryDetail.tsx:306 +#: src/pages/purchasing/PurchasingIndex.tsx:92 +#: src/pages/purchasing/PurchasingIndex.tsx:118 +#: src/pages/purchasing/PurchasingIndex.tsx:141 +#: src/pages/purchasing/PurchasingIndex.tsx:167 +#: src/pages/purchasing/PurchasingIndex.tsx:190 +#: src/pages/sales/SalesIndex.tsx:79 +#: src/pages/sales/SalesIndex.tsx:125 +#: src/pages/sales/SalesIndex.tsx:151 +msgid "Parametric View" msgstr "" -#: src/pages/company/CompanyDetail.tsx:99 +#: src/pages/company/CompanyDetail.tsx:100 msgid "Website" -msgstr "" +msgstr "Ιστοσελίδα" -#: src/pages/company/CompanyDetail.tsx:107 +#: src/pages/company/CompanyDetail.tsx:108 msgid "Phone Number" -msgstr "" +msgstr "Τηλέφωνο" -#: src/pages/company/CompanyDetail.tsx:114 +#: src/pages/company/CompanyDetail.tsx:115 msgid "Email Address" -msgstr "" +msgstr "Διεύθυνση Email" -#: src/pages/company/CompanyDetail.tsx:121 +#: src/pages/company/CompanyDetail.tsx:122 msgid "Tax ID" -msgstr "" +msgstr "ΑΦΜ" -#: src/pages/company/CompanyDetail.tsx:131 +#: src/pages/company/CompanyDetail.tsx:132 msgid "Default Currency" -msgstr "" +msgstr "Προεπιλεγμένο Νόμισμα" -#: src/pages/company/CompanyDetail.tsx:142 +#: src/pages/company/CompanyDetail.tsx:143 #: src/pages/company/ManufacturerDetail.tsx:8 -#: src/pages/company/ManufacturerPartDetail.tsx:104 -#: src/pages/company/ManufacturerPartDetail.tsx:280 -#: src/pages/company/SupplierPartDetail.tsx:152 +#: src/pages/company/ManufacturerPartDetail.tsx:103 +#: src/pages/company/ManufacturerPartDetail.tsx:271 +#: src/pages/company/SupplierPartDetail.tsx:153 #: src/tables/Filter.tsx:347 #: src/tables/company/CompanyTable.tsx:101 #: src/tables/purchasing/SupplierPartTable.tsx:89 msgid "Manufacturer" -msgstr "" +msgstr "Κατασκευαστής" -#: src/pages/company/CompanyDetail.tsx:148 +#: src/pages/company/CompanyDetail.tsx:149 #: src/pages/company/CustomerDetail.tsx:8 #: src/pages/part/pricing/SaleHistoryPanel.tsx:31 -#: src/pages/sales/ReturnOrderDetail.tsx:123 -#: src/pages/sales/SalesOrderDetail.tsx:113 -#: src/pages/sales/SalesOrderShipmentDetail.tsx:113 +#: src/pages/sales/ReturnOrderDetail.tsx:124 +#: src/pages/sales/SalesOrderDetail.tsx:114 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:111 #: src/pages/stock/StockDetail.tsx:370 #: src/tables/company/CompanyTable.tsx:106 +#: src/tables/sales/ReturnOrderParametricTable.tsx:32 #: src/tables/sales/ReturnOrderTable.tsx:108 -#: src/tables/sales/SalesOrderShipmentTable.tsx:111 +#: src/tables/sales/SalesOrderParametricTable.tsx:32 +#: src/tables/sales/SalesOrderShipmentTable.tsx:132 #: src/tables/sales/SalesOrderTable.tsx:133 #: src/tables/stock/StockTrackingTable.tsx:153 msgid "Customer" -msgstr "" +msgstr "Πελάτης" #: src/pages/company/CompanyDetail.tsx:175 #~ msgid "Edit company" #~ msgstr "Edit company" -#: src/pages/company/CompanyDetail.tsx:181 +#: src/pages/company/CompanyDetail.tsx:182 msgid "Company Details" -msgstr "" +msgstr "Στοιχεία Εταιρείας" -#: src/pages/company/CompanyDetail.tsx:187 +#: src/pages/company/CompanyDetail.tsx:188 msgid "Supplied Parts" -msgstr "" +msgstr "Προμηθευόμενα Προϊόντα" #: src/pages/company/CompanyDetail.tsx:189 #~ msgid "Delete company" #~ msgstr "Delete company" -#: src/pages/company/CompanyDetail.tsx:194 +#: src/pages/company/CompanyDetail.tsx:195 msgid "Manufactured Parts" -msgstr "" +msgstr "Κατασκευασμένα Προϊόντα" -#: src/pages/company/CompanyDetail.tsx:241 +#: src/pages/company/CompanyDetail.tsx:242 msgid "Assigned Stock" -msgstr "" +msgstr "Ανατεθειμένο Απόθεμα" -#: src/pages/company/CompanyDetail.tsx:282 +#: src/pages/company/CompanyDetail.tsx:287 #: src/tables/company/CompanyTable.tsx:82 msgid "Edit Company" -msgstr "" +msgstr "Επεξεργασία Εταιρείας" -#: src/pages/company/CompanyDetail.tsx:290 +#: src/pages/company/CompanyDetail.tsx:295 msgid "Delete Company" -msgstr "" +msgstr "Διαγραφή Εταιρείας" -#: src/pages/company/CompanyDetail.tsx:305 +#: src/pages/company/CompanyDetail.tsx:310 msgid "Company Actions" -msgstr "" +msgstr "Ενέργειες Εταιρείας" -#: src/pages/company/ManufacturerPartDetail.tsx:78 -#: src/pages/company/SupplierPartDetail.tsx:89 +#: src/pages/company/ManufacturerPartDetail.tsx:77 +#: src/pages/company/SupplierPartDetail.tsx:90 msgid "Internal Part" -msgstr "" +msgstr "Εσωτερικό Προϊόν" -#: src/pages/company/ManufacturerPartDetail.tsx:112 +#: src/pages/company/ManufacturerPartDetail.tsx:111 msgid "Manufacturer Part Number" -msgstr "" +msgstr "Κωδικός Προϊόντος Κατασκευαστή" -#: src/pages/company/ManufacturerPartDetail.tsx:129 -#: src/pages/company/SupplierPartDetail.tsx:113 +#: src/pages/company/ManufacturerPartDetail.tsx:128 +#: src/pages/company/SupplierPartDetail.tsx:114 msgid "External Link" -msgstr "" +msgstr "Εξωτερικός Σύνδεσμος" -#: src/pages/company/ManufacturerPartDetail.tsx:148 -#: src/pages/company/SupplierPartDetail.tsx:232 +#: src/pages/company/ManufacturerPartDetail.tsx:147 +#: src/pages/company/SupplierPartDetail.tsx:233 #: src/pages/part/PartDetail.tsx:787 msgid "Part Details" -msgstr "" +msgstr "Στοιχεία Προϊόντος" -#: src/pages/company/ManufacturerPartDetail.tsx:151 +#: src/pages/company/ManufacturerPartDetail.tsx:150 msgid "Manufacturer Details" -msgstr "" +msgstr "Στοιχεία Κατασκευαστή" -#: src/pages/company/ManufacturerPartDetail.tsx:160 +#: src/pages/company/ManufacturerPartDetail.tsx:159 msgid "Manufacturer Part Details" -msgstr "" +msgstr "Στοιχεία Προϊόντος Κατασκευαστή" -#: src/pages/company/ManufacturerPartDetail.tsx:178 -#: src/pages/company/SupplierPartDetail.tsx:252 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:381 +#: src/pages/company/ManufacturerPartDetail.tsx:165 +#: src/pages/company/SupplierPartDetail.tsx:253 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:382 msgid "Received Stock" -msgstr "" +msgstr "Παραληφθέν Απόθεμα" -#: src/pages/company/ManufacturerPartDetail.tsx:220 +#: src/pages/company/ManufacturerPartDetail.tsx:211 #: src/tables/purchasing/ManufacturerPartTable.tsx:108 msgid "Edit Manufacturer Part" -msgstr "" +msgstr "Επεξεργασία Προϊόντος Κατασκευαστή" -#: src/pages/company/ManufacturerPartDetail.tsx:227 +#: src/pages/company/ManufacturerPartDetail.tsx:218 #: src/tables/purchasing/ManufacturerPartTable.tsx:96 #: src/tables/purchasing/ManufacturerPartTable.tsx:115 #: src/tables/purchasing/ManufacturerPartTable.tsx:156 msgid "Add Manufacturer Part" -msgstr "" +msgstr "Προσθήκη Προϊόντος Κατασκευαστή" -#: src/pages/company/ManufacturerPartDetail.tsx:239 +#: src/pages/company/ManufacturerPartDetail.tsx:230 #: src/tables/purchasing/ManufacturerPartTable.tsx:126 msgid "Delete Manufacturer Part" -msgstr "" +msgstr "Διαγραφή Προϊόντος Κατασκευαστή" -#: src/pages/company/ManufacturerPartDetail.tsx:254 +#: src/pages/company/ManufacturerPartDetail.tsx:245 msgid "Manufacturer Part Actions" -msgstr "" +msgstr "Ενέργειες Προϊόντος Κατασκευαστή" #: src/pages/company/ManufacturerPartDetail.tsx:281 #~ msgid "ManufacturerPart" #~ msgstr "ManufacturerPart" -#: src/pages/company/SupplierPartDetail.tsx:104 +#: src/pages/company/SupplierPartDetail.tsx:105 #: src/tables/part/RelatedPartTable.tsx:82 msgid "Part Description" -msgstr "" +msgstr "Περιγραφή Προϊόντος" -#: src/pages/company/SupplierPartDetail.tsx:179 +#: src/pages/company/SupplierPartDetail.tsx:180 #: src/tables/part/PartPurchaseOrdersTable.tsx:73 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:191 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:233 #: src/tables/purchasing/SupplierPartTable.tsx:138 msgid "Pack Quantity" -msgstr "" +msgstr "Ποσότητα Συσκευασίας" -#: src/pages/company/SupplierPartDetail.tsx:204 +#: src/pages/company/SupplierPartDetail.tsx:205 msgid "Supplier Availability" -msgstr "" +msgstr "Διαθεσιμότητα Προμηθευτή" -#: src/pages/company/SupplierPartDetail.tsx:212 +#: src/pages/company/SupplierPartDetail.tsx:213 msgid "Availability Updated" -msgstr "" +msgstr "Η Διαθεσιμότητα Ενημερώθηκε" -#: src/pages/company/SupplierPartDetail.tsx:237 +#: src/pages/company/SupplierPartDetail.tsx:238 msgid "Availability" -msgstr "" +msgstr "Διαθεσιμότητα" -#: src/pages/company/SupplierPartDetail.tsx:246 +#: src/pages/company/SupplierPartDetail.tsx:247 msgid "Supplier Part Details" -msgstr "" +msgstr "Στοιχεία Προϊόντος Προμηθευτή" -#: src/pages/company/SupplierPartDetail.tsx:279 +#: src/pages/company/SupplierPartDetail.tsx:280 #: src/pages/part/PartPricingPanel.tsx:113 #: src/pages/part/pricing/PricingOverviewPanel.tsx:239 msgid "Supplier Pricing" -msgstr "" +msgstr "Τιμολόγηση Προμηθευτή" -#: src/pages/company/SupplierPartDetail.tsx:308 +#: src/pages/company/SupplierPartDetail.tsx:313 msgid "Supplier Part Actions" -msgstr "" +msgstr "Ενέργειες Προϊόντος Προμηθευτή" -#: src/pages/company/SupplierPartDetail.tsx:332 +#: src/pages/company/SupplierPartDetail.tsx:337 #: src/tables/purchasing/SupplierPartTable.tsx:244 msgid "Edit Supplier Part" -msgstr "" +msgstr "Επεξεργασία Προϊόντος Προμηθευτή" -#: src/pages/company/SupplierPartDetail.tsx:340 +#: src/pages/company/SupplierPartDetail.tsx:345 #: src/tables/purchasing/SupplierPartTable.tsx:264 msgid "Delete Supplier Part" -msgstr "" +msgstr "Διαγραφή Προϊόντος Προμηθευτή" -#: src/pages/company/SupplierPartDetail.tsx:348 +#: src/pages/company/SupplierPartDetail.tsx:353 #: src/tables/purchasing/SupplierPartTable.tsx:172 #: src/tables/purchasing/SupplierPartTable.tsx:251 msgid "Add Supplier Part" -msgstr "" +msgstr "Προσθήκη Προϊόντος Προμηθευτή" -#: src/pages/company/SupplierPartDetail.tsx:388 -#: src/pages/part/PartDetail.tsx:1003 +#: src/pages/company/SupplierPartDetail.tsx:393 +#: src/pages/part/PartDetail.tsx:1018 msgid "No Stock" -msgstr "" +msgstr "Χωρίς Απόθεμα" #: src/pages/core/CoreIndex.tsx:46 #: src/pages/core/GroupDetail.tsx:81 #: src/pages/core/UserDetail.tsx:224 msgid "System Overview" -msgstr "" +msgstr "Επισκόπηση Συστήματος" #: src/pages/core/GroupDetail.tsx:45 msgid "Group Name" -msgstr "" +msgstr "Όνομα Ομάδας" #: src/pages/core/GroupDetail.tsx:52 #: src/pages/core/GroupDetail.tsx:67 #: src/tables/settings/GroupTable.tsx:85 msgid "Group Details" -msgstr "" +msgstr "Στοιχεία Ομάδας" #: src/pages/core/GroupDetail.tsx:55 #: src/tables/settings/GroupTable.tsx:112 msgid "Group Roles" -msgstr "" +msgstr "Ρόλοι Ομάδας" #: src/pages/core/UserDetail.tsx:175 #: src/tables/ColumnRenderers.tsx:418 msgid "User Information" -msgstr "" +msgstr "Πληροφορίες Χρήστη" #: src/pages/core/UserDetail.tsx:176 msgid "User Permissions" -msgstr "" +msgstr "Δικαιώματα Χρήστη" #: src/pages/core/UserDetail.tsx:178 msgid "User Profile" -msgstr "" +msgstr "Προφίλ Χρήστη" #: src/pages/core/UserDetail.tsx:188 #: src/tables/settings/UserTable.tsx:164 msgid "User Details" -msgstr "" +msgstr "Στοιχεία Χρήστη" #: src/pages/core/UserDetail.tsx:206 msgid "Basic user" -msgstr "" +msgstr "Βασικός χρήστης" -#: src/pages/part/CategoryDetail.tsx:100 +#: src/pages/part/CategoryDetail.tsx:103 #: src/pages/stock/LocationDetail.tsx:94 #: src/tables/settings/ErrorTable.tsx:63 #: src/tables/settings/ErrorTable.tsx:108 msgid "Path" -msgstr "" +msgstr "Διαδρομή" -#: src/pages/part/CategoryDetail.tsx:116 +#: src/pages/part/CategoryDetail.tsx:119 msgid "Parent Category" -msgstr "" +msgstr "Γονική Κατηγορία" -#: src/pages/part/CategoryDetail.tsx:139 -#: src/pages/part/CategoryDetail.tsx:271 +#: src/pages/part/CategoryDetail.tsx:142 +#: src/pages/part/CategoryDetail.tsx:279 msgid "Subcategories" -msgstr "" +msgstr "Υποκατηγορίες" -#: src/pages/part/CategoryDetail.tsx:146 +#: src/pages/part/CategoryDetail.tsx:149 #: src/pages/stock/LocationDetail.tsx:134 #: src/tables/part/PartCategoryTable.tsx:89 #: src/tables/stock/StockLocationTable.tsx:43 msgid "Structural" -msgstr "" +msgstr "Δομικό" -#: src/pages/part/CategoryDetail.tsx:152 +#: src/pages/part/CategoryDetail.tsx:155 msgid "Parent default location" -msgstr "" +msgstr "Προεπιλεγμένη τοποθεσία γονικής" -#: src/pages/part/CategoryDetail.tsx:159 +#: src/pages/part/CategoryDetail.tsx:162 msgid "Default location" -msgstr "" +msgstr "Προεπιλεγμένη τοποθεσία" -#: src/pages/part/CategoryDetail.tsx:170 +#: src/pages/part/CategoryDetail.tsx:173 msgid "Top level part category" -msgstr "" +msgstr "Κατηγορία Προϊόντων κορυφαίου επιπέδου" -#: src/pages/part/CategoryDetail.tsx:180 -#: src/pages/part/CategoryDetail.tsx:248 +#: src/pages/part/CategoryDetail.tsx:183 +#: src/pages/part/CategoryDetail.tsx:251 #: src/tables/part/PartCategoryTable.tsx:122 msgid "Edit Part Category" -msgstr "" +msgstr "Επεξεργασία Κατηγορίας Προϊόντων" -#: src/pages/part/CategoryDetail.tsx:189 +#: src/pages/part/CategoryDetail.tsx:192 msgid "Move items to parent category" -msgstr "" +msgstr "Μετακίνηση Προϊόντων στη γονική κατηγορία" -#: src/pages/part/CategoryDetail.tsx:193 +#: src/pages/part/CategoryDetail.tsx:196 #: src/pages/stock/LocationDetail.tsx:226 msgid "Delete items" -msgstr "" - -#: src/pages/part/CategoryDetail.tsx:201 -#: src/pages/part/CategoryDetail.tsx:253 -msgid "Delete Part Category" -msgstr "" +msgstr "Διαγραφή Προϊόντων" #: src/pages/part/CategoryDetail.tsx:204 +#: src/pages/part/CategoryDetail.tsx:256 +msgid "Delete Part Category" +msgstr "Διαγραφή Κατηγορίας Προϊόντων" + +#: src/pages/part/CategoryDetail.tsx:207 msgid "Parts Action" -msgstr "" +msgstr "Ενέργεια Προϊόντων" -#: src/pages/part/CategoryDetail.tsx:205 +#: src/pages/part/CategoryDetail.tsx:208 msgid "Action for parts in this category" -msgstr "" +msgstr "Ενέργεια για τα Προϊόντα αυτής της κατηγορίας" -#: src/pages/part/CategoryDetail.tsx:211 +#: src/pages/part/CategoryDetail.tsx:214 msgid "Child Categories Action" -msgstr "" +msgstr "Ενέργεια Υποκατηγοριών" -#: src/pages/part/CategoryDetail.tsx:212 +#: src/pages/part/CategoryDetail.tsx:215 msgid "Action for child categories in this category" -msgstr "" +msgstr "Ενέργεια για τις υποκατηγορίες αυτής της κατηγορίας" -#: src/pages/part/CategoryDetail.tsx:244 +#: src/pages/part/CategoryDetail.tsx:247 #: src/tables/part/PartCategoryTable.tsx:143 msgid "Category Actions" -msgstr "" +msgstr "Ενέργειες Κατηγορίας" -#: src/pages/part/CategoryDetail.tsx:265 +#: src/pages/part/CategoryDetail.tsx:273 msgid "Category Details" -msgstr "" +msgstr "Στοιχεία Κατηγορίας" #: src/pages/part/PartAllocationPanel.tsx:21 #: src/pages/stock/StockDetail.tsx:555 #: src/tables/part/PartTable.tsx:121 msgid "Build Order Allocations" -msgstr "" +msgstr "Κατανομές Εντολών Κατασκευής" #: src/pages/part/PartAllocationPanel.tsx:31 #: src/pages/stock/StockDetail.tsx:570 #: src/tables/part/PartTable.tsx:129 msgid "Sales Order Allocations" -msgstr "" +msgstr "Κατανομές Παραγγελιών Πώλησης" #: src/pages/part/PartDetail.tsx:180 #: src/pages/part/PartDetail.tsx:183 #: src/pages/part/PartDetail.tsx:227 msgid "Validate BOM" -msgstr "" +msgstr "Έλεγχος BOM" #: src/pages/part/PartDetail.tsx:184 msgid "Do you want to validate the bill of materials for this assembly?" -msgstr "" +msgstr "Θέλετε να επικυρώσετε το BOM για αυτό το συναρμολόγημα;" #: src/pages/part/PartDetail.tsx:187 msgid "Bill of materials scheduled for validation" -msgstr "" +msgstr "Το BOM προγραμματίστηκε για επικύρωση" #: src/pages/part/PartDetail.tsx:187 #~ msgid "BOM validated" @@ -7523,32 +7607,32 @@ msgstr "" #: src/pages/part/PartDetail.tsx:205 msgid "BOM Validated" -msgstr "" +msgstr "Το BOM Επικυρώθηκε" #: src/pages/part/PartDetail.tsx:206 msgid "The Bill of Materials for this part has been validated" -msgstr "" +msgstr "Το BOM για αυτό το Προϊόν έχει επικυρωθεί" #: src/pages/part/PartDetail.tsx:210 #: src/pages/part/PartDetail.tsx:215 msgid "BOM Not Validated" -msgstr "" +msgstr "Το BOM Δεν Έχει Επικυρωθεί" #: src/pages/part/PartDetail.tsx:211 msgid "The Bill of Materials for this part has previously been checked, but requires revalidation" -msgstr "" +msgstr "Το BOM για αυτό το Προϊόν έχει ελεγχθεί παλαιότερα, αλλά απαιτεί επανεπικύρωση" #: src/pages/part/PartDetail.tsx:216 msgid "The Bill of Materials for this part has not yet been validated" -msgstr "" +msgstr "Το BOM για αυτό το Προϊόν δεν έχει επικυρωθεί ακόμη" #: src/pages/part/PartDetail.tsx:247 msgid "Validated On" -msgstr "" +msgstr "Επικυρώθηκε Στις" #: src/pages/part/PartDetail.tsx:252 msgid "Validated By" -msgstr "" +msgstr "Επικυρώθηκε Από" #: src/pages/part/PartDetail.tsx:286 #~ msgid "Variant Stock" @@ -7568,26 +7652,25 @@ msgstr "" #: src/pages/part/PartDetail.tsx:466 msgid "Variant of" -msgstr "" +msgstr "Παραλλαγή του" #: src/pages/part/PartDetail.tsx:473 msgid "Revision of" -msgstr "" +msgstr "Αναθεώρηση του" #: src/pages/part/PartDetail.tsx:493 #: src/tables/ColumnRenderers.tsx:209 #: src/tables/ColumnRenderers.tsx:218 msgid "Default Location" -msgstr "" +msgstr "Προεπιλεγμένη Τοποθεσία" #: src/pages/part/PartDetail.tsx:500 msgid "Category Default Location" -msgstr "" +msgstr "Προεπιλεγμένη Τοποθεσία Κατηγορίας" #: src/pages/part/PartDetail.tsx:507 -#: src/tables/purchasing/ManufacturerPartParameterTable.tsx:48 msgid "Units" -msgstr "" +msgstr "Μονάδες" #: src/pages/part/PartDetail.tsx:510 #~ msgid "Stocktake By" @@ -7596,156 +7679,167 @@ msgstr "" #: src/pages/part/PartDetail.tsx:514 #: src/tables/settings/PendingTasksTable.tsx:51 msgid "Keywords" -msgstr "" +msgstr "Λέξεις-Κλειδιά" #: src/pages/part/PartDetail.tsx:542 #: src/tables/bom/BomTable.tsx:439 -#: src/tables/build/BuildLineTable.tsx:305 +#: src/tables/build/BuildLineTable.tsx:306 #: src/tables/part/PartTable.tsx:319 #: src/tables/sales/SalesOrderLineItemTable.tsx:138 msgid "Available Stock" -msgstr "" +msgstr "Διαθέσιμο Απόθεμα" #: src/pages/part/PartDetail.tsx:548 #: src/tables/bom/BomTable.tsx:341 -#: src/tables/build/BuildLineTable.tsx:267 +#: src/tables/build/BuildLineTable.tsx:268 #: src/tables/sales/SalesOrderLineItemTable.tsx:180 msgid "On order" -msgstr "" +msgstr "Σε παραγγελία" #: src/pages/part/PartDetail.tsx:555 msgid "Required for Orders" -msgstr "" +msgstr "Απαιτείται για Παραγγελίες" #: src/pages/part/PartDetail.tsx:566 msgid "Allocated to Build Orders" -msgstr "" +msgstr "Δεσμευμένο για Εντολές Κατασκευής" #: src/pages/part/PartDetail.tsx:578 msgid "Allocated to Sales Orders" -msgstr "" +msgstr "Δεσμευμένο για Παραγγελίες Πώλησης" #: src/pages/part/PartDetail.tsx:605 msgid "Minimum Stock" -msgstr "" +msgstr "Ελάχιστο Απόθεμα" #: src/pages/part/PartDetail.tsx:613 #~ msgid "Scheduling" #~ msgstr "Scheduling" #: src/pages/part/PartDetail.tsx:620 -#: src/tables/part/ParametricPartTable.tsx:359 +#: src/tables/part/ParametricPartTable.tsx:24 #: src/tables/part/PartTable.tsx:203 msgid "Locked" -msgstr "" +msgstr "Κλειδωμένο" #: src/pages/part/PartDetail.tsx:626 msgid "Template Part" -msgstr "" +msgstr "Πρότυπο Προϊόν" #: src/pages/part/PartDetail.tsx:631 #: src/tables/bom/BomTable.tsx:429 msgid "Assembled Part" -msgstr "" +msgstr "Συναρμολογημένο Προϊόν" #: src/pages/part/PartDetail.tsx:636 msgid "Component Part" -msgstr "" +msgstr "Προϊόν Συστατικού" #: src/pages/part/PartDetail.tsx:641 #: src/tables/bom/BomTable.tsx:419 msgid "Testable Part" -msgstr "" +msgstr "Ελέγξιμο Προϊόν" #: src/pages/part/PartDetail.tsx:647 #: src/tables/bom/BomTable.tsx:424 msgid "Trackable Part" -msgstr "" +msgstr "Ανιχνεύσιμο Προϊόν" #: src/pages/part/PartDetail.tsx:652 msgid "Purchaseable Part" -msgstr "" +msgstr "Αγοράσιμο Προϊόν" #: src/pages/part/PartDetail.tsx:658 msgid "Saleable Part" -msgstr "" +msgstr "Πωλήσιμο Προϊόν" #: src/pages/part/PartDetail.tsx:663 -#: src/pages/part/PartDetail.tsx:1033 +#: src/pages/part/PartDetail.tsx:1054 #: src/tables/bom/BomTable.tsx:150 #: src/tables/bom/BomTable.tsx:434 msgid "Virtual Part" -msgstr "" +msgstr "Εικονικό Προϊόν" #: src/pages/part/PartDetail.tsx:678 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:271 -#: src/pages/sales/ReturnOrderDetail.tsx:249 -#: src/pages/sales/SalesOrderDetail.tsx:242 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:272 +#: src/pages/sales/ReturnOrderDetail.tsx:250 +#: src/pages/sales/SalesOrderDetail.tsx:243 #: src/tables/ColumnRenderers.tsx:502 msgid "Creation Date" -msgstr "" +msgstr "Ημερομηνία Δημιουργίας" #: src/pages/part/PartDetail.tsx:683 #: src/tables/ColumnRenderers.tsx:435 #: src/tables/Filter.tsx:373 msgid "Created By" -msgstr "" +msgstr "Δημιουργήθηκε Από" #: src/pages/part/PartDetail.tsx:698 msgid "Default Supplier" -msgstr "" +msgstr "Προεπιλεγμένος Προμηθευτής" #: src/pages/part/PartDetail.tsx:704 msgid "Default Expiry" -msgstr "" +msgstr "Προεπιλεγμένη Λήξη" #: src/pages/part/PartDetail.tsx:709 msgid "days" -msgstr "" +msgstr "ημέρες" #: src/pages/part/PartDetail.tsx:719 #: src/pages/part/pricing/BomPricingPanel.tsx:79 #: src/pages/part/pricing/VariantPricingPanel.tsx:95 #: src/tables/part/PartTable.tsx:179 msgid "Price Range" -msgstr "" +msgstr "Εύρος Τιμής" #: src/pages/part/PartDetail.tsx:729 msgid "Latest Serial Number" -msgstr "" +msgstr "Τελευταίος Σειριακός Αριθμός" #: src/pages/part/PartDetail.tsx:757 msgid "Select Part Revision" -msgstr "" +msgstr "Επιλογή Αναθεώρησης Προϊόντος" -#: src/pages/part/PartDetail.tsx:823 +#: src/pages/part/PartDetail.tsx:812 msgid "Variants" -msgstr "" +msgstr "Παραλλαγές" -#: src/pages/part/PartDetail.tsx:830 +#: src/pages/part/PartDetail.tsx:819 #: src/pages/stock/StockDetail.tsx:542 msgid "Allocations" -msgstr "" +msgstr "Δεσμεύσεις" -#: src/pages/part/PartDetail.tsx:837 +#: src/pages/part/PartDetail.tsx:826 msgid "Bill of Materials" -msgstr "" +msgstr "Κατάλογος Υλικών (BOM)" -#: src/pages/part/PartDetail.tsx:849 +#: src/pages/part/PartDetail.tsx:838 msgid "Used In" -msgstr "" +msgstr "Χρησιμοποιείται Σε" -#: src/pages/part/PartDetail.tsx:856 +#: src/pages/part/PartDetail.tsx:845 msgid "Part Pricing" -msgstr "" +msgstr "Τιμολόγηση Προϊόντος" -#: src/pages/part/PartDetail.tsx:926 +#: src/pages/part/PartDetail.tsx:915 msgid "Test Templates" -msgstr "" +msgstr "Πρότυπα Δοκιμών" -#: src/pages/part/PartDetail.tsx:948 +#: src/pages/part/PartDetail.tsx:937 msgid "Related Parts" -msgstr "" +msgstr "Σχετικά Προϊόντα" + +#: src/pages/part/PartDetail.tsx:949 +#: src/tables/ColumnRenderers.tsx:73 +#: src/tables/bom/BomTable.tsx:657 +#: src/tables/part/PartTestTemplateTable.tsx:258 +msgid "Part is Locked" +msgstr "Το Προϊόν είναι Κλειδωμένο" + +#: src/pages/part/PartDetail.tsx:954 +msgid "Part parameters cannot be edited, as the part is locked" +msgstr "Οι παράμετροι προϊόντος δεν μπορούν να επεξεργαστούν επειδή το προϊόν είναι κλειδωμένο" #: src/pages/part/PartDetail.tsx:956 #~ msgid "Count part stock" @@ -7755,45 +7849,49 @@ msgstr "" #~ msgid "Transfer part stock" #~ msgstr "Transfer part stock" -#: src/pages/part/PartDetail.tsx:1009 +#: src/pages/part/PartDetail.tsx:1024 #: src/tables/part/PartTestTemplateTable.tsx:112 #: src/tables/stock/StockItemTestResultTable.tsx:404 msgid "Required" +msgstr "Απαιτείται" + +#: src/pages/part/PartDetail.tsx:1042 +msgid "Deficit" msgstr "" -#: src/pages/part/PartDetail.tsx:1058 +#: src/pages/part/PartDetail.tsx:1079 #: src/tables/part/PartTable.tsx:396 #: src/tables/part/PartTable.tsx:449 msgid "Add Part" -msgstr "" +msgstr "Προσθήκη Προϊόντος" -#: src/pages/part/PartDetail.tsx:1072 +#: src/pages/part/PartDetail.tsx:1093 msgid "Delete Part" -msgstr "" +msgstr "Διαγραφή Προϊόντος" -#: src/pages/part/PartDetail.tsx:1081 +#: src/pages/part/PartDetail.tsx:1102 msgid "Deleting this part cannot be reversed" -msgstr "" - -#: src/pages/part/PartDetail.tsx:1143 -#: src/pages/stock/StockDetail.tsx:883 -msgid "Order" -msgstr "" - -#: src/pages/part/PartDetail.tsx:1144 -#: src/pages/stock/StockDetail.tsx:884 -#: src/tables/build/BuildLineTable.tsx:761 -msgid "Order Stock" -msgstr "" - -#: src/pages/part/PartDetail.tsx:1156 -msgid "Search by serial number" -msgstr "" +msgstr "Η διαγραφή αυτού του Προϊόντος δεν μπορεί να αναιρεθεί" #: src/pages/part/PartDetail.tsx:1164 +#: src/pages/stock/StockDetail.tsx:883 +msgid "Order" +msgstr "Παραγγελία" + +#: src/pages/part/PartDetail.tsx:1165 +#: src/pages/stock/StockDetail.tsx:884 +#: src/tables/build/BuildLineTable.tsx:768 +msgid "Order Stock" +msgstr "Παραγγελία Αποθέματος" + +#: src/pages/part/PartDetail.tsx:1177 +msgid "Search by serial number" +msgstr "Αναζήτηση με σειριακό αριθμό" + +#: src/pages/part/PartDetail.tsx:1185 #: src/tables/part/PartTable.tsx:506 msgid "Part Actions" -msgstr "" +msgstr "Ενέργειες Προϊόντος" #: src/pages/part/PartIndex.tsx:29 #~ msgid "Categories" @@ -7801,41 +7899,41 @@ msgstr "" #: src/pages/part/PartPricingPanel.tsx:72 msgid "No pricing data found for this part." -msgstr "" +msgstr "Δεν βρέθηκαν δεδομένα τιμολόγησης για αυτό το Προϊόν." #: src/pages/part/PartPricingPanel.tsx:87 #: src/pages/part/pricing/PricingOverviewPanel.tsx:332 msgid "Pricing Overview" -msgstr "" +msgstr "Επισκόπηση Τιμολόγησης" #: src/pages/part/PartPricingPanel.tsx:93 msgid "Purchase History" -msgstr "" +msgstr "Ιστορικό Αγορών" #: src/pages/part/PartPricingPanel.tsx:107 #: src/pages/part/pricing/PricingOverviewPanel.tsx:211 msgid "Internal Pricing" -msgstr "" +msgstr "Εσωτερική Τιμολόγηση" #: src/pages/part/PartPricingPanel.tsx:122 #: src/pages/part/pricing/PricingOverviewPanel.tsx:221 msgid "BOM Pricing" -msgstr "" +msgstr "Τιμολόγηση BOM" #: src/pages/part/PartPricingPanel.tsx:129 #: src/pages/part/pricing/PricingOverviewPanel.tsx:249 msgid "Variant Pricing" -msgstr "" +msgstr "Τιμολόγηση Παραλλαγών" #: src/pages/part/PartPricingPanel.tsx:141 #: src/pages/part/pricing/PricingOverviewPanel.tsx:258 msgid "Sale Pricing" -msgstr "" +msgstr "Τιμολόγηση Πώλησης" #: src/pages/part/PartPricingPanel.tsx:147 #: src/pages/part/pricing/PricingOverviewPanel.tsx:267 msgid "Sale History" -msgstr "" +msgstr "Ιστορικό Πωλήσεων" #: src/pages/part/PartSchedulingDetail.tsx:51 #: src/pages/part/PartSchedulingDetail.tsx:291 @@ -7872,28 +7970,28 @@ msgstr "" #: src/pages/part/PartStockHistoryDetail.tsx:80 msgid "Edit Stocktake Entry" -msgstr "" +msgstr "Επεξεργασία Καταχώρησης Απογραφής" #: src/pages/part/PartStockHistoryDetail.tsx:88 msgid "Delete Stocktake Entry" -msgstr "" +msgstr "Διαγραφή Καταχώρησης Απογραφής" #: src/pages/part/PartStockHistoryDetail.tsx:107 #: src/pages/part/PartStockHistoryDetail.tsx:211 #: src/pages/stock/StockDetail.tsx:402 #: src/tables/stock/StockItemTable.tsx:271 msgid "Stock Value" -msgstr "" +msgstr "Αξία Αποθέματος" #: src/pages/part/PartStockHistoryDetail.tsx:240 #: src/pages/part/pricing/PricingOverviewPanel.tsx:334 msgid "Minimum Value" -msgstr "" +msgstr "Ελάχιστη Αξία" #: src/pages/part/PartStockHistoryDetail.tsx:246 #: src/pages/part/pricing/PricingOverviewPanel.tsx:335 msgid "Maximum Value" -msgstr "" +msgstr "Μέγιστη Αξία" #: src/pages/part/PartStocktakeDetail.tsx:99 #: src/tables/settings/StocktakeReportTable.tsx:70 @@ -7921,26 +8019,26 @@ msgstr "" #: src/tables/sales/SalesOrderLineItemTable.tsx:124 #: src/tables/sales/SalesOrderTable.tsx:175 msgid "Total Price" -msgstr "" +msgstr "Συνολική Τιμή" #: src/pages/part/pricing/BomPricingPanel.tsx:78 #: src/pages/part/pricing/BomPricingPanel.tsx:102 #: src/tables/bom/UsedInTable.tsx:54 #: src/tables/part/PartTable.tsx:227 msgid "Component" -msgstr "" +msgstr "Συστατικό" #: src/pages/part/pricing/BomPricingPanel.tsx:81 #: src/pages/part/pricing/VariantPricingPanel.tsx:35 #: src/pages/part/pricing/VariantPricingPanel.tsx:97 msgid "Minimum Price" -msgstr "" +msgstr "Ελάχιστη Τιμή" #: src/pages/part/pricing/BomPricingPanel.tsx:82 #: src/pages/part/pricing/VariantPricingPanel.tsx:43 #: src/pages/part/pricing/VariantPricingPanel.tsx:98 msgid "Maximum Price" -msgstr "" +msgstr "Μέγιστη Τιμή" #: src/pages/part/pricing/BomPricingPanel.tsx:112 #~ msgid "Minimum Total Price" @@ -7962,131 +8060,131 @@ msgstr "" #: src/tables/purchasing/SupplierPriceBreakTable.tsx:84 #: src/tables/stock/StockItemTable.tsx:259 msgid "Unit Price" -msgstr "" +msgstr "Τιμή Μονάδας" #: src/pages/part/pricing/BomPricingPanel.tsx:217 msgid "Pie Chart" -msgstr "" +msgstr "Γράφημα Πίτας" #: src/pages/part/pricing/BomPricingPanel.tsx:218 msgid "Bar Chart" -msgstr "" +msgstr "Ραβδόγραμμα" #: src/pages/part/pricing/PriceBreakPanel.tsx:58 #: src/pages/part/pricing/PriceBreakPanel.tsx:111 #: src/tables/purchasing/SupplierPriceBreakTable.tsx:134 #: src/tables/purchasing/SupplierPriceBreakTable.tsx:162 msgid "Add Price Break" -msgstr "" +msgstr "Προσθήκη Κλίμακας Τιμής" #: src/pages/part/pricing/PriceBreakPanel.tsx:71 #: src/tables/purchasing/SupplierPriceBreakTable.tsx:146 msgid "Edit Price Break" -msgstr "" +msgstr "Επεξεργασία Κλίμακας Τιμής" #: src/pages/part/pricing/PriceBreakPanel.tsx:81 #: src/tables/purchasing/SupplierPriceBreakTable.tsx:154 msgid "Delete Price Break" -msgstr "" +msgstr "Διαγραφή Κλίμακας Τιμής" #: src/pages/part/pricing/PriceBreakPanel.tsx:95 msgid "Price Break" -msgstr "" +msgstr "Κλίμακα Τιμής" #: src/pages/part/pricing/PriceBreakPanel.tsx:171 msgid "Price" -msgstr "" +msgstr "Τιμή" #: src/pages/part/pricing/PricingOverviewPanel.tsx:74 msgid "Refreshing pricing data" -msgstr "" +msgstr "Ανανέωση δεδομένων τιμολόγησης" #: src/pages/part/pricing/PricingOverviewPanel.tsx:94 msgid "Pricing data updated" -msgstr "" +msgstr "Τα δεδομένα τιμολόγησης ενημερώθηκαν" #: src/pages/part/pricing/PricingOverviewPanel.tsx:101 msgid "Failed to update pricing data" -msgstr "" +msgstr "Αποτυχία ενημέρωσης δεδομένων τιμολόγησης" #: src/pages/part/pricing/PricingOverviewPanel.tsx:129 msgid "Edit Pricing" -msgstr "" +msgstr "Επεξεργασία Τιμολόγησης" #: src/pages/part/pricing/PricingOverviewPanel.tsx:141 msgid "Pricing Category" -msgstr "" +msgstr "Κατηγορία Τιμολόγησης" #: src/pages/part/pricing/PricingOverviewPanel.tsx:160 msgid "Minimum" -msgstr "" +msgstr "Ελάχιστο" #: src/pages/part/pricing/PricingOverviewPanel.tsx:173 msgid "Maximum" -msgstr "" +msgstr "Μέγιστο" #: src/pages/part/pricing/PricingOverviewPanel.tsx:192 msgid "Override Pricing" -msgstr "" +msgstr "Παράκαμψη Τιμολόγησης" #: src/pages/part/pricing/PricingOverviewPanel.tsx:203 msgid "Overall Pricing" -msgstr "" +msgstr "Συνολική Τιμολόγηση" #: src/pages/part/pricing/PricingOverviewPanel.tsx:229 msgid "Purchase Pricing" -msgstr "" +msgstr "Τιμολόγηση Αγορών" #: src/pages/part/pricing/PricingOverviewPanel.tsx:288 #: src/pages/stock/StockDetail.tsx:426 -#: src/tables/part/PartParameterTable.tsx:121 +#: src/tables/general/ParameterTable.tsx:101 #: src/tables/stock/StockItemTable.tsx:300 msgid "Last Updated" -msgstr "" +msgstr "Τελευταία Ενημέρωση" #: src/pages/part/pricing/PricingOverviewPanel.tsx:292 msgid "Pricing Not Set" -msgstr "" +msgstr "Η Τιμολόγηση Δεν Έχει Οριστεί" #: src/pages/part/pricing/PricingOverviewPanel.tsx:293 msgid "Pricing data has not been calculated for this part" -msgstr "" +msgstr "Τα δεδομένα τιμολόγησης δεν έχουν υπολογιστεί για αυτό το Προϊόν" #: src/pages/part/pricing/PricingOverviewPanel.tsx:297 msgid "Pricing Actions" -msgstr "" +msgstr "Ενέργειες Τιμολόγησης" #: src/pages/part/pricing/PricingOverviewPanel.tsx:300 msgid "Refresh" -msgstr "" +msgstr "Ανανέωση" #: src/pages/part/pricing/PricingOverviewPanel.tsx:301 msgid "Refresh pricing data" -msgstr "" +msgstr "Ανανέωση δεδομένων τιμολόγησης" #: src/pages/part/pricing/PricingOverviewPanel.tsx:316 msgid "Edit pricing data" -msgstr "" +msgstr "Επεξεργασία δεδομένων τιμολόγησης" #: src/pages/part/pricing/PricingPanel.tsx:24 msgid "No data available" -msgstr "" +msgstr "Δεν υπάρχουν διαθέσιμα δεδομένα" #: src/pages/part/pricing/PricingPanel.tsx:65 msgid "No Data" -msgstr "" +msgstr "Χωρίς Δεδομένα" #: src/pages/part/pricing/PricingPanel.tsx:66 msgid "No pricing data available" -msgstr "" +msgstr "Δεν υπάρχουν διαθέσιμα δεδομένα τιμολόγησης" #: src/pages/part/pricing/PricingPanel.tsx:77 msgid "Loading pricing data" -msgstr "" +msgstr "Φόρτωση δεδομένων τιμολόγησης" #: src/pages/part/pricing/PurchaseHistoryPanel.tsx:48 msgid "Purchase Price" -msgstr "" +msgstr "Τιμή Αγοράς" #: src/pages/part/pricing/SaleHistoryPanel.tsx:24 #~ msgid "Sale Order" @@ -8095,31 +8193,31 @@ msgstr "" #: src/pages/part/pricing/SaleHistoryPanel.tsx:44 #: src/pages/part/pricing/SaleHistoryPanel.tsx:87 msgid "Sale Price" -msgstr "" +msgstr "Τιμή Πώλησης" #: src/pages/part/pricing/SupplierPricingPanel.tsx:69 #: src/tables/purchasing/SupplierPriceBreakTable.tsx:75 msgid "Supplier Price" -msgstr "" +msgstr "Τιμή Προμηθευτή" #: src/pages/part/pricing/VariantPricingPanel.tsx:29 #: src/pages/part/pricing/VariantPricingPanel.tsx:94 msgid "Variant Part" -msgstr "" +msgstr "Παραλλαγή Προϊόντος" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:89 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:90 msgid "Edit Purchase Order" -msgstr "" +msgstr "Επεξεργασία Εντολής Αγοράς" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:125 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:126 #: src/tables/purchasing/PurchaseOrderTable.tsx:154 #: src/tables/purchasing/PurchaseOrderTable.tsx:167 msgid "Add Purchase Order" -msgstr "" +msgstr "Προσθήκη Εντολής Αγοράς" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:147 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:148 msgid "Supplier Reference" -msgstr "" +msgstr "Αναφορά Προμηθευτή" #: src/pages/purchasing/PurchaseOrderDetail.tsx:159 #: src/pages/sales/ReturnOrderDetail.tsx:126 @@ -8127,22 +8225,22 @@ msgstr "" #~ msgid "Order Currency," #~ msgstr "Order Currency," -#: src/pages/purchasing/PurchaseOrderDetail.tsx:187 -#: src/pages/sales/ReturnOrderDetail.tsx:160 -#: src/pages/sales/SalesOrderDetail.tsx:144 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:188 +#: src/pages/sales/ReturnOrderDetail.tsx:161 +#: src/pages/sales/SalesOrderDetail.tsx:145 msgid "Completed Line Items" -msgstr "" +msgstr "Ολοκληρωμένες Γραμμές Είδους" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:196 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:197 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:272 msgid "Destination" -msgstr "" +msgstr "Προορισμός" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:202 -#: src/pages/sales/ReturnOrderDetail.tsx:167 -#: src/pages/sales/SalesOrderDetail.tsx:161 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:203 +#: src/pages/sales/ReturnOrderDetail.tsx:168 +#: src/pages/sales/SalesOrderDetail.tsx:162 msgid "Order Currency" -msgstr "" +msgstr "Νόμισμα Παραγγελίας" #: src/pages/purchasing/PurchaseOrderDetail.tsx:207 #: src/pages/sales/ReturnOrderDetail.tsx:183 @@ -8150,375 +8248,349 @@ msgstr "" #~ msgid "Created On" #~ msgstr "Created On" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:208 -#: src/pages/sales/ReturnOrderDetail.tsx:174 -#: src/pages/sales/SalesOrderDetail.tsx:167 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:209 +#: src/pages/sales/ReturnOrderDetail.tsx:175 +#: src/pages/sales/SalesOrderDetail.tsx:168 msgid "Total Cost" -msgstr "" +msgstr "Συνολικό Κόστος" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:237 -#: src/pages/sales/ReturnOrderDetail.tsx:215 -#: src/pages/sales/SalesOrderDetail.tsx:208 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:238 +#: src/pages/sales/ReturnOrderDetail.tsx:216 +#: src/pages/sales/SalesOrderDetail.tsx:209 msgid "Contact Email" -msgstr "" +msgstr "Email Επικοινωνίας" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:245 -#: src/pages/sales/ReturnOrderDetail.tsx:223 -#: src/pages/sales/SalesOrderDetail.tsx:216 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:246 +#: src/pages/sales/ReturnOrderDetail.tsx:224 +#: src/pages/sales/SalesOrderDetail.tsx:217 msgid "Contact Phone" -msgstr "" +msgstr "Τηλέφωνο Επικοινωνίας" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:278 -#: src/pages/sales/ReturnOrderDetail.tsx:257 -#: src/pages/sales/SalesOrderDetail.tsx:249 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:279 +#: src/pages/sales/ReturnOrderDetail.tsx:258 +#: src/pages/sales/SalesOrderDetail.tsx:250 msgid "Issue Date" -msgstr "" +msgstr "Ημερομηνία Έκδοσης" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:303 -#: src/pages/sales/ReturnOrderDetail.tsx:281 -#: src/pages/sales/SalesOrderDetail.tsx:272 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:304 +#: src/pages/sales/ReturnOrderDetail.tsx:282 +#: src/pages/sales/SalesOrderDetail.tsx:273 #: src/tables/ColumnRenderers.tsx:510 #: src/tables/build/BuildOrderTable.tsx:137 #: src/tables/part/PartPurchaseOrdersTable.tsx:106 msgid "Completion Date" -msgstr "" +msgstr "Ημερομηνία Ολοκλήρωσης" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:333 -#: src/pages/sales/ReturnOrderDetail.tsx:311 -#: src/pages/sales/SalesOrderDetail.tsx:349 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:334 +#: src/pages/sales/ReturnOrderDetail.tsx:312 +#: src/pages/sales/SalesOrderDetail.tsx:350 msgid "Order Details" -msgstr "" +msgstr "Λεπτομέρειες Παραγγελίας" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:339 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:348 -#: src/pages/sales/ReturnOrderDetail.tsx:153 -#: src/pages/sales/ReturnOrderDetail.tsx:317 -#: src/pages/sales/ReturnOrderDetail.tsx:326 -#: src/pages/sales/SalesOrderDetail.tsx:355 -#: src/pages/sales/SalesOrderDetail.tsx:364 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:340 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:349 +#: src/pages/sales/ReturnOrderDetail.tsx:154 +#: src/pages/sales/ReturnOrderDetail.tsx:318 +#: src/pages/sales/ReturnOrderDetail.tsx:327 +#: src/pages/sales/SalesOrderDetail.tsx:356 +#: src/pages/sales/SalesOrderDetail.tsx:365 msgid "Line Items" -msgstr "" +msgstr "Γραμμές Ειδών" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:363 -#: src/pages/sales/ReturnOrderDetail.tsx:341 -#: src/pages/sales/SalesOrderDetail.tsx:378 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:364 +#: src/pages/sales/ReturnOrderDetail.tsx:342 +#: src/pages/sales/SalesOrderDetail.tsx:379 msgid "Extra Line Items" -msgstr "" +msgstr "Επιπλέον Γραμμές Ειδών" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:405 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:410 msgid "Issue Purchase Order" -msgstr "" +msgstr "Έκδοση Εντολής Αγοράς" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:413 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:418 msgid "Cancel Purchase Order" -msgstr "" +msgstr "Ακύρωση Εντολής Αγοράς" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:421 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:426 msgid "Hold Purchase Order" -msgstr "" +msgstr "Παύση Εντολής Αγοράς" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:429 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:434 msgid "Complete Purchase Order" -msgstr "" +msgstr "Ολοκλήρωση Εντολής Αγοράς" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:485 -#: src/pages/sales/ReturnOrderDetail.tsx:496 -#: src/pages/sales/SalesOrderDetail.tsx:549 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:490 +#: src/pages/sales/ReturnOrderDetail.tsx:501 +#: src/pages/sales/SalesOrderDetail.tsx:554 msgid "Order Actions" -msgstr "" +msgstr "Ενέργειες Παραγγελίας" -#: src/pages/sales/ReturnOrderDetail.tsx:114 -#: src/pages/sales/SalesOrderDetail.tsx:104 -#: src/pages/sales/SalesOrderShipmentDetail.tsx:134 +#: src/pages/sales/ReturnOrderDetail.tsx:115 +#: src/pages/sales/SalesOrderDetail.tsx:105 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:132 #: src/tables/sales/SalesOrderTable.tsx:141 msgid "Customer Reference" -msgstr "" +msgstr "Αναφορά Πελάτη" -#: src/pages/sales/ReturnOrderDetail.tsx:195 +#: src/pages/sales/ReturnOrderDetail.tsx:196 msgid "Return Address" -msgstr "" +msgstr "Διεύθυνση Επιστροφής" -#: src/pages/sales/ReturnOrderDetail.tsx:201 -#: src/pages/sales/SalesOrderDetail.tsx:194 -#: src/pages/sales/SalesOrderShipmentDetail.tsx:181 +#: src/pages/sales/ReturnOrderDetail.tsx:202 +#: src/pages/sales/SalesOrderDetail.tsx:195 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:179 msgid "Not specified" -msgstr "" +msgstr "Δεν έχει καθοριστεί" #: src/pages/sales/ReturnOrderDetail.tsx:349 #~ msgid "Order canceled" #~ msgstr "Order canceled" -#: src/pages/sales/ReturnOrderDetail.tsx:389 +#: src/pages/sales/ReturnOrderDetail.tsx:394 msgid "Edit Return Order" -msgstr "" +msgstr "Επεξεργασία Εντολής Επιστροφής" -#: src/pages/sales/ReturnOrderDetail.tsx:407 +#: src/pages/sales/ReturnOrderDetail.tsx:412 #: src/tables/sales/ReturnOrderTable.tsx:154 #: src/tables/sales/ReturnOrderTable.tsx:167 msgid "Add Return Order" -msgstr "" +msgstr "Προσθήκη Εντολής Επιστροφής" -#: src/pages/sales/ReturnOrderDetail.tsx:416 +#: src/pages/sales/ReturnOrderDetail.tsx:421 msgid "Issue Return Order" -msgstr "" +msgstr "Έκδοση Εντολής Επιστροφής" -#: src/pages/sales/ReturnOrderDetail.tsx:424 +#: src/pages/sales/ReturnOrderDetail.tsx:429 msgid "Cancel Return Order" -msgstr "" +msgstr "Ακύρωση Εντολής Επιστροφής" -#: src/pages/sales/ReturnOrderDetail.tsx:432 +#: src/pages/sales/ReturnOrderDetail.tsx:437 msgid "Hold Return Order" -msgstr "" +msgstr "Παύση Εντολής Επιστροφής" -#: src/pages/sales/ReturnOrderDetail.tsx:440 +#: src/pages/sales/ReturnOrderDetail.tsx:445 msgid "Complete Return Order" -msgstr "" +msgstr "Ολοκλήρωση Εντολής Επιστροφής" -#: src/pages/sales/SalesOrderDetail.tsx:153 +#: src/pages/sales/SalesOrderDetail.tsx:154 msgid "Completed Shipments" -msgstr "" +msgstr "Ολοκληρωμένες Αποστολές" -#: src/pages/sales/SalesOrderDetail.tsx:188 -#: src/pages/sales/SalesOrderShipmentDetail.tsx:170 +#: src/pages/sales/SalesOrderDetail.tsx:189 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:168 msgid "Shipping Address" -msgstr "" +msgstr "Διεύθυνση Αποστολής" -#: src/pages/sales/SalesOrderDetail.tsx:316 +#: src/pages/sales/SalesOrderDetail.tsx:317 msgid "Edit Sales Order" -msgstr "" +msgstr "Επεξεργασία Εντολής Πώλησης" -#: src/pages/sales/SalesOrderDetail.tsx:338 +#: src/pages/sales/SalesOrderDetail.tsx:339 #: src/tables/sales/SalesOrderTable.tsx:108 #: src/tables/sales/SalesOrderTable.tsx:121 msgid "Add Sales Order" -msgstr "" +msgstr "Προσθήκη Εντολής Πώλησης" -#: src/pages/sales/SalesOrderDetail.tsx:396 +#: src/pages/sales/SalesOrderDetail.tsx:397 #: src/tables/sales/SalesOrderTable.tsx:147 msgid "Shipments" -msgstr "" +msgstr "Αποστολές" -#: src/pages/sales/SalesOrderDetail.tsx:443 +#: src/pages/sales/SalesOrderDetail.tsx:448 msgid "Issue Sales Order" -msgstr "" +msgstr "Έκδοση Εντολής Πώλησης" -#: src/pages/sales/SalesOrderDetail.tsx:451 +#: src/pages/sales/SalesOrderDetail.tsx:456 msgid "Cancel Sales Order" -msgstr "" +msgstr "Ακύρωση Εντολής Πώλησης" -#: src/pages/sales/SalesOrderDetail.tsx:459 +#: src/pages/sales/SalesOrderDetail.tsx:464 msgid "Hold Sales Order" -msgstr "" +msgstr "Παύση Εντολής Πώλησης" -#: src/pages/sales/SalesOrderDetail.tsx:467 +#: src/pages/sales/SalesOrderDetail.tsx:472 msgid "Ship Sales Order" -msgstr "" +msgstr "Αποστολή Εντολής Πώλησης" -#: src/pages/sales/SalesOrderDetail.tsx:469 +#: src/pages/sales/SalesOrderDetail.tsx:474 msgid "Ship this order?" -msgstr "" +msgstr "Αποστολή αυτής της παραγγελίας;" -#: src/pages/sales/SalesOrderDetail.tsx:470 +#: src/pages/sales/SalesOrderDetail.tsx:475 msgid "Order shipped" -msgstr "" +msgstr "Η παραγγελία αποστάλθηκε" -#: src/pages/sales/SalesOrderDetail.tsx:478 +#: src/pages/sales/SalesOrderDetail.tsx:483 msgid "Complete Sales Order" -msgstr "" +msgstr "Ολοκλήρωση Εντολής Πώλησης" -#: src/pages/sales/SalesOrderDetail.tsx:523 +#: src/pages/sales/SalesOrderDetail.tsx:528 msgid "Ship Order" -msgstr "" +msgstr "Αποστολή Παραγγελίας" -#: src/pages/sales/SalesOrderShipmentDetail.tsx:142 -#: src/tables/sales/SalesOrderShipmentTable.tsx:135 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:140 +#: src/tables/sales/SalesOrderShipmentTable.tsx:156 msgid "Shipment Reference" -msgstr "" +msgstr "Αναφορά Αποστολής" -#: src/pages/sales/SalesOrderShipmentDetail.tsx:148 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:146 msgid "Tracking Number" -msgstr "" +msgstr "Αριθμός Παρακολούθησης" -#: src/pages/sales/SalesOrderShipmentDetail.tsx:156 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:154 msgid "Invoice Number" -msgstr "" +msgstr "Αριθμός Τιμολογίου" -#: src/pages/sales/SalesOrderShipmentDetail.tsx:191 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:189 msgid "Allocated Items" -msgstr "" +msgstr "Δεσμευμένα Είδη" -#: src/pages/sales/SalesOrderShipmentDetail.tsx:196 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:194 msgid "Checked By" -msgstr "" +msgstr "Ελέγχθηκε Από" -#: src/pages/sales/SalesOrderShipmentDetail.tsx:202 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:200 msgid "Not checked" -msgstr "" +msgstr "Δεν ελέγχθηκε" -#: src/pages/sales/SalesOrderShipmentDetail.tsx:208 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:206 #: src/tables/ColumnRenderers.tsx:518 #: src/tables/sales/SalesOrderAllocationTable.tsx:182 -#: src/tables/sales/SalesOrderShipmentTable.tsx:168 +#: src/tables/sales/SalesOrderShipmentTable.tsx:189 msgid "Shipment Date" -msgstr "" +msgstr "Ημερομηνία Αποστολής" #: src/pages/sales/SalesOrderShipmentDetail.tsx:211 #~ msgid "Assigned Items" #~ msgstr "Assigned Items" -#: src/pages/sales/SalesOrderShipmentDetail.tsx:216 -#: src/tables/sales/SalesOrderShipmentTable.tsx:172 -msgid "Delivery Date" -msgstr "" - -#: src/pages/sales/SalesOrderShipmentDetail.tsx:255 -msgid "Shipment Details" -msgstr "" - -#: src/pages/sales/SalesOrderShipmentDetail.tsx:294 -#: src/pages/sales/SalesOrderShipmentDetail.tsx:438 -#: src/tables/sales/SalesOrderShipmentTable.tsx:90 -msgid "Edit Shipment" -msgstr "" - -#: src/pages/sales/SalesOrderShipmentDetail.tsx:301 -#: src/pages/sales/SalesOrderShipmentDetail.tsx:457 -#: src/tables/sales/SalesOrderShipmentTable.tsx:82 -msgid "Cancel Shipment" -msgstr "" - -#: src/pages/sales/SalesOrderShipmentDetail.tsx:314 -#: src/tables/sales/SalesOrderShipmentTable.tsx:98 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:214 #: src/tables/sales/SalesOrderShipmentTable.tsx:193 +msgid "Delivery Date" +msgstr "Ημερομηνία Παράδοσης" + +#: src/pages/sales/SalesOrderShipmentDetail.tsx:253 +msgid "Shipment Details" +msgstr "Λεπτομέρειες Αποστολής" + +#: src/pages/sales/SalesOrderShipmentDetail.tsx:292 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:406 +#: src/tables/sales/SalesOrderShipmentTable.tsx:97 +msgid "Edit Shipment" +msgstr "Επεξεργασία Αποστολής" + +#: src/pages/sales/SalesOrderShipmentDetail.tsx:299 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:425 +#: src/tables/sales/SalesOrderShipmentTable.tsx:89 +msgid "Cancel Shipment" +msgstr "Ακύρωση Αποστολής" + +#: src/pages/sales/SalesOrderShipmentDetail.tsx:312 +#: src/tables/sales/SalesOrderShipmentTable.tsx:119 +#: src/tables/sales/SalesOrderShipmentTable.tsx:238 msgid "Complete Shipment" -msgstr "" - -#: src/pages/sales/SalesOrderShipmentDetail.tsx:326 -#: src/pages/sales/SalesOrderShipmentDetail.tsx:328 -msgid "Check Shipment" -msgstr "" - -#: src/pages/sales/SalesOrderShipmentDetail.tsx:329 -msgid "Marking the shipment as checked indicates that you have verified that all items included in this shipment are correct" -msgstr "" +msgstr "Ολοκλήρωση Αποστολής" #: src/pages/sales/SalesOrderShipmentDetail.tsx:339 -msgid "Shipment marked as checked" -msgstr "" - -#: src/pages/sales/SalesOrderShipmentDetail.tsx:346 -#: src/pages/sales/SalesOrderShipmentDetail.tsx:348 -msgid "Uncheck Shipment" -msgstr "" - -#: src/pages/sales/SalesOrderShipmentDetail.tsx:349 -msgid "Marking the shipment as unchecked indicates that the shipment requires further verification" -msgstr "" - -#: src/pages/sales/SalesOrderShipmentDetail.tsx:359 -msgid "Shipment marked as unchecked" -msgstr "" - -#: src/pages/sales/SalesOrderShipmentDetail.tsx:371 #: src/tables/part/PartPurchaseOrdersTable.tsx:122 msgid "Pending" -msgstr "" +msgstr "Σε εκκρεμότητα" -#: src/pages/sales/SalesOrderShipmentDetail.tsx:377 -#: src/tables/sales/SalesOrderShipmentTable.tsx:147 -#: src/tables/sales/SalesOrderShipmentTable.tsx:254 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:345 +#: src/tables/sales/SalesOrderShipmentTable.tsx:168 +#: src/tables/sales/SalesOrderShipmentTable.tsx:299 msgid "Checked" -msgstr "" +msgstr "Ελεγμένο" -#: src/pages/sales/SalesOrderShipmentDetail.tsx:383 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:351 msgid "Not Checked" -msgstr "" +msgstr "Μη Ελεγμένο" -#: src/pages/sales/SalesOrderShipmentDetail.tsx:389 -#: src/tables/sales/SalesOrderShipmentTable.tsx:154 -#: src/tables/sales/SalesOrderShipmentTable.tsx:259 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:357 +#: src/tables/sales/SalesOrderShipmentTable.tsx:175 +#: src/tables/sales/SalesOrderShipmentTable.tsx:304 msgid "Shipped" -msgstr "" +msgstr "Απεσταλμένο" -#: src/pages/sales/SalesOrderShipmentDetail.tsx:395 -#: src/tables/sales/SalesOrderShipmentTable.tsx:161 -#: src/tables/sales/SalesOrderShipmentTable.tsx:264 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:363 +#: src/tables/sales/SalesOrderShipmentTable.tsx:182 +#: src/tables/sales/SalesOrderShipmentTable.tsx:309 #: src/tables/settings/EmailTable.tsx:31 msgid "Delivered" -msgstr "" +msgstr "Παραδόθηκε" + +#: src/pages/sales/SalesOrderShipmentDetail.tsx:378 +msgid "Send Shipment" +msgstr "Αποστολή Δέματος" + +#: src/pages/sales/SalesOrderShipmentDetail.tsx:401 +msgid "Shipment Actions" +msgstr "Ενέργειες Αποστολής" #: src/pages/sales/SalesOrderShipmentDetail.tsx:410 -msgid "Send Shipment" -msgstr "" - -#: src/pages/sales/SalesOrderShipmentDetail.tsx:433 -msgid "Shipment Actions" -msgstr "" - -#: src/pages/sales/SalesOrderShipmentDetail.tsx:442 msgid "Check" -msgstr "" +msgstr "Έλεγχος" -#: src/pages/sales/SalesOrderShipmentDetail.tsx:443 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:411 msgid "Mark shipment as checked" -msgstr "" +msgstr "Σήμανση αποστολής ως ελεγμένη" -#: src/pages/sales/SalesOrderShipmentDetail.tsx:449 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:417 msgid "Uncheck" -msgstr "" +msgstr "Αναίρεση Ελέγχου" -#: src/pages/sales/SalesOrderShipmentDetail.tsx:450 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:418 msgid "Mark shipment as unchecked" -msgstr "" +msgstr "Σήμανση αποστολής ως μη ελεγμένη" #: src/pages/stock/LocationDetail.tsx:110 msgid "Parent Location" -msgstr "" +msgstr "Μητρική Τοποθεσία" #: src/pages/stock/LocationDetail.tsx:128 #: src/pages/stock/LocationDetail.tsx:174 msgid "Sublocations" -msgstr "" +msgstr "Υποτοποθεσίες" #: src/pages/stock/LocationDetail.tsx:146 #: src/tables/stock/StockLocationTable.tsx:57 msgid "Location Type" -msgstr "" +msgstr "Τύπος Τοποθεσίας" #: src/pages/stock/LocationDetail.tsx:157 msgid "Top level stock location" -msgstr "" +msgstr "Κορυφαία τοποθεσία αποθέματος" #: src/pages/stock/LocationDetail.tsx:168 msgid "Location Details" -msgstr "" +msgstr "Λεπτομέρειες Τοποθεσίας" #: src/pages/stock/LocationDetail.tsx:194 msgid "Default Parts" -msgstr "" +msgstr "Προεπιλεγμένα Προϊόντα" #: src/pages/stock/LocationDetail.tsx:213 #: src/pages/stock/LocationDetail.tsx:374 #: src/tables/stock/StockLocationTable.tsx:121 msgid "Edit Stock Location" -msgstr "" +msgstr "Επεξεργασία Τοποθεσίας Αποθέματος" #: src/pages/stock/LocationDetail.tsx:222 msgid "Move items to parent location" -msgstr "" +msgstr "Μετακίνηση ειδών στη μητρική τοποθεσία" #: src/pages/stock/LocationDetail.tsx:234 #: src/pages/stock/LocationDetail.tsx:379 msgid "Delete Stock Location" -msgstr "" +msgstr "Διαγραφή Τοποθεσίας Αποθέματος" #: src/pages/stock/LocationDetail.tsx:237 msgid "Items Action" -msgstr "" +msgstr "Ενέργεια για Είδη" #: src/pages/stock/LocationDetail.tsx:239 msgid "Action for stock items in this location" -msgstr "" +msgstr "Ενέργεια για τα είδη αποθέματος σε αυτή την τοποθεσία" #: src/pages/stock/LocationDetail.tsx:243 #~ msgid "Child Locations Action" @@ -8526,46 +8598,46 @@ msgstr "" #: src/pages/stock/LocationDetail.tsx:244 msgid "Locations Action" -msgstr "" +msgstr "Ενέργεια Τοποθεσιών" #: src/pages/stock/LocationDetail.tsx:246 msgid "Action for child locations in this location" -msgstr "" +msgstr "Ενέργεια για τις θυγατρικές τοποθεσίες σε αυτή την τοποθεσία" #: src/pages/stock/LocationDetail.tsx:280 msgid "Scan Stock Item" -msgstr "" +msgstr "Σάρωση Είδους Αποθέματος" #: src/pages/stock/LocationDetail.tsx:298 #: src/pages/stock/StockDetail.tsx:812 msgid "Scanned stock item into location" -msgstr "" +msgstr "Το είδος αποθέματος σαρώθηκε στην τοποθεσία" #: src/pages/stock/LocationDetail.tsx:304 #: src/pages/stock/StockDetail.tsx:818 msgid "Error scanning stock item" -msgstr "" +msgstr "Σφάλμα κατά τη σάρωση είδους αποθέματος" #: src/pages/stock/LocationDetail.tsx:311 msgid "Scan Stock Location" -msgstr "" +msgstr "Σάρωση Τοποθεσίας Αποθέματος" #: src/pages/stock/LocationDetail.tsx:323 msgid "Scanned stock location into location" -msgstr "" +msgstr "Η τοποθεσία αποθέματος σαρώθηκε επιτυχώς" #: src/pages/stock/LocationDetail.tsx:329 msgid "Error scanning stock location" -msgstr "" +msgstr "Σφάλμα κατά τη σάρωση τοποθεσίας αποθέματος" #: src/pages/stock/LocationDetail.tsx:370 #: src/tables/stock/StockLocationTable.tsx:142 msgid "Location Actions" -msgstr "" +msgstr "Ενέργειες Τοποθεσίας" #: src/pages/stock/StockDetail.tsx:147 msgid "Base Part" -msgstr "" +msgstr "Βασικό Προϊόν" #: src/pages/stock/StockDetail.tsx:155 #~ msgid "Link custom barcode to stock item" @@ -8585,7 +8657,7 @@ msgstr "" #: src/pages/stock/StockDetail.tsx:206 msgid "Previous serial number" -msgstr "" +msgstr "Προηγούμενος σειριακός αριθμός" #: src/pages/stock/StockDetail.tsx:217 #~ msgid "Delete stock item" @@ -8593,35 +8665,35 @@ msgstr "" #: src/pages/stock/StockDetail.tsx:228 msgid "Find serial number" -msgstr "" +msgstr "Εύρεση σειριακού αριθμού" #: src/pages/stock/StockDetail.tsx:234 msgid "Next serial number" -msgstr "" +msgstr "Επόμενος σειριακός αριθμός" #: src/pages/stock/StockDetail.tsx:272 msgid "Allocated to Orders" -msgstr "" +msgstr "Δεσμευμένο για Παραγγελίες" #: src/pages/stock/StockDetail.tsx:305 msgid "Installed In" -msgstr "" +msgstr "Εγκατεστημένο Σε" #: src/pages/stock/StockDetail.tsx:325 msgid "Parent Item" -msgstr "" +msgstr "Μητρικό Είδος" #: src/pages/stock/StockDetail.tsx:329 msgid "Parent stock item" -msgstr "" +msgstr "Μητρικό είδος αποθέματος" #: src/pages/stock/StockDetail.tsx:335 msgid "Consumed By" -msgstr "" +msgstr "Καταναλώθηκε Από" #: src/pages/stock/StockDetail.tsx:432 msgid "Last Stocktake" -msgstr "" +msgstr "Τελευταία Απογραφή" #: src/pages/stock/StockDetail.tsx:433 #~ msgid "Duplicate stock item" @@ -8629,11 +8701,11 @@ msgstr "" #: src/pages/stock/StockDetail.tsx:526 msgid "Stock Details" -msgstr "" +msgstr "Λεπτομέρειες Αποθέματος" #: src/pages/stock/StockDetail.tsx:532 msgid "Stock Tracking" -msgstr "" +msgstr "Παρακολούθηση Αποθέματος" #: src/pages/stock/StockDetail.tsx:571 #~ msgid "Test Data" @@ -8641,15 +8713,15 @@ msgstr "" #: src/pages/stock/StockDetail.tsx:601 msgid "Installed Items" -msgstr "" +msgstr "Εγκατεστημένα Είδη" #: src/pages/stock/StockDetail.tsx:608 msgid "Child Items" -msgstr "" +msgstr "Θυγατρικά Είδη" #: src/pages/stock/StockDetail.tsx:661 msgid "Edit Stock Item" -msgstr "" +msgstr "Επεξεργασία Είδους Αποθέματος" #: src/pages/stock/StockDetail.tsx:671 #: src/tables/stock/StockItemTable.tsx:452 @@ -8668,15 +8740,15 @@ msgstr "" #: src/pages/stock/StockDetail.tsx:703 msgid "Items Created" -msgstr "" +msgstr "Δημιουργήθηκαν Είδη" #: src/pages/stock/StockDetail.tsx:704 msgid "Created {n} stock items" -msgstr "" +msgstr "Δημιουργήθηκαν {n} είδη αποθέματος" #: src/pages/stock/StockDetail.tsx:721 msgid "Delete Stock Item" -msgstr "" +msgstr "Διαγραφή Είδους Αποθέματος" #: src/pages/stock/StockDetail.tsx:762 #~ msgid "Return Stock Item" @@ -8688,7 +8760,7 @@ msgstr "" #: src/pages/stock/StockDetail.tsx:770 msgid "Serialize Stock Item" -msgstr "" +msgstr "Μετατροπή σε Σειριακό Είδος" #: src/pages/stock/StockDetail.tsx:777 #~ msgid "Item returned to stock" @@ -8697,23 +8769,23 @@ msgstr "" #: src/pages/stock/StockDetail.tsx:786 #: src/tables/stock/StockItemTable.tsx:539 msgid "Stock item serialized" -msgstr "" +msgstr "Το είδος αποθέματος σειριοποιήθηκε" #: src/pages/stock/StockDetail.tsx:794 msgid "Scan Into Location" -msgstr "" +msgstr "Σάρωση στην Τοποθεσία" #: src/pages/stock/StockDetail.tsx:852 msgid "Scan into location" -msgstr "" +msgstr "Σάρωση στην τοποθεσία" #: src/pages/stock/StockDetail.tsx:854 msgid "Scan this item into a location" -msgstr "" +msgstr "Σάρωση του είδους σε μια τοποθεσία" #: src/pages/stock/StockDetail.tsx:866 msgid "Stock Operations" -msgstr "" +msgstr "Λειτουργίες Αποθέματος" #: src/pages/stock/StockDetail.tsx:868 #~ msgid "Count stock" @@ -8722,11 +8794,11 @@ msgstr "" #: src/pages/stock/StockDetail.tsx:871 #: src/tables/build/BuildOutputTable.tsx:522 msgid "Serialize" -msgstr "" +msgstr "Σειριοποίηση" #: src/pages/stock/StockDetail.tsx:872 msgid "Serialize stock" -msgstr "" +msgstr "Σειριοποίηση αποθέματος" #: src/pages/stock/StockDetail.tsx:890 #~ msgid "Return from customer" @@ -8734,7 +8806,7 @@ msgstr "" #: src/pages/stock/StockDetail.tsx:897 msgid "Stock Item Actions" -msgstr "" +msgstr "Ενέργειες Είδους Αποθέματος" #: src/pages/stock/StockDetail.tsx:900 #~ msgid "Transfer" @@ -8751,21 +8823,21 @@ msgstr "" #: src/pages/stock/StockDetail.tsx:966 #: src/tables/stock/StockItemTable.tsx:404 msgid "Stale" -msgstr "" +msgstr "Μπαγιάτικο / Παρωχημένο" #: src/pages/stock/StockDetail.tsx:972 #: src/tables/stock/StockItemTable.tsx:398 msgid "Expired" -msgstr "" +msgstr "Έχει λήξει" #: src/pages/stock/StockDetail.tsx:978 msgid "Unavailable" -msgstr "" +msgstr "Μη διαθέσιμο" #: src/states/IconState.tsx:47 #: src/states/IconState.tsx:77 msgid "Error loading icon package from server" -msgstr "" +msgstr "Σφάλμα φόρτωσης πακέτου εικονιδίων από τον διακομιστή" #: src/tables/ColumnRenderers.tsx:41 #~ msgid "Part is locked" @@ -8773,18 +8845,11 @@ msgstr "" #: src/tables/ColumnRenderers.tsx:68 msgid "Part is not active" -msgstr "Το εξάρτημα είναι ανενεργό" - -#: src/tables/ColumnRenderers.tsx:73 -#: src/tables/bom/BomTable.tsx:657 -#: src/tables/part/PartParameterTable.tsx:227 -#: src/tables/part/PartTestTemplateTable.tsx:258 -msgid "Part is Locked" -msgstr "" +msgstr "Το Προϊόν δεν είναι ενεργό" #: src/tables/ColumnRenderers.tsx:78 msgid "You are subscribed to notifications for this part" -msgstr "" +msgstr "Είστε εγγεγραμμένος σε ειδοποιήσεις για αυτό το Προϊόν" #: src/tables/ColumnRenderers.tsx:93 #~ msgid "No location set" @@ -8793,7 +8858,7 @@ msgstr "" #: src/tables/ColumnSelect.tsx:16 #: src/tables/ColumnSelect.tsx:23 msgid "Select Columns" -msgstr "" +msgstr "Επιλογή Στηλών" #: src/tables/DownloadAction.tsx:13 #~ msgid "Excel" @@ -8825,27 +8890,27 @@ msgstr "" #: src/tables/Filter.tsx:75 msgid "Has Batch Code" -msgstr "" +msgstr "Έχει Κωδικό Παρτίδας" #: src/tables/Filter.tsx:76 msgid "Show items which have a batch code" -msgstr "" +msgstr "Εμφάνιση ειδών με κωδικό παρτίδας" #: src/tables/Filter.tsx:84 msgid "Filter items by batch code" -msgstr "" +msgstr "Φιλτράρισμα ειδών ανά κωδικό παρτίδας" #: src/tables/Filter.tsx:93 msgid "Show items which are in stock" -msgstr "" +msgstr "Εμφάνιση ειδών που είναι σε απόθεμα" #: src/tables/Filter.tsx:100 msgid "Is Serialized" -msgstr "" +msgstr "Είναι Σειριοποιημένο" #: src/tables/Filter.tsx:101 msgid "Show items which have a serial number" -msgstr "" +msgstr "Εμφάνιση ειδών με σειριακό αριθμό" #: src/tables/Filter.tsx:106 #~ msgid "Show overdue orders" @@ -8853,235 +8918,235 @@ msgstr "" #: src/tables/Filter.tsx:108 msgid "Serial" -msgstr "" +msgstr "Σειριακός" #: src/tables/Filter.tsx:109 msgid "Filter items by serial number" -msgstr "" +msgstr "Φιλτράρισμα ειδών ανά σειριακό αριθμό" #: src/tables/Filter.tsx:117 msgid "Serial Below" -msgstr "" +msgstr "Σειριακός Κάτω Από" #: src/tables/Filter.tsx:118 msgid "Show items with serial numbers less than or equal to a given value" -msgstr "" +msgstr "Εμφάνιση ειδών με σειριακό αριθμό μικρότερο ή ίσο από την τιμή" #: src/tables/Filter.tsx:126 msgid "Serial Above" -msgstr "" +msgstr "Σειριακός Πάνω Από" #: src/tables/Filter.tsx:127 msgid "Show items with serial numbers greater than or equal to a given value" -msgstr "" +msgstr "Εμφάνιση ειδών με σειριακό αριθμό μεγαλύτερο ή ίσο από την τιμή" #: src/tables/Filter.tsx:136 msgid "Assigned to me" -msgstr "" +msgstr "Ανατεθειμένα σε εμένα" #: src/tables/Filter.tsx:137 msgid "Show orders assigned to me" -msgstr "" +msgstr "Εμφάνιση παραγγελιών που έχουν ανατεθεί σε εμένα" #: src/tables/Filter.tsx:144 #: src/tables/sales/SalesOrderAllocationTable.tsx:88 msgid "Outstanding" -msgstr "" +msgstr "Εκκρεμή" #: src/tables/Filter.tsx:145 msgid "Show outstanding items" -msgstr "" +msgstr "Εμφάνιση εκκρεμών ειδών" #: src/tables/Filter.tsx:153 msgid "Show overdue items" -msgstr "" +msgstr "Εμφάνιση εκπρόθεσμων ειδών" #: src/tables/Filter.tsx:160 msgid "Minimum Date" -msgstr "" +msgstr "Ελάχιστη Ημερομηνία" #: src/tables/Filter.tsx:161 msgid "Show items after this date" -msgstr "" +msgstr "Εμφάνιση ειδών μετά από αυτή την ημερομηνία" #: src/tables/Filter.tsx:169 msgid "Maximum Date" -msgstr "" +msgstr "Μέγιστη Ημερομηνία" #: src/tables/Filter.tsx:170 msgid "Show items before this date" -msgstr "" +msgstr "Εμφάνιση ειδών πριν από αυτή την ημερομηνία" #: src/tables/Filter.tsx:178 msgid "Created Before" -msgstr "" +msgstr "Δημιουργήθηκε Πριν Από" #: src/tables/Filter.tsx:179 msgid "Show items created before this date" -msgstr "" +msgstr "Εμφάνιση ειδών που δημιουργήθηκαν πριν από αυτή την ημερομηνία" #: src/tables/Filter.tsx:187 msgid "Created After" -msgstr "" +msgstr "Δημιουργήθηκε Μετά Από" #: src/tables/Filter.tsx:188 msgid "Show items created after this date" -msgstr "" +msgstr "Εμφάνιση ειδών που δημιουργήθηκαν μετά από αυτή την ημερομηνία" #: src/tables/Filter.tsx:196 msgid "Start Date Before" -msgstr "" +msgstr "Ημερομηνία Έναρξης Πριν Από" #: src/tables/Filter.tsx:197 msgid "Show items with a start date before this date" -msgstr "" +msgstr "Εμφάνιση ειδών με ημερομηνία έναρξης πριν από αυτή την ημερομηνία" #: src/tables/Filter.tsx:205 msgid "Start Date After" -msgstr "" +msgstr "Ημερομηνία Έναρξης Μετά Από" #: src/tables/Filter.tsx:206 msgid "Show items with a start date after this date" -msgstr "" +msgstr "Εμφάνιση ειδών με ημερομηνία έναρξης μετά από αυτή την ημερομηνία" #: src/tables/Filter.tsx:214 msgid "Target Date Before" -msgstr "" +msgstr "Ημερομηνία-Στόχος Πριν Από" #: src/tables/Filter.tsx:215 msgid "Show items with a target date before this date" -msgstr "" +msgstr "Εμφάνιση ειδών με ημερομηνία-στόχο πριν από αυτή την ημερομηνία" #: src/tables/Filter.tsx:223 msgid "Target Date After" -msgstr "" +msgstr "Ημερομηνία-Στόχος Μετά Από" #: src/tables/Filter.tsx:224 msgid "Show items with a target date after this date" -msgstr "" +msgstr "Εμφάνιση ειδών με ημερομηνία-στόχο μετά από αυτή την ημερομηνία" #: src/tables/Filter.tsx:232 msgid "Completed Before" -msgstr "" +msgstr "Ολοκληρώθηκε Πριν Από" #: src/tables/Filter.tsx:233 msgid "Show items completed before this date" -msgstr "" +msgstr "Εμφάνιση ειδών που ολοκληρώθηκαν πριν από αυτή την ημερομηνία" #: src/tables/Filter.tsx:241 msgid "Completed After" -msgstr "" +msgstr "Ολοκληρώθηκε Μετά Από" #: src/tables/Filter.tsx:242 msgid "Show items completed after this date" -msgstr "" +msgstr "Εμφάνιση ειδών που ολοκληρώθηκαν μετά από αυτή την ημερομηνία" #: src/tables/Filter.tsx:254 msgid "Has Project Code" -msgstr "" +msgstr "Έχει Κωδικό Έργου" #: src/tables/Filter.tsx:255 msgid "Show orders with an assigned project code" -msgstr "" +msgstr "Εμφάνιση παραγγελιών με καταχωρημένο κωδικό έργου" #: src/tables/Filter.tsx:264 msgid "Include Variants" -msgstr "" +msgstr "Συμπερίληψη Παραλλαγών" #: src/tables/Filter.tsx:265 msgid "Include results for part variants" -msgstr "" +msgstr "Συμπερίληψη αποτελεσμάτων για παραλλαγές Προϊόντων" #: src/tables/Filter.tsx:275 #: src/tables/part/PartPurchaseOrdersTable.tsx:133 msgid "Filter by order status" -msgstr "" +msgstr "Φιλτράρισμα ανά κατάσταση παραγγελίας" #: src/tables/Filter.tsx:287 msgid "Filter by project code" -msgstr "" +msgstr "Φιλτράρισμα ανά κωδικό έργου" #: src/tables/Filter.tsx:320 msgid "Filter by responsible owner" -msgstr "" +msgstr "Φιλτράρισμα ανά υπεύθυνο ιδιοκτήτη" #: src/tables/Filter.tsx:336 #: src/tables/settings/ApiTokenTable.tsx:127 #: src/tables/stock/StockTrackingTable.tsx:191 msgid "Filter by user" -msgstr "" +msgstr "Φιλτράρισμα ανά χρήστη" #: src/tables/Filter.tsx:348 msgid "Filter by manufacturer" -msgstr "" +msgstr "Φιλτράρισμα ανά κατασκευαστή" #: src/tables/Filter.tsx:361 msgid "Filter by supplier" -msgstr "" +msgstr "Φιλτράρισμα ανά προμηθευτή" #: src/tables/Filter.tsx:374 msgid "Filter by user who created the order" -msgstr "" +msgstr "Φιλτράρισμα ανά χρήστη που δημιούργησε την παραγγελία" #: src/tables/Filter.tsx:382 msgid "Filter by user who issued the order" -msgstr "" +msgstr "Φιλτράρισμα ανά χρήστη που εξέδωσε την παραγγελία" #: src/tables/Filter.tsx:390 msgid "Filter by part category" -msgstr "" +msgstr "Φιλτράρισμα ανά κατηγορία Προϊόντος" #: src/tables/Filter.tsx:401 msgid "Filter by stock location" -msgstr "" +msgstr "Φιλτράρισμα ανά τοποθεσία αποθέματος" #: src/tables/FilterSelectDrawer.tsx:59 msgid "Remove filter" -msgstr "" +msgstr "Αφαίρεση φίλτρου" #: src/tables/FilterSelectDrawer.tsx:102 #: src/tables/FilterSelectDrawer.tsx:104 #: src/tables/FilterSelectDrawer.tsx:151 msgid "Select filter value" -msgstr "" +msgstr "Επιλογή τιμής φίλτρου" #: src/tables/FilterSelectDrawer.tsx:116 msgid "Enter filter value" -msgstr "" +msgstr "Εισαγωγή τιμής φίλτρου" #: src/tables/FilterSelectDrawer.tsx:138 msgid "Select date value" -msgstr "" +msgstr "Επιλογή ημερομηνίας" #: src/tables/FilterSelectDrawer.tsx:260 msgid "Select filter" -msgstr "" +msgstr "Επιλογή φίλτρου" #: src/tables/FilterSelectDrawer.tsx:261 msgid "Filter" -msgstr "" +msgstr "Φίλτρο" #: src/tables/FilterSelectDrawer.tsx:313 #: src/tables/InvenTreeTableHeader.tsx:260 msgid "Table Filters" -msgstr "" +msgstr "Φίλτρα Πίνακα" #: src/tables/FilterSelectDrawer.tsx:346 msgid "Add Filter" -msgstr "" +msgstr "Προσθήκη Φίλτρου" #: src/tables/FilterSelectDrawer.tsx:355 msgid "Clear Filters" -msgstr "" +msgstr "Καθαρισμός Φίλτρων" #: src/tables/InvenTreeTable.tsx:45 #: src/tables/InvenTreeTable.tsx:488 msgid "No records found" -msgstr "" +msgstr "Δεν βρέθηκαν εγγραφές" #: src/tables/InvenTreeTable.tsx:152 msgid "Error loading table options" -msgstr "" +msgstr "Σφάλμα φόρτωσης επιλογών πίνακα" #: src/tables/InvenTreeTable.tsx:250 #~ msgid "Failed to load table options" @@ -9093,7 +9158,7 @@ msgstr "" #: src/tables/InvenTreeTable.tsx:529 msgid "Server returned incorrect data type" -msgstr "" +msgstr "Ο διακομιστής επέστρεψε λανθασμένο τύπο δεδομένων" #: src/tables/InvenTreeTable.tsx:535 #~ msgid "Deleted records" @@ -9113,7 +9178,7 @@ msgstr "" #: src/tables/InvenTreeTable.tsx:562 msgid "Error loading table data" -msgstr "" +msgstr "Σφάλμα φόρτωσης δεδομένων πίνακα" #: src/tables/InvenTreeTable.tsx:594 #: src/tables/InvenTreeTable.tsx:595 @@ -9127,11 +9192,11 @@ msgstr "" #: src/tables/InvenTreeTable.tsx:691 msgid "View details" -msgstr "" +msgstr "Προβολή λεπτομερειών" #: src/tables/InvenTreeTable.tsx:694 msgid "View {model}" -msgstr "" +msgstr "Προβολή {model}" #: src/tables/InvenTreeTable.tsx:712 #~ msgid "Table filters" @@ -9143,41 +9208,41 @@ msgstr "" #: src/tables/InvenTreeTableHeader.tsx:104 msgid "Delete Selected Items" -msgstr "" +msgstr "Διαγραφή Επιλεγμένων Ειδών" #: src/tables/InvenTreeTableHeader.tsx:108 msgid "Are you sure you want to delete the selected items?" -msgstr "" +msgstr "Είστε βέβαιοι ότι θέλετε να διαγράψετε τα επιλεγμένα είδη;" #: src/tables/InvenTreeTableHeader.tsx:110 #: src/tables/plugin/PluginListTable.tsx:316 msgid "This action cannot be undone" -msgstr "" +msgstr "Αυτή η ενέργεια δεν μπορεί να αναιρεθεί" #: src/tables/InvenTreeTableHeader.tsx:121 msgid "Items deleted" -msgstr "" +msgstr "Τα είδη διαγράφηκαν" #: src/tables/InvenTreeTableHeader.tsx:126 msgid "Failed to delete items" -msgstr "" +msgstr "Αποτυχία διαγραφής ειδών" #: src/tables/InvenTreeTableHeader.tsx:177 msgid "Custom table filters are active" -msgstr "" +msgstr "Τα προσαρμοσμένα φίλτρα πίνακα είναι ενεργά" #: src/tables/InvenTreeTableHeader.tsx:203 #: src/tables/general/BarcodeScanTable.tsx:93 msgid "Delete selected records" -msgstr "" +msgstr "Διαγραφή επιλεγμένων εγγραφών" #: src/tables/InvenTreeTableHeader.tsx:223 msgid "Refresh data" -msgstr "" +msgstr "Ανανέωση δεδομένων" #: src/tables/InvenTreeTableHeader.tsx:272 msgid "Active Filters" -msgstr "" +msgstr "Ενεργά Φίλτρα" #: src/tables/TableHoverCard.tsx:35 #~ msgid "item-{idx}" @@ -9189,19 +9254,19 @@ msgstr "" #: src/tables/bom/BomTable.tsx:102 msgid "This BOM item is defined for a different parent" -msgstr "" +msgstr "Αυτό το στοιχείο BOM έχει οριστεί για διαφορετικό γονικό" #: src/tables/bom/BomTable.tsx:118 msgid "Part Information" -msgstr "" +msgstr "Πληροφορίες Προϊόντος" #: src/tables/bom/BomTable.tsx:121 msgid "This BOM item has not been validated" -msgstr "" +msgstr "Αυτό το στοιχείο BOM δεν έχει επικυρωθεί" #: src/tables/bom/BomTable.tsx:240 msgid "Substitutes" -msgstr "" +msgstr "Υποκατάστατα" #: src/tables/bom/BomTable.tsx:301 #~ msgid "Create BOM Item" @@ -9212,32 +9277,32 @@ msgstr "" #: src/tables/sales/SalesOrderLineItemTable.tsx:199 #: src/tables/sales/SalesOrderLineItemTable.tsx:216 msgid "Virtual part" -msgstr "" +msgstr "Εικονικό Προϊόν" #: src/tables/bom/BomTable.tsx:310 #~ msgid "Show asssmbled items" #~ msgstr "Show asssmbled items" #: src/tables/bom/BomTable.tsx:315 -#: src/tables/build/BuildLineTable.tsx:276 +#: src/tables/build/BuildLineTable.tsx:277 #: src/tables/part/PartTable.tsx:145 msgid "External stock" -msgstr "" +msgstr "Εξωτερικό απόθεμα" #: src/tables/bom/BomTable.tsx:323 -#: src/tables/build/BuildLineTable.tsx:239 +#: src/tables/build/BuildLineTable.tsx:240 msgid "Includes substitute stock" -msgstr "" +msgstr "Περιλαμβάνει υποκατάστατο απόθεμα" #: src/tables/bom/BomTable.tsx:331 #~ msgid "Edit Bom Item" #~ msgstr "Edit Bom Item" #: src/tables/bom/BomTable.tsx:332 -#: src/tables/build/BuildLineTable.tsx:249 +#: src/tables/build/BuildLineTable.tsx:250 #: src/tables/sales/SalesOrderLineItemTable.tsx:166 msgid "Includes variant stock" -msgstr "" +msgstr "Περιλαμβάνει απόθεμα παραλλαγών" #: src/tables/bom/BomTable.tsx:333 #~ msgid "Bom item updated" @@ -9250,7 +9315,7 @@ msgstr "" #: src/tables/bom/BomTable.tsx:349 #: src/tables/part/PartTable.tsx:114 msgid "Building" -msgstr "" +msgstr "Σε κατασκευή" #: src/tables/bom/BomTable.tsx:349 #~ msgid "Bom item deleted" @@ -9269,147 +9334,147 @@ msgstr "" #: src/tables/sales/SalesOrderLineItemTable.tsx:189 #: src/tables/stock/StockItemTable.tsx:222 msgid "Stock Information" -msgstr "" +msgstr "Πληροφορίες αποθέματος" #: src/tables/bom/BomTable.tsx:399 -#: src/tables/build/BuildLineTable.tsx:496 -#: src/tables/build/BuildLineTable.tsx:537 +#: src/tables/build/BuildLineTable.tsx:497 +#: src/tables/build/BuildLineTable.tsx:538 msgid "Consumable item" -msgstr "" +msgstr "Αναλώσιμο στοιχείο" #: src/tables/bom/BomTable.tsx:402 msgid "No available stock" -msgstr "" +msgstr "Δεν υπάρχει διαθέσιμο απόθεμα" #: src/tables/bom/BomTable.tsx:420 -#: src/tables/build/BuildLineTable.tsx:213 +#: src/tables/build/BuildLineTable.tsx:214 msgid "Show testable items" -msgstr "" +msgstr "Εμφάνιση δοκιμασμένων στοιχείων" #: src/tables/bom/BomTable.tsx:425 msgid "Show trackable items" -msgstr "" +msgstr "Εμφάνιση ιχνηλάσιμων στοιχείων" #: src/tables/bom/BomTable.tsx:430 -#: src/tables/build/BuildLineTable.tsx:208 +#: src/tables/build/BuildLineTable.tsx:209 msgid "Show assembled items" -msgstr "" +msgstr "Εμφάνιση συναρμολογημένων στοιχείων" #: src/tables/bom/BomTable.tsx:435 msgid "Show virtual items" -msgstr "" +msgstr "Εμφάνιση εικονικών στοιχείων" #: src/tables/bom/BomTable.tsx:440 msgid "Show items with available stock" -msgstr "" +msgstr "Εμφάνιση Προϊόντων με διαθέσιμο απόθεμα" #: src/tables/bom/BomTable.tsx:445 msgid "Show items on order" -msgstr "" +msgstr "Εμφάνιση Προϊόντων σε παραγγελία" #: src/tables/bom/BomTable.tsx:449 msgid "Validated" -msgstr "" +msgstr "Επικυρωμένο" #: src/tables/bom/BomTable.tsx:450 msgid "Show validated items" -msgstr "" +msgstr "Εμφάνιση επικυρωμένων στοιχείων" #: src/tables/bom/BomTable.tsx:454 #: src/tables/bom/UsedInTable.tsx:80 msgid "Inherited" -msgstr "" +msgstr "Κληρονομημένο" #: src/tables/bom/BomTable.tsx:455 #: src/tables/bom/UsedInTable.tsx:81 msgid "Show inherited items" -msgstr "" +msgstr "Εμφάνιση κληρονομημένων στοιχείων" #: src/tables/bom/BomTable.tsx:459 msgid "Allow Variants" -msgstr "" +msgstr "Να επιτρέπονται παραλλαγές" #: src/tables/bom/BomTable.tsx:460 msgid "Show items which allow variant substitution" -msgstr "" +msgstr "Εμφάνιση Προϊόντων που επιτρέπουν αντικατάσταση παραλλαγών" #: src/tables/bom/BomTable.tsx:464 #: src/tables/bom/UsedInTable.tsx:85 -#: src/tables/build/BuildLineTable.tsx:202 +#: src/tables/build/BuildLineTable.tsx:203 msgid "Optional" -msgstr "" +msgstr "Προαιρετικό" #: src/tables/bom/BomTable.tsx:465 #: src/tables/bom/UsedInTable.tsx:86 msgid "Show optional items" -msgstr "" +msgstr "Εμφάνιση προαιρετικών στοιχείων" #: src/tables/bom/BomTable.tsx:469 -#: src/tables/build/BuildLineTable.tsx:197 +#: src/tables/build/BuildLineTable.tsx:198 msgid "Consumable" -msgstr "" +msgstr "Αναλώσιμο" #: src/tables/bom/BomTable.tsx:470 msgid "Show consumable items" -msgstr "" +msgstr "Εμφάνιση αναλώσιμων στοιχείων" #: src/tables/bom/BomTable.tsx:474 #: src/tables/part/PartTable.tsx:313 msgid "Has Pricing" -msgstr "" +msgstr "Έχει τιμολόγηση" #: src/tables/bom/BomTable.tsx:475 msgid "Show items with pricing" -msgstr "" +msgstr "Εμφάνιση στοιχείων με τιμολόγηση" #: src/tables/bom/BomTable.tsx:497 msgid "Import BOM Data" -msgstr "" +msgstr "Εισαγωγή δεδομένων BOM" #: src/tables/bom/BomTable.tsx:507 #: src/tables/bom/BomTable.tsx:631 msgid "Add BOM Item" -msgstr "" +msgstr "Προσθήκη στοιχείου BOM" #: src/tables/bom/BomTable.tsx:512 msgid "BOM item created" -msgstr "" +msgstr "Το στοιχείο BOM δημιουργήθηκε" #: src/tables/bom/BomTable.tsx:519 msgid "Edit BOM Item" -msgstr "" +msgstr "Επεξεργασία στοιχείου BOM" #: src/tables/bom/BomTable.tsx:521 msgid "BOM item updated" -msgstr "" +msgstr "Το στοιχείο BOM ενημερώθηκε" #: src/tables/bom/BomTable.tsx:528 msgid "Delete BOM Item" -msgstr "" +msgstr "Διαγραφή στοιχείου BOM" #: src/tables/bom/BomTable.tsx:529 msgid "BOM item deleted" -msgstr "" +msgstr "Το στοιχείο BOM διαγράφηκε" #: src/tables/bom/BomTable.tsx:549 msgid "BOM item validated" -msgstr "" +msgstr "Το στοιχείο BOM επικυρώθηκε" #: src/tables/bom/BomTable.tsx:558 msgid "Failed to validate BOM item" -msgstr "" +msgstr "Αποτυχία επικύρωσης στοιχείου BOM" #: src/tables/bom/BomTable.tsx:570 msgid "View BOM" -msgstr "" +msgstr "Προβολή BOM" #: src/tables/bom/BomTable.tsx:581 msgid "Validate BOM Line" -msgstr "" +msgstr "Επικύρωση γραμμής BOM" #: src/tables/bom/BomTable.tsx:600 msgid "Edit Substitutes" -msgstr "" +msgstr "Επεξεργασία υποκατάστατων" #: src/tables/bom/BomTable.tsx:625 msgid "Add BOM Items" @@ -9420,9 +9485,10 @@ msgid "Add a single BOM item" msgstr "" #: src/tables/bom/BomTable.tsx:637 +#: src/tables/general/ParameterTable.tsx:206 #: src/tables/part/PartTable.tsx:546 msgid "Import from File" -msgstr "" +msgstr "Εισαγωγή από αρχείο" #: src/tables/bom/BomTable.tsx:639 msgid "Import BOM items from a file" @@ -9430,38 +9496,38 @@ msgstr "" #: src/tables/bom/BomTable.tsx:662 msgid "Bill of materials cannot be edited, as the part is locked" -msgstr "" +msgstr "Το BOM δεν μπορεί να επεξεργαστεί, επειδή το Προϊόν είναι κλειδωμένο" #: src/tables/bom/UsedInTable.tsx:34 -#: src/tables/build/BuildLineTable.tsx:207 -#: src/tables/part/ParametricPartTable.tsx:364 +#: src/tables/build/BuildLineTable.tsx:208 +#: src/tables/part/ParametricPartTable.tsx:29 #: src/tables/part/PartBuildAllocationsTable.tsx:60 #: src/tables/part/PartTable.tsx:209 #: src/tables/stock/StockItemTable.tsx:333 msgid "Assembly" -msgstr "" +msgstr "Συναρμολόγηση" #: src/tables/bom/UsedInTable.tsx:91 msgid "Show active assemblies" -msgstr "" +msgstr "Εμφάνιση ενεργών συναρμολογήσεων" #: src/tables/bom/UsedInTable.tsx:95 #: src/tables/part/PartTable.tsx:239 #: src/tables/part/PartVariantTable.tsx:30 msgid "Trackable" -msgstr "" +msgstr "Ιχνηλάσιμο" #: src/tables/bom/UsedInTable.tsx:96 msgid "Show trackable assemblies" -msgstr "" +msgstr "Εμφάνιση ιχνηλάσιμων συναρμολογήσεων" -#: src/tables/build/BuildAllocatedStockTable.tsx:67 +#: src/tables/build/BuildAllocatedStockTable.tsx:64 msgid "Allocated to Output" -msgstr "" +msgstr "Δεσμευμένο για αποτέλεσμα" -#: src/tables/build/BuildAllocatedStockTable.tsx:68 +#: src/tables/build/BuildAllocatedStockTable.tsx:65 msgid "Show items allocated to a build output" -msgstr "" +msgstr "Εμφάνιση Προϊόντων δεσμευμένων για αποτέλεσμα κατασκευής" #: src/tables/build/BuildAllocatedStockTable.tsx:73 #: src/tables/build/BuildOrderTable.tsx:197 @@ -9472,178 +9538,196 @@ msgstr "" #~ msgid "Include orders for part variants" #~ msgstr "Include orders for part variants" -#: src/tables/build/BuildAllocatedStockTable.tsx:97 +#: src/tables/build/BuildAllocatedStockTable.tsx:94 #: src/tables/part/PartBuildAllocationsTable.tsx:84 #: src/tables/part/PartPurchaseOrdersTable.tsx:132 #: src/tables/part/PartSalesAllocationsTable.tsx:69 #: src/tables/sales/SalesOrderAllocationTable.tsx:122 -#: src/tables/sales/SalesOrderShipmentTable.tsx:130 +#: src/tables/sales/SalesOrderShipmentTable.tsx:151 msgid "Order Status" -msgstr "" +msgstr "Κατάσταση παραγγελίας" + +#: src/tables/build/BuildAllocatedStockTable.tsx:164 +#: src/tables/build/BuildLineTable.tsx:651 +msgid "Edit Stock Allocation" +msgstr "Επεξεργασία κατανομής αποθέματος" #: src/tables/build/BuildAllocatedStockTable.tsx:164 #~ msgid "Edit Build Item" #~ msgstr "Edit Build Item" -#: src/tables/build/BuildAllocatedStockTable.tsx:167 -#: src/tables/build/BuildLineTable.tsx:650 -msgid "Edit Stock Allocation" -msgstr "" - #: src/tables/build/BuildAllocatedStockTable.tsx:174 #~ msgid "Delete Build Item" #~ msgstr "Delete Build Item" -#: src/tables/build/BuildAllocatedStockTable.tsx:180 -#: src/tables/build/BuildLineTable.tsx:663 -msgid "Delete Stock Allocation" +#: src/tables/build/BuildAllocatedStockTable.tsx:177 +#: src/tables/build/BuildLineTable.tsx:664 +#: src/tables/sales/SalesOrderAllocationTable.tsx:218 +msgid "Remove Allocated Stock" msgstr "" -#: src/tables/build/BuildAllocatedStockTable.tsx:239 +#: src/tables/build/BuildAllocatedStockTable.tsx:180 +#: src/tables/build/BuildLineTable.tsx:663 +#~ msgid "Delete Stock Allocation" +#~ msgstr "Delete Stock Allocation" + +#: src/tables/build/BuildAllocatedStockTable.tsx:182 +#: src/tables/build/BuildLineTable.tsx:669 +#: src/tables/sales/SalesOrderAllocationTable.tsx:221 +msgid "Are you sure you want to remove this allocated stock from the order?" +msgstr "" + +#: src/tables/build/BuildAllocatedStockTable.tsx:242 msgid "Consume" +msgstr "Κατανάλωση" + +#: src/tables/build/BuildAllocatedStockTable.tsx:259 +#: src/tables/build/BuildLineTable.tsx:112 +#: src/tables/sales/SalesOrderAllocationTable.tsx:248 +msgid "Remove allocated stock" msgstr "" #: src/tables/build/BuildLineTable.tsx:59 #~ msgid "Show lines with available stock" #~ msgstr "Show lines with available stock" -#: src/tables/build/BuildLineTable.tsx:120 +#: src/tables/build/BuildLineTable.tsx:121 msgid "View Stock Item" -msgstr "" +msgstr "Προβολή Προϊόντος αποθέματος" -#: src/tables/build/BuildLineTable.tsx:183 +#: src/tables/build/BuildLineTable.tsx:184 msgid "Show fully allocated lines" -msgstr "" +msgstr "Εμφάνιση πλήρως δεσμευμένων γραμμών" -#: src/tables/build/BuildLineTable.tsx:188 +#: src/tables/build/BuildLineTable.tsx:189 msgid "Show fully consumed lines" -msgstr "" +msgstr "Εμφάνιση πλήρως καταναλωμένων γραμμών" #: src/tables/build/BuildLineTable.tsx:189 #~ msgid "Show allocated lines" #~ msgstr "Show allocated lines" -#: src/tables/build/BuildLineTable.tsx:193 +#: src/tables/build/BuildLineTable.tsx:194 msgid "Show items with sufficient available stock" msgstr "" -#: src/tables/build/BuildLineTable.tsx:198 +#: src/tables/build/BuildLineTable.tsx:199 msgid "Show consumable lines" -msgstr "" +msgstr "Εμφάνιση αναλώσιμων γραμμών" -#: src/tables/build/BuildLineTable.tsx:203 +#: src/tables/build/BuildLineTable.tsx:204 msgid "Show optional lines" -msgstr "" +msgstr "Εμφάνιση προαιρετικών γραμμών" -#: src/tables/build/BuildLineTable.tsx:212 +#: src/tables/build/BuildLineTable.tsx:213 #: src/tables/part/PartTable.tsx:233 msgid "Testable" -msgstr "" - -#: src/tables/build/BuildLineTable.tsx:217 -#: src/tables/stock/StockItemTable.tsx:388 -msgid "Tracked" -msgstr "" +msgstr "Δοκιμασμένο" #: src/tables/build/BuildLineTable.tsx:218 -msgid "Show tracked lines" -msgstr "" +#: src/tables/stock/StockItemTable.tsx:388 +msgid "Tracked" +msgstr "Ιχνηλάσιμο" -#: src/tables/build/BuildLineTable.tsx:223 +#: src/tables/build/BuildLineTable.tsx:219 +msgid "Show tracked lines" +msgstr "Εμφάνιση ιχνηλάσιμων γραμμών" + +#: src/tables/build/BuildLineTable.tsx:224 msgid "Show items with stock on order" msgstr "" -#: src/tables/build/BuildLineTable.tsx:258 +#: src/tables/build/BuildLineTable.tsx:259 #: src/tables/sales/SalesOrderLineItemTable.tsx:172 msgid "In production" -msgstr "" +msgstr "Σε παραγωγή" -#: src/tables/build/BuildLineTable.tsx:286 +#: src/tables/build/BuildLineTable.tsx:287 msgid "Insufficient stock" -msgstr "" +msgstr "Ανεπαρκές απόθεμα" -#: src/tables/build/BuildLineTable.tsx:302 +#: src/tables/build/BuildLineTable.tsx:303 #: src/tables/sales/SalesOrderLineItemTable.tsx:160 #: src/tables/stock/StockItemTable.tsx:191 msgid "No stock available" -msgstr "" +msgstr "Δεν υπάρχει διαθέσιμο απόθεμα" -#: src/tables/build/BuildLineTable.tsx:375 +#: src/tables/build/BuildLineTable.tsx:376 msgid "Gets Inherited" -msgstr "" +msgstr "Κληρονομείται" -#: src/tables/build/BuildLineTable.tsx:388 +#: src/tables/build/BuildLineTable.tsx:389 msgid "Unit Quantity" -msgstr "" +msgstr "Ποσότητα μονάδας" -#: src/tables/build/BuildLineTable.tsx:415 +#: src/tables/build/BuildLineTable.tsx:416 msgid "Setup Quantity" -msgstr "" +msgstr "Ποσότητα ρύθμισης" -#: src/tables/build/BuildLineTable.tsx:424 +#: src/tables/build/BuildLineTable.tsx:425 msgid "Attrition" -msgstr "" +msgstr "Φθορά" -#: src/tables/build/BuildLineTable.tsx:432 +#: src/tables/build/BuildLineTable.tsx:433 msgid "Rounding Multiple" -msgstr "" +msgstr "Στρογγυλοποίηση πολλαπλάσιου" -#: src/tables/build/BuildLineTable.tsx:441 +#: src/tables/build/BuildLineTable.tsx:442 msgid "BOM Information" -msgstr "" +msgstr "Πληροφορίες BOM" -#: src/tables/build/BuildLineTable.tsx:515 +#: src/tables/build/BuildLineTable.tsx:516 #: src/tables/part/PartBuildAllocationsTable.tsx:102 msgid "Fully allocated" -msgstr "" +msgstr "Πλήρως δεσμευμένο" -#: src/tables/build/BuildLineTable.tsx:563 +#: src/tables/build/BuildLineTable.tsx:564 #: src/tables/sales/SalesOrderLineItemTable.tsx:311 msgid "Create Build Order" -msgstr "" +msgstr "Δημιουργία εντολής κατασκευής" -#: src/tables/build/BuildLineTable.tsx:592 +#: src/tables/build/BuildLineTable.tsx:593 msgid "Auto allocation in progress" -msgstr "" - -#: src/tables/build/BuildLineTable.tsx:595 -#: src/tables/build/BuildLineTable.tsx:802 -msgid "Auto Allocate Stock" -msgstr "" +msgstr "Αυτόματη κατανομή σε εξέλιξη" #: src/tables/build/BuildLineTable.tsx:596 -msgid "Automatically allocate stock to this build according to the selected options" -msgstr "" +#: src/tables/build/BuildLineTable.tsx:809 +msgid "Auto Allocate Stock" +msgstr "Αυτόματη κατανομή αποθέματος" -#: src/tables/build/BuildLineTable.tsx:616 -#: src/tables/build/BuildLineTable.tsx:630 -#: src/tables/build/BuildLineTable.tsx:751 -#: src/tables/build/BuildLineTable.tsx:852 +#: src/tables/build/BuildLineTable.tsx:597 +msgid "Automatically allocate stock to this build according to the selected options" +msgstr "Αυτόματη κατανομή αποθέματος σε αυτή την κατασκευή σύμφωνα με τις επιλεγμένες επιλογές" + +#: src/tables/build/BuildLineTable.tsx:617 +#: src/tables/build/BuildLineTable.tsx:631 +#: src/tables/build/BuildLineTable.tsx:758 +#: src/tables/build/BuildLineTable.tsx:859 #: src/tables/build/BuildOutputTable.tsx:355 #: src/tables/build/BuildOutputTable.tsx:360 msgid "Deallocate Stock" -msgstr "" +msgstr "Αποδέσμευση αποθέματος" -#: src/tables/build/BuildLineTable.tsx:632 +#: src/tables/build/BuildLineTable.tsx:633 msgid "Deallocate all untracked stock for this build order" -msgstr "" +msgstr "Αποδέσμευση όλου του μη παρακολουθούμενου αποθέματος για αυτή την παραγγελία κατασκευής" -#: src/tables/build/BuildLineTable.tsx:634 +#: src/tables/build/BuildLineTable.tsx:635 msgid "Deallocate stock from the selected line item" -msgstr "" +msgstr "Αποδέσμευση αποθέματος από το επιλεγμένο στοιχείο γραμμής" -#: src/tables/build/BuildLineTable.tsx:638 +#: src/tables/build/BuildLineTable.tsx:639 msgid "Stock has been deallocated" -msgstr "" +msgstr "Το απόθεμα αποδεσμεύτηκε" -#: src/tables/build/BuildLineTable.tsx:771 +#: src/tables/build/BuildLineTable.tsx:778 msgid "Build Stock" -msgstr "" +msgstr "Κατασκευή αποθέματος" -#: src/tables/build/BuildLineTable.tsx:784 +#: src/tables/build/BuildLineTable.tsx:791 #: src/tables/sales/SalesOrderLineItemTable.tsx:487 msgid "View Part" -msgstr "" +msgstr "Προβολή Προϊόντος" #: src/tables/build/BuildOrderTable.tsx:116 #~ msgid "Cascade" @@ -9677,28 +9761,28 @@ msgstr "" #: src/tables/sales/ReturnOrderTable.tsx:79 #: src/tables/sales/SalesOrderTable.tsx:80 msgid "Has Target Date" -msgstr "" +msgstr "Έχει ημερομηνία στόχο" #: src/tables/build/BuildOrderTable.tsx:167 #: src/tables/purchasing/PurchaseOrderTable.tsx:84 #: src/tables/sales/ReturnOrderTable.tsx:80 #: src/tables/sales/SalesOrderTable.tsx:81 msgid "Show orders with a target date" -msgstr "" +msgstr "Εμφάνιση παραγγελιών με ημερομηνία στόχο" #: src/tables/build/BuildOrderTable.tsx:172 #: src/tables/purchasing/PurchaseOrderTable.tsx:89 #: src/tables/sales/ReturnOrderTable.tsx:85 #: src/tables/sales/SalesOrderTable.tsx:86 msgid "Has Start Date" -msgstr "" +msgstr "Έχει ημερομηνία έναρξης" #: src/tables/build/BuildOrderTable.tsx:173 #: src/tables/purchasing/PurchaseOrderTable.tsx:90 #: src/tables/sales/ReturnOrderTable.tsx:86 #: src/tables/sales/SalesOrderTable.tsx:87 msgid "Show orders with a start date" -msgstr "" +msgstr "Εμφάνιση παραγγελιών με ημερομηνία έναρξης" #: src/tables/build/BuildOrderTable.tsx:179 #~ msgid "Filter by user who issued this order" @@ -9706,7 +9790,7 @@ msgstr "" #: src/tables/build/BuildOutputTable.tsx:100 msgid "Build Output Stock Allocation" -msgstr "" +msgstr "Κατανομή αποθέματος εξόδου κατασκευής" #: src/tables/build/BuildOutputTable.tsx:161 #~ msgid "Delete build output" @@ -9715,11 +9799,11 @@ msgstr "" #: src/tables/build/BuildOutputTable.tsx:290 #: src/tables/build/BuildOutputTable.tsx:475 msgid "Add Build Output" -msgstr "" +msgstr "Προσθήκη εξόδου κατασκευής" #: src/tables/build/BuildOutputTable.tsx:293 msgid "Build output created" -msgstr "" +msgstr "Η έξοδος κατασκευής δημιουργήθηκε" #: src/tables/build/BuildOutputTable.tsx:304 #~ msgid "Edit build output" @@ -9728,41 +9812,41 @@ msgstr "" #: src/tables/build/BuildOutputTable.tsx:346 #: src/tables/build/BuildOutputTable.tsx:543 msgid "Edit Build Output" -msgstr "" +msgstr "Επεξεργασία εξόδου κατασκευής" #: src/tables/build/BuildOutputTable.tsx:362 msgid "This action will deallocate all stock from the selected build output" -msgstr "" +msgstr "Αυτή η ενέργεια θα αποδεσμεύσει όλο το απόθεμα από την επιλεγμένη έξοδο κατασκευής" #: src/tables/build/BuildOutputTable.tsx:387 msgid "Serialize Build Output" -msgstr "" +msgstr "Σειριοποίηση εξόδου κατασκευής" #: src/tables/build/BuildOutputTable.tsx:405 -#: src/tables/part/PartTestResultTable.tsx:310 +#: src/tables/part/PartTestResultTable.tsx:318 #: src/tables/stock/StockItemTable.tsx:328 msgid "Filter by stock status" -msgstr "" +msgstr "Φιλτράρισμα κατά κατάσταση αποθέματος" #: src/tables/build/BuildOutputTable.tsx:442 msgid "Complete selected outputs" -msgstr "" +msgstr "Ολοκλήρωση επιλεγμένων εξόδων" #: src/tables/build/BuildOutputTable.tsx:453 msgid "Scrap selected outputs" -msgstr "" +msgstr "Απόρριψη επιλεγμένων εξόδων" #: src/tables/build/BuildOutputTable.tsx:464 msgid "Cancel selected outputs" -msgstr "" +msgstr "Ακύρωση επιλεγμένων εξόδων" #: src/tables/build/BuildOutputTable.tsx:494 msgid "Allocate" -msgstr "" +msgstr "Κατανομή" #: src/tables/build/BuildOutputTable.tsx:495 msgid "Allocate stock to build output" -msgstr "" +msgstr "Κατανομή αποθέματος στην έξοδο κατασκευής" #: src/tables/build/BuildOutputTable.tsx:498 #~ msgid "View Build Output" @@ -9770,73 +9854,73 @@ msgstr "" #: src/tables/build/BuildOutputTable.tsx:508 msgid "Deallocate" -msgstr "" +msgstr "Αποδέσμευση" #: src/tables/build/BuildOutputTable.tsx:509 msgid "Deallocate stock from build output" -msgstr "" +msgstr "Αποδέσμευση αποθέματος από την έξοδο κατασκευής" #: src/tables/build/BuildOutputTable.tsx:523 msgid "Serialize build output" -msgstr "" +msgstr "Σειριοποίηση εξόδου κατασκευής" #: src/tables/build/BuildOutputTable.tsx:534 msgid "Complete build output" -msgstr "" +msgstr "Ολοκλήρωση εξόδου κατασκευής" #: src/tables/build/BuildOutputTable.tsx:550 msgid "Scrap" -msgstr "" +msgstr "Απόρριψη" #: src/tables/build/BuildOutputTable.tsx:551 msgid "Scrap build output" -msgstr "" +msgstr "Απόρριψη εξόδου κατασκευής" #: src/tables/build/BuildOutputTable.tsx:561 msgid "Cancel build output" -msgstr "" +msgstr "Ακύρωση εξόδου κατασκευής" #: src/tables/build/BuildOutputTable.tsx:610 msgid "Allocated Lines" -msgstr "" +msgstr "Κατανεμημένες γραμμές" #: src/tables/build/BuildOutputTable.tsx:625 msgid "Required Tests" -msgstr "" +msgstr "Απαιτούμενες δοκιμές" #: src/tables/build/BuildOutputTable.tsx:700 msgid "External Build" -msgstr "" +msgstr "Εξωτερική κατασκευή" #: src/tables/build/BuildOutputTable.tsx:702 msgid "This build order is fulfilled by an external purchase order" -msgstr "" +msgstr "Αυτή η εντολή κατασκευής εκτελείται μέσω εξωτερικής εντολής αγοράς" #: src/tables/company/AddressTable.tsx:122 #: src/tables/company/AddressTable.tsx:187 msgid "Add Address" -msgstr "" +msgstr "Προσθήκη διεύθυνσης" #: src/tables/company/AddressTable.tsx:127 msgid "Address created" -msgstr "" +msgstr "Η διεύθυνση δημιουργήθηκε" #: src/tables/company/AddressTable.tsx:136 msgid "Edit Address" -msgstr "" +msgstr "Επεξεργασία διεύθυνσης" #: src/tables/company/AddressTable.tsx:144 msgid "Delete Address" -msgstr "" +msgstr "Διαγραφή διεύθυνσης" #: src/tables/company/AddressTable.tsx:145 msgid "Are you sure you want to delete this address?" -msgstr "" +msgstr "Είστε βέβαιοι ότι θέλετε να διαγράψετε αυτή τη διεύθυνση;" #: src/tables/company/CompanyTable.tsx:70 #: src/tables/company/CompanyTable.tsx:120 msgid "Add Company" -msgstr "" +msgstr "Προσθήκη εταιρείας" #: src/tables/company/CompanyTable.tsx:71 #~ msgid "New Company" @@ -9844,39 +9928,39 @@ msgstr "" #: src/tables/company/CompanyTable.tsx:92 msgid "Show active companies" -msgstr "" +msgstr "Εμφάνιση ενεργών εταιρειών" #: src/tables/company/CompanyTable.tsx:97 msgid "Show companies which are suppliers" -msgstr "" +msgstr "Εμφάνιση εταιρειών που είναι προμηθευτές" #: src/tables/company/CompanyTable.tsx:102 msgid "Show companies which are manufacturers" -msgstr "" +msgstr "Εμφάνιση εταιρειών που είναι κατασκευαστές" #: src/tables/company/CompanyTable.tsx:107 msgid "Show companies which are customers" -msgstr "" +msgstr "Εμφάνιση εταιρειών που είναι πελάτες" #: src/tables/company/ContactTable.tsx:99 msgid "Edit Contact" -msgstr "" +msgstr "Επεξεργασία επαφής" #: src/tables/company/ContactTable.tsx:106 msgid "Add Contact" -msgstr "" +msgstr "Προσθήκη επαφής" #: src/tables/company/ContactTable.tsx:117 msgid "Delete Contact" -msgstr "" +msgstr "Διαγραφή επαφής" #: src/tables/company/ContactTable.tsx:158 msgid "Add contact" -msgstr "" +msgstr "Προσθήκη επαφής" #: src/tables/general/AttachmentTable.tsx:108 msgid "Uploading file {filename}" -msgstr "" +msgstr "Μεταφόρτωση αρχείου {filename}" #: src/tables/general/AttachmentTable.tsx:139 #~ msgid "File uploaded" @@ -9889,23 +9973,23 @@ msgstr "" #: src/tables/general/AttachmentTable.tsx:160 #: src/tables/general/AttachmentTable.tsx:174 msgid "Uploading File" -msgstr "" +msgstr "Μεταφόρτωση αρχείου" #: src/tables/general/AttachmentTable.tsx:185 msgid "File Uploaded" -msgstr "" +msgstr "Το αρχείο μεταφορτώθηκε" #: src/tables/general/AttachmentTable.tsx:186 msgid "File {name} uploaded successfully" -msgstr "" +msgstr "Το αρχείο {name} μεταφορτώθηκε με επιτυχία" #: src/tables/general/AttachmentTable.tsx:202 msgid "File could not be uploaded" -msgstr "" +msgstr "Το αρχείο δεν μπόρεσε να μεταφορτωθεί" #: src/tables/general/AttachmentTable.tsx:253 msgid "Upload Attachment" -msgstr "" +msgstr "Μεταφόρτωση συνημμένου" #: src/tables/general/AttachmentTable.tsx:254 #~ msgid "Upload attachment" @@ -9913,93 +9997,224 @@ msgstr "" #: src/tables/general/AttachmentTable.tsx:263 msgid "Edit Attachment" -msgstr "" +msgstr "Επεξεργασία συνημμένου" #: src/tables/general/AttachmentTable.tsx:277 msgid "Delete Attachment" -msgstr "" +msgstr "Διαγραφή συνημμένου" #: src/tables/general/AttachmentTable.tsx:287 msgid "Is Link" -msgstr "" +msgstr "Είναι σύνδεσμος" #: src/tables/general/AttachmentTable.tsx:288 msgid "Show link attachments" -msgstr "" +msgstr "Εμφάνιση συνημμένων συνδέσμων" #: src/tables/general/AttachmentTable.tsx:292 msgid "Is File" -msgstr "" +msgstr "Είναι αρχείο" #: src/tables/general/AttachmentTable.tsx:293 msgid "Show file attachments" -msgstr "" +msgstr "Εμφάνιση συνημμένων αρχείων" #: src/tables/general/AttachmentTable.tsx:302 msgid "Add attachment" -msgstr "" +msgstr "Προσθήκη συνημμένου" #: src/tables/general/AttachmentTable.tsx:313 msgid "Add external link" -msgstr "" +msgstr "Προσθήκη εξωτερικού συνδέσμου" #: src/tables/general/AttachmentTable.tsx:361 msgid "No attachments found" -msgstr "" +msgstr "Δεν βρέθηκαν συνημμένα" #: src/tables/general/AttachmentTable.tsx:400 msgid "Drag attachment file here to upload" -msgstr "" +msgstr "Σύρετε το συνημμένο εδώ για μεταφόρτωση" #: src/tables/general/BarcodeScanTable.tsx:35 msgid "Item" -msgstr "" +msgstr "Προϊόν" #: src/tables/general/BarcodeScanTable.tsx:50 msgid "Model" -msgstr "" +msgstr "Μοντέλο" #: src/tables/general/BarcodeScanTable.tsx:75 msgid "View Item" -msgstr "" +msgstr "Προβολή Προϊόντος" #: src/tables/general/ExtraLineItemTable.tsx:95 -#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:299 -#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:403 +#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:300 +#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:405 #: src/tables/sales/ReturnOrderLineItemTable.tsx:83 #: src/tables/sales/ReturnOrderLineItemTable.tsx:187 #: src/tables/sales/SalesOrderLineItemTable.tsx:252 #: src/tables/sales/SalesOrderLineItemTable.tsx:357 msgid "Add Line Item" -msgstr "" +msgstr "Προσθήκη γραμμής" #: src/tables/general/ExtraLineItemTable.tsx:108 -#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:320 +#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:322 #: src/tables/sales/ReturnOrderLineItemTable.tsx:96 #: src/tables/sales/SalesOrderLineItemTable.tsx:271 msgid "Edit Line Item" -msgstr "" +msgstr "Επεξεργασία γραμμής" #: src/tables/general/ExtraLineItemTable.tsx:117 -#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:329 +#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:331 #: src/tables/sales/ReturnOrderLineItemTable.tsx:105 #: src/tables/sales/SalesOrderLineItemTable.tsx:280 msgid "Delete Line Item" -msgstr "" +msgstr "Διαγραφή γραμμής" #: src/tables/general/ExtraLineItemTable.tsx:155 msgid "Add Extra Line Item" +msgstr "Προσθήκη επιπλέον γραμμής" + +#: src/tables/general/ParameterTable.tsx:88 +msgid "Internal Units" +msgstr "Εσωτερικές μονάδες" + +#: src/tables/general/ParameterTable.tsx:108 +#: src/tables/general/ParameterTable.tsx:123 +msgid "Updated By" +msgstr "Ενημερώθηκε από" + +#: src/tables/general/ParameterTable.tsx:118 +msgid "Show parameters for enabled templates" msgstr "" +#: src/tables/general/ParameterTable.tsx:124 +msgid "Filter by user who last updated the parameter" +msgstr "Φιλτράρισμα ανά χρήστη που ενημέρωσε τελευταίος την παράμετρο" + +#: src/tables/general/ParameterTable.tsx:154 +msgid "Import Parameters" +msgstr "" + +#: src/tables/general/ParameterTable.tsx:164 +#: src/tables/general/ParametricDataTable.tsx:261 +#: src/tables/general/ParametricDataTable.tsx:392 +msgid "Add Parameter" +msgstr "Προσθήκη παραμέτρου" + +#: src/tables/general/ParameterTable.tsx:175 +#: src/tables/general/ParameterTable.tsx:222 +#: src/tables/general/ParametricDataTable.tsx:285 +msgid "Edit Parameter" +msgstr "Επεξεργασία παραμέτρου" + +#: src/tables/general/ParameterTable.tsx:183 +#: src/tables/general/ParameterTable.tsx:230 +msgid "Delete Parameter" +msgstr "Διαγραφή παραμέτρου" + +#: src/tables/general/ParameterTable.tsx:191 +msgid "Add Parameters" +msgstr "" + +#: src/tables/general/ParameterTable.tsx:197 +msgid "Create Parameter" +msgstr "" + +#: src/tables/general/ParameterTable.tsx:199 +msgid "Create a new parameter" +msgstr "" + +#: src/tables/general/ParameterTable.tsx:208 +msgid "Import parameters from a file" +msgstr "" + +#: src/tables/general/ParameterTemplateTable.tsx:48 +#: src/tables/general/ParameterTemplateTable.tsx:197 +msgid "Add Parameter Template" +msgstr "Προσθήκη προτύπου παραμέτρου" + +#: src/tables/general/ParameterTemplateTable.tsx:64 +msgid "Duplicate Parameter Template" +msgstr "Αντιγραφή προτύπου παραμέτρου" + +#: src/tables/general/ParameterTemplateTable.tsx:78 +msgid "Delete Parameter Template" +msgstr "Διαγραφή προτύπου παραμέτρου" + +#: src/tables/general/ParameterTemplateTable.tsx:85 +msgid "Edit Parameter Template" +msgstr "Επεξεργασία προτύπου παραμέτρου" + +#: src/tables/general/ParameterTemplateTable.tsx:138 +msgid "Checkbox" +msgstr "Checkbox" + +#: src/tables/general/ParameterTemplateTable.tsx:139 +msgid "Show checkbox templates" +msgstr "Εμφάνιση προτύπων checkbox" + +#: src/tables/general/ParameterTemplateTable.tsx:143 +msgid "Has choices" +msgstr "Έχει επιλογές" + +#: src/tables/general/ParameterTemplateTable.tsx:144 +msgid "Show templates with choices" +msgstr "Εμφάνιση προτύπων με επιλογές" + +#: src/tables/general/ParameterTemplateTable.tsx:148 +#: src/tables/part/PartTable.tsx:245 +msgid "Has Units" +msgstr "Έχει μονάδες" + +#: src/tables/general/ParameterTemplateTable.tsx:149 +msgid "Show templates with units" +msgstr "Εμφάνιση προτύπων με μονάδες" + +#: src/tables/general/ParameterTemplateTable.tsx:154 +msgid "Show enabled templates" +msgstr "" + +#: src/tables/general/ParameterTemplateTable.tsx:158 +#: src/tables/settings/ImportSessionTable.tsx:111 +#: src/tables/settings/TemplateTable.tsx:368 +msgid "Model Type" +msgstr "Τύπος μοντέλου" + +#: src/tables/general/ParameterTemplateTable.tsx:159 +msgid "Filter by model type" +msgstr "" + +#: src/tables/general/ParametricDataTable.tsx:79 +msgid "Click to edit" +msgstr "Κάντε κλικ για επεξεργασία" + +#: src/tables/general/ParametricDataTableFilters.tsx:36 +msgid "True" +msgstr "Αληθές" + +#: src/tables/general/ParametricDataTableFilters.tsx:37 +msgid "False" +msgstr "Ψευδές" + +#: src/tables/general/ParametricDataTableFilters.tsx:47 +#: src/tables/general/ParametricDataTableFilters.tsx:80 +msgid "Select a choice" +msgstr "Επιλέξτε τιμή" + +#: src/tables/general/ParametricDataTableFilters.tsx:100 +msgid "Enter a value" +msgstr "Εισαγάγετε μια τιμή" + #: src/tables/machine/MachineListTable.tsx:133 msgid "Machine restarted" -msgstr "" +msgstr "Το μηχάνημα επανεκκινήθηκε" #: src/tables/machine/MachineListTable.tsx:235 #: src/tables/machine/MachineListTable.tsx:297 #: src/tables/machine/MachineListTable.tsx:729 msgid "Edit machine" -msgstr "" +msgstr "Επεξεργασία μηχανήματος" #: src/tables/machine/MachineListTable.tsx:235 #~ msgid "Are you sure you want to remove the machine \"{0}\"?" @@ -10008,26 +10223,26 @@ msgstr "" #: src/tables/machine/MachineListTable.tsx:249 #: src/tables/machine/MachineListTable.tsx:301 msgid "Delete machine" -msgstr "" +msgstr "Διαγραφή μηχανήματος" #: src/tables/machine/MachineListTable.tsx:250 #: src/tables/machine/MachineListTable.tsx:692 msgid "Machine successfully deleted." -msgstr "" +msgstr "Το μηχάνημα διαγράφηκε με επιτυχία." #: src/tables/machine/MachineListTable.tsx:255 #: src/tables/machine/MachineListTable.tsx:697 msgid "Are you sure you want to remove this machine?" -msgstr "" +msgstr "Είστε βέβαιοι ότι θέλετε να αφαιρέσετε αυτό το μηχάνημα;" #: src/tables/machine/MachineListTable.tsx:285 msgid "Machine" -msgstr "" +msgstr "Μηχάνημα" #: src/tables/machine/MachineListTable.tsx:290 #: src/tables/machine/MachineListTable.tsx:568 msgid "Restart required" -msgstr "" +msgstr "Απαιτείται επανεκκίνηση" #: src/tables/machine/MachineListTable.tsx:291 #~ msgid "Machine information" @@ -10035,19 +10250,19 @@ msgstr "" #: src/tables/machine/MachineListTable.tsx:294 msgid "Machine Actions" -msgstr "" +msgstr "Ενέργειες μηχανήματος" #: src/tables/machine/MachineListTable.tsx:306 msgid "Restart" -msgstr "" +msgstr "Επανεκκίνηση" #: src/tables/machine/MachineListTable.tsx:308 msgid "Restart machine" -msgstr "" +msgstr "Επανεκκίνηση μηχανήματος" #: src/tables/machine/MachineListTable.tsx:310 msgid "manual restart required" -msgstr "" +msgstr "απαιτείται χειροκίνητη επανεκκίνηση" #: src/tables/machine/MachineListTable.tsx:315 #~ msgid "Machine Information" @@ -10055,29 +10270,29 @@ msgstr "" #: src/tables/machine/MachineListTable.tsx:343 msgid "General" -msgstr "" +msgstr "Γενικά" #: src/tables/machine/MachineListTable.tsx:353 #: src/tables/machine/MachineListTable.tsx:804 msgid "Machine Type" -msgstr "" +msgstr "Τύπος μηχανήματος" #: src/tables/machine/MachineListTable.tsx:366 msgid "Machine Driver" -msgstr "" +msgstr "Οδηγός μηχανήματος" #: src/tables/machine/MachineListTable.tsx:381 msgid "Initialized" -msgstr "" +msgstr "Αρχικοποιήθηκε" #: src/tables/machine/MachineListTable.tsx:410 -#: src/tables/machine/MachineTypeTable.tsx:307 +#: src/tables/machine/MachineTypeTable.tsx:305 msgid "No errors reported" -msgstr "" +msgstr "Δεν αναφέρθηκαν σφάλματα" #: src/tables/machine/MachineListTable.tsx:431 msgid "Properties" -msgstr "" +msgstr "Ιδιότητες" #: src/tables/machine/MachineListTable.tsx:494 #~ msgid "Create machine" @@ -10085,7 +10300,7 @@ msgstr "" #: src/tables/machine/MachineListTable.tsx:521 msgid "Driver Settings" -msgstr "" +msgstr "Ρυθμίσεις οδηγού" #: src/tables/machine/MachineListTable.tsx:561 #~ msgid "Machine detail" @@ -10093,91 +10308,91 @@ msgstr "" #: src/tables/machine/MachineListTable.tsx:648 msgid "Add Machine" -msgstr "" +msgstr "Προσθήκη μηχανήματος" #: src/tables/machine/MachineListTable.tsx:691 #: src/tables/machine/MachineListTable.tsx:736 msgid "Delete Machine" -msgstr "" +msgstr "Διαγραφή μηχανήματος" #: src/tables/machine/MachineListTable.tsx:704 msgid "Edit Machine" -msgstr "" +msgstr "Επεξεργασία μηχανήματος" #: src/tables/machine/MachineListTable.tsx:718 msgid "Restart Machine" -msgstr "" +msgstr "Επανεκκίνηση μηχανήματος" #: src/tables/machine/MachineListTable.tsx:749 msgid "Add machine" -msgstr "" +msgstr "Προσθήκη μηχανήματος" #: src/tables/machine/MachineListTable.tsx:765 msgid "Machine Detail" -msgstr "" +msgstr "Λεπτομέρειες μηχανήματος" #: src/tables/machine/MachineListTable.tsx:813 msgid "Driver" -msgstr "" +msgstr "Οδηγός" #: src/tables/machine/MachineTypeTable.tsx:72 msgid "Driver Type" -msgstr "" +msgstr "Τύπος οδηγού" #: src/tables/machine/MachineTypeTable.tsx:76 msgid "Builtin driver" -msgstr "" +msgstr "Ενσωματωμένος οδηγός" #: src/tables/machine/MachineTypeTable.tsx:99 #~ msgid "Machine type information" #~ msgstr "Machine type information" -#: src/tables/machine/MachineTypeTable.tsx:128 +#: src/tables/machine/MachineTypeTable.tsx:126 msgid "Not Found" -msgstr "" +msgstr "Δεν βρέθηκε" -#: src/tables/machine/MachineTypeTable.tsx:131 +#: src/tables/machine/MachineTypeTable.tsx:129 msgid "Machine type not found." -msgstr "" +msgstr "Ο τύπος μηχανήματος δεν βρέθηκε." -#: src/tables/machine/MachineTypeTable.tsx:141 +#: src/tables/machine/MachineTypeTable.tsx:139 msgid "Machine Type Information" -msgstr "" +msgstr "Πληροφορίες τύπου μηχανήματος" #: src/tables/machine/MachineTypeTable.tsx:148 #~ msgid "Available drivers" #~ msgstr "Available drivers" -#: src/tables/machine/MachineTypeTable.tsx:156 -#: src/tables/machine/MachineTypeTable.tsx:255 +#: src/tables/machine/MachineTypeTable.tsx:154 +#: src/tables/machine/MachineTypeTable.tsx:253 msgid "Slug" -msgstr "" +msgstr "Slug" -#: src/tables/machine/MachineTypeTable.tsx:167 -#: src/tables/machine/MachineTypeTable.tsx:276 +#: src/tables/machine/MachineTypeTable.tsx:165 +#: src/tables/machine/MachineTypeTable.tsx:274 msgid "Provider plugin" -msgstr "" +msgstr "Plugin παρόχου" -#: src/tables/machine/MachineTypeTable.tsx:179 -#: src/tables/machine/MachineTypeTable.tsx:288 +#: src/tables/machine/MachineTypeTable.tsx:177 +#: src/tables/machine/MachineTypeTable.tsx:286 msgid "Provider file" -msgstr "" +msgstr "Αρχείο παρόχου" -#: src/tables/machine/MachineTypeTable.tsx:194 +#: src/tables/machine/MachineTypeTable.tsx:192 msgid "Available Drivers" -msgstr "" +msgstr "Διαθέσιμοι οδηγοί" -#: src/tables/machine/MachineTypeTable.tsx:234 +#: src/tables/machine/MachineTypeTable.tsx:232 msgid "Machine driver not found." -msgstr "" +msgstr "Ο οδηγός μηχανήματος δεν βρέθηκε." -#: src/tables/machine/MachineTypeTable.tsx:242 +#: src/tables/machine/MachineTypeTable.tsx:240 msgid "Machine driver information" -msgstr "" +msgstr "Πληροφορίες οδηγού μηχανήματος" -#: src/tables/machine/MachineTypeTable.tsx:262 +#: src/tables/machine/MachineTypeTable.tsx:260 msgid "Machine type" -msgstr "" +msgstr "Τύπος μηχανήματος" #: src/tables/machine/MachineTypeTable.tsx:338 #~ msgid "Machine type detail" @@ -10187,230 +10402,146 @@ msgstr "" #~ msgid "Machine driver detail" #~ msgstr "Machine driver detail" -#: src/tables/machine/MachineTypeTable.tsx:362 +#: src/tables/machine/MachineTypeTable.tsx:360 msgid "Builtin type" -msgstr "" +msgstr "Ενσωματωμένος τύπος" -#: src/tables/machine/MachineTypeTable.tsx:371 +#: src/tables/machine/MachineTypeTable.tsx:369 msgid "Machine Type Detail" -msgstr "" +msgstr "Λεπτομέρειες τύπου μηχανήματος" -#: src/tables/machine/MachineTypeTable.tsx:381 +#: src/tables/machine/MachineTypeTable.tsx:379 msgid "Machine Driver Detail" -msgstr "" +msgstr "Λεπτομέρειες οδηγού μηχανήματος" #: src/tables/notifications/NotificationTable.tsx:26 msgid "Age" -msgstr "" +msgstr "Ηλικία" #: src/tables/notifications/NotificationTable.tsx:37 msgid "Notification" -msgstr "" +msgstr "Ειδοποίηση" #: src/tables/notifications/NotificationTable.tsx:41 #: src/tables/plugin/PluginErrorTable.tsx:37 #: src/tables/settings/ErrorTable.tsx:50 msgid "Message" -msgstr "" +msgstr "Μήνυμα" -#: src/tables/part/ParametricPartTable.tsx:78 -msgid "Click to edit" -msgstr "" +#: src/tables/part/ParametricPartTable.tsx:20 +msgid "Show active parts" +msgstr "Εμφάνιση ενεργών προϊόντων" + +#: src/tables/part/ParametricPartTable.tsx:25 +msgid "Show locked parts" +msgstr "Εμφάνιση κλειδωμένων προϊόντων" + +#: src/tables/part/ParametricPartTable.tsx:30 +msgid "Show assembly parts" +msgstr "Εμφάνιση προϊόντων συναρμολόγησης" #: src/tables/part/ParametricPartTable.tsx:82 #~ msgid "Edit parameter" #~ msgstr "Edit parameter" #: src/tables/part/ParametricPartTable.tsx:244 -msgid "Add Part Parameter" -msgstr "" +#~ msgid "Add Part Parameter" +#~ msgstr "Add Part Parameter" #: src/tables/part/ParametricPartTable.tsx:258 #: src/tables/part/PartParameterTable.tsx:164 #: src/tables/part/PartParameterTable.tsx:187 -msgid "Edit Part Parameter" -msgstr "" - -#: src/tables/part/ParametricPartTable.tsx:355 -msgid "Show active parts" -msgstr "" - -#: src/tables/part/ParametricPartTable.tsx:360 -msgid "Show locked parts" -msgstr "" - -#: src/tables/part/ParametricPartTable.tsx:365 -msgid "Show assembly parts" -msgstr "" - -#: src/tables/part/ParametricPartTableFilters.tsx:36 -msgid "True" -msgstr "" - -#: src/tables/part/ParametricPartTableFilters.tsx:37 -msgid "False" -msgstr "" - -#: src/tables/part/ParametricPartTableFilters.tsx:47 -#: src/tables/part/ParametricPartTableFilters.tsx:80 -msgid "Select a choice" -msgstr "" - -#: src/tables/part/ParametricPartTableFilters.tsx:100 -msgid "Enter a value" -msgstr "" +#~ msgid "Edit Part Parameter" +#~ msgstr "Edit Part Parameter" #: src/tables/part/PartBuildAllocationsTable.tsx:64 msgid "Assembly IPN" -msgstr "" +msgstr "IPN συναρμολόγησης" #: src/tables/part/PartBuildAllocationsTable.tsx:73 msgid "Part IPN" -msgstr "" +msgstr "IPN προϊόντος" #: src/tables/part/PartBuildAllocationsTable.tsx:91 msgid "Required Stock" -msgstr "" +msgstr "Απαιτούμενο απόθεμα" #: src/tables/part/PartBuildAllocationsTable.tsx:124 -#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:381 +#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:383 msgid "View Build Order" -msgstr "" +msgstr "Προβολή εντολής παραγωγής" #: src/tables/part/PartCategoryTable.tsx:51 msgid "You are subscribed to notifications for this category" -msgstr "" +msgstr "Έχετε εγγραφεί σε ειδοποιήσεις για αυτήν την κατηγορία" #: src/tables/part/PartCategoryTable.tsx:84 #: src/tables/part/PartTable.tsx:221 msgid "Include Subcategories" -msgstr "" +msgstr "Συμπερίληψη υποκατηγοριών" #: src/tables/part/PartCategoryTable.tsx:85 msgid "Include subcategories in results" -msgstr "" +msgstr "Συμπερίλαβε τις υποκατηγορίες στα αποτελέσματα" #: src/tables/part/PartCategoryTable.tsx:90 msgid "Show structural categories" -msgstr "" +msgstr "Εμφάνιση δομικών κατηγοριών" #: src/tables/part/PartCategoryTable.tsx:95 msgid "Show categories to which the user is subscribed" -msgstr "" +msgstr "Εμφάνιση κατηγοριών στις οποίες ο χρήστης είναι εγγεγραμμένος" #: src/tables/part/PartCategoryTable.tsx:104 msgid "New Part Category" -msgstr "" +msgstr "Νέα κατηγορία προϊόντων" #: src/tables/part/PartCategoryTable.tsx:130 msgid "Set Parent Category" -msgstr "" +msgstr "Ορισμός γονικής κατηγορίας" #: src/tables/part/PartCategoryTable.tsx:148 #: src/tables/stock/StockLocationTable.tsx:147 msgid "Set Parent" -msgstr "" +msgstr "Ορισμός γονικού" #: src/tables/part/PartCategoryTable.tsx:150 msgid "Set parent category for the selected items" -msgstr "" +msgstr "Ορισμός γονικής κατηγορίας για τα επιλεγμένα στοιχεία" #: src/tables/part/PartCategoryTable.tsx:161 msgid "Add Part Category" -msgstr "" +msgstr "Προσθήκη κατηγορίας προϊόντων" #: src/tables/part/PartCategoryTemplateTable.tsx:49 #: src/tables/part/PartCategoryTemplateTable.tsx:143 msgid "Add Category Parameter" -msgstr "" +msgstr "Προσθήκη παραμέτρου κατηγορίας" #: src/tables/part/PartCategoryTemplateTable.tsx:57 msgid "Edit Category Parameter" -msgstr "" +msgstr "Επεξεργασία παραμέτρου κατηγορίας" #: src/tables/part/PartCategoryTemplateTable.tsx:65 msgid "Delete Category Parameter" -msgstr "" - -#: src/tables/part/PartCategoryTemplateTable.tsx:87 -msgid "Parameter Template" -msgstr "" +msgstr "Διαγραφή παραμέτρου κατηγορίας" #: src/tables/part/PartCategoryTemplateTable.tsx:93 #~ msgid "[{0}]" #~ msgstr "[{0}]" -#: src/tables/part/PartParameterTable.tsx:108 -msgid "Internal Units" -msgstr "" - -#: src/tables/part/PartParameterTable.tsx:128 -#: src/tables/part/PartParameterTable.tsx:138 -msgid "Updated By" -msgstr "" - -#: src/tables/part/PartParameterTable.tsx:139 -msgid "Filter by user who last updated the parameter" -msgstr "" - #: src/tables/part/PartParameterTable.tsx:148 -msgid "New Part Parameter" -msgstr "" +#~ msgid "New Part Parameter" +#~ msgstr "New Part Parameter" #: src/tables/part/PartParameterTable.tsx:173 #: src/tables/part/PartParameterTable.tsx:195 -msgid "Delete Part Parameter" -msgstr "" +#~ msgid "Delete Part Parameter" +#~ msgstr "Delete Part Parameter" #: src/tables/part/PartParameterTable.tsx:213 -msgid "Add parameter" -msgstr "" - -#: src/tables/part/PartParameterTable.tsx:232 -msgid "Part parameters cannot be edited, as the part is locked" -msgstr "" - -#: src/tables/part/PartParameterTemplateTable.tsx:36 -msgid "Checkbox" -msgstr "" - -#: src/tables/part/PartParameterTemplateTable.tsx:37 -msgid "Show checkbox templates" -msgstr "" - -#: src/tables/part/PartParameterTemplateTable.tsx:41 -msgid "Has choices" -msgstr "" - -#: src/tables/part/PartParameterTemplateTable.tsx:42 -msgid "Show templates with choices" -msgstr "" - -#: src/tables/part/PartParameterTemplateTable.tsx:46 -#: src/tables/part/PartTable.tsx:245 -msgid "Has Units" -msgstr "" - -#: src/tables/part/PartParameterTemplateTable.tsx:47 -msgid "Show templates with units" -msgstr "" - -#: src/tables/part/PartParameterTemplateTable.tsx:91 -#: src/tables/part/PartParameterTemplateTable.tsx:166 -msgid "Add Parameter Template" -msgstr "" - -#: src/tables/part/PartParameterTemplateTable.tsx:105 -msgid "Duplicate Parameter Template" -msgstr "" - -#: src/tables/part/PartParameterTemplateTable.tsx:117 -msgid "Edit Parameter Template" -msgstr "" - -#: src/tables/part/PartParameterTemplateTable.tsx:128 -msgid "Delete Parameter Template" -msgstr "" +#~ msgid "Add parameter" +#~ msgstr "Add parameter" #: src/tables/part/PartParameterTemplateTable.tsx:141 #~ msgid "Add parameter template" @@ -10419,148 +10550,148 @@ msgstr "" #: src/tables/part/PartPurchaseOrdersTable.tsx:79 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:197 msgid "Total Quantity" -msgstr "" +msgstr "Συνολική ποσότητα" #: src/tables/part/PartPurchaseOrdersTable.tsx:123 msgid "Show pending orders" -msgstr "" +msgstr "Εμφάνιση εκκρεμών παραγγελιών" #: src/tables/part/PartPurchaseOrdersTable.tsx:128 msgid "Show received items" -msgstr "" +msgstr "Εμφάνιση παραληφθέντων Προϊόντων" #: src/tables/part/PartSalesAllocationsTable.tsx:90 -#: src/tables/sales/SalesOrderShipmentTable.tsx:218 +#: src/tables/sales/SalesOrderShipmentTable.tsx:263 msgid "View Sales Order" -msgstr "" +msgstr "Προβολή παραγγελίας πώλησης" #: src/tables/part/PartTable.tsx:99 msgid "Minimum stock" -msgstr "" +msgstr "Ελάχιστο απόθεμα" #: src/tables/part/PartTable.tsx:198 msgid "Filter by part active status" -msgstr "" +msgstr "Φιλτράρισμα κατά ενεργή κατάσταση προϊόντος" #: src/tables/part/PartTable.tsx:204 msgid "Filter by part locked status" -msgstr "" +msgstr "Φιλτράρισμα κατά κλειδωμένα προϊόντα" #: src/tables/part/PartTable.tsx:210 msgid "Filter by assembly attribute" -msgstr "" +msgstr "Φιλτράρισμα κατά χαρακτηριστικό συναρμολόγησης" #: src/tables/part/PartTable.tsx:215 msgid "BOM Valid" -msgstr "" +msgstr "Έγκυρο BOM" #: src/tables/part/PartTable.tsx:216 msgid "Filter by parts with a valid BOM" -msgstr "" +msgstr "Φιλτράρισμα προϊόντων με έγκυρο BOM" #: src/tables/part/PartTable.tsx:222 msgid "Include parts in subcategories" -msgstr "" +msgstr "Συμπερίληψη προϊόντων σε υποκατηγορίες" #: src/tables/part/PartTable.tsx:228 msgid "Filter by component attribute" -msgstr "" +msgstr "Φιλτράρισμα κατά χαρακτηριστικό Προϊόντος" #: src/tables/part/PartTable.tsx:234 msgid "Filter by testable attribute" -msgstr "" +msgstr "Φιλτράρισμα κατά δυνατότητα δοκιμής" #: src/tables/part/PartTable.tsx:240 msgid "Filter by trackable attribute" -msgstr "" +msgstr "Φιλτράρισμα κατά δυνατότητα ιχνηλάτησης" #: src/tables/part/PartTable.tsx:246 msgid "Filter by parts which have units" -msgstr "" +msgstr "Φιλτράρισμα προϊόντων με μονάδες" #: src/tables/part/PartTable.tsx:251 msgid "Has IPN" -msgstr "" +msgstr "Έχει IPN" #: src/tables/part/PartTable.tsx:252 msgid "Filter by parts which have an internal part number" -msgstr "" +msgstr "Φιλτράρισμα προϊόντων με εσωτερικό κωδικό" #: src/tables/part/PartTable.tsx:257 msgid "Has Stock" -msgstr "" +msgstr "Έχει απόθεμα" #: src/tables/part/PartTable.tsx:258 msgid "Filter by parts which have stock" -msgstr "" +msgstr "Φιλτράρισμα προϊόντων με διαθέσιμο απόθεμα" #: src/tables/part/PartTable.tsx:264 msgid "Filter by parts which have low stock" -msgstr "" +msgstr "Φιλτράρισμα προϊόντων με χαμηλό απόθεμα" #: src/tables/part/PartTable.tsx:269 msgid "Purchaseable" -msgstr "" +msgstr "Αγοράσιμα" #: src/tables/part/PartTable.tsx:270 msgid "Filter by parts which are purchaseable" -msgstr "" +msgstr "Φιλτράρισμα προϊόντων που μπορούν να αγοραστούν" #: src/tables/part/PartTable.tsx:275 msgid "Salable" -msgstr "" +msgstr "Πωλήσιμα" #: src/tables/part/PartTable.tsx:276 msgid "Filter by parts which are salable" -msgstr "" +msgstr "Φιλτράρισμα προϊόντων που μπορούν να πωληθούν" #: src/tables/part/PartTable.tsx:282 msgid "Filter by parts which are virtual" -msgstr "" +msgstr "Φιλτράρισμα εικονικών προϊόντων" #: src/tables/part/PartTable.tsx:286 msgid "Not Virtual" -msgstr "" +msgstr "Μη εικονικά" #: src/tables/part/PartTable.tsx:291 msgid "Is Template" -msgstr "" +msgstr "Είναι πρότυπο" #: src/tables/part/PartTable.tsx:292 msgid "Filter by parts which are templates" -msgstr "" +msgstr "Φιλτράρισμα προϊόντων που είναι πρότυπα" #: src/tables/part/PartTable.tsx:297 msgid "Is Variant" -msgstr "" +msgstr "Είναι παραλλαγή" #: src/tables/part/PartTable.tsx:298 msgid "Filter by parts which are variants" -msgstr "" +msgstr "Φιλτράρισμα προϊόντων που είναι παραλλαγές" #: src/tables/part/PartTable.tsx:303 msgid "Is Revision" -msgstr "" +msgstr "Είναι αναθεώρηση" #: src/tables/part/PartTable.tsx:304 msgid "Filter by parts which are revisions" -msgstr "" +msgstr "Φιλτράρισμα προϊόντων που είναι αναθεωρήσεις" #: src/tables/part/PartTable.tsx:308 msgid "Has Revisions" -msgstr "" +msgstr "Έχει αναθεωρήσεις" #: src/tables/part/PartTable.tsx:309 msgid "Filter by parts which have revisions" -msgstr "" +msgstr "Φιλτράρισμα προϊόντων με αναθεωρήσεις" #: src/tables/part/PartTable.tsx:314 msgid "Filter by parts which have pricing information" -msgstr "" +msgstr "Φιλτράρισμα προϊόντων με πληροφορίες τιμολόγησης" #: src/tables/part/PartTable.tsx:320 msgid "Filter by parts which have available stock" -msgstr "" +msgstr "Φιλτράρισμα προϊόντων με διαθέσιμο απόθεμα" #: src/tables/part/PartTable.tsx:322 #~ msgid "Has Stocktake" @@ -10572,161 +10703,161 @@ msgstr "" #: src/tables/part/PartTable.tsx:326 msgid "Filter by parts to which the user is subscribed" -msgstr "" +msgstr "Φιλτράρισμα προϊόντων στα οποία ο χρήστης έχει εγγραφεί" #: src/tables/part/PartTable.tsx:377 msgid "Import Parts" -msgstr "" +msgstr "Εισαγωγή προϊόντων" #: src/tables/part/PartTable.tsx:464 #: src/tables/part/PartTable.tsx:512 msgid "Set Category" -msgstr "" +msgstr "Ορισμός κατηγορίας" #: src/tables/part/PartTable.tsx:514 msgid "Set category for selected parts" -msgstr "" +msgstr "Ορισμός κατηγορίας για τα επιλεγμένα προϊόντα" #: src/tables/part/PartTable.tsx:524 msgid "Order selected parts" -msgstr "" +msgstr "Παραγγελία επιλεγμένων προϊόντων" #: src/tables/part/PartTable.tsx:534 msgid "Add Parts" -msgstr "" +msgstr "Προσθήκη προϊόντων" #: src/tables/part/PartTable.tsx:540 msgid "Create Part" -msgstr "" +msgstr "Δημιουργία προϊόντος" #: src/tables/part/PartTable.tsx:542 msgid "Create a new part" -msgstr "" +msgstr "Δημιουργία νέου προϊόντος" #: src/tables/part/PartTable.tsx:548 msgid "Import parts from a file" -msgstr "" +msgstr "Εισαγωγή εξαρτημάτων από αρχείο" #: src/tables/part/PartTable.tsx:553 msgid "Import from Supplier" -msgstr "" +msgstr "Εισαγωγή από προμηθευτή" #: src/tables/part/PartTable.tsx:555 msgid "Import parts from a supplier plugin" -msgstr "" +msgstr "Εισαγωγή εξαρτημάτων από πρόσθετο προμηθευτή" #: src/tables/part/PartTestResultTable.tsx:103 #: src/tables/part/PartTestResultTable.tsx:181 -#: src/tables/part/PartTestResultTable.tsx:320 -#: src/tables/part/PartTestResultTable.tsx:334 +#: src/tables/part/PartTestResultTable.tsx:328 +#: src/tables/part/PartTestResultTable.tsx:342 #: src/tables/stock/StockItemTestResultTable.tsx:296 #: src/tables/stock/StockItemTestResultTable.tsx:368 #: src/tables/stock/StockItemTestResultTable.tsx:429 msgid "Add Test Result" -msgstr "" +msgstr "Προσθήκη αποτελέσματος δοκιμής" #: src/tables/part/PartTestResultTable.tsx:110 #: src/tables/stock/StockItemTestResultTable.tsx:298 msgid "Test result added" -msgstr "" +msgstr "Το αποτέλεσμα δοκιμής προστέθηκε" #: src/tables/part/PartTestResultTable.tsx:142 msgid "Add Test Results" -msgstr "" +msgstr "Προσθήκη αποτελεσμάτων δοκιμής" #: src/tables/part/PartTestResultTable.tsx:152 msgid "Test results added" -msgstr "" +msgstr "Τα αποτελέσματα δοκιμής προστέθηκαν" #: src/tables/part/PartTestResultTable.tsx:180 #: src/tables/stock/StockItemTestResultTable.tsx:197 msgid "No Result" -msgstr "" +msgstr "Κανένα αποτέλεσμα" -#: src/tables/part/PartTestResultTable.tsx:298 +#: src/tables/part/PartTestResultTable.tsx:306 msgid "Show build outputs currently in production" -msgstr "" +msgstr "Εμφάνιση εξόδων παραγωγής που βρίσκονται σε εξέλιξη" #: src/tables/part/PartTestTemplateTable.tsx:56 msgid "Test is defined for a parent template part" -msgstr "" +msgstr "Η δοκιμή έχει οριστεί για γονικό πρότυπο εξαρτήματος" #: src/tables/part/PartTestTemplateTable.tsx:70 msgid "Template Details" -msgstr "" +msgstr "Λεπτομέρειες προτύπου" #: src/tables/part/PartTestTemplateTable.tsx:80 msgid "Results" -msgstr "" +msgstr "Αποτελέσματα" #: src/tables/part/PartTestTemplateTable.tsx:113 msgid "Show required tests" -msgstr "" +msgstr "Εμφάνιση απαιτούμενων δοκιμών" #: src/tables/part/PartTestTemplateTable.tsx:118 msgid "Show enabled tests" -msgstr "" +msgstr "Εμφάνιση ενεργών δοκιμών" #: src/tables/part/PartTestTemplateTable.tsx:122 msgid "Requires Value" -msgstr "" +msgstr "Απαιτεί τιμή" #: src/tables/part/PartTestTemplateTable.tsx:123 msgid "Show tests that require a value" -msgstr "" +msgstr "Εμφάνιση δοκιμών που απαιτούν τιμή" #: src/tables/part/PartTestTemplateTable.tsx:127 msgid "Requires Attachment" -msgstr "" +msgstr "Απαιτεί συνημμένο" #: src/tables/part/PartTestTemplateTable.tsx:128 msgid "Show tests that require an attachment" -msgstr "" +msgstr "Εμφάνιση δοκιμών που απαιτούν συνημμένο" #: src/tables/part/PartTestTemplateTable.tsx:132 msgid "Include Inherited" -msgstr "" +msgstr "Συμπερίληψη κληρονομημένων" #: src/tables/part/PartTestTemplateTable.tsx:133 msgid "Show tests from inherited templates" -msgstr "" +msgstr "Εμφάνιση δοκιμών από κληρονομημένα πρότυπα" #: src/tables/part/PartTestTemplateTable.tsx:137 msgid "Has Results" -msgstr "" +msgstr "Έχει αποτελέσματα" #: src/tables/part/PartTestTemplateTable.tsx:138 msgid "Show tests which have recorded results" -msgstr "" +msgstr "Εμφάνιση δοκιμών με καταγεγραμμένα αποτελέσματα" #: src/tables/part/PartTestTemplateTable.tsx:160 #: src/tables/part/PartTestTemplateTable.tsx:243 msgid "Add Test Template" -msgstr "" +msgstr "Προσθήκη προτύπου δοκιμής" #: src/tables/part/PartTestTemplateTable.tsx:176 msgid "Edit Test Template" -msgstr "" +msgstr "Επεξεργασία προτύπου δοκιμής" #: src/tables/part/PartTestTemplateTable.tsx:187 msgid "Delete Test Template" -msgstr "" +msgstr "Διαγραφή προτύπου δοκιμής" #: src/tables/part/PartTestTemplateTable.tsx:189 msgid "This action cannot be reversed" -msgstr "" +msgstr "Αυτή η ενέργεια δεν μπορεί να αναιρεθεί" #: src/tables/part/PartTestTemplateTable.tsx:191 msgid "Any tests results associated with this template will be deleted" -msgstr "" +msgstr "Όλα τα αποτελέσματα δοκιμών που σχετίζονται με αυτό το πρότυπο θα διαγραφούν" #: src/tables/part/PartTestTemplateTable.tsx:209 msgid "View Parent Part" -msgstr "" +msgstr "Προβολή γονικού εξαρτήματος" #: src/tables/part/PartTestTemplateTable.tsx:263 msgid "Part templates cannot be edited, as the part is locked" -msgstr "" +msgstr "Τα πρότυπα εξαρτημάτων δεν μπορούν να επεξεργαστούν, καθώς το εξάρτημα είναι κλειδωμένο" #: src/tables/part/PartThumbTable.tsx:222 msgid "Select" @@ -10734,28 +10865,28 @@ msgstr "Επιλέξτε" #: src/tables/part/PartVariantTable.tsx:16 msgid "Show active variants" -msgstr "" +msgstr "Εμφάνιση ενεργών παραλλαγών" #: src/tables/part/PartVariantTable.tsx:20 msgid "Template" -msgstr "" +msgstr "Πρότυπο" #: src/tables/part/PartVariantTable.tsx:21 msgid "Show template variants" -msgstr "" +msgstr "Εμφάνιση παραλλαγών προτύπου" #: src/tables/part/PartVariantTable.tsx:26 msgid "Show virtual variants" -msgstr "" +msgstr "Εμφάνιση εικονικών παραλλαγών" #: src/tables/part/PartVariantTable.tsx:31 msgid "Show trackable variants" -msgstr "" +msgstr "Εμφάνιση ιχνηλάσιμων παραλλαγών" #: src/tables/part/RelatedPartTable.tsx:104 #: src/tables/part/RelatedPartTable.tsx:137 msgid "Add Related Part" -msgstr "" +msgstr "Προσθήκη σχετικού εξαρτήματος" #: src/tables/part/RelatedPartTable.tsx:109 #~ msgid "Add related part" @@ -10763,45 +10894,45 @@ msgstr "" #: src/tables/part/RelatedPartTable.tsx:119 msgid "Delete Related Part" -msgstr "" +msgstr "Διαγραφή σχετικού εξαρτήματος" #: src/tables/part/RelatedPartTable.tsx:126 msgid "Edit Related Part" -msgstr "" +msgstr "Επεξεργασία σχετικού εξαρτήματος" #: src/tables/part/SelectionListTable.tsx:64 #: src/tables/part/SelectionListTable.tsx:115 msgid "Add Selection List" -msgstr "" +msgstr "Προσθήκη λίστας επιλογής" #: src/tables/part/SelectionListTable.tsx:76 msgid "Edit Selection List" -msgstr "" +msgstr "Επεξεργασία λίστας επιλογής" #: src/tables/part/SelectionListTable.tsx:84 msgid "Delete Selection List" -msgstr "" +msgstr "Διαγραφή λίστας επιλογής" #: src/tables/plugin/PluginErrorTable.tsx:29 msgid "Stage" -msgstr "" +msgstr "Στάδιο" #: src/tables/plugin/PluginListTable.tsx:43 msgid "Plugin is active" -msgstr "" +msgstr "Το πρόσθετο είναι ενεργό" #: src/tables/plugin/PluginListTable.tsx:49 msgid "Plugin is inactive" -msgstr "" +msgstr "Το πρόσθετο είναι ανενεργό" #: src/tables/plugin/PluginListTable.tsx:56 msgid "Plugin is not installed" -msgstr "" +msgstr "Το πρόσθετο δεν είναι εγκατεστημένο" #: src/tables/plugin/PluginListTable.tsx:78 #: src/tables/settings/ExportSessionTable.tsx:33 msgid "Plugin" -msgstr "" +msgstr "Plugin" #: src/tables/plugin/PluginListTable.tsx:95 #~ msgid "Plugin with key {pluginKey} not found" @@ -10814,7 +10945,7 @@ msgstr "" #: src/tables/plugin/PluginListTable.tsx:106 #: src/tables/plugin/PluginListTable.tsx:422 msgid "Mandatory" -msgstr "" +msgstr "Υποχρεωτικό" #: src/tables/plugin/PluginListTable.tsx:113 #~ msgid "Plugin with id {id} not found" @@ -10822,7 +10953,7 @@ msgstr "" #: src/tables/plugin/PluginListTable.tsx:120 msgid "Description not available" -msgstr "" +msgstr "Δεν υπάρχει διαθέσιμη περιγραφή" #: src/tables/plugin/PluginListTable.tsx:122 #~ msgid "Plugin information" @@ -10844,19 +10975,19 @@ msgstr "" #: src/tables/plugin/PluginListTable.tsx:153 msgid "Confirm plugin activation" -msgstr "" +msgstr "Επιβεβαίωση ενεργοποίησης plugin" #: src/tables/plugin/PluginListTable.tsx:154 msgid "Confirm plugin deactivation" -msgstr "" +msgstr "Επιβεβαίωση απενεργοποίησης plugin" #: src/tables/plugin/PluginListTable.tsx:159 msgid "The selected plugin will be activated" -msgstr "" +msgstr "Το επιλεγμένο plugin θα ενεργοποιηθεί" #: src/tables/plugin/PluginListTable.tsx:160 msgid "The selected plugin will be deactivated" -msgstr "" +msgstr "Το επιλεγμένο plugin θα απενεργοποιηθεί" #: src/tables/plugin/PluginListTable.tsx:163 #~ msgid "Package information" @@ -10864,15 +10995,15 @@ msgstr "" #: src/tables/plugin/PluginListTable.tsx:178 msgid "Deactivate" -msgstr "" +msgstr "Απενεργοποίηση" #: src/tables/plugin/PluginListTable.tsx:192 msgid "Activate" -msgstr "" +msgstr "Ενεργοποίηση" #: src/tables/plugin/PluginListTable.tsx:193 msgid "Activate selected plugin" -msgstr "" +msgstr "Ενεργοποίηση επιλεγμένου plugin" #: src/tables/plugin/PluginListTable.tsx:197 #~ msgid "Plugin settings" @@ -10880,32 +11011,32 @@ msgstr "" #: src/tables/plugin/PluginListTable.tsx:205 msgid "Update selected plugin" -msgstr "" +msgstr "Ενημέρωση επιλεγμένου plugin" #: src/tables/plugin/PluginListTable.tsx:224 #: src/tables/stock/InstalledItemsTable.tsx:107 msgid "Uninstall" -msgstr "" +msgstr "Απεγκατάσταση" #: src/tables/plugin/PluginListTable.tsx:225 msgid "Uninstall selected plugin" -msgstr "" +msgstr "Απεγκατάσταση επιλεγμένου plugin" #: src/tables/plugin/PluginListTable.tsx:244 msgid "Delete selected plugin configuration" -msgstr "" +msgstr "Διαγραφή ρυθμίσεων του επιλεγμένου plugin" #: src/tables/plugin/PluginListTable.tsx:260 msgid "Activate Plugin" -msgstr "" +msgstr "Ενεργοποίηση Plugin" #: src/tables/plugin/PluginListTable.tsx:267 msgid "The plugin was activated" -msgstr "" +msgstr "Το plugin ενεργοποιήθηκε" #: src/tables/plugin/PluginListTable.tsx:268 msgid "The plugin was deactivated" -msgstr "" +msgstr "Το plugin απενεργοποιήθηκε" #: src/tables/plugin/PluginListTable.tsx:280 #~ msgid "Install plugin" @@ -10914,19 +11045,19 @@ msgstr "" #: src/tables/plugin/PluginListTable.tsx:281 #: src/tables/plugin/PluginListTable.tsx:368 msgid "Install Plugin" -msgstr "" +msgstr "Εγκατάσταση Plugin" #: src/tables/plugin/PluginListTable.tsx:294 msgid "Install" -msgstr "" +msgstr "Εγκατάσταση" #: src/tables/plugin/PluginListTable.tsx:295 msgid "Plugin installed successfully" -msgstr "" +msgstr "Το plugin εγκαταστάθηκε με επιτυχία" #: src/tables/plugin/PluginListTable.tsx:300 msgid "Uninstall Plugin" -msgstr "" +msgstr "Απεγκατάσταση Plugin" #: src/tables/plugin/PluginListTable.tsx:308 #~ msgid "This action cannot be undone." @@ -10934,23 +11065,23 @@ msgstr "" #: src/tables/plugin/PluginListTable.tsx:312 msgid "Confirm plugin uninstall" -msgstr "" +msgstr "Επιβεβαίωση απεγκατάστασης plugin" #: src/tables/plugin/PluginListTable.tsx:315 msgid "The selected plugin will be uninstalled." -msgstr "" +msgstr "Το επιλεγμένο plugin θα απεγκατασταθεί." #: src/tables/plugin/PluginListTable.tsx:320 msgid "Plugin uninstalled successfully" -msgstr "" +msgstr "Το plugin απεγκαταστάθηκε με επιτυχία" #: src/tables/plugin/PluginListTable.tsx:328 msgid "Delete Plugin" -msgstr "" +msgstr "Διαγραφή Plugin" #: src/tables/plugin/PluginListTable.tsx:329 msgid "Deleting this plugin configuration will remove all associated settings and data. Are you sure you want to delete this plugin?" -msgstr "" +msgstr "Η διαγραφή αυτής της ρύθμισης plugin θα αφαιρέσει όλες τις συνδεδεμένες ρυθμίσεις και δεδομένα. Είστε βέβαιοι ότι θέλετε να διαγράψετε αυτό το plugin;" #: src/tables/plugin/PluginListTable.tsx:338 #~ msgid "Deactivate Plugin" @@ -10958,11 +11089,11 @@ msgstr "" #: src/tables/plugin/PluginListTable.tsx:342 msgid "Plugins reloaded" -msgstr "" +msgstr "Τα plugins φορτώθηκαν ξανά" #: src/tables/plugin/PluginListTable.tsx:343 msgid "Plugins were reloaded successfully" -msgstr "" +msgstr "Τα plugins φορτώθηκαν ξανά με επιτυχία" #: src/tables/plugin/PluginListTable.tsx:354 #~ msgid "The following plugin will be activated" @@ -10974,7 +11105,7 @@ msgstr "" #: src/tables/plugin/PluginListTable.tsx:361 msgid "Reload Plugins" -msgstr "" +msgstr "Επαναφόρτωση Plugins" #: src/tables/plugin/PluginListTable.tsx:376 #~ msgid "Activating plugin" @@ -10986,7 +11117,7 @@ msgstr "" #: src/tables/plugin/PluginListTable.tsx:385 msgid "Plugin Detail" -msgstr "" +msgstr "Λεπτομέρειες Plugin" #: src/tables/plugin/PluginListTable.tsx:392 #~ msgid "Plugin updated" @@ -10998,12 +11129,12 @@ msgstr "" #: src/tables/plugin/PluginListTable.tsx:427 msgid "Sample" -msgstr "" +msgstr "Δείγμα" #: src/tables/plugin/PluginListTable.tsx:432 #: src/tables/stock/StockItemTable.tsx:372 msgid "Installed" -msgstr "" +msgstr "Εγκατεστημένο" #: src/tables/plugin/PluginListTable.tsx:615 #~ msgid "Plugin detail" @@ -11013,36 +11144,45 @@ msgstr "" #~ msgid "Parameter updated" #~ msgstr "Parameter updated" -#: src/tables/purchasing/ManufacturerPartParameterTable.tsx:63 -#: src/tables/purchasing/ManufacturerPartParameterTable.tsx:112 -msgid "Add Parameter" -msgstr "" - #: src/tables/purchasing/ManufacturerPartParameterTable.tsx:73 #~ msgid "Parameter deleted" #~ msgstr "Parameter deleted" -#: src/tables/purchasing/ManufacturerPartParameterTable.tsx:74 -msgid "Edit Parameter" -msgstr "" - #: src/tables/purchasing/ManufacturerPartParameterTable.tsx:74 #~ msgid "Are you sure you want to delete this parameter?" #~ msgstr "Are you sure you want to delete this parameter?" -#: src/tables/purchasing/ManufacturerPartParameterTable.tsx:82 -msgid "Delete Parameter" -msgstr "" +#: src/tables/purchasing/ManufacturerPartParametricTable.tsx:34 +#: src/tables/purchasing/ManufacturerPartTable.tsx:82 +#: src/tables/purchasing/SupplierPartTable.tsx:99 +msgid "MPN" +msgstr "MPN" + +#: src/tables/purchasing/ManufacturerPartParametricTable.tsx:44 +#: src/tables/purchasing/ManufacturerPartTable.tsx:134 +#: src/tables/purchasing/SupplierPartTable.tsx:220 +msgid "Active Part" +msgstr "Ενεργό προϊόν" + +#: src/tables/purchasing/ManufacturerPartParametricTable.tsx:45 +#: src/tables/purchasing/ManufacturerPartTable.tsx:135 +msgid "Show manufacturer parts for active internal parts." +msgstr "Εμφάνιση προϊόντων κατασκευαστή για ενεργά εσωτερικά προϊόντα." + +#: src/tables/purchasing/ManufacturerPartParametricTable.tsx:50 +#: src/tables/purchasing/ManufacturerPartTable.tsx:140 +msgid "Active Manufacturer" +msgstr "Ενεργός κατασκευαστής" + +#: src/tables/purchasing/ManufacturerPartParametricTable.tsx:51 +#: src/tables/purchasing/ManufacturerPartTable.tsx:142 +msgid "Show manufacturer parts for active manufacturers." +msgstr "Εμφάνιση προϊόντων για ενεργούς κατασκευαστές." #: src/tables/purchasing/ManufacturerPartTable.tsx:63 #~ msgid "Create Manufacturer Part" #~ msgstr "Create Manufacturer Part" -#: src/tables/purchasing/ManufacturerPartTable.tsx:82 -#: src/tables/purchasing/SupplierPartTable.tsx:99 -msgid "MPN" -msgstr "" - #: src/tables/purchasing/ManufacturerPartTable.tsx:100 #~ msgid "Manufacturer part updated" #~ msgstr "Manufacturer part updated" @@ -11055,43 +11195,26 @@ msgstr "" #~ msgid "Are you sure you want to remove this manufacturer part?" #~ msgstr "Are you sure you want to remove this manufacturer part?" -#: src/tables/purchasing/ManufacturerPartTable.tsx:134 -#: src/tables/purchasing/SupplierPartTable.tsx:220 -msgid "Active Part" -msgstr "" - -#: src/tables/purchasing/ManufacturerPartTable.tsx:135 -msgid "Show manufacturer parts for active internal parts." -msgstr "" - -#: src/tables/purchasing/ManufacturerPartTable.tsx:140 -msgid "Active Manufacturer" -msgstr "" - -#: src/tables/purchasing/ManufacturerPartTable.tsx:142 -msgid "Show manufacturer parts for active manufacturers." -msgstr "" - #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:115 -#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:397 +#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:399 msgid "Import Line Items" -msgstr "" +msgstr "Εισαγωγή γραμμών παραγγελίας" #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:237 msgid "Supplier Code" -msgstr "" +msgstr "Κωδικός προμηθευτή" #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:244 msgid "Supplier Link" -msgstr "" +msgstr "Σύνδεσμος προμηθευτή" #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:251 msgid "Manufacturer Code" -msgstr "" +msgstr "Κωδικός κατασκευαστή" #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:284 msgid "Show line items which have been received" -msgstr "" +msgstr "Εμφάνιση γραμμών που έχουν παραληφθεί" #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:344 #: src/tables/sales/ReturnOrderLineItemTable.tsx:160 @@ -11099,21 +11222,21 @@ msgstr "" #~ msgid "Add line item" #~ msgstr "Add line item" -#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:350 +#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:352 msgid "Receive line item" -msgstr "" +msgstr "Παραλαβή γραμμής" -#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:414 +#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:416 msgid "Receive items" -msgstr "" +msgstr "Παραλαβή Προϊόντων" #: src/tables/purchasing/SupplierPartTable.tsx:129 msgid "Base units" -msgstr "" +msgstr "Βασικές μονάδες" #: src/tables/purchasing/SupplierPartTable.tsx:192 msgid "Add supplier part" -msgstr "" +msgstr "Προσθήκη προϊόντος προμηθευτή" #: src/tables/purchasing/SupplierPartTable.tsx:193 #~ msgid "Supplier part updated" @@ -11121,7 +11244,7 @@ msgstr "" #: src/tables/purchasing/SupplierPartTable.tsx:200 msgid "Import supplier part" -msgstr "" +msgstr "Εισαγωγή προϊόντος προμηθευτή" #: src/tables/purchasing/SupplierPartTable.tsx:205 #~ msgid "Supplier part deleted" @@ -11133,95 +11256,95 @@ msgstr "" #: src/tables/purchasing/SupplierPartTable.tsx:216 msgid "Show active supplier parts" -msgstr "" +msgstr "Εμφάνιση ενεργών προϊόντων προμηθευτή" #: src/tables/purchasing/SupplierPartTable.tsx:221 msgid "Show active internal parts" -msgstr "" +msgstr "Εμφάνιση ενεργών εσωτερικών προϊόντων" #: src/tables/purchasing/SupplierPartTable.tsx:225 msgid "Active Supplier" -msgstr "" +msgstr "Ενεργός προμηθευτής" #: src/tables/purchasing/SupplierPartTable.tsx:226 msgid "Show active suppliers" -msgstr "" +msgstr "Εμφάνιση ενεργών προμηθευτών" #: src/tables/purchasing/SupplierPartTable.tsx:231 msgid "Show supplier parts with stock" -msgstr "" +msgstr "Εμφάνιση προϊόντων προμηθευτή με απόθεμα" #: src/tables/sales/ReturnOrderLineItemTable.tsx:158 msgid "Received Date" -msgstr "" +msgstr "Ημερομηνία παραλαβής" #: src/tables/sales/ReturnOrderLineItemTable.tsx:172 msgid "Show items which have been received" -msgstr "" +msgstr "Εμφάνιση Προϊόντων που έχουν παραληφθεί" #: src/tables/sales/ReturnOrderLineItemTable.tsx:177 msgid "Filter by line item status" -msgstr "" +msgstr "Φιλτράρισμα βάσει κατάστασης γραμμής" #: src/tables/sales/ReturnOrderLineItemTable.tsx:195 msgid "Receive selected items" -msgstr "" +msgstr "Παραλαβή επιλεγμένων Προϊόντων" #: src/tables/sales/ReturnOrderLineItemTable.tsx:230 msgid "Receive Item" -msgstr "" +msgstr "Παραλαβή Προϊόντος" #: src/tables/sales/SalesOrderAllocationTable.tsx:89 msgid "Show outstanding allocations" -msgstr "" +msgstr "Εμφάνιση μη ολοκληρωμένων δεσμεύσεων" #: src/tables/sales/SalesOrderAllocationTable.tsx:93 msgid "Assigned to Shipment" -msgstr "" +msgstr "Ανατέθηκε σε αποστολή" #: src/tables/sales/SalesOrderAllocationTable.tsx:94 msgid "Show allocations assigned to a shipment" -msgstr "" +msgstr "Εμφάνιση δεσμεύσεων που έχουν ανατεθεί σε αποστολή" #: src/tables/sales/SalesOrderAllocationTable.tsx:156 msgid "Available Quantity" -msgstr "" +msgstr "Διαθέσιμη ποσότητα" #: src/tables/sales/SalesOrderAllocationTable.tsx:163 msgid "Allocated Quantity" -msgstr "" +msgstr "Δεσμευμένη ποσότητα" #: src/tables/sales/SalesOrderAllocationTable.tsx:177 #: src/tables/sales/SalesOrderAllocationTable.tsx:191 msgid "No shipment" -msgstr "" +msgstr "Καμία αποστολή" #: src/tables/sales/SalesOrderAllocationTable.tsx:189 msgid "Not shipped" -msgstr "" +msgstr "Δεν έχει αποσταλεί" #: src/tables/sales/SalesOrderAllocationTable.tsx:211 -#: src/tables/sales/SalesOrderAllocationTable.tsx:229 +#: src/tables/sales/SalesOrderAllocationTable.tsx:235 msgid "Edit Allocation" -msgstr "" +msgstr "Επεξεργασία δέσμευσης" #: src/tables/sales/SalesOrderAllocationTable.tsx:218 #: src/tables/sales/SalesOrderAllocationTable.tsx:241 -msgid "Delete Allocation" -msgstr "" +#~ msgid "Delete Allocation" +#~ msgstr "Delete Allocation" -#: src/tables/sales/SalesOrderAllocationTable.tsx:252 -#: src/tables/sales/SalesOrderAllocationTable.tsx:253 +#: src/tables/sales/SalesOrderAllocationTable.tsx:261 +#: src/tables/sales/SalesOrderAllocationTable.tsx:262 msgid "View Shipment" -msgstr "" +msgstr "Προβολή αποστολής" -#: src/tables/sales/SalesOrderAllocationTable.tsx:308 +#: src/tables/sales/SalesOrderAllocationTable.tsx:317 msgid "Assign to Shipment" -msgstr "" +msgstr "Ανάθεση σε αποστολή" -#: src/tables/sales/SalesOrderAllocationTable.tsx:324 +#: src/tables/sales/SalesOrderAllocationTable.tsx:333 msgid "Assign to shipment" -msgstr "" +msgstr "Ανάθεση σε αποστολή" #: src/tables/sales/SalesOrderLineItemTable.tsx:280 #~ msgid "Allocate stock" @@ -11233,164 +11356,164 @@ msgstr "" #: src/tables/sales/SalesOrderLineItemTable.tsx:293 msgid "Allocate Serial Numbers" -msgstr "" +msgstr "Δέσμευση σειριακών αριθμών" #: src/tables/sales/SalesOrderLineItemTable.tsx:343 msgid "Show lines which are fully allocated" -msgstr "" +msgstr "Εμφάνιση γραμμών με πλήρη δέσμευση" #: src/tables/sales/SalesOrderLineItemTable.tsx:348 msgid "Show lines which are completed" -msgstr "" +msgstr "Εμφάνιση ολοκληρωμένων γραμμών" #: src/tables/sales/SalesOrderLineItemTable.tsx:421 msgid "Allocate serials" -msgstr "" +msgstr "Δέσμευση σειριακών" #: src/tables/sales/SalesOrderLineItemTable.tsx:439 msgid "Build stock" -msgstr "" +msgstr "Παραγωγή αποθέματος" #: src/tables/sales/SalesOrderLineItemTable.tsx:457 msgid "Order stock" -msgstr "" +msgstr "Παραγγελία αποθέματος" #: src/tables/sales/SalesOrderShipmentTable.tsx:51 #~ msgid "Delete Shipment" #~ msgstr "Delete Shipment" -#: src/tables/sales/SalesOrderShipmentTable.tsx:72 +#: src/tables/sales/SalesOrderShipmentTable.tsx:79 msgid "Create Shipment" -msgstr "" +msgstr "Δημιουργία αποστολής" -#: src/tables/sales/SalesOrderShipmentTable.tsx:143 +#: src/tables/sales/SalesOrderShipmentTable.tsx:164 msgid "Items" -msgstr "" +msgstr "Προϊόντα" -#: src/tables/sales/SalesOrderShipmentTable.tsx:203 +#: src/tables/sales/SalesOrderShipmentTable.tsx:248 msgid "Edit shipment" -msgstr "" +msgstr "Επεξεργασία αποστολής" -#: src/tables/sales/SalesOrderShipmentTable.tsx:211 +#: src/tables/sales/SalesOrderShipmentTable.tsx:256 msgid "Cancel shipment" -msgstr "" +msgstr "Ακύρωση αποστολής" -#: src/tables/sales/SalesOrderShipmentTable.tsx:241 +#: src/tables/sales/SalesOrderShipmentTable.tsx:286 msgid "Add shipment" -msgstr "" +msgstr "Προσθήκη αποστολής" -#: src/tables/sales/SalesOrderShipmentTable.tsx:255 +#: src/tables/sales/SalesOrderShipmentTable.tsx:300 msgid "Show shipments which have been checked" -msgstr "" +msgstr "Εμφάνιση ελεγμένων αποστολών" -#: src/tables/sales/SalesOrderShipmentTable.tsx:260 +#: src/tables/sales/SalesOrderShipmentTable.tsx:305 msgid "Show shipments which have been shipped" -msgstr "" +msgstr "Εμφάνιση αποστολών που έχουν σταλεί" -#: src/tables/sales/SalesOrderShipmentTable.tsx:265 +#: src/tables/sales/SalesOrderShipmentTable.tsx:310 msgid "Show shipments which have been delivered" -msgstr "" +msgstr "Εμφάνιση παραδομένων αποστολών" #: src/tables/settings/ApiTokenTable.tsx:30 #: src/tables/settings/ApiTokenTable.tsx:44 msgid "Generate Token" -msgstr "" +msgstr "Δημιουργία token" #: src/tables/settings/ApiTokenTable.tsx:32 msgid "Token generated" -msgstr "" +msgstr "Το token δημιουργήθηκε" #: src/tables/settings/ApiTokenTable.tsx:67 #: src/tables/settings/ApiTokenTable.tsx:117 msgid "Revoked" -msgstr "" +msgstr "Ανακλημένο" #: src/tables/settings/ApiTokenTable.tsx:71 #: src/tables/settings/ApiTokenTable.tsx:179 msgid "Token" -msgstr "" +msgstr "Token" #: src/tables/settings/ApiTokenTable.tsx:78 msgid "In Use" -msgstr "" +msgstr "Σε χρήση" #: src/tables/settings/ApiTokenTable.tsx:87 msgid "Last Seen" -msgstr "" +msgstr "Τελευταία εμφάνιση" #: src/tables/settings/ApiTokenTable.tsx:92 msgid "Expiry" -msgstr "" +msgstr "Λήξη" #: src/tables/settings/ApiTokenTable.tsx:118 msgid "Show revoked tokens" -msgstr "" +msgstr "Εμφάνιση ανακλημένων tokens" #: src/tables/settings/ApiTokenTable.tsx:137 msgid "Revoke" -msgstr "" +msgstr "Ανάκληση" #: src/tables/settings/ApiTokenTable.tsx:161 msgid "Error revoking token" -msgstr "" +msgstr "Σφάλμα κατά την ανάκληση token" #: src/tables/settings/ApiTokenTable.tsx:183 msgid "Tokens are only shown once - make sure to note it down." -msgstr "" +msgstr "Τα tokens εμφανίζονται μόνο μία φορά — σημειώστε τα." #: src/tables/settings/BarcodeScanHistoryTable.tsx:60 msgid "Barcode Information" -msgstr "" +msgstr "Πληροφορίες barcode" #: src/tables/settings/BarcodeScanHistoryTable.tsx:85 msgid "Endpoint" -msgstr "" +msgstr "Endpoint" #: src/tables/settings/BarcodeScanHistoryTable.tsx:89 #: src/tables/settings/BarcodeScanHistoryTable.tsx:208 #: src/tables/stock/StockItemTestResultTable.tsx:191 msgid "Result" -msgstr "" +msgstr "Αποτέλεσμα" #: src/tables/settings/BarcodeScanHistoryTable.tsx:97 msgid "Context" -msgstr "" +msgstr "Συμφραζόμενα" #: src/tables/settings/BarcodeScanHistoryTable.tsx:118 msgid "Response" -msgstr "" +msgstr "Απόκριση" #: src/tables/settings/BarcodeScanHistoryTable.tsx:209 msgid "Filter by result" -msgstr "" +msgstr "Φιλτράρισμα βάσει αποτελέσματος" #: src/tables/settings/BarcodeScanHistoryTable.tsx:223 msgid "Delete Barcode Scan Record" -msgstr "" +msgstr "Διαγραφή καταγραφής barcode" #: src/tables/settings/BarcodeScanHistoryTable.tsx:249 msgid "Barcode Scan Details" -msgstr "" +msgstr "Λεπτομέρειες σάρωσης barcode" #: src/tables/settings/BarcodeScanHistoryTable.tsx:259 msgid "Logging Disabled" -msgstr "" +msgstr "Η καταγραφή είναι απενεργοποιημένη" #: src/tables/settings/BarcodeScanHistoryTable.tsx:261 msgid "Barcode logging is not enabled" -msgstr "" +msgstr "Η καταγραφή barcode δεν είναι ενεργή" #: src/tables/settings/CustomStateTable.tsx:63 msgid "Status Group" -msgstr "" +msgstr "Ομάδα κατάστασης" #: src/tables/settings/CustomStateTable.tsx:84 msgid "Logical State" -msgstr "" +msgstr "Λογική κατάσταση" #: src/tables/settings/CustomStateTable.tsx:96 msgid "Identifier" -msgstr "" +msgstr "Αναγνωριστικό" #: src/tables/settings/CustomStateTable.tsx:115 #~ msgid "Add state" @@ -11398,88 +11521,88 @@ msgstr "" #: src/tables/settings/CustomStateTable.tsx:153 msgid "Edit State" -msgstr "" +msgstr "Επεξεργασία κατάστασης" #: src/tables/settings/CustomStateTable.tsx:161 msgid "Delete State" -msgstr "" +msgstr "Διαγραφή κατάστασης" #: src/tables/settings/CustomUnitsTable.tsx:54 msgid "Add Custom Unit" -msgstr "" +msgstr "Προσθήκη προσαρμοσμένης μονάδας" #: src/tables/settings/CustomUnitsTable.tsx:64 msgid "Edit Custom Unit" -msgstr "" +msgstr "Επεξεργασία προσαρμοσμένης μονάδας" #: src/tables/settings/CustomUnitsTable.tsx:72 msgid "Delete Custom Unit" -msgstr "" +msgstr "Διαγραφή προσαρμοσμένης μονάδας" #: src/tables/settings/CustomUnitsTable.tsx:103 msgid "Add custom unit" -msgstr "" +msgstr "Προσθήκη προσαρμοσμένης μονάδας" #: src/tables/settings/EmailTable.tsx:25 msgid "Announced" -msgstr "" +msgstr "Ανακοινώθηκε" #: src/tables/settings/EmailTable.tsx:27 msgid "Sent" -msgstr "" +msgstr "Εστάλη" #: src/tables/settings/EmailTable.tsx:29 msgid "Failed" -msgstr "" +msgstr "Απέτυχε" #: src/tables/settings/EmailTable.tsx:33 msgid "Read" -msgstr "" +msgstr "Αναγνώστηκε" #: src/tables/settings/EmailTable.tsx:35 msgid "Confirmed" -msgstr "" +msgstr "Επιβεβαιώθηκε" #: src/tables/settings/EmailTable.tsx:43 #: src/tables/settings/EmailTable.tsx:58 msgid "Send Test Email" -msgstr "" +msgstr "Αποστολή δοκιμαστικού email" #: src/tables/settings/EmailTable.tsx:45 msgid "Email sent successfully" -msgstr "" +msgstr "Το email στάλθηκε επιτυχώς" #: src/tables/settings/EmailTable.tsx:71 msgid "Delete Email" -msgstr "" +msgstr "Διαγραφή email" #: src/tables/settings/EmailTable.tsx:72 msgid "Email deleted successfully" -msgstr "" +msgstr "Το email διαγράφηκε επιτυχώς" #: src/tables/settings/EmailTable.tsx:80 msgid "Subject" -msgstr "" +msgstr "Θέμα" #: src/tables/settings/EmailTable.tsx:85 msgid "To" -msgstr "" +msgstr "Προς" #: src/tables/settings/EmailTable.tsx:90 msgid "Sender" -msgstr "" +msgstr "Αποστολέας" #: src/tables/settings/EmailTable.tsx:122 msgid "Direction" -msgstr "" +msgstr "Κατεύθυνση" #: src/tables/settings/EmailTable.tsx:125 msgid "Incoming" -msgstr "" +msgstr "Εισερχόμενο" #: src/tables/settings/EmailTable.tsx:125 msgid "Outgoing" -msgstr "" +msgstr "Εξερχόμενο" #: src/tables/settings/ErrorTable.tsx:51 #~ msgid "Delete error report" @@ -11487,85 +11610,85 @@ msgstr "" #: src/tables/settings/ErrorTable.tsx:67 msgid "Traceback" -msgstr "" +msgstr "Ιχνηλάτηση" #: src/tables/settings/ErrorTable.tsx:103 msgid "When" -msgstr "" +msgstr "Πότε" #: src/tables/settings/ErrorTable.tsx:113 msgid "Error Information" -msgstr "" +msgstr "Πληροφορίες σφάλματος" #: src/tables/settings/ErrorTable.tsx:123 msgid "Delete Error Report" -msgstr "" +msgstr "Διαγραφή αναφοράς σφάλματος" #: src/tables/settings/ErrorTable.tsx:125 msgid "Are you sure you want to delete this error report?" -msgstr "" +msgstr "Είστε βέβαιοι ότι θέλετε να διαγράψετε αυτήν την αναφορά σφάλματος;" #: src/tables/settings/ErrorTable.tsx:127 msgid "Error report deleted" -msgstr "" +msgstr "Η αναφορά σφάλματος διαγράφηκε" #: src/tables/settings/ErrorTable.tsx:146 #: src/tables/settings/FailedTasksTable.tsx:65 msgid "Error Details" -msgstr "" +msgstr "Λεπτομέρειες σφάλματος" #: src/tables/settings/ExportSessionTable.tsx:28 msgid "Output Type" -msgstr "" +msgstr "Τύπος εξόδου" #: src/tables/settings/ExportSessionTable.tsx:38 msgid "Exported On" -msgstr "" +msgstr "Εξήχθη στις" #: src/tables/settings/ExportSessionTable.tsx:59 msgid "Delete Output" -msgstr "" +msgstr "Διαγραφή εξόδου" #: src/tables/settings/FailedTasksTable.tsx:32 #: src/tables/settings/PendingTasksTable.tsx:28 #: src/tables/settings/ScheduledTasksTable.tsx:19 msgid "Task" -msgstr "" +msgstr "Εργασία" #: src/tables/settings/FailedTasksTable.tsx:38 #: src/tables/settings/PendingTasksTable.tsx:33 msgid "Task ID" -msgstr "" +msgstr "ID εργασίας" #: src/tables/settings/FailedTasksTable.tsx:42 #: src/tables/stock/StockItemTestResultTable.tsx:233 msgid "Started" -msgstr "" +msgstr "Ξεκίνησε" #: src/tables/settings/FailedTasksTable.tsx:54 msgid "Attempts" -msgstr "" +msgstr "Προσπάθειες" #: src/tables/settings/FailedTasksTable.tsx:92 msgid "No Information" -msgstr "" +msgstr "Καμία πληροφορία" #: src/tables/settings/FailedTasksTable.tsx:93 msgid "No error details are available for this task" -msgstr "" +msgstr "Δεν υπάρχουν διαθέσιμες λεπτομέρειες σφάλματος για αυτήν την εργασία" #: src/tables/settings/GroupTable.tsx:71 msgid "Group with id {id} not found" -msgstr "" +msgstr "Δεν βρέθηκε ομάδα με id {id}" #: src/tables/settings/GroupTable.tsx:73 msgid "An error occurred while fetching group details" -msgstr "" +msgstr "Παρουσιάστηκε σφάλμα κατά την ανάκτηση λεπτομερειών ομάδας" #: src/tables/settings/GroupTable.tsx:96 #: src/tables/settings/GroupTable.tsx:257 msgid "Name of the user group" -msgstr "" +msgstr "Όνομα ομάδας χρηστών" #: src/tables/settings/GroupTable.tsx:117 #~ msgid "Permission set" @@ -11574,23 +11697,23 @@ msgstr "" #: src/tables/settings/GroupTable.tsx:170 #: src/tables/settings/UserTable.tsx:315 msgid "Open Profile" -msgstr "" +msgstr "Άνοιγμα προφίλ" #: src/tables/settings/GroupTable.tsx:185 msgid "Delete group" -msgstr "" +msgstr "Διαγραφή ομάδας" #: src/tables/settings/GroupTable.tsx:186 msgid "Group deleted" -msgstr "" +msgstr "Η ομάδα διαγράφηκε" #: src/tables/settings/GroupTable.tsx:188 msgid "Are you sure you want to delete this group?" -msgstr "" +msgstr "Είστε βέβαιοι ότι θέλετε να διαγράψετε αυτήν την ομάδα;" #: src/tables/settings/GroupTable.tsx:200 msgid "Add group" -msgstr "" +msgstr "Προσθήκη ομάδας" #: src/tables/settings/GroupTable.tsx:213 #~ msgid "Edit group" @@ -11598,78 +11721,73 @@ msgstr "" #: src/tables/settings/GroupTable.tsx:221 msgid "Edit Group" -msgstr "" +msgstr "Επεξεργασία ομάδας" #: src/tables/settings/GroupTable.tsx:253 msgid "Add Group" -msgstr "" +msgstr "Προσθήκη ομάδας" #: src/tables/settings/ImportSessionTable.tsx:38 msgid "Delete Import Session" -msgstr "" +msgstr "Διαγραφή συνεδρίας εισαγωγής" #: src/tables/settings/ImportSessionTable.tsx:44 #: src/tables/settings/ImportSessionTable.tsx:129 msgid "Create Import Session" -msgstr "" +msgstr "Δημιουργία συνεδρίας εισαγωγής" #: src/tables/settings/ImportSessionTable.tsx:72 msgid "Uploaded" -msgstr "" +msgstr "Μεταφορτώθηκε" #: src/tables/settings/ImportSessionTable.tsx:83 msgid "Imported Rows" -msgstr "" - -#: src/tables/settings/ImportSessionTable.tsx:111 -#: src/tables/settings/TemplateTable.tsx:368 -msgid "Model Type" -msgstr "" +msgstr "Γραμμές που εισήχθησαν" #: src/tables/settings/ImportSessionTable.tsx:112 #: src/tables/settings/TemplateTable.tsx:369 msgid "Filter by target model type" -msgstr "" +msgstr "Φιλτράρισμα κατά τύπο μοντέλου προορισμού" #: src/tables/settings/ImportSessionTable.tsx:118 msgid "Filter by import session status" -msgstr "" +msgstr "Φιλτράρισμα κατά κατάσταση συνεδρίας εισαγωγής" #: src/tables/settings/PendingTasksTable.tsx:47 msgid "Arguments" -msgstr "" +msgstr "Ορίσματα" #: src/tables/settings/PendingTasksTable.tsx:61 msgid "Remove all pending tasks" -msgstr "" +msgstr "Αφαίρεση όλων των εκκρεμών εργασιών" #: src/tables/settings/PendingTasksTable.tsx:69 msgid "All pending tasks deleted" -msgstr "" +msgstr "Όλες οι εκκρεμείς εργασίες διαγράφηκαν" #: src/tables/settings/PendingTasksTable.tsx:76 msgid "Error while deleting all pending tasks" -msgstr "" +msgstr "Σφάλμα κατά τη διαγραφή όλων των εκκρεμών εργασιών" #: src/tables/settings/ProjectCodeTable.tsx:58 msgid "Edit Project Code" -msgstr "" +msgstr "Επεξεργασία κωδικού έργου" #: src/tables/settings/ProjectCodeTable.tsx:66 msgid "Delete Project Code" -msgstr "" +msgstr "Διαγραφή κωδικού έργου" #: src/tables/settings/ProjectCodeTable.tsx:97 msgid "Add project code" -msgstr "" +msgstr "Προσθήκη κωδικού έργου" #: src/tables/settings/ScheduledTasksTable.tsx:28 msgid "Last Run" -msgstr "" +msgstr "Τελευταία εκτέλεση" #: src/tables/settings/ScheduledTasksTable.tsx:50 msgid "Next Run" -msgstr "" +msgstr "Επόμενη εκτέλεση" #: src/tables/settings/StocktakeReportTable.tsx:28 #~ msgid "Report" @@ -11697,11 +11815,11 @@ msgstr "" #: src/tables/settings/TemplateTable.tsx:165 msgid "Template not found" -msgstr "" +msgstr "Το πρότυπο δεν βρέθηκε" #: src/tables/settings/TemplateTable.tsx:167 msgid "An error occurred while fetching template details" -msgstr "" +msgstr "Παρουσιάστηκε σφάλμα κατά την ανάκτηση λεπτομερειών προτύπου" #: src/tables/settings/TemplateTable.tsx:243 #~ msgid "Add new" @@ -11713,32 +11831,32 @@ msgstr "" #: src/tables/settings/TemplateTable.tsx:261 msgid "Modify" -msgstr "" +msgstr "Τροποποίηση" #: src/tables/settings/TemplateTable.tsx:262 msgid "Modify template file" -msgstr "" +msgstr "Τροποποίηση αρχείου προτύπου" #: src/tables/settings/TemplateTable.tsx:313 #: src/tables/settings/TemplateTable.tsx:381 msgid "Edit Template" -msgstr "" +msgstr "Επεξεργασία προτύπου" #: src/tables/settings/TemplateTable.tsx:321 msgid "Delete template" -msgstr "" +msgstr "Διαγραφή προτύπου" #: src/tables/settings/TemplateTable.tsx:327 msgid "Add Template" -msgstr "" +msgstr "Προσθήκη προτύπου" #: src/tables/settings/TemplateTable.tsx:340 msgid "Add template" -msgstr "" +msgstr "Προσθήκη προτύπου" #: src/tables/settings/TemplateTable.tsx:363 msgid "Filter by enabled status" -msgstr "" +msgstr "Φιλτράρισμα κατά κατάσταση ενεργοποίησης" #: src/tables/settings/TemplateTable.tsx:420 #~ msgid "Report Output" @@ -11746,23 +11864,23 @@ msgstr "" #: src/tables/settings/UserTable.tsx:123 msgid "Groups updated" -msgstr "" +msgstr "Οι ομάδες ενημερώθηκαν" #: src/tables/settings/UserTable.tsx:124 msgid "User groups updated successfully" -msgstr "" +msgstr "Οι ομάδες χρήστη ενημερώθηκαν με επιτυχία" #: src/tables/settings/UserTable.tsx:131 msgid "Error updating user groups" -msgstr "" +msgstr "Σφάλμα κατά την ενημέρωση των ομάδων χρήστη" #: src/tables/settings/UserTable.tsx:150 msgid "User with id {id} not found" -msgstr "" +msgstr "Ο χρήστης με id {id} δεν βρέθηκε" #: src/tables/settings/UserTable.tsx:152 msgid "An error occurred while fetching user details" -msgstr "" +msgstr "Παρουσιάστηκε σφάλμα κατά την ανάκτηση των στοιχείων χρήστη" #: src/tables/settings/UserTable.tsx:154 #~ msgid "No groups" @@ -11770,35 +11888,35 @@ msgstr "" #: src/tables/settings/UserTable.tsx:178 msgid "Is Active" -msgstr "" +msgstr "Είναι ενεργός" #: src/tables/settings/UserTable.tsx:179 msgid "Designates whether this user should be treated as active. Unselect this instead of deleting accounts." -msgstr "" +msgstr "Ορίζει αν ο χρήστης θα θεωρείται ενεργός. Αποεπιλέξτε το αντί να διαγράψετε λογαριασμούς." #: src/tables/settings/UserTable.tsx:183 msgid "Is Staff" -msgstr "" +msgstr "Είναι προσωπικό" #: src/tables/settings/UserTable.tsx:184 msgid "Designates whether the user can log into the django admin site." -msgstr "" +msgstr "Ορίζει αν ο χρήστης μπορεί να συνδεθεί στο django admin." #: src/tables/settings/UserTable.tsx:188 msgid "Is Superuser" -msgstr "" +msgstr "Είναι υπερδιαχειριστής" #: src/tables/settings/UserTable.tsx:189 msgid "Designates that this user has all permissions without explicitly assigning them." -msgstr "" +msgstr "Ορίζει ότι αυτός ο χρήστης έχει όλα τα δικαιώματα χωρίς ρητή ανάθεσή τους." #: src/tables/settings/UserTable.tsx:199 msgid "You cannot edit the rights for the currently logged-in user." -msgstr "" +msgstr "Δεν μπορείτε να επεξεργαστείτε τα δικαιώματα του τρέχοντος συνδεδεμένου χρήστη." #: src/tables/settings/UserTable.tsx:218 msgid "User Groups" -msgstr "" +msgstr "Ομάδες χρηστών" #: src/tables/settings/UserTable.tsx:305 #~ msgid "Edit user" @@ -11806,153 +11924,153 @@ msgstr "" #: src/tables/settings/UserTable.tsx:332 msgid "Lock user" -msgstr "" +msgstr "Κλείδωμα χρήστη" #: src/tables/settings/UserTable.tsx:342 msgid "Unlock user" -msgstr "" +msgstr "Ξεκλείδωμα χρήστη" #: src/tables/settings/UserTable.tsx:358 msgid "Delete user" -msgstr "" +msgstr "Διαγραφή χρήστη" #: src/tables/settings/UserTable.tsx:359 msgid "User deleted" -msgstr "" +msgstr "Ο χρήστης διαγράφηκε" #: src/tables/settings/UserTable.tsx:362 msgid "Are you sure you want to delete this user?" -msgstr "" +msgstr "Είστε σίγουροι ότι θέλετε να διαγράψετε αυτόν τον χρήστη;" #: src/tables/settings/UserTable.tsx:372 msgid "Set Password" -msgstr "" +msgstr "Ορισμός κωδικού" #: src/tables/settings/UserTable.tsx:377 msgid "Password updated" -msgstr "" +msgstr "Ο κωδικός ενημερώθηκε" #: src/tables/settings/UserTable.tsx:388 msgid "Add user" -msgstr "" +msgstr "Προσθήκη χρήστη" #: src/tables/settings/UserTable.tsx:401 msgid "Show active users" -msgstr "" +msgstr "Εμφάνιση ενεργών χρηστών" #: src/tables/settings/UserTable.tsx:406 msgid "Show staff users" -msgstr "" +msgstr "Εμφάνιση χρηστών προσωπικού" #: src/tables/settings/UserTable.tsx:411 msgid "Show superusers" -msgstr "" +msgstr "Εμφάνιση υπερδιαχειριστών" #: src/tables/settings/UserTable.tsx:430 msgid "Edit User" -msgstr "" +msgstr "Επεξεργασία χρήστη" #: src/tables/settings/UserTable.tsx:463 msgid "Add User" -msgstr "" +msgstr "Προσθήκη χρήστη" #: src/tables/settings/UserTable.tsx:471 msgid "Added user" -msgstr "" +msgstr "Ο χρήστης προστέθηκε" #: src/tables/settings/UserTable.tsx:481 msgid "User updated" -msgstr "" +msgstr "Ο χρήστης ενημερώθηκε" #: src/tables/settings/UserTable.tsx:482 msgid "User updated successfully" -msgstr "" +msgstr "Ο χρήστης ενημερώθηκε με επιτυχία" #: src/tables/settings/UserTable.tsx:488 msgid "Error updating user" -msgstr "" +msgstr "Σφάλμα κατά την ενημέρωση χρήστη" #: src/tables/stock/InstalledItemsTable.tsx:38 #: src/tables/stock/InstalledItemsTable.tsx:90 msgid "Install Item" -msgstr "" +msgstr "Εγκατάσταση Προϊόντος" #: src/tables/stock/InstalledItemsTable.tsx:40 msgid "Item installed" -msgstr "" +msgstr "Το Προϊόν εγκαταστάθηκε" #: src/tables/stock/InstalledItemsTable.tsx:51 msgid "Uninstall Item" -msgstr "" +msgstr "Απεγκατάσταση Προϊόντος" #: src/tables/stock/InstalledItemsTable.tsx:53 msgid "Item uninstalled" -msgstr "" +msgstr "Το Προϊόν απεγκαταστάθηκε" #: src/tables/stock/InstalledItemsTable.tsx:108 msgid "Uninstall stock item" -msgstr "" +msgstr "Απεγκατάσταση αποθέματος" #: src/tables/stock/LocationTypesTable.tsx:44 #: src/tables/stock/LocationTypesTable.tsx:111 msgid "Add Location Type" -msgstr "" +msgstr "Προσθήκη τύπου τοποθεσίας" #: src/tables/stock/LocationTypesTable.tsx:52 msgid "Edit Location Type" -msgstr "" +msgstr "Επεξεργασία τύπου τοποθεσίας" #: src/tables/stock/LocationTypesTable.tsx:60 msgid "Delete Location Type" -msgstr "" +msgstr "Διαγραφή τύπου τοποθεσίας" #: src/tables/stock/LocationTypesTable.tsx:68 msgid "Icon" -msgstr "" +msgstr "Εικονίδιο" #: src/tables/stock/StockItemTable.tsx:106 msgid "This stock item is in production" -msgstr "" +msgstr "Αυτό το Προϊόν αποθέματος είναι σε παραγωγή" #: src/tables/stock/StockItemTable.tsx:113 msgid "This stock item has been assigned to a sales order" -msgstr "" +msgstr "Αυτό το Προϊόν αποθέματος έχει ανατεθεί σε παραγγελία πώλησης" #: src/tables/stock/StockItemTable.tsx:120 msgid "This stock item has been assigned to a customer" -msgstr "" +msgstr "Αυτό το Προϊόν αποθέματος έχει ανατεθεί σε πελάτη" #: src/tables/stock/StockItemTable.tsx:127 msgid "This stock item is installed in another stock item" -msgstr "" +msgstr "Αυτό το Προϊόν αποθέματος είναι εγκατεστημένο σε άλλο Προϊόν αποθέματος" #: src/tables/stock/StockItemTable.tsx:134 msgid "This stock item has been consumed by a build order" -msgstr "" +msgstr "Αυτό το Προϊόν αποθέματος έχει καταναλωθεί από εντολή παραγωγής" #: src/tables/stock/StockItemTable.tsx:141 msgid "This stock item is unavailable" -msgstr "" +msgstr "Αυτό το Προϊόν αποθέματος δεν είναι διαθέσιμο" #: src/tables/stock/StockItemTable.tsx:150 msgid "This stock item has expired" -msgstr "" +msgstr "Αυτό το Προϊόν αποθέματος έχει λήξει" #: src/tables/stock/StockItemTable.tsx:154 msgid "This stock item is stale" -msgstr "" +msgstr "Αυτό το Προϊόν αποθέματος είναι παλιό" #: src/tables/stock/StockItemTable.tsx:166 msgid "This stock item is fully allocated" -msgstr "" +msgstr "Αυτό το Προϊόν αποθέματος έχει πλήρως δεσμευτεί" #: src/tables/stock/StockItemTable.tsx:173 msgid "This stock item is partially allocated" -msgstr "" +msgstr "Αυτό το Προϊόν αποθέματος έχει μερικώς δεσμευτεί" #: src/tables/stock/StockItemTable.tsx:201 msgid "This stock item has been depleted" -msgstr "" +msgstr "Αυτό το Προϊόν αποθέματος έχει εξαντληθεί" #: src/tables/stock/StockItemTable.tsx:301 #~ msgid "Show stock for assmebled parts" @@ -11960,44 +12078,44 @@ msgstr "" #: src/tables/stock/StockItemTable.tsx:305 msgid "Stocktake Date" -msgstr "" +msgstr "Ημερομηνία απογραφής" #: src/tables/stock/StockItemTable.tsx:323 msgid "Show stock for active parts" -msgstr "" +msgstr "Εμφάνιση αποθέματος για ενεργά προϊόντα" #: src/tables/stock/StockItemTable.tsx:334 msgid "Show stock for assembled parts" -msgstr "" +msgstr "Εμφάνιση αποθέματος για συναρμολογημένα προϊόντα" #: src/tables/stock/StockItemTable.tsx:339 msgid "Show items which have been allocated" -msgstr "" +msgstr "Εμφάνιση Προϊόντων που έχουν δεσμευτεί" #: src/tables/stock/StockItemTable.tsx:344 msgid "Show items which are available" -msgstr "" +msgstr "Εμφάνιση διαθέσιμων Προϊόντων" #: src/tables/stock/StockItemTable.tsx:348 #: src/tables/stock/StockLocationTable.tsx:38 msgid "Include Sublocations" -msgstr "" +msgstr "Συμπερίληψη υποτοποθεσιών" #: src/tables/stock/StockItemTable.tsx:349 msgid "Include stock in sublocations" -msgstr "" +msgstr "Συμπερίληψη αποθέματος σε υποτοποθεσίες" #: src/tables/stock/StockItemTable.tsx:353 msgid "Depleted" -msgstr "" +msgstr "Εξαντλημένο" #: src/tables/stock/StockItemTable.tsx:354 msgid "Show depleted stock items" -msgstr "" +msgstr "Εμφάνιση εξαντλημένου αποθέματος" #: src/tables/stock/StockItemTable.tsx:360 msgid "Show items which are in production" -msgstr "" +msgstr "Εμφάνιση Προϊόντων σε παραγωγή" #: src/tables/stock/StockItemTable.tsx:362 #~ msgid "Include stock items for variant parts" @@ -12005,31 +12123,31 @@ msgstr "" #: src/tables/stock/StockItemTable.tsx:368 msgid "Show items which have been consumed by a build order" -msgstr "" +msgstr "Εμφάνιση Προϊόντων που έχουν καταναλωθεί από εντολή παραγωγής" #: src/tables/stock/StockItemTable.tsx:373 msgid "Show stock items which are installed in other items" -msgstr "" +msgstr "Εμφάνιση Προϊόντων αποθέματος που είναι εγκατεστημένα σε άλλα Προϊόντα" #: src/tables/stock/StockItemTable.tsx:377 msgid "Sent to Customer" -msgstr "" +msgstr "Απεσταλμένα σε πελάτη" #: src/tables/stock/StockItemTable.tsx:378 msgid "Show items which have been sent to a customer" -msgstr "" +msgstr "Εμφάνιση Προϊόντων που έχουν αποσταλεί σε πελάτη" #: src/tables/stock/StockItemTable.tsx:389 msgid "Show tracked items" -msgstr "" +msgstr "Εμφάνιση ιχνηλάσιμων Προϊόντων" #: src/tables/stock/StockItemTable.tsx:393 msgid "Has Purchase Price" -msgstr "" +msgstr "Έχει τιμή αγοράς" #: src/tables/stock/StockItemTable.tsx:394 msgid "Show items which have a purchase price" -msgstr "" +msgstr "Εμφάνιση Προϊόντων που έχουν τιμή αγοράς" #: src/tables/stock/StockItemTable.tsx:397 #~ msgid "Serial Number LTE" @@ -12037,7 +12155,7 @@ msgstr "" #: src/tables/stock/StockItemTable.tsx:399 msgid "Show items which have expired" -msgstr "" +msgstr "Εμφάνιση Προϊόντων που έχουν λήξει" #: src/tables/stock/StockItemTable.tsx:403 #~ msgid "Serial Number GTE" @@ -12045,63 +12163,63 @@ msgstr "" #: src/tables/stock/StockItemTable.tsx:405 msgid "Show items which are stale" -msgstr "" +msgstr "Εμφάνιση Προϊόντων που είναι παλαιωμένα" #: src/tables/stock/StockItemTable.tsx:410 msgid "Expired Before" -msgstr "" +msgstr "Έληξαν πριν από" #: src/tables/stock/StockItemTable.tsx:411 msgid "Show items which expired before this date" -msgstr "" +msgstr "Εμφάνιση Προϊόντων που έληξαν πριν από αυτή την ημερομηνία" #: src/tables/stock/StockItemTable.tsx:417 msgid "Expired After" -msgstr "" +msgstr "Έληξαν μετά από" #: src/tables/stock/StockItemTable.tsx:418 msgid "Show items which expired after this date" -msgstr "" +msgstr "Εμφάνιση Προϊόντων που έληξαν μετά από αυτή την ημερομηνία" #: src/tables/stock/StockItemTable.tsx:424 msgid "Updated Before" -msgstr "" +msgstr "Ενημερώθηκαν πριν από" #: src/tables/stock/StockItemTable.tsx:425 msgid "Show items updated before this date" -msgstr "" +msgstr "Εμφάνιση Προϊόντων που ενημερώθηκαν πριν από αυτή την ημερομηνία" #: src/tables/stock/StockItemTable.tsx:430 msgid "Updated After" -msgstr "" +msgstr "Ενημερώθηκαν μετά από" #: src/tables/stock/StockItemTable.tsx:431 msgid "Show items updated after this date" -msgstr "" +msgstr "Εμφάνιση Προϊόντων που ενημερώθηκαν μετά από αυτή την ημερομηνία" #: src/tables/stock/StockItemTable.tsx:436 msgid "Stocktake Before" -msgstr "" +msgstr "Απογραφή πριν από" #: src/tables/stock/StockItemTable.tsx:437 msgid "Show items counted before this date" -msgstr "" +msgstr "Εμφάνιση Προϊόντων που απογράφηκαν πριν από αυτή την ημερομηνία" #: src/tables/stock/StockItemTable.tsx:442 msgid "Stocktake After" -msgstr "" +msgstr "Απογραφή μετά από" #: src/tables/stock/StockItemTable.tsx:443 msgid "Show items counted after this date" -msgstr "" +msgstr "Εμφάνιση Προϊόντων που απογράφηκαν μετά από αυτή την ημερομηνία" #: src/tables/stock/StockItemTable.tsx:448 msgid "External Location" -msgstr "" +msgstr "Εξωτερική τοποθεσία" #: src/tables/stock/StockItemTable.tsx:449 msgid "Show items in an external location" -msgstr "" +msgstr "Εμφάνιση Προϊόντων σε εξωτερική τοποθεσία" #: src/tables/stock/StockItemTable.tsx:528 #~ msgid "Delete stock items" @@ -12109,7 +12227,7 @@ msgstr "" #: src/tables/stock/StockItemTable.tsx:559 msgid "Order items" -msgstr "" +msgstr "Παραγγελία Προϊόντων" #: src/tables/stock/StockItemTable.tsx:595 #~ msgid "Add a new stock item" @@ -12157,81 +12275,81 @@ msgstr "" #: src/tables/stock/StockItemTestResultTable.tsx:144 msgid "Test" -msgstr "" +msgstr "Τεστ" #: src/tables/stock/StockItemTestResultTable.tsx:180 msgid "Test result for installed stock item" -msgstr "" +msgstr "Αποτέλεσμα τεστ για εγκατεστημένο Προϊόν αποθέματος" #: src/tables/stock/StockItemTestResultTable.tsx:211 msgid "Attachment" -msgstr "" +msgstr "Συνημμένο" #: src/tables/stock/StockItemTestResultTable.tsx:227 msgid "Test station" -msgstr "" +msgstr "Σταθμός δοκιμής" #: src/tables/stock/StockItemTestResultTable.tsx:249 msgid "Finished" -msgstr "" +msgstr "Ολοκληρώθηκε" #: src/tables/stock/StockItemTestResultTable.tsx:307 #: src/tables/stock/StockItemTestResultTable.tsx:378 msgid "Edit Test Result" -msgstr "" +msgstr "Επεξεργασία αποτελέσματος τεστ" #: src/tables/stock/StockItemTestResultTable.tsx:309 msgid "Test result updated" -msgstr "" +msgstr "Το αποτέλεσμα του τεστ ενημερώθηκε" #: src/tables/stock/StockItemTestResultTable.tsx:315 #: src/tables/stock/StockItemTestResultTable.tsx:387 msgid "Delete Test Result" -msgstr "" +msgstr "Διαγραφή αποτελέσματος τεστ" #: src/tables/stock/StockItemTestResultTable.tsx:317 msgid "Test result deleted" -msgstr "" +msgstr "Το αποτέλεσμα του τεστ διαγράφηκε" #: src/tables/stock/StockItemTestResultTable.tsx:331 msgid "Test Passed" -msgstr "" +msgstr "Επιτυχής δοκιμή" #: src/tables/stock/StockItemTestResultTable.tsx:332 msgid "Test result has been recorded" -msgstr "" +msgstr "Το αποτέλεσμα του τεστ καταχωρήθηκε" #: src/tables/stock/StockItemTestResultTable.tsx:339 msgid "Failed to record test result" -msgstr "" +msgstr "Αποτυχία καταγραφής αποτελέσματος τεστ" #: src/tables/stock/StockItemTestResultTable.tsx:356 msgid "Pass Test" -msgstr "" +msgstr "Επιτυχής Δοκιμή" #: src/tables/stock/StockItemTestResultTable.tsx:405 msgid "Show results for required tests" -msgstr "" +msgstr "Εμφάνιση αποτελεσμάτων για υποχρεωτικά τεστ" #: src/tables/stock/StockItemTestResultTable.tsx:409 msgid "Include Installed" -msgstr "" +msgstr "Συμπερίληψη εγκατεστημένων" #: src/tables/stock/StockItemTestResultTable.tsx:410 msgid "Show results for installed stock items" -msgstr "" +msgstr "Εμφάνιση αποτελεσμάτων για εγκατεστημένα Προϊόντα" #: src/tables/stock/StockItemTestResultTable.tsx:414 msgid "Passed" -msgstr "" +msgstr "Επιτυχία" #: src/tables/stock/StockItemTestResultTable.tsx:415 msgid "Show only passed tests" -msgstr "" +msgstr "Εμφάνιση μόνο επιτυχημένων τεστ" #: src/tables/stock/StockItemTestResultTable.tsx:420 msgid "Show results for enabled tests" -msgstr "" +msgstr "Εμφάνιση αποτελεσμάτων για ενεργά τεστ" #: src/tables/stock/StockLocationTable.tsx:38 #~ msgid "structural" @@ -12239,7 +12357,7 @@ msgstr "" #: src/tables/stock/StockLocationTable.tsx:39 msgid "Include sublocations in results" -msgstr "" +msgstr "Συμπερίληψη υποτοποθεσιών στα αποτελέσματα" #: src/tables/stock/StockLocationTable.tsx:43 #~ msgid "external" @@ -12247,44 +12365,44 @@ msgstr "" #: src/tables/stock/StockLocationTable.tsx:44 msgid "Show structural locations" -msgstr "" +msgstr "Εμφάνιση δομικών τοποθεσιών" #: src/tables/stock/StockLocationTable.tsx:49 msgid "Show external locations" -msgstr "" +msgstr "Εμφάνιση εξωτερικών τοποθεσιών" #: src/tables/stock/StockLocationTable.tsx:53 msgid "Has location type" -msgstr "" +msgstr "Έχει τύπο τοποθεσίας" #: src/tables/stock/StockLocationTable.tsx:58 msgid "Filter by location type" -msgstr "" +msgstr "Φιλτράρισμα κατά τύπο τοποθεσίας" #: src/tables/stock/StockLocationTable.tsx:105 #: src/tables/stock/StockLocationTable.tsx:160 msgid "Add Stock Location" -msgstr "" +msgstr "Προσθήκη τοποθεσίας αποθέματος" #: src/tables/stock/StockLocationTable.tsx:129 msgid "Set Parent Location" -msgstr "" +msgstr "Ορισμός μητρικής τοποθεσίας" #: src/tables/stock/StockLocationTable.tsx:149 msgid "Set parent location for the selected items" -msgstr "" +msgstr "Ορισμός μητρικής τοποθεσίας για τα επιλεγμένα Προϊόντα" #: src/tables/stock/StockTrackingTable.tsx:77 msgid "Added" -msgstr "" +msgstr "Προστέθηκε" #: src/tables/stock/StockTrackingTable.tsx:82 msgid "Removed" -msgstr "" +msgstr "Αφαιρέθηκε" #: src/tables/stock/StockTrackingTable.tsx:221 msgid "No user information" -msgstr "" +msgstr "Δεν υπάρχουν πληροφορίες χρήστη" #: src/tables/stock/TestStatisticsTable.tsx:34 #: src/tables/stock/TestStatisticsTable.tsx:64 @@ -12293,7 +12411,7 @@ msgstr "" #: src/views/MobileAppView.tsx:25 msgid "Mobile viewport detected" -msgstr "" +msgstr "Ανιχνεύτηκε προβολή κινητού" #: src/views/MobileAppView.tsx:25 #~ msgid "Platform UI is optimized for Tablets and Desktops, you can use the official app for a mobile experience." @@ -12301,13 +12419,13 @@ msgstr "" #: src/views/MobileAppView.tsx:28 msgid "InvenTree UI is optimized for Tablets and Desktops, you can use the official app for a mobile experience." -msgstr "" +msgstr "Το περιβάλλον του InvenTree είναι βελτιστοποιημένο για Tablets και Desktops, μπορείτε να χρησιμοποιήσετε την επίσημη εφαρμογή για εμπειρία κινητού." #: src/views/MobileAppView.tsx:34 msgid "Read the docs" -msgstr "" +msgstr "Διαβάστε την τεκμηρίωση" #: src/views/MobileAppView.tsx:42 msgid "Ignore and continue to Desktop view" -msgstr "" +msgstr "Παράβλεψη και συνέχεια στην προβολή Desktop" diff --git a/src/frontend/src/locales/en/messages.po b/src/frontend/src/locales/en/messages.po index e3497aca87..8d593ccbeb 100644 --- a/src/frontend/src/locales/en/messages.po +++ b/src/frontend/src/locales/en/messages.po @@ -25,7 +25,7 @@ msgid "Edit" msgstr "Edit" #: lib/components/RowActions.tsx:56 -#: src/components/forms/ApiForm.tsx:735 +#: src/components/forms/ApiForm.tsx:754 #: src/components/items/ActionDropdown.tsx:257 #: src/components/items/RoleTable.tsx:155 #: src/hooks/UseForm.tsx:164 @@ -51,24 +51,24 @@ msgstr "Cancel" #: lib/components/RowActions.tsx:136 #: src/components/nav/NavigationDrawer.tsx:190 -#: src/forms/PurchaseOrderForms.tsx:802 +#: src/forms/PurchaseOrderForms.tsx:854 #: src/forms/StockForms.tsx:796 #: src/forms/StockForms.tsx:843 -#: src/forms/StockForms.tsx:889 -#: src/forms/StockForms.tsx:928 -#: src/forms/StockForms.tsx:964 -#: src/forms/StockForms.tsx:1050 +#: src/forms/StockForms.tsx:896 +#: src/forms/StockForms.tsx:942 +#: src/forms/StockForms.tsx:980 +#: src/forms/StockForms.tsx:1066 #: src/pages/Index/Settings/AccountSettings/MFASettings.tsx:962 msgid "Actions" msgstr "Actions" #: lib/components/SearchInput.tsx:34 -#: src/components/forms/fields/RelatedModelField.tsx:408 +#: src/components/forms/fields/RelatedModelField.tsx:479 #: src/components/nav/Header.tsx:169 #: src/components/wizards/ImportPartWizard.tsx:200 #: src/components/wizards/ImportPartWizard.tsx:233 -#: src/pages/Index/Settings/UserSettings.tsx:74 -#: src/pages/part/PartDetail.tsx:1155 +#: src/pages/Index/Settings/UserSettings.tsx:75 +#: src/pages/part/PartDetail.tsx:1176 msgid "Search" msgstr "Search" @@ -90,7 +90,7 @@ msgstr "Yes" msgid "No" msgstr "No" -#: lib/enums/ModelInformation.tsx:28 +#: lib/enums/ModelInformation.tsx:29 #: src/components/wizards/OrderPartsWizard.tsx:279 #: src/forms/BuildForms.tsx:332 #: src/forms/BuildForms.tsx:407 @@ -98,208 +98,234 @@ msgstr "No" #: src/forms/BuildForms.tsx:630 #: src/forms/BuildForms.tsx:793 #: src/forms/BuildForms.tsx:896 -#: src/forms/PurchaseOrderForms.tsx:798 +#: src/forms/PurchaseOrderForms.tsx:850 #: src/forms/ReturnOrderForms.tsx:242 -#: src/forms/SalesOrderForms.tsx:305 +#: src/forms/SalesOrderForms.tsx:384 #: src/forms/StockForms.tsx:360 #: src/forms/StockForms.tsx:791 #: src/forms/StockForms.tsx:838 -#: src/forms/StockForms.tsx:884 -#: src/forms/StockForms.tsx:923 -#: src/forms/StockForms.tsx:959 -#: src/forms/StockForms.tsx:1002 -#: src/forms/StockForms.tsx:1046 -#: src/forms/StockForms.tsx:1094 -#: src/forms/StockForms.tsx:1138 -#: src/pages/build/BuildDetail.tsx:200 -#: src/pages/part/PartDetail.tsx:1207 +#: src/forms/StockForms.tsx:891 +#: src/forms/StockForms.tsx:937 +#: src/forms/StockForms.tsx:975 +#: src/forms/StockForms.tsx:1018 +#: src/forms/StockForms.tsx:1062 +#: src/forms/StockForms.tsx:1110 +#: src/forms/StockForms.tsx:1154 +#: src/pages/build/BuildDetail.tsx:201 +#: src/pages/part/PartDetail.tsx:1228 #: src/tables/ColumnRenderers.tsx:91 +#: src/tables/part/PartTestResultTable.tsx:247 #: src/tables/part/RelatedPartTable.tsx:53 #: src/tables/stock/StockTrackingTable.tsx:87 msgid "Part" msgstr "Part" -#: lib/enums/ModelInformation.tsx:29 +#: lib/enums/ModelInformation.tsx:30 #: lib/enums/Roles.tsx:35 #: src/components/nav/NavigationDrawer.tsx:70 #: src/defaults/links.tsx:36 -#: src/pages/Index/Settings/SystemSettings.tsx:190 -#: src/pages/part/CategoryDetail.tsx:132 -#: src/pages/part/CategoryDetail.tsx:277 -#: src/pages/part/CategoryDetail.tsx:323 -#: src/pages/part/CategoryDetail.tsx:354 -#: src/pages/part/PartDetail.tsx:965 +#: src/pages/Index/Settings/SystemSettings.tsx:197 +#: src/pages/part/CategoryDetail.tsx:135 +#: src/pages/part/CategoryDetail.tsx:285 +#: src/pages/part/CategoryDetail.tsx:340 +#: src/pages/part/CategoryDetail.tsx:371 +#: src/pages/part/PartDetail.tsx:978 msgid "Parts" msgstr "Parts" #: lib/enums/ModelInformation.tsx:37 #: src/pages/Index/Settings/AdminCenter/PartParameterPanel.tsx:13 -msgid "Part Parameter Template" -msgstr "Part Parameter Template" +#~ msgid "Part Parameter Template" +#~ msgstr "Part Parameter Template" #: lib/enums/ModelInformation.tsx:38 -msgid "Part Parameter Templates" -msgstr "Part Parameter Templates" +#~ msgid "Part Parameter Templates" +#~ msgstr "Part Parameter Templates" + +#: lib/enums/ModelInformation.tsx:39 +msgid "Parameter" +msgstr "Parameter" + +#: lib/enums/ModelInformation.tsx:40 +#: src/components/panels/ParametersPanel.tsx:19 +#: src/components/wizards/ImportPartWizard.tsx:807 +#: src/pages/Index/Settings/AdminCenter/Index.tsx:195 +#: src/pages/Index/Settings/SystemSettings.tsx:191 +#: src/pages/part/PartDetail.tsx:943 +msgid "Parameters" +msgstr "Parameters" #: lib/enums/ModelInformation.tsx:45 +#: src/tables/part/PartCategoryTemplateTable.tsx:87 +msgid "Parameter Template" +msgstr "Parameter Template" + +#: lib/enums/ModelInformation.tsx:46 +#: src/pages/Index/Settings/AdminCenter/ParameterPanel.tsx:13 +msgid "Parameter Templates" +msgstr "Parameter Templates" + +#: lib/enums/ModelInformation.tsx:52 msgid "Part Test Template" msgstr "Part Test Template" -#: lib/enums/ModelInformation.tsx:46 +#: lib/enums/ModelInformation.tsx:53 msgid "Part Test Templates" msgstr "Part Test Templates" -#: lib/enums/ModelInformation.tsx:52 +#: lib/enums/ModelInformation.tsx:59 #: src/components/wizards/OrderPartsWizard.tsx:290 -#: src/pages/company/SupplierPartDetail.tsx:413 +#: src/pages/company/SupplierPartDetail.tsx:418 #: src/pages/stock/StockDetail.tsx:289 -#: src/tables/build/BuildAllocatedStockTable.tsx:155 +#: src/tables/build/BuildAllocatedStockTable.tsx:152 #: src/tables/part/PartPurchaseOrdersTable.tsx:50 +#: src/tables/purchasing/SupplierPartParametricTable.tsx:29 #: src/tables/purchasing/SupplierPartTable.tsx:83 #: src/tables/stock/StockItemTable.tsx:247 msgid "Supplier Part" msgstr "Supplier Part" -#: lib/enums/ModelInformation.tsx:53 -#: src/pages/purchasing/PurchasingIndex.tsx:92 +#: lib/enums/ModelInformation.tsx:60 +#: src/pages/purchasing/PurchasingIndex.tsx:128 msgid "Supplier Parts" msgstr "Supplier Parts" -#: lib/enums/ModelInformation.tsx:61 -#: src/pages/company/ManufacturerPartDetail.tsx:297 -#: src/pages/company/SupplierPartDetail.tsx:161 +#: lib/enums/ModelInformation.tsx:69 +#: src/pages/company/ManufacturerPartDetail.tsx:288 +#: src/pages/company/SupplierPartDetail.tsx:162 #: src/tables/part/PartPurchaseOrdersTable.tsx:56 #: src/tables/stock/StockItemTable.tsx:253 msgid "Manufacturer Part" msgstr "Manufacturer Part" -#: lib/enums/ModelInformation.tsx:62 -#: src/pages/purchasing/PurchasingIndex.tsx:109 +#: lib/enums/ModelInformation.tsx:70 +#: src/pages/purchasing/PurchasingIndex.tsx:177 msgid "Manufacturer Parts" msgstr "Manufacturer Parts" -#: lib/enums/ModelInformation.tsx:70 -#: src/pages/part/CategoryDetail.tsx:354 +#: lib/enums/ModelInformation.tsx:79 +#: src/pages/part/CategoryDetail.tsx:371 #: src/tables/Filter.tsx:389 msgid "Part Category" msgstr "Part Category" -#: lib/enums/ModelInformation.tsx:71 +#: lib/enums/ModelInformation.tsx:80 #: lib/enums/Roles.tsx:37 -#: src/pages/part/CategoryDetail.tsx:271 -#: src/pages/part/CategoryDetail.tsx:345 -#: src/pages/part/PartDetail.tsx:1196 +#: src/pages/part/CategoryDetail.tsx:279 +#: src/pages/part/CategoryDetail.tsx:362 +#: src/pages/part/PartDetail.tsx:1217 msgid "Part Categories" msgstr "Part Categories" -#: lib/enums/ModelInformation.tsx:79 +#: lib/enums/ModelInformation.tsx:88 #: src/forms/BuildForms.tsx:473 #: src/forms/BuildForms.tsx:633 #: src/forms/BuildForms.tsx:794 -#: src/forms/SalesOrderForms.tsx:307 +#: src/forms/SalesOrderForms.tsx:386 #: src/pages/stock/StockDetail.tsx:1005 -#: src/tables/part/PartTestResultTable.tsx:248 +#: src/tables/part/PartTestResultTable.tsx:256 #: src/tables/stock/StockTrackingTable.tsx:48 #: src/tables/stock/StockTrackingTable.tsx:55 msgid "Stock Item" msgstr "Stock Item" -#: lib/enums/ModelInformation.tsx:80 +#: lib/enums/ModelInformation.tsx:89 #: lib/enums/Roles.tsx:45 -#: src/pages/company/CompanyDetail.tsx:210 -#: src/pages/part/CategoryDetail.tsx:291 +#: src/pages/company/CompanyDetail.tsx:211 +#: src/pages/part/CategoryDetail.tsx:314 #: src/pages/part/PartStockHistoryDetail.tsx:101 #: src/pages/stock/LocationDetail.tsx:121 #: src/pages/stock/LocationDetail.tsx:180 msgid "Stock Items" msgstr "Stock Items" -#: lib/enums/ModelInformation.tsx:88 +#: lib/enums/ModelInformation.tsx:98 #: lib/enums/Roles.tsx:47 #: src/pages/stock/LocationDetail.tsx:420 msgid "Stock Location" msgstr "Stock Location" -#: lib/enums/ModelInformation.tsx:89 +#: lib/enums/ModelInformation.tsx:99 #: src/pages/stock/LocationDetail.tsx:174 #: src/pages/stock/LocationDetail.tsx:412 #: src/pages/stock/StockDetail.tsx:996 msgid "Stock Locations" msgstr "Stock Locations" -#: lib/enums/ModelInformation.tsx:97 +#: lib/enums/ModelInformation.tsx:108 msgid "Stock Location Type" msgstr "Stock Location Type" -#: lib/enums/ModelInformation.tsx:98 +#: lib/enums/ModelInformation.tsx:109 msgid "Stock Location Types" msgstr "Stock Location Types" -#: lib/enums/ModelInformation.tsx:103 -#: src/pages/Index/Settings/SystemSettings.tsx:248 -#: src/pages/part/PartDetail.tsx:911 +#: lib/enums/ModelInformation.tsx:114 +#: src/pages/Index/Settings/SystemSettings.tsx:254 +#: src/pages/part/PartDetail.tsx:900 msgid "Stock History" msgstr "Stock History" -#: lib/enums/ModelInformation.tsx:104 +#: lib/enums/ModelInformation.tsx:115 msgid "Stock Histories" msgstr "Stock Histories" -#: lib/enums/ModelInformation.tsx:109 +#: lib/enums/ModelInformation.tsx:120 msgid "Build" msgstr "Build" -#: lib/enums/ModelInformation.tsx:110 +#: lib/enums/ModelInformation.tsx:121 msgid "Builds" msgstr "Builds" -#: lib/enums/ModelInformation.tsx:118 +#: lib/enums/ModelInformation.tsx:130 msgid "Build Line" msgstr "Build Line" -#: lib/enums/ModelInformation.tsx:119 +#: lib/enums/ModelInformation.tsx:131 msgid "Build Lines" msgstr "Build Lines" -#: lib/enums/ModelInformation.tsx:126 +#: lib/enums/ModelInformation.tsx:138 msgid "Build Item" msgstr "Build Item" -#: lib/enums/ModelInformation.tsx:127 +#: lib/enums/ModelInformation.tsx:139 msgid "Build Items" msgstr "Build Items" -#: lib/enums/ModelInformation.tsx:132 -#: src/pages/company/CompanyDetail.tsx:340 +#: lib/enums/ModelInformation.tsx:144 +#: src/pages/company/CompanyDetail.tsx:345 #: src/tables/company/CompanyTable.tsx:47 #: src/tables/company/ContactTable.tsx:67 +#: src/tables/company/ParametricCompanyTable.tsx:18 msgid "Company" msgstr "Company" -#: lib/enums/ModelInformation.tsx:133 +#: lib/enums/ModelInformation.tsx:145 msgid "Companies" msgstr "Companies" -#: lib/enums/ModelInformation.tsx:140 -#: src/pages/build/BuildDetail.tsx:316 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:253 -#: src/pages/sales/ReturnOrderDetail.tsx:231 -#: src/pages/sales/SalesOrderDetail.tsx:224 +#: lib/enums/ModelInformation.tsx:152 +#: src/pages/build/BuildDetail.tsx:317 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:254 +#: src/pages/sales/ReturnOrderDetail.tsx:232 +#: src/pages/sales/SalesOrderDetail.tsx:225 #: src/tables/ColumnRenderers.tsx:362 #: src/tables/Filter.tsx:286 #: src/tables/TableHoverCard.tsx:101 msgid "Project Code" msgstr "Project Code" -#: lib/enums/ModelInformation.tsx:141 +#: lib/enums/ModelInformation.tsx:153 #: src/pages/Index/Settings/AdminCenter/Index.tsx:172 msgid "Project Codes" msgstr "Project Codes" -#: lib/enums/ModelInformation.tsx:147 +#: lib/enums/ModelInformation.tsx:159 #: src/components/wizards/OrderPartsWizard.tsx:338 #: src/pages/part/pricing/PurchaseHistoryPanel.tsx:33 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:550 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:555 #: src/pages/stock/StockDetail.tsx:352 #: src/tables/part/PartPurchaseOrdersTable.tsx:32 #: src/tables/stock/StockItemTable.tsx:239 @@ -307,117 +333,117 @@ msgstr "Project Codes" msgid "Purchase Order" msgstr "Purchase Order" -#: lib/enums/ModelInformation.tsx:148 +#: lib/enums/ModelInformation.tsx:160 #: lib/enums/Roles.tsx:39 #: src/defaults/actions.tsx:104 -#: src/pages/Index/Settings/SystemSettings.tsx:283 -#: src/pages/company/CompanyDetail.tsx:203 -#: src/pages/company/SupplierPartDetail.tsx:266 -#: src/pages/part/PartDetail.tsx:875 -#: src/pages/purchasing/PurchasingIndex.tsx:60 +#: src/pages/Index/Settings/SystemSettings.tsx:289 +#: src/pages/company/CompanyDetail.tsx:204 +#: src/pages/company/SupplierPartDetail.tsx:267 +#: src/pages/part/PartDetail.tsx:864 +#: src/pages/purchasing/PurchasingIndex.tsx:66 msgid "Purchase Orders" msgstr "Purchase Orders" -#: lib/enums/ModelInformation.tsx:156 +#: lib/enums/ModelInformation.tsx:169 msgid "Purchase Order Line" msgstr "Purchase Order Line" -#: lib/enums/ModelInformation.tsx:157 +#: lib/enums/ModelInformation.tsx:170 msgid "Purchase Order Lines" msgstr "Purchase Order Lines" -#: lib/enums/ModelInformation.tsx:162 -#: src/pages/build/BuildDetail.tsx:289 +#: lib/enums/ModelInformation.tsx:175 +#: src/pages/build/BuildDetail.tsx:290 #: src/pages/part/pricing/SaleHistoryPanel.tsx:24 -#: src/pages/sales/SalesOrderDetail.tsx:614 -#: src/pages/sales/SalesOrderShipmentDetail.tsx:105 -#: src/pages/sales/SalesOrderShipmentDetail.tsx:478 +#: src/pages/sales/SalesOrderDetail.tsx:619 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:103 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:446 #: src/pages/stock/StockDetail.tsx:361 #: src/tables/part/PartSalesAllocationsTable.tsx:41 #: src/tables/sales/SalesOrderAllocationTable.tsx:110 -#: src/tables/sales/SalesOrderShipmentTable.tsx:122 +#: src/tables/sales/SalesOrderShipmentTable.tsx:143 #: src/tables/stock/StockTrackingTable.tsx:131 msgid "Sales Order" msgstr "Sales Order" -#: lib/enums/ModelInformation.tsx:163 +#: lib/enums/ModelInformation.tsx:176 #: lib/enums/Roles.tsx:43 #: src/defaults/actions.tsx:114 -#: src/pages/Index/Settings/SystemSettings.tsx:299 -#: src/pages/company/CompanyDetail.tsx:223 -#: src/pages/part/PartDetail.tsx:887 -#: src/pages/sales/SalesIndex.tsx:84 +#: src/pages/Index/Settings/SystemSettings.tsx:305 +#: src/pages/company/CompanyDetail.tsx:224 +#: src/pages/part/PartDetail.tsx:876 +#: src/pages/sales/SalesIndex.tsx:53 msgid "Sales Orders" msgstr "Sales Orders" -#: lib/enums/ModelInformation.tsx:171 -#: src/pages/sales/SalesOrderShipmentDetail.tsx:477 +#: lib/enums/ModelInformation.tsx:185 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:445 msgid "Sales Order Shipment" msgstr "Sales Order Shipment" -#: lib/enums/ModelInformation.tsx:172 +#: lib/enums/ModelInformation.tsx:186 msgid "Sales Order Shipments" msgstr "Sales Order Shipments" -#: lib/enums/ModelInformation.tsx:179 -#: src/pages/sales/ReturnOrderDetail.tsx:549 +#: lib/enums/ModelInformation.tsx:194 +#: src/pages/sales/ReturnOrderDetail.tsx:554 #: src/tables/stock/StockTrackingTable.tsx:142 msgid "Return Order" msgstr "Return Order" -#: lib/enums/ModelInformation.tsx:180 +#: lib/enums/ModelInformation.tsx:195 #: lib/enums/Roles.tsx:41 #: src/defaults/actions.tsx:125 -#: src/pages/Index/Settings/SystemSettings.tsx:316 -#: src/pages/company/CompanyDetail.tsx:230 -#: src/pages/part/PartDetail.tsx:894 -#: src/pages/sales/SalesIndex.tsx:117 +#: src/pages/Index/Settings/SystemSettings.tsx:322 +#: src/pages/company/CompanyDetail.tsx:231 +#: src/pages/part/PartDetail.tsx:883 +#: src/pages/sales/SalesIndex.tsx:99 msgid "Return Orders" msgstr "Return Orders" -#: lib/enums/ModelInformation.tsx:188 +#: lib/enums/ModelInformation.tsx:204 msgid "Return Order Line Item" msgstr "Return Order Line Item" -#: lib/enums/ModelInformation.tsx:189 +#: lib/enums/ModelInformation.tsx:205 msgid "Return Order Line Items" msgstr "Return Order Line Items" -#: lib/enums/ModelInformation.tsx:194 +#: lib/enums/ModelInformation.tsx:210 #: src/tables/company/AddressTable.tsx:52 msgid "Address" msgstr "Address" -#: lib/enums/ModelInformation.tsx:195 -#: src/pages/company/CompanyDetail.tsx:264 +#: lib/enums/ModelInformation.tsx:211 +#: src/pages/company/CompanyDetail.tsx:265 msgid "Addresses" msgstr "Addresses" -#: lib/enums/ModelInformation.tsx:201 +#: lib/enums/ModelInformation.tsx:217 #: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:89 #: src/pages/core/UserDetail.tsx:135 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:229 -#: src/pages/sales/ReturnOrderDetail.tsx:207 -#: src/pages/sales/SalesOrderDetail.tsx:200 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:230 +#: src/pages/sales/ReturnOrderDetail.tsx:208 +#: src/pages/sales/SalesOrderDetail.tsx:201 msgid "Contact" msgstr "Contact" -#: lib/enums/ModelInformation.tsx:202 -#: src/pages/company/CompanyDetail.tsx:258 +#: lib/enums/ModelInformation.tsx:218 +#: src/pages/company/CompanyDetail.tsx:259 #: src/pages/core/CoreIndex.tsx:33 msgid "Contacts" msgstr "Contacts" -#: lib/enums/ModelInformation.tsx:208 +#: lib/enums/ModelInformation.tsx:224 #: src/tables/ColumnRenderers.tsx:444 msgid "Owner" msgstr "Owner" -#: lib/enums/ModelInformation.tsx:209 +#: lib/enums/ModelInformation.tsx:225 msgid "Owners" msgstr "Owners" -#: lib/enums/ModelInformation.tsx:215 +#: lib/enums/ModelInformation.tsx:231 #: src/pages/Auth/ChangePassword.tsx:36 #: src/pages/core/UserDetail.tsx:220 #: src/tables/ColumnRenderers.tsx:395 @@ -432,7 +458,7 @@ msgstr "Owners" msgid "User" msgstr "User" -#: lib/enums/ModelInformation.tsx:216 +#: lib/enums/ModelInformation.tsx:232 #: src/components/nav/NavigationDrawer.tsx:105 #: src/pages/Index/Settings/AdminCenter/UserManagementPanel.tsx:15 #: src/pages/core/CoreIndex.tsx:21 @@ -440,12 +466,12 @@ msgstr "User" msgid "Users" msgstr "Users" -#: lib/enums/ModelInformation.tsx:222 +#: lib/enums/ModelInformation.tsx:238 #: src/pages/core/GroupDetail.tsx:78 msgid "Group" msgstr "Group" -#: lib/enums/ModelInformation.tsx:223 +#: lib/enums/ModelInformation.tsx:239 #: src/components/nav/NavigationDrawer.tsx:111 #: src/pages/Index/Settings/AdminCenter/UserManagementPanel.tsx:23 #: src/pages/core/CoreIndex.tsx:27 @@ -455,64 +481,64 @@ msgstr "Group" msgid "Groups" msgstr "Groups" -#: lib/enums/ModelInformation.tsx:230 +#: lib/enums/ModelInformation.tsx:246 msgid "Import Session" msgstr "Import Session" -#: lib/enums/ModelInformation.tsx:231 +#: lib/enums/ModelInformation.tsx:247 msgid "Import Sessions" msgstr "Import Sessions" -#: lib/enums/ModelInformation.tsx:238 +#: lib/enums/ModelInformation.tsx:254 msgid "Label Template" msgstr "Label Template" -#: lib/enums/ModelInformation.tsx:239 +#: lib/enums/ModelInformation.tsx:255 #: src/pages/Index/Settings/AdminCenter/Index.tsx:209 msgid "Label Templates" msgstr "Label Templates" -#: lib/enums/ModelInformation.tsx:246 +#: lib/enums/ModelInformation.tsx:262 msgid "Report Template" msgstr "Report Template" -#: lib/enums/ModelInformation.tsx:247 +#: lib/enums/ModelInformation.tsx:263 #: src/pages/Index/Settings/AdminCenter/Index.tsx:215 msgid "Report Templates" msgstr "Report Templates" -#: lib/enums/ModelInformation.tsx:254 +#: lib/enums/ModelInformation.tsx:270 #: src/components/plugins/PluginDrawer.tsx:145 msgid "Plugin Configuration" msgstr "Plugin Configuration" -#: lib/enums/ModelInformation.tsx:255 +#: lib/enums/ModelInformation.tsx:271 msgid "Plugin Configurations" msgstr "Plugin Configurations" -#: lib/enums/ModelInformation.tsx:262 +#: lib/enums/ModelInformation.tsx:278 msgid "Content Type" msgstr "Content Type" -#: lib/enums/ModelInformation.tsx:263 +#: lib/enums/ModelInformation.tsx:279 msgid "Content Types" msgstr "Content Types" -#: lib/enums/ModelInformation.tsx:268 +#: lib/enums/ModelInformation.tsx:284 msgid "Selection List" msgstr "Selection List" -#: lib/enums/ModelInformation.tsx:269 -#: src/pages/Index/Settings/AdminCenter/PartParameterPanel.tsx:21 +#: lib/enums/ModelInformation.tsx:285 +#: src/pages/Index/Settings/AdminCenter/ParameterPanel.tsx:21 msgid "Selection Lists" msgstr "Selection Lists" -#: lib/enums/ModelInformation.tsx:275 +#: lib/enums/ModelInformation.tsx:291 #: src/components/barcodes/BarcodeInput.tsx:114 #: src/components/dashboard/DashboardLayout.tsx:281 #: src/components/editors/NotesEditor.tsx:74 #: src/components/editors/TemplateEditor/TemplateEditor.tsx:158 -#: src/components/forms/fields/ApiFormField.tsx:273 +#: src/components/forms/fields/ApiFormField.tsx:237 #: src/components/forms/fields/TableField.tsx:45 #: src/components/importer/ImportDataSelector.tsx:192 #: src/components/importer/ImporterColumnSelector.tsx:234 @@ -523,7 +549,7 @@ msgstr "Selection Lists" #: src/components/nav/SearchDrawer.tsx:572 #: src/components/settings/SettingList.tsx:139 #: src/components/wizards/ImportPartWizard.tsx:574 -#: src/components/wizards/ImportPartWizard.tsx:718 +#: src/components/wizards/ImportPartWizard.tsx:719 #: src/forms/BomForms.tsx:69 #: src/functions/auth.tsx:643 #: src/pages/ErrorPage.tsx:11 @@ -542,9 +568,9 @@ msgstr "Selection Lists" msgid "Error" msgstr "Error" -#: lib/enums/ModelInformation.tsx:276 +#: lib/enums/ModelInformation.tsx:292 #: src/tables/machine/MachineListTable.tsx:402 -#: src/tables/machine/MachineTypeTable.tsx:299 +#: src/tables/machine/MachineTypeTable.tsx:297 msgid "Errors" msgstr "Errors" @@ -554,10 +580,10 @@ msgstr "Admin" #: lib/enums/Roles.tsx:33 #: src/defaults/actions.tsx:135 -#: src/pages/Index/Settings/SystemSettings.tsx:264 -#: src/pages/build/BuildIndex.tsx:75 -#: src/pages/part/PartDetail.tsx:904 -#: src/pages/sales/SalesOrderDetail.tsx:421 +#: src/pages/Index/Settings/SystemSettings.tsx:270 +#: src/pages/build/BuildIndex.tsx:67 +#: src/pages/part/PartDetail.tsx:893 +#: src/pages/sales/SalesOrderDetail.tsx:422 msgid "Build Orders" msgstr "Build Orders" @@ -634,39 +660,39 @@ msgstr "Scan or enter barcode data" msgid "Enter barcode data" msgstr "Enter barcode data" -#: src/components/barcodes/BarcodeScanDialog.tsx:49 -#: src/components/buttons/ScanButton.tsx:15 +#: src/components/barcodes/BarcodeScanDialog.tsx:56 +#: src/components/buttons/ScanButton.tsx:27 #: src/components/nav/NavigationDrawer.tsx:122 -#: src/forms/PurchaseOrderForms.tsx:457 -#: src/forms/PurchaseOrderForms.tsx:563 +#: src/forms/PurchaseOrderForms.tsx:509 +#: src/forms/PurchaseOrderForms.tsx:615 msgid "Scan Barcode" msgstr "Scan Barcode" -#: src/components/barcodes/BarcodeScanDialog.tsx:105 +#: src/components/barcodes/BarcodeScanDialog.tsx:121 msgid "No matching item found" msgstr "No matching item found" -#: src/components/barcodes/BarcodeScanDialog.tsx:134 +#: src/components/barcodes/BarcodeScanDialog.tsx:150 msgid "Barcode does not match the expected model type" msgstr "Barcode does not match the expected model type" -#: src/components/barcodes/BarcodeScanDialog.tsx:145 +#: src/components/barcodes/BarcodeScanDialog.tsx:161 #: src/components/editors/NotesEditor.tsx:84 #: src/components/editors/NotesEditor.tsx:118 -#: src/components/forms/ApiForm.tsx:465 +#: src/components/forms/ApiForm.tsx:484 #: src/components/wizards/ImportPartWizard.tsx:566 -#: src/components/wizards/ImportPartWizard.tsx:690 +#: src/components/wizards/ImportPartWizard.tsx:691 #: src/pages/Index/Settings/AdminCenter/CurrencyManagementPanel.tsx:45 #: src/tables/bom/BomTable.tsx:548 #: src/tables/settings/PendingTasksTable.tsx:68 msgid "Success" msgstr "Success" -#: src/components/barcodes/BarcodeScanDialog.tsx:151 +#: src/components/barcodes/BarcodeScanDialog.tsx:167 msgid "Failed to handle barcode" msgstr "Failed to handle barcode" -#: src/components/barcodes/BarcodeScanDialog.tsx:167 +#: src/components/barcodes/BarcodeScanDialog.tsx:183 #: src/pages/Index/Scan.tsx:129 msgid "Failed to scan barcode" msgstr "Failed to scan barcode" @@ -709,10 +735,10 @@ msgstr "Failed to link barcode" #: src/components/barcodes/QRCode.tsx:179 #: src/pages/part/PartDetail.tsx:521 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:222 -#: src/pages/sales/ReturnOrderDetail.tsx:188 -#: src/pages/sales/SalesOrderDetail.tsx:181 -#: src/pages/sales/SalesOrderShipmentDetail.tsx:122 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:223 +#: src/pages/sales/ReturnOrderDetail.tsx:189 +#: src/pages/sales/SalesOrderDetail.tsx:182 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:120 #: src/pages/stock/StockDetail.tsx:186 msgid "Link" msgstr "Link" @@ -723,7 +749,7 @@ msgstr "This will remove the link to the associated barcode" #: src/components/barcodes/QRCode.tsx:205 #: src/components/items/ActionDropdown.tsx:192 -#: src/forms/PurchaseOrderForms.tsx:554 +#: src/forms/PurchaseOrderForms.tsx:606 msgid "Unlink Barcode" msgstr "Unlink Barcode" @@ -824,14 +850,14 @@ msgstr "You will be redirected to the provider for further actions." #~ msgid "Scan QR code" #~ msgstr "Scan QR code" -#: src/components/buttons/ScanButton.tsx:19 -msgid "Open Barcode Scanner" -msgstr "Open Barcode Scanner" - #: src/components/buttons/ScanButton.tsx:20 #~ msgid "Open QR code scanner" #~ msgstr "Open QR code scanner" +#: src/components/buttons/ScanButton.tsx:32 +msgid "Open Barcode Scanner" +msgstr "Open Barcode Scanner" + #: src/components/buttons/SpotlightButton.tsx:12 msgid "Open spotlight" msgstr "Open spotlight" @@ -1054,7 +1080,7 @@ msgid "Show the number of sales orders which are assigned to you" msgstr "Show the number of sales orders which are assigned to you" #: src/components/dashboard/DashboardWidgetLibrary.tsx:129 -#: src/pages/sales/SalesIndex.tsx:105 +#: src/pages/sales/SalesIndex.tsx:87 msgid "Pending Shipments" msgstr "Pending Shipments" @@ -1205,12 +1231,18 @@ msgid "Remove the associated image from this item?" msgstr "Remove the associated image from this item?" #: src/components/details/DetailsImage.tsx:83 -#: src/forms/StockForms.tsx:888 +#: src/forms/StockForms.tsx:895 #: src/pages/Index/Settings/AccountSettings/MFASettings.tsx:324 #: src/pages/Index/Settings/AccountSettings/MFASettings.tsx:415 #: src/pages/Index/Settings/AccountSettings/MFASettings.tsx:884 #: src/pages/Index/Settings/AccountSettings/MFASettings.tsx:903 #: src/pages/Index/Settings/AccountSettings/SecurityContent.tsx:254 +#: src/tables/build/BuildAllocatedStockTable.tsx:178 +#: src/tables/build/BuildAllocatedStockTable.tsx:258 +#: src/tables/build/BuildLineTable.tsx:111 +#: src/tables/build/BuildLineTable.tsx:665 +#: src/tables/sales/SalesOrderAllocationTable.tsx:224 +#: src/tables/sales/SalesOrderAllocationTable.tsx:247 msgid "Remove" msgstr "Remove" @@ -1236,12 +1268,12 @@ msgid "Upload Error" msgstr "Upload Error" #: src/components/details/DetailsImage.tsx:250 -#: src/components/forms/fields/TextField.tsx:65 +#: src/components/forms/fields/AutoFillRightSection.tsx:34 msgid "Clear" msgstr "Clear" #: src/components/details/DetailsImage.tsx:256 -#: src/components/forms/ApiForm.tsx:677 +#: src/components/forms/ApiForm.tsx:696 #: src/contexts/ThemeContext.tsx:44 #: src/pages/Index/Settings/AccountSettings/MFASettings.tsx:149 #: src/pages/Index/Settings/AccountSettings/MFASettings.tsx:568 @@ -1494,8 +1526,8 @@ msgstr "Server Error" msgid "A server error occurred" msgstr "A server error occurred" -#: src/components/forms/ApiForm.tsx:103 -#: src/components/forms/ApiForm.tsx:594 +#: src/components/forms/ApiForm.tsx:107 +#: src/components/forms/ApiForm.tsx:613 msgid "Form Error" msgstr "Form Error" @@ -1503,11 +1535,11 @@ msgstr "Form Error" #~ msgid "Form Errors Exist" #~ msgstr "Form Errors Exist" -#: src/components/forms/ApiForm.tsx:604 +#: src/components/forms/ApiForm.tsx:623 msgid "Errors exist for one or more form fields" msgstr "Errors exist for one or more form fields" -#: src/components/forms/ApiForm.tsx:715 +#: src/components/forms/ApiForm.tsx:734 #: src/hooks/UseForm.tsx:133 #: src/tables/plugin/PluginListTable.tsx:204 msgid "Update" @@ -1693,15 +1725,14 @@ msgstr "Host" #: src/components/forms/InstanceOptions.tsx:124 #: src/components/plugins/PluginDrawer.tsx:68 #: src/pages/Index/Settings/AdminCenter/UnitManagementPanel.tsx:19 -#: src/pages/part/CategoryDetail.tsx:88 +#: src/pages/part/CategoryDetail.tsx:91 #: src/pages/part/PartDetail.tsx:446 #: src/pages/stock/LocationDetail.tsx:82 #: src/tables/machine/MachineTypeTable.tsx:67 -#: src/tables/machine/MachineTypeTable.tsx:151 -#: src/tables/machine/MachineTypeTable.tsx:254 -#: src/tables/machine/MachineTypeTable.tsx:357 +#: src/tables/machine/MachineTypeTable.tsx:149 +#: src/tables/machine/MachineTypeTable.tsx:252 +#: src/tables/machine/MachineTypeTable.tsx:355 #: src/tables/plugin/PluginErrorTable.tsx:33 -#: src/tables/purchasing/ManufacturerPartParameterTable.tsx:36 #: src/tables/settings/ApiTokenTable.tsx:57 #: src/tables/settings/GroupTable.tsx:95 #: src/tables/settings/GroupTable.tsx:148 @@ -1764,7 +1795,7 @@ msgstr "Save host selection" #~ msgstr "State: <0>worker ({0}), <1>plugins{1}" #: src/components/forms/InstanceOptions.tsx:118 -#: src/pages/Index/Settings/SystemSettings.tsx:45 +#: src/pages/Index/Settings/SystemSettings.tsx:46 msgid "Server" msgstr "Server" @@ -1788,6 +1819,8 @@ msgid "Plugins" msgstr "Plugins" #: src/components/forms/InstanceOptions.tsx:143 +#: src/tables/general/ParameterTemplateTable.tsx:153 +#: src/tables/general/ParameterTemplateTable.tsx:188 #: src/tables/part/PartTestTemplateTable.tsx:117 #: src/tables/settings/TemplateTable.tsx:251 #: src/tables/settings/TemplateTable.tsx:362 @@ -1812,10 +1845,14 @@ msgstr "Stopped" msgid "Running" msgstr "Running" -#: src/components/forms/fields/ApiFormField.tsx:233 +#: src/components/forms/fields/ApiFormField.tsx:197 msgid "Select file to upload" msgstr "Select file to upload" +#: src/components/forms/fields/AutoFillRightSection.tsx:47 +msgid "Accept suggested value" +msgstr "Accept suggested value" + #: src/components/forms/fields/DateField.tsx:76 msgid "Select date" msgstr "Select date" @@ -1848,13 +1885,13 @@ msgstr "Select pack" msgid "{0} icons" msgstr "{0} icons" -#: src/components/forms/fields/RelatedModelField.tsx:409 +#: src/components/forms/fields/RelatedModelField.tsx:480 #: src/components/modals/AboutInvenTreeModal.tsx:96 #: src/pages/Index/Settings/AccountSettings/SecurityContent.tsx:383 msgid "Loading" msgstr "Loading" -#: src/components/forms/fields/RelatedModelField.tsx:411 +#: src/components/forms/fields/RelatedModelField.tsx:482 msgid "No results found" msgstr "No results found" @@ -1870,10 +1907,6 @@ msgstr "No entries available" msgid "Add new row" msgstr "Add new row" -#: src/components/forms/fields/TextField.tsx:82 -msgid "Accept suggested value" -msgstr "Accept suggested value" - #: src/components/images/DetailsImage.tsx:252 #~ msgid "Select image" #~ msgstr "Select image" @@ -2031,7 +2064,7 @@ msgstr "Data has been imported successfully" #: src/components/importer/ImporterDrawer.tsx:109 #: src/components/modals/AboutInvenTreeModal.tsx:205 #: src/components/modals/ServerInfoModal.tsx:134 -#: src/components/wizards/ImportPartWizard.tsx:772 +#: src/components/wizards/ImportPartWizard.tsx:773 #: src/forms/BomForms.tsx:132 #: src/pages/Index/Settings/AccountSettings/MFASettings.tsx:685 msgid "Close" @@ -2194,7 +2227,7 @@ msgid "Change" msgstr "Change" #: src/components/items/RoleTable.tsx:150 -#: src/forms/StockForms.tsx:927 +#: src/forms/StockForms.tsx:941 #: src/tables/stock/StockItemTestResultTable.tsx:367 msgid "Add" msgstr "Add" @@ -2217,11 +2250,11 @@ msgstr "No items" #: src/components/items/TransferList.tsx:161 #: src/components/render/Stock.tsx:102 -#: src/pages/part/PartDetail.tsx:994 +#: src/pages/part/PartDetail.tsx:1009 #: src/pages/stock/StockDetail.tsx:265 #: src/pages/stock/StockDetail.tsx:942 -#: src/tables/build/BuildAllocatedStockTable.tsx:135 -#: src/tables/build/BuildLineTable.tsx:192 +#: src/tables/build/BuildAllocatedStockTable.tsx:132 +#: src/tables/build/BuildLineTable.tsx:193 #: src/tables/part/PartTable.tsx:137 #: src/tables/stock/StockItemTable.tsx:182 #: src/tables/stock/StockItemTable.tsx:343 @@ -2368,7 +2401,7 @@ msgid "Database" msgstr "Database" #: src/components/modals/ServerInfoModal.tsx:49 -#: src/components/nav/Alerts.tsx:118 +#: src/components/nav/Alerts.tsx:120 msgid "Debug Mode" msgstr "Debug Mode" @@ -2409,7 +2442,7 @@ msgid "Issues detected" msgstr "Issues detected" #: src/components/modals/ServerInfoModal.tsx:102 -#: src/components/nav/Alerts.tsx:125 +#: src/components/nav/Alerts.tsx:127 msgid "Background Worker" msgstr "Background Worker" @@ -2431,7 +2464,7 @@ msgstr "Email Settings" #~ msgstr "Email settings not configured" #: src/components/modals/ServerInfoModal.tsx:120 -#: src/components/nav/Alerts.tsx:141 +#: src/components/nav/Alerts.tsx:143 msgid "Email settings not configured." msgstr "Email settings not configured." @@ -2439,43 +2472,47 @@ msgstr "Email settings not configured." msgid "Alerts" msgstr "Alerts" -#: src/components/nav/Alerts.tsx:120 +#: src/components/nav/Alerts.tsx:97 +msgid "No issues detected" +msgstr "No issues detected" + +#: src/components/nav/Alerts.tsx:122 msgid "The server is running in debug mode." msgstr "The server is running in debug mode." -#: src/components/nav/Alerts.tsx:127 +#: src/components/nav/Alerts.tsx:129 msgid "The background worker process is not running." msgstr "The background worker process is not running." -#: src/components/nav/Alerts.tsx:132 +#: src/components/nav/Alerts.tsx:134 msgid "Server Restart" msgstr "Server Restart" -#: src/components/nav/Alerts.tsx:134 +#: src/components/nav/Alerts.tsx:136 msgid "The server requires a restart to apply changes." msgstr "The server requires a restart to apply changes." -#: src/components/nav/Alerts.tsx:139 +#: src/components/nav/Alerts.tsx:141 msgid "Email settings" msgstr "Email settings" -#: src/components/nav/Alerts.tsx:146 +#: src/components/nav/Alerts.tsx:148 msgid "Database Migrations" msgstr "Database Migrations" -#: src/components/nav/Alerts.tsx:148 +#: src/components/nav/Alerts.tsx:150 msgid "There are pending database migrations." msgstr "There are pending database migrations." -#: src/components/nav/Alerts.tsx:163 +#: src/components/nav/Alerts.tsx:165 msgid "Learn more about {code}" msgstr "Learn more about {code}" #: src/components/nav/Header.tsx:188 #: src/components/nav/NavigationDrawer.tsx:134 #: src/components/nav/NotificationDrawer.tsx:181 -#: src/pages/Index/Settings/SystemSettings.tsx:121 -#: src/pages/Index/Settings/UserSettings.tsx:106 +#: src/pages/Index/Settings/SystemSettings.tsx:122 +#: src/pages/Index/Settings/UserSettings.tsx:107 #: src/pages/Notifications.tsx:45 #: src/pages/Notifications.tsx:130 msgid "Notifications" @@ -2506,8 +2543,8 @@ msgstr "Settings" #: src/components/nav/NavigationDrawer.tsx:140 #: src/components/nav/SettingsHeader.tsx:40 #: src/defaults/actions.tsx:92 -#: src/pages/Index/Settings/UserSettings.tsx:141 -#: src/pages/Index/Settings/UserSettings.tsx:145 +#: src/pages/Index/Settings/UserSettings.tsx:142 +#: src/pages/Index/Settings/UserSettings.tsx:146 msgid "User Settings" msgstr "User Settings" @@ -2524,8 +2561,8 @@ msgstr "User Settings" #: src/components/nav/NavigationDrawer.tsx:146 #: src/components/nav/SettingsHeader.tsx:41 #: src/defaults/actions.tsx:144 -#: src/pages/Index/Settings/SystemSettings.tsx:348 -#: src/pages/Index/Settings/SystemSettings.tsx:353 +#: src/pages/Index/Settings/SystemSettings.tsx:354 +#: src/pages/Index/Settings/SystemSettings.tsx:359 msgid "System Settings" msgstr "System Settings" @@ -2572,11 +2609,11 @@ msgstr "Logout" #: src/components/nav/NavigationDrawer.tsx:77 #: src/components/render/Part.tsx:36 -#: src/components/wizards/ImportPartWizard.tsx:807 +#: src/components/wizards/ImportPartWizard.tsx:808 #: src/defaults/links.tsx:42 #: src/forms/StockForms.tsx:794 -#: src/pages/Index/Settings/SystemSettings.tsx:224 -#: src/pages/part/PartDetail.tsx:804 +#: src/pages/Index/Settings/SystemSettings.tsx:230 +#: src/pages/part/PartDetail.tsx:793 #: src/pages/stock/LocationDetail.tsx:390 #: src/pages/stock/LocationDetail.tsx:420 #: src/pages/stock/StockDetail.tsx:642 @@ -2586,29 +2623,29 @@ msgstr "Stock" #: src/components/nav/NavigationDrawer.tsx:84 #: src/defaults/links.tsx:48 -#: src/pages/build/BuildDetail.tsx:748 -#: src/pages/build/BuildIndex.tsx:102 +#: src/pages/build/BuildDetail.tsx:753 +#: src/pages/build/BuildIndex.tsx:101 msgid "Manufacturing" msgstr "Manufacturing" #: src/components/nav/NavigationDrawer.tsx:91 #: src/defaults/links.tsx:54 #: src/pages/company/ManufacturerDetail.tsx:9 -#: src/pages/company/ManufacturerPartDetail.tsx:276 +#: src/pages/company/ManufacturerPartDetail.tsx:267 #: src/pages/company/SupplierDetail.tsx:9 -#: src/pages/company/SupplierPartDetail.tsx:360 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:553 -#: src/pages/purchasing/PurchasingIndex.tsx:122 +#: src/pages/company/SupplierPartDetail.tsx:365 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:558 +#: src/pages/purchasing/PurchasingIndex.tsx:212 msgid "Purchasing" msgstr "Purchasing" #: src/components/nav/NavigationDrawer.tsx:98 #: src/defaults/links.tsx:60 #: src/pages/company/CustomerDetail.tsx:9 -#: src/pages/sales/ReturnOrderDetail.tsx:554 -#: src/pages/sales/SalesIndex.tsx:153 -#: src/pages/sales/SalesOrderDetail.tsx:619 -#: src/pages/sales/SalesOrderShipmentDetail.tsx:480 +#: src/pages/sales/ReturnOrderDetail.tsx:559 +#: src/pages/sales/SalesIndex.tsx:168 +#: src/pages/sales/SalesOrderDetail.tsx:624 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:448 msgid "Sales" msgstr "Sales" @@ -2662,21 +2699,21 @@ msgid "Remove search group" msgstr "Remove search group" #: src/components/nav/SearchDrawer.tsx:288 -#: src/pages/company/ManufacturerPartDetail.tsx:192 -#: src/pages/part/PartDetail.tsx:862 +#: src/pages/company/ManufacturerPartDetail.tsx:179 +#: src/pages/part/PartDetail.tsx:851 #: src/pages/part/PartSupplierDetail.tsx:15 -#: src/pages/purchasing/PurchasingIndex.tsx:81 +#: src/pages/purchasing/PurchasingIndex.tsx:100 msgid "Suppliers" msgstr "Suppliers" #: src/components/nav/SearchDrawer.tsx:298 #: src/pages/part/PartSupplierDetail.tsx:23 -#: src/pages/purchasing/PurchasingIndex.tsx:98 +#: src/pages/purchasing/PurchasingIndex.tsx:149 msgid "Manufacturers" msgstr "Manufacturers" #: src/components/nav/SearchDrawer.tsx:308 -#: src/pages/sales/SalesIndex.tsx:138 +#: src/pages/sales/SalesIndex.tsx:133 msgid "Customers" msgstr "Customers" @@ -2767,21 +2804,21 @@ msgstr "Plugin Information" #: src/components/plugins/PluginDrawer.tsx:73 #: src/forms/selectionListFields.tsx:102 -#: src/pages/build/BuildDetail.tsx:250 -#: src/pages/company/CompanyDetail.tsx:93 -#: src/pages/company/ManufacturerPartDetail.tsx:93 -#: src/pages/company/ManufacturerPartDetail.tsx:120 -#: src/pages/company/SupplierPartDetail.tsx:145 -#: src/pages/part/CategoryDetail.tsx:108 +#: src/pages/build/BuildDetail.tsx:251 +#: src/pages/company/CompanyDetail.tsx:94 +#: src/pages/company/ManufacturerPartDetail.tsx:92 +#: src/pages/company/ManufacturerPartDetail.tsx:119 +#: src/pages/company/SupplierPartDetail.tsx:146 +#: src/pages/part/CategoryDetail.tsx:111 #: src/pages/part/PartDetail.tsx:460 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:162 -#: src/pages/sales/ReturnOrderDetail.tsx:129 -#: src/pages/sales/SalesOrderDetail.tsx:119 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:163 +#: src/pages/sales/ReturnOrderDetail.tsx:130 +#: src/pages/sales/SalesOrderDetail.tsx:120 #: src/pages/stock/LocationDetail.tsx:102 #: src/tables/ColumnRenderers.tsx:278 -#: src/tables/build/BuildAllocatedStockTable.tsx:91 -#: src/tables/machine/MachineTypeTable.tsx:161 -#: src/tables/machine/MachineTypeTable.tsx:257 +#: src/tables/build/BuildAllocatedStockTable.tsx:88 +#: src/tables/machine/MachineTypeTable.tsx:159 +#: src/tables/machine/MachineTypeTable.tsx:255 #: src/tables/plugin/PluginListTable.tsx:110 msgid "Description" msgstr "Description" @@ -2809,7 +2846,7 @@ msgstr "Date" #: src/tables/company/CompanyTable.tsx:91 #: src/tables/machine/MachineListTable.tsx:384 #: src/tables/machine/MachineListTable.tsx:799 -#: src/tables/part/ParametricPartTable.tsx:354 +#: src/tables/part/ParametricPartTable.tsx:19 #: src/tables/part/PartTable.tsx:197 #: src/tables/part/PartVariantTable.tsx:15 #: src/tables/plugin/PluginListTable.tsx:96 @@ -2831,8 +2868,8 @@ msgid "Installation Path" msgstr "Installation Path" #: src/components/plugins/PluginDrawer.tsx:116 -#: src/tables/machine/MachineTypeTable.tsx:184 -#: src/tables/machine/MachineTypeTable.tsx:293 +#: src/tables/machine/MachineTypeTable.tsx:182 +#: src/tables/machine/MachineTypeTable.tsx:291 #: src/tables/plugin/PluginListTable.tsx:101 #: src/tables/plugin/PluginListTable.tsx:417 msgid "Builtin" @@ -2844,8 +2881,8 @@ msgstr "Package" #: src/components/plugins/PluginDrawer.tsx:133 #: src/pages/Index/Settings/AdminCenter/PluginManagementPanel.tsx:55 -#: src/pages/Index/Settings/SystemSettings.tsx:331 -#: src/pages/Index/Settings/UserSettings.tsx:128 +#: src/pages/Index/Settings/SystemSettings.tsx:337 +#: src/pages/Index/Settings/UserSettings.tsx:129 msgid "Plugin Settings" msgstr "Plugin Settings" @@ -2906,7 +2943,7 @@ msgstr "Error occurred while loading plugin content" #~ msgid "Unknown model: {model}" #~ msgstr "Unknown model: {model}" -#: src/components/render/Instance.tsx:249 +#: src/components/render/Instance.tsx:247 msgid "Unknown model: {model_name}" msgstr "Unknown model: {model_name}" @@ -2934,10 +2971,10 @@ msgstr "Shipment" #: src/components/render/Part.tsx:28 #: src/components/render/Plugin.tsx:17 #: src/components/render/User.tsx:37 -#: src/pages/company/CompanyDetail.tsx:323 -#: src/pages/company/SupplierPartDetail.tsx:373 +#: src/pages/company/CompanyDetail.tsx:328 +#: src/pages/company/SupplierPartDetail.tsx:378 #: src/pages/core/UserDetail.tsx:211 -#: src/pages/part/PartDetail.tsx:1027 +#: src/pages/part/PartDetail.tsx:1048 #: src/tables/ColumnRenderers.tsx:410 msgid "Inactive" msgstr "Inactive" @@ -2957,11 +2994,11 @@ msgstr "No stock" #: src/components/render/Part.tsx:47 #: src/components/wizards/OrderPartsWizard.tsx:135 -#: src/pages/company/SupplierPartDetail.tsx:197 -#: src/pages/company/SupplierPartDetail.tsx:394 -#: src/pages/part/PartDetail.tsx:1015 +#: src/pages/company/SupplierPartDetail.tsx:198 +#: src/pages/company/SupplierPartDetail.tsx:399 +#: src/pages/part/PartDetail.tsx:1030 #: src/tables/bom/BomTable.tsx:444 -#: src/tables/build/BuildLineTable.tsx:222 +#: src/tables/build/BuildLineTable.tsx:223 #: src/tables/part/PartTable.tsx:108 msgid "On Order" msgstr "On Order" @@ -2969,9 +3006,9 @@ msgstr "On Order" #: src/components/render/Part.tsx:55 #: src/components/wizards/OrderPartsWizard.tsx:141 #: src/pages/part/PartDetail.tsx:587 -#: src/pages/part/PartDetail.tsx:1021 +#: src/pages/part/PartDetail.tsx:1036 #: src/pages/stock/StockDetail.tsx:925 -#: src/tables/part/PartTestResultTable.tsx:297 +#: src/tables/part/PartTestResultTable.tsx:305 #: src/tables/stock/StockItemTable.tsx:359 msgid "In Production" msgstr "In Production" @@ -2982,7 +3019,7 @@ msgid "Details" msgstr "Details" #: src/components/render/Part.tsx:112 -#: src/components/wizards/ImportPartWizard.tsx:806 +#: src/components/wizards/ImportPartWizard.tsx:807 #: src/pages/part/PartDetail.tsx:487 #: src/tables/ColumnRenderers.tsx:233 #: src/tables/ColumnRenderers.tsx:242 @@ -2995,16 +3032,16 @@ msgstr "Category" #: src/components/render/Stock.tsx:114 #: src/components/render/Stock.tsx:132 #: src/forms/BuildForms.tsx:795 -#: src/forms/PurchaseOrderForms.tsx:595 +#: src/forms/PurchaseOrderForms.tsx:647 #: src/forms/StockForms.tsx:792 #: src/forms/StockForms.tsx:839 -#: src/forms/StockForms.tsx:885 -#: src/forms/StockForms.tsx:924 -#: src/forms/StockForms.tsx:960 -#: src/forms/StockForms.tsx:1003 -#: src/forms/StockForms.tsx:1047 -#: src/forms/StockForms.tsx:1095 -#: src/forms/StockForms.tsx:1139 +#: src/forms/StockForms.tsx:892 +#: src/forms/StockForms.tsx:938 +#: src/forms/StockForms.tsx:976 +#: src/forms/StockForms.tsx:1019 +#: src/forms/StockForms.tsx:1063 +#: src/forms/StockForms.tsx:1111 +#: src/forms/StockForms.tsx:1155 #: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:88 #: src/pages/core/UserDetail.tsx:158 #: src/pages/stock/StockDetail.tsx:298 @@ -3018,7 +3055,7 @@ msgstr "Location" #: src/components/render/Stock.tsx:99 #: src/pages/stock/StockDetail.tsx:198 #: src/pages/stock/StockDetail.tsx:930 -#: src/tables/build/BuildAllocatedStockTable.tsx:121 +#: src/tables/build/BuildAllocatedStockTable.tsx:118 #: src/tables/build/BuildOutputTable.tsx:107 #: src/tables/sales/SalesOrderAllocationTable.tsx:142 msgid "Serial Number" @@ -3029,9 +3066,9 @@ msgstr "Serial Number" #: src/forms/BuildForms.tsx:240 #: src/forms/BuildForms.tsx:634 #: src/forms/BuildForms.tsx:797 -#: src/forms/PurchaseOrderForms.tsx:801 +#: src/forms/PurchaseOrderForms.tsx:853 #: src/forms/ReturnOrderForms.tsx:243 -#: src/forms/SalesOrderForms.tsx:308 +#: src/forms/SalesOrderForms.tsx:387 #: src/forms/StockForms.tsx:841 #: src/pages/part/PartStockHistoryDetail.tsx:56 #: src/pages/part/PartStockHistoryDetail.tsx:210 @@ -3041,9 +3078,9 @@ msgstr "Serial Number" #: src/pages/part/pricing/PriceBreakPanel.tsx:172 #: src/pages/stock/StockDetail.tsx:258 #: src/pages/stock/StockDetail.tsx:936 -#: src/tables/build/BuildLineTable.tsx:86 +#: src/tables/build/BuildLineTable.tsx:83 #: src/tables/part/PartPurchaseOrdersTable.tsx:94 -#: src/tables/part/PartTestResultTable.tsx:269 +#: src/tables/part/PartTestResultTable.tsx:277 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:175 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:206 #: src/tables/purchasing/SupplierPriceBreakTable.tsx:69 @@ -3058,14 +3095,14 @@ msgstr "Quantity" #: src/forms/BuildForms.tsx:474 #: src/forms/StockForms.tsx:793 #: src/forms/StockForms.tsx:840 -#: src/forms/StockForms.tsx:886 -#: src/forms/StockForms.tsx:925 -#: src/forms/StockForms.tsx:961 -#: src/forms/StockForms.tsx:1004 -#: src/forms/StockForms.tsx:1048 -#: src/forms/StockForms.tsx:1096 -#: src/forms/StockForms.tsx:1140 -#: src/tables/build/BuildLineTable.tsx:96 +#: src/forms/StockForms.tsx:893 +#: src/forms/StockForms.tsx:939 +#: src/forms/StockForms.tsx:977 +#: src/forms/StockForms.tsx:1020 +#: src/forms/StockForms.tsx:1064 +#: src/forms/StockForms.tsx:1112 +#: src/forms/StockForms.tsx:1156 +#: src/tables/build/BuildLineTable.tsx:93 msgid "Batch" msgstr "Batch" @@ -3301,10 +3338,6 @@ msgstr "No settings specified" #~ msgid "Part category updated" #~ msgstr "Part category updated" -#: src/components/tables/part/PartParameterTable.tsx:41 -#~ msgid "Parameter" -#~ msgstr "Parameter" - #: src/components/tables/part/PartParameterTable.tsx:114 #~ msgid "Part parameter updated" #~ msgstr "Part parameter updated" @@ -3566,15 +3599,16 @@ msgid "Already Imported" msgstr "Already Imported" #: src/components/wizards/ImportPartWizard.tsx:205 -#: src/pages/company/CompanyDetail.tsx:136 +#: src/pages/company/CompanyDetail.tsx:137 #: src/pages/company/SupplierDetail.tsx:8 -#: src/pages/company/SupplierPartDetail.tsx:130 -#: src/pages/company/SupplierPartDetail.tsx:235 -#: src/pages/company/SupplierPartDetail.tsx:364 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:156 +#: src/pages/company/SupplierPartDetail.tsx:131 +#: src/pages/company/SupplierPartDetail.tsx:236 +#: src/pages/company/SupplierPartDetail.tsx:369 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:157 #: src/tables/Filter.tsx:360 #: src/tables/company/CompanyTable.tsx:96 #: src/tables/part/PartPurchaseOrdersTable.tsx:43 +#: src/tables/purchasing/PurchaseOrderParametricTable.tsx:34 #: src/tables/purchasing/PurchaseOrderTable.tsx:109 #: src/tables/purchasing/SupplierPriceBreakTable.tsx:40 msgid "Supplier" @@ -3643,7 +3677,7 @@ msgid "Next" msgstr "Next" #: src/components/wizards/ImportPartWizard.tsx:540 -#: src/pages/part/PartDetail.tsx:1046 +#: src/pages/part/PartDetail.tsx:1067 #: src/tables/part/PartTable.tsx:408 msgid "Edit Part" msgstr "Edit Part" @@ -3664,28 +3698,28 @@ msgstr "Are you sure, you want to import the supplier and manufacturer part into msgid "Import" msgstr "Import" -#: src/components/wizards/ImportPartWizard.tsx:691 +#: src/components/wizards/ImportPartWizard.tsx:692 msgid "Parameters created successfully!" msgstr "Parameters created successfully!" -#: src/components/wizards/ImportPartWizard.tsx:719 +#: src/components/wizards/ImportPartWizard.tsx:720 msgid "Failed to create parameters, please fix the errors and try again" msgstr "Failed to create parameters, please fix the errors and try again" #. placeholder {0}: supplierPart?.supplier -#: src/components/wizards/ImportPartWizard.tsx:739 +#: src/components/wizards/ImportPartWizard.tsx:740 msgid "Part imported successfully from supplier {0}." msgstr "Part imported successfully from supplier {0}." -#: src/components/wizards/ImportPartWizard.tsx:752 +#: src/components/wizards/ImportPartWizard.tsx:753 msgid "Open Part" msgstr "Open Part" -#: src/components/wizards/ImportPartWizard.tsx:759 +#: src/components/wizards/ImportPartWizard.tsx:760 msgid "Open Supplier Part" msgstr "Open Supplier Part" -#: src/components/wizards/ImportPartWizard.tsx:766 +#: src/components/wizards/ImportPartWizard.tsx:767 msgid "Open Manufacturer Part" msgstr "Open Manufacturer Part" @@ -3694,25 +3728,19 @@ msgstr "Open Manufacturer Part" #~ msgid "Import Part" #~ msgstr "Import Part" -#: src/components/wizards/ImportPartWizard.tsx:802 +#: src/components/wizards/ImportPartWizard.tsx:803 msgid "Import Supplier Part" msgstr "Import Supplier Part" -#: src/components/wizards/ImportPartWizard.tsx:804 +#: src/components/wizards/ImportPartWizard.tsx:805 msgid "Search Supplier Part" msgstr "Search Supplier Part" -#: src/components/wizards/ImportPartWizard.tsx:806 -#: src/pages/company/ManufacturerPartDetail.tsx:166 -#: src/pages/part/PartDetail.tsx:793 -msgid "Parameters" -msgstr "Parameters" - -#: src/components/wizards/ImportPartWizard.tsx:806 +#: src/components/wizards/ImportPartWizard.tsx:807 msgid "Confirm import" msgstr "Confirm import" -#: src/components/wizards/ImportPartWizard.tsx:808 +#: src/components/wizards/ImportPartWizard.tsx:809 msgid "Done" msgstr "Done" @@ -3733,24 +3761,24 @@ msgid "Sales Requirements" msgstr "Sales Requirements" #: src/components/wizards/OrderPartsWizard.tsx:129 -#: src/forms/StockForms.tsx:887 -#: src/forms/StockForms.tsx:926 -#: src/forms/StockForms.tsx:962 -#: src/forms/StockForms.tsx:1005 -#: src/forms/StockForms.tsx:1049 -#: src/forms/StockForms.tsx:1097 -#: src/forms/StockForms.tsx:1141 -#: src/pages/company/SupplierPartDetail.tsx:190 -#: src/pages/company/SupplierPartDetail.tsx:378 +#: src/forms/StockForms.tsx:894 +#: src/forms/StockForms.tsx:940 +#: src/forms/StockForms.tsx:978 +#: src/forms/StockForms.tsx:1021 +#: src/forms/StockForms.tsx:1065 +#: src/forms/StockForms.tsx:1113 +#: src/forms/StockForms.tsx:1157 +#: src/pages/company/SupplierPartDetail.tsx:191 +#: src/pages/company/SupplierPartDetail.tsx:383 #: src/pages/part/PartDetail.tsx:534 -#: src/pages/part/PartDetail.tsx:984 +#: src/pages/part/PartDetail.tsx:999 #: src/tables/Filter.tsx:92 #: src/tables/purchasing/SupplierPartTable.tsx:230 msgid "In Stock" msgstr "In Stock" #: src/components/wizards/OrderPartsWizard.tsx:146 -#: src/tables/build/BuildLineTable.tsx:404 +#: src/tables/build/BuildLineTable.tsx:405 msgid "Required Quantity" msgstr "Required Quantity" @@ -3842,7 +3870,7 @@ msgid "Please correct the errors in the selected parts" msgstr "Please correct the errors in the selected parts" #: src/components/wizards/OrderPartsWizard.tsx:587 -#: src/tables/build/BuildLineTable.tsx:815 +#: src/tables/build/BuildLineTable.tsx:822 #: src/tables/part/PartTable.tsx:522 #: src/tables/sales/SalesOrderLineItemTable.tsx:370 msgid "Order Parts" @@ -4344,9 +4372,9 @@ msgstr "Substitute added" #: src/forms/BuildForms.tsx:333 #: src/forms/BuildForms.tsx:408 #: src/forms/BuildForms.tsx:685 -#: src/tables/build/BuildAllocatedStockTable.tsx:150 +#: src/tables/build/BuildAllocatedStockTable.tsx:147 #: src/tables/build/BuildOutputTable.tsx:582 -#: src/tables/part/PartTestResultTable.tsx:272 +#: src/tables/part/PartTestResultTable.tsx:280 msgid "Build Output" msgstr "Build Output" @@ -4357,22 +4385,22 @@ msgstr "Quantity to Complete" #: src/forms/BuildForms.tsx:336 #: src/forms/BuildForms.tsx:411 #: src/forms/BuildForms.tsx:475 -#: src/forms/PurchaseOrderForms.tsx:717 +#: src/forms/PurchaseOrderForms.tsx:769 #: src/forms/ReturnOrderForms.tsx:197 #: src/forms/ReturnOrderForms.tsx:244 #: src/forms/StockForms.tsx:712 #: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:87 -#: src/pages/build/BuildDetail.tsx:222 +#: src/pages/build/BuildDetail.tsx:223 #: src/pages/core/UserDetail.tsx:151 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:168 -#: src/pages/sales/ReturnOrderDetail.tsx:135 -#: src/pages/sales/SalesOrderDetail.tsx:125 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:169 +#: src/pages/sales/ReturnOrderDetail.tsx:136 +#: src/pages/sales/SalesOrderDetail.tsx:126 #: src/pages/stock/StockDetail.tsx:170 #: src/tables/Filter.tsx:274 #: src/tables/build/BuildOutputTable.tsx:404 #: src/tables/machine/MachineListTable.tsx:387 #: src/tables/part/PartPurchaseOrdersTable.tsx:38 -#: src/tables/part/PartTestResultTable.tsx:309 +#: src/tables/part/PartTestResultTable.tsx:317 #: src/tables/sales/ReturnOrderLineItemTable.tsx:138 #: src/tables/sales/ReturnOrderLineItemTable.tsx:176 #: src/tables/settings/CustomStateTable.tsx:79 @@ -4438,18 +4466,19 @@ msgid "Build outputs have been cancelled" msgstr "Build outputs have been cancelled" #: src/forms/BuildForms.tsx:631 -#: src/pages/build/BuildDetail.tsx:207 -#: src/pages/company/ManufacturerPartDetail.tsx:85 -#: src/pages/company/SupplierPartDetail.tsx:96 +#: src/pages/build/BuildDetail.tsx:208 +#: src/pages/company/ManufacturerPartDetail.tsx:84 +#: src/pages/company/SupplierPartDetail.tsx:97 #: src/pages/part/PartDetail.tsx:453 #: src/pages/stock/StockDetail.tsx:153 #: src/tables/bom/BomTable.tsx:134 #: src/tables/bom/UsedInTable.tsx:40 -#: src/tables/build/BuildAllocatedStockTable.tsx:108 -#: src/tables/build/BuildLineTable.tsx:336 +#: src/tables/build/BuildAllocatedStockTable.tsx:105 +#: src/tables/build/BuildLineTable.tsx:337 #: src/tables/build/BuildOrderTable.tsx:79 #: src/tables/part/PartSalesAllocationsTable.tsx:61 #: src/tables/part/RelatedPartTable.tsx:73 +#: src/tables/purchasing/ManufacturerPartParametricTable.tsx:21 #: src/tables/purchasing/ManufacturerPartTable.tsx:69 #: src/tables/purchasing/SupplierPartTable.tsx:70 #: src/tables/sales/SalesOrderAllocationTable.tsx:135 @@ -4461,47 +4490,47 @@ msgstr "IPN" #: src/forms/BuildForms.tsx:632 #: src/forms/BuildForms.tsx:796 #: src/forms/BuildForms.tsx:897 -#: src/forms/SalesOrderForms.tsx:306 -#: src/tables/build/BuildAllocatedStockTable.tsx:139 -#: src/tables/build/BuildLineTable.tsx:182 +#: src/forms/SalesOrderForms.tsx:385 +#: src/tables/build/BuildAllocatedStockTable.tsx:136 +#: src/tables/build/BuildLineTable.tsx:183 #: src/tables/sales/SalesOrderLineItemTable.tsx:342 #: src/tables/stock/StockItemTable.tsx:338 msgid "Allocated" msgstr "Allocated" #: src/forms/BuildForms.tsx:667 -#: src/forms/SalesOrderForms.tsx:295 -#: src/pages/build/BuildDetail.tsx:108 -#: src/pages/build/BuildDetail.tsx:326 +#: src/forms/SalesOrderForms.tsx:374 +#: src/pages/build/BuildDetail.tsx:109 +#: src/pages/build/BuildDetail.tsx:327 msgid "Source Location" msgstr "Source Location" #: src/forms/BuildForms.tsx:668 -#: src/forms/SalesOrderForms.tsx:296 +#: src/forms/SalesOrderForms.tsx:375 msgid "Select the source location for the stock allocation" msgstr "Select the source location for the stock allocation" #: src/forms/BuildForms.tsx:700 -#: src/forms/SalesOrderForms.tsx:336 -#: src/tables/build/BuildLineTable.tsx:574 -#: src/tables/build/BuildLineTable.tsx:731 -#: src/tables/build/BuildLineTable.tsx:830 +#: src/forms/SalesOrderForms.tsx:415 +#: src/tables/build/BuildLineTable.tsx:575 +#: src/tables/build/BuildLineTable.tsx:738 +#: src/tables/build/BuildLineTable.tsx:837 #: src/tables/sales/SalesOrderLineItemTable.tsx:380 #: src/tables/sales/SalesOrderLineItemTable.tsx:406 msgid "Allocate Stock" msgstr "Allocate Stock" #: src/forms/BuildForms.tsx:703 -#: src/forms/SalesOrderForms.tsx:341 +#: src/forms/SalesOrderForms.tsx:420 msgid "Stock items allocated" msgstr "Stock items allocated" #: src/forms/BuildForms.tsx:816 #: src/forms/BuildForms.tsx:917 -#: src/tables/build/BuildAllocatedStockTable.tsx:240 -#: src/tables/build/BuildAllocatedStockTable.tsx:272 -#: src/tables/build/BuildLineTable.tsx:741 -#: src/tables/build/BuildLineTable.tsx:864 +#: src/tables/build/BuildAllocatedStockTable.tsx:243 +#: src/tables/build/BuildAllocatedStockTable.tsx:279 +#: src/tables/build/BuildLineTable.tsx:748 +#: src/tables/build/BuildLineTable.tsx:871 msgid "Consume Stock" msgstr "Consume Stock" @@ -4516,21 +4545,21 @@ msgstr "Stock items scheduled to be consumed" #~ msgstr "Stock items consumed" #: src/forms/BuildForms.tsx:853 -#: src/tables/build/BuildLineTable.tsx:514 +#: src/tables/build/BuildLineTable.tsx:515 #: src/tables/part/PartBuildAllocationsTable.tsx:101 msgid "Fully consumed" msgstr "Fully consumed" #: src/forms/BuildForms.tsx:898 -#: src/tables/build/BuildLineTable.tsx:187 +#: src/tables/build/BuildLineTable.tsx:188 #: src/tables/stock/StockItemTable.tsx:367 msgid "Consumed" msgstr "Consumed" -#: src/forms/CommonForms.tsx:88 -#: src/forms/PurchaseOrderForms.tsx:125 +#: src/forms/CommonForms.tsx:92 +#: src/forms/PurchaseOrderForms.tsx:176 #: src/forms/ReturnOrderForms.tsx:138 -#: src/forms/SalesOrderForms.tsx:164 +#: src/forms/SalesOrderForms.tsx:185 msgid "Select project code for this line item" msgstr "Select project code for this line item" @@ -4538,16 +4567,16 @@ msgstr "Select project code for this line item" #~ msgid "Company updated" #~ msgstr "Company updated" -#: src/forms/PartForms.tsx:85 -#: src/forms/PartForms.tsx:207 -#: src/pages/part/CategoryDetail.tsx:124 +#: src/forms/PartForms.tsx:99 +#: src/forms/PartForms.tsx:228 +#: src/pages/part/CategoryDetail.tsx:127 #: src/pages/part/PartDetail.tsx:668 #: src/tables/part/PartCategoryTable.tsx:94 #: src/tables/part/PartTable.tsx:325 msgid "Subscribed" msgstr "Subscribed" -#: src/forms/PartForms.tsx:86 +#: src/forms/PartForms.tsx:100 msgid "Subscribe to notifications for this part" msgstr "Subscribe to notifications for this part" @@ -4559,156 +4588,156 @@ msgstr "Subscribe to notifications for this part" #~ msgid "Part updated" #~ msgstr "Part updated" -#: src/forms/PartForms.tsx:193 +#: src/forms/PartForms.tsx:214 msgid "Parent part category" msgstr "Parent part category" -#: src/forms/PartForms.tsx:208 +#: src/forms/PartForms.tsx:229 msgid "Subscribe to notifications for this category" msgstr "Subscribe to notifications for this category" -#: src/forms/PurchaseOrderForms.tsx:388 -msgid "Assign Batch Code and Serial Numbers" -msgstr "Assign Batch Code and Serial Numbers" - -#: src/forms/PurchaseOrderForms.tsx:390 -msgid "Assign Batch Code" -msgstr "Assign Batch Code" - -#: src/forms/PurchaseOrderForms.tsx:410 -msgid "Choose Location" -msgstr "Choose Location" - -#: src/forms/PurchaseOrderForms.tsx:418 -msgid "Item Destination selected" -msgstr "Item Destination selected" - #: src/forms/PurchaseOrderForms.tsx:421 #~ msgid "Assign Batch Code{0}" #~ msgstr "Assign Batch Code{0}" -#: src/forms/PurchaseOrderForms.tsx:428 -msgid "Part category default location selected" -msgstr "Part category default location selected" +#: src/forms/PurchaseOrderForms.tsx:440 +msgid "Assign Batch Code and Serial Numbers" +msgstr "Assign Batch Code and Serial Numbers" -#: src/forms/PurchaseOrderForms.tsx:438 -msgid "Received stock location selected" -msgstr "Received stock location selected" +#: src/forms/PurchaseOrderForms.tsx:442 +msgid "Assign Batch Code" +msgstr "Assign Batch Code" #: src/forms/PurchaseOrderForms.tsx:444 #: src/forms/StockForms.tsx:428 #~ msgid "Remove item from list" #~ msgstr "Remove item from list" -#: src/forms/PurchaseOrderForms.tsx:446 +#: src/forms/PurchaseOrderForms.tsx:462 +msgid "Choose Location" +msgstr "Choose Location" + +#: src/forms/PurchaseOrderForms.tsx:470 +msgid "Item Destination selected" +msgstr "Item Destination selected" + +#: src/forms/PurchaseOrderForms.tsx:480 +msgid "Part category default location selected" +msgstr "Part category default location selected" + +#: src/forms/PurchaseOrderForms.tsx:490 +msgid "Received stock location selected" +msgstr "Received stock location selected" + +#: src/forms/PurchaseOrderForms.tsx:498 msgid "Default location selected" msgstr "Default location selected" -#: src/forms/PurchaseOrderForms.tsx:507 +#: src/forms/PurchaseOrderForms.tsx:559 msgid "Set Location" msgstr "Set Location" -#: src/forms/PurchaseOrderForms.tsx:524 -msgid "Set Expiry Date" -msgstr "Set Expiry Date" - -#: src/forms/PurchaseOrderForms.tsx:532 -#: src/forms/StockForms.tsx:693 -msgid "Adjust Packaging" -msgstr "Adjust Packaging" - -#: src/forms/PurchaseOrderForms.tsx:540 -#: src/forms/StockForms.tsx:684 -#: src/hooks/UseStockAdjustActions.tsx:148 -msgid "Change Status" -msgstr "Change Status" - -#: src/forms/PurchaseOrderForms.tsx:546 -msgid "Add Note" -msgstr "Add Note" - #: src/forms/PurchaseOrderForms.tsx:566 #~ msgid "Serial numbers" #~ msgstr "Serial numbers" +#: src/forms/PurchaseOrderForms.tsx:576 +msgid "Set Expiry Date" +msgstr "Set Expiry Date" + #: src/forms/PurchaseOrderForms.tsx:582 #~ msgid "Store at line item destination" #~ msgstr "Store at line item destination" -#: src/forms/PurchaseOrderForms.tsx:610 -msgid "Store at default location" -msgstr "Store at default location" +#: src/forms/PurchaseOrderForms.tsx:584 +#: src/forms/StockForms.tsx:693 +msgid "Adjust Packaging" +msgstr "Adjust Packaging" -#: src/forms/PurchaseOrderForms.tsx:625 -msgid "Store at line item destination " -msgstr "Store at line item destination " +#: src/forms/PurchaseOrderForms.tsx:592 +#: src/forms/StockForms.tsx:684 +#: src/hooks/UseStockAdjustActions.tsx:148 +msgid "Change Status" +msgstr "Change Status" -#: src/forms/PurchaseOrderForms.tsx:637 -msgid "Store with already received stock" -msgstr "Store with already received stock" +#: src/forms/PurchaseOrderForms.tsx:598 +msgid "Add Note" +msgstr "Add Note" #: src/forms/PurchaseOrderForms.tsx:658 #~ msgid "Receive line items" #~ msgstr "Receive line items" -#: src/forms/PurchaseOrderForms.tsx:661 -#: src/pages/build/BuildDetail.tsx:340 +#: src/forms/PurchaseOrderForms.tsx:662 +msgid "Store at default location" +msgstr "Store at default location" + +#: src/forms/PurchaseOrderForms.tsx:677 +msgid "Store at line item destination " +msgstr "Store at line item destination " + +#: src/forms/PurchaseOrderForms.tsx:689 +msgid "Store with already received stock" +msgstr "Store with already received stock" + +#: src/forms/PurchaseOrderForms.tsx:713 +#: src/pages/build/BuildDetail.tsx:341 #: src/pages/stock/StockDetail.tsx:280 #: src/pages/stock/StockDetail.tsx:952 #: src/tables/Filter.tsx:83 -#: src/tables/build/BuildAllocatedStockTable.tsx:128 +#: src/tables/build/BuildAllocatedStockTable.tsx:125 #: src/tables/build/BuildOutputTable.tsx:112 -#: src/tables/part/PartTestResultTable.tsx:260 -#: src/tables/part/PartTestResultTable.tsx:281 +#: src/tables/part/PartTestResultTable.tsx:268 +#: src/tables/part/PartTestResultTable.tsx:289 #: src/tables/sales/SalesOrderAllocationTable.tsx:149 msgid "Batch Code" msgstr "Batch Code" -#: src/forms/PurchaseOrderForms.tsx:662 +#: src/forms/PurchaseOrderForms.tsx:714 msgid "Enter batch code for received items" msgstr "Enter batch code for received items" -#: src/forms/PurchaseOrderForms.tsx:675 +#: src/forms/PurchaseOrderForms.tsx:727 #: src/forms/StockForms.tsx:218 msgid "Serial Numbers" msgstr "Serial Numbers" -#: src/forms/PurchaseOrderForms.tsx:676 +#: src/forms/PurchaseOrderForms.tsx:728 msgid "Enter serial numbers for received items" msgstr "Enter serial numbers for received items" -#: src/forms/PurchaseOrderForms.tsx:690 +#: src/forms/PurchaseOrderForms.tsx:742 #: src/pages/stock/StockDetail.tsx:382 #: src/tables/stock/StockItemTable.tsx:294 msgid "Expiry Date" msgstr "Expiry Date" -#: src/forms/PurchaseOrderForms.tsx:691 +#: src/forms/PurchaseOrderForms.tsx:743 msgid "Enter an expiry date for received items" msgstr "Enter an expiry date for received items" -#: src/forms/PurchaseOrderForms.tsx:703 +#: src/forms/PurchaseOrderForms.tsx:755 #: src/forms/StockForms.tsx:728 -#: src/pages/company/SupplierPartDetail.tsx:172 -#: src/pages/company/SupplierPartDetail.tsx:236 +#: src/pages/company/SupplierPartDetail.tsx:173 +#: src/pages/company/SupplierPartDetail.tsx:237 #: src/pages/stock/StockDetail.tsx:419 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:227 msgid "Packaging" msgstr "Packaging" -#: src/forms/PurchaseOrderForms.tsx:727 -#: src/pages/company/SupplierPartDetail.tsx:120 +#: src/forms/PurchaseOrderForms.tsx:779 +#: src/pages/company/SupplierPartDetail.tsx:121 #: src/tables/ColumnRenderers.tsx:332 msgid "Note" msgstr "Note" -#: src/forms/PurchaseOrderForms.tsx:799 -#: src/pages/company/SupplierPartDetail.tsx:138 +#: src/forms/PurchaseOrderForms.tsx:851 +#: src/pages/company/SupplierPartDetail.tsx:139 #: src/tables/purchasing/SupplierPriceBreakTable.tsx:49 msgid "SKU" msgstr "SKU" -#: src/forms/PurchaseOrderForms.tsx:800 +#: src/forms/PurchaseOrderForms.tsx:852 #: src/tables/part/PartPurchaseOrdersTable.tsx:127 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:213 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:283 @@ -4716,11 +4745,11 @@ msgstr "SKU" msgid "Received" msgstr "Received" -#: src/forms/PurchaseOrderForms.tsx:817 +#: src/forms/PurchaseOrderForms.tsx:869 msgid "Receive Line Items" msgstr "Receive Line Items" -#: src/forms/PurchaseOrderForms.tsx:823 +#: src/forms/PurchaseOrderForms.tsx:875 msgid "Items received" msgstr "Items received" @@ -4732,7 +4761,35 @@ msgstr "Receive Items" msgid "Item received into stock" msgstr "Item received into stock" -#: src/forms/SalesOrderForms.tsx:401 +#: src/forms/SalesOrderForms.tsx:208 +#: src/forms/SalesOrderForms.tsx:210 +#: src/tables/sales/SalesOrderShipmentTable.tsx:215 +msgid "Check Shipment" +msgstr "Check Shipment" + +#: src/forms/SalesOrderForms.tsx:211 +msgid "Marking the shipment as checked indicates that you have verified that all items included in this shipment are correct" +msgstr "Marking the shipment as checked indicates that you have verified that all items included in this shipment are correct" + +#: src/forms/SalesOrderForms.tsx:221 +msgid "Shipment marked as checked" +msgstr "Shipment marked as checked" + +#: src/forms/SalesOrderForms.tsx:236 +#: src/forms/SalesOrderForms.tsx:238 +#: src/tables/sales/SalesOrderShipmentTable.tsx:228 +msgid "Uncheck Shipment" +msgstr "Uncheck Shipment" + +#: src/forms/SalesOrderForms.tsx:239 +msgid "Marking the shipment as unchecked indicates that the shipment requires further verification" +msgstr "Marking the shipment as unchecked indicates that the shipment requires further verification" + +#: src/forms/SalesOrderForms.tsx:249 +msgid "Shipment marked as unchecked" +msgstr "Shipment marked as unchecked" + +#: src/forms/SalesOrderForms.tsx:480 msgid "Leave blank to use the order address" msgstr "Leave blank to use the order address" @@ -4787,150 +4844,150 @@ msgstr "Move" msgid "Return" msgstr "Return" -#: src/forms/StockForms.tsx:963 +#: src/forms/StockForms.tsx:979 #: src/pages/Index/Scan.tsx:182 msgid "Count" msgstr "Count" -#: src/forms/StockForms.tsx:1246 +#: src/forms/StockForms.tsx:1262 #: src/hooks/UseStockAdjustActions.tsx:108 msgid "Add Stock" msgstr "Add Stock" -#: src/forms/StockForms.tsx:1247 +#: src/forms/StockForms.tsx:1263 msgid "Stock added" msgstr "Stock added" -#: src/forms/StockForms.tsx:1250 +#: src/forms/StockForms.tsx:1266 msgid "Increase the quantity of the selected stock items by a given amount." msgstr "Increase the quantity of the selected stock items by a given amount." -#: src/forms/StockForms.tsx:1261 +#: src/forms/StockForms.tsx:1277 #: src/hooks/UseStockAdjustActions.tsx:118 msgid "Remove Stock" msgstr "Remove Stock" -#: src/forms/StockForms.tsx:1262 +#: src/forms/StockForms.tsx:1278 msgid "Stock removed" msgstr "Stock removed" -#: src/forms/StockForms.tsx:1265 +#: src/forms/StockForms.tsx:1281 msgid "Decrease the quantity of the selected stock items by a given amount." msgstr "Decrease the quantity of the selected stock items by a given amount." -#: src/forms/StockForms.tsx:1276 +#: src/forms/StockForms.tsx:1292 #: src/hooks/UseStockAdjustActions.tsx:128 msgid "Transfer Stock" msgstr "Transfer Stock" -#: src/forms/StockForms.tsx:1277 +#: src/forms/StockForms.tsx:1293 msgid "Stock transferred" msgstr "Stock transferred" -#: src/forms/StockForms.tsx:1280 +#: src/forms/StockForms.tsx:1296 msgid "Transfer selected items to the specified location." msgstr "Transfer selected items to the specified location." -#: src/forms/StockForms.tsx:1291 +#: src/forms/StockForms.tsx:1307 #: src/hooks/UseStockAdjustActions.tsx:168 msgid "Return Stock" msgstr "Return Stock" -#: src/forms/StockForms.tsx:1292 +#: src/forms/StockForms.tsx:1308 msgid "Stock returned" msgstr "Stock returned" -#: src/forms/StockForms.tsx:1295 +#: src/forms/StockForms.tsx:1311 msgid "Return selected items into stock, to the specified location." msgstr "Return selected items into stock, to the specified location." -#: src/forms/StockForms.tsx:1306 +#: src/forms/StockForms.tsx:1322 #: src/hooks/UseStockAdjustActions.tsx:98 msgid "Count Stock" msgstr "Count Stock" -#: src/forms/StockForms.tsx:1307 +#: src/forms/StockForms.tsx:1323 msgid "Stock counted" msgstr "Stock counted" -#: src/forms/StockForms.tsx:1310 +#: src/forms/StockForms.tsx:1326 msgid "Count the selected stock items, and adjust the quantity accordingly." msgstr "Count the selected stock items, and adjust the quantity accordingly." -#: src/forms/StockForms.tsx:1321 +#: src/forms/StockForms.tsx:1337 msgid "Change Stock Status" msgstr "Change Stock Status" -#: src/forms/StockForms.tsx:1322 +#: src/forms/StockForms.tsx:1338 msgid "Stock status changed" msgstr "Stock status changed" -#: src/forms/StockForms.tsx:1325 +#: src/forms/StockForms.tsx:1341 msgid "Change the status of the selected stock items." msgstr "Change the status of the selected stock items." -#: src/forms/StockForms.tsx:1336 +#: src/forms/StockForms.tsx:1352 #: src/hooks/UseStockAdjustActions.tsx:138 msgid "Merge Stock" msgstr "Merge Stock" -#: src/forms/StockForms.tsx:1337 +#: src/forms/StockForms.tsx:1353 msgid "Stock merged" msgstr "Stock merged" -#: src/forms/StockForms.tsx:1339 +#: src/forms/StockForms.tsx:1355 msgid "Merge Stock Items" msgstr "Merge Stock Items" -#: src/forms/StockForms.tsx:1341 +#: src/forms/StockForms.tsx:1357 msgid "Merge operation cannot be reversed" msgstr "Merge operation cannot be reversed" -#: src/forms/StockForms.tsx:1342 +#: src/forms/StockForms.tsx:1358 msgid "Tracking information may be lost when merging items" msgstr "Tracking information may be lost when merging items" -#: src/forms/StockForms.tsx:1343 +#: src/forms/StockForms.tsx:1359 msgid "Supplier information may be lost when merging items" msgstr "Supplier information may be lost when merging items" -#: src/forms/StockForms.tsx:1361 +#: src/forms/StockForms.tsx:1377 msgid "Assign Stock to Customer" msgstr "Assign Stock to Customer" -#: src/forms/StockForms.tsx:1362 +#: src/forms/StockForms.tsx:1378 msgid "Stock assigned to customer" msgstr "Stock assigned to customer" -#: src/forms/StockForms.tsx:1372 +#: src/forms/StockForms.tsx:1388 msgid "Delete Stock Items" msgstr "Delete Stock Items" -#: src/forms/StockForms.tsx:1373 +#: src/forms/StockForms.tsx:1389 msgid "Stock deleted" msgstr "Stock deleted" -#: src/forms/StockForms.tsx:1376 +#: src/forms/StockForms.tsx:1392 msgid "This operation will permanently delete the selected stock items." msgstr "This operation will permanently delete the selected stock items." -#: src/forms/StockForms.tsx:1385 +#: src/forms/StockForms.tsx:1401 msgid "Parent stock location" msgstr "Parent stock location" -#: src/forms/StockForms.tsx:1512 +#: src/forms/StockForms.tsx:1528 msgid "Find Serial Number" msgstr "Find Serial Number" -#: src/forms/StockForms.tsx:1523 +#: src/forms/StockForms.tsx:1539 msgid "No matching items" msgstr "No matching items" -#: src/forms/StockForms.tsx:1529 +#: src/forms/StockForms.tsx:1545 msgid "Multiple matching items" msgstr "Multiple matching items" -#: src/forms/StockForms.tsx:1538 +#: src/forms/StockForms.tsx:1554 msgid "Invalid response from server" msgstr "Invalid response from server" @@ -4948,7 +5005,6 @@ msgstr "List of entries to choose from" #: src/tables/FilterSelectDrawer.tsx:137 #: src/tables/FilterSelectDrawer.tsx:149 #: src/tables/part/PartTestResultTable.tsx:206 -#: src/tables/purchasing/ManufacturerPartParameterTable.tsx:42 #: src/tables/stock/StockItemTestResultTable.tsx:207 msgid "Value" msgstr "Value" @@ -5239,7 +5295,7 @@ msgid "Delete selected stock items" msgstr "Delete selected stock items" #: src/hooks/UseStockAdjustActions.tsx:205 -#: src/pages/part/PartDetail.tsx:1137 +#: src/pages/part/PartDetail.tsx:1158 msgid "Stock Actions" msgstr "Stock Actions" @@ -5927,6 +5983,9 @@ msgstr "Remove WebAuthn Credential" #: src/pages/Index/Settings/AccountSettings/MFASettings.tsx:310 #: src/pages/Index/Settings/AccountSettings/MFASettings.tsx:401 +#: src/tables/build/BuildAllocatedStockTable.tsx:181 +#: src/tables/build/BuildLineTable.tsx:668 +#: src/tables/sales/SalesOrderAllocationTable.tsx:220 msgid "Confirm Removal" msgstr "Confirm Removal" @@ -6389,30 +6448,34 @@ msgid "Email Messages" msgstr "Email Messages" #: src/pages/Index/Settings/AdminCenter/HomePanel.tsx:22 -msgid "Active Alerts" -msgstr "Active Alerts" +#~ msgid "Active Alerts" +#~ msgstr "Active Alerts" #: src/pages/Index/Settings/AdminCenter/HomePanel.tsx:27 -msgid "Inactive Alerts" -msgstr "Inactive Alerts" +#~ msgid "Inactive Alerts" +#~ msgstr "Inactive Alerts" -#: src/pages/Index/Settings/AdminCenter/HomePanel.tsx:38 +#: src/pages/Index/Settings/AdminCenter/HomePanel.tsx:36 +msgid "System Status" +msgstr "System Status" + +#: src/pages/Index/Settings/AdminCenter/HomePanel.tsx:47 msgid "Admin Center Information" msgstr "Admin Center Information" -#: src/pages/Index/Settings/AdminCenter/HomePanel.tsx:44 +#: src/pages/Index/Settings/AdminCenter/HomePanel.tsx:53 msgid "The home panel (and the whole Admin Center) is a new feature starting with the new UI and was previously (before 1.0) not available." msgstr "The home panel (and the whole Admin Center) is a new feature starting with the new UI and was previously (before 1.0) not available." -#: src/pages/Index/Settings/AdminCenter/HomePanel.tsx:51 +#: src/pages/Index/Settings/AdminCenter/HomePanel.tsx:60 msgid "The admin center provides a centralized location for all administration functionality and is meant to replace all interaction with the (django) backend admin interface." msgstr "The admin center provides a centralized location for all administration functionality and is meant to replace all interaction with the (django) backend admin interface." -#: src/pages/Index/Settings/AdminCenter/HomePanel.tsx:58 +#: src/pages/Index/Settings/AdminCenter/HomePanel.tsx:67 msgid "Please open feature requests (after checking the tracker) for any existing backend admin functionality you are missing in this UI. The backend admin interface should be used carefully and seldom." msgstr "Please open feature requests (after checking the tracker) for any existing backend admin functionality you are missing in this UI. The backend admin interface should be used carefully and seldom." -#: src/pages/Index/Settings/AdminCenter/HomePanel.tsx:76 +#: src/pages/Index/Settings/AdminCenter/HomePanel.tsx:85 msgid "Quick Actions" msgstr "Quick Actions" @@ -6471,11 +6534,11 @@ msgstr "Custom Units" #: src/pages/Index/Settings/AdminCenter/Index.tsx:195 #: src/pages/part/CategoryDetail.tsx:313 -msgid "Part Parameters" -msgstr "Part Parameters" +#~ msgid "Part Parameters" +#~ msgstr "Part Parameters" #: src/pages/Index/Settings/AdminCenter/Index.tsx:202 -#: src/pages/part/CategoryDetail.tsx:306 +#: src/pages/part/CategoryDetail.tsx:329 msgid "Category Parameters" msgstr "Category Parameters" @@ -6489,7 +6552,7 @@ msgstr "Location Types" #: src/pages/Index/Settings/AdminCenter/Index.tsx:235 #: src/pages/Index/Settings/AdminCenter/MachineManagementPanel.tsx:52 -#: src/tables/machine/MachineTypeTable.tsx:325 +#: src/tables/machine/MachineTypeTable.tsx:323 msgid "Machines" msgstr "Machines" @@ -6502,8 +6565,8 @@ msgid "Data Management" msgstr "Data Management" #: src/pages/Index/Settings/AdminCenter/Index.tsx:270 -#: src/pages/Index/Settings/SystemSettings.tsx:175 -#: src/pages/Index/Settings/UserSettings.tsx:118 +#: src/pages/Index/Settings/SystemSettings.tsx:176 +#: src/pages/Index/Settings/UserSettings.tsx:119 msgid "Reporting" msgstr "Reporting" @@ -6704,11 +6767,11 @@ msgstr "Tokens" msgid "The settings below are specific to each available plugin" msgstr "The settings below are specific to each available plugin" -#: src/pages/Index/Settings/SystemSettings.tsx:77 +#: src/pages/Index/Settings/SystemSettings.tsx:78 msgid "Authentication" msgstr "Authentication" -#: src/pages/Index/Settings/SystemSettings.tsx:103 +#: src/pages/Index/Settings/SystemSettings.tsx:104 msgid "Barcodes" msgstr "Barcodes" @@ -6720,12 +6783,12 @@ msgstr "Barcodes" #~ msgid "This panel is a placeholder." #~ msgstr "This panel is a placeholder." -#: src/pages/Index/Settings/SystemSettings.tsx:127 -#: src/pages/Index/Settings/UserSettings.tsx:112 +#: src/pages/Index/Settings/SystemSettings.tsx:128 +#: src/pages/Index/Settings/UserSettings.tsx:113 msgid "The settings below are specific to each available notification method" msgstr "The settings below are specific to each available notification method" -#: src/pages/Index/Settings/SystemSettings.tsx:133 +#: src/pages/Index/Settings/SystemSettings.tsx:134 msgid "Pricing" msgstr "Pricing" @@ -6733,7 +6796,7 @@ msgstr "Pricing" #~ msgid "Exchange Rates" #~ msgstr "Exchange Rates" -#: src/pages/Index/Settings/SystemSettings.tsx:169 +#: src/pages/Index/Settings/SystemSettings.tsx:170 msgid "Labels" msgstr "Labels" @@ -6785,15 +6848,15 @@ msgstr "Mark as unread" #~ msgid "Delete notifications" #~ msgstr "Delete notifications" -#: src/pages/build/BuildDetail.tsx:69 +#: src/pages/build/BuildDetail.tsx:70 msgid "No Required Items" msgstr "No Required Items" -#: src/pages/build/BuildDetail.tsx:71 +#: src/pages/build/BuildDetail.tsx:72 msgid "This build order does not have any required items." msgstr "This build order does not have any required items." -#: src/pages/build/BuildDetail.tsx:72 +#: src/pages/build/BuildDetail.tsx:73 msgid "The assembled part may not have a Bill of Materials (BOM) defined, or the BOM is empty." msgstr "The assembled part may not have a Bill of Materials (BOM) defined, or the BOM is empty." @@ -6821,7 +6884,7 @@ msgstr "The assembled part may not have a Bill of Materials (BOM) defined, or th #~ msgid "Build Order updated" #~ msgstr "Build Order updated" -#: src/pages/build/BuildDetail.tsx:215 +#: src/pages/build/BuildDetail.tsx:216 #: src/pages/part/PartDetail.tsx:480 #: src/pages/stock/StockDetail.tsx:161 #: src/tables/bom/UsedInTable.tsx:44 @@ -6838,10 +6901,10 @@ msgstr "Revision" #~ msgid "Duplicate build order" #~ msgstr "Duplicate build order" -#: src/pages/build/BuildDetail.tsx:228 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:174 -#: src/pages/sales/ReturnOrderDetail.tsx:141 -#: src/pages/sales/SalesOrderDetail.tsx:131 +#: src/pages/build/BuildDetail.tsx:229 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:175 +#: src/pages/sales/ReturnOrderDetail.tsx:142 +#: src/pages/sales/SalesOrderDetail.tsx:132 #: src/pages/stock/StockDetail.tsx:176 msgid "Custom Status" msgstr "Custom Status" @@ -6850,9 +6913,9 @@ msgstr "Custom Status" #~ msgid "Delete build order" #~ msgstr "Delete build order" -#: src/pages/build/BuildDetail.tsx:237 -#: src/pages/build/BuildDetail.tsx:723 -#: src/pages/build/BuildIndex.tsx:28 +#: src/pages/build/BuildDetail.tsx:238 +#: src/pages/build/BuildDetail.tsx:728 +#: src/pages/build/BuildIndex.tsx:34 #: src/pages/stock/LocationDetail.tsx:140 #: src/tables/build/BuildOrderTable.tsx:123 #: src/tables/build/BuildOrderTable.tsx:183 @@ -6860,57 +6923,57 @@ msgstr "Custom Status" msgid "External" msgstr "External" -#: src/pages/build/BuildDetail.tsx:244 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:141 -#: src/pages/sales/ReturnOrderDetail.tsx:108 -#: src/pages/sales/SalesOrderDetail.tsx:98 +#: src/pages/build/BuildDetail.tsx:245 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:142 +#: src/pages/sales/ReturnOrderDetail.tsx:109 +#: src/pages/sales/SalesOrderDetail.tsx:99 #: src/tables/ColumnRenderers.tsx:321 -#: src/tables/build/BuildAllocatedStockTable.tsx:115 -#: src/tables/build/BuildLineTable.tsx:352 +#: src/tables/build/BuildAllocatedStockTable.tsx:112 +#: src/tables/build/BuildLineTable.tsx:353 msgid "Reference" msgstr "Reference" -#: src/pages/build/BuildDetail.tsx:258 +#: src/pages/build/BuildDetail.tsx:259 msgid "Parent Build" msgstr "Parent Build" -#: src/pages/build/BuildDetail.tsx:269 +#: src/pages/build/BuildDetail.tsx:270 msgid "Build Quantity" msgstr "Build Quantity" -#: src/pages/build/BuildDetail.tsx:275 +#: src/pages/build/BuildDetail.tsx:276 #: src/pages/part/PartDetail.tsx:598 #: src/tables/bom/BomTable.tsx:365 #: src/tables/bom/BomTable.tsx:407 msgid "Can Build" msgstr "Can Build" -#: src/pages/build/BuildDetail.tsx:284 -#: src/pages/build/BuildDetail.tsx:474 +#: src/pages/build/BuildDetail.tsx:285 +#: src/pages/build/BuildDetail.tsx:475 msgid "Completed Outputs" msgstr "Completed Outputs" -#: src/pages/build/BuildDetail.tsx:301 +#: src/pages/build/BuildDetail.tsx:302 #: src/tables/Filter.tsx:381 #: src/tables/build/BuildOrderTable.tsx:143 msgid "Issued By" msgstr "Issued By" -#: src/pages/build/BuildDetail.tsx:309 +#: src/pages/build/BuildDetail.tsx:310 #: src/pages/part/PartDetail.tsx:691 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:261 -#: src/pages/sales/ReturnOrderDetail.tsx:239 -#: src/pages/sales/SalesOrderDetail.tsx:232 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:262 +#: src/pages/sales/ReturnOrderDetail.tsx:240 +#: src/pages/sales/SalesOrderDetail.tsx:233 #: src/tables/ColumnRenderers.tsx:464 #: src/tables/Filter.tsx:319 msgid "Responsible" msgstr "Responsible" -#: src/pages/build/BuildDetail.tsx:327 +#: src/pages/build/BuildDetail.tsx:328 msgid "Any location" msgstr "Any location" -#: src/pages/build/BuildDetail.tsx:334 +#: src/pages/build/BuildDetail.tsx:335 msgid "Destination Location" msgstr "Destination Location" @@ -6919,24 +6982,24 @@ msgstr "Destination Location" #~ msgid "Test Statistics" #~ msgstr "Test Statistics" -#: src/pages/build/BuildDetail.tsx:350 +#: src/pages/build/BuildDetail.tsx:351 #: src/tables/settings/ApiTokenTable.tsx:97 #: src/tables/settings/PendingTasksTable.tsx:41 msgid "Created" msgstr "Created" -#: src/pages/build/BuildDetail.tsx:358 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:286 -#: src/pages/sales/ReturnOrderDetail.tsx:265 -#: src/pages/sales/SalesOrderDetail.tsx:257 +#: src/pages/build/BuildDetail.tsx:359 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:287 +#: src/pages/sales/ReturnOrderDetail.tsx:266 +#: src/pages/sales/SalesOrderDetail.tsx:258 #: src/tables/ColumnRenderers.tsx:486 msgid "Start Date" msgstr "Start Date" -#: src/pages/build/BuildDetail.tsx:366 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:294 -#: src/pages/sales/ReturnOrderDetail.tsx:273 -#: src/pages/sales/SalesOrderDetail.tsx:265 +#: src/pages/build/BuildDetail.tsx:367 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:295 +#: src/pages/sales/ReturnOrderDetail.tsx:274 +#: src/pages/sales/SalesOrderDetail.tsx:266 #: src/tables/ColumnRenderers.tsx:494 #: src/tables/part/PartPurchaseOrdersTable.tsx:101 #: src/tables/sales/ReturnOrderLineItemTable.tsx:154 @@ -6949,185 +7012,185 @@ msgstr "Target Date" #~ msgstr "Reporting Actions" #: src/pages/build/BuildDetail.tsx:374 +#~ msgid "Print build report" +#~ msgstr "Print build report" + +#: src/pages/build/BuildDetail.tsx:375 #: src/tables/build/BuildOrderTable.tsx:93 #: src/tables/sales/SalesOrderLineItemTable.tsx:347 msgid "Completed" msgstr "Completed" -#: src/pages/build/BuildDetail.tsx:374 -#~ msgid "Print build report" -#~ msgstr "Print build report" - -#: src/pages/build/BuildDetail.tsx:410 +#: src/pages/build/BuildDetail.tsx:411 msgid "Build Details" msgstr "Build Details" -#: src/pages/build/BuildDetail.tsx:416 +#: src/pages/build/BuildDetail.tsx:417 msgid "Required Parts" msgstr "Required Parts" -#: src/pages/build/BuildDetail.tsx:428 -#: src/pages/sales/SalesOrderDetail.tsx:407 -#: src/pages/sales/SalesOrderShipmentDetail.tsx:261 +#: src/pages/build/BuildDetail.tsx:429 +#: src/pages/sales/SalesOrderDetail.tsx:408 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:259 #: src/tables/part/PartSalesAllocationsTable.tsx:73 msgid "Allocated Stock" msgstr "Allocated Stock" -#: src/pages/build/BuildDetail.tsx:444 +#: src/pages/build/BuildDetail.tsx:445 msgid "Consumed Stock" msgstr "Consumed Stock" -#: src/pages/build/BuildDetail.tsx:461 +#: src/pages/build/BuildDetail.tsx:462 msgid "Incomplete Outputs" msgstr "Incomplete Outputs" -#: src/pages/build/BuildDetail.tsx:489 +#: src/pages/build/BuildDetail.tsx:490 msgid "External Orders" msgstr "External Orders" -#: src/pages/build/BuildDetail.tsx:503 +#: src/pages/build/BuildDetail.tsx:504 msgid "Child Build Orders" msgstr "Child Build Orders" -#: src/pages/build/BuildDetail.tsx:513 -#: src/pages/part/PartDetail.tsx:937 +#: src/pages/build/BuildDetail.tsx:514 +#: src/pages/part/PartDetail.tsx:926 #: src/pages/stock/StockDetail.tsx:587 #: src/tables/build/BuildOutputTable.tsx:654 #: src/tables/stock/StockItemTestResultTable.tsx:173 msgid "Test Results" msgstr "Test Results" -#: src/pages/build/BuildDetail.tsx:550 +#: src/pages/build/BuildDetail.tsx:555 msgid "Edit Build Order" msgstr "Edit Build Order" -#: src/pages/build/BuildDetail.tsx:572 +#: src/pages/build/BuildDetail.tsx:577 #: src/tables/build/BuildOrderTable.tsx:207 #: src/tables/build/BuildOrderTable.tsx:223 msgid "Add Build Order" msgstr "Add Build Order" -#: src/pages/build/BuildDetail.tsx:582 +#: src/pages/build/BuildDetail.tsx:587 msgid "Cancel Build Order" msgstr "Cancel Build Order" -#: src/pages/build/BuildDetail.tsx:584 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:416 -#: src/pages/sales/ReturnOrderDetail.tsx:427 -#: src/pages/sales/SalesOrderDetail.tsx:454 +#: src/pages/build/BuildDetail.tsx:589 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:421 +#: src/pages/sales/ReturnOrderDetail.tsx:432 +#: src/pages/sales/SalesOrderDetail.tsx:459 msgid "Order cancelled" msgstr "Order cancelled" -#: src/pages/build/BuildDetail.tsx:585 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:415 -#: src/pages/sales/ReturnOrderDetail.tsx:426 -#: src/pages/sales/SalesOrderDetail.tsx:453 +#: src/pages/build/BuildDetail.tsx:590 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:420 +#: src/pages/sales/ReturnOrderDetail.tsx:431 +#: src/pages/sales/SalesOrderDetail.tsx:458 msgid "Cancel this order" msgstr "Cancel this order" -#: src/pages/build/BuildDetail.tsx:594 +#: src/pages/build/BuildDetail.tsx:599 msgid "Hold Build Order" msgstr "Hold Build Order" -#: src/pages/build/BuildDetail.tsx:596 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:423 -#: src/pages/sales/ReturnOrderDetail.tsx:434 -#: src/pages/sales/SalesOrderDetail.tsx:461 +#: src/pages/build/BuildDetail.tsx:601 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:428 +#: src/pages/sales/ReturnOrderDetail.tsx:439 +#: src/pages/sales/SalesOrderDetail.tsx:466 msgid "Place this order on hold" msgstr "Place this order on hold" -#: src/pages/build/BuildDetail.tsx:597 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:424 -#: src/pages/sales/ReturnOrderDetail.tsx:435 -#: src/pages/sales/SalesOrderDetail.tsx:462 +#: src/pages/build/BuildDetail.tsx:602 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:429 +#: src/pages/sales/ReturnOrderDetail.tsx:440 +#: src/pages/sales/SalesOrderDetail.tsx:467 msgid "Order placed on hold" msgstr "Order placed on hold" -#: src/pages/build/BuildDetail.tsx:602 +#: src/pages/build/BuildDetail.tsx:607 msgid "Issue Build Order" msgstr "Issue Build Order" -#: src/pages/build/BuildDetail.tsx:604 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:407 -#: src/pages/sales/ReturnOrderDetail.tsx:418 -#: src/pages/sales/SalesOrderDetail.tsx:445 +#: src/pages/build/BuildDetail.tsx:609 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:412 +#: src/pages/sales/ReturnOrderDetail.tsx:423 +#: src/pages/sales/SalesOrderDetail.tsx:450 msgid "Issue this order" msgstr "Issue this order" -#: src/pages/build/BuildDetail.tsx:605 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:408 -#: src/pages/sales/ReturnOrderDetail.tsx:419 -#: src/pages/sales/SalesOrderDetail.tsx:446 +#: src/pages/build/BuildDetail.tsx:610 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:413 +#: src/pages/sales/ReturnOrderDetail.tsx:424 +#: src/pages/sales/SalesOrderDetail.tsx:451 msgid "Order issued" msgstr "Order issued" -#: src/pages/build/BuildDetail.tsx:624 +#: src/pages/build/BuildDetail.tsx:629 msgid "Complete Build Order" msgstr "Complete Build Order" -#: src/pages/build/BuildDetail.tsx:630 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:436 -#: src/pages/sales/ReturnOrderDetail.tsx:442 -#: src/pages/sales/SalesOrderDetail.tsx:480 +#: src/pages/build/BuildDetail.tsx:635 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:441 +#: src/pages/sales/ReturnOrderDetail.tsx:447 +#: src/pages/sales/SalesOrderDetail.tsx:485 msgid "Mark this order as complete" msgstr "Mark this order as complete" -#: src/pages/build/BuildDetail.tsx:633 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:430 -#: src/pages/sales/ReturnOrderDetail.tsx:443 -#: src/pages/sales/SalesOrderDetail.tsx:481 +#: src/pages/build/BuildDetail.tsx:638 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:435 +#: src/pages/sales/ReturnOrderDetail.tsx:448 +#: src/pages/sales/SalesOrderDetail.tsx:486 msgid "Order completed" msgstr "Order completed" -#: src/pages/build/BuildDetail.tsx:660 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:459 -#: src/pages/sales/ReturnOrderDetail.tsx:470 -#: src/pages/sales/SalesOrderDetail.tsx:516 +#: src/pages/build/BuildDetail.tsx:665 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:464 +#: src/pages/sales/ReturnOrderDetail.tsx:475 +#: src/pages/sales/SalesOrderDetail.tsx:521 msgid "Issue Order" msgstr "Issue Order" -#: src/pages/build/BuildDetail.tsx:667 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:466 -#: src/pages/sales/ReturnOrderDetail.tsx:477 -#: src/pages/sales/SalesOrderDetail.tsx:530 +#: src/pages/build/BuildDetail.tsx:672 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:471 +#: src/pages/sales/ReturnOrderDetail.tsx:482 +#: src/pages/sales/SalesOrderDetail.tsx:535 msgid "Complete Order" msgstr "Complete Order" -#: src/pages/build/BuildDetail.tsx:686 +#: src/pages/build/BuildDetail.tsx:691 msgid "Build Order Actions" msgstr "Build Order Actions" -#: src/pages/build/BuildDetail.tsx:691 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:489 -#: src/pages/sales/ReturnOrderDetail.tsx:500 -#: src/pages/sales/SalesOrderDetail.tsx:554 +#: src/pages/build/BuildDetail.tsx:696 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:494 +#: src/pages/sales/ReturnOrderDetail.tsx:505 +#: src/pages/sales/SalesOrderDetail.tsx:559 msgid "Edit order" msgstr "Edit order" -#: src/pages/build/BuildDetail.tsx:695 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:497 -#: src/pages/sales/ReturnOrderDetail.tsx:506 -#: src/pages/sales/SalesOrderDetail.tsx:559 +#: src/pages/build/BuildDetail.tsx:700 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:502 +#: src/pages/sales/ReturnOrderDetail.tsx:511 +#: src/pages/sales/SalesOrderDetail.tsx:564 msgid "Duplicate order" msgstr "Duplicate order" -#: src/pages/build/BuildDetail.tsx:699 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:500 -#: src/pages/sales/ReturnOrderDetail.tsx:511 -#: src/pages/sales/SalesOrderDetail.tsx:562 -msgid "Hold order" -msgstr "Hold order" - #: src/pages/build/BuildDetail.tsx:704 #: src/pages/purchasing/PurchaseOrderDetail.tsx:505 #: src/pages/sales/ReturnOrderDetail.tsx:516 #: src/pages/sales/SalesOrderDetail.tsx:567 +msgid "Hold order" +msgstr "Hold order" + +#: src/pages/build/BuildDetail.tsx:709 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:510 +#: src/pages/sales/ReturnOrderDetail.tsx:521 +#: src/pages/sales/SalesOrderDetail.tsx:572 msgid "Cancel order" msgstr "Cancel order" -#: src/pages/build/BuildDetail.tsx:742 +#: src/pages/build/BuildDetail.tsx:747 #: src/pages/stock/StockDetail.tsx:344 -#: src/tables/build/BuildAllocatedStockTable.tsx:85 +#: src/tables/build/BuildAllocatedStockTable.tsx:82 #: src/tables/part/PartBuildAllocationsTable.tsx:45 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:157 #: src/tables/stock/StockTrackingTable.tsx:109 @@ -7138,7 +7201,7 @@ msgstr "Build Order" #~ msgid "Build order created" #~ msgstr "Build order created" -#: src/pages/build/BuildIndex.tsx:29 +#: src/pages/build/BuildIndex.tsx:35 #: src/tables/build/BuildOrderTable.tsx:184 msgid "Show external build orders" msgstr "Show external build orders" @@ -7147,61 +7210,82 @@ msgstr "Show external build orders" #~ msgid "New Build Order" #~ msgstr "New Build Order" -#: src/pages/build/BuildIndex.tsx:83 -#: src/pages/purchasing/PurchasingIndex.tsx:69 -#: src/pages/sales/SalesIndex.tsx:92 -#: src/pages/sales/SalesIndex.tsx:125 +#: src/pages/build/BuildIndex.tsx:74 +#: src/pages/part/CategoryDetail.tsx:292 +#: src/pages/purchasing/PurchasingIndex.tsx:74 +#: src/pages/purchasing/PurchasingIndex.tsx:107 +#: src/pages/purchasing/PurchasingIndex.tsx:135 +#: src/pages/purchasing/PurchasingIndex.tsx:156 +#: src/pages/purchasing/PurchasingIndex.tsx:184 +#: src/pages/sales/SalesIndex.tsx:61 +#: src/pages/sales/SalesIndex.tsx:107 +#: src/pages/sales/SalesIndex.tsx:140 msgid "Table View" msgstr "Table View" -#: src/pages/build/BuildIndex.tsx:86 -#: src/pages/purchasing/PurchasingIndex.tsx:72 -#: src/pages/sales/SalesIndex.tsx:95 -#: src/pages/sales/SalesIndex.tsx:128 +#: src/pages/build/BuildIndex.tsx:80 +#: src/pages/purchasing/PurchasingIndex.tsx:80 +#: src/pages/sales/SalesIndex.tsx:67 +#: src/pages/sales/SalesIndex.tsx:113 msgid "Calendar View" msgstr "Calendar View" -#: src/pages/company/CompanyDetail.tsx:99 +#: src/pages/build/BuildIndex.tsx:86 +#: src/pages/part/CategoryDetail.tsx:306 +#: src/pages/purchasing/PurchasingIndex.tsx:92 +#: src/pages/purchasing/PurchasingIndex.tsx:118 +#: src/pages/purchasing/PurchasingIndex.tsx:141 +#: src/pages/purchasing/PurchasingIndex.tsx:167 +#: src/pages/purchasing/PurchasingIndex.tsx:190 +#: src/pages/sales/SalesIndex.tsx:79 +#: src/pages/sales/SalesIndex.tsx:125 +#: src/pages/sales/SalesIndex.tsx:151 +msgid "Parametric View" +msgstr "Parametric View" + +#: src/pages/company/CompanyDetail.tsx:100 msgid "Website" msgstr "Website" -#: src/pages/company/CompanyDetail.tsx:107 +#: src/pages/company/CompanyDetail.tsx:108 msgid "Phone Number" msgstr "Phone Number" -#: src/pages/company/CompanyDetail.tsx:114 +#: src/pages/company/CompanyDetail.tsx:115 msgid "Email Address" msgstr "Email Address" -#: src/pages/company/CompanyDetail.tsx:121 +#: src/pages/company/CompanyDetail.tsx:122 msgid "Tax ID" msgstr "Tax ID" -#: src/pages/company/CompanyDetail.tsx:131 +#: src/pages/company/CompanyDetail.tsx:132 msgid "Default Currency" msgstr "Default Currency" -#: src/pages/company/CompanyDetail.tsx:142 +#: src/pages/company/CompanyDetail.tsx:143 #: src/pages/company/ManufacturerDetail.tsx:8 -#: src/pages/company/ManufacturerPartDetail.tsx:104 -#: src/pages/company/ManufacturerPartDetail.tsx:280 -#: src/pages/company/SupplierPartDetail.tsx:152 +#: src/pages/company/ManufacturerPartDetail.tsx:103 +#: src/pages/company/ManufacturerPartDetail.tsx:271 +#: src/pages/company/SupplierPartDetail.tsx:153 #: src/tables/Filter.tsx:347 #: src/tables/company/CompanyTable.tsx:101 #: src/tables/purchasing/SupplierPartTable.tsx:89 msgid "Manufacturer" msgstr "Manufacturer" -#: src/pages/company/CompanyDetail.tsx:148 +#: src/pages/company/CompanyDetail.tsx:149 #: src/pages/company/CustomerDetail.tsx:8 #: src/pages/part/pricing/SaleHistoryPanel.tsx:31 -#: src/pages/sales/ReturnOrderDetail.tsx:123 -#: src/pages/sales/SalesOrderDetail.tsx:113 -#: src/pages/sales/SalesOrderShipmentDetail.tsx:113 +#: src/pages/sales/ReturnOrderDetail.tsx:124 +#: src/pages/sales/SalesOrderDetail.tsx:114 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:111 #: src/pages/stock/StockDetail.tsx:370 #: src/tables/company/CompanyTable.tsx:106 +#: src/tables/sales/ReturnOrderParametricTable.tsx:32 #: src/tables/sales/ReturnOrderTable.tsx:108 -#: src/tables/sales/SalesOrderShipmentTable.tsx:111 +#: src/tables/sales/SalesOrderParametricTable.tsx:32 +#: src/tables/sales/SalesOrderShipmentTable.tsx:132 #: src/tables/sales/SalesOrderTable.tsx:133 #: src/tables/stock/StockTrackingTable.tsx:153 msgid "Customer" @@ -7211,11 +7295,11 @@ msgstr "Customer" #~ msgid "Edit company" #~ msgstr "Edit company" -#: src/pages/company/CompanyDetail.tsx:181 +#: src/pages/company/CompanyDetail.tsx:182 msgid "Company Details" msgstr "Company Details" -#: src/pages/company/CompanyDetail.tsx:187 +#: src/pages/company/CompanyDetail.tsx:188 msgid "Supplied Parts" msgstr "Supplied Parts" @@ -7223,79 +7307,79 @@ msgstr "Supplied Parts" #~ msgid "Delete company" #~ msgstr "Delete company" -#: src/pages/company/CompanyDetail.tsx:194 +#: src/pages/company/CompanyDetail.tsx:195 msgid "Manufactured Parts" msgstr "Manufactured Parts" -#: src/pages/company/CompanyDetail.tsx:241 +#: src/pages/company/CompanyDetail.tsx:242 msgid "Assigned Stock" msgstr "Assigned Stock" -#: src/pages/company/CompanyDetail.tsx:282 +#: src/pages/company/CompanyDetail.tsx:287 #: src/tables/company/CompanyTable.tsx:82 msgid "Edit Company" msgstr "Edit Company" -#: src/pages/company/CompanyDetail.tsx:290 +#: src/pages/company/CompanyDetail.tsx:295 msgid "Delete Company" msgstr "Delete Company" -#: src/pages/company/CompanyDetail.tsx:305 +#: src/pages/company/CompanyDetail.tsx:310 msgid "Company Actions" msgstr "Company Actions" -#: src/pages/company/ManufacturerPartDetail.tsx:78 -#: src/pages/company/SupplierPartDetail.tsx:89 +#: src/pages/company/ManufacturerPartDetail.tsx:77 +#: src/pages/company/SupplierPartDetail.tsx:90 msgid "Internal Part" msgstr "Internal Part" -#: src/pages/company/ManufacturerPartDetail.tsx:112 +#: src/pages/company/ManufacturerPartDetail.tsx:111 msgid "Manufacturer Part Number" msgstr "Manufacturer Part Number" -#: src/pages/company/ManufacturerPartDetail.tsx:129 -#: src/pages/company/SupplierPartDetail.tsx:113 +#: src/pages/company/ManufacturerPartDetail.tsx:128 +#: src/pages/company/SupplierPartDetail.tsx:114 msgid "External Link" msgstr "External Link" -#: src/pages/company/ManufacturerPartDetail.tsx:148 -#: src/pages/company/SupplierPartDetail.tsx:232 +#: src/pages/company/ManufacturerPartDetail.tsx:147 +#: src/pages/company/SupplierPartDetail.tsx:233 #: src/pages/part/PartDetail.tsx:787 msgid "Part Details" msgstr "Part Details" -#: src/pages/company/ManufacturerPartDetail.tsx:151 +#: src/pages/company/ManufacturerPartDetail.tsx:150 msgid "Manufacturer Details" msgstr "Manufacturer Details" -#: src/pages/company/ManufacturerPartDetail.tsx:160 +#: src/pages/company/ManufacturerPartDetail.tsx:159 msgid "Manufacturer Part Details" msgstr "Manufacturer Part Details" -#: src/pages/company/ManufacturerPartDetail.tsx:178 -#: src/pages/company/SupplierPartDetail.tsx:252 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:381 +#: src/pages/company/ManufacturerPartDetail.tsx:165 +#: src/pages/company/SupplierPartDetail.tsx:253 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:382 msgid "Received Stock" msgstr "Received Stock" -#: src/pages/company/ManufacturerPartDetail.tsx:220 +#: src/pages/company/ManufacturerPartDetail.tsx:211 #: src/tables/purchasing/ManufacturerPartTable.tsx:108 msgid "Edit Manufacturer Part" msgstr "Edit Manufacturer Part" -#: src/pages/company/ManufacturerPartDetail.tsx:227 +#: src/pages/company/ManufacturerPartDetail.tsx:218 #: src/tables/purchasing/ManufacturerPartTable.tsx:96 #: src/tables/purchasing/ManufacturerPartTable.tsx:115 #: src/tables/purchasing/ManufacturerPartTable.tsx:156 msgid "Add Manufacturer Part" msgstr "Add Manufacturer Part" -#: src/pages/company/ManufacturerPartDetail.tsx:239 +#: src/pages/company/ManufacturerPartDetail.tsx:230 #: src/tables/purchasing/ManufacturerPartTable.tsx:126 msgid "Delete Manufacturer Part" msgstr "Delete Manufacturer Part" -#: src/pages/company/ManufacturerPartDetail.tsx:254 +#: src/pages/company/ManufacturerPartDetail.tsx:245 msgid "Manufacturer Part Actions" msgstr "Manufacturer Part Actions" @@ -7303,12 +7387,12 @@ msgstr "Manufacturer Part Actions" #~ msgid "ManufacturerPart" #~ msgstr "ManufacturerPart" -#: src/pages/company/SupplierPartDetail.tsx:104 +#: src/pages/company/SupplierPartDetail.tsx:105 #: src/tables/part/RelatedPartTable.tsx:82 msgid "Part Description" msgstr "Part Description" -#: src/pages/company/SupplierPartDetail.tsx:179 +#: src/pages/company/SupplierPartDetail.tsx:180 #: src/tables/part/PartPurchaseOrdersTable.tsx:73 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:191 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:233 @@ -7316,50 +7400,50 @@ msgstr "Part Description" msgid "Pack Quantity" msgstr "Pack Quantity" -#: src/pages/company/SupplierPartDetail.tsx:204 +#: src/pages/company/SupplierPartDetail.tsx:205 msgid "Supplier Availability" msgstr "Supplier Availability" -#: src/pages/company/SupplierPartDetail.tsx:212 +#: src/pages/company/SupplierPartDetail.tsx:213 msgid "Availability Updated" msgstr "Availability Updated" -#: src/pages/company/SupplierPartDetail.tsx:237 +#: src/pages/company/SupplierPartDetail.tsx:238 msgid "Availability" msgstr "Availability" -#: src/pages/company/SupplierPartDetail.tsx:246 +#: src/pages/company/SupplierPartDetail.tsx:247 msgid "Supplier Part Details" msgstr "Supplier Part Details" -#: src/pages/company/SupplierPartDetail.tsx:279 +#: src/pages/company/SupplierPartDetail.tsx:280 #: src/pages/part/PartPricingPanel.tsx:113 #: src/pages/part/pricing/PricingOverviewPanel.tsx:239 msgid "Supplier Pricing" msgstr "Supplier Pricing" -#: src/pages/company/SupplierPartDetail.tsx:308 +#: src/pages/company/SupplierPartDetail.tsx:313 msgid "Supplier Part Actions" msgstr "Supplier Part Actions" -#: src/pages/company/SupplierPartDetail.tsx:332 +#: src/pages/company/SupplierPartDetail.tsx:337 #: src/tables/purchasing/SupplierPartTable.tsx:244 msgid "Edit Supplier Part" msgstr "Edit Supplier Part" -#: src/pages/company/SupplierPartDetail.tsx:340 +#: src/pages/company/SupplierPartDetail.tsx:345 #: src/tables/purchasing/SupplierPartTable.tsx:264 msgid "Delete Supplier Part" msgstr "Delete Supplier Part" -#: src/pages/company/SupplierPartDetail.tsx:348 +#: src/pages/company/SupplierPartDetail.tsx:353 #: src/tables/purchasing/SupplierPartTable.tsx:172 #: src/tables/purchasing/SupplierPartTable.tsx:251 msgid "Add Supplier Part" msgstr "Add Supplier Part" -#: src/pages/company/SupplierPartDetail.tsx:388 -#: src/pages/part/PartDetail.tsx:1003 +#: src/pages/company/SupplierPartDetail.tsx:393 +#: src/pages/part/PartDetail.tsx:1018 msgid "No Stock" msgstr "No Stock" @@ -7406,83 +7490,83 @@ msgstr "User Details" msgid "Basic user" msgstr "Basic user" -#: src/pages/part/CategoryDetail.tsx:100 +#: src/pages/part/CategoryDetail.tsx:103 #: src/pages/stock/LocationDetail.tsx:94 #: src/tables/settings/ErrorTable.tsx:63 #: src/tables/settings/ErrorTable.tsx:108 msgid "Path" msgstr "Path" -#: src/pages/part/CategoryDetail.tsx:116 +#: src/pages/part/CategoryDetail.tsx:119 msgid "Parent Category" msgstr "Parent Category" -#: src/pages/part/CategoryDetail.tsx:139 -#: src/pages/part/CategoryDetail.tsx:271 +#: src/pages/part/CategoryDetail.tsx:142 +#: src/pages/part/CategoryDetail.tsx:279 msgid "Subcategories" msgstr "Subcategories" -#: src/pages/part/CategoryDetail.tsx:146 +#: src/pages/part/CategoryDetail.tsx:149 #: src/pages/stock/LocationDetail.tsx:134 #: src/tables/part/PartCategoryTable.tsx:89 #: src/tables/stock/StockLocationTable.tsx:43 msgid "Structural" msgstr "Structural" -#: src/pages/part/CategoryDetail.tsx:152 +#: src/pages/part/CategoryDetail.tsx:155 msgid "Parent default location" msgstr "Parent default location" -#: src/pages/part/CategoryDetail.tsx:159 +#: src/pages/part/CategoryDetail.tsx:162 msgid "Default location" msgstr "Default location" -#: src/pages/part/CategoryDetail.tsx:170 +#: src/pages/part/CategoryDetail.tsx:173 msgid "Top level part category" msgstr "Top level part category" -#: src/pages/part/CategoryDetail.tsx:180 -#: src/pages/part/CategoryDetail.tsx:248 +#: src/pages/part/CategoryDetail.tsx:183 +#: src/pages/part/CategoryDetail.tsx:251 #: src/tables/part/PartCategoryTable.tsx:122 msgid "Edit Part Category" msgstr "Edit Part Category" -#: src/pages/part/CategoryDetail.tsx:189 +#: src/pages/part/CategoryDetail.tsx:192 msgid "Move items to parent category" msgstr "Move items to parent category" -#: src/pages/part/CategoryDetail.tsx:193 +#: src/pages/part/CategoryDetail.tsx:196 #: src/pages/stock/LocationDetail.tsx:226 msgid "Delete items" msgstr "Delete items" -#: src/pages/part/CategoryDetail.tsx:201 -#: src/pages/part/CategoryDetail.tsx:253 +#: src/pages/part/CategoryDetail.tsx:204 +#: src/pages/part/CategoryDetail.tsx:256 msgid "Delete Part Category" msgstr "Delete Part Category" -#: src/pages/part/CategoryDetail.tsx:204 +#: src/pages/part/CategoryDetail.tsx:207 msgid "Parts Action" msgstr "Parts Action" -#: src/pages/part/CategoryDetail.tsx:205 +#: src/pages/part/CategoryDetail.tsx:208 msgid "Action for parts in this category" msgstr "Action for parts in this category" -#: src/pages/part/CategoryDetail.tsx:211 +#: src/pages/part/CategoryDetail.tsx:214 msgid "Child Categories Action" msgstr "Child Categories Action" -#: src/pages/part/CategoryDetail.tsx:212 +#: src/pages/part/CategoryDetail.tsx:215 msgid "Action for child categories in this category" msgstr "Action for child categories in this category" -#: src/pages/part/CategoryDetail.tsx:244 +#: src/pages/part/CategoryDetail.tsx:247 #: src/tables/part/PartCategoryTable.tsx:143 msgid "Category Actions" msgstr "Category Actions" -#: src/pages/part/CategoryDetail.tsx:265 +#: src/pages/part/CategoryDetail.tsx:273 msgid "Category Details" msgstr "Category Details" @@ -7580,7 +7664,6 @@ msgid "Category Default Location" msgstr "Category Default Location" #: src/pages/part/PartDetail.tsx:507 -#: src/tables/purchasing/ManufacturerPartParameterTable.tsx:48 msgid "Units" msgstr "Units" @@ -7595,7 +7678,7 @@ msgstr "Keywords" #: src/pages/part/PartDetail.tsx:542 #: src/tables/bom/BomTable.tsx:439 -#: src/tables/build/BuildLineTable.tsx:305 +#: src/tables/build/BuildLineTable.tsx:306 #: src/tables/part/PartTable.tsx:319 #: src/tables/sales/SalesOrderLineItemTable.tsx:138 msgid "Available Stock" @@ -7603,7 +7686,7 @@ msgstr "Available Stock" #: src/pages/part/PartDetail.tsx:548 #: src/tables/bom/BomTable.tsx:341 -#: src/tables/build/BuildLineTable.tsx:267 +#: src/tables/build/BuildLineTable.tsx:268 #: src/tables/sales/SalesOrderLineItemTable.tsx:180 msgid "On order" msgstr "On order" @@ -7629,7 +7712,7 @@ msgstr "Minimum Stock" #~ msgstr "Scheduling" #: src/pages/part/PartDetail.tsx:620 -#: src/tables/part/ParametricPartTable.tsx:359 +#: src/tables/part/ParametricPartTable.tsx:24 #: src/tables/part/PartTable.tsx:203 msgid "Locked" msgstr "Locked" @@ -7666,16 +7749,16 @@ msgid "Saleable Part" msgstr "Saleable Part" #: src/pages/part/PartDetail.tsx:663 -#: src/pages/part/PartDetail.tsx:1033 +#: src/pages/part/PartDetail.tsx:1054 #: src/tables/bom/BomTable.tsx:150 #: src/tables/bom/BomTable.tsx:434 msgid "Virtual Part" msgstr "Virtual Part" #: src/pages/part/PartDetail.tsx:678 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:271 -#: src/pages/sales/ReturnOrderDetail.tsx:249 -#: src/pages/sales/SalesOrderDetail.tsx:242 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:272 +#: src/pages/sales/ReturnOrderDetail.tsx:250 +#: src/pages/sales/SalesOrderDetail.tsx:243 #: src/tables/ColumnRenderers.tsx:502 msgid "Creation Date" msgstr "Creation Date" @@ -7713,35 +7796,46 @@ msgstr "Latest Serial Number" msgid "Select Part Revision" msgstr "Select Part Revision" -#: src/pages/part/PartDetail.tsx:823 +#: src/pages/part/PartDetail.tsx:812 msgid "Variants" msgstr "Variants" -#: src/pages/part/PartDetail.tsx:830 +#: src/pages/part/PartDetail.tsx:819 #: src/pages/stock/StockDetail.tsx:542 msgid "Allocations" msgstr "Allocations" -#: src/pages/part/PartDetail.tsx:837 +#: src/pages/part/PartDetail.tsx:826 msgid "Bill of Materials" msgstr "Bill of Materials" -#: src/pages/part/PartDetail.tsx:849 +#: src/pages/part/PartDetail.tsx:838 msgid "Used In" msgstr "Used In" -#: src/pages/part/PartDetail.tsx:856 +#: src/pages/part/PartDetail.tsx:845 msgid "Part Pricing" msgstr "Part Pricing" -#: src/pages/part/PartDetail.tsx:926 +#: src/pages/part/PartDetail.tsx:915 msgid "Test Templates" msgstr "Test Templates" -#: src/pages/part/PartDetail.tsx:948 +#: src/pages/part/PartDetail.tsx:937 msgid "Related Parts" msgstr "Related Parts" +#: src/pages/part/PartDetail.tsx:949 +#: src/tables/ColumnRenderers.tsx:73 +#: src/tables/bom/BomTable.tsx:657 +#: src/tables/part/PartTestTemplateTable.tsx:258 +msgid "Part is Locked" +msgstr "Part is Locked" + +#: src/pages/part/PartDetail.tsx:954 +msgid "Part parameters cannot be edited, as the part is locked" +msgstr "Part parameters cannot be edited, as the part is locked" + #: src/pages/part/PartDetail.tsx:956 #~ msgid "Count part stock" #~ msgstr "Count part stock" @@ -7750,42 +7844,46 @@ msgstr "Related Parts" #~ msgid "Transfer part stock" #~ msgstr "Transfer part stock" -#: src/pages/part/PartDetail.tsx:1009 +#: src/pages/part/PartDetail.tsx:1024 #: src/tables/part/PartTestTemplateTable.tsx:112 #: src/tables/stock/StockItemTestResultTable.tsx:404 msgid "Required" msgstr "Required" -#: src/pages/part/PartDetail.tsx:1058 +#: src/pages/part/PartDetail.tsx:1042 +msgid "Deficit" +msgstr "Deficit" + +#: src/pages/part/PartDetail.tsx:1079 #: src/tables/part/PartTable.tsx:396 #: src/tables/part/PartTable.tsx:449 msgid "Add Part" msgstr "Add Part" -#: src/pages/part/PartDetail.tsx:1072 +#: src/pages/part/PartDetail.tsx:1093 msgid "Delete Part" msgstr "Delete Part" -#: src/pages/part/PartDetail.tsx:1081 +#: src/pages/part/PartDetail.tsx:1102 msgid "Deleting this part cannot be reversed" msgstr "Deleting this part cannot be reversed" -#: src/pages/part/PartDetail.tsx:1143 +#: src/pages/part/PartDetail.tsx:1164 #: src/pages/stock/StockDetail.tsx:883 msgid "Order" msgstr "Order" -#: src/pages/part/PartDetail.tsx:1144 +#: src/pages/part/PartDetail.tsx:1165 #: src/pages/stock/StockDetail.tsx:884 -#: src/tables/build/BuildLineTable.tsx:761 +#: src/tables/build/BuildLineTable.tsx:768 msgid "Order Stock" msgstr "Order Stock" -#: src/pages/part/PartDetail.tsx:1156 +#: src/pages/part/PartDetail.tsx:1177 msgid "Search by serial number" msgstr "Search by serial number" -#: src/pages/part/PartDetail.tsx:1164 +#: src/pages/part/PartDetail.tsx:1185 #: src/tables/part/PartTable.tsx:506 msgid "Part Actions" msgstr "Part Actions" @@ -8034,7 +8132,7 @@ msgstr "Purchase Pricing" #: src/pages/part/pricing/PricingOverviewPanel.tsx:288 #: src/pages/stock/StockDetail.tsx:426 -#: src/tables/part/PartParameterTable.tsx:121 +#: src/tables/general/ParameterTable.tsx:101 #: src/tables/stock/StockItemTable.tsx:300 msgid "Last Updated" msgstr "Last Updated" @@ -8102,17 +8200,17 @@ msgstr "Supplier Price" msgid "Variant Part" msgstr "Variant Part" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:89 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:90 msgid "Edit Purchase Order" msgstr "Edit Purchase Order" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:125 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:126 #: src/tables/purchasing/PurchaseOrderTable.tsx:154 #: src/tables/purchasing/PurchaseOrderTable.tsx:167 msgid "Add Purchase Order" msgstr "Add Purchase Order" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:147 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:148 msgid "Supplier Reference" msgstr "Supplier Reference" @@ -8122,20 +8220,20 @@ msgstr "Supplier Reference" #~ msgid "Order Currency," #~ msgstr "Order Currency," -#: src/pages/purchasing/PurchaseOrderDetail.tsx:187 -#: src/pages/sales/ReturnOrderDetail.tsx:160 -#: src/pages/sales/SalesOrderDetail.tsx:144 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:188 +#: src/pages/sales/ReturnOrderDetail.tsx:161 +#: src/pages/sales/SalesOrderDetail.tsx:145 msgid "Completed Line Items" msgstr "Completed Line Items" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:196 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:197 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:272 msgid "Destination" msgstr "Destination" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:202 -#: src/pages/sales/ReturnOrderDetail.tsx:167 -#: src/pages/sales/SalesOrderDetail.tsx:161 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:203 +#: src/pages/sales/ReturnOrderDetail.tsx:168 +#: src/pages/sales/SalesOrderDetail.tsx:162 msgid "Order Currency" msgstr "Order Currency" @@ -8145,97 +8243,97 @@ msgstr "Order Currency" #~ msgid "Created On" #~ msgstr "Created On" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:208 -#: src/pages/sales/ReturnOrderDetail.tsx:174 -#: src/pages/sales/SalesOrderDetail.tsx:167 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:209 +#: src/pages/sales/ReturnOrderDetail.tsx:175 +#: src/pages/sales/SalesOrderDetail.tsx:168 msgid "Total Cost" msgstr "Total Cost" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:237 -#: src/pages/sales/ReturnOrderDetail.tsx:215 -#: src/pages/sales/SalesOrderDetail.tsx:208 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:238 +#: src/pages/sales/ReturnOrderDetail.tsx:216 +#: src/pages/sales/SalesOrderDetail.tsx:209 msgid "Contact Email" msgstr "Contact Email" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:245 -#: src/pages/sales/ReturnOrderDetail.tsx:223 -#: src/pages/sales/SalesOrderDetail.tsx:216 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:246 +#: src/pages/sales/ReturnOrderDetail.tsx:224 +#: src/pages/sales/SalesOrderDetail.tsx:217 msgid "Contact Phone" msgstr "Contact Phone" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:278 -#: src/pages/sales/ReturnOrderDetail.tsx:257 -#: src/pages/sales/SalesOrderDetail.tsx:249 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:279 +#: src/pages/sales/ReturnOrderDetail.tsx:258 +#: src/pages/sales/SalesOrderDetail.tsx:250 msgid "Issue Date" msgstr "Issue Date" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:303 -#: src/pages/sales/ReturnOrderDetail.tsx:281 -#: src/pages/sales/SalesOrderDetail.tsx:272 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:304 +#: src/pages/sales/ReturnOrderDetail.tsx:282 +#: src/pages/sales/SalesOrderDetail.tsx:273 #: src/tables/ColumnRenderers.tsx:510 #: src/tables/build/BuildOrderTable.tsx:137 #: src/tables/part/PartPurchaseOrdersTable.tsx:106 msgid "Completion Date" msgstr "Completion Date" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:333 -#: src/pages/sales/ReturnOrderDetail.tsx:311 -#: src/pages/sales/SalesOrderDetail.tsx:349 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:334 +#: src/pages/sales/ReturnOrderDetail.tsx:312 +#: src/pages/sales/SalesOrderDetail.tsx:350 msgid "Order Details" msgstr "Order Details" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:339 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:348 -#: src/pages/sales/ReturnOrderDetail.tsx:153 -#: src/pages/sales/ReturnOrderDetail.tsx:317 -#: src/pages/sales/ReturnOrderDetail.tsx:326 -#: src/pages/sales/SalesOrderDetail.tsx:355 -#: src/pages/sales/SalesOrderDetail.tsx:364 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:340 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:349 +#: src/pages/sales/ReturnOrderDetail.tsx:154 +#: src/pages/sales/ReturnOrderDetail.tsx:318 +#: src/pages/sales/ReturnOrderDetail.tsx:327 +#: src/pages/sales/SalesOrderDetail.tsx:356 +#: src/pages/sales/SalesOrderDetail.tsx:365 msgid "Line Items" msgstr "Line Items" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:363 -#: src/pages/sales/ReturnOrderDetail.tsx:341 -#: src/pages/sales/SalesOrderDetail.tsx:378 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:364 +#: src/pages/sales/ReturnOrderDetail.tsx:342 +#: src/pages/sales/SalesOrderDetail.tsx:379 msgid "Extra Line Items" msgstr "Extra Line Items" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:405 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:410 msgid "Issue Purchase Order" msgstr "Issue Purchase Order" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:413 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:418 msgid "Cancel Purchase Order" msgstr "Cancel Purchase Order" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:421 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:426 msgid "Hold Purchase Order" msgstr "Hold Purchase Order" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:429 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:434 msgid "Complete Purchase Order" msgstr "Complete Purchase Order" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:485 -#: src/pages/sales/ReturnOrderDetail.tsx:496 -#: src/pages/sales/SalesOrderDetail.tsx:549 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:490 +#: src/pages/sales/ReturnOrderDetail.tsx:501 +#: src/pages/sales/SalesOrderDetail.tsx:554 msgid "Order Actions" msgstr "Order Actions" -#: src/pages/sales/ReturnOrderDetail.tsx:114 -#: src/pages/sales/SalesOrderDetail.tsx:104 -#: src/pages/sales/SalesOrderShipmentDetail.tsx:134 +#: src/pages/sales/ReturnOrderDetail.tsx:115 +#: src/pages/sales/SalesOrderDetail.tsx:105 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:132 #: src/tables/sales/SalesOrderTable.tsx:141 msgid "Customer Reference" msgstr "Customer Reference" -#: src/pages/sales/ReturnOrderDetail.tsx:195 +#: src/pages/sales/ReturnOrderDetail.tsx:196 msgid "Return Address" msgstr "Return Address" -#: src/pages/sales/ReturnOrderDetail.tsx:201 -#: src/pages/sales/SalesOrderDetail.tsx:194 -#: src/pages/sales/SalesOrderShipmentDetail.tsx:181 +#: src/pages/sales/ReturnOrderDetail.tsx:202 +#: src/pages/sales/SalesOrderDetail.tsx:195 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:179 msgid "Not specified" msgstr "Not specified" @@ -8243,117 +8341,117 @@ msgstr "Not specified" #~ msgid "Order canceled" #~ msgstr "Order canceled" -#: src/pages/sales/ReturnOrderDetail.tsx:389 +#: src/pages/sales/ReturnOrderDetail.tsx:394 msgid "Edit Return Order" msgstr "Edit Return Order" -#: src/pages/sales/ReturnOrderDetail.tsx:407 +#: src/pages/sales/ReturnOrderDetail.tsx:412 #: src/tables/sales/ReturnOrderTable.tsx:154 #: src/tables/sales/ReturnOrderTable.tsx:167 msgid "Add Return Order" msgstr "Add Return Order" -#: src/pages/sales/ReturnOrderDetail.tsx:416 +#: src/pages/sales/ReturnOrderDetail.tsx:421 msgid "Issue Return Order" msgstr "Issue Return Order" -#: src/pages/sales/ReturnOrderDetail.tsx:424 +#: src/pages/sales/ReturnOrderDetail.tsx:429 msgid "Cancel Return Order" msgstr "Cancel Return Order" -#: src/pages/sales/ReturnOrderDetail.tsx:432 +#: src/pages/sales/ReturnOrderDetail.tsx:437 msgid "Hold Return Order" msgstr "Hold Return Order" -#: src/pages/sales/ReturnOrderDetail.tsx:440 +#: src/pages/sales/ReturnOrderDetail.tsx:445 msgid "Complete Return Order" msgstr "Complete Return Order" -#: src/pages/sales/SalesOrderDetail.tsx:153 +#: src/pages/sales/SalesOrderDetail.tsx:154 msgid "Completed Shipments" msgstr "Completed Shipments" -#: src/pages/sales/SalesOrderDetail.tsx:188 -#: src/pages/sales/SalesOrderShipmentDetail.tsx:170 +#: src/pages/sales/SalesOrderDetail.tsx:189 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:168 msgid "Shipping Address" msgstr "Shipping Address" -#: src/pages/sales/SalesOrderDetail.tsx:316 +#: src/pages/sales/SalesOrderDetail.tsx:317 msgid "Edit Sales Order" msgstr "Edit Sales Order" -#: src/pages/sales/SalesOrderDetail.tsx:338 +#: src/pages/sales/SalesOrderDetail.tsx:339 #: src/tables/sales/SalesOrderTable.tsx:108 #: src/tables/sales/SalesOrderTable.tsx:121 msgid "Add Sales Order" msgstr "Add Sales Order" -#: src/pages/sales/SalesOrderDetail.tsx:396 +#: src/pages/sales/SalesOrderDetail.tsx:397 #: src/tables/sales/SalesOrderTable.tsx:147 msgid "Shipments" msgstr "Shipments" -#: src/pages/sales/SalesOrderDetail.tsx:443 +#: src/pages/sales/SalesOrderDetail.tsx:448 msgid "Issue Sales Order" msgstr "Issue Sales Order" -#: src/pages/sales/SalesOrderDetail.tsx:451 +#: src/pages/sales/SalesOrderDetail.tsx:456 msgid "Cancel Sales Order" msgstr "Cancel Sales Order" -#: src/pages/sales/SalesOrderDetail.tsx:459 +#: src/pages/sales/SalesOrderDetail.tsx:464 msgid "Hold Sales Order" msgstr "Hold Sales Order" -#: src/pages/sales/SalesOrderDetail.tsx:467 +#: src/pages/sales/SalesOrderDetail.tsx:472 msgid "Ship Sales Order" msgstr "Ship Sales Order" -#: src/pages/sales/SalesOrderDetail.tsx:469 +#: src/pages/sales/SalesOrderDetail.tsx:474 msgid "Ship this order?" msgstr "Ship this order?" -#: src/pages/sales/SalesOrderDetail.tsx:470 +#: src/pages/sales/SalesOrderDetail.tsx:475 msgid "Order shipped" msgstr "Order shipped" -#: src/pages/sales/SalesOrderDetail.tsx:478 +#: src/pages/sales/SalesOrderDetail.tsx:483 msgid "Complete Sales Order" msgstr "Complete Sales Order" -#: src/pages/sales/SalesOrderDetail.tsx:523 +#: src/pages/sales/SalesOrderDetail.tsx:528 msgid "Ship Order" msgstr "Ship Order" -#: src/pages/sales/SalesOrderShipmentDetail.tsx:142 -#: src/tables/sales/SalesOrderShipmentTable.tsx:135 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:140 +#: src/tables/sales/SalesOrderShipmentTable.tsx:156 msgid "Shipment Reference" msgstr "Shipment Reference" -#: src/pages/sales/SalesOrderShipmentDetail.tsx:148 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:146 msgid "Tracking Number" msgstr "Tracking Number" -#: src/pages/sales/SalesOrderShipmentDetail.tsx:156 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:154 msgid "Invoice Number" msgstr "Invoice Number" -#: src/pages/sales/SalesOrderShipmentDetail.tsx:191 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:189 msgid "Allocated Items" msgstr "Allocated Items" -#: src/pages/sales/SalesOrderShipmentDetail.tsx:196 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:194 msgid "Checked By" msgstr "Checked By" -#: src/pages/sales/SalesOrderShipmentDetail.tsx:202 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:200 msgid "Not checked" msgstr "Not checked" -#: src/pages/sales/SalesOrderShipmentDetail.tsx:208 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:206 #: src/tables/ColumnRenderers.tsx:518 #: src/tables/sales/SalesOrderAllocationTable.tsx:182 -#: src/tables/sales/SalesOrderShipmentTable.tsx:168 +#: src/tables/sales/SalesOrderShipmentTable.tsx:189 msgid "Shipment Date" msgstr "Shipment Date" @@ -8361,108 +8459,82 @@ msgstr "Shipment Date" #~ msgid "Assigned Items" #~ msgstr "Assigned Items" -#: src/pages/sales/SalesOrderShipmentDetail.tsx:216 -#: src/tables/sales/SalesOrderShipmentTable.tsx:172 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:214 +#: src/tables/sales/SalesOrderShipmentTable.tsx:193 msgid "Delivery Date" msgstr "Delivery Date" -#: src/pages/sales/SalesOrderShipmentDetail.tsx:255 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:253 msgid "Shipment Details" msgstr "Shipment Details" -#: src/pages/sales/SalesOrderShipmentDetail.tsx:294 -#: src/pages/sales/SalesOrderShipmentDetail.tsx:438 -#: src/tables/sales/SalesOrderShipmentTable.tsx:90 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:292 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:406 +#: src/tables/sales/SalesOrderShipmentTable.tsx:97 msgid "Edit Shipment" msgstr "Edit Shipment" -#: src/pages/sales/SalesOrderShipmentDetail.tsx:301 -#: src/pages/sales/SalesOrderShipmentDetail.tsx:457 -#: src/tables/sales/SalesOrderShipmentTable.tsx:82 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:299 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:425 +#: src/tables/sales/SalesOrderShipmentTable.tsx:89 msgid "Cancel Shipment" msgstr "Cancel Shipment" -#: src/pages/sales/SalesOrderShipmentDetail.tsx:314 -#: src/tables/sales/SalesOrderShipmentTable.tsx:98 -#: src/tables/sales/SalesOrderShipmentTable.tsx:193 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:312 +#: src/tables/sales/SalesOrderShipmentTable.tsx:119 +#: src/tables/sales/SalesOrderShipmentTable.tsx:238 msgid "Complete Shipment" msgstr "Complete Shipment" -#: src/pages/sales/SalesOrderShipmentDetail.tsx:326 -#: src/pages/sales/SalesOrderShipmentDetail.tsx:328 -msgid "Check Shipment" -msgstr "Check Shipment" - -#: src/pages/sales/SalesOrderShipmentDetail.tsx:329 -msgid "Marking the shipment as checked indicates that you have verified that all items included in this shipment are correct" -msgstr "Marking the shipment as checked indicates that you have verified that all items included in this shipment are correct" - #: src/pages/sales/SalesOrderShipmentDetail.tsx:339 -msgid "Shipment marked as checked" -msgstr "Shipment marked as checked" - -#: src/pages/sales/SalesOrderShipmentDetail.tsx:346 -#: src/pages/sales/SalesOrderShipmentDetail.tsx:348 -msgid "Uncheck Shipment" -msgstr "Uncheck Shipment" - -#: src/pages/sales/SalesOrderShipmentDetail.tsx:349 -msgid "Marking the shipment as unchecked indicates that the shipment requires further verification" -msgstr "Marking the shipment as unchecked indicates that the shipment requires further verification" - -#: src/pages/sales/SalesOrderShipmentDetail.tsx:359 -msgid "Shipment marked as unchecked" -msgstr "Shipment marked as unchecked" - -#: src/pages/sales/SalesOrderShipmentDetail.tsx:371 #: src/tables/part/PartPurchaseOrdersTable.tsx:122 msgid "Pending" msgstr "Pending" -#: src/pages/sales/SalesOrderShipmentDetail.tsx:377 -#: src/tables/sales/SalesOrderShipmentTable.tsx:147 -#: src/tables/sales/SalesOrderShipmentTable.tsx:254 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:345 +#: src/tables/sales/SalesOrderShipmentTable.tsx:168 +#: src/tables/sales/SalesOrderShipmentTable.tsx:299 msgid "Checked" msgstr "Checked" -#: src/pages/sales/SalesOrderShipmentDetail.tsx:383 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:351 msgid "Not Checked" msgstr "Not Checked" -#: src/pages/sales/SalesOrderShipmentDetail.tsx:389 -#: src/tables/sales/SalesOrderShipmentTable.tsx:154 -#: src/tables/sales/SalesOrderShipmentTable.tsx:259 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:357 +#: src/tables/sales/SalesOrderShipmentTable.tsx:175 +#: src/tables/sales/SalesOrderShipmentTable.tsx:304 msgid "Shipped" msgstr "Shipped" -#: src/pages/sales/SalesOrderShipmentDetail.tsx:395 -#: src/tables/sales/SalesOrderShipmentTable.tsx:161 -#: src/tables/sales/SalesOrderShipmentTable.tsx:264 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:363 +#: src/tables/sales/SalesOrderShipmentTable.tsx:182 +#: src/tables/sales/SalesOrderShipmentTable.tsx:309 #: src/tables/settings/EmailTable.tsx:31 msgid "Delivered" msgstr "Delivered" -#: src/pages/sales/SalesOrderShipmentDetail.tsx:410 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:378 msgid "Send Shipment" msgstr "Send Shipment" -#: src/pages/sales/SalesOrderShipmentDetail.tsx:433 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:401 msgid "Shipment Actions" msgstr "Shipment Actions" -#: src/pages/sales/SalesOrderShipmentDetail.tsx:442 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:410 msgid "Check" msgstr "Check" -#: src/pages/sales/SalesOrderShipmentDetail.tsx:443 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:411 msgid "Mark shipment as checked" msgstr "Mark shipment as checked" -#: src/pages/sales/SalesOrderShipmentDetail.tsx:449 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:417 msgid "Uncheck" msgstr "Uncheck" -#: src/pages/sales/SalesOrderShipmentDetail.tsx:450 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:418 msgid "Mark shipment as unchecked" msgstr "Mark shipment as unchecked" @@ -8770,13 +8842,6 @@ msgstr "Error loading icon package from server" msgid "Part is not active" msgstr "Part is not active" -#: src/tables/ColumnRenderers.tsx:73 -#: src/tables/bom/BomTable.tsx:657 -#: src/tables/part/PartParameterTable.tsx:227 -#: src/tables/part/PartTestTemplateTable.tsx:258 -msgid "Part is Locked" -msgstr "Part is Locked" - #: src/tables/ColumnRenderers.tsx:78 msgid "You are subscribed to notifications for this part" msgstr "You are subscribed to notifications for this part" @@ -9214,13 +9279,13 @@ msgstr "Virtual part" #~ msgstr "Show asssmbled items" #: src/tables/bom/BomTable.tsx:315 -#: src/tables/build/BuildLineTable.tsx:276 +#: src/tables/build/BuildLineTable.tsx:277 #: src/tables/part/PartTable.tsx:145 msgid "External stock" msgstr "External stock" #: src/tables/bom/BomTable.tsx:323 -#: src/tables/build/BuildLineTable.tsx:239 +#: src/tables/build/BuildLineTable.tsx:240 msgid "Includes substitute stock" msgstr "Includes substitute stock" @@ -9229,7 +9294,7 @@ msgstr "Includes substitute stock" #~ msgstr "Edit Bom Item" #: src/tables/bom/BomTable.tsx:332 -#: src/tables/build/BuildLineTable.tsx:249 +#: src/tables/build/BuildLineTable.tsx:250 #: src/tables/sales/SalesOrderLineItemTable.tsx:166 msgid "Includes variant stock" msgstr "Includes variant stock" @@ -9267,8 +9332,8 @@ msgid "Stock Information" msgstr "Stock Information" #: src/tables/bom/BomTable.tsx:399 -#: src/tables/build/BuildLineTable.tsx:496 -#: src/tables/build/BuildLineTable.tsx:537 +#: src/tables/build/BuildLineTable.tsx:497 +#: src/tables/build/BuildLineTable.tsx:538 msgid "Consumable item" msgstr "Consumable item" @@ -9277,7 +9342,7 @@ msgid "No available stock" msgstr "No available stock" #: src/tables/bom/BomTable.tsx:420 -#: src/tables/build/BuildLineTable.tsx:213 +#: src/tables/build/BuildLineTable.tsx:214 msgid "Show testable items" msgstr "Show testable items" @@ -9286,7 +9351,7 @@ msgid "Show trackable items" msgstr "Show trackable items" #: src/tables/bom/BomTable.tsx:430 -#: src/tables/build/BuildLineTable.tsx:208 +#: src/tables/build/BuildLineTable.tsx:209 msgid "Show assembled items" msgstr "Show assembled items" @@ -9330,7 +9395,7 @@ msgstr "Show items which allow variant substitution" #: src/tables/bom/BomTable.tsx:464 #: src/tables/bom/UsedInTable.tsx:85 -#: src/tables/build/BuildLineTable.tsx:202 +#: src/tables/build/BuildLineTable.tsx:203 msgid "Optional" msgstr "Optional" @@ -9340,7 +9405,7 @@ msgid "Show optional items" msgstr "Show optional items" #: src/tables/bom/BomTable.tsx:469 -#: src/tables/build/BuildLineTable.tsx:197 +#: src/tables/build/BuildLineTable.tsx:198 msgid "Consumable" msgstr "Consumable" @@ -9415,6 +9480,7 @@ msgid "Add a single BOM item" msgstr "Add a single BOM item" #: src/tables/bom/BomTable.tsx:637 +#: src/tables/general/ParameterTable.tsx:206 #: src/tables/part/PartTable.tsx:546 msgid "Import from File" msgstr "Import from File" @@ -9428,8 +9494,8 @@ msgid "Bill of materials cannot be edited, as the part is locked" msgstr "Bill of materials cannot be edited, as the part is locked" #: src/tables/bom/UsedInTable.tsx:34 -#: src/tables/build/BuildLineTable.tsx:207 -#: src/tables/part/ParametricPartTable.tsx:364 +#: src/tables/build/BuildLineTable.tsx:208 +#: src/tables/part/ParametricPartTable.tsx:29 #: src/tables/part/PartBuildAllocationsTable.tsx:60 #: src/tables/part/PartTable.tsx:209 #: src/tables/stock/StockItemTable.tsx:333 @@ -9450,11 +9516,11 @@ msgstr "Trackable" msgid "Show trackable assemblies" msgstr "Show trackable assemblies" -#: src/tables/build/BuildAllocatedStockTable.tsx:67 +#: src/tables/build/BuildAllocatedStockTable.tsx:64 msgid "Allocated to Output" msgstr "Allocated to Output" -#: src/tables/build/BuildAllocatedStockTable.tsx:68 +#: src/tables/build/BuildAllocatedStockTable.tsx:65 msgid "Show items allocated to a build output" msgstr "Show items allocated to a build output" @@ -9467,50 +9533,68 @@ msgstr "Show items allocated to a build output" #~ msgid "Include orders for part variants" #~ msgstr "Include orders for part variants" -#: src/tables/build/BuildAllocatedStockTable.tsx:97 +#: src/tables/build/BuildAllocatedStockTable.tsx:94 #: src/tables/part/PartBuildAllocationsTable.tsx:84 #: src/tables/part/PartPurchaseOrdersTable.tsx:132 #: src/tables/part/PartSalesAllocationsTable.tsx:69 #: src/tables/sales/SalesOrderAllocationTable.tsx:122 -#: src/tables/sales/SalesOrderShipmentTable.tsx:130 +#: src/tables/sales/SalesOrderShipmentTable.tsx:151 msgid "Order Status" msgstr "Order Status" +#: src/tables/build/BuildAllocatedStockTable.tsx:164 +#: src/tables/build/BuildLineTable.tsx:651 +msgid "Edit Stock Allocation" +msgstr "Edit Stock Allocation" + #: src/tables/build/BuildAllocatedStockTable.tsx:164 #~ msgid "Edit Build Item" #~ msgstr "Edit Build Item" -#: src/tables/build/BuildAllocatedStockTable.tsx:167 -#: src/tables/build/BuildLineTable.tsx:650 -msgid "Edit Stock Allocation" -msgstr "Edit Stock Allocation" - #: src/tables/build/BuildAllocatedStockTable.tsx:174 #~ msgid "Delete Build Item" #~ msgstr "Delete Build Item" +#: src/tables/build/BuildAllocatedStockTable.tsx:177 +#: src/tables/build/BuildLineTable.tsx:664 +#: src/tables/sales/SalesOrderAllocationTable.tsx:218 +msgid "Remove Allocated Stock" +msgstr "Remove Allocated Stock" + #: src/tables/build/BuildAllocatedStockTable.tsx:180 #: src/tables/build/BuildLineTable.tsx:663 -msgid "Delete Stock Allocation" -msgstr "Delete Stock Allocation" +#~ msgid "Delete Stock Allocation" +#~ msgstr "Delete Stock Allocation" -#: src/tables/build/BuildAllocatedStockTable.tsx:239 +#: src/tables/build/BuildAllocatedStockTable.tsx:182 +#: src/tables/build/BuildLineTable.tsx:669 +#: src/tables/sales/SalesOrderAllocationTable.tsx:221 +msgid "Are you sure you want to remove this allocated stock from the order?" +msgstr "Are you sure you want to remove this allocated stock from the order?" + +#: src/tables/build/BuildAllocatedStockTable.tsx:242 msgid "Consume" msgstr "Consume" +#: src/tables/build/BuildAllocatedStockTable.tsx:259 +#: src/tables/build/BuildLineTable.tsx:112 +#: src/tables/sales/SalesOrderAllocationTable.tsx:248 +msgid "Remove allocated stock" +msgstr "Remove allocated stock" + #: src/tables/build/BuildLineTable.tsx:59 #~ msgid "Show lines with available stock" #~ msgstr "Show lines with available stock" -#: src/tables/build/BuildLineTable.tsx:120 +#: src/tables/build/BuildLineTable.tsx:121 msgid "View Stock Item" msgstr "View Stock Item" -#: src/tables/build/BuildLineTable.tsx:183 +#: src/tables/build/BuildLineTable.tsx:184 msgid "Show fully allocated lines" msgstr "Show fully allocated lines" -#: src/tables/build/BuildLineTable.tsx:188 +#: src/tables/build/BuildLineTable.tsx:189 msgid "Show fully consumed lines" msgstr "Show fully consumed lines" @@ -9518,124 +9602,124 @@ msgstr "Show fully consumed lines" #~ msgid "Show allocated lines" #~ msgstr "Show allocated lines" -#: src/tables/build/BuildLineTable.tsx:193 +#: src/tables/build/BuildLineTable.tsx:194 msgid "Show items with sufficient available stock" msgstr "Show items with sufficient available stock" -#: src/tables/build/BuildLineTable.tsx:198 +#: src/tables/build/BuildLineTable.tsx:199 msgid "Show consumable lines" msgstr "Show consumable lines" -#: src/tables/build/BuildLineTable.tsx:203 +#: src/tables/build/BuildLineTable.tsx:204 msgid "Show optional lines" msgstr "Show optional lines" -#: src/tables/build/BuildLineTable.tsx:212 +#: src/tables/build/BuildLineTable.tsx:213 #: src/tables/part/PartTable.tsx:233 msgid "Testable" msgstr "Testable" -#: src/tables/build/BuildLineTable.tsx:217 +#: src/tables/build/BuildLineTable.tsx:218 #: src/tables/stock/StockItemTable.tsx:388 msgid "Tracked" msgstr "Tracked" -#: src/tables/build/BuildLineTable.tsx:218 +#: src/tables/build/BuildLineTable.tsx:219 msgid "Show tracked lines" msgstr "Show tracked lines" -#: src/tables/build/BuildLineTable.tsx:223 +#: src/tables/build/BuildLineTable.tsx:224 msgid "Show items with stock on order" msgstr "Show items with stock on order" -#: src/tables/build/BuildLineTable.tsx:258 +#: src/tables/build/BuildLineTable.tsx:259 #: src/tables/sales/SalesOrderLineItemTable.tsx:172 msgid "In production" msgstr "In production" -#: src/tables/build/BuildLineTable.tsx:286 +#: src/tables/build/BuildLineTable.tsx:287 msgid "Insufficient stock" msgstr "Insufficient stock" -#: src/tables/build/BuildLineTable.tsx:302 +#: src/tables/build/BuildLineTable.tsx:303 #: src/tables/sales/SalesOrderLineItemTable.tsx:160 #: src/tables/stock/StockItemTable.tsx:191 msgid "No stock available" msgstr "No stock available" -#: src/tables/build/BuildLineTable.tsx:375 +#: src/tables/build/BuildLineTable.tsx:376 msgid "Gets Inherited" msgstr "Gets Inherited" -#: src/tables/build/BuildLineTable.tsx:388 +#: src/tables/build/BuildLineTable.tsx:389 msgid "Unit Quantity" msgstr "Unit Quantity" -#: src/tables/build/BuildLineTable.tsx:415 +#: src/tables/build/BuildLineTable.tsx:416 msgid "Setup Quantity" msgstr "Setup Quantity" -#: src/tables/build/BuildLineTable.tsx:424 +#: src/tables/build/BuildLineTable.tsx:425 msgid "Attrition" msgstr "Attrition" -#: src/tables/build/BuildLineTable.tsx:432 +#: src/tables/build/BuildLineTable.tsx:433 msgid "Rounding Multiple" msgstr "Rounding Multiple" -#: src/tables/build/BuildLineTable.tsx:441 +#: src/tables/build/BuildLineTable.tsx:442 msgid "BOM Information" msgstr "BOM Information" -#: src/tables/build/BuildLineTable.tsx:515 +#: src/tables/build/BuildLineTable.tsx:516 #: src/tables/part/PartBuildAllocationsTable.tsx:102 msgid "Fully allocated" msgstr "Fully allocated" -#: src/tables/build/BuildLineTable.tsx:563 +#: src/tables/build/BuildLineTable.tsx:564 #: src/tables/sales/SalesOrderLineItemTable.tsx:311 msgid "Create Build Order" msgstr "Create Build Order" -#: src/tables/build/BuildLineTable.tsx:592 +#: src/tables/build/BuildLineTable.tsx:593 msgid "Auto allocation in progress" msgstr "Auto allocation in progress" -#: src/tables/build/BuildLineTable.tsx:595 -#: src/tables/build/BuildLineTable.tsx:802 +#: src/tables/build/BuildLineTable.tsx:596 +#: src/tables/build/BuildLineTable.tsx:809 msgid "Auto Allocate Stock" msgstr "Auto Allocate Stock" -#: src/tables/build/BuildLineTable.tsx:596 +#: src/tables/build/BuildLineTable.tsx:597 msgid "Automatically allocate stock to this build according to the selected options" msgstr "Automatically allocate stock to this build according to the selected options" -#: src/tables/build/BuildLineTable.tsx:616 -#: src/tables/build/BuildLineTable.tsx:630 -#: src/tables/build/BuildLineTable.tsx:751 -#: src/tables/build/BuildLineTable.tsx:852 +#: src/tables/build/BuildLineTable.tsx:617 +#: src/tables/build/BuildLineTable.tsx:631 +#: src/tables/build/BuildLineTable.tsx:758 +#: src/tables/build/BuildLineTable.tsx:859 #: src/tables/build/BuildOutputTable.tsx:355 #: src/tables/build/BuildOutputTable.tsx:360 msgid "Deallocate Stock" msgstr "Deallocate Stock" -#: src/tables/build/BuildLineTable.tsx:632 +#: src/tables/build/BuildLineTable.tsx:633 msgid "Deallocate all untracked stock for this build order" msgstr "Deallocate all untracked stock for this build order" -#: src/tables/build/BuildLineTable.tsx:634 +#: src/tables/build/BuildLineTable.tsx:635 msgid "Deallocate stock from the selected line item" msgstr "Deallocate stock from the selected line item" -#: src/tables/build/BuildLineTable.tsx:638 +#: src/tables/build/BuildLineTable.tsx:639 msgid "Stock has been deallocated" msgstr "Stock has been deallocated" -#: src/tables/build/BuildLineTable.tsx:771 +#: src/tables/build/BuildLineTable.tsx:778 msgid "Build Stock" msgstr "Build Stock" -#: src/tables/build/BuildLineTable.tsx:784 +#: src/tables/build/BuildLineTable.tsx:791 #: src/tables/sales/SalesOrderLineItemTable.tsx:487 msgid "View Part" msgstr "View Part" @@ -9734,7 +9818,7 @@ msgid "Serialize Build Output" msgstr "Serialize Build Output" #: src/tables/build/BuildOutputTable.tsx:405 -#: src/tables/part/PartTestResultTable.tsx:310 +#: src/tables/part/PartTestResultTable.tsx:318 #: src/tables/stock/StockItemTable.tsx:328 msgid "Filter by stock status" msgstr "Filter by stock status" @@ -9959,8 +10043,8 @@ msgid "View Item" msgstr "View Item" #: src/tables/general/ExtraLineItemTable.tsx:95 -#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:299 -#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:403 +#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:300 +#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:405 #: src/tables/sales/ReturnOrderLineItemTable.tsx:83 #: src/tables/sales/ReturnOrderLineItemTable.tsx:187 #: src/tables/sales/SalesOrderLineItemTable.tsx:252 @@ -9969,14 +10053,14 @@ msgid "Add Line Item" msgstr "Add Line Item" #: src/tables/general/ExtraLineItemTable.tsx:108 -#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:320 +#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:322 #: src/tables/sales/ReturnOrderLineItemTable.tsx:96 #: src/tables/sales/SalesOrderLineItemTable.tsx:271 msgid "Edit Line Item" msgstr "Edit Line Item" #: src/tables/general/ExtraLineItemTable.tsx:117 -#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:329 +#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:331 #: src/tables/sales/ReturnOrderLineItemTable.tsx:105 #: src/tables/sales/SalesOrderLineItemTable.tsx:280 msgid "Delete Line Item" @@ -9986,6 +10070,137 @@ msgstr "Delete Line Item" msgid "Add Extra Line Item" msgstr "Add Extra Line Item" +#: src/tables/general/ParameterTable.tsx:88 +msgid "Internal Units" +msgstr "Internal Units" + +#: src/tables/general/ParameterTable.tsx:108 +#: src/tables/general/ParameterTable.tsx:123 +msgid "Updated By" +msgstr "Updated By" + +#: src/tables/general/ParameterTable.tsx:118 +msgid "Show parameters for enabled templates" +msgstr "Show parameters for enabled templates" + +#: src/tables/general/ParameterTable.tsx:124 +msgid "Filter by user who last updated the parameter" +msgstr "Filter by user who last updated the parameter" + +#: src/tables/general/ParameterTable.tsx:154 +msgid "Import Parameters" +msgstr "Import Parameters" + +#: src/tables/general/ParameterTable.tsx:164 +#: src/tables/general/ParametricDataTable.tsx:261 +#: src/tables/general/ParametricDataTable.tsx:392 +msgid "Add Parameter" +msgstr "Add Parameter" + +#: src/tables/general/ParameterTable.tsx:175 +#: src/tables/general/ParameterTable.tsx:222 +#: src/tables/general/ParametricDataTable.tsx:285 +msgid "Edit Parameter" +msgstr "Edit Parameter" + +#: src/tables/general/ParameterTable.tsx:183 +#: src/tables/general/ParameterTable.tsx:230 +msgid "Delete Parameter" +msgstr "Delete Parameter" + +#: src/tables/general/ParameterTable.tsx:191 +msgid "Add Parameters" +msgstr "Add Parameters" + +#: src/tables/general/ParameterTable.tsx:197 +msgid "Create Parameter" +msgstr "Create Parameter" + +#: src/tables/general/ParameterTable.tsx:199 +msgid "Create a new parameter" +msgstr "Create a new parameter" + +#: src/tables/general/ParameterTable.tsx:208 +msgid "Import parameters from a file" +msgstr "Import parameters from a file" + +#: src/tables/general/ParameterTemplateTable.tsx:48 +#: src/tables/general/ParameterTemplateTable.tsx:197 +msgid "Add Parameter Template" +msgstr "Add Parameter Template" + +#: src/tables/general/ParameterTemplateTable.tsx:64 +msgid "Duplicate Parameter Template" +msgstr "Duplicate Parameter Template" + +#: src/tables/general/ParameterTemplateTable.tsx:78 +msgid "Delete Parameter Template" +msgstr "Delete Parameter Template" + +#: src/tables/general/ParameterTemplateTable.tsx:85 +msgid "Edit Parameter Template" +msgstr "Edit Parameter Template" + +#: src/tables/general/ParameterTemplateTable.tsx:138 +msgid "Checkbox" +msgstr "Checkbox" + +#: src/tables/general/ParameterTemplateTable.tsx:139 +msgid "Show checkbox templates" +msgstr "Show checkbox templates" + +#: src/tables/general/ParameterTemplateTable.tsx:143 +msgid "Has choices" +msgstr "Has choices" + +#: src/tables/general/ParameterTemplateTable.tsx:144 +msgid "Show templates with choices" +msgstr "Show templates with choices" + +#: src/tables/general/ParameterTemplateTable.tsx:148 +#: src/tables/part/PartTable.tsx:245 +msgid "Has Units" +msgstr "Has Units" + +#: src/tables/general/ParameterTemplateTable.tsx:149 +msgid "Show templates with units" +msgstr "Show templates with units" + +#: src/tables/general/ParameterTemplateTable.tsx:154 +msgid "Show enabled templates" +msgstr "Show enabled templates" + +#: src/tables/general/ParameterTemplateTable.tsx:158 +#: src/tables/settings/ImportSessionTable.tsx:111 +#: src/tables/settings/TemplateTable.tsx:368 +msgid "Model Type" +msgstr "Model Type" + +#: src/tables/general/ParameterTemplateTable.tsx:159 +msgid "Filter by model type" +msgstr "Filter by model type" + +#: src/tables/general/ParametricDataTable.tsx:79 +msgid "Click to edit" +msgstr "Click to edit" + +#: src/tables/general/ParametricDataTableFilters.tsx:36 +msgid "True" +msgstr "True" + +#: src/tables/general/ParametricDataTableFilters.tsx:37 +msgid "False" +msgstr "False" + +#: src/tables/general/ParametricDataTableFilters.tsx:47 +#: src/tables/general/ParametricDataTableFilters.tsx:80 +msgid "Select a choice" +msgstr "Select a choice" + +#: src/tables/general/ParametricDataTableFilters.tsx:100 +msgid "Enter a value" +msgstr "Enter a value" + #: src/tables/machine/MachineListTable.tsx:133 msgid "Machine restarted" msgstr "Machine restarted" @@ -10066,7 +10281,7 @@ msgid "Initialized" msgstr "Initialized" #: src/tables/machine/MachineListTable.tsx:410 -#: src/tables/machine/MachineTypeTable.tsx:307 +#: src/tables/machine/MachineTypeTable.tsx:305 msgid "No errors reported" msgstr "No errors reported" @@ -10127,15 +10342,15 @@ msgstr "Builtin driver" #~ msgid "Machine type information" #~ msgstr "Machine type information" -#: src/tables/machine/MachineTypeTable.tsx:128 +#: src/tables/machine/MachineTypeTable.tsx:126 msgid "Not Found" msgstr "Not Found" -#: src/tables/machine/MachineTypeTable.tsx:131 +#: src/tables/machine/MachineTypeTable.tsx:129 msgid "Machine type not found." msgstr "Machine type not found." -#: src/tables/machine/MachineTypeTable.tsx:141 +#: src/tables/machine/MachineTypeTable.tsx:139 msgid "Machine Type Information" msgstr "Machine Type Information" @@ -10143,34 +10358,34 @@ msgstr "Machine Type Information" #~ msgid "Available drivers" #~ msgstr "Available drivers" -#: src/tables/machine/MachineTypeTable.tsx:156 -#: src/tables/machine/MachineTypeTable.tsx:255 +#: src/tables/machine/MachineTypeTable.tsx:154 +#: src/tables/machine/MachineTypeTable.tsx:253 msgid "Slug" msgstr "Slug" -#: src/tables/machine/MachineTypeTable.tsx:167 -#: src/tables/machine/MachineTypeTable.tsx:276 +#: src/tables/machine/MachineTypeTable.tsx:165 +#: src/tables/machine/MachineTypeTable.tsx:274 msgid "Provider plugin" msgstr "Provider plugin" -#: src/tables/machine/MachineTypeTable.tsx:179 -#: src/tables/machine/MachineTypeTable.tsx:288 +#: src/tables/machine/MachineTypeTable.tsx:177 +#: src/tables/machine/MachineTypeTable.tsx:286 msgid "Provider file" msgstr "Provider file" -#: src/tables/machine/MachineTypeTable.tsx:194 +#: src/tables/machine/MachineTypeTable.tsx:192 msgid "Available Drivers" msgstr "Available Drivers" -#: src/tables/machine/MachineTypeTable.tsx:234 +#: src/tables/machine/MachineTypeTable.tsx:232 msgid "Machine driver not found." msgstr "Machine driver not found." -#: src/tables/machine/MachineTypeTable.tsx:242 +#: src/tables/machine/MachineTypeTable.tsx:240 msgid "Machine driver information" msgstr "Machine driver information" -#: src/tables/machine/MachineTypeTable.tsx:262 +#: src/tables/machine/MachineTypeTable.tsx:260 msgid "Machine type" msgstr "Machine type" @@ -10182,15 +10397,15 @@ msgstr "Machine type" #~ msgid "Machine driver detail" #~ msgstr "Machine driver detail" -#: src/tables/machine/MachineTypeTable.tsx:362 +#: src/tables/machine/MachineTypeTable.tsx:360 msgid "Builtin type" msgstr "Builtin type" -#: src/tables/machine/MachineTypeTable.tsx:371 +#: src/tables/machine/MachineTypeTable.tsx:369 msgid "Machine Type Detail" msgstr "Machine Type Detail" -#: src/tables/machine/MachineTypeTable.tsx:381 +#: src/tables/machine/MachineTypeTable.tsx:379 msgid "Machine Driver Detail" msgstr "Machine Driver Detail" @@ -10208,52 +10423,31 @@ msgstr "Notification" msgid "Message" msgstr "Message" -#: src/tables/part/ParametricPartTable.tsx:78 -msgid "Click to edit" -msgstr "Click to edit" +#: src/tables/part/ParametricPartTable.tsx:20 +msgid "Show active parts" +msgstr "Show active parts" + +#: src/tables/part/ParametricPartTable.tsx:25 +msgid "Show locked parts" +msgstr "Show locked parts" + +#: src/tables/part/ParametricPartTable.tsx:30 +msgid "Show assembly parts" +msgstr "Show assembly parts" #: src/tables/part/ParametricPartTable.tsx:82 #~ msgid "Edit parameter" #~ msgstr "Edit parameter" #: src/tables/part/ParametricPartTable.tsx:244 -msgid "Add Part Parameter" -msgstr "Add Part Parameter" +#~ msgid "Add Part Parameter" +#~ msgstr "Add Part Parameter" #: src/tables/part/ParametricPartTable.tsx:258 #: src/tables/part/PartParameterTable.tsx:164 #: src/tables/part/PartParameterTable.tsx:187 -msgid "Edit Part Parameter" -msgstr "Edit Part Parameter" - -#: src/tables/part/ParametricPartTable.tsx:355 -msgid "Show active parts" -msgstr "Show active parts" - -#: src/tables/part/ParametricPartTable.tsx:360 -msgid "Show locked parts" -msgstr "Show locked parts" - -#: src/tables/part/ParametricPartTable.tsx:365 -msgid "Show assembly parts" -msgstr "Show assembly parts" - -#: src/tables/part/ParametricPartTableFilters.tsx:36 -msgid "True" -msgstr "True" - -#: src/tables/part/ParametricPartTableFilters.tsx:37 -msgid "False" -msgstr "False" - -#: src/tables/part/ParametricPartTableFilters.tsx:47 -#: src/tables/part/ParametricPartTableFilters.tsx:80 -msgid "Select a choice" -msgstr "Select a choice" - -#: src/tables/part/ParametricPartTableFilters.tsx:100 -msgid "Enter a value" -msgstr "Enter a value" +#~ msgid "Edit Part Parameter" +#~ msgstr "Edit Part Parameter" #: src/tables/part/PartBuildAllocationsTable.tsx:64 msgid "Assembly IPN" @@ -10268,7 +10462,7 @@ msgid "Required Stock" msgstr "Required Stock" #: src/tables/part/PartBuildAllocationsTable.tsx:124 -#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:381 +#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:383 msgid "View Build Order" msgstr "View Build Order" @@ -10327,85 +10521,22 @@ msgstr "Edit Category Parameter" msgid "Delete Category Parameter" msgstr "Delete Category Parameter" -#: src/tables/part/PartCategoryTemplateTable.tsx:87 -msgid "Parameter Template" -msgstr "Parameter Template" - #: src/tables/part/PartCategoryTemplateTable.tsx:93 #~ msgid "[{0}]" #~ msgstr "[{0}]" -#: src/tables/part/PartParameterTable.tsx:108 -msgid "Internal Units" -msgstr "Internal Units" - -#: src/tables/part/PartParameterTable.tsx:128 -#: src/tables/part/PartParameterTable.tsx:138 -msgid "Updated By" -msgstr "Updated By" - -#: src/tables/part/PartParameterTable.tsx:139 -msgid "Filter by user who last updated the parameter" -msgstr "Filter by user who last updated the parameter" - #: src/tables/part/PartParameterTable.tsx:148 -msgid "New Part Parameter" -msgstr "New Part Parameter" +#~ msgid "New Part Parameter" +#~ msgstr "New Part Parameter" #: src/tables/part/PartParameterTable.tsx:173 #: src/tables/part/PartParameterTable.tsx:195 -msgid "Delete Part Parameter" -msgstr "Delete Part Parameter" +#~ msgid "Delete Part Parameter" +#~ msgstr "Delete Part Parameter" #: src/tables/part/PartParameterTable.tsx:213 -msgid "Add parameter" -msgstr "Add parameter" - -#: src/tables/part/PartParameterTable.tsx:232 -msgid "Part parameters cannot be edited, as the part is locked" -msgstr "Part parameters cannot be edited, as the part is locked" - -#: src/tables/part/PartParameterTemplateTable.tsx:36 -msgid "Checkbox" -msgstr "Checkbox" - -#: src/tables/part/PartParameterTemplateTable.tsx:37 -msgid "Show checkbox templates" -msgstr "Show checkbox templates" - -#: src/tables/part/PartParameterTemplateTable.tsx:41 -msgid "Has choices" -msgstr "Has choices" - -#: src/tables/part/PartParameterTemplateTable.tsx:42 -msgid "Show templates with choices" -msgstr "Show templates with choices" - -#: src/tables/part/PartParameterTemplateTable.tsx:46 -#: src/tables/part/PartTable.tsx:245 -msgid "Has Units" -msgstr "Has Units" - -#: src/tables/part/PartParameterTemplateTable.tsx:47 -msgid "Show templates with units" -msgstr "Show templates with units" - -#: src/tables/part/PartParameterTemplateTable.tsx:91 -#: src/tables/part/PartParameterTemplateTable.tsx:166 -msgid "Add Parameter Template" -msgstr "Add Parameter Template" - -#: src/tables/part/PartParameterTemplateTable.tsx:105 -msgid "Duplicate Parameter Template" -msgstr "Duplicate Parameter Template" - -#: src/tables/part/PartParameterTemplateTable.tsx:117 -msgid "Edit Parameter Template" -msgstr "Edit Parameter Template" - -#: src/tables/part/PartParameterTemplateTable.tsx:128 -msgid "Delete Parameter Template" -msgstr "Delete Parameter Template" +#~ msgid "Add parameter" +#~ msgstr "Add parameter" #: src/tables/part/PartParameterTemplateTable.tsx:141 #~ msgid "Add parameter template" @@ -10425,7 +10556,7 @@ msgid "Show received items" msgstr "Show received items" #: src/tables/part/PartSalesAllocationsTable.tsx:90 -#: src/tables/sales/SalesOrderShipmentTable.tsx:218 +#: src/tables/sales/SalesOrderShipmentTable.tsx:263 msgid "View Sales Order" msgstr "View Sales Order" @@ -10612,8 +10743,8 @@ msgstr "Import parts from a supplier plugin" #: src/tables/part/PartTestResultTable.tsx:103 #: src/tables/part/PartTestResultTable.tsx:181 -#: src/tables/part/PartTestResultTable.tsx:320 -#: src/tables/part/PartTestResultTable.tsx:334 +#: src/tables/part/PartTestResultTable.tsx:328 +#: src/tables/part/PartTestResultTable.tsx:342 #: src/tables/stock/StockItemTestResultTable.tsx:296 #: src/tables/stock/StockItemTestResultTable.tsx:368 #: src/tables/stock/StockItemTestResultTable.tsx:429 @@ -10638,7 +10769,7 @@ msgstr "Test results added" msgid "No Result" msgstr "No Result" -#: src/tables/part/PartTestResultTable.tsx:298 +#: src/tables/part/PartTestResultTable.tsx:306 msgid "Show build outputs currently in production" msgstr "Show build outputs currently in production" @@ -11008,36 +11139,45 @@ msgstr "Installed" #~ msgid "Parameter updated" #~ msgstr "Parameter updated" -#: src/tables/purchasing/ManufacturerPartParameterTable.tsx:63 -#: src/tables/purchasing/ManufacturerPartParameterTable.tsx:112 -msgid "Add Parameter" -msgstr "Add Parameter" - #: src/tables/purchasing/ManufacturerPartParameterTable.tsx:73 #~ msgid "Parameter deleted" #~ msgstr "Parameter deleted" -#: src/tables/purchasing/ManufacturerPartParameterTable.tsx:74 -msgid "Edit Parameter" -msgstr "Edit Parameter" - #: src/tables/purchasing/ManufacturerPartParameterTable.tsx:74 #~ msgid "Are you sure you want to delete this parameter?" #~ msgstr "Are you sure you want to delete this parameter?" -#: src/tables/purchasing/ManufacturerPartParameterTable.tsx:82 -msgid "Delete Parameter" -msgstr "Delete Parameter" - -#: src/tables/purchasing/ManufacturerPartTable.tsx:63 -#~ msgid "Create Manufacturer Part" -#~ msgstr "Create Manufacturer Part" - +#: src/tables/purchasing/ManufacturerPartParametricTable.tsx:34 #: src/tables/purchasing/ManufacturerPartTable.tsx:82 #: src/tables/purchasing/SupplierPartTable.tsx:99 msgid "MPN" msgstr "MPN" +#: src/tables/purchasing/ManufacturerPartParametricTable.tsx:44 +#: src/tables/purchasing/ManufacturerPartTable.tsx:134 +#: src/tables/purchasing/SupplierPartTable.tsx:220 +msgid "Active Part" +msgstr "Active Part" + +#: src/tables/purchasing/ManufacturerPartParametricTable.tsx:45 +#: src/tables/purchasing/ManufacturerPartTable.tsx:135 +msgid "Show manufacturer parts for active internal parts." +msgstr "Show manufacturer parts for active internal parts." + +#: src/tables/purchasing/ManufacturerPartParametricTable.tsx:50 +#: src/tables/purchasing/ManufacturerPartTable.tsx:140 +msgid "Active Manufacturer" +msgstr "Active Manufacturer" + +#: src/tables/purchasing/ManufacturerPartParametricTable.tsx:51 +#: src/tables/purchasing/ManufacturerPartTable.tsx:142 +msgid "Show manufacturer parts for active manufacturers." +msgstr "Show manufacturer parts for active manufacturers." + +#: src/tables/purchasing/ManufacturerPartTable.tsx:63 +#~ msgid "Create Manufacturer Part" +#~ msgstr "Create Manufacturer Part" + #: src/tables/purchasing/ManufacturerPartTable.tsx:100 #~ msgid "Manufacturer part updated" #~ msgstr "Manufacturer part updated" @@ -11050,25 +11190,8 @@ msgstr "MPN" #~ msgid "Are you sure you want to remove this manufacturer part?" #~ msgstr "Are you sure you want to remove this manufacturer part?" -#: src/tables/purchasing/ManufacturerPartTable.tsx:134 -#: src/tables/purchasing/SupplierPartTable.tsx:220 -msgid "Active Part" -msgstr "Active Part" - -#: src/tables/purchasing/ManufacturerPartTable.tsx:135 -msgid "Show manufacturer parts for active internal parts." -msgstr "Show manufacturer parts for active internal parts." - -#: src/tables/purchasing/ManufacturerPartTable.tsx:140 -msgid "Active Manufacturer" -msgstr "Active Manufacturer" - -#: src/tables/purchasing/ManufacturerPartTable.tsx:142 -msgid "Show manufacturer parts for active manufacturers." -msgstr "Show manufacturer parts for active manufacturers." - #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:115 -#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:397 +#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:399 msgid "Import Line Items" msgstr "Import Line Items" @@ -11094,11 +11217,11 @@ msgstr "Show line items which have been received" #~ msgid "Add line item" #~ msgstr "Add line item" -#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:350 +#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:352 msgid "Receive line item" msgstr "Receive line item" -#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:414 +#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:416 msgid "Receive items" msgstr "Receive items" @@ -11196,25 +11319,25 @@ msgid "Not shipped" msgstr "Not shipped" #: src/tables/sales/SalesOrderAllocationTable.tsx:211 -#: src/tables/sales/SalesOrderAllocationTable.tsx:229 +#: src/tables/sales/SalesOrderAllocationTable.tsx:235 msgid "Edit Allocation" msgstr "Edit Allocation" #: src/tables/sales/SalesOrderAllocationTable.tsx:218 #: src/tables/sales/SalesOrderAllocationTable.tsx:241 -msgid "Delete Allocation" -msgstr "Delete Allocation" +#~ msgid "Delete Allocation" +#~ msgstr "Delete Allocation" -#: src/tables/sales/SalesOrderAllocationTable.tsx:252 -#: src/tables/sales/SalesOrderAllocationTable.tsx:253 +#: src/tables/sales/SalesOrderAllocationTable.tsx:261 +#: src/tables/sales/SalesOrderAllocationTable.tsx:262 msgid "View Shipment" msgstr "View Shipment" -#: src/tables/sales/SalesOrderAllocationTable.tsx:308 +#: src/tables/sales/SalesOrderAllocationTable.tsx:317 msgid "Assign to Shipment" msgstr "Assign to Shipment" -#: src/tables/sales/SalesOrderAllocationTable.tsx:324 +#: src/tables/sales/SalesOrderAllocationTable.tsx:333 msgid "Assign to shipment" msgstr "Assign to shipment" @@ -11254,35 +11377,35 @@ msgstr "Order stock" #~ msgid "Delete Shipment" #~ msgstr "Delete Shipment" -#: src/tables/sales/SalesOrderShipmentTable.tsx:72 +#: src/tables/sales/SalesOrderShipmentTable.tsx:79 msgid "Create Shipment" msgstr "Create Shipment" -#: src/tables/sales/SalesOrderShipmentTable.tsx:143 +#: src/tables/sales/SalesOrderShipmentTable.tsx:164 msgid "Items" msgstr "Items" -#: src/tables/sales/SalesOrderShipmentTable.tsx:203 +#: src/tables/sales/SalesOrderShipmentTable.tsx:248 msgid "Edit shipment" msgstr "Edit shipment" -#: src/tables/sales/SalesOrderShipmentTable.tsx:211 +#: src/tables/sales/SalesOrderShipmentTable.tsx:256 msgid "Cancel shipment" msgstr "Cancel shipment" -#: src/tables/sales/SalesOrderShipmentTable.tsx:241 +#: src/tables/sales/SalesOrderShipmentTable.tsx:286 msgid "Add shipment" msgstr "Add shipment" -#: src/tables/sales/SalesOrderShipmentTable.tsx:255 +#: src/tables/sales/SalesOrderShipmentTable.tsx:300 msgid "Show shipments which have been checked" msgstr "Show shipments which have been checked" -#: src/tables/sales/SalesOrderShipmentTable.tsx:260 +#: src/tables/sales/SalesOrderShipmentTable.tsx:305 msgid "Show shipments which have been shipped" msgstr "Show shipments which have been shipped" -#: src/tables/sales/SalesOrderShipmentTable.tsx:265 +#: src/tables/sales/SalesOrderShipmentTable.tsx:310 msgid "Show shipments which have been delivered" msgstr "Show shipments which have been delivered" @@ -11616,11 +11739,6 @@ msgstr "Uploaded" msgid "Imported Rows" msgstr "Imported Rows" -#: src/tables/settings/ImportSessionTable.tsx:111 -#: src/tables/settings/TemplateTable.tsx:368 -msgid "Model Type" -msgstr "Model Type" - #: src/tables/settings/ImportSessionTable.tsx:112 #: src/tables/settings/TemplateTable.tsx:369 msgid "Filter by target model type" diff --git a/src/frontend/src/locales/es/messages.po b/src/frontend/src/locales/es/messages.po index cca8ae62d7..02913f40d2 100644 --- a/src/frontend/src/locales/es/messages.po +++ b/src/frontend/src/locales/es/messages.po @@ -8,7 +8,7 @@ msgstr "" "Language: es\n" "Project-Id-Version: inventree\n" "Report-Msgid-Bugs-To: \n" -"PO-Revision-Date: 2025-11-19 19:39\n" +"PO-Revision-Date: 2025-12-07 07:36\n" "Last-Translator: \n" "Language-Team: Spanish\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" @@ -30,7 +30,7 @@ msgid "Edit" msgstr "Editar" #: lib/components/RowActions.tsx:56 -#: src/components/forms/ApiForm.tsx:735 +#: src/components/forms/ApiForm.tsx:754 #: src/components/items/ActionDropdown.tsx:257 #: src/components/items/RoleTable.tsx:155 #: src/hooks/UseForm.tsx:164 @@ -56,24 +56,24 @@ msgstr "Cancelar" #: lib/components/RowActions.tsx:136 #: src/components/nav/NavigationDrawer.tsx:190 -#: src/forms/PurchaseOrderForms.tsx:802 +#: src/forms/PurchaseOrderForms.tsx:854 #: src/forms/StockForms.tsx:796 #: src/forms/StockForms.tsx:843 -#: src/forms/StockForms.tsx:889 -#: src/forms/StockForms.tsx:928 -#: src/forms/StockForms.tsx:964 -#: src/forms/StockForms.tsx:1050 +#: src/forms/StockForms.tsx:896 +#: src/forms/StockForms.tsx:942 +#: src/forms/StockForms.tsx:980 +#: src/forms/StockForms.tsx:1066 #: src/pages/Index/Settings/AccountSettings/MFASettings.tsx:962 msgid "Actions" msgstr "Acciones" #: lib/components/SearchInput.tsx:34 -#: src/components/forms/fields/RelatedModelField.tsx:408 +#: src/components/forms/fields/RelatedModelField.tsx:479 #: src/components/nav/Header.tsx:169 #: src/components/wizards/ImportPartWizard.tsx:200 #: src/components/wizards/ImportPartWizard.tsx:233 -#: src/pages/Index/Settings/UserSettings.tsx:74 -#: src/pages/part/PartDetail.tsx:1155 +#: src/pages/Index/Settings/UserSettings.tsx:75 +#: src/pages/part/PartDetail.tsx:1176 msgid "Search" msgstr "Buscar" @@ -95,7 +95,7 @@ msgstr "Sí" msgid "No" msgstr "No" -#: lib/enums/ModelInformation.tsx:28 +#: lib/enums/ModelInformation.tsx:29 #: src/components/wizards/OrderPartsWizard.tsx:279 #: src/forms/BuildForms.tsx:332 #: src/forms/BuildForms.tsx:407 @@ -103,208 +103,234 @@ msgstr "No" #: src/forms/BuildForms.tsx:630 #: src/forms/BuildForms.tsx:793 #: src/forms/BuildForms.tsx:896 -#: src/forms/PurchaseOrderForms.tsx:798 +#: src/forms/PurchaseOrderForms.tsx:850 #: src/forms/ReturnOrderForms.tsx:242 -#: src/forms/SalesOrderForms.tsx:305 +#: src/forms/SalesOrderForms.tsx:384 #: src/forms/StockForms.tsx:360 #: src/forms/StockForms.tsx:791 #: src/forms/StockForms.tsx:838 -#: src/forms/StockForms.tsx:884 -#: src/forms/StockForms.tsx:923 -#: src/forms/StockForms.tsx:959 -#: src/forms/StockForms.tsx:1002 -#: src/forms/StockForms.tsx:1046 -#: src/forms/StockForms.tsx:1094 -#: src/forms/StockForms.tsx:1138 -#: src/pages/build/BuildDetail.tsx:200 -#: src/pages/part/PartDetail.tsx:1207 +#: src/forms/StockForms.tsx:891 +#: src/forms/StockForms.tsx:937 +#: src/forms/StockForms.tsx:975 +#: src/forms/StockForms.tsx:1018 +#: src/forms/StockForms.tsx:1062 +#: src/forms/StockForms.tsx:1110 +#: src/forms/StockForms.tsx:1154 +#: src/pages/build/BuildDetail.tsx:201 +#: src/pages/part/PartDetail.tsx:1228 #: src/tables/ColumnRenderers.tsx:91 +#: src/tables/part/PartTestResultTable.tsx:247 #: src/tables/part/RelatedPartTable.tsx:53 #: src/tables/stock/StockTrackingTable.tsx:87 msgid "Part" msgstr "Pieza" -#: lib/enums/ModelInformation.tsx:29 +#: lib/enums/ModelInformation.tsx:30 #: lib/enums/Roles.tsx:35 #: src/components/nav/NavigationDrawer.tsx:70 #: src/defaults/links.tsx:36 -#: src/pages/Index/Settings/SystemSettings.tsx:190 -#: src/pages/part/CategoryDetail.tsx:132 -#: src/pages/part/CategoryDetail.tsx:277 -#: src/pages/part/CategoryDetail.tsx:323 -#: src/pages/part/CategoryDetail.tsx:354 -#: src/pages/part/PartDetail.tsx:965 +#: src/pages/Index/Settings/SystemSettings.tsx:197 +#: src/pages/part/CategoryDetail.tsx:135 +#: src/pages/part/CategoryDetail.tsx:285 +#: src/pages/part/CategoryDetail.tsx:340 +#: src/pages/part/CategoryDetail.tsx:371 +#: src/pages/part/PartDetail.tsx:978 msgid "Parts" msgstr "Piezas" #: lib/enums/ModelInformation.tsx:37 #: src/pages/Index/Settings/AdminCenter/PartParameterPanel.tsx:13 -msgid "Part Parameter Template" -msgstr "Plantilla de parámetro de pieza" +#~ msgid "Part Parameter Template" +#~ msgstr "Part Parameter Template" #: lib/enums/ModelInformation.tsx:38 -msgid "Part Parameter Templates" -msgstr "Plantillas de Parámetros de piezas" +#~ msgid "Part Parameter Templates" +#~ msgstr "Part Parameter Templates" + +#: lib/enums/ModelInformation.tsx:39 +msgid "Parameter" +msgstr "" + +#: lib/enums/ModelInformation.tsx:40 +#: src/components/panels/ParametersPanel.tsx:19 +#: src/components/wizards/ImportPartWizard.tsx:807 +#: src/pages/Index/Settings/AdminCenter/Index.tsx:195 +#: src/pages/Index/Settings/SystemSettings.tsx:191 +#: src/pages/part/PartDetail.tsx:943 +msgid "Parameters" +msgstr "Parámetros" #: lib/enums/ModelInformation.tsx:45 +#: src/tables/part/PartCategoryTemplateTable.tsx:87 +msgid "Parameter Template" +msgstr "Plantilla de parámetro" + +#: lib/enums/ModelInformation.tsx:46 +#: src/pages/Index/Settings/AdminCenter/ParameterPanel.tsx:13 +msgid "Parameter Templates" +msgstr "" + +#: lib/enums/ModelInformation.tsx:52 msgid "Part Test Template" msgstr "Plantilla de prueba de pieza" -#: lib/enums/ModelInformation.tsx:46 +#: lib/enums/ModelInformation.tsx:53 msgid "Part Test Templates" msgstr "Plantillas de prueba de piezas" -#: lib/enums/ModelInformation.tsx:52 +#: lib/enums/ModelInformation.tsx:59 #: src/components/wizards/OrderPartsWizard.tsx:290 -#: src/pages/company/SupplierPartDetail.tsx:413 +#: src/pages/company/SupplierPartDetail.tsx:418 #: src/pages/stock/StockDetail.tsx:289 -#: src/tables/build/BuildAllocatedStockTable.tsx:155 +#: src/tables/build/BuildAllocatedStockTable.tsx:152 #: src/tables/part/PartPurchaseOrdersTable.tsx:50 +#: src/tables/purchasing/SupplierPartParametricTable.tsx:29 #: src/tables/purchasing/SupplierPartTable.tsx:83 #: src/tables/stock/StockItemTable.tsx:247 msgid "Supplier Part" msgstr "Pieza de proveedor" -#: lib/enums/ModelInformation.tsx:53 -#: src/pages/purchasing/PurchasingIndex.tsx:92 +#: lib/enums/ModelInformation.tsx:60 +#: src/pages/purchasing/PurchasingIndex.tsx:128 msgid "Supplier Parts" msgstr "Piezas de proveedor" -#: lib/enums/ModelInformation.tsx:61 -#: src/pages/company/ManufacturerPartDetail.tsx:297 -#: src/pages/company/SupplierPartDetail.tsx:161 +#: lib/enums/ModelInformation.tsx:69 +#: src/pages/company/ManufacturerPartDetail.tsx:288 +#: src/pages/company/SupplierPartDetail.tsx:162 #: src/tables/part/PartPurchaseOrdersTable.tsx:56 #: src/tables/stock/StockItemTable.tsx:253 msgid "Manufacturer Part" msgstr "Pieza de fabricante" -#: lib/enums/ModelInformation.tsx:62 -#: src/pages/purchasing/PurchasingIndex.tsx:109 +#: lib/enums/ModelInformation.tsx:70 +#: src/pages/purchasing/PurchasingIndex.tsx:177 msgid "Manufacturer Parts" msgstr "Piezas del fabricante" -#: lib/enums/ModelInformation.tsx:70 -#: src/pages/part/CategoryDetail.tsx:354 +#: lib/enums/ModelInformation.tsx:79 +#: src/pages/part/CategoryDetail.tsx:371 #: src/tables/Filter.tsx:389 msgid "Part Category" msgstr "Categoría de Pieza" -#: lib/enums/ModelInformation.tsx:71 +#: lib/enums/ModelInformation.tsx:80 #: lib/enums/Roles.tsx:37 -#: src/pages/part/CategoryDetail.tsx:271 -#: src/pages/part/CategoryDetail.tsx:345 -#: src/pages/part/PartDetail.tsx:1196 +#: src/pages/part/CategoryDetail.tsx:279 +#: src/pages/part/CategoryDetail.tsx:362 +#: src/pages/part/PartDetail.tsx:1217 msgid "Part Categories" msgstr "Categorías de Pieza" -#: lib/enums/ModelInformation.tsx:79 +#: lib/enums/ModelInformation.tsx:88 #: src/forms/BuildForms.tsx:473 #: src/forms/BuildForms.tsx:633 #: src/forms/BuildForms.tsx:794 -#: src/forms/SalesOrderForms.tsx:307 +#: src/forms/SalesOrderForms.tsx:386 #: src/pages/stock/StockDetail.tsx:1005 -#: src/tables/part/PartTestResultTable.tsx:248 +#: src/tables/part/PartTestResultTable.tsx:256 #: src/tables/stock/StockTrackingTable.tsx:48 #: src/tables/stock/StockTrackingTable.tsx:55 msgid "Stock Item" msgstr "Artículo de stock" -#: lib/enums/ModelInformation.tsx:80 +#: lib/enums/ModelInformation.tsx:89 #: lib/enums/Roles.tsx:45 -#: src/pages/company/CompanyDetail.tsx:210 -#: src/pages/part/CategoryDetail.tsx:291 +#: src/pages/company/CompanyDetail.tsx:211 +#: src/pages/part/CategoryDetail.tsx:314 #: src/pages/part/PartStockHistoryDetail.tsx:101 #: src/pages/stock/LocationDetail.tsx:121 #: src/pages/stock/LocationDetail.tsx:180 msgid "Stock Items" msgstr "Artículos de Stock" -#: lib/enums/ModelInformation.tsx:88 +#: lib/enums/ModelInformation.tsx:98 #: lib/enums/Roles.tsx:47 #: src/pages/stock/LocationDetail.tsx:420 msgid "Stock Location" msgstr "Ubicación de existencias" -#: lib/enums/ModelInformation.tsx:89 +#: lib/enums/ModelInformation.tsx:99 #: src/pages/stock/LocationDetail.tsx:174 #: src/pages/stock/LocationDetail.tsx:412 #: src/pages/stock/StockDetail.tsx:996 msgid "Stock Locations" msgstr "Ubicaciones de existencias" -#: lib/enums/ModelInformation.tsx:97 +#: lib/enums/ModelInformation.tsx:108 msgid "Stock Location Type" msgstr "Tipos de ubicación de existencias" -#: lib/enums/ModelInformation.tsx:98 +#: lib/enums/ModelInformation.tsx:109 msgid "Stock Location Types" msgstr "Tipos de ubicaciones de existencias" -#: lib/enums/ModelInformation.tsx:103 -#: src/pages/Index/Settings/SystemSettings.tsx:248 -#: src/pages/part/PartDetail.tsx:911 +#: lib/enums/ModelInformation.tsx:114 +#: src/pages/Index/Settings/SystemSettings.tsx:254 +#: src/pages/part/PartDetail.tsx:900 msgid "Stock History" msgstr "Histórico de existencias" -#: lib/enums/ModelInformation.tsx:104 +#: lib/enums/ModelInformation.tsx:115 msgid "Stock Histories" msgstr "Históricos de existencias" -#: lib/enums/ModelInformation.tsx:109 +#: lib/enums/ModelInformation.tsx:120 msgid "Build" msgstr "Construcción" -#: lib/enums/ModelInformation.tsx:110 +#: lib/enums/ModelInformation.tsx:121 msgid "Builds" msgstr "Construcciones" -#: lib/enums/ModelInformation.tsx:118 +#: lib/enums/ModelInformation.tsx:130 msgid "Build Line" msgstr "Línea de construcción" -#: lib/enums/ModelInformation.tsx:119 +#: lib/enums/ModelInformation.tsx:131 msgid "Build Lines" msgstr "Línea de construcción" -#: lib/enums/ModelInformation.tsx:126 +#: lib/enums/ModelInformation.tsx:138 msgid "Build Item" msgstr "Construir elemento" -#: lib/enums/ModelInformation.tsx:127 +#: lib/enums/ModelInformation.tsx:139 msgid "Build Items" msgstr "Construir elementos" -#: lib/enums/ModelInformation.tsx:132 -#: src/pages/company/CompanyDetail.tsx:340 +#: lib/enums/ModelInformation.tsx:144 +#: src/pages/company/CompanyDetail.tsx:345 #: src/tables/company/CompanyTable.tsx:47 #: src/tables/company/ContactTable.tsx:67 +#: src/tables/company/ParametricCompanyTable.tsx:18 msgid "Company" msgstr "Empresa" -#: lib/enums/ModelInformation.tsx:133 +#: lib/enums/ModelInformation.tsx:145 msgid "Companies" msgstr "Empresas" -#: lib/enums/ModelInformation.tsx:140 -#: src/pages/build/BuildDetail.tsx:316 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:253 -#: src/pages/sales/ReturnOrderDetail.tsx:231 -#: src/pages/sales/SalesOrderDetail.tsx:224 +#: lib/enums/ModelInformation.tsx:152 +#: src/pages/build/BuildDetail.tsx:317 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:254 +#: src/pages/sales/ReturnOrderDetail.tsx:232 +#: src/pages/sales/SalesOrderDetail.tsx:225 #: src/tables/ColumnRenderers.tsx:362 #: src/tables/Filter.tsx:286 #: src/tables/TableHoverCard.tsx:101 msgid "Project Code" msgstr "Código de proyecto" -#: lib/enums/ModelInformation.tsx:141 +#: lib/enums/ModelInformation.tsx:153 #: src/pages/Index/Settings/AdminCenter/Index.tsx:172 msgid "Project Codes" msgstr "Códigos de proyecto" -#: lib/enums/ModelInformation.tsx:147 +#: lib/enums/ModelInformation.tsx:159 #: src/components/wizards/OrderPartsWizard.tsx:338 #: src/pages/part/pricing/PurchaseHistoryPanel.tsx:33 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:550 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:555 #: src/pages/stock/StockDetail.tsx:352 #: src/tables/part/PartPurchaseOrdersTable.tsx:32 #: src/tables/stock/StockItemTable.tsx:239 @@ -312,117 +338,117 @@ msgstr "Códigos de proyecto" msgid "Purchase Order" msgstr "Pedido de compra" -#: lib/enums/ModelInformation.tsx:148 +#: lib/enums/ModelInformation.tsx:160 #: lib/enums/Roles.tsx:39 #: src/defaults/actions.tsx:104 -#: src/pages/Index/Settings/SystemSettings.tsx:283 -#: src/pages/company/CompanyDetail.tsx:203 -#: src/pages/company/SupplierPartDetail.tsx:266 -#: src/pages/part/PartDetail.tsx:875 -#: src/pages/purchasing/PurchasingIndex.tsx:60 +#: src/pages/Index/Settings/SystemSettings.tsx:289 +#: src/pages/company/CompanyDetail.tsx:204 +#: src/pages/company/SupplierPartDetail.tsx:267 +#: src/pages/part/PartDetail.tsx:864 +#: src/pages/purchasing/PurchasingIndex.tsx:66 msgid "Purchase Orders" msgstr "Pedidos de compra" -#: lib/enums/ModelInformation.tsx:156 +#: lib/enums/ModelInformation.tsx:169 msgid "Purchase Order Line" msgstr "Línea de pedido de compra" -#: lib/enums/ModelInformation.tsx:157 +#: lib/enums/ModelInformation.tsx:170 msgid "Purchase Order Lines" msgstr "Líneas de pedido de compra" -#: lib/enums/ModelInformation.tsx:162 -#: src/pages/build/BuildDetail.tsx:289 +#: lib/enums/ModelInformation.tsx:175 +#: src/pages/build/BuildDetail.tsx:290 #: src/pages/part/pricing/SaleHistoryPanel.tsx:24 -#: src/pages/sales/SalesOrderDetail.tsx:614 -#: src/pages/sales/SalesOrderShipmentDetail.tsx:105 -#: src/pages/sales/SalesOrderShipmentDetail.tsx:478 +#: src/pages/sales/SalesOrderDetail.tsx:619 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:103 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:446 #: src/pages/stock/StockDetail.tsx:361 #: src/tables/part/PartSalesAllocationsTable.tsx:41 #: src/tables/sales/SalesOrderAllocationTable.tsx:110 -#: src/tables/sales/SalesOrderShipmentTable.tsx:122 +#: src/tables/sales/SalesOrderShipmentTable.tsx:143 #: src/tables/stock/StockTrackingTable.tsx:131 msgid "Sales Order" msgstr "Orden de venta" -#: lib/enums/ModelInformation.tsx:163 +#: lib/enums/ModelInformation.tsx:176 #: lib/enums/Roles.tsx:43 #: src/defaults/actions.tsx:114 -#: src/pages/Index/Settings/SystemSettings.tsx:299 -#: src/pages/company/CompanyDetail.tsx:223 -#: src/pages/part/PartDetail.tsx:887 -#: src/pages/sales/SalesIndex.tsx:84 +#: src/pages/Index/Settings/SystemSettings.tsx:305 +#: src/pages/company/CompanyDetail.tsx:224 +#: src/pages/part/PartDetail.tsx:876 +#: src/pages/sales/SalesIndex.tsx:53 msgid "Sales Orders" msgstr "Órdenes de venta" -#: lib/enums/ModelInformation.tsx:171 -#: src/pages/sales/SalesOrderShipmentDetail.tsx:477 +#: lib/enums/ModelInformation.tsx:185 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:445 msgid "Sales Order Shipment" msgstr "Envío de orden de venta" -#: lib/enums/ModelInformation.tsx:172 +#: lib/enums/ModelInformation.tsx:186 msgid "Sales Order Shipments" msgstr "Envío de orden de venta" -#: lib/enums/ModelInformation.tsx:179 -#: src/pages/sales/ReturnOrderDetail.tsx:549 +#: lib/enums/ModelInformation.tsx:194 +#: src/pages/sales/ReturnOrderDetail.tsx:554 #: src/tables/stock/StockTrackingTable.tsx:142 msgid "Return Order" msgstr "Orden de devolución" -#: lib/enums/ModelInformation.tsx:180 +#: lib/enums/ModelInformation.tsx:195 #: lib/enums/Roles.tsx:41 #: src/defaults/actions.tsx:125 -#: src/pages/Index/Settings/SystemSettings.tsx:316 -#: src/pages/company/CompanyDetail.tsx:230 -#: src/pages/part/PartDetail.tsx:894 -#: src/pages/sales/SalesIndex.tsx:117 +#: src/pages/Index/Settings/SystemSettings.tsx:322 +#: src/pages/company/CompanyDetail.tsx:231 +#: src/pages/part/PartDetail.tsx:883 +#: src/pages/sales/SalesIndex.tsx:99 msgid "Return Orders" msgstr "Órdenes de devolución" -#: lib/enums/ModelInformation.tsx:188 +#: lib/enums/ModelInformation.tsx:204 msgid "Return Order Line Item" msgstr "Línea de pedido de retorno" -#: lib/enums/ModelInformation.tsx:189 +#: lib/enums/ModelInformation.tsx:205 msgid "Return Order Line Items" msgstr "Líneas de pedido de retorno" -#: lib/enums/ModelInformation.tsx:194 +#: lib/enums/ModelInformation.tsx:210 #: src/tables/company/AddressTable.tsx:52 msgid "Address" msgstr "Dirección" -#: lib/enums/ModelInformation.tsx:195 -#: src/pages/company/CompanyDetail.tsx:264 +#: lib/enums/ModelInformation.tsx:211 +#: src/pages/company/CompanyDetail.tsx:265 msgid "Addresses" msgstr "Direcciones" -#: lib/enums/ModelInformation.tsx:201 +#: lib/enums/ModelInformation.tsx:217 #: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:89 #: src/pages/core/UserDetail.tsx:135 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:229 -#: src/pages/sales/ReturnOrderDetail.tsx:207 -#: src/pages/sales/SalesOrderDetail.tsx:200 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:230 +#: src/pages/sales/ReturnOrderDetail.tsx:208 +#: src/pages/sales/SalesOrderDetail.tsx:201 msgid "Contact" msgstr "Contacto" -#: lib/enums/ModelInformation.tsx:202 -#: src/pages/company/CompanyDetail.tsx:258 +#: lib/enums/ModelInformation.tsx:218 +#: src/pages/company/CompanyDetail.tsx:259 #: src/pages/core/CoreIndex.tsx:33 msgid "Contacts" msgstr "Contactos" -#: lib/enums/ModelInformation.tsx:208 +#: lib/enums/ModelInformation.tsx:224 #: src/tables/ColumnRenderers.tsx:444 msgid "Owner" msgstr "Propietario" -#: lib/enums/ModelInformation.tsx:209 +#: lib/enums/ModelInformation.tsx:225 msgid "Owners" msgstr "Propietarios" -#: lib/enums/ModelInformation.tsx:215 +#: lib/enums/ModelInformation.tsx:231 #: src/pages/Auth/ChangePassword.tsx:36 #: src/pages/core/UserDetail.tsx:220 #: src/tables/ColumnRenderers.tsx:395 @@ -437,7 +463,7 @@ msgstr "Propietarios" msgid "User" msgstr "Usuario" -#: lib/enums/ModelInformation.tsx:216 +#: lib/enums/ModelInformation.tsx:232 #: src/components/nav/NavigationDrawer.tsx:105 #: src/pages/Index/Settings/AdminCenter/UserManagementPanel.tsx:15 #: src/pages/core/CoreIndex.tsx:21 @@ -445,12 +471,12 @@ msgstr "Usuario" msgid "Users" msgstr "Usuarios" -#: lib/enums/ModelInformation.tsx:222 +#: lib/enums/ModelInformation.tsx:238 #: src/pages/core/GroupDetail.tsx:78 msgid "Group" msgstr "Grupo" -#: lib/enums/ModelInformation.tsx:223 +#: lib/enums/ModelInformation.tsx:239 #: src/components/nav/NavigationDrawer.tsx:111 #: src/pages/Index/Settings/AdminCenter/UserManagementPanel.tsx:23 #: src/pages/core/CoreIndex.tsx:27 @@ -460,64 +486,64 @@ msgstr "Grupo" msgid "Groups" msgstr "Grupos" -#: lib/enums/ModelInformation.tsx:230 +#: lib/enums/ModelInformation.tsx:246 msgid "Import Session" msgstr "Importar sesión" -#: lib/enums/ModelInformation.tsx:231 +#: lib/enums/ModelInformation.tsx:247 msgid "Import Sessions" msgstr "Importar Sesiones" -#: lib/enums/ModelInformation.tsx:238 +#: lib/enums/ModelInformation.tsx:254 msgid "Label Template" msgstr "Plantilla de etiqueta" -#: lib/enums/ModelInformation.tsx:239 +#: lib/enums/ModelInformation.tsx:255 #: src/pages/Index/Settings/AdminCenter/Index.tsx:209 msgid "Label Templates" msgstr "Plantillas de etiqueta" -#: lib/enums/ModelInformation.tsx:246 +#: lib/enums/ModelInformation.tsx:262 msgid "Report Template" msgstr "Plantilla de Reporte" -#: lib/enums/ModelInformation.tsx:247 +#: lib/enums/ModelInformation.tsx:263 #: src/pages/Index/Settings/AdminCenter/Index.tsx:215 msgid "Report Templates" msgstr "Plantillas de Reportes" -#: lib/enums/ModelInformation.tsx:254 +#: lib/enums/ModelInformation.tsx:270 #: src/components/plugins/PluginDrawer.tsx:145 msgid "Plugin Configuration" msgstr "Configuración de complemento" -#: lib/enums/ModelInformation.tsx:255 +#: lib/enums/ModelInformation.tsx:271 msgid "Plugin Configurations" msgstr "Configuraciones de complemento" -#: lib/enums/ModelInformation.tsx:262 +#: lib/enums/ModelInformation.tsx:278 msgid "Content Type" msgstr "Tipo de contenido" -#: lib/enums/ModelInformation.tsx:263 +#: lib/enums/ModelInformation.tsx:279 msgid "Content Types" msgstr "Tipos de Contenido" -#: lib/enums/ModelInformation.tsx:268 +#: lib/enums/ModelInformation.tsx:284 msgid "Selection List" msgstr "Lista de selección" -#: lib/enums/ModelInformation.tsx:269 -#: src/pages/Index/Settings/AdminCenter/PartParameterPanel.tsx:21 +#: lib/enums/ModelInformation.tsx:285 +#: src/pages/Index/Settings/AdminCenter/ParameterPanel.tsx:21 msgid "Selection Lists" msgstr "Listas de Selección" -#: lib/enums/ModelInformation.tsx:275 +#: lib/enums/ModelInformation.tsx:291 #: src/components/barcodes/BarcodeInput.tsx:114 #: src/components/dashboard/DashboardLayout.tsx:281 #: src/components/editors/NotesEditor.tsx:74 #: src/components/editors/TemplateEditor/TemplateEditor.tsx:158 -#: src/components/forms/fields/ApiFormField.tsx:273 +#: src/components/forms/fields/ApiFormField.tsx:237 #: src/components/forms/fields/TableField.tsx:45 #: src/components/importer/ImportDataSelector.tsx:192 #: src/components/importer/ImporterColumnSelector.tsx:234 @@ -528,7 +554,7 @@ msgstr "Listas de Selección" #: src/components/nav/SearchDrawer.tsx:572 #: src/components/settings/SettingList.tsx:139 #: src/components/wizards/ImportPartWizard.tsx:574 -#: src/components/wizards/ImportPartWizard.tsx:718 +#: src/components/wizards/ImportPartWizard.tsx:719 #: src/forms/BomForms.tsx:69 #: src/functions/auth.tsx:643 #: src/pages/ErrorPage.tsx:11 @@ -547,9 +573,9 @@ msgstr "Listas de Selección" msgid "Error" msgstr "Error" -#: lib/enums/ModelInformation.tsx:276 +#: lib/enums/ModelInformation.tsx:292 #: src/tables/machine/MachineListTable.tsx:402 -#: src/tables/machine/MachineTypeTable.tsx:299 +#: src/tables/machine/MachineTypeTable.tsx:297 msgid "Errors" msgstr "Errores" @@ -559,10 +585,10 @@ msgstr "Admin" #: lib/enums/Roles.tsx:33 #: src/defaults/actions.tsx:135 -#: src/pages/Index/Settings/SystemSettings.tsx:264 -#: src/pages/build/BuildIndex.tsx:75 -#: src/pages/part/PartDetail.tsx:904 -#: src/pages/sales/SalesOrderDetail.tsx:421 +#: src/pages/Index/Settings/SystemSettings.tsx:270 +#: src/pages/build/BuildIndex.tsx:67 +#: src/pages/part/PartDetail.tsx:893 +#: src/pages/sales/SalesOrderDetail.tsx:422 msgid "Build Orders" msgstr "Órdenes de construcción" @@ -639,39 +665,39 @@ msgstr "Escanea o introduce datos de código de barras" msgid "Enter barcode data" msgstr "Introduce datos de código de barras" -#: src/components/barcodes/BarcodeScanDialog.tsx:49 -#: src/components/buttons/ScanButton.tsx:15 +#: src/components/barcodes/BarcodeScanDialog.tsx:56 +#: src/components/buttons/ScanButton.tsx:27 #: src/components/nav/NavigationDrawer.tsx:122 -#: src/forms/PurchaseOrderForms.tsx:457 -#: src/forms/PurchaseOrderForms.tsx:563 +#: src/forms/PurchaseOrderForms.tsx:509 +#: src/forms/PurchaseOrderForms.tsx:615 msgid "Scan Barcode" msgstr "Escanear código de barras" -#: src/components/barcodes/BarcodeScanDialog.tsx:105 +#: src/components/barcodes/BarcodeScanDialog.tsx:121 msgid "No matching item found" msgstr "No se encontraron artículos coincidentes" -#: src/components/barcodes/BarcodeScanDialog.tsx:134 +#: src/components/barcodes/BarcodeScanDialog.tsx:150 msgid "Barcode does not match the expected model type" msgstr "" -#: src/components/barcodes/BarcodeScanDialog.tsx:145 +#: src/components/barcodes/BarcodeScanDialog.tsx:161 #: src/components/editors/NotesEditor.tsx:84 #: src/components/editors/NotesEditor.tsx:118 -#: src/components/forms/ApiForm.tsx:465 +#: src/components/forms/ApiForm.tsx:484 #: src/components/wizards/ImportPartWizard.tsx:566 -#: src/components/wizards/ImportPartWizard.tsx:690 +#: src/components/wizards/ImportPartWizard.tsx:691 #: src/pages/Index/Settings/AdminCenter/CurrencyManagementPanel.tsx:45 #: src/tables/bom/BomTable.tsx:548 #: src/tables/settings/PendingTasksTable.tsx:68 msgid "Success" msgstr "Completado" -#: src/components/barcodes/BarcodeScanDialog.tsx:151 +#: src/components/barcodes/BarcodeScanDialog.tsx:167 msgid "Failed to handle barcode" msgstr "" -#: src/components/barcodes/BarcodeScanDialog.tsx:167 +#: src/components/barcodes/BarcodeScanDialog.tsx:183 #: src/pages/Index/Scan.tsx:129 msgid "Failed to scan barcode" msgstr "Error al escanear código de barras" @@ -714,10 +740,10 @@ msgstr "Error al vincular código de barras" #: src/components/barcodes/QRCode.tsx:179 #: src/pages/part/PartDetail.tsx:521 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:222 -#: src/pages/sales/ReturnOrderDetail.tsx:188 -#: src/pages/sales/SalesOrderDetail.tsx:181 -#: src/pages/sales/SalesOrderShipmentDetail.tsx:122 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:223 +#: src/pages/sales/ReturnOrderDetail.tsx:189 +#: src/pages/sales/SalesOrderDetail.tsx:182 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:120 #: src/pages/stock/StockDetail.tsx:186 msgid "Link" msgstr "Enlace" @@ -728,7 +754,7 @@ msgstr "Esto eliminará el enlace al código de barras asociado" #: src/components/barcodes/QRCode.tsx:205 #: src/components/items/ActionDropdown.tsx:192 -#: src/forms/PurchaseOrderForms.tsx:554 +#: src/forms/PurchaseOrderForms.tsx:606 msgid "Unlink Barcode" msgstr "Desvincular Código de Barras" @@ -829,14 +855,14 @@ msgstr "Usted será redirigido al proveedor para más acciones." #~ msgid "Scan QR code" #~ msgstr "Scan QR code" -#: src/components/buttons/ScanButton.tsx:19 -msgid "Open Barcode Scanner" -msgstr "Abrir Escáner de código de barras" - #: src/components/buttons/ScanButton.tsx:20 #~ msgid "Open QR code scanner" #~ msgstr "Open QR code scanner" +#: src/components/buttons/ScanButton.tsx:32 +msgid "Open Barcode Scanner" +msgstr "Abrir Escáner de código de barras" + #: src/components/buttons/SpotlightButton.tsx:12 msgid "Open spotlight" msgstr "Abrir spotlight" @@ -1059,7 +1085,7 @@ msgid "Show the number of sales orders which are assigned to you" msgstr "Mostrar el número de órdenes de venta que se le han asignado" #: src/components/dashboard/DashboardWidgetLibrary.tsx:129 -#: src/pages/sales/SalesIndex.tsx:105 +#: src/pages/sales/SalesIndex.tsx:87 msgid "Pending Shipments" msgstr "" @@ -1210,12 +1236,18 @@ msgid "Remove the associated image from this item?" msgstr "¿Eliminar la imagen asociada de este elemento?" #: src/components/details/DetailsImage.tsx:83 -#: src/forms/StockForms.tsx:888 +#: src/forms/StockForms.tsx:895 #: src/pages/Index/Settings/AccountSettings/MFASettings.tsx:324 #: src/pages/Index/Settings/AccountSettings/MFASettings.tsx:415 #: src/pages/Index/Settings/AccountSettings/MFASettings.tsx:884 #: src/pages/Index/Settings/AccountSettings/MFASettings.tsx:903 #: src/pages/Index/Settings/AccountSettings/SecurityContent.tsx:254 +#: src/tables/build/BuildAllocatedStockTable.tsx:178 +#: src/tables/build/BuildAllocatedStockTable.tsx:258 +#: src/tables/build/BuildLineTable.tsx:111 +#: src/tables/build/BuildLineTable.tsx:665 +#: src/tables/sales/SalesOrderAllocationTable.tsx:224 +#: src/tables/sales/SalesOrderAllocationTable.tsx:247 msgid "Remove" msgstr "Eliminar" @@ -1241,12 +1273,12 @@ msgid "Upload Error" msgstr "Error de subida" #: src/components/details/DetailsImage.tsx:250 -#: src/components/forms/fields/TextField.tsx:65 +#: src/components/forms/fields/AutoFillRightSection.tsx:34 msgid "Clear" msgstr "Borrar" #: src/components/details/DetailsImage.tsx:256 -#: src/components/forms/ApiForm.tsx:677 +#: src/components/forms/ApiForm.tsx:696 #: src/contexts/ThemeContext.tsx:44 #: src/pages/Index/Settings/AccountSettings/MFASettings.tsx:149 #: src/pages/Index/Settings/AccountSettings/MFASettings.tsx:568 @@ -1499,8 +1531,8 @@ msgstr "Error del servidor" msgid "A server error occurred" msgstr "Ha ocurrido un error con el servidor" -#: src/components/forms/ApiForm.tsx:103 -#: src/components/forms/ApiForm.tsx:594 +#: src/components/forms/ApiForm.tsx:107 +#: src/components/forms/ApiForm.tsx:613 msgid "Form Error" msgstr "Error de formulario" @@ -1508,11 +1540,11 @@ msgstr "Error de formulario" #~ msgid "Form Errors Exist" #~ msgstr "Form Errors Exist" -#: src/components/forms/ApiForm.tsx:604 +#: src/components/forms/ApiForm.tsx:623 msgid "Errors exist for one or more form fields" msgstr "Existen errores para uno o más campos del formulario" -#: src/components/forms/ApiForm.tsx:715 +#: src/components/forms/ApiForm.tsx:734 #: src/hooks/UseForm.tsx:133 #: src/tables/plugin/PluginListTable.tsx:204 msgid "Update" @@ -1698,15 +1730,14 @@ msgstr "Servidor" #: src/components/forms/InstanceOptions.tsx:124 #: src/components/plugins/PluginDrawer.tsx:68 #: src/pages/Index/Settings/AdminCenter/UnitManagementPanel.tsx:19 -#: src/pages/part/CategoryDetail.tsx:88 +#: src/pages/part/CategoryDetail.tsx:91 #: src/pages/part/PartDetail.tsx:446 #: src/pages/stock/LocationDetail.tsx:82 #: src/tables/machine/MachineTypeTable.tsx:67 -#: src/tables/machine/MachineTypeTable.tsx:151 -#: src/tables/machine/MachineTypeTable.tsx:254 -#: src/tables/machine/MachineTypeTable.tsx:357 +#: src/tables/machine/MachineTypeTable.tsx:149 +#: src/tables/machine/MachineTypeTable.tsx:252 +#: src/tables/machine/MachineTypeTable.tsx:355 #: src/tables/plugin/PluginErrorTable.tsx:33 -#: src/tables/purchasing/ManufacturerPartParameterTable.tsx:36 #: src/tables/settings/ApiTokenTable.tsx:57 #: src/tables/settings/GroupTable.tsx:95 #: src/tables/settings/GroupTable.tsx:148 @@ -1769,7 +1800,7 @@ msgstr "Guardar selección de host" #~ msgstr "State: <0>worker ({0}), <1>plugins{1}" #: src/components/forms/InstanceOptions.tsx:118 -#: src/pages/Index/Settings/SystemSettings.tsx:45 +#: src/pages/Index/Settings/SystemSettings.tsx:46 msgid "Server" msgstr "Servidor" @@ -1793,6 +1824,8 @@ msgid "Plugins" msgstr "Complementos" #: src/components/forms/InstanceOptions.tsx:143 +#: src/tables/general/ParameterTemplateTable.tsx:153 +#: src/tables/general/ParameterTemplateTable.tsx:188 #: src/tables/part/PartTestTemplateTable.tsx:117 #: src/tables/settings/TemplateTable.tsx:251 #: src/tables/settings/TemplateTable.tsx:362 @@ -1817,10 +1850,14 @@ msgstr "Detenido" msgid "Running" msgstr "Ejecutándose" -#: src/components/forms/fields/ApiFormField.tsx:233 +#: src/components/forms/fields/ApiFormField.tsx:197 msgid "Select file to upload" msgstr "" +#: src/components/forms/fields/AutoFillRightSection.tsx:47 +msgid "Accept suggested value" +msgstr "" + #: src/components/forms/fields/DateField.tsx:76 msgid "Select date" msgstr "" @@ -1853,13 +1890,13 @@ msgstr "Seleccionar paquete" msgid "{0} icons" msgstr "Iconos {0}" -#: src/components/forms/fields/RelatedModelField.tsx:409 +#: src/components/forms/fields/RelatedModelField.tsx:480 #: src/components/modals/AboutInvenTreeModal.tsx:96 #: src/pages/Index/Settings/AccountSettings/SecurityContent.tsx:383 msgid "Loading" msgstr "Cargando" -#: src/components/forms/fields/RelatedModelField.tsx:411 +#: src/components/forms/fields/RelatedModelField.tsx:482 msgid "No results found" msgstr "No hay resultados" @@ -1875,10 +1912,6 @@ msgstr "No hay entradas disponibles" msgid "Add new row" msgstr "Añadir fila nueva" -#: src/components/forms/fields/TextField.tsx:82 -msgid "Accept suggested value" -msgstr "" - #: src/components/images/DetailsImage.tsx:252 #~ msgid "Select image" #~ msgstr "Select image" @@ -2036,7 +2069,7 @@ msgstr "Los datos se han importado satisfactoriamente" #: src/components/importer/ImporterDrawer.tsx:109 #: src/components/modals/AboutInvenTreeModal.tsx:205 #: src/components/modals/ServerInfoModal.tsx:134 -#: src/components/wizards/ImportPartWizard.tsx:772 +#: src/components/wizards/ImportPartWizard.tsx:773 #: src/forms/BomForms.tsx:132 #: src/pages/Index/Settings/AccountSettings/MFASettings.tsx:685 msgid "Close" @@ -2199,7 +2232,7 @@ msgid "Change" msgstr "" #: src/components/items/RoleTable.tsx:150 -#: src/forms/StockForms.tsx:927 +#: src/forms/StockForms.tsx:941 #: src/tables/stock/StockItemTestResultTable.tsx:367 msgid "Add" msgstr "Añadir" @@ -2222,11 +2255,11 @@ msgstr "" #: src/components/items/TransferList.tsx:161 #: src/components/render/Stock.tsx:102 -#: src/pages/part/PartDetail.tsx:994 +#: src/pages/part/PartDetail.tsx:1009 #: src/pages/stock/StockDetail.tsx:265 #: src/pages/stock/StockDetail.tsx:942 -#: src/tables/build/BuildAllocatedStockTable.tsx:135 -#: src/tables/build/BuildLineTable.tsx:192 +#: src/tables/build/BuildAllocatedStockTable.tsx:132 +#: src/tables/build/BuildLineTable.tsx:193 #: src/tables/part/PartTable.tsx:137 #: src/tables/stock/StockItemTable.tsx:182 #: src/tables/stock/StockItemTable.tsx:343 @@ -2373,7 +2406,7 @@ msgid "Database" msgstr "Base de datos" #: src/components/modals/ServerInfoModal.tsx:49 -#: src/components/nav/Alerts.tsx:118 +#: src/components/nav/Alerts.tsx:120 msgid "Debug Mode" msgstr "Modo de depuración" @@ -2414,7 +2447,7 @@ msgid "Issues detected" msgstr "Problemas detectados" #: src/components/modals/ServerInfoModal.tsx:102 -#: src/components/nav/Alerts.tsx:125 +#: src/components/nav/Alerts.tsx:127 msgid "Background Worker" msgstr "Trabajador en segundo plano" @@ -2436,7 +2469,7 @@ msgstr "Configuración del correo electrónico" #~ msgstr "Email settings not configured" #: src/components/modals/ServerInfoModal.tsx:120 -#: src/components/nav/Alerts.tsx:141 +#: src/components/nav/Alerts.tsx:143 msgid "Email settings not configured." msgstr "" @@ -2444,43 +2477,47 @@ msgstr "" msgid "Alerts" msgstr "Alertas" -#: src/components/nav/Alerts.tsx:120 +#: src/components/nav/Alerts.tsx:97 +msgid "No issues detected" +msgstr "" + +#: src/components/nav/Alerts.tsx:122 msgid "The server is running in debug mode." msgstr "" -#: src/components/nav/Alerts.tsx:127 +#: src/components/nav/Alerts.tsx:129 msgid "The background worker process is not running." msgstr "El proceso en segundo plano no se está ejecutando." -#: src/components/nav/Alerts.tsx:132 +#: src/components/nav/Alerts.tsx:134 msgid "Server Restart" msgstr "Reiniciar Servidor" -#: src/components/nav/Alerts.tsx:134 +#: src/components/nav/Alerts.tsx:136 msgid "The server requires a restart to apply changes." msgstr "El servidor requiere reiniciar para aplicar los cambios." -#: src/components/nav/Alerts.tsx:139 +#: src/components/nav/Alerts.tsx:141 msgid "Email settings" msgstr "" -#: src/components/nav/Alerts.tsx:146 +#: src/components/nav/Alerts.tsx:148 msgid "Database Migrations" msgstr "Migraciones de Bases de Datos" -#: src/components/nav/Alerts.tsx:148 +#: src/components/nav/Alerts.tsx:150 msgid "There are pending database migrations." msgstr "Hay migraciones pendientes de base de datos." -#: src/components/nav/Alerts.tsx:163 +#: src/components/nav/Alerts.tsx:165 msgid "Learn more about {code}" msgstr "" #: src/components/nav/Header.tsx:188 #: src/components/nav/NavigationDrawer.tsx:134 #: src/components/nav/NotificationDrawer.tsx:181 -#: src/pages/Index/Settings/SystemSettings.tsx:121 -#: src/pages/Index/Settings/UserSettings.tsx:106 +#: src/pages/Index/Settings/SystemSettings.tsx:122 +#: src/pages/Index/Settings/UserSettings.tsx:107 #: src/pages/Notifications.tsx:45 #: src/pages/Notifications.tsx:130 msgid "Notifications" @@ -2511,8 +2548,8 @@ msgstr "Ajustes" #: src/components/nav/NavigationDrawer.tsx:140 #: src/components/nav/SettingsHeader.tsx:40 #: src/defaults/actions.tsx:92 -#: src/pages/Index/Settings/UserSettings.tsx:141 -#: src/pages/Index/Settings/UserSettings.tsx:145 +#: src/pages/Index/Settings/UserSettings.tsx:142 +#: src/pages/Index/Settings/UserSettings.tsx:146 msgid "User Settings" msgstr "Ajustes del usuario" @@ -2529,8 +2566,8 @@ msgstr "Ajustes del usuario" #: src/components/nav/NavigationDrawer.tsx:146 #: src/components/nav/SettingsHeader.tsx:41 #: src/defaults/actions.tsx:144 -#: src/pages/Index/Settings/SystemSettings.tsx:348 -#: src/pages/Index/Settings/SystemSettings.tsx:353 +#: src/pages/Index/Settings/SystemSettings.tsx:354 +#: src/pages/Index/Settings/SystemSettings.tsx:359 msgid "System Settings" msgstr "Ajustes del sistema" @@ -2577,11 +2614,11 @@ msgstr "Cerrar sesión" #: src/components/nav/NavigationDrawer.tsx:77 #: src/components/render/Part.tsx:36 -#: src/components/wizards/ImportPartWizard.tsx:807 +#: src/components/wizards/ImportPartWizard.tsx:808 #: src/defaults/links.tsx:42 #: src/forms/StockForms.tsx:794 -#: src/pages/Index/Settings/SystemSettings.tsx:224 -#: src/pages/part/PartDetail.tsx:804 +#: src/pages/Index/Settings/SystemSettings.tsx:230 +#: src/pages/part/PartDetail.tsx:793 #: src/pages/stock/LocationDetail.tsx:390 #: src/pages/stock/LocationDetail.tsx:420 #: src/pages/stock/StockDetail.tsx:642 @@ -2591,29 +2628,29 @@ msgstr "Stock" #: src/components/nav/NavigationDrawer.tsx:84 #: src/defaults/links.tsx:48 -#: src/pages/build/BuildDetail.tsx:748 -#: src/pages/build/BuildIndex.tsx:102 +#: src/pages/build/BuildDetail.tsx:753 +#: src/pages/build/BuildIndex.tsx:101 msgid "Manufacturing" msgstr "Fabricación" #: src/components/nav/NavigationDrawer.tsx:91 #: src/defaults/links.tsx:54 #: src/pages/company/ManufacturerDetail.tsx:9 -#: src/pages/company/ManufacturerPartDetail.tsx:276 +#: src/pages/company/ManufacturerPartDetail.tsx:267 #: src/pages/company/SupplierDetail.tsx:9 -#: src/pages/company/SupplierPartDetail.tsx:360 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:553 -#: src/pages/purchasing/PurchasingIndex.tsx:122 +#: src/pages/company/SupplierPartDetail.tsx:365 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:558 +#: src/pages/purchasing/PurchasingIndex.tsx:212 msgid "Purchasing" msgstr "Compras" #: src/components/nav/NavigationDrawer.tsx:98 #: src/defaults/links.tsx:60 #: src/pages/company/CustomerDetail.tsx:9 -#: src/pages/sales/ReturnOrderDetail.tsx:554 -#: src/pages/sales/SalesIndex.tsx:153 -#: src/pages/sales/SalesOrderDetail.tsx:619 -#: src/pages/sales/SalesOrderShipmentDetail.tsx:480 +#: src/pages/sales/ReturnOrderDetail.tsx:559 +#: src/pages/sales/SalesIndex.tsx:168 +#: src/pages/sales/SalesOrderDetail.tsx:624 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:448 msgid "Sales" msgstr "Ventas" @@ -2667,21 +2704,21 @@ msgid "Remove search group" msgstr "" #: src/components/nav/SearchDrawer.tsx:288 -#: src/pages/company/ManufacturerPartDetail.tsx:192 -#: src/pages/part/PartDetail.tsx:862 +#: src/pages/company/ManufacturerPartDetail.tsx:179 +#: src/pages/part/PartDetail.tsx:851 #: src/pages/part/PartSupplierDetail.tsx:15 -#: src/pages/purchasing/PurchasingIndex.tsx:81 +#: src/pages/purchasing/PurchasingIndex.tsx:100 msgid "Suppliers" msgstr "Proveedores" #: src/components/nav/SearchDrawer.tsx:298 #: src/pages/part/PartSupplierDetail.tsx:23 -#: src/pages/purchasing/PurchasingIndex.tsx:98 +#: src/pages/purchasing/PurchasingIndex.tsx:149 msgid "Manufacturers" msgstr "Fabricantes" #: src/components/nav/SearchDrawer.tsx:308 -#: src/pages/sales/SalesIndex.tsx:138 +#: src/pages/sales/SalesIndex.tsx:133 msgid "Customers" msgstr "Clientes" @@ -2772,21 +2809,21 @@ msgstr "Información del complemento" #: src/components/plugins/PluginDrawer.tsx:73 #: src/forms/selectionListFields.tsx:102 -#: src/pages/build/BuildDetail.tsx:250 -#: src/pages/company/CompanyDetail.tsx:93 -#: src/pages/company/ManufacturerPartDetail.tsx:93 -#: src/pages/company/ManufacturerPartDetail.tsx:120 -#: src/pages/company/SupplierPartDetail.tsx:145 -#: src/pages/part/CategoryDetail.tsx:108 +#: src/pages/build/BuildDetail.tsx:251 +#: src/pages/company/CompanyDetail.tsx:94 +#: src/pages/company/ManufacturerPartDetail.tsx:92 +#: src/pages/company/ManufacturerPartDetail.tsx:119 +#: src/pages/company/SupplierPartDetail.tsx:146 +#: src/pages/part/CategoryDetail.tsx:111 #: src/pages/part/PartDetail.tsx:460 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:162 -#: src/pages/sales/ReturnOrderDetail.tsx:129 -#: src/pages/sales/SalesOrderDetail.tsx:119 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:163 +#: src/pages/sales/ReturnOrderDetail.tsx:130 +#: src/pages/sales/SalesOrderDetail.tsx:120 #: src/pages/stock/LocationDetail.tsx:102 #: src/tables/ColumnRenderers.tsx:278 -#: src/tables/build/BuildAllocatedStockTable.tsx:91 -#: src/tables/machine/MachineTypeTable.tsx:161 -#: src/tables/machine/MachineTypeTable.tsx:257 +#: src/tables/build/BuildAllocatedStockTable.tsx:88 +#: src/tables/machine/MachineTypeTable.tsx:159 +#: src/tables/machine/MachineTypeTable.tsx:255 #: src/tables/plugin/PluginListTable.tsx:110 msgid "Description" msgstr "Descripción" @@ -2814,7 +2851,7 @@ msgstr "Fecha" #: src/tables/company/CompanyTable.tsx:91 #: src/tables/machine/MachineListTable.tsx:384 #: src/tables/machine/MachineListTable.tsx:799 -#: src/tables/part/ParametricPartTable.tsx:354 +#: src/tables/part/ParametricPartTable.tsx:19 #: src/tables/part/PartTable.tsx:197 #: src/tables/part/PartVariantTable.tsx:15 #: src/tables/plugin/PluginListTable.tsx:96 @@ -2836,8 +2873,8 @@ msgid "Installation Path" msgstr "Ruta de Instalación" #: src/components/plugins/PluginDrawer.tsx:116 -#: src/tables/machine/MachineTypeTable.tsx:184 -#: src/tables/machine/MachineTypeTable.tsx:293 +#: src/tables/machine/MachineTypeTable.tsx:182 +#: src/tables/machine/MachineTypeTable.tsx:291 #: src/tables/plugin/PluginListTable.tsx:101 #: src/tables/plugin/PluginListTable.tsx:417 msgid "Builtin" @@ -2849,8 +2886,8 @@ msgstr "Paquete" #: src/components/plugins/PluginDrawer.tsx:133 #: src/pages/Index/Settings/AdminCenter/PluginManagementPanel.tsx:55 -#: src/pages/Index/Settings/SystemSettings.tsx:331 -#: src/pages/Index/Settings/UserSettings.tsx:128 +#: src/pages/Index/Settings/SystemSettings.tsx:337 +#: src/pages/Index/Settings/UserSettings.tsx:129 msgid "Plugin Settings" msgstr "Ajustes del complemento" @@ -2911,7 +2948,7 @@ msgstr "Ha ocurrido un error al cargar el contenido del complemento" #~ msgid "Unknown model: {model}" #~ msgstr "Unknown model: {model}" -#: src/components/render/Instance.tsx:249 +#: src/components/render/Instance.tsx:247 msgid "Unknown model: {model_name}" msgstr "Modelo desconocido: {model_name}" @@ -2939,10 +2976,10 @@ msgstr "Envío" #: src/components/render/Part.tsx:28 #: src/components/render/Plugin.tsx:17 #: src/components/render/User.tsx:37 -#: src/pages/company/CompanyDetail.tsx:323 -#: src/pages/company/SupplierPartDetail.tsx:373 +#: src/pages/company/CompanyDetail.tsx:328 +#: src/pages/company/SupplierPartDetail.tsx:378 #: src/pages/core/UserDetail.tsx:211 -#: src/pages/part/PartDetail.tsx:1027 +#: src/pages/part/PartDetail.tsx:1048 #: src/tables/ColumnRenderers.tsx:410 msgid "Inactive" msgstr "Inactivo" @@ -2962,11 +2999,11 @@ msgstr "Sin Stock" #: src/components/render/Part.tsx:47 #: src/components/wizards/OrderPartsWizard.tsx:135 -#: src/pages/company/SupplierPartDetail.tsx:197 -#: src/pages/company/SupplierPartDetail.tsx:394 -#: src/pages/part/PartDetail.tsx:1015 +#: src/pages/company/SupplierPartDetail.tsx:198 +#: src/pages/company/SupplierPartDetail.tsx:399 +#: src/pages/part/PartDetail.tsx:1030 #: src/tables/bom/BomTable.tsx:444 -#: src/tables/build/BuildLineTable.tsx:222 +#: src/tables/build/BuildLineTable.tsx:223 #: src/tables/part/PartTable.tsx:108 msgid "On Order" msgstr "En pedido" @@ -2974,9 +3011,9 @@ msgstr "En pedido" #: src/components/render/Part.tsx:55 #: src/components/wizards/OrderPartsWizard.tsx:141 #: src/pages/part/PartDetail.tsx:587 -#: src/pages/part/PartDetail.tsx:1021 +#: src/pages/part/PartDetail.tsx:1036 #: src/pages/stock/StockDetail.tsx:925 -#: src/tables/part/PartTestResultTable.tsx:297 +#: src/tables/part/PartTestResultTable.tsx:305 #: src/tables/stock/StockItemTable.tsx:359 msgid "In Production" msgstr "En producción" @@ -2987,7 +3024,7 @@ msgid "Details" msgstr "Detalles" #: src/components/render/Part.tsx:112 -#: src/components/wizards/ImportPartWizard.tsx:806 +#: src/components/wizards/ImportPartWizard.tsx:807 #: src/pages/part/PartDetail.tsx:487 #: src/tables/ColumnRenderers.tsx:233 #: src/tables/ColumnRenderers.tsx:242 @@ -3000,16 +3037,16 @@ msgstr "Categoría" #: src/components/render/Stock.tsx:114 #: src/components/render/Stock.tsx:132 #: src/forms/BuildForms.tsx:795 -#: src/forms/PurchaseOrderForms.tsx:595 +#: src/forms/PurchaseOrderForms.tsx:647 #: src/forms/StockForms.tsx:792 #: src/forms/StockForms.tsx:839 -#: src/forms/StockForms.tsx:885 -#: src/forms/StockForms.tsx:924 -#: src/forms/StockForms.tsx:960 -#: src/forms/StockForms.tsx:1003 -#: src/forms/StockForms.tsx:1047 -#: src/forms/StockForms.tsx:1095 -#: src/forms/StockForms.tsx:1139 +#: src/forms/StockForms.tsx:892 +#: src/forms/StockForms.tsx:938 +#: src/forms/StockForms.tsx:976 +#: src/forms/StockForms.tsx:1019 +#: src/forms/StockForms.tsx:1063 +#: src/forms/StockForms.tsx:1111 +#: src/forms/StockForms.tsx:1155 #: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:88 #: src/pages/core/UserDetail.tsx:158 #: src/pages/stock/StockDetail.tsx:298 @@ -3023,7 +3060,7 @@ msgstr "Ubicación" #: src/components/render/Stock.tsx:99 #: src/pages/stock/StockDetail.tsx:198 #: src/pages/stock/StockDetail.tsx:930 -#: src/tables/build/BuildAllocatedStockTable.tsx:121 +#: src/tables/build/BuildAllocatedStockTable.tsx:118 #: src/tables/build/BuildOutputTable.tsx:107 #: src/tables/sales/SalesOrderAllocationTable.tsx:142 msgid "Serial Number" @@ -3034,9 +3071,9 @@ msgstr "Número de serie" #: src/forms/BuildForms.tsx:240 #: src/forms/BuildForms.tsx:634 #: src/forms/BuildForms.tsx:797 -#: src/forms/PurchaseOrderForms.tsx:801 +#: src/forms/PurchaseOrderForms.tsx:853 #: src/forms/ReturnOrderForms.tsx:243 -#: src/forms/SalesOrderForms.tsx:308 +#: src/forms/SalesOrderForms.tsx:387 #: src/forms/StockForms.tsx:841 #: src/pages/part/PartStockHistoryDetail.tsx:56 #: src/pages/part/PartStockHistoryDetail.tsx:210 @@ -3046,9 +3083,9 @@ msgstr "Número de serie" #: src/pages/part/pricing/PriceBreakPanel.tsx:172 #: src/pages/stock/StockDetail.tsx:258 #: src/pages/stock/StockDetail.tsx:936 -#: src/tables/build/BuildLineTable.tsx:86 +#: src/tables/build/BuildLineTable.tsx:83 #: src/tables/part/PartPurchaseOrdersTable.tsx:94 -#: src/tables/part/PartTestResultTable.tsx:269 +#: src/tables/part/PartTestResultTable.tsx:277 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:175 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:206 #: src/tables/purchasing/SupplierPriceBreakTable.tsx:69 @@ -3063,14 +3100,14 @@ msgstr "Cantidad" #: src/forms/BuildForms.tsx:474 #: src/forms/StockForms.tsx:793 #: src/forms/StockForms.tsx:840 -#: src/forms/StockForms.tsx:886 -#: src/forms/StockForms.tsx:925 -#: src/forms/StockForms.tsx:961 -#: src/forms/StockForms.tsx:1004 -#: src/forms/StockForms.tsx:1048 -#: src/forms/StockForms.tsx:1096 -#: src/forms/StockForms.tsx:1140 -#: src/tables/build/BuildLineTable.tsx:96 +#: src/forms/StockForms.tsx:893 +#: src/forms/StockForms.tsx:939 +#: src/forms/StockForms.tsx:977 +#: src/forms/StockForms.tsx:1020 +#: src/forms/StockForms.tsx:1064 +#: src/forms/StockForms.tsx:1112 +#: src/forms/StockForms.tsx:1156 +#: src/tables/build/BuildLineTable.tsx:93 msgid "Batch" msgstr "Lote" @@ -3306,10 +3343,6 @@ msgstr "No se especificaron ajustes" #~ msgid "Part category updated" #~ msgstr "Part category updated" -#: src/components/tables/part/PartParameterTable.tsx:41 -#~ msgid "Parameter" -#~ msgstr "Parameter" - #: src/components/tables/part/PartParameterTable.tsx:114 #~ msgid "Part parameter updated" #~ msgstr "Part parameter updated" @@ -3571,15 +3604,16 @@ msgid "Already Imported" msgstr "" #: src/components/wizards/ImportPartWizard.tsx:205 -#: src/pages/company/CompanyDetail.tsx:136 +#: src/pages/company/CompanyDetail.tsx:137 #: src/pages/company/SupplierDetail.tsx:8 -#: src/pages/company/SupplierPartDetail.tsx:130 -#: src/pages/company/SupplierPartDetail.tsx:235 -#: src/pages/company/SupplierPartDetail.tsx:364 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:156 +#: src/pages/company/SupplierPartDetail.tsx:131 +#: src/pages/company/SupplierPartDetail.tsx:236 +#: src/pages/company/SupplierPartDetail.tsx:369 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:157 #: src/tables/Filter.tsx:360 #: src/tables/company/CompanyTable.tsx:96 #: src/tables/part/PartPurchaseOrdersTable.tsx:43 +#: src/tables/purchasing/PurchaseOrderParametricTable.tsx:34 #: src/tables/purchasing/PurchaseOrderTable.tsx:109 #: src/tables/purchasing/SupplierPriceBreakTable.tsx:40 msgid "Supplier" @@ -3648,7 +3682,7 @@ msgid "Next" msgstr "" #: src/components/wizards/ImportPartWizard.tsx:540 -#: src/pages/part/PartDetail.tsx:1046 +#: src/pages/part/PartDetail.tsx:1067 #: src/tables/part/PartTable.tsx:408 msgid "Edit Part" msgstr "Editar Pieza" @@ -3669,28 +3703,28 @@ msgstr "" msgid "Import" msgstr "" -#: src/components/wizards/ImportPartWizard.tsx:691 +#: src/components/wizards/ImportPartWizard.tsx:692 msgid "Parameters created successfully!" msgstr "" -#: src/components/wizards/ImportPartWizard.tsx:719 +#: src/components/wizards/ImportPartWizard.tsx:720 msgid "Failed to create parameters, please fix the errors and try again" msgstr "" #. placeholder {0}: supplierPart?.supplier -#: src/components/wizards/ImportPartWizard.tsx:739 +#: src/components/wizards/ImportPartWizard.tsx:740 msgid "Part imported successfully from supplier {0}." msgstr "" -#: src/components/wizards/ImportPartWizard.tsx:752 +#: src/components/wizards/ImportPartWizard.tsx:753 msgid "Open Part" msgstr "" -#: src/components/wizards/ImportPartWizard.tsx:759 +#: src/components/wizards/ImportPartWizard.tsx:760 msgid "Open Supplier Part" msgstr "" -#: src/components/wizards/ImportPartWizard.tsx:766 +#: src/components/wizards/ImportPartWizard.tsx:767 msgid "Open Manufacturer Part" msgstr "" @@ -3699,25 +3733,19 @@ msgstr "" #~ msgid "Import Part" #~ msgstr "Import Part" -#: src/components/wizards/ImportPartWizard.tsx:802 +#: src/components/wizards/ImportPartWizard.tsx:803 msgid "Import Supplier Part" msgstr "" -#: src/components/wizards/ImportPartWizard.tsx:804 +#: src/components/wizards/ImportPartWizard.tsx:805 msgid "Search Supplier Part" msgstr "" -#: src/components/wizards/ImportPartWizard.tsx:806 -#: src/pages/company/ManufacturerPartDetail.tsx:166 -#: src/pages/part/PartDetail.tsx:793 -msgid "Parameters" -msgstr "Parámetros" - -#: src/components/wizards/ImportPartWizard.tsx:806 +#: src/components/wizards/ImportPartWizard.tsx:807 msgid "Confirm import" msgstr "" -#: src/components/wizards/ImportPartWizard.tsx:808 +#: src/components/wizards/ImportPartWizard.tsx:809 msgid "Done" msgstr "" @@ -3738,24 +3766,24 @@ msgid "Sales Requirements" msgstr "" #: src/components/wizards/OrderPartsWizard.tsx:129 -#: src/forms/StockForms.tsx:887 -#: src/forms/StockForms.tsx:926 -#: src/forms/StockForms.tsx:962 -#: src/forms/StockForms.tsx:1005 -#: src/forms/StockForms.tsx:1049 -#: src/forms/StockForms.tsx:1097 -#: src/forms/StockForms.tsx:1141 -#: src/pages/company/SupplierPartDetail.tsx:190 -#: src/pages/company/SupplierPartDetail.tsx:378 +#: src/forms/StockForms.tsx:894 +#: src/forms/StockForms.tsx:940 +#: src/forms/StockForms.tsx:978 +#: src/forms/StockForms.tsx:1021 +#: src/forms/StockForms.tsx:1065 +#: src/forms/StockForms.tsx:1113 +#: src/forms/StockForms.tsx:1157 +#: src/pages/company/SupplierPartDetail.tsx:191 +#: src/pages/company/SupplierPartDetail.tsx:383 #: src/pages/part/PartDetail.tsx:534 -#: src/pages/part/PartDetail.tsx:984 +#: src/pages/part/PartDetail.tsx:999 #: src/tables/Filter.tsx:92 #: src/tables/purchasing/SupplierPartTable.tsx:230 msgid "In Stock" msgstr "Disponible" #: src/components/wizards/OrderPartsWizard.tsx:146 -#: src/tables/build/BuildLineTable.tsx:404 +#: src/tables/build/BuildLineTable.tsx:405 msgid "Required Quantity" msgstr "Cantidad requerida" @@ -3847,7 +3875,7 @@ msgid "Please correct the errors in the selected parts" msgstr "" #: src/components/wizards/OrderPartsWizard.tsx:587 -#: src/tables/build/BuildLineTable.tsx:815 +#: src/tables/build/BuildLineTable.tsx:822 #: src/tables/part/PartTable.tsx:522 #: src/tables/sales/SalesOrderLineItemTable.tsx:370 msgid "Order Parts" @@ -4349,9 +4377,9 @@ msgstr "" #: src/forms/BuildForms.tsx:333 #: src/forms/BuildForms.tsx:408 #: src/forms/BuildForms.tsx:685 -#: src/tables/build/BuildAllocatedStockTable.tsx:150 +#: src/tables/build/BuildAllocatedStockTable.tsx:147 #: src/tables/build/BuildOutputTable.tsx:582 -#: src/tables/part/PartTestResultTable.tsx:272 +#: src/tables/part/PartTestResultTable.tsx:280 msgid "Build Output" msgstr "" @@ -4362,22 +4390,22 @@ msgstr "" #: src/forms/BuildForms.tsx:336 #: src/forms/BuildForms.tsx:411 #: src/forms/BuildForms.tsx:475 -#: src/forms/PurchaseOrderForms.tsx:717 +#: src/forms/PurchaseOrderForms.tsx:769 #: src/forms/ReturnOrderForms.tsx:197 #: src/forms/ReturnOrderForms.tsx:244 #: src/forms/StockForms.tsx:712 #: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:87 -#: src/pages/build/BuildDetail.tsx:222 +#: src/pages/build/BuildDetail.tsx:223 #: src/pages/core/UserDetail.tsx:151 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:168 -#: src/pages/sales/ReturnOrderDetail.tsx:135 -#: src/pages/sales/SalesOrderDetail.tsx:125 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:169 +#: src/pages/sales/ReturnOrderDetail.tsx:136 +#: src/pages/sales/SalesOrderDetail.tsx:126 #: src/pages/stock/StockDetail.tsx:170 #: src/tables/Filter.tsx:274 #: src/tables/build/BuildOutputTable.tsx:404 #: src/tables/machine/MachineListTable.tsx:387 #: src/tables/part/PartPurchaseOrdersTable.tsx:38 -#: src/tables/part/PartTestResultTable.tsx:309 +#: src/tables/part/PartTestResultTable.tsx:317 #: src/tables/sales/ReturnOrderLineItemTable.tsx:138 #: src/tables/sales/ReturnOrderLineItemTable.tsx:176 #: src/tables/settings/CustomStateTable.tsx:79 @@ -4443,18 +4471,19 @@ msgid "Build outputs have been cancelled" msgstr "Salidas de Construcción han sido canceladas" #: src/forms/BuildForms.tsx:631 -#: src/pages/build/BuildDetail.tsx:207 -#: src/pages/company/ManufacturerPartDetail.tsx:85 -#: src/pages/company/SupplierPartDetail.tsx:96 +#: src/pages/build/BuildDetail.tsx:208 +#: src/pages/company/ManufacturerPartDetail.tsx:84 +#: src/pages/company/SupplierPartDetail.tsx:97 #: src/pages/part/PartDetail.tsx:453 #: src/pages/stock/StockDetail.tsx:153 #: src/tables/bom/BomTable.tsx:134 #: src/tables/bom/UsedInTable.tsx:40 -#: src/tables/build/BuildAllocatedStockTable.tsx:108 -#: src/tables/build/BuildLineTable.tsx:336 +#: src/tables/build/BuildAllocatedStockTable.tsx:105 +#: src/tables/build/BuildLineTable.tsx:337 #: src/tables/build/BuildOrderTable.tsx:79 #: src/tables/part/PartSalesAllocationsTable.tsx:61 #: src/tables/part/RelatedPartTable.tsx:73 +#: src/tables/purchasing/ManufacturerPartParametricTable.tsx:21 #: src/tables/purchasing/ManufacturerPartTable.tsx:69 #: src/tables/purchasing/SupplierPartTable.tsx:70 #: src/tables/sales/SalesOrderAllocationTable.tsx:135 @@ -4466,47 +4495,47 @@ msgstr "IPN" #: src/forms/BuildForms.tsx:632 #: src/forms/BuildForms.tsx:796 #: src/forms/BuildForms.tsx:897 -#: src/forms/SalesOrderForms.tsx:306 -#: src/tables/build/BuildAllocatedStockTable.tsx:139 -#: src/tables/build/BuildLineTable.tsx:182 +#: src/forms/SalesOrderForms.tsx:385 +#: src/tables/build/BuildAllocatedStockTable.tsx:136 +#: src/tables/build/BuildLineTable.tsx:183 #: src/tables/sales/SalesOrderLineItemTable.tsx:342 #: src/tables/stock/StockItemTable.tsx:338 msgid "Allocated" msgstr "Asignado" #: src/forms/BuildForms.tsx:667 -#: src/forms/SalesOrderForms.tsx:295 -#: src/pages/build/BuildDetail.tsx:108 -#: src/pages/build/BuildDetail.tsx:326 +#: src/forms/SalesOrderForms.tsx:374 +#: src/pages/build/BuildDetail.tsx:109 +#: src/pages/build/BuildDetail.tsx:327 msgid "Source Location" msgstr "Ubicación origen" #: src/forms/BuildForms.tsx:668 -#: src/forms/SalesOrderForms.tsx:296 +#: src/forms/SalesOrderForms.tsx:375 msgid "Select the source location for the stock allocation" msgstr "Seleccione la ubicación de origen para la asignación de stock" #: src/forms/BuildForms.tsx:700 -#: src/forms/SalesOrderForms.tsx:336 -#: src/tables/build/BuildLineTable.tsx:574 -#: src/tables/build/BuildLineTable.tsx:731 -#: src/tables/build/BuildLineTable.tsx:830 +#: src/forms/SalesOrderForms.tsx:415 +#: src/tables/build/BuildLineTable.tsx:575 +#: src/tables/build/BuildLineTable.tsx:738 +#: src/tables/build/BuildLineTable.tsx:837 #: src/tables/sales/SalesOrderLineItemTable.tsx:380 #: src/tables/sales/SalesOrderLineItemTable.tsx:406 msgid "Allocate Stock" msgstr "Asignar Stock" #: src/forms/BuildForms.tsx:703 -#: src/forms/SalesOrderForms.tsx:341 +#: src/forms/SalesOrderForms.tsx:420 msgid "Stock items allocated" msgstr "Artículos de stock seleccionados" #: src/forms/BuildForms.tsx:816 #: src/forms/BuildForms.tsx:917 -#: src/tables/build/BuildAllocatedStockTable.tsx:240 -#: src/tables/build/BuildAllocatedStockTable.tsx:272 -#: src/tables/build/BuildLineTable.tsx:741 -#: src/tables/build/BuildLineTable.tsx:864 +#: src/tables/build/BuildAllocatedStockTable.tsx:243 +#: src/tables/build/BuildAllocatedStockTable.tsx:279 +#: src/tables/build/BuildLineTable.tsx:748 +#: src/tables/build/BuildLineTable.tsx:871 msgid "Consume Stock" msgstr "" @@ -4521,21 +4550,21 @@ msgstr "" #~ msgstr "Stock items consumed" #: src/forms/BuildForms.tsx:853 -#: src/tables/build/BuildLineTable.tsx:514 +#: src/tables/build/BuildLineTable.tsx:515 #: src/tables/part/PartBuildAllocationsTable.tsx:101 msgid "Fully consumed" msgstr "" #: src/forms/BuildForms.tsx:898 -#: src/tables/build/BuildLineTable.tsx:187 +#: src/tables/build/BuildLineTable.tsx:188 #: src/tables/stock/StockItemTable.tsx:367 msgid "Consumed" msgstr "Consumido" -#: src/forms/CommonForms.tsx:88 -#: src/forms/PurchaseOrderForms.tsx:125 +#: src/forms/CommonForms.tsx:92 +#: src/forms/PurchaseOrderForms.tsx:176 #: src/forms/ReturnOrderForms.tsx:138 -#: src/forms/SalesOrderForms.tsx:164 +#: src/forms/SalesOrderForms.tsx:185 msgid "Select project code for this line item" msgstr "" @@ -4543,16 +4572,16 @@ msgstr "" #~ msgid "Company updated" #~ msgstr "Company updated" -#: src/forms/PartForms.tsx:85 -#: src/forms/PartForms.tsx:207 -#: src/pages/part/CategoryDetail.tsx:124 +#: src/forms/PartForms.tsx:99 +#: src/forms/PartForms.tsx:228 +#: src/pages/part/CategoryDetail.tsx:127 #: src/pages/part/PartDetail.tsx:668 #: src/tables/part/PartCategoryTable.tsx:94 #: src/tables/part/PartTable.tsx:325 msgid "Subscribed" msgstr "Suscrito" -#: src/forms/PartForms.tsx:86 +#: src/forms/PartForms.tsx:100 msgid "Subscribe to notifications for this part" msgstr "Suscríbete a las notificaciones de esta pieza" @@ -4564,156 +4593,156 @@ msgstr "Suscríbete a las notificaciones de esta pieza" #~ msgid "Part updated" #~ msgstr "Part updated" -#: src/forms/PartForms.tsx:193 +#: src/forms/PartForms.tsx:214 msgid "Parent part category" msgstr "Categoría superior de pieza" -#: src/forms/PartForms.tsx:208 +#: src/forms/PartForms.tsx:229 msgid "Subscribe to notifications for this category" msgstr "Suscribirse a las notificaciones de esta categoría" -#: src/forms/PurchaseOrderForms.tsx:388 -msgid "Assign Batch Code and Serial Numbers" -msgstr "Asignar código de lote y números de serie" - -#: src/forms/PurchaseOrderForms.tsx:390 -msgid "Assign Batch Code" -msgstr "Asignar código de lote" - -#: src/forms/PurchaseOrderForms.tsx:410 -msgid "Choose Location" -msgstr "Elegir ubicación" - -#: src/forms/PurchaseOrderForms.tsx:418 -msgid "Item Destination selected" -msgstr "Destino de artículo seleccionado" - #: src/forms/PurchaseOrderForms.tsx:421 #~ msgid "Assign Batch Code{0}" #~ msgstr "Assign Batch Code{0}" -#: src/forms/PurchaseOrderForms.tsx:428 -msgid "Part category default location selected" -msgstr "Ubicación por defecto de la categoría de pieza eleccionada" +#: src/forms/PurchaseOrderForms.tsx:440 +msgid "Assign Batch Code and Serial Numbers" +msgstr "Asignar código de lote y números de serie" -#: src/forms/PurchaseOrderForms.tsx:438 -msgid "Received stock location selected" -msgstr "Seleccionada ubicación de existencias recibidas" +#: src/forms/PurchaseOrderForms.tsx:442 +msgid "Assign Batch Code" +msgstr "Asignar código de lote" #: src/forms/PurchaseOrderForms.tsx:444 #: src/forms/StockForms.tsx:428 #~ msgid "Remove item from list" #~ msgstr "Remove item from list" -#: src/forms/PurchaseOrderForms.tsx:446 +#: src/forms/PurchaseOrderForms.tsx:462 +msgid "Choose Location" +msgstr "Elegir ubicación" + +#: src/forms/PurchaseOrderForms.tsx:470 +msgid "Item Destination selected" +msgstr "Destino de artículo seleccionado" + +#: src/forms/PurchaseOrderForms.tsx:480 +msgid "Part category default location selected" +msgstr "Ubicación por defecto de la categoría de pieza eleccionada" + +#: src/forms/PurchaseOrderForms.tsx:490 +msgid "Received stock location selected" +msgstr "Seleccionada ubicación de existencias recibidas" + +#: src/forms/PurchaseOrderForms.tsx:498 msgid "Default location selected" msgstr "Ubicación por defecto seleccionada" -#: src/forms/PurchaseOrderForms.tsx:507 +#: src/forms/PurchaseOrderForms.tsx:559 msgid "Set Location" msgstr "Establecer ubicación" -#: src/forms/PurchaseOrderForms.tsx:524 -msgid "Set Expiry Date" -msgstr "Establecer Fecha de Vencimiento" - -#: src/forms/PurchaseOrderForms.tsx:532 -#: src/forms/StockForms.tsx:693 -msgid "Adjust Packaging" -msgstr "Ajustar empaquetado" - -#: src/forms/PurchaseOrderForms.tsx:540 -#: src/forms/StockForms.tsx:684 -#: src/hooks/UseStockAdjustActions.tsx:148 -msgid "Change Status" -msgstr "Cambiar Estado" - -#: src/forms/PurchaseOrderForms.tsx:546 -msgid "Add Note" -msgstr "Añadir Nota" - #: src/forms/PurchaseOrderForms.tsx:566 #~ msgid "Serial numbers" #~ msgstr "Serial numbers" +#: src/forms/PurchaseOrderForms.tsx:576 +msgid "Set Expiry Date" +msgstr "Establecer Fecha de Vencimiento" + #: src/forms/PurchaseOrderForms.tsx:582 #~ msgid "Store at line item destination" #~ msgstr "Store at line item destination" -#: src/forms/PurchaseOrderForms.tsx:610 -msgid "Store at default location" -msgstr "Guardar en la ubicación predeterminada" +#: src/forms/PurchaseOrderForms.tsx:584 +#: src/forms/StockForms.tsx:693 +msgid "Adjust Packaging" +msgstr "Ajustar empaquetado" -#: src/forms/PurchaseOrderForms.tsx:625 -msgid "Store at line item destination " -msgstr "" +#: src/forms/PurchaseOrderForms.tsx:592 +#: src/forms/StockForms.tsx:684 +#: src/hooks/UseStockAdjustActions.tsx:148 +msgid "Change Status" +msgstr "Cambiar Estado" -#: src/forms/PurchaseOrderForms.tsx:637 -msgid "Store with already received stock" -msgstr "Guardar con cantidad ya recibida" +#: src/forms/PurchaseOrderForms.tsx:598 +msgid "Add Note" +msgstr "Añadir Nota" #: src/forms/PurchaseOrderForms.tsx:658 #~ msgid "Receive line items" #~ msgstr "Receive line items" -#: src/forms/PurchaseOrderForms.tsx:661 -#: src/pages/build/BuildDetail.tsx:340 +#: src/forms/PurchaseOrderForms.tsx:662 +msgid "Store at default location" +msgstr "Guardar en la ubicación predeterminada" + +#: src/forms/PurchaseOrderForms.tsx:677 +msgid "Store at line item destination " +msgstr "" + +#: src/forms/PurchaseOrderForms.tsx:689 +msgid "Store with already received stock" +msgstr "Guardar con cantidad ya recibida" + +#: src/forms/PurchaseOrderForms.tsx:713 +#: src/pages/build/BuildDetail.tsx:341 #: src/pages/stock/StockDetail.tsx:280 #: src/pages/stock/StockDetail.tsx:952 #: src/tables/Filter.tsx:83 -#: src/tables/build/BuildAllocatedStockTable.tsx:128 +#: src/tables/build/BuildAllocatedStockTable.tsx:125 #: src/tables/build/BuildOutputTable.tsx:112 -#: src/tables/part/PartTestResultTable.tsx:260 -#: src/tables/part/PartTestResultTable.tsx:281 +#: src/tables/part/PartTestResultTable.tsx:268 +#: src/tables/part/PartTestResultTable.tsx:289 #: src/tables/sales/SalesOrderAllocationTable.tsx:149 msgid "Batch Code" msgstr "Código de lote" -#: src/forms/PurchaseOrderForms.tsx:662 +#: src/forms/PurchaseOrderForms.tsx:714 msgid "Enter batch code for received items" msgstr "Introduzca el código de lote para los artículos recibidos" -#: src/forms/PurchaseOrderForms.tsx:675 +#: src/forms/PurchaseOrderForms.tsx:727 #: src/forms/StockForms.tsx:218 msgid "Serial Numbers" msgstr "Números de serie" -#: src/forms/PurchaseOrderForms.tsx:676 +#: src/forms/PurchaseOrderForms.tsx:728 msgid "Enter serial numbers for received items" msgstr "Introduzca números de serie para los elementos recibidos" -#: src/forms/PurchaseOrderForms.tsx:690 +#: src/forms/PurchaseOrderForms.tsx:742 #: src/pages/stock/StockDetail.tsx:382 #: src/tables/stock/StockItemTable.tsx:294 msgid "Expiry Date" msgstr "Fecha de Expiración" -#: src/forms/PurchaseOrderForms.tsx:691 +#: src/forms/PurchaseOrderForms.tsx:743 msgid "Enter an expiry date for received items" msgstr "" -#: src/forms/PurchaseOrderForms.tsx:703 +#: src/forms/PurchaseOrderForms.tsx:755 #: src/forms/StockForms.tsx:728 -#: src/pages/company/SupplierPartDetail.tsx:172 -#: src/pages/company/SupplierPartDetail.tsx:236 +#: src/pages/company/SupplierPartDetail.tsx:173 +#: src/pages/company/SupplierPartDetail.tsx:237 #: src/pages/stock/StockDetail.tsx:419 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:227 msgid "Packaging" msgstr "Empaquetado" -#: src/forms/PurchaseOrderForms.tsx:727 -#: src/pages/company/SupplierPartDetail.tsx:120 +#: src/forms/PurchaseOrderForms.tsx:779 +#: src/pages/company/SupplierPartDetail.tsx:121 #: src/tables/ColumnRenderers.tsx:332 msgid "Note" msgstr "Nota" -#: src/forms/PurchaseOrderForms.tsx:799 -#: src/pages/company/SupplierPartDetail.tsx:138 +#: src/forms/PurchaseOrderForms.tsx:851 +#: src/pages/company/SupplierPartDetail.tsx:139 #: src/tables/purchasing/SupplierPriceBreakTable.tsx:49 msgid "SKU" msgstr "Número De Referencia" -#: src/forms/PurchaseOrderForms.tsx:800 +#: src/forms/PurchaseOrderForms.tsx:852 #: src/tables/part/PartPurchaseOrdersTable.tsx:127 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:213 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:283 @@ -4721,11 +4750,11 @@ msgstr "Número De Referencia" msgid "Received" msgstr "Recibido" -#: src/forms/PurchaseOrderForms.tsx:817 +#: src/forms/PurchaseOrderForms.tsx:869 msgid "Receive Line Items" msgstr "Recibir ítem de línea" -#: src/forms/PurchaseOrderForms.tsx:823 +#: src/forms/PurchaseOrderForms.tsx:875 msgid "Items received" msgstr "Artículos Recibidos" @@ -4737,7 +4766,35 @@ msgstr "Recibir Artículos" msgid "Item received into stock" msgstr "Artículo recibido en existencias" -#: src/forms/SalesOrderForms.tsx:401 +#: src/forms/SalesOrderForms.tsx:208 +#: src/forms/SalesOrderForms.tsx:210 +#: src/tables/sales/SalesOrderShipmentTable.tsx:215 +msgid "Check Shipment" +msgstr "" + +#: src/forms/SalesOrderForms.tsx:211 +msgid "Marking the shipment as checked indicates that you have verified that all items included in this shipment are correct" +msgstr "" + +#: src/forms/SalesOrderForms.tsx:221 +msgid "Shipment marked as checked" +msgstr "" + +#: src/forms/SalesOrderForms.tsx:236 +#: src/forms/SalesOrderForms.tsx:238 +#: src/tables/sales/SalesOrderShipmentTable.tsx:228 +msgid "Uncheck Shipment" +msgstr "" + +#: src/forms/SalesOrderForms.tsx:239 +msgid "Marking the shipment as unchecked indicates that the shipment requires further verification" +msgstr "" + +#: src/forms/SalesOrderForms.tsx:249 +msgid "Shipment marked as unchecked" +msgstr "" + +#: src/forms/SalesOrderForms.tsx:480 msgid "Leave blank to use the order address" msgstr "" @@ -4792,150 +4849,150 @@ msgstr "Mover" msgid "Return" msgstr "Devolver" -#: src/forms/StockForms.tsx:963 +#: src/forms/StockForms.tsx:979 #: src/pages/Index/Scan.tsx:182 msgid "Count" msgstr "Contar" -#: src/forms/StockForms.tsx:1246 +#: src/forms/StockForms.tsx:1262 #: src/hooks/UseStockAdjustActions.tsx:108 msgid "Add Stock" msgstr "Agregar existencias" -#: src/forms/StockForms.tsx:1247 +#: src/forms/StockForms.tsx:1263 msgid "Stock added" msgstr "Existencias añadidas" -#: src/forms/StockForms.tsx:1250 +#: src/forms/StockForms.tsx:1266 msgid "Increase the quantity of the selected stock items by a given amount." msgstr "" -#: src/forms/StockForms.tsx:1261 +#: src/forms/StockForms.tsx:1277 #: src/hooks/UseStockAdjustActions.tsx:118 msgid "Remove Stock" msgstr "Eliminar existencias" -#: src/forms/StockForms.tsx:1262 +#: src/forms/StockForms.tsx:1278 msgid "Stock removed" msgstr "Existencias eliminadas" -#: src/forms/StockForms.tsx:1265 +#: src/forms/StockForms.tsx:1281 msgid "Decrease the quantity of the selected stock items by a given amount." msgstr "" -#: src/forms/StockForms.tsx:1276 +#: src/forms/StockForms.tsx:1292 #: src/hooks/UseStockAdjustActions.tsx:128 msgid "Transfer Stock" msgstr "Transferir existencias" -#: src/forms/StockForms.tsx:1277 +#: src/forms/StockForms.tsx:1293 msgid "Stock transferred" msgstr "Existencias transferidas" -#: src/forms/StockForms.tsx:1280 +#: src/forms/StockForms.tsx:1296 msgid "Transfer selected items to the specified location." msgstr "" -#: src/forms/StockForms.tsx:1291 +#: src/forms/StockForms.tsx:1307 #: src/hooks/UseStockAdjustActions.tsx:168 msgid "Return Stock" msgstr "" -#: src/forms/StockForms.tsx:1292 +#: src/forms/StockForms.tsx:1308 msgid "Stock returned" msgstr "" -#: src/forms/StockForms.tsx:1295 +#: src/forms/StockForms.tsx:1311 msgid "Return selected items into stock, to the specified location." msgstr "" -#: src/forms/StockForms.tsx:1306 +#: src/forms/StockForms.tsx:1322 #: src/hooks/UseStockAdjustActions.tsx:98 msgid "Count Stock" msgstr "Contar existencias" -#: src/forms/StockForms.tsx:1307 +#: src/forms/StockForms.tsx:1323 msgid "Stock counted" msgstr "Existencias contadas" -#: src/forms/StockForms.tsx:1310 +#: src/forms/StockForms.tsx:1326 msgid "Count the selected stock items, and adjust the quantity accordingly." msgstr "" -#: src/forms/StockForms.tsx:1321 +#: src/forms/StockForms.tsx:1337 msgid "Change Stock Status" msgstr "Cambiar estado de existencias" -#: src/forms/StockForms.tsx:1322 +#: src/forms/StockForms.tsx:1338 msgid "Stock status changed" msgstr "Estado de existencias cambiado" -#: src/forms/StockForms.tsx:1325 +#: src/forms/StockForms.tsx:1341 msgid "Change the status of the selected stock items." msgstr "" -#: src/forms/StockForms.tsx:1336 +#: src/forms/StockForms.tsx:1352 #: src/hooks/UseStockAdjustActions.tsx:138 msgid "Merge Stock" msgstr "Juntar existencias" -#: src/forms/StockForms.tsx:1337 +#: src/forms/StockForms.tsx:1353 msgid "Stock merged" msgstr "Existencias fusionadas" -#: src/forms/StockForms.tsx:1339 +#: src/forms/StockForms.tsx:1355 msgid "Merge Stock Items" msgstr "" -#: src/forms/StockForms.tsx:1341 +#: src/forms/StockForms.tsx:1357 msgid "Merge operation cannot be reversed" msgstr "" -#: src/forms/StockForms.tsx:1342 +#: src/forms/StockForms.tsx:1358 msgid "Tracking information may be lost when merging items" msgstr "" -#: src/forms/StockForms.tsx:1343 +#: src/forms/StockForms.tsx:1359 msgid "Supplier information may be lost when merging items" msgstr "" -#: src/forms/StockForms.tsx:1361 +#: src/forms/StockForms.tsx:1377 msgid "Assign Stock to Customer" msgstr "Asignar existencias a cliente" -#: src/forms/StockForms.tsx:1362 +#: src/forms/StockForms.tsx:1378 msgid "Stock assigned to customer" msgstr "Existencias asignadas a cliente" -#: src/forms/StockForms.tsx:1372 +#: src/forms/StockForms.tsx:1388 msgid "Delete Stock Items" msgstr "Eliminar existencias" -#: src/forms/StockForms.tsx:1373 +#: src/forms/StockForms.tsx:1389 msgid "Stock deleted" msgstr "Existencias eliminadas" -#: src/forms/StockForms.tsx:1376 +#: src/forms/StockForms.tsx:1392 msgid "This operation will permanently delete the selected stock items." msgstr "" -#: src/forms/StockForms.tsx:1385 +#: src/forms/StockForms.tsx:1401 msgid "Parent stock location" msgstr "Ubicación del stock padre" -#: src/forms/StockForms.tsx:1512 +#: src/forms/StockForms.tsx:1528 msgid "Find Serial Number" msgstr "" -#: src/forms/StockForms.tsx:1523 +#: src/forms/StockForms.tsx:1539 msgid "No matching items" msgstr "" -#: src/forms/StockForms.tsx:1529 +#: src/forms/StockForms.tsx:1545 msgid "Multiple matching items" msgstr "" -#: src/forms/StockForms.tsx:1538 +#: src/forms/StockForms.tsx:1554 msgid "Invalid response from server" msgstr "" @@ -4953,7 +5010,6 @@ msgstr "Lista de entradas entre las que elegir" #: src/tables/FilterSelectDrawer.tsx:137 #: src/tables/FilterSelectDrawer.tsx:149 #: src/tables/part/PartTestResultTable.tsx:206 -#: src/tables/purchasing/ManufacturerPartParameterTable.tsx:42 #: src/tables/stock/StockItemTestResultTable.tsx:207 msgid "Value" msgstr "Valor" @@ -5244,7 +5300,7 @@ msgid "Delete selected stock items" msgstr "" #: src/hooks/UseStockAdjustActions.tsx:205 -#: src/pages/part/PartDetail.tsx:1137 +#: src/pages/part/PartDetail.tsx:1158 msgid "Stock Actions" msgstr "Acciones de inventario" @@ -5932,6 +5988,9 @@ msgstr "" #: src/pages/Index/Settings/AccountSettings/MFASettings.tsx:310 #: src/pages/Index/Settings/AccountSettings/MFASettings.tsx:401 +#: src/tables/build/BuildAllocatedStockTable.tsx:181 +#: src/tables/build/BuildLineTable.tsx:668 +#: src/tables/sales/SalesOrderAllocationTable.tsx:220 msgid "Confirm Removal" msgstr "" @@ -6394,30 +6453,34 @@ msgid "Email Messages" msgstr "" #: src/pages/Index/Settings/AdminCenter/HomePanel.tsx:22 -msgid "Active Alerts" -msgstr "" +#~ msgid "Active Alerts" +#~ msgstr "Active Alerts" #: src/pages/Index/Settings/AdminCenter/HomePanel.tsx:27 -msgid "Inactive Alerts" +#~ msgid "Inactive Alerts" +#~ msgstr "Inactive Alerts" + +#: src/pages/Index/Settings/AdminCenter/HomePanel.tsx:36 +msgid "System Status" msgstr "" -#: src/pages/Index/Settings/AdminCenter/HomePanel.tsx:38 +#: src/pages/Index/Settings/AdminCenter/HomePanel.tsx:47 msgid "Admin Center Information" msgstr "" -#: src/pages/Index/Settings/AdminCenter/HomePanel.tsx:44 +#: src/pages/Index/Settings/AdminCenter/HomePanel.tsx:53 msgid "The home panel (and the whole Admin Center) is a new feature starting with the new UI and was previously (before 1.0) not available." msgstr "" -#: src/pages/Index/Settings/AdminCenter/HomePanel.tsx:51 +#: src/pages/Index/Settings/AdminCenter/HomePanel.tsx:60 msgid "The admin center provides a centralized location for all administration functionality and is meant to replace all interaction with the (django) backend admin interface." msgstr "" -#: src/pages/Index/Settings/AdminCenter/HomePanel.tsx:58 +#: src/pages/Index/Settings/AdminCenter/HomePanel.tsx:67 msgid "Please open feature requests (after checking the tracker) for any existing backend admin functionality you are missing in this UI. The backend admin interface should be used carefully and seldom." msgstr "" -#: src/pages/Index/Settings/AdminCenter/HomePanel.tsx:76 +#: src/pages/Index/Settings/AdminCenter/HomePanel.tsx:85 msgid "Quick Actions" msgstr "" @@ -6476,11 +6539,11 @@ msgstr "Unidades personalizadas" #: src/pages/Index/Settings/AdminCenter/Index.tsx:195 #: src/pages/part/CategoryDetail.tsx:313 -msgid "Part Parameters" -msgstr "Parámetros de Pieza" +#~ msgid "Part Parameters" +#~ msgstr "Part Parameters" #: src/pages/Index/Settings/AdminCenter/Index.tsx:202 -#: src/pages/part/CategoryDetail.tsx:306 +#: src/pages/part/CategoryDetail.tsx:329 msgid "Category Parameters" msgstr "Parámetros de categoría" @@ -6494,7 +6557,7 @@ msgstr "Tipos Ubicación" #: src/pages/Index/Settings/AdminCenter/Index.tsx:235 #: src/pages/Index/Settings/AdminCenter/MachineManagementPanel.tsx:52 -#: src/tables/machine/MachineTypeTable.tsx:325 +#: src/tables/machine/MachineTypeTable.tsx:323 msgid "Machines" msgstr "Máquinas" @@ -6507,8 +6570,8 @@ msgid "Data Management" msgstr "" #: src/pages/Index/Settings/AdminCenter/Index.tsx:270 -#: src/pages/Index/Settings/SystemSettings.tsx:175 -#: src/pages/Index/Settings/UserSettings.tsx:118 +#: src/pages/Index/Settings/SystemSettings.tsx:176 +#: src/pages/Index/Settings/UserSettings.tsx:119 msgid "Reporting" msgstr "Informes" @@ -6709,11 +6772,11 @@ msgstr "" msgid "The settings below are specific to each available plugin" msgstr "" -#: src/pages/Index/Settings/SystemSettings.tsx:77 +#: src/pages/Index/Settings/SystemSettings.tsx:78 msgid "Authentication" msgstr "" -#: src/pages/Index/Settings/SystemSettings.tsx:103 +#: src/pages/Index/Settings/SystemSettings.tsx:104 msgid "Barcodes" msgstr "Códigos de barras" @@ -6725,12 +6788,12 @@ msgstr "Códigos de barras" #~ msgid "This panel is a placeholder." #~ msgstr "This panel is a placeholder." -#: src/pages/Index/Settings/SystemSettings.tsx:127 -#: src/pages/Index/Settings/UserSettings.tsx:112 +#: src/pages/Index/Settings/SystemSettings.tsx:128 +#: src/pages/Index/Settings/UserSettings.tsx:113 msgid "The settings below are specific to each available notification method" msgstr "" -#: src/pages/Index/Settings/SystemSettings.tsx:133 +#: src/pages/Index/Settings/SystemSettings.tsx:134 msgid "Pricing" msgstr "Precios" @@ -6738,7 +6801,7 @@ msgstr "Precios" #~ msgid "Exchange Rates" #~ msgstr "Exchange Rates" -#: src/pages/Index/Settings/SystemSettings.tsx:169 +#: src/pages/Index/Settings/SystemSettings.tsx:170 msgid "Labels" msgstr "Etiquetas" @@ -6790,15 +6853,15 @@ msgstr "Marcar como no leído" #~ msgid "Delete notifications" #~ msgstr "Delete notifications" -#: src/pages/build/BuildDetail.tsx:69 +#: src/pages/build/BuildDetail.tsx:70 msgid "No Required Items" msgstr "" -#: src/pages/build/BuildDetail.tsx:71 +#: src/pages/build/BuildDetail.tsx:72 msgid "This build order does not have any required items." msgstr "" -#: src/pages/build/BuildDetail.tsx:72 +#: src/pages/build/BuildDetail.tsx:73 msgid "The assembled part may not have a Bill of Materials (BOM) defined, or the BOM is empty." msgstr "" @@ -6826,7 +6889,7 @@ msgstr "" #~ msgid "Build Order updated" #~ msgstr "Build Order updated" -#: src/pages/build/BuildDetail.tsx:215 +#: src/pages/build/BuildDetail.tsx:216 #: src/pages/part/PartDetail.tsx:480 #: src/pages/stock/StockDetail.tsx:161 #: src/tables/bom/UsedInTable.tsx:44 @@ -6843,10 +6906,10 @@ msgstr "Revisión" #~ msgid "Duplicate build order" #~ msgstr "Duplicate build order" -#: src/pages/build/BuildDetail.tsx:228 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:174 -#: src/pages/sales/ReturnOrderDetail.tsx:141 -#: src/pages/sales/SalesOrderDetail.tsx:131 +#: src/pages/build/BuildDetail.tsx:229 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:175 +#: src/pages/sales/ReturnOrderDetail.tsx:142 +#: src/pages/sales/SalesOrderDetail.tsx:132 #: src/pages/stock/StockDetail.tsx:176 msgid "Custom Status" msgstr "" @@ -6855,9 +6918,9 @@ msgstr "" #~ msgid "Delete build order" #~ msgstr "Delete build order" -#: src/pages/build/BuildDetail.tsx:237 -#: src/pages/build/BuildDetail.tsx:723 -#: src/pages/build/BuildIndex.tsx:28 +#: src/pages/build/BuildDetail.tsx:238 +#: src/pages/build/BuildDetail.tsx:728 +#: src/pages/build/BuildIndex.tsx:34 #: src/pages/stock/LocationDetail.tsx:140 #: src/tables/build/BuildOrderTable.tsx:123 #: src/tables/build/BuildOrderTable.tsx:183 @@ -6865,57 +6928,57 @@ msgstr "" msgid "External" msgstr "Externo" -#: src/pages/build/BuildDetail.tsx:244 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:141 -#: src/pages/sales/ReturnOrderDetail.tsx:108 -#: src/pages/sales/SalesOrderDetail.tsx:98 +#: src/pages/build/BuildDetail.tsx:245 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:142 +#: src/pages/sales/ReturnOrderDetail.tsx:109 +#: src/pages/sales/SalesOrderDetail.tsx:99 #: src/tables/ColumnRenderers.tsx:321 -#: src/tables/build/BuildAllocatedStockTable.tsx:115 -#: src/tables/build/BuildLineTable.tsx:352 +#: src/tables/build/BuildAllocatedStockTable.tsx:112 +#: src/tables/build/BuildLineTable.tsx:353 msgid "Reference" msgstr "Referencia" -#: src/pages/build/BuildDetail.tsx:258 +#: src/pages/build/BuildDetail.tsx:259 msgid "Parent Build" msgstr "" -#: src/pages/build/BuildDetail.tsx:269 +#: src/pages/build/BuildDetail.tsx:270 msgid "Build Quantity" msgstr "Cantidad de construcción" -#: src/pages/build/BuildDetail.tsx:275 +#: src/pages/build/BuildDetail.tsx:276 #: src/pages/part/PartDetail.tsx:598 #: src/tables/bom/BomTable.tsx:365 #: src/tables/bom/BomTable.tsx:407 msgid "Can Build" msgstr "" -#: src/pages/build/BuildDetail.tsx:284 -#: src/pages/build/BuildDetail.tsx:474 +#: src/pages/build/BuildDetail.tsx:285 +#: src/pages/build/BuildDetail.tsx:475 msgid "Completed Outputs" msgstr "Salidas completadas" -#: src/pages/build/BuildDetail.tsx:301 +#: src/pages/build/BuildDetail.tsx:302 #: src/tables/Filter.tsx:381 #: src/tables/build/BuildOrderTable.tsx:143 msgid "Issued By" msgstr "Emitido por" -#: src/pages/build/BuildDetail.tsx:309 +#: src/pages/build/BuildDetail.tsx:310 #: src/pages/part/PartDetail.tsx:691 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:261 -#: src/pages/sales/ReturnOrderDetail.tsx:239 -#: src/pages/sales/SalesOrderDetail.tsx:232 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:262 +#: src/pages/sales/ReturnOrderDetail.tsx:240 +#: src/pages/sales/SalesOrderDetail.tsx:233 #: src/tables/ColumnRenderers.tsx:464 #: src/tables/Filter.tsx:319 msgid "Responsible" msgstr "Responsable" -#: src/pages/build/BuildDetail.tsx:327 +#: src/pages/build/BuildDetail.tsx:328 msgid "Any location" msgstr "Cualquier ubicación" -#: src/pages/build/BuildDetail.tsx:334 +#: src/pages/build/BuildDetail.tsx:335 msgid "Destination Location" msgstr "Ubicación de destino" @@ -6924,24 +6987,24 @@ msgstr "Ubicación de destino" #~ msgid "Test Statistics" #~ msgstr "Test Statistics" -#: src/pages/build/BuildDetail.tsx:350 +#: src/pages/build/BuildDetail.tsx:351 #: src/tables/settings/ApiTokenTable.tsx:97 #: src/tables/settings/PendingTasksTable.tsx:41 msgid "Created" msgstr "Creado" -#: src/pages/build/BuildDetail.tsx:358 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:286 -#: src/pages/sales/ReturnOrderDetail.tsx:265 -#: src/pages/sales/SalesOrderDetail.tsx:257 +#: src/pages/build/BuildDetail.tsx:359 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:287 +#: src/pages/sales/ReturnOrderDetail.tsx:266 +#: src/pages/sales/SalesOrderDetail.tsx:258 #: src/tables/ColumnRenderers.tsx:486 msgid "Start Date" msgstr "" -#: src/pages/build/BuildDetail.tsx:366 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:294 -#: src/pages/sales/ReturnOrderDetail.tsx:273 -#: src/pages/sales/SalesOrderDetail.tsx:265 +#: src/pages/build/BuildDetail.tsx:367 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:295 +#: src/pages/sales/ReturnOrderDetail.tsx:274 +#: src/pages/sales/SalesOrderDetail.tsx:266 #: src/tables/ColumnRenderers.tsx:494 #: src/tables/part/PartPurchaseOrdersTable.tsx:101 #: src/tables/sales/ReturnOrderLineItemTable.tsx:154 @@ -6954,185 +7017,185 @@ msgstr "Fecha objetivo" #~ msgstr "Reporting Actions" #: src/pages/build/BuildDetail.tsx:374 +#~ msgid "Print build report" +#~ msgstr "Print build report" + +#: src/pages/build/BuildDetail.tsx:375 #: src/tables/build/BuildOrderTable.tsx:93 #: src/tables/sales/SalesOrderLineItemTable.tsx:347 msgid "Completed" msgstr "Completado" -#: src/pages/build/BuildDetail.tsx:374 -#~ msgid "Print build report" -#~ msgstr "Print build report" - -#: src/pages/build/BuildDetail.tsx:410 +#: src/pages/build/BuildDetail.tsx:411 msgid "Build Details" msgstr "Detalles de construcción" -#: src/pages/build/BuildDetail.tsx:416 +#: src/pages/build/BuildDetail.tsx:417 msgid "Required Parts" msgstr "" -#: src/pages/build/BuildDetail.tsx:428 -#: src/pages/sales/SalesOrderDetail.tsx:407 -#: src/pages/sales/SalesOrderShipmentDetail.tsx:261 +#: src/pages/build/BuildDetail.tsx:429 +#: src/pages/sales/SalesOrderDetail.tsx:408 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:259 #: src/tables/part/PartSalesAllocationsTable.tsx:73 msgid "Allocated Stock" msgstr "Existencias asignadas" -#: src/pages/build/BuildDetail.tsx:444 +#: src/pages/build/BuildDetail.tsx:445 msgid "Consumed Stock" msgstr "Existencias consumidas" -#: src/pages/build/BuildDetail.tsx:461 +#: src/pages/build/BuildDetail.tsx:462 msgid "Incomplete Outputs" msgstr "Salidas incompletas" -#: src/pages/build/BuildDetail.tsx:489 +#: src/pages/build/BuildDetail.tsx:490 msgid "External Orders" msgstr "" -#: src/pages/build/BuildDetail.tsx:503 +#: src/pages/build/BuildDetail.tsx:504 msgid "Child Build Orders" msgstr "" -#: src/pages/build/BuildDetail.tsx:513 -#: src/pages/part/PartDetail.tsx:937 +#: src/pages/build/BuildDetail.tsx:514 +#: src/pages/part/PartDetail.tsx:926 #: src/pages/stock/StockDetail.tsx:587 #: src/tables/build/BuildOutputTable.tsx:654 #: src/tables/stock/StockItemTestResultTable.tsx:173 msgid "Test Results" msgstr "Resultados de la Prueba" -#: src/pages/build/BuildDetail.tsx:550 +#: src/pages/build/BuildDetail.tsx:555 msgid "Edit Build Order" msgstr "" -#: src/pages/build/BuildDetail.tsx:572 +#: src/pages/build/BuildDetail.tsx:577 #: src/tables/build/BuildOrderTable.tsx:207 #: src/tables/build/BuildOrderTable.tsx:223 msgid "Add Build Order" msgstr "" -#: src/pages/build/BuildDetail.tsx:582 +#: src/pages/build/BuildDetail.tsx:587 msgid "Cancel Build Order" msgstr "" -#: src/pages/build/BuildDetail.tsx:584 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:416 -#: src/pages/sales/ReturnOrderDetail.tsx:427 -#: src/pages/sales/SalesOrderDetail.tsx:454 +#: src/pages/build/BuildDetail.tsx:589 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:421 +#: src/pages/sales/ReturnOrderDetail.tsx:432 +#: src/pages/sales/SalesOrderDetail.tsx:459 msgid "Order cancelled" msgstr "" -#: src/pages/build/BuildDetail.tsx:585 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:415 -#: src/pages/sales/ReturnOrderDetail.tsx:426 -#: src/pages/sales/SalesOrderDetail.tsx:453 +#: src/pages/build/BuildDetail.tsx:590 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:420 +#: src/pages/sales/ReturnOrderDetail.tsx:431 +#: src/pages/sales/SalesOrderDetail.tsx:458 msgid "Cancel this order" msgstr "" -#: src/pages/build/BuildDetail.tsx:594 +#: src/pages/build/BuildDetail.tsx:599 msgid "Hold Build Order" msgstr "" -#: src/pages/build/BuildDetail.tsx:596 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:423 -#: src/pages/sales/ReturnOrderDetail.tsx:434 -#: src/pages/sales/SalesOrderDetail.tsx:461 +#: src/pages/build/BuildDetail.tsx:601 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:428 +#: src/pages/sales/ReturnOrderDetail.tsx:439 +#: src/pages/sales/SalesOrderDetail.tsx:466 msgid "Place this order on hold" msgstr "" -#: src/pages/build/BuildDetail.tsx:597 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:424 -#: src/pages/sales/ReturnOrderDetail.tsx:435 -#: src/pages/sales/SalesOrderDetail.tsx:462 +#: src/pages/build/BuildDetail.tsx:602 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:429 +#: src/pages/sales/ReturnOrderDetail.tsx:440 +#: src/pages/sales/SalesOrderDetail.tsx:467 msgid "Order placed on hold" msgstr "" -#: src/pages/build/BuildDetail.tsx:602 +#: src/pages/build/BuildDetail.tsx:607 msgid "Issue Build Order" msgstr "" -#: src/pages/build/BuildDetail.tsx:604 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:407 -#: src/pages/sales/ReturnOrderDetail.tsx:418 -#: src/pages/sales/SalesOrderDetail.tsx:445 +#: src/pages/build/BuildDetail.tsx:609 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:412 +#: src/pages/sales/ReturnOrderDetail.tsx:423 +#: src/pages/sales/SalesOrderDetail.tsx:450 msgid "Issue this order" msgstr "" -#: src/pages/build/BuildDetail.tsx:605 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:408 -#: src/pages/sales/ReturnOrderDetail.tsx:419 -#: src/pages/sales/SalesOrderDetail.tsx:446 +#: src/pages/build/BuildDetail.tsx:610 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:413 +#: src/pages/sales/ReturnOrderDetail.tsx:424 +#: src/pages/sales/SalesOrderDetail.tsx:451 msgid "Order issued" msgstr "" -#: src/pages/build/BuildDetail.tsx:624 +#: src/pages/build/BuildDetail.tsx:629 msgid "Complete Build Order" msgstr "" -#: src/pages/build/BuildDetail.tsx:630 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:436 -#: src/pages/sales/ReturnOrderDetail.tsx:442 -#: src/pages/sales/SalesOrderDetail.tsx:480 +#: src/pages/build/BuildDetail.tsx:635 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:441 +#: src/pages/sales/ReturnOrderDetail.tsx:447 +#: src/pages/sales/SalesOrderDetail.tsx:485 msgid "Mark this order as complete" msgstr "" -#: src/pages/build/BuildDetail.tsx:633 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:430 -#: src/pages/sales/ReturnOrderDetail.tsx:443 -#: src/pages/sales/SalesOrderDetail.tsx:481 +#: src/pages/build/BuildDetail.tsx:638 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:435 +#: src/pages/sales/ReturnOrderDetail.tsx:448 +#: src/pages/sales/SalesOrderDetail.tsx:486 msgid "Order completed" msgstr "Pedido completado" -#: src/pages/build/BuildDetail.tsx:660 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:459 -#: src/pages/sales/ReturnOrderDetail.tsx:470 -#: src/pages/sales/SalesOrderDetail.tsx:516 +#: src/pages/build/BuildDetail.tsx:665 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:464 +#: src/pages/sales/ReturnOrderDetail.tsx:475 +#: src/pages/sales/SalesOrderDetail.tsx:521 msgid "Issue Order" msgstr "Emitir pedido" -#: src/pages/build/BuildDetail.tsx:667 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:466 -#: src/pages/sales/ReturnOrderDetail.tsx:477 -#: src/pages/sales/SalesOrderDetail.tsx:530 +#: src/pages/build/BuildDetail.tsx:672 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:471 +#: src/pages/sales/ReturnOrderDetail.tsx:482 +#: src/pages/sales/SalesOrderDetail.tsx:535 msgid "Complete Order" msgstr "Completar Pedido" -#: src/pages/build/BuildDetail.tsx:686 +#: src/pages/build/BuildDetail.tsx:691 msgid "Build Order Actions" msgstr "" -#: src/pages/build/BuildDetail.tsx:691 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:489 -#: src/pages/sales/ReturnOrderDetail.tsx:500 -#: src/pages/sales/SalesOrderDetail.tsx:554 +#: src/pages/build/BuildDetail.tsx:696 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:494 +#: src/pages/sales/ReturnOrderDetail.tsx:505 +#: src/pages/sales/SalesOrderDetail.tsx:559 msgid "Edit order" msgstr "Editar pedido" -#: src/pages/build/BuildDetail.tsx:695 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:497 -#: src/pages/sales/ReturnOrderDetail.tsx:506 -#: src/pages/sales/SalesOrderDetail.tsx:559 +#: src/pages/build/BuildDetail.tsx:700 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:502 +#: src/pages/sales/ReturnOrderDetail.tsx:511 +#: src/pages/sales/SalesOrderDetail.tsx:564 msgid "Duplicate order" msgstr "Duplicar pedido" -#: src/pages/build/BuildDetail.tsx:699 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:500 -#: src/pages/sales/ReturnOrderDetail.tsx:511 -#: src/pages/sales/SalesOrderDetail.tsx:562 -msgid "Hold order" -msgstr "Retener pedido" - #: src/pages/build/BuildDetail.tsx:704 #: src/pages/purchasing/PurchaseOrderDetail.tsx:505 #: src/pages/sales/ReturnOrderDetail.tsx:516 #: src/pages/sales/SalesOrderDetail.tsx:567 +msgid "Hold order" +msgstr "Retener pedido" + +#: src/pages/build/BuildDetail.tsx:709 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:510 +#: src/pages/sales/ReturnOrderDetail.tsx:521 +#: src/pages/sales/SalesOrderDetail.tsx:572 msgid "Cancel order" msgstr "Cancelar pedido" -#: src/pages/build/BuildDetail.tsx:742 +#: src/pages/build/BuildDetail.tsx:747 #: src/pages/stock/StockDetail.tsx:344 -#: src/tables/build/BuildAllocatedStockTable.tsx:85 +#: src/tables/build/BuildAllocatedStockTable.tsx:82 #: src/tables/part/PartBuildAllocationsTable.tsx:45 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:157 #: src/tables/stock/StockTrackingTable.tsx:109 @@ -7143,7 +7206,7 @@ msgstr "Orden de construcción" #~ msgid "Build order created" #~ msgstr "Build order created" -#: src/pages/build/BuildIndex.tsx:29 +#: src/pages/build/BuildIndex.tsx:35 #: src/tables/build/BuildOrderTable.tsx:184 msgid "Show external build orders" msgstr "" @@ -7152,61 +7215,82 @@ msgstr "" #~ msgid "New Build Order" #~ msgstr "New Build Order" -#: src/pages/build/BuildIndex.tsx:83 -#: src/pages/purchasing/PurchasingIndex.tsx:69 -#: src/pages/sales/SalesIndex.tsx:92 -#: src/pages/sales/SalesIndex.tsx:125 +#: src/pages/build/BuildIndex.tsx:74 +#: src/pages/part/CategoryDetail.tsx:292 +#: src/pages/purchasing/PurchasingIndex.tsx:74 +#: src/pages/purchasing/PurchasingIndex.tsx:107 +#: src/pages/purchasing/PurchasingIndex.tsx:135 +#: src/pages/purchasing/PurchasingIndex.tsx:156 +#: src/pages/purchasing/PurchasingIndex.tsx:184 +#: src/pages/sales/SalesIndex.tsx:61 +#: src/pages/sales/SalesIndex.tsx:107 +#: src/pages/sales/SalesIndex.tsx:140 msgid "Table View" msgstr "" -#: src/pages/build/BuildIndex.tsx:86 -#: src/pages/purchasing/PurchasingIndex.tsx:72 -#: src/pages/sales/SalesIndex.tsx:95 -#: src/pages/sales/SalesIndex.tsx:128 +#: src/pages/build/BuildIndex.tsx:80 +#: src/pages/purchasing/PurchasingIndex.tsx:80 +#: src/pages/sales/SalesIndex.tsx:67 +#: src/pages/sales/SalesIndex.tsx:113 msgid "Calendar View" msgstr "" -#: src/pages/company/CompanyDetail.tsx:99 +#: src/pages/build/BuildIndex.tsx:86 +#: src/pages/part/CategoryDetail.tsx:306 +#: src/pages/purchasing/PurchasingIndex.tsx:92 +#: src/pages/purchasing/PurchasingIndex.tsx:118 +#: src/pages/purchasing/PurchasingIndex.tsx:141 +#: src/pages/purchasing/PurchasingIndex.tsx:167 +#: src/pages/purchasing/PurchasingIndex.tsx:190 +#: src/pages/sales/SalesIndex.tsx:79 +#: src/pages/sales/SalesIndex.tsx:125 +#: src/pages/sales/SalesIndex.tsx:151 +msgid "Parametric View" +msgstr "" + +#: src/pages/company/CompanyDetail.tsx:100 msgid "Website" msgstr "Sitio Web" -#: src/pages/company/CompanyDetail.tsx:107 +#: src/pages/company/CompanyDetail.tsx:108 msgid "Phone Number" msgstr "Número de teléfono" -#: src/pages/company/CompanyDetail.tsx:114 +#: src/pages/company/CompanyDetail.tsx:115 msgid "Email Address" msgstr "Dirección de correo electrónico" -#: src/pages/company/CompanyDetail.tsx:121 +#: src/pages/company/CompanyDetail.tsx:122 msgid "Tax ID" msgstr "" -#: src/pages/company/CompanyDetail.tsx:131 +#: src/pages/company/CompanyDetail.tsx:132 msgid "Default Currency" msgstr "Divisa predeterminada" -#: src/pages/company/CompanyDetail.tsx:142 +#: src/pages/company/CompanyDetail.tsx:143 #: src/pages/company/ManufacturerDetail.tsx:8 -#: src/pages/company/ManufacturerPartDetail.tsx:104 -#: src/pages/company/ManufacturerPartDetail.tsx:280 -#: src/pages/company/SupplierPartDetail.tsx:152 +#: src/pages/company/ManufacturerPartDetail.tsx:103 +#: src/pages/company/ManufacturerPartDetail.tsx:271 +#: src/pages/company/SupplierPartDetail.tsx:153 #: src/tables/Filter.tsx:347 #: src/tables/company/CompanyTable.tsx:101 #: src/tables/purchasing/SupplierPartTable.tsx:89 msgid "Manufacturer" msgstr "Fabricante" -#: src/pages/company/CompanyDetail.tsx:148 +#: src/pages/company/CompanyDetail.tsx:149 #: src/pages/company/CustomerDetail.tsx:8 #: src/pages/part/pricing/SaleHistoryPanel.tsx:31 -#: src/pages/sales/ReturnOrderDetail.tsx:123 -#: src/pages/sales/SalesOrderDetail.tsx:113 -#: src/pages/sales/SalesOrderShipmentDetail.tsx:113 +#: src/pages/sales/ReturnOrderDetail.tsx:124 +#: src/pages/sales/SalesOrderDetail.tsx:114 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:111 #: src/pages/stock/StockDetail.tsx:370 #: src/tables/company/CompanyTable.tsx:106 +#: src/tables/sales/ReturnOrderParametricTable.tsx:32 #: src/tables/sales/ReturnOrderTable.tsx:108 -#: src/tables/sales/SalesOrderShipmentTable.tsx:111 +#: src/tables/sales/SalesOrderParametricTable.tsx:32 +#: src/tables/sales/SalesOrderShipmentTable.tsx:132 #: src/tables/sales/SalesOrderTable.tsx:133 #: src/tables/stock/StockTrackingTable.tsx:153 msgid "Customer" @@ -7216,11 +7300,11 @@ msgstr "Cliente" #~ msgid "Edit company" #~ msgstr "Edit company" -#: src/pages/company/CompanyDetail.tsx:181 +#: src/pages/company/CompanyDetail.tsx:182 msgid "Company Details" msgstr "Datos de la empresa" -#: src/pages/company/CompanyDetail.tsx:187 +#: src/pages/company/CompanyDetail.tsx:188 msgid "Supplied Parts" msgstr "Piezas suministradas" @@ -7228,79 +7312,79 @@ msgstr "Piezas suministradas" #~ msgid "Delete company" #~ msgstr "Delete company" -#: src/pages/company/CompanyDetail.tsx:194 +#: src/pages/company/CompanyDetail.tsx:195 msgid "Manufactured Parts" msgstr "Piezas fabricadas" -#: src/pages/company/CompanyDetail.tsx:241 +#: src/pages/company/CompanyDetail.tsx:242 msgid "Assigned Stock" msgstr "Existencias asignadas" -#: src/pages/company/CompanyDetail.tsx:282 +#: src/pages/company/CompanyDetail.tsx:287 #: src/tables/company/CompanyTable.tsx:82 msgid "Edit Company" msgstr "Editar empresa" -#: src/pages/company/CompanyDetail.tsx:290 +#: src/pages/company/CompanyDetail.tsx:295 msgid "Delete Company" msgstr "Eliminar Empresa" -#: src/pages/company/CompanyDetail.tsx:305 +#: src/pages/company/CompanyDetail.tsx:310 msgid "Company Actions" msgstr "Acciones de empresa" -#: src/pages/company/ManufacturerPartDetail.tsx:78 -#: src/pages/company/SupplierPartDetail.tsx:89 +#: src/pages/company/ManufacturerPartDetail.tsx:77 +#: src/pages/company/SupplierPartDetail.tsx:90 msgid "Internal Part" msgstr "Pieza Interna" -#: src/pages/company/ManufacturerPartDetail.tsx:112 +#: src/pages/company/ManufacturerPartDetail.tsx:111 msgid "Manufacturer Part Number" msgstr "Referencia de pieza del fabricante" -#: src/pages/company/ManufacturerPartDetail.tsx:129 -#: src/pages/company/SupplierPartDetail.tsx:113 +#: src/pages/company/ManufacturerPartDetail.tsx:128 +#: src/pages/company/SupplierPartDetail.tsx:114 msgid "External Link" msgstr "Enlace externo" -#: src/pages/company/ManufacturerPartDetail.tsx:148 -#: src/pages/company/SupplierPartDetail.tsx:232 +#: src/pages/company/ManufacturerPartDetail.tsx:147 +#: src/pages/company/SupplierPartDetail.tsx:233 #: src/pages/part/PartDetail.tsx:787 msgid "Part Details" msgstr "" -#: src/pages/company/ManufacturerPartDetail.tsx:151 +#: src/pages/company/ManufacturerPartDetail.tsx:150 msgid "Manufacturer Details" msgstr "Detalles del fabricante" -#: src/pages/company/ManufacturerPartDetail.tsx:160 +#: src/pages/company/ManufacturerPartDetail.tsx:159 msgid "Manufacturer Part Details" msgstr "Detalles de pieza del fabricante" -#: src/pages/company/ManufacturerPartDetail.tsx:178 -#: src/pages/company/SupplierPartDetail.tsx:252 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:381 +#: src/pages/company/ManufacturerPartDetail.tsx:165 +#: src/pages/company/SupplierPartDetail.tsx:253 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:382 msgid "Received Stock" msgstr "Existencias recibidas" -#: src/pages/company/ManufacturerPartDetail.tsx:220 +#: src/pages/company/ManufacturerPartDetail.tsx:211 #: src/tables/purchasing/ManufacturerPartTable.tsx:108 msgid "Edit Manufacturer Part" msgstr "Editar pieza de fabricante" -#: src/pages/company/ManufacturerPartDetail.tsx:227 +#: src/pages/company/ManufacturerPartDetail.tsx:218 #: src/tables/purchasing/ManufacturerPartTable.tsx:96 #: src/tables/purchasing/ManufacturerPartTable.tsx:115 #: src/tables/purchasing/ManufacturerPartTable.tsx:156 msgid "Add Manufacturer Part" msgstr "Añadir pieza de fabricante" -#: src/pages/company/ManufacturerPartDetail.tsx:239 +#: src/pages/company/ManufacturerPartDetail.tsx:230 #: src/tables/purchasing/ManufacturerPartTable.tsx:126 msgid "Delete Manufacturer Part" msgstr "Borrar pieza de fabricante" -#: src/pages/company/ManufacturerPartDetail.tsx:254 +#: src/pages/company/ManufacturerPartDetail.tsx:245 msgid "Manufacturer Part Actions" msgstr "Acciones de pieza de fabricante" @@ -7308,12 +7392,12 @@ msgstr "Acciones de pieza de fabricante" #~ msgid "ManufacturerPart" #~ msgstr "ManufacturerPart" -#: src/pages/company/SupplierPartDetail.tsx:104 +#: src/pages/company/SupplierPartDetail.tsx:105 #: src/tables/part/RelatedPartTable.tsx:82 msgid "Part Description" msgstr "" -#: src/pages/company/SupplierPartDetail.tsx:179 +#: src/pages/company/SupplierPartDetail.tsx:180 #: src/tables/part/PartPurchaseOrdersTable.tsx:73 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:191 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:233 @@ -7321,50 +7405,50 @@ msgstr "" msgid "Pack Quantity" msgstr "Cantidad del paquete" -#: src/pages/company/SupplierPartDetail.tsx:204 +#: src/pages/company/SupplierPartDetail.tsx:205 msgid "Supplier Availability" msgstr "Disponibilidad del proveedor" -#: src/pages/company/SupplierPartDetail.tsx:212 +#: src/pages/company/SupplierPartDetail.tsx:213 msgid "Availability Updated" msgstr "Disponibilidad actualizada" -#: src/pages/company/SupplierPartDetail.tsx:237 +#: src/pages/company/SupplierPartDetail.tsx:238 msgid "Availability" msgstr "Disponibilidad" -#: src/pages/company/SupplierPartDetail.tsx:246 +#: src/pages/company/SupplierPartDetail.tsx:247 msgid "Supplier Part Details" msgstr "Detalles de pieza de proveedor" -#: src/pages/company/SupplierPartDetail.tsx:279 +#: src/pages/company/SupplierPartDetail.tsx:280 #: src/pages/part/PartPricingPanel.tsx:113 #: src/pages/part/pricing/PricingOverviewPanel.tsx:239 msgid "Supplier Pricing" msgstr "Precios del Proveedor" -#: src/pages/company/SupplierPartDetail.tsx:308 +#: src/pages/company/SupplierPartDetail.tsx:313 msgid "Supplier Part Actions" msgstr "Acciones de piezas de proveedor" -#: src/pages/company/SupplierPartDetail.tsx:332 +#: src/pages/company/SupplierPartDetail.tsx:337 #: src/tables/purchasing/SupplierPartTable.tsx:244 msgid "Edit Supplier Part" msgstr "Editar pieza de proveedor" -#: src/pages/company/SupplierPartDetail.tsx:340 +#: src/pages/company/SupplierPartDetail.tsx:345 #: src/tables/purchasing/SupplierPartTable.tsx:264 msgid "Delete Supplier Part" msgstr "Borrar pieza de proveedor" -#: src/pages/company/SupplierPartDetail.tsx:348 +#: src/pages/company/SupplierPartDetail.tsx:353 #: src/tables/purchasing/SupplierPartTable.tsx:172 #: src/tables/purchasing/SupplierPartTable.tsx:251 msgid "Add Supplier Part" msgstr "Añadir pieza de proveedor" -#: src/pages/company/SupplierPartDetail.tsx:388 -#: src/pages/part/PartDetail.tsx:1003 +#: src/pages/company/SupplierPartDetail.tsx:393 +#: src/pages/part/PartDetail.tsx:1018 msgid "No Stock" msgstr "Sin existencias" @@ -7411,83 +7495,83 @@ msgstr "Detalles de Usuario" msgid "Basic user" msgstr "" -#: src/pages/part/CategoryDetail.tsx:100 +#: src/pages/part/CategoryDetail.tsx:103 #: src/pages/stock/LocationDetail.tsx:94 #: src/tables/settings/ErrorTable.tsx:63 #: src/tables/settings/ErrorTable.tsx:108 msgid "Path" msgstr "Ruta" -#: src/pages/part/CategoryDetail.tsx:116 +#: src/pages/part/CategoryDetail.tsx:119 msgid "Parent Category" msgstr "Categoría superior" -#: src/pages/part/CategoryDetail.tsx:139 -#: src/pages/part/CategoryDetail.tsx:271 +#: src/pages/part/CategoryDetail.tsx:142 +#: src/pages/part/CategoryDetail.tsx:279 msgid "Subcategories" msgstr "Subcategorías" -#: src/pages/part/CategoryDetail.tsx:146 +#: src/pages/part/CategoryDetail.tsx:149 #: src/pages/stock/LocationDetail.tsx:134 #: src/tables/part/PartCategoryTable.tsx:89 #: src/tables/stock/StockLocationTable.tsx:43 msgid "Structural" msgstr "Estructural" -#: src/pages/part/CategoryDetail.tsx:152 +#: src/pages/part/CategoryDetail.tsx:155 msgid "Parent default location" msgstr "Ubicación padre por defecto" -#: src/pages/part/CategoryDetail.tsx:159 +#: src/pages/part/CategoryDetail.tsx:162 msgid "Default location" msgstr "Ubicación predeterminada" -#: src/pages/part/CategoryDetail.tsx:170 +#: src/pages/part/CategoryDetail.tsx:173 msgid "Top level part category" msgstr "Categoría de piezas de nivel superior" -#: src/pages/part/CategoryDetail.tsx:180 -#: src/pages/part/CategoryDetail.tsx:248 +#: src/pages/part/CategoryDetail.tsx:183 +#: src/pages/part/CategoryDetail.tsx:251 #: src/tables/part/PartCategoryTable.tsx:122 msgid "Edit Part Category" msgstr "Editar categoría de pieza" -#: src/pages/part/CategoryDetail.tsx:189 +#: src/pages/part/CategoryDetail.tsx:192 msgid "Move items to parent category" msgstr "Mover elementos a la categoría padre" -#: src/pages/part/CategoryDetail.tsx:193 +#: src/pages/part/CategoryDetail.tsx:196 #: src/pages/stock/LocationDetail.tsx:226 msgid "Delete items" msgstr "Eliminar elementos" -#: src/pages/part/CategoryDetail.tsx:201 -#: src/pages/part/CategoryDetail.tsx:253 +#: src/pages/part/CategoryDetail.tsx:204 +#: src/pages/part/CategoryDetail.tsx:256 msgid "Delete Part Category" msgstr "Borrar categoría de pieza" -#: src/pages/part/CategoryDetail.tsx:204 +#: src/pages/part/CategoryDetail.tsx:207 msgid "Parts Action" msgstr "Acciones de piezas" -#: src/pages/part/CategoryDetail.tsx:205 +#: src/pages/part/CategoryDetail.tsx:208 msgid "Action for parts in this category" msgstr "Acciones de piezas en esta categoría" -#: src/pages/part/CategoryDetail.tsx:211 +#: src/pages/part/CategoryDetail.tsx:214 msgid "Child Categories Action" msgstr "Acción en subcategorías" -#: src/pages/part/CategoryDetail.tsx:212 +#: src/pages/part/CategoryDetail.tsx:215 msgid "Action for child categories in this category" msgstr "Acción para subcategorías en esta categoría" -#: src/pages/part/CategoryDetail.tsx:244 +#: src/pages/part/CategoryDetail.tsx:247 #: src/tables/part/PartCategoryTable.tsx:143 msgid "Category Actions" msgstr "Acciones de categoría" -#: src/pages/part/CategoryDetail.tsx:265 +#: src/pages/part/CategoryDetail.tsx:273 msgid "Category Details" msgstr "Detalles de categoría" @@ -7585,7 +7669,6 @@ msgid "Category Default Location" msgstr "Ubicación por defecto de categoría" #: src/pages/part/PartDetail.tsx:507 -#: src/tables/purchasing/ManufacturerPartParameterTable.tsx:48 msgid "Units" msgstr "Unidades" @@ -7600,7 +7683,7 @@ msgstr "Palabras claves" #: src/pages/part/PartDetail.tsx:542 #: src/tables/bom/BomTable.tsx:439 -#: src/tables/build/BuildLineTable.tsx:305 +#: src/tables/build/BuildLineTable.tsx:306 #: src/tables/part/PartTable.tsx:319 #: src/tables/sales/SalesOrderLineItemTable.tsx:138 msgid "Available Stock" @@ -7608,7 +7691,7 @@ msgstr "Existencias disponibles" #: src/pages/part/PartDetail.tsx:548 #: src/tables/bom/BomTable.tsx:341 -#: src/tables/build/BuildLineTable.tsx:267 +#: src/tables/build/BuildLineTable.tsx:268 #: src/tables/sales/SalesOrderLineItemTable.tsx:180 msgid "On order" msgstr "En pedido" @@ -7634,7 +7717,7 @@ msgstr "Existencias mínimas" #~ msgstr "Scheduling" #: src/pages/part/PartDetail.tsx:620 -#: src/tables/part/ParametricPartTable.tsx:359 +#: src/tables/part/ParametricPartTable.tsx:24 #: src/tables/part/PartTable.tsx:203 msgid "Locked" msgstr "Bloqueado" @@ -7671,16 +7754,16 @@ msgid "Saleable Part" msgstr "" #: src/pages/part/PartDetail.tsx:663 -#: src/pages/part/PartDetail.tsx:1033 +#: src/pages/part/PartDetail.tsx:1054 #: src/tables/bom/BomTable.tsx:150 #: src/tables/bom/BomTable.tsx:434 msgid "Virtual Part" msgstr "" #: src/pages/part/PartDetail.tsx:678 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:271 -#: src/pages/sales/ReturnOrderDetail.tsx:249 -#: src/pages/sales/SalesOrderDetail.tsx:242 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:272 +#: src/pages/sales/ReturnOrderDetail.tsx:250 +#: src/pages/sales/SalesOrderDetail.tsx:243 #: src/tables/ColumnRenderers.tsx:502 msgid "Creation Date" msgstr "" @@ -7718,35 +7801,46 @@ msgstr "Último número de serie" msgid "Select Part Revision" msgstr "" -#: src/pages/part/PartDetail.tsx:823 +#: src/pages/part/PartDetail.tsx:812 msgid "Variants" msgstr "" -#: src/pages/part/PartDetail.tsx:830 +#: src/pages/part/PartDetail.tsx:819 #: src/pages/stock/StockDetail.tsx:542 msgid "Allocations" msgstr "" -#: src/pages/part/PartDetail.tsx:837 +#: src/pages/part/PartDetail.tsx:826 msgid "Bill of Materials" msgstr "" -#: src/pages/part/PartDetail.tsx:849 +#: src/pages/part/PartDetail.tsx:838 msgid "Used In" msgstr "" -#: src/pages/part/PartDetail.tsx:856 +#: src/pages/part/PartDetail.tsx:845 msgid "Part Pricing" msgstr "Precio de pieza" -#: src/pages/part/PartDetail.tsx:926 +#: src/pages/part/PartDetail.tsx:915 msgid "Test Templates" msgstr "Plantillas de Prueba" -#: src/pages/part/PartDetail.tsx:948 +#: src/pages/part/PartDetail.tsx:937 msgid "Related Parts" msgstr "Piezas Relacionadas" +#: src/pages/part/PartDetail.tsx:949 +#: src/tables/ColumnRenderers.tsx:73 +#: src/tables/bom/BomTable.tsx:657 +#: src/tables/part/PartTestTemplateTable.tsx:258 +msgid "Part is Locked" +msgstr "" + +#: src/pages/part/PartDetail.tsx:954 +msgid "Part parameters cannot be edited, as the part is locked" +msgstr "" + #: src/pages/part/PartDetail.tsx:956 #~ msgid "Count part stock" #~ msgstr "Count part stock" @@ -7755,42 +7849,46 @@ msgstr "Piezas Relacionadas" #~ msgid "Transfer part stock" #~ msgstr "Transfer part stock" -#: src/pages/part/PartDetail.tsx:1009 +#: src/pages/part/PartDetail.tsx:1024 #: src/tables/part/PartTestTemplateTable.tsx:112 #: src/tables/stock/StockItemTestResultTable.tsx:404 msgid "Required" msgstr "Requerido" -#: src/pages/part/PartDetail.tsx:1058 +#: src/pages/part/PartDetail.tsx:1042 +msgid "Deficit" +msgstr "" + +#: src/pages/part/PartDetail.tsx:1079 #: src/tables/part/PartTable.tsx:396 #: src/tables/part/PartTable.tsx:449 msgid "Add Part" msgstr "Añadir pieza" -#: src/pages/part/PartDetail.tsx:1072 +#: src/pages/part/PartDetail.tsx:1093 msgid "Delete Part" msgstr "Eliminar pieza" -#: src/pages/part/PartDetail.tsx:1081 +#: src/pages/part/PartDetail.tsx:1102 msgid "Deleting this part cannot be reversed" msgstr "La eliminación de esta pieza no se puede revertir" -#: src/pages/part/PartDetail.tsx:1143 +#: src/pages/part/PartDetail.tsx:1164 #: src/pages/stock/StockDetail.tsx:883 msgid "Order" msgstr "Orden" -#: src/pages/part/PartDetail.tsx:1144 +#: src/pages/part/PartDetail.tsx:1165 #: src/pages/stock/StockDetail.tsx:884 -#: src/tables/build/BuildLineTable.tsx:761 +#: src/tables/build/BuildLineTable.tsx:768 msgid "Order Stock" msgstr "" -#: src/pages/part/PartDetail.tsx:1156 +#: src/pages/part/PartDetail.tsx:1177 msgid "Search by serial number" msgstr "" -#: src/pages/part/PartDetail.tsx:1164 +#: src/pages/part/PartDetail.tsx:1185 #: src/tables/part/PartTable.tsx:506 msgid "Part Actions" msgstr "" @@ -8039,7 +8137,7 @@ msgstr "" #: src/pages/part/pricing/PricingOverviewPanel.tsx:288 #: src/pages/stock/StockDetail.tsx:426 -#: src/tables/part/PartParameterTable.tsx:121 +#: src/tables/general/ParameterTable.tsx:101 #: src/tables/stock/StockItemTable.tsx:300 msgid "Last Updated" msgstr "Última Actualización" @@ -8107,17 +8205,17 @@ msgstr "" msgid "Variant Part" msgstr "" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:89 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:90 msgid "Edit Purchase Order" msgstr "" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:125 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:126 #: src/tables/purchasing/PurchaseOrderTable.tsx:154 #: src/tables/purchasing/PurchaseOrderTable.tsx:167 msgid "Add Purchase Order" msgstr "" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:147 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:148 msgid "Supplier Reference" msgstr "" @@ -8127,20 +8225,20 @@ msgstr "" #~ msgid "Order Currency," #~ msgstr "Order Currency," -#: src/pages/purchasing/PurchaseOrderDetail.tsx:187 -#: src/pages/sales/ReturnOrderDetail.tsx:160 -#: src/pages/sales/SalesOrderDetail.tsx:144 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:188 +#: src/pages/sales/ReturnOrderDetail.tsx:161 +#: src/pages/sales/SalesOrderDetail.tsx:145 msgid "Completed Line Items" msgstr "Artículos de línea completados" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:196 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:197 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:272 msgid "Destination" msgstr "" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:202 -#: src/pages/sales/ReturnOrderDetail.tsx:167 -#: src/pages/sales/SalesOrderDetail.tsx:161 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:203 +#: src/pages/sales/ReturnOrderDetail.tsx:168 +#: src/pages/sales/SalesOrderDetail.tsx:162 msgid "Order Currency" msgstr "" @@ -8150,97 +8248,97 @@ msgstr "" #~ msgid "Created On" #~ msgstr "Created On" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:208 -#: src/pages/sales/ReturnOrderDetail.tsx:174 -#: src/pages/sales/SalesOrderDetail.tsx:167 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:209 +#: src/pages/sales/ReturnOrderDetail.tsx:175 +#: src/pages/sales/SalesOrderDetail.tsx:168 msgid "Total Cost" msgstr "" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:237 -#: src/pages/sales/ReturnOrderDetail.tsx:215 -#: src/pages/sales/SalesOrderDetail.tsx:208 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:238 +#: src/pages/sales/ReturnOrderDetail.tsx:216 +#: src/pages/sales/SalesOrderDetail.tsx:209 msgid "Contact Email" msgstr "" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:245 -#: src/pages/sales/ReturnOrderDetail.tsx:223 -#: src/pages/sales/SalesOrderDetail.tsx:216 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:246 +#: src/pages/sales/ReturnOrderDetail.tsx:224 +#: src/pages/sales/SalesOrderDetail.tsx:217 msgid "Contact Phone" msgstr "" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:278 -#: src/pages/sales/ReturnOrderDetail.tsx:257 -#: src/pages/sales/SalesOrderDetail.tsx:249 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:279 +#: src/pages/sales/ReturnOrderDetail.tsx:258 +#: src/pages/sales/SalesOrderDetail.tsx:250 msgid "Issue Date" msgstr "Fecha de emisión" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:303 -#: src/pages/sales/ReturnOrderDetail.tsx:281 -#: src/pages/sales/SalesOrderDetail.tsx:272 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:304 +#: src/pages/sales/ReturnOrderDetail.tsx:282 +#: src/pages/sales/SalesOrderDetail.tsx:273 #: src/tables/ColumnRenderers.tsx:510 #: src/tables/build/BuildOrderTable.tsx:137 #: src/tables/part/PartPurchaseOrdersTable.tsx:106 msgid "Completion Date" msgstr "Fecha de Finalización" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:333 -#: src/pages/sales/ReturnOrderDetail.tsx:311 -#: src/pages/sales/SalesOrderDetail.tsx:349 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:334 +#: src/pages/sales/ReturnOrderDetail.tsx:312 +#: src/pages/sales/SalesOrderDetail.tsx:350 msgid "Order Details" msgstr "" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:339 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:348 -#: src/pages/sales/ReturnOrderDetail.tsx:153 -#: src/pages/sales/ReturnOrderDetail.tsx:317 -#: src/pages/sales/ReturnOrderDetail.tsx:326 -#: src/pages/sales/SalesOrderDetail.tsx:355 -#: src/pages/sales/SalesOrderDetail.tsx:364 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:340 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:349 +#: src/pages/sales/ReturnOrderDetail.tsx:154 +#: src/pages/sales/ReturnOrderDetail.tsx:318 +#: src/pages/sales/ReturnOrderDetail.tsx:327 +#: src/pages/sales/SalesOrderDetail.tsx:356 +#: src/pages/sales/SalesOrderDetail.tsx:365 msgid "Line Items" msgstr "Elementos de línea" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:363 -#: src/pages/sales/ReturnOrderDetail.tsx:341 -#: src/pages/sales/SalesOrderDetail.tsx:378 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:364 +#: src/pages/sales/ReturnOrderDetail.tsx:342 +#: src/pages/sales/SalesOrderDetail.tsx:379 msgid "Extra Line Items" msgstr "Elementos extra de línea" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:405 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:410 msgid "Issue Purchase Order" msgstr "" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:413 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:418 msgid "Cancel Purchase Order" msgstr "" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:421 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:426 msgid "Hold Purchase Order" msgstr "" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:429 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:434 msgid "Complete Purchase Order" msgstr "" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:485 -#: src/pages/sales/ReturnOrderDetail.tsx:496 -#: src/pages/sales/SalesOrderDetail.tsx:549 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:490 +#: src/pages/sales/ReturnOrderDetail.tsx:501 +#: src/pages/sales/SalesOrderDetail.tsx:554 msgid "Order Actions" msgstr "" -#: src/pages/sales/ReturnOrderDetail.tsx:114 -#: src/pages/sales/SalesOrderDetail.tsx:104 -#: src/pages/sales/SalesOrderShipmentDetail.tsx:134 +#: src/pages/sales/ReturnOrderDetail.tsx:115 +#: src/pages/sales/SalesOrderDetail.tsx:105 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:132 #: src/tables/sales/SalesOrderTable.tsx:141 msgid "Customer Reference" msgstr "" -#: src/pages/sales/ReturnOrderDetail.tsx:195 +#: src/pages/sales/ReturnOrderDetail.tsx:196 msgid "Return Address" msgstr "" -#: src/pages/sales/ReturnOrderDetail.tsx:201 -#: src/pages/sales/SalesOrderDetail.tsx:194 -#: src/pages/sales/SalesOrderShipmentDetail.tsx:181 +#: src/pages/sales/ReturnOrderDetail.tsx:202 +#: src/pages/sales/SalesOrderDetail.tsx:195 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:179 msgid "Not specified" msgstr "" @@ -8248,117 +8346,117 @@ msgstr "" #~ msgid "Order canceled" #~ msgstr "Order canceled" -#: src/pages/sales/ReturnOrderDetail.tsx:389 +#: src/pages/sales/ReturnOrderDetail.tsx:394 msgid "Edit Return Order" msgstr "" -#: src/pages/sales/ReturnOrderDetail.tsx:407 +#: src/pages/sales/ReturnOrderDetail.tsx:412 #: src/tables/sales/ReturnOrderTable.tsx:154 #: src/tables/sales/ReturnOrderTable.tsx:167 msgid "Add Return Order" msgstr "" -#: src/pages/sales/ReturnOrderDetail.tsx:416 +#: src/pages/sales/ReturnOrderDetail.tsx:421 msgid "Issue Return Order" msgstr "" -#: src/pages/sales/ReturnOrderDetail.tsx:424 +#: src/pages/sales/ReturnOrderDetail.tsx:429 msgid "Cancel Return Order" msgstr "" -#: src/pages/sales/ReturnOrderDetail.tsx:432 +#: src/pages/sales/ReturnOrderDetail.tsx:437 msgid "Hold Return Order" msgstr "" -#: src/pages/sales/ReturnOrderDetail.tsx:440 +#: src/pages/sales/ReturnOrderDetail.tsx:445 msgid "Complete Return Order" msgstr "" -#: src/pages/sales/SalesOrderDetail.tsx:153 +#: src/pages/sales/SalesOrderDetail.tsx:154 msgid "Completed Shipments" msgstr "Envíos Completados" -#: src/pages/sales/SalesOrderDetail.tsx:188 -#: src/pages/sales/SalesOrderShipmentDetail.tsx:170 +#: src/pages/sales/SalesOrderDetail.tsx:189 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:168 msgid "Shipping Address" msgstr "" -#: src/pages/sales/SalesOrderDetail.tsx:316 +#: src/pages/sales/SalesOrderDetail.tsx:317 msgid "Edit Sales Order" msgstr "Editar orden de venta" -#: src/pages/sales/SalesOrderDetail.tsx:338 +#: src/pages/sales/SalesOrderDetail.tsx:339 #: src/tables/sales/SalesOrderTable.tsx:108 #: src/tables/sales/SalesOrderTable.tsx:121 msgid "Add Sales Order" msgstr "Agregar orden de venta" -#: src/pages/sales/SalesOrderDetail.tsx:396 +#: src/pages/sales/SalesOrderDetail.tsx:397 #: src/tables/sales/SalesOrderTable.tsx:147 msgid "Shipments" msgstr "Envíos" -#: src/pages/sales/SalesOrderDetail.tsx:443 +#: src/pages/sales/SalesOrderDetail.tsx:448 msgid "Issue Sales Order" msgstr "Emitir orden de venta" -#: src/pages/sales/SalesOrderDetail.tsx:451 +#: src/pages/sales/SalesOrderDetail.tsx:456 msgid "Cancel Sales Order" msgstr "Cancelar orden de venta" -#: src/pages/sales/SalesOrderDetail.tsx:459 +#: src/pages/sales/SalesOrderDetail.tsx:464 msgid "Hold Sales Order" msgstr "Mantener orden de venta" -#: src/pages/sales/SalesOrderDetail.tsx:467 +#: src/pages/sales/SalesOrderDetail.tsx:472 msgid "Ship Sales Order" msgstr "" -#: src/pages/sales/SalesOrderDetail.tsx:469 +#: src/pages/sales/SalesOrderDetail.tsx:474 msgid "Ship this order?" msgstr "" -#: src/pages/sales/SalesOrderDetail.tsx:470 +#: src/pages/sales/SalesOrderDetail.tsx:475 msgid "Order shipped" msgstr "" -#: src/pages/sales/SalesOrderDetail.tsx:478 +#: src/pages/sales/SalesOrderDetail.tsx:483 msgid "Complete Sales Order" msgstr "Completar orden de venta" -#: src/pages/sales/SalesOrderDetail.tsx:523 +#: src/pages/sales/SalesOrderDetail.tsx:528 msgid "Ship Order" msgstr "Orden de envío" -#: src/pages/sales/SalesOrderShipmentDetail.tsx:142 -#: src/tables/sales/SalesOrderShipmentTable.tsx:135 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:140 +#: src/tables/sales/SalesOrderShipmentTable.tsx:156 msgid "Shipment Reference" msgstr "" -#: src/pages/sales/SalesOrderShipmentDetail.tsx:148 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:146 msgid "Tracking Number" msgstr "Número de Seguimiento" -#: src/pages/sales/SalesOrderShipmentDetail.tsx:156 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:154 msgid "Invoice Number" msgstr "Número de factura" -#: src/pages/sales/SalesOrderShipmentDetail.tsx:191 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:189 msgid "Allocated Items" msgstr "Elementos asignados" -#: src/pages/sales/SalesOrderShipmentDetail.tsx:196 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:194 msgid "Checked By" msgstr "" -#: src/pages/sales/SalesOrderShipmentDetail.tsx:202 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:200 msgid "Not checked" msgstr "" -#: src/pages/sales/SalesOrderShipmentDetail.tsx:208 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:206 #: src/tables/ColumnRenderers.tsx:518 #: src/tables/sales/SalesOrderAllocationTable.tsx:182 -#: src/tables/sales/SalesOrderShipmentTable.tsx:168 +#: src/tables/sales/SalesOrderShipmentTable.tsx:189 msgid "Shipment Date" msgstr "Fecha de Envío" @@ -8366,108 +8464,82 @@ msgstr "Fecha de Envío" #~ msgid "Assigned Items" #~ msgstr "Assigned Items" -#: src/pages/sales/SalesOrderShipmentDetail.tsx:216 -#: src/tables/sales/SalesOrderShipmentTable.tsx:172 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:214 +#: src/tables/sales/SalesOrderShipmentTable.tsx:193 msgid "Delivery Date" msgstr "" -#: src/pages/sales/SalesOrderShipmentDetail.tsx:255 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:253 msgid "Shipment Details" msgstr "Detalles del envío" -#: src/pages/sales/SalesOrderShipmentDetail.tsx:294 -#: src/pages/sales/SalesOrderShipmentDetail.tsx:438 -#: src/tables/sales/SalesOrderShipmentTable.tsx:90 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:292 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:406 +#: src/tables/sales/SalesOrderShipmentTable.tsx:97 msgid "Edit Shipment" msgstr "" -#: src/pages/sales/SalesOrderShipmentDetail.tsx:301 -#: src/pages/sales/SalesOrderShipmentDetail.tsx:457 -#: src/tables/sales/SalesOrderShipmentTable.tsx:82 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:299 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:425 +#: src/tables/sales/SalesOrderShipmentTable.tsx:89 msgid "Cancel Shipment" msgstr "Cancelar envío" -#: src/pages/sales/SalesOrderShipmentDetail.tsx:314 -#: src/tables/sales/SalesOrderShipmentTable.tsx:98 -#: src/tables/sales/SalesOrderShipmentTable.tsx:193 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:312 +#: src/tables/sales/SalesOrderShipmentTable.tsx:119 +#: src/tables/sales/SalesOrderShipmentTable.tsx:238 msgid "Complete Shipment" msgstr "" -#: src/pages/sales/SalesOrderShipmentDetail.tsx:326 -#: src/pages/sales/SalesOrderShipmentDetail.tsx:328 -msgid "Check Shipment" -msgstr "" - -#: src/pages/sales/SalesOrderShipmentDetail.tsx:329 -msgid "Marking the shipment as checked indicates that you have verified that all items included in this shipment are correct" -msgstr "" - #: src/pages/sales/SalesOrderShipmentDetail.tsx:339 -msgid "Shipment marked as checked" -msgstr "" - -#: src/pages/sales/SalesOrderShipmentDetail.tsx:346 -#: src/pages/sales/SalesOrderShipmentDetail.tsx:348 -msgid "Uncheck Shipment" -msgstr "" - -#: src/pages/sales/SalesOrderShipmentDetail.tsx:349 -msgid "Marking the shipment as unchecked indicates that the shipment requires further verification" -msgstr "" - -#: src/pages/sales/SalesOrderShipmentDetail.tsx:359 -msgid "Shipment marked as unchecked" -msgstr "" - -#: src/pages/sales/SalesOrderShipmentDetail.tsx:371 #: src/tables/part/PartPurchaseOrdersTable.tsx:122 msgid "Pending" msgstr "" -#: src/pages/sales/SalesOrderShipmentDetail.tsx:377 -#: src/tables/sales/SalesOrderShipmentTable.tsx:147 -#: src/tables/sales/SalesOrderShipmentTable.tsx:254 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:345 +#: src/tables/sales/SalesOrderShipmentTable.tsx:168 +#: src/tables/sales/SalesOrderShipmentTable.tsx:299 msgid "Checked" msgstr "" -#: src/pages/sales/SalesOrderShipmentDetail.tsx:383 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:351 msgid "Not Checked" msgstr "" -#: src/pages/sales/SalesOrderShipmentDetail.tsx:389 -#: src/tables/sales/SalesOrderShipmentTable.tsx:154 -#: src/tables/sales/SalesOrderShipmentTable.tsx:259 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:357 +#: src/tables/sales/SalesOrderShipmentTable.tsx:175 +#: src/tables/sales/SalesOrderShipmentTable.tsx:304 msgid "Shipped" msgstr "" -#: src/pages/sales/SalesOrderShipmentDetail.tsx:395 -#: src/tables/sales/SalesOrderShipmentTable.tsx:161 -#: src/tables/sales/SalesOrderShipmentTable.tsx:264 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:363 +#: src/tables/sales/SalesOrderShipmentTable.tsx:182 +#: src/tables/sales/SalesOrderShipmentTable.tsx:309 #: src/tables/settings/EmailTable.tsx:31 msgid "Delivered" msgstr "" -#: src/pages/sales/SalesOrderShipmentDetail.tsx:410 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:378 msgid "Send Shipment" msgstr "Enviar envío" -#: src/pages/sales/SalesOrderShipmentDetail.tsx:433 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:401 msgid "Shipment Actions" msgstr "Acciones de envío" -#: src/pages/sales/SalesOrderShipmentDetail.tsx:442 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:410 msgid "Check" msgstr "" -#: src/pages/sales/SalesOrderShipmentDetail.tsx:443 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:411 msgid "Mark shipment as checked" msgstr "" -#: src/pages/sales/SalesOrderShipmentDetail.tsx:449 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:417 msgid "Uncheck" msgstr "" -#: src/pages/sales/SalesOrderShipmentDetail.tsx:450 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:418 msgid "Mark shipment as unchecked" msgstr "" @@ -8775,13 +8847,6 @@ msgstr "" msgid "Part is not active" msgstr "Parte no está activa" -#: src/tables/ColumnRenderers.tsx:73 -#: src/tables/bom/BomTable.tsx:657 -#: src/tables/part/PartParameterTable.tsx:227 -#: src/tables/part/PartTestTemplateTable.tsx:258 -msgid "Part is Locked" -msgstr "" - #: src/tables/ColumnRenderers.tsx:78 msgid "You are subscribed to notifications for this part" msgstr "Estás suscrito a las notificaciones de este artículo" @@ -9219,13 +9284,13 @@ msgstr "" #~ msgstr "Show asssmbled items" #: src/tables/bom/BomTable.tsx:315 -#: src/tables/build/BuildLineTable.tsx:276 +#: src/tables/build/BuildLineTable.tsx:277 #: src/tables/part/PartTable.tsx:145 msgid "External stock" msgstr "Existencias externas" #: src/tables/bom/BomTable.tsx:323 -#: src/tables/build/BuildLineTable.tsx:239 +#: src/tables/build/BuildLineTable.tsx:240 msgid "Includes substitute stock" msgstr "Incluye existencias sustitutas" @@ -9234,7 +9299,7 @@ msgstr "Incluye existencias sustitutas" #~ msgstr "Edit Bom Item" #: src/tables/bom/BomTable.tsx:332 -#: src/tables/build/BuildLineTable.tsx:249 +#: src/tables/build/BuildLineTable.tsx:250 #: src/tables/sales/SalesOrderLineItemTable.tsx:166 msgid "Includes variant stock" msgstr "Incluye existencias variantes" @@ -9272,8 +9337,8 @@ msgid "Stock Information" msgstr "" #: src/tables/bom/BomTable.tsx:399 -#: src/tables/build/BuildLineTable.tsx:496 -#: src/tables/build/BuildLineTable.tsx:537 +#: src/tables/build/BuildLineTable.tsx:497 +#: src/tables/build/BuildLineTable.tsx:538 msgid "Consumable item" msgstr "" @@ -9282,7 +9347,7 @@ msgid "No available stock" msgstr "" #: src/tables/bom/BomTable.tsx:420 -#: src/tables/build/BuildLineTable.tsx:213 +#: src/tables/build/BuildLineTable.tsx:214 msgid "Show testable items" msgstr "" @@ -9291,7 +9356,7 @@ msgid "Show trackable items" msgstr "" #: src/tables/bom/BomTable.tsx:430 -#: src/tables/build/BuildLineTable.tsx:208 +#: src/tables/build/BuildLineTable.tsx:209 msgid "Show assembled items" msgstr "" @@ -9335,7 +9400,7 @@ msgstr "" #: src/tables/bom/BomTable.tsx:464 #: src/tables/bom/UsedInTable.tsx:85 -#: src/tables/build/BuildLineTable.tsx:202 +#: src/tables/build/BuildLineTable.tsx:203 msgid "Optional" msgstr "" @@ -9345,7 +9410,7 @@ msgid "Show optional items" msgstr "" #: src/tables/bom/BomTable.tsx:469 -#: src/tables/build/BuildLineTable.tsx:197 +#: src/tables/build/BuildLineTable.tsx:198 msgid "Consumable" msgstr "" @@ -9420,6 +9485,7 @@ msgid "Add a single BOM item" msgstr "" #: src/tables/bom/BomTable.tsx:637 +#: src/tables/general/ParameterTable.tsx:206 #: src/tables/part/PartTable.tsx:546 msgid "Import from File" msgstr "" @@ -9433,8 +9499,8 @@ msgid "Bill of materials cannot be edited, as the part is locked" msgstr "" #: src/tables/bom/UsedInTable.tsx:34 -#: src/tables/build/BuildLineTable.tsx:207 -#: src/tables/part/ParametricPartTable.tsx:364 +#: src/tables/build/BuildLineTable.tsx:208 +#: src/tables/part/ParametricPartTable.tsx:29 #: src/tables/part/PartBuildAllocationsTable.tsx:60 #: src/tables/part/PartTable.tsx:209 #: src/tables/stock/StockItemTable.tsx:333 @@ -9455,11 +9521,11 @@ msgstr "" msgid "Show trackable assemblies" msgstr "" -#: src/tables/build/BuildAllocatedStockTable.tsx:67 +#: src/tables/build/BuildAllocatedStockTable.tsx:64 msgid "Allocated to Output" msgstr "" -#: src/tables/build/BuildAllocatedStockTable.tsx:68 +#: src/tables/build/BuildAllocatedStockTable.tsx:65 msgid "Show items allocated to a build output" msgstr "" @@ -9472,50 +9538,68 @@ msgstr "" #~ msgid "Include orders for part variants" #~ msgstr "Include orders for part variants" -#: src/tables/build/BuildAllocatedStockTable.tsx:97 +#: src/tables/build/BuildAllocatedStockTable.tsx:94 #: src/tables/part/PartBuildAllocationsTable.tsx:84 #: src/tables/part/PartPurchaseOrdersTable.tsx:132 #: src/tables/part/PartSalesAllocationsTable.tsx:69 #: src/tables/sales/SalesOrderAllocationTable.tsx:122 -#: src/tables/sales/SalesOrderShipmentTable.tsx:130 +#: src/tables/sales/SalesOrderShipmentTable.tsx:151 msgid "Order Status" msgstr "" +#: src/tables/build/BuildAllocatedStockTable.tsx:164 +#: src/tables/build/BuildLineTable.tsx:651 +msgid "Edit Stock Allocation" +msgstr "Editar asignación de existencias" + #: src/tables/build/BuildAllocatedStockTable.tsx:164 #~ msgid "Edit Build Item" #~ msgstr "Edit Build Item" -#: src/tables/build/BuildAllocatedStockTable.tsx:167 -#: src/tables/build/BuildLineTable.tsx:650 -msgid "Edit Stock Allocation" -msgstr "Editar asignación de existencias" - #: src/tables/build/BuildAllocatedStockTable.tsx:174 #~ msgid "Delete Build Item" #~ msgstr "Delete Build Item" +#: src/tables/build/BuildAllocatedStockTable.tsx:177 +#: src/tables/build/BuildLineTable.tsx:664 +#: src/tables/sales/SalesOrderAllocationTable.tsx:218 +msgid "Remove Allocated Stock" +msgstr "" + #: src/tables/build/BuildAllocatedStockTable.tsx:180 #: src/tables/build/BuildLineTable.tsx:663 -msgid "Delete Stock Allocation" -msgstr "Borrar asignación de existencias" +#~ msgid "Delete Stock Allocation" +#~ msgstr "Delete Stock Allocation" -#: src/tables/build/BuildAllocatedStockTable.tsx:239 +#: src/tables/build/BuildAllocatedStockTable.tsx:182 +#: src/tables/build/BuildLineTable.tsx:669 +#: src/tables/sales/SalesOrderAllocationTable.tsx:221 +msgid "Are you sure you want to remove this allocated stock from the order?" +msgstr "" + +#: src/tables/build/BuildAllocatedStockTable.tsx:242 msgid "Consume" msgstr "" +#: src/tables/build/BuildAllocatedStockTable.tsx:259 +#: src/tables/build/BuildLineTable.tsx:112 +#: src/tables/sales/SalesOrderAllocationTable.tsx:248 +msgid "Remove allocated stock" +msgstr "" + #: src/tables/build/BuildLineTable.tsx:59 #~ msgid "Show lines with available stock" #~ msgstr "Show lines with available stock" -#: src/tables/build/BuildLineTable.tsx:120 +#: src/tables/build/BuildLineTable.tsx:121 msgid "View Stock Item" msgstr "Ver artículo de existencias" -#: src/tables/build/BuildLineTable.tsx:183 +#: src/tables/build/BuildLineTable.tsx:184 msgid "Show fully allocated lines" msgstr "" -#: src/tables/build/BuildLineTable.tsx:188 +#: src/tables/build/BuildLineTable.tsx:189 msgid "Show fully consumed lines" msgstr "" @@ -9523,124 +9607,124 @@ msgstr "" #~ msgid "Show allocated lines" #~ msgstr "Show allocated lines" -#: src/tables/build/BuildLineTable.tsx:193 +#: src/tables/build/BuildLineTable.tsx:194 msgid "Show items with sufficient available stock" msgstr "" -#: src/tables/build/BuildLineTable.tsx:198 +#: src/tables/build/BuildLineTable.tsx:199 msgid "Show consumable lines" msgstr "" -#: src/tables/build/BuildLineTable.tsx:203 +#: src/tables/build/BuildLineTable.tsx:204 msgid "Show optional lines" msgstr "" -#: src/tables/build/BuildLineTable.tsx:212 +#: src/tables/build/BuildLineTable.tsx:213 #: src/tables/part/PartTable.tsx:233 msgid "Testable" msgstr "" -#: src/tables/build/BuildLineTable.tsx:217 +#: src/tables/build/BuildLineTable.tsx:218 #: src/tables/stock/StockItemTable.tsx:388 msgid "Tracked" msgstr "" -#: src/tables/build/BuildLineTable.tsx:218 +#: src/tables/build/BuildLineTable.tsx:219 msgid "Show tracked lines" msgstr "" -#: src/tables/build/BuildLineTable.tsx:223 +#: src/tables/build/BuildLineTable.tsx:224 msgid "Show items with stock on order" msgstr "" -#: src/tables/build/BuildLineTable.tsx:258 +#: src/tables/build/BuildLineTable.tsx:259 #: src/tables/sales/SalesOrderLineItemTable.tsx:172 msgid "In production" msgstr "" -#: src/tables/build/BuildLineTable.tsx:286 +#: src/tables/build/BuildLineTable.tsx:287 msgid "Insufficient stock" msgstr "" -#: src/tables/build/BuildLineTable.tsx:302 +#: src/tables/build/BuildLineTable.tsx:303 #: src/tables/sales/SalesOrderLineItemTable.tsx:160 #: src/tables/stock/StockItemTable.tsx:191 msgid "No stock available" msgstr "" -#: src/tables/build/BuildLineTable.tsx:375 +#: src/tables/build/BuildLineTable.tsx:376 msgid "Gets Inherited" msgstr "" -#: src/tables/build/BuildLineTable.tsx:388 +#: src/tables/build/BuildLineTable.tsx:389 msgid "Unit Quantity" msgstr "" -#: src/tables/build/BuildLineTable.tsx:415 +#: src/tables/build/BuildLineTable.tsx:416 msgid "Setup Quantity" msgstr "" -#: src/tables/build/BuildLineTable.tsx:424 +#: src/tables/build/BuildLineTable.tsx:425 msgid "Attrition" msgstr "" -#: src/tables/build/BuildLineTable.tsx:432 +#: src/tables/build/BuildLineTable.tsx:433 msgid "Rounding Multiple" msgstr "" -#: src/tables/build/BuildLineTable.tsx:441 +#: src/tables/build/BuildLineTable.tsx:442 msgid "BOM Information" msgstr "" -#: src/tables/build/BuildLineTable.tsx:515 +#: src/tables/build/BuildLineTable.tsx:516 #: src/tables/part/PartBuildAllocationsTable.tsx:102 msgid "Fully allocated" msgstr "" -#: src/tables/build/BuildLineTable.tsx:563 +#: src/tables/build/BuildLineTable.tsx:564 #: src/tables/sales/SalesOrderLineItemTable.tsx:311 msgid "Create Build Order" msgstr "" -#: src/tables/build/BuildLineTable.tsx:592 +#: src/tables/build/BuildLineTable.tsx:593 msgid "Auto allocation in progress" msgstr "Auto asignación en progreso" -#: src/tables/build/BuildLineTable.tsx:595 -#: src/tables/build/BuildLineTable.tsx:802 +#: src/tables/build/BuildLineTable.tsx:596 +#: src/tables/build/BuildLineTable.tsx:809 msgid "Auto Allocate Stock" msgstr "Autoasignar stock" -#: src/tables/build/BuildLineTable.tsx:596 +#: src/tables/build/BuildLineTable.tsx:597 msgid "Automatically allocate stock to this build according to the selected options" msgstr "Asignar stock automáticamente a esta construcción de acuerdo a las opciones seleccionadas" -#: src/tables/build/BuildLineTable.tsx:616 -#: src/tables/build/BuildLineTable.tsx:630 -#: src/tables/build/BuildLineTable.tsx:751 -#: src/tables/build/BuildLineTable.tsx:852 +#: src/tables/build/BuildLineTable.tsx:617 +#: src/tables/build/BuildLineTable.tsx:631 +#: src/tables/build/BuildLineTable.tsx:758 +#: src/tables/build/BuildLineTable.tsx:859 #: src/tables/build/BuildOutputTable.tsx:355 #: src/tables/build/BuildOutputTable.tsx:360 msgid "Deallocate Stock" msgstr "Deshacer asignación de existencias" -#: src/tables/build/BuildLineTable.tsx:632 +#: src/tables/build/BuildLineTable.tsx:633 msgid "Deallocate all untracked stock for this build order" msgstr "Deshacer asignación de todo el stock sin seguimiento para este pedido" -#: src/tables/build/BuildLineTable.tsx:634 +#: src/tables/build/BuildLineTable.tsx:635 msgid "Deallocate stock from the selected line item" msgstr "Deshacer asignación de existencias de la línea de artículo seleccionada" -#: src/tables/build/BuildLineTable.tsx:638 +#: src/tables/build/BuildLineTable.tsx:639 msgid "Stock has been deallocated" msgstr "Deshecha asignación de existencias" -#: src/tables/build/BuildLineTable.tsx:771 +#: src/tables/build/BuildLineTable.tsx:778 msgid "Build Stock" msgstr "" -#: src/tables/build/BuildLineTable.tsx:784 +#: src/tables/build/BuildLineTable.tsx:791 #: src/tables/sales/SalesOrderLineItemTable.tsx:487 msgid "View Part" msgstr "Ver pieza" @@ -9739,7 +9823,7 @@ msgid "Serialize Build Output" msgstr "" #: src/tables/build/BuildOutputTable.tsx:405 -#: src/tables/part/PartTestResultTable.tsx:310 +#: src/tables/part/PartTestResultTable.tsx:318 #: src/tables/stock/StockItemTable.tsx:328 msgid "Filter by stock status" msgstr "" @@ -9964,8 +10048,8 @@ msgid "View Item" msgstr "" #: src/tables/general/ExtraLineItemTable.tsx:95 -#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:299 -#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:403 +#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:300 +#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:405 #: src/tables/sales/ReturnOrderLineItemTable.tsx:83 #: src/tables/sales/ReturnOrderLineItemTable.tsx:187 #: src/tables/sales/SalesOrderLineItemTable.tsx:252 @@ -9974,14 +10058,14 @@ msgid "Add Line Item" msgstr "Añadir Artículo de Línea" #: src/tables/general/ExtraLineItemTable.tsx:108 -#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:320 +#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:322 #: src/tables/sales/ReturnOrderLineItemTable.tsx:96 #: src/tables/sales/SalesOrderLineItemTable.tsx:271 msgid "Edit Line Item" msgstr "Editar artículo de línea" #: src/tables/general/ExtraLineItemTable.tsx:117 -#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:329 +#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:331 #: src/tables/sales/ReturnOrderLineItemTable.tsx:105 #: src/tables/sales/SalesOrderLineItemTable.tsx:280 msgid "Delete Line Item" @@ -9991,6 +10075,137 @@ msgstr "Borrar artículo de línea" msgid "Add Extra Line Item" msgstr "" +#: src/tables/general/ParameterTable.tsx:88 +msgid "Internal Units" +msgstr "" + +#: src/tables/general/ParameterTable.tsx:108 +#: src/tables/general/ParameterTable.tsx:123 +msgid "Updated By" +msgstr "" + +#: src/tables/general/ParameterTable.tsx:118 +msgid "Show parameters for enabled templates" +msgstr "" + +#: src/tables/general/ParameterTable.tsx:124 +msgid "Filter by user who last updated the parameter" +msgstr "" + +#: src/tables/general/ParameterTable.tsx:154 +msgid "Import Parameters" +msgstr "" + +#: src/tables/general/ParameterTable.tsx:164 +#: src/tables/general/ParametricDataTable.tsx:261 +#: src/tables/general/ParametricDataTable.tsx:392 +msgid "Add Parameter" +msgstr "" + +#: src/tables/general/ParameterTable.tsx:175 +#: src/tables/general/ParameterTable.tsx:222 +#: src/tables/general/ParametricDataTable.tsx:285 +msgid "Edit Parameter" +msgstr "" + +#: src/tables/general/ParameterTable.tsx:183 +#: src/tables/general/ParameterTable.tsx:230 +msgid "Delete Parameter" +msgstr "" + +#: src/tables/general/ParameterTable.tsx:191 +msgid "Add Parameters" +msgstr "" + +#: src/tables/general/ParameterTable.tsx:197 +msgid "Create Parameter" +msgstr "" + +#: src/tables/general/ParameterTable.tsx:199 +msgid "Create a new parameter" +msgstr "" + +#: src/tables/general/ParameterTable.tsx:208 +msgid "Import parameters from a file" +msgstr "" + +#: src/tables/general/ParameterTemplateTable.tsx:48 +#: src/tables/general/ParameterTemplateTable.tsx:197 +msgid "Add Parameter Template" +msgstr "" + +#: src/tables/general/ParameterTemplateTable.tsx:64 +msgid "Duplicate Parameter Template" +msgstr "" + +#: src/tables/general/ParameterTemplateTable.tsx:78 +msgid "Delete Parameter Template" +msgstr "" + +#: src/tables/general/ParameterTemplateTable.tsx:85 +msgid "Edit Parameter Template" +msgstr "" + +#: src/tables/general/ParameterTemplateTable.tsx:138 +msgid "Checkbox" +msgstr "" + +#: src/tables/general/ParameterTemplateTable.tsx:139 +msgid "Show checkbox templates" +msgstr "" + +#: src/tables/general/ParameterTemplateTable.tsx:143 +msgid "Has choices" +msgstr "" + +#: src/tables/general/ParameterTemplateTable.tsx:144 +msgid "Show templates with choices" +msgstr "" + +#: src/tables/general/ParameterTemplateTable.tsx:148 +#: src/tables/part/PartTable.tsx:245 +msgid "Has Units" +msgstr "" + +#: src/tables/general/ParameterTemplateTable.tsx:149 +msgid "Show templates with units" +msgstr "" + +#: src/tables/general/ParameterTemplateTable.tsx:154 +msgid "Show enabled templates" +msgstr "" + +#: src/tables/general/ParameterTemplateTable.tsx:158 +#: src/tables/settings/ImportSessionTable.tsx:111 +#: src/tables/settings/TemplateTable.tsx:368 +msgid "Model Type" +msgstr "" + +#: src/tables/general/ParameterTemplateTable.tsx:159 +msgid "Filter by model type" +msgstr "" + +#: src/tables/general/ParametricDataTable.tsx:79 +msgid "Click to edit" +msgstr "Clicar para editar" + +#: src/tables/general/ParametricDataTableFilters.tsx:36 +msgid "True" +msgstr "" + +#: src/tables/general/ParametricDataTableFilters.tsx:37 +msgid "False" +msgstr "" + +#: src/tables/general/ParametricDataTableFilters.tsx:47 +#: src/tables/general/ParametricDataTableFilters.tsx:80 +msgid "Select a choice" +msgstr "" + +#: src/tables/general/ParametricDataTableFilters.tsx:100 +msgid "Enter a value" +msgstr "" + #: src/tables/machine/MachineListTable.tsx:133 msgid "Machine restarted" msgstr "Máquina reiniciada" @@ -10071,7 +10286,7 @@ msgid "Initialized" msgstr "Inicializado" #: src/tables/machine/MachineListTable.tsx:410 -#: src/tables/machine/MachineTypeTable.tsx:307 +#: src/tables/machine/MachineTypeTable.tsx:305 msgid "No errors reported" msgstr "No hay errores reportados" @@ -10132,15 +10347,15 @@ msgstr "Controlador integrado" #~ msgid "Machine type information" #~ msgstr "Machine type information" -#: src/tables/machine/MachineTypeTable.tsx:128 +#: src/tables/machine/MachineTypeTable.tsx:126 msgid "Not Found" msgstr "No Encontrado" -#: src/tables/machine/MachineTypeTable.tsx:131 +#: src/tables/machine/MachineTypeTable.tsx:129 msgid "Machine type not found." msgstr "" -#: src/tables/machine/MachineTypeTable.tsx:141 +#: src/tables/machine/MachineTypeTable.tsx:139 msgid "Machine Type Information" msgstr "Información del tipo de máquina" @@ -10148,34 +10363,34 @@ msgstr "Información del tipo de máquina" #~ msgid "Available drivers" #~ msgstr "Available drivers" -#: src/tables/machine/MachineTypeTable.tsx:156 -#: src/tables/machine/MachineTypeTable.tsx:255 +#: src/tables/machine/MachineTypeTable.tsx:154 +#: src/tables/machine/MachineTypeTable.tsx:253 msgid "Slug" msgstr "" -#: src/tables/machine/MachineTypeTable.tsx:167 -#: src/tables/machine/MachineTypeTable.tsx:276 +#: src/tables/machine/MachineTypeTable.tsx:165 +#: src/tables/machine/MachineTypeTable.tsx:274 msgid "Provider plugin" msgstr "" -#: src/tables/machine/MachineTypeTable.tsx:179 -#: src/tables/machine/MachineTypeTable.tsx:288 +#: src/tables/machine/MachineTypeTable.tsx:177 +#: src/tables/machine/MachineTypeTable.tsx:286 msgid "Provider file" msgstr "" -#: src/tables/machine/MachineTypeTable.tsx:194 +#: src/tables/machine/MachineTypeTable.tsx:192 msgid "Available Drivers" msgstr "Controladores Disponibles" -#: src/tables/machine/MachineTypeTable.tsx:234 +#: src/tables/machine/MachineTypeTable.tsx:232 msgid "Machine driver not found." msgstr "" -#: src/tables/machine/MachineTypeTable.tsx:242 +#: src/tables/machine/MachineTypeTable.tsx:240 msgid "Machine driver information" msgstr "" -#: src/tables/machine/MachineTypeTable.tsx:262 +#: src/tables/machine/MachineTypeTable.tsx:260 msgid "Machine type" msgstr "" @@ -10187,15 +10402,15 @@ msgstr "" #~ msgid "Machine driver detail" #~ msgstr "Machine driver detail" -#: src/tables/machine/MachineTypeTable.tsx:362 +#: src/tables/machine/MachineTypeTable.tsx:360 msgid "Builtin type" msgstr "" -#: src/tables/machine/MachineTypeTable.tsx:371 +#: src/tables/machine/MachineTypeTable.tsx:369 msgid "Machine Type Detail" msgstr "Detalle del tipo de máquina" -#: src/tables/machine/MachineTypeTable.tsx:381 +#: src/tables/machine/MachineTypeTable.tsx:379 msgid "Machine Driver Detail" msgstr "Detalle del controlador de la máquina" @@ -10213,52 +10428,31 @@ msgstr "Notificación" msgid "Message" msgstr "Mensaje" -#: src/tables/part/ParametricPartTable.tsx:78 -msgid "Click to edit" -msgstr "Clicar para editar" +#: src/tables/part/ParametricPartTable.tsx:20 +msgid "Show active parts" +msgstr "Mostrar piezas activas" + +#: src/tables/part/ParametricPartTable.tsx:25 +msgid "Show locked parts" +msgstr "Mostrar piezas bloqueadas" + +#: src/tables/part/ParametricPartTable.tsx:30 +msgid "Show assembly parts" +msgstr "" #: src/tables/part/ParametricPartTable.tsx:82 #~ msgid "Edit parameter" #~ msgstr "Edit parameter" #: src/tables/part/ParametricPartTable.tsx:244 -msgid "Add Part Parameter" -msgstr "Añadir parámetro de pieza" +#~ msgid "Add Part Parameter" +#~ msgstr "Add Part Parameter" #: src/tables/part/ParametricPartTable.tsx:258 #: src/tables/part/PartParameterTable.tsx:164 #: src/tables/part/PartParameterTable.tsx:187 -msgid "Edit Part Parameter" -msgstr "Editar parámetro de pieza" - -#: src/tables/part/ParametricPartTable.tsx:355 -msgid "Show active parts" -msgstr "Mostrar piezas activas" - -#: src/tables/part/ParametricPartTable.tsx:360 -msgid "Show locked parts" -msgstr "Mostrar piezas bloqueadas" - -#: src/tables/part/ParametricPartTable.tsx:365 -msgid "Show assembly parts" -msgstr "" - -#: src/tables/part/ParametricPartTableFilters.tsx:36 -msgid "True" -msgstr "" - -#: src/tables/part/ParametricPartTableFilters.tsx:37 -msgid "False" -msgstr "" - -#: src/tables/part/ParametricPartTableFilters.tsx:47 -#: src/tables/part/ParametricPartTableFilters.tsx:80 -msgid "Select a choice" -msgstr "" - -#: src/tables/part/ParametricPartTableFilters.tsx:100 -msgid "Enter a value" -msgstr "" +#~ msgid "Edit Part Parameter" +#~ msgstr "Edit Part Parameter" #: src/tables/part/PartBuildAllocationsTable.tsx:64 msgid "Assembly IPN" @@ -10273,7 +10467,7 @@ msgid "Required Stock" msgstr "Stock requerido" #: src/tables/part/PartBuildAllocationsTable.tsx:124 -#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:381 +#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:383 msgid "View Build Order" msgstr "Ver orden de construcción" @@ -10332,85 +10526,22 @@ msgstr "Editar parámetro de Categoría" msgid "Delete Category Parameter" msgstr "Eliminar parámetro de Categoría" -#: src/tables/part/PartCategoryTemplateTable.tsx:87 -msgid "Parameter Template" -msgstr "Plantilla de parámetro" - #: src/tables/part/PartCategoryTemplateTable.tsx:93 #~ msgid "[{0}]" #~ msgstr "[{0}]" -#: src/tables/part/PartParameterTable.tsx:108 -msgid "Internal Units" -msgstr "" - -#: src/tables/part/PartParameterTable.tsx:128 -#: src/tables/part/PartParameterTable.tsx:138 -msgid "Updated By" -msgstr "" - -#: src/tables/part/PartParameterTable.tsx:139 -msgid "Filter by user who last updated the parameter" -msgstr "" - #: src/tables/part/PartParameterTable.tsx:148 -msgid "New Part Parameter" -msgstr "" +#~ msgid "New Part Parameter" +#~ msgstr "New Part Parameter" #: src/tables/part/PartParameterTable.tsx:173 #: src/tables/part/PartParameterTable.tsx:195 -msgid "Delete Part Parameter" -msgstr "" +#~ msgid "Delete Part Parameter" +#~ msgstr "Delete Part Parameter" #: src/tables/part/PartParameterTable.tsx:213 -msgid "Add parameter" -msgstr "" - -#: src/tables/part/PartParameterTable.tsx:232 -msgid "Part parameters cannot be edited, as the part is locked" -msgstr "" - -#: src/tables/part/PartParameterTemplateTable.tsx:36 -msgid "Checkbox" -msgstr "" - -#: src/tables/part/PartParameterTemplateTable.tsx:37 -msgid "Show checkbox templates" -msgstr "" - -#: src/tables/part/PartParameterTemplateTable.tsx:41 -msgid "Has choices" -msgstr "" - -#: src/tables/part/PartParameterTemplateTable.tsx:42 -msgid "Show templates with choices" -msgstr "" - -#: src/tables/part/PartParameterTemplateTable.tsx:46 -#: src/tables/part/PartTable.tsx:245 -msgid "Has Units" -msgstr "" - -#: src/tables/part/PartParameterTemplateTable.tsx:47 -msgid "Show templates with units" -msgstr "" - -#: src/tables/part/PartParameterTemplateTable.tsx:91 -#: src/tables/part/PartParameterTemplateTable.tsx:166 -msgid "Add Parameter Template" -msgstr "" - -#: src/tables/part/PartParameterTemplateTable.tsx:105 -msgid "Duplicate Parameter Template" -msgstr "" - -#: src/tables/part/PartParameterTemplateTable.tsx:117 -msgid "Edit Parameter Template" -msgstr "" - -#: src/tables/part/PartParameterTemplateTable.tsx:128 -msgid "Delete Parameter Template" -msgstr "" +#~ msgid "Add parameter" +#~ msgstr "Add parameter" #: src/tables/part/PartParameterTemplateTable.tsx:141 #~ msgid "Add parameter template" @@ -10430,7 +10561,7 @@ msgid "Show received items" msgstr "" #: src/tables/part/PartSalesAllocationsTable.tsx:90 -#: src/tables/sales/SalesOrderShipmentTable.tsx:218 +#: src/tables/sales/SalesOrderShipmentTable.tsx:263 msgid "View Sales Order" msgstr "Ver orden de venta" @@ -10617,8 +10748,8 @@ msgstr "" #: src/tables/part/PartTestResultTable.tsx:103 #: src/tables/part/PartTestResultTable.tsx:181 -#: src/tables/part/PartTestResultTable.tsx:320 -#: src/tables/part/PartTestResultTable.tsx:334 +#: src/tables/part/PartTestResultTable.tsx:328 +#: src/tables/part/PartTestResultTable.tsx:342 #: src/tables/stock/StockItemTestResultTable.tsx:296 #: src/tables/stock/StockItemTestResultTable.tsx:368 #: src/tables/stock/StockItemTestResultTable.tsx:429 @@ -10643,7 +10774,7 @@ msgstr "" msgid "No Result" msgstr "" -#: src/tables/part/PartTestResultTable.tsx:298 +#: src/tables/part/PartTestResultTable.tsx:306 msgid "Show build outputs currently in production" msgstr "" @@ -11013,36 +11144,45 @@ msgstr "" #~ msgid "Parameter updated" #~ msgstr "Parameter updated" -#: src/tables/purchasing/ManufacturerPartParameterTable.tsx:63 -#: src/tables/purchasing/ManufacturerPartParameterTable.tsx:112 -msgid "Add Parameter" -msgstr "" - #: src/tables/purchasing/ManufacturerPartParameterTable.tsx:73 #~ msgid "Parameter deleted" #~ msgstr "Parameter deleted" -#: src/tables/purchasing/ManufacturerPartParameterTable.tsx:74 -msgid "Edit Parameter" -msgstr "" - #: src/tables/purchasing/ManufacturerPartParameterTable.tsx:74 #~ msgid "Are you sure you want to delete this parameter?" #~ msgstr "Are you sure you want to delete this parameter?" -#: src/tables/purchasing/ManufacturerPartParameterTable.tsx:82 -msgid "Delete Parameter" +#: src/tables/purchasing/ManufacturerPartParametricTable.tsx:34 +#: src/tables/purchasing/ManufacturerPartTable.tsx:82 +#: src/tables/purchasing/SupplierPartTable.tsx:99 +msgid "MPN" +msgstr "" + +#: src/tables/purchasing/ManufacturerPartParametricTable.tsx:44 +#: src/tables/purchasing/ManufacturerPartTable.tsx:134 +#: src/tables/purchasing/SupplierPartTable.tsx:220 +msgid "Active Part" +msgstr "" + +#: src/tables/purchasing/ManufacturerPartParametricTable.tsx:45 +#: src/tables/purchasing/ManufacturerPartTable.tsx:135 +msgid "Show manufacturer parts for active internal parts." +msgstr "" + +#: src/tables/purchasing/ManufacturerPartParametricTable.tsx:50 +#: src/tables/purchasing/ManufacturerPartTable.tsx:140 +msgid "Active Manufacturer" +msgstr "" + +#: src/tables/purchasing/ManufacturerPartParametricTable.tsx:51 +#: src/tables/purchasing/ManufacturerPartTable.tsx:142 +msgid "Show manufacturer parts for active manufacturers." msgstr "" #: src/tables/purchasing/ManufacturerPartTable.tsx:63 #~ msgid "Create Manufacturer Part" #~ msgstr "Create Manufacturer Part" -#: src/tables/purchasing/ManufacturerPartTable.tsx:82 -#: src/tables/purchasing/SupplierPartTable.tsx:99 -msgid "MPN" -msgstr "" - #: src/tables/purchasing/ManufacturerPartTable.tsx:100 #~ msgid "Manufacturer part updated" #~ msgstr "Manufacturer part updated" @@ -11055,25 +11195,8 @@ msgstr "" #~ msgid "Are you sure you want to remove this manufacturer part?" #~ msgstr "Are you sure you want to remove this manufacturer part?" -#: src/tables/purchasing/ManufacturerPartTable.tsx:134 -#: src/tables/purchasing/SupplierPartTable.tsx:220 -msgid "Active Part" -msgstr "" - -#: src/tables/purchasing/ManufacturerPartTable.tsx:135 -msgid "Show manufacturer parts for active internal parts." -msgstr "" - -#: src/tables/purchasing/ManufacturerPartTable.tsx:140 -msgid "Active Manufacturer" -msgstr "" - -#: src/tables/purchasing/ManufacturerPartTable.tsx:142 -msgid "Show manufacturer parts for active manufacturers." -msgstr "" - #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:115 -#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:397 +#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:399 msgid "Import Line Items" msgstr "" @@ -11099,11 +11222,11 @@ msgstr "Mostrar elementos de línea que han sido recibidos" #~ msgid "Add line item" #~ msgstr "Add line item" -#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:350 +#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:352 msgid "Receive line item" msgstr "" -#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:414 +#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:416 msgid "Receive items" msgstr "" @@ -11201,25 +11324,25 @@ msgid "Not shipped" msgstr "No enviado" #: src/tables/sales/SalesOrderAllocationTable.tsx:211 -#: src/tables/sales/SalesOrderAllocationTable.tsx:229 +#: src/tables/sales/SalesOrderAllocationTable.tsx:235 msgid "Edit Allocation" msgstr "Editar Asignación" #: src/tables/sales/SalesOrderAllocationTable.tsx:218 #: src/tables/sales/SalesOrderAllocationTable.tsx:241 -msgid "Delete Allocation" -msgstr "Borrar asignación" +#~ msgid "Delete Allocation" +#~ msgstr "Delete Allocation" -#: src/tables/sales/SalesOrderAllocationTable.tsx:252 -#: src/tables/sales/SalesOrderAllocationTable.tsx:253 +#: src/tables/sales/SalesOrderAllocationTable.tsx:261 +#: src/tables/sales/SalesOrderAllocationTable.tsx:262 msgid "View Shipment" msgstr "Ver envío" -#: src/tables/sales/SalesOrderAllocationTable.tsx:308 +#: src/tables/sales/SalesOrderAllocationTable.tsx:317 msgid "Assign to Shipment" msgstr "" -#: src/tables/sales/SalesOrderAllocationTable.tsx:324 +#: src/tables/sales/SalesOrderAllocationTable.tsx:333 msgid "Assign to shipment" msgstr "" @@ -11259,35 +11382,35 @@ msgstr "" #~ msgid "Delete Shipment" #~ msgstr "Delete Shipment" -#: src/tables/sales/SalesOrderShipmentTable.tsx:72 +#: src/tables/sales/SalesOrderShipmentTable.tsx:79 msgid "Create Shipment" msgstr "" -#: src/tables/sales/SalesOrderShipmentTable.tsx:143 +#: src/tables/sales/SalesOrderShipmentTable.tsx:164 msgid "Items" msgstr "" -#: src/tables/sales/SalesOrderShipmentTable.tsx:203 +#: src/tables/sales/SalesOrderShipmentTable.tsx:248 msgid "Edit shipment" msgstr "Editar envío" -#: src/tables/sales/SalesOrderShipmentTable.tsx:211 +#: src/tables/sales/SalesOrderShipmentTable.tsx:256 msgid "Cancel shipment" msgstr "Cancelar envío" -#: src/tables/sales/SalesOrderShipmentTable.tsx:241 +#: src/tables/sales/SalesOrderShipmentTable.tsx:286 msgid "Add shipment" msgstr "" -#: src/tables/sales/SalesOrderShipmentTable.tsx:255 +#: src/tables/sales/SalesOrderShipmentTable.tsx:300 msgid "Show shipments which have been checked" msgstr "" -#: src/tables/sales/SalesOrderShipmentTable.tsx:260 +#: src/tables/sales/SalesOrderShipmentTable.tsx:305 msgid "Show shipments which have been shipped" msgstr "" -#: src/tables/sales/SalesOrderShipmentTable.tsx:265 +#: src/tables/sales/SalesOrderShipmentTable.tsx:310 msgid "Show shipments which have been delivered" msgstr "" @@ -11621,11 +11744,6 @@ msgstr "" msgid "Imported Rows" msgstr "Filas Importadas" -#: src/tables/settings/ImportSessionTable.tsx:111 -#: src/tables/settings/TemplateTable.tsx:368 -msgid "Model Type" -msgstr "" - #: src/tables/settings/ImportSessionTable.tsx:112 #: src/tables/settings/TemplateTable.tsx:369 msgid "Filter by target model type" diff --git a/src/frontend/src/locales/es_MX/messages.po b/src/frontend/src/locales/es_MX/messages.po index 1889ee6c36..5c3c553c73 100644 --- a/src/frontend/src/locales/es_MX/messages.po +++ b/src/frontend/src/locales/es_MX/messages.po @@ -8,7 +8,7 @@ msgstr "" "Language: es_MX\n" "Project-Id-Version: inventree\n" "Report-Msgid-Bugs-To: \n" -"PO-Revision-Date: 2025-11-19 19:39\n" +"PO-Revision-Date: 2025-12-07 07:36\n" "Last-Translator: \n" "Language-Team: Spanish, Mexico\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" @@ -30,7 +30,7 @@ msgid "Edit" msgstr "Editar" #: lib/components/RowActions.tsx:56 -#: src/components/forms/ApiForm.tsx:735 +#: src/components/forms/ApiForm.tsx:754 #: src/components/items/ActionDropdown.tsx:257 #: src/components/items/RoleTable.tsx:155 #: src/hooks/UseForm.tsx:164 @@ -56,24 +56,24 @@ msgstr "Cancelar" #: lib/components/RowActions.tsx:136 #: src/components/nav/NavigationDrawer.tsx:190 -#: src/forms/PurchaseOrderForms.tsx:802 +#: src/forms/PurchaseOrderForms.tsx:854 #: src/forms/StockForms.tsx:796 #: src/forms/StockForms.tsx:843 -#: src/forms/StockForms.tsx:889 -#: src/forms/StockForms.tsx:928 -#: src/forms/StockForms.tsx:964 -#: src/forms/StockForms.tsx:1050 +#: src/forms/StockForms.tsx:896 +#: src/forms/StockForms.tsx:942 +#: src/forms/StockForms.tsx:980 +#: src/forms/StockForms.tsx:1066 #: src/pages/Index/Settings/AccountSettings/MFASettings.tsx:962 msgid "Actions" msgstr "Acciones" #: lib/components/SearchInput.tsx:34 -#: src/components/forms/fields/RelatedModelField.tsx:408 +#: src/components/forms/fields/RelatedModelField.tsx:479 #: src/components/nav/Header.tsx:169 #: src/components/wizards/ImportPartWizard.tsx:200 #: src/components/wizards/ImportPartWizard.tsx:233 -#: src/pages/Index/Settings/UserSettings.tsx:74 -#: src/pages/part/PartDetail.tsx:1155 +#: src/pages/Index/Settings/UserSettings.tsx:75 +#: src/pages/part/PartDetail.tsx:1176 msgid "Search" msgstr "Buscar" @@ -95,7 +95,7 @@ msgstr "Sí" msgid "No" msgstr "No" -#: lib/enums/ModelInformation.tsx:28 +#: lib/enums/ModelInformation.tsx:29 #: src/components/wizards/OrderPartsWizard.tsx:279 #: src/forms/BuildForms.tsx:332 #: src/forms/BuildForms.tsx:407 @@ -103,208 +103,234 @@ msgstr "No" #: src/forms/BuildForms.tsx:630 #: src/forms/BuildForms.tsx:793 #: src/forms/BuildForms.tsx:896 -#: src/forms/PurchaseOrderForms.tsx:798 +#: src/forms/PurchaseOrderForms.tsx:850 #: src/forms/ReturnOrderForms.tsx:242 -#: src/forms/SalesOrderForms.tsx:305 +#: src/forms/SalesOrderForms.tsx:384 #: src/forms/StockForms.tsx:360 #: src/forms/StockForms.tsx:791 #: src/forms/StockForms.tsx:838 -#: src/forms/StockForms.tsx:884 -#: src/forms/StockForms.tsx:923 -#: src/forms/StockForms.tsx:959 -#: src/forms/StockForms.tsx:1002 -#: src/forms/StockForms.tsx:1046 -#: src/forms/StockForms.tsx:1094 -#: src/forms/StockForms.tsx:1138 -#: src/pages/build/BuildDetail.tsx:200 -#: src/pages/part/PartDetail.tsx:1207 +#: src/forms/StockForms.tsx:891 +#: src/forms/StockForms.tsx:937 +#: src/forms/StockForms.tsx:975 +#: src/forms/StockForms.tsx:1018 +#: src/forms/StockForms.tsx:1062 +#: src/forms/StockForms.tsx:1110 +#: src/forms/StockForms.tsx:1154 +#: src/pages/build/BuildDetail.tsx:201 +#: src/pages/part/PartDetail.tsx:1228 #: src/tables/ColumnRenderers.tsx:91 +#: src/tables/part/PartTestResultTable.tsx:247 #: src/tables/part/RelatedPartTable.tsx:53 #: src/tables/stock/StockTrackingTable.tsx:87 msgid "Part" msgstr "Pieza" -#: lib/enums/ModelInformation.tsx:29 +#: lib/enums/ModelInformation.tsx:30 #: lib/enums/Roles.tsx:35 #: src/components/nav/NavigationDrawer.tsx:70 #: src/defaults/links.tsx:36 -#: src/pages/Index/Settings/SystemSettings.tsx:190 -#: src/pages/part/CategoryDetail.tsx:132 -#: src/pages/part/CategoryDetail.tsx:277 -#: src/pages/part/CategoryDetail.tsx:323 -#: src/pages/part/CategoryDetail.tsx:354 -#: src/pages/part/PartDetail.tsx:965 +#: src/pages/Index/Settings/SystemSettings.tsx:197 +#: src/pages/part/CategoryDetail.tsx:135 +#: src/pages/part/CategoryDetail.tsx:285 +#: src/pages/part/CategoryDetail.tsx:340 +#: src/pages/part/CategoryDetail.tsx:371 +#: src/pages/part/PartDetail.tsx:978 msgid "Parts" msgstr "Piezas" #: lib/enums/ModelInformation.tsx:37 #: src/pages/Index/Settings/AdminCenter/PartParameterPanel.tsx:13 -msgid "Part Parameter Template" -msgstr "Plantilla de parámetro de pieza" +#~ msgid "Part Parameter Template" +#~ msgstr "Part Parameter Template" #: lib/enums/ModelInformation.tsx:38 -msgid "Part Parameter Templates" -msgstr "Plantillas de Parámetros de piezas" +#~ msgid "Part Parameter Templates" +#~ msgstr "Part Parameter Templates" + +#: lib/enums/ModelInformation.tsx:39 +msgid "Parameter" +msgstr "" + +#: lib/enums/ModelInformation.tsx:40 +#: src/components/panels/ParametersPanel.tsx:19 +#: src/components/wizards/ImportPartWizard.tsx:807 +#: src/pages/Index/Settings/AdminCenter/Index.tsx:195 +#: src/pages/Index/Settings/SystemSettings.tsx:191 +#: src/pages/part/PartDetail.tsx:943 +msgid "Parameters" +msgstr "Parámetros" #: lib/enums/ModelInformation.tsx:45 +#: src/tables/part/PartCategoryTemplateTable.tsx:87 +msgid "Parameter Template" +msgstr "" + +#: lib/enums/ModelInformation.tsx:46 +#: src/pages/Index/Settings/AdminCenter/ParameterPanel.tsx:13 +msgid "Parameter Templates" +msgstr "" + +#: lib/enums/ModelInformation.tsx:52 msgid "Part Test Template" msgstr "Plantilla de prueba de pieza" -#: lib/enums/ModelInformation.tsx:46 +#: lib/enums/ModelInformation.tsx:53 msgid "Part Test Templates" msgstr "Plantillas de prueba de piezas" -#: lib/enums/ModelInformation.tsx:52 +#: lib/enums/ModelInformation.tsx:59 #: src/components/wizards/OrderPartsWizard.tsx:290 -#: src/pages/company/SupplierPartDetail.tsx:413 +#: src/pages/company/SupplierPartDetail.tsx:418 #: src/pages/stock/StockDetail.tsx:289 -#: src/tables/build/BuildAllocatedStockTable.tsx:155 +#: src/tables/build/BuildAllocatedStockTable.tsx:152 #: src/tables/part/PartPurchaseOrdersTable.tsx:50 +#: src/tables/purchasing/SupplierPartParametricTable.tsx:29 #: src/tables/purchasing/SupplierPartTable.tsx:83 #: src/tables/stock/StockItemTable.tsx:247 msgid "Supplier Part" msgstr "Pieza de proveedor" -#: lib/enums/ModelInformation.tsx:53 -#: src/pages/purchasing/PurchasingIndex.tsx:92 +#: lib/enums/ModelInformation.tsx:60 +#: src/pages/purchasing/PurchasingIndex.tsx:128 msgid "Supplier Parts" msgstr "Piezas de proveedor" -#: lib/enums/ModelInformation.tsx:61 -#: src/pages/company/ManufacturerPartDetail.tsx:297 -#: src/pages/company/SupplierPartDetail.tsx:161 +#: lib/enums/ModelInformation.tsx:69 +#: src/pages/company/ManufacturerPartDetail.tsx:288 +#: src/pages/company/SupplierPartDetail.tsx:162 #: src/tables/part/PartPurchaseOrdersTable.tsx:56 #: src/tables/stock/StockItemTable.tsx:253 msgid "Manufacturer Part" msgstr "Pieza de fabricante" -#: lib/enums/ModelInformation.tsx:62 -#: src/pages/purchasing/PurchasingIndex.tsx:109 +#: lib/enums/ModelInformation.tsx:70 +#: src/pages/purchasing/PurchasingIndex.tsx:177 msgid "Manufacturer Parts" msgstr "Piezas del fabricante" -#: lib/enums/ModelInformation.tsx:70 -#: src/pages/part/CategoryDetail.tsx:354 +#: lib/enums/ModelInformation.tsx:79 +#: src/pages/part/CategoryDetail.tsx:371 #: src/tables/Filter.tsx:389 msgid "Part Category" msgstr "Categoría de Pieza" -#: lib/enums/ModelInformation.tsx:71 +#: lib/enums/ModelInformation.tsx:80 #: lib/enums/Roles.tsx:37 -#: src/pages/part/CategoryDetail.tsx:271 -#: src/pages/part/CategoryDetail.tsx:345 -#: src/pages/part/PartDetail.tsx:1196 +#: src/pages/part/CategoryDetail.tsx:279 +#: src/pages/part/CategoryDetail.tsx:362 +#: src/pages/part/PartDetail.tsx:1217 msgid "Part Categories" msgstr "Categorías de Pieza" -#: lib/enums/ModelInformation.tsx:79 +#: lib/enums/ModelInformation.tsx:88 #: src/forms/BuildForms.tsx:473 #: src/forms/BuildForms.tsx:633 #: src/forms/BuildForms.tsx:794 -#: src/forms/SalesOrderForms.tsx:307 +#: src/forms/SalesOrderForms.tsx:386 #: src/pages/stock/StockDetail.tsx:1005 -#: src/tables/part/PartTestResultTable.tsx:248 +#: src/tables/part/PartTestResultTable.tsx:256 #: src/tables/stock/StockTrackingTable.tsx:48 #: src/tables/stock/StockTrackingTable.tsx:55 msgid "Stock Item" msgstr "Artículo de stock" -#: lib/enums/ModelInformation.tsx:80 +#: lib/enums/ModelInformation.tsx:89 #: lib/enums/Roles.tsx:45 -#: src/pages/company/CompanyDetail.tsx:210 -#: src/pages/part/CategoryDetail.tsx:291 +#: src/pages/company/CompanyDetail.tsx:211 +#: src/pages/part/CategoryDetail.tsx:314 #: src/pages/part/PartStockHistoryDetail.tsx:101 #: src/pages/stock/LocationDetail.tsx:121 #: src/pages/stock/LocationDetail.tsx:180 msgid "Stock Items" msgstr "Artículos de Stock" -#: lib/enums/ModelInformation.tsx:88 +#: lib/enums/ModelInformation.tsx:98 #: lib/enums/Roles.tsx:47 #: src/pages/stock/LocationDetail.tsx:420 msgid "Stock Location" msgstr "Ubicación de almacén" -#: lib/enums/ModelInformation.tsx:89 +#: lib/enums/ModelInformation.tsx:99 #: src/pages/stock/LocationDetail.tsx:174 #: src/pages/stock/LocationDetail.tsx:412 #: src/pages/stock/StockDetail.tsx:996 msgid "Stock Locations" msgstr "Ubicaciones de almacén" -#: lib/enums/ModelInformation.tsx:97 +#: lib/enums/ModelInformation.tsx:108 msgid "Stock Location Type" msgstr "Tipos de ubicación de existencias" -#: lib/enums/ModelInformation.tsx:98 +#: lib/enums/ModelInformation.tsx:109 msgid "Stock Location Types" msgstr "Tipos de ubicaciones de existencias" -#: lib/enums/ModelInformation.tsx:103 -#: src/pages/Index/Settings/SystemSettings.tsx:248 -#: src/pages/part/PartDetail.tsx:911 +#: lib/enums/ModelInformation.tsx:114 +#: src/pages/Index/Settings/SystemSettings.tsx:254 +#: src/pages/part/PartDetail.tsx:900 msgid "Stock History" msgstr "Histórico de existencias" -#: lib/enums/ModelInformation.tsx:104 +#: lib/enums/ModelInformation.tsx:115 msgid "Stock Histories" msgstr "Históricos de existencias" -#: lib/enums/ModelInformation.tsx:109 +#: lib/enums/ModelInformation.tsx:120 msgid "Build" msgstr "Construcción" -#: lib/enums/ModelInformation.tsx:110 +#: lib/enums/ModelInformation.tsx:121 msgid "Builds" msgstr "Construcciones" -#: lib/enums/ModelInformation.tsx:118 +#: lib/enums/ModelInformation.tsx:130 msgid "Build Line" msgstr "Línea de construcción" -#: lib/enums/ModelInformation.tsx:119 +#: lib/enums/ModelInformation.tsx:131 msgid "Build Lines" msgstr "Líneas de construcción" -#: lib/enums/ModelInformation.tsx:126 +#: lib/enums/ModelInformation.tsx:138 msgid "Build Item" msgstr "Construir elemento" -#: lib/enums/ModelInformation.tsx:127 +#: lib/enums/ModelInformation.tsx:139 msgid "Build Items" msgstr "Construir elementos" -#: lib/enums/ModelInformation.tsx:132 -#: src/pages/company/CompanyDetail.tsx:340 +#: lib/enums/ModelInformation.tsx:144 +#: src/pages/company/CompanyDetail.tsx:345 #: src/tables/company/CompanyTable.tsx:47 #: src/tables/company/ContactTable.tsx:67 +#: src/tables/company/ParametricCompanyTable.tsx:18 msgid "Company" msgstr "Empresa" -#: lib/enums/ModelInformation.tsx:133 +#: lib/enums/ModelInformation.tsx:145 msgid "Companies" msgstr "Empresas" -#: lib/enums/ModelInformation.tsx:140 -#: src/pages/build/BuildDetail.tsx:316 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:253 -#: src/pages/sales/ReturnOrderDetail.tsx:231 -#: src/pages/sales/SalesOrderDetail.tsx:224 +#: lib/enums/ModelInformation.tsx:152 +#: src/pages/build/BuildDetail.tsx:317 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:254 +#: src/pages/sales/ReturnOrderDetail.tsx:232 +#: src/pages/sales/SalesOrderDetail.tsx:225 #: src/tables/ColumnRenderers.tsx:362 #: src/tables/Filter.tsx:286 #: src/tables/TableHoverCard.tsx:101 msgid "Project Code" msgstr "Código de proyecto" -#: lib/enums/ModelInformation.tsx:141 +#: lib/enums/ModelInformation.tsx:153 #: src/pages/Index/Settings/AdminCenter/Index.tsx:172 msgid "Project Codes" msgstr "Códigos de proyecto" -#: lib/enums/ModelInformation.tsx:147 +#: lib/enums/ModelInformation.tsx:159 #: src/components/wizards/OrderPartsWizard.tsx:338 #: src/pages/part/pricing/PurchaseHistoryPanel.tsx:33 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:550 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:555 #: src/pages/stock/StockDetail.tsx:352 #: src/tables/part/PartPurchaseOrdersTable.tsx:32 #: src/tables/stock/StockItemTable.tsx:239 @@ -312,117 +338,117 @@ msgstr "Códigos de proyecto" msgid "Purchase Order" msgstr "Pedido de compra" -#: lib/enums/ModelInformation.tsx:148 +#: lib/enums/ModelInformation.tsx:160 #: lib/enums/Roles.tsx:39 #: src/defaults/actions.tsx:104 -#: src/pages/Index/Settings/SystemSettings.tsx:283 -#: src/pages/company/CompanyDetail.tsx:203 -#: src/pages/company/SupplierPartDetail.tsx:266 -#: src/pages/part/PartDetail.tsx:875 -#: src/pages/purchasing/PurchasingIndex.tsx:60 +#: src/pages/Index/Settings/SystemSettings.tsx:289 +#: src/pages/company/CompanyDetail.tsx:204 +#: src/pages/company/SupplierPartDetail.tsx:267 +#: src/pages/part/PartDetail.tsx:864 +#: src/pages/purchasing/PurchasingIndex.tsx:66 msgid "Purchase Orders" msgstr "Órdenes de compra" -#: lib/enums/ModelInformation.tsx:156 +#: lib/enums/ModelInformation.tsx:169 msgid "Purchase Order Line" msgstr "Línea de pedido de compra" -#: lib/enums/ModelInformation.tsx:157 +#: lib/enums/ModelInformation.tsx:170 msgid "Purchase Order Lines" msgstr "Líneas de pedido de compra" -#: lib/enums/ModelInformation.tsx:162 -#: src/pages/build/BuildDetail.tsx:289 +#: lib/enums/ModelInformation.tsx:175 +#: src/pages/build/BuildDetail.tsx:290 #: src/pages/part/pricing/SaleHistoryPanel.tsx:24 -#: src/pages/sales/SalesOrderDetail.tsx:614 -#: src/pages/sales/SalesOrderShipmentDetail.tsx:105 -#: src/pages/sales/SalesOrderShipmentDetail.tsx:478 +#: src/pages/sales/SalesOrderDetail.tsx:619 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:103 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:446 #: src/pages/stock/StockDetail.tsx:361 #: src/tables/part/PartSalesAllocationsTable.tsx:41 #: src/tables/sales/SalesOrderAllocationTable.tsx:110 -#: src/tables/sales/SalesOrderShipmentTable.tsx:122 +#: src/tables/sales/SalesOrderShipmentTable.tsx:143 #: src/tables/stock/StockTrackingTable.tsx:131 msgid "Sales Order" msgstr "Orden de venta" -#: lib/enums/ModelInformation.tsx:163 +#: lib/enums/ModelInformation.tsx:176 #: lib/enums/Roles.tsx:43 #: src/defaults/actions.tsx:114 -#: src/pages/Index/Settings/SystemSettings.tsx:299 -#: src/pages/company/CompanyDetail.tsx:223 -#: src/pages/part/PartDetail.tsx:887 -#: src/pages/sales/SalesIndex.tsx:84 +#: src/pages/Index/Settings/SystemSettings.tsx:305 +#: src/pages/company/CompanyDetail.tsx:224 +#: src/pages/part/PartDetail.tsx:876 +#: src/pages/sales/SalesIndex.tsx:53 msgid "Sales Orders" msgstr "Órdenes de venta" -#: lib/enums/ModelInformation.tsx:171 -#: src/pages/sales/SalesOrderShipmentDetail.tsx:477 +#: lib/enums/ModelInformation.tsx:185 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:445 msgid "Sales Order Shipment" msgstr "Envío de orden de venta" -#: lib/enums/ModelInformation.tsx:172 +#: lib/enums/ModelInformation.tsx:186 msgid "Sales Order Shipments" msgstr "Envíos de pedidos de venta" -#: lib/enums/ModelInformation.tsx:179 -#: src/pages/sales/ReturnOrderDetail.tsx:549 +#: lib/enums/ModelInformation.tsx:194 +#: src/pages/sales/ReturnOrderDetail.tsx:554 #: src/tables/stock/StockTrackingTable.tsx:142 msgid "Return Order" msgstr "Orden de devolución" -#: lib/enums/ModelInformation.tsx:180 +#: lib/enums/ModelInformation.tsx:195 #: lib/enums/Roles.tsx:41 #: src/defaults/actions.tsx:125 -#: src/pages/Index/Settings/SystemSettings.tsx:316 -#: src/pages/company/CompanyDetail.tsx:230 -#: src/pages/part/PartDetail.tsx:894 -#: src/pages/sales/SalesIndex.tsx:117 +#: src/pages/Index/Settings/SystemSettings.tsx:322 +#: src/pages/company/CompanyDetail.tsx:231 +#: src/pages/part/PartDetail.tsx:883 +#: src/pages/sales/SalesIndex.tsx:99 msgid "Return Orders" msgstr "Ordenes de devolución" -#: lib/enums/ModelInformation.tsx:188 +#: lib/enums/ModelInformation.tsx:204 msgid "Return Order Line Item" msgstr "Línea de pedido de devolución" -#: lib/enums/ModelInformation.tsx:189 +#: lib/enums/ModelInformation.tsx:205 msgid "Return Order Line Items" msgstr "Línea de pedido de devolución" -#: lib/enums/ModelInformation.tsx:194 +#: lib/enums/ModelInformation.tsx:210 #: src/tables/company/AddressTable.tsx:52 msgid "Address" msgstr "Dirección" -#: lib/enums/ModelInformation.tsx:195 -#: src/pages/company/CompanyDetail.tsx:264 +#: lib/enums/ModelInformation.tsx:211 +#: src/pages/company/CompanyDetail.tsx:265 msgid "Addresses" msgstr "Direcciones" -#: lib/enums/ModelInformation.tsx:201 +#: lib/enums/ModelInformation.tsx:217 #: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:89 #: src/pages/core/UserDetail.tsx:135 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:229 -#: src/pages/sales/ReturnOrderDetail.tsx:207 -#: src/pages/sales/SalesOrderDetail.tsx:200 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:230 +#: src/pages/sales/ReturnOrderDetail.tsx:208 +#: src/pages/sales/SalesOrderDetail.tsx:201 msgid "Contact" msgstr "Contacto" -#: lib/enums/ModelInformation.tsx:202 -#: src/pages/company/CompanyDetail.tsx:258 +#: lib/enums/ModelInformation.tsx:218 +#: src/pages/company/CompanyDetail.tsx:259 #: src/pages/core/CoreIndex.tsx:33 msgid "Contacts" msgstr "Contactos" -#: lib/enums/ModelInformation.tsx:208 +#: lib/enums/ModelInformation.tsx:224 #: src/tables/ColumnRenderers.tsx:444 msgid "Owner" msgstr "Propietario" -#: lib/enums/ModelInformation.tsx:209 +#: lib/enums/ModelInformation.tsx:225 msgid "Owners" msgstr "Propietarios" -#: lib/enums/ModelInformation.tsx:215 +#: lib/enums/ModelInformation.tsx:231 #: src/pages/Auth/ChangePassword.tsx:36 #: src/pages/core/UserDetail.tsx:220 #: src/tables/ColumnRenderers.tsx:395 @@ -437,7 +463,7 @@ msgstr "Propietarios" msgid "User" msgstr "Usuario" -#: lib/enums/ModelInformation.tsx:216 +#: lib/enums/ModelInformation.tsx:232 #: src/components/nav/NavigationDrawer.tsx:105 #: src/pages/Index/Settings/AdminCenter/UserManagementPanel.tsx:15 #: src/pages/core/CoreIndex.tsx:21 @@ -445,12 +471,12 @@ msgstr "Usuario" msgid "Users" msgstr "Usuarios" -#: lib/enums/ModelInformation.tsx:222 +#: lib/enums/ModelInformation.tsx:238 #: src/pages/core/GroupDetail.tsx:78 msgid "Group" msgstr "Grupo" -#: lib/enums/ModelInformation.tsx:223 +#: lib/enums/ModelInformation.tsx:239 #: src/components/nav/NavigationDrawer.tsx:111 #: src/pages/Index/Settings/AdminCenter/UserManagementPanel.tsx:23 #: src/pages/core/CoreIndex.tsx:27 @@ -460,64 +486,64 @@ msgstr "Grupo" msgid "Groups" msgstr "Grupos" -#: lib/enums/ModelInformation.tsx:230 +#: lib/enums/ModelInformation.tsx:246 msgid "Import Session" msgstr "Importar sesión" -#: lib/enums/ModelInformation.tsx:231 +#: lib/enums/ModelInformation.tsx:247 msgid "Import Sessions" msgstr "Importar sesiones" -#: lib/enums/ModelInformation.tsx:238 +#: lib/enums/ModelInformation.tsx:254 msgid "Label Template" msgstr "Plantilla de etiqueta" -#: lib/enums/ModelInformation.tsx:239 +#: lib/enums/ModelInformation.tsx:255 #: src/pages/Index/Settings/AdminCenter/Index.tsx:209 msgid "Label Templates" msgstr "Plantillas de etiqueta" -#: lib/enums/ModelInformation.tsx:246 +#: lib/enums/ModelInformation.tsx:262 msgid "Report Template" msgstr "Plantilla de informe" -#: lib/enums/ModelInformation.tsx:247 +#: lib/enums/ModelInformation.tsx:263 #: src/pages/Index/Settings/AdminCenter/Index.tsx:215 msgid "Report Templates" msgstr "Plantillas de informe" -#: lib/enums/ModelInformation.tsx:254 +#: lib/enums/ModelInformation.tsx:270 #: src/components/plugins/PluginDrawer.tsx:145 msgid "Plugin Configuration" msgstr "Configuración de complemento" -#: lib/enums/ModelInformation.tsx:255 +#: lib/enums/ModelInformation.tsx:271 msgid "Plugin Configurations" msgstr "Configuraciones de complemento" -#: lib/enums/ModelInformation.tsx:262 +#: lib/enums/ModelInformation.tsx:278 msgid "Content Type" msgstr "Tipo de contenido" -#: lib/enums/ModelInformation.tsx:263 +#: lib/enums/ModelInformation.tsx:279 msgid "Content Types" msgstr "Tipos de contenido" -#: lib/enums/ModelInformation.tsx:268 +#: lib/enums/ModelInformation.tsx:284 msgid "Selection List" msgstr "Lista de selección" -#: lib/enums/ModelInformation.tsx:269 -#: src/pages/Index/Settings/AdminCenter/PartParameterPanel.tsx:21 +#: lib/enums/ModelInformation.tsx:285 +#: src/pages/Index/Settings/AdminCenter/ParameterPanel.tsx:21 msgid "Selection Lists" msgstr "Listas de Selección" -#: lib/enums/ModelInformation.tsx:275 +#: lib/enums/ModelInformation.tsx:291 #: src/components/barcodes/BarcodeInput.tsx:114 #: src/components/dashboard/DashboardLayout.tsx:281 #: src/components/editors/NotesEditor.tsx:74 #: src/components/editors/TemplateEditor/TemplateEditor.tsx:158 -#: src/components/forms/fields/ApiFormField.tsx:273 +#: src/components/forms/fields/ApiFormField.tsx:237 #: src/components/forms/fields/TableField.tsx:45 #: src/components/importer/ImportDataSelector.tsx:192 #: src/components/importer/ImporterColumnSelector.tsx:234 @@ -528,7 +554,7 @@ msgstr "Listas de Selección" #: src/components/nav/SearchDrawer.tsx:572 #: src/components/settings/SettingList.tsx:139 #: src/components/wizards/ImportPartWizard.tsx:574 -#: src/components/wizards/ImportPartWizard.tsx:718 +#: src/components/wizards/ImportPartWizard.tsx:719 #: src/forms/BomForms.tsx:69 #: src/functions/auth.tsx:643 #: src/pages/ErrorPage.tsx:11 @@ -547,9 +573,9 @@ msgstr "Listas de Selección" msgid "Error" msgstr "Error" -#: lib/enums/ModelInformation.tsx:276 +#: lib/enums/ModelInformation.tsx:292 #: src/tables/machine/MachineListTable.tsx:402 -#: src/tables/machine/MachineTypeTable.tsx:299 +#: src/tables/machine/MachineTypeTable.tsx:297 msgid "Errors" msgstr "Errores" @@ -559,10 +585,10 @@ msgstr "Admin" #: lib/enums/Roles.tsx:33 #: src/defaults/actions.tsx:135 -#: src/pages/Index/Settings/SystemSettings.tsx:264 -#: src/pages/build/BuildIndex.tsx:75 -#: src/pages/part/PartDetail.tsx:904 -#: src/pages/sales/SalesOrderDetail.tsx:421 +#: src/pages/Index/Settings/SystemSettings.tsx:270 +#: src/pages/build/BuildIndex.tsx:67 +#: src/pages/part/PartDetail.tsx:893 +#: src/pages/sales/SalesOrderDetail.tsx:422 msgid "Build Orders" msgstr "Ordenes de Producción" @@ -639,39 +665,39 @@ msgstr "Escanea o introduce datos de código de barras" msgid "Enter barcode data" msgstr "Introduce datos del código de barras" -#: src/components/barcodes/BarcodeScanDialog.tsx:49 -#: src/components/buttons/ScanButton.tsx:15 +#: src/components/barcodes/BarcodeScanDialog.tsx:56 +#: src/components/buttons/ScanButton.tsx:27 #: src/components/nav/NavigationDrawer.tsx:122 -#: src/forms/PurchaseOrderForms.tsx:457 -#: src/forms/PurchaseOrderForms.tsx:563 +#: src/forms/PurchaseOrderForms.tsx:509 +#: src/forms/PurchaseOrderForms.tsx:615 msgid "Scan Barcode" msgstr "Escanear código de barras" -#: src/components/barcodes/BarcodeScanDialog.tsx:105 +#: src/components/barcodes/BarcodeScanDialog.tsx:121 msgid "No matching item found" msgstr "No se encontró el artículo" -#: src/components/barcodes/BarcodeScanDialog.tsx:134 +#: src/components/barcodes/BarcodeScanDialog.tsx:150 msgid "Barcode does not match the expected model type" msgstr "" -#: src/components/barcodes/BarcodeScanDialog.tsx:145 +#: src/components/barcodes/BarcodeScanDialog.tsx:161 #: src/components/editors/NotesEditor.tsx:84 #: src/components/editors/NotesEditor.tsx:118 -#: src/components/forms/ApiForm.tsx:465 +#: src/components/forms/ApiForm.tsx:484 #: src/components/wizards/ImportPartWizard.tsx:566 -#: src/components/wizards/ImportPartWizard.tsx:690 +#: src/components/wizards/ImportPartWizard.tsx:691 #: src/pages/Index/Settings/AdminCenter/CurrencyManagementPanel.tsx:45 #: src/tables/bom/BomTable.tsx:548 #: src/tables/settings/PendingTasksTable.tsx:68 msgid "Success" msgstr "Completado" -#: src/components/barcodes/BarcodeScanDialog.tsx:151 +#: src/components/barcodes/BarcodeScanDialog.tsx:167 msgid "Failed to handle barcode" msgstr "" -#: src/components/barcodes/BarcodeScanDialog.tsx:167 +#: src/components/barcodes/BarcodeScanDialog.tsx:183 #: src/pages/Index/Scan.tsx:129 msgid "Failed to scan barcode" msgstr "No se pudo escanear el código de barras" @@ -714,10 +740,10 @@ msgstr "No se pudo vincular el código de barras" #: src/components/barcodes/QRCode.tsx:179 #: src/pages/part/PartDetail.tsx:521 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:222 -#: src/pages/sales/ReturnOrderDetail.tsx:188 -#: src/pages/sales/SalesOrderDetail.tsx:181 -#: src/pages/sales/SalesOrderShipmentDetail.tsx:122 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:223 +#: src/pages/sales/ReturnOrderDetail.tsx:189 +#: src/pages/sales/SalesOrderDetail.tsx:182 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:120 #: src/pages/stock/StockDetail.tsx:186 msgid "Link" msgstr "Enlace" @@ -728,7 +754,7 @@ msgstr "Esto eliminará el enlace al código de barras asociado" #: src/components/barcodes/QRCode.tsx:205 #: src/components/items/ActionDropdown.tsx:192 -#: src/forms/PurchaseOrderForms.tsx:554 +#: src/forms/PurchaseOrderForms.tsx:606 msgid "Unlink Barcode" msgstr "Desvincular Código de Barras" @@ -829,14 +855,14 @@ msgstr "Usted será redirigido al proveedor para más acciones." #~ msgid "Scan QR code" #~ msgstr "Scan QR code" -#: src/components/buttons/ScanButton.tsx:19 -msgid "Open Barcode Scanner" -msgstr "Abrir Escáner de código de barras" - #: src/components/buttons/ScanButton.tsx:20 #~ msgid "Open QR code scanner" #~ msgstr "Open QR code scanner" +#: src/components/buttons/ScanButton.tsx:32 +msgid "Open Barcode Scanner" +msgstr "Abrir Escáner de código de barras" + #: src/components/buttons/SpotlightButton.tsx:12 msgid "Open spotlight" msgstr "Abrir spotlight" @@ -1059,7 +1085,7 @@ msgid "Show the number of sales orders which are assigned to you" msgstr "Mostrar el número de órdenes de venta que se le han asignado" #: src/components/dashboard/DashboardWidgetLibrary.tsx:129 -#: src/pages/sales/SalesIndex.tsx:105 +#: src/pages/sales/SalesIndex.tsx:87 msgid "Pending Shipments" msgstr "" @@ -1210,12 +1236,18 @@ msgid "Remove the associated image from this item?" msgstr "¿Eliminar imagen asociada al artículo?" #: src/components/details/DetailsImage.tsx:83 -#: src/forms/StockForms.tsx:888 +#: src/forms/StockForms.tsx:895 #: src/pages/Index/Settings/AccountSettings/MFASettings.tsx:324 #: src/pages/Index/Settings/AccountSettings/MFASettings.tsx:415 #: src/pages/Index/Settings/AccountSettings/MFASettings.tsx:884 #: src/pages/Index/Settings/AccountSettings/MFASettings.tsx:903 #: src/pages/Index/Settings/AccountSettings/SecurityContent.tsx:254 +#: src/tables/build/BuildAllocatedStockTable.tsx:178 +#: src/tables/build/BuildAllocatedStockTable.tsx:258 +#: src/tables/build/BuildLineTable.tsx:111 +#: src/tables/build/BuildLineTable.tsx:665 +#: src/tables/sales/SalesOrderAllocationTable.tsx:224 +#: src/tables/sales/SalesOrderAllocationTable.tsx:247 msgid "Remove" msgstr "Eliminar" @@ -1241,12 +1273,12 @@ msgid "Upload Error" msgstr "Error al subir" #: src/components/details/DetailsImage.tsx:250 -#: src/components/forms/fields/TextField.tsx:65 +#: src/components/forms/fields/AutoFillRightSection.tsx:34 msgid "Clear" msgstr "Borrar" #: src/components/details/DetailsImage.tsx:256 -#: src/components/forms/ApiForm.tsx:677 +#: src/components/forms/ApiForm.tsx:696 #: src/contexts/ThemeContext.tsx:44 #: src/pages/Index/Settings/AccountSettings/MFASettings.tsx:149 #: src/pages/Index/Settings/AccountSettings/MFASettings.tsx:568 @@ -1499,8 +1531,8 @@ msgstr "Error del servidor" msgid "A server error occurred" msgstr "Ha ocurrido un error con el servidor" -#: src/components/forms/ApiForm.tsx:103 -#: src/components/forms/ApiForm.tsx:594 +#: src/components/forms/ApiForm.tsx:107 +#: src/components/forms/ApiForm.tsx:613 msgid "Form Error" msgstr "Error de formulario" @@ -1508,11 +1540,11 @@ msgstr "Error de formulario" #~ msgid "Form Errors Exist" #~ msgstr "Form Errors Exist" -#: src/components/forms/ApiForm.tsx:604 +#: src/components/forms/ApiForm.tsx:623 msgid "Errors exist for one or more form fields" msgstr "Existen errores para uno o más campos del formulario" -#: src/components/forms/ApiForm.tsx:715 +#: src/components/forms/ApiForm.tsx:734 #: src/hooks/UseForm.tsx:133 #: src/tables/plugin/PluginListTable.tsx:204 msgid "Update" @@ -1698,15 +1730,14 @@ msgstr "Servidor" #: src/components/forms/InstanceOptions.tsx:124 #: src/components/plugins/PluginDrawer.tsx:68 #: src/pages/Index/Settings/AdminCenter/UnitManagementPanel.tsx:19 -#: src/pages/part/CategoryDetail.tsx:88 +#: src/pages/part/CategoryDetail.tsx:91 #: src/pages/part/PartDetail.tsx:446 #: src/pages/stock/LocationDetail.tsx:82 #: src/tables/machine/MachineTypeTable.tsx:67 -#: src/tables/machine/MachineTypeTable.tsx:151 -#: src/tables/machine/MachineTypeTable.tsx:254 -#: src/tables/machine/MachineTypeTable.tsx:357 +#: src/tables/machine/MachineTypeTable.tsx:149 +#: src/tables/machine/MachineTypeTable.tsx:252 +#: src/tables/machine/MachineTypeTable.tsx:355 #: src/tables/plugin/PluginErrorTable.tsx:33 -#: src/tables/purchasing/ManufacturerPartParameterTable.tsx:36 #: src/tables/settings/ApiTokenTable.tsx:57 #: src/tables/settings/GroupTable.tsx:95 #: src/tables/settings/GroupTable.tsx:148 @@ -1769,7 +1800,7 @@ msgstr "" #~ msgstr "State: <0>worker ({0}), <1>plugins{1}" #: src/components/forms/InstanceOptions.tsx:118 -#: src/pages/Index/Settings/SystemSettings.tsx:45 +#: src/pages/Index/Settings/SystemSettings.tsx:46 msgid "Server" msgstr "Servidor" @@ -1793,6 +1824,8 @@ msgid "Plugins" msgstr "Complementos" #: src/components/forms/InstanceOptions.tsx:143 +#: src/tables/general/ParameterTemplateTable.tsx:153 +#: src/tables/general/ParameterTemplateTable.tsx:188 #: src/tables/part/PartTestTemplateTable.tsx:117 #: src/tables/settings/TemplateTable.tsx:251 #: src/tables/settings/TemplateTable.tsx:362 @@ -1817,10 +1850,14 @@ msgstr "Detenido" msgid "Running" msgstr "En ejecución" -#: src/components/forms/fields/ApiFormField.tsx:233 +#: src/components/forms/fields/ApiFormField.tsx:197 msgid "Select file to upload" msgstr "" +#: src/components/forms/fields/AutoFillRightSection.tsx:47 +msgid "Accept suggested value" +msgstr "" + #: src/components/forms/fields/DateField.tsx:76 msgid "Select date" msgstr "" @@ -1853,13 +1890,13 @@ msgstr "Seleccionar paquete" msgid "{0} icons" msgstr "Iconos {0}" -#: src/components/forms/fields/RelatedModelField.tsx:409 +#: src/components/forms/fields/RelatedModelField.tsx:480 #: src/components/modals/AboutInvenTreeModal.tsx:96 #: src/pages/Index/Settings/AccountSettings/SecurityContent.tsx:383 msgid "Loading" msgstr "Cargando" -#: src/components/forms/fields/RelatedModelField.tsx:411 +#: src/components/forms/fields/RelatedModelField.tsx:482 msgid "No results found" msgstr "No hay resultados" @@ -1875,10 +1912,6 @@ msgstr "No hay entradas disponibles" msgid "Add new row" msgstr "Añadir fila nueva" -#: src/components/forms/fields/TextField.tsx:82 -msgid "Accept suggested value" -msgstr "" - #: src/components/images/DetailsImage.tsx:252 #~ msgid "Select image" #~ msgstr "Select image" @@ -2036,7 +2069,7 @@ msgstr "Los datos se han importado satisfactoriamente" #: src/components/importer/ImporterDrawer.tsx:109 #: src/components/modals/AboutInvenTreeModal.tsx:205 #: src/components/modals/ServerInfoModal.tsx:134 -#: src/components/wizards/ImportPartWizard.tsx:772 +#: src/components/wizards/ImportPartWizard.tsx:773 #: src/forms/BomForms.tsx:132 #: src/pages/Index/Settings/AccountSettings/MFASettings.tsx:685 msgid "Close" @@ -2199,7 +2232,7 @@ msgid "Change" msgstr "" #: src/components/items/RoleTable.tsx:150 -#: src/forms/StockForms.tsx:927 +#: src/forms/StockForms.tsx:941 #: src/tables/stock/StockItemTestResultTable.tsx:367 msgid "Add" msgstr "Agregar" @@ -2222,11 +2255,11 @@ msgstr "" #: src/components/items/TransferList.tsx:161 #: src/components/render/Stock.tsx:102 -#: src/pages/part/PartDetail.tsx:994 +#: src/pages/part/PartDetail.tsx:1009 #: src/pages/stock/StockDetail.tsx:265 #: src/pages/stock/StockDetail.tsx:942 -#: src/tables/build/BuildAllocatedStockTable.tsx:135 -#: src/tables/build/BuildLineTable.tsx:192 +#: src/tables/build/BuildAllocatedStockTable.tsx:132 +#: src/tables/build/BuildLineTable.tsx:193 #: src/tables/part/PartTable.tsx:137 #: src/tables/stock/StockItemTable.tsx:182 #: src/tables/stock/StockItemTable.tsx:343 @@ -2373,7 +2406,7 @@ msgid "Database" msgstr "Base de datos" #: src/components/modals/ServerInfoModal.tsx:49 -#: src/components/nav/Alerts.tsx:118 +#: src/components/nav/Alerts.tsx:120 msgid "Debug Mode" msgstr "Modo de depuración" @@ -2414,7 +2447,7 @@ msgid "Issues detected" msgstr "Problemas detectados" #: src/components/modals/ServerInfoModal.tsx:102 -#: src/components/nav/Alerts.tsx:125 +#: src/components/nav/Alerts.tsx:127 msgid "Background Worker" msgstr "Trabajador en segundo plano" @@ -2436,7 +2469,7 @@ msgstr "Ajustes del correo electrónico" #~ msgstr "Email settings not configured" #: src/components/modals/ServerInfoModal.tsx:120 -#: src/components/nav/Alerts.tsx:141 +#: src/components/nav/Alerts.tsx:143 msgid "Email settings not configured." msgstr "" @@ -2444,43 +2477,47 @@ msgstr "" msgid "Alerts" msgstr "" -#: src/components/nav/Alerts.tsx:120 +#: src/components/nav/Alerts.tsx:97 +msgid "No issues detected" +msgstr "" + +#: src/components/nav/Alerts.tsx:122 msgid "The server is running in debug mode." msgstr "" -#: src/components/nav/Alerts.tsx:127 +#: src/components/nav/Alerts.tsx:129 msgid "The background worker process is not running." msgstr "" -#: src/components/nav/Alerts.tsx:132 +#: src/components/nav/Alerts.tsx:134 msgid "Server Restart" msgstr "" -#: src/components/nav/Alerts.tsx:134 +#: src/components/nav/Alerts.tsx:136 msgid "The server requires a restart to apply changes." msgstr "" -#: src/components/nav/Alerts.tsx:139 +#: src/components/nav/Alerts.tsx:141 msgid "Email settings" msgstr "" -#: src/components/nav/Alerts.tsx:146 +#: src/components/nav/Alerts.tsx:148 msgid "Database Migrations" msgstr "" -#: src/components/nav/Alerts.tsx:148 +#: src/components/nav/Alerts.tsx:150 msgid "There are pending database migrations." msgstr "" -#: src/components/nav/Alerts.tsx:163 +#: src/components/nav/Alerts.tsx:165 msgid "Learn more about {code}" msgstr "" #: src/components/nav/Header.tsx:188 #: src/components/nav/NavigationDrawer.tsx:134 #: src/components/nav/NotificationDrawer.tsx:181 -#: src/pages/Index/Settings/SystemSettings.tsx:121 -#: src/pages/Index/Settings/UserSettings.tsx:106 +#: src/pages/Index/Settings/SystemSettings.tsx:122 +#: src/pages/Index/Settings/UserSettings.tsx:107 #: src/pages/Notifications.tsx:45 #: src/pages/Notifications.tsx:130 msgid "Notifications" @@ -2511,8 +2548,8 @@ msgstr "Ajustes" #: src/components/nav/NavigationDrawer.tsx:140 #: src/components/nav/SettingsHeader.tsx:40 #: src/defaults/actions.tsx:92 -#: src/pages/Index/Settings/UserSettings.tsx:141 -#: src/pages/Index/Settings/UserSettings.tsx:145 +#: src/pages/Index/Settings/UserSettings.tsx:142 +#: src/pages/Index/Settings/UserSettings.tsx:146 msgid "User Settings" msgstr "Ajustes del usuario" @@ -2529,8 +2566,8 @@ msgstr "Ajustes del usuario" #: src/components/nav/NavigationDrawer.tsx:146 #: src/components/nav/SettingsHeader.tsx:41 #: src/defaults/actions.tsx:144 -#: src/pages/Index/Settings/SystemSettings.tsx:348 -#: src/pages/Index/Settings/SystemSettings.tsx:353 +#: src/pages/Index/Settings/SystemSettings.tsx:354 +#: src/pages/Index/Settings/SystemSettings.tsx:359 msgid "System Settings" msgstr "Ajustes del sistema" @@ -2577,11 +2614,11 @@ msgstr "Cerrar sesión" #: src/components/nav/NavigationDrawer.tsx:77 #: src/components/render/Part.tsx:36 -#: src/components/wizards/ImportPartWizard.tsx:807 +#: src/components/wizards/ImportPartWizard.tsx:808 #: src/defaults/links.tsx:42 #: src/forms/StockForms.tsx:794 -#: src/pages/Index/Settings/SystemSettings.tsx:224 -#: src/pages/part/PartDetail.tsx:804 +#: src/pages/Index/Settings/SystemSettings.tsx:230 +#: src/pages/part/PartDetail.tsx:793 #: src/pages/stock/LocationDetail.tsx:390 #: src/pages/stock/LocationDetail.tsx:420 #: src/pages/stock/StockDetail.tsx:642 @@ -2591,29 +2628,29 @@ msgstr "Existencias" #: src/components/nav/NavigationDrawer.tsx:84 #: src/defaults/links.tsx:48 -#: src/pages/build/BuildDetail.tsx:748 -#: src/pages/build/BuildIndex.tsx:102 +#: src/pages/build/BuildDetail.tsx:753 +#: src/pages/build/BuildIndex.tsx:101 msgid "Manufacturing" msgstr "Fabricación" #: src/components/nav/NavigationDrawer.tsx:91 #: src/defaults/links.tsx:54 #: src/pages/company/ManufacturerDetail.tsx:9 -#: src/pages/company/ManufacturerPartDetail.tsx:276 +#: src/pages/company/ManufacturerPartDetail.tsx:267 #: src/pages/company/SupplierDetail.tsx:9 -#: src/pages/company/SupplierPartDetail.tsx:360 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:553 -#: src/pages/purchasing/PurchasingIndex.tsx:122 +#: src/pages/company/SupplierPartDetail.tsx:365 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:558 +#: src/pages/purchasing/PurchasingIndex.tsx:212 msgid "Purchasing" msgstr "Compras" #: src/components/nav/NavigationDrawer.tsx:98 #: src/defaults/links.tsx:60 #: src/pages/company/CustomerDetail.tsx:9 -#: src/pages/sales/ReturnOrderDetail.tsx:554 -#: src/pages/sales/SalesIndex.tsx:153 -#: src/pages/sales/SalesOrderDetail.tsx:619 -#: src/pages/sales/SalesOrderShipmentDetail.tsx:480 +#: src/pages/sales/ReturnOrderDetail.tsx:559 +#: src/pages/sales/SalesIndex.tsx:168 +#: src/pages/sales/SalesOrderDetail.tsx:624 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:448 msgid "Sales" msgstr "Ventas" @@ -2667,21 +2704,21 @@ msgid "Remove search group" msgstr "Eliminar grupo de búsqueda" #: src/components/nav/SearchDrawer.tsx:288 -#: src/pages/company/ManufacturerPartDetail.tsx:192 -#: src/pages/part/PartDetail.tsx:862 +#: src/pages/company/ManufacturerPartDetail.tsx:179 +#: src/pages/part/PartDetail.tsx:851 #: src/pages/part/PartSupplierDetail.tsx:15 -#: src/pages/purchasing/PurchasingIndex.tsx:81 +#: src/pages/purchasing/PurchasingIndex.tsx:100 msgid "Suppliers" msgstr "Proveedores" #: src/components/nav/SearchDrawer.tsx:298 #: src/pages/part/PartSupplierDetail.tsx:23 -#: src/pages/purchasing/PurchasingIndex.tsx:98 +#: src/pages/purchasing/PurchasingIndex.tsx:149 msgid "Manufacturers" msgstr "Fabricantes" #: src/components/nav/SearchDrawer.tsx:308 -#: src/pages/sales/SalesIndex.tsx:138 +#: src/pages/sales/SalesIndex.tsx:133 msgid "Customers" msgstr "Clientes" @@ -2772,21 +2809,21 @@ msgstr "Información del complemento" #: src/components/plugins/PluginDrawer.tsx:73 #: src/forms/selectionListFields.tsx:102 -#: src/pages/build/BuildDetail.tsx:250 -#: src/pages/company/CompanyDetail.tsx:93 -#: src/pages/company/ManufacturerPartDetail.tsx:93 -#: src/pages/company/ManufacturerPartDetail.tsx:120 -#: src/pages/company/SupplierPartDetail.tsx:145 -#: src/pages/part/CategoryDetail.tsx:108 +#: src/pages/build/BuildDetail.tsx:251 +#: src/pages/company/CompanyDetail.tsx:94 +#: src/pages/company/ManufacturerPartDetail.tsx:92 +#: src/pages/company/ManufacturerPartDetail.tsx:119 +#: src/pages/company/SupplierPartDetail.tsx:146 +#: src/pages/part/CategoryDetail.tsx:111 #: src/pages/part/PartDetail.tsx:460 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:162 -#: src/pages/sales/ReturnOrderDetail.tsx:129 -#: src/pages/sales/SalesOrderDetail.tsx:119 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:163 +#: src/pages/sales/ReturnOrderDetail.tsx:130 +#: src/pages/sales/SalesOrderDetail.tsx:120 #: src/pages/stock/LocationDetail.tsx:102 #: src/tables/ColumnRenderers.tsx:278 -#: src/tables/build/BuildAllocatedStockTable.tsx:91 -#: src/tables/machine/MachineTypeTable.tsx:161 -#: src/tables/machine/MachineTypeTable.tsx:257 +#: src/tables/build/BuildAllocatedStockTable.tsx:88 +#: src/tables/machine/MachineTypeTable.tsx:159 +#: src/tables/machine/MachineTypeTable.tsx:255 #: src/tables/plugin/PluginListTable.tsx:110 msgid "Description" msgstr "Descripción" @@ -2814,7 +2851,7 @@ msgstr "Fecha" #: src/tables/company/CompanyTable.tsx:91 #: src/tables/machine/MachineListTable.tsx:384 #: src/tables/machine/MachineListTable.tsx:799 -#: src/tables/part/ParametricPartTable.tsx:354 +#: src/tables/part/ParametricPartTable.tsx:19 #: src/tables/part/PartTable.tsx:197 #: src/tables/part/PartVariantTable.tsx:15 #: src/tables/plugin/PluginListTable.tsx:96 @@ -2836,8 +2873,8 @@ msgid "Installation Path" msgstr "Ruta de instalación" #: src/components/plugins/PluginDrawer.tsx:116 -#: src/tables/machine/MachineTypeTable.tsx:184 -#: src/tables/machine/MachineTypeTable.tsx:293 +#: src/tables/machine/MachineTypeTable.tsx:182 +#: src/tables/machine/MachineTypeTable.tsx:291 #: src/tables/plugin/PluginListTable.tsx:101 #: src/tables/plugin/PluginListTable.tsx:417 msgid "Builtin" @@ -2849,8 +2886,8 @@ msgstr "Paquete" #: src/components/plugins/PluginDrawer.tsx:133 #: src/pages/Index/Settings/AdminCenter/PluginManagementPanel.tsx:55 -#: src/pages/Index/Settings/SystemSettings.tsx:331 -#: src/pages/Index/Settings/UserSettings.tsx:128 +#: src/pages/Index/Settings/SystemSettings.tsx:337 +#: src/pages/Index/Settings/UserSettings.tsx:129 msgid "Plugin Settings" msgstr "Ajustes del complemento" @@ -2911,7 +2948,7 @@ msgstr "Ha ocurrido un error al cargar el contenido del complemento" #~ msgid "Unknown model: {model}" #~ msgstr "Unknown model: {model}" -#: src/components/render/Instance.tsx:249 +#: src/components/render/Instance.tsx:247 msgid "Unknown model: {model_name}" msgstr "" @@ -2939,10 +2976,10 @@ msgstr "Envío" #: src/components/render/Part.tsx:28 #: src/components/render/Plugin.tsx:17 #: src/components/render/User.tsx:37 -#: src/pages/company/CompanyDetail.tsx:323 -#: src/pages/company/SupplierPartDetail.tsx:373 +#: src/pages/company/CompanyDetail.tsx:328 +#: src/pages/company/SupplierPartDetail.tsx:378 #: src/pages/core/UserDetail.tsx:211 -#: src/pages/part/PartDetail.tsx:1027 +#: src/pages/part/PartDetail.tsx:1048 #: src/tables/ColumnRenderers.tsx:410 msgid "Inactive" msgstr "Inactivo" @@ -2962,11 +2999,11 @@ msgstr "Sin existencias" #: src/components/render/Part.tsx:47 #: src/components/wizards/OrderPartsWizard.tsx:135 -#: src/pages/company/SupplierPartDetail.tsx:197 -#: src/pages/company/SupplierPartDetail.tsx:394 -#: src/pages/part/PartDetail.tsx:1015 +#: src/pages/company/SupplierPartDetail.tsx:198 +#: src/pages/company/SupplierPartDetail.tsx:399 +#: src/pages/part/PartDetail.tsx:1030 #: src/tables/bom/BomTable.tsx:444 -#: src/tables/build/BuildLineTable.tsx:222 +#: src/tables/build/BuildLineTable.tsx:223 #: src/tables/part/PartTable.tsx:108 msgid "On Order" msgstr "En pedido" @@ -2974,9 +3011,9 @@ msgstr "En pedido" #: src/components/render/Part.tsx:55 #: src/components/wizards/OrderPartsWizard.tsx:141 #: src/pages/part/PartDetail.tsx:587 -#: src/pages/part/PartDetail.tsx:1021 +#: src/pages/part/PartDetail.tsx:1036 #: src/pages/stock/StockDetail.tsx:925 -#: src/tables/part/PartTestResultTable.tsx:297 +#: src/tables/part/PartTestResultTable.tsx:305 #: src/tables/stock/StockItemTable.tsx:359 msgid "In Production" msgstr "En producción" @@ -2987,7 +3024,7 @@ msgid "Details" msgstr "Detalles" #: src/components/render/Part.tsx:112 -#: src/components/wizards/ImportPartWizard.tsx:806 +#: src/components/wizards/ImportPartWizard.tsx:807 #: src/pages/part/PartDetail.tsx:487 #: src/tables/ColumnRenderers.tsx:233 #: src/tables/ColumnRenderers.tsx:242 @@ -3000,16 +3037,16 @@ msgstr "Categoría" #: src/components/render/Stock.tsx:114 #: src/components/render/Stock.tsx:132 #: src/forms/BuildForms.tsx:795 -#: src/forms/PurchaseOrderForms.tsx:595 +#: src/forms/PurchaseOrderForms.tsx:647 #: src/forms/StockForms.tsx:792 #: src/forms/StockForms.tsx:839 -#: src/forms/StockForms.tsx:885 -#: src/forms/StockForms.tsx:924 -#: src/forms/StockForms.tsx:960 -#: src/forms/StockForms.tsx:1003 -#: src/forms/StockForms.tsx:1047 -#: src/forms/StockForms.tsx:1095 -#: src/forms/StockForms.tsx:1139 +#: src/forms/StockForms.tsx:892 +#: src/forms/StockForms.tsx:938 +#: src/forms/StockForms.tsx:976 +#: src/forms/StockForms.tsx:1019 +#: src/forms/StockForms.tsx:1063 +#: src/forms/StockForms.tsx:1111 +#: src/forms/StockForms.tsx:1155 #: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:88 #: src/pages/core/UserDetail.tsx:158 #: src/pages/stock/StockDetail.tsx:298 @@ -3023,7 +3060,7 @@ msgstr "Ubicación" #: src/components/render/Stock.tsx:99 #: src/pages/stock/StockDetail.tsx:198 #: src/pages/stock/StockDetail.tsx:930 -#: src/tables/build/BuildAllocatedStockTable.tsx:121 +#: src/tables/build/BuildAllocatedStockTable.tsx:118 #: src/tables/build/BuildOutputTable.tsx:107 #: src/tables/sales/SalesOrderAllocationTable.tsx:142 msgid "Serial Number" @@ -3034,9 +3071,9 @@ msgstr "Número de serie" #: src/forms/BuildForms.tsx:240 #: src/forms/BuildForms.tsx:634 #: src/forms/BuildForms.tsx:797 -#: src/forms/PurchaseOrderForms.tsx:801 +#: src/forms/PurchaseOrderForms.tsx:853 #: src/forms/ReturnOrderForms.tsx:243 -#: src/forms/SalesOrderForms.tsx:308 +#: src/forms/SalesOrderForms.tsx:387 #: src/forms/StockForms.tsx:841 #: src/pages/part/PartStockHistoryDetail.tsx:56 #: src/pages/part/PartStockHistoryDetail.tsx:210 @@ -3046,9 +3083,9 @@ msgstr "Número de serie" #: src/pages/part/pricing/PriceBreakPanel.tsx:172 #: src/pages/stock/StockDetail.tsx:258 #: src/pages/stock/StockDetail.tsx:936 -#: src/tables/build/BuildLineTable.tsx:86 +#: src/tables/build/BuildLineTable.tsx:83 #: src/tables/part/PartPurchaseOrdersTable.tsx:94 -#: src/tables/part/PartTestResultTable.tsx:269 +#: src/tables/part/PartTestResultTable.tsx:277 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:175 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:206 #: src/tables/purchasing/SupplierPriceBreakTable.tsx:69 @@ -3063,14 +3100,14 @@ msgstr "Cantidad" #: src/forms/BuildForms.tsx:474 #: src/forms/StockForms.tsx:793 #: src/forms/StockForms.tsx:840 -#: src/forms/StockForms.tsx:886 -#: src/forms/StockForms.tsx:925 -#: src/forms/StockForms.tsx:961 -#: src/forms/StockForms.tsx:1004 -#: src/forms/StockForms.tsx:1048 -#: src/forms/StockForms.tsx:1096 -#: src/forms/StockForms.tsx:1140 -#: src/tables/build/BuildLineTable.tsx:96 +#: src/forms/StockForms.tsx:893 +#: src/forms/StockForms.tsx:939 +#: src/forms/StockForms.tsx:977 +#: src/forms/StockForms.tsx:1020 +#: src/forms/StockForms.tsx:1064 +#: src/forms/StockForms.tsx:1112 +#: src/forms/StockForms.tsx:1156 +#: src/tables/build/BuildLineTable.tsx:93 msgid "Batch" msgstr "Lote" @@ -3306,10 +3343,6 @@ msgstr "No se especificaron ajustes" #~ msgid "Part category updated" #~ msgstr "Part category updated" -#: src/components/tables/part/PartParameterTable.tsx:41 -#~ msgid "Parameter" -#~ msgstr "Parameter" - #: src/components/tables/part/PartParameterTable.tsx:114 #~ msgid "Part parameter updated" #~ msgstr "Part parameter updated" @@ -3571,15 +3604,16 @@ msgid "Already Imported" msgstr "" #: src/components/wizards/ImportPartWizard.tsx:205 -#: src/pages/company/CompanyDetail.tsx:136 +#: src/pages/company/CompanyDetail.tsx:137 #: src/pages/company/SupplierDetail.tsx:8 -#: src/pages/company/SupplierPartDetail.tsx:130 -#: src/pages/company/SupplierPartDetail.tsx:235 -#: src/pages/company/SupplierPartDetail.tsx:364 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:156 +#: src/pages/company/SupplierPartDetail.tsx:131 +#: src/pages/company/SupplierPartDetail.tsx:236 +#: src/pages/company/SupplierPartDetail.tsx:369 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:157 #: src/tables/Filter.tsx:360 #: src/tables/company/CompanyTable.tsx:96 #: src/tables/part/PartPurchaseOrdersTable.tsx:43 +#: src/tables/purchasing/PurchaseOrderParametricTable.tsx:34 #: src/tables/purchasing/PurchaseOrderTable.tsx:109 #: src/tables/purchasing/SupplierPriceBreakTable.tsx:40 msgid "Supplier" @@ -3648,7 +3682,7 @@ msgid "Next" msgstr "" #: src/components/wizards/ImportPartWizard.tsx:540 -#: src/pages/part/PartDetail.tsx:1046 +#: src/pages/part/PartDetail.tsx:1067 #: src/tables/part/PartTable.tsx:408 msgid "Edit Part" msgstr "Editar Pieza" @@ -3669,28 +3703,28 @@ msgstr "" msgid "Import" msgstr "" -#: src/components/wizards/ImportPartWizard.tsx:691 +#: src/components/wizards/ImportPartWizard.tsx:692 msgid "Parameters created successfully!" msgstr "" -#: src/components/wizards/ImportPartWizard.tsx:719 +#: src/components/wizards/ImportPartWizard.tsx:720 msgid "Failed to create parameters, please fix the errors and try again" msgstr "" #. placeholder {0}: supplierPart?.supplier -#: src/components/wizards/ImportPartWizard.tsx:739 +#: src/components/wizards/ImportPartWizard.tsx:740 msgid "Part imported successfully from supplier {0}." msgstr "" -#: src/components/wizards/ImportPartWizard.tsx:752 +#: src/components/wizards/ImportPartWizard.tsx:753 msgid "Open Part" msgstr "" -#: src/components/wizards/ImportPartWizard.tsx:759 +#: src/components/wizards/ImportPartWizard.tsx:760 msgid "Open Supplier Part" msgstr "" -#: src/components/wizards/ImportPartWizard.tsx:766 +#: src/components/wizards/ImportPartWizard.tsx:767 msgid "Open Manufacturer Part" msgstr "" @@ -3699,25 +3733,19 @@ msgstr "" #~ msgid "Import Part" #~ msgstr "Import Part" -#: src/components/wizards/ImportPartWizard.tsx:802 +#: src/components/wizards/ImportPartWizard.tsx:803 msgid "Import Supplier Part" msgstr "" -#: src/components/wizards/ImportPartWizard.tsx:804 +#: src/components/wizards/ImportPartWizard.tsx:805 msgid "Search Supplier Part" msgstr "" -#: src/components/wizards/ImportPartWizard.tsx:806 -#: src/pages/company/ManufacturerPartDetail.tsx:166 -#: src/pages/part/PartDetail.tsx:793 -msgid "Parameters" -msgstr "Parámetros" - -#: src/components/wizards/ImportPartWizard.tsx:806 +#: src/components/wizards/ImportPartWizard.tsx:807 msgid "Confirm import" msgstr "" -#: src/components/wizards/ImportPartWizard.tsx:808 +#: src/components/wizards/ImportPartWizard.tsx:809 msgid "Done" msgstr "" @@ -3738,24 +3766,24 @@ msgid "Sales Requirements" msgstr "" #: src/components/wizards/OrderPartsWizard.tsx:129 -#: src/forms/StockForms.tsx:887 -#: src/forms/StockForms.tsx:926 -#: src/forms/StockForms.tsx:962 -#: src/forms/StockForms.tsx:1005 -#: src/forms/StockForms.tsx:1049 -#: src/forms/StockForms.tsx:1097 -#: src/forms/StockForms.tsx:1141 -#: src/pages/company/SupplierPartDetail.tsx:190 -#: src/pages/company/SupplierPartDetail.tsx:378 +#: src/forms/StockForms.tsx:894 +#: src/forms/StockForms.tsx:940 +#: src/forms/StockForms.tsx:978 +#: src/forms/StockForms.tsx:1021 +#: src/forms/StockForms.tsx:1065 +#: src/forms/StockForms.tsx:1113 +#: src/forms/StockForms.tsx:1157 +#: src/pages/company/SupplierPartDetail.tsx:191 +#: src/pages/company/SupplierPartDetail.tsx:383 #: src/pages/part/PartDetail.tsx:534 -#: src/pages/part/PartDetail.tsx:984 +#: src/pages/part/PartDetail.tsx:999 #: src/tables/Filter.tsx:92 #: src/tables/purchasing/SupplierPartTable.tsx:230 msgid "In Stock" msgstr "En Stock" #: src/components/wizards/OrderPartsWizard.tsx:146 -#: src/tables/build/BuildLineTable.tsx:404 +#: src/tables/build/BuildLineTable.tsx:405 msgid "Required Quantity" msgstr "Cantidad requerida" @@ -3847,7 +3875,7 @@ msgid "Please correct the errors in the selected parts" msgstr "Por favor, corrija los errores en las partes seleccionadas" #: src/components/wizards/OrderPartsWizard.tsx:587 -#: src/tables/build/BuildLineTable.tsx:815 +#: src/tables/build/BuildLineTable.tsx:822 #: src/tables/part/PartTable.tsx:522 #: src/tables/sales/SalesOrderLineItemTable.tsx:370 msgid "Order Parts" @@ -4349,9 +4377,9 @@ msgstr "" #: src/forms/BuildForms.tsx:333 #: src/forms/BuildForms.tsx:408 #: src/forms/BuildForms.tsx:685 -#: src/tables/build/BuildAllocatedStockTable.tsx:150 +#: src/tables/build/BuildAllocatedStockTable.tsx:147 #: src/tables/build/BuildOutputTable.tsx:582 -#: src/tables/part/PartTestResultTable.tsx:272 +#: src/tables/part/PartTestResultTable.tsx:280 msgid "Build Output" msgstr "" @@ -4362,22 +4390,22 @@ msgstr "" #: src/forms/BuildForms.tsx:336 #: src/forms/BuildForms.tsx:411 #: src/forms/BuildForms.tsx:475 -#: src/forms/PurchaseOrderForms.tsx:717 +#: src/forms/PurchaseOrderForms.tsx:769 #: src/forms/ReturnOrderForms.tsx:197 #: src/forms/ReturnOrderForms.tsx:244 #: src/forms/StockForms.tsx:712 #: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:87 -#: src/pages/build/BuildDetail.tsx:222 +#: src/pages/build/BuildDetail.tsx:223 #: src/pages/core/UserDetail.tsx:151 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:168 -#: src/pages/sales/ReturnOrderDetail.tsx:135 -#: src/pages/sales/SalesOrderDetail.tsx:125 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:169 +#: src/pages/sales/ReturnOrderDetail.tsx:136 +#: src/pages/sales/SalesOrderDetail.tsx:126 #: src/pages/stock/StockDetail.tsx:170 #: src/tables/Filter.tsx:274 #: src/tables/build/BuildOutputTable.tsx:404 #: src/tables/machine/MachineListTable.tsx:387 #: src/tables/part/PartPurchaseOrdersTable.tsx:38 -#: src/tables/part/PartTestResultTable.tsx:309 +#: src/tables/part/PartTestResultTable.tsx:317 #: src/tables/sales/ReturnOrderLineItemTable.tsx:138 #: src/tables/sales/ReturnOrderLineItemTable.tsx:176 #: src/tables/settings/CustomStateTable.tsx:79 @@ -4443,18 +4471,19 @@ msgid "Build outputs have been cancelled" msgstr "Las salidas de la construcción han sido canceladas" #: src/forms/BuildForms.tsx:631 -#: src/pages/build/BuildDetail.tsx:207 -#: src/pages/company/ManufacturerPartDetail.tsx:85 -#: src/pages/company/SupplierPartDetail.tsx:96 +#: src/pages/build/BuildDetail.tsx:208 +#: src/pages/company/ManufacturerPartDetail.tsx:84 +#: src/pages/company/SupplierPartDetail.tsx:97 #: src/pages/part/PartDetail.tsx:453 #: src/pages/stock/StockDetail.tsx:153 #: src/tables/bom/BomTable.tsx:134 #: src/tables/bom/UsedInTable.tsx:40 -#: src/tables/build/BuildAllocatedStockTable.tsx:108 -#: src/tables/build/BuildLineTable.tsx:336 +#: src/tables/build/BuildAllocatedStockTable.tsx:105 +#: src/tables/build/BuildLineTable.tsx:337 #: src/tables/build/BuildOrderTable.tsx:79 #: src/tables/part/PartSalesAllocationsTable.tsx:61 #: src/tables/part/RelatedPartTable.tsx:73 +#: src/tables/purchasing/ManufacturerPartParametricTable.tsx:21 #: src/tables/purchasing/ManufacturerPartTable.tsx:69 #: src/tables/purchasing/SupplierPartTable.tsx:70 #: src/tables/sales/SalesOrderAllocationTable.tsx:135 @@ -4466,47 +4495,47 @@ msgstr "IPN" #: src/forms/BuildForms.tsx:632 #: src/forms/BuildForms.tsx:796 #: src/forms/BuildForms.tsx:897 -#: src/forms/SalesOrderForms.tsx:306 -#: src/tables/build/BuildAllocatedStockTable.tsx:139 -#: src/tables/build/BuildLineTable.tsx:182 +#: src/forms/SalesOrderForms.tsx:385 +#: src/tables/build/BuildAllocatedStockTable.tsx:136 +#: src/tables/build/BuildLineTable.tsx:183 #: src/tables/sales/SalesOrderLineItemTable.tsx:342 #: src/tables/stock/StockItemTable.tsx:338 msgid "Allocated" msgstr "Asignado" #: src/forms/BuildForms.tsx:667 -#: src/forms/SalesOrderForms.tsx:295 -#: src/pages/build/BuildDetail.tsx:108 -#: src/pages/build/BuildDetail.tsx:326 +#: src/forms/SalesOrderForms.tsx:374 +#: src/pages/build/BuildDetail.tsx:109 +#: src/pages/build/BuildDetail.tsx:327 msgid "Source Location" msgstr "Ubicación origen" #: src/forms/BuildForms.tsx:668 -#: src/forms/SalesOrderForms.tsx:296 +#: src/forms/SalesOrderForms.tsx:375 msgid "Select the source location for the stock allocation" msgstr "Seleccione la ubicación de origen para la asignación de stock" #: src/forms/BuildForms.tsx:700 -#: src/forms/SalesOrderForms.tsx:336 -#: src/tables/build/BuildLineTable.tsx:574 -#: src/tables/build/BuildLineTable.tsx:731 -#: src/tables/build/BuildLineTable.tsx:830 +#: src/forms/SalesOrderForms.tsx:415 +#: src/tables/build/BuildLineTable.tsx:575 +#: src/tables/build/BuildLineTable.tsx:738 +#: src/tables/build/BuildLineTable.tsx:837 #: src/tables/sales/SalesOrderLineItemTable.tsx:380 #: src/tables/sales/SalesOrderLineItemTable.tsx:406 msgid "Allocate Stock" msgstr "Stock Asignado" #: src/forms/BuildForms.tsx:703 -#: src/forms/SalesOrderForms.tsx:341 +#: src/forms/SalesOrderForms.tsx:420 msgid "Stock items allocated" msgstr "Artículos de stock seleccionados" #: src/forms/BuildForms.tsx:816 #: src/forms/BuildForms.tsx:917 -#: src/tables/build/BuildAllocatedStockTable.tsx:240 -#: src/tables/build/BuildAllocatedStockTable.tsx:272 -#: src/tables/build/BuildLineTable.tsx:741 -#: src/tables/build/BuildLineTable.tsx:864 +#: src/tables/build/BuildAllocatedStockTable.tsx:243 +#: src/tables/build/BuildAllocatedStockTable.tsx:279 +#: src/tables/build/BuildLineTable.tsx:748 +#: src/tables/build/BuildLineTable.tsx:871 msgid "Consume Stock" msgstr "" @@ -4521,21 +4550,21 @@ msgstr "" #~ msgstr "Stock items consumed" #: src/forms/BuildForms.tsx:853 -#: src/tables/build/BuildLineTable.tsx:514 +#: src/tables/build/BuildLineTable.tsx:515 #: src/tables/part/PartBuildAllocationsTable.tsx:101 msgid "Fully consumed" msgstr "" #: src/forms/BuildForms.tsx:898 -#: src/tables/build/BuildLineTable.tsx:187 +#: src/tables/build/BuildLineTable.tsx:188 #: src/tables/stock/StockItemTable.tsx:367 msgid "Consumed" msgstr "Consumido" -#: src/forms/CommonForms.tsx:88 -#: src/forms/PurchaseOrderForms.tsx:125 +#: src/forms/CommonForms.tsx:92 +#: src/forms/PurchaseOrderForms.tsx:176 #: src/forms/ReturnOrderForms.tsx:138 -#: src/forms/SalesOrderForms.tsx:164 +#: src/forms/SalesOrderForms.tsx:185 msgid "Select project code for this line item" msgstr "" @@ -4543,16 +4572,16 @@ msgstr "" #~ msgid "Company updated" #~ msgstr "Company updated" -#: src/forms/PartForms.tsx:85 -#: src/forms/PartForms.tsx:207 -#: src/pages/part/CategoryDetail.tsx:124 +#: src/forms/PartForms.tsx:99 +#: src/forms/PartForms.tsx:228 +#: src/pages/part/CategoryDetail.tsx:127 #: src/pages/part/PartDetail.tsx:668 #: src/tables/part/PartCategoryTable.tsx:94 #: src/tables/part/PartTable.tsx:325 msgid "Subscribed" msgstr "Suscrito" -#: src/forms/PartForms.tsx:86 +#: src/forms/PartForms.tsx:100 msgid "Subscribe to notifications for this part" msgstr "Suscríbete a las notificaciones de esta pieza" @@ -4564,156 +4593,156 @@ msgstr "Suscríbete a las notificaciones de esta pieza" #~ msgid "Part updated" #~ msgstr "Part updated" -#: src/forms/PartForms.tsx:193 +#: src/forms/PartForms.tsx:214 msgid "Parent part category" msgstr "Categoría superior de pieza" -#: src/forms/PartForms.tsx:208 +#: src/forms/PartForms.tsx:229 msgid "Subscribe to notifications for this category" msgstr "Suscribirse a las notificaciones de esta categoría" -#: src/forms/PurchaseOrderForms.tsx:388 -msgid "Assign Batch Code and Serial Numbers" -msgstr "Asignar código de lote y números de serie" - -#: src/forms/PurchaseOrderForms.tsx:390 -msgid "Assign Batch Code" -msgstr "Asignar código de lote" - -#: src/forms/PurchaseOrderForms.tsx:410 -msgid "Choose Location" -msgstr "Elegir ubicación" - -#: src/forms/PurchaseOrderForms.tsx:418 -msgid "Item Destination selected" -msgstr "Destino de artículo seleccionado" - #: src/forms/PurchaseOrderForms.tsx:421 #~ msgid "Assign Batch Code{0}" #~ msgstr "Assign Batch Code{0}" -#: src/forms/PurchaseOrderForms.tsx:428 -msgid "Part category default location selected" -msgstr "Ubicación por defecto de la categoría de pieza eleccionada" +#: src/forms/PurchaseOrderForms.tsx:440 +msgid "Assign Batch Code and Serial Numbers" +msgstr "Asignar código de lote y números de serie" -#: src/forms/PurchaseOrderForms.tsx:438 -msgid "Received stock location selected" -msgstr "Seleccionada ubicación de existencias recibidas" +#: src/forms/PurchaseOrderForms.tsx:442 +msgid "Assign Batch Code" +msgstr "Asignar código de lote" #: src/forms/PurchaseOrderForms.tsx:444 #: src/forms/StockForms.tsx:428 #~ msgid "Remove item from list" #~ msgstr "Remove item from list" -#: src/forms/PurchaseOrderForms.tsx:446 +#: src/forms/PurchaseOrderForms.tsx:462 +msgid "Choose Location" +msgstr "Elegir ubicación" + +#: src/forms/PurchaseOrderForms.tsx:470 +msgid "Item Destination selected" +msgstr "Destino de artículo seleccionado" + +#: src/forms/PurchaseOrderForms.tsx:480 +msgid "Part category default location selected" +msgstr "Ubicación por defecto de la categoría de pieza eleccionada" + +#: src/forms/PurchaseOrderForms.tsx:490 +msgid "Received stock location selected" +msgstr "Seleccionada ubicación de existencias recibidas" + +#: src/forms/PurchaseOrderForms.tsx:498 msgid "Default location selected" msgstr "Ubicación por defecto seleccionada" -#: src/forms/PurchaseOrderForms.tsx:507 +#: src/forms/PurchaseOrderForms.tsx:559 msgid "Set Location" msgstr "Establecer ubicación" -#: src/forms/PurchaseOrderForms.tsx:524 -msgid "Set Expiry Date" -msgstr "Establecer la fecha de caducidad" - -#: src/forms/PurchaseOrderForms.tsx:532 -#: src/forms/StockForms.tsx:693 -msgid "Adjust Packaging" -msgstr "Ajustar empaquetado" - -#: src/forms/PurchaseOrderForms.tsx:540 -#: src/forms/StockForms.tsx:684 -#: src/hooks/UseStockAdjustActions.tsx:148 -msgid "Change Status" -msgstr "Cambiar Estado" - -#: src/forms/PurchaseOrderForms.tsx:546 -msgid "Add Note" -msgstr "Añadir Nota" - #: src/forms/PurchaseOrderForms.tsx:566 #~ msgid "Serial numbers" #~ msgstr "Serial numbers" +#: src/forms/PurchaseOrderForms.tsx:576 +msgid "Set Expiry Date" +msgstr "Establecer la fecha de caducidad" + #: src/forms/PurchaseOrderForms.tsx:582 #~ msgid "Store at line item destination" #~ msgstr "Store at line item destination" -#: src/forms/PurchaseOrderForms.tsx:610 -msgid "Store at default location" -msgstr "Guardar en la ubicación predeterminada" +#: src/forms/PurchaseOrderForms.tsx:584 +#: src/forms/StockForms.tsx:693 +msgid "Adjust Packaging" +msgstr "Ajustar empaquetado" -#: src/forms/PurchaseOrderForms.tsx:625 -msgid "Store at line item destination " -msgstr "" +#: src/forms/PurchaseOrderForms.tsx:592 +#: src/forms/StockForms.tsx:684 +#: src/hooks/UseStockAdjustActions.tsx:148 +msgid "Change Status" +msgstr "Cambiar Estado" -#: src/forms/PurchaseOrderForms.tsx:637 -msgid "Store with already received stock" -msgstr "Guardar con cantidad ya recibida" +#: src/forms/PurchaseOrderForms.tsx:598 +msgid "Add Note" +msgstr "Añadir Nota" #: src/forms/PurchaseOrderForms.tsx:658 #~ msgid "Receive line items" #~ msgstr "Receive line items" -#: src/forms/PurchaseOrderForms.tsx:661 -#: src/pages/build/BuildDetail.tsx:340 +#: src/forms/PurchaseOrderForms.tsx:662 +msgid "Store at default location" +msgstr "Guardar en la ubicación predeterminada" + +#: src/forms/PurchaseOrderForms.tsx:677 +msgid "Store at line item destination " +msgstr "" + +#: src/forms/PurchaseOrderForms.tsx:689 +msgid "Store with already received stock" +msgstr "Guardar con cantidad ya recibida" + +#: src/forms/PurchaseOrderForms.tsx:713 +#: src/pages/build/BuildDetail.tsx:341 #: src/pages/stock/StockDetail.tsx:280 #: src/pages/stock/StockDetail.tsx:952 #: src/tables/Filter.tsx:83 -#: src/tables/build/BuildAllocatedStockTable.tsx:128 +#: src/tables/build/BuildAllocatedStockTable.tsx:125 #: src/tables/build/BuildOutputTable.tsx:112 -#: src/tables/part/PartTestResultTable.tsx:260 -#: src/tables/part/PartTestResultTable.tsx:281 +#: src/tables/part/PartTestResultTable.tsx:268 +#: src/tables/part/PartTestResultTable.tsx:289 #: src/tables/sales/SalesOrderAllocationTable.tsx:149 msgid "Batch Code" msgstr "Código de lote" -#: src/forms/PurchaseOrderForms.tsx:662 +#: src/forms/PurchaseOrderForms.tsx:714 msgid "Enter batch code for received items" msgstr "Introduzca el código de lote para los artículos recibidos" -#: src/forms/PurchaseOrderForms.tsx:675 +#: src/forms/PurchaseOrderForms.tsx:727 #: src/forms/StockForms.tsx:218 msgid "Serial Numbers" msgstr "Números de serie" -#: src/forms/PurchaseOrderForms.tsx:676 +#: src/forms/PurchaseOrderForms.tsx:728 msgid "Enter serial numbers for received items" msgstr "Introduzca números de serie para los elementos recibidos" -#: src/forms/PurchaseOrderForms.tsx:690 +#: src/forms/PurchaseOrderForms.tsx:742 #: src/pages/stock/StockDetail.tsx:382 #: src/tables/stock/StockItemTable.tsx:294 msgid "Expiry Date" msgstr "Fecha de caducidad" -#: src/forms/PurchaseOrderForms.tsx:691 +#: src/forms/PurchaseOrderForms.tsx:743 msgid "Enter an expiry date for received items" msgstr "Introduzca una fecha de caducidad para los artículos recibidos" -#: src/forms/PurchaseOrderForms.tsx:703 +#: src/forms/PurchaseOrderForms.tsx:755 #: src/forms/StockForms.tsx:728 -#: src/pages/company/SupplierPartDetail.tsx:172 -#: src/pages/company/SupplierPartDetail.tsx:236 +#: src/pages/company/SupplierPartDetail.tsx:173 +#: src/pages/company/SupplierPartDetail.tsx:237 #: src/pages/stock/StockDetail.tsx:419 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:227 msgid "Packaging" msgstr "Empaquetado" -#: src/forms/PurchaseOrderForms.tsx:727 -#: src/pages/company/SupplierPartDetail.tsx:120 +#: src/forms/PurchaseOrderForms.tsx:779 +#: src/pages/company/SupplierPartDetail.tsx:121 #: src/tables/ColumnRenderers.tsx:332 msgid "Note" msgstr "Nota" -#: src/forms/PurchaseOrderForms.tsx:799 -#: src/pages/company/SupplierPartDetail.tsx:138 +#: src/forms/PurchaseOrderForms.tsx:851 +#: src/pages/company/SupplierPartDetail.tsx:139 #: src/tables/purchasing/SupplierPriceBreakTable.tsx:49 msgid "SKU" msgstr "SKU" -#: src/forms/PurchaseOrderForms.tsx:800 +#: src/forms/PurchaseOrderForms.tsx:852 #: src/tables/part/PartPurchaseOrdersTable.tsx:127 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:213 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:283 @@ -4721,11 +4750,11 @@ msgstr "SKU" msgid "Received" msgstr "Recibido" -#: src/forms/PurchaseOrderForms.tsx:817 +#: src/forms/PurchaseOrderForms.tsx:869 msgid "Receive Line Items" msgstr "Recibir partidas" -#: src/forms/PurchaseOrderForms.tsx:823 +#: src/forms/PurchaseOrderForms.tsx:875 msgid "Items received" msgstr "Artículos recibidos" @@ -4737,7 +4766,35 @@ msgstr "Recibir artículos" msgid "Item received into stock" msgstr "Artículo recibido en existencias" -#: src/forms/SalesOrderForms.tsx:401 +#: src/forms/SalesOrderForms.tsx:208 +#: src/forms/SalesOrderForms.tsx:210 +#: src/tables/sales/SalesOrderShipmentTable.tsx:215 +msgid "Check Shipment" +msgstr "" + +#: src/forms/SalesOrderForms.tsx:211 +msgid "Marking the shipment as checked indicates that you have verified that all items included in this shipment are correct" +msgstr "" + +#: src/forms/SalesOrderForms.tsx:221 +msgid "Shipment marked as checked" +msgstr "" + +#: src/forms/SalesOrderForms.tsx:236 +#: src/forms/SalesOrderForms.tsx:238 +#: src/tables/sales/SalesOrderShipmentTable.tsx:228 +msgid "Uncheck Shipment" +msgstr "" + +#: src/forms/SalesOrderForms.tsx:239 +msgid "Marking the shipment as unchecked indicates that the shipment requires further verification" +msgstr "" + +#: src/forms/SalesOrderForms.tsx:249 +msgid "Shipment marked as unchecked" +msgstr "" + +#: src/forms/SalesOrderForms.tsx:480 msgid "Leave blank to use the order address" msgstr "" @@ -4792,150 +4849,150 @@ msgstr "Mover" msgid "Return" msgstr "Devolver" -#: src/forms/StockForms.tsx:963 +#: src/forms/StockForms.tsx:979 #: src/pages/Index/Scan.tsx:182 msgid "Count" msgstr "Contar" -#: src/forms/StockForms.tsx:1246 +#: src/forms/StockForms.tsx:1262 #: src/hooks/UseStockAdjustActions.tsx:108 msgid "Add Stock" msgstr "Agregar existencias" -#: src/forms/StockForms.tsx:1247 +#: src/forms/StockForms.tsx:1263 msgid "Stock added" msgstr "Existencias añadidas" -#: src/forms/StockForms.tsx:1250 +#: src/forms/StockForms.tsx:1266 msgid "Increase the quantity of the selected stock items by a given amount." msgstr "" -#: src/forms/StockForms.tsx:1261 +#: src/forms/StockForms.tsx:1277 #: src/hooks/UseStockAdjustActions.tsx:118 msgid "Remove Stock" msgstr "Eliminar existencias" -#: src/forms/StockForms.tsx:1262 +#: src/forms/StockForms.tsx:1278 msgid "Stock removed" msgstr "Existencias eliminadas" -#: src/forms/StockForms.tsx:1265 +#: src/forms/StockForms.tsx:1281 msgid "Decrease the quantity of the selected stock items by a given amount." msgstr "" -#: src/forms/StockForms.tsx:1276 +#: src/forms/StockForms.tsx:1292 #: src/hooks/UseStockAdjustActions.tsx:128 msgid "Transfer Stock" msgstr "Transferir existencias" -#: src/forms/StockForms.tsx:1277 +#: src/forms/StockForms.tsx:1293 msgid "Stock transferred" msgstr "Existencias transferidas" -#: src/forms/StockForms.tsx:1280 +#: src/forms/StockForms.tsx:1296 msgid "Transfer selected items to the specified location." msgstr "" -#: src/forms/StockForms.tsx:1291 +#: src/forms/StockForms.tsx:1307 #: src/hooks/UseStockAdjustActions.tsx:168 msgid "Return Stock" msgstr "" -#: src/forms/StockForms.tsx:1292 +#: src/forms/StockForms.tsx:1308 msgid "Stock returned" msgstr "" -#: src/forms/StockForms.tsx:1295 +#: src/forms/StockForms.tsx:1311 msgid "Return selected items into stock, to the specified location." msgstr "" -#: src/forms/StockForms.tsx:1306 +#: src/forms/StockForms.tsx:1322 #: src/hooks/UseStockAdjustActions.tsx:98 msgid "Count Stock" msgstr "Contar existencias" -#: src/forms/StockForms.tsx:1307 +#: src/forms/StockForms.tsx:1323 msgid "Stock counted" msgstr "Existencias contadas" -#: src/forms/StockForms.tsx:1310 +#: src/forms/StockForms.tsx:1326 msgid "Count the selected stock items, and adjust the quantity accordingly." msgstr "" -#: src/forms/StockForms.tsx:1321 +#: src/forms/StockForms.tsx:1337 msgid "Change Stock Status" msgstr "Cambiar estado de existencias" -#: src/forms/StockForms.tsx:1322 +#: src/forms/StockForms.tsx:1338 msgid "Stock status changed" msgstr "Estado de existencias cambiado" -#: src/forms/StockForms.tsx:1325 +#: src/forms/StockForms.tsx:1341 msgid "Change the status of the selected stock items." msgstr "" -#: src/forms/StockForms.tsx:1336 +#: src/forms/StockForms.tsx:1352 #: src/hooks/UseStockAdjustActions.tsx:138 msgid "Merge Stock" msgstr "Juntar existencias" -#: src/forms/StockForms.tsx:1337 +#: src/forms/StockForms.tsx:1353 msgid "Stock merged" msgstr "Existencias fusionadas" -#: src/forms/StockForms.tsx:1339 +#: src/forms/StockForms.tsx:1355 msgid "Merge Stock Items" msgstr "" -#: src/forms/StockForms.tsx:1341 +#: src/forms/StockForms.tsx:1357 msgid "Merge operation cannot be reversed" msgstr "" -#: src/forms/StockForms.tsx:1342 +#: src/forms/StockForms.tsx:1358 msgid "Tracking information may be lost when merging items" msgstr "" -#: src/forms/StockForms.tsx:1343 +#: src/forms/StockForms.tsx:1359 msgid "Supplier information may be lost when merging items" msgstr "" -#: src/forms/StockForms.tsx:1361 +#: src/forms/StockForms.tsx:1377 msgid "Assign Stock to Customer" msgstr "Asignar existencias a cliente" -#: src/forms/StockForms.tsx:1362 +#: src/forms/StockForms.tsx:1378 msgid "Stock assigned to customer" msgstr "Existencias asignadas a cliente" -#: src/forms/StockForms.tsx:1372 +#: src/forms/StockForms.tsx:1388 msgid "Delete Stock Items" msgstr "Eliminar existencias" -#: src/forms/StockForms.tsx:1373 +#: src/forms/StockForms.tsx:1389 msgid "Stock deleted" msgstr "Existencias eliminadas" -#: src/forms/StockForms.tsx:1376 +#: src/forms/StockForms.tsx:1392 msgid "This operation will permanently delete the selected stock items." msgstr "" -#: src/forms/StockForms.tsx:1385 +#: src/forms/StockForms.tsx:1401 msgid "Parent stock location" msgstr "Ubicación del stock padre" -#: src/forms/StockForms.tsx:1512 +#: src/forms/StockForms.tsx:1528 msgid "Find Serial Number" msgstr "" -#: src/forms/StockForms.tsx:1523 +#: src/forms/StockForms.tsx:1539 msgid "No matching items" msgstr "" -#: src/forms/StockForms.tsx:1529 +#: src/forms/StockForms.tsx:1545 msgid "Multiple matching items" msgstr "" -#: src/forms/StockForms.tsx:1538 +#: src/forms/StockForms.tsx:1554 msgid "Invalid response from server" msgstr "" @@ -4953,7 +5010,6 @@ msgstr "Lista de entradas entre las que elegir" #: src/tables/FilterSelectDrawer.tsx:137 #: src/tables/FilterSelectDrawer.tsx:149 #: src/tables/part/PartTestResultTable.tsx:206 -#: src/tables/purchasing/ManufacturerPartParameterTable.tsx:42 #: src/tables/stock/StockItemTestResultTable.tsx:207 msgid "Value" msgstr "Valor" @@ -5244,7 +5300,7 @@ msgid "Delete selected stock items" msgstr "" #: src/hooks/UseStockAdjustActions.tsx:205 -#: src/pages/part/PartDetail.tsx:1137 +#: src/pages/part/PartDetail.tsx:1158 msgid "Stock Actions" msgstr "" @@ -5932,6 +5988,9 @@ msgstr "" #: src/pages/Index/Settings/AccountSettings/MFASettings.tsx:310 #: src/pages/Index/Settings/AccountSettings/MFASettings.tsx:401 +#: src/tables/build/BuildAllocatedStockTable.tsx:181 +#: src/tables/build/BuildLineTable.tsx:668 +#: src/tables/sales/SalesOrderAllocationTable.tsx:220 msgid "Confirm Removal" msgstr "" @@ -6394,30 +6453,34 @@ msgid "Email Messages" msgstr "" #: src/pages/Index/Settings/AdminCenter/HomePanel.tsx:22 -msgid "Active Alerts" -msgstr "" +#~ msgid "Active Alerts" +#~ msgstr "Active Alerts" #: src/pages/Index/Settings/AdminCenter/HomePanel.tsx:27 -msgid "Inactive Alerts" +#~ msgid "Inactive Alerts" +#~ msgstr "Inactive Alerts" + +#: src/pages/Index/Settings/AdminCenter/HomePanel.tsx:36 +msgid "System Status" msgstr "" -#: src/pages/Index/Settings/AdminCenter/HomePanel.tsx:38 +#: src/pages/Index/Settings/AdminCenter/HomePanel.tsx:47 msgid "Admin Center Information" msgstr "" -#: src/pages/Index/Settings/AdminCenter/HomePanel.tsx:44 +#: src/pages/Index/Settings/AdminCenter/HomePanel.tsx:53 msgid "The home panel (and the whole Admin Center) is a new feature starting with the new UI and was previously (before 1.0) not available." msgstr "" -#: src/pages/Index/Settings/AdminCenter/HomePanel.tsx:51 +#: src/pages/Index/Settings/AdminCenter/HomePanel.tsx:60 msgid "The admin center provides a centralized location for all administration functionality and is meant to replace all interaction with the (django) backend admin interface." msgstr "" -#: src/pages/Index/Settings/AdminCenter/HomePanel.tsx:58 +#: src/pages/Index/Settings/AdminCenter/HomePanel.tsx:67 msgid "Please open feature requests (after checking the tracker) for any existing backend admin functionality you are missing in this UI. The backend admin interface should be used carefully and seldom." msgstr "" -#: src/pages/Index/Settings/AdminCenter/HomePanel.tsx:76 +#: src/pages/Index/Settings/AdminCenter/HomePanel.tsx:85 msgid "Quick Actions" msgstr "" @@ -6476,11 +6539,11 @@ msgstr "Unidades personalizadas" #: src/pages/Index/Settings/AdminCenter/Index.tsx:195 #: src/pages/part/CategoryDetail.tsx:313 -msgid "Part Parameters" -msgstr "Parámetros de Pieza" +#~ msgid "Part Parameters" +#~ msgstr "Part Parameters" #: src/pages/Index/Settings/AdminCenter/Index.tsx:202 -#: src/pages/part/CategoryDetail.tsx:306 +#: src/pages/part/CategoryDetail.tsx:329 msgid "Category Parameters" msgstr "Parámetros de categoría" @@ -6494,7 +6557,7 @@ msgstr "Tipos de Ubicación" #: src/pages/Index/Settings/AdminCenter/Index.tsx:235 #: src/pages/Index/Settings/AdminCenter/MachineManagementPanel.tsx:52 -#: src/tables/machine/MachineTypeTable.tsx:325 +#: src/tables/machine/MachineTypeTable.tsx:323 msgid "Machines" msgstr "Máquinas" @@ -6507,8 +6570,8 @@ msgid "Data Management" msgstr "" #: src/pages/Index/Settings/AdminCenter/Index.tsx:270 -#: src/pages/Index/Settings/SystemSettings.tsx:175 -#: src/pages/Index/Settings/UserSettings.tsx:118 +#: src/pages/Index/Settings/SystemSettings.tsx:176 +#: src/pages/Index/Settings/UserSettings.tsx:119 msgid "Reporting" msgstr "Informes" @@ -6709,11 +6772,11 @@ msgstr "" msgid "The settings below are specific to each available plugin" msgstr "" -#: src/pages/Index/Settings/SystemSettings.tsx:77 +#: src/pages/Index/Settings/SystemSettings.tsx:78 msgid "Authentication" msgstr "" -#: src/pages/Index/Settings/SystemSettings.tsx:103 +#: src/pages/Index/Settings/SystemSettings.tsx:104 msgid "Barcodes" msgstr "Códigos de barras" @@ -6725,12 +6788,12 @@ msgstr "Códigos de barras" #~ msgid "This panel is a placeholder." #~ msgstr "This panel is a placeholder." -#: src/pages/Index/Settings/SystemSettings.tsx:127 -#: src/pages/Index/Settings/UserSettings.tsx:112 +#: src/pages/Index/Settings/SystemSettings.tsx:128 +#: src/pages/Index/Settings/UserSettings.tsx:113 msgid "The settings below are specific to each available notification method" msgstr "" -#: src/pages/Index/Settings/SystemSettings.tsx:133 +#: src/pages/Index/Settings/SystemSettings.tsx:134 msgid "Pricing" msgstr "Precios" @@ -6738,7 +6801,7 @@ msgstr "Precios" #~ msgid "Exchange Rates" #~ msgstr "Exchange Rates" -#: src/pages/Index/Settings/SystemSettings.tsx:169 +#: src/pages/Index/Settings/SystemSettings.tsx:170 msgid "Labels" msgstr "Etiquetas" @@ -6790,15 +6853,15 @@ msgstr "Marcar como no leído" #~ msgid "Delete notifications" #~ msgstr "Delete notifications" -#: src/pages/build/BuildDetail.tsx:69 +#: src/pages/build/BuildDetail.tsx:70 msgid "No Required Items" msgstr "" -#: src/pages/build/BuildDetail.tsx:71 +#: src/pages/build/BuildDetail.tsx:72 msgid "This build order does not have any required items." msgstr "" -#: src/pages/build/BuildDetail.tsx:72 +#: src/pages/build/BuildDetail.tsx:73 msgid "The assembled part may not have a Bill of Materials (BOM) defined, or the BOM is empty." msgstr "" @@ -6826,7 +6889,7 @@ msgstr "" #~ msgid "Build Order updated" #~ msgstr "Build Order updated" -#: src/pages/build/BuildDetail.tsx:215 +#: src/pages/build/BuildDetail.tsx:216 #: src/pages/part/PartDetail.tsx:480 #: src/pages/stock/StockDetail.tsx:161 #: src/tables/bom/UsedInTable.tsx:44 @@ -6843,10 +6906,10 @@ msgstr "Revisión" #~ msgid "Duplicate build order" #~ msgstr "Duplicate build order" -#: src/pages/build/BuildDetail.tsx:228 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:174 -#: src/pages/sales/ReturnOrderDetail.tsx:141 -#: src/pages/sales/SalesOrderDetail.tsx:131 +#: src/pages/build/BuildDetail.tsx:229 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:175 +#: src/pages/sales/ReturnOrderDetail.tsx:142 +#: src/pages/sales/SalesOrderDetail.tsx:132 #: src/pages/stock/StockDetail.tsx:176 msgid "Custom Status" msgstr "Estado Personalizado" @@ -6855,9 +6918,9 @@ msgstr "Estado Personalizado" #~ msgid "Delete build order" #~ msgstr "Delete build order" -#: src/pages/build/BuildDetail.tsx:237 -#: src/pages/build/BuildDetail.tsx:723 -#: src/pages/build/BuildIndex.tsx:28 +#: src/pages/build/BuildDetail.tsx:238 +#: src/pages/build/BuildDetail.tsx:728 +#: src/pages/build/BuildIndex.tsx:34 #: src/pages/stock/LocationDetail.tsx:140 #: src/tables/build/BuildOrderTable.tsx:123 #: src/tables/build/BuildOrderTable.tsx:183 @@ -6865,57 +6928,57 @@ msgstr "Estado Personalizado" msgid "External" msgstr "" -#: src/pages/build/BuildDetail.tsx:244 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:141 -#: src/pages/sales/ReturnOrderDetail.tsx:108 -#: src/pages/sales/SalesOrderDetail.tsx:98 +#: src/pages/build/BuildDetail.tsx:245 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:142 +#: src/pages/sales/ReturnOrderDetail.tsx:109 +#: src/pages/sales/SalesOrderDetail.tsx:99 #: src/tables/ColumnRenderers.tsx:321 -#: src/tables/build/BuildAllocatedStockTable.tsx:115 -#: src/tables/build/BuildLineTable.tsx:352 +#: src/tables/build/BuildAllocatedStockTable.tsx:112 +#: src/tables/build/BuildLineTable.tsx:353 msgid "Reference" msgstr "Referencia" -#: src/pages/build/BuildDetail.tsx:258 +#: src/pages/build/BuildDetail.tsx:259 msgid "Parent Build" msgstr "Construir padre" -#: src/pages/build/BuildDetail.tsx:269 +#: src/pages/build/BuildDetail.tsx:270 msgid "Build Quantity" msgstr "Cantidad de construcción" -#: src/pages/build/BuildDetail.tsx:275 +#: src/pages/build/BuildDetail.tsx:276 #: src/pages/part/PartDetail.tsx:598 #: src/tables/bom/BomTable.tsx:365 #: src/tables/bom/BomTable.tsx:407 msgid "Can Build" msgstr "" -#: src/pages/build/BuildDetail.tsx:284 -#: src/pages/build/BuildDetail.tsx:474 +#: src/pages/build/BuildDetail.tsx:285 +#: src/pages/build/BuildDetail.tsx:475 msgid "Completed Outputs" msgstr "Salidas completadas" -#: src/pages/build/BuildDetail.tsx:301 +#: src/pages/build/BuildDetail.tsx:302 #: src/tables/Filter.tsx:381 #: src/tables/build/BuildOrderTable.tsx:143 msgid "Issued By" msgstr "Emitido por" -#: src/pages/build/BuildDetail.tsx:309 +#: src/pages/build/BuildDetail.tsx:310 #: src/pages/part/PartDetail.tsx:691 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:261 -#: src/pages/sales/ReturnOrderDetail.tsx:239 -#: src/pages/sales/SalesOrderDetail.tsx:232 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:262 +#: src/pages/sales/ReturnOrderDetail.tsx:240 +#: src/pages/sales/SalesOrderDetail.tsx:233 #: src/tables/ColumnRenderers.tsx:464 #: src/tables/Filter.tsx:319 msgid "Responsible" msgstr "Responsable" -#: src/pages/build/BuildDetail.tsx:327 +#: src/pages/build/BuildDetail.tsx:328 msgid "Any location" msgstr "Cualquier ubicación" -#: src/pages/build/BuildDetail.tsx:334 +#: src/pages/build/BuildDetail.tsx:335 msgid "Destination Location" msgstr "Ubicación de destino" @@ -6924,24 +6987,24 @@ msgstr "Ubicación de destino" #~ msgid "Test Statistics" #~ msgstr "Test Statistics" -#: src/pages/build/BuildDetail.tsx:350 +#: src/pages/build/BuildDetail.tsx:351 #: src/tables/settings/ApiTokenTable.tsx:97 #: src/tables/settings/PendingTasksTable.tsx:41 msgid "Created" msgstr "Creado" -#: src/pages/build/BuildDetail.tsx:358 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:286 -#: src/pages/sales/ReturnOrderDetail.tsx:265 -#: src/pages/sales/SalesOrderDetail.tsx:257 +#: src/pages/build/BuildDetail.tsx:359 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:287 +#: src/pages/sales/ReturnOrderDetail.tsx:266 +#: src/pages/sales/SalesOrderDetail.tsx:258 #: src/tables/ColumnRenderers.tsx:486 msgid "Start Date" msgstr "Fecha de inicio" -#: src/pages/build/BuildDetail.tsx:366 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:294 -#: src/pages/sales/ReturnOrderDetail.tsx:273 -#: src/pages/sales/SalesOrderDetail.tsx:265 +#: src/pages/build/BuildDetail.tsx:367 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:295 +#: src/pages/sales/ReturnOrderDetail.tsx:274 +#: src/pages/sales/SalesOrderDetail.tsx:266 #: src/tables/ColumnRenderers.tsx:494 #: src/tables/part/PartPurchaseOrdersTable.tsx:101 #: src/tables/sales/ReturnOrderLineItemTable.tsx:154 @@ -6954,185 +7017,185 @@ msgstr "Fecha objetivo" #~ msgstr "Reporting Actions" #: src/pages/build/BuildDetail.tsx:374 +#~ msgid "Print build report" +#~ msgstr "Print build report" + +#: src/pages/build/BuildDetail.tsx:375 #: src/tables/build/BuildOrderTable.tsx:93 #: src/tables/sales/SalesOrderLineItemTable.tsx:347 msgid "Completed" msgstr "Completado" -#: src/pages/build/BuildDetail.tsx:374 -#~ msgid "Print build report" -#~ msgstr "Print build report" - -#: src/pages/build/BuildDetail.tsx:410 +#: src/pages/build/BuildDetail.tsx:411 msgid "Build Details" msgstr "Detalles de construcción" -#: src/pages/build/BuildDetail.tsx:416 +#: src/pages/build/BuildDetail.tsx:417 msgid "Required Parts" msgstr "" -#: src/pages/build/BuildDetail.tsx:428 -#: src/pages/sales/SalesOrderDetail.tsx:407 -#: src/pages/sales/SalesOrderShipmentDetail.tsx:261 +#: src/pages/build/BuildDetail.tsx:429 +#: src/pages/sales/SalesOrderDetail.tsx:408 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:259 #: src/tables/part/PartSalesAllocationsTable.tsx:73 msgid "Allocated Stock" msgstr "Existencias asignadas" -#: src/pages/build/BuildDetail.tsx:444 +#: src/pages/build/BuildDetail.tsx:445 msgid "Consumed Stock" msgstr "Existencias consumidas" -#: src/pages/build/BuildDetail.tsx:461 +#: src/pages/build/BuildDetail.tsx:462 msgid "Incomplete Outputs" msgstr "Salidas incompletas" -#: src/pages/build/BuildDetail.tsx:489 +#: src/pages/build/BuildDetail.tsx:490 msgid "External Orders" msgstr "" -#: src/pages/build/BuildDetail.tsx:503 +#: src/pages/build/BuildDetail.tsx:504 msgid "Child Build Orders" msgstr "Órdenes de Trabajo herederas" -#: src/pages/build/BuildDetail.tsx:513 -#: src/pages/part/PartDetail.tsx:937 +#: src/pages/build/BuildDetail.tsx:514 +#: src/pages/part/PartDetail.tsx:926 #: src/pages/stock/StockDetail.tsx:587 #: src/tables/build/BuildOutputTable.tsx:654 #: src/tables/stock/StockItemTestResultTable.tsx:173 msgid "Test Results" msgstr "Resultados de la prueba" -#: src/pages/build/BuildDetail.tsx:550 +#: src/pages/build/BuildDetail.tsx:555 msgid "Edit Build Order" msgstr "Editar orden de construcción" -#: src/pages/build/BuildDetail.tsx:572 +#: src/pages/build/BuildDetail.tsx:577 #: src/tables/build/BuildOrderTable.tsx:207 #: src/tables/build/BuildOrderTable.tsx:223 msgid "Add Build Order" msgstr "Añadir orden de construcción" -#: src/pages/build/BuildDetail.tsx:582 +#: src/pages/build/BuildDetail.tsx:587 msgid "Cancel Build Order" msgstr "Cancelar orden de construcción" -#: src/pages/build/BuildDetail.tsx:584 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:416 -#: src/pages/sales/ReturnOrderDetail.tsx:427 -#: src/pages/sales/SalesOrderDetail.tsx:454 +#: src/pages/build/BuildDetail.tsx:589 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:421 +#: src/pages/sales/ReturnOrderDetail.tsx:432 +#: src/pages/sales/SalesOrderDetail.tsx:459 msgid "Order cancelled" msgstr "Pedido cancelado" -#: src/pages/build/BuildDetail.tsx:585 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:415 -#: src/pages/sales/ReturnOrderDetail.tsx:426 -#: src/pages/sales/SalesOrderDetail.tsx:453 +#: src/pages/build/BuildDetail.tsx:590 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:420 +#: src/pages/sales/ReturnOrderDetail.tsx:431 +#: src/pages/sales/SalesOrderDetail.tsx:458 msgid "Cancel this order" msgstr "Cancelar esta orden" -#: src/pages/build/BuildDetail.tsx:594 +#: src/pages/build/BuildDetail.tsx:599 msgid "Hold Build Order" msgstr "Poner en espera orden de construcción" -#: src/pages/build/BuildDetail.tsx:596 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:423 -#: src/pages/sales/ReturnOrderDetail.tsx:434 -#: src/pages/sales/SalesOrderDetail.tsx:461 +#: src/pages/build/BuildDetail.tsx:601 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:428 +#: src/pages/sales/ReturnOrderDetail.tsx:439 +#: src/pages/sales/SalesOrderDetail.tsx:466 msgid "Place this order on hold" msgstr "Poner este pedido en espera" -#: src/pages/build/BuildDetail.tsx:597 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:424 -#: src/pages/sales/ReturnOrderDetail.tsx:435 -#: src/pages/sales/SalesOrderDetail.tsx:462 +#: src/pages/build/BuildDetail.tsx:602 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:429 +#: src/pages/sales/ReturnOrderDetail.tsx:440 +#: src/pages/sales/SalesOrderDetail.tsx:467 msgid "Order placed on hold" msgstr "Pedido puesto en espera" -#: src/pages/build/BuildDetail.tsx:602 +#: src/pages/build/BuildDetail.tsx:607 msgid "Issue Build Order" msgstr "Emitir Orden de Construcción" -#: src/pages/build/BuildDetail.tsx:604 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:407 -#: src/pages/sales/ReturnOrderDetail.tsx:418 -#: src/pages/sales/SalesOrderDetail.tsx:445 +#: src/pages/build/BuildDetail.tsx:609 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:412 +#: src/pages/sales/ReturnOrderDetail.tsx:423 +#: src/pages/sales/SalesOrderDetail.tsx:450 msgid "Issue this order" msgstr "Emitir este pedido" -#: src/pages/build/BuildDetail.tsx:605 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:408 -#: src/pages/sales/ReturnOrderDetail.tsx:419 -#: src/pages/sales/SalesOrderDetail.tsx:446 +#: src/pages/build/BuildDetail.tsx:610 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:413 +#: src/pages/sales/ReturnOrderDetail.tsx:424 +#: src/pages/sales/SalesOrderDetail.tsx:451 msgid "Order issued" msgstr "Orden emitida" -#: src/pages/build/BuildDetail.tsx:624 +#: src/pages/build/BuildDetail.tsx:629 msgid "Complete Build Order" msgstr "Completar Orden de Construcción" -#: src/pages/build/BuildDetail.tsx:630 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:436 -#: src/pages/sales/ReturnOrderDetail.tsx:442 -#: src/pages/sales/SalesOrderDetail.tsx:480 +#: src/pages/build/BuildDetail.tsx:635 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:441 +#: src/pages/sales/ReturnOrderDetail.tsx:447 +#: src/pages/sales/SalesOrderDetail.tsx:485 msgid "Mark this order as complete" msgstr "Marcar pedido como completado" -#: src/pages/build/BuildDetail.tsx:633 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:430 -#: src/pages/sales/ReturnOrderDetail.tsx:443 -#: src/pages/sales/SalesOrderDetail.tsx:481 +#: src/pages/build/BuildDetail.tsx:638 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:435 +#: src/pages/sales/ReturnOrderDetail.tsx:448 +#: src/pages/sales/SalesOrderDetail.tsx:486 msgid "Order completed" msgstr "Pedido completado" -#: src/pages/build/BuildDetail.tsx:660 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:459 -#: src/pages/sales/ReturnOrderDetail.tsx:470 -#: src/pages/sales/SalesOrderDetail.tsx:516 +#: src/pages/build/BuildDetail.tsx:665 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:464 +#: src/pages/sales/ReturnOrderDetail.tsx:475 +#: src/pages/sales/SalesOrderDetail.tsx:521 msgid "Issue Order" msgstr "Emitir pedido" -#: src/pages/build/BuildDetail.tsx:667 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:466 -#: src/pages/sales/ReturnOrderDetail.tsx:477 -#: src/pages/sales/SalesOrderDetail.tsx:530 +#: src/pages/build/BuildDetail.tsx:672 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:471 +#: src/pages/sales/ReturnOrderDetail.tsx:482 +#: src/pages/sales/SalesOrderDetail.tsx:535 msgid "Complete Order" msgstr "Completar Pedido" -#: src/pages/build/BuildDetail.tsx:686 +#: src/pages/build/BuildDetail.tsx:691 msgid "Build Order Actions" msgstr "" -#: src/pages/build/BuildDetail.tsx:691 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:489 -#: src/pages/sales/ReturnOrderDetail.tsx:500 -#: src/pages/sales/SalesOrderDetail.tsx:554 +#: src/pages/build/BuildDetail.tsx:696 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:494 +#: src/pages/sales/ReturnOrderDetail.tsx:505 +#: src/pages/sales/SalesOrderDetail.tsx:559 msgid "Edit order" msgstr "Editar pedido" -#: src/pages/build/BuildDetail.tsx:695 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:497 -#: src/pages/sales/ReturnOrderDetail.tsx:506 -#: src/pages/sales/SalesOrderDetail.tsx:559 +#: src/pages/build/BuildDetail.tsx:700 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:502 +#: src/pages/sales/ReturnOrderDetail.tsx:511 +#: src/pages/sales/SalesOrderDetail.tsx:564 msgid "Duplicate order" msgstr "Duplicar pedido" -#: src/pages/build/BuildDetail.tsx:699 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:500 -#: src/pages/sales/ReturnOrderDetail.tsx:511 -#: src/pages/sales/SalesOrderDetail.tsx:562 -msgid "Hold order" -msgstr "Retener pedido" - #: src/pages/build/BuildDetail.tsx:704 #: src/pages/purchasing/PurchaseOrderDetail.tsx:505 #: src/pages/sales/ReturnOrderDetail.tsx:516 #: src/pages/sales/SalesOrderDetail.tsx:567 +msgid "Hold order" +msgstr "Retener pedido" + +#: src/pages/build/BuildDetail.tsx:709 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:510 +#: src/pages/sales/ReturnOrderDetail.tsx:521 +#: src/pages/sales/SalesOrderDetail.tsx:572 msgid "Cancel order" msgstr "Cancelar pedido" -#: src/pages/build/BuildDetail.tsx:742 +#: src/pages/build/BuildDetail.tsx:747 #: src/pages/stock/StockDetail.tsx:344 -#: src/tables/build/BuildAllocatedStockTable.tsx:85 +#: src/tables/build/BuildAllocatedStockTable.tsx:82 #: src/tables/part/PartBuildAllocationsTable.tsx:45 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:157 #: src/tables/stock/StockTrackingTable.tsx:109 @@ -7143,7 +7206,7 @@ msgstr "" #~ msgid "Build order created" #~ msgstr "Build order created" -#: src/pages/build/BuildIndex.tsx:29 +#: src/pages/build/BuildIndex.tsx:35 #: src/tables/build/BuildOrderTable.tsx:184 msgid "Show external build orders" msgstr "" @@ -7152,61 +7215,82 @@ msgstr "" #~ msgid "New Build Order" #~ msgstr "New Build Order" -#: src/pages/build/BuildIndex.tsx:83 -#: src/pages/purchasing/PurchasingIndex.tsx:69 -#: src/pages/sales/SalesIndex.tsx:92 -#: src/pages/sales/SalesIndex.tsx:125 +#: src/pages/build/BuildIndex.tsx:74 +#: src/pages/part/CategoryDetail.tsx:292 +#: src/pages/purchasing/PurchasingIndex.tsx:74 +#: src/pages/purchasing/PurchasingIndex.tsx:107 +#: src/pages/purchasing/PurchasingIndex.tsx:135 +#: src/pages/purchasing/PurchasingIndex.tsx:156 +#: src/pages/purchasing/PurchasingIndex.tsx:184 +#: src/pages/sales/SalesIndex.tsx:61 +#: src/pages/sales/SalesIndex.tsx:107 +#: src/pages/sales/SalesIndex.tsx:140 msgid "Table View" msgstr "" -#: src/pages/build/BuildIndex.tsx:86 -#: src/pages/purchasing/PurchasingIndex.tsx:72 -#: src/pages/sales/SalesIndex.tsx:95 -#: src/pages/sales/SalesIndex.tsx:128 +#: src/pages/build/BuildIndex.tsx:80 +#: src/pages/purchasing/PurchasingIndex.tsx:80 +#: src/pages/sales/SalesIndex.tsx:67 +#: src/pages/sales/SalesIndex.tsx:113 msgid "Calendar View" msgstr "" -#: src/pages/company/CompanyDetail.tsx:99 +#: src/pages/build/BuildIndex.tsx:86 +#: src/pages/part/CategoryDetail.tsx:306 +#: src/pages/purchasing/PurchasingIndex.tsx:92 +#: src/pages/purchasing/PurchasingIndex.tsx:118 +#: src/pages/purchasing/PurchasingIndex.tsx:141 +#: src/pages/purchasing/PurchasingIndex.tsx:167 +#: src/pages/purchasing/PurchasingIndex.tsx:190 +#: src/pages/sales/SalesIndex.tsx:79 +#: src/pages/sales/SalesIndex.tsx:125 +#: src/pages/sales/SalesIndex.tsx:151 +msgid "Parametric View" +msgstr "" + +#: src/pages/company/CompanyDetail.tsx:100 msgid "Website" msgstr "Sitio web" -#: src/pages/company/CompanyDetail.tsx:107 +#: src/pages/company/CompanyDetail.tsx:108 msgid "Phone Number" msgstr "Número de teléfono" -#: src/pages/company/CompanyDetail.tsx:114 +#: src/pages/company/CompanyDetail.tsx:115 msgid "Email Address" msgstr "Dirección de correo electrónico" -#: src/pages/company/CompanyDetail.tsx:121 +#: src/pages/company/CompanyDetail.tsx:122 msgid "Tax ID" msgstr "" -#: src/pages/company/CompanyDetail.tsx:131 +#: src/pages/company/CompanyDetail.tsx:132 msgid "Default Currency" msgstr "Divisa predeterminada" -#: src/pages/company/CompanyDetail.tsx:142 +#: src/pages/company/CompanyDetail.tsx:143 #: src/pages/company/ManufacturerDetail.tsx:8 -#: src/pages/company/ManufacturerPartDetail.tsx:104 -#: src/pages/company/ManufacturerPartDetail.tsx:280 -#: src/pages/company/SupplierPartDetail.tsx:152 +#: src/pages/company/ManufacturerPartDetail.tsx:103 +#: src/pages/company/ManufacturerPartDetail.tsx:271 +#: src/pages/company/SupplierPartDetail.tsx:153 #: src/tables/Filter.tsx:347 #: src/tables/company/CompanyTable.tsx:101 #: src/tables/purchasing/SupplierPartTable.tsx:89 msgid "Manufacturer" msgstr "Fabricante" -#: src/pages/company/CompanyDetail.tsx:148 +#: src/pages/company/CompanyDetail.tsx:149 #: src/pages/company/CustomerDetail.tsx:8 #: src/pages/part/pricing/SaleHistoryPanel.tsx:31 -#: src/pages/sales/ReturnOrderDetail.tsx:123 -#: src/pages/sales/SalesOrderDetail.tsx:113 -#: src/pages/sales/SalesOrderShipmentDetail.tsx:113 +#: src/pages/sales/ReturnOrderDetail.tsx:124 +#: src/pages/sales/SalesOrderDetail.tsx:114 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:111 #: src/pages/stock/StockDetail.tsx:370 #: src/tables/company/CompanyTable.tsx:106 +#: src/tables/sales/ReturnOrderParametricTable.tsx:32 #: src/tables/sales/ReturnOrderTable.tsx:108 -#: src/tables/sales/SalesOrderShipmentTable.tsx:111 +#: src/tables/sales/SalesOrderParametricTable.tsx:32 +#: src/tables/sales/SalesOrderShipmentTable.tsx:132 #: src/tables/sales/SalesOrderTable.tsx:133 #: src/tables/stock/StockTrackingTable.tsx:153 msgid "Customer" @@ -7216,11 +7300,11 @@ msgstr "Cliente" #~ msgid "Edit company" #~ msgstr "Edit company" -#: src/pages/company/CompanyDetail.tsx:181 +#: src/pages/company/CompanyDetail.tsx:182 msgid "Company Details" msgstr "Datos de la empresa" -#: src/pages/company/CompanyDetail.tsx:187 +#: src/pages/company/CompanyDetail.tsx:188 msgid "Supplied Parts" msgstr "Piezas suministradas" @@ -7228,79 +7312,79 @@ msgstr "Piezas suministradas" #~ msgid "Delete company" #~ msgstr "Delete company" -#: src/pages/company/CompanyDetail.tsx:194 +#: src/pages/company/CompanyDetail.tsx:195 msgid "Manufactured Parts" msgstr "Piezas fabricadas" -#: src/pages/company/CompanyDetail.tsx:241 +#: src/pages/company/CompanyDetail.tsx:242 msgid "Assigned Stock" msgstr "Existencias asignadas" -#: src/pages/company/CompanyDetail.tsx:282 +#: src/pages/company/CompanyDetail.tsx:287 #: src/tables/company/CompanyTable.tsx:82 msgid "Edit Company" msgstr "Editar empresa" -#: src/pages/company/CompanyDetail.tsx:290 +#: src/pages/company/CompanyDetail.tsx:295 msgid "Delete Company" msgstr "Eliminar Empresa" -#: src/pages/company/CompanyDetail.tsx:305 +#: src/pages/company/CompanyDetail.tsx:310 msgid "Company Actions" msgstr "Acciones de empresa" -#: src/pages/company/ManufacturerPartDetail.tsx:78 -#: src/pages/company/SupplierPartDetail.tsx:89 +#: src/pages/company/ManufacturerPartDetail.tsx:77 +#: src/pages/company/SupplierPartDetail.tsx:90 msgid "Internal Part" msgstr "Pieza Interna" -#: src/pages/company/ManufacturerPartDetail.tsx:112 +#: src/pages/company/ManufacturerPartDetail.tsx:111 msgid "Manufacturer Part Number" msgstr "Referencia de pieza del fabricante" -#: src/pages/company/ManufacturerPartDetail.tsx:129 -#: src/pages/company/SupplierPartDetail.tsx:113 +#: src/pages/company/ManufacturerPartDetail.tsx:128 +#: src/pages/company/SupplierPartDetail.tsx:114 msgid "External Link" msgstr "Enlace externo" -#: src/pages/company/ManufacturerPartDetail.tsx:148 -#: src/pages/company/SupplierPartDetail.tsx:232 +#: src/pages/company/ManufacturerPartDetail.tsx:147 +#: src/pages/company/SupplierPartDetail.tsx:233 #: src/pages/part/PartDetail.tsx:787 msgid "Part Details" msgstr "Detalles de la Pieza" -#: src/pages/company/ManufacturerPartDetail.tsx:151 +#: src/pages/company/ManufacturerPartDetail.tsx:150 msgid "Manufacturer Details" msgstr "Detalles del fabricante" -#: src/pages/company/ManufacturerPartDetail.tsx:160 +#: src/pages/company/ManufacturerPartDetail.tsx:159 msgid "Manufacturer Part Details" msgstr "Detalles de pieza del fabricante" -#: src/pages/company/ManufacturerPartDetail.tsx:178 -#: src/pages/company/SupplierPartDetail.tsx:252 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:381 +#: src/pages/company/ManufacturerPartDetail.tsx:165 +#: src/pages/company/SupplierPartDetail.tsx:253 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:382 msgid "Received Stock" msgstr "Existencias recibidas" -#: src/pages/company/ManufacturerPartDetail.tsx:220 +#: src/pages/company/ManufacturerPartDetail.tsx:211 #: src/tables/purchasing/ManufacturerPartTable.tsx:108 msgid "Edit Manufacturer Part" msgstr "Editar pieza de fabricante" -#: src/pages/company/ManufacturerPartDetail.tsx:227 +#: src/pages/company/ManufacturerPartDetail.tsx:218 #: src/tables/purchasing/ManufacturerPartTable.tsx:96 #: src/tables/purchasing/ManufacturerPartTable.tsx:115 #: src/tables/purchasing/ManufacturerPartTable.tsx:156 msgid "Add Manufacturer Part" msgstr "Añadir pieza de fabricante" -#: src/pages/company/ManufacturerPartDetail.tsx:239 +#: src/pages/company/ManufacturerPartDetail.tsx:230 #: src/tables/purchasing/ManufacturerPartTable.tsx:126 msgid "Delete Manufacturer Part" msgstr "Eliminar pieza de fabricante" -#: src/pages/company/ManufacturerPartDetail.tsx:254 +#: src/pages/company/ManufacturerPartDetail.tsx:245 msgid "Manufacturer Part Actions" msgstr "Acciones de pieza de fabricante" @@ -7308,12 +7392,12 @@ msgstr "Acciones de pieza de fabricante" #~ msgid "ManufacturerPart" #~ msgstr "ManufacturerPart" -#: src/pages/company/SupplierPartDetail.tsx:104 +#: src/pages/company/SupplierPartDetail.tsx:105 #: src/tables/part/RelatedPartTable.tsx:82 msgid "Part Description" msgstr "Descripción de la Pieza" -#: src/pages/company/SupplierPartDetail.tsx:179 +#: src/pages/company/SupplierPartDetail.tsx:180 #: src/tables/part/PartPurchaseOrdersTable.tsx:73 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:191 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:233 @@ -7321,50 +7405,50 @@ msgstr "Descripción de la Pieza" msgid "Pack Quantity" msgstr "Cantidad del paquete" -#: src/pages/company/SupplierPartDetail.tsx:204 +#: src/pages/company/SupplierPartDetail.tsx:205 msgid "Supplier Availability" msgstr "Disponibilidad del proveedor" -#: src/pages/company/SupplierPartDetail.tsx:212 +#: src/pages/company/SupplierPartDetail.tsx:213 msgid "Availability Updated" msgstr "Disponibilidad actualizada" -#: src/pages/company/SupplierPartDetail.tsx:237 +#: src/pages/company/SupplierPartDetail.tsx:238 msgid "Availability" msgstr "Disponibilidad" -#: src/pages/company/SupplierPartDetail.tsx:246 +#: src/pages/company/SupplierPartDetail.tsx:247 msgid "Supplier Part Details" msgstr "Detalles de pieza de proveedor" -#: src/pages/company/SupplierPartDetail.tsx:279 +#: src/pages/company/SupplierPartDetail.tsx:280 #: src/pages/part/PartPricingPanel.tsx:113 #: src/pages/part/pricing/PricingOverviewPanel.tsx:239 msgid "Supplier Pricing" msgstr "Precios del Proveedor" -#: src/pages/company/SupplierPartDetail.tsx:308 +#: src/pages/company/SupplierPartDetail.tsx:313 msgid "Supplier Part Actions" msgstr "Acciones de piezas de proveedor" -#: src/pages/company/SupplierPartDetail.tsx:332 +#: src/pages/company/SupplierPartDetail.tsx:337 #: src/tables/purchasing/SupplierPartTable.tsx:244 msgid "Edit Supplier Part" msgstr "Editar pieza de proveedor" -#: src/pages/company/SupplierPartDetail.tsx:340 +#: src/pages/company/SupplierPartDetail.tsx:345 #: src/tables/purchasing/SupplierPartTable.tsx:264 msgid "Delete Supplier Part" msgstr "Eliminar pieza de proveedor" -#: src/pages/company/SupplierPartDetail.tsx:348 +#: src/pages/company/SupplierPartDetail.tsx:353 #: src/tables/purchasing/SupplierPartTable.tsx:172 #: src/tables/purchasing/SupplierPartTable.tsx:251 msgid "Add Supplier Part" msgstr "Añadir pieza de proveedor" -#: src/pages/company/SupplierPartDetail.tsx:388 -#: src/pages/part/PartDetail.tsx:1003 +#: src/pages/company/SupplierPartDetail.tsx:393 +#: src/pages/part/PartDetail.tsx:1018 msgid "No Stock" msgstr "Sin existencias" @@ -7411,83 +7495,83 @@ msgstr "Detalles de Usuario" msgid "Basic user" msgstr "" -#: src/pages/part/CategoryDetail.tsx:100 +#: src/pages/part/CategoryDetail.tsx:103 #: src/pages/stock/LocationDetail.tsx:94 #: src/tables/settings/ErrorTable.tsx:63 #: src/tables/settings/ErrorTable.tsx:108 msgid "Path" msgstr "Ruta" -#: src/pages/part/CategoryDetail.tsx:116 +#: src/pages/part/CategoryDetail.tsx:119 msgid "Parent Category" msgstr "Categoría superior" -#: src/pages/part/CategoryDetail.tsx:139 -#: src/pages/part/CategoryDetail.tsx:271 +#: src/pages/part/CategoryDetail.tsx:142 +#: src/pages/part/CategoryDetail.tsx:279 msgid "Subcategories" msgstr "Subcategorías" -#: src/pages/part/CategoryDetail.tsx:146 +#: src/pages/part/CategoryDetail.tsx:149 #: src/pages/stock/LocationDetail.tsx:134 #: src/tables/part/PartCategoryTable.tsx:89 #: src/tables/stock/StockLocationTable.tsx:43 msgid "Structural" msgstr "Estructural" -#: src/pages/part/CategoryDetail.tsx:152 +#: src/pages/part/CategoryDetail.tsx:155 msgid "Parent default location" msgstr "Ubicación padre por defecto" -#: src/pages/part/CategoryDetail.tsx:159 +#: src/pages/part/CategoryDetail.tsx:162 msgid "Default location" msgstr "Ubicación predeterminada" -#: src/pages/part/CategoryDetail.tsx:170 +#: src/pages/part/CategoryDetail.tsx:173 msgid "Top level part category" msgstr "Categoría de piezas de nivel superior" -#: src/pages/part/CategoryDetail.tsx:180 -#: src/pages/part/CategoryDetail.tsx:248 +#: src/pages/part/CategoryDetail.tsx:183 +#: src/pages/part/CategoryDetail.tsx:251 #: src/tables/part/PartCategoryTable.tsx:122 msgid "Edit Part Category" msgstr "Editar categoría de pieza" -#: src/pages/part/CategoryDetail.tsx:189 +#: src/pages/part/CategoryDetail.tsx:192 msgid "Move items to parent category" msgstr "Mover artículos a la categoría padre" -#: src/pages/part/CategoryDetail.tsx:193 +#: src/pages/part/CategoryDetail.tsx:196 #: src/pages/stock/LocationDetail.tsx:226 msgid "Delete items" msgstr "Eliminar elementos" -#: src/pages/part/CategoryDetail.tsx:201 -#: src/pages/part/CategoryDetail.tsx:253 +#: src/pages/part/CategoryDetail.tsx:204 +#: src/pages/part/CategoryDetail.tsx:256 msgid "Delete Part Category" msgstr "Eliminar categoría de pieza" -#: src/pages/part/CategoryDetail.tsx:204 +#: src/pages/part/CategoryDetail.tsx:207 msgid "Parts Action" msgstr "Acciones de piezas" -#: src/pages/part/CategoryDetail.tsx:205 +#: src/pages/part/CategoryDetail.tsx:208 msgid "Action for parts in this category" msgstr "Acciones de piezas en esta categoría" -#: src/pages/part/CategoryDetail.tsx:211 +#: src/pages/part/CategoryDetail.tsx:214 msgid "Child Categories Action" msgstr "Acción en subcategorías" -#: src/pages/part/CategoryDetail.tsx:212 +#: src/pages/part/CategoryDetail.tsx:215 msgid "Action for child categories in this category" msgstr "Acción para subcategorías en esta categoría" -#: src/pages/part/CategoryDetail.tsx:244 +#: src/pages/part/CategoryDetail.tsx:247 #: src/tables/part/PartCategoryTable.tsx:143 msgid "Category Actions" msgstr "Acciones de categoría" -#: src/pages/part/CategoryDetail.tsx:265 +#: src/pages/part/CategoryDetail.tsx:273 msgid "Category Details" msgstr "Detalles de categoría" @@ -7585,7 +7669,6 @@ msgid "Category Default Location" msgstr "Ubicación de Categoría Predeterminada" #: src/pages/part/PartDetail.tsx:507 -#: src/tables/purchasing/ManufacturerPartParameterTable.tsx:48 msgid "Units" msgstr "Unidades" @@ -7600,7 +7683,7 @@ msgstr "Palabras claves" #: src/pages/part/PartDetail.tsx:542 #: src/tables/bom/BomTable.tsx:439 -#: src/tables/build/BuildLineTable.tsx:305 +#: src/tables/build/BuildLineTable.tsx:306 #: src/tables/part/PartTable.tsx:319 #: src/tables/sales/SalesOrderLineItemTable.tsx:138 msgid "Available Stock" @@ -7608,7 +7691,7 @@ msgstr "Existencias disponibles" #: src/pages/part/PartDetail.tsx:548 #: src/tables/bom/BomTable.tsx:341 -#: src/tables/build/BuildLineTable.tsx:267 +#: src/tables/build/BuildLineTable.tsx:268 #: src/tables/sales/SalesOrderLineItemTable.tsx:180 msgid "On order" msgstr "En pedido" @@ -7634,7 +7717,7 @@ msgstr "Existencias Mínimas" #~ msgstr "Scheduling" #: src/pages/part/PartDetail.tsx:620 -#: src/tables/part/ParametricPartTable.tsx:359 +#: src/tables/part/ParametricPartTable.tsx:24 #: src/tables/part/PartTable.tsx:203 msgid "Locked" msgstr "Bloqueado" @@ -7671,16 +7754,16 @@ msgid "Saleable Part" msgstr "" #: src/pages/part/PartDetail.tsx:663 -#: src/pages/part/PartDetail.tsx:1033 +#: src/pages/part/PartDetail.tsx:1054 #: src/tables/bom/BomTable.tsx:150 #: src/tables/bom/BomTable.tsx:434 msgid "Virtual Part" msgstr "" #: src/pages/part/PartDetail.tsx:678 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:271 -#: src/pages/sales/ReturnOrderDetail.tsx:249 -#: src/pages/sales/SalesOrderDetail.tsx:242 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:272 +#: src/pages/sales/ReturnOrderDetail.tsx:250 +#: src/pages/sales/SalesOrderDetail.tsx:243 #: src/tables/ColumnRenderers.tsx:502 msgid "Creation Date" msgstr "Fecha de Creación" @@ -7718,35 +7801,46 @@ msgstr "Último número de serie" msgid "Select Part Revision" msgstr "" -#: src/pages/part/PartDetail.tsx:823 +#: src/pages/part/PartDetail.tsx:812 msgid "Variants" msgstr "Variantes" -#: src/pages/part/PartDetail.tsx:830 +#: src/pages/part/PartDetail.tsx:819 #: src/pages/stock/StockDetail.tsx:542 msgid "Allocations" msgstr "Asignaciones" -#: src/pages/part/PartDetail.tsx:837 +#: src/pages/part/PartDetail.tsx:826 msgid "Bill of Materials" msgstr "Lista de Materiales" -#: src/pages/part/PartDetail.tsx:849 +#: src/pages/part/PartDetail.tsx:838 msgid "Used In" msgstr "" -#: src/pages/part/PartDetail.tsx:856 +#: src/pages/part/PartDetail.tsx:845 msgid "Part Pricing" msgstr "" -#: src/pages/part/PartDetail.tsx:926 +#: src/pages/part/PartDetail.tsx:915 msgid "Test Templates" msgstr "" -#: src/pages/part/PartDetail.tsx:948 +#: src/pages/part/PartDetail.tsx:937 msgid "Related Parts" msgstr "" +#: src/pages/part/PartDetail.tsx:949 +#: src/tables/ColumnRenderers.tsx:73 +#: src/tables/bom/BomTable.tsx:657 +#: src/tables/part/PartTestTemplateTable.tsx:258 +msgid "Part is Locked" +msgstr "" + +#: src/pages/part/PartDetail.tsx:954 +msgid "Part parameters cannot be edited, as the part is locked" +msgstr "" + #: src/pages/part/PartDetail.tsx:956 #~ msgid "Count part stock" #~ msgstr "Count part stock" @@ -7755,42 +7849,46 @@ msgstr "" #~ msgid "Transfer part stock" #~ msgstr "Transfer part stock" -#: src/pages/part/PartDetail.tsx:1009 +#: src/pages/part/PartDetail.tsx:1024 #: src/tables/part/PartTestTemplateTable.tsx:112 #: src/tables/stock/StockItemTestResultTable.tsx:404 msgid "Required" msgstr "Requerido" -#: src/pages/part/PartDetail.tsx:1058 +#: src/pages/part/PartDetail.tsx:1042 +msgid "Deficit" +msgstr "" + +#: src/pages/part/PartDetail.tsx:1079 #: src/tables/part/PartTable.tsx:396 #: src/tables/part/PartTable.tsx:449 msgid "Add Part" msgstr "Añadir pieza" -#: src/pages/part/PartDetail.tsx:1072 +#: src/pages/part/PartDetail.tsx:1093 msgid "Delete Part" msgstr "Eliminar pieza" -#: src/pages/part/PartDetail.tsx:1081 +#: src/pages/part/PartDetail.tsx:1102 msgid "Deleting this part cannot be reversed" msgstr "La eliminación de esta parte no puede ser revertida" -#: src/pages/part/PartDetail.tsx:1143 +#: src/pages/part/PartDetail.tsx:1164 #: src/pages/stock/StockDetail.tsx:883 msgid "Order" msgstr "Pedido" -#: src/pages/part/PartDetail.tsx:1144 +#: src/pages/part/PartDetail.tsx:1165 #: src/pages/stock/StockDetail.tsx:884 -#: src/tables/build/BuildLineTable.tsx:761 +#: src/tables/build/BuildLineTable.tsx:768 msgid "Order Stock" msgstr "" -#: src/pages/part/PartDetail.tsx:1156 +#: src/pages/part/PartDetail.tsx:1177 msgid "Search by serial number" msgstr "" -#: src/pages/part/PartDetail.tsx:1164 +#: src/pages/part/PartDetail.tsx:1185 #: src/tables/part/PartTable.tsx:506 msgid "Part Actions" msgstr "" @@ -8039,7 +8137,7 @@ msgstr "Precio de Compra" #: src/pages/part/pricing/PricingOverviewPanel.tsx:288 #: src/pages/stock/StockDetail.tsx:426 -#: src/tables/part/PartParameterTable.tsx:121 +#: src/tables/general/ParameterTable.tsx:101 #: src/tables/stock/StockItemTable.tsx:300 msgid "Last Updated" msgstr "Última Actualización" @@ -8107,17 +8205,17 @@ msgstr "" msgid "Variant Part" msgstr "" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:89 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:90 msgid "Edit Purchase Order" msgstr "" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:125 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:126 #: src/tables/purchasing/PurchaseOrderTable.tsx:154 #: src/tables/purchasing/PurchaseOrderTable.tsx:167 msgid "Add Purchase Order" msgstr "" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:147 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:148 msgid "Supplier Reference" msgstr "" @@ -8127,20 +8225,20 @@ msgstr "" #~ msgid "Order Currency," #~ msgstr "Order Currency," -#: src/pages/purchasing/PurchaseOrderDetail.tsx:187 -#: src/pages/sales/ReturnOrderDetail.tsx:160 -#: src/pages/sales/SalesOrderDetail.tsx:144 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:188 +#: src/pages/sales/ReturnOrderDetail.tsx:161 +#: src/pages/sales/SalesOrderDetail.tsx:145 msgid "Completed Line Items" msgstr "" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:196 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:197 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:272 msgid "Destination" msgstr "" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:202 -#: src/pages/sales/ReturnOrderDetail.tsx:167 -#: src/pages/sales/SalesOrderDetail.tsx:161 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:203 +#: src/pages/sales/ReturnOrderDetail.tsx:168 +#: src/pages/sales/SalesOrderDetail.tsx:162 msgid "Order Currency" msgstr "Divisa de Pedido" @@ -8150,97 +8248,97 @@ msgstr "Divisa de Pedido" #~ msgid "Created On" #~ msgstr "Created On" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:208 -#: src/pages/sales/ReturnOrderDetail.tsx:174 -#: src/pages/sales/SalesOrderDetail.tsx:167 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:209 +#: src/pages/sales/ReturnOrderDetail.tsx:175 +#: src/pages/sales/SalesOrderDetail.tsx:168 msgid "Total Cost" msgstr "Costo Total" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:237 -#: src/pages/sales/ReturnOrderDetail.tsx:215 -#: src/pages/sales/SalesOrderDetail.tsx:208 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:238 +#: src/pages/sales/ReturnOrderDetail.tsx:216 +#: src/pages/sales/SalesOrderDetail.tsx:209 msgid "Contact Email" msgstr "" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:245 -#: src/pages/sales/ReturnOrderDetail.tsx:223 -#: src/pages/sales/SalesOrderDetail.tsx:216 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:246 +#: src/pages/sales/ReturnOrderDetail.tsx:224 +#: src/pages/sales/SalesOrderDetail.tsx:217 msgid "Contact Phone" msgstr "" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:278 -#: src/pages/sales/ReturnOrderDetail.tsx:257 -#: src/pages/sales/SalesOrderDetail.tsx:249 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:279 +#: src/pages/sales/ReturnOrderDetail.tsx:258 +#: src/pages/sales/SalesOrderDetail.tsx:250 msgid "Issue Date" msgstr "Fecha de emisión" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:303 -#: src/pages/sales/ReturnOrderDetail.tsx:281 -#: src/pages/sales/SalesOrderDetail.tsx:272 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:304 +#: src/pages/sales/ReturnOrderDetail.tsx:282 +#: src/pages/sales/SalesOrderDetail.tsx:273 #: src/tables/ColumnRenderers.tsx:510 #: src/tables/build/BuildOrderTable.tsx:137 #: src/tables/part/PartPurchaseOrdersTable.tsx:106 msgid "Completion Date" msgstr "Fecha de Finalización" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:333 -#: src/pages/sales/ReturnOrderDetail.tsx:311 -#: src/pages/sales/SalesOrderDetail.tsx:349 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:334 +#: src/pages/sales/ReturnOrderDetail.tsx:312 +#: src/pages/sales/SalesOrderDetail.tsx:350 msgid "Order Details" msgstr "Detalles del pedido" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:339 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:348 -#: src/pages/sales/ReturnOrderDetail.tsx:153 -#: src/pages/sales/ReturnOrderDetail.tsx:317 -#: src/pages/sales/ReturnOrderDetail.tsx:326 -#: src/pages/sales/SalesOrderDetail.tsx:355 -#: src/pages/sales/SalesOrderDetail.tsx:364 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:340 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:349 +#: src/pages/sales/ReturnOrderDetail.tsx:154 +#: src/pages/sales/ReturnOrderDetail.tsx:318 +#: src/pages/sales/ReturnOrderDetail.tsx:327 +#: src/pages/sales/SalesOrderDetail.tsx:356 +#: src/pages/sales/SalesOrderDetail.tsx:365 msgid "Line Items" msgstr "Partidas" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:363 -#: src/pages/sales/ReturnOrderDetail.tsx:341 -#: src/pages/sales/SalesOrderDetail.tsx:378 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:364 +#: src/pages/sales/ReturnOrderDetail.tsx:342 +#: src/pages/sales/SalesOrderDetail.tsx:379 msgid "Extra Line Items" msgstr "" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:405 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:410 msgid "Issue Purchase Order" msgstr "" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:413 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:418 msgid "Cancel Purchase Order" msgstr "" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:421 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:426 msgid "Hold Purchase Order" msgstr "" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:429 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:434 msgid "Complete Purchase Order" msgstr "" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:485 -#: src/pages/sales/ReturnOrderDetail.tsx:496 -#: src/pages/sales/SalesOrderDetail.tsx:549 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:490 +#: src/pages/sales/ReturnOrderDetail.tsx:501 +#: src/pages/sales/SalesOrderDetail.tsx:554 msgid "Order Actions" msgstr "" -#: src/pages/sales/ReturnOrderDetail.tsx:114 -#: src/pages/sales/SalesOrderDetail.tsx:104 -#: src/pages/sales/SalesOrderShipmentDetail.tsx:134 +#: src/pages/sales/ReturnOrderDetail.tsx:115 +#: src/pages/sales/SalesOrderDetail.tsx:105 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:132 #: src/tables/sales/SalesOrderTable.tsx:141 msgid "Customer Reference" msgstr "" -#: src/pages/sales/ReturnOrderDetail.tsx:195 +#: src/pages/sales/ReturnOrderDetail.tsx:196 msgid "Return Address" msgstr "" -#: src/pages/sales/ReturnOrderDetail.tsx:201 -#: src/pages/sales/SalesOrderDetail.tsx:194 -#: src/pages/sales/SalesOrderShipmentDetail.tsx:181 +#: src/pages/sales/ReturnOrderDetail.tsx:202 +#: src/pages/sales/SalesOrderDetail.tsx:195 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:179 msgid "Not specified" msgstr "" @@ -8248,117 +8346,117 @@ msgstr "" #~ msgid "Order canceled" #~ msgstr "Order canceled" -#: src/pages/sales/ReturnOrderDetail.tsx:389 +#: src/pages/sales/ReturnOrderDetail.tsx:394 msgid "Edit Return Order" msgstr "" -#: src/pages/sales/ReturnOrderDetail.tsx:407 +#: src/pages/sales/ReturnOrderDetail.tsx:412 #: src/tables/sales/ReturnOrderTable.tsx:154 #: src/tables/sales/ReturnOrderTable.tsx:167 msgid "Add Return Order" msgstr "" -#: src/pages/sales/ReturnOrderDetail.tsx:416 +#: src/pages/sales/ReturnOrderDetail.tsx:421 msgid "Issue Return Order" msgstr "" -#: src/pages/sales/ReturnOrderDetail.tsx:424 +#: src/pages/sales/ReturnOrderDetail.tsx:429 msgid "Cancel Return Order" msgstr "" -#: src/pages/sales/ReturnOrderDetail.tsx:432 +#: src/pages/sales/ReturnOrderDetail.tsx:437 msgid "Hold Return Order" msgstr "" -#: src/pages/sales/ReturnOrderDetail.tsx:440 +#: src/pages/sales/ReturnOrderDetail.tsx:445 msgid "Complete Return Order" msgstr "" -#: src/pages/sales/SalesOrderDetail.tsx:153 +#: src/pages/sales/SalesOrderDetail.tsx:154 msgid "Completed Shipments" msgstr "" -#: src/pages/sales/SalesOrderDetail.tsx:188 -#: src/pages/sales/SalesOrderShipmentDetail.tsx:170 +#: src/pages/sales/SalesOrderDetail.tsx:189 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:168 msgid "Shipping Address" msgstr "" -#: src/pages/sales/SalesOrderDetail.tsx:316 +#: src/pages/sales/SalesOrderDetail.tsx:317 msgid "Edit Sales Order" msgstr "" -#: src/pages/sales/SalesOrderDetail.tsx:338 +#: src/pages/sales/SalesOrderDetail.tsx:339 #: src/tables/sales/SalesOrderTable.tsx:108 #: src/tables/sales/SalesOrderTable.tsx:121 msgid "Add Sales Order" msgstr "" -#: src/pages/sales/SalesOrderDetail.tsx:396 +#: src/pages/sales/SalesOrderDetail.tsx:397 #: src/tables/sales/SalesOrderTable.tsx:147 msgid "Shipments" msgstr "Envíos" -#: src/pages/sales/SalesOrderDetail.tsx:443 +#: src/pages/sales/SalesOrderDetail.tsx:448 msgid "Issue Sales Order" msgstr "" -#: src/pages/sales/SalesOrderDetail.tsx:451 +#: src/pages/sales/SalesOrderDetail.tsx:456 msgid "Cancel Sales Order" msgstr "" -#: src/pages/sales/SalesOrderDetail.tsx:459 +#: src/pages/sales/SalesOrderDetail.tsx:464 msgid "Hold Sales Order" msgstr "" -#: src/pages/sales/SalesOrderDetail.tsx:467 +#: src/pages/sales/SalesOrderDetail.tsx:472 msgid "Ship Sales Order" msgstr "Orden de Venta de Envío" -#: src/pages/sales/SalesOrderDetail.tsx:469 +#: src/pages/sales/SalesOrderDetail.tsx:474 msgid "Ship this order?" msgstr "¿Enviar este pedido?" -#: src/pages/sales/SalesOrderDetail.tsx:470 +#: src/pages/sales/SalesOrderDetail.tsx:475 msgid "Order shipped" msgstr "Pedido enviado" -#: src/pages/sales/SalesOrderDetail.tsx:478 +#: src/pages/sales/SalesOrderDetail.tsx:483 msgid "Complete Sales Order" msgstr "" -#: src/pages/sales/SalesOrderDetail.tsx:523 +#: src/pages/sales/SalesOrderDetail.tsx:528 msgid "Ship Order" msgstr "" -#: src/pages/sales/SalesOrderShipmentDetail.tsx:142 -#: src/tables/sales/SalesOrderShipmentTable.tsx:135 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:140 +#: src/tables/sales/SalesOrderShipmentTable.tsx:156 msgid "Shipment Reference" msgstr "" -#: src/pages/sales/SalesOrderShipmentDetail.tsx:148 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:146 msgid "Tracking Number" msgstr "Número de Seguimiento" -#: src/pages/sales/SalesOrderShipmentDetail.tsx:156 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:154 msgid "Invoice Number" msgstr "Número de factura" -#: src/pages/sales/SalesOrderShipmentDetail.tsx:191 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:189 msgid "Allocated Items" msgstr "Artículos asignados" -#: src/pages/sales/SalesOrderShipmentDetail.tsx:196 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:194 msgid "Checked By" msgstr "" -#: src/pages/sales/SalesOrderShipmentDetail.tsx:202 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:200 msgid "Not checked" msgstr "" -#: src/pages/sales/SalesOrderShipmentDetail.tsx:208 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:206 #: src/tables/ColumnRenderers.tsx:518 #: src/tables/sales/SalesOrderAllocationTable.tsx:182 -#: src/tables/sales/SalesOrderShipmentTable.tsx:168 +#: src/tables/sales/SalesOrderShipmentTable.tsx:189 msgid "Shipment Date" msgstr "" @@ -8366,108 +8464,82 @@ msgstr "" #~ msgid "Assigned Items" #~ msgstr "Assigned Items" -#: src/pages/sales/SalesOrderShipmentDetail.tsx:216 -#: src/tables/sales/SalesOrderShipmentTable.tsx:172 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:214 +#: src/tables/sales/SalesOrderShipmentTable.tsx:193 msgid "Delivery Date" msgstr "" -#: src/pages/sales/SalesOrderShipmentDetail.tsx:255 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:253 msgid "Shipment Details" msgstr "Detalles del envío" -#: src/pages/sales/SalesOrderShipmentDetail.tsx:294 -#: src/pages/sales/SalesOrderShipmentDetail.tsx:438 -#: src/tables/sales/SalesOrderShipmentTable.tsx:90 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:292 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:406 +#: src/tables/sales/SalesOrderShipmentTable.tsx:97 msgid "Edit Shipment" msgstr "" -#: src/pages/sales/SalesOrderShipmentDetail.tsx:301 -#: src/pages/sales/SalesOrderShipmentDetail.tsx:457 -#: src/tables/sales/SalesOrderShipmentTable.tsx:82 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:299 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:425 +#: src/tables/sales/SalesOrderShipmentTable.tsx:89 msgid "Cancel Shipment" msgstr "Cancelar envío" -#: src/pages/sales/SalesOrderShipmentDetail.tsx:314 -#: src/tables/sales/SalesOrderShipmentTable.tsx:98 -#: src/tables/sales/SalesOrderShipmentTable.tsx:193 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:312 +#: src/tables/sales/SalesOrderShipmentTable.tsx:119 +#: src/tables/sales/SalesOrderShipmentTable.tsx:238 msgid "Complete Shipment" msgstr "" -#: src/pages/sales/SalesOrderShipmentDetail.tsx:326 -#: src/pages/sales/SalesOrderShipmentDetail.tsx:328 -msgid "Check Shipment" -msgstr "" - -#: src/pages/sales/SalesOrderShipmentDetail.tsx:329 -msgid "Marking the shipment as checked indicates that you have verified that all items included in this shipment are correct" -msgstr "" - #: src/pages/sales/SalesOrderShipmentDetail.tsx:339 -msgid "Shipment marked as checked" -msgstr "" - -#: src/pages/sales/SalesOrderShipmentDetail.tsx:346 -#: src/pages/sales/SalesOrderShipmentDetail.tsx:348 -msgid "Uncheck Shipment" -msgstr "" - -#: src/pages/sales/SalesOrderShipmentDetail.tsx:349 -msgid "Marking the shipment as unchecked indicates that the shipment requires further verification" -msgstr "" - -#: src/pages/sales/SalesOrderShipmentDetail.tsx:359 -msgid "Shipment marked as unchecked" -msgstr "" - -#: src/pages/sales/SalesOrderShipmentDetail.tsx:371 #: src/tables/part/PartPurchaseOrdersTable.tsx:122 msgid "Pending" msgstr "" -#: src/pages/sales/SalesOrderShipmentDetail.tsx:377 -#: src/tables/sales/SalesOrderShipmentTable.tsx:147 -#: src/tables/sales/SalesOrderShipmentTable.tsx:254 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:345 +#: src/tables/sales/SalesOrderShipmentTable.tsx:168 +#: src/tables/sales/SalesOrderShipmentTable.tsx:299 msgid "Checked" msgstr "" -#: src/pages/sales/SalesOrderShipmentDetail.tsx:383 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:351 msgid "Not Checked" msgstr "" -#: src/pages/sales/SalesOrderShipmentDetail.tsx:389 -#: src/tables/sales/SalesOrderShipmentTable.tsx:154 -#: src/tables/sales/SalesOrderShipmentTable.tsx:259 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:357 +#: src/tables/sales/SalesOrderShipmentTable.tsx:175 +#: src/tables/sales/SalesOrderShipmentTable.tsx:304 msgid "Shipped" msgstr "" -#: src/pages/sales/SalesOrderShipmentDetail.tsx:395 -#: src/tables/sales/SalesOrderShipmentTable.tsx:161 -#: src/tables/sales/SalesOrderShipmentTable.tsx:264 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:363 +#: src/tables/sales/SalesOrderShipmentTable.tsx:182 +#: src/tables/sales/SalesOrderShipmentTable.tsx:309 #: src/tables/settings/EmailTable.tsx:31 msgid "Delivered" msgstr "" -#: src/pages/sales/SalesOrderShipmentDetail.tsx:410 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:378 msgid "Send Shipment" msgstr "Enviar envío" -#: src/pages/sales/SalesOrderShipmentDetail.tsx:433 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:401 msgid "Shipment Actions" msgstr "Acciones de envío" -#: src/pages/sales/SalesOrderShipmentDetail.tsx:442 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:410 msgid "Check" msgstr "" -#: src/pages/sales/SalesOrderShipmentDetail.tsx:443 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:411 msgid "Mark shipment as checked" msgstr "" -#: src/pages/sales/SalesOrderShipmentDetail.tsx:449 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:417 msgid "Uncheck" msgstr "" -#: src/pages/sales/SalesOrderShipmentDetail.tsx:450 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:418 msgid "Mark shipment as unchecked" msgstr "" @@ -8775,13 +8847,6 @@ msgstr "Error al cargar el paquete de iconos del servidor" msgid "Part is not active" msgstr "La pieza no está activa" -#: src/tables/ColumnRenderers.tsx:73 -#: src/tables/bom/BomTable.tsx:657 -#: src/tables/part/PartParameterTable.tsx:227 -#: src/tables/part/PartTestTemplateTable.tsx:258 -msgid "Part is Locked" -msgstr "" - #: src/tables/ColumnRenderers.tsx:78 msgid "You are subscribed to notifications for this part" msgstr "Estás suscrito a las notificaciones de esta pieza" @@ -9219,13 +9284,13 @@ msgstr "" #~ msgstr "Show asssmbled items" #: src/tables/bom/BomTable.tsx:315 -#: src/tables/build/BuildLineTable.tsx:276 +#: src/tables/build/BuildLineTable.tsx:277 #: src/tables/part/PartTable.tsx:145 msgid "External stock" msgstr "" #: src/tables/bom/BomTable.tsx:323 -#: src/tables/build/BuildLineTable.tsx:239 +#: src/tables/build/BuildLineTable.tsx:240 msgid "Includes substitute stock" msgstr "" @@ -9234,7 +9299,7 @@ msgstr "" #~ msgstr "Edit Bom Item" #: src/tables/bom/BomTable.tsx:332 -#: src/tables/build/BuildLineTable.tsx:249 +#: src/tables/build/BuildLineTable.tsx:250 #: src/tables/sales/SalesOrderLineItemTable.tsx:166 msgid "Includes variant stock" msgstr "" @@ -9272,8 +9337,8 @@ msgid "Stock Information" msgstr "" #: src/tables/bom/BomTable.tsx:399 -#: src/tables/build/BuildLineTable.tsx:496 -#: src/tables/build/BuildLineTable.tsx:537 +#: src/tables/build/BuildLineTable.tsx:497 +#: src/tables/build/BuildLineTable.tsx:538 msgid "Consumable item" msgstr "" @@ -9282,7 +9347,7 @@ msgid "No available stock" msgstr "" #: src/tables/bom/BomTable.tsx:420 -#: src/tables/build/BuildLineTable.tsx:213 +#: src/tables/build/BuildLineTable.tsx:214 msgid "Show testable items" msgstr "" @@ -9291,7 +9356,7 @@ msgid "Show trackable items" msgstr "" #: src/tables/bom/BomTable.tsx:430 -#: src/tables/build/BuildLineTable.tsx:208 +#: src/tables/build/BuildLineTable.tsx:209 msgid "Show assembled items" msgstr "" @@ -9335,7 +9400,7 @@ msgstr "" #: src/tables/bom/BomTable.tsx:464 #: src/tables/bom/UsedInTable.tsx:85 -#: src/tables/build/BuildLineTable.tsx:202 +#: src/tables/build/BuildLineTable.tsx:203 msgid "Optional" msgstr "Opcional" @@ -9345,7 +9410,7 @@ msgid "Show optional items" msgstr "" #: src/tables/bom/BomTable.tsx:469 -#: src/tables/build/BuildLineTable.tsx:197 +#: src/tables/build/BuildLineTable.tsx:198 msgid "Consumable" msgstr "Consumible" @@ -9420,6 +9485,7 @@ msgid "Add a single BOM item" msgstr "" #: src/tables/bom/BomTable.tsx:637 +#: src/tables/general/ParameterTable.tsx:206 #: src/tables/part/PartTable.tsx:546 msgid "Import from File" msgstr "" @@ -9433,8 +9499,8 @@ msgid "Bill of materials cannot be edited, as the part is locked" msgstr "" #: src/tables/bom/UsedInTable.tsx:34 -#: src/tables/build/BuildLineTable.tsx:207 -#: src/tables/part/ParametricPartTable.tsx:364 +#: src/tables/build/BuildLineTable.tsx:208 +#: src/tables/part/ParametricPartTable.tsx:29 #: src/tables/part/PartBuildAllocationsTable.tsx:60 #: src/tables/part/PartTable.tsx:209 #: src/tables/stock/StockItemTable.tsx:333 @@ -9455,11 +9521,11 @@ msgstr "Rastreable" msgid "Show trackable assemblies" msgstr "Mostrar ensamblajes rastreables" -#: src/tables/build/BuildAllocatedStockTable.tsx:67 +#: src/tables/build/BuildAllocatedStockTable.tsx:64 msgid "Allocated to Output" msgstr "" -#: src/tables/build/BuildAllocatedStockTable.tsx:68 +#: src/tables/build/BuildAllocatedStockTable.tsx:65 msgid "Show items allocated to a build output" msgstr "" @@ -9472,50 +9538,68 @@ msgstr "" #~ msgid "Include orders for part variants" #~ msgstr "Include orders for part variants" -#: src/tables/build/BuildAllocatedStockTable.tsx:97 +#: src/tables/build/BuildAllocatedStockTable.tsx:94 #: src/tables/part/PartBuildAllocationsTable.tsx:84 #: src/tables/part/PartPurchaseOrdersTable.tsx:132 #: src/tables/part/PartSalesAllocationsTable.tsx:69 #: src/tables/sales/SalesOrderAllocationTable.tsx:122 -#: src/tables/sales/SalesOrderShipmentTable.tsx:130 +#: src/tables/sales/SalesOrderShipmentTable.tsx:151 msgid "Order Status" msgstr "" +#: src/tables/build/BuildAllocatedStockTable.tsx:164 +#: src/tables/build/BuildLineTable.tsx:651 +msgid "Edit Stock Allocation" +msgstr "Editar asignación de existencias" + #: src/tables/build/BuildAllocatedStockTable.tsx:164 #~ msgid "Edit Build Item" #~ msgstr "Edit Build Item" -#: src/tables/build/BuildAllocatedStockTable.tsx:167 -#: src/tables/build/BuildLineTable.tsx:650 -msgid "Edit Stock Allocation" -msgstr "Editar asignación de existencias" - #: src/tables/build/BuildAllocatedStockTable.tsx:174 #~ msgid "Delete Build Item" #~ msgstr "Delete Build Item" +#: src/tables/build/BuildAllocatedStockTable.tsx:177 +#: src/tables/build/BuildLineTable.tsx:664 +#: src/tables/sales/SalesOrderAllocationTable.tsx:218 +msgid "Remove Allocated Stock" +msgstr "" + #: src/tables/build/BuildAllocatedStockTable.tsx:180 #: src/tables/build/BuildLineTable.tsx:663 -msgid "Delete Stock Allocation" -msgstr "Eliminar asignación de existencias" +#~ msgid "Delete Stock Allocation" +#~ msgstr "Delete Stock Allocation" -#: src/tables/build/BuildAllocatedStockTable.tsx:239 +#: src/tables/build/BuildAllocatedStockTable.tsx:182 +#: src/tables/build/BuildLineTable.tsx:669 +#: src/tables/sales/SalesOrderAllocationTable.tsx:221 +msgid "Are you sure you want to remove this allocated stock from the order?" +msgstr "" + +#: src/tables/build/BuildAllocatedStockTable.tsx:242 msgid "Consume" msgstr "" +#: src/tables/build/BuildAllocatedStockTable.tsx:259 +#: src/tables/build/BuildLineTable.tsx:112 +#: src/tables/sales/SalesOrderAllocationTable.tsx:248 +msgid "Remove allocated stock" +msgstr "" + #: src/tables/build/BuildLineTable.tsx:59 #~ msgid "Show lines with available stock" #~ msgstr "Show lines with available stock" -#: src/tables/build/BuildLineTable.tsx:120 +#: src/tables/build/BuildLineTable.tsx:121 msgid "View Stock Item" msgstr "Ver artículo de existencias" -#: src/tables/build/BuildLineTable.tsx:183 +#: src/tables/build/BuildLineTable.tsx:184 msgid "Show fully allocated lines" msgstr "" -#: src/tables/build/BuildLineTable.tsx:188 +#: src/tables/build/BuildLineTable.tsx:189 msgid "Show fully consumed lines" msgstr "" @@ -9523,124 +9607,124 @@ msgstr "" #~ msgid "Show allocated lines" #~ msgstr "Show allocated lines" -#: src/tables/build/BuildLineTable.tsx:193 +#: src/tables/build/BuildLineTable.tsx:194 msgid "Show items with sufficient available stock" msgstr "" -#: src/tables/build/BuildLineTable.tsx:198 +#: src/tables/build/BuildLineTable.tsx:199 msgid "Show consumable lines" msgstr "" -#: src/tables/build/BuildLineTable.tsx:203 +#: src/tables/build/BuildLineTable.tsx:204 msgid "Show optional lines" msgstr "" -#: src/tables/build/BuildLineTable.tsx:212 +#: src/tables/build/BuildLineTable.tsx:213 #: src/tables/part/PartTable.tsx:233 msgid "Testable" msgstr "" -#: src/tables/build/BuildLineTable.tsx:217 +#: src/tables/build/BuildLineTable.tsx:218 #: src/tables/stock/StockItemTable.tsx:388 msgid "Tracked" msgstr "" -#: src/tables/build/BuildLineTable.tsx:218 +#: src/tables/build/BuildLineTable.tsx:219 msgid "Show tracked lines" msgstr "" -#: src/tables/build/BuildLineTable.tsx:223 +#: src/tables/build/BuildLineTable.tsx:224 msgid "Show items with stock on order" msgstr "" -#: src/tables/build/BuildLineTable.tsx:258 +#: src/tables/build/BuildLineTable.tsx:259 #: src/tables/sales/SalesOrderLineItemTable.tsx:172 msgid "In production" msgstr "" -#: src/tables/build/BuildLineTable.tsx:286 +#: src/tables/build/BuildLineTable.tsx:287 msgid "Insufficient stock" msgstr "" -#: src/tables/build/BuildLineTable.tsx:302 +#: src/tables/build/BuildLineTable.tsx:303 #: src/tables/sales/SalesOrderLineItemTable.tsx:160 #: src/tables/stock/StockItemTable.tsx:191 msgid "No stock available" msgstr "" -#: src/tables/build/BuildLineTable.tsx:375 +#: src/tables/build/BuildLineTable.tsx:376 msgid "Gets Inherited" msgstr "" -#: src/tables/build/BuildLineTable.tsx:388 +#: src/tables/build/BuildLineTable.tsx:389 msgid "Unit Quantity" msgstr "" -#: src/tables/build/BuildLineTable.tsx:415 +#: src/tables/build/BuildLineTable.tsx:416 msgid "Setup Quantity" msgstr "" -#: src/tables/build/BuildLineTable.tsx:424 +#: src/tables/build/BuildLineTable.tsx:425 msgid "Attrition" msgstr "" -#: src/tables/build/BuildLineTable.tsx:432 +#: src/tables/build/BuildLineTable.tsx:433 msgid "Rounding Multiple" msgstr "" -#: src/tables/build/BuildLineTable.tsx:441 +#: src/tables/build/BuildLineTable.tsx:442 msgid "BOM Information" msgstr "" -#: src/tables/build/BuildLineTable.tsx:515 +#: src/tables/build/BuildLineTable.tsx:516 #: src/tables/part/PartBuildAllocationsTable.tsx:102 msgid "Fully allocated" msgstr "" -#: src/tables/build/BuildLineTable.tsx:563 +#: src/tables/build/BuildLineTable.tsx:564 #: src/tables/sales/SalesOrderLineItemTable.tsx:311 msgid "Create Build Order" msgstr "" -#: src/tables/build/BuildLineTable.tsx:592 +#: src/tables/build/BuildLineTable.tsx:593 msgid "Auto allocation in progress" msgstr "Auto asignación en progreso" -#: src/tables/build/BuildLineTable.tsx:595 -#: src/tables/build/BuildLineTable.tsx:802 +#: src/tables/build/BuildLineTable.tsx:596 +#: src/tables/build/BuildLineTable.tsx:809 msgid "Auto Allocate Stock" msgstr "Autoasignar stock" -#: src/tables/build/BuildLineTable.tsx:596 +#: src/tables/build/BuildLineTable.tsx:597 msgid "Automatically allocate stock to this build according to the selected options" msgstr "Asignar stock automáticamente a esta construcción de acuerdo a las opciones seleccionadas" -#: src/tables/build/BuildLineTable.tsx:616 -#: src/tables/build/BuildLineTable.tsx:630 -#: src/tables/build/BuildLineTable.tsx:751 -#: src/tables/build/BuildLineTable.tsx:852 +#: src/tables/build/BuildLineTable.tsx:617 +#: src/tables/build/BuildLineTable.tsx:631 +#: src/tables/build/BuildLineTable.tsx:758 +#: src/tables/build/BuildLineTable.tsx:859 #: src/tables/build/BuildOutputTable.tsx:355 #: src/tables/build/BuildOutputTable.tsx:360 msgid "Deallocate Stock" msgstr "Desasignar existencias" -#: src/tables/build/BuildLineTable.tsx:632 +#: src/tables/build/BuildLineTable.tsx:633 msgid "Deallocate all untracked stock for this build order" msgstr "Desasignar todo el stock sin seguimiento para este pedido" -#: src/tables/build/BuildLineTable.tsx:634 +#: src/tables/build/BuildLineTable.tsx:635 msgid "Deallocate stock from the selected line item" msgstr "Desasignar stock de la partida seleccionada" -#: src/tables/build/BuildLineTable.tsx:638 +#: src/tables/build/BuildLineTable.tsx:639 msgid "Stock has been deallocated" msgstr "Stock ha sido desasignado" -#: src/tables/build/BuildLineTable.tsx:771 +#: src/tables/build/BuildLineTable.tsx:778 msgid "Build Stock" msgstr "" -#: src/tables/build/BuildLineTable.tsx:784 +#: src/tables/build/BuildLineTable.tsx:791 #: src/tables/sales/SalesOrderLineItemTable.tsx:487 msgid "View Part" msgstr "Ver pieza" @@ -9739,7 +9823,7 @@ msgid "Serialize Build Output" msgstr "" #: src/tables/build/BuildOutputTable.tsx:405 -#: src/tables/part/PartTestResultTable.tsx:310 +#: src/tables/part/PartTestResultTable.tsx:318 #: src/tables/stock/StockItemTable.tsx:328 msgid "Filter by stock status" msgstr "" @@ -9964,8 +10048,8 @@ msgid "View Item" msgstr "" #: src/tables/general/ExtraLineItemTable.tsx:95 -#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:299 -#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:403 +#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:300 +#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:405 #: src/tables/sales/ReturnOrderLineItemTable.tsx:83 #: src/tables/sales/ReturnOrderLineItemTable.tsx:187 #: src/tables/sales/SalesOrderLineItemTable.tsx:252 @@ -9974,14 +10058,14 @@ msgid "Add Line Item" msgstr "" #: src/tables/general/ExtraLineItemTable.tsx:108 -#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:320 +#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:322 #: src/tables/sales/ReturnOrderLineItemTable.tsx:96 #: src/tables/sales/SalesOrderLineItemTable.tsx:271 msgid "Edit Line Item" msgstr "" #: src/tables/general/ExtraLineItemTable.tsx:117 -#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:329 +#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:331 #: src/tables/sales/ReturnOrderLineItemTable.tsx:105 #: src/tables/sales/SalesOrderLineItemTable.tsx:280 msgid "Delete Line Item" @@ -9991,6 +10075,137 @@ msgstr "" msgid "Add Extra Line Item" msgstr "" +#: src/tables/general/ParameterTable.tsx:88 +msgid "Internal Units" +msgstr "" + +#: src/tables/general/ParameterTable.tsx:108 +#: src/tables/general/ParameterTable.tsx:123 +msgid "Updated By" +msgstr "" + +#: src/tables/general/ParameterTable.tsx:118 +msgid "Show parameters for enabled templates" +msgstr "" + +#: src/tables/general/ParameterTable.tsx:124 +msgid "Filter by user who last updated the parameter" +msgstr "" + +#: src/tables/general/ParameterTable.tsx:154 +msgid "Import Parameters" +msgstr "" + +#: src/tables/general/ParameterTable.tsx:164 +#: src/tables/general/ParametricDataTable.tsx:261 +#: src/tables/general/ParametricDataTable.tsx:392 +msgid "Add Parameter" +msgstr "" + +#: src/tables/general/ParameterTable.tsx:175 +#: src/tables/general/ParameterTable.tsx:222 +#: src/tables/general/ParametricDataTable.tsx:285 +msgid "Edit Parameter" +msgstr "" + +#: src/tables/general/ParameterTable.tsx:183 +#: src/tables/general/ParameterTable.tsx:230 +msgid "Delete Parameter" +msgstr "" + +#: src/tables/general/ParameterTable.tsx:191 +msgid "Add Parameters" +msgstr "" + +#: src/tables/general/ParameterTable.tsx:197 +msgid "Create Parameter" +msgstr "" + +#: src/tables/general/ParameterTable.tsx:199 +msgid "Create a new parameter" +msgstr "" + +#: src/tables/general/ParameterTable.tsx:208 +msgid "Import parameters from a file" +msgstr "" + +#: src/tables/general/ParameterTemplateTable.tsx:48 +#: src/tables/general/ParameterTemplateTable.tsx:197 +msgid "Add Parameter Template" +msgstr "" + +#: src/tables/general/ParameterTemplateTable.tsx:64 +msgid "Duplicate Parameter Template" +msgstr "" + +#: src/tables/general/ParameterTemplateTable.tsx:78 +msgid "Delete Parameter Template" +msgstr "" + +#: src/tables/general/ParameterTemplateTable.tsx:85 +msgid "Edit Parameter Template" +msgstr "" + +#: src/tables/general/ParameterTemplateTable.tsx:138 +msgid "Checkbox" +msgstr "" + +#: src/tables/general/ParameterTemplateTable.tsx:139 +msgid "Show checkbox templates" +msgstr "" + +#: src/tables/general/ParameterTemplateTable.tsx:143 +msgid "Has choices" +msgstr "Tiene opciones" + +#: src/tables/general/ParameterTemplateTable.tsx:144 +msgid "Show templates with choices" +msgstr "Mostrar plantillas con opciones" + +#: src/tables/general/ParameterTemplateTable.tsx:148 +#: src/tables/part/PartTable.tsx:245 +msgid "Has Units" +msgstr "Tiene Unidades" + +#: src/tables/general/ParameterTemplateTable.tsx:149 +msgid "Show templates with units" +msgstr "Mostrar plantillas con unidades" + +#: src/tables/general/ParameterTemplateTable.tsx:154 +msgid "Show enabled templates" +msgstr "" + +#: src/tables/general/ParameterTemplateTable.tsx:158 +#: src/tables/settings/ImportSessionTable.tsx:111 +#: src/tables/settings/TemplateTable.tsx:368 +msgid "Model Type" +msgstr "" + +#: src/tables/general/ParameterTemplateTable.tsx:159 +msgid "Filter by model type" +msgstr "" + +#: src/tables/general/ParametricDataTable.tsx:79 +msgid "Click to edit" +msgstr "" + +#: src/tables/general/ParametricDataTableFilters.tsx:36 +msgid "True" +msgstr "" + +#: src/tables/general/ParametricDataTableFilters.tsx:37 +msgid "False" +msgstr "" + +#: src/tables/general/ParametricDataTableFilters.tsx:47 +#: src/tables/general/ParametricDataTableFilters.tsx:80 +msgid "Select a choice" +msgstr "" + +#: src/tables/general/ParametricDataTableFilters.tsx:100 +msgid "Enter a value" +msgstr "" + #: src/tables/machine/MachineListTable.tsx:133 msgid "Machine restarted" msgstr "" @@ -10071,7 +10286,7 @@ msgid "Initialized" msgstr "" #: src/tables/machine/MachineListTable.tsx:410 -#: src/tables/machine/MachineTypeTable.tsx:307 +#: src/tables/machine/MachineTypeTable.tsx:305 msgid "No errors reported" msgstr "" @@ -10132,15 +10347,15 @@ msgstr "" #~ msgid "Machine type information" #~ msgstr "Machine type information" -#: src/tables/machine/MachineTypeTable.tsx:128 +#: src/tables/machine/MachineTypeTable.tsx:126 msgid "Not Found" msgstr "No Encontrado" -#: src/tables/machine/MachineTypeTable.tsx:131 +#: src/tables/machine/MachineTypeTable.tsx:129 msgid "Machine type not found." msgstr "" -#: src/tables/machine/MachineTypeTable.tsx:141 +#: src/tables/machine/MachineTypeTable.tsx:139 msgid "Machine Type Information" msgstr "Información del tipo de máquina" @@ -10148,34 +10363,34 @@ msgstr "Información del tipo de máquina" #~ msgid "Available drivers" #~ msgstr "Available drivers" -#: src/tables/machine/MachineTypeTable.tsx:156 -#: src/tables/machine/MachineTypeTable.tsx:255 +#: src/tables/machine/MachineTypeTable.tsx:154 +#: src/tables/machine/MachineTypeTable.tsx:253 msgid "Slug" msgstr "" -#: src/tables/machine/MachineTypeTable.tsx:167 -#: src/tables/machine/MachineTypeTable.tsx:276 +#: src/tables/machine/MachineTypeTable.tsx:165 +#: src/tables/machine/MachineTypeTable.tsx:274 msgid "Provider plugin" msgstr "" -#: src/tables/machine/MachineTypeTable.tsx:179 -#: src/tables/machine/MachineTypeTable.tsx:288 +#: src/tables/machine/MachineTypeTable.tsx:177 +#: src/tables/machine/MachineTypeTable.tsx:286 msgid "Provider file" msgstr "" -#: src/tables/machine/MachineTypeTable.tsx:194 +#: src/tables/machine/MachineTypeTable.tsx:192 msgid "Available Drivers" msgstr "Controladores Disponibles" -#: src/tables/machine/MachineTypeTable.tsx:234 +#: src/tables/machine/MachineTypeTable.tsx:232 msgid "Machine driver not found." msgstr "" -#: src/tables/machine/MachineTypeTable.tsx:242 +#: src/tables/machine/MachineTypeTable.tsx:240 msgid "Machine driver information" msgstr "" -#: src/tables/machine/MachineTypeTable.tsx:262 +#: src/tables/machine/MachineTypeTable.tsx:260 msgid "Machine type" msgstr "" @@ -10187,15 +10402,15 @@ msgstr "" #~ msgid "Machine driver detail" #~ msgstr "Machine driver detail" -#: src/tables/machine/MachineTypeTable.tsx:362 +#: src/tables/machine/MachineTypeTable.tsx:360 msgid "Builtin type" msgstr "" -#: src/tables/machine/MachineTypeTable.tsx:371 +#: src/tables/machine/MachineTypeTable.tsx:369 msgid "Machine Type Detail" msgstr "Detalle del tipo de máquina" -#: src/tables/machine/MachineTypeTable.tsx:381 +#: src/tables/machine/MachineTypeTable.tsx:379 msgid "Machine Driver Detail" msgstr "Detalle del controlador de la máquina" @@ -10213,8 +10428,16 @@ msgstr "Notificación" msgid "Message" msgstr "" -#: src/tables/part/ParametricPartTable.tsx:78 -msgid "Click to edit" +#: src/tables/part/ParametricPartTable.tsx:20 +msgid "Show active parts" +msgstr "" + +#: src/tables/part/ParametricPartTable.tsx:25 +msgid "Show locked parts" +msgstr "" + +#: src/tables/part/ParametricPartTable.tsx:30 +msgid "Show assembly parts" msgstr "" #: src/tables/part/ParametricPartTable.tsx:82 @@ -10222,43 +10445,14 @@ msgstr "" #~ msgstr "Edit parameter" #: src/tables/part/ParametricPartTable.tsx:244 -msgid "Add Part Parameter" -msgstr "" +#~ msgid "Add Part Parameter" +#~ msgstr "Add Part Parameter" #: src/tables/part/ParametricPartTable.tsx:258 #: src/tables/part/PartParameterTable.tsx:164 #: src/tables/part/PartParameterTable.tsx:187 -msgid "Edit Part Parameter" -msgstr "" - -#: src/tables/part/ParametricPartTable.tsx:355 -msgid "Show active parts" -msgstr "" - -#: src/tables/part/ParametricPartTable.tsx:360 -msgid "Show locked parts" -msgstr "" - -#: src/tables/part/ParametricPartTable.tsx:365 -msgid "Show assembly parts" -msgstr "" - -#: src/tables/part/ParametricPartTableFilters.tsx:36 -msgid "True" -msgstr "" - -#: src/tables/part/ParametricPartTableFilters.tsx:37 -msgid "False" -msgstr "" - -#: src/tables/part/ParametricPartTableFilters.tsx:47 -#: src/tables/part/ParametricPartTableFilters.tsx:80 -msgid "Select a choice" -msgstr "" - -#: src/tables/part/ParametricPartTableFilters.tsx:100 -msgid "Enter a value" -msgstr "" +#~ msgid "Edit Part Parameter" +#~ msgstr "Edit Part Parameter" #: src/tables/part/PartBuildAllocationsTable.tsx:64 msgid "Assembly IPN" @@ -10273,7 +10467,7 @@ msgid "Required Stock" msgstr "Stock requerido" #: src/tables/part/PartBuildAllocationsTable.tsx:124 -#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:381 +#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:383 msgid "View Build Order" msgstr "Ver orden de construcción" @@ -10332,85 +10526,22 @@ msgstr "" msgid "Delete Category Parameter" msgstr "" -#: src/tables/part/PartCategoryTemplateTable.tsx:87 -msgid "Parameter Template" -msgstr "" - #: src/tables/part/PartCategoryTemplateTable.tsx:93 #~ msgid "[{0}]" #~ msgstr "[{0}]" -#: src/tables/part/PartParameterTable.tsx:108 -msgid "Internal Units" -msgstr "" - -#: src/tables/part/PartParameterTable.tsx:128 -#: src/tables/part/PartParameterTable.tsx:138 -msgid "Updated By" -msgstr "" - -#: src/tables/part/PartParameterTable.tsx:139 -msgid "Filter by user who last updated the parameter" -msgstr "" - #: src/tables/part/PartParameterTable.tsx:148 -msgid "New Part Parameter" -msgstr "" +#~ msgid "New Part Parameter" +#~ msgstr "New Part Parameter" #: src/tables/part/PartParameterTable.tsx:173 #: src/tables/part/PartParameterTable.tsx:195 -msgid "Delete Part Parameter" -msgstr "" +#~ msgid "Delete Part Parameter" +#~ msgstr "Delete Part Parameter" #: src/tables/part/PartParameterTable.tsx:213 -msgid "Add parameter" -msgstr "" - -#: src/tables/part/PartParameterTable.tsx:232 -msgid "Part parameters cannot be edited, as the part is locked" -msgstr "" - -#: src/tables/part/PartParameterTemplateTable.tsx:36 -msgid "Checkbox" -msgstr "" - -#: src/tables/part/PartParameterTemplateTable.tsx:37 -msgid "Show checkbox templates" -msgstr "" - -#: src/tables/part/PartParameterTemplateTable.tsx:41 -msgid "Has choices" -msgstr "Tiene opciones" - -#: src/tables/part/PartParameterTemplateTable.tsx:42 -msgid "Show templates with choices" -msgstr "Mostrar plantillas con opciones" - -#: src/tables/part/PartParameterTemplateTable.tsx:46 -#: src/tables/part/PartTable.tsx:245 -msgid "Has Units" -msgstr "Tiene Unidades" - -#: src/tables/part/PartParameterTemplateTable.tsx:47 -msgid "Show templates with units" -msgstr "Mostrar plantillas con unidades" - -#: src/tables/part/PartParameterTemplateTable.tsx:91 -#: src/tables/part/PartParameterTemplateTable.tsx:166 -msgid "Add Parameter Template" -msgstr "" - -#: src/tables/part/PartParameterTemplateTable.tsx:105 -msgid "Duplicate Parameter Template" -msgstr "" - -#: src/tables/part/PartParameterTemplateTable.tsx:117 -msgid "Edit Parameter Template" -msgstr "" - -#: src/tables/part/PartParameterTemplateTable.tsx:128 -msgid "Delete Parameter Template" -msgstr "" +#~ msgid "Add parameter" +#~ msgstr "Add parameter" #: src/tables/part/PartParameterTemplateTable.tsx:141 #~ msgid "Add parameter template" @@ -10430,7 +10561,7 @@ msgid "Show received items" msgstr "" #: src/tables/part/PartSalesAllocationsTable.tsx:90 -#: src/tables/sales/SalesOrderShipmentTable.tsx:218 +#: src/tables/sales/SalesOrderShipmentTable.tsx:263 msgid "View Sales Order" msgstr "Ver orden de venta" @@ -10617,8 +10748,8 @@ msgstr "" #: src/tables/part/PartTestResultTable.tsx:103 #: src/tables/part/PartTestResultTable.tsx:181 -#: src/tables/part/PartTestResultTable.tsx:320 -#: src/tables/part/PartTestResultTable.tsx:334 +#: src/tables/part/PartTestResultTable.tsx:328 +#: src/tables/part/PartTestResultTable.tsx:342 #: src/tables/stock/StockItemTestResultTable.tsx:296 #: src/tables/stock/StockItemTestResultTable.tsx:368 #: src/tables/stock/StockItemTestResultTable.tsx:429 @@ -10643,7 +10774,7 @@ msgstr "" msgid "No Result" msgstr "" -#: src/tables/part/PartTestResultTable.tsx:298 +#: src/tables/part/PartTestResultTable.tsx:306 msgid "Show build outputs currently in production" msgstr "" @@ -11013,36 +11144,45 @@ msgstr "" #~ msgid "Parameter updated" #~ msgstr "Parameter updated" -#: src/tables/purchasing/ManufacturerPartParameterTable.tsx:63 -#: src/tables/purchasing/ManufacturerPartParameterTable.tsx:112 -msgid "Add Parameter" -msgstr "" - #: src/tables/purchasing/ManufacturerPartParameterTable.tsx:73 #~ msgid "Parameter deleted" #~ msgstr "Parameter deleted" -#: src/tables/purchasing/ManufacturerPartParameterTable.tsx:74 -msgid "Edit Parameter" -msgstr "" - #: src/tables/purchasing/ManufacturerPartParameterTable.tsx:74 #~ msgid "Are you sure you want to delete this parameter?" #~ msgstr "Are you sure you want to delete this parameter?" -#: src/tables/purchasing/ManufacturerPartParameterTable.tsx:82 -msgid "Delete Parameter" +#: src/tables/purchasing/ManufacturerPartParametricTable.tsx:34 +#: src/tables/purchasing/ManufacturerPartTable.tsx:82 +#: src/tables/purchasing/SupplierPartTable.tsx:99 +msgid "MPN" +msgstr "" + +#: src/tables/purchasing/ManufacturerPartParametricTable.tsx:44 +#: src/tables/purchasing/ManufacturerPartTable.tsx:134 +#: src/tables/purchasing/SupplierPartTable.tsx:220 +msgid "Active Part" +msgstr "" + +#: src/tables/purchasing/ManufacturerPartParametricTable.tsx:45 +#: src/tables/purchasing/ManufacturerPartTable.tsx:135 +msgid "Show manufacturer parts for active internal parts." +msgstr "" + +#: src/tables/purchasing/ManufacturerPartParametricTable.tsx:50 +#: src/tables/purchasing/ManufacturerPartTable.tsx:140 +msgid "Active Manufacturer" +msgstr "" + +#: src/tables/purchasing/ManufacturerPartParametricTable.tsx:51 +#: src/tables/purchasing/ManufacturerPartTable.tsx:142 +msgid "Show manufacturer parts for active manufacturers." msgstr "" #: src/tables/purchasing/ManufacturerPartTable.tsx:63 #~ msgid "Create Manufacturer Part" #~ msgstr "Create Manufacturer Part" -#: src/tables/purchasing/ManufacturerPartTable.tsx:82 -#: src/tables/purchasing/SupplierPartTable.tsx:99 -msgid "MPN" -msgstr "" - #: src/tables/purchasing/ManufacturerPartTable.tsx:100 #~ msgid "Manufacturer part updated" #~ msgstr "Manufacturer part updated" @@ -11055,25 +11195,8 @@ msgstr "" #~ msgid "Are you sure you want to remove this manufacturer part?" #~ msgstr "Are you sure you want to remove this manufacturer part?" -#: src/tables/purchasing/ManufacturerPartTable.tsx:134 -#: src/tables/purchasing/SupplierPartTable.tsx:220 -msgid "Active Part" -msgstr "" - -#: src/tables/purchasing/ManufacturerPartTable.tsx:135 -msgid "Show manufacturer parts for active internal parts." -msgstr "" - -#: src/tables/purchasing/ManufacturerPartTable.tsx:140 -msgid "Active Manufacturer" -msgstr "" - -#: src/tables/purchasing/ManufacturerPartTable.tsx:142 -msgid "Show manufacturer parts for active manufacturers." -msgstr "" - #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:115 -#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:397 +#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:399 msgid "Import Line Items" msgstr "" @@ -11099,11 +11222,11 @@ msgstr "Mostrar partidas que han sido recibidas" #~ msgid "Add line item" #~ msgstr "Add line item" -#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:350 +#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:352 msgid "Receive line item" msgstr "" -#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:414 +#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:416 msgid "Receive items" msgstr "Recibir artículos" @@ -11201,25 +11324,25 @@ msgid "Not shipped" msgstr "No enviado" #: src/tables/sales/SalesOrderAllocationTable.tsx:211 -#: src/tables/sales/SalesOrderAllocationTable.tsx:229 +#: src/tables/sales/SalesOrderAllocationTable.tsx:235 msgid "Edit Allocation" msgstr "Editar Asignación" #: src/tables/sales/SalesOrderAllocationTable.tsx:218 #: src/tables/sales/SalesOrderAllocationTable.tsx:241 -msgid "Delete Allocation" -msgstr "Eliminar asignación" +#~ msgid "Delete Allocation" +#~ msgstr "Delete Allocation" -#: src/tables/sales/SalesOrderAllocationTable.tsx:252 -#: src/tables/sales/SalesOrderAllocationTable.tsx:253 +#: src/tables/sales/SalesOrderAllocationTable.tsx:261 +#: src/tables/sales/SalesOrderAllocationTable.tsx:262 msgid "View Shipment" msgstr "Ver envío" -#: src/tables/sales/SalesOrderAllocationTable.tsx:308 +#: src/tables/sales/SalesOrderAllocationTable.tsx:317 msgid "Assign to Shipment" msgstr "" -#: src/tables/sales/SalesOrderAllocationTable.tsx:324 +#: src/tables/sales/SalesOrderAllocationTable.tsx:333 msgid "Assign to shipment" msgstr "" @@ -11259,35 +11382,35 @@ msgstr "" #~ msgid "Delete Shipment" #~ msgstr "Delete Shipment" -#: src/tables/sales/SalesOrderShipmentTable.tsx:72 +#: src/tables/sales/SalesOrderShipmentTable.tsx:79 msgid "Create Shipment" msgstr "" -#: src/tables/sales/SalesOrderShipmentTable.tsx:143 +#: src/tables/sales/SalesOrderShipmentTable.tsx:164 msgid "Items" msgstr "" -#: src/tables/sales/SalesOrderShipmentTable.tsx:203 +#: src/tables/sales/SalesOrderShipmentTable.tsx:248 msgid "Edit shipment" msgstr "Editar envío" -#: src/tables/sales/SalesOrderShipmentTable.tsx:211 +#: src/tables/sales/SalesOrderShipmentTable.tsx:256 msgid "Cancel shipment" msgstr "Cancelar envío" -#: src/tables/sales/SalesOrderShipmentTable.tsx:241 +#: src/tables/sales/SalesOrderShipmentTable.tsx:286 msgid "Add shipment" msgstr "" -#: src/tables/sales/SalesOrderShipmentTable.tsx:255 +#: src/tables/sales/SalesOrderShipmentTable.tsx:300 msgid "Show shipments which have been checked" msgstr "" -#: src/tables/sales/SalesOrderShipmentTable.tsx:260 +#: src/tables/sales/SalesOrderShipmentTable.tsx:305 msgid "Show shipments which have been shipped" msgstr "" -#: src/tables/sales/SalesOrderShipmentTable.tsx:265 +#: src/tables/sales/SalesOrderShipmentTable.tsx:310 msgid "Show shipments which have been delivered" msgstr "" @@ -11621,11 +11744,6 @@ msgstr "" msgid "Imported Rows" msgstr "" -#: src/tables/settings/ImportSessionTable.tsx:111 -#: src/tables/settings/TemplateTable.tsx:368 -msgid "Model Type" -msgstr "" - #: src/tables/settings/ImportSessionTable.tsx:112 #: src/tables/settings/TemplateTable.tsx:369 msgid "Filter by target model type" diff --git a/src/frontend/src/locales/et/messages.po b/src/frontend/src/locales/et/messages.po index b6ab2a2132..c5cfc679b7 100644 --- a/src/frontend/src/locales/et/messages.po +++ b/src/frontend/src/locales/et/messages.po @@ -8,7 +8,7 @@ msgstr "" "Language: et\n" "Project-Id-Version: inventree\n" "Report-Msgid-Bugs-To: \n" -"PO-Revision-Date: 2025-11-19 19:39\n" +"PO-Revision-Date: 2025-12-07 07:36\n" "Last-Translator: \n" "Language-Team: Estonian\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" @@ -30,7 +30,7 @@ msgid "Edit" msgstr "Muuda" #: lib/components/RowActions.tsx:56 -#: src/components/forms/ApiForm.tsx:735 +#: src/components/forms/ApiForm.tsx:754 #: src/components/items/ActionDropdown.tsx:257 #: src/components/items/RoleTable.tsx:155 #: src/hooks/UseForm.tsx:164 @@ -56,24 +56,24 @@ msgstr "Tühista" #: lib/components/RowActions.tsx:136 #: src/components/nav/NavigationDrawer.tsx:190 -#: src/forms/PurchaseOrderForms.tsx:802 +#: src/forms/PurchaseOrderForms.tsx:854 #: src/forms/StockForms.tsx:796 #: src/forms/StockForms.tsx:843 -#: src/forms/StockForms.tsx:889 -#: src/forms/StockForms.tsx:928 -#: src/forms/StockForms.tsx:964 -#: src/forms/StockForms.tsx:1050 +#: src/forms/StockForms.tsx:896 +#: src/forms/StockForms.tsx:942 +#: src/forms/StockForms.tsx:980 +#: src/forms/StockForms.tsx:1066 #: src/pages/Index/Settings/AccountSettings/MFASettings.tsx:962 msgid "Actions" msgstr "Toimingud" #: lib/components/SearchInput.tsx:34 -#: src/components/forms/fields/RelatedModelField.tsx:408 +#: src/components/forms/fields/RelatedModelField.tsx:479 #: src/components/nav/Header.tsx:169 #: src/components/wizards/ImportPartWizard.tsx:200 #: src/components/wizards/ImportPartWizard.tsx:233 -#: src/pages/Index/Settings/UserSettings.tsx:74 -#: src/pages/part/PartDetail.tsx:1155 +#: src/pages/Index/Settings/UserSettings.tsx:75 +#: src/pages/part/PartDetail.tsx:1176 msgid "Search" msgstr "Otsing" @@ -95,7 +95,7 @@ msgstr "Jah" msgid "No" msgstr "Ei" -#: lib/enums/ModelInformation.tsx:28 +#: lib/enums/ModelInformation.tsx:29 #: src/components/wizards/OrderPartsWizard.tsx:279 #: src/forms/BuildForms.tsx:332 #: src/forms/BuildForms.tsx:407 @@ -103,208 +103,234 @@ msgstr "Ei" #: src/forms/BuildForms.tsx:630 #: src/forms/BuildForms.tsx:793 #: src/forms/BuildForms.tsx:896 -#: src/forms/PurchaseOrderForms.tsx:798 +#: src/forms/PurchaseOrderForms.tsx:850 #: src/forms/ReturnOrderForms.tsx:242 -#: src/forms/SalesOrderForms.tsx:305 +#: src/forms/SalesOrderForms.tsx:384 #: src/forms/StockForms.tsx:360 #: src/forms/StockForms.tsx:791 #: src/forms/StockForms.tsx:838 -#: src/forms/StockForms.tsx:884 -#: src/forms/StockForms.tsx:923 -#: src/forms/StockForms.tsx:959 -#: src/forms/StockForms.tsx:1002 -#: src/forms/StockForms.tsx:1046 -#: src/forms/StockForms.tsx:1094 -#: src/forms/StockForms.tsx:1138 -#: src/pages/build/BuildDetail.tsx:200 -#: src/pages/part/PartDetail.tsx:1207 +#: src/forms/StockForms.tsx:891 +#: src/forms/StockForms.tsx:937 +#: src/forms/StockForms.tsx:975 +#: src/forms/StockForms.tsx:1018 +#: src/forms/StockForms.tsx:1062 +#: src/forms/StockForms.tsx:1110 +#: src/forms/StockForms.tsx:1154 +#: src/pages/build/BuildDetail.tsx:201 +#: src/pages/part/PartDetail.tsx:1228 #: src/tables/ColumnRenderers.tsx:91 +#: src/tables/part/PartTestResultTable.tsx:247 #: src/tables/part/RelatedPartTable.tsx:53 #: src/tables/stock/StockTrackingTable.tsx:87 msgid "Part" msgstr "" -#: lib/enums/ModelInformation.tsx:29 +#: lib/enums/ModelInformation.tsx:30 #: lib/enums/Roles.tsx:35 #: src/components/nav/NavigationDrawer.tsx:70 #: src/defaults/links.tsx:36 -#: src/pages/Index/Settings/SystemSettings.tsx:190 -#: src/pages/part/CategoryDetail.tsx:132 -#: src/pages/part/CategoryDetail.tsx:277 -#: src/pages/part/CategoryDetail.tsx:323 -#: src/pages/part/CategoryDetail.tsx:354 -#: src/pages/part/PartDetail.tsx:965 +#: src/pages/Index/Settings/SystemSettings.tsx:197 +#: src/pages/part/CategoryDetail.tsx:135 +#: src/pages/part/CategoryDetail.tsx:285 +#: src/pages/part/CategoryDetail.tsx:340 +#: src/pages/part/CategoryDetail.tsx:371 +#: src/pages/part/PartDetail.tsx:978 msgid "Parts" msgstr "" #: lib/enums/ModelInformation.tsx:37 #: src/pages/Index/Settings/AdminCenter/PartParameterPanel.tsx:13 -msgid "Part Parameter Template" -msgstr "" +#~ msgid "Part Parameter Template" +#~ msgstr "Part Parameter Template" #: lib/enums/ModelInformation.tsx:38 -msgid "Part Parameter Templates" +#~ msgid "Part Parameter Templates" +#~ msgstr "Part Parameter Templates" + +#: lib/enums/ModelInformation.tsx:39 +msgid "Parameter" msgstr "" +#: lib/enums/ModelInformation.tsx:40 +#: src/components/panels/ParametersPanel.tsx:19 +#: src/components/wizards/ImportPartWizard.tsx:807 +#: src/pages/Index/Settings/AdminCenter/Index.tsx:195 +#: src/pages/Index/Settings/SystemSettings.tsx:191 +#: src/pages/part/PartDetail.tsx:943 +msgid "Parameters" +msgstr "Parameetrid" + #: lib/enums/ModelInformation.tsx:45 -msgid "Part Test Template" -msgstr "" +#: src/tables/part/PartCategoryTemplateTable.tsx:87 +msgid "Parameter Template" +msgstr "Parameetri mall" #: lib/enums/ModelInformation.tsx:46 -msgid "Part Test Templates" +#: src/pages/Index/Settings/AdminCenter/ParameterPanel.tsx:13 +msgid "Parameter Templates" msgstr "" #: lib/enums/ModelInformation.tsx:52 +msgid "Part Test Template" +msgstr "" + +#: lib/enums/ModelInformation.tsx:53 +msgid "Part Test Templates" +msgstr "" + +#: lib/enums/ModelInformation.tsx:59 #: src/components/wizards/OrderPartsWizard.tsx:290 -#: src/pages/company/SupplierPartDetail.tsx:413 +#: src/pages/company/SupplierPartDetail.tsx:418 #: src/pages/stock/StockDetail.tsx:289 -#: src/tables/build/BuildAllocatedStockTable.tsx:155 +#: src/tables/build/BuildAllocatedStockTable.tsx:152 #: src/tables/part/PartPurchaseOrdersTable.tsx:50 +#: src/tables/purchasing/SupplierPartParametricTable.tsx:29 #: src/tables/purchasing/SupplierPartTable.tsx:83 #: src/tables/stock/StockItemTable.tsx:247 msgid "Supplier Part" msgstr "" -#: lib/enums/ModelInformation.tsx:53 -#: src/pages/purchasing/PurchasingIndex.tsx:92 +#: lib/enums/ModelInformation.tsx:60 +#: src/pages/purchasing/PurchasingIndex.tsx:128 msgid "Supplier Parts" msgstr "" -#: lib/enums/ModelInformation.tsx:61 -#: src/pages/company/ManufacturerPartDetail.tsx:297 -#: src/pages/company/SupplierPartDetail.tsx:161 +#: lib/enums/ModelInformation.tsx:69 +#: src/pages/company/ManufacturerPartDetail.tsx:288 +#: src/pages/company/SupplierPartDetail.tsx:162 #: src/tables/part/PartPurchaseOrdersTable.tsx:56 #: src/tables/stock/StockItemTable.tsx:253 msgid "Manufacturer Part" msgstr "" -#: lib/enums/ModelInformation.tsx:62 -#: src/pages/purchasing/PurchasingIndex.tsx:109 +#: lib/enums/ModelInformation.tsx:70 +#: src/pages/purchasing/PurchasingIndex.tsx:177 msgid "Manufacturer Parts" msgstr "" -#: lib/enums/ModelInformation.tsx:70 -#: src/pages/part/CategoryDetail.tsx:354 +#: lib/enums/ModelInformation.tsx:79 +#: src/pages/part/CategoryDetail.tsx:371 #: src/tables/Filter.tsx:389 msgid "Part Category" msgstr "" -#: lib/enums/ModelInformation.tsx:71 +#: lib/enums/ModelInformation.tsx:80 #: lib/enums/Roles.tsx:37 -#: src/pages/part/CategoryDetail.tsx:271 -#: src/pages/part/CategoryDetail.tsx:345 -#: src/pages/part/PartDetail.tsx:1196 +#: src/pages/part/CategoryDetail.tsx:279 +#: src/pages/part/CategoryDetail.tsx:362 +#: src/pages/part/PartDetail.tsx:1217 msgid "Part Categories" msgstr "" -#: lib/enums/ModelInformation.tsx:79 +#: lib/enums/ModelInformation.tsx:88 #: src/forms/BuildForms.tsx:473 #: src/forms/BuildForms.tsx:633 #: src/forms/BuildForms.tsx:794 -#: src/forms/SalesOrderForms.tsx:307 +#: src/forms/SalesOrderForms.tsx:386 #: src/pages/stock/StockDetail.tsx:1005 -#: src/tables/part/PartTestResultTable.tsx:248 +#: src/tables/part/PartTestResultTable.tsx:256 #: src/tables/stock/StockTrackingTable.tsx:48 #: src/tables/stock/StockTrackingTable.tsx:55 msgid "Stock Item" msgstr "" -#: lib/enums/ModelInformation.tsx:80 +#: lib/enums/ModelInformation.tsx:89 #: lib/enums/Roles.tsx:45 -#: src/pages/company/CompanyDetail.tsx:210 -#: src/pages/part/CategoryDetail.tsx:291 +#: src/pages/company/CompanyDetail.tsx:211 +#: src/pages/part/CategoryDetail.tsx:314 #: src/pages/part/PartStockHistoryDetail.tsx:101 #: src/pages/stock/LocationDetail.tsx:121 #: src/pages/stock/LocationDetail.tsx:180 msgid "Stock Items" msgstr "" -#: lib/enums/ModelInformation.tsx:88 +#: lib/enums/ModelInformation.tsx:98 #: lib/enums/Roles.tsx:47 #: src/pages/stock/LocationDetail.tsx:420 msgid "Stock Location" msgstr "" -#: lib/enums/ModelInformation.tsx:89 +#: lib/enums/ModelInformation.tsx:99 #: src/pages/stock/LocationDetail.tsx:174 #: src/pages/stock/LocationDetail.tsx:412 #: src/pages/stock/StockDetail.tsx:996 msgid "Stock Locations" msgstr "" -#: lib/enums/ModelInformation.tsx:97 +#: lib/enums/ModelInformation.tsx:108 msgid "Stock Location Type" msgstr "" -#: lib/enums/ModelInformation.tsx:98 +#: lib/enums/ModelInformation.tsx:109 msgid "Stock Location Types" msgstr "" -#: lib/enums/ModelInformation.tsx:103 -#: src/pages/Index/Settings/SystemSettings.tsx:248 -#: src/pages/part/PartDetail.tsx:911 +#: lib/enums/ModelInformation.tsx:114 +#: src/pages/Index/Settings/SystemSettings.tsx:254 +#: src/pages/part/PartDetail.tsx:900 msgid "Stock History" msgstr "" -#: lib/enums/ModelInformation.tsx:104 +#: lib/enums/ModelInformation.tsx:115 msgid "Stock Histories" msgstr "" -#: lib/enums/ModelInformation.tsx:109 +#: lib/enums/ModelInformation.tsx:120 msgid "Build" msgstr "" -#: lib/enums/ModelInformation.tsx:110 +#: lib/enums/ModelInformation.tsx:121 msgid "Builds" msgstr "" -#: lib/enums/ModelInformation.tsx:118 +#: lib/enums/ModelInformation.tsx:130 msgid "Build Line" msgstr "" -#: lib/enums/ModelInformation.tsx:119 +#: lib/enums/ModelInformation.tsx:131 msgid "Build Lines" msgstr "" -#: lib/enums/ModelInformation.tsx:126 +#: lib/enums/ModelInformation.tsx:138 msgid "Build Item" msgstr "" -#: lib/enums/ModelInformation.tsx:127 +#: lib/enums/ModelInformation.tsx:139 msgid "Build Items" msgstr "" -#: lib/enums/ModelInformation.tsx:132 -#: src/pages/company/CompanyDetail.tsx:340 +#: lib/enums/ModelInformation.tsx:144 +#: src/pages/company/CompanyDetail.tsx:345 #: src/tables/company/CompanyTable.tsx:47 #: src/tables/company/ContactTable.tsx:67 +#: src/tables/company/ParametricCompanyTable.tsx:18 msgid "Company" msgstr "" -#: lib/enums/ModelInformation.tsx:133 +#: lib/enums/ModelInformation.tsx:145 msgid "Companies" msgstr "" -#: lib/enums/ModelInformation.tsx:140 -#: src/pages/build/BuildDetail.tsx:316 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:253 -#: src/pages/sales/ReturnOrderDetail.tsx:231 -#: src/pages/sales/SalesOrderDetail.tsx:224 +#: lib/enums/ModelInformation.tsx:152 +#: src/pages/build/BuildDetail.tsx:317 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:254 +#: src/pages/sales/ReturnOrderDetail.tsx:232 +#: src/pages/sales/SalesOrderDetail.tsx:225 #: src/tables/ColumnRenderers.tsx:362 #: src/tables/Filter.tsx:286 #: src/tables/TableHoverCard.tsx:101 msgid "Project Code" msgstr "" -#: lib/enums/ModelInformation.tsx:141 +#: lib/enums/ModelInformation.tsx:153 #: src/pages/Index/Settings/AdminCenter/Index.tsx:172 msgid "Project Codes" msgstr "" -#: lib/enums/ModelInformation.tsx:147 +#: lib/enums/ModelInformation.tsx:159 #: src/components/wizards/OrderPartsWizard.tsx:338 #: src/pages/part/pricing/PurchaseHistoryPanel.tsx:33 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:550 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:555 #: src/pages/stock/StockDetail.tsx:352 #: src/tables/part/PartPurchaseOrdersTable.tsx:32 #: src/tables/stock/StockItemTable.tsx:239 @@ -312,117 +338,117 @@ msgstr "" msgid "Purchase Order" msgstr "" -#: lib/enums/ModelInformation.tsx:148 +#: lib/enums/ModelInformation.tsx:160 #: lib/enums/Roles.tsx:39 #: src/defaults/actions.tsx:104 -#: src/pages/Index/Settings/SystemSettings.tsx:283 -#: src/pages/company/CompanyDetail.tsx:203 -#: src/pages/company/SupplierPartDetail.tsx:266 -#: src/pages/part/PartDetail.tsx:875 -#: src/pages/purchasing/PurchasingIndex.tsx:60 +#: src/pages/Index/Settings/SystemSettings.tsx:289 +#: src/pages/company/CompanyDetail.tsx:204 +#: src/pages/company/SupplierPartDetail.tsx:267 +#: src/pages/part/PartDetail.tsx:864 +#: src/pages/purchasing/PurchasingIndex.tsx:66 msgid "Purchase Orders" msgstr "" -#: lib/enums/ModelInformation.tsx:156 +#: lib/enums/ModelInformation.tsx:169 msgid "Purchase Order Line" msgstr "" -#: lib/enums/ModelInformation.tsx:157 +#: lib/enums/ModelInformation.tsx:170 msgid "Purchase Order Lines" msgstr "" -#: lib/enums/ModelInformation.tsx:162 -#: src/pages/build/BuildDetail.tsx:289 +#: lib/enums/ModelInformation.tsx:175 +#: src/pages/build/BuildDetail.tsx:290 #: src/pages/part/pricing/SaleHistoryPanel.tsx:24 -#: src/pages/sales/SalesOrderDetail.tsx:614 -#: src/pages/sales/SalesOrderShipmentDetail.tsx:105 -#: src/pages/sales/SalesOrderShipmentDetail.tsx:478 +#: src/pages/sales/SalesOrderDetail.tsx:619 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:103 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:446 #: src/pages/stock/StockDetail.tsx:361 #: src/tables/part/PartSalesAllocationsTable.tsx:41 #: src/tables/sales/SalesOrderAllocationTable.tsx:110 -#: src/tables/sales/SalesOrderShipmentTable.tsx:122 +#: src/tables/sales/SalesOrderShipmentTable.tsx:143 #: src/tables/stock/StockTrackingTable.tsx:131 msgid "Sales Order" msgstr "" -#: lib/enums/ModelInformation.tsx:163 +#: lib/enums/ModelInformation.tsx:176 #: lib/enums/Roles.tsx:43 #: src/defaults/actions.tsx:114 -#: src/pages/Index/Settings/SystemSettings.tsx:299 -#: src/pages/company/CompanyDetail.tsx:223 -#: src/pages/part/PartDetail.tsx:887 -#: src/pages/sales/SalesIndex.tsx:84 +#: src/pages/Index/Settings/SystemSettings.tsx:305 +#: src/pages/company/CompanyDetail.tsx:224 +#: src/pages/part/PartDetail.tsx:876 +#: src/pages/sales/SalesIndex.tsx:53 msgid "Sales Orders" msgstr "" -#: lib/enums/ModelInformation.tsx:171 -#: src/pages/sales/SalesOrderShipmentDetail.tsx:477 +#: lib/enums/ModelInformation.tsx:185 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:445 msgid "Sales Order Shipment" msgstr "" -#: lib/enums/ModelInformation.tsx:172 +#: lib/enums/ModelInformation.tsx:186 msgid "Sales Order Shipments" msgstr "" -#: lib/enums/ModelInformation.tsx:179 -#: src/pages/sales/ReturnOrderDetail.tsx:549 +#: lib/enums/ModelInformation.tsx:194 +#: src/pages/sales/ReturnOrderDetail.tsx:554 #: src/tables/stock/StockTrackingTable.tsx:142 msgid "Return Order" msgstr "" -#: lib/enums/ModelInformation.tsx:180 +#: lib/enums/ModelInformation.tsx:195 #: lib/enums/Roles.tsx:41 #: src/defaults/actions.tsx:125 -#: src/pages/Index/Settings/SystemSettings.tsx:316 -#: src/pages/company/CompanyDetail.tsx:230 -#: src/pages/part/PartDetail.tsx:894 -#: src/pages/sales/SalesIndex.tsx:117 +#: src/pages/Index/Settings/SystemSettings.tsx:322 +#: src/pages/company/CompanyDetail.tsx:231 +#: src/pages/part/PartDetail.tsx:883 +#: src/pages/sales/SalesIndex.tsx:99 msgid "Return Orders" msgstr "" -#: lib/enums/ModelInformation.tsx:188 +#: lib/enums/ModelInformation.tsx:204 msgid "Return Order Line Item" msgstr "" -#: lib/enums/ModelInformation.tsx:189 +#: lib/enums/ModelInformation.tsx:205 msgid "Return Order Line Items" msgstr "" -#: lib/enums/ModelInformation.tsx:194 +#: lib/enums/ModelInformation.tsx:210 #: src/tables/company/AddressTable.tsx:52 msgid "Address" msgstr "Aadress" -#: lib/enums/ModelInformation.tsx:195 -#: src/pages/company/CompanyDetail.tsx:264 +#: lib/enums/ModelInformation.tsx:211 +#: src/pages/company/CompanyDetail.tsx:265 msgid "Addresses" msgstr "Aadressid" -#: lib/enums/ModelInformation.tsx:201 +#: lib/enums/ModelInformation.tsx:217 #: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:89 #: src/pages/core/UserDetail.tsx:135 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:229 -#: src/pages/sales/ReturnOrderDetail.tsx:207 -#: src/pages/sales/SalesOrderDetail.tsx:200 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:230 +#: src/pages/sales/ReturnOrderDetail.tsx:208 +#: src/pages/sales/SalesOrderDetail.tsx:201 msgid "Contact" msgstr "Kontakt" -#: lib/enums/ModelInformation.tsx:202 -#: src/pages/company/CompanyDetail.tsx:258 +#: lib/enums/ModelInformation.tsx:218 +#: src/pages/company/CompanyDetail.tsx:259 #: src/pages/core/CoreIndex.tsx:33 msgid "Contacts" msgstr "Kontaktid" -#: lib/enums/ModelInformation.tsx:208 +#: lib/enums/ModelInformation.tsx:224 #: src/tables/ColumnRenderers.tsx:444 msgid "Owner" msgstr "Omanik" -#: lib/enums/ModelInformation.tsx:209 +#: lib/enums/ModelInformation.tsx:225 msgid "Owners" msgstr "Omanikud" -#: lib/enums/ModelInformation.tsx:215 +#: lib/enums/ModelInformation.tsx:231 #: src/pages/Auth/ChangePassword.tsx:36 #: src/pages/core/UserDetail.tsx:220 #: src/tables/ColumnRenderers.tsx:395 @@ -437,7 +463,7 @@ msgstr "Omanikud" msgid "User" msgstr "Kasutaja" -#: lib/enums/ModelInformation.tsx:216 +#: lib/enums/ModelInformation.tsx:232 #: src/components/nav/NavigationDrawer.tsx:105 #: src/pages/Index/Settings/AdminCenter/UserManagementPanel.tsx:15 #: src/pages/core/CoreIndex.tsx:21 @@ -445,12 +471,12 @@ msgstr "Kasutaja" msgid "Users" msgstr "Kasutajad" -#: lib/enums/ModelInformation.tsx:222 +#: lib/enums/ModelInformation.tsx:238 #: src/pages/core/GroupDetail.tsx:78 msgid "Group" msgstr "Rühm" -#: lib/enums/ModelInformation.tsx:223 +#: lib/enums/ModelInformation.tsx:239 #: src/components/nav/NavigationDrawer.tsx:111 #: src/pages/Index/Settings/AdminCenter/UserManagementPanel.tsx:23 #: src/pages/core/CoreIndex.tsx:27 @@ -460,64 +486,64 @@ msgstr "Rühm" msgid "Groups" msgstr "Rühmad" -#: lib/enums/ModelInformation.tsx:230 +#: lib/enums/ModelInformation.tsx:246 msgid "Import Session" msgstr "Impordi sessioon" -#: lib/enums/ModelInformation.tsx:231 +#: lib/enums/ModelInformation.tsx:247 msgid "Import Sessions" msgstr "Impordi sessioone" -#: lib/enums/ModelInformation.tsx:238 +#: lib/enums/ModelInformation.tsx:254 msgid "Label Template" msgstr "" -#: lib/enums/ModelInformation.tsx:239 +#: lib/enums/ModelInformation.tsx:255 #: src/pages/Index/Settings/AdminCenter/Index.tsx:209 msgid "Label Templates" msgstr "" -#: lib/enums/ModelInformation.tsx:246 +#: lib/enums/ModelInformation.tsx:262 msgid "Report Template" msgstr "" -#: lib/enums/ModelInformation.tsx:247 +#: lib/enums/ModelInformation.tsx:263 #: src/pages/Index/Settings/AdminCenter/Index.tsx:215 msgid "Report Templates" msgstr "" -#: lib/enums/ModelInformation.tsx:254 +#: lib/enums/ModelInformation.tsx:270 #: src/components/plugins/PluginDrawer.tsx:145 msgid "Plugin Configuration" msgstr "" -#: lib/enums/ModelInformation.tsx:255 +#: lib/enums/ModelInformation.tsx:271 msgid "Plugin Configurations" msgstr "" -#: lib/enums/ModelInformation.tsx:262 +#: lib/enums/ModelInformation.tsx:278 msgid "Content Type" msgstr "" -#: lib/enums/ModelInformation.tsx:263 +#: lib/enums/ModelInformation.tsx:279 msgid "Content Types" msgstr "" -#: lib/enums/ModelInformation.tsx:268 +#: lib/enums/ModelInformation.tsx:284 msgid "Selection List" msgstr "" -#: lib/enums/ModelInformation.tsx:269 -#: src/pages/Index/Settings/AdminCenter/PartParameterPanel.tsx:21 +#: lib/enums/ModelInformation.tsx:285 +#: src/pages/Index/Settings/AdminCenter/ParameterPanel.tsx:21 msgid "Selection Lists" msgstr "" -#: lib/enums/ModelInformation.tsx:275 +#: lib/enums/ModelInformation.tsx:291 #: src/components/barcodes/BarcodeInput.tsx:114 #: src/components/dashboard/DashboardLayout.tsx:281 #: src/components/editors/NotesEditor.tsx:74 #: src/components/editors/TemplateEditor/TemplateEditor.tsx:158 -#: src/components/forms/fields/ApiFormField.tsx:273 +#: src/components/forms/fields/ApiFormField.tsx:237 #: src/components/forms/fields/TableField.tsx:45 #: src/components/importer/ImportDataSelector.tsx:192 #: src/components/importer/ImporterColumnSelector.tsx:234 @@ -528,7 +554,7 @@ msgstr "" #: src/components/nav/SearchDrawer.tsx:572 #: src/components/settings/SettingList.tsx:139 #: src/components/wizards/ImportPartWizard.tsx:574 -#: src/components/wizards/ImportPartWizard.tsx:718 +#: src/components/wizards/ImportPartWizard.tsx:719 #: src/forms/BomForms.tsx:69 #: src/functions/auth.tsx:643 #: src/pages/ErrorPage.tsx:11 @@ -547,9 +573,9 @@ msgstr "" msgid "Error" msgstr "Tõrge" -#: lib/enums/ModelInformation.tsx:276 +#: lib/enums/ModelInformation.tsx:292 #: src/tables/machine/MachineListTable.tsx:402 -#: src/tables/machine/MachineTypeTable.tsx:299 +#: src/tables/machine/MachineTypeTable.tsx:297 msgid "Errors" msgstr "" @@ -559,10 +585,10 @@ msgstr "" #: lib/enums/Roles.tsx:33 #: src/defaults/actions.tsx:135 -#: src/pages/Index/Settings/SystemSettings.tsx:264 -#: src/pages/build/BuildIndex.tsx:75 -#: src/pages/part/PartDetail.tsx:904 -#: src/pages/sales/SalesOrderDetail.tsx:421 +#: src/pages/Index/Settings/SystemSettings.tsx:270 +#: src/pages/build/BuildIndex.tsx:67 +#: src/pages/part/PartDetail.tsx:893 +#: src/pages/sales/SalesOrderDetail.tsx:422 msgid "Build Orders" msgstr "" @@ -639,39 +665,39 @@ msgstr "" msgid "Enter barcode data" msgstr "" -#: src/components/barcodes/BarcodeScanDialog.tsx:49 -#: src/components/buttons/ScanButton.tsx:15 +#: src/components/barcodes/BarcodeScanDialog.tsx:56 +#: src/components/buttons/ScanButton.tsx:27 #: src/components/nav/NavigationDrawer.tsx:122 -#: src/forms/PurchaseOrderForms.tsx:457 -#: src/forms/PurchaseOrderForms.tsx:563 +#: src/forms/PurchaseOrderForms.tsx:509 +#: src/forms/PurchaseOrderForms.tsx:615 msgid "Scan Barcode" msgstr "" -#: src/components/barcodes/BarcodeScanDialog.tsx:105 +#: src/components/barcodes/BarcodeScanDialog.tsx:121 msgid "No matching item found" msgstr "" -#: src/components/barcodes/BarcodeScanDialog.tsx:134 +#: src/components/barcodes/BarcodeScanDialog.tsx:150 msgid "Barcode does not match the expected model type" msgstr "" -#: src/components/barcodes/BarcodeScanDialog.tsx:145 +#: src/components/barcodes/BarcodeScanDialog.tsx:161 #: src/components/editors/NotesEditor.tsx:84 #: src/components/editors/NotesEditor.tsx:118 -#: src/components/forms/ApiForm.tsx:465 +#: src/components/forms/ApiForm.tsx:484 #: src/components/wizards/ImportPartWizard.tsx:566 -#: src/components/wizards/ImportPartWizard.tsx:690 +#: src/components/wizards/ImportPartWizard.tsx:691 #: src/pages/Index/Settings/AdminCenter/CurrencyManagementPanel.tsx:45 #: src/tables/bom/BomTable.tsx:548 #: src/tables/settings/PendingTasksTable.tsx:68 msgid "Success" msgstr "Edu" -#: src/components/barcodes/BarcodeScanDialog.tsx:151 +#: src/components/barcodes/BarcodeScanDialog.tsx:167 msgid "Failed to handle barcode" msgstr "" -#: src/components/barcodes/BarcodeScanDialog.tsx:167 +#: src/components/barcodes/BarcodeScanDialog.tsx:183 #: src/pages/Index/Scan.tsx:129 msgid "Failed to scan barcode" msgstr "" @@ -714,10 +740,10 @@ msgstr "" #: src/components/barcodes/QRCode.tsx:179 #: src/pages/part/PartDetail.tsx:521 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:222 -#: src/pages/sales/ReturnOrderDetail.tsx:188 -#: src/pages/sales/SalesOrderDetail.tsx:181 -#: src/pages/sales/SalesOrderShipmentDetail.tsx:122 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:223 +#: src/pages/sales/ReturnOrderDetail.tsx:189 +#: src/pages/sales/SalesOrderDetail.tsx:182 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:120 #: src/pages/stock/StockDetail.tsx:186 msgid "Link" msgstr "Link" @@ -728,7 +754,7 @@ msgstr "See eemaldab lingi seotud vöötikoodile" #: src/components/barcodes/QRCode.tsx:205 #: src/components/items/ActionDropdown.tsx:192 -#: src/forms/PurchaseOrderForms.tsx:554 +#: src/forms/PurchaseOrderForms.tsx:606 msgid "Unlink Barcode" msgstr "Linki ribakood" @@ -829,14 +855,14 @@ msgstr "" #~ msgid "Scan QR code" #~ msgstr "Scan QR code" -#: src/components/buttons/ScanButton.tsx:19 -msgid "Open Barcode Scanner" -msgstr "" - #: src/components/buttons/ScanButton.tsx:20 #~ msgid "Open QR code scanner" #~ msgstr "Open QR code scanner" +#: src/components/buttons/ScanButton.tsx:32 +msgid "Open Barcode Scanner" +msgstr "" + #: src/components/buttons/SpotlightButton.tsx:12 msgid "Open spotlight" msgstr "Ava esiletõstmine" @@ -1059,7 +1085,7 @@ msgid "Show the number of sales orders which are assigned to you" msgstr "" #: src/components/dashboard/DashboardWidgetLibrary.tsx:129 -#: src/pages/sales/SalesIndex.tsx:105 +#: src/pages/sales/SalesIndex.tsx:87 msgid "Pending Shipments" msgstr "" @@ -1210,12 +1236,18 @@ msgid "Remove the associated image from this item?" msgstr "Kas soovite eemaldada seotud pildi sellest üksusest?" #: src/components/details/DetailsImage.tsx:83 -#: src/forms/StockForms.tsx:888 +#: src/forms/StockForms.tsx:895 #: src/pages/Index/Settings/AccountSettings/MFASettings.tsx:324 #: src/pages/Index/Settings/AccountSettings/MFASettings.tsx:415 #: src/pages/Index/Settings/AccountSettings/MFASettings.tsx:884 #: src/pages/Index/Settings/AccountSettings/MFASettings.tsx:903 #: src/pages/Index/Settings/AccountSettings/SecurityContent.tsx:254 +#: src/tables/build/BuildAllocatedStockTable.tsx:178 +#: src/tables/build/BuildAllocatedStockTable.tsx:258 +#: src/tables/build/BuildLineTable.tsx:111 +#: src/tables/build/BuildLineTable.tsx:665 +#: src/tables/sales/SalesOrderAllocationTable.tsx:224 +#: src/tables/sales/SalesOrderAllocationTable.tsx:247 msgid "Remove" msgstr "Eemalda" @@ -1241,12 +1273,12 @@ msgid "Upload Error" msgstr "Üleslaadmise tõrge" #: src/components/details/DetailsImage.tsx:250 -#: src/components/forms/fields/TextField.tsx:65 +#: src/components/forms/fields/AutoFillRightSection.tsx:34 msgid "Clear" msgstr "Puhasta" #: src/components/details/DetailsImage.tsx:256 -#: src/components/forms/ApiForm.tsx:677 +#: src/components/forms/ApiForm.tsx:696 #: src/contexts/ThemeContext.tsx:44 #: src/pages/Index/Settings/AccountSettings/MFASettings.tsx:149 #: src/pages/Index/Settings/AccountSettings/MFASettings.tsx:568 @@ -1499,8 +1531,8 @@ msgstr "Serveri viga" msgid "A server error occurred" msgstr "Tekkis serveri viga" -#: src/components/forms/ApiForm.tsx:103 -#: src/components/forms/ApiForm.tsx:594 +#: src/components/forms/ApiForm.tsx:107 +#: src/components/forms/ApiForm.tsx:613 msgid "Form Error" msgstr "Vormiviga" @@ -1508,11 +1540,11 @@ msgstr "Vormiviga" #~ msgid "Form Errors Exist" #~ msgstr "Form Errors Exist" -#: src/components/forms/ApiForm.tsx:604 +#: src/components/forms/ApiForm.tsx:623 msgid "Errors exist for one or more form fields" msgstr "Ühes või mitmes vormiväljas on vigu" -#: src/components/forms/ApiForm.tsx:715 +#: src/components/forms/ApiForm.tsx:734 #: src/hooks/UseForm.tsx:133 #: src/tables/plugin/PluginListTable.tsx:204 msgid "Update" @@ -1698,15 +1730,14 @@ msgstr "Võõrustaja" #: src/components/forms/InstanceOptions.tsx:124 #: src/components/plugins/PluginDrawer.tsx:68 #: src/pages/Index/Settings/AdminCenter/UnitManagementPanel.tsx:19 -#: src/pages/part/CategoryDetail.tsx:88 +#: src/pages/part/CategoryDetail.tsx:91 #: src/pages/part/PartDetail.tsx:446 #: src/pages/stock/LocationDetail.tsx:82 #: src/tables/machine/MachineTypeTable.tsx:67 -#: src/tables/machine/MachineTypeTable.tsx:151 -#: src/tables/machine/MachineTypeTable.tsx:254 -#: src/tables/machine/MachineTypeTable.tsx:357 +#: src/tables/machine/MachineTypeTable.tsx:149 +#: src/tables/machine/MachineTypeTable.tsx:252 +#: src/tables/machine/MachineTypeTable.tsx:355 #: src/tables/plugin/PluginErrorTable.tsx:33 -#: src/tables/purchasing/ManufacturerPartParameterTable.tsx:36 #: src/tables/settings/ApiTokenTable.tsx:57 #: src/tables/settings/GroupTable.tsx:95 #: src/tables/settings/GroupTable.tsx:148 @@ -1769,7 +1800,7 @@ msgstr "" #~ msgstr "State: <0>worker ({0}), <1>plugins{1}" #: src/components/forms/InstanceOptions.tsx:118 -#: src/pages/Index/Settings/SystemSettings.tsx:45 +#: src/pages/Index/Settings/SystemSettings.tsx:46 msgid "Server" msgstr "Server" @@ -1793,6 +1824,8 @@ msgid "Plugins" msgstr "Pluginad" #: src/components/forms/InstanceOptions.tsx:143 +#: src/tables/general/ParameterTemplateTable.tsx:153 +#: src/tables/general/ParameterTemplateTable.tsx:188 #: src/tables/part/PartTestTemplateTable.tsx:117 #: src/tables/settings/TemplateTable.tsx:251 #: src/tables/settings/TemplateTable.tsx:362 @@ -1817,10 +1850,14 @@ msgstr "" msgid "Running" msgstr "" -#: src/components/forms/fields/ApiFormField.tsx:233 +#: src/components/forms/fields/ApiFormField.tsx:197 msgid "Select file to upload" msgstr "" +#: src/components/forms/fields/AutoFillRightSection.tsx:47 +msgid "Accept suggested value" +msgstr "" + #: src/components/forms/fields/DateField.tsx:76 msgid "Select date" msgstr "" @@ -1853,13 +1890,13 @@ msgstr "Vali pakk" msgid "{0} icons" msgstr "{0} ikoonid" -#: src/components/forms/fields/RelatedModelField.tsx:409 +#: src/components/forms/fields/RelatedModelField.tsx:480 #: src/components/modals/AboutInvenTreeModal.tsx:96 #: src/pages/Index/Settings/AccountSettings/SecurityContent.tsx:383 msgid "Loading" msgstr "Laadimine" -#: src/components/forms/fields/RelatedModelField.tsx:411 +#: src/components/forms/fields/RelatedModelField.tsx:482 msgid "No results found" msgstr "Tulemusi pole" @@ -1875,10 +1912,6 @@ msgstr "Sissekanded puuduvad" msgid "Add new row" msgstr "" -#: src/components/forms/fields/TextField.tsx:82 -msgid "Accept suggested value" -msgstr "" - #: src/components/images/DetailsImage.tsx:252 #~ msgid "Select image" #~ msgstr "Select image" @@ -2036,7 +2069,7 @@ msgstr "Andmed on edukalt importitud" #: src/components/importer/ImporterDrawer.tsx:109 #: src/components/modals/AboutInvenTreeModal.tsx:205 #: src/components/modals/ServerInfoModal.tsx:134 -#: src/components/wizards/ImportPartWizard.tsx:772 +#: src/components/wizards/ImportPartWizard.tsx:773 #: src/forms/BomForms.tsx:132 #: src/pages/Index/Settings/AccountSettings/MFASettings.tsx:685 msgid "Close" @@ -2199,7 +2232,7 @@ msgid "Change" msgstr "" #: src/components/items/RoleTable.tsx:150 -#: src/forms/StockForms.tsx:927 +#: src/forms/StockForms.tsx:941 #: src/tables/stock/StockItemTestResultTable.tsx:367 msgid "Add" msgstr "Lisa" @@ -2222,11 +2255,11 @@ msgstr "" #: src/components/items/TransferList.tsx:161 #: src/components/render/Stock.tsx:102 -#: src/pages/part/PartDetail.tsx:994 +#: src/pages/part/PartDetail.tsx:1009 #: src/pages/stock/StockDetail.tsx:265 #: src/pages/stock/StockDetail.tsx:942 -#: src/tables/build/BuildAllocatedStockTable.tsx:135 -#: src/tables/build/BuildLineTable.tsx:192 +#: src/tables/build/BuildAllocatedStockTable.tsx:132 +#: src/tables/build/BuildLineTable.tsx:193 #: src/tables/part/PartTable.tsx:137 #: src/tables/stock/StockItemTable.tsx:182 #: src/tables/stock/StockItemTable.tsx:343 @@ -2373,7 +2406,7 @@ msgid "Database" msgstr "Andmebaas" #: src/components/modals/ServerInfoModal.tsx:49 -#: src/components/nav/Alerts.tsx:118 +#: src/components/nav/Alerts.tsx:120 msgid "Debug Mode" msgstr "" @@ -2414,7 +2447,7 @@ msgid "Issues detected" msgstr "" #: src/components/modals/ServerInfoModal.tsx:102 -#: src/components/nav/Alerts.tsx:125 +#: src/components/nav/Alerts.tsx:127 msgid "Background Worker" msgstr "" @@ -2436,7 +2469,7 @@ msgstr "" #~ msgstr "Email settings not configured" #: src/components/modals/ServerInfoModal.tsx:120 -#: src/components/nav/Alerts.tsx:141 +#: src/components/nav/Alerts.tsx:143 msgid "Email settings not configured." msgstr "" @@ -2444,43 +2477,47 @@ msgstr "" msgid "Alerts" msgstr "" -#: src/components/nav/Alerts.tsx:120 +#: src/components/nav/Alerts.tsx:97 +msgid "No issues detected" +msgstr "" + +#: src/components/nav/Alerts.tsx:122 msgid "The server is running in debug mode." msgstr "" -#: src/components/nav/Alerts.tsx:127 +#: src/components/nav/Alerts.tsx:129 msgid "The background worker process is not running." msgstr "" -#: src/components/nav/Alerts.tsx:132 +#: src/components/nav/Alerts.tsx:134 msgid "Server Restart" msgstr "" -#: src/components/nav/Alerts.tsx:134 +#: src/components/nav/Alerts.tsx:136 msgid "The server requires a restart to apply changes." msgstr "" -#: src/components/nav/Alerts.tsx:139 +#: src/components/nav/Alerts.tsx:141 msgid "Email settings" msgstr "" -#: src/components/nav/Alerts.tsx:146 +#: src/components/nav/Alerts.tsx:148 msgid "Database Migrations" msgstr "" -#: src/components/nav/Alerts.tsx:148 +#: src/components/nav/Alerts.tsx:150 msgid "There are pending database migrations." msgstr "" -#: src/components/nav/Alerts.tsx:163 +#: src/components/nav/Alerts.tsx:165 msgid "Learn more about {code}" msgstr "" #: src/components/nav/Header.tsx:188 #: src/components/nav/NavigationDrawer.tsx:134 #: src/components/nav/NotificationDrawer.tsx:181 -#: src/pages/Index/Settings/SystemSettings.tsx:121 -#: src/pages/Index/Settings/UserSettings.tsx:106 +#: src/pages/Index/Settings/SystemSettings.tsx:122 +#: src/pages/Index/Settings/UserSettings.tsx:107 #: src/pages/Notifications.tsx:45 #: src/pages/Notifications.tsx:130 msgid "Notifications" @@ -2511,8 +2548,8 @@ msgstr "Seaded" #: src/components/nav/NavigationDrawer.tsx:140 #: src/components/nav/SettingsHeader.tsx:40 #: src/defaults/actions.tsx:92 -#: src/pages/Index/Settings/UserSettings.tsx:141 -#: src/pages/Index/Settings/UserSettings.tsx:145 +#: src/pages/Index/Settings/UserSettings.tsx:142 +#: src/pages/Index/Settings/UserSettings.tsx:146 msgid "User Settings" msgstr "Kasutaja seaded" @@ -2529,8 +2566,8 @@ msgstr "Kasutaja seaded" #: src/components/nav/NavigationDrawer.tsx:146 #: src/components/nav/SettingsHeader.tsx:41 #: src/defaults/actions.tsx:144 -#: src/pages/Index/Settings/SystemSettings.tsx:348 -#: src/pages/Index/Settings/SystemSettings.tsx:353 +#: src/pages/Index/Settings/SystemSettings.tsx:354 +#: src/pages/Index/Settings/SystemSettings.tsx:359 msgid "System Settings" msgstr "" @@ -2577,11 +2614,11 @@ msgstr "Logi välja" #: src/components/nav/NavigationDrawer.tsx:77 #: src/components/render/Part.tsx:36 -#: src/components/wizards/ImportPartWizard.tsx:807 +#: src/components/wizards/ImportPartWizard.tsx:808 #: src/defaults/links.tsx:42 #: src/forms/StockForms.tsx:794 -#: src/pages/Index/Settings/SystemSettings.tsx:224 -#: src/pages/part/PartDetail.tsx:804 +#: src/pages/Index/Settings/SystemSettings.tsx:230 +#: src/pages/part/PartDetail.tsx:793 #: src/pages/stock/LocationDetail.tsx:390 #: src/pages/stock/LocationDetail.tsx:420 #: src/pages/stock/StockDetail.tsx:642 @@ -2591,29 +2628,29 @@ msgstr "" #: src/components/nav/NavigationDrawer.tsx:84 #: src/defaults/links.tsx:48 -#: src/pages/build/BuildDetail.tsx:748 -#: src/pages/build/BuildIndex.tsx:102 +#: src/pages/build/BuildDetail.tsx:753 +#: src/pages/build/BuildIndex.tsx:101 msgid "Manufacturing" msgstr "Tootmine" #: src/components/nav/NavigationDrawer.tsx:91 #: src/defaults/links.tsx:54 #: src/pages/company/ManufacturerDetail.tsx:9 -#: src/pages/company/ManufacturerPartDetail.tsx:276 +#: src/pages/company/ManufacturerPartDetail.tsx:267 #: src/pages/company/SupplierDetail.tsx:9 -#: src/pages/company/SupplierPartDetail.tsx:360 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:553 -#: src/pages/purchasing/PurchasingIndex.tsx:122 +#: src/pages/company/SupplierPartDetail.tsx:365 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:558 +#: src/pages/purchasing/PurchasingIndex.tsx:212 msgid "Purchasing" msgstr "Ostmine" #: src/components/nav/NavigationDrawer.tsx:98 #: src/defaults/links.tsx:60 #: src/pages/company/CustomerDetail.tsx:9 -#: src/pages/sales/ReturnOrderDetail.tsx:554 -#: src/pages/sales/SalesIndex.tsx:153 -#: src/pages/sales/SalesOrderDetail.tsx:619 -#: src/pages/sales/SalesOrderShipmentDetail.tsx:480 +#: src/pages/sales/ReturnOrderDetail.tsx:559 +#: src/pages/sales/SalesIndex.tsx:168 +#: src/pages/sales/SalesOrderDetail.tsx:624 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:448 msgid "Sales" msgstr "Müük" @@ -2667,21 +2704,21 @@ msgid "Remove search group" msgstr "" #: src/components/nav/SearchDrawer.tsx:288 -#: src/pages/company/ManufacturerPartDetail.tsx:192 -#: src/pages/part/PartDetail.tsx:862 +#: src/pages/company/ManufacturerPartDetail.tsx:179 +#: src/pages/part/PartDetail.tsx:851 #: src/pages/part/PartSupplierDetail.tsx:15 -#: src/pages/purchasing/PurchasingIndex.tsx:81 +#: src/pages/purchasing/PurchasingIndex.tsx:100 msgid "Suppliers" msgstr "Tarnijaid" #: src/components/nav/SearchDrawer.tsx:298 #: src/pages/part/PartSupplierDetail.tsx:23 -#: src/pages/purchasing/PurchasingIndex.tsx:98 +#: src/pages/purchasing/PurchasingIndex.tsx:149 msgid "Manufacturers" msgstr "" #: src/components/nav/SearchDrawer.tsx:308 -#: src/pages/sales/SalesIndex.tsx:138 +#: src/pages/sales/SalesIndex.tsx:133 msgid "Customers" msgstr "Kliendid" @@ -2772,21 +2809,21 @@ msgstr "" #: src/components/plugins/PluginDrawer.tsx:73 #: src/forms/selectionListFields.tsx:102 -#: src/pages/build/BuildDetail.tsx:250 -#: src/pages/company/CompanyDetail.tsx:93 -#: src/pages/company/ManufacturerPartDetail.tsx:93 -#: src/pages/company/ManufacturerPartDetail.tsx:120 -#: src/pages/company/SupplierPartDetail.tsx:145 -#: src/pages/part/CategoryDetail.tsx:108 +#: src/pages/build/BuildDetail.tsx:251 +#: src/pages/company/CompanyDetail.tsx:94 +#: src/pages/company/ManufacturerPartDetail.tsx:92 +#: src/pages/company/ManufacturerPartDetail.tsx:119 +#: src/pages/company/SupplierPartDetail.tsx:146 +#: src/pages/part/CategoryDetail.tsx:111 #: src/pages/part/PartDetail.tsx:460 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:162 -#: src/pages/sales/ReturnOrderDetail.tsx:129 -#: src/pages/sales/SalesOrderDetail.tsx:119 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:163 +#: src/pages/sales/ReturnOrderDetail.tsx:130 +#: src/pages/sales/SalesOrderDetail.tsx:120 #: src/pages/stock/LocationDetail.tsx:102 #: src/tables/ColumnRenderers.tsx:278 -#: src/tables/build/BuildAllocatedStockTable.tsx:91 -#: src/tables/machine/MachineTypeTable.tsx:161 -#: src/tables/machine/MachineTypeTable.tsx:257 +#: src/tables/build/BuildAllocatedStockTable.tsx:88 +#: src/tables/machine/MachineTypeTable.tsx:159 +#: src/tables/machine/MachineTypeTable.tsx:255 #: src/tables/plugin/PluginListTable.tsx:110 msgid "Description" msgstr "Kirjeldus" @@ -2814,7 +2851,7 @@ msgstr "Kuupäev" #: src/tables/company/CompanyTable.tsx:91 #: src/tables/machine/MachineListTable.tsx:384 #: src/tables/machine/MachineListTable.tsx:799 -#: src/tables/part/ParametricPartTable.tsx:354 +#: src/tables/part/ParametricPartTable.tsx:19 #: src/tables/part/PartTable.tsx:197 #: src/tables/part/PartVariantTable.tsx:15 #: src/tables/plugin/PluginListTable.tsx:96 @@ -2836,8 +2873,8 @@ msgid "Installation Path" msgstr "" #: src/components/plugins/PluginDrawer.tsx:116 -#: src/tables/machine/MachineTypeTable.tsx:184 -#: src/tables/machine/MachineTypeTable.tsx:293 +#: src/tables/machine/MachineTypeTable.tsx:182 +#: src/tables/machine/MachineTypeTable.tsx:291 #: src/tables/plugin/PluginListTable.tsx:101 #: src/tables/plugin/PluginListTable.tsx:417 msgid "Builtin" @@ -2849,8 +2886,8 @@ msgstr "" #: src/components/plugins/PluginDrawer.tsx:133 #: src/pages/Index/Settings/AdminCenter/PluginManagementPanel.tsx:55 -#: src/pages/Index/Settings/SystemSettings.tsx:331 -#: src/pages/Index/Settings/UserSettings.tsx:128 +#: src/pages/Index/Settings/SystemSettings.tsx:337 +#: src/pages/Index/Settings/UserSettings.tsx:129 msgid "Plugin Settings" msgstr "" @@ -2911,7 +2948,7 @@ msgstr "" #~ msgid "Unknown model: {model}" #~ msgstr "Unknown model: {model}" -#: src/components/render/Instance.tsx:249 +#: src/components/render/Instance.tsx:247 msgid "Unknown model: {model_name}" msgstr "" @@ -2939,10 +2976,10 @@ msgstr "" #: src/components/render/Part.tsx:28 #: src/components/render/Plugin.tsx:17 #: src/components/render/User.tsx:37 -#: src/pages/company/CompanyDetail.tsx:323 -#: src/pages/company/SupplierPartDetail.tsx:373 +#: src/pages/company/CompanyDetail.tsx:328 +#: src/pages/company/SupplierPartDetail.tsx:378 #: src/pages/core/UserDetail.tsx:211 -#: src/pages/part/PartDetail.tsx:1027 +#: src/pages/part/PartDetail.tsx:1048 #: src/tables/ColumnRenderers.tsx:410 msgid "Inactive" msgstr "Mitteaktiivne" @@ -2962,11 +2999,11 @@ msgstr "" #: src/components/render/Part.tsx:47 #: src/components/wizards/OrderPartsWizard.tsx:135 -#: src/pages/company/SupplierPartDetail.tsx:197 -#: src/pages/company/SupplierPartDetail.tsx:394 -#: src/pages/part/PartDetail.tsx:1015 +#: src/pages/company/SupplierPartDetail.tsx:198 +#: src/pages/company/SupplierPartDetail.tsx:399 +#: src/pages/part/PartDetail.tsx:1030 #: src/tables/bom/BomTable.tsx:444 -#: src/tables/build/BuildLineTable.tsx:222 +#: src/tables/build/BuildLineTable.tsx:223 #: src/tables/part/PartTable.tsx:108 msgid "On Order" msgstr "" @@ -2974,9 +3011,9 @@ msgstr "" #: src/components/render/Part.tsx:55 #: src/components/wizards/OrderPartsWizard.tsx:141 #: src/pages/part/PartDetail.tsx:587 -#: src/pages/part/PartDetail.tsx:1021 +#: src/pages/part/PartDetail.tsx:1036 #: src/pages/stock/StockDetail.tsx:925 -#: src/tables/part/PartTestResultTable.tsx:297 +#: src/tables/part/PartTestResultTable.tsx:305 #: src/tables/stock/StockItemTable.tsx:359 msgid "In Production" msgstr "" @@ -2987,7 +3024,7 @@ msgid "Details" msgstr "Üksikasjad" #: src/components/render/Part.tsx:112 -#: src/components/wizards/ImportPartWizard.tsx:806 +#: src/components/wizards/ImportPartWizard.tsx:807 #: src/pages/part/PartDetail.tsx:487 #: src/tables/ColumnRenderers.tsx:233 #: src/tables/ColumnRenderers.tsx:242 @@ -3000,16 +3037,16 @@ msgstr "Kategooria" #: src/components/render/Stock.tsx:114 #: src/components/render/Stock.tsx:132 #: src/forms/BuildForms.tsx:795 -#: src/forms/PurchaseOrderForms.tsx:595 +#: src/forms/PurchaseOrderForms.tsx:647 #: src/forms/StockForms.tsx:792 #: src/forms/StockForms.tsx:839 -#: src/forms/StockForms.tsx:885 -#: src/forms/StockForms.tsx:924 -#: src/forms/StockForms.tsx:960 -#: src/forms/StockForms.tsx:1003 -#: src/forms/StockForms.tsx:1047 -#: src/forms/StockForms.tsx:1095 -#: src/forms/StockForms.tsx:1139 +#: src/forms/StockForms.tsx:892 +#: src/forms/StockForms.tsx:938 +#: src/forms/StockForms.tsx:976 +#: src/forms/StockForms.tsx:1019 +#: src/forms/StockForms.tsx:1063 +#: src/forms/StockForms.tsx:1111 +#: src/forms/StockForms.tsx:1155 #: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:88 #: src/pages/core/UserDetail.tsx:158 #: src/pages/stock/StockDetail.tsx:298 @@ -3023,7 +3060,7 @@ msgstr "Asukoht" #: src/components/render/Stock.tsx:99 #: src/pages/stock/StockDetail.tsx:198 #: src/pages/stock/StockDetail.tsx:930 -#: src/tables/build/BuildAllocatedStockTable.tsx:121 +#: src/tables/build/BuildAllocatedStockTable.tsx:118 #: src/tables/build/BuildOutputTable.tsx:107 #: src/tables/sales/SalesOrderAllocationTable.tsx:142 msgid "Serial Number" @@ -3034,9 +3071,9 @@ msgstr "Seerianumber" #: src/forms/BuildForms.tsx:240 #: src/forms/BuildForms.tsx:634 #: src/forms/BuildForms.tsx:797 -#: src/forms/PurchaseOrderForms.tsx:801 +#: src/forms/PurchaseOrderForms.tsx:853 #: src/forms/ReturnOrderForms.tsx:243 -#: src/forms/SalesOrderForms.tsx:308 +#: src/forms/SalesOrderForms.tsx:387 #: src/forms/StockForms.tsx:841 #: src/pages/part/PartStockHistoryDetail.tsx:56 #: src/pages/part/PartStockHistoryDetail.tsx:210 @@ -3046,9 +3083,9 @@ msgstr "Seerianumber" #: src/pages/part/pricing/PriceBreakPanel.tsx:172 #: src/pages/stock/StockDetail.tsx:258 #: src/pages/stock/StockDetail.tsx:936 -#: src/tables/build/BuildLineTable.tsx:86 +#: src/tables/build/BuildLineTable.tsx:83 #: src/tables/part/PartPurchaseOrdersTable.tsx:94 -#: src/tables/part/PartTestResultTable.tsx:269 +#: src/tables/part/PartTestResultTable.tsx:277 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:175 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:206 #: src/tables/purchasing/SupplierPriceBreakTable.tsx:69 @@ -3063,14 +3100,14 @@ msgstr "Kogus" #: src/forms/BuildForms.tsx:474 #: src/forms/StockForms.tsx:793 #: src/forms/StockForms.tsx:840 -#: src/forms/StockForms.tsx:886 -#: src/forms/StockForms.tsx:925 -#: src/forms/StockForms.tsx:961 -#: src/forms/StockForms.tsx:1004 -#: src/forms/StockForms.tsx:1048 -#: src/forms/StockForms.tsx:1096 -#: src/forms/StockForms.tsx:1140 -#: src/tables/build/BuildLineTable.tsx:96 +#: src/forms/StockForms.tsx:893 +#: src/forms/StockForms.tsx:939 +#: src/forms/StockForms.tsx:977 +#: src/forms/StockForms.tsx:1020 +#: src/forms/StockForms.tsx:1064 +#: src/forms/StockForms.tsx:1112 +#: src/forms/StockForms.tsx:1156 +#: src/tables/build/BuildLineTable.tsx:93 msgid "Batch" msgstr "" @@ -3306,10 +3343,6 @@ msgstr "" #~ msgid "Part category updated" #~ msgstr "Part category updated" -#: src/components/tables/part/PartParameterTable.tsx:41 -#~ msgid "Parameter" -#~ msgstr "Parameter" - #: src/components/tables/part/PartParameterTable.tsx:114 #~ msgid "Part parameter updated" #~ msgstr "Part parameter updated" @@ -3571,15 +3604,16 @@ msgid "Already Imported" msgstr "" #: src/components/wizards/ImportPartWizard.tsx:205 -#: src/pages/company/CompanyDetail.tsx:136 +#: src/pages/company/CompanyDetail.tsx:137 #: src/pages/company/SupplierDetail.tsx:8 -#: src/pages/company/SupplierPartDetail.tsx:130 -#: src/pages/company/SupplierPartDetail.tsx:235 -#: src/pages/company/SupplierPartDetail.tsx:364 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:156 +#: src/pages/company/SupplierPartDetail.tsx:131 +#: src/pages/company/SupplierPartDetail.tsx:236 +#: src/pages/company/SupplierPartDetail.tsx:369 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:157 #: src/tables/Filter.tsx:360 #: src/tables/company/CompanyTable.tsx:96 #: src/tables/part/PartPurchaseOrdersTable.tsx:43 +#: src/tables/purchasing/PurchaseOrderParametricTable.tsx:34 #: src/tables/purchasing/PurchaseOrderTable.tsx:109 #: src/tables/purchasing/SupplierPriceBreakTable.tsx:40 msgid "Supplier" @@ -3648,7 +3682,7 @@ msgid "Next" msgstr "" #: src/components/wizards/ImportPartWizard.tsx:540 -#: src/pages/part/PartDetail.tsx:1046 +#: src/pages/part/PartDetail.tsx:1067 #: src/tables/part/PartTable.tsx:408 msgid "Edit Part" msgstr "Muuda osa" @@ -3669,28 +3703,28 @@ msgstr "" msgid "Import" msgstr "" -#: src/components/wizards/ImportPartWizard.tsx:691 +#: src/components/wizards/ImportPartWizard.tsx:692 msgid "Parameters created successfully!" msgstr "" -#: src/components/wizards/ImportPartWizard.tsx:719 +#: src/components/wizards/ImportPartWizard.tsx:720 msgid "Failed to create parameters, please fix the errors and try again" msgstr "" #. placeholder {0}: supplierPart?.supplier -#: src/components/wizards/ImportPartWizard.tsx:739 +#: src/components/wizards/ImportPartWizard.tsx:740 msgid "Part imported successfully from supplier {0}." msgstr "" -#: src/components/wizards/ImportPartWizard.tsx:752 +#: src/components/wizards/ImportPartWizard.tsx:753 msgid "Open Part" msgstr "" -#: src/components/wizards/ImportPartWizard.tsx:759 +#: src/components/wizards/ImportPartWizard.tsx:760 msgid "Open Supplier Part" msgstr "" -#: src/components/wizards/ImportPartWizard.tsx:766 +#: src/components/wizards/ImportPartWizard.tsx:767 msgid "Open Manufacturer Part" msgstr "" @@ -3699,25 +3733,19 @@ msgstr "" #~ msgid "Import Part" #~ msgstr "Import Part" -#: src/components/wizards/ImportPartWizard.tsx:802 +#: src/components/wizards/ImportPartWizard.tsx:803 msgid "Import Supplier Part" msgstr "" -#: src/components/wizards/ImportPartWizard.tsx:804 +#: src/components/wizards/ImportPartWizard.tsx:805 msgid "Search Supplier Part" msgstr "" -#: src/components/wizards/ImportPartWizard.tsx:806 -#: src/pages/company/ManufacturerPartDetail.tsx:166 -#: src/pages/part/PartDetail.tsx:793 -msgid "Parameters" -msgstr "Parameetrid" - -#: src/components/wizards/ImportPartWizard.tsx:806 +#: src/components/wizards/ImportPartWizard.tsx:807 msgid "Confirm import" msgstr "" -#: src/components/wizards/ImportPartWizard.tsx:808 +#: src/components/wizards/ImportPartWizard.tsx:809 msgid "Done" msgstr "" @@ -3738,24 +3766,24 @@ msgid "Sales Requirements" msgstr "" #: src/components/wizards/OrderPartsWizard.tsx:129 -#: src/forms/StockForms.tsx:887 -#: src/forms/StockForms.tsx:926 -#: src/forms/StockForms.tsx:962 -#: src/forms/StockForms.tsx:1005 -#: src/forms/StockForms.tsx:1049 -#: src/forms/StockForms.tsx:1097 -#: src/forms/StockForms.tsx:1141 -#: src/pages/company/SupplierPartDetail.tsx:190 -#: src/pages/company/SupplierPartDetail.tsx:378 +#: src/forms/StockForms.tsx:894 +#: src/forms/StockForms.tsx:940 +#: src/forms/StockForms.tsx:978 +#: src/forms/StockForms.tsx:1021 +#: src/forms/StockForms.tsx:1065 +#: src/forms/StockForms.tsx:1113 +#: src/forms/StockForms.tsx:1157 +#: src/pages/company/SupplierPartDetail.tsx:191 +#: src/pages/company/SupplierPartDetail.tsx:383 #: src/pages/part/PartDetail.tsx:534 -#: src/pages/part/PartDetail.tsx:984 +#: src/pages/part/PartDetail.tsx:999 #: src/tables/Filter.tsx:92 #: src/tables/purchasing/SupplierPartTable.tsx:230 msgid "In Stock" msgstr "Laos" #: src/components/wizards/OrderPartsWizard.tsx:146 -#: src/tables/build/BuildLineTable.tsx:404 +#: src/tables/build/BuildLineTable.tsx:405 msgid "Required Quantity" msgstr "" @@ -3847,7 +3875,7 @@ msgid "Please correct the errors in the selected parts" msgstr "" #: src/components/wizards/OrderPartsWizard.tsx:587 -#: src/tables/build/BuildLineTable.tsx:815 +#: src/tables/build/BuildLineTable.tsx:822 #: src/tables/part/PartTable.tsx:522 #: src/tables/sales/SalesOrderLineItemTable.tsx:370 msgid "Order Parts" @@ -4349,9 +4377,9 @@ msgstr "" #: src/forms/BuildForms.tsx:333 #: src/forms/BuildForms.tsx:408 #: src/forms/BuildForms.tsx:685 -#: src/tables/build/BuildAllocatedStockTable.tsx:150 +#: src/tables/build/BuildAllocatedStockTable.tsx:147 #: src/tables/build/BuildOutputTable.tsx:582 -#: src/tables/part/PartTestResultTable.tsx:272 +#: src/tables/part/PartTestResultTable.tsx:280 msgid "Build Output" msgstr "" @@ -4362,22 +4390,22 @@ msgstr "" #: src/forms/BuildForms.tsx:336 #: src/forms/BuildForms.tsx:411 #: src/forms/BuildForms.tsx:475 -#: src/forms/PurchaseOrderForms.tsx:717 +#: src/forms/PurchaseOrderForms.tsx:769 #: src/forms/ReturnOrderForms.tsx:197 #: src/forms/ReturnOrderForms.tsx:244 #: src/forms/StockForms.tsx:712 #: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:87 -#: src/pages/build/BuildDetail.tsx:222 +#: src/pages/build/BuildDetail.tsx:223 #: src/pages/core/UserDetail.tsx:151 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:168 -#: src/pages/sales/ReturnOrderDetail.tsx:135 -#: src/pages/sales/SalesOrderDetail.tsx:125 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:169 +#: src/pages/sales/ReturnOrderDetail.tsx:136 +#: src/pages/sales/SalesOrderDetail.tsx:126 #: src/pages/stock/StockDetail.tsx:170 #: src/tables/Filter.tsx:274 #: src/tables/build/BuildOutputTable.tsx:404 #: src/tables/machine/MachineListTable.tsx:387 #: src/tables/part/PartPurchaseOrdersTable.tsx:38 -#: src/tables/part/PartTestResultTable.tsx:309 +#: src/tables/part/PartTestResultTable.tsx:317 #: src/tables/sales/ReturnOrderLineItemTable.tsx:138 #: src/tables/sales/ReturnOrderLineItemTable.tsx:176 #: src/tables/settings/CustomStateTable.tsx:79 @@ -4443,18 +4471,19 @@ msgid "Build outputs have been cancelled" msgstr "Ehitustulemused on tühistatud" #: src/forms/BuildForms.tsx:631 -#: src/pages/build/BuildDetail.tsx:207 -#: src/pages/company/ManufacturerPartDetail.tsx:85 -#: src/pages/company/SupplierPartDetail.tsx:96 +#: src/pages/build/BuildDetail.tsx:208 +#: src/pages/company/ManufacturerPartDetail.tsx:84 +#: src/pages/company/SupplierPartDetail.tsx:97 #: src/pages/part/PartDetail.tsx:453 #: src/pages/stock/StockDetail.tsx:153 #: src/tables/bom/BomTable.tsx:134 #: src/tables/bom/UsedInTable.tsx:40 -#: src/tables/build/BuildAllocatedStockTable.tsx:108 -#: src/tables/build/BuildLineTable.tsx:336 +#: src/tables/build/BuildAllocatedStockTable.tsx:105 +#: src/tables/build/BuildLineTable.tsx:337 #: src/tables/build/BuildOrderTable.tsx:79 #: src/tables/part/PartSalesAllocationsTable.tsx:61 #: src/tables/part/RelatedPartTable.tsx:73 +#: src/tables/purchasing/ManufacturerPartParametricTable.tsx:21 #: src/tables/purchasing/ManufacturerPartTable.tsx:69 #: src/tables/purchasing/SupplierPartTable.tsx:70 #: src/tables/sales/SalesOrderAllocationTable.tsx:135 @@ -4466,47 +4495,47 @@ msgstr "IPN" #: src/forms/BuildForms.tsx:632 #: src/forms/BuildForms.tsx:796 #: src/forms/BuildForms.tsx:897 -#: src/forms/SalesOrderForms.tsx:306 -#: src/tables/build/BuildAllocatedStockTable.tsx:139 -#: src/tables/build/BuildLineTable.tsx:182 +#: src/forms/SalesOrderForms.tsx:385 +#: src/tables/build/BuildAllocatedStockTable.tsx:136 +#: src/tables/build/BuildLineTable.tsx:183 #: src/tables/sales/SalesOrderLineItemTable.tsx:342 #: src/tables/stock/StockItemTable.tsx:338 msgid "Allocated" msgstr "Eraldatud" #: src/forms/BuildForms.tsx:667 -#: src/forms/SalesOrderForms.tsx:295 -#: src/pages/build/BuildDetail.tsx:108 -#: src/pages/build/BuildDetail.tsx:326 +#: src/forms/SalesOrderForms.tsx:374 +#: src/pages/build/BuildDetail.tsx:109 +#: src/pages/build/BuildDetail.tsx:327 msgid "Source Location" msgstr "" #: src/forms/BuildForms.tsx:668 -#: src/forms/SalesOrderForms.tsx:296 +#: src/forms/SalesOrderForms.tsx:375 msgid "Select the source location for the stock allocation" msgstr "Valige laoseisu eraldamise alguskoht" #: src/forms/BuildForms.tsx:700 -#: src/forms/SalesOrderForms.tsx:336 -#: src/tables/build/BuildLineTable.tsx:574 -#: src/tables/build/BuildLineTable.tsx:731 -#: src/tables/build/BuildLineTable.tsx:830 +#: src/forms/SalesOrderForms.tsx:415 +#: src/tables/build/BuildLineTable.tsx:575 +#: src/tables/build/BuildLineTable.tsx:738 +#: src/tables/build/BuildLineTable.tsx:837 #: src/tables/sales/SalesOrderLineItemTable.tsx:380 #: src/tables/sales/SalesOrderLineItemTable.tsx:406 msgid "Allocate Stock" msgstr "" #: src/forms/BuildForms.tsx:703 -#: src/forms/SalesOrderForms.tsx:341 +#: src/forms/SalesOrderForms.tsx:420 msgid "Stock items allocated" msgstr "Selle plugina jaoks ei ole sisu esitatud" #: src/forms/BuildForms.tsx:816 #: src/forms/BuildForms.tsx:917 -#: src/tables/build/BuildAllocatedStockTable.tsx:240 -#: src/tables/build/BuildAllocatedStockTable.tsx:272 -#: src/tables/build/BuildLineTable.tsx:741 -#: src/tables/build/BuildLineTable.tsx:864 +#: src/tables/build/BuildAllocatedStockTable.tsx:243 +#: src/tables/build/BuildAllocatedStockTable.tsx:279 +#: src/tables/build/BuildLineTable.tsx:748 +#: src/tables/build/BuildLineTable.tsx:871 msgid "Consume Stock" msgstr "" @@ -4521,21 +4550,21 @@ msgstr "" #~ msgstr "Stock items consumed" #: src/forms/BuildForms.tsx:853 -#: src/tables/build/BuildLineTable.tsx:514 +#: src/tables/build/BuildLineTable.tsx:515 #: src/tables/part/PartBuildAllocationsTable.tsx:101 msgid "Fully consumed" msgstr "" #: src/forms/BuildForms.tsx:898 -#: src/tables/build/BuildLineTable.tsx:187 +#: src/tables/build/BuildLineTable.tsx:188 #: src/tables/stock/StockItemTable.tsx:367 msgid "Consumed" msgstr "" -#: src/forms/CommonForms.tsx:88 -#: src/forms/PurchaseOrderForms.tsx:125 +#: src/forms/CommonForms.tsx:92 +#: src/forms/PurchaseOrderForms.tsx:176 #: src/forms/ReturnOrderForms.tsx:138 -#: src/forms/SalesOrderForms.tsx:164 +#: src/forms/SalesOrderForms.tsx:185 msgid "Select project code for this line item" msgstr "" @@ -4543,16 +4572,16 @@ msgstr "" #~ msgid "Company updated" #~ msgstr "Company updated" -#: src/forms/PartForms.tsx:85 -#: src/forms/PartForms.tsx:207 -#: src/pages/part/CategoryDetail.tsx:124 +#: src/forms/PartForms.tsx:99 +#: src/forms/PartForms.tsx:228 +#: src/pages/part/CategoryDetail.tsx:127 #: src/pages/part/PartDetail.tsx:668 #: src/tables/part/PartCategoryTable.tsx:94 #: src/tables/part/PartTable.tsx:325 msgid "Subscribed" msgstr "" -#: src/forms/PartForms.tsx:86 +#: src/forms/PartForms.tsx:100 msgid "Subscribe to notifications for this part" msgstr "" @@ -4564,156 +4593,156 @@ msgstr "" #~ msgid "Part updated" #~ msgstr "Part updated" -#: src/forms/PartForms.tsx:193 +#: src/forms/PartForms.tsx:214 msgid "Parent part category" msgstr "" -#: src/forms/PartForms.tsx:208 +#: src/forms/PartForms.tsx:229 msgid "Subscribe to notifications for this category" msgstr "" -#: src/forms/PurchaseOrderForms.tsx:388 -msgid "Assign Batch Code and Serial Numbers" -msgstr "" - -#: src/forms/PurchaseOrderForms.tsx:390 -msgid "Assign Batch Code" -msgstr "" - -#: src/forms/PurchaseOrderForms.tsx:410 -msgid "Choose Location" -msgstr "Vali asukoht" - -#: src/forms/PurchaseOrderForms.tsx:418 -msgid "Item Destination selected" -msgstr "" - #: src/forms/PurchaseOrderForms.tsx:421 #~ msgid "Assign Batch Code{0}" #~ msgstr "Assign Batch Code{0}" -#: src/forms/PurchaseOrderForms.tsx:428 -msgid "Part category default location selected" -msgstr "Osakategooria vaikimisi asukoht valitud" +#: src/forms/PurchaseOrderForms.tsx:440 +msgid "Assign Batch Code and Serial Numbers" +msgstr "" -#: src/forms/PurchaseOrderForms.tsx:438 -msgid "Received stock location selected" -msgstr "Kättesaadud varude asukoha valitud" +#: src/forms/PurchaseOrderForms.tsx:442 +msgid "Assign Batch Code" +msgstr "" #: src/forms/PurchaseOrderForms.tsx:444 #: src/forms/StockForms.tsx:428 #~ msgid "Remove item from list" #~ msgstr "Remove item from list" -#: src/forms/PurchaseOrderForms.tsx:446 +#: src/forms/PurchaseOrderForms.tsx:462 +msgid "Choose Location" +msgstr "Vali asukoht" + +#: src/forms/PurchaseOrderForms.tsx:470 +msgid "Item Destination selected" +msgstr "" + +#: src/forms/PurchaseOrderForms.tsx:480 +msgid "Part category default location selected" +msgstr "Osakategooria vaikimisi asukoht valitud" + +#: src/forms/PurchaseOrderForms.tsx:490 +msgid "Received stock location selected" +msgstr "Kättesaadud varude asukoha valitud" + +#: src/forms/PurchaseOrderForms.tsx:498 msgid "Default location selected" msgstr "" -#: src/forms/PurchaseOrderForms.tsx:507 +#: src/forms/PurchaseOrderForms.tsx:559 msgid "Set Location" msgstr "" -#: src/forms/PurchaseOrderForms.tsx:524 -msgid "Set Expiry Date" -msgstr "" - -#: src/forms/PurchaseOrderForms.tsx:532 -#: src/forms/StockForms.tsx:693 -msgid "Adjust Packaging" -msgstr "" - -#: src/forms/PurchaseOrderForms.tsx:540 -#: src/forms/StockForms.tsx:684 -#: src/hooks/UseStockAdjustActions.tsx:148 -msgid "Change Status" -msgstr "Muuda staatust" - -#: src/forms/PurchaseOrderForms.tsx:546 -msgid "Add Note" -msgstr "Lisa märkus" - #: src/forms/PurchaseOrderForms.tsx:566 #~ msgid "Serial numbers" #~ msgstr "Serial numbers" +#: src/forms/PurchaseOrderForms.tsx:576 +msgid "Set Expiry Date" +msgstr "" + #: src/forms/PurchaseOrderForms.tsx:582 #~ msgid "Store at line item destination" #~ msgstr "Store at line item destination" -#: src/forms/PurchaseOrderForms.tsx:610 -msgid "Store at default location" +#: src/forms/PurchaseOrderForms.tsx:584 +#: src/forms/StockForms.tsx:693 +msgid "Adjust Packaging" msgstr "" -#: src/forms/PurchaseOrderForms.tsx:625 -msgid "Store at line item destination " -msgstr "" +#: src/forms/PurchaseOrderForms.tsx:592 +#: src/forms/StockForms.tsx:684 +#: src/hooks/UseStockAdjustActions.tsx:148 +msgid "Change Status" +msgstr "Muuda staatust" -#: src/forms/PurchaseOrderForms.tsx:637 -msgid "Store with already received stock" -msgstr "Pood juba saadud varudega" +#: src/forms/PurchaseOrderForms.tsx:598 +msgid "Add Note" +msgstr "Lisa märkus" #: src/forms/PurchaseOrderForms.tsx:658 #~ msgid "Receive line items" #~ msgstr "Receive line items" -#: src/forms/PurchaseOrderForms.tsx:661 -#: src/pages/build/BuildDetail.tsx:340 +#: src/forms/PurchaseOrderForms.tsx:662 +msgid "Store at default location" +msgstr "" + +#: src/forms/PurchaseOrderForms.tsx:677 +msgid "Store at line item destination " +msgstr "" + +#: src/forms/PurchaseOrderForms.tsx:689 +msgid "Store with already received stock" +msgstr "Pood juba saadud varudega" + +#: src/forms/PurchaseOrderForms.tsx:713 +#: src/pages/build/BuildDetail.tsx:341 #: src/pages/stock/StockDetail.tsx:280 #: src/pages/stock/StockDetail.tsx:952 #: src/tables/Filter.tsx:83 -#: src/tables/build/BuildAllocatedStockTable.tsx:128 +#: src/tables/build/BuildAllocatedStockTable.tsx:125 #: src/tables/build/BuildOutputTable.tsx:112 -#: src/tables/part/PartTestResultTable.tsx:260 -#: src/tables/part/PartTestResultTable.tsx:281 +#: src/tables/part/PartTestResultTable.tsx:268 +#: src/tables/part/PartTestResultTable.tsx:289 #: src/tables/sales/SalesOrderAllocationTable.tsx:149 msgid "Batch Code" msgstr "" -#: src/forms/PurchaseOrderForms.tsx:662 +#: src/forms/PurchaseOrderForms.tsx:714 msgid "Enter batch code for received items" msgstr "" -#: src/forms/PurchaseOrderForms.tsx:675 +#: src/forms/PurchaseOrderForms.tsx:727 #: src/forms/StockForms.tsx:218 msgid "Serial Numbers" msgstr "" -#: src/forms/PurchaseOrderForms.tsx:676 +#: src/forms/PurchaseOrderForms.tsx:728 msgid "Enter serial numbers for received items" msgstr "" -#: src/forms/PurchaseOrderForms.tsx:690 +#: src/forms/PurchaseOrderForms.tsx:742 #: src/pages/stock/StockDetail.tsx:382 #: src/tables/stock/StockItemTable.tsx:294 msgid "Expiry Date" msgstr "" -#: src/forms/PurchaseOrderForms.tsx:691 +#: src/forms/PurchaseOrderForms.tsx:743 msgid "Enter an expiry date for received items" msgstr "" -#: src/forms/PurchaseOrderForms.tsx:703 +#: src/forms/PurchaseOrderForms.tsx:755 #: src/forms/StockForms.tsx:728 -#: src/pages/company/SupplierPartDetail.tsx:172 -#: src/pages/company/SupplierPartDetail.tsx:236 +#: src/pages/company/SupplierPartDetail.tsx:173 +#: src/pages/company/SupplierPartDetail.tsx:237 #: src/pages/stock/StockDetail.tsx:419 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:227 msgid "Packaging" msgstr "Pakkimine" -#: src/forms/PurchaseOrderForms.tsx:727 -#: src/pages/company/SupplierPartDetail.tsx:120 +#: src/forms/PurchaseOrderForms.tsx:779 +#: src/pages/company/SupplierPartDetail.tsx:121 #: src/tables/ColumnRenderers.tsx:332 msgid "Note" msgstr "Märkus" -#: src/forms/PurchaseOrderForms.tsx:799 -#: src/pages/company/SupplierPartDetail.tsx:138 +#: src/forms/PurchaseOrderForms.tsx:851 +#: src/pages/company/SupplierPartDetail.tsx:139 #: src/tables/purchasing/SupplierPriceBreakTable.tsx:49 msgid "SKU" msgstr "Tootekood" -#: src/forms/PurchaseOrderForms.tsx:800 +#: src/forms/PurchaseOrderForms.tsx:852 #: src/tables/part/PartPurchaseOrdersTable.tsx:127 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:213 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:283 @@ -4721,11 +4750,11 @@ msgstr "Tootekood" msgid "Received" msgstr "" -#: src/forms/PurchaseOrderForms.tsx:817 +#: src/forms/PurchaseOrderForms.tsx:869 msgid "Receive Line Items" msgstr "" -#: src/forms/PurchaseOrderForms.tsx:823 +#: src/forms/PurchaseOrderForms.tsx:875 msgid "Items received" msgstr "" @@ -4737,7 +4766,35 @@ msgstr "" msgid "Item received into stock" msgstr "Üksus on laoseisu vastu võetud" -#: src/forms/SalesOrderForms.tsx:401 +#: src/forms/SalesOrderForms.tsx:208 +#: src/forms/SalesOrderForms.tsx:210 +#: src/tables/sales/SalesOrderShipmentTable.tsx:215 +msgid "Check Shipment" +msgstr "" + +#: src/forms/SalesOrderForms.tsx:211 +msgid "Marking the shipment as checked indicates that you have verified that all items included in this shipment are correct" +msgstr "" + +#: src/forms/SalesOrderForms.tsx:221 +msgid "Shipment marked as checked" +msgstr "" + +#: src/forms/SalesOrderForms.tsx:236 +#: src/forms/SalesOrderForms.tsx:238 +#: src/tables/sales/SalesOrderShipmentTable.tsx:228 +msgid "Uncheck Shipment" +msgstr "" + +#: src/forms/SalesOrderForms.tsx:239 +msgid "Marking the shipment as unchecked indicates that the shipment requires further verification" +msgstr "" + +#: src/forms/SalesOrderForms.tsx:249 +msgid "Shipment marked as unchecked" +msgstr "" + +#: src/forms/SalesOrderForms.tsx:480 msgid "Leave blank to use the order address" msgstr "" @@ -4792,150 +4849,150 @@ msgstr "Liiguta" msgid "Return" msgstr "" -#: src/forms/StockForms.tsx:963 +#: src/forms/StockForms.tsx:979 #: src/pages/Index/Scan.tsx:182 msgid "Count" msgstr "Kogus" -#: src/forms/StockForms.tsx:1246 +#: src/forms/StockForms.tsx:1262 #: src/hooks/UseStockAdjustActions.tsx:108 msgid "Add Stock" msgstr "" -#: src/forms/StockForms.tsx:1247 +#: src/forms/StockForms.tsx:1263 msgid "Stock added" msgstr "" -#: src/forms/StockForms.tsx:1250 +#: src/forms/StockForms.tsx:1266 msgid "Increase the quantity of the selected stock items by a given amount." msgstr "" -#: src/forms/StockForms.tsx:1261 +#: src/forms/StockForms.tsx:1277 #: src/hooks/UseStockAdjustActions.tsx:118 msgid "Remove Stock" msgstr "" -#: src/forms/StockForms.tsx:1262 +#: src/forms/StockForms.tsx:1278 msgid "Stock removed" msgstr "" -#: src/forms/StockForms.tsx:1265 +#: src/forms/StockForms.tsx:1281 msgid "Decrease the quantity of the selected stock items by a given amount." msgstr "" -#: src/forms/StockForms.tsx:1276 +#: src/forms/StockForms.tsx:1292 #: src/hooks/UseStockAdjustActions.tsx:128 msgid "Transfer Stock" msgstr "" -#: src/forms/StockForms.tsx:1277 +#: src/forms/StockForms.tsx:1293 msgid "Stock transferred" msgstr "" -#: src/forms/StockForms.tsx:1280 +#: src/forms/StockForms.tsx:1296 msgid "Transfer selected items to the specified location." msgstr "" -#: src/forms/StockForms.tsx:1291 +#: src/forms/StockForms.tsx:1307 #: src/hooks/UseStockAdjustActions.tsx:168 msgid "Return Stock" msgstr "" -#: src/forms/StockForms.tsx:1292 +#: src/forms/StockForms.tsx:1308 msgid "Stock returned" msgstr "" -#: src/forms/StockForms.tsx:1295 +#: src/forms/StockForms.tsx:1311 msgid "Return selected items into stock, to the specified location." msgstr "" -#: src/forms/StockForms.tsx:1306 +#: src/forms/StockForms.tsx:1322 #: src/hooks/UseStockAdjustActions.tsx:98 msgid "Count Stock" msgstr "" -#: src/forms/StockForms.tsx:1307 +#: src/forms/StockForms.tsx:1323 msgid "Stock counted" msgstr "" -#: src/forms/StockForms.tsx:1310 +#: src/forms/StockForms.tsx:1326 msgid "Count the selected stock items, and adjust the quantity accordingly." msgstr "" -#: src/forms/StockForms.tsx:1321 +#: src/forms/StockForms.tsx:1337 msgid "Change Stock Status" msgstr "" -#: src/forms/StockForms.tsx:1322 +#: src/forms/StockForms.tsx:1338 msgid "Stock status changed" msgstr "" -#: src/forms/StockForms.tsx:1325 +#: src/forms/StockForms.tsx:1341 msgid "Change the status of the selected stock items." msgstr "" -#: src/forms/StockForms.tsx:1336 +#: src/forms/StockForms.tsx:1352 #: src/hooks/UseStockAdjustActions.tsx:138 msgid "Merge Stock" msgstr "" -#: src/forms/StockForms.tsx:1337 +#: src/forms/StockForms.tsx:1353 msgid "Stock merged" msgstr "" -#: src/forms/StockForms.tsx:1339 +#: src/forms/StockForms.tsx:1355 msgid "Merge Stock Items" msgstr "" -#: src/forms/StockForms.tsx:1341 +#: src/forms/StockForms.tsx:1357 msgid "Merge operation cannot be reversed" msgstr "" -#: src/forms/StockForms.tsx:1342 +#: src/forms/StockForms.tsx:1358 msgid "Tracking information may be lost when merging items" msgstr "" -#: src/forms/StockForms.tsx:1343 +#: src/forms/StockForms.tsx:1359 msgid "Supplier information may be lost when merging items" msgstr "" -#: src/forms/StockForms.tsx:1361 +#: src/forms/StockForms.tsx:1377 msgid "Assign Stock to Customer" msgstr "" -#: src/forms/StockForms.tsx:1362 +#: src/forms/StockForms.tsx:1378 msgid "Stock assigned to customer" msgstr "" -#: src/forms/StockForms.tsx:1372 +#: src/forms/StockForms.tsx:1388 msgid "Delete Stock Items" msgstr "" -#: src/forms/StockForms.tsx:1373 +#: src/forms/StockForms.tsx:1389 msgid "Stock deleted" msgstr "" -#: src/forms/StockForms.tsx:1376 +#: src/forms/StockForms.tsx:1392 msgid "This operation will permanently delete the selected stock items." msgstr "" -#: src/forms/StockForms.tsx:1385 +#: src/forms/StockForms.tsx:1401 msgid "Parent stock location" msgstr "" -#: src/forms/StockForms.tsx:1512 +#: src/forms/StockForms.tsx:1528 msgid "Find Serial Number" msgstr "" -#: src/forms/StockForms.tsx:1523 +#: src/forms/StockForms.tsx:1539 msgid "No matching items" msgstr "" -#: src/forms/StockForms.tsx:1529 +#: src/forms/StockForms.tsx:1545 msgid "Multiple matching items" msgstr "" -#: src/forms/StockForms.tsx:1538 +#: src/forms/StockForms.tsx:1554 msgid "Invalid response from server" msgstr "" @@ -4953,7 +5010,6 @@ msgstr "" #: src/tables/FilterSelectDrawer.tsx:137 #: src/tables/FilterSelectDrawer.tsx:149 #: src/tables/part/PartTestResultTable.tsx:206 -#: src/tables/purchasing/ManufacturerPartParameterTable.tsx:42 #: src/tables/stock/StockItemTestResultTable.tsx:207 msgid "Value" msgstr "Väärtus" @@ -5244,7 +5300,7 @@ msgid "Delete selected stock items" msgstr "" #: src/hooks/UseStockAdjustActions.tsx:205 -#: src/pages/part/PartDetail.tsx:1137 +#: src/pages/part/PartDetail.tsx:1158 msgid "Stock Actions" msgstr "" @@ -5932,6 +5988,9 @@ msgstr "" #: src/pages/Index/Settings/AccountSettings/MFASettings.tsx:310 #: src/pages/Index/Settings/AccountSettings/MFASettings.tsx:401 +#: src/tables/build/BuildAllocatedStockTable.tsx:181 +#: src/tables/build/BuildLineTable.tsx:668 +#: src/tables/sales/SalesOrderAllocationTable.tsx:220 msgid "Confirm Removal" msgstr "" @@ -6394,30 +6453,34 @@ msgid "Email Messages" msgstr "" #: src/pages/Index/Settings/AdminCenter/HomePanel.tsx:22 -msgid "Active Alerts" -msgstr "" +#~ msgid "Active Alerts" +#~ msgstr "Active Alerts" #: src/pages/Index/Settings/AdminCenter/HomePanel.tsx:27 -msgid "Inactive Alerts" +#~ msgid "Inactive Alerts" +#~ msgstr "Inactive Alerts" + +#: src/pages/Index/Settings/AdminCenter/HomePanel.tsx:36 +msgid "System Status" msgstr "" -#: src/pages/Index/Settings/AdminCenter/HomePanel.tsx:38 +#: src/pages/Index/Settings/AdminCenter/HomePanel.tsx:47 msgid "Admin Center Information" msgstr "" -#: src/pages/Index/Settings/AdminCenter/HomePanel.tsx:44 +#: src/pages/Index/Settings/AdminCenter/HomePanel.tsx:53 msgid "The home panel (and the whole Admin Center) is a new feature starting with the new UI and was previously (before 1.0) not available." msgstr "" -#: src/pages/Index/Settings/AdminCenter/HomePanel.tsx:51 +#: src/pages/Index/Settings/AdminCenter/HomePanel.tsx:60 msgid "The admin center provides a centralized location for all administration functionality and is meant to replace all interaction with the (django) backend admin interface." msgstr "" -#: src/pages/Index/Settings/AdminCenter/HomePanel.tsx:58 +#: src/pages/Index/Settings/AdminCenter/HomePanel.tsx:67 msgid "Please open feature requests (after checking the tracker) for any existing backend admin functionality you are missing in this UI. The backend admin interface should be used carefully and seldom." msgstr "" -#: src/pages/Index/Settings/AdminCenter/HomePanel.tsx:76 +#: src/pages/Index/Settings/AdminCenter/HomePanel.tsx:85 msgid "Quick Actions" msgstr "" @@ -6476,11 +6539,11 @@ msgstr "" #: src/pages/Index/Settings/AdminCenter/Index.tsx:195 #: src/pages/part/CategoryDetail.tsx:313 -msgid "Part Parameters" -msgstr "" +#~ msgid "Part Parameters" +#~ msgstr "Part Parameters" #: src/pages/Index/Settings/AdminCenter/Index.tsx:202 -#: src/pages/part/CategoryDetail.tsx:306 +#: src/pages/part/CategoryDetail.tsx:329 msgid "Category Parameters" msgstr "" @@ -6494,7 +6557,7 @@ msgstr "" #: src/pages/Index/Settings/AdminCenter/Index.tsx:235 #: src/pages/Index/Settings/AdminCenter/MachineManagementPanel.tsx:52 -#: src/tables/machine/MachineTypeTable.tsx:325 +#: src/tables/machine/MachineTypeTable.tsx:323 msgid "Machines" msgstr "Masinad" @@ -6507,8 +6570,8 @@ msgid "Data Management" msgstr "" #: src/pages/Index/Settings/AdminCenter/Index.tsx:270 -#: src/pages/Index/Settings/SystemSettings.tsx:175 -#: src/pages/Index/Settings/UserSettings.tsx:118 +#: src/pages/Index/Settings/SystemSettings.tsx:176 +#: src/pages/Index/Settings/UserSettings.tsx:119 msgid "Reporting" msgstr "Aruanded" @@ -6709,11 +6772,11 @@ msgstr "" msgid "The settings below are specific to each available plugin" msgstr "" -#: src/pages/Index/Settings/SystemSettings.tsx:77 +#: src/pages/Index/Settings/SystemSettings.tsx:78 msgid "Authentication" msgstr "" -#: src/pages/Index/Settings/SystemSettings.tsx:103 +#: src/pages/Index/Settings/SystemSettings.tsx:104 msgid "Barcodes" msgstr "" @@ -6725,12 +6788,12 @@ msgstr "" #~ msgid "This panel is a placeholder." #~ msgstr "This panel is a placeholder." -#: src/pages/Index/Settings/SystemSettings.tsx:127 -#: src/pages/Index/Settings/UserSettings.tsx:112 +#: src/pages/Index/Settings/SystemSettings.tsx:128 +#: src/pages/Index/Settings/UserSettings.tsx:113 msgid "The settings below are specific to each available notification method" msgstr "" -#: src/pages/Index/Settings/SystemSettings.tsx:133 +#: src/pages/Index/Settings/SystemSettings.tsx:134 msgid "Pricing" msgstr "Hind" @@ -6738,7 +6801,7 @@ msgstr "Hind" #~ msgid "Exchange Rates" #~ msgstr "Exchange Rates" -#: src/pages/Index/Settings/SystemSettings.tsx:169 +#: src/pages/Index/Settings/SystemSettings.tsx:170 msgid "Labels" msgstr "Sildid" @@ -6790,15 +6853,15 @@ msgstr "Märgi mitteloetuks" #~ msgid "Delete notifications" #~ msgstr "Delete notifications" -#: src/pages/build/BuildDetail.tsx:69 +#: src/pages/build/BuildDetail.tsx:70 msgid "No Required Items" msgstr "" -#: src/pages/build/BuildDetail.tsx:71 +#: src/pages/build/BuildDetail.tsx:72 msgid "This build order does not have any required items." msgstr "" -#: src/pages/build/BuildDetail.tsx:72 +#: src/pages/build/BuildDetail.tsx:73 msgid "The assembled part may not have a Bill of Materials (BOM) defined, or the BOM is empty." msgstr "" @@ -6826,7 +6889,7 @@ msgstr "" #~ msgid "Build Order updated" #~ msgstr "Build Order updated" -#: src/pages/build/BuildDetail.tsx:215 +#: src/pages/build/BuildDetail.tsx:216 #: src/pages/part/PartDetail.tsx:480 #: src/pages/stock/StockDetail.tsx:161 #: src/tables/bom/UsedInTable.tsx:44 @@ -6843,10 +6906,10 @@ msgstr "" #~ msgid "Duplicate build order" #~ msgstr "Duplicate build order" -#: src/pages/build/BuildDetail.tsx:228 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:174 -#: src/pages/sales/ReturnOrderDetail.tsx:141 -#: src/pages/sales/SalesOrderDetail.tsx:131 +#: src/pages/build/BuildDetail.tsx:229 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:175 +#: src/pages/sales/ReturnOrderDetail.tsx:142 +#: src/pages/sales/SalesOrderDetail.tsx:132 #: src/pages/stock/StockDetail.tsx:176 msgid "Custom Status" msgstr "" @@ -6855,9 +6918,9 @@ msgstr "" #~ msgid "Delete build order" #~ msgstr "Delete build order" -#: src/pages/build/BuildDetail.tsx:237 -#: src/pages/build/BuildDetail.tsx:723 -#: src/pages/build/BuildIndex.tsx:28 +#: src/pages/build/BuildDetail.tsx:238 +#: src/pages/build/BuildDetail.tsx:728 +#: src/pages/build/BuildIndex.tsx:34 #: src/pages/stock/LocationDetail.tsx:140 #: src/tables/build/BuildOrderTable.tsx:123 #: src/tables/build/BuildOrderTable.tsx:183 @@ -6865,57 +6928,57 @@ msgstr "" msgid "External" msgstr "Väline" -#: src/pages/build/BuildDetail.tsx:244 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:141 -#: src/pages/sales/ReturnOrderDetail.tsx:108 -#: src/pages/sales/SalesOrderDetail.tsx:98 +#: src/pages/build/BuildDetail.tsx:245 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:142 +#: src/pages/sales/ReturnOrderDetail.tsx:109 +#: src/pages/sales/SalesOrderDetail.tsx:99 #: src/tables/ColumnRenderers.tsx:321 -#: src/tables/build/BuildAllocatedStockTable.tsx:115 -#: src/tables/build/BuildLineTable.tsx:352 +#: src/tables/build/BuildAllocatedStockTable.tsx:112 +#: src/tables/build/BuildLineTable.tsx:353 msgid "Reference" msgstr "Viide" -#: src/pages/build/BuildDetail.tsx:258 +#: src/pages/build/BuildDetail.tsx:259 msgid "Parent Build" msgstr "" -#: src/pages/build/BuildDetail.tsx:269 +#: src/pages/build/BuildDetail.tsx:270 msgid "Build Quantity" msgstr "" -#: src/pages/build/BuildDetail.tsx:275 +#: src/pages/build/BuildDetail.tsx:276 #: src/pages/part/PartDetail.tsx:598 #: src/tables/bom/BomTable.tsx:365 #: src/tables/bom/BomTable.tsx:407 msgid "Can Build" msgstr "" -#: src/pages/build/BuildDetail.tsx:284 -#: src/pages/build/BuildDetail.tsx:474 +#: src/pages/build/BuildDetail.tsx:285 +#: src/pages/build/BuildDetail.tsx:475 msgid "Completed Outputs" msgstr "" -#: src/pages/build/BuildDetail.tsx:301 +#: src/pages/build/BuildDetail.tsx:302 #: src/tables/Filter.tsx:381 #: src/tables/build/BuildOrderTable.tsx:143 msgid "Issued By" msgstr "" -#: src/pages/build/BuildDetail.tsx:309 +#: src/pages/build/BuildDetail.tsx:310 #: src/pages/part/PartDetail.tsx:691 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:261 -#: src/pages/sales/ReturnOrderDetail.tsx:239 -#: src/pages/sales/SalesOrderDetail.tsx:232 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:262 +#: src/pages/sales/ReturnOrderDetail.tsx:240 +#: src/pages/sales/SalesOrderDetail.tsx:233 #: src/tables/ColumnRenderers.tsx:464 #: src/tables/Filter.tsx:319 msgid "Responsible" msgstr "" -#: src/pages/build/BuildDetail.tsx:327 +#: src/pages/build/BuildDetail.tsx:328 msgid "Any location" msgstr "" -#: src/pages/build/BuildDetail.tsx:334 +#: src/pages/build/BuildDetail.tsx:335 msgid "Destination Location" msgstr "" @@ -6924,24 +6987,24 @@ msgstr "" #~ msgid "Test Statistics" #~ msgstr "Test Statistics" -#: src/pages/build/BuildDetail.tsx:350 +#: src/pages/build/BuildDetail.tsx:351 #: src/tables/settings/ApiTokenTable.tsx:97 #: src/tables/settings/PendingTasksTable.tsx:41 msgid "Created" msgstr "" -#: src/pages/build/BuildDetail.tsx:358 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:286 -#: src/pages/sales/ReturnOrderDetail.tsx:265 -#: src/pages/sales/SalesOrderDetail.tsx:257 +#: src/pages/build/BuildDetail.tsx:359 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:287 +#: src/pages/sales/ReturnOrderDetail.tsx:266 +#: src/pages/sales/SalesOrderDetail.tsx:258 #: src/tables/ColumnRenderers.tsx:486 msgid "Start Date" msgstr "" -#: src/pages/build/BuildDetail.tsx:366 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:294 -#: src/pages/sales/ReturnOrderDetail.tsx:273 -#: src/pages/sales/SalesOrderDetail.tsx:265 +#: src/pages/build/BuildDetail.tsx:367 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:295 +#: src/pages/sales/ReturnOrderDetail.tsx:274 +#: src/pages/sales/SalesOrderDetail.tsx:266 #: src/tables/ColumnRenderers.tsx:494 #: src/tables/part/PartPurchaseOrdersTable.tsx:101 #: src/tables/sales/ReturnOrderLineItemTable.tsx:154 @@ -6954,185 +7017,185 @@ msgstr "" #~ msgstr "Reporting Actions" #: src/pages/build/BuildDetail.tsx:374 +#~ msgid "Print build report" +#~ msgstr "Print build report" + +#: src/pages/build/BuildDetail.tsx:375 #: src/tables/build/BuildOrderTable.tsx:93 #: src/tables/sales/SalesOrderLineItemTable.tsx:347 msgid "Completed" msgstr "" -#: src/pages/build/BuildDetail.tsx:374 -#~ msgid "Print build report" -#~ msgstr "Print build report" - -#: src/pages/build/BuildDetail.tsx:410 +#: src/pages/build/BuildDetail.tsx:411 msgid "Build Details" msgstr "" -#: src/pages/build/BuildDetail.tsx:416 +#: src/pages/build/BuildDetail.tsx:417 msgid "Required Parts" msgstr "" -#: src/pages/build/BuildDetail.tsx:428 -#: src/pages/sales/SalesOrderDetail.tsx:407 -#: src/pages/sales/SalesOrderShipmentDetail.tsx:261 +#: src/pages/build/BuildDetail.tsx:429 +#: src/pages/sales/SalesOrderDetail.tsx:408 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:259 #: src/tables/part/PartSalesAllocationsTable.tsx:73 msgid "Allocated Stock" msgstr "" -#: src/pages/build/BuildDetail.tsx:444 +#: src/pages/build/BuildDetail.tsx:445 msgid "Consumed Stock" msgstr "" -#: src/pages/build/BuildDetail.tsx:461 +#: src/pages/build/BuildDetail.tsx:462 msgid "Incomplete Outputs" msgstr "" -#: src/pages/build/BuildDetail.tsx:489 +#: src/pages/build/BuildDetail.tsx:490 msgid "External Orders" msgstr "" -#: src/pages/build/BuildDetail.tsx:503 +#: src/pages/build/BuildDetail.tsx:504 msgid "Child Build Orders" msgstr "" -#: src/pages/build/BuildDetail.tsx:513 -#: src/pages/part/PartDetail.tsx:937 +#: src/pages/build/BuildDetail.tsx:514 +#: src/pages/part/PartDetail.tsx:926 #: src/pages/stock/StockDetail.tsx:587 #: src/tables/build/BuildOutputTable.tsx:654 #: src/tables/stock/StockItemTestResultTable.tsx:173 msgid "Test Results" msgstr "" -#: src/pages/build/BuildDetail.tsx:550 +#: src/pages/build/BuildDetail.tsx:555 msgid "Edit Build Order" msgstr "" -#: src/pages/build/BuildDetail.tsx:572 +#: src/pages/build/BuildDetail.tsx:577 #: src/tables/build/BuildOrderTable.tsx:207 #: src/tables/build/BuildOrderTable.tsx:223 msgid "Add Build Order" msgstr "" -#: src/pages/build/BuildDetail.tsx:582 +#: src/pages/build/BuildDetail.tsx:587 msgid "Cancel Build Order" msgstr "" -#: src/pages/build/BuildDetail.tsx:584 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:416 -#: src/pages/sales/ReturnOrderDetail.tsx:427 -#: src/pages/sales/SalesOrderDetail.tsx:454 +#: src/pages/build/BuildDetail.tsx:589 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:421 +#: src/pages/sales/ReturnOrderDetail.tsx:432 +#: src/pages/sales/SalesOrderDetail.tsx:459 msgid "Order cancelled" msgstr "" -#: src/pages/build/BuildDetail.tsx:585 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:415 -#: src/pages/sales/ReturnOrderDetail.tsx:426 -#: src/pages/sales/SalesOrderDetail.tsx:453 +#: src/pages/build/BuildDetail.tsx:590 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:420 +#: src/pages/sales/ReturnOrderDetail.tsx:431 +#: src/pages/sales/SalesOrderDetail.tsx:458 msgid "Cancel this order" msgstr "Tühista see tellimus" -#: src/pages/build/BuildDetail.tsx:594 +#: src/pages/build/BuildDetail.tsx:599 msgid "Hold Build Order" msgstr "" -#: src/pages/build/BuildDetail.tsx:596 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:423 -#: src/pages/sales/ReturnOrderDetail.tsx:434 -#: src/pages/sales/SalesOrderDetail.tsx:461 +#: src/pages/build/BuildDetail.tsx:601 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:428 +#: src/pages/sales/ReturnOrderDetail.tsx:439 +#: src/pages/sales/SalesOrderDetail.tsx:466 msgid "Place this order on hold" msgstr "" -#: src/pages/build/BuildDetail.tsx:597 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:424 -#: src/pages/sales/ReturnOrderDetail.tsx:435 -#: src/pages/sales/SalesOrderDetail.tsx:462 +#: src/pages/build/BuildDetail.tsx:602 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:429 +#: src/pages/sales/ReturnOrderDetail.tsx:440 +#: src/pages/sales/SalesOrderDetail.tsx:467 msgid "Order placed on hold" msgstr "" -#: src/pages/build/BuildDetail.tsx:602 +#: src/pages/build/BuildDetail.tsx:607 msgid "Issue Build Order" msgstr "" -#: src/pages/build/BuildDetail.tsx:604 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:407 -#: src/pages/sales/ReturnOrderDetail.tsx:418 -#: src/pages/sales/SalesOrderDetail.tsx:445 +#: src/pages/build/BuildDetail.tsx:609 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:412 +#: src/pages/sales/ReturnOrderDetail.tsx:423 +#: src/pages/sales/SalesOrderDetail.tsx:450 msgid "Issue this order" msgstr "" -#: src/pages/build/BuildDetail.tsx:605 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:408 -#: src/pages/sales/ReturnOrderDetail.tsx:419 -#: src/pages/sales/SalesOrderDetail.tsx:446 +#: src/pages/build/BuildDetail.tsx:610 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:413 +#: src/pages/sales/ReturnOrderDetail.tsx:424 +#: src/pages/sales/SalesOrderDetail.tsx:451 msgid "Order issued" msgstr "" -#: src/pages/build/BuildDetail.tsx:624 +#: src/pages/build/BuildDetail.tsx:629 msgid "Complete Build Order" msgstr "" -#: src/pages/build/BuildDetail.tsx:630 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:436 -#: src/pages/sales/ReturnOrderDetail.tsx:442 -#: src/pages/sales/SalesOrderDetail.tsx:480 +#: src/pages/build/BuildDetail.tsx:635 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:441 +#: src/pages/sales/ReturnOrderDetail.tsx:447 +#: src/pages/sales/SalesOrderDetail.tsx:485 msgid "Mark this order as complete" msgstr "Märgi see tellimus lõpetatuks" -#: src/pages/build/BuildDetail.tsx:633 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:430 -#: src/pages/sales/ReturnOrderDetail.tsx:443 -#: src/pages/sales/SalesOrderDetail.tsx:481 +#: src/pages/build/BuildDetail.tsx:638 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:435 +#: src/pages/sales/ReturnOrderDetail.tsx:448 +#: src/pages/sales/SalesOrderDetail.tsx:486 msgid "Order completed" msgstr "" -#: src/pages/build/BuildDetail.tsx:660 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:459 -#: src/pages/sales/ReturnOrderDetail.tsx:470 -#: src/pages/sales/SalesOrderDetail.tsx:516 +#: src/pages/build/BuildDetail.tsx:665 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:464 +#: src/pages/sales/ReturnOrderDetail.tsx:475 +#: src/pages/sales/SalesOrderDetail.tsx:521 msgid "Issue Order" msgstr "" -#: src/pages/build/BuildDetail.tsx:667 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:466 -#: src/pages/sales/ReturnOrderDetail.tsx:477 -#: src/pages/sales/SalesOrderDetail.tsx:530 +#: src/pages/build/BuildDetail.tsx:672 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:471 +#: src/pages/sales/ReturnOrderDetail.tsx:482 +#: src/pages/sales/SalesOrderDetail.tsx:535 msgid "Complete Order" msgstr "" -#: src/pages/build/BuildDetail.tsx:686 +#: src/pages/build/BuildDetail.tsx:691 msgid "Build Order Actions" msgstr "" -#: src/pages/build/BuildDetail.tsx:691 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:489 -#: src/pages/sales/ReturnOrderDetail.tsx:500 -#: src/pages/sales/SalesOrderDetail.tsx:554 +#: src/pages/build/BuildDetail.tsx:696 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:494 +#: src/pages/sales/ReturnOrderDetail.tsx:505 +#: src/pages/sales/SalesOrderDetail.tsx:559 msgid "Edit order" msgstr "Muuda tellimust" -#: src/pages/build/BuildDetail.tsx:695 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:497 -#: src/pages/sales/ReturnOrderDetail.tsx:506 -#: src/pages/sales/SalesOrderDetail.tsx:559 +#: src/pages/build/BuildDetail.tsx:700 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:502 +#: src/pages/sales/ReturnOrderDetail.tsx:511 +#: src/pages/sales/SalesOrderDetail.tsx:564 msgid "Duplicate order" msgstr "Tee tellimusest koopia" -#: src/pages/build/BuildDetail.tsx:699 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:500 -#: src/pages/sales/ReturnOrderDetail.tsx:511 -#: src/pages/sales/SalesOrderDetail.tsx:562 -msgid "Hold order" -msgstr "" - #: src/pages/build/BuildDetail.tsx:704 #: src/pages/purchasing/PurchaseOrderDetail.tsx:505 #: src/pages/sales/ReturnOrderDetail.tsx:516 #: src/pages/sales/SalesOrderDetail.tsx:567 +msgid "Hold order" +msgstr "" + +#: src/pages/build/BuildDetail.tsx:709 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:510 +#: src/pages/sales/ReturnOrderDetail.tsx:521 +#: src/pages/sales/SalesOrderDetail.tsx:572 msgid "Cancel order" msgstr "Tühista tellimus" -#: src/pages/build/BuildDetail.tsx:742 +#: src/pages/build/BuildDetail.tsx:747 #: src/pages/stock/StockDetail.tsx:344 -#: src/tables/build/BuildAllocatedStockTable.tsx:85 +#: src/tables/build/BuildAllocatedStockTable.tsx:82 #: src/tables/part/PartBuildAllocationsTable.tsx:45 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:157 #: src/tables/stock/StockTrackingTable.tsx:109 @@ -7143,7 +7206,7 @@ msgstr "" #~ msgid "Build order created" #~ msgstr "Build order created" -#: src/pages/build/BuildIndex.tsx:29 +#: src/pages/build/BuildIndex.tsx:35 #: src/tables/build/BuildOrderTable.tsx:184 msgid "Show external build orders" msgstr "" @@ -7152,61 +7215,82 @@ msgstr "" #~ msgid "New Build Order" #~ msgstr "New Build Order" -#: src/pages/build/BuildIndex.tsx:83 -#: src/pages/purchasing/PurchasingIndex.tsx:69 -#: src/pages/sales/SalesIndex.tsx:92 -#: src/pages/sales/SalesIndex.tsx:125 +#: src/pages/build/BuildIndex.tsx:74 +#: src/pages/part/CategoryDetail.tsx:292 +#: src/pages/purchasing/PurchasingIndex.tsx:74 +#: src/pages/purchasing/PurchasingIndex.tsx:107 +#: src/pages/purchasing/PurchasingIndex.tsx:135 +#: src/pages/purchasing/PurchasingIndex.tsx:156 +#: src/pages/purchasing/PurchasingIndex.tsx:184 +#: src/pages/sales/SalesIndex.tsx:61 +#: src/pages/sales/SalesIndex.tsx:107 +#: src/pages/sales/SalesIndex.tsx:140 msgid "Table View" msgstr "" -#: src/pages/build/BuildIndex.tsx:86 -#: src/pages/purchasing/PurchasingIndex.tsx:72 -#: src/pages/sales/SalesIndex.tsx:95 -#: src/pages/sales/SalesIndex.tsx:128 +#: src/pages/build/BuildIndex.tsx:80 +#: src/pages/purchasing/PurchasingIndex.tsx:80 +#: src/pages/sales/SalesIndex.tsx:67 +#: src/pages/sales/SalesIndex.tsx:113 msgid "Calendar View" msgstr "" -#: src/pages/company/CompanyDetail.tsx:99 +#: src/pages/build/BuildIndex.tsx:86 +#: src/pages/part/CategoryDetail.tsx:306 +#: src/pages/purchasing/PurchasingIndex.tsx:92 +#: src/pages/purchasing/PurchasingIndex.tsx:118 +#: src/pages/purchasing/PurchasingIndex.tsx:141 +#: src/pages/purchasing/PurchasingIndex.tsx:167 +#: src/pages/purchasing/PurchasingIndex.tsx:190 +#: src/pages/sales/SalesIndex.tsx:79 +#: src/pages/sales/SalesIndex.tsx:125 +#: src/pages/sales/SalesIndex.tsx:151 +msgid "Parametric View" +msgstr "" + +#: src/pages/company/CompanyDetail.tsx:100 msgid "Website" msgstr "Veebileht" -#: src/pages/company/CompanyDetail.tsx:107 +#: src/pages/company/CompanyDetail.tsx:108 msgid "Phone Number" msgstr "Telefoninumber" -#: src/pages/company/CompanyDetail.tsx:114 +#: src/pages/company/CompanyDetail.tsx:115 msgid "Email Address" msgstr "E-posti aadress" -#: src/pages/company/CompanyDetail.tsx:121 +#: src/pages/company/CompanyDetail.tsx:122 msgid "Tax ID" msgstr "" -#: src/pages/company/CompanyDetail.tsx:131 +#: src/pages/company/CompanyDetail.tsx:132 msgid "Default Currency" msgstr "Vaikimisi valuuta" -#: src/pages/company/CompanyDetail.tsx:142 +#: src/pages/company/CompanyDetail.tsx:143 #: src/pages/company/ManufacturerDetail.tsx:8 -#: src/pages/company/ManufacturerPartDetail.tsx:104 -#: src/pages/company/ManufacturerPartDetail.tsx:280 -#: src/pages/company/SupplierPartDetail.tsx:152 +#: src/pages/company/ManufacturerPartDetail.tsx:103 +#: src/pages/company/ManufacturerPartDetail.tsx:271 +#: src/pages/company/SupplierPartDetail.tsx:153 #: src/tables/Filter.tsx:347 #: src/tables/company/CompanyTable.tsx:101 #: src/tables/purchasing/SupplierPartTable.tsx:89 msgid "Manufacturer" msgstr "Tootja" -#: src/pages/company/CompanyDetail.tsx:148 +#: src/pages/company/CompanyDetail.tsx:149 #: src/pages/company/CustomerDetail.tsx:8 #: src/pages/part/pricing/SaleHistoryPanel.tsx:31 -#: src/pages/sales/ReturnOrderDetail.tsx:123 -#: src/pages/sales/SalesOrderDetail.tsx:113 -#: src/pages/sales/SalesOrderShipmentDetail.tsx:113 +#: src/pages/sales/ReturnOrderDetail.tsx:124 +#: src/pages/sales/SalesOrderDetail.tsx:114 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:111 #: src/pages/stock/StockDetail.tsx:370 #: src/tables/company/CompanyTable.tsx:106 +#: src/tables/sales/ReturnOrderParametricTable.tsx:32 #: src/tables/sales/ReturnOrderTable.tsx:108 -#: src/tables/sales/SalesOrderShipmentTable.tsx:111 +#: src/tables/sales/SalesOrderParametricTable.tsx:32 +#: src/tables/sales/SalesOrderShipmentTable.tsx:132 #: src/tables/sales/SalesOrderTable.tsx:133 #: src/tables/stock/StockTrackingTable.tsx:153 msgid "Customer" @@ -7216,11 +7300,11 @@ msgstr "Klient" #~ msgid "Edit company" #~ msgstr "Edit company" -#: src/pages/company/CompanyDetail.tsx:181 +#: src/pages/company/CompanyDetail.tsx:182 msgid "Company Details" msgstr "" -#: src/pages/company/CompanyDetail.tsx:187 +#: src/pages/company/CompanyDetail.tsx:188 msgid "Supplied Parts" msgstr "" @@ -7228,79 +7312,79 @@ msgstr "" #~ msgid "Delete company" #~ msgstr "Delete company" -#: src/pages/company/CompanyDetail.tsx:194 +#: src/pages/company/CompanyDetail.tsx:195 msgid "Manufactured Parts" msgstr "" -#: src/pages/company/CompanyDetail.tsx:241 +#: src/pages/company/CompanyDetail.tsx:242 msgid "Assigned Stock" msgstr "" -#: src/pages/company/CompanyDetail.tsx:282 +#: src/pages/company/CompanyDetail.tsx:287 #: src/tables/company/CompanyTable.tsx:82 msgid "Edit Company" msgstr "Muuda ettevõtet" -#: src/pages/company/CompanyDetail.tsx:290 +#: src/pages/company/CompanyDetail.tsx:295 msgid "Delete Company" msgstr "Kustuta ettevõte" -#: src/pages/company/CompanyDetail.tsx:305 +#: src/pages/company/CompanyDetail.tsx:310 msgid "Company Actions" msgstr "Ettevõtte toimingud" -#: src/pages/company/ManufacturerPartDetail.tsx:78 -#: src/pages/company/SupplierPartDetail.tsx:89 +#: src/pages/company/ManufacturerPartDetail.tsx:77 +#: src/pages/company/SupplierPartDetail.tsx:90 msgid "Internal Part" msgstr "Sisemine osa" -#: src/pages/company/ManufacturerPartDetail.tsx:112 +#: src/pages/company/ManufacturerPartDetail.tsx:111 msgid "Manufacturer Part Number" msgstr "Tootja osa number" -#: src/pages/company/ManufacturerPartDetail.tsx:129 -#: src/pages/company/SupplierPartDetail.tsx:113 +#: src/pages/company/ManufacturerPartDetail.tsx:128 +#: src/pages/company/SupplierPartDetail.tsx:114 msgid "External Link" msgstr "Väline link" -#: src/pages/company/ManufacturerPartDetail.tsx:148 -#: src/pages/company/SupplierPartDetail.tsx:232 +#: src/pages/company/ManufacturerPartDetail.tsx:147 +#: src/pages/company/SupplierPartDetail.tsx:233 #: src/pages/part/PartDetail.tsx:787 msgid "Part Details" msgstr "" -#: src/pages/company/ManufacturerPartDetail.tsx:151 +#: src/pages/company/ManufacturerPartDetail.tsx:150 msgid "Manufacturer Details" msgstr "" -#: src/pages/company/ManufacturerPartDetail.tsx:160 +#: src/pages/company/ManufacturerPartDetail.tsx:159 msgid "Manufacturer Part Details" msgstr "Tootja osa üksikasjad" -#: src/pages/company/ManufacturerPartDetail.tsx:178 -#: src/pages/company/SupplierPartDetail.tsx:252 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:381 +#: src/pages/company/ManufacturerPartDetail.tsx:165 +#: src/pages/company/SupplierPartDetail.tsx:253 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:382 msgid "Received Stock" msgstr "" -#: src/pages/company/ManufacturerPartDetail.tsx:220 +#: src/pages/company/ManufacturerPartDetail.tsx:211 #: src/tables/purchasing/ManufacturerPartTable.tsx:108 msgid "Edit Manufacturer Part" msgstr "" -#: src/pages/company/ManufacturerPartDetail.tsx:227 +#: src/pages/company/ManufacturerPartDetail.tsx:218 #: src/tables/purchasing/ManufacturerPartTable.tsx:96 #: src/tables/purchasing/ManufacturerPartTable.tsx:115 #: src/tables/purchasing/ManufacturerPartTable.tsx:156 msgid "Add Manufacturer Part" msgstr "" -#: src/pages/company/ManufacturerPartDetail.tsx:239 +#: src/pages/company/ManufacturerPartDetail.tsx:230 #: src/tables/purchasing/ManufacturerPartTable.tsx:126 msgid "Delete Manufacturer Part" msgstr "" -#: src/pages/company/ManufacturerPartDetail.tsx:254 +#: src/pages/company/ManufacturerPartDetail.tsx:245 msgid "Manufacturer Part Actions" msgstr "Tootjaosade tegevused" @@ -7308,12 +7392,12 @@ msgstr "Tootjaosade tegevused" #~ msgid "ManufacturerPart" #~ msgstr "ManufacturerPart" -#: src/pages/company/SupplierPartDetail.tsx:104 +#: src/pages/company/SupplierPartDetail.tsx:105 #: src/tables/part/RelatedPartTable.tsx:82 msgid "Part Description" msgstr "" -#: src/pages/company/SupplierPartDetail.tsx:179 +#: src/pages/company/SupplierPartDetail.tsx:180 #: src/tables/part/PartPurchaseOrdersTable.tsx:73 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:191 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:233 @@ -7321,50 +7405,50 @@ msgstr "" msgid "Pack Quantity" msgstr "Kogus pakis" -#: src/pages/company/SupplierPartDetail.tsx:204 +#: src/pages/company/SupplierPartDetail.tsx:205 msgid "Supplier Availability" msgstr "" -#: src/pages/company/SupplierPartDetail.tsx:212 +#: src/pages/company/SupplierPartDetail.tsx:213 msgid "Availability Updated" msgstr "" -#: src/pages/company/SupplierPartDetail.tsx:237 +#: src/pages/company/SupplierPartDetail.tsx:238 msgid "Availability" msgstr "Saadavus" -#: src/pages/company/SupplierPartDetail.tsx:246 +#: src/pages/company/SupplierPartDetail.tsx:247 msgid "Supplier Part Details" msgstr "" -#: src/pages/company/SupplierPartDetail.tsx:279 +#: src/pages/company/SupplierPartDetail.tsx:280 #: src/pages/part/PartPricingPanel.tsx:113 #: src/pages/part/pricing/PricingOverviewPanel.tsx:239 msgid "Supplier Pricing" msgstr "" -#: src/pages/company/SupplierPartDetail.tsx:308 +#: src/pages/company/SupplierPartDetail.tsx:313 msgid "Supplier Part Actions" msgstr "" -#: src/pages/company/SupplierPartDetail.tsx:332 +#: src/pages/company/SupplierPartDetail.tsx:337 #: src/tables/purchasing/SupplierPartTable.tsx:244 msgid "Edit Supplier Part" msgstr "" -#: src/pages/company/SupplierPartDetail.tsx:340 +#: src/pages/company/SupplierPartDetail.tsx:345 #: src/tables/purchasing/SupplierPartTable.tsx:264 msgid "Delete Supplier Part" msgstr "" -#: src/pages/company/SupplierPartDetail.tsx:348 +#: src/pages/company/SupplierPartDetail.tsx:353 #: src/tables/purchasing/SupplierPartTable.tsx:172 #: src/tables/purchasing/SupplierPartTable.tsx:251 msgid "Add Supplier Part" msgstr "" -#: src/pages/company/SupplierPartDetail.tsx:388 -#: src/pages/part/PartDetail.tsx:1003 +#: src/pages/company/SupplierPartDetail.tsx:393 +#: src/pages/part/PartDetail.tsx:1018 msgid "No Stock" msgstr "" @@ -7411,83 +7495,83 @@ msgstr "Kasutaja üksikandmed" msgid "Basic user" msgstr "" -#: src/pages/part/CategoryDetail.tsx:100 +#: src/pages/part/CategoryDetail.tsx:103 #: src/pages/stock/LocationDetail.tsx:94 #: src/tables/settings/ErrorTable.tsx:63 #: src/tables/settings/ErrorTable.tsx:108 msgid "Path" msgstr "" -#: src/pages/part/CategoryDetail.tsx:116 +#: src/pages/part/CategoryDetail.tsx:119 msgid "Parent Category" msgstr "Ülemkategooria" -#: src/pages/part/CategoryDetail.tsx:139 -#: src/pages/part/CategoryDetail.tsx:271 +#: src/pages/part/CategoryDetail.tsx:142 +#: src/pages/part/CategoryDetail.tsx:279 msgid "Subcategories" msgstr "Alamkategooriad" -#: src/pages/part/CategoryDetail.tsx:146 +#: src/pages/part/CategoryDetail.tsx:149 #: src/pages/stock/LocationDetail.tsx:134 #: src/tables/part/PartCategoryTable.tsx:89 #: src/tables/stock/StockLocationTable.tsx:43 msgid "Structural" msgstr "" -#: src/pages/part/CategoryDetail.tsx:152 +#: src/pages/part/CategoryDetail.tsx:155 msgid "Parent default location" msgstr "Vanemaluse vaikimisi asukoht" -#: src/pages/part/CategoryDetail.tsx:159 +#: src/pages/part/CategoryDetail.tsx:162 msgid "Default location" msgstr "Vaikimisi asukoht" -#: src/pages/part/CategoryDetail.tsx:170 +#: src/pages/part/CategoryDetail.tsx:173 msgid "Top level part category" msgstr "Ülemine osakategooria" -#: src/pages/part/CategoryDetail.tsx:180 -#: src/pages/part/CategoryDetail.tsx:248 +#: src/pages/part/CategoryDetail.tsx:183 +#: src/pages/part/CategoryDetail.tsx:251 #: src/tables/part/PartCategoryTable.tsx:122 msgid "Edit Part Category" msgstr "Muuda osa kategooriat" -#: src/pages/part/CategoryDetail.tsx:189 +#: src/pages/part/CategoryDetail.tsx:192 msgid "Move items to parent category" msgstr "" -#: src/pages/part/CategoryDetail.tsx:193 +#: src/pages/part/CategoryDetail.tsx:196 #: src/pages/stock/LocationDetail.tsx:226 msgid "Delete items" msgstr "" -#: src/pages/part/CategoryDetail.tsx:201 -#: src/pages/part/CategoryDetail.tsx:253 +#: src/pages/part/CategoryDetail.tsx:204 +#: src/pages/part/CategoryDetail.tsx:256 msgid "Delete Part Category" msgstr "" -#: src/pages/part/CategoryDetail.tsx:204 +#: src/pages/part/CategoryDetail.tsx:207 msgid "Parts Action" msgstr "" -#: src/pages/part/CategoryDetail.tsx:205 +#: src/pages/part/CategoryDetail.tsx:208 msgid "Action for parts in this category" msgstr "Tegevus osade jaoks selles kategoorias" -#: src/pages/part/CategoryDetail.tsx:211 +#: src/pages/part/CategoryDetail.tsx:214 msgid "Child Categories Action" msgstr "Alamkategooriate tegevus" -#: src/pages/part/CategoryDetail.tsx:212 +#: src/pages/part/CategoryDetail.tsx:215 msgid "Action for child categories in this category" msgstr "Tegevus selle kategooria alamkategooriate jaoks" -#: src/pages/part/CategoryDetail.tsx:244 +#: src/pages/part/CategoryDetail.tsx:247 #: src/tables/part/PartCategoryTable.tsx:143 msgid "Category Actions" msgstr "" -#: src/pages/part/CategoryDetail.tsx:265 +#: src/pages/part/CategoryDetail.tsx:273 msgid "Category Details" msgstr "" @@ -7585,7 +7669,6 @@ msgid "Category Default Location" msgstr "Kategooria vaikimisi asukoht" #: src/pages/part/PartDetail.tsx:507 -#: src/tables/purchasing/ManufacturerPartParameterTable.tsx:48 msgid "Units" msgstr "" @@ -7600,7 +7683,7 @@ msgstr "Märksõnad" #: src/pages/part/PartDetail.tsx:542 #: src/tables/bom/BomTable.tsx:439 -#: src/tables/build/BuildLineTable.tsx:305 +#: src/tables/build/BuildLineTable.tsx:306 #: src/tables/part/PartTable.tsx:319 #: src/tables/sales/SalesOrderLineItemTable.tsx:138 msgid "Available Stock" @@ -7608,7 +7691,7 @@ msgstr "Saadaval laos" #: src/pages/part/PartDetail.tsx:548 #: src/tables/bom/BomTable.tsx:341 -#: src/tables/build/BuildLineTable.tsx:267 +#: src/tables/build/BuildLineTable.tsx:268 #: src/tables/sales/SalesOrderLineItemTable.tsx:180 msgid "On order" msgstr "Tellimisel" @@ -7634,7 +7717,7 @@ msgstr "Minimaalne laoseis" #~ msgstr "Scheduling" #: src/pages/part/PartDetail.tsx:620 -#: src/tables/part/ParametricPartTable.tsx:359 +#: src/tables/part/ParametricPartTable.tsx:24 #: src/tables/part/PartTable.tsx:203 msgid "Locked" msgstr "" @@ -7671,16 +7754,16 @@ msgid "Saleable Part" msgstr "" #: src/pages/part/PartDetail.tsx:663 -#: src/pages/part/PartDetail.tsx:1033 +#: src/pages/part/PartDetail.tsx:1054 #: src/tables/bom/BomTable.tsx:150 #: src/tables/bom/BomTable.tsx:434 msgid "Virtual Part" msgstr "" #: src/pages/part/PartDetail.tsx:678 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:271 -#: src/pages/sales/ReturnOrderDetail.tsx:249 -#: src/pages/sales/SalesOrderDetail.tsx:242 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:272 +#: src/pages/sales/ReturnOrderDetail.tsx:250 +#: src/pages/sales/SalesOrderDetail.tsx:243 #: src/tables/ColumnRenderers.tsx:502 msgid "Creation Date" msgstr "" @@ -7718,35 +7801,46 @@ msgstr "" msgid "Select Part Revision" msgstr "" -#: src/pages/part/PartDetail.tsx:823 +#: src/pages/part/PartDetail.tsx:812 msgid "Variants" msgstr "Variandid" -#: src/pages/part/PartDetail.tsx:830 +#: src/pages/part/PartDetail.tsx:819 #: src/pages/stock/StockDetail.tsx:542 msgid "Allocations" msgstr "" -#: src/pages/part/PartDetail.tsx:837 +#: src/pages/part/PartDetail.tsx:826 msgid "Bill of Materials" msgstr "" -#: src/pages/part/PartDetail.tsx:849 +#: src/pages/part/PartDetail.tsx:838 msgid "Used In" msgstr "" -#: src/pages/part/PartDetail.tsx:856 +#: src/pages/part/PartDetail.tsx:845 msgid "Part Pricing" msgstr "" -#: src/pages/part/PartDetail.tsx:926 +#: src/pages/part/PartDetail.tsx:915 msgid "Test Templates" msgstr "" -#: src/pages/part/PartDetail.tsx:948 +#: src/pages/part/PartDetail.tsx:937 msgid "Related Parts" msgstr "" +#: src/pages/part/PartDetail.tsx:949 +#: src/tables/ColumnRenderers.tsx:73 +#: src/tables/bom/BomTable.tsx:657 +#: src/tables/part/PartTestTemplateTable.tsx:258 +msgid "Part is Locked" +msgstr "" + +#: src/pages/part/PartDetail.tsx:954 +msgid "Part parameters cannot be edited, as the part is locked" +msgstr "Osale osade parameetreid ei saa muuta, kuna osa on lukus" + #: src/pages/part/PartDetail.tsx:956 #~ msgid "Count part stock" #~ msgstr "Count part stock" @@ -7755,42 +7849,46 @@ msgstr "" #~ msgid "Transfer part stock" #~ msgstr "Transfer part stock" -#: src/pages/part/PartDetail.tsx:1009 +#: src/pages/part/PartDetail.tsx:1024 #: src/tables/part/PartTestTemplateTable.tsx:112 #: src/tables/stock/StockItemTestResultTable.tsx:404 msgid "Required" msgstr "Nõutud" -#: src/pages/part/PartDetail.tsx:1058 +#: src/pages/part/PartDetail.tsx:1042 +msgid "Deficit" +msgstr "" + +#: src/pages/part/PartDetail.tsx:1079 #: src/tables/part/PartTable.tsx:396 #: src/tables/part/PartTable.tsx:449 msgid "Add Part" msgstr "Lisa osa" -#: src/pages/part/PartDetail.tsx:1072 +#: src/pages/part/PartDetail.tsx:1093 msgid "Delete Part" msgstr "" -#: src/pages/part/PartDetail.tsx:1081 +#: src/pages/part/PartDetail.tsx:1102 msgid "Deleting this part cannot be reversed" msgstr "Selle osa kustutamist ei saa tagasi võtta" -#: src/pages/part/PartDetail.tsx:1143 +#: src/pages/part/PartDetail.tsx:1164 #: src/pages/stock/StockDetail.tsx:883 msgid "Order" msgstr "" -#: src/pages/part/PartDetail.tsx:1144 +#: src/pages/part/PartDetail.tsx:1165 #: src/pages/stock/StockDetail.tsx:884 -#: src/tables/build/BuildLineTable.tsx:761 +#: src/tables/build/BuildLineTable.tsx:768 msgid "Order Stock" msgstr "" -#: src/pages/part/PartDetail.tsx:1156 +#: src/pages/part/PartDetail.tsx:1177 msgid "Search by serial number" msgstr "" -#: src/pages/part/PartDetail.tsx:1164 +#: src/pages/part/PartDetail.tsx:1185 #: src/tables/part/PartTable.tsx:506 msgid "Part Actions" msgstr "" @@ -8039,7 +8137,7 @@ msgstr "" #: src/pages/part/pricing/PricingOverviewPanel.tsx:288 #: src/pages/stock/StockDetail.tsx:426 -#: src/tables/part/PartParameterTable.tsx:121 +#: src/tables/general/ParameterTable.tsx:101 #: src/tables/stock/StockItemTable.tsx:300 msgid "Last Updated" msgstr "" @@ -8107,17 +8205,17 @@ msgstr "" msgid "Variant Part" msgstr "" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:89 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:90 msgid "Edit Purchase Order" msgstr "" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:125 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:126 #: src/tables/purchasing/PurchaseOrderTable.tsx:154 #: src/tables/purchasing/PurchaseOrderTable.tsx:167 msgid "Add Purchase Order" msgstr "" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:147 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:148 msgid "Supplier Reference" msgstr "" @@ -8127,20 +8225,20 @@ msgstr "" #~ msgid "Order Currency," #~ msgstr "Order Currency," -#: src/pages/purchasing/PurchaseOrderDetail.tsx:187 -#: src/pages/sales/ReturnOrderDetail.tsx:160 -#: src/pages/sales/SalesOrderDetail.tsx:144 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:188 +#: src/pages/sales/ReturnOrderDetail.tsx:161 +#: src/pages/sales/SalesOrderDetail.tsx:145 msgid "Completed Line Items" msgstr "" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:196 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:197 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:272 msgid "Destination" msgstr "" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:202 -#: src/pages/sales/ReturnOrderDetail.tsx:167 -#: src/pages/sales/SalesOrderDetail.tsx:161 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:203 +#: src/pages/sales/ReturnOrderDetail.tsx:168 +#: src/pages/sales/SalesOrderDetail.tsx:162 msgid "Order Currency" msgstr "" @@ -8150,97 +8248,97 @@ msgstr "" #~ msgid "Created On" #~ msgstr "Created On" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:208 -#: src/pages/sales/ReturnOrderDetail.tsx:174 -#: src/pages/sales/SalesOrderDetail.tsx:167 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:209 +#: src/pages/sales/ReturnOrderDetail.tsx:175 +#: src/pages/sales/SalesOrderDetail.tsx:168 msgid "Total Cost" msgstr "" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:237 -#: src/pages/sales/ReturnOrderDetail.tsx:215 -#: src/pages/sales/SalesOrderDetail.tsx:208 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:238 +#: src/pages/sales/ReturnOrderDetail.tsx:216 +#: src/pages/sales/SalesOrderDetail.tsx:209 msgid "Contact Email" msgstr "" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:245 -#: src/pages/sales/ReturnOrderDetail.tsx:223 -#: src/pages/sales/SalesOrderDetail.tsx:216 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:246 +#: src/pages/sales/ReturnOrderDetail.tsx:224 +#: src/pages/sales/SalesOrderDetail.tsx:217 msgid "Contact Phone" msgstr "" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:278 -#: src/pages/sales/ReturnOrderDetail.tsx:257 -#: src/pages/sales/SalesOrderDetail.tsx:249 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:279 +#: src/pages/sales/ReturnOrderDetail.tsx:258 +#: src/pages/sales/SalesOrderDetail.tsx:250 msgid "Issue Date" msgstr "" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:303 -#: src/pages/sales/ReturnOrderDetail.tsx:281 -#: src/pages/sales/SalesOrderDetail.tsx:272 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:304 +#: src/pages/sales/ReturnOrderDetail.tsx:282 +#: src/pages/sales/SalesOrderDetail.tsx:273 #: src/tables/ColumnRenderers.tsx:510 #: src/tables/build/BuildOrderTable.tsx:137 #: src/tables/part/PartPurchaseOrdersTable.tsx:106 msgid "Completion Date" msgstr "" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:333 -#: src/pages/sales/ReturnOrderDetail.tsx:311 -#: src/pages/sales/SalesOrderDetail.tsx:349 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:334 +#: src/pages/sales/ReturnOrderDetail.tsx:312 +#: src/pages/sales/SalesOrderDetail.tsx:350 msgid "Order Details" msgstr "" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:339 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:348 -#: src/pages/sales/ReturnOrderDetail.tsx:153 -#: src/pages/sales/ReturnOrderDetail.tsx:317 -#: src/pages/sales/ReturnOrderDetail.tsx:326 -#: src/pages/sales/SalesOrderDetail.tsx:355 -#: src/pages/sales/SalesOrderDetail.tsx:364 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:340 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:349 +#: src/pages/sales/ReturnOrderDetail.tsx:154 +#: src/pages/sales/ReturnOrderDetail.tsx:318 +#: src/pages/sales/ReturnOrderDetail.tsx:327 +#: src/pages/sales/SalesOrderDetail.tsx:356 +#: src/pages/sales/SalesOrderDetail.tsx:365 msgid "Line Items" msgstr "" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:363 -#: src/pages/sales/ReturnOrderDetail.tsx:341 -#: src/pages/sales/SalesOrderDetail.tsx:378 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:364 +#: src/pages/sales/ReturnOrderDetail.tsx:342 +#: src/pages/sales/SalesOrderDetail.tsx:379 msgid "Extra Line Items" msgstr "" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:405 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:410 msgid "Issue Purchase Order" msgstr "" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:413 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:418 msgid "Cancel Purchase Order" msgstr "" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:421 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:426 msgid "Hold Purchase Order" msgstr "" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:429 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:434 msgid "Complete Purchase Order" msgstr "Täida ostutellimus" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:485 -#: src/pages/sales/ReturnOrderDetail.tsx:496 -#: src/pages/sales/SalesOrderDetail.tsx:549 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:490 +#: src/pages/sales/ReturnOrderDetail.tsx:501 +#: src/pages/sales/SalesOrderDetail.tsx:554 msgid "Order Actions" msgstr "" -#: src/pages/sales/ReturnOrderDetail.tsx:114 -#: src/pages/sales/SalesOrderDetail.tsx:104 -#: src/pages/sales/SalesOrderShipmentDetail.tsx:134 +#: src/pages/sales/ReturnOrderDetail.tsx:115 +#: src/pages/sales/SalesOrderDetail.tsx:105 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:132 #: src/tables/sales/SalesOrderTable.tsx:141 msgid "Customer Reference" msgstr "" -#: src/pages/sales/ReturnOrderDetail.tsx:195 +#: src/pages/sales/ReturnOrderDetail.tsx:196 msgid "Return Address" msgstr "" -#: src/pages/sales/ReturnOrderDetail.tsx:201 -#: src/pages/sales/SalesOrderDetail.tsx:194 -#: src/pages/sales/SalesOrderShipmentDetail.tsx:181 +#: src/pages/sales/ReturnOrderDetail.tsx:202 +#: src/pages/sales/SalesOrderDetail.tsx:195 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:179 msgid "Not specified" msgstr "" @@ -8248,117 +8346,117 @@ msgstr "" #~ msgid "Order canceled" #~ msgstr "Order canceled" -#: src/pages/sales/ReturnOrderDetail.tsx:389 +#: src/pages/sales/ReturnOrderDetail.tsx:394 msgid "Edit Return Order" msgstr "" -#: src/pages/sales/ReturnOrderDetail.tsx:407 +#: src/pages/sales/ReturnOrderDetail.tsx:412 #: src/tables/sales/ReturnOrderTable.tsx:154 #: src/tables/sales/ReturnOrderTable.tsx:167 msgid "Add Return Order" msgstr "" -#: src/pages/sales/ReturnOrderDetail.tsx:416 +#: src/pages/sales/ReturnOrderDetail.tsx:421 msgid "Issue Return Order" msgstr "" -#: src/pages/sales/ReturnOrderDetail.tsx:424 +#: src/pages/sales/ReturnOrderDetail.tsx:429 msgid "Cancel Return Order" msgstr "" -#: src/pages/sales/ReturnOrderDetail.tsx:432 +#: src/pages/sales/ReturnOrderDetail.tsx:437 msgid "Hold Return Order" msgstr "" -#: src/pages/sales/ReturnOrderDetail.tsx:440 +#: src/pages/sales/ReturnOrderDetail.tsx:445 msgid "Complete Return Order" msgstr "" -#: src/pages/sales/SalesOrderDetail.tsx:153 +#: src/pages/sales/SalesOrderDetail.tsx:154 msgid "Completed Shipments" msgstr "" -#: src/pages/sales/SalesOrderDetail.tsx:188 -#: src/pages/sales/SalesOrderShipmentDetail.tsx:170 +#: src/pages/sales/SalesOrderDetail.tsx:189 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:168 msgid "Shipping Address" msgstr "" -#: src/pages/sales/SalesOrderDetail.tsx:316 +#: src/pages/sales/SalesOrderDetail.tsx:317 msgid "Edit Sales Order" msgstr "" -#: src/pages/sales/SalesOrderDetail.tsx:338 +#: src/pages/sales/SalesOrderDetail.tsx:339 #: src/tables/sales/SalesOrderTable.tsx:108 #: src/tables/sales/SalesOrderTable.tsx:121 msgid "Add Sales Order" msgstr "" -#: src/pages/sales/SalesOrderDetail.tsx:396 +#: src/pages/sales/SalesOrderDetail.tsx:397 #: src/tables/sales/SalesOrderTable.tsx:147 msgid "Shipments" msgstr "" -#: src/pages/sales/SalesOrderDetail.tsx:443 +#: src/pages/sales/SalesOrderDetail.tsx:448 msgid "Issue Sales Order" msgstr "" -#: src/pages/sales/SalesOrderDetail.tsx:451 +#: src/pages/sales/SalesOrderDetail.tsx:456 msgid "Cancel Sales Order" msgstr "" -#: src/pages/sales/SalesOrderDetail.tsx:459 +#: src/pages/sales/SalesOrderDetail.tsx:464 msgid "Hold Sales Order" msgstr "" -#: src/pages/sales/SalesOrderDetail.tsx:467 +#: src/pages/sales/SalesOrderDetail.tsx:472 msgid "Ship Sales Order" msgstr "" -#: src/pages/sales/SalesOrderDetail.tsx:469 +#: src/pages/sales/SalesOrderDetail.tsx:474 msgid "Ship this order?" msgstr "" -#: src/pages/sales/SalesOrderDetail.tsx:470 +#: src/pages/sales/SalesOrderDetail.tsx:475 msgid "Order shipped" msgstr "" -#: src/pages/sales/SalesOrderDetail.tsx:478 +#: src/pages/sales/SalesOrderDetail.tsx:483 msgid "Complete Sales Order" msgstr "" -#: src/pages/sales/SalesOrderDetail.tsx:523 +#: src/pages/sales/SalesOrderDetail.tsx:528 msgid "Ship Order" msgstr "" -#: src/pages/sales/SalesOrderShipmentDetail.tsx:142 -#: src/tables/sales/SalesOrderShipmentTable.tsx:135 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:140 +#: src/tables/sales/SalesOrderShipmentTable.tsx:156 msgid "Shipment Reference" msgstr "Saadetise viide" -#: src/pages/sales/SalesOrderShipmentDetail.tsx:148 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:146 msgid "Tracking Number" msgstr "" -#: src/pages/sales/SalesOrderShipmentDetail.tsx:156 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:154 msgid "Invoice Number" msgstr "" -#: src/pages/sales/SalesOrderShipmentDetail.tsx:191 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:189 msgid "Allocated Items" msgstr "" -#: src/pages/sales/SalesOrderShipmentDetail.tsx:196 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:194 msgid "Checked By" msgstr "" -#: src/pages/sales/SalesOrderShipmentDetail.tsx:202 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:200 msgid "Not checked" msgstr "" -#: src/pages/sales/SalesOrderShipmentDetail.tsx:208 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:206 #: src/tables/ColumnRenderers.tsx:518 #: src/tables/sales/SalesOrderAllocationTable.tsx:182 -#: src/tables/sales/SalesOrderShipmentTable.tsx:168 +#: src/tables/sales/SalesOrderShipmentTable.tsx:189 msgid "Shipment Date" msgstr "" @@ -8366,108 +8464,82 @@ msgstr "" #~ msgid "Assigned Items" #~ msgstr "Assigned Items" -#: src/pages/sales/SalesOrderShipmentDetail.tsx:216 -#: src/tables/sales/SalesOrderShipmentTable.tsx:172 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:214 +#: src/tables/sales/SalesOrderShipmentTable.tsx:193 msgid "Delivery Date" msgstr "" -#: src/pages/sales/SalesOrderShipmentDetail.tsx:255 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:253 msgid "Shipment Details" msgstr "" -#: src/pages/sales/SalesOrderShipmentDetail.tsx:294 -#: src/pages/sales/SalesOrderShipmentDetail.tsx:438 -#: src/tables/sales/SalesOrderShipmentTable.tsx:90 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:292 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:406 +#: src/tables/sales/SalesOrderShipmentTable.tsx:97 msgid "Edit Shipment" msgstr "" -#: src/pages/sales/SalesOrderShipmentDetail.tsx:301 -#: src/pages/sales/SalesOrderShipmentDetail.tsx:457 -#: src/tables/sales/SalesOrderShipmentTable.tsx:82 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:299 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:425 +#: src/tables/sales/SalesOrderShipmentTable.tsx:89 msgid "Cancel Shipment" msgstr "" -#: src/pages/sales/SalesOrderShipmentDetail.tsx:314 -#: src/tables/sales/SalesOrderShipmentTable.tsx:98 -#: src/tables/sales/SalesOrderShipmentTable.tsx:193 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:312 +#: src/tables/sales/SalesOrderShipmentTable.tsx:119 +#: src/tables/sales/SalesOrderShipmentTable.tsx:238 msgid "Complete Shipment" msgstr "" -#: src/pages/sales/SalesOrderShipmentDetail.tsx:326 -#: src/pages/sales/SalesOrderShipmentDetail.tsx:328 -msgid "Check Shipment" -msgstr "" - -#: src/pages/sales/SalesOrderShipmentDetail.tsx:329 -msgid "Marking the shipment as checked indicates that you have verified that all items included in this shipment are correct" -msgstr "" - #: src/pages/sales/SalesOrderShipmentDetail.tsx:339 -msgid "Shipment marked as checked" -msgstr "" - -#: src/pages/sales/SalesOrderShipmentDetail.tsx:346 -#: src/pages/sales/SalesOrderShipmentDetail.tsx:348 -msgid "Uncheck Shipment" -msgstr "" - -#: src/pages/sales/SalesOrderShipmentDetail.tsx:349 -msgid "Marking the shipment as unchecked indicates that the shipment requires further verification" -msgstr "" - -#: src/pages/sales/SalesOrderShipmentDetail.tsx:359 -msgid "Shipment marked as unchecked" -msgstr "" - -#: src/pages/sales/SalesOrderShipmentDetail.tsx:371 #: src/tables/part/PartPurchaseOrdersTable.tsx:122 msgid "Pending" msgstr "" -#: src/pages/sales/SalesOrderShipmentDetail.tsx:377 -#: src/tables/sales/SalesOrderShipmentTable.tsx:147 -#: src/tables/sales/SalesOrderShipmentTable.tsx:254 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:345 +#: src/tables/sales/SalesOrderShipmentTable.tsx:168 +#: src/tables/sales/SalesOrderShipmentTable.tsx:299 msgid "Checked" msgstr "" -#: src/pages/sales/SalesOrderShipmentDetail.tsx:383 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:351 msgid "Not Checked" msgstr "" -#: src/pages/sales/SalesOrderShipmentDetail.tsx:389 -#: src/tables/sales/SalesOrderShipmentTable.tsx:154 -#: src/tables/sales/SalesOrderShipmentTable.tsx:259 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:357 +#: src/tables/sales/SalesOrderShipmentTable.tsx:175 +#: src/tables/sales/SalesOrderShipmentTable.tsx:304 msgid "Shipped" msgstr "" -#: src/pages/sales/SalesOrderShipmentDetail.tsx:395 -#: src/tables/sales/SalesOrderShipmentTable.tsx:161 -#: src/tables/sales/SalesOrderShipmentTable.tsx:264 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:363 +#: src/tables/sales/SalesOrderShipmentTable.tsx:182 +#: src/tables/sales/SalesOrderShipmentTable.tsx:309 #: src/tables/settings/EmailTable.tsx:31 msgid "Delivered" msgstr "" -#: src/pages/sales/SalesOrderShipmentDetail.tsx:410 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:378 msgid "Send Shipment" msgstr "" -#: src/pages/sales/SalesOrderShipmentDetail.tsx:433 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:401 msgid "Shipment Actions" msgstr "" -#: src/pages/sales/SalesOrderShipmentDetail.tsx:442 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:410 msgid "Check" msgstr "" -#: src/pages/sales/SalesOrderShipmentDetail.tsx:443 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:411 msgid "Mark shipment as checked" msgstr "" -#: src/pages/sales/SalesOrderShipmentDetail.tsx:449 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:417 msgid "Uncheck" msgstr "" -#: src/pages/sales/SalesOrderShipmentDetail.tsx:450 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:418 msgid "Mark shipment as unchecked" msgstr "" @@ -8775,13 +8847,6 @@ msgstr "" msgid "Part is not active" msgstr "" -#: src/tables/ColumnRenderers.tsx:73 -#: src/tables/bom/BomTable.tsx:657 -#: src/tables/part/PartParameterTable.tsx:227 -#: src/tables/part/PartTestTemplateTable.tsx:258 -msgid "Part is Locked" -msgstr "" - #: src/tables/ColumnRenderers.tsx:78 msgid "You are subscribed to notifications for this part" msgstr "" @@ -9219,13 +9284,13 @@ msgstr "" #~ msgstr "Show asssmbled items" #: src/tables/bom/BomTable.tsx:315 -#: src/tables/build/BuildLineTable.tsx:276 +#: src/tables/build/BuildLineTable.tsx:277 #: src/tables/part/PartTable.tsx:145 msgid "External stock" msgstr "" #: src/tables/bom/BomTable.tsx:323 -#: src/tables/build/BuildLineTable.tsx:239 +#: src/tables/build/BuildLineTable.tsx:240 msgid "Includes substitute stock" msgstr "Sisaldab asenduslaosid" @@ -9234,7 +9299,7 @@ msgstr "Sisaldab asenduslaosid" #~ msgstr "Edit Bom Item" #: src/tables/bom/BomTable.tsx:332 -#: src/tables/build/BuildLineTable.tsx:249 +#: src/tables/build/BuildLineTable.tsx:250 #: src/tables/sales/SalesOrderLineItemTable.tsx:166 msgid "Includes variant stock" msgstr "" @@ -9272,8 +9337,8 @@ msgid "Stock Information" msgstr "" #: src/tables/bom/BomTable.tsx:399 -#: src/tables/build/BuildLineTable.tsx:496 -#: src/tables/build/BuildLineTable.tsx:537 +#: src/tables/build/BuildLineTable.tsx:497 +#: src/tables/build/BuildLineTable.tsx:538 msgid "Consumable item" msgstr "" @@ -9282,7 +9347,7 @@ msgid "No available stock" msgstr "" #: src/tables/bom/BomTable.tsx:420 -#: src/tables/build/BuildLineTable.tsx:213 +#: src/tables/build/BuildLineTable.tsx:214 msgid "Show testable items" msgstr "" @@ -9291,7 +9356,7 @@ msgid "Show trackable items" msgstr "" #: src/tables/bom/BomTable.tsx:430 -#: src/tables/build/BuildLineTable.tsx:208 +#: src/tables/build/BuildLineTable.tsx:209 msgid "Show assembled items" msgstr "" @@ -9335,7 +9400,7 @@ msgstr "Näita esemeid, mis lubavad variatsiooni asendamist" #: src/tables/bom/BomTable.tsx:464 #: src/tables/bom/UsedInTable.tsx:85 -#: src/tables/build/BuildLineTable.tsx:202 +#: src/tables/build/BuildLineTable.tsx:203 msgid "Optional" msgstr "Valikuline" @@ -9345,7 +9410,7 @@ msgid "Show optional items" msgstr "" #: src/tables/bom/BomTable.tsx:469 -#: src/tables/build/BuildLineTable.tsx:197 +#: src/tables/build/BuildLineTable.tsx:198 msgid "Consumable" msgstr "" @@ -9420,6 +9485,7 @@ msgid "Add a single BOM item" msgstr "" #: src/tables/bom/BomTable.tsx:637 +#: src/tables/general/ParameterTable.tsx:206 #: src/tables/part/PartTable.tsx:546 msgid "Import from File" msgstr "" @@ -9433,8 +9499,8 @@ msgid "Bill of materials cannot be edited, as the part is locked" msgstr "Tükkide loendit ei saa redigeerida, kuna osa on lukustatud" #: src/tables/bom/UsedInTable.tsx:34 -#: src/tables/build/BuildLineTable.tsx:207 -#: src/tables/part/ParametricPartTable.tsx:364 +#: src/tables/build/BuildLineTable.tsx:208 +#: src/tables/part/ParametricPartTable.tsx:29 #: src/tables/part/PartBuildAllocationsTable.tsx:60 #: src/tables/part/PartTable.tsx:209 #: src/tables/stock/StockItemTable.tsx:333 @@ -9455,11 +9521,11 @@ msgstr "Jälgitav" msgid "Show trackable assemblies" msgstr "Näita jälgitavaid koosteid" -#: src/tables/build/BuildAllocatedStockTable.tsx:67 +#: src/tables/build/BuildAllocatedStockTable.tsx:64 msgid "Allocated to Output" msgstr "" -#: src/tables/build/BuildAllocatedStockTable.tsx:68 +#: src/tables/build/BuildAllocatedStockTable.tsx:65 msgid "Show items allocated to a build output" msgstr "Näita esemete eraldatud ehituse väljundit" @@ -9472,50 +9538,68 @@ msgstr "Näita esemete eraldatud ehituse väljundit" #~ msgid "Include orders for part variants" #~ msgstr "Include orders for part variants" -#: src/tables/build/BuildAllocatedStockTable.tsx:97 +#: src/tables/build/BuildAllocatedStockTable.tsx:94 #: src/tables/part/PartBuildAllocationsTable.tsx:84 #: src/tables/part/PartPurchaseOrdersTable.tsx:132 #: src/tables/part/PartSalesAllocationsTable.tsx:69 #: src/tables/sales/SalesOrderAllocationTable.tsx:122 -#: src/tables/sales/SalesOrderShipmentTable.tsx:130 +#: src/tables/sales/SalesOrderShipmentTable.tsx:151 msgid "Order Status" msgstr "" +#: src/tables/build/BuildAllocatedStockTable.tsx:164 +#: src/tables/build/BuildLineTable.tsx:651 +msgid "Edit Stock Allocation" +msgstr "" + #: src/tables/build/BuildAllocatedStockTable.tsx:164 #~ msgid "Edit Build Item" #~ msgstr "Edit Build Item" -#: src/tables/build/BuildAllocatedStockTable.tsx:167 -#: src/tables/build/BuildLineTable.tsx:650 -msgid "Edit Stock Allocation" -msgstr "" - #: src/tables/build/BuildAllocatedStockTable.tsx:174 #~ msgid "Delete Build Item" #~ msgstr "Delete Build Item" -#: src/tables/build/BuildAllocatedStockTable.tsx:180 -#: src/tables/build/BuildLineTable.tsx:663 -msgid "Delete Stock Allocation" +#: src/tables/build/BuildAllocatedStockTable.tsx:177 +#: src/tables/build/BuildLineTable.tsx:664 +#: src/tables/sales/SalesOrderAllocationTable.tsx:218 +msgid "Remove Allocated Stock" msgstr "" -#: src/tables/build/BuildAllocatedStockTable.tsx:239 +#: src/tables/build/BuildAllocatedStockTable.tsx:180 +#: src/tables/build/BuildLineTable.tsx:663 +#~ msgid "Delete Stock Allocation" +#~ msgstr "Delete Stock Allocation" + +#: src/tables/build/BuildAllocatedStockTable.tsx:182 +#: src/tables/build/BuildLineTable.tsx:669 +#: src/tables/sales/SalesOrderAllocationTable.tsx:221 +msgid "Are you sure you want to remove this allocated stock from the order?" +msgstr "" + +#: src/tables/build/BuildAllocatedStockTable.tsx:242 msgid "Consume" msgstr "" +#: src/tables/build/BuildAllocatedStockTable.tsx:259 +#: src/tables/build/BuildLineTable.tsx:112 +#: src/tables/sales/SalesOrderAllocationTable.tsx:248 +msgid "Remove allocated stock" +msgstr "" + #: src/tables/build/BuildLineTable.tsx:59 #~ msgid "Show lines with available stock" #~ msgstr "Show lines with available stock" -#: src/tables/build/BuildLineTable.tsx:120 +#: src/tables/build/BuildLineTable.tsx:121 msgid "View Stock Item" msgstr "" -#: src/tables/build/BuildLineTable.tsx:183 +#: src/tables/build/BuildLineTable.tsx:184 msgid "Show fully allocated lines" msgstr "" -#: src/tables/build/BuildLineTable.tsx:188 +#: src/tables/build/BuildLineTable.tsx:189 msgid "Show fully consumed lines" msgstr "" @@ -9523,124 +9607,124 @@ msgstr "" #~ msgid "Show allocated lines" #~ msgstr "Show allocated lines" -#: src/tables/build/BuildLineTable.tsx:193 +#: src/tables/build/BuildLineTable.tsx:194 msgid "Show items with sufficient available stock" msgstr "" -#: src/tables/build/BuildLineTable.tsx:198 +#: src/tables/build/BuildLineTable.tsx:199 msgid "Show consumable lines" msgstr "" -#: src/tables/build/BuildLineTable.tsx:203 +#: src/tables/build/BuildLineTable.tsx:204 msgid "Show optional lines" msgstr "" -#: src/tables/build/BuildLineTable.tsx:212 +#: src/tables/build/BuildLineTable.tsx:213 #: src/tables/part/PartTable.tsx:233 msgid "Testable" msgstr "" -#: src/tables/build/BuildLineTable.tsx:217 +#: src/tables/build/BuildLineTable.tsx:218 #: src/tables/stock/StockItemTable.tsx:388 msgid "Tracked" msgstr "" -#: src/tables/build/BuildLineTable.tsx:218 +#: src/tables/build/BuildLineTable.tsx:219 msgid "Show tracked lines" msgstr "" -#: src/tables/build/BuildLineTable.tsx:223 +#: src/tables/build/BuildLineTable.tsx:224 msgid "Show items with stock on order" msgstr "" -#: src/tables/build/BuildLineTable.tsx:258 +#: src/tables/build/BuildLineTable.tsx:259 #: src/tables/sales/SalesOrderLineItemTable.tsx:172 msgid "In production" msgstr "" -#: src/tables/build/BuildLineTable.tsx:286 +#: src/tables/build/BuildLineTable.tsx:287 msgid "Insufficient stock" msgstr "" -#: src/tables/build/BuildLineTable.tsx:302 +#: src/tables/build/BuildLineTable.tsx:303 #: src/tables/sales/SalesOrderLineItemTable.tsx:160 #: src/tables/stock/StockItemTable.tsx:191 msgid "No stock available" msgstr "" -#: src/tables/build/BuildLineTable.tsx:375 +#: src/tables/build/BuildLineTable.tsx:376 msgid "Gets Inherited" msgstr "" -#: src/tables/build/BuildLineTable.tsx:388 +#: src/tables/build/BuildLineTable.tsx:389 msgid "Unit Quantity" msgstr "" -#: src/tables/build/BuildLineTable.tsx:415 +#: src/tables/build/BuildLineTable.tsx:416 msgid "Setup Quantity" msgstr "" -#: src/tables/build/BuildLineTable.tsx:424 +#: src/tables/build/BuildLineTable.tsx:425 msgid "Attrition" msgstr "" -#: src/tables/build/BuildLineTable.tsx:432 +#: src/tables/build/BuildLineTable.tsx:433 msgid "Rounding Multiple" msgstr "" -#: src/tables/build/BuildLineTable.tsx:441 +#: src/tables/build/BuildLineTable.tsx:442 msgid "BOM Information" msgstr "" -#: src/tables/build/BuildLineTable.tsx:515 +#: src/tables/build/BuildLineTable.tsx:516 #: src/tables/part/PartBuildAllocationsTable.tsx:102 msgid "Fully allocated" msgstr "" -#: src/tables/build/BuildLineTable.tsx:563 +#: src/tables/build/BuildLineTable.tsx:564 #: src/tables/sales/SalesOrderLineItemTable.tsx:311 msgid "Create Build Order" msgstr "" -#: src/tables/build/BuildLineTable.tsx:592 +#: src/tables/build/BuildLineTable.tsx:593 msgid "Auto allocation in progress" msgstr "Automaatne eraldamine on käimas" -#: src/tables/build/BuildLineTable.tsx:595 -#: src/tables/build/BuildLineTable.tsx:802 +#: src/tables/build/BuildLineTable.tsx:596 +#: src/tables/build/BuildLineTable.tsx:809 msgid "Auto Allocate Stock" msgstr "" -#: src/tables/build/BuildLineTable.tsx:596 +#: src/tables/build/BuildLineTable.tsx:597 msgid "Automatically allocate stock to this build according to the selected options" msgstr "Määra laoseis sellele koostetellimusele automaatselt vastavalt valitud valikutele" -#: src/tables/build/BuildLineTable.tsx:616 -#: src/tables/build/BuildLineTable.tsx:630 -#: src/tables/build/BuildLineTable.tsx:751 -#: src/tables/build/BuildLineTable.tsx:852 +#: src/tables/build/BuildLineTable.tsx:617 +#: src/tables/build/BuildLineTable.tsx:631 +#: src/tables/build/BuildLineTable.tsx:758 +#: src/tables/build/BuildLineTable.tsx:859 #: src/tables/build/BuildOutputTable.tsx:355 #: src/tables/build/BuildOutputTable.tsx:360 msgid "Deallocate Stock" msgstr "" -#: src/tables/build/BuildLineTable.tsx:632 +#: src/tables/build/BuildLineTable.tsx:633 msgid "Deallocate all untracked stock for this build order" msgstr "Tühista kõik jälgimata laoseisu eraldised selle koostetellimuse jaoks" -#: src/tables/build/BuildLineTable.tsx:634 +#: src/tables/build/BuildLineTable.tsx:635 msgid "Deallocate stock from the selected line item" msgstr "Tühista laoseisu eraldamine valitud reaüksusest" -#: src/tables/build/BuildLineTable.tsx:638 +#: src/tables/build/BuildLineTable.tsx:639 msgid "Stock has been deallocated" msgstr "Laoseisu eraldamine on tühistatud" -#: src/tables/build/BuildLineTable.tsx:771 +#: src/tables/build/BuildLineTable.tsx:778 msgid "Build Stock" msgstr "" -#: src/tables/build/BuildLineTable.tsx:784 +#: src/tables/build/BuildLineTable.tsx:791 #: src/tables/sales/SalesOrderLineItemTable.tsx:487 msgid "View Part" msgstr "" @@ -9739,7 +9823,7 @@ msgid "Serialize Build Output" msgstr "" #: src/tables/build/BuildOutputTable.tsx:405 -#: src/tables/part/PartTestResultTable.tsx:310 +#: src/tables/part/PartTestResultTable.tsx:318 #: src/tables/stock/StockItemTable.tsx:328 msgid "Filter by stock status" msgstr "" @@ -9964,8 +10048,8 @@ msgid "View Item" msgstr "" #: src/tables/general/ExtraLineItemTable.tsx:95 -#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:299 -#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:403 +#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:300 +#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:405 #: src/tables/sales/ReturnOrderLineItemTable.tsx:83 #: src/tables/sales/ReturnOrderLineItemTable.tsx:187 #: src/tables/sales/SalesOrderLineItemTable.tsx:252 @@ -9974,14 +10058,14 @@ msgid "Add Line Item" msgstr "" #: src/tables/general/ExtraLineItemTable.tsx:108 -#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:320 +#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:322 #: src/tables/sales/ReturnOrderLineItemTable.tsx:96 #: src/tables/sales/SalesOrderLineItemTable.tsx:271 msgid "Edit Line Item" msgstr "" #: src/tables/general/ExtraLineItemTable.tsx:117 -#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:329 +#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:331 #: src/tables/sales/ReturnOrderLineItemTable.tsx:105 #: src/tables/sales/SalesOrderLineItemTable.tsx:280 msgid "Delete Line Item" @@ -9991,6 +10075,137 @@ msgstr "" msgid "Add Extra Line Item" msgstr "" +#: src/tables/general/ParameterTable.tsx:88 +msgid "Internal Units" +msgstr "" + +#: src/tables/general/ParameterTable.tsx:108 +#: src/tables/general/ParameterTable.tsx:123 +msgid "Updated By" +msgstr "" + +#: src/tables/general/ParameterTable.tsx:118 +msgid "Show parameters for enabled templates" +msgstr "" + +#: src/tables/general/ParameterTable.tsx:124 +msgid "Filter by user who last updated the parameter" +msgstr "" + +#: src/tables/general/ParameterTable.tsx:154 +msgid "Import Parameters" +msgstr "" + +#: src/tables/general/ParameterTable.tsx:164 +#: src/tables/general/ParametricDataTable.tsx:261 +#: src/tables/general/ParametricDataTable.tsx:392 +msgid "Add Parameter" +msgstr "" + +#: src/tables/general/ParameterTable.tsx:175 +#: src/tables/general/ParameterTable.tsx:222 +#: src/tables/general/ParametricDataTable.tsx:285 +msgid "Edit Parameter" +msgstr "" + +#: src/tables/general/ParameterTable.tsx:183 +#: src/tables/general/ParameterTable.tsx:230 +msgid "Delete Parameter" +msgstr "" + +#: src/tables/general/ParameterTable.tsx:191 +msgid "Add Parameters" +msgstr "" + +#: src/tables/general/ParameterTable.tsx:197 +msgid "Create Parameter" +msgstr "" + +#: src/tables/general/ParameterTable.tsx:199 +msgid "Create a new parameter" +msgstr "" + +#: src/tables/general/ParameterTable.tsx:208 +msgid "Import parameters from a file" +msgstr "" + +#: src/tables/general/ParameterTemplateTable.tsx:48 +#: src/tables/general/ParameterTemplateTable.tsx:197 +msgid "Add Parameter Template" +msgstr "" + +#: src/tables/general/ParameterTemplateTable.tsx:64 +msgid "Duplicate Parameter Template" +msgstr "" + +#: src/tables/general/ParameterTemplateTable.tsx:78 +msgid "Delete Parameter Template" +msgstr "Kustuta parameetrite mall" + +#: src/tables/general/ParameterTemplateTable.tsx:85 +msgid "Edit Parameter Template" +msgstr "Muuda parameetri mall" + +#: src/tables/general/ParameterTemplateTable.tsx:138 +msgid "Checkbox" +msgstr "" + +#: src/tables/general/ParameterTemplateTable.tsx:139 +msgid "Show checkbox templates" +msgstr "Näita märkeruutude malle" + +#: src/tables/general/ParameterTemplateTable.tsx:143 +msgid "Has choices" +msgstr "" + +#: src/tables/general/ParameterTemplateTable.tsx:144 +msgid "Show templates with choices" +msgstr "Kuva valikuga mallid" + +#: src/tables/general/ParameterTemplateTable.tsx:148 +#: src/tables/part/PartTable.tsx:245 +msgid "Has Units" +msgstr "" + +#: src/tables/general/ParameterTemplateTable.tsx:149 +msgid "Show templates with units" +msgstr "Näita malle ühikutega" + +#: src/tables/general/ParameterTemplateTable.tsx:154 +msgid "Show enabled templates" +msgstr "" + +#: src/tables/general/ParameterTemplateTable.tsx:158 +#: src/tables/settings/ImportSessionTable.tsx:111 +#: src/tables/settings/TemplateTable.tsx:368 +msgid "Model Type" +msgstr "" + +#: src/tables/general/ParameterTemplateTable.tsx:159 +msgid "Filter by model type" +msgstr "" + +#: src/tables/general/ParametricDataTable.tsx:79 +msgid "Click to edit" +msgstr "Muutmiseks kliki" + +#: src/tables/general/ParametricDataTableFilters.tsx:36 +msgid "True" +msgstr "" + +#: src/tables/general/ParametricDataTableFilters.tsx:37 +msgid "False" +msgstr "" + +#: src/tables/general/ParametricDataTableFilters.tsx:47 +#: src/tables/general/ParametricDataTableFilters.tsx:80 +msgid "Select a choice" +msgstr "" + +#: src/tables/general/ParametricDataTableFilters.tsx:100 +msgid "Enter a value" +msgstr "" + #: src/tables/machine/MachineListTable.tsx:133 msgid "Machine restarted" msgstr "" @@ -10071,7 +10286,7 @@ msgid "Initialized" msgstr "" #: src/tables/machine/MachineListTable.tsx:410 -#: src/tables/machine/MachineTypeTable.tsx:307 +#: src/tables/machine/MachineTypeTable.tsx:305 msgid "No errors reported" msgstr "" @@ -10132,15 +10347,15 @@ msgstr "" #~ msgid "Machine type information" #~ msgstr "Machine type information" -#: src/tables/machine/MachineTypeTable.tsx:128 +#: src/tables/machine/MachineTypeTable.tsx:126 msgid "Not Found" msgstr "" -#: src/tables/machine/MachineTypeTable.tsx:131 +#: src/tables/machine/MachineTypeTable.tsx:129 msgid "Machine type not found." msgstr "Seadme tüüpi ei leitud." -#: src/tables/machine/MachineTypeTable.tsx:141 +#: src/tables/machine/MachineTypeTable.tsx:139 msgid "Machine Type Information" msgstr "" @@ -10148,34 +10363,34 @@ msgstr "" #~ msgid "Available drivers" #~ msgstr "Available drivers" -#: src/tables/machine/MachineTypeTable.tsx:156 -#: src/tables/machine/MachineTypeTable.tsx:255 +#: src/tables/machine/MachineTypeTable.tsx:154 +#: src/tables/machine/MachineTypeTable.tsx:253 msgid "Slug" msgstr "" -#: src/tables/machine/MachineTypeTable.tsx:167 -#: src/tables/machine/MachineTypeTable.tsx:276 +#: src/tables/machine/MachineTypeTable.tsx:165 +#: src/tables/machine/MachineTypeTable.tsx:274 msgid "Provider plugin" msgstr "" -#: src/tables/machine/MachineTypeTable.tsx:179 -#: src/tables/machine/MachineTypeTable.tsx:288 +#: src/tables/machine/MachineTypeTable.tsx:177 +#: src/tables/machine/MachineTypeTable.tsx:286 msgid "Provider file" msgstr "" -#: src/tables/machine/MachineTypeTable.tsx:194 +#: src/tables/machine/MachineTypeTable.tsx:192 msgid "Available Drivers" msgstr "" -#: src/tables/machine/MachineTypeTable.tsx:234 +#: src/tables/machine/MachineTypeTable.tsx:232 msgid "Machine driver not found." msgstr "Masinajuhti ei leitud." -#: src/tables/machine/MachineTypeTable.tsx:242 +#: src/tables/machine/MachineTypeTable.tsx:240 msgid "Machine driver information" msgstr "Masinajuhi informatsioon" -#: src/tables/machine/MachineTypeTable.tsx:262 +#: src/tables/machine/MachineTypeTable.tsx:260 msgid "Machine type" msgstr "" @@ -10187,15 +10402,15 @@ msgstr "" #~ msgid "Machine driver detail" #~ msgstr "Machine driver detail" -#: src/tables/machine/MachineTypeTable.tsx:362 +#: src/tables/machine/MachineTypeTable.tsx:360 msgid "Builtin type" msgstr "" -#: src/tables/machine/MachineTypeTable.tsx:371 +#: src/tables/machine/MachineTypeTable.tsx:369 msgid "Machine Type Detail" msgstr "" -#: src/tables/machine/MachineTypeTable.tsx:381 +#: src/tables/machine/MachineTypeTable.tsx:379 msgid "Machine Driver Detail" msgstr "" @@ -10213,52 +10428,31 @@ msgstr "Teavitus" msgid "Message" msgstr "Sõnum" -#: src/tables/part/ParametricPartTable.tsx:78 -msgid "Click to edit" -msgstr "Muutmiseks kliki" +#: src/tables/part/ParametricPartTable.tsx:20 +msgid "Show active parts" +msgstr "" + +#: src/tables/part/ParametricPartTable.tsx:25 +msgid "Show locked parts" +msgstr "" + +#: src/tables/part/ParametricPartTable.tsx:30 +msgid "Show assembly parts" +msgstr "" #: src/tables/part/ParametricPartTable.tsx:82 #~ msgid "Edit parameter" #~ msgstr "Edit parameter" #: src/tables/part/ParametricPartTable.tsx:244 -msgid "Add Part Parameter" -msgstr "Lisa Osa Parameeter" +#~ msgid "Add Part Parameter" +#~ msgstr "Add Part Parameter" #: src/tables/part/ParametricPartTable.tsx:258 #: src/tables/part/PartParameterTable.tsx:164 #: src/tables/part/PartParameterTable.tsx:187 -msgid "Edit Part Parameter" -msgstr "" - -#: src/tables/part/ParametricPartTable.tsx:355 -msgid "Show active parts" -msgstr "" - -#: src/tables/part/ParametricPartTable.tsx:360 -msgid "Show locked parts" -msgstr "" - -#: src/tables/part/ParametricPartTable.tsx:365 -msgid "Show assembly parts" -msgstr "" - -#: src/tables/part/ParametricPartTableFilters.tsx:36 -msgid "True" -msgstr "" - -#: src/tables/part/ParametricPartTableFilters.tsx:37 -msgid "False" -msgstr "" - -#: src/tables/part/ParametricPartTableFilters.tsx:47 -#: src/tables/part/ParametricPartTableFilters.tsx:80 -msgid "Select a choice" -msgstr "" - -#: src/tables/part/ParametricPartTableFilters.tsx:100 -msgid "Enter a value" -msgstr "" +#~ msgid "Edit Part Parameter" +#~ msgstr "Edit Part Parameter" #: src/tables/part/PartBuildAllocationsTable.tsx:64 msgid "Assembly IPN" @@ -10273,7 +10467,7 @@ msgid "Required Stock" msgstr "" #: src/tables/part/PartBuildAllocationsTable.tsx:124 -#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:381 +#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:383 msgid "View Build Order" msgstr "" @@ -10332,85 +10526,22 @@ msgstr "Muuda kategooria parameetrit" msgid "Delete Category Parameter" msgstr "Kustuta kategooria parameeter" -#: src/tables/part/PartCategoryTemplateTable.tsx:87 -msgid "Parameter Template" -msgstr "Parameetri mall" - #: src/tables/part/PartCategoryTemplateTable.tsx:93 #~ msgid "[{0}]" #~ msgstr "[{0}]" -#: src/tables/part/PartParameterTable.tsx:108 -msgid "Internal Units" -msgstr "" - -#: src/tables/part/PartParameterTable.tsx:128 -#: src/tables/part/PartParameterTable.tsx:138 -msgid "Updated By" -msgstr "" - -#: src/tables/part/PartParameterTable.tsx:139 -msgid "Filter by user who last updated the parameter" -msgstr "" - #: src/tables/part/PartParameterTable.tsx:148 -msgid "New Part Parameter" -msgstr "Uus Osa Parameeter" +#~ msgid "New Part Parameter" +#~ msgstr "New Part Parameter" #: src/tables/part/PartParameterTable.tsx:173 #: src/tables/part/PartParameterTable.tsx:195 -msgid "Delete Part Parameter" -msgstr "" +#~ msgid "Delete Part Parameter" +#~ msgstr "Delete Part Parameter" #: src/tables/part/PartParameterTable.tsx:213 -msgid "Add parameter" -msgstr "Lisa parameeter" - -#: src/tables/part/PartParameterTable.tsx:232 -msgid "Part parameters cannot be edited, as the part is locked" -msgstr "Osale osade parameetreid ei saa muuta, kuna osa on lukus" - -#: src/tables/part/PartParameterTemplateTable.tsx:36 -msgid "Checkbox" -msgstr "" - -#: src/tables/part/PartParameterTemplateTable.tsx:37 -msgid "Show checkbox templates" -msgstr "Näita märkeruutude malle" - -#: src/tables/part/PartParameterTemplateTable.tsx:41 -msgid "Has choices" -msgstr "" - -#: src/tables/part/PartParameterTemplateTable.tsx:42 -msgid "Show templates with choices" -msgstr "Kuva valikuga mallid" - -#: src/tables/part/PartParameterTemplateTable.tsx:46 -#: src/tables/part/PartTable.tsx:245 -msgid "Has Units" -msgstr "" - -#: src/tables/part/PartParameterTemplateTable.tsx:47 -msgid "Show templates with units" -msgstr "Näita malle ühikutega" - -#: src/tables/part/PartParameterTemplateTable.tsx:91 -#: src/tables/part/PartParameterTemplateTable.tsx:166 -msgid "Add Parameter Template" -msgstr "" - -#: src/tables/part/PartParameterTemplateTable.tsx:105 -msgid "Duplicate Parameter Template" -msgstr "" - -#: src/tables/part/PartParameterTemplateTable.tsx:117 -msgid "Edit Parameter Template" -msgstr "Muuda parameetri mall" - -#: src/tables/part/PartParameterTemplateTable.tsx:128 -msgid "Delete Parameter Template" -msgstr "Kustuta parameetrite mall" +#~ msgid "Add parameter" +#~ msgstr "Add parameter" #: src/tables/part/PartParameterTemplateTable.tsx:141 #~ msgid "Add parameter template" @@ -10430,7 +10561,7 @@ msgid "Show received items" msgstr "" #: src/tables/part/PartSalesAllocationsTable.tsx:90 -#: src/tables/sales/SalesOrderShipmentTable.tsx:218 +#: src/tables/sales/SalesOrderShipmentTable.tsx:263 msgid "View Sales Order" msgstr "" @@ -10617,8 +10748,8 @@ msgstr "" #: src/tables/part/PartTestResultTable.tsx:103 #: src/tables/part/PartTestResultTable.tsx:181 -#: src/tables/part/PartTestResultTable.tsx:320 -#: src/tables/part/PartTestResultTable.tsx:334 +#: src/tables/part/PartTestResultTable.tsx:328 +#: src/tables/part/PartTestResultTable.tsx:342 #: src/tables/stock/StockItemTestResultTable.tsx:296 #: src/tables/stock/StockItemTestResultTable.tsx:368 #: src/tables/stock/StockItemTestResultTable.tsx:429 @@ -10643,7 +10774,7 @@ msgstr "" msgid "No Result" msgstr "Tulemus puudub" -#: src/tables/part/PartTestResultTable.tsx:298 +#: src/tables/part/PartTestResultTable.tsx:306 msgid "Show build outputs currently in production" msgstr "Kuva praegu tootmises olevad ehitustulemid" @@ -11013,36 +11144,45 @@ msgstr "Paigaldatud" #~ msgid "Parameter updated" #~ msgstr "Parameter updated" -#: src/tables/purchasing/ManufacturerPartParameterTable.tsx:63 -#: src/tables/purchasing/ManufacturerPartParameterTable.tsx:112 -msgid "Add Parameter" -msgstr "" - #: src/tables/purchasing/ManufacturerPartParameterTable.tsx:73 #~ msgid "Parameter deleted" #~ msgstr "Parameter deleted" -#: src/tables/purchasing/ManufacturerPartParameterTable.tsx:74 -msgid "Edit Parameter" -msgstr "" - #: src/tables/purchasing/ManufacturerPartParameterTable.tsx:74 #~ msgid "Are you sure you want to delete this parameter?" #~ msgstr "Are you sure you want to delete this parameter?" -#: src/tables/purchasing/ManufacturerPartParameterTable.tsx:82 -msgid "Delete Parameter" +#: src/tables/purchasing/ManufacturerPartParametricTable.tsx:34 +#: src/tables/purchasing/ManufacturerPartTable.tsx:82 +#: src/tables/purchasing/SupplierPartTable.tsx:99 +msgid "MPN" +msgstr "" + +#: src/tables/purchasing/ManufacturerPartParametricTable.tsx:44 +#: src/tables/purchasing/ManufacturerPartTable.tsx:134 +#: src/tables/purchasing/SupplierPartTable.tsx:220 +msgid "Active Part" +msgstr "" + +#: src/tables/purchasing/ManufacturerPartParametricTable.tsx:45 +#: src/tables/purchasing/ManufacturerPartTable.tsx:135 +msgid "Show manufacturer parts for active internal parts." +msgstr "" + +#: src/tables/purchasing/ManufacturerPartParametricTable.tsx:50 +#: src/tables/purchasing/ManufacturerPartTable.tsx:140 +msgid "Active Manufacturer" +msgstr "" + +#: src/tables/purchasing/ManufacturerPartParametricTable.tsx:51 +#: src/tables/purchasing/ManufacturerPartTable.tsx:142 +msgid "Show manufacturer parts for active manufacturers." msgstr "" #: src/tables/purchasing/ManufacturerPartTable.tsx:63 #~ msgid "Create Manufacturer Part" #~ msgstr "Create Manufacturer Part" -#: src/tables/purchasing/ManufacturerPartTable.tsx:82 -#: src/tables/purchasing/SupplierPartTable.tsx:99 -msgid "MPN" -msgstr "" - #: src/tables/purchasing/ManufacturerPartTable.tsx:100 #~ msgid "Manufacturer part updated" #~ msgstr "Manufacturer part updated" @@ -11055,25 +11195,8 @@ msgstr "" #~ msgid "Are you sure you want to remove this manufacturer part?" #~ msgstr "Are you sure you want to remove this manufacturer part?" -#: src/tables/purchasing/ManufacturerPartTable.tsx:134 -#: src/tables/purchasing/SupplierPartTable.tsx:220 -msgid "Active Part" -msgstr "" - -#: src/tables/purchasing/ManufacturerPartTable.tsx:135 -msgid "Show manufacturer parts for active internal parts." -msgstr "" - -#: src/tables/purchasing/ManufacturerPartTable.tsx:140 -msgid "Active Manufacturer" -msgstr "" - -#: src/tables/purchasing/ManufacturerPartTable.tsx:142 -msgid "Show manufacturer parts for active manufacturers." -msgstr "" - #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:115 -#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:397 +#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:399 msgid "Import Line Items" msgstr "" @@ -11099,11 +11222,11 @@ msgstr "" #~ msgid "Add line item" #~ msgstr "Add line item" -#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:350 +#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:352 msgid "Receive line item" msgstr "" -#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:414 +#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:416 msgid "Receive items" msgstr "" @@ -11201,25 +11324,25 @@ msgid "Not shipped" msgstr "" #: src/tables/sales/SalesOrderAllocationTable.tsx:211 -#: src/tables/sales/SalesOrderAllocationTable.tsx:229 +#: src/tables/sales/SalesOrderAllocationTable.tsx:235 msgid "Edit Allocation" msgstr "" #: src/tables/sales/SalesOrderAllocationTable.tsx:218 #: src/tables/sales/SalesOrderAllocationTable.tsx:241 -msgid "Delete Allocation" -msgstr "" +#~ msgid "Delete Allocation" +#~ msgstr "Delete Allocation" -#: src/tables/sales/SalesOrderAllocationTable.tsx:252 -#: src/tables/sales/SalesOrderAllocationTable.tsx:253 +#: src/tables/sales/SalesOrderAllocationTable.tsx:261 +#: src/tables/sales/SalesOrderAllocationTable.tsx:262 msgid "View Shipment" msgstr "" -#: src/tables/sales/SalesOrderAllocationTable.tsx:308 +#: src/tables/sales/SalesOrderAllocationTable.tsx:317 msgid "Assign to Shipment" msgstr "" -#: src/tables/sales/SalesOrderAllocationTable.tsx:324 +#: src/tables/sales/SalesOrderAllocationTable.tsx:333 msgid "Assign to shipment" msgstr "" @@ -11259,35 +11382,35 @@ msgstr "Tellige varu" #~ msgid "Delete Shipment" #~ msgstr "Delete Shipment" -#: src/tables/sales/SalesOrderShipmentTable.tsx:72 +#: src/tables/sales/SalesOrderShipmentTable.tsx:79 msgid "Create Shipment" msgstr "" -#: src/tables/sales/SalesOrderShipmentTable.tsx:143 +#: src/tables/sales/SalesOrderShipmentTable.tsx:164 msgid "Items" msgstr "" -#: src/tables/sales/SalesOrderShipmentTable.tsx:203 +#: src/tables/sales/SalesOrderShipmentTable.tsx:248 msgid "Edit shipment" msgstr "" -#: src/tables/sales/SalesOrderShipmentTable.tsx:211 +#: src/tables/sales/SalesOrderShipmentTable.tsx:256 msgid "Cancel shipment" msgstr "" -#: src/tables/sales/SalesOrderShipmentTable.tsx:241 +#: src/tables/sales/SalesOrderShipmentTable.tsx:286 msgid "Add shipment" msgstr "" -#: src/tables/sales/SalesOrderShipmentTable.tsx:255 +#: src/tables/sales/SalesOrderShipmentTable.tsx:300 msgid "Show shipments which have been checked" msgstr "" -#: src/tables/sales/SalesOrderShipmentTable.tsx:260 +#: src/tables/sales/SalesOrderShipmentTable.tsx:305 msgid "Show shipments which have been shipped" msgstr "Näita saadetisi, mis on laevatatud" -#: src/tables/sales/SalesOrderShipmentTable.tsx:265 +#: src/tables/sales/SalesOrderShipmentTable.tsx:310 msgid "Show shipments which have been delivered" msgstr "Näita saadetisi, mis on kätte toimetatud" @@ -11621,11 +11744,6 @@ msgstr "Üles laaditud" msgid "Imported Rows" msgstr "Imporditud read" -#: src/tables/settings/ImportSessionTable.tsx:111 -#: src/tables/settings/TemplateTable.tsx:368 -msgid "Model Type" -msgstr "" - #: src/tables/settings/ImportSessionTable.tsx:112 #: src/tables/settings/TemplateTable.tsx:369 msgid "Filter by target model type" diff --git a/src/frontend/src/locales/fa/messages.po b/src/frontend/src/locales/fa/messages.po index 87d7679bdd..fc8e2db736 100644 --- a/src/frontend/src/locales/fa/messages.po +++ b/src/frontend/src/locales/fa/messages.po @@ -8,7 +8,7 @@ msgstr "" "Language: fa\n" "Project-Id-Version: inventree\n" "Report-Msgid-Bugs-To: \n" -"PO-Revision-Date: 2025-11-19 19:39\n" +"PO-Revision-Date: 2025-12-07 07:36\n" "Last-Translator: \n" "Language-Team: Persian\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" @@ -30,7 +30,7 @@ msgid "Edit" msgstr "" #: lib/components/RowActions.tsx:56 -#: src/components/forms/ApiForm.tsx:735 +#: src/components/forms/ApiForm.tsx:754 #: src/components/items/ActionDropdown.tsx:257 #: src/components/items/RoleTable.tsx:155 #: src/hooks/UseForm.tsx:164 @@ -56,24 +56,24 @@ msgstr "" #: lib/components/RowActions.tsx:136 #: src/components/nav/NavigationDrawer.tsx:190 -#: src/forms/PurchaseOrderForms.tsx:802 +#: src/forms/PurchaseOrderForms.tsx:854 #: src/forms/StockForms.tsx:796 #: src/forms/StockForms.tsx:843 -#: src/forms/StockForms.tsx:889 -#: src/forms/StockForms.tsx:928 -#: src/forms/StockForms.tsx:964 -#: src/forms/StockForms.tsx:1050 +#: src/forms/StockForms.tsx:896 +#: src/forms/StockForms.tsx:942 +#: src/forms/StockForms.tsx:980 +#: src/forms/StockForms.tsx:1066 #: src/pages/Index/Settings/AccountSettings/MFASettings.tsx:962 msgid "Actions" msgstr "" #: lib/components/SearchInput.tsx:34 -#: src/components/forms/fields/RelatedModelField.tsx:408 +#: src/components/forms/fields/RelatedModelField.tsx:479 #: src/components/nav/Header.tsx:169 #: src/components/wizards/ImportPartWizard.tsx:200 #: src/components/wizards/ImportPartWizard.tsx:233 -#: src/pages/Index/Settings/UserSettings.tsx:74 -#: src/pages/part/PartDetail.tsx:1155 +#: src/pages/Index/Settings/UserSettings.tsx:75 +#: src/pages/part/PartDetail.tsx:1176 msgid "Search" msgstr "" @@ -95,7 +95,7 @@ msgstr "" msgid "No" msgstr "" -#: lib/enums/ModelInformation.tsx:28 +#: lib/enums/ModelInformation.tsx:29 #: src/components/wizards/OrderPartsWizard.tsx:279 #: src/forms/BuildForms.tsx:332 #: src/forms/BuildForms.tsx:407 @@ -103,208 +103,234 @@ msgstr "" #: src/forms/BuildForms.tsx:630 #: src/forms/BuildForms.tsx:793 #: src/forms/BuildForms.tsx:896 -#: src/forms/PurchaseOrderForms.tsx:798 +#: src/forms/PurchaseOrderForms.tsx:850 #: src/forms/ReturnOrderForms.tsx:242 -#: src/forms/SalesOrderForms.tsx:305 +#: src/forms/SalesOrderForms.tsx:384 #: src/forms/StockForms.tsx:360 #: src/forms/StockForms.tsx:791 #: src/forms/StockForms.tsx:838 -#: src/forms/StockForms.tsx:884 -#: src/forms/StockForms.tsx:923 -#: src/forms/StockForms.tsx:959 -#: src/forms/StockForms.tsx:1002 -#: src/forms/StockForms.tsx:1046 -#: src/forms/StockForms.tsx:1094 -#: src/forms/StockForms.tsx:1138 -#: src/pages/build/BuildDetail.tsx:200 -#: src/pages/part/PartDetail.tsx:1207 +#: src/forms/StockForms.tsx:891 +#: src/forms/StockForms.tsx:937 +#: src/forms/StockForms.tsx:975 +#: src/forms/StockForms.tsx:1018 +#: src/forms/StockForms.tsx:1062 +#: src/forms/StockForms.tsx:1110 +#: src/forms/StockForms.tsx:1154 +#: src/pages/build/BuildDetail.tsx:201 +#: src/pages/part/PartDetail.tsx:1228 #: src/tables/ColumnRenderers.tsx:91 +#: src/tables/part/PartTestResultTable.tsx:247 #: src/tables/part/RelatedPartTable.tsx:53 #: src/tables/stock/StockTrackingTable.tsx:87 msgid "Part" msgstr "" -#: lib/enums/ModelInformation.tsx:29 +#: lib/enums/ModelInformation.tsx:30 #: lib/enums/Roles.tsx:35 #: src/components/nav/NavigationDrawer.tsx:70 #: src/defaults/links.tsx:36 -#: src/pages/Index/Settings/SystemSettings.tsx:190 -#: src/pages/part/CategoryDetail.tsx:132 -#: src/pages/part/CategoryDetail.tsx:277 -#: src/pages/part/CategoryDetail.tsx:323 -#: src/pages/part/CategoryDetail.tsx:354 -#: src/pages/part/PartDetail.tsx:965 +#: src/pages/Index/Settings/SystemSettings.tsx:197 +#: src/pages/part/CategoryDetail.tsx:135 +#: src/pages/part/CategoryDetail.tsx:285 +#: src/pages/part/CategoryDetail.tsx:340 +#: src/pages/part/CategoryDetail.tsx:371 +#: src/pages/part/PartDetail.tsx:978 msgid "Parts" msgstr "" #: lib/enums/ModelInformation.tsx:37 #: src/pages/Index/Settings/AdminCenter/PartParameterPanel.tsx:13 -msgid "Part Parameter Template" -msgstr "" +#~ msgid "Part Parameter Template" +#~ msgstr "Part Parameter Template" #: lib/enums/ModelInformation.tsx:38 -msgid "Part Parameter Templates" +#~ msgid "Part Parameter Templates" +#~ msgstr "Part Parameter Templates" + +#: lib/enums/ModelInformation.tsx:39 +msgid "Parameter" +msgstr "" + +#: lib/enums/ModelInformation.tsx:40 +#: src/components/panels/ParametersPanel.tsx:19 +#: src/components/wizards/ImportPartWizard.tsx:807 +#: src/pages/Index/Settings/AdminCenter/Index.tsx:195 +#: src/pages/Index/Settings/SystemSettings.tsx:191 +#: src/pages/part/PartDetail.tsx:943 +msgid "Parameters" msgstr "" #: lib/enums/ModelInformation.tsx:45 -msgid "Part Test Template" +#: src/tables/part/PartCategoryTemplateTable.tsx:87 +msgid "Parameter Template" msgstr "" #: lib/enums/ModelInformation.tsx:46 -msgid "Part Test Templates" +#: src/pages/Index/Settings/AdminCenter/ParameterPanel.tsx:13 +msgid "Parameter Templates" msgstr "" #: lib/enums/ModelInformation.tsx:52 +msgid "Part Test Template" +msgstr "" + +#: lib/enums/ModelInformation.tsx:53 +msgid "Part Test Templates" +msgstr "" + +#: lib/enums/ModelInformation.tsx:59 #: src/components/wizards/OrderPartsWizard.tsx:290 -#: src/pages/company/SupplierPartDetail.tsx:413 +#: src/pages/company/SupplierPartDetail.tsx:418 #: src/pages/stock/StockDetail.tsx:289 -#: src/tables/build/BuildAllocatedStockTable.tsx:155 +#: src/tables/build/BuildAllocatedStockTable.tsx:152 #: src/tables/part/PartPurchaseOrdersTable.tsx:50 +#: src/tables/purchasing/SupplierPartParametricTable.tsx:29 #: src/tables/purchasing/SupplierPartTable.tsx:83 #: src/tables/stock/StockItemTable.tsx:247 msgid "Supplier Part" msgstr "" -#: lib/enums/ModelInformation.tsx:53 -#: src/pages/purchasing/PurchasingIndex.tsx:92 +#: lib/enums/ModelInformation.tsx:60 +#: src/pages/purchasing/PurchasingIndex.tsx:128 msgid "Supplier Parts" msgstr "" -#: lib/enums/ModelInformation.tsx:61 -#: src/pages/company/ManufacturerPartDetail.tsx:297 -#: src/pages/company/SupplierPartDetail.tsx:161 +#: lib/enums/ModelInformation.tsx:69 +#: src/pages/company/ManufacturerPartDetail.tsx:288 +#: src/pages/company/SupplierPartDetail.tsx:162 #: src/tables/part/PartPurchaseOrdersTable.tsx:56 #: src/tables/stock/StockItemTable.tsx:253 msgid "Manufacturer Part" msgstr "" -#: lib/enums/ModelInformation.tsx:62 -#: src/pages/purchasing/PurchasingIndex.tsx:109 +#: lib/enums/ModelInformation.tsx:70 +#: src/pages/purchasing/PurchasingIndex.tsx:177 msgid "Manufacturer Parts" msgstr "" -#: lib/enums/ModelInformation.tsx:70 -#: src/pages/part/CategoryDetail.tsx:354 +#: lib/enums/ModelInformation.tsx:79 +#: src/pages/part/CategoryDetail.tsx:371 #: src/tables/Filter.tsx:389 msgid "Part Category" msgstr "" -#: lib/enums/ModelInformation.tsx:71 +#: lib/enums/ModelInformation.tsx:80 #: lib/enums/Roles.tsx:37 -#: src/pages/part/CategoryDetail.tsx:271 -#: src/pages/part/CategoryDetail.tsx:345 -#: src/pages/part/PartDetail.tsx:1196 +#: src/pages/part/CategoryDetail.tsx:279 +#: src/pages/part/CategoryDetail.tsx:362 +#: src/pages/part/PartDetail.tsx:1217 msgid "Part Categories" msgstr "" -#: lib/enums/ModelInformation.tsx:79 +#: lib/enums/ModelInformation.tsx:88 #: src/forms/BuildForms.tsx:473 #: src/forms/BuildForms.tsx:633 #: src/forms/BuildForms.tsx:794 -#: src/forms/SalesOrderForms.tsx:307 +#: src/forms/SalesOrderForms.tsx:386 #: src/pages/stock/StockDetail.tsx:1005 -#: src/tables/part/PartTestResultTable.tsx:248 +#: src/tables/part/PartTestResultTable.tsx:256 #: src/tables/stock/StockTrackingTable.tsx:48 #: src/tables/stock/StockTrackingTable.tsx:55 msgid "Stock Item" msgstr "" -#: lib/enums/ModelInformation.tsx:80 +#: lib/enums/ModelInformation.tsx:89 #: lib/enums/Roles.tsx:45 -#: src/pages/company/CompanyDetail.tsx:210 -#: src/pages/part/CategoryDetail.tsx:291 +#: src/pages/company/CompanyDetail.tsx:211 +#: src/pages/part/CategoryDetail.tsx:314 #: src/pages/part/PartStockHistoryDetail.tsx:101 #: src/pages/stock/LocationDetail.tsx:121 #: src/pages/stock/LocationDetail.tsx:180 msgid "Stock Items" msgstr "" -#: lib/enums/ModelInformation.tsx:88 +#: lib/enums/ModelInformation.tsx:98 #: lib/enums/Roles.tsx:47 #: src/pages/stock/LocationDetail.tsx:420 msgid "Stock Location" msgstr "" -#: lib/enums/ModelInformation.tsx:89 +#: lib/enums/ModelInformation.tsx:99 #: src/pages/stock/LocationDetail.tsx:174 #: src/pages/stock/LocationDetail.tsx:412 #: src/pages/stock/StockDetail.tsx:996 msgid "Stock Locations" msgstr "" -#: lib/enums/ModelInformation.tsx:97 +#: lib/enums/ModelInformation.tsx:108 msgid "Stock Location Type" msgstr "" -#: lib/enums/ModelInformation.tsx:98 +#: lib/enums/ModelInformation.tsx:109 msgid "Stock Location Types" msgstr "" -#: lib/enums/ModelInformation.tsx:103 -#: src/pages/Index/Settings/SystemSettings.tsx:248 -#: src/pages/part/PartDetail.tsx:911 +#: lib/enums/ModelInformation.tsx:114 +#: src/pages/Index/Settings/SystemSettings.tsx:254 +#: src/pages/part/PartDetail.tsx:900 msgid "Stock History" msgstr "" -#: lib/enums/ModelInformation.tsx:104 +#: lib/enums/ModelInformation.tsx:115 msgid "Stock Histories" msgstr "" -#: lib/enums/ModelInformation.tsx:109 +#: lib/enums/ModelInformation.tsx:120 msgid "Build" msgstr "" -#: lib/enums/ModelInformation.tsx:110 +#: lib/enums/ModelInformation.tsx:121 msgid "Builds" msgstr "" -#: lib/enums/ModelInformation.tsx:118 +#: lib/enums/ModelInformation.tsx:130 msgid "Build Line" msgstr "" -#: lib/enums/ModelInformation.tsx:119 +#: lib/enums/ModelInformation.tsx:131 msgid "Build Lines" msgstr "" -#: lib/enums/ModelInformation.tsx:126 +#: lib/enums/ModelInformation.tsx:138 msgid "Build Item" msgstr "" -#: lib/enums/ModelInformation.tsx:127 +#: lib/enums/ModelInformation.tsx:139 msgid "Build Items" msgstr "" -#: lib/enums/ModelInformation.tsx:132 -#: src/pages/company/CompanyDetail.tsx:340 +#: lib/enums/ModelInformation.tsx:144 +#: src/pages/company/CompanyDetail.tsx:345 #: src/tables/company/CompanyTable.tsx:47 #: src/tables/company/ContactTable.tsx:67 +#: src/tables/company/ParametricCompanyTable.tsx:18 msgid "Company" msgstr "" -#: lib/enums/ModelInformation.tsx:133 +#: lib/enums/ModelInformation.tsx:145 msgid "Companies" msgstr "" -#: lib/enums/ModelInformation.tsx:140 -#: src/pages/build/BuildDetail.tsx:316 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:253 -#: src/pages/sales/ReturnOrderDetail.tsx:231 -#: src/pages/sales/SalesOrderDetail.tsx:224 +#: lib/enums/ModelInformation.tsx:152 +#: src/pages/build/BuildDetail.tsx:317 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:254 +#: src/pages/sales/ReturnOrderDetail.tsx:232 +#: src/pages/sales/SalesOrderDetail.tsx:225 #: src/tables/ColumnRenderers.tsx:362 #: src/tables/Filter.tsx:286 #: src/tables/TableHoverCard.tsx:101 msgid "Project Code" msgstr "" -#: lib/enums/ModelInformation.tsx:141 +#: lib/enums/ModelInformation.tsx:153 #: src/pages/Index/Settings/AdminCenter/Index.tsx:172 msgid "Project Codes" msgstr "" -#: lib/enums/ModelInformation.tsx:147 +#: lib/enums/ModelInformation.tsx:159 #: src/components/wizards/OrderPartsWizard.tsx:338 #: src/pages/part/pricing/PurchaseHistoryPanel.tsx:33 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:550 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:555 #: src/pages/stock/StockDetail.tsx:352 #: src/tables/part/PartPurchaseOrdersTable.tsx:32 #: src/tables/stock/StockItemTable.tsx:239 @@ -312,117 +338,117 @@ msgstr "" msgid "Purchase Order" msgstr "" -#: lib/enums/ModelInformation.tsx:148 +#: lib/enums/ModelInformation.tsx:160 #: lib/enums/Roles.tsx:39 #: src/defaults/actions.tsx:104 -#: src/pages/Index/Settings/SystemSettings.tsx:283 -#: src/pages/company/CompanyDetail.tsx:203 -#: src/pages/company/SupplierPartDetail.tsx:266 -#: src/pages/part/PartDetail.tsx:875 -#: src/pages/purchasing/PurchasingIndex.tsx:60 +#: src/pages/Index/Settings/SystemSettings.tsx:289 +#: src/pages/company/CompanyDetail.tsx:204 +#: src/pages/company/SupplierPartDetail.tsx:267 +#: src/pages/part/PartDetail.tsx:864 +#: src/pages/purchasing/PurchasingIndex.tsx:66 msgid "Purchase Orders" msgstr "" -#: lib/enums/ModelInformation.tsx:156 +#: lib/enums/ModelInformation.tsx:169 msgid "Purchase Order Line" msgstr "" -#: lib/enums/ModelInformation.tsx:157 +#: lib/enums/ModelInformation.tsx:170 msgid "Purchase Order Lines" msgstr "" -#: lib/enums/ModelInformation.tsx:162 -#: src/pages/build/BuildDetail.tsx:289 +#: lib/enums/ModelInformation.tsx:175 +#: src/pages/build/BuildDetail.tsx:290 #: src/pages/part/pricing/SaleHistoryPanel.tsx:24 -#: src/pages/sales/SalesOrderDetail.tsx:614 -#: src/pages/sales/SalesOrderShipmentDetail.tsx:105 -#: src/pages/sales/SalesOrderShipmentDetail.tsx:478 +#: src/pages/sales/SalesOrderDetail.tsx:619 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:103 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:446 #: src/pages/stock/StockDetail.tsx:361 #: src/tables/part/PartSalesAllocationsTable.tsx:41 #: src/tables/sales/SalesOrderAllocationTable.tsx:110 -#: src/tables/sales/SalesOrderShipmentTable.tsx:122 +#: src/tables/sales/SalesOrderShipmentTable.tsx:143 #: src/tables/stock/StockTrackingTable.tsx:131 msgid "Sales Order" msgstr "" -#: lib/enums/ModelInformation.tsx:163 +#: lib/enums/ModelInformation.tsx:176 #: lib/enums/Roles.tsx:43 #: src/defaults/actions.tsx:114 -#: src/pages/Index/Settings/SystemSettings.tsx:299 -#: src/pages/company/CompanyDetail.tsx:223 -#: src/pages/part/PartDetail.tsx:887 -#: src/pages/sales/SalesIndex.tsx:84 +#: src/pages/Index/Settings/SystemSettings.tsx:305 +#: src/pages/company/CompanyDetail.tsx:224 +#: src/pages/part/PartDetail.tsx:876 +#: src/pages/sales/SalesIndex.tsx:53 msgid "Sales Orders" msgstr "" -#: lib/enums/ModelInformation.tsx:171 -#: src/pages/sales/SalesOrderShipmentDetail.tsx:477 +#: lib/enums/ModelInformation.tsx:185 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:445 msgid "Sales Order Shipment" msgstr "" -#: lib/enums/ModelInformation.tsx:172 +#: lib/enums/ModelInformation.tsx:186 msgid "Sales Order Shipments" msgstr "" -#: lib/enums/ModelInformation.tsx:179 -#: src/pages/sales/ReturnOrderDetail.tsx:549 +#: lib/enums/ModelInformation.tsx:194 +#: src/pages/sales/ReturnOrderDetail.tsx:554 #: src/tables/stock/StockTrackingTable.tsx:142 msgid "Return Order" msgstr "" -#: lib/enums/ModelInformation.tsx:180 +#: lib/enums/ModelInformation.tsx:195 #: lib/enums/Roles.tsx:41 #: src/defaults/actions.tsx:125 -#: src/pages/Index/Settings/SystemSettings.tsx:316 -#: src/pages/company/CompanyDetail.tsx:230 -#: src/pages/part/PartDetail.tsx:894 -#: src/pages/sales/SalesIndex.tsx:117 +#: src/pages/Index/Settings/SystemSettings.tsx:322 +#: src/pages/company/CompanyDetail.tsx:231 +#: src/pages/part/PartDetail.tsx:883 +#: src/pages/sales/SalesIndex.tsx:99 msgid "Return Orders" msgstr "" -#: lib/enums/ModelInformation.tsx:188 +#: lib/enums/ModelInformation.tsx:204 msgid "Return Order Line Item" msgstr "" -#: lib/enums/ModelInformation.tsx:189 +#: lib/enums/ModelInformation.tsx:205 msgid "Return Order Line Items" msgstr "" -#: lib/enums/ModelInformation.tsx:194 +#: lib/enums/ModelInformation.tsx:210 #: src/tables/company/AddressTable.tsx:52 msgid "Address" msgstr "" -#: lib/enums/ModelInformation.tsx:195 -#: src/pages/company/CompanyDetail.tsx:264 +#: lib/enums/ModelInformation.tsx:211 +#: src/pages/company/CompanyDetail.tsx:265 msgid "Addresses" msgstr "" -#: lib/enums/ModelInformation.tsx:201 +#: lib/enums/ModelInformation.tsx:217 #: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:89 #: src/pages/core/UserDetail.tsx:135 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:229 -#: src/pages/sales/ReturnOrderDetail.tsx:207 -#: src/pages/sales/SalesOrderDetail.tsx:200 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:230 +#: src/pages/sales/ReturnOrderDetail.tsx:208 +#: src/pages/sales/SalesOrderDetail.tsx:201 msgid "Contact" msgstr "" -#: lib/enums/ModelInformation.tsx:202 -#: src/pages/company/CompanyDetail.tsx:258 +#: lib/enums/ModelInformation.tsx:218 +#: src/pages/company/CompanyDetail.tsx:259 #: src/pages/core/CoreIndex.tsx:33 msgid "Contacts" msgstr "" -#: lib/enums/ModelInformation.tsx:208 +#: lib/enums/ModelInformation.tsx:224 #: src/tables/ColumnRenderers.tsx:444 msgid "Owner" msgstr "" -#: lib/enums/ModelInformation.tsx:209 +#: lib/enums/ModelInformation.tsx:225 msgid "Owners" msgstr "" -#: lib/enums/ModelInformation.tsx:215 +#: lib/enums/ModelInformation.tsx:231 #: src/pages/Auth/ChangePassword.tsx:36 #: src/pages/core/UserDetail.tsx:220 #: src/tables/ColumnRenderers.tsx:395 @@ -437,7 +463,7 @@ msgstr "" msgid "User" msgstr "" -#: lib/enums/ModelInformation.tsx:216 +#: lib/enums/ModelInformation.tsx:232 #: src/components/nav/NavigationDrawer.tsx:105 #: src/pages/Index/Settings/AdminCenter/UserManagementPanel.tsx:15 #: src/pages/core/CoreIndex.tsx:21 @@ -445,12 +471,12 @@ msgstr "" msgid "Users" msgstr "" -#: lib/enums/ModelInformation.tsx:222 +#: lib/enums/ModelInformation.tsx:238 #: src/pages/core/GroupDetail.tsx:78 msgid "Group" msgstr "" -#: lib/enums/ModelInformation.tsx:223 +#: lib/enums/ModelInformation.tsx:239 #: src/components/nav/NavigationDrawer.tsx:111 #: src/pages/Index/Settings/AdminCenter/UserManagementPanel.tsx:23 #: src/pages/core/CoreIndex.tsx:27 @@ -460,64 +486,64 @@ msgstr "" msgid "Groups" msgstr "" -#: lib/enums/ModelInformation.tsx:230 +#: lib/enums/ModelInformation.tsx:246 msgid "Import Session" msgstr "" -#: lib/enums/ModelInformation.tsx:231 +#: lib/enums/ModelInformation.tsx:247 msgid "Import Sessions" msgstr "" -#: lib/enums/ModelInformation.tsx:238 +#: lib/enums/ModelInformation.tsx:254 msgid "Label Template" msgstr "" -#: lib/enums/ModelInformation.tsx:239 +#: lib/enums/ModelInformation.tsx:255 #: src/pages/Index/Settings/AdminCenter/Index.tsx:209 msgid "Label Templates" msgstr "" -#: lib/enums/ModelInformation.tsx:246 +#: lib/enums/ModelInformation.tsx:262 msgid "Report Template" msgstr "" -#: lib/enums/ModelInformation.tsx:247 +#: lib/enums/ModelInformation.tsx:263 #: src/pages/Index/Settings/AdminCenter/Index.tsx:215 msgid "Report Templates" msgstr "" -#: lib/enums/ModelInformation.tsx:254 +#: lib/enums/ModelInformation.tsx:270 #: src/components/plugins/PluginDrawer.tsx:145 msgid "Plugin Configuration" msgstr "" -#: lib/enums/ModelInformation.tsx:255 +#: lib/enums/ModelInformation.tsx:271 msgid "Plugin Configurations" msgstr "" -#: lib/enums/ModelInformation.tsx:262 +#: lib/enums/ModelInformation.tsx:278 msgid "Content Type" msgstr "" -#: lib/enums/ModelInformation.tsx:263 +#: lib/enums/ModelInformation.tsx:279 msgid "Content Types" msgstr "" -#: lib/enums/ModelInformation.tsx:268 +#: lib/enums/ModelInformation.tsx:284 msgid "Selection List" msgstr "" -#: lib/enums/ModelInformation.tsx:269 -#: src/pages/Index/Settings/AdminCenter/PartParameterPanel.tsx:21 +#: lib/enums/ModelInformation.tsx:285 +#: src/pages/Index/Settings/AdminCenter/ParameterPanel.tsx:21 msgid "Selection Lists" msgstr "" -#: lib/enums/ModelInformation.tsx:275 +#: lib/enums/ModelInformation.tsx:291 #: src/components/barcodes/BarcodeInput.tsx:114 #: src/components/dashboard/DashboardLayout.tsx:281 #: src/components/editors/NotesEditor.tsx:74 #: src/components/editors/TemplateEditor/TemplateEditor.tsx:158 -#: src/components/forms/fields/ApiFormField.tsx:273 +#: src/components/forms/fields/ApiFormField.tsx:237 #: src/components/forms/fields/TableField.tsx:45 #: src/components/importer/ImportDataSelector.tsx:192 #: src/components/importer/ImporterColumnSelector.tsx:234 @@ -528,7 +554,7 @@ msgstr "" #: src/components/nav/SearchDrawer.tsx:572 #: src/components/settings/SettingList.tsx:139 #: src/components/wizards/ImportPartWizard.tsx:574 -#: src/components/wizards/ImportPartWizard.tsx:718 +#: src/components/wizards/ImportPartWizard.tsx:719 #: src/forms/BomForms.tsx:69 #: src/functions/auth.tsx:643 #: src/pages/ErrorPage.tsx:11 @@ -547,9 +573,9 @@ msgstr "" msgid "Error" msgstr "" -#: lib/enums/ModelInformation.tsx:276 +#: lib/enums/ModelInformation.tsx:292 #: src/tables/machine/MachineListTable.tsx:402 -#: src/tables/machine/MachineTypeTable.tsx:299 +#: src/tables/machine/MachineTypeTable.tsx:297 msgid "Errors" msgstr "" @@ -559,10 +585,10 @@ msgstr "" #: lib/enums/Roles.tsx:33 #: src/defaults/actions.tsx:135 -#: src/pages/Index/Settings/SystemSettings.tsx:264 -#: src/pages/build/BuildIndex.tsx:75 -#: src/pages/part/PartDetail.tsx:904 -#: src/pages/sales/SalesOrderDetail.tsx:421 +#: src/pages/Index/Settings/SystemSettings.tsx:270 +#: src/pages/build/BuildIndex.tsx:67 +#: src/pages/part/PartDetail.tsx:893 +#: src/pages/sales/SalesOrderDetail.tsx:422 msgid "Build Orders" msgstr "" @@ -639,39 +665,39 @@ msgstr "" msgid "Enter barcode data" msgstr "" -#: src/components/barcodes/BarcodeScanDialog.tsx:49 -#: src/components/buttons/ScanButton.tsx:15 +#: src/components/barcodes/BarcodeScanDialog.tsx:56 +#: src/components/buttons/ScanButton.tsx:27 #: src/components/nav/NavigationDrawer.tsx:122 -#: src/forms/PurchaseOrderForms.tsx:457 -#: src/forms/PurchaseOrderForms.tsx:563 +#: src/forms/PurchaseOrderForms.tsx:509 +#: src/forms/PurchaseOrderForms.tsx:615 msgid "Scan Barcode" msgstr "" -#: src/components/barcodes/BarcodeScanDialog.tsx:105 +#: src/components/barcodes/BarcodeScanDialog.tsx:121 msgid "No matching item found" msgstr "" -#: src/components/barcodes/BarcodeScanDialog.tsx:134 +#: src/components/barcodes/BarcodeScanDialog.tsx:150 msgid "Barcode does not match the expected model type" msgstr "" -#: src/components/barcodes/BarcodeScanDialog.tsx:145 +#: src/components/barcodes/BarcodeScanDialog.tsx:161 #: src/components/editors/NotesEditor.tsx:84 #: src/components/editors/NotesEditor.tsx:118 -#: src/components/forms/ApiForm.tsx:465 +#: src/components/forms/ApiForm.tsx:484 #: src/components/wizards/ImportPartWizard.tsx:566 -#: src/components/wizards/ImportPartWizard.tsx:690 +#: src/components/wizards/ImportPartWizard.tsx:691 #: src/pages/Index/Settings/AdminCenter/CurrencyManagementPanel.tsx:45 #: src/tables/bom/BomTable.tsx:548 #: src/tables/settings/PendingTasksTable.tsx:68 msgid "Success" msgstr "" -#: src/components/barcodes/BarcodeScanDialog.tsx:151 +#: src/components/barcodes/BarcodeScanDialog.tsx:167 msgid "Failed to handle barcode" msgstr "" -#: src/components/barcodes/BarcodeScanDialog.tsx:167 +#: src/components/barcodes/BarcodeScanDialog.tsx:183 #: src/pages/Index/Scan.tsx:129 msgid "Failed to scan barcode" msgstr "" @@ -714,10 +740,10 @@ msgstr "" #: src/components/barcodes/QRCode.tsx:179 #: src/pages/part/PartDetail.tsx:521 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:222 -#: src/pages/sales/ReturnOrderDetail.tsx:188 -#: src/pages/sales/SalesOrderDetail.tsx:181 -#: src/pages/sales/SalesOrderShipmentDetail.tsx:122 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:223 +#: src/pages/sales/ReturnOrderDetail.tsx:189 +#: src/pages/sales/SalesOrderDetail.tsx:182 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:120 #: src/pages/stock/StockDetail.tsx:186 msgid "Link" msgstr "" @@ -728,7 +754,7 @@ msgstr "" #: src/components/barcodes/QRCode.tsx:205 #: src/components/items/ActionDropdown.tsx:192 -#: src/forms/PurchaseOrderForms.tsx:554 +#: src/forms/PurchaseOrderForms.tsx:606 msgid "Unlink Barcode" msgstr "" @@ -829,14 +855,14 @@ msgstr "" #~ msgid "Scan QR code" #~ msgstr "Scan QR code" -#: src/components/buttons/ScanButton.tsx:19 -msgid "Open Barcode Scanner" -msgstr "" - #: src/components/buttons/ScanButton.tsx:20 #~ msgid "Open QR code scanner" #~ msgstr "Open QR code scanner" +#: src/components/buttons/ScanButton.tsx:32 +msgid "Open Barcode Scanner" +msgstr "" + #: src/components/buttons/SpotlightButton.tsx:12 msgid "Open spotlight" msgstr "" @@ -1059,7 +1085,7 @@ msgid "Show the number of sales orders which are assigned to you" msgstr "" #: src/components/dashboard/DashboardWidgetLibrary.tsx:129 -#: src/pages/sales/SalesIndex.tsx:105 +#: src/pages/sales/SalesIndex.tsx:87 msgid "Pending Shipments" msgstr "" @@ -1210,12 +1236,18 @@ msgid "Remove the associated image from this item?" msgstr "" #: src/components/details/DetailsImage.tsx:83 -#: src/forms/StockForms.tsx:888 +#: src/forms/StockForms.tsx:895 #: src/pages/Index/Settings/AccountSettings/MFASettings.tsx:324 #: src/pages/Index/Settings/AccountSettings/MFASettings.tsx:415 #: src/pages/Index/Settings/AccountSettings/MFASettings.tsx:884 #: src/pages/Index/Settings/AccountSettings/MFASettings.tsx:903 #: src/pages/Index/Settings/AccountSettings/SecurityContent.tsx:254 +#: src/tables/build/BuildAllocatedStockTable.tsx:178 +#: src/tables/build/BuildAllocatedStockTable.tsx:258 +#: src/tables/build/BuildLineTable.tsx:111 +#: src/tables/build/BuildLineTable.tsx:665 +#: src/tables/sales/SalesOrderAllocationTable.tsx:224 +#: src/tables/sales/SalesOrderAllocationTable.tsx:247 msgid "Remove" msgstr "" @@ -1241,12 +1273,12 @@ msgid "Upload Error" msgstr "" #: src/components/details/DetailsImage.tsx:250 -#: src/components/forms/fields/TextField.tsx:65 +#: src/components/forms/fields/AutoFillRightSection.tsx:34 msgid "Clear" msgstr "" #: src/components/details/DetailsImage.tsx:256 -#: src/components/forms/ApiForm.tsx:677 +#: src/components/forms/ApiForm.tsx:696 #: src/contexts/ThemeContext.tsx:44 #: src/pages/Index/Settings/AccountSettings/MFASettings.tsx:149 #: src/pages/Index/Settings/AccountSettings/MFASettings.tsx:568 @@ -1499,8 +1531,8 @@ msgstr "" msgid "A server error occurred" msgstr "" -#: src/components/forms/ApiForm.tsx:103 -#: src/components/forms/ApiForm.tsx:594 +#: src/components/forms/ApiForm.tsx:107 +#: src/components/forms/ApiForm.tsx:613 msgid "Form Error" msgstr "" @@ -1508,11 +1540,11 @@ msgstr "" #~ msgid "Form Errors Exist" #~ msgstr "Form Errors Exist" -#: src/components/forms/ApiForm.tsx:604 +#: src/components/forms/ApiForm.tsx:623 msgid "Errors exist for one or more form fields" msgstr "" -#: src/components/forms/ApiForm.tsx:715 +#: src/components/forms/ApiForm.tsx:734 #: src/hooks/UseForm.tsx:133 #: src/tables/plugin/PluginListTable.tsx:204 msgid "Update" @@ -1698,15 +1730,14 @@ msgstr "" #: src/components/forms/InstanceOptions.tsx:124 #: src/components/plugins/PluginDrawer.tsx:68 #: src/pages/Index/Settings/AdminCenter/UnitManagementPanel.tsx:19 -#: src/pages/part/CategoryDetail.tsx:88 +#: src/pages/part/CategoryDetail.tsx:91 #: src/pages/part/PartDetail.tsx:446 #: src/pages/stock/LocationDetail.tsx:82 #: src/tables/machine/MachineTypeTable.tsx:67 -#: src/tables/machine/MachineTypeTable.tsx:151 -#: src/tables/machine/MachineTypeTable.tsx:254 -#: src/tables/machine/MachineTypeTable.tsx:357 +#: src/tables/machine/MachineTypeTable.tsx:149 +#: src/tables/machine/MachineTypeTable.tsx:252 +#: src/tables/machine/MachineTypeTable.tsx:355 #: src/tables/plugin/PluginErrorTable.tsx:33 -#: src/tables/purchasing/ManufacturerPartParameterTable.tsx:36 #: src/tables/settings/ApiTokenTable.tsx:57 #: src/tables/settings/GroupTable.tsx:95 #: src/tables/settings/GroupTable.tsx:148 @@ -1769,7 +1800,7 @@ msgstr "" #~ msgstr "State: <0>worker ({0}), <1>plugins{1}" #: src/components/forms/InstanceOptions.tsx:118 -#: src/pages/Index/Settings/SystemSettings.tsx:45 +#: src/pages/Index/Settings/SystemSettings.tsx:46 msgid "Server" msgstr "" @@ -1793,6 +1824,8 @@ msgid "Plugins" msgstr "" #: src/components/forms/InstanceOptions.tsx:143 +#: src/tables/general/ParameterTemplateTable.tsx:153 +#: src/tables/general/ParameterTemplateTable.tsx:188 #: src/tables/part/PartTestTemplateTable.tsx:117 #: src/tables/settings/TemplateTable.tsx:251 #: src/tables/settings/TemplateTable.tsx:362 @@ -1817,10 +1850,14 @@ msgstr "" msgid "Running" msgstr "" -#: src/components/forms/fields/ApiFormField.tsx:233 +#: src/components/forms/fields/ApiFormField.tsx:197 msgid "Select file to upload" msgstr "" +#: src/components/forms/fields/AutoFillRightSection.tsx:47 +msgid "Accept suggested value" +msgstr "" + #: src/components/forms/fields/DateField.tsx:76 msgid "Select date" msgstr "" @@ -1853,13 +1890,13 @@ msgstr "" msgid "{0} icons" msgstr "" -#: src/components/forms/fields/RelatedModelField.tsx:409 +#: src/components/forms/fields/RelatedModelField.tsx:480 #: src/components/modals/AboutInvenTreeModal.tsx:96 #: src/pages/Index/Settings/AccountSettings/SecurityContent.tsx:383 msgid "Loading" msgstr "" -#: src/components/forms/fields/RelatedModelField.tsx:411 +#: src/components/forms/fields/RelatedModelField.tsx:482 msgid "No results found" msgstr "" @@ -1875,10 +1912,6 @@ msgstr "" msgid "Add new row" msgstr "" -#: src/components/forms/fields/TextField.tsx:82 -msgid "Accept suggested value" -msgstr "" - #: src/components/images/DetailsImage.tsx:252 #~ msgid "Select image" #~ msgstr "Select image" @@ -2036,7 +2069,7 @@ msgstr "" #: src/components/importer/ImporterDrawer.tsx:109 #: src/components/modals/AboutInvenTreeModal.tsx:205 #: src/components/modals/ServerInfoModal.tsx:134 -#: src/components/wizards/ImportPartWizard.tsx:772 +#: src/components/wizards/ImportPartWizard.tsx:773 #: src/forms/BomForms.tsx:132 #: src/pages/Index/Settings/AccountSettings/MFASettings.tsx:685 msgid "Close" @@ -2199,7 +2232,7 @@ msgid "Change" msgstr "" #: src/components/items/RoleTable.tsx:150 -#: src/forms/StockForms.tsx:927 +#: src/forms/StockForms.tsx:941 #: src/tables/stock/StockItemTestResultTable.tsx:367 msgid "Add" msgstr "" @@ -2222,11 +2255,11 @@ msgstr "" #: src/components/items/TransferList.tsx:161 #: src/components/render/Stock.tsx:102 -#: src/pages/part/PartDetail.tsx:994 +#: src/pages/part/PartDetail.tsx:1009 #: src/pages/stock/StockDetail.tsx:265 #: src/pages/stock/StockDetail.tsx:942 -#: src/tables/build/BuildAllocatedStockTable.tsx:135 -#: src/tables/build/BuildLineTable.tsx:192 +#: src/tables/build/BuildAllocatedStockTable.tsx:132 +#: src/tables/build/BuildLineTable.tsx:193 #: src/tables/part/PartTable.tsx:137 #: src/tables/stock/StockItemTable.tsx:182 #: src/tables/stock/StockItemTable.tsx:343 @@ -2373,7 +2406,7 @@ msgid "Database" msgstr "" #: src/components/modals/ServerInfoModal.tsx:49 -#: src/components/nav/Alerts.tsx:118 +#: src/components/nav/Alerts.tsx:120 msgid "Debug Mode" msgstr "" @@ -2414,7 +2447,7 @@ msgid "Issues detected" msgstr "" #: src/components/modals/ServerInfoModal.tsx:102 -#: src/components/nav/Alerts.tsx:125 +#: src/components/nav/Alerts.tsx:127 msgid "Background Worker" msgstr "" @@ -2436,7 +2469,7 @@ msgstr "" #~ msgstr "Email settings not configured" #: src/components/modals/ServerInfoModal.tsx:120 -#: src/components/nav/Alerts.tsx:141 +#: src/components/nav/Alerts.tsx:143 msgid "Email settings not configured." msgstr "" @@ -2444,43 +2477,47 @@ msgstr "" msgid "Alerts" msgstr "" -#: src/components/nav/Alerts.tsx:120 +#: src/components/nav/Alerts.tsx:97 +msgid "No issues detected" +msgstr "" + +#: src/components/nav/Alerts.tsx:122 msgid "The server is running in debug mode." msgstr "" -#: src/components/nav/Alerts.tsx:127 +#: src/components/nav/Alerts.tsx:129 msgid "The background worker process is not running." msgstr "" -#: src/components/nav/Alerts.tsx:132 +#: src/components/nav/Alerts.tsx:134 msgid "Server Restart" msgstr "" -#: src/components/nav/Alerts.tsx:134 +#: src/components/nav/Alerts.tsx:136 msgid "The server requires a restart to apply changes." msgstr "" -#: src/components/nav/Alerts.tsx:139 +#: src/components/nav/Alerts.tsx:141 msgid "Email settings" msgstr "" -#: src/components/nav/Alerts.tsx:146 +#: src/components/nav/Alerts.tsx:148 msgid "Database Migrations" msgstr "" -#: src/components/nav/Alerts.tsx:148 +#: src/components/nav/Alerts.tsx:150 msgid "There are pending database migrations." msgstr "" -#: src/components/nav/Alerts.tsx:163 +#: src/components/nav/Alerts.tsx:165 msgid "Learn more about {code}" msgstr "" #: src/components/nav/Header.tsx:188 #: src/components/nav/NavigationDrawer.tsx:134 #: src/components/nav/NotificationDrawer.tsx:181 -#: src/pages/Index/Settings/SystemSettings.tsx:121 -#: src/pages/Index/Settings/UserSettings.tsx:106 +#: src/pages/Index/Settings/SystemSettings.tsx:122 +#: src/pages/Index/Settings/UserSettings.tsx:107 #: src/pages/Notifications.tsx:45 #: src/pages/Notifications.tsx:130 msgid "Notifications" @@ -2511,8 +2548,8 @@ msgstr "" #: src/components/nav/NavigationDrawer.tsx:140 #: src/components/nav/SettingsHeader.tsx:40 #: src/defaults/actions.tsx:92 -#: src/pages/Index/Settings/UserSettings.tsx:141 -#: src/pages/Index/Settings/UserSettings.tsx:145 +#: src/pages/Index/Settings/UserSettings.tsx:142 +#: src/pages/Index/Settings/UserSettings.tsx:146 msgid "User Settings" msgstr "" @@ -2529,8 +2566,8 @@ msgstr "" #: src/components/nav/NavigationDrawer.tsx:146 #: src/components/nav/SettingsHeader.tsx:41 #: src/defaults/actions.tsx:144 -#: src/pages/Index/Settings/SystemSettings.tsx:348 -#: src/pages/Index/Settings/SystemSettings.tsx:353 +#: src/pages/Index/Settings/SystemSettings.tsx:354 +#: src/pages/Index/Settings/SystemSettings.tsx:359 msgid "System Settings" msgstr "" @@ -2577,11 +2614,11 @@ msgstr "" #: src/components/nav/NavigationDrawer.tsx:77 #: src/components/render/Part.tsx:36 -#: src/components/wizards/ImportPartWizard.tsx:807 +#: src/components/wizards/ImportPartWizard.tsx:808 #: src/defaults/links.tsx:42 #: src/forms/StockForms.tsx:794 -#: src/pages/Index/Settings/SystemSettings.tsx:224 -#: src/pages/part/PartDetail.tsx:804 +#: src/pages/Index/Settings/SystemSettings.tsx:230 +#: src/pages/part/PartDetail.tsx:793 #: src/pages/stock/LocationDetail.tsx:390 #: src/pages/stock/LocationDetail.tsx:420 #: src/pages/stock/StockDetail.tsx:642 @@ -2591,29 +2628,29 @@ msgstr "" #: src/components/nav/NavigationDrawer.tsx:84 #: src/defaults/links.tsx:48 -#: src/pages/build/BuildDetail.tsx:748 -#: src/pages/build/BuildIndex.tsx:102 +#: src/pages/build/BuildDetail.tsx:753 +#: src/pages/build/BuildIndex.tsx:101 msgid "Manufacturing" msgstr "" #: src/components/nav/NavigationDrawer.tsx:91 #: src/defaults/links.tsx:54 #: src/pages/company/ManufacturerDetail.tsx:9 -#: src/pages/company/ManufacturerPartDetail.tsx:276 +#: src/pages/company/ManufacturerPartDetail.tsx:267 #: src/pages/company/SupplierDetail.tsx:9 -#: src/pages/company/SupplierPartDetail.tsx:360 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:553 -#: src/pages/purchasing/PurchasingIndex.tsx:122 +#: src/pages/company/SupplierPartDetail.tsx:365 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:558 +#: src/pages/purchasing/PurchasingIndex.tsx:212 msgid "Purchasing" msgstr "" #: src/components/nav/NavigationDrawer.tsx:98 #: src/defaults/links.tsx:60 #: src/pages/company/CustomerDetail.tsx:9 -#: src/pages/sales/ReturnOrderDetail.tsx:554 -#: src/pages/sales/SalesIndex.tsx:153 -#: src/pages/sales/SalesOrderDetail.tsx:619 -#: src/pages/sales/SalesOrderShipmentDetail.tsx:480 +#: src/pages/sales/ReturnOrderDetail.tsx:559 +#: src/pages/sales/SalesIndex.tsx:168 +#: src/pages/sales/SalesOrderDetail.tsx:624 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:448 msgid "Sales" msgstr "" @@ -2667,21 +2704,21 @@ msgid "Remove search group" msgstr "" #: src/components/nav/SearchDrawer.tsx:288 -#: src/pages/company/ManufacturerPartDetail.tsx:192 -#: src/pages/part/PartDetail.tsx:862 +#: src/pages/company/ManufacturerPartDetail.tsx:179 +#: src/pages/part/PartDetail.tsx:851 #: src/pages/part/PartSupplierDetail.tsx:15 -#: src/pages/purchasing/PurchasingIndex.tsx:81 +#: src/pages/purchasing/PurchasingIndex.tsx:100 msgid "Suppliers" msgstr "" #: src/components/nav/SearchDrawer.tsx:298 #: src/pages/part/PartSupplierDetail.tsx:23 -#: src/pages/purchasing/PurchasingIndex.tsx:98 +#: src/pages/purchasing/PurchasingIndex.tsx:149 msgid "Manufacturers" msgstr "" #: src/components/nav/SearchDrawer.tsx:308 -#: src/pages/sales/SalesIndex.tsx:138 +#: src/pages/sales/SalesIndex.tsx:133 msgid "Customers" msgstr "" @@ -2772,21 +2809,21 @@ msgstr "" #: src/components/plugins/PluginDrawer.tsx:73 #: src/forms/selectionListFields.tsx:102 -#: src/pages/build/BuildDetail.tsx:250 -#: src/pages/company/CompanyDetail.tsx:93 -#: src/pages/company/ManufacturerPartDetail.tsx:93 -#: src/pages/company/ManufacturerPartDetail.tsx:120 -#: src/pages/company/SupplierPartDetail.tsx:145 -#: src/pages/part/CategoryDetail.tsx:108 +#: src/pages/build/BuildDetail.tsx:251 +#: src/pages/company/CompanyDetail.tsx:94 +#: src/pages/company/ManufacturerPartDetail.tsx:92 +#: src/pages/company/ManufacturerPartDetail.tsx:119 +#: src/pages/company/SupplierPartDetail.tsx:146 +#: src/pages/part/CategoryDetail.tsx:111 #: src/pages/part/PartDetail.tsx:460 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:162 -#: src/pages/sales/ReturnOrderDetail.tsx:129 -#: src/pages/sales/SalesOrderDetail.tsx:119 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:163 +#: src/pages/sales/ReturnOrderDetail.tsx:130 +#: src/pages/sales/SalesOrderDetail.tsx:120 #: src/pages/stock/LocationDetail.tsx:102 #: src/tables/ColumnRenderers.tsx:278 -#: src/tables/build/BuildAllocatedStockTable.tsx:91 -#: src/tables/machine/MachineTypeTable.tsx:161 -#: src/tables/machine/MachineTypeTable.tsx:257 +#: src/tables/build/BuildAllocatedStockTable.tsx:88 +#: src/tables/machine/MachineTypeTable.tsx:159 +#: src/tables/machine/MachineTypeTable.tsx:255 #: src/tables/plugin/PluginListTable.tsx:110 msgid "Description" msgstr "" @@ -2814,7 +2851,7 @@ msgstr "" #: src/tables/company/CompanyTable.tsx:91 #: src/tables/machine/MachineListTable.tsx:384 #: src/tables/machine/MachineListTable.tsx:799 -#: src/tables/part/ParametricPartTable.tsx:354 +#: src/tables/part/ParametricPartTable.tsx:19 #: src/tables/part/PartTable.tsx:197 #: src/tables/part/PartVariantTable.tsx:15 #: src/tables/plugin/PluginListTable.tsx:96 @@ -2836,8 +2873,8 @@ msgid "Installation Path" msgstr "" #: src/components/plugins/PluginDrawer.tsx:116 -#: src/tables/machine/MachineTypeTable.tsx:184 -#: src/tables/machine/MachineTypeTable.tsx:293 +#: src/tables/machine/MachineTypeTable.tsx:182 +#: src/tables/machine/MachineTypeTable.tsx:291 #: src/tables/plugin/PluginListTable.tsx:101 #: src/tables/plugin/PluginListTable.tsx:417 msgid "Builtin" @@ -2849,8 +2886,8 @@ msgstr "" #: src/components/plugins/PluginDrawer.tsx:133 #: src/pages/Index/Settings/AdminCenter/PluginManagementPanel.tsx:55 -#: src/pages/Index/Settings/SystemSettings.tsx:331 -#: src/pages/Index/Settings/UserSettings.tsx:128 +#: src/pages/Index/Settings/SystemSettings.tsx:337 +#: src/pages/Index/Settings/UserSettings.tsx:129 msgid "Plugin Settings" msgstr "" @@ -2911,7 +2948,7 @@ msgstr "" #~ msgid "Unknown model: {model}" #~ msgstr "Unknown model: {model}" -#: src/components/render/Instance.tsx:249 +#: src/components/render/Instance.tsx:247 msgid "Unknown model: {model_name}" msgstr "" @@ -2939,10 +2976,10 @@ msgstr "" #: src/components/render/Part.tsx:28 #: src/components/render/Plugin.tsx:17 #: src/components/render/User.tsx:37 -#: src/pages/company/CompanyDetail.tsx:323 -#: src/pages/company/SupplierPartDetail.tsx:373 +#: src/pages/company/CompanyDetail.tsx:328 +#: src/pages/company/SupplierPartDetail.tsx:378 #: src/pages/core/UserDetail.tsx:211 -#: src/pages/part/PartDetail.tsx:1027 +#: src/pages/part/PartDetail.tsx:1048 #: src/tables/ColumnRenderers.tsx:410 msgid "Inactive" msgstr "" @@ -2962,11 +2999,11 @@ msgstr "" #: src/components/render/Part.tsx:47 #: src/components/wizards/OrderPartsWizard.tsx:135 -#: src/pages/company/SupplierPartDetail.tsx:197 -#: src/pages/company/SupplierPartDetail.tsx:394 -#: src/pages/part/PartDetail.tsx:1015 +#: src/pages/company/SupplierPartDetail.tsx:198 +#: src/pages/company/SupplierPartDetail.tsx:399 +#: src/pages/part/PartDetail.tsx:1030 #: src/tables/bom/BomTable.tsx:444 -#: src/tables/build/BuildLineTable.tsx:222 +#: src/tables/build/BuildLineTable.tsx:223 #: src/tables/part/PartTable.tsx:108 msgid "On Order" msgstr "" @@ -2974,9 +3011,9 @@ msgstr "" #: src/components/render/Part.tsx:55 #: src/components/wizards/OrderPartsWizard.tsx:141 #: src/pages/part/PartDetail.tsx:587 -#: src/pages/part/PartDetail.tsx:1021 +#: src/pages/part/PartDetail.tsx:1036 #: src/pages/stock/StockDetail.tsx:925 -#: src/tables/part/PartTestResultTable.tsx:297 +#: src/tables/part/PartTestResultTable.tsx:305 #: src/tables/stock/StockItemTable.tsx:359 msgid "In Production" msgstr "" @@ -2987,7 +3024,7 @@ msgid "Details" msgstr "" #: src/components/render/Part.tsx:112 -#: src/components/wizards/ImportPartWizard.tsx:806 +#: src/components/wizards/ImportPartWizard.tsx:807 #: src/pages/part/PartDetail.tsx:487 #: src/tables/ColumnRenderers.tsx:233 #: src/tables/ColumnRenderers.tsx:242 @@ -3000,16 +3037,16 @@ msgstr "" #: src/components/render/Stock.tsx:114 #: src/components/render/Stock.tsx:132 #: src/forms/BuildForms.tsx:795 -#: src/forms/PurchaseOrderForms.tsx:595 +#: src/forms/PurchaseOrderForms.tsx:647 #: src/forms/StockForms.tsx:792 #: src/forms/StockForms.tsx:839 -#: src/forms/StockForms.tsx:885 -#: src/forms/StockForms.tsx:924 -#: src/forms/StockForms.tsx:960 -#: src/forms/StockForms.tsx:1003 -#: src/forms/StockForms.tsx:1047 -#: src/forms/StockForms.tsx:1095 -#: src/forms/StockForms.tsx:1139 +#: src/forms/StockForms.tsx:892 +#: src/forms/StockForms.tsx:938 +#: src/forms/StockForms.tsx:976 +#: src/forms/StockForms.tsx:1019 +#: src/forms/StockForms.tsx:1063 +#: src/forms/StockForms.tsx:1111 +#: src/forms/StockForms.tsx:1155 #: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:88 #: src/pages/core/UserDetail.tsx:158 #: src/pages/stock/StockDetail.tsx:298 @@ -3023,7 +3060,7 @@ msgstr "" #: src/components/render/Stock.tsx:99 #: src/pages/stock/StockDetail.tsx:198 #: src/pages/stock/StockDetail.tsx:930 -#: src/tables/build/BuildAllocatedStockTable.tsx:121 +#: src/tables/build/BuildAllocatedStockTable.tsx:118 #: src/tables/build/BuildOutputTable.tsx:107 #: src/tables/sales/SalesOrderAllocationTable.tsx:142 msgid "Serial Number" @@ -3034,9 +3071,9 @@ msgstr "" #: src/forms/BuildForms.tsx:240 #: src/forms/BuildForms.tsx:634 #: src/forms/BuildForms.tsx:797 -#: src/forms/PurchaseOrderForms.tsx:801 +#: src/forms/PurchaseOrderForms.tsx:853 #: src/forms/ReturnOrderForms.tsx:243 -#: src/forms/SalesOrderForms.tsx:308 +#: src/forms/SalesOrderForms.tsx:387 #: src/forms/StockForms.tsx:841 #: src/pages/part/PartStockHistoryDetail.tsx:56 #: src/pages/part/PartStockHistoryDetail.tsx:210 @@ -3046,9 +3083,9 @@ msgstr "" #: src/pages/part/pricing/PriceBreakPanel.tsx:172 #: src/pages/stock/StockDetail.tsx:258 #: src/pages/stock/StockDetail.tsx:936 -#: src/tables/build/BuildLineTable.tsx:86 +#: src/tables/build/BuildLineTable.tsx:83 #: src/tables/part/PartPurchaseOrdersTable.tsx:94 -#: src/tables/part/PartTestResultTable.tsx:269 +#: src/tables/part/PartTestResultTable.tsx:277 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:175 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:206 #: src/tables/purchasing/SupplierPriceBreakTable.tsx:69 @@ -3063,14 +3100,14 @@ msgstr "" #: src/forms/BuildForms.tsx:474 #: src/forms/StockForms.tsx:793 #: src/forms/StockForms.tsx:840 -#: src/forms/StockForms.tsx:886 -#: src/forms/StockForms.tsx:925 -#: src/forms/StockForms.tsx:961 -#: src/forms/StockForms.tsx:1004 -#: src/forms/StockForms.tsx:1048 -#: src/forms/StockForms.tsx:1096 -#: src/forms/StockForms.tsx:1140 -#: src/tables/build/BuildLineTable.tsx:96 +#: src/forms/StockForms.tsx:893 +#: src/forms/StockForms.tsx:939 +#: src/forms/StockForms.tsx:977 +#: src/forms/StockForms.tsx:1020 +#: src/forms/StockForms.tsx:1064 +#: src/forms/StockForms.tsx:1112 +#: src/forms/StockForms.tsx:1156 +#: src/tables/build/BuildLineTable.tsx:93 msgid "Batch" msgstr "" @@ -3306,10 +3343,6 @@ msgstr "" #~ msgid "Part category updated" #~ msgstr "Part category updated" -#: src/components/tables/part/PartParameterTable.tsx:41 -#~ msgid "Parameter" -#~ msgstr "Parameter" - #: src/components/tables/part/PartParameterTable.tsx:114 #~ msgid "Part parameter updated" #~ msgstr "Part parameter updated" @@ -3571,15 +3604,16 @@ msgid "Already Imported" msgstr "" #: src/components/wizards/ImportPartWizard.tsx:205 -#: src/pages/company/CompanyDetail.tsx:136 +#: src/pages/company/CompanyDetail.tsx:137 #: src/pages/company/SupplierDetail.tsx:8 -#: src/pages/company/SupplierPartDetail.tsx:130 -#: src/pages/company/SupplierPartDetail.tsx:235 -#: src/pages/company/SupplierPartDetail.tsx:364 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:156 +#: src/pages/company/SupplierPartDetail.tsx:131 +#: src/pages/company/SupplierPartDetail.tsx:236 +#: src/pages/company/SupplierPartDetail.tsx:369 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:157 #: src/tables/Filter.tsx:360 #: src/tables/company/CompanyTable.tsx:96 #: src/tables/part/PartPurchaseOrdersTable.tsx:43 +#: src/tables/purchasing/PurchaseOrderParametricTable.tsx:34 #: src/tables/purchasing/PurchaseOrderTable.tsx:109 #: src/tables/purchasing/SupplierPriceBreakTable.tsx:40 msgid "Supplier" @@ -3648,7 +3682,7 @@ msgid "Next" msgstr "" #: src/components/wizards/ImportPartWizard.tsx:540 -#: src/pages/part/PartDetail.tsx:1046 +#: src/pages/part/PartDetail.tsx:1067 #: src/tables/part/PartTable.tsx:408 msgid "Edit Part" msgstr "" @@ -3669,28 +3703,28 @@ msgstr "" msgid "Import" msgstr "" -#: src/components/wizards/ImportPartWizard.tsx:691 +#: src/components/wizards/ImportPartWizard.tsx:692 msgid "Parameters created successfully!" msgstr "" -#: src/components/wizards/ImportPartWizard.tsx:719 +#: src/components/wizards/ImportPartWizard.tsx:720 msgid "Failed to create parameters, please fix the errors and try again" msgstr "" #. placeholder {0}: supplierPart?.supplier -#: src/components/wizards/ImportPartWizard.tsx:739 +#: src/components/wizards/ImportPartWizard.tsx:740 msgid "Part imported successfully from supplier {0}." msgstr "" -#: src/components/wizards/ImportPartWizard.tsx:752 +#: src/components/wizards/ImportPartWizard.tsx:753 msgid "Open Part" msgstr "" -#: src/components/wizards/ImportPartWizard.tsx:759 +#: src/components/wizards/ImportPartWizard.tsx:760 msgid "Open Supplier Part" msgstr "" -#: src/components/wizards/ImportPartWizard.tsx:766 +#: src/components/wizards/ImportPartWizard.tsx:767 msgid "Open Manufacturer Part" msgstr "" @@ -3699,25 +3733,19 @@ msgstr "" #~ msgid "Import Part" #~ msgstr "Import Part" -#: src/components/wizards/ImportPartWizard.tsx:802 +#: src/components/wizards/ImportPartWizard.tsx:803 msgid "Import Supplier Part" msgstr "" -#: src/components/wizards/ImportPartWizard.tsx:804 +#: src/components/wizards/ImportPartWizard.tsx:805 msgid "Search Supplier Part" msgstr "" -#: src/components/wizards/ImportPartWizard.tsx:806 -#: src/pages/company/ManufacturerPartDetail.tsx:166 -#: src/pages/part/PartDetail.tsx:793 -msgid "Parameters" -msgstr "" - -#: src/components/wizards/ImportPartWizard.tsx:806 +#: src/components/wizards/ImportPartWizard.tsx:807 msgid "Confirm import" msgstr "" -#: src/components/wizards/ImportPartWizard.tsx:808 +#: src/components/wizards/ImportPartWizard.tsx:809 msgid "Done" msgstr "" @@ -3738,24 +3766,24 @@ msgid "Sales Requirements" msgstr "" #: src/components/wizards/OrderPartsWizard.tsx:129 -#: src/forms/StockForms.tsx:887 -#: src/forms/StockForms.tsx:926 -#: src/forms/StockForms.tsx:962 -#: src/forms/StockForms.tsx:1005 -#: src/forms/StockForms.tsx:1049 -#: src/forms/StockForms.tsx:1097 -#: src/forms/StockForms.tsx:1141 -#: src/pages/company/SupplierPartDetail.tsx:190 -#: src/pages/company/SupplierPartDetail.tsx:378 +#: src/forms/StockForms.tsx:894 +#: src/forms/StockForms.tsx:940 +#: src/forms/StockForms.tsx:978 +#: src/forms/StockForms.tsx:1021 +#: src/forms/StockForms.tsx:1065 +#: src/forms/StockForms.tsx:1113 +#: src/forms/StockForms.tsx:1157 +#: src/pages/company/SupplierPartDetail.tsx:191 +#: src/pages/company/SupplierPartDetail.tsx:383 #: src/pages/part/PartDetail.tsx:534 -#: src/pages/part/PartDetail.tsx:984 +#: src/pages/part/PartDetail.tsx:999 #: src/tables/Filter.tsx:92 #: src/tables/purchasing/SupplierPartTable.tsx:230 msgid "In Stock" msgstr "" #: src/components/wizards/OrderPartsWizard.tsx:146 -#: src/tables/build/BuildLineTable.tsx:404 +#: src/tables/build/BuildLineTable.tsx:405 msgid "Required Quantity" msgstr "" @@ -3847,7 +3875,7 @@ msgid "Please correct the errors in the selected parts" msgstr "" #: src/components/wizards/OrderPartsWizard.tsx:587 -#: src/tables/build/BuildLineTable.tsx:815 +#: src/tables/build/BuildLineTable.tsx:822 #: src/tables/part/PartTable.tsx:522 #: src/tables/sales/SalesOrderLineItemTable.tsx:370 msgid "Order Parts" @@ -4349,9 +4377,9 @@ msgstr "" #: src/forms/BuildForms.tsx:333 #: src/forms/BuildForms.tsx:408 #: src/forms/BuildForms.tsx:685 -#: src/tables/build/BuildAllocatedStockTable.tsx:150 +#: src/tables/build/BuildAllocatedStockTable.tsx:147 #: src/tables/build/BuildOutputTable.tsx:582 -#: src/tables/part/PartTestResultTable.tsx:272 +#: src/tables/part/PartTestResultTable.tsx:280 msgid "Build Output" msgstr "" @@ -4362,22 +4390,22 @@ msgstr "" #: src/forms/BuildForms.tsx:336 #: src/forms/BuildForms.tsx:411 #: src/forms/BuildForms.tsx:475 -#: src/forms/PurchaseOrderForms.tsx:717 +#: src/forms/PurchaseOrderForms.tsx:769 #: src/forms/ReturnOrderForms.tsx:197 #: src/forms/ReturnOrderForms.tsx:244 #: src/forms/StockForms.tsx:712 #: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:87 -#: src/pages/build/BuildDetail.tsx:222 +#: src/pages/build/BuildDetail.tsx:223 #: src/pages/core/UserDetail.tsx:151 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:168 -#: src/pages/sales/ReturnOrderDetail.tsx:135 -#: src/pages/sales/SalesOrderDetail.tsx:125 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:169 +#: src/pages/sales/ReturnOrderDetail.tsx:136 +#: src/pages/sales/SalesOrderDetail.tsx:126 #: src/pages/stock/StockDetail.tsx:170 #: src/tables/Filter.tsx:274 #: src/tables/build/BuildOutputTable.tsx:404 #: src/tables/machine/MachineListTable.tsx:387 #: src/tables/part/PartPurchaseOrdersTable.tsx:38 -#: src/tables/part/PartTestResultTable.tsx:309 +#: src/tables/part/PartTestResultTable.tsx:317 #: src/tables/sales/ReturnOrderLineItemTable.tsx:138 #: src/tables/sales/ReturnOrderLineItemTable.tsx:176 #: src/tables/settings/CustomStateTable.tsx:79 @@ -4443,18 +4471,19 @@ msgid "Build outputs have been cancelled" msgstr "" #: src/forms/BuildForms.tsx:631 -#: src/pages/build/BuildDetail.tsx:207 -#: src/pages/company/ManufacturerPartDetail.tsx:85 -#: src/pages/company/SupplierPartDetail.tsx:96 +#: src/pages/build/BuildDetail.tsx:208 +#: src/pages/company/ManufacturerPartDetail.tsx:84 +#: src/pages/company/SupplierPartDetail.tsx:97 #: src/pages/part/PartDetail.tsx:453 #: src/pages/stock/StockDetail.tsx:153 #: src/tables/bom/BomTable.tsx:134 #: src/tables/bom/UsedInTable.tsx:40 -#: src/tables/build/BuildAllocatedStockTable.tsx:108 -#: src/tables/build/BuildLineTable.tsx:336 +#: src/tables/build/BuildAllocatedStockTable.tsx:105 +#: src/tables/build/BuildLineTable.tsx:337 #: src/tables/build/BuildOrderTable.tsx:79 #: src/tables/part/PartSalesAllocationsTable.tsx:61 #: src/tables/part/RelatedPartTable.tsx:73 +#: src/tables/purchasing/ManufacturerPartParametricTable.tsx:21 #: src/tables/purchasing/ManufacturerPartTable.tsx:69 #: src/tables/purchasing/SupplierPartTable.tsx:70 #: src/tables/sales/SalesOrderAllocationTable.tsx:135 @@ -4466,47 +4495,47 @@ msgstr "" #: src/forms/BuildForms.tsx:632 #: src/forms/BuildForms.tsx:796 #: src/forms/BuildForms.tsx:897 -#: src/forms/SalesOrderForms.tsx:306 -#: src/tables/build/BuildAllocatedStockTable.tsx:139 -#: src/tables/build/BuildLineTable.tsx:182 +#: src/forms/SalesOrderForms.tsx:385 +#: src/tables/build/BuildAllocatedStockTable.tsx:136 +#: src/tables/build/BuildLineTable.tsx:183 #: src/tables/sales/SalesOrderLineItemTable.tsx:342 #: src/tables/stock/StockItemTable.tsx:338 msgid "Allocated" msgstr "" #: src/forms/BuildForms.tsx:667 -#: src/forms/SalesOrderForms.tsx:295 -#: src/pages/build/BuildDetail.tsx:108 -#: src/pages/build/BuildDetail.tsx:326 +#: src/forms/SalesOrderForms.tsx:374 +#: src/pages/build/BuildDetail.tsx:109 +#: src/pages/build/BuildDetail.tsx:327 msgid "Source Location" msgstr "" #: src/forms/BuildForms.tsx:668 -#: src/forms/SalesOrderForms.tsx:296 +#: src/forms/SalesOrderForms.tsx:375 msgid "Select the source location for the stock allocation" msgstr "" #: src/forms/BuildForms.tsx:700 -#: src/forms/SalesOrderForms.tsx:336 -#: src/tables/build/BuildLineTable.tsx:574 -#: src/tables/build/BuildLineTable.tsx:731 -#: src/tables/build/BuildLineTable.tsx:830 +#: src/forms/SalesOrderForms.tsx:415 +#: src/tables/build/BuildLineTable.tsx:575 +#: src/tables/build/BuildLineTable.tsx:738 +#: src/tables/build/BuildLineTable.tsx:837 #: src/tables/sales/SalesOrderLineItemTable.tsx:380 #: src/tables/sales/SalesOrderLineItemTable.tsx:406 msgid "Allocate Stock" msgstr "" #: src/forms/BuildForms.tsx:703 -#: src/forms/SalesOrderForms.tsx:341 +#: src/forms/SalesOrderForms.tsx:420 msgid "Stock items allocated" msgstr "" #: src/forms/BuildForms.tsx:816 #: src/forms/BuildForms.tsx:917 -#: src/tables/build/BuildAllocatedStockTable.tsx:240 -#: src/tables/build/BuildAllocatedStockTable.tsx:272 -#: src/tables/build/BuildLineTable.tsx:741 -#: src/tables/build/BuildLineTable.tsx:864 +#: src/tables/build/BuildAllocatedStockTable.tsx:243 +#: src/tables/build/BuildAllocatedStockTable.tsx:279 +#: src/tables/build/BuildLineTable.tsx:748 +#: src/tables/build/BuildLineTable.tsx:871 msgid "Consume Stock" msgstr "" @@ -4521,21 +4550,21 @@ msgstr "" #~ msgstr "Stock items consumed" #: src/forms/BuildForms.tsx:853 -#: src/tables/build/BuildLineTable.tsx:514 +#: src/tables/build/BuildLineTable.tsx:515 #: src/tables/part/PartBuildAllocationsTable.tsx:101 msgid "Fully consumed" msgstr "" #: src/forms/BuildForms.tsx:898 -#: src/tables/build/BuildLineTable.tsx:187 +#: src/tables/build/BuildLineTable.tsx:188 #: src/tables/stock/StockItemTable.tsx:367 msgid "Consumed" msgstr "" -#: src/forms/CommonForms.tsx:88 -#: src/forms/PurchaseOrderForms.tsx:125 +#: src/forms/CommonForms.tsx:92 +#: src/forms/PurchaseOrderForms.tsx:176 #: src/forms/ReturnOrderForms.tsx:138 -#: src/forms/SalesOrderForms.tsx:164 +#: src/forms/SalesOrderForms.tsx:185 msgid "Select project code for this line item" msgstr "" @@ -4543,16 +4572,16 @@ msgstr "" #~ msgid "Company updated" #~ msgstr "Company updated" -#: src/forms/PartForms.tsx:85 -#: src/forms/PartForms.tsx:207 -#: src/pages/part/CategoryDetail.tsx:124 +#: src/forms/PartForms.tsx:99 +#: src/forms/PartForms.tsx:228 +#: src/pages/part/CategoryDetail.tsx:127 #: src/pages/part/PartDetail.tsx:668 #: src/tables/part/PartCategoryTable.tsx:94 #: src/tables/part/PartTable.tsx:325 msgid "Subscribed" msgstr "" -#: src/forms/PartForms.tsx:86 +#: src/forms/PartForms.tsx:100 msgid "Subscribe to notifications for this part" msgstr "" @@ -4564,40 +4593,24 @@ msgstr "" #~ msgid "Part updated" #~ msgstr "Part updated" -#: src/forms/PartForms.tsx:193 +#: src/forms/PartForms.tsx:214 msgid "Parent part category" msgstr "" -#: src/forms/PartForms.tsx:208 +#: src/forms/PartForms.tsx:229 msgid "Subscribe to notifications for this category" msgstr "" -#: src/forms/PurchaseOrderForms.tsx:388 -msgid "Assign Batch Code and Serial Numbers" -msgstr "" - -#: src/forms/PurchaseOrderForms.tsx:390 -msgid "Assign Batch Code" -msgstr "" - -#: src/forms/PurchaseOrderForms.tsx:410 -msgid "Choose Location" -msgstr "" - -#: src/forms/PurchaseOrderForms.tsx:418 -msgid "Item Destination selected" -msgstr "" - #: src/forms/PurchaseOrderForms.tsx:421 #~ msgid "Assign Batch Code{0}" #~ msgstr "Assign Batch Code{0}" -#: src/forms/PurchaseOrderForms.tsx:428 -msgid "Part category default location selected" +#: src/forms/PurchaseOrderForms.tsx:440 +msgid "Assign Batch Code and Serial Numbers" msgstr "" -#: src/forms/PurchaseOrderForms.tsx:438 -msgid "Received stock location selected" +#: src/forms/PurchaseOrderForms.tsx:442 +msgid "Assign Batch Code" msgstr "" #: src/forms/PurchaseOrderForms.tsx:444 @@ -4605,115 +4618,131 @@ msgstr "" #~ msgid "Remove item from list" #~ msgstr "Remove item from list" -#: src/forms/PurchaseOrderForms.tsx:446 +#: src/forms/PurchaseOrderForms.tsx:462 +msgid "Choose Location" +msgstr "" + +#: src/forms/PurchaseOrderForms.tsx:470 +msgid "Item Destination selected" +msgstr "" + +#: src/forms/PurchaseOrderForms.tsx:480 +msgid "Part category default location selected" +msgstr "" + +#: src/forms/PurchaseOrderForms.tsx:490 +msgid "Received stock location selected" +msgstr "" + +#: src/forms/PurchaseOrderForms.tsx:498 msgid "Default location selected" msgstr "" -#: src/forms/PurchaseOrderForms.tsx:507 +#: src/forms/PurchaseOrderForms.tsx:559 msgid "Set Location" msgstr "" -#: src/forms/PurchaseOrderForms.tsx:524 -msgid "Set Expiry Date" -msgstr "" - -#: src/forms/PurchaseOrderForms.tsx:532 -#: src/forms/StockForms.tsx:693 -msgid "Adjust Packaging" -msgstr "" - -#: src/forms/PurchaseOrderForms.tsx:540 -#: src/forms/StockForms.tsx:684 -#: src/hooks/UseStockAdjustActions.tsx:148 -msgid "Change Status" -msgstr "" - -#: src/forms/PurchaseOrderForms.tsx:546 -msgid "Add Note" -msgstr "" - #: src/forms/PurchaseOrderForms.tsx:566 #~ msgid "Serial numbers" #~ msgstr "Serial numbers" +#: src/forms/PurchaseOrderForms.tsx:576 +msgid "Set Expiry Date" +msgstr "" + #: src/forms/PurchaseOrderForms.tsx:582 #~ msgid "Store at line item destination" #~ msgstr "Store at line item destination" -#: src/forms/PurchaseOrderForms.tsx:610 -msgid "Store at default location" +#: src/forms/PurchaseOrderForms.tsx:584 +#: src/forms/StockForms.tsx:693 +msgid "Adjust Packaging" msgstr "" -#: src/forms/PurchaseOrderForms.tsx:625 -msgid "Store at line item destination " +#: src/forms/PurchaseOrderForms.tsx:592 +#: src/forms/StockForms.tsx:684 +#: src/hooks/UseStockAdjustActions.tsx:148 +msgid "Change Status" msgstr "" -#: src/forms/PurchaseOrderForms.tsx:637 -msgid "Store with already received stock" +#: src/forms/PurchaseOrderForms.tsx:598 +msgid "Add Note" msgstr "" #: src/forms/PurchaseOrderForms.tsx:658 #~ msgid "Receive line items" #~ msgstr "Receive line items" -#: src/forms/PurchaseOrderForms.tsx:661 -#: src/pages/build/BuildDetail.tsx:340 +#: src/forms/PurchaseOrderForms.tsx:662 +msgid "Store at default location" +msgstr "" + +#: src/forms/PurchaseOrderForms.tsx:677 +msgid "Store at line item destination " +msgstr "" + +#: src/forms/PurchaseOrderForms.tsx:689 +msgid "Store with already received stock" +msgstr "" + +#: src/forms/PurchaseOrderForms.tsx:713 +#: src/pages/build/BuildDetail.tsx:341 #: src/pages/stock/StockDetail.tsx:280 #: src/pages/stock/StockDetail.tsx:952 #: src/tables/Filter.tsx:83 -#: src/tables/build/BuildAllocatedStockTable.tsx:128 +#: src/tables/build/BuildAllocatedStockTable.tsx:125 #: src/tables/build/BuildOutputTable.tsx:112 -#: src/tables/part/PartTestResultTable.tsx:260 -#: src/tables/part/PartTestResultTable.tsx:281 +#: src/tables/part/PartTestResultTable.tsx:268 +#: src/tables/part/PartTestResultTable.tsx:289 #: src/tables/sales/SalesOrderAllocationTable.tsx:149 msgid "Batch Code" msgstr "" -#: src/forms/PurchaseOrderForms.tsx:662 +#: src/forms/PurchaseOrderForms.tsx:714 msgid "Enter batch code for received items" msgstr "" -#: src/forms/PurchaseOrderForms.tsx:675 +#: src/forms/PurchaseOrderForms.tsx:727 #: src/forms/StockForms.tsx:218 msgid "Serial Numbers" msgstr "" -#: src/forms/PurchaseOrderForms.tsx:676 +#: src/forms/PurchaseOrderForms.tsx:728 msgid "Enter serial numbers for received items" msgstr "" -#: src/forms/PurchaseOrderForms.tsx:690 +#: src/forms/PurchaseOrderForms.tsx:742 #: src/pages/stock/StockDetail.tsx:382 #: src/tables/stock/StockItemTable.tsx:294 msgid "Expiry Date" msgstr "" -#: src/forms/PurchaseOrderForms.tsx:691 +#: src/forms/PurchaseOrderForms.tsx:743 msgid "Enter an expiry date for received items" msgstr "" -#: src/forms/PurchaseOrderForms.tsx:703 +#: src/forms/PurchaseOrderForms.tsx:755 #: src/forms/StockForms.tsx:728 -#: src/pages/company/SupplierPartDetail.tsx:172 -#: src/pages/company/SupplierPartDetail.tsx:236 +#: src/pages/company/SupplierPartDetail.tsx:173 +#: src/pages/company/SupplierPartDetail.tsx:237 #: src/pages/stock/StockDetail.tsx:419 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:227 msgid "Packaging" msgstr "" -#: src/forms/PurchaseOrderForms.tsx:727 -#: src/pages/company/SupplierPartDetail.tsx:120 +#: src/forms/PurchaseOrderForms.tsx:779 +#: src/pages/company/SupplierPartDetail.tsx:121 #: src/tables/ColumnRenderers.tsx:332 msgid "Note" msgstr "" -#: src/forms/PurchaseOrderForms.tsx:799 -#: src/pages/company/SupplierPartDetail.tsx:138 +#: src/forms/PurchaseOrderForms.tsx:851 +#: src/pages/company/SupplierPartDetail.tsx:139 #: src/tables/purchasing/SupplierPriceBreakTable.tsx:49 msgid "SKU" msgstr "" -#: src/forms/PurchaseOrderForms.tsx:800 +#: src/forms/PurchaseOrderForms.tsx:852 #: src/tables/part/PartPurchaseOrdersTable.tsx:127 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:213 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:283 @@ -4721,11 +4750,11 @@ msgstr "" msgid "Received" msgstr "" -#: src/forms/PurchaseOrderForms.tsx:817 +#: src/forms/PurchaseOrderForms.tsx:869 msgid "Receive Line Items" msgstr "" -#: src/forms/PurchaseOrderForms.tsx:823 +#: src/forms/PurchaseOrderForms.tsx:875 msgid "Items received" msgstr "" @@ -4737,7 +4766,35 @@ msgstr "" msgid "Item received into stock" msgstr "" -#: src/forms/SalesOrderForms.tsx:401 +#: src/forms/SalesOrderForms.tsx:208 +#: src/forms/SalesOrderForms.tsx:210 +#: src/tables/sales/SalesOrderShipmentTable.tsx:215 +msgid "Check Shipment" +msgstr "" + +#: src/forms/SalesOrderForms.tsx:211 +msgid "Marking the shipment as checked indicates that you have verified that all items included in this shipment are correct" +msgstr "" + +#: src/forms/SalesOrderForms.tsx:221 +msgid "Shipment marked as checked" +msgstr "" + +#: src/forms/SalesOrderForms.tsx:236 +#: src/forms/SalesOrderForms.tsx:238 +#: src/tables/sales/SalesOrderShipmentTable.tsx:228 +msgid "Uncheck Shipment" +msgstr "" + +#: src/forms/SalesOrderForms.tsx:239 +msgid "Marking the shipment as unchecked indicates that the shipment requires further verification" +msgstr "" + +#: src/forms/SalesOrderForms.tsx:249 +msgid "Shipment marked as unchecked" +msgstr "" + +#: src/forms/SalesOrderForms.tsx:480 msgid "Leave blank to use the order address" msgstr "" @@ -4792,150 +4849,150 @@ msgstr "" msgid "Return" msgstr "" -#: src/forms/StockForms.tsx:963 +#: src/forms/StockForms.tsx:979 #: src/pages/Index/Scan.tsx:182 msgid "Count" msgstr "" -#: src/forms/StockForms.tsx:1246 +#: src/forms/StockForms.tsx:1262 #: src/hooks/UseStockAdjustActions.tsx:108 msgid "Add Stock" msgstr "" -#: src/forms/StockForms.tsx:1247 +#: src/forms/StockForms.tsx:1263 msgid "Stock added" msgstr "" -#: src/forms/StockForms.tsx:1250 +#: src/forms/StockForms.tsx:1266 msgid "Increase the quantity of the selected stock items by a given amount." msgstr "" -#: src/forms/StockForms.tsx:1261 +#: src/forms/StockForms.tsx:1277 #: src/hooks/UseStockAdjustActions.tsx:118 msgid "Remove Stock" msgstr "" -#: src/forms/StockForms.tsx:1262 +#: src/forms/StockForms.tsx:1278 msgid "Stock removed" msgstr "" -#: src/forms/StockForms.tsx:1265 +#: src/forms/StockForms.tsx:1281 msgid "Decrease the quantity of the selected stock items by a given amount." msgstr "" -#: src/forms/StockForms.tsx:1276 +#: src/forms/StockForms.tsx:1292 #: src/hooks/UseStockAdjustActions.tsx:128 msgid "Transfer Stock" msgstr "" -#: src/forms/StockForms.tsx:1277 +#: src/forms/StockForms.tsx:1293 msgid "Stock transferred" msgstr "" -#: src/forms/StockForms.tsx:1280 +#: src/forms/StockForms.tsx:1296 msgid "Transfer selected items to the specified location." msgstr "" -#: src/forms/StockForms.tsx:1291 +#: src/forms/StockForms.tsx:1307 #: src/hooks/UseStockAdjustActions.tsx:168 msgid "Return Stock" msgstr "" -#: src/forms/StockForms.tsx:1292 +#: src/forms/StockForms.tsx:1308 msgid "Stock returned" msgstr "" -#: src/forms/StockForms.tsx:1295 +#: src/forms/StockForms.tsx:1311 msgid "Return selected items into stock, to the specified location." msgstr "" -#: src/forms/StockForms.tsx:1306 +#: src/forms/StockForms.tsx:1322 #: src/hooks/UseStockAdjustActions.tsx:98 msgid "Count Stock" msgstr "" -#: src/forms/StockForms.tsx:1307 +#: src/forms/StockForms.tsx:1323 msgid "Stock counted" msgstr "" -#: src/forms/StockForms.tsx:1310 +#: src/forms/StockForms.tsx:1326 msgid "Count the selected stock items, and adjust the quantity accordingly." msgstr "" -#: src/forms/StockForms.tsx:1321 +#: src/forms/StockForms.tsx:1337 msgid "Change Stock Status" msgstr "" -#: src/forms/StockForms.tsx:1322 +#: src/forms/StockForms.tsx:1338 msgid "Stock status changed" msgstr "" -#: src/forms/StockForms.tsx:1325 +#: src/forms/StockForms.tsx:1341 msgid "Change the status of the selected stock items." msgstr "" -#: src/forms/StockForms.tsx:1336 +#: src/forms/StockForms.tsx:1352 #: src/hooks/UseStockAdjustActions.tsx:138 msgid "Merge Stock" msgstr "" -#: src/forms/StockForms.tsx:1337 +#: src/forms/StockForms.tsx:1353 msgid "Stock merged" msgstr "" -#: src/forms/StockForms.tsx:1339 +#: src/forms/StockForms.tsx:1355 msgid "Merge Stock Items" msgstr "" -#: src/forms/StockForms.tsx:1341 +#: src/forms/StockForms.tsx:1357 msgid "Merge operation cannot be reversed" msgstr "" -#: src/forms/StockForms.tsx:1342 +#: src/forms/StockForms.tsx:1358 msgid "Tracking information may be lost when merging items" msgstr "" -#: src/forms/StockForms.tsx:1343 +#: src/forms/StockForms.tsx:1359 msgid "Supplier information may be lost when merging items" msgstr "" -#: src/forms/StockForms.tsx:1361 +#: src/forms/StockForms.tsx:1377 msgid "Assign Stock to Customer" msgstr "" -#: src/forms/StockForms.tsx:1362 +#: src/forms/StockForms.tsx:1378 msgid "Stock assigned to customer" msgstr "" -#: src/forms/StockForms.tsx:1372 +#: src/forms/StockForms.tsx:1388 msgid "Delete Stock Items" msgstr "" -#: src/forms/StockForms.tsx:1373 +#: src/forms/StockForms.tsx:1389 msgid "Stock deleted" msgstr "" -#: src/forms/StockForms.tsx:1376 +#: src/forms/StockForms.tsx:1392 msgid "This operation will permanently delete the selected stock items." msgstr "" -#: src/forms/StockForms.tsx:1385 +#: src/forms/StockForms.tsx:1401 msgid "Parent stock location" msgstr "" -#: src/forms/StockForms.tsx:1512 +#: src/forms/StockForms.tsx:1528 msgid "Find Serial Number" msgstr "" -#: src/forms/StockForms.tsx:1523 +#: src/forms/StockForms.tsx:1539 msgid "No matching items" msgstr "" -#: src/forms/StockForms.tsx:1529 +#: src/forms/StockForms.tsx:1545 msgid "Multiple matching items" msgstr "" -#: src/forms/StockForms.tsx:1538 +#: src/forms/StockForms.tsx:1554 msgid "Invalid response from server" msgstr "" @@ -4953,7 +5010,6 @@ msgstr "" #: src/tables/FilterSelectDrawer.tsx:137 #: src/tables/FilterSelectDrawer.tsx:149 #: src/tables/part/PartTestResultTable.tsx:206 -#: src/tables/purchasing/ManufacturerPartParameterTable.tsx:42 #: src/tables/stock/StockItemTestResultTable.tsx:207 msgid "Value" msgstr "" @@ -5244,7 +5300,7 @@ msgid "Delete selected stock items" msgstr "" #: src/hooks/UseStockAdjustActions.tsx:205 -#: src/pages/part/PartDetail.tsx:1137 +#: src/pages/part/PartDetail.tsx:1158 msgid "Stock Actions" msgstr "" @@ -5932,6 +5988,9 @@ msgstr "" #: src/pages/Index/Settings/AccountSettings/MFASettings.tsx:310 #: src/pages/Index/Settings/AccountSettings/MFASettings.tsx:401 +#: src/tables/build/BuildAllocatedStockTable.tsx:181 +#: src/tables/build/BuildLineTable.tsx:668 +#: src/tables/sales/SalesOrderAllocationTable.tsx:220 msgid "Confirm Removal" msgstr "" @@ -6394,30 +6453,34 @@ msgid "Email Messages" msgstr "" #: src/pages/Index/Settings/AdminCenter/HomePanel.tsx:22 -msgid "Active Alerts" -msgstr "" +#~ msgid "Active Alerts" +#~ msgstr "Active Alerts" #: src/pages/Index/Settings/AdminCenter/HomePanel.tsx:27 -msgid "Inactive Alerts" +#~ msgid "Inactive Alerts" +#~ msgstr "Inactive Alerts" + +#: src/pages/Index/Settings/AdminCenter/HomePanel.tsx:36 +msgid "System Status" msgstr "" -#: src/pages/Index/Settings/AdminCenter/HomePanel.tsx:38 +#: src/pages/Index/Settings/AdminCenter/HomePanel.tsx:47 msgid "Admin Center Information" msgstr "" -#: src/pages/Index/Settings/AdminCenter/HomePanel.tsx:44 +#: src/pages/Index/Settings/AdminCenter/HomePanel.tsx:53 msgid "The home panel (and the whole Admin Center) is a new feature starting with the new UI and was previously (before 1.0) not available." msgstr "" -#: src/pages/Index/Settings/AdminCenter/HomePanel.tsx:51 +#: src/pages/Index/Settings/AdminCenter/HomePanel.tsx:60 msgid "The admin center provides a centralized location for all administration functionality and is meant to replace all interaction with the (django) backend admin interface." msgstr "" -#: src/pages/Index/Settings/AdminCenter/HomePanel.tsx:58 +#: src/pages/Index/Settings/AdminCenter/HomePanel.tsx:67 msgid "Please open feature requests (after checking the tracker) for any existing backend admin functionality you are missing in this UI. The backend admin interface should be used carefully and seldom." msgstr "" -#: src/pages/Index/Settings/AdminCenter/HomePanel.tsx:76 +#: src/pages/Index/Settings/AdminCenter/HomePanel.tsx:85 msgid "Quick Actions" msgstr "" @@ -6476,11 +6539,11 @@ msgstr "" #: src/pages/Index/Settings/AdminCenter/Index.tsx:195 #: src/pages/part/CategoryDetail.tsx:313 -msgid "Part Parameters" -msgstr "" +#~ msgid "Part Parameters" +#~ msgstr "Part Parameters" #: src/pages/Index/Settings/AdminCenter/Index.tsx:202 -#: src/pages/part/CategoryDetail.tsx:306 +#: src/pages/part/CategoryDetail.tsx:329 msgid "Category Parameters" msgstr "" @@ -6494,7 +6557,7 @@ msgstr "" #: src/pages/Index/Settings/AdminCenter/Index.tsx:235 #: src/pages/Index/Settings/AdminCenter/MachineManagementPanel.tsx:52 -#: src/tables/machine/MachineTypeTable.tsx:325 +#: src/tables/machine/MachineTypeTable.tsx:323 msgid "Machines" msgstr "" @@ -6507,8 +6570,8 @@ msgid "Data Management" msgstr "" #: src/pages/Index/Settings/AdminCenter/Index.tsx:270 -#: src/pages/Index/Settings/SystemSettings.tsx:175 -#: src/pages/Index/Settings/UserSettings.tsx:118 +#: src/pages/Index/Settings/SystemSettings.tsx:176 +#: src/pages/Index/Settings/UserSettings.tsx:119 msgid "Reporting" msgstr "" @@ -6709,11 +6772,11 @@ msgstr "" msgid "The settings below are specific to each available plugin" msgstr "" -#: src/pages/Index/Settings/SystemSettings.tsx:77 +#: src/pages/Index/Settings/SystemSettings.tsx:78 msgid "Authentication" msgstr "" -#: src/pages/Index/Settings/SystemSettings.tsx:103 +#: src/pages/Index/Settings/SystemSettings.tsx:104 msgid "Barcodes" msgstr "" @@ -6725,12 +6788,12 @@ msgstr "" #~ msgid "This panel is a placeholder." #~ msgstr "This panel is a placeholder." -#: src/pages/Index/Settings/SystemSettings.tsx:127 -#: src/pages/Index/Settings/UserSettings.tsx:112 +#: src/pages/Index/Settings/SystemSettings.tsx:128 +#: src/pages/Index/Settings/UserSettings.tsx:113 msgid "The settings below are specific to each available notification method" msgstr "" -#: src/pages/Index/Settings/SystemSettings.tsx:133 +#: src/pages/Index/Settings/SystemSettings.tsx:134 msgid "Pricing" msgstr "" @@ -6738,7 +6801,7 @@ msgstr "" #~ msgid "Exchange Rates" #~ msgstr "Exchange Rates" -#: src/pages/Index/Settings/SystemSettings.tsx:169 +#: src/pages/Index/Settings/SystemSettings.tsx:170 msgid "Labels" msgstr "" @@ -6790,15 +6853,15 @@ msgstr "" #~ msgid "Delete notifications" #~ msgstr "Delete notifications" -#: src/pages/build/BuildDetail.tsx:69 +#: src/pages/build/BuildDetail.tsx:70 msgid "No Required Items" msgstr "" -#: src/pages/build/BuildDetail.tsx:71 +#: src/pages/build/BuildDetail.tsx:72 msgid "This build order does not have any required items." msgstr "" -#: src/pages/build/BuildDetail.tsx:72 +#: src/pages/build/BuildDetail.tsx:73 msgid "The assembled part may not have a Bill of Materials (BOM) defined, or the BOM is empty." msgstr "" @@ -6826,7 +6889,7 @@ msgstr "" #~ msgid "Build Order updated" #~ msgstr "Build Order updated" -#: src/pages/build/BuildDetail.tsx:215 +#: src/pages/build/BuildDetail.tsx:216 #: src/pages/part/PartDetail.tsx:480 #: src/pages/stock/StockDetail.tsx:161 #: src/tables/bom/UsedInTable.tsx:44 @@ -6843,10 +6906,10 @@ msgstr "" #~ msgid "Duplicate build order" #~ msgstr "Duplicate build order" -#: src/pages/build/BuildDetail.tsx:228 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:174 -#: src/pages/sales/ReturnOrderDetail.tsx:141 -#: src/pages/sales/SalesOrderDetail.tsx:131 +#: src/pages/build/BuildDetail.tsx:229 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:175 +#: src/pages/sales/ReturnOrderDetail.tsx:142 +#: src/pages/sales/SalesOrderDetail.tsx:132 #: src/pages/stock/StockDetail.tsx:176 msgid "Custom Status" msgstr "" @@ -6855,9 +6918,9 @@ msgstr "" #~ msgid "Delete build order" #~ msgstr "Delete build order" -#: src/pages/build/BuildDetail.tsx:237 -#: src/pages/build/BuildDetail.tsx:723 -#: src/pages/build/BuildIndex.tsx:28 +#: src/pages/build/BuildDetail.tsx:238 +#: src/pages/build/BuildDetail.tsx:728 +#: src/pages/build/BuildIndex.tsx:34 #: src/pages/stock/LocationDetail.tsx:140 #: src/tables/build/BuildOrderTable.tsx:123 #: src/tables/build/BuildOrderTable.tsx:183 @@ -6865,57 +6928,57 @@ msgstr "" msgid "External" msgstr "" -#: src/pages/build/BuildDetail.tsx:244 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:141 -#: src/pages/sales/ReturnOrderDetail.tsx:108 -#: src/pages/sales/SalesOrderDetail.tsx:98 +#: src/pages/build/BuildDetail.tsx:245 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:142 +#: src/pages/sales/ReturnOrderDetail.tsx:109 +#: src/pages/sales/SalesOrderDetail.tsx:99 #: src/tables/ColumnRenderers.tsx:321 -#: src/tables/build/BuildAllocatedStockTable.tsx:115 -#: src/tables/build/BuildLineTable.tsx:352 +#: src/tables/build/BuildAllocatedStockTable.tsx:112 +#: src/tables/build/BuildLineTable.tsx:353 msgid "Reference" msgstr "" -#: src/pages/build/BuildDetail.tsx:258 +#: src/pages/build/BuildDetail.tsx:259 msgid "Parent Build" msgstr "" -#: src/pages/build/BuildDetail.tsx:269 +#: src/pages/build/BuildDetail.tsx:270 msgid "Build Quantity" msgstr "" -#: src/pages/build/BuildDetail.tsx:275 +#: src/pages/build/BuildDetail.tsx:276 #: src/pages/part/PartDetail.tsx:598 #: src/tables/bom/BomTable.tsx:365 #: src/tables/bom/BomTable.tsx:407 msgid "Can Build" msgstr "" -#: src/pages/build/BuildDetail.tsx:284 -#: src/pages/build/BuildDetail.tsx:474 +#: src/pages/build/BuildDetail.tsx:285 +#: src/pages/build/BuildDetail.tsx:475 msgid "Completed Outputs" msgstr "" -#: src/pages/build/BuildDetail.tsx:301 +#: src/pages/build/BuildDetail.tsx:302 #: src/tables/Filter.tsx:381 #: src/tables/build/BuildOrderTable.tsx:143 msgid "Issued By" msgstr "" -#: src/pages/build/BuildDetail.tsx:309 +#: src/pages/build/BuildDetail.tsx:310 #: src/pages/part/PartDetail.tsx:691 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:261 -#: src/pages/sales/ReturnOrderDetail.tsx:239 -#: src/pages/sales/SalesOrderDetail.tsx:232 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:262 +#: src/pages/sales/ReturnOrderDetail.tsx:240 +#: src/pages/sales/SalesOrderDetail.tsx:233 #: src/tables/ColumnRenderers.tsx:464 #: src/tables/Filter.tsx:319 msgid "Responsible" msgstr "" -#: src/pages/build/BuildDetail.tsx:327 +#: src/pages/build/BuildDetail.tsx:328 msgid "Any location" msgstr "" -#: src/pages/build/BuildDetail.tsx:334 +#: src/pages/build/BuildDetail.tsx:335 msgid "Destination Location" msgstr "" @@ -6924,24 +6987,24 @@ msgstr "" #~ msgid "Test Statistics" #~ msgstr "Test Statistics" -#: src/pages/build/BuildDetail.tsx:350 +#: src/pages/build/BuildDetail.tsx:351 #: src/tables/settings/ApiTokenTable.tsx:97 #: src/tables/settings/PendingTasksTable.tsx:41 msgid "Created" msgstr "" -#: src/pages/build/BuildDetail.tsx:358 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:286 -#: src/pages/sales/ReturnOrderDetail.tsx:265 -#: src/pages/sales/SalesOrderDetail.tsx:257 +#: src/pages/build/BuildDetail.tsx:359 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:287 +#: src/pages/sales/ReturnOrderDetail.tsx:266 +#: src/pages/sales/SalesOrderDetail.tsx:258 #: src/tables/ColumnRenderers.tsx:486 msgid "Start Date" msgstr "" -#: src/pages/build/BuildDetail.tsx:366 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:294 -#: src/pages/sales/ReturnOrderDetail.tsx:273 -#: src/pages/sales/SalesOrderDetail.tsx:265 +#: src/pages/build/BuildDetail.tsx:367 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:295 +#: src/pages/sales/ReturnOrderDetail.tsx:274 +#: src/pages/sales/SalesOrderDetail.tsx:266 #: src/tables/ColumnRenderers.tsx:494 #: src/tables/part/PartPurchaseOrdersTable.tsx:101 #: src/tables/sales/ReturnOrderLineItemTable.tsx:154 @@ -6954,185 +7017,185 @@ msgstr "" #~ msgstr "Reporting Actions" #: src/pages/build/BuildDetail.tsx:374 +#~ msgid "Print build report" +#~ msgstr "Print build report" + +#: src/pages/build/BuildDetail.tsx:375 #: src/tables/build/BuildOrderTable.tsx:93 #: src/tables/sales/SalesOrderLineItemTable.tsx:347 msgid "Completed" msgstr "" -#: src/pages/build/BuildDetail.tsx:374 -#~ msgid "Print build report" -#~ msgstr "Print build report" - -#: src/pages/build/BuildDetail.tsx:410 +#: src/pages/build/BuildDetail.tsx:411 msgid "Build Details" msgstr "" -#: src/pages/build/BuildDetail.tsx:416 +#: src/pages/build/BuildDetail.tsx:417 msgid "Required Parts" msgstr "" -#: src/pages/build/BuildDetail.tsx:428 -#: src/pages/sales/SalesOrderDetail.tsx:407 -#: src/pages/sales/SalesOrderShipmentDetail.tsx:261 +#: src/pages/build/BuildDetail.tsx:429 +#: src/pages/sales/SalesOrderDetail.tsx:408 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:259 #: src/tables/part/PartSalesAllocationsTable.tsx:73 msgid "Allocated Stock" msgstr "" -#: src/pages/build/BuildDetail.tsx:444 +#: src/pages/build/BuildDetail.tsx:445 msgid "Consumed Stock" msgstr "" -#: src/pages/build/BuildDetail.tsx:461 +#: src/pages/build/BuildDetail.tsx:462 msgid "Incomplete Outputs" msgstr "" -#: src/pages/build/BuildDetail.tsx:489 +#: src/pages/build/BuildDetail.tsx:490 msgid "External Orders" msgstr "" -#: src/pages/build/BuildDetail.tsx:503 +#: src/pages/build/BuildDetail.tsx:504 msgid "Child Build Orders" msgstr "" -#: src/pages/build/BuildDetail.tsx:513 -#: src/pages/part/PartDetail.tsx:937 +#: src/pages/build/BuildDetail.tsx:514 +#: src/pages/part/PartDetail.tsx:926 #: src/pages/stock/StockDetail.tsx:587 #: src/tables/build/BuildOutputTable.tsx:654 #: src/tables/stock/StockItemTestResultTable.tsx:173 msgid "Test Results" msgstr "" -#: src/pages/build/BuildDetail.tsx:550 +#: src/pages/build/BuildDetail.tsx:555 msgid "Edit Build Order" msgstr "" -#: src/pages/build/BuildDetail.tsx:572 +#: src/pages/build/BuildDetail.tsx:577 #: src/tables/build/BuildOrderTable.tsx:207 #: src/tables/build/BuildOrderTable.tsx:223 msgid "Add Build Order" msgstr "" -#: src/pages/build/BuildDetail.tsx:582 +#: src/pages/build/BuildDetail.tsx:587 msgid "Cancel Build Order" msgstr "" -#: src/pages/build/BuildDetail.tsx:584 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:416 -#: src/pages/sales/ReturnOrderDetail.tsx:427 -#: src/pages/sales/SalesOrderDetail.tsx:454 +#: src/pages/build/BuildDetail.tsx:589 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:421 +#: src/pages/sales/ReturnOrderDetail.tsx:432 +#: src/pages/sales/SalesOrderDetail.tsx:459 msgid "Order cancelled" msgstr "" -#: src/pages/build/BuildDetail.tsx:585 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:415 -#: src/pages/sales/ReturnOrderDetail.tsx:426 -#: src/pages/sales/SalesOrderDetail.tsx:453 +#: src/pages/build/BuildDetail.tsx:590 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:420 +#: src/pages/sales/ReturnOrderDetail.tsx:431 +#: src/pages/sales/SalesOrderDetail.tsx:458 msgid "Cancel this order" msgstr "" -#: src/pages/build/BuildDetail.tsx:594 +#: src/pages/build/BuildDetail.tsx:599 msgid "Hold Build Order" msgstr "" -#: src/pages/build/BuildDetail.tsx:596 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:423 -#: src/pages/sales/ReturnOrderDetail.tsx:434 -#: src/pages/sales/SalesOrderDetail.tsx:461 +#: src/pages/build/BuildDetail.tsx:601 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:428 +#: src/pages/sales/ReturnOrderDetail.tsx:439 +#: src/pages/sales/SalesOrderDetail.tsx:466 msgid "Place this order on hold" msgstr "" -#: src/pages/build/BuildDetail.tsx:597 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:424 -#: src/pages/sales/ReturnOrderDetail.tsx:435 -#: src/pages/sales/SalesOrderDetail.tsx:462 +#: src/pages/build/BuildDetail.tsx:602 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:429 +#: src/pages/sales/ReturnOrderDetail.tsx:440 +#: src/pages/sales/SalesOrderDetail.tsx:467 msgid "Order placed on hold" msgstr "" -#: src/pages/build/BuildDetail.tsx:602 +#: src/pages/build/BuildDetail.tsx:607 msgid "Issue Build Order" msgstr "" -#: src/pages/build/BuildDetail.tsx:604 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:407 -#: src/pages/sales/ReturnOrderDetail.tsx:418 -#: src/pages/sales/SalesOrderDetail.tsx:445 +#: src/pages/build/BuildDetail.tsx:609 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:412 +#: src/pages/sales/ReturnOrderDetail.tsx:423 +#: src/pages/sales/SalesOrderDetail.tsx:450 msgid "Issue this order" msgstr "" -#: src/pages/build/BuildDetail.tsx:605 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:408 -#: src/pages/sales/ReturnOrderDetail.tsx:419 -#: src/pages/sales/SalesOrderDetail.tsx:446 +#: src/pages/build/BuildDetail.tsx:610 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:413 +#: src/pages/sales/ReturnOrderDetail.tsx:424 +#: src/pages/sales/SalesOrderDetail.tsx:451 msgid "Order issued" msgstr "" -#: src/pages/build/BuildDetail.tsx:624 +#: src/pages/build/BuildDetail.tsx:629 msgid "Complete Build Order" msgstr "" -#: src/pages/build/BuildDetail.tsx:630 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:436 -#: src/pages/sales/ReturnOrderDetail.tsx:442 -#: src/pages/sales/SalesOrderDetail.tsx:480 +#: src/pages/build/BuildDetail.tsx:635 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:441 +#: src/pages/sales/ReturnOrderDetail.tsx:447 +#: src/pages/sales/SalesOrderDetail.tsx:485 msgid "Mark this order as complete" msgstr "" -#: src/pages/build/BuildDetail.tsx:633 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:430 -#: src/pages/sales/ReturnOrderDetail.tsx:443 -#: src/pages/sales/SalesOrderDetail.tsx:481 +#: src/pages/build/BuildDetail.tsx:638 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:435 +#: src/pages/sales/ReturnOrderDetail.tsx:448 +#: src/pages/sales/SalesOrderDetail.tsx:486 msgid "Order completed" msgstr "" -#: src/pages/build/BuildDetail.tsx:660 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:459 -#: src/pages/sales/ReturnOrderDetail.tsx:470 -#: src/pages/sales/SalesOrderDetail.tsx:516 +#: src/pages/build/BuildDetail.tsx:665 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:464 +#: src/pages/sales/ReturnOrderDetail.tsx:475 +#: src/pages/sales/SalesOrderDetail.tsx:521 msgid "Issue Order" msgstr "" -#: src/pages/build/BuildDetail.tsx:667 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:466 -#: src/pages/sales/ReturnOrderDetail.tsx:477 -#: src/pages/sales/SalesOrderDetail.tsx:530 +#: src/pages/build/BuildDetail.tsx:672 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:471 +#: src/pages/sales/ReturnOrderDetail.tsx:482 +#: src/pages/sales/SalesOrderDetail.tsx:535 msgid "Complete Order" msgstr "" -#: src/pages/build/BuildDetail.tsx:686 +#: src/pages/build/BuildDetail.tsx:691 msgid "Build Order Actions" msgstr "" -#: src/pages/build/BuildDetail.tsx:691 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:489 -#: src/pages/sales/ReturnOrderDetail.tsx:500 -#: src/pages/sales/SalesOrderDetail.tsx:554 +#: src/pages/build/BuildDetail.tsx:696 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:494 +#: src/pages/sales/ReturnOrderDetail.tsx:505 +#: src/pages/sales/SalesOrderDetail.tsx:559 msgid "Edit order" msgstr "" -#: src/pages/build/BuildDetail.tsx:695 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:497 -#: src/pages/sales/ReturnOrderDetail.tsx:506 -#: src/pages/sales/SalesOrderDetail.tsx:559 -msgid "Duplicate order" -msgstr "" - -#: src/pages/build/BuildDetail.tsx:699 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:500 +#: src/pages/build/BuildDetail.tsx:700 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:502 #: src/pages/sales/ReturnOrderDetail.tsx:511 -#: src/pages/sales/SalesOrderDetail.tsx:562 -msgid "Hold order" +#: src/pages/sales/SalesOrderDetail.tsx:564 +msgid "Duplicate order" msgstr "" #: src/pages/build/BuildDetail.tsx:704 #: src/pages/purchasing/PurchaseOrderDetail.tsx:505 #: src/pages/sales/ReturnOrderDetail.tsx:516 #: src/pages/sales/SalesOrderDetail.tsx:567 +msgid "Hold order" +msgstr "" + +#: src/pages/build/BuildDetail.tsx:709 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:510 +#: src/pages/sales/ReturnOrderDetail.tsx:521 +#: src/pages/sales/SalesOrderDetail.tsx:572 msgid "Cancel order" msgstr "" -#: src/pages/build/BuildDetail.tsx:742 +#: src/pages/build/BuildDetail.tsx:747 #: src/pages/stock/StockDetail.tsx:344 -#: src/tables/build/BuildAllocatedStockTable.tsx:85 +#: src/tables/build/BuildAllocatedStockTable.tsx:82 #: src/tables/part/PartBuildAllocationsTable.tsx:45 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:157 #: src/tables/stock/StockTrackingTable.tsx:109 @@ -7143,7 +7206,7 @@ msgstr "" #~ msgid "Build order created" #~ msgstr "Build order created" -#: src/pages/build/BuildIndex.tsx:29 +#: src/pages/build/BuildIndex.tsx:35 #: src/tables/build/BuildOrderTable.tsx:184 msgid "Show external build orders" msgstr "" @@ -7152,61 +7215,82 @@ msgstr "" #~ msgid "New Build Order" #~ msgstr "New Build Order" -#: src/pages/build/BuildIndex.tsx:83 -#: src/pages/purchasing/PurchasingIndex.tsx:69 -#: src/pages/sales/SalesIndex.tsx:92 -#: src/pages/sales/SalesIndex.tsx:125 +#: src/pages/build/BuildIndex.tsx:74 +#: src/pages/part/CategoryDetail.tsx:292 +#: src/pages/purchasing/PurchasingIndex.tsx:74 +#: src/pages/purchasing/PurchasingIndex.tsx:107 +#: src/pages/purchasing/PurchasingIndex.tsx:135 +#: src/pages/purchasing/PurchasingIndex.tsx:156 +#: src/pages/purchasing/PurchasingIndex.tsx:184 +#: src/pages/sales/SalesIndex.tsx:61 +#: src/pages/sales/SalesIndex.tsx:107 +#: src/pages/sales/SalesIndex.tsx:140 msgid "Table View" msgstr "" -#: src/pages/build/BuildIndex.tsx:86 -#: src/pages/purchasing/PurchasingIndex.tsx:72 -#: src/pages/sales/SalesIndex.tsx:95 -#: src/pages/sales/SalesIndex.tsx:128 +#: src/pages/build/BuildIndex.tsx:80 +#: src/pages/purchasing/PurchasingIndex.tsx:80 +#: src/pages/sales/SalesIndex.tsx:67 +#: src/pages/sales/SalesIndex.tsx:113 msgid "Calendar View" msgstr "" -#: src/pages/company/CompanyDetail.tsx:99 +#: src/pages/build/BuildIndex.tsx:86 +#: src/pages/part/CategoryDetail.tsx:306 +#: src/pages/purchasing/PurchasingIndex.tsx:92 +#: src/pages/purchasing/PurchasingIndex.tsx:118 +#: src/pages/purchasing/PurchasingIndex.tsx:141 +#: src/pages/purchasing/PurchasingIndex.tsx:167 +#: src/pages/purchasing/PurchasingIndex.tsx:190 +#: src/pages/sales/SalesIndex.tsx:79 +#: src/pages/sales/SalesIndex.tsx:125 +#: src/pages/sales/SalesIndex.tsx:151 +msgid "Parametric View" +msgstr "" + +#: src/pages/company/CompanyDetail.tsx:100 msgid "Website" msgstr "" -#: src/pages/company/CompanyDetail.tsx:107 +#: src/pages/company/CompanyDetail.tsx:108 msgid "Phone Number" msgstr "" -#: src/pages/company/CompanyDetail.tsx:114 +#: src/pages/company/CompanyDetail.tsx:115 msgid "Email Address" msgstr "" -#: src/pages/company/CompanyDetail.tsx:121 +#: src/pages/company/CompanyDetail.tsx:122 msgid "Tax ID" msgstr "" -#: src/pages/company/CompanyDetail.tsx:131 +#: src/pages/company/CompanyDetail.tsx:132 msgid "Default Currency" msgstr "" -#: src/pages/company/CompanyDetail.tsx:142 +#: src/pages/company/CompanyDetail.tsx:143 #: src/pages/company/ManufacturerDetail.tsx:8 -#: src/pages/company/ManufacturerPartDetail.tsx:104 -#: src/pages/company/ManufacturerPartDetail.tsx:280 -#: src/pages/company/SupplierPartDetail.tsx:152 +#: src/pages/company/ManufacturerPartDetail.tsx:103 +#: src/pages/company/ManufacturerPartDetail.tsx:271 +#: src/pages/company/SupplierPartDetail.tsx:153 #: src/tables/Filter.tsx:347 #: src/tables/company/CompanyTable.tsx:101 #: src/tables/purchasing/SupplierPartTable.tsx:89 msgid "Manufacturer" msgstr "" -#: src/pages/company/CompanyDetail.tsx:148 +#: src/pages/company/CompanyDetail.tsx:149 #: src/pages/company/CustomerDetail.tsx:8 #: src/pages/part/pricing/SaleHistoryPanel.tsx:31 -#: src/pages/sales/ReturnOrderDetail.tsx:123 -#: src/pages/sales/SalesOrderDetail.tsx:113 -#: src/pages/sales/SalesOrderShipmentDetail.tsx:113 +#: src/pages/sales/ReturnOrderDetail.tsx:124 +#: src/pages/sales/SalesOrderDetail.tsx:114 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:111 #: src/pages/stock/StockDetail.tsx:370 #: src/tables/company/CompanyTable.tsx:106 +#: src/tables/sales/ReturnOrderParametricTable.tsx:32 #: src/tables/sales/ReturnOrderTable.tsx:108 -#: src/tables/sales/SalesOrderShipmentTable.tsx:111 +#: src/tables/sales/SalesOrderParametricTable.tsx:32 +#: src/tables/sales/SalesOrderShipmentTable.tsx:132 #: src/tables/sales/SalesOrderTable.tsx:133 #: src/tables/stock/StockTrackingTable.tsx:153 msgid "Customer" @@ -7216,11 +7300,11 @@ msgstr "" #~ msgid "Edit company" #~ msgstr "Edit company" -#: src/pages/company/CompanyDetail.tsx:181 +#: src/pages/company/CompanyDetail.tsx:182 msgid "Company Details" msgstr "" -#: src/pages/company/CompanyDetail.tsx:187 +#: src/pages/company/CompanyDetail.tsx:188 msgid "Supplied Parts" msgstr "" @@ -7228,79 +7312,79 @@ msgstr "" #~ msgid "Delete company" #~ msgstr "Delete company" -#: src/pages/company/CompanyDetail.tsx:194 +#: src/pages/company/CompanyDetail.tsx:195 msgid "Manufactured Parts" msgstr "" -#: src/pages/company/CompanyDetail.tsx:241 +#: src/pages/company/CompanyDetail.tsx:242 msgid "Assigned Stock" msgstr "" -#: src/pages/company/CompanyDetail.tsx:282 +#: src/pages/company/CompanyDetail.tsx:287 #: src/tables/company/CompanyTable.tsx:82 msgid "Edit Company" msgstr "" -#: src/pages/company/CompanyDetail.tsx:290 +#: src/pages/company/CompanyDetail.tsx:295 msgid "Delete Company" msgstr "" -#: src/pages/company/CompanyDetail.tsx:305 +#: src/pages/company/CompanyDetail.tsx:310 msgid "Company Actions" msgstr "" -#: src/pages/company/ManufacturerPartDetail.tsx:78 -#: src/pages/company/SupplierPartDetail.tsx:89 +#: src/pages/company/ManufacturerPartDetail.tsx:77 +#: src/pages/company/SupplierPartDetail.tsx:90 msgid "Internal Part" msgstr "" -#: src/pages/company/ManufacturerPartDetail.tsx:112 +#: src/pages/company/ManufacturerPartDetail.tsx:111 msgid "Manufacturer Part Number" msgstr "" -#: src/pages/company/ManufacturerPartDetail.tsx:129 -#: src/pages/company/SupplierPartDetail.tsx:113 +#: src/pages/company/ManufacturerPartDetail.tsx:128 +#: src/pages/company/SupplierPartDetail.tsx:114 msgid "External Link" msgstr "" -#: src/pages/company/ManufacturerPartDetail.tsx:148 -#: src/pages/company/SupplierPartDetail.tsx:232 +#: src/pages/company/ManufacturerPartDetail.tsx:147 +#: src/pages/company/SupplierPartDetail.tsx:233 #: src/pages/part/PartDetail.tsx:787 msgid "Part Details" msgstr "" -#: src/pages/company/ManufacturerPartDetail.tsx:151 +#: src/pages/company/ManufacturerPartDetail.tsx:150 msgid "Manufacturer Details" msgstr "" -#: src/pages/company/ManufacturerPartDetail.tsx:160 +#: src/pages/company/ManufacturerPartDetail.tsx:159 msgid "Manufacturer Part Details" msgstr "" -#: src/pages/company/ManufacturerPartDetail.tsx:178 -#: src/pages/company/SupplierPartDetail.tsx:252 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:381 +#: src/pages/company/ManufacturerPartDetail.tsx:165 +#: src/pages/company/SupplierPartDetail.tsx:253 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:382 msgid "Received Stock" msgstr "" -#: src/pages/company/ManufacturerPartDetail.tsx:220 +#: src/pages/company/ManufacturerPartDetail.tsx:211 #: src/tables/purchasing/ManufacturerPartTable.tsx:108 msgid "Edit Manufacturer Part" msgstr "" -#: src/pages/company/ManufacturerPartDetail.tsx:227 +#: src/pages/company/ManufacturerPartDetail.tsx:218 #: src/tables/purchasing/ManufacturerPartTable.tsx:96 #: src/tables/purchasing/ManufacturerPartTable.tsx:115 #: src/tables/purchasing/ManufacturerPartTable.tsx:156 msgid "Add Manufacturer Part" msgstr "" -#: src/pages/company/ManufacturerPartDetail.tsx:239 +#: src/pages/company/ManufacturerPartDetail.tsx:230 #: src/tables/purchasing/ManufacturerPartTable.tsx:126 msgid "Delete Manufacturer Part" msgstr "" -#: src/pages/company/ManufacturerPartDetail.tsx:254 +#: src/pages/company/ManufacturerPartDetail.tsx:245 msgid "Manufacturer Part Actions" msgstr "" @@ -7308,12 +7392,12 @@ msgstr "" #~ msgid "ManufacturerPart" #~ msgstr "ManufacturerPart" -#: src/pages/company/SupplierPartDetail.tsx:104 +#: src/pages/company/SupplierPartDetail.tsx:105 #: src/tables/part/RelatedPartTable.tsx:82 msgid "Part Description" msgstr "" -#: src/pages/company/SupplierPartDetail.tsx:179 +#: src/pages/company/SupplierPartDetail.tsx:180 #: src/tables/part/PartPurchaseOrdersTable.tsx:73 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:191 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:233 @@ -7321,50 +7405,50 @@ msgstr "" msgid "Pack Quantity" msgstr "" -#: src/pages/company/SupplierPartDetail.tsx:204 +#: src/pages/company/SupplierPartDetail.tsx:205 msgid "Supplier Availability" msgstr "" -#: src/pages/company/SupplierPartDetail.tsx:212 +#: src/pages/company/SupplierPartDetail.tsx:213 msgid "Availability Updated" msgstr "" -#: src/pages/company/SupplierPartDetail.tsx:237 +#: src/pages/company/SupplierPartDetail.tsx:238 msgid "Availability" msgstr "" -#: src/pages/company/SupplierPartDetail.tsx:246 +#: src/pages/company/SupplierPartDetail.tsx:247 msgid "Supplier Part Details" msgstr "" -#: src/pages/company/SupplierPartDetail.tsx:279 +#: src/pages/company/SupplierPartDetail.tsx:280 #: src/pages/part/PartPricingPanel.tsx:113 #: src/pages/part/pricing/PricingOverviewPanel.tsx:239 msgid "Supplier Pricing" msgstr "" -#: src/pages/company/SupplierPartDetail.tsx:308 +#: src/pages/company/SupplierPartDetail.tsx:313 msgid "Supplier Part Actions" msgstr "" -#: src/pages/company/SupplierPartDetail.tsx:332 +#: src/pages/company/SupplierPartDetail.tsx:337 #: src/tables/purchasing/SupplierPartTable.tsx:244 msgid "Edit Supplier Part" msgstr "" -#: src/pages/company/SupplierPartDetail.tsx:340 +#: src/pages/company/SupplierPartDetail.tsx:345 #: src/tables/purchasing/SupplierPartTable.tsx:264 msgid "Delete Supplier Part" msgstr "" -#: src/pages/company/SupplierPartDetail.tsx:348 +#: src/pages/company/SupplierPartDetail.tsx:353 #: src/tables/purchasing/SupplierPartTable.tsx:172 #: src/tables/purchasing/SupplierPartTable.tsx:251 msgid "Add Supplier Part" msgstr "" -#: src/pages/company/SupplierPartDetail.tsx:388 -#: src/pages/part/PartDetail.tsx:1003 +#: src/pages/company/SupplierPartDetail.tsx:393 +#: src/pages/part/PartDetail.tsx:1018 msgid "No Stock" msgstr "" @@ -7411,83 +7495,83 @@ msgstr "" msgid "Basic user" msgstr "" -#: src/pages/part/CategoryDetail.tsx:100 +#: src/pages/part/CategoryDetail.tsx:103 #: src/pages/stock/LocationDetail.tsx:94 #: src/tables/settings/ErrorTable.tsx:63 #: src/tables/settings/ErrorTable.tsx:108 msgid "Path" msgstr "" -#: src/pages/part/CategoryDetail.tsx:116 +#: src/pages/part/CategoryDetail.tsx:119 msgid "Parent Category" msgstr "" -#: src/pages/part/CategoryDetail.tsx:139 -#: src/pages/part/CategoryDetail.tsx:271 +#: src/pages/part/CategoryDetail.tsx:142 +#: src/pages/part/CategoryDetail.tsx:279 msgid "Subcategories" msgstr "" -#: src/pages/part/CategoryDetail.tsx:146 +#: src/pages/part/CategoryDetail.tsx:149 #: src/pages/stock/LocationDetail.tsx:134 #: src/tables/part/PartCategoryTable.tsx:89 #: src/tables/stock/StockLocationTable.tsx:43 msgid "Structural" msgstr "" -#: src/pages/part/CategoryDetail.tsx:152 +#: src/pages/part/CategoryDetail.tsx:155 msgid "Parent default location" msgstr "" -#: src/pages/part/CategoryDetail.tsx:159 +#: src/pages/part/CategoryDetail.tsx:162 msgid "Default location" msgstr "" -#: src/pages/part/CategoryDetail.tsx:170 +#: src/pages/part/CategoryDetail.tsx:173 msgid "Top level part category" msgstr "" -#: src/pages/part/CategoryDetail.tsx:180 -#: src/pages/part/CategoryDetail.tsx:248 +#: src/pages/part/CategoryDetail.tsx:183 +#: src/pages/part/CategoryDetail.tsx:251 #: src/tables/part/PartCategoryTable.tsx:122 msgid "Edit Part Category" msgstr "" -#: src/pages/part/CategoryDetail.tsx:189 +#: src/pages/part/CategoryDetail.tsx:192 msgid "Move items to parent category" msgstr "" -#: src/pages/part/CategoryDetail.tsx:193 +#: src/pages/part/CategoryDetail.tsx:196 #: src/pages/stock/LocationDetail.tsx:226 msgid "Delete items" msgstr "" -#: src/pages/part/CategoryDetail.tsx:201 -#: src/pages/part/CategoryDetail.tsx:253 +#: src/pages/part/CategoryDetail.tsx:204 +#: src/pages/part/CategoryDetail.tsx:256 msgid "Delete Part Category" msgstr "" -#: src/pages/part/CategoryDetail.tsx:204 +#: src/pages/part/CategoryDetail.tsx:207 msgid "Parts Action" msgstr "" -#: src/pages/part/CategoryDetail.tsx:205 +#: src/pages/part/CategoryDetail.tsx:208 msgid "Action for parts in this category" msgstr "" -#: src/pages/part/CategoryDetail.tsx:211 +#: src/pages/part/CategoryDetail.tsx:214 msgid "Child Categories Action" msgstr "" -#: src/pages/part/CategoryDetail.tsx:212 +#: src/pages/part/CategoryDetail.tsx:215 msgid "Action for child categories in this category" msgstr "" -#: src/pages/part/CategoryDetail.tsx:244 +#: src/pages/part/CategoryDetail.tsx:247 #: src/tables/part/PartCategoryTable.tsx:143 msgid "Category Actions" msgstr "" -#: src/pages/part/CategoryDetail.tsx:265 +#: src/pages/part/CategoryDetail.tsx:273 msgid "Category Details" msgstr "" @@ -7585,7 +7669,6 @@ msgid "Category Default Location" msgstr "" #: src/pages/part/PartDetail.tsx:507 -#: src/tables/purchasing/ManufacturerPartParameterTable.tsx:48 msgid "Units" msgstr "" @@ -7600,7 +7683,7 @@ msgstr "" #: src/pages/part/PartDetail.tsx:542 #: src/tables/bom/BomTable.tsx:439 -#: src/tables/build/BuildLineTable.tsx:305 +#: src/tables/build/BuildLineTable.tsx:306 #: src/tables/part/PartTable.tsx:319 #: src/tables/sales/SalesOrderLineItemTable.tsx:138 msgid "Available Stock" @@ -7608,7 +7691,7 @@ msgstr "" #: src/pages/part/PartDetail.tsx:548 #: src/tables/bom/BomTable.tsx:341 -#: src/tables/build/BuildLineTable.tsx:267 +#: src/tables/build/BuildLineTable.tsx:268 #: src/tables/sales/SalesOrderLineItemTable.tsx:180 msgid "On order" msgstr "" @@ -7634,7 +7717,7 @@ msgstr "" #~ msgstr "Scheduling" #: src/pages/part/PartDetail.tsx:620 -#: src/tables/part/ParametricPartTable.tsx:359 +#: src/tables/part/ParametricPartTable.tsx:24 #: src/tables/part/PartTable.tsx:203 msgid "Locked" msgstr "" @@ -7671,16 +7754,16 @@ msgid "Saleable Part" msgstr "" #: src/pages/part/PartDetail.tsx:663 -#: src/pages/part/PartDetail.tsx:1033 +#: src/pages/part/PartDetail.tsx:1054 #: src/tables/bom/BomTable.tsx:150 #: src/tables/bom/BomTable.tsx:434 msgid "Virtual Part" msgstr "" #: src/pages/part/PartDetail.tsx:678 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:271 -#: src/pages/sales/ReturnOrderDetail.tsx:249 -#: src/pages/sales/SalesOrderDetail.tsx:242 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:272 +#: src/pages/sales/ReturnOrderDetail.tsx:250 +#: src/pages/sales/SalesOrderDetail.tsx:243 #: src/tables/ColumnRenderers.tsx:502 msgid "Creation Date" msgstr "" @@ -7718,35 +7801,46 @@ msgstr "" msgid "Select Part Revision" msgstr "" -#: src/pages/part/PartDetail.tsx:823 +#: src/pages/part/PartDetail.tsx:812 msgid "Variants" msgstr "" -#: src/pages/part/PartDetail.tsx:830 +#: src/pages/part/PartDetail.tsx:819 #: src/pages/stock/StockDetail.tsx:542 msgid "Allocations" msgstr "" -#: src/pages/part/PartDetail.tsx:837 +#: src/pages/part/PartDetail.tsx:826 msgid "Bill of Materials" msgstr "" -#: src/pages/part/PartDetail.tsx:849 +#: src/pages/part/PartDetail.tsx:838 msgid "Used In" msgstr "" -#: src/pages/part/PartDetail.tsx:856 +#: src/pages/part/PartDetail.tsx:845 msgid "Part Pricing" msgstr "" -#: src/pages/part/PartDetail.tsx:926 +#: src/pages/part/PartDetail.tsx:915 msgid "Test Templates" msgstr "" -#: src/pages/part/PartDetail.tsx:948 +#: src/pages/part/PartDetail.tsx:937 msgid "Related Parts" msgstr "" +#: src/pages/part/PartDetail.tsx:949 +#: src/tables/ColumnRenderers.tsx:73 +#: src/tables/bom/BomTable.tsx:657 +#: src/tables/part/PartTestTemplateTable.tsx:258 +msgid "Part is Locked" +msgstr "" + +#: src/pages/part/PartDetail.tsx:954 +msgid "Part parameters cannot be edited, as the part is locked" +msgstr "" + #: src/pages/part/PartDetail.tsx:956 #~ msgid "Count part stock" #~ msgstr "Count part stock" @@ -7755,42 +7849,46 @@ msgstr "" #~ msgid "Transfer part stock" #~ msgstr "Transfer part stock" -#: src/pages/part/PartDetail.tsx:1009 +#: src/pages/part/PartDetail.tsx:1024 #: src/tables/part/PartTestTemplateTable.tsx:112 #: src/tables/stock/StockItemTestResultTable.tsx:404 msgid "Required" msgstr "" -#: src/pages/part/PartDetail.tsx:1058 +#: src/pages/part/PartDetail.tsx:1042 +msgid "Deficit" +msgstr "" + +#: src/pages/part/PartDetail.tsx:1079 #: src/tables/part/PartTable.tsx:396 #: src/tables/part/PartTable.tsx:449 msgid "Add Part" msgstr "" -#: src/pages/part/PartDetail.tsx:1072 +#: src/pages/part/PartDetail.tsx:1093 msgid "Delete Part" msgstr "" -#: src/pages/part/PartDetail.tsx:1081 +#: src/pages/part/PartDetail.tsx:1102 msgid "Deleting this part cannot be reversed" msgstr "" -#: src/pages/part/PartDetail.tsx:1143 +#: src/pages/part/PartDetail.tsx:1164 #: src/pages/stock/StockDetail.tsx:883 msgid "Order" msgstr "" -#: src/pages/part/PartDetail.tsx:1144 +#: src/pages/part/PartDetail.tsx:1165 #: src/pages/stock/StockDetail.tsx:884 -#: src/tables/build/BuildLineTable.tsx:761 +#: src/tables/build/BuildLineTable.tsx:768 msgid "Order Stock" msgstr "" -#: src/pages/part/PartDetail.tsx:1156 +#: src/pages/part/PartDetail.tsx:1177 msgid "Search by serial number" msgstr "" -#: src/pages/part/PartDetail.tsx:1164 +#: src/pages/part/PartDetail.tsx:1185 #: src/tables/part/PartTable.tsx:506 msgid "Part Actions" msgstr "" @@ -8039,7 +8137,7 @@ msgstr "" #: src/pages/part/pricing/PricingOverviewPanel.tsx:288 #: src/pages/stock/StockDetail.tsx:426 -#: src/tables/part/PartParameterTable.tsx:121 +#: src/tables/general/ParameterTable.tsx:101 #: src/tables/stock/StockItemTable.tsx:300 msgid "Last Updated" msgstr "" @@ -8107,17 +8205,17 @@ msgstr "" msgid "Variant Part" msgstr "" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:89 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:90 msgid "Edit Purchase Order" msgstr "" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:125 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:126 #: src/tables/purchasing/PurchaseOrderTable.tsx:154 #: src/tables/purchasing/PurchaseOrderTable.tsx:167 msgid "Add Purchase Order" msgstr "" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:147 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:148 msgid "Supplier Reference" msgstr "" @@ -8127,20 +8225,20 @@ msgstr "" #~ msgid "Order Currency," #~ msgstr "Order Currency," -#: src/pages/purchasing/PurchaseOrderDetail.tsx:187 -#: src/pages/sales/ReturnOrderDetail.tsx:160 -#: src/pages/sales/SalesOrderDetail.tsx:144 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:188 +#: src/pages/sales/ReturnOrderDetail.tsx:161 +#: src/pages/sales/SalesOrderDetail.tsx:145 msgid "Completed Line Items" msgstr "" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:196 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:197 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:272 msgid "Destination" msgstr "" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:202 -#: src/pages/sales/ReturnOrderDetail.tsx:167 -#: src/pages/sales/SalesOrderDetail.tsx:161 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:203 +#: src/pages/sales/ReturnOrderDetail.tsx:168 +#: src/pages/sales/SalesOrderDetail.tsx:162 msgid "Order Currency" msgstr "" @@ -8150,97 +8248,97 @@ msgstr "" #~ msgid "Created On" #~ msgstr "Created On" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:208 -#: src/pages/sales/ReturnOrderDetail.tsx:174 -#: src/pages/sales/SalesOrderDetail.tsx:167 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:209 +#: src/pages/sales/ReturnOrderDetail.tsx:175 +#: src/pages/sales/SalesOrderDetail.tsx:168 msgid "Total Cost" msgstr "" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:237 -#: src/pages/sales/ReturnOrderDetail.tsx:215 -#: src/pages/sales/SalesOrderDetail.tsx:208 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:238 +#: src/pages/sales/ReturnOrderDetail.tsx:216 +#: src/pages/sales/SalesOrderDetail.tsx:209 msgid "Contact Email" msgstr "" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:245 -#: src/pages/sales/ReturnOrderDetail.tsx:223 -#: src/pages/sales/SalesOrderDetail.tsx:216 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:246 +#: src/pages/sales/ReturnOrderDetail.tsx:224 +#: src/pages/sales/SalesOrderDetail.tsx:217 msgid "Contact Phone" msgstr "" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:278 -#: src/pages/sales/ReturnOrderDetail.tsx:257 -#: src/pages/sales/SalesOrderDetail.tsx:249 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:279 +#: src/pages/sales/ReturnOrderDetail.tsx:258 +#: src/pages/sales/SalesOrderDetail.tsx:250 msgid "Issue Date" msgstr "" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:303 -#: src/pages/sales/ReturnOrderDetail.tsx:281 -#: src/pages/sales/SalesOrderDetail.tsx:272 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:304 +#: src/pages/sales/ReturnOrderDetail.tsx:282 +#: src/pages/sales/SalesOrderDetail.tsx:273 #: src/tables/ColumnRenderers.tsx:510 #: src/tables/build/BuildOrderTable.tsx:137 #: src/tables/part/PartPurchaseOrdersTable.tsx:106 msgid "Completion Date" msgstr "" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:333 -#: src/pages/sales/ReturnOrderDetail.tsx:311 -#: src/pages/sales/SalesOrderDetail.tsx:349 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:334 +#: src/pages/sales/ReturnOrderDetail.tsx:312 +#: src/pages/sales/SalesOrderDetail.tsx:350 msgid "Order Details" msgstr "" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:339 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:348 -#: src/pages/sales/ReturnOrderDetail.tsx:153 -#: src/pages/sales/ReturnOrderDetail.tsx:317 -#: src/pages/sales/ReturnOrderDetail.tsx:326 -#: src/pages/sales/SalesOrderDetail.tsx:355 -#: src/pages/sales/SalesOrderDetail.tsx:364 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:340 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:349 +#: src/pages/sales/ReturnOrderDetail.tsx:154 +#: src/pages/sales/ReturnOrderDetail.tsx:318 +#: src/pages/sales/ReturnOrderDetail.tsx:327 +#: src/pages/sales/SalesOrderDetail.tsx:356 +#: src/pages/sales/SalesOrderDetail.tsx:365 msgid "Line Items" msgstr "" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:363 -#: src/pages/sales/ReturnOrderDetail.tsx:341 -#: src/pages/sales/SalesOrderDetail.tsx:378 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:364 +#: src/pages/sales/ReturnOrderDetail.tsx:342 +#: src/pages/sales/SalesOrderDetail.tsx:379 msgid "Extra Line Items" msgstr "" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:405 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:410 msgid "Issue Purchase Order" msgstr "" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:413 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:418 msgid "Cancel Purchase Order" msgstr "" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:421 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:426 msgid "Hold Purchase Order" msgstr "" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:429 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:434 msgid "Complete Purchase Order" msgstr "" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:485 -#: src/pages/sales/ReturnOrderDetail.tsx:496 -#: src/pages/sales/SalesOrderDetail.tsx:549 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:490 +#: src/pages/sales/ReturnOrderDetail.tsx:501 +#: src/pages/sales/SalesOrderDetail.tsx:554 msgid "Order Actions" msgstr "" -#: src/pages/sales/ReturnOrderDetail.tsx:114 -#: src/pages/sales/SalesOrderDetail.tsx:104 -#: src/pages/sales/SalesOrderShipmentDetail.tsx:134 +#: src/pages/sales/ReturnOrderDetail.tsx:115 +#: src/pages/sales/SalesOrderDetail.tsx:105 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:132 #: src/tables/sales/SalesOrderTable.tsx:141 msgid "Customer Reference" msgstr "" -#: src/pages/sales/ReturnOrderDetail.tsx:195 +#: src/pages/sales/ReturnOrderDetail.tsx:196 msgid "Return Address" msgstr "" -#: src/pages/sales/ReturnOrderDetail.tsx:201 -#: src/pages/sales/SalesOrderDetail.tsx:194 -#: src/pages/sales/SalesOrderShipmentDetail.tsx:181 +#: src/pages/sales/ReturnOrderDetail.tsx:202 +#: src/pages/sales/SalesOrderDetail.tsx:195 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:179 msgid "Not specified" msgstr "" @@ -8248,117 +8346,117 @@ msgstr "" #~ msgid "Order canceled" #~ msgstr "Order canceled" -#: src/pages/sales/ReturnOrderDetail.tsx:389 +#: src/pages/sales/ReturnOrderDetail.tsx:394 msgid "Edit Return Order" msgstr "" -#: src/pages/sales/ReturnOrderDetail.tsx:407 +#: src/pages/sales/ReturnOrderDetail.tsx:412 #: src/tables/sales/ReturnOrderTable.tsx:154 #: src/tables/sales/ReturnOrderTable.tsx:167 msgid "Add Return Order" msgstr "" -#: src/pages/sales/ReturnOrderDetail.tsx:416 +#: src/pages/sales/ReturnOrderDetail.tsx:421 msgid "Issue Return Order" msgstr "" -#: src/pages/sales/ReturnOrderDetail.tsx:424 +#: src/pages/sales/ReturnOrderDetail.tsx:429 msgid "Cancel Return Order" msgstr "" -#: src/pages/sales/ReturnOrderDetail.tsx:432 +#: src/pages/sales/ReturnOrderDetail.tsx:437 msgid "Hold Return Order" msgstr "" -#: src/pages/sales/ReturnOrderDetail.tsx:440 +#: src/pages/sales/ReturnOrderDetail.tsx:445 msgid "Complete Return Order" msgstr "" -#: src/pages/sales/SalesOrderDetail.tsx:153 +#: src/pages/sales/SalesOrderDetail.tsx:154 msgid "Completed Shipments" msgstr "" -#: src/pages/sales/SalesOrderDetail.tsx:188 -#: src/pages/sales/SalesOrderShipmentDetail.tsx:170 +#: src/pages/sales/SalesOrderDetail.tsx:189 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:168 msgid "Shipping Address" msgstr "" -#: src/pages/sales/SalesOrderDetail.tsx:316 +#: src/pages/sales/SalesOrderDetail.tsx:317 msgid "Edit Sales Order" msgstr "" -#: src/pages/sales/SalesOrderDetail.tsx:338 +#: src/pages/sales/SalesOrderDetail.tsx:339 #: src/tables/sales/SalesOrderTable.tsx:108 #: src/tables/sales/SalesOrderTable.tsx:121 msgid "Add Sales Order" msgstr "" -#: src/pages/sales/SalesOrderDetail.tsx:396 +#: src/pages/sales/SalesOrderDetail.tsx:397 #: src/tables/sales/SalesOrderTable.tsx:147 msgid "Shipments" msgstr "" -#: src/pages/sales/SalesOrderDetail.tsx:443 +#: src/pages/sales/SalesOrderDetail.tsx:448 msgid "Issue Sales Order" msgstr "" -#: src/pages/sales/SalesOrderDetail.tsx:451 +#: src/pages/sales/SalesOrderDetail.tsx:456 msgid "Cancel Sales Order" msgstr "" -#: src/pages/sales/SalesOrderDetail.tsx:459 +#: src/pages/sales/SalesOrderDetail.tsx:464 msgid "Hold Sales Order" msgstr "" -#: src/pages/sales/SalesOrderDetail.tsx:467 +#: src/pages/sales/SalesOrderDetail.tsx:472 msgid "Ship Sales Order" msgstr "" -#: src/pages/sales/SalesOrderDetail.tsx:469 +#: src/pages/sales/SalesOrderDetail.tsx:474 msgid "Ship this order?" msgstr "" -#: src/pages/sales/SalesOrderDetail.tsx:470 +#: src/pages/sales/SalesOrderDetail.tsx:475 msgid "Order shipped" msgstr "" -#: src/pages/sales/SalesOrderDetail.tsx:478 +#: src/pages/sales/SalesOrderDetail.tsx:483 msgid "Complete Sales Order" msgstr "" -#: src/pages/sales/SalesOrderDetail.tsx:523 +#: src/pages/sales/SalesOrderDetail.tsx:528 msgid "Ship Order" msgstr "" -#: src/pages/sales/SalesOrderShipmentDetail.tsx:142 -#: src/tables/sales/SalesOrderShipmentTable.tsx:135 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:140 +#: src/tables/sales/SalesOrderShipmentTable.tsx:156 msgid "Shipment Reference" msgstr "" -#: src/pages/sales/SalesOrderShipmentDetail.tsx:148 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:146 msgid "Tracking Number" msgstr "" -#: src/pages/sales/SalesOrderShipmentDetail.tsx:156 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:154 msgid "Invoice Number" msgstr "" -#: src/pages/sales/SalesOrderShipmentDetail.tsx:191 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:189 msgid "Allocated Items" msgstr "" -#: src/pages/sales/SalesOrderShipmentDetail.tsx:196 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:194 msgid "Checked By" msgstr "" -#: src/pages/sales/SalesOrderShipmentDetail.tsx:202 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:200 msgid "Not checked" msgstr "" -#: src/pages/sales/SalesOrderShipmentDetail.tsx:208 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:206 #: src/tables/ColumnRenderers.tsx:518 #: src/tables/sales/SalesOrderAllocationTable.tsx:182 -#: src/tables/sales/SalesOrderShipmentTable.tsx:168 +#: src/tables/sales/SalesOrderShipmentTable.tsx:189 msgid "Shipment Date" msgstr "" @@ -8366,108 +8464,82 @@ msgstr "" #~ msgid "Assigned Items" #~ msgstr "Assigned Items" -#: src/pages/sales/SalesOrderShipmentDetail.tsx:216 -#: src/tables/sales/SalesOrderShipmentTable.tsx:172 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:214 +#: src/tables/sales/SalesOrderShipmentTable.tsx:193 msgid "Delivery Date" msgstr "" -#: src/pages/sales/SalesOrderShipmentDetail.tsx:255 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:253 msgid "Shipment Details" msgstr "" -#: src/pages/sales/SalesOrderShipmentDetail.tsx:294 -#: src/pages/sales/SalesOrderShipmentDetail.tsx:438 -#: src/tables/sales/SalesOrderShipmentTable.tsx:90 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:292 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:406 +#: src/tables/sales/SalesOrderShipmentTable.tsx:97 msgid "Edit Shipment" msgstr "" -#: src/pages/sales/SalesOrderShipmentDetail.tsx:301 -#: src/pages/sales/SalesOrderShipmentDetail.tsx:457 -#: src/tables/sales/SalesOrderShipmentTable.tsx:82 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:299 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:425 +#: src/tables/sales/SalesOrderShipmentTable.tsx:89 msgid "Cancel Shipment" msgstr "" -#: src/pages/sales/SalesOrderShipmentDetail.tsx:314 -#: src/tables/sales/SalesOrderShipmentTable.tsx:98 -#: src/tables/sales/SalesOrderShipmentTable.tsx:193 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:312 +#: src/tables/sales/SalesOrderShipmentTable.tsx:119 +#: src/tables/sales/SalesOrderShipmentTable.tsx:238 msgid "Complete Shipment" msgstr "" -#: src/pages/sales/SalesOrderShipmentDetail.tsx:326 -#: src/pages/sales/SalesOrderShipmentDetail.tsx:328 -msgid "Check Shipment" -msgstr "" - -#: src/pages/sales/SalesOrderShipmentDetail.tsx:329 -msgid "Marking the shipment as checked indicates that you have verified that all items included in this shipment are correct" -msgstr "" - #: src/pages/sales/SalesOrderShipmentDetail.tsx:339 -msgid "Shipment marked as checked" -msgstr "" - -#: src/pages/sales/SalesOrderShipmentDetail.tsx:346 -#: src/pages/sales/SalesOrderShipmentDetail.tsx:348 -msgid "Uncheck Shipment" -msgstr "" - -#: src/pages/sales/SalesOrderShipmentDetail.tsx:349 -msgid "Marking the shipment as unchecked indicates that the shipment requires further verification" -msgstr "" - -#: src/pages/sales/SalesOrderShipmentDetail.tsx:359 -msgid "Shipment marked as unchecked" -msgstr "" - -#: src/pages/sales/SalesOrderShipmentDetail.tsx:371 #: src/tables/part/PartPurchaseOrdersTable.tsx:122 msgid "Pending" msgstr "" -#: src/pages/sales/SalesOrderShipmentDetail.tsx:377 -#: src/tables/sales/SalesOrderShipmentTable.tsx:147 -#: src/tables/sales/SalesOrderShipmentTable.tsx:254 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:345 +#: src/tables/sales/SalesOrderShipmentTable.tsx:168 +#: src/tables/sales/SalesOrderShipmentTable.tsx:299 msgid "Checked" msgstr "" -#: src/pages/sales/SalesOrderShipmentDetail.tsx:383 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:351 msgid "Not Checked" msgstr "" -#: src/pages/sales/SalesOrderShipmentDetail.tsx:389 -#: src/tables/sales/SalesOrderShipmentTable.tsx:154 -#: src/tables/sales/SalesOrderShipmentTable.tsx:259 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:357 +#: src/tables/sales/SalesOrderShipmentTable.tsx:175 +#: src/tables/sales/SalesOrderShipmentTable.tsx:304 msgid "Shipped" msgstr "" -#: src/pages/sales/SalesOrderShipmentDetail.tsx:395 -#: src/tables/sales/SalesOrderShipmentTable.tsx:161 -#: src/tables/sales/SalesOrderShipmentTable.tsx:264 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:363 +#: src/tables/sales/SalesOrderShipmentTable.tsx:182 +#: src/tables/sales/SalesOrderShipmentTable.tsx:309 #: src/tables/settings/EmailTable.tsx:31 msgid "Delivered" msgstr "" -#: src/pages/sales/SalesOrderShipmentDetail.tsx:410 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:378 msgid "Send Shipment" msgstr "" -#: src/pages/sales/SalesOrderShipmentDetail.tsx:433 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:401 msgid "Shipment Actions" msgstr "" -#: src/pages/sales/SalesOrderShipmentDetail.tsx:442 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:410 msgid "Check" msgstr "" -#: src/pages/sales/SalesOrderShipmentDetail.tsx:443 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:411 msgid "Mark shipment as checked" msgstr "" -#: src/pages/sales/SalesOrderShipmentDetail.tsx:449 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:417 msgid "Uncheck" msgstr "" -#: src/pages/sales/SalesOrderShipmentDetail.tsx:450 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:418 msgid "Mark shipment as unchecked" msgstr "" @@ -8775,13 +8847,6 @@ msgstr "" msgid "Part is not active" msgstr "" -#: src/tables/ColumnRenderers.tsx:73 -#: src/tables/bom/BomTable.tsx:657 -#: src/tables/part/PartParameterTable.tsx:227 -#: src/tables/part/PartTestTemplateTable.tsx:258 -msgid "Part is Locked" -msgstr "" - #: src/tables/ColumnRenderers.tsx:78 msgid "You are subscribed to notifications for this part" msgstr "" @@ -9219,13 +9284,13 @@ msgstr "" #~ msgstr "Show asssmbled items" #: src/tables/bom/BomTable.tsx:315 -#: src/tables/build/BuildLineTable.tsx:276 +#: src/tables/build/BuildLineTable.tsx:277 #: src/tables/part/PartTable.tsx:145 msgid "External stock" msgstr "" #: src/tables/bom/BomTable.tsx:323 -#: src/tables/build/BuildLineTable.tsx:239 +#: src/tables/build/BuildLineTable.tsx:240 msgid "Includes substitute stock" msgstr "" @@ -9234,7 +9299,7 @@ msgstr "" #~ msgstr "Edit Bom Item" #: src/tables/bom/BomTable.tsx:332 -#: src/tables/build/BuildLineTable.tsx:249 +#: src/tables/build/BuildLineTable.tsx:250 #: src/tables/sales/SalesOrderLineItemTable.tsx:166 msgid "Includes variant stock" msgstr "" @@ -9272,8 +9337,8 @@ msgid "Stock Information" msgstr "" #: src/tables/bom/BomTable.tsx:399 -#: src/tables/build/BuildLineTable.tsx:496 -#: src/tables/build/BuildLineTable.tsx:537 +#: src/tables/build/BuildLineTable.tsx:497 +#: src/tables/build/BuildLineTable.tsx:538 msgid "Consumable item" msgstr "" @@ -9282,7 +9347,7 @@ msgid "No available stock" msgstr "" #: src/tables/bom/BomTable.tsx:420 -#: src/tables/build/BuildLineTable.tsx:213 +#: src/tables/build/BuildLineTable.tsx:214 msgid "Show testable items" msgstr "" @@ -9291,7 +9356,7 @@ msgid "Show trackable items" msgstr "" #: src/tables/bom/BomTable.tsx:430 -#: src/tables/build/BuildLineTable.tsx:208 +#: src/tables/build/BuildLineTable.tsx:209 msgid "Show assembled items" msgstr "" @@ -9335,7 +9400,7 @@ msgstr "" #: src/tables/bom/BomTable.tsx:464 #: src/tables/bom/UsedInTable.tsx:85 -#: src/tables/build/BuildLineTable.tsx:202 +#: src/tables/build/BuildLineTable.tsx:203 msgid "Optional" msgstr "" @@ -9345,7 +9410,7 @@ msgid "Show optional items" msgstr "" #: src/tables/bom/BomTable.tsx:469 -#: src/tables/build/BuildLineTable.tsx:197 +#: src/tables/build/BuildLineTable.tsx:198 msgid "Consumable" msgstr "" @@ -9420,6 +9485,7 @@ msgid "Add a single BOM item" msgstr "" #: src/tables/bom/BomTable.tsx:637 +#: src/tables/general/ParameterTable.tsx:206 #: src/tables/part/PartTable.tsx:546 msgid "Import from File" msgstr "" @@ -9433,8 +9499,8 @@ msgid "Bill of materials cannot be edited, as the part is locked" msgstr "" #: src/tables/bom/UsedInTable.tsx:34 -#: src/tables/build/BuildLineTable.tsx:207 -#: src/tables/part/ParametricPartTable.tsx:364 +#: src/tables/build/BuildLineTable.tsx:208 +#: src/tables/part/ParametricPartTable.tsx:29 #: src/tables/part/PartBuildAllocationsTable.tsx:60 #: src/tables/part/PartTable.tsx:209 #: src/tables/stock/StockItemTable.tsx:333 @@ -9455,11 +9521,11 @@ msgstr "" msgid "Show trackable assemblies" msgstr "" -#: src/tables/build/BuildAllocatedStockTable.tsx:67 +#: src/tables/build/BuildAllocatedStockTable.tsx:64 msgid "Allocated to Output" msgstr "" -#: src/tables/build/BuildAllocatedStockTable.tsx:68 +#: src/tables/build/BuildAllocatedStockTable.tsx:65 msgid "Show items allocated to a build output" msgstr "" @@ -9472,50 +9538,68 @@ msgstr "" #~ msgid "Include orders for part variants" #~ msgstr "Include orders for part variants" -#: src/tables/build/BuildAllocatedStockTable.tsx:97 +#: src/tables/build/BuildAllocatedStockTable.tsx:94 #: src/tables/part/PartBuildAllocationsTable.tsx:84 #: src/tables/part/PartPurchaseOrdersTable.tsx:132 #: src/tables/part/PartSalesAllocationsTable.tsx:69 #: src/tables/sales/SalesOrderAllocationTable.tsx:122 -#: src/tables/sales/SalesOrderShipmentTable.tsx:130 +#: src/tables/sales/SalesOrderShipmentTable.tsx:151 msgid "Order Status" msgstr "" +#: src/tables/build/BuildAllocatedStockTable.tsx:164 +#: src/tables/build/BuildLineTable.tsx:651 +msgid "Edit Stock Allocation" +msgstr "" + #: src/tables/build/BuildAllocatedStockTable.tsx:164 #~ msgid "Edit Build Item" #~ msgstr "Edit Build Item" -#: src/tables/build/BuildAllocatedStockTable.tsx:167 -#: src/tables/build/BuildLineTable.tsx:650 -msgid "Edit Stock Allocation" -msgstr "" - #: src/tables/build/BuildAllocatedStockTable.tsx:174 #~ msgid "Delete Build Item" #~ msgstr "Delete Build Item" -#: src/tables/build/BuildAllocatedStockTable.tsx:180 -#: src/tables/build/BuildLineTable.tsx:663 -msgid "Delete Stock Allocation" +#: src/tables/build/BuildAllocatedStockTable.tsx:177 +#: src/tables/build/BuildLineTable.tsx:664 +#: src/tables/sales/SalesOrderAllocationTable.tsx:218 +msgid "Remove Allocated Stock" msgstr "" -#: src/tables/build/BuildAllocatedStockTable.tsx:239 +#: src/tables/build/BuildAllocatedStockTable.tsx:180 +#: src/tables/build/BuildLineTable.tsx:663 +#~ msgid "Delete Stock Allocation" +#~ msgstr "Delete Stock Allocation" + +#: src/tables/build/BuildAllocatedStockTable.tsx:182 +#: src/tables/build/BuildLineTable.tsx:669 +#: src/tables/sales/SalesOrderAllocationTable.tsx:221 +msgid "Are you sure you want to remove this allocated stock from the order?" +msgstr "" + +#: src/tables/build/BuildAllocatedStockTable.tsx:242 msgid "Consume" msgstr "" +#: src/tables/build/BuildAllocatedStockTable.tsx:259 +#: src/tables/build/BuildLineTable.tsx:112 +#: src/tables/sales/SalesOrderAllocationTable.tsx:248 +msgid "Remove allocated stock" +msgstr "" + #: src/tables/build/BuildLineTable.tsx:59 #~ msgid "Show lines with available stock" #~ msgstr "Show lines with available stock" -#: src/tables/build/BuildLineTable.tsx:120 +#: src/tables/build/BuildLineTable.tsx:121 msgid "View Stock Item" msgstr "" -#: src/tables/build/BuildLineTable.tsx:183 +#: src/tables/build/BuildLineTable.tsx:184 msgid "Show fully allocated lines" msgstr "" -#: src/tables/build/BuildLineTable.tsx:188 +#: src/tables/build/BuildLineTable.tsx:189 msgid "Show fully consumed lines" msgstr "" @@ -9523,124 +9607,124 @@ msgstr "" #~ msgid "Show allocated lines" #~ msgstr "Show allocated lines" -#: src/tables/build/BuildLineTable.tsx:193 +#: src/tables/build/BuildLineTable.tsx:194 msgid "Show items with sufficient available stock" msgstr "" -#: src/tables/build/BuildLineTable.tsx:198 +#: src/tables/build/BuildLineTable.tsx:199 msgid "Show consumable lines" msgstr "" -#: src/tables/build/BuildLineTable.tsx:203 +#: src/tables/build/BuildLineTable.tsx:204 msgid "Show optional lines" msgstr "" -#: src/tables/build/BuildLineTable.tsx:212 +#: src/tables/build/BuildLineTable.tsx:213 #: src/tables/part/PartTable.tsx:233 msgid "Testable" msgstr "" -#: src/tables/build/BuildLineTable.tsx:217 +#: src/tables/build/BuildLineTable.tsx:218 #: src/tables/stock/StockItemTable.tsx:388 msgid "Tracked" msgstr "" -#: src/tables/build/BuildLineTable.tsx:218 +#: src/tables/build/BuildLineTable.tsx:219 msgid "Show tracked lines" msgstr "" -#: src/tables/build/BuildLineTable.tsx:223 +#: src/tables/build/BuildLineTable.tsx:224 msgid "Show items with stock on order" msgstr "" -#: src/tables/build/BuildLineTable.tsx:258 +#: src/tables/build/BuildLineTable.tsx:259 #: src/tables/sales/SalesOrderLineItemTable.tsx:172 msgid "In production" msgstr "" -#: src/tables/build/BuildLineTable.tsx:286 +#: src/tables/build/BuildLineTable.tsx:287 msgid "Insufficient stock" msgstr "" -#: src/tables/build/BuildLineTable.tsx:302 +#: src/tables/build/BuildLineTable.tsx:303 #: src/tables/sales/SalesOrderLineItemTable.tsx:160 #: src/tables/stock/StockItemTable.tsx:191 msgid "No stock available" msgstr "" -#: src/tables/build/BuildLineTable.tsx:375 +#: src/tables/build/BuildLineTable.tsx:376 msgid "Gets Inherited" msgstr "" -#: src/tables/build/BuildLineTable.tsx:388 +#: src/tables/build/BuildLineTable.tsx:389 msgid "Unit Quantity" msgstr "" -#: src/tables/build/BuildLineTable.tsx:415 +#: src/tables/build/BuildLineTable.tsx:416 msgid "Setup Quantity" msgstr "" -#: src/tables/build/BuildLineTable.tsx:424 +#: src/tables/build/BuildLineTable.tsx:425 msgid "Attrition" msgstr "" -#: src/tables/build/BuildLineTable.tsx:432 +#: src/tables/build/BuildLineTable.tsx:433 msgid "Rounding Multiple" msgstr "" -#: src/tables/build/BuildLineTable.tsx:441 +#: src/tables/build/BuildLineTable.tsx:442 msgid "BOM Information" msgstr "" -#: src/tables/build/BuildLineTable.tsx:515 +#: src/tables/build/BuildLineTable.tsx:516 #: src/tables/part/PartBuildAllocationsTable.tsx:102 msgid "Fully allocated" msgstr "" -#: src/tables/build/BuildLineTable.tsx:563 +#: src/tables/build/BuildLineTable.tsx:564 #: src/tables/sales/SalesOrderLineItemTable.tsx:311 msgid "Create Build Order" msgstr "" -#: src/tables/build/BuildLineTable.tsx:592 +#: src/tables/build/BuildLineTable.tsx:593 msgid "Auto allocation in progress" msgstr "" -#: src/tables/build/BuildLineTable.tsx:595 -#: src/tables/build/BuildLineTable.tsx:802 +#: src/tables/build/BuildLineTable.tsx:596 +#: src/tables/build/BuildLineTable.tsx:809 msgid "Auto Allocate Stock" msgstr "" -#: src/tables/build/BuildLineTable.tsx:596 +#: src/tables/build/BuildLineTable.tsx:597 msgid "Automatically allocate stock to this build according to the selected options" msgstr "" -#: src/tables/build/BuildLineTable.tsx:616 -#: src/tables/build/BuildLineTable.tsx:630 -#: src/tables/build/BuildLineTable.tsx:751 -#: src/tables/build/BuildLineTable.tsx:852 +#: src/tables/build/BuildLineTable.tsx:617 +#: src/tables/build/BuildLineTable.tsx:631 +#: src/tables/build/BuildLineTable.tsx:758 +#: src/tables/build/BuildLineTable.tsx:859 #: src/tables/build/BuildOutputTable.tsx:355 #: src/tables/build/BuildOutputTable.tsx:360 msgid "Deallocate Stock" msgstr "" -#: src/tables/build/BuildLineTable.tsx:632 +#: src/tables/build/BuildLineTable.tsx:633 msgid "Deallocate all untracked stock for this build order" msgstr "" -#: src/tables/build/BuildLineTable.tsx:634 +#: src/tables/build/BuildLineTable.tsx:635 msgid "Deallocate stock from the selected line item" msgstr "" -#: src/tables/build/BuildLineTable.tsx:638 +#: src/tables/build/BuildLineTable.tsx:639 msgid "Stock has been deallocated" msgstr "" -#: src/tables/build/BuildLineTable.tsx:771 +#: src/tables/build/BuildLineTable.tsx:778 msgid "Build Stock" msgstr "" -#: src/tables/build/BuildLineTable.tsx:784 +#: src/tables/build/BuildLineTable.tsx:791 #: src/tables/sales/SalesOrderLineItemTable.tsx:487 msgid "View Part" msgstr "" @@ -9739,7 +9823,7 @@ msgid "Serialize Build Output" msgstr "" #: src/tables/build/BuildOutputTable.tsx:405 -#: src/tables/part/PartTestResultTable.tsx:310 +#: src/tables/part/PartTestResultTable.tsx:318 #: src/tables/stock/StockItemTable.tsx:328 msgid "Filter by stock status" msgstr "" @@ -9964,8 +10048,8 @@ msgid "View Item" msgstr "" #: src/tables/general/ExtraLineItemTable.tsx:95 -#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:299 -#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:403 +#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:300 +#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:405 #: src/tables/sales/ReturnOrderLineItemTable.tsx:83 #: src/tables/sales/ReturnOrderLineItemTable.tsx:187 #: src/tables/sales/SalesOrderLineItemTable.tsx:252 @@ -9974,14 +10058,14 @@ msgid "Add Line Item" msgstr "" #: src/tables/general/ExtraLineItemTable.tsx:108 -#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:320 +#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:322 #: src/tables/sales/ReturnOrderLineItemTable.tsx:96 #: src/tables/sales/SalesOrderLineItemTable.tsx:271 msgid "Edit Line Item" msgstr "" #: src/tables/general/ExtraLineItemTable.tsx:117 -#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:329 +#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:331 #: src/tables/sales/ReturnOrderLineItemTable.tsx:105 #: src/tables/sales/SalesOrderLineItemTable.tsx:280 msgid "Delete Line Item" @@ -9991,6 +10075,137 @@ msgstr "" msgid "Add Extra Line Item" msgstr "" +#: src/tables/general/ParameterTable.tsx:88 +msgid "Internal Units" +msgstr "" + +#: src/tables/general/ParameterTable.tsx:108 +#: src/tables/general/ParameterTable.tsx:123 +msgid "Updated By" +msgstr "" + +#: src/tables/general/ParameterTable.tsx:118 +msgid "Show parameters for enabled templates" +msgstr "" + +#: src/tables/general/ParameterTable.tsx:124 +msgid "Filter by user who last updated the parameter" +msgstr "" + +#: src/tables/general/ParameterTable.tsx:154 +msgid "Import Parameters" +msgstr "" + +#: src/tables/general/ParameterTable.tsx:164 +#: src/tables/general/ParametricDataTable.tsx:261 +#: src/tables/general/ParametricDataTable.tsx:392 +msgid "Add Parameter" +msgstr "" + +#: src/tables/general/ParameterTable.tsx:175 +#: src/tables/general/ParameterTable.tsx:222 +#: src/tables/general/ParametricDataTable.tsx:285 +msgid "Edit Parameter" +msgstr "" + +#: src/tables/general/ParameterTable.tsx:183 +#: src/tables/general/ParameterTable.tsx:230 +msgid "Delete Parameter" +msgstr "" + +#: src/tables/general/ParameterTable.tsx:191 +msgid "Add Parameters" +msgstr "" + +#: src/tables/general/ParameterTable.tsx:197 +msgid "Create Parameter" +msgstr "" + +#: src/tables/general/ParameterTable.tsx:199 +msgid "Create a new parameter" +msgstr "" + +#: src/tables/general/ParameterTable.tsx:208 +msgid "Import parameters from a file" +msgstr "" + +#: src/tables/general/ParameterTemplateTable.tsx:48 +#: src/tables/general/ParameterTemplateTable.tsx:197 +msgid "Add Parameter Template" +msgstr "" + +#: src/tables/general/ParameterTemplateTable.tsx:64 +msgid "Duplicate Parameter Template" +msgstr "" + +#: src/tables/general/ParameterTemplateTable.tsx:78 +msgid "Delete Parameter Template" +msgstr "" + +#: src/tables/general/ParameterTemplateTable.tsx:85 +msgid "Edit Parameter Template" +msgstr "" + +#: src/tables/general/ParameterTemplateTable.tsx:138 +msgid "Checkbox" +msgstr "" + +#: src/tables/general/ParameterTemplateTable.tsx:139 +msgid "Show checkbox templates" +msgstr "" + +#: src/tables/general/ParameterTemplateTable.tsx:143 +msgid "Has choices" +msgstr "" + +#: src/tables/general/ParameterTemplateTable.tsx:144 +msgid "Show templates with choices" +msgstr "" + +#: src/tables/general/ParameterTemplateTable.tsx:148 +#: src/tables/part/PartTable.tsx:245 +msgid "Has Units" +msgstr "" + +#: src/tables/general/ParameterTemplateTable.tsx:149 +msgid "Show templates with units" +msgstr "" + +#: src/tables/general/ParameterTemplateTable.tsx:154 +msgid "Show enabled templates" +msgstr "" + +#: src/tables/general/ParameterTemplateTable.tsx:158 +#: src/tables/settings/ImportSessionTable.tsx:111 +#: src/tables/settings/TemplateTable.tsx:368 +msgid "Model Type" +msgstr "" + +#: src/tables/general/ParameterTemplateTable.tsx:159 +msgid "Filter by model type" +msgstr "" + +#: src/tables/general/ParametricDataTable.tsx:79 +msgid "Click to edit" +msgstr "" + +#: src/tables/general/ParametricDataTableFilters.tsx:36 +msgid "True" +msgstr "" + +#: src/tables/general/ParametricDataTableFilters.tsx:37 +msgid "False" +msgstr "" + +#: src/tables/general/ParametricDataTableFilters.tsx:47 +#: src/tables/general/ParametricDataTableFilters.tsx:80 +msgid "Select a choice" +msgstr "" + +#: src/tables/general/ParametricDataTableFilters.tsx:100 +msgid "Enter a value" +msgstr "" + #: src/tables/machine/MachineListTable.tsx:133 msgid "Machine restarted" msgstr "" @@ -10071,7 +10286,7 @@ msgid "Initialized" msgstr "" #: src/tables/machine/MachineListTable.tsx:410 -#: src/tables/machine/MachineTypeTable.tsx:307 +#: src/tables/machine/MachineTypeTable.tsx:305 msgid "No errors reported" msgstr "" @@ -10132,15 +10347,15 @@ msgstr "" #~ msgid "Machine type information" #~ msgstr "Machine type information" -#: src/tables/machine/MachineTypeTable.tsx:128 +#: src/tables/machine/MachineTypeTable.tsx:126 msgid "Not Found" msgstr "" -#: src/tables/machine/MachineTypeTable.tsx:131 +#: src/tables/machine/MachineTypeTable.tsx:129 msgid "Machine type not found." msgstr "" -#: src/tables/machine/MachineTypeTable.tsx:141 +#: src/tables/machine/MachineTypeTable.tsx:139 msgid "Machine Type Information" msgstr "" @@ -10148,34 +10363,34 @@ msgstr "" #~ msgid "Available drivers" #~ msgstr "Available drivers" -#: src/tables/machine/MachineTypeTable.tsx:156 -#: src/tables/machine/MachineTypeTable.tsx:255 +#: src/tables/machine/MachineTypeTable.tsx:154 +#: src/tables/machine/MachineTypeTable.tsx:253 msgid "Slug" msgstr "" -#: src/tables/machine/MachineTypeTable.tsx:167 -#: src/tables/machine/MachineTypeTable.tsx:276 +#: src/tables/machine/MachineTypeTable.tsx:165 +#: src/tables/machine/MachineTypeTable.tsx:274 msgid "Provider plugin" msgstr "" -#: src/tables/machine/MachineTypeTable.tsx:179 -#: src/tables/machine/MachineTypeTable.tsx:288 +#: src/tables/machine/MachineTypeTable.tsx:177 +#: src/tables/machine/MachineTypeTable.tsx:286 msgid "Provider file" msgstr "" -#: src/tables/machine/MachineTypeTable.tsx:194 +#: src/tables/machine/MachineTypeTable.tsx:192 msgid "Available Drivers" msgstr "" -#: src/tables/machine/MachineTypeTable.tsx:234 +#: src/tables/machine/MachineTypeTable.tsx:232 msgid "Machine driver not found." msgstr "" -#: src/tables/machine/MachineTypeTable.tsx:242 +#: src/tables/machine/MachineTypeTable.tsx:240 msgid "Machine driver information" msgstr "" -#: src/tables/machine/MachineTypeTable.tsx:262 +#: src/tables/machine/MachineTypeTable.tsx:260 msgid "Machine type" msgstr "" @@ -10187,15 +10402,15 @@ msgstr "" #~ msgid "Machine driver detail" #~ msgstr "Machine driver detail" -#: src/tables/machine/MachineTypeTable.tsx:362 +#: src/tables/machine/MachineTypeTable.tsx:360 msgid "Builtin type" msgstr "" -#: src/tables/machine/MachineTypeTable.tsx:371 +#: src/tables/machine/MachineTypeTable.tsx:369 msgid "Machine Type Detail" msgstr "" -#: src/tables/machine/MachineTypeTable.tsx:381 +#: src/tables/machine/MachineTypeTable.tsx:379 msgid "Machine Driver Detail" msgstr "" @@ -10213,8 +10428,16 @@ msgstr "" msgid "Message" msgstr "" -#: src/tables/part/ParametricPartTable.tsx:78 -msgid "Click to edit" +#: src/tables/part/ParametricPartTable.tsx:20 +msgid "Show active parts" +msgstr "" + +#: src/tables/part/ParametricPartTable.tsx:25 +msgid "Show locked parts" +msgstr "" + +#: src/tables/part/ParametricPartTable.tsx:30 +msgid "Show assembly parts" msgstr "" #: src/tables/part/ParametricPartTable.tsx:82 @@ -10222,43 +10445,14 @@ msgstr "" #~ msgstr "Edit parameter" #: src/tables/part/ParametricPartTable.tsx:244 -msgid "Add Part Parameter" -msgstr "" +#~ msgid "Add Part Parameter" +#~ msgstr "Add Part Parameter" #: src/tables/part/ParametricPartTable.tsx:258 #: src/tables/part/PartParameterTable.tsx:164 #: src/tables/part/PartParameterTable.tsx:187 -msgid "Edit Part Parameter" -msgstr "" - -#: src/tables/part/ParametricPartTable.tsx:355 -msgid "Show active parts" -msgstr "" - -#: src/tables/part/ParametricPartTable.tsx:360 -msgid "Show locked parts" -msgstr "" - -#: src/tables/part/ParametricPartTable.tsx:365 -msgid "Show assembly parts" -msgstr "" - -#: src/tables/part/ParametricPartTableFilters.tsx:36 -msgid "True" -msgstr "" - -#: src/tables/part/ParametricPartTableFilters.tsx:37 -msgid "False" -msgstr "" - -#: src/tables/part/ParametricPartTableFilters.tsx:47 -#: src/tables/part/ParametricPartTableFilters.tsx:80 -msgid "Select a choice" -msgstr "" - -#: src/tables/part/ParametricPartTableFilters.tsx:100 -msgid "Enter a value" -msgstr "" +#~ msgid "Edit Part Parameter" +#~ msgstr "Edit Part Parameter" #: src/tables/part/PartBuildAllocationsTable.tsx:64 msgid "Assembly IPN" @@ -10273,7 +10467,7 @@ msgid "Required Stock" msgstr "" #: src/tables/part/PartBuildAllocationsTable.tsx:124 -#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:381 +#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:383 msgid "View Build Order" msgstr "" @@ -10332,85 +10526,22 @@ msgstr "" msgid "Delete Category Parameter" msgstr "" -#: src/tables/part/PartCategoryTemplateTable.tsx:87 -msgid "Parameter Template" -msgstr "" - #: src/tables/part/PartCategoryTemplateTable.tsx:93 #~ msgid "[{0}]" #~ msgstr "[{0}]" -#: src/tables/part/PartParameterTable.tsx:108 -msgid "Internal Units" -msgstr "" - -#: src/tables/part/PartParameterTable.tsx:128 -#: src/tables/part/PartParameterTable.tsx:138 -msgid "Updated By" -msgstr "" - -#: src/tables/part/PartParameterTable.tsx:139 -msgid "Filter by user who last updated the parameter" -msgstr "" - #: src/tables/part/PartParameterTable.tsx:148 -msgid "New Part Parameter" -msgstr "" +#~ msgid "New Part Parameter" +#~ msgstr "New Part Parameter" #: src/tables/part/PartParameterTable.tsx:173 #: src/tables/part/PartParameterTable.tsx:195 -msgid "Delete Part Parameter" -msgstr "" +#~ msgid "Delete Part Parameter" +#~ msgstr "Delete Part Parameter" #: src/tables/part/PartParameterTable.tsx:213 -msgid "Add parameter" -msgstr "" - -#: src/tables/part/PartParameterTable.tsx:232 -msgid "Part parameters cannot be edited, as the part is locked" -msgstr "" - -#: src/tables/part/PartParameterTemplateTable.tsx:36 -msgid "Checkbox" -msgstr "" - -#: src/tables/part/PartParameterTemplateTable.tsx:37 -msgid "Show checkbox templates" -msgstr "" - -#: src/tables/part/PartParameterTemplateTable.tsx:41 -msgid "Has choices" -msgstr "" - -#: src/tables/part/PartParameterTemplateTable.tsx:42 -msgid "Show templates with choices" -msgstr "" - -#: src/tables/part/PartParameterTemplateTable.tsx:46 -#: src/tables/part/PartTable.tsx:245 -msgid "Has Units" -msgstr "" - -#: src/tables/part/PartParameterTemplateTable.tsx:47 -msgid "Show templates with units" -msgstr "" - -#: src/tables/part/PartParameterTemplateTable.tsx:91 -#: src/tables/part/PartParameterTemplateTable.tsx:166 -msgid "Add Parameter Template" -msgstr "" - -#: src/tables/part/PartParameterTemplateTable.tsx:105 -msgid "Duplicate Parameter Template" -msgstr "" - -#: src/tables/part/PartParameterTemplateTable.tsx:117 -msgid "Edit Parameter Template" -msgstr "" - -#: src/tables/part/PartParameterTemplateTable.tsx:128 -msgid "Delete Parameter Template" -msgstr "" +#~ msgid "Add parameter" +#~ msgstr "Add parameter" #: src/tables/part/PartParameterTemplateTable.tsx:141 #~ msgid "Add parameter template" @@ -10430,7 +10561,7 @@ msgid "Show received items" msgstr "" #: src/tables/part/PartSalesAllocationsTable.tsx:90 -#: src/tables/sales/SalesOrderShipmentTable.tsx:218 +#: src/tables/sales/SalesOrderShipmentTable.tsx:263 msgid "View Sales Order" msgstr "" @@ -10617,8 +10748,8 @@ msgstr "" #: src/tables/part/PartTestResultTable.tsx:103 #: src/tables/part/PartTestResultTable.tsx:181 -#: src/tables/part/PartTestResultTable.tsx:320 -#: src/tables/part/PartTestResultTable.tsx:334 +#: src/tables/part/PartTestResultTable.tsx:328 +#: src/tables/part/PartTestResultTable.tsx:342 #: src/tables/stock/StockItemTestResultTable.tsx:296 #: src/tables/stock/StockItemTestResultTable.tsx:368 #: src/tables/stock/StockItemTestResultTable.tsx:429 @@ -10643,7 +10774,7 @@ msgstr "" msgid "No Result" msgstr "" -#: src/tables/part/PartTestResultTable.tsx:298 +#: src/tables/part/PartTestResultTable.tsx:306 msgid "Show build outputs currently in production" msgstr "" @@ -11013,36 +11144,45 @@ msgstr "" #~ msgid "Parameter updated" #~ msgstr "Parameter updated" -#: src/tables/purchasing/ManufacturerPartParameterTable.tsx:63 -#: src/tables/purchasing/ManufacturerPartParameterTable.tsx:112 -msgid "Add Parameter" -msgstr "" - #: src/tables/purchasing/ManufacturerPartParameterTable.tsx:73 #~ msgid "Parameter deleted" #~ msgstr "Parameter deleted" -#: src/tables/purchasing/ManufacturerPartParameterTable.tsx:74 -msgid "Edit Parameter" -msgstr "" - #: src/tables/purchasing/ManufacturerPartParameterTable.tsx:74 #~ msgid "Are you sure you want to delete this parameter?" #~ msgstr "Are you sure you want to delete this parameter?" -#: src/tables/purchasing/ManufacturerPartParameterTable.tsx:82 -msgid "Delete Parameter" +#: src/tables/purchasing/ManufacturerPartParametricTable.tsx:34 +#: src/tables/purchasing/ManufacturerPartTable.tsx:82 +#: src/tables/purchasing/SupplierPartTable.tsx:99 +msgid "MPN" +msgstr "" + +#: src/tables/purchasing/ManufacturerPartParametricTable.tsx:44 +#: src/tables/purchasing/ManufacturerPartTable.tsx:134 +#: src/tables/purchasing/SupplierPartTable.tsx:220 +msgid "Active Part" +msgstr "" + +#: src/tables/purchasing/ManufacturerPartParametricTable.tsx:45 +#: src/tables/purchasing/ManufacturerPartTable.tsx:135 +msgid "Show manufacturer parts for active internal parts." +msgstr "" + +#: src/tables/purchasing/ManufacturerPartParametricTable.tsx:50 +#: src/tables/purchasing/ManufacturerPartTable.tsx:140 +msgid "Active Manufacturer" +msgstr "" + +#: src/tables/purchasing/ManufacturerPartParametricTable.tsx:51 +#: src/tables/purchasing/ManufacturerPartTable.tsx:142 +msgid "Show manufacturer parts for active manufacturers." msgstr "" #: src/tables/purchasing/ManufacturerPartTable.tsx:63 #~ msgid "Create Manufacturer Part" #~ msgstr "Create Manufacturer Part" -#: src/tables/purchasing/ManufacturerPartTable.tsx:82 -#: src/tables/purchasing/SupplierPartTable.tsx:99 -msgid "MPN" -msgstr "" - #: src/tables/purchasing/ManufacturerPartTable.tsx:100 #~ msgid "Manufacturer part updated" #~ msgstr "Manufacturer part updated" @@ -11055,25 +11195,8 @@ msgstr "" #~ msgid "Are you sure you want to remove this manufacturer part?" #~ msgstr "Are you sure you want to remove this manufacturer part?" -#: src/tables/purchasing/ManufacturerPartTable.tsx:134 -#: src/tables/purchasing/SupplierPartTable.tsx:220 -msgid "Active Part" -msgstr "" - -#: src/tables/purchasing/ManufacturerPartTable.tsx:135 -msgid "Show manufacturer parts for active internal parts." -msgstr "" - -#: src/tables/purchasing/ManufacturerPartTable.tsx:140 -msgid "Active Manufacturer" -msgstr "" - -#: src/tables/purchasing/ManufacturerPartTable.tsx:142 -msgid "Show manufacturer parts for active manufacturers." -msgstr "" - #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:115 -#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:397 +#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:399 msgid "Import Line Items" msgstr "" @@ -11099,11 +11222,11 @@ msgstr "" #~ msgid "Add line item" #~ msgstr "Add line item" -#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:350 +#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:352 msgid "Receive line item" msgstr "" -#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:414 +#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:416 msgid "Receive items" msgstr "" @@ -11201,25 +11324,25 @@ msgid "Not shipped" msgstr "" #: src/tables/sales/SalesOrderAllocationTable.tsx:211 -#: src/tables/sales/SalesOrderAllocationTable.tsx:229 +#: src/tables/sales/SalesOrderAllocationTable.tsx:235 msgid "Edit Allocation" msgstr "" #: src/tables/sales/SalesOrderAllocationTable.tsx:218 #: src/tables/sales/SalesOrderAllocationTable.tsx:241 -msgid "Delete Allocation" -msgstr "" +#~ msgid "Delete Allocation" +#~ msgstr "Delete Allocation" -#: src/tables/sales/SalesOrderAllocationTable.tsx:252 -#: src/tables/sales/SalesOrderAllocationTable.tsx:253 +#: src/tables/sales/SalesOrderAllocationTable.tsx:261 +#: src/tables/sales/SalesOrderAllocationTable.tsx:262 msgid "View Shipment" msgstr "" -#: src/tables/sales/SalesOrderAllocationTable.tsx:308 +#: src/tables/sales/SalesOrderAllocationTable.tsx:317 msgid "Assign to Shipment" msgstr "" -#: src/tables/sales/SalesOrderAllocationTable.tsx:324 +#: src/tables/sales/SalesOrderAllocationTable.tsx:333 msgid "Assign to shipment" msgstr "" @@ -11259,35 +11382,35 @@ msgstr "" #~ msgid "Delete Shipment" #~ msgstr "Delete Shipment" -#: src/tables/sales/SalesOrderShipmentTable.tsx:72 +#: src/tables/sales/SalesOrderShipmentTable.tsx:79 msgid "Create Shipment" msgstr "" -#: src/tables/sales/SalesOrderShipmentTable.tsx:143 +#: src/tables/sales/SalesOrderShipmentTable.tsx:164 msgid "Items" msgstr "" -#: src/tables/sales/SalesOrderShipmentTable.tsx:203 +#: src/tables/sales/SalesOrderShipmentTable.tsx:248 msgid "Edit shipment" msgstr "" -#: src/tables/sales/SalesOrderShipmentTable.tsx:211 +#: src/tables/sales/SalesOrderShipmentTable.tsx:256 msgid "Cancel shipment" msgstr "" -#: src/tables/sales/SalesOrderShipmentTable.tsx:241 +#: src/tables/sales/SalesOrderShipmentTable.tsx:286 msgid "Add shipment" msgstr "" -#: src/tables/sales/SalesOrderShipmentTable.tsx:255 +#: src/tables/sales/SalesOrderShipmentTable.tsx:300 msgid "Show shipments which have been checked" msgstr "" -#: src/tables/sales/SalesOrderShipmentTable.tsx:260 +#: src/tables/sales/SalesOrderShipmentTable.tsx:305 msgid "Show shipments which have been shipped" msgstr "" -#: src/tables/sales/SalesOrderShipmentTable.tsx:265 +#: src/tables/sales/SalesOrderShipmentTable.tsx:310 msgid "Show shipments which have been delivered" msgstr "" @@ -11621,11 +11744,6 @@ msgstr "" msgid "Imported Rows" msgstr "" -#: src/tables/settings/ImportSessionTable.tsx:111 -#: src/tables/settings/TemplateTable.tsx:368 -msgid "Model Type" -msgstr "" - #: src/tables/settings/ImportSessionTable.tsx:112 #: src/tables/settings/TemplateTable.tsx:369 msgid "Filter by target model type" diff --git a/src/frontend/src/locales/fi/messages.po b/src/frontend/src/locales/fi/messages.po index 6e0dde81aa..4e2de11d37 100644 --- a/src/frontend/src/locales/fi/messages.po +++ b/src/frontend/src/locales/fi/messages.po @@ -8,7 +8,7 @@ msgstr "" "Language: fi\n" "Project-Id-Version: inventree\n" "Report-Msgid-Bugs-To: \n" -"PO-Revision-Date: 2025-11-19 19:39\n" +"PO-Revision-Date: 2025-12-07 07:36\n" "Last-Translator: \n" "Language-Team: Finnish\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" @@ -30,7 +30,7 @@ msgid "Edit" msgstr "" #: lib/components/RowActions.tsx:56 -#: src/components/forms/ApiForm.tsx:735 +#: src/components/forms/ApiForm.tsx:754 #: src/components/items/ActionDropdown.tsx:257 #: src/components/items/RoleTable.tsx:155 #: src/hooks/UseForm.tsx:164 @@ -56,24 +56,24 @@ msgstr "" #: lib/components/RowActions.tsx:136 #: src/components/nav/NavigationDrawer.tsx:190 -#: src/forms/PurchaseOrderForms.tsx:802 +#: src/forms/PurchaseOrderForms.tsx:854 #: src/forms/StockForms.tsx:796 #: src/forms/StockForms.tsx:843 -#: src/forms/StockForms.tsx:889 -#: src/forms/StockForms.tsx:928 -#: src/forms/StockForms.tsx:964 -#: src/forms/StockForms.tsx:1050 +#: src/forms/StockForms.tsx:896 +#: src/forms/StockForms.tsx:942 +#: src/forms/StockForms.tsx:980 +#: src/forms/StockForms.tsx:1066 #: src/pages/Index/Settings/AccountSettings/MFASettings.tsx:962 msgid "Actions" msgstr "" #: lib/components/SearchInput.tsx:34 -#: src/components/forms/fields/RelatedModelField.tsx:408 +#: src/components/forms/fields/RelatedModelField.tsx:479 #: src/components/nav/Header.tsx:169 #: src/components/wizards/ImportPartWizard.tsx:200 #: src/components/wizards/ImportPartWizard.tsx:233 -#: src/pages/Index/Settings/UserSettings.tsx:74 -#: src/pages/part/PartDetail.tsx:1155 +#: src/pages/Index/Settings/UserSettings.tsx:75 +#: src/pages/part/PartDetail.tsx:1176 msgid "Search" msgstr "" @@ -95,7 +95,7 @@ msgstr "" msgid "No" msgstr "" -#: lib/enums/ModelInformation.tsx:28 +#: lib/enums/ModelInformation.tsx:29 #: src/components/wizards/OrderPartsWizard.tsx:279 #: src/forms/BuildForms.tsx:332 #: src/forms/BuildForms.tsx:407 @@ -103,208 +103,234 @@ msgstr "" #: src/forms/BuildForms.tsx:630 #: src/forms/BuildForms.tsx:793 #: src/forms/BuildForms.tsx:896 -#: src/forms/PurchaseOrderForms.tsx:798 +#: src/forms/PurchaseOrderForms.tsx:850 #: src/forms/ReturnOrderForms.tsx:242 -#: src/forms/SalesOrderForms.tsx:305 +#: src/forms/SalesOrderForms.tsx:384 #: src/forms/StockForms.tsx:360 #: src/forms/StockForms.tsx:791 #: src/forms/StockForms.tsx:838 -#: src/forms/StockForms.tsx:884 -#: src/forms/StockForms.tsx:923 -#: src/forms/StockForms.tsx:959 -#: src/forms/StockForms.tsx:1002 -#: src/forms/StockForms.tsx:1046 -#: src/forms/StockForms.tsx:1094 -#: src/forms/StockForms.tsx:1138 -#: src/pages/build/BuildDetail.tsx:200 -#: src/pages/part/PartDetail.tsx:1207 +#: src/forms/StockForms.tsx:891 +#: src/forms/StockForms.tsx:937 +#: src/forms/StockForms.tsx:975 +#: src/forms/StockForms.tsx:1018 +#: src/forms/StockForms.tsx:1062 +#: src/forms/StockForms.tsx:1110 +#: src/forms/StockForms.tsx:1154 +#: src/pages/build/BuildDetail.tsx:201 +#: src/pages/part/PartDetail.tsx:1228 #: src/tables/ColumnRenderers.tsx:91 +#: src/tables/part/PartTestResultTable.tsx:247 #: src/tables/part/RelatedPartTable.tsx:53 #: src/tables/stock/StockTrackingTable.tsx:87 msgid "Part" msgstr "" -#: lib/enums/ModelInformation.tsx:29 +#: lib/enums/ModelInformation.tsx:30 #: lib/enums/Roles.tsx:35 #: src/components/nav/NavigationDrawer.tsx:70 #: src/defaults/links.tsx:36 -#: src/pages/Index/Settings/SystemSettings.tsx:190 -#: src/pages/part/CategoryDetail.tsx:132 -#: src/pages/part/CategoryDetail.tsx:277 -#: src/pages/part/CategoryDetail.tsx:323 -#: src/pages/part/CategoryDetail.tsx:354 -#: src/pages/part/PartDetail.tsx:965 +#: src/pages/Index/Settings/SystemSettings.tsx:197 +#: src/pages/part/CategoryDetail.tsx:135 +#: src/pages/part/CategoryDetail.tsx:285 +#: src/pages/part/CategoryDetail.tsx:340 +#: src/pages/part/CategoryDetail.tsx:371 +#: src/pages/part/PartDetail.tsx:978 msgid "Parts" msgstr "" #: lib/enums/ModelInformation.tsx:37 #: src/pages/Index/Settings/AdminCenter/PartParameterPanel.tsx:13 -msgid "Part Parameter Template" -msgstr "" +#~ msgid "Part Parameter Template" +#~ msgstr "Part Parameter Template" #: lib/enums/ModelInformation.tsx:38 -msgid "Part Parameter Templates" +#~ msgid "Part Parameter Templates" +#~ msgstr "Part Parameter Templates" + +#: lib/enums/ModelInformation.tsx:39 +msgid "Parameter" +msgstr "" + +#: lib/enums/ModelInformation.tsx:40 +#: src/components/panels/ParametersPanel.tsx:19 +#: src/components/wizards/ImportPartWizard.tsx:807 +#: src/pages/Index/Settings/AdminCenter/Index.tsx:195 +#: src/pages/Index/Settings/SystemSettings.tsx:191 +#: src/pages/part/PartDetail.tsx:943 +msgid "Parameters" msgstr "" #: lib/enums/ModelInformation.tsx:45 -msgid "Part Test Template" +#: src/tables/part/PartCategoryTemplateTable.tsx:87 +msgid "Parameter Template" msgstr "" #: lib/enums/ModelInformation.tsx:46 -msgid "Part Test Templates" +#: src/pages/Index/Settings/AdminCenter/ParameterPanel.tsx:13 +msgid "Parameter Templates" msgstr "" #: lib/enums/ModelInformation.tsx:52 +msgid "Part Test Template" +msgstr "" + +#: lib/enums/ModelInformation.tsx:53 +msgid "Part Test Templates" +msgstr "" + +#: lib/enums/ModelInformation.tsx:59 #: src/components/wizards/OrderPartsWizard.tsx:290 -#: src/pages/company/SupplierPartDetail.tsx:413 +#: src/pages/company/SupplierPartDetail.tsx:418 #: src/pages/stock/StockDetail.tsx:289 -#: src/tables/build/BuildAllocatedStockTable.tsx:155 +#: src/tables/build/BuildAllocatedStockTable.tsx:152 #: src/tables/part/PartPurchaseOrdersTable.tsx:50 +#: src/tables/purchasing/SupplierPartParametricTable.tsx:29 #: src/tables/purchasing/SupplierPartTable.tsx:83 #: src/tables/stock/StockItemTable.tsx:247 msgid "Supplier Part" msgstr "" -#: lib/enums/ModelInformation.tsx:53 -#: src/pages/purchasing/PurchasingIndex.tsx:92 +#: lib/enums/ModelInformation.tsx:60 +#: src/pages/purchasing/PurchasingIndex.tsx:128 msgid "Supplier Parts" msgstr "" -#: lib/enums/ModelInformation.tsx:61 -#: src/pages/company/ManufacturerPartDetail.tsx:297 -#: src/pages/company/SupplierPartDetail.tsx:161 +#: lib/enums/ModelInformation.tsx:69 +#: src/pages/company/ManufacturerPartDetail.tsx:288 +#: src/pages/company/SupplierPartDetail.tsx:162 #: src/tables/part/PartPurchaseOrdersTable.tsx:56 #: src/tables/stock/StockItemTable.tsx:253 msgid "Manufacturer Part" msgstr "" -#: lib/enums/ModelInformation.tsx:62 -#: src/pages/purchasing/PurchasingIndex.tsx:109 +#: lib/enums/ModelInformation.tsx:70 +#: src/pages/purchasing/PurchasingIndex.tsx:177 msgid "Manufacturer Parts" msgstr "" -#: lib/enums/ModelInformation.tsx:70 -#: src/pages/part/CategoryDetail.tsx:354 +#: lib/enums/ModelInformation.tsx:79 +#: src/pages/part/CategoryDetail.tsx:371 #: src/tables/Filter.tsx:389 msgid "Part Category" msgstr "" -#: lib/enums/ModelInformation.tsx:71 +#: lib/enums/ModelInformation.tsx:80 #: lib/enums/Roles.tsx:37 -#: src/pages/part/CategoryDetail.tsx:271 -#: src/pages/part/CategoryDetail.tsx:345 -#: src/pages/part/PartDetail.tsx:1196 +#: src/pages/part/CategoryDetail.tsx:279 +#: src/pages/part/CategoryDetail.tsx:362 +#: src/pages/part/PartDetail.tsx:1217 msgid "Part Categories" msgstr "" -#: lib/enums/ModelInformation.tsx:79 +#: lib/enums/ModelInformation.tsx:88 #: src/forms/BuildForms.tsx:473 #: src/forms/BuildForms.tsx:633 #: src/forms/BuildForms.tsx:794 -#: src/forms/SalesOrderForms.tsx:307 +#: src/forms/SalesOrderForms.tsx:386 #: src/pages/stock/StockDetail.tsx:1005 -#: src/tables/part/PartTestResultTable.tsx:248 +#: src/tables/part/PartTestResultTable.tsx:256 #: src/tables/stock/StockTrackingTable.tsx:48 #: src/tables/stock/StockTrackingTable.tsx:55 msgid "Stock Item" msgstr "" -#: lib/enums/ModelInformation.tsx:80 +#: lib/enums/ModelInformation.tsx:89 #: lib/enums/Roles.tsx:45 -#: src/pages/company/CompanyDetail.tsx:210 -#: src/pages/part/CategoryDetail.tsx:291 +#: src/pages/company/CompanyDetail.tsx:211 +#: src/pages/part/CategoryDetail.tsx:314 #: src/pages/part/PartStockHistoryDetail.tsx:101 #: src/pages/stock/LocationDetail.tsx:121 #: src/pages/stock/LocationDetail.tsx:180 msgid "Stock Items" msgstr "" -#: lib/enums/ModelInformation.tsx:88 +#: lib/enums/ModelInformation.tsx:98 #: lib/enums/Roles.tsx:47 #: src/pages/stock/LocationDetail.tsx:420 msgid "Stock Location" msgstr "" -#: lib/enums/ModelInformation.tsx:89 +#: lib/enums/ModelInformation.tsx:99 #: src/pages/stock/LocationDetail.tsx:174 #: src/pages/stock/LocationDetail.tsx:412 #: src/pages/stock/StockDetail.tsx:996 msgid "Stock Locations" msgstr "" -#: lib/enums/ModelInformation.tsx:97 +#: lib/enums/ModelInformation.tsx:108 msgid "Stock Location Type" msgstr "" -#: lib/enums/ModelInformation.tsx:98 +#: lib/enums/ModelInformation.tsx:109 msgid "Stock Location Types" msgstr "" -#: lib/enums/ModelInformation.tsx:103 -#: src/pages/Index/Settings/SystemSettings.tsx:248 -#: src/pages/part/PartDetail.tsx:911 +#: lib/enums/ModelInformation.tsx:114 +#: src/pages/Index/Settings/SystemSettings.tsx:254 +#: src/pages/part/PartDetail.tsx:900 msgid "Stock History" msgstr "" -#: lib/enums/ModelInformation.tsx:104 +#: lib/enums/ModelInformation.tsx:115 msgid "Stock Histories" msgstr "" -#: lib/enums/ModelInformation.tsx:109 +#: lib/enums/ModelInformation.tsx:120 msgid "Build" msgstr "" -#: lib/enums/ModelInformation.tsx:110 +#: lib/enums/ModelInformation.tsx:121 msgid "Builds" msgstr "" -#: lib/enums/ModelInformation.tsx:118 +#: lib/enums/ModelInformation.tsx:130 msgid "Build Line" msgstr "" -#: lib/enums/ModelInformation.tsx:119 +#: lib/enums/ModelInformation.tsx:131 msgid "Build Lines" msgstr "" -#: lib/enums/ModelInformation.tsx:126 +#: lib/enums/ModelInformation.tsx:138 msgid "Build Item" msgstr "" -#: lib/enums/ModelInformation.tsx:127 +#: lib/enums/ModelInformation.tsx:139 msgid "Build Items" msgstr "" -#: lib/enums/ModelInformation.tsx:132 -#: src/pages/company/CompanyDetail.tsx:340 +#: lib/enums/ModelInformation.tsx:144 +#: src/pages/company/CompanyDetail.tsx:345 #: src/tables/company/CompanyTable.tsx:47 #: src/tables/company/ContactTable.tsx:67 +#: src/tables/company/ParametricCompanyTable.tsx:18 msgid "Company" msgstr "" -#: lib/enums/ModelInformation.tsx:133 +#: lib/enums/ModelInformation.tsx:145 msgid "Companies" msgstr "" -#: lib/enums/ModelInformation.tsx:140 -#: src/pages/build/BuildDetail.tsx:316 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:253 -#: src/pages/sales/ReturnOrderDetail.tsx:231 -#: src/pages/sales/SalesOrderDetail.tsx:224 +#: lib/enums/ModelInformation.tsx:152 +#: src/pages/build/BuildDetail.tsx:317 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:254 +#: src/pages/sales/ReturnOrderDetail.tsx:232 +#: src/pages/sales/SalesOrderDetail.tsx:225 #: src/tables/ColumnRenderers.tsx:362 #: src/tables/Filter.tsx:286 #: src/tables/TableHoverCard.tsx:101 msgid "Project Code" msgstr "" -#: lib/enums/ModelInformation.tsx:141 +#: lib/enums/ModelInformation.tsx:153 #: src/pages/Index/Settings/AdminCenter/Index.tsx:172 msgid "Project Codes" msgstr "" -#: lib/enums/ModelInformation.tsx:147 +#: lib/enums/ModelInformation.tsx:159 #: src/components/wizards/OrderPartsWizard.tsx:338 #: src/pages/part/pricing/PurchaseHistoryPanel.tsx:33 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:550 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:555 #: src/pages/stock/StockDetail.tsx:352 #: src/tables/part/PartPurchaseOrdersTable.tsx:32 #: src/tables/stock/StockItemTable.tsx:239 @@ -312,117 +338,117 @@ msgstr "" msgid "Purchase Order" msgstr "" -#: lib/enums/ModelInformation.tsx:148 +#: lib/enums/ModelInformation.tsx:160 #: lib/enums/Roles.tsx:39 #: src/defaults/actions.tsx:104 -#: src/pages/Index/Settings/SystemSettings.tsx:283 -#: src/pages/company/CompanyDetail.tsx:203 -#: src/pages/company/SupplierPartDetail.tsx:266 -#: src/pages/part/PartDetail.tsx:875 -#: src/pages/purchasing/PurchasingIndex.tsx:60 +#: src/pages/Index/Settings/SystemSettings.tsx:289 +#: src/pages/company/CompanyDetail.tsx:204 +#: src/pages/company/SupplierPartDetail.tsx:267 +#: src/pages/part/PartDetail.tsx:864 +#: src/pages/purchasing/PurchasingIndex.tsx:66 msgid "Purchase Orders" msgstr "" -#: lib/enums/ModelInformation.tsx:156 +#: lib/enums/ModelInformation.tsx:169 msgid "Purchase Order Line" msgstr "" -#: lib/enums/ModelInformation.tsx:157 +#: lib/enums/ModelInformation.tsx:170 msgid "Purchase Order Lines" msgstr "" -#: lib/enums/ModelInformation.tsx:162 -#: src/pages/build/BuildDetail.tsx:289 +#: lib/enums/ModelInformation.tsx:175 +#: src/pages/build/BuildDetail.tsx:290 #: src/pages/part/pricing/SaleHistoryPanel.tsx:24 -#: src/pages/sales/SalesOrderDetail.tsx:614 -#: src/pages/sales/SalesOrderShipmentDetail.tsx:105 -#: src/pages/sales/SalesOrderShipmentDetail.tsx:478 +#: src/pages/sales/SalesOrderDetail.tsx:619 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:103 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:446 #: src/pages/stock/StockDetail.tsx:361 #: src/tables/part/PartSalesAllocationsTable.tsx:41 #: src/tables/sales/SalesOrderAllocationTable.tsx:110 -#: src/tables/sales/SalesOrderShipmentTable.tsx:122 +#: src/tables/sales/SalesOrderShipmentTable.tsx:143 #: src/tables/stock/StockTrackingTable.tsx:131 msgid "Sales Order" msgstr "" -#: lib/enums/ModelInformation.tsx:163 +#: lib/enums/ModelInformation.tsx:176 #: lib/enums/Roles.tsx:43 #: src/defaults/actions.tsx:114 -#: src/pages/Index/Settings/SystemSettings.tsx:299 -#: src/pages/company/CompanyDetail.tsx:223 -#: src/pages/part/PartDetail.tsx:887 -#: src/pages/sales/SalesIndex.tsx:84 +#: src/pages/Index/Settings/SystemSettings.tsx:305 +#: src/pages/company/CompanyDetail.tsx:224 +#: src/pages/part/PartDetail.tsx:876 +#: src/pages/sales/SalesIndex.tsx:53 msgid "Sales Orders" msgstr "" -#: lib/enums/ModelInformation.tsx:171 -#: src/pages/sales/SalesOrderShipmentDetail.tsx:477 +#: lib/enums/ModelInformation.tsx:185 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:445 msgid "Sales Order Shipment" msgstr "" -#: lib/enums/ModelInformation.tsx:172 +#: lib/enums/ModelInformation.tsx:186 msgid "Sales Order Shipments" msgstr "" -#: lib/enums/ModelInformation.tsx:179 -#: src/pages/sales/ReturnOrderDetail.tsx:549 +#: lib/enums/ModelInformation.tsx:194 +#: src/pages/sales/ReturnOrderDetail.tsx:554 #: src/tables/stock/StockTrackingTable.tsx:142 msgid "Return Order" msgstr "" -#: lib/enums/ModelInformation.tsx:180 +#: lib/enums/ModelInformation.tsx:195 #: lib/enums/Roles.tsx:41 #: src/defaults/actions.tsx:125 -#: src/pages/Index/Settings/SystemSettings.tsx:316 -#: src/pages/company/CompanyDetail.tsx:230 -#: src/pages/part/PartDetail.tsx:894 -#: src/pages/sales/SalesIndex.tsx:117 +#: src/pages/Index/Settings/SystemSettings.tsx:322 +#: src/pages/company/CompanyDetail.tsx:231 +#: src/pages/part/PartDetail.tsx:883 +#: src/pages/sales/SalesIndex.tsx:99 msgid "Return Orders" msgstr "" -#: lib/enums/ModelInformation.tsx:188 +#: lib/enums/ModelInformation.tsx:204 msgid "Return Order Line Item" msgstr "" -#: lib/enums/ModelInformation.tsx:189 +#: lib/enums/ModelInformation.tsx:205 msgid "Return Order Line Items" msgstr "" -#: lib/enums/ModelInformation.tsx:194 +#: lib/enums/ModelInformation.tsx:210 #: src/tables/company/AddressTable.tsx:52 msgid "Address" msgstr "" -#: lib/enums/ModelInformation.tsx:195 -#: src/pages/company/CompanyDetail.tsx:264 +#: lib/enums/ModelInformation.tsx:211 +#: src/pages/company/CompanyDetail.tsx:265 msgid "Addresses" msgstr "" -#: lib/enums/ModelInformation.tsx:201 +#: lib/enums/ModelInformation.tsx:217 #: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:89 #: src/pages/core/UserDetail.tsx:135 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:229 -#: src/pages/sales/ReturnOrderDetail.tsx:207 -#: src/pages/sales/SalesOrderDetail.tsx:200 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:230 +#: src/pages/sales/ReturnOrderDetail.tsx:208 +#: src/pages/sales/SalesOrderDetail.tsx:201 msgid "Contact" msgstr "" -#: lib/enums/ModelInformation.tsx:202 -#: src/pages/company/CompanyDetail.tsx:258 +#: lib/enums/ModelInformation.tsx:218 +#: src/pages/company/CompanyDetail.tsx:259 #: src/pages/core/CoreIndex.tsx:33 msgid "Contacts" msgstr "" -#: lib/enums/ModelInformation.tsx:208 +#: lib/enums/ModelInformation.tsx:224 #: src/tables/ColumnRenderers.tsx:444 msgid "Owner" msgstr "" -#: lib/enums/ModelInformation.tsx:209 +#: lib/enums/ModelInformation.tsx:225 msgid "Owners" msgstr "" -#: lib/enums/ModelInformation.tsx:215 +#: lib/enums/ModelInformation.tsx:231 #: src/pages/Auth/ChangePassword.tsx:36 #: src/pages/core/UserDetail.tsx:220 #: src/tables/ColumnRenderers.tsx:395 @@ -437,7 +463,7 @@ msgstr "" msgid "User" msgstr "" -#: lib/enums/ModelInformation.tsx:216 +#: lib/enums/ModelInformation.tsx:232 #: src/components/nav/NavigationDrawer.tsx:105 #: src/pages/Index/Settings/AdminCenter/UserManagementPanel.tsx:15 #: src/pages/core/CoreIndex.tsx:21 @@ -445,12 +471,12 @@ msgstr "" msgid "Users" msgstr "" -#: lib/enums/ModelInformation.tsx:222 +#: lib/enums/ModelInformation.tsx:238 #: src/pages/core/GroupDetail.tsx:78 msgid "Group" msgstr "" -#: lib/enums/ModelInformation.tsx:223 +#: lib/enums/ModelInformation.tsx:239 #: src/components/nav/NavigationDrawer.tsx:111 #: src/pages/Index/Settings/AdminCenter/UserManagementPanel.tsx:23 #: src/pages/core/CoreIndex.tsx:27 @@ -460,64 +486,64 @@ msgstr "" msgid "Groups" msgstr "" -#: lib/enums/ModelInformation.tsx:230 +#: lib/enums/ModelInformation.tsx:246 msgid "Import Session" msgstr "" -#: lib/enums/ModelInformation.tsx:231 +#: lib/enums/ModelInformation.tsx:247 msgid "Import Sessions" msgstr "" -#: lib/enums/ModelInformation.tsx:238 +#: lib/enums/ModelInformation.tsx:254 msgid "Label Template" msgstr "" -#: lib/enums/ModelInformation.tsx:239 +#: lib/enums/ModelInformation.tsx:255 #: src/pages/Index/Settings/AdminCenter/Index.tsx:209 msgid "Label Templates" msgstr "" -#: lib/enums/ModelInformation.tsx:246 +#: lib/enums/ModelInformation.tsx:262 msgid "Report Template" msgstr "" -#: lib/enums/ModelInformation.tsx:247 +#: lib/enums/ModelInformation.tsx:263 #: src/pages/Index/Settings/AdminCenter/Index.tsx:215 msgid "Report Templates" msgstr "" -#: lib/enums/ModelInformation.tsx:254 +#: lib/enums/ModelInformation.tsx:270 #: src/components/plugins/PluginDrawer.tsx:145 msgid "Plugin Configuration" msgstr "" -#: lib/enums/ModelInformation.tsx:255 +#: lib/enums/ModelInformation.tsx:271 msgid "Plugin Configurations" msgstr "" -#: lib/enums/ModelInformation.tsx:262 +#: lib/enums/ModelInformation.tsx:278 msgid "Content Type" msgstr "" -#: lib/enums/ModelInformation.tsx:263 +#: lib/enums/ModelInformation.tsx:279 msgid "Content Types" msgstr "" -#: lib/enums/ModelInformation.tsx:268 +#: lib/enums/ModelInformation.tsx:284 msgid "Selection List" msgstr "" -#: lib/enums/ModelInformation.tsx:269 -#: src/pages/Index/Settings/AdminCenter/PartParameterPanel.tsx:21 +#: lib/enums/ModelInformation.tsx:285 +#: src/pages/Index/Settings/AdminCenter/ParameterPanel.tsx:21 msgid "Selection Lists" msgstr "" -#: lib/enums/ModelInformation.tsx:275 +#: lib/enums/ModelInformation.tsx:291 #: src/components/barcodes/BarcodeInput.tsx:114 #: src/components/dashboard/DashboardLayout.tsx:281 #: src/components/editors/NotesEditor.tsx:74 #: src/components/editors/TemplateEditor/TemplateEditor.tsx:158 -#: src/components/forms/fields/ApiFormField.tsx:273 +#: src/components/forms/fields/ApiFormField.tsx:237 #: src/components/forms/fields/TableField.tsx:45 #: src/components/importer/ImportDataSelector.tsx:192 #: src/components/importer/ImporterColumnSelector.tsx:234 @@ -528,7 +554,7 @@ msgstr "" #: src/components/nav/SearchDrawer.tsx:572 #: src/components/settings/SettingList.tsx:139 #: src/components/wizards/ImportPartWizard.tsx:574 -#: src/components/wizards/ImportPartWizard.tsx:718 +#: src/components/wizards/ImportPartWizard.tsx:719 #: src/forms/BomForms.tsx:69 #: src/functions/auth.tsx:643 #: src/pages/ErrorPage.tsx:11 @@ -547,9 +573,9 @@ msgstr "" msgid "Error" msgstr "" -#: lib/enums/ModelInformation.tsx:276 +#: lib/enums/ModelInformation.tsx:292 #: src/tables/machine/MachineListTable.tsx:402 -#: src/tables/machine/MachineTypeTable.tsx:299 +#: src/tables/machine/MachineTypeTable.tsx:297 msgid "Errors" msgstr "" @@ -559,10 +585,10 @@ msgstr "" #: lib/enums/Roles.tsx:33 #: src/defaults/actions.tsx:135 -#: src/pages/Index/Settings/SystemSettings.tsx:264 -#: src/pages/build/BuildIndex.tsx:75 -#: src/pages/part/PartDetail.tsx:904 -#: src/pages/sales/SalesOrderDetail.tsx:421 +#: src/pages/Index/Settings/SystemSettings.tsx:270 +#: src/pages/build/BuildIndex.tsx:67 +#: src/pages/part/PartDetail.tsx:893 +#: src/pages/sales/SalesOrderDetail.tsx:422 msgid "Build Orders" msgstr "" @@ -639,39 +665,39 @@ msgstr "" msgid "Enter barcode data" msgstr "" -#: src/components/barcodes/BarcodeScanDialog.tsx:49 -#: src/components/buttons/ScanButton.tsx:15 +#: src/components/barcodes/BarcodeScanDialog.tsx:56 +#: src/components/buttons/ScanButton.tsx:27 #: src/components/nav/NavigationDrawer.tsx:122 -#: src/forms/PurchaseOrderForms.tsx:457 -#: src/forms/PurchaseOrderForms.tsx:563 +#: src/forms/PurchaseOrderForms.tsx:509 +#: src/forms/PurchaseOrderForms.tsx:615 msgid "Scan Barcode" msgstr "" -#: src/components/barcodes/BarcodeScanDialog.tsx:105 +#: src/components/barcodes/BarcodeScanDialog.tsx:121 msgid "No matching item found" msgstr "" -#: src/components/barcodes/BarcodeScanDialog.tsx:134 +#: src/components/barcodes/BarcodeScanDialog.tsx:150 msgid "Barcode does not match the expected model type" msgstr "" -#: src/components/barcodes/BarcodeScanDialog.tsx:145 +#: src/components/barcodes/BarcodeScanDialog.tsx:161 #: src/components/editors/NotesEditor.tsx:84 #: src/components/editors/NotesEditor.tsx:118 -#: src/components/forms/ApiForm.tsx:465 +#: src/components/forms/ApiForm.tsx:484 #: src/components/wizards/ImportPartWizard.tsx:566 -#: src/components/wizards/ImportPartWizard.tsx:690 +#: src/components/wizards/ImportPartWizard.tsx:691 #: src/pages/Index/Settings/AdminCenter/CurrencyManagementPanel.tsx:45 #: src/tables/bom/BomTable.tsx:548 #: src/tables/settings/PendingTasksTable.tsx:68 msgid "Success" msgstr "" -#: src/components/barcodes/BarcodeScanDialog.tsx:151 +#: src/components/barcodes/BarcodeScanDialog.tsx:167 msgid "Failed to handle barcode" msgstr "" -#: src/components/barcodes/BarcodeScanDialog.tsx:167 +#: src/components/barcodes/BarcodeScanDialog.tsx:183 #: src/pages/Index/Scan.tsx:129 msgid "Failed to scan barcode" msgstr "" @@ -714,10 +740,10 @@ msgstr "" #: src/components/barcodes/QRCode.tsx:179 #: src/pages/part/PartDetail.tsx:521 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:222 -#: src/pages/sales/ReturnOrderDetail.tsx:188 -#: src/pages/sales/SalesOrderDetail.tsx:181 -#: src/pages/sales/SalesOrderShipmentDetail.tsx:122 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:223 +#: src/pages/sales/ReturnOrderDetail.tsx:189 +#: src/pages/sales/SalesOrderDetail.tsx:182 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:120 #: src/pages/stock/StockDetail.tsx:186 msgid "Link" msgstr "" @@ -728,7 +754,7 @@ msgstr "" #: src/components/barcodes/QRCode.tsx:205 #: src/components/items/ActionDropdown.tsx:192 -#: src/forms/PurchaseOrderForms.tsx:554 +#: src/forms/PurchaseOrderForms.tsx:606 msgid "Unlink Barcode" msgstr "" @@ -829,14 +855,14 @@ msgstr "" #~ msgid "Scan QR code" #~ msgstr "Scan QR code" -#: src/components/buttons/ScanButton.tsx:19 -msgid "Open Barcode Scanner" -msgstr "" - #: src/components/buttons/ScanButton.tsx:20 #~ msgid "Open QR code scanner" #~ msgstr "Open QR code scanner" +#: src/components/buttons/ScanButton.tsx:32 +msgid "Open Barcode Scanner" +msgstr "" + #: src/components/buttons/SpotlightButton.tsx:12 msgid "Open spotlight" msgstr "" @@ -1059,7 +1085,7 @@ msgid "Show the number of sales orders which are assigned to you" msgstr "" #: src/components/dashboard/DashboardWidgetLibrary.tsx:129 -#: src/pages/sales/SalesIndex.tsx:105 +#: src/pages/sales/SalesIndex.tsx:87 msgid "Pending Shipments" msgstr "" @@ -1210,12 +1236,18 @@ msgid "Remove the associated image from this item?" msgstr "" #: src/components/details/DetailsImage.tsx:83 -#: src/forms/StockForms.tsx:888 +#: src/forms/StockForms.tsx:895 #: src/pages/Index/Settings/AccountSettings/MFASettings.tsx:324 #: src/pages/Index/Settings/AccountSettings/MFASettings.tsx:415 #: src/pages/Index/Settings/AccountSettings/MFASettings.tsx:884 #: src/pages/Index/Settings/AccountSettings/MFASettings.tsx:903 #: src/pages/Index/Settings/AccountSettings/SecurityContent.tsx:254 +#: src/tables/build/BuildAllocatedStockTable.tsx:178 +#: src/tables/build/BuildAllocatedStockTable.tsx:258 +#: src/tables/build/BuildLineTable.tsx:111 +#: src/tables/build/BuildLineTable.tsx:665 +#: src/tables/sales/SalesOrderAllocationTable.tsx:224 +#: src/tables/sales/SalesOrderAllocationTable.tsx:247 msgid "Remove" msgstr "" @@ -1241,12 +1273,12 @@ msgid "Upload Error" msgstr "" #: src/components/details/DetailsImage.tsx:250 -#: src/components/forms/fields/TextField.tsx:65 +#: src/components/forms/fields/AutoFillRightSection.tsx:34 msgid "Clear" msgstr "" #: src/components/details/DetailsImage.tsx:256 -#: src/components/forms/ApiForm.tsx:677 +#: src/components/forms/ApiForm.tsx:696 #: src/contexts/ThemeContext.tsx:44 #: src/pages/Index/Settings/AccountSettings/MFASettings.tsx:149 #: src/pages/Index/Settings/AccountSettings/MFASettings.tsx:568 @@ -1499,8 +1531,8 @@ msgstr "" msgid "A server error occurred" msgstr "" -#: src/components/forms/ApiForm.tsx:103 -#: src/components/forms/ApiForm.tsx:594 +#: src/components/forms/ApiForm.tsx:107 +#: src/components/forms/ApiForm.tsx:613 msgid "Form Error" msgstr "" @@ -1508,11 +1540,11 @@ msgstr "" #~ msgid "Form Errors Exist" #~ msgstr "Form Errors Exist" -#: src/components/forms/ApiForm.tsx:604 +#: src/components/forms/ApiForm.tsx:623 msgid "Errors exist for one or more form fields" msgstr "" -#: src/components/forms/ApiForm.tsx:715 +#: src/components/forms/ApiForm.tsx:734 #: src/hooks/UseForm.tsx:133 #: src/tables/plugin/PluginListTable.tsx:204 msgid "Update" @@ -1698,15 +1730,14 @@ msgstr "" #: src/components/forms/InstanceOptions.tsx:124 #: src/components/plugins/PluginDrawer.tsx:68 #: src/pages/Index/Settings/AdminCenter/UnitManagementPanel.tsx:19 -#: src/pages/part/CategoryDetail.tsx:88 +#: src/pages/part/CategoryDetail.tsx:91 #: src/pages/part/PartDetail.tsx:446 #: src/pages/stock/LocationDetail.tsx:82 #: src/tables/machine/MachineTypeTable.tsx:67 -#: src/tables/machine/MachineTypeTable.tsx:151 -#: src/tables/machine/MachineTypeTable.tsx:254 -#: src/tables/machine/MachineTypeTable.tsx:357 +#: src/tables/machine/MachineTypeTable.tsx:149 +#: src/tables/machine/MachineTypeTable.tsx:252 +#: src/tables/machine/MachineTypeTable.tsx:355 #: src/tables/plugin/PluginErrorTable.tsx:33 -#: src/tables/purchasing/ManufacturerPartParameterTable.tsx:36 #: src/tables/settings/ApiTokenTable.tsx:57 #: src/tables/settings/GroupTable.tsx:95 #: src/tables/settings/GroupTable.tsx:148 @@ -1769,7 +1800,7 @@ msgstr "" #~ msgstr "State: <0>worker ({0}), <1>plugins{1}" #: src/components/forms/InstanceOptions.tsx:118 -#: src/pages/Index/Settings/SystemSettings.tsx:45 +#: src/pages/Index/Settings/SystemSettings.tsx:46 msgid "Server" msgstr "" @@ -1793,6 +1824,8 @@ msgid "Plugins" msgstr "" #: src/components/forms/InstanceOptions.tsx:143 +#: src/tables/general/ParameterTemplateTable.tsx:153 +#: src/tables/general/ParameterTemplateTable.tsx:188 #: src/tables/part/PartTestTemplateTable.tsx:117 #: src/tables/settings/TemplateTable.tsx:251 #: src/tables/settings/TemplateTable.tsx:362 @@ -1817,10 +1850,14 @@ msgstr "" msgid "Running" msgstr "" -#: src/components/forms/fields/ApiFormField.tsx:233 +#: src/components/forms/fields/ApiFormField.tsx:197 msgid "Select file to upload" msgstr "" +#: src/components/forms/fields/AutoFillRightSection.tsx:47 +msgid "Accept suggested value" +msgstr "" + #: src/components/forms/fields/DateField.tsx:76 msgid "Select date" msgstr "" @@ -1853,13 +1890,13 @@ msgstr "" msgid "{0} icons" msgstr "" -#: src/components/forms/fields/RelatedModelField.tsx:409 +#: src/components/forms/fields/RelatedModelField.tsx:480 #: src/components/modals/AboutInvenTreeModal.tsx:96 #: src/pages/Index/Settings/AccountSettings/SecurityContent.tsx:383 msgid "Loading" msgstr "" -#: src/components/forms/fields/RelatedModelField.tsx:411 +#: src/components/forms/fields/RelatedModelField.tsx:482 msgid "No results found" msgstr "" @@ -1875,10 +1912,6 @@ msgstr "" msgid "Add new row" msgstr "" -#: src/components/forms/fields/TextField.tsx:82 -msgid "Accept suggested value" -msgstr "" - #: src/components/images/DetailsImage.tsx:252 #~ msgid "Select image" #~ msgstr "Select image" @@ -2036,7 +2069,7 @@ msgstr "" #: src/components/importer/ImporterDrawer.tsx:109 #: src/components/modals/AboutInvenTreeModal.tsx:205 #: src/components/modals/ServerInfoModal.tsx:134 -#: src/components/wizards/ImportPartWizard.tsx:772 +#: src/components/wizards/ImportPartWizard.tsx:773 #: src/forms/BomForms.tsx:132 #: src/pages/Index/Settings/AccountSettings/MFASettings.tsx:685 msgid "Close" @@ -2199,7 +2232,7 @@ msgid "Change" msgstr "" #: src/components/items/RoleTable.tsx:150 -#: src/forms/StockForms.tsx:927 +#: src/forms/StockForms.tsx:941 #: src/tables/stock/StockItemTestResultTable.tsx:367 msgid "Add" msgstr "" @@ -2222,11 +2255,11 @@ msgstr "" #: src/components/items/TransferList.tsx:161 #: src/components/render/Stock.tsx:102 -#: src/pages/part/PartDetail.tsx:994 +#: src/pages/part/PartDetail.tsx:1009 #: src/pages/stock/StockDetail.tsx:265 #: src/pages/stock/StockDetail.tsx:942 -#: src/tables/build/BuildAllocatedStockTable.tsx:135 -#: src/tables/build/BuildLineTable.tsx:192 +#: src/tables/build/BuildAllocatedStockTable.tsx:132 +#: src/tables/build/BuildLineTable.tsx:193 #: src/tables/part/PartTable.tsx:137 #: src/tables/stock/StockItemTable.tsx:182 #: src/tables/stock/StockItemTable.tsx:343 @@ -2373,7 +2406,7 @@ msgid "Database" msgstr "" #: src/components/modals/ServerInfoModal.tsx:49 -#: src/components/nav/Alerts.tsx:118 +#: src/components/nav/Alerts.tsx:120 msgid "Debug Mode" msgstr "" @@ -2414,7 +2447,7 @@ msgid "Issues detected" msgstr "" #: src/components/modals/ServerInfoModal.tsx:102 -#: src/components/nav/Alerts.tsx:125 +#: src/components/nav/Alerts.tsx:127 msgid "Background Worker" msgstr "" @@ -2436,7 +2469,7 @@ msgstr "" #~ msgstr "Email settings not configured" #: src/components/modals/ServerInfoModal.tsx:120 -#: src/components/nav/Alerts.tsx:141 +#: src/components/nav/Alerts.tsx:143 msgid "Email settings not configured." msgstr "" @@ -2444,43 +2477,47 @@ msgstr "" msgid "Alerts" msgstr "" -#: src/components/nav/Alerts.tsx:120 +#: src/components/nav/Alerts.tsx:97 +msgid "No issues detected" +msgstr "" + +#: src/components/nav/Alerts.tsx:122 msgid "The server is running in debug mode." msgstr "" -#: src/components/nav/Alerts.tsx:127 +#: src/components/nav/Alerts.tsx:129 msgid "The background worker process is not running." msgstr "" -#: src/components/nav/Alerts.tsx:132 +#: src/components/nav/Alerts.tsx:134 msgid "Server Restart" msgstr "" -#: src/components/nav/Alerts.tsx:134 +#: src/components/nav/Alerts.tsx:136 msgid "The server requires a restart to apply changes." msgstr "" -#: src/components/nav/Alerts.tsx:139 +#: src/components/nav/Alerts.tsx:141 msgid "Email settings" msgstr "" -#: src/components/nav/Alerts.tsx:146 +#: src/components/nav/Alerts.tsx:148 msgid "Database Migrations" msgstr "" -#: src/components/nav/Alerts.tsx:148 +#: src/components/nav/Alerts.tsx:150 msgid "There are pending database migrations." msgstr "" -#: src/components/nav/Alerts.tsx:163 +#: src/components/nav/Alerts.tsx:165 msgid "Learn more about {code}" msgstr "" #: src/components/nav/Header.tsx:188 #: src/components/nav/NavigationDrawer.tsx:134 #: src/components/nav/NotificationDrawer.tsx:181 -#: src/pages/Index/Settings/SystemSettings.tsx:121 -#: src/pages/Index/Settings/UserSettings.tsx:106 +#: src/pages/Index/Settings/SystemSettings.tsx:122 +#: src/pages/Index/Settings/UserSettings.tsx:107 #: src/pages/Notifications.tsx:45 #: src/pages/Notifications.tsx:130 msgid "Notifications" @@ -2511,8 +2548,8 @@ msgstr "" #: src/components/nav/NavigationDrawer.tsx:140 #: src/components/nav/SettingsHeader.tsx:40 #: src/defaults/actions.tsx:92 -#: src/pages/Index/Settings/UserSettings.tsx:141 -#: src/pages/Index/Settings/UserSettings.tsx:145 +#: src/pages/Index/Settings/UserSettings.tsx:142 +#: src/pages/Index/Settings/UserSettings.tsx:146 msgid "User Settings" msgstr "" @@ -2529,8 +2566,8 @@ msgstr "" #: src/components/nav/NavigationDrawer.tsx:146 #: src/components/nav/SettingsHeader.tsx:41 #: src/defaults/actions.tsx:144 -#: src/pages/Index/Settings/SystemSettings.tsx:348 -#: src/pages/Index/Settings/SystemSettings.tsx:353 +#: src/pages/Index/Settings/SystemSettings.tsx:354 +#: src/pages/Index/Settings/SystemSettings.tsx:359 msgid "System Settings" msgstr "" @@ -2577,11 +2614,11 @@ msgstr "" #: src/components/nav/NavigationDrawer.tsx:77 #: src/components/render/Part.tsx:36 -#: src/components/wizards/ImportPartWizard.tsx:807 +#: src/components/wizards/ImportPartWizard.tsx:808 #: src/defaults/links.tsx:42 #: src/forms/StockForms.tsx:794 -#: src/pages/Index/Settings/SystemSettings.tsx:224 -#: src/pages/part/PartDetail.tsx:804 +#: src/pages/Index/Settings/SystemSettings.tsx:230 +#: src/pages/part/PartDetail.tsx:793 #: src/pages/stock/LocationDetail.tsx:390 #: src/pages/stock/LocationDetail.tsx:420 #: src/pages/stock/StockDetail.tsx:642 @@ -2591,29 +2628,29 @@ msgstr "" #: src/components/nav/NavigationDrawer.tsx:84 #: src/defaults/links.tsx:48 -#: src/pages/build/BuildDetail.tsx:748 -#: src/pages/build/BuildIndex.tsx:102 +#: src/pages/build/BuildDetail.tsx:753 +#: src/pages/build/BuildIndex.tsx:101 msgid "Manufacturing" msgstr "" #: src/components/nav/NavigationDrawer.tsx:91 #: src/defaults/links.tsx:54 #: src/pages/company/ManufacturerDetail.tsx:9 -#: src/pages/company/ManufacturerPartDetail.tsx:276 +#: src/pages/company/ManufacturerPartDetail.tsx:267 #: src/pages/company/SupplierDetail.tsx:9 -#: src/pages/company/SupplierPartDetail.tsx:360 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:553 -#: src/pages/purchasing/PurchasingIndex.tsx:122 +#: src/pages/company/SupplierPartDetail.tsx:365 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:558 +#: src/pages/purchasing/PurchasingIndex.tsx:212 msgid "Purchasing" msgstr "" #: src/components/nav/NavigationDrawer.tsx:98 #: src/defaults/links.tsx:60 #: src/pages/company/CustomerDetail.tsx:9 -#: src/pages/sales/ReturnOrderDetail.tsx:554 -#: src/pages/sales/SalesIndex.tsx:153 -#: src/pages/sales/SalesOrderDetail.tsx:619 -#: src/pages/sales/SalesOrderShipmentDetail.tsx:480 +#: src/pages/sales/ReturnOrderDetail.tsx:559 +#: src/pages/sales/SalesIndex.tsx:168 +#: src/pages/sales/SalesOrderDetail.tsx:624 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:448 msgid "Sales" msgstr "" @@ -2667,21 +2704,21 @@ msgid "Remove search group" msgstr "" #: src/components/nav/SearchDrawer.tsx:288 -#: src/pages/company/ManufacturerPartDetail.tsx:192 -#: src/pages/part/PartDetail.tsx:862 +#: src/pages/company/ManufacturerPartDetail.tsx:179 +#: src/pages/part/PartDetail.tsx:851 #: src/pages/part/PartSupplierDetail.tsx:15 -#: src/pages/purchasing/PurchasingIndex.tsx:81 +#: src/pages/purchasing/PurchasingIndex.tsx:100 msgid "Suppliers" msgstr "" #: src/components/nav/SearchDrawer.tsx:298 #: src/pages/part/PartSupplierDetail.tsx:23 -#: src/pages/purchasing/PurchasingIndex.tsx:98 +#: src/pages/purchasing/PurchasingIndex.tsx:149 msgid "Manufacturers" msgstr "" #: src/components/nav/SearchDrawer.tsx:308 -#: src/pages/sales/SalesIndex.tsx:138 +#: src/pages/sales/SalesIndex.tsx:133 msgid "Customers" msgstr "" @@ -2772,21 +2809,21 @@ msgstr "" #: src/components/plugins/PluginDrawer.tsx:73 #: src/forms/selectionListFields.tsx:102 -#: src/pages/build/BuildDetail.tsx:250 -#: src/pages/company/CompanyDetail.tsx:93 -#: src/pages/company/ManufacturerPartDetail.tsx:93 -#: src/pages/company/ManufacturerPartDetail.tsx:120 -#: src/pages/company/SupplierPartDetail.tsx:145 -#: src/pages/part/CategoryDetail.tsx:108 +#: src/pages/build/BuildDetail.tsx:251 +#: src/pages/company/CompanyDetail.tsx:94 +#: src/pages/company/ManufacturerPartDetail.tsx:92 +#: src/pages/company/ManufacturerPartDetail.tsx:119 +#: src/pages/company/SupplierPartDetail.tsx:146 +#: src/pages/part/CategoryDetail.tsx:111 #: src/pages/part/PartDetail.tsx:460 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:162 -#: src/pages/sales/ReturnOrderDetail.tsx:129 -#: src/pages/sales/SalesOrderDetail.tsx:119 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:163 +#: src/pages/sales/ReturnOrderDetail.tsx:130 +#: src/pages/sales/SalesOrderDetail.tsx:120 #: src/pages/stock/LocationDetail.tsx:102 #: src/tables/ColumnRenderers.tsx:278 -#: src/tables/build/BuildAllocatedStockTable.tsx:91 -#: src/tables/machine/MachineTypeTable.tsx:161 -#: src/tables/machine/MachineTypeTable.tsx:257 +#: src/tables/build/BuildAllocatedStockTable.tsx:88 +#: src/tables/machine/MachineTypeTable.tsx:159 +#: src/tables/machine/MachineTypeTable.tsx:255 #: src/tables/plugin/PluginListTable.tsx:110 msgid "Description" msgstr "" @@ -2814,7 +2851,7 @@ msgstr "" #: src/tables/company/CompanyTable.tsx:91 #: src/tables/machine/MachineListTable.tsx:384 #: src/tables/machine/MachineListTable.tsx:799 -#: src/tables/part/ParametricPartTable.tsx:354 +#: src/tables/part/ParametricPartTable.tsx:19 #: src/tables/part/PartTable.tsx:197 #: src/tables/part/PartVariantTable.tsx:15 #: src/tables/plugin/PluginListTable.tsx:96 @@ -2836,8 +2873,8 @@ msgid "Installation Path" msgstr "" #: src/components/plugins/PluginDrawer.tsx:116 -#: src/tables/machine/MachineTypeTable.tsx:184 -#: src/tables/machine/MachineTypeTable.tsx:293 +#: src/tables/machine/MachineTypeTable.tsx:182 +#: src/tables/machine/MachineTypeTable.tsx:291 #: src/tables/plugin/PluginListTable.tsx:101 #: src/tables/plugin/PluginListTable.tsx:417 msgid "Builtin" @@ -2849,8 +2886,8 @@ msgstr "" #: src/components/plugins/PluginDrawer.tsx:133 #: src/pages/Index/Settings/AdminCenter/PluginManagementPanel.tsx:55 -#: src/pages/Index/Settings/SystemSettings.tsx:331 -#: src/pages/Index/Settings/UserSettings.tsx:128 +#: src/pages/Index/Settings/SystemSettings.tsx:337 +#: src/pages/Index/Settings/UserSettings.tsx:129 msgid "Plugin Settings" msgstr "" @@ -2911,7 +2948,7 @@ msgstr "" #~ msgid "Unknown model: {model}" #~ msgstr "Unknown model: {model}" -#: src/components/render/Instance.tsx:249 +#: src/components/render/Instance.tsx:247 msgid "Unknown model: {model_name}" msgstr "" @@ -2939,10 +2976,10 @@ msgstr "" #: src/components/render/Part.tsx:28 #: src/components/render/Plugin.tsx:17 #: src/components/render/User.tsx:37 -#: src/pages/company/CompanyDetail.tsx:323 -#: src/pages/company/SupplierPartDetail.tsx:373 +#: src/pages/company/CompanyDetail.tsx:328 +#: src/pages/company/SupplierPartDetail.tsx:378 #: src/pages/core/UserDetail.tsx:211 -#: src/pages/part/PartDetail.tsx:1027 +#: src/pages/part/PartDetail.tsx:1048 #: src/tables/ColumnRenderers.tsx:410 msgid "Inactive" msgstr "" @@ -2962,11 +2999,11 @@ msgstr "" #: src/components/render/Part.tsx:47 #: src/components/wizards/OrderPartsWizard.tsx:135 -#: src/pages/company/SupplierPartDetail.tsx:197 -#: src/pages/company/SupplierPartDetail.tsx:394 -#: src/pages/part/PartDetail.tsx:1015 +#: src/pages/company/SupplierPartDetail.tsx:198 +#: src/pages/company/SupplierPartDetail.tsx:399 +#: src/pages/part/PartDetail.tsx:1030 #: src/tables/bom/BomTable.tsx:444 -#: src/tables/build/BuildLineTable.tsx:222 +#: src/tables/build/BuildLineTable.tsx:223 #: src/tables/part/PartTable.tsx:108 msgid "On Order" msgstr "" @@ -2974,9 +3011,9 @@ msgstr "" #: src/components/render/Part.tsx:55 #: src/components/wizards/OrderPartsWizard.tsx:141 #: src/pages/part/PartDetail.tsx:587 -#: src/pages/part/PartDetail.tsx:1021 +#: src/pages/part/PartDetail.tsx:1036 #: src/pages/stock/StockDetail.tsx:925 -#: src/tables/part/PartTestResultTable.tsx:297 +#: src/tables/part/PartTestResultTable.tsx:305 #: src/tables/stock/StockItemTable.tsx:359 msgid "In Production" msgstr "" @@ -2987,7 +3024,7 @@ msgid "Details" msgstr "" #: src/components/render/Part.tsx:112 -#: src/components/wizards/ImportPartWizard.tsx:806 +#: src/components/wizards/ImportPartWizard.tsx:807 #: src/pages/part/PartDetail.tsx:487 #: src/tables/ColumnRenderers.tsx:233 #: src/tables/ColumnRenderers.tsx:242 @@ -3000,16 +3037,16 @@ msgstr "" #: src/components/render/Stock.tsx:114 #: src/components/render/Stock.tsx:132 #: src/forms/BuildForms.tsx:795 -#: src/forms/PurchaseOrderForms.tsx:595 +#: src/forms/PurchaseOrderForms.tsx:647 #: src/forms/StockForms.tsx:792 #: src/forms/StockForms.tsx:839 -#: src/forms/StockForms.tsx:885 -#: src/forms/StockForms.tsx:924 -#: src/forms/StockForms.tsx:960 -#: src/forms/StockForms.tsx:1003 -#: src/forms/StockForms.tsx:1047 -#: src/forms/StockForms.tsx:1095 -#: src/forms/StockForms.tsx:1139 +#: src/forms/StockForms.tsx:892 +#: src/forms/StockForms.tsx:938 +#: src/forms/StockForms.tsx:976 +#: src/forms/StockForms.tsx:1019 +#: src/forms/StockForms.tsx:1063 +#: src/forms/StockForms.tsx:1111 +#: src/forms/StockForms.tsx:1155 #: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:88 #: src/pages/core/UserDetail.tsx:158 #: src/pages/stock/StockDetail.tsx:298 @@ -3023,7 +3060,7 @@ msgstr "" #: src/components/render/Stock.tsx:99 #: src/pages/stock/StockDetail.tsx:198 #: src/pages/stock/StockDetail.tsx:930 -#: src/tables/build/BuildAllocatedStockTable.tsx:121 +#: src/tables/build/BuildAllocatedStockTable.tsx:118 #: src/tables/build/BuildOutputTable.tsx:107 #: src/tables/sales/SalesOrderAllocationTable.tsx:142 msgid "Serial Number" @@ -3034,9 +3071,9 @@ msgstr "" #: src/forms/BuildForms.tsx:240 #: src/forms/BuildForms.tsx:634 #: src/forms/BuildForms.tsx:797 -#: src/forms/PurchaseOrderForms.tsx:801 +#: src/forms/PurchaseOrderForms.tsx:853 #: src/forms/ReturnOrderForms.tsx:243 -#: src/forms/SalesOrderForms.tsx:308 +#: src/forms/SalesOrderForms.tsx:387 #: src/forms/StockForms.tsx:841 #: src/pages/part/PartStockHistoryDetail.tsx:56 #: src/pages/part/PartStockHistoryDetail.tsx:210 @@ -3046,9 +3083,9 @@ msgstr "" #: src/pages/part/pricing/PriceBreakPanel.tsx:172 #: src/pages/stock/StockDetail.tsx:258 #: src/pages/stock/StockDetail.tsx:936 -#: src/tables/build/BuildLineTable.tsx:86 +#: src/tables/build/BuildLineTable.tsx:83 #: src/tables/part/PartPurchaseOrdersTable.tsx:94 -#: src/tables/part/PartTestResultTable.tsx:269 +#: src/tables/part/PartTestResultTable.tsx:277 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:175 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:206 #: src/tables/purchasing/SupplierPriceBreakTable.tsx:69 @@ -3063,14 +3100,14 @@ msgstr "" #: src/forms/BuildForms.tsx:474 #: src/forms/StockForms.tsx:793 #: src/forms/StockForms.tsx:840 -#: src/forms/StockForms.tsx:886 -#: src/forms/StockForms.tsx:925 -#: src/forms/StockForms.tsx:961 -#: src/forms/StockForms.tsx:1004 -#: src/forms/StockForms.tsx:1048 -#: src/forms/StockForms.tsx:1096 -#: src/forms/StockForms.tsx:1140 -#: src/tables/build/BuildLineTable.tsx:96 +#: src/forms/StockForms.tsx:893 +#: src/forms/StockForms.tsx:939 +#: src/forms/StockForms.tsx:977 +#: src/forms/StockForms.tsx:1020 +#: src/forms/StockForms.tsx:1064 +#: src/forms/StockForms.tsx:1112 +#: src/forms/StockForms.tsx:1156 +#: src/tables/build/BuildLineTable.tsx:93 msgid "Batch" msgstr "" @@ -3306,10 +3343,6 @@ msgstr "" #~ msgid "Part category updated" #~ msgstr "Part category updated" -#: src/components/tables/part/PartParameterTable.tsx:41 -#~ msgid "Parameter" -#~ msgstr "Parameter" - #: src/components/tables/part/PartParameterTable.tsx:114 #~ msgid "Part parameter updated" #~ msgstr "Part parameter updated" @@ -3571,15 +3604,16 @@ msgid "Already Imported" msgstr "" #: src/components/wizards/ImportPartWizard.tsx:205 -#: src/pages/company/CompanyDetail.tsx:136 +#: src/pages/company/CompanyDetail.tsx:137 #: src/pages/company/SupplierDetail.tsx:8 -#: src/pages/company/SupplierPartDetail.tsx:130 -#: src/pages/company/SupplierPartDetail.tsx:235 -#: src/pages/company/SupplierPartDetail.tsx:364 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:156 +#: src/pages/company/SupplierPartDetail.tsx:131 +#: src/pages/company/SupplierPartDetail.tsx:236 +#: src/pages/company/SupplierPartDetail.tsx:369 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:157 #: src/tables/Filter.tsx:360 #: src/tables/company/CompanyTable.tsx:96 #: src/tables/part/PartPurchaseOrdersTable.tsx:43 +#: src/tables/purchasing/PurchaseOrderParametricTable.tsx:34 #: src/tables/purchasing/PurchaseOrderTable.tsx:109 #: src/tables/purchasing/SupplierPriceBreakTable.tsx:40 msgid "Supplier" @@ -3648,7 +3682,7 @@ msgid "Next" msgstr "" #: src/components/wizards/ImportPartWizard.tsx:540 -#: src/pages/part/PartDetail.tsx:1046 +#: src/pages/part/PartDetail.tsx:1067 #: src/tables/part/PartTable.tsx:408 msgid "Edit Part" msgstr "" @@ -3669,28 +3703,28 @@ msgstr "" msgid "Import" msgstr "" -#: src/components/wizards/ImportPartWizard.tsx:691 +#: src/components/wizards/ImportPartWizard.tsx:692 msgid "Parameters created successfully!" msgstr "" -#: src/components/wizards/ImportPartWizard.tsx:719 +#: src/components/wizards/ImportPartWizard.tsx:720 msgid "Failed to create parameters, please fix the errors and try again" msgstr "" #. placeholder {0}: supplierPart?.supplier -#: src/components/wizards/ImportPartWizard.tsx:739 +#: src/components/wizards/ImportPartWizard.tsx:740 msgid "Part imported successfully from supplier {0}." msgstr "" -#: src/components/wizards/ImportPartWizard.tsx:752 +#: src/components/wizards/ImportPartWizard.tsx:753 msgid "Open Part" msgstr "" -#: src/components/wizards/ImportPartWizard.tsx:759 +#: src/components/wizards/ImportPartWizard.tsx:760 msgid "Open Supplier Part" msgstr "" -#: src/components/wizards/ImportPartWizard.tsx:766 +#: src/components/wizards/ImportPartWizard.tsx:767 msgid "Open Manufacturer Part" msgstr "" @@ -3699,25 +3733,19 @@ msgstr "" #~ msgid "Import Part" #~ msgstr "Import Part" -#: src/components/wizards/ImportPartWizard.tsx:802 +#: src/components/wizards/ImportPartWizard.tsx:803 msgid "Import Supplier Part" msgstr "" -#: src/components/wizards/ImportPartWizard.tsx:804 +#: src/components/wizards/ImportPartWizard.tsx:805 msgid "Search Supplier Part" msgstr "" -#: src/components/wizards/ImportPartWizard.tsx:806 -#: src/pages/company/ManufacturerPartDetail.tsx:166 -#: src/pages/part/PartDetail.tsx:793 -msgid "Parameters" -msgstr "" - -#: src/components/wizards/ImportPartWizard.tsx:806 +#: src/components/wizards/ImportPartWizard.tsx:807 msgid "Confirm import" msgstr "" -#: src/components/wizards/ImportPartWizard.tsx:808 +#: src/components/wizards/ImportPartWizard.tsx:809 msgid "Done" msgstr "" @@ -3738,24 +3766,24 @@ msgid "Sales Requirements" msgstr "" #: src/components/wizards/OrderPartsWizard.tsx:129 -#: src/forms/StockForms.tsx:887 -#: src/forms/StockForms.tsx:926 -#: src/forms/StockForms.tsx:962 -#: src/forms/StockForms.tsx:1005 -#: src/forms/StockForms.tsx:1049 -#: src/forms/StockForms.tsx:1097 -#: src/forms/StockForms.tsx:1141 -#: src/pages/company/SupplierPartDetail.tsx:190 -#: src/pages/company/SupplierPartDetail.tsx:378 +#: src/forms/StockForms.tsx:894 +#: src/forms/StockForms.tsx:940 +#: src/forms/StockForms.tsx:978 +#: src/forms/StockForms.tsx:1021 +#: src/forms/StockForms.tsx:1065 +#: src/forms/StockForms.tsx:1113 +#: src/forms/StockForms.tsx:1157 +#: src/pages/company/SupplierPartDetail.tsx:191 +#: src/pages/company/SupplierPartDetail.tsx:383 #: src/pages/part/PartDetail.tsx:534 -#: src/pages/part/PartDetail.tsx:984 +#: src/pages/part/PartDetail.tsx:999 #: src/tables/Filter.tsx:92 #: src/tables/purchasing/SupplierPartTable.tsx:230 msgid "In Stock" msgstr "" #: src/components/wizards/OrderPartsWizard.tsx:146 -#: src/tables/build/BuildLineTable.tsx:404 +#: src/tables/build/BuildLineTable.tsx:405 msgid "Required Quantity" msgstr "" @@ -3847,7 +3875,7 @@ msgid "Please correct the errors in the selected parts" msgstr "" #: src/components/wizards/OrderPartsWizard.tsx:587 -#: src/tables/build/BuildLineTable.tsx:815 +#: src/tables/build/BuildLineTable.tsx:822 #: src/tables/part/PartTable.tsx:522 #: src/tables/sales/SalesOrderLineItemTable.tsx:370 msgid "Order Parts" @@ -4349,9 +4377,9 @@ msgstr "" #: src/forms/BuildForms.tsx:333 #: src/forms/BuildForms.tsx:408 #: src/forms/BuildForms.tsx:685 -#: src/tables/build/BuildAllocatedStockTable.tsx:150 +#: src/tables/build/BuildAllocatedStockTable.tsx:147 #: src/tables/build/BuildOutputTable.tsx:582 -#: src/tables/part/PartTestResultTable.tsx:272 +#: src/tables/part/PartTestResultTable.tsx:280 msgid "Build Output" msgstr "" @@ -4362,22 +4390,22 @@ msgstr "" #: src/forms/BuildForms.tsx:336 #: src/forms/BuildForms.tsx:411 #: src/forms/BuildForms.tsx:475 -#: src/forms/PurchaseOrderForms.tsx:717 +#: src/forms/PurchaseOrderForms.tsx:769 #: src/forms/ReturnOrderForms.tsx:197 #: src/forms/ReturnOrderForms.tsx:244 #: src/forms/StockForms.tsx:712 #: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:87 -#: src/pages/build/BuildDetail.tsx:222 +#: src/pages/build/BuildDetail.tsx:223 #: src/pages/core/UserDetail.tsx:151 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:168 -#: src/pages/sales/ReturnOrderDetail.tsx:135 -#: src/pages/sales/SalesOrderDetail.tsx:125 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:169 +#: src/pages/sales/ReturnOrderDetail.tsx:136 +#: src/pages/sales/SalesOrderDetail.tsx:126 #: src/pages/stock/StockDetail.tsx:170 #: src/tables/Filter.tsx:274 #: src/tables/build/BuildOutputTable.tsx:404 #: src/tables/machine/MachineListTable.tsx:387 #: src/tables/part/PartPurchaseOrdersTable.tsx:38 -#: src/tables/part/PartTestResultTable.tsx:309 +#: src/tables/part/PartTestResultTable.tsx:317 #: src/tables/sales/ReturnOrderLineItemTable.tsx:138 #: src/tables/sales/ReturnOrderLineItemTable.tsx:176 #: src/tables/settings/CustomStateTable.tsx:79 @@ -4443,18 +4471,19 @@ msgid "Build outputs have been cancelled" msgstr "" #: src/forms/BuildForms.tsx:631 -#: src/pages/build/BuildDetail.tsx:207 -#: src/pages/company/ManufacturerPartDetail.tsx:85 -#: src/pages/company/SupplierPartDetail.tsx:96 +#: src/pages/build/BuildDetail.tsx:208 +#: src/pages/company/ManufacturerPartDetail.tsx:84 +#: src/pages/company/SupplierPartDetail.tsx:97 #: src/pages/part/PartDetail.tsx:453 #: src/pages/stock/StockDetail.tsx:153 #: src/tables/bom/BomTable.tsx:134 #: src/tables/bom/UsedInTable.tsx:40 -#: src/tables/build/BuildAllocatedStockTable.tsx:108 -#: src/tables/build/BuildLineTable.tsx:336 +#: src/tables/build/BuildAllocatedStockTable.tsx:105 +#: src/tables/build/BuildLineTable.tsx:337 #: src/tables/build/BuildOrderTable.tsx:79 #: src/tables/part/PartSalesAllocationsTable.tsx:61 #: src/tables/part/RelatedPartTable.tsx:73 +#: src/tables/purchasing/ManufacturerPartParametricTable.tsx:21 #: src/tables/purchasing/ManufacturerPartTable.tsx:69 #: src/tables/purchasing/SupplierPartTable.tsx:70 #: src/tables/sales/SalesOrderAllocationTable.tsx:135 @@ -4466,47 +4495,47 @@ msgstr "" #: src/forms/BuildForms.tsx:632 #: src/forms/BuildForms.tsx:796 #: src/forms/BuildForms.tsx:897 -#: src/forms/SalesOrderForms.tsx:306 -#: src/tables/build/BuildAllocatedStockTable.tsx:139 -#: src/tables/build/BuildLineTable.tsx:182 +#: src/forms/SalesOrderForms.tsx:385 +#: src/tables/build/BuildAllocatedStockTable.tsx:136 +#: src/tables/build/BuildLineTable.tsx:183 #: src/tables/sales/SalesOrderLineItemTable.tsx:342 #: src/tables/stock/StockItemTable.tsx:338 msgid "Allocated" msgstr "" #: src/forms/BuildForms.tsx:667 -#: src/forms/SalesOrderForms.tsx:295 -#: src/pages/build/BuildDetail.tsx:108 -#: src/pages/build/BuildDetail.tsx:326 +#: src/forms/SalesOrderForms.tsx:374 +#: src/pages/build/BuildDetail.tsx:109 +#: src/pages/build/BuildDetail.tsx:327 msgid "Source Location" msgstr "" #: src/forms/BuildForms.tsx:668 -#: src/forms/SalesOrderForms.tsx:296 +#: src/forms/SalesOrderForms.tsx:375 msgid "Select the source location for the stock allocation" msgstr "" #: src/forms/BuildForms.tsx:700 -#: src/forms/SalesOrderForms.tsx:336 -#: src/tables/build/BuildLineTable.tsx:574 -#: src/tables/build/BuildLineTable.tsx:731 -#: src/tables/build/BuildLineTable.tsx:830 +#: src/forms/SalesOrderForms.tsx:415 +#: src/tables/build/BuildLineTable.tsx:575 +#: src/tables/build/BuildLineTable.tsx:738 +#: src/tables/build/BuildLineTable.tsx:837 #: src/tables/sales/SalesOrderLineItemTable.tsx:380 #: src/tables/sales/SalesOrderLineItemTable.tsx:406 msgid "Allocate Stock" msgstr "" #: src/forms/BuildForms.tsx:703 -#: src/forms/SalesOrderForms.tsx:341 +#: src/forms/SalesOrderForms.tsx:420 msgid "Stock items allocated" msgstr "" #: src/forms/BuildForms.tsx:816 #: src/forms/BuildForms.tsx:917 -#: src/tables/build/BuildAllocatedStockTable.tsx:240 -#: src/tables/build/BuildAllocatedStockTable.tsx:272 -#: src/tables/build/BuildLineTable.tsx:741 -#: src/tables/build/BuildLineTable.tsx:864 +#: src/tables/build/BuildAllocatedStockTable.tsx:243 +#: src/tables/build/BuildAllocatedStockTable.tsx:279 +#: src/tables/build/BuildLineTable.tsx:748 +#: src/tables/build/BuildLineTable.tsx:871 msgid "Consume Stock" msgstr "" @@ -4521,21 +4550,21 @@ msgstr "" #~ msgstr "Stock items consumed" #: src/forms/BuildForms.tsx:853 -#: src/tables/build/BuildLineTable.tsx:514 +#: src/tables/build/BuildLineTable.tsx:515 #: src/tables/part/PartBuildAllocationsTable.tsx:101 msgid "Fully consumed" msgstr "" #: src/forms/BuildForms.tsx:898 -#: src/tables/build/BuildLineTable.tsx:187 +#: src/tables/build/BuildLineTable.tsx:188 #: src/tables/stock/StockItemTable.tsx:367 msgid "Consumed" msgstr "" -#: src/forms/CommonForms.tsx:88 -#: src/forms/PurchaseOrderForms.tsx:125 +#: src/forms/CommonForms.tsx:92 +#: src/forms/PurchaseOrderForms.tsx:176 #: src/forms/ReturnOrderForms.tsx:138 -#: src/forms/SalesOrderForms.tsx:164 +#: src/forms/SalesOrderForms.tsx:185 msgid "Select project code for this line item" msgstr "" @@ -4543,16 +4572,16 @@ msgstr "" #~ msgid "Company updated" #~ msgstr "Company updated" -#: src/forms/PartForms.tsx:85 -#: src/forms/PartForms.tsx:207 -#: src/pages/part/CategoryDetail.tsx:124 +#: src/forms/PartForms.tsx:99 +#: src/forms/PartForms.tsx:228 +#: src/pages/part/CategoryDetail.tsx:127 #: src/pages/part/PartDetail.tsx:668 #: src/tables/part/PartCategoryTable.tsx:94 #: src/tables/part/PartTable.tsx:325 msgid "Subscribed" msgstr "" -#: src/forms/PartForms.tsx:86 +#: src/forms/PartForms.tsx:100 msgid "Subscribe to notifications for this part" msgstr "" @@ -4564,40 +4593,24 @@ msgstr "" #~ msgid "Part updated" #~ msgstr "Part updated" -#: src/forms/PartForms.tsx:193 +#: src/forms/PartForms.tsx:214 msgid "Parent part category" msgstr "" -#: src/forms/PartForms.tsx:208 +#: src/forms/PartForms.tsx:229 msgid "Subscribe to notifications for this category" msgstr "" -#: src/forms/PurchaseOrderForms.tsx:388 -msgid "Assign Batch Code and Serial Numbers" -msgstr "" - -#: src/forms/PurchaseOrderForms.tsx:390 -msgid "Assign Batch Code" -msgstr "" - -#: src/forms/PurchaseOrderForms.tsx:410 -msgid "Choose Location" -msgstr "" - -#: src/forms/PurchaseOrderForms.tsx:418 -msgid "Item Destination selected" -msgstr "" - #: src/forms/PurchaseOrderForms.tsx:421 #~ msgid "Assign Batch Code{0}" #~ msgstr "Assign Batch Code{0}" -#: src/forms/PurchaseOrderForms.tsx:428 -msgid "Part category default location selected" +#: src/forms/PurchaseOrderForms.tsx:440 +msgid "Assign Batch Code and Serial Numbers" msgstr "" -#: src/forms/PurchaseOrderForms.tsx:438 -msgid "Received stock location selected" +#: src/forms/PurchaseOrderForms.tsx:442 +msgid "Assign Batch Code" msgstr "" #: src/forms/PurchaseOrderForms.tsx:444 @@ -4605,115 +4618,131 @@ msgstr "" #~ msgid "Remove item from list" #~ msgstr "Remove item from list" -#: src/forms/PurchaseOrderForms.tsx:446 +#: src/forms/PurchaseOrderForms.tsx:462 +msgid "Choose Location" +msgstr "" + +#: src/forms/PurchaseOrderForms.tsx:470 +msgid "Item Destination selected" +msgstr "" + +#: src/forms/PurchaseOrderForms.tsx:480 +msgid "Part category default location selected" +msgstr "" + +#: src/forms/PurchaseOrderForms.tsx:490 +msgid "Received stock location selected" +msgstr "" + +#: src/forms/PurchaseOrderForms.tsx:498 msgid "Default location selected" msgstr "" -#: src/forms/PurchaseOrderForms.tsx:507 +#: src/forms/PurchaseOrderForms.tsx:559 msgid "Set Location" msgstr "" -#: src/forms/PurchaseOrderForms.tsx:524 -msgid "Set Expiry Date" -msgstr "" - -#: src/forms/PurchaseOrderForms.tsx:532 -#: src/forms/StockForms.tsx:693 -msgid "Adjust Packaging" -msgstr "" - -#: src/forms/PurchaseOrderForms.tsx:540 -#: src/forms/StockForms.tsx:684 -#: src/hooks/UseStockAdjustActions.tsx:148 -msgid "Change Status" -msgstr "" - -#: src/forms/PurchaseOrderForms.tsx:546 -msgid "Add Note" -msgstr "" - #: src/forms/PurchaseOrderForms.tsx:566 #~ msgid "Serial numbers" #~ msgstr "Serial numbers" +#: src/forms/PurchaseOrderForms.tsx:576 +msgid "Set Expiry Date" +msgstr "" + #: src/forms/PurchaseOrderForms.tsx:582 #~ msgid "Store at line item destination" #~ msgstr "Store at line item destination" -#: src/forms/PurchaseOrderForms.tsx:610 -msgid "Store at default location" +#: src/forms/PurchaseOrderForms.tsx:584 +#: src/forms/StockForms.tsx:693 +msgid "Adjust Packaging" msgstr "" -#: src/forms/PurchaseOrderForms.tsx:625 -msgid "Store at line item destination " +#: src/forms/PurchaseOrderForms.tsx:592 +#: src/forms/StockForms.tsx:684 +#: src/hooks/UseStockAdjustActions.tsx:148 +msgid "Change Status" msgstr "" -#: src/forms/PurchaseOrderForms.tsx:637 -msgid "Store with already received stock" +#: src/forms/PurchaseOrderForms.tsx:598 +msgid "Add Note" msgstr "" #: src/forms/PurchaseOrderForms.tsx:658 #~ msgid "Receive line items" #~ msgstr "Receive line items" -#: src/forms/PurchaseOrderForms.tsx:661 -#: src/pages/build/BuildDetail.tsx:340 +#: src/forms/PurchaseOrderForms.tsx:662 +msgid "Store at default location" +msgstr "" + +#: src/forms/PurchaseOrderForms.tsx:677 +msgid "Store at line item destination " +msgstr "" + +#: src/forms/PurchaseOrderForms.tsx:689 +msgid "Store with already received stock" +msgstr "" + +#: src/forms/PurchaseOrderForms.tsx:713 +#: src/pages/build/BuildDetail.tsx:341 #: src/pages/stock/StockDetail.tsx:280 #: src/pages/stock/StockDetail.tsx:952 #: src/tables/Filter.tsx:83 -#: src/tables/build/BuildAllocatedStockTable.tsx:128 +#: src/tables/build/BuildAllocatedStockTable.tsx:125 #: src/tables/build/BuildOutputTable.tsx:112 -#: src/tables/part/PartTestResultTable.tsx:260 -#: src/tables/part/PartTestResultTable.tsx:281 +#: src/tables/part/PartTestResultTable.tsx:268 +#: src/tables/part/PartTestResultTable.tsx:289 #: src/tables/sales/SalesOrderAllocationTable.tsx:149 msgid "Batch Code" msgstr "" -#: src/forms/PurchaseOrderForms.tsx:662 +#: src/forms/PurchaseOrderForms.tsx:714 msgid "Enter batch code for received items" msgstr "" -#: src/forms/PurchaseOrderForms.tsx:675 +#: src/forms/PurchaseOrderForms.tsx:727 #: src/forms/StockForms.tsx:218 msgid "Serial Numbers" msgstr "" -#: src/forms/PurchaseOrderForms.tsx:676 +#: src/forms/PurchaseOrderForms.tsx:728 msgid "Enter serial numbers for received items" msgstr "" -#: src/forms/PurchaseOrderForms.tsx:690 +#: src/forms/PurchaseOrderForms.tsx:742 #: src/pages/stock/StockDetail.tsx:382 #: src/tables/stock/StockItemTable.tsx:294 msgid "Expiry Date" msgstr "" -#: src/forms/PurchaseOrderForms.tsx:691 +#: src/forms/PurchaseOrderForms.tsx:743 msgid "Enter an expiry date for received items" msgstr "" -#: src/forms/PurchaseOrderForms.tsx:703 +#: src/forms/PurchaseOrderForms.tsx:755 #: src/forms/StockForms.tsx:728 -#: src/pages/company/SupplierPartDetail.tsx:172 -#: src/pages/company/SupplierPartDetail.tsx:236 +#: src/pages/company/SupplierPartDetail.tsx:173 +#: src/pages/company/SupplierPartDetail.tsx:237 #: src/pages/stock/StockDetail.tsx:419 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:227 msgid "Packaging" msgstr "" -#: src/forms/PurchaseOrderForms.tsx:727 -#: src/pages/company/SupplierPartDetail.tsx:120 +#: src/forms/PurchaseOrderForms.tsx:779 +#: src/pages/company/SupplierPartDetail.tsx:121 #: src/tables/ColumnRenderers.tsx:332 msgid "Note" msgstr "" -#: src/forms/PurchaseOrderForms.tsx:799 -#: src/pages/company/SupplierPartDetail.tsx:138 +#: src/forms/PurchaseOrderForms.tsx:851 +#: src/pages/company/SupplierPartDetail.tsx:139 #: src/tables/purchasing/SupplierPriceBreakTable.tsx:49 msgid "SKU" msgstr "" -#: src/forms/PurchaseOrderForms.tsx:800 +#: src/forms/PurchaseOrderForms.tsx:852 #: src/tables/part/PartPurchaseOrdersTable.tsx:127 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:213 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:283 @@ -4721,11 +4750,11 @@ msgstr "" msgid "Received" msgstr "" -#: src/forms/PurchaseOrderForms.tsx:817 +#: src/forms/PurchaseOrderForms.tsx:869 msgid "Receive Line Items" msgstr "" -#: src/forms/PurchaseOrderForms.tsx:823 +#: src/forms/PurchaseOrderForms.tsx:875 msgid "Items received" msgstr "" @@ -4737,7 +4766,35 @@ msgstr "" msgid "Item received into stock" msgstr "" -#: src/forms/SalesOrderForms.tsx:401 +#: src/forms/SalesOrderForms.tsx:208 +#: src/forms/SalesOrderForms.tsx:210 +#: src/tables/sales/SalesOrderShipmentTable.tsx:215 +msgid "Check Shipment" +msgstr "" + +#: src/forms/SalesOrderForms.tsx:211 +msgid "Marking the shipment as checked indicates that you have verified that all items included in this shipment are correct" +msgstr "" + +#: src/forms/SalesOrderForms.tsx:221 +msgid "Shipment marked as checked" +msgstr "" + +#: src/forms/SalesOrderForms.tsx:236 +#: src/forms/SalesOrderForms.tsx:238 +#: src/tables/sales/SalesOrderShipmentTable.tsx:228 +msgid "Uncheck Shipment" +msgstr "" + +#: src/forms/SalesOrderForms.tsx:239 +msgid "Marking the shipment as unchecked indicates that the shipment requires further verification" +msgstr "" + +#: src/forms/SalesOrderForms.tsx:249 +msgid "Shipment marked as unchecked" +msgstr "" + +#: src/forms/SalesOrderForms.tsx:480 msgid "Leave blank to use the order address" msgstr "" @@ -4792,150 +4849,150 @@ msgstr "" msgid "Return" msgstr "" -#: src/forms/StockForms.tsx:963 +#: src/forms/StockForms.tsx:979 #: src/pages/Index/Scan.tsx:182 msgid "Count" msgstr "" -#: src/forms/StockForms.tsx:1246 +#: src/forms/StockForms.tsx:1262 #: src/hooks/UseStockAdjustActions.tsx:108 msgid "Add Stock" msgstr "" -#: src/forms/StockForms.tsx:1247 +#: src/forms/StockForms.tsx:1263 msgid "Stock added" msgstr "" -#: src/forms/StockForms.tsx:1250 +#: src/forms/StockForms.tsx:1266 msgid "Increase the quantity of the selected stock items by a given amount." msgstr "" -#: src/forms/StockForms.tsx:1261 +#: src/forms/StockForms.tsx:1277 #: src/hooks/UseStockAdjustActions.tsx:118 msgid "Remove Stock" msgstr "" -#: src/forms/StockForms.tsx:1262 +#: src/forms/StockForms.tsx:1278 msgid "Stock removed" msgstr "" -#: src/forms/StockForms.tsx:1265 +#: src/forms/StockForms.tsx:1281 msgid "Decrease the quantity of the selected stock items by a given amount." msgstr "" -#: src/forms/StockForms.tsx:1276 +#: src/forms/StockForms.tsx:1292 #: src/hooks/UseStockAdjustActions.tsx:128 msgid "Transfer Stock" msgstr "" -#: src/forms/StockForms.tsx:1277 +#: src/forms/StockForms.tsx:1293 msgid "Stock transferred" msgstr "" -#: src/forms/StockForms.tsx:1280 +#: src/forms/StockForms.tsx:1296 msgid "Transfer selected items to the specified location." msgstr "" -#: src/forms/StockForms.tsx:1291 +#: src/forms/StockForms.tsx:1307 #: src/hooks/UseStockAdjustActions.tsx:168 msgid "Return Stock" msgstr "" -#: src/forms/StockForms.tsx:1292 +#: src/forms/StockForms.tsx:1308 msgid "Stock returned" msgstr "" -#: src/forms/StockForms.tsx:1295 +#: src/forms/StockForms.tsx:1311 msgid "Return selected items into stock, to the specified location." msgstr "" -#: src/forms/StockForms.tsx:1306 +#: src/forms/StockForms.tsx:1322 #: src/hooks/UseStockAdjustActions.tsx:98 msgid "Count Stock" msgstr "" -#: src/forms/StockForms.tsx:1307 +#: src/forms/StockForms.tsx:1323 msgid "Stock counted" msgstr "" -#: src/forms/StockForms.tsx:1310 +#: src/forms/StockForms.tsx:1326 msgid "Count the selected stock items, and adjust the quantity accordingly." msgstr "" -#: src/forms/StockForms.tsx:1321 +#: src/forms/StockForms.tsx:1337 msgid "Change Stock Status" msgstr "" -#: src/forms/StockForms.tsx:1322 +#: src/forms/StockForms.tsx:1338 msgid "Stock status changed" msgstr "" -#: src/forms/StockForms.tsx:1325 +#: src/forms/StockForms.tsx:1341 msgid "Change the status of the selected stock items." msgstr "" -#: src/forms/StockForms.tsx:1336 +#: src/forms/StockForms.tsx:1352 #: src/hooks/UseStockAdjustActions.tsx:138 msgid "Merge Stock" msgstr "" -#: src/forms/StockForms.tsx:1337 +#: src/forms/StockForms.tsx:1353 msgid "Stock merged" msgstr "" -#: src/forms/StockForms.tsx:1339 +#: src/forms/StockForms.tsx:1355 msgid "Merge Stock Items" msgstr "" -#: src/forms/StockForms.tsx:1341 +#: src/forms/StockForms.tsx:1357 msgid "Merge operation cannot be reversed" msgstr "" -#: src/forms/StockForms.tsx:1342 +#: src/forms/StockForms.tsx:1358 msgid "Tracking information may be lost when merging items" msgstr "" -#: src/forms/StockForms.tsx:1343 +#: src/forms/StockForms.tsx:1359 msgid "Supplier information may be lost when merging items" msgstr "" -#: src/forms/StockForms.tsx:1361 +#: src/forms/StockForms.tsx:1377 msgid "Assign Stock to Customer" msgstr "" -#: src/forms/StockForms.tsx:1362 +#: src/forms/StockForms.tsx:1378 msgid "Stock assigned to customer" msgstr "" -#: src/forms/StockForms.tsx:1372 +#: src/forms/StockForms.tsx:1388 msgid "Delete Stock Items" msgstr "" -#: src/forms/StockForms.tsx:1373 +#: src/forms/StockForms.tsx:1389 msgid "Stock deleted" msgstr "" -#: src/forms/StockForms.tsx:1376 +#: src/forms/StockForms.tsx:1392 msgid "This operation will permanently delete the selected stock items." msgstr "" -#: src/forms/StockForms.tsx:1385 +#: src/forms/StockForms.tsx:1401 msgid "Parent stock location" msgstr "" -#: src/forms/StockForms.tsx:1512 +#: src/forms/StockForms.tsx:1528 msgid "Find Serial Number" msgstr "" -#: src/forms/StockForms.tsx:1523 +#: src/forms/StockForms.tsx:1539 msgid "No matching items" msgstr "" -#: src/forms/StockForms.tsx:1529 +#: src/forms/StockForms.tsx:1545 msgid "Multiple matching items" msgstr "" -#: src/forms/StockForms.tsx:1538 +#: src/forms/StockForms.tsx:1554 msgid "Invalid response from server" msgstr "" @@ -4953,7 +5010,6 @@ msgstr "" #: src/tables/FilterSelectDrawer.tsx:137 #: src/tables/FilterSelectDrawer.tsx:149 #: src/tables/part/PartTestResultTable.tsx:206 -#: src/tables/purchasing/ManufacturerPartParameterTable.tsx:42 #: src/tables/stock/StockItemTestResultTable.tsx:207 msgid "Value" msgstr "" @@ -5244,7 +5300,7 @@ msgid "Delete selected stock items" msgstr "" #: src/hooks/UseStockAdjustActions.tsx:205 -#: src/pages/part/PartDetail.tsx:1137 +#: src/pages/part/PartDetail.tsx:1158 msgid "Stock Actions" msgstr "" @@ -5932,6 +5988,9 @@ msgstr "" #: src/pages/Index/Settings/AccountSettings/MFASettings.tsx:310 #: src/pages/Index/Settings/AccountSettings/MFASettings.tsx:401 +#: src/tables/build/BuildAllocatedStockTable.tsx:181 +#: src/tables/build/BuildLineTable.tsx:668 +#: src/tables/sales/SalesOrderAllocationTable.tsx:220 msgid "Confirm Removal" msgstr "" @@ -6394,30 +6453,34 @@ msgid "Email Messages" msgstr "" #: src/pages/Index/Settings/AdminCenter/HomePanel.tsx:22 -msgid "Active Alerts" -msgstr "" +#~ msgid "Active Alerts" +#~ msgstr "Active Alerts" #: src/pages/Index/Settings/AdminCenter/HomePanel.tsx:27 -msgid "Inactive Alerts" +#~ msgid "Inactive Alerts" +#~ msgstr "Inactive Alerts" + +#: src/pages/Index/Settings/AdminCenter/HomePanel.tsx:36 +msgid "System Status" msgstr "" -#: src/pages/Index/Settings/AdminCenter/HomePanel.tsx:38 +#: src/pages/Index/Settings/AdminCenter/HomePanel.tsx:47 msgid "Admin Center Information" msgstr "" -#: src/pages/Index/Settings/AdminCenter/HomePanel.tsx:44 +#: src/pages/Index/Settings/AdminCenter/HomePanel.tsx:53 msgid "The home panel (and the whole Admin Center) is a new feature starting with the new UI and was previously (before 1.0) not available." msgstr "" -#: src/pages/Index/Settings/AdminCenter/HomePanel.tsx:51 +#: src/pages/Index/Settings/AdminCenter/HomePanel.tsx:60 msgid "The admin center provides a centralized location for all administration functionality and is meant to replace all interaction with the (django) backend admin interface." msgstr "" -#: src/pages/Index/Settings/AdminCenter/HomePanel.tsx:58 +#: src/pages/Index/Settings/AdminCenter/HomePanel.tsx:67 msgid "Please open feature requests (after checking the tracker) for any existing backend admin functionality you are missing in this UI. The backend admin interface should be used carefully and seldom." msgstr "" -#: src/pages/Index/Settings/AdminCenter/HomePanel.tsx:76 +#: src/pages/Index/Settings/AdminCenter/HomePanel.tsx:85 msgid "Quick Actions" msgstr "" @@ -6476,11 +6539,11 @@ msgstr "" #: src/pages/Index/Settings/AdminCenter/Index.tsx:195 #: src/pages/part/CategoryDetail.tsx:313 -msgid "Part Parameters" -msgstr "" +#~ msgid "Part Parameters" +#~ msgstr "Part Parameters" #: src/pages/Index/Settings/AdminCenter/Index.tsx:202 -#: src/pages/part/CategoryDetail.tsx:306 +#: src/pages/part/CategoryDetail.tsx:329 msgid "Category Parameters" msgstr "" @@ -6494,7 +6557,7 @@ msgstr "" #: src/pages/Index/Settings/AdminCenter/Index.tsx:235 #: src/pages/Index/Settings/AdminCenter/MachineManagementPanel.tsx:52 -#: src/tables/machine/MachineTypeTable.tsx:325 +#: src/tables/machine/MachineTypeTable.tsx:323 msgid "Machines" msgstr "" @@ -6507,8 +6570,8 @@ msgid "Data Management" msgstr "" #: src/pages/Index/Settings/AdminCenter/Index.tsx:270 -#: src/pages/Index/Settings/SystemSettings.tsx:175 -#: src/pages/Index/Settings/UserSettings.tsx:118 +#: src/pages/Index/Settings/SystemSettings.tsx:176 +#: src/pages/Index/Settings/UserSettings.tsx:119 msgid "Reporting" msgstr "" @@ -6709,11 +6772,11 @@ msgstr "" msgid "The settings below are specific to each available plugin" msgstr "" -#: src/pages/Index/Settings/SystemSettings.tsx:77 +#: src/pages/Index/Settings/SystemSettings.tsx:78 msgid "Authentication" msgstr "" -#: src/pages/Index/Settings/SystemSettings.tsx:103 +#: src/pages/Index/Settings/SystemSettings.tsx:104 msgid "Barcodes" msgstr "" @@ -6725,12 +6788,12 @@ msgstr "" #~ msgid "This panel is a placeholder." #~ msgstr "This panel is a placeholder." -#: src/pages/Index/Settings/SystemSettings.tsx:127 -#: src/pages/Index/Settings/UserSettings.tsx:112 +#: src/pages/Index/Settings/SystemSettings.tsx:128 +#: src/pages/Index/Settings/UserSettings.tsx:113 msgid "The settings below are specific to each available notification method" msgstr "" -#: src/pages/Index/Settings/SystemSettings.tsx:133 +#: src/pages/Index/Settings/SystemSettings.tsx:134 msgid "Pricing" msgstr "" @@ -6738,7 +6801,7 @@ msgstr "" #~ msgid "Exchange Rates" #~ msgstr "Exchange Rates" -#: src/pages/Index/Settings/SystemSettings.tsx:169 +#: src/pages/Index/Settings/SystemSettings.tsx:170 msgid "Labels" msgstr "" @@ -6790,15 +6853,15 @@ msgstr "" #~ msgid "Delete notifications" #~ msgstr "Delete notifications" -#: src/pages/build/BuildDetail.tsx:69 +#: src/pages/build/BuildDetail.tsx:70 msgid "No Required Items" msgstr "" -#: src/pages/build/BuildDetail.tsx:71 +#: src/pages/build/BuildDetail.tsx:72 msgid "This build order does not have any required items." msgstr "" -#: src/pages/build/BuildDetail.tsx:72 +#: src/pages/build/BuildDetail.tsx:73 msgid "The assembled part may not have a Bill of Materials (BOM) defined, or the BOM is empty." msgstr "" @@ -6826,7 +6889,7 @@ msgstr "" #~ msgid "Build Order updated" #~ msgstr "Build Order updated" -#: src/pages/build/BuildDetail.tsx:215 +#: src/pages/build/BuildDetail.tsx:216 #: src/pages/part/PartDetail.tsx:480 #: src/pages/stock/StockDetail.tsx:161 #: src/tables/bom/UsedInTable.tsx:44 @@ -6843,10 +6906,10 @@ msgstr "" #~ msgid "Duplicate build order" #~ msgstr "Duplicate build order" -#: src/pages/build/BuildDetail.tsx:228 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:174 -#: src/pages/sales/ReturnOrderDetail.tsx:141 -#: src/pages/sales/SalesOrderDetail.tsx:131 +#: src/pages/build/BuildDetail.tsx:229 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:175 +#: src/pages/sales/ReturnOrderDetail.tsx:142 +#: src/pages/sales/SalesOrderDetail.tsx:132 #: src/pages/stock/StockDetail.tsx:176 msgid "Custom Status" msgstr "" @@ -6855,9 +6918,9 @@ msgstr "" #~ msgid "Delete build order" #~ msgstr "Delete build order" -#: src/pages/build/BuildDetail.tsx:237 -#: src/pages/build/BuildDetail.tsx:723 -#: src/pages/build/BuildIndex.tsx:28 +#: src/pages/build/BuildDetail.tsx:238 +#: src/pages/build/BuildDetail.tsx:728 +#: src/pages/build/BuildIndex.tsx:34 #: src/pages/stock/LocationDetail.tsx:140 #: src/tables/build/BuildOrderTable.tsx:123 #: src/tables/build/BuildOrderTable.tsx:183 @@ -6865,57 +6928,57 @@ msgstr "" msgid "External" msgstr "" -#: src/pages/build/BuildDetail.tsx:244 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:141 -#: src/pages/sales/ReturnOrderDetail.tsx:108 -#: src/pages/sales/SalesOrderDetail.tsx:98 +#: src/pages/build/BuildDetail.tsx:245 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:142 +#: src/pages/sales/ReturnOrderDetail.tsx:109 +#: src/pages/sales/SalesOrderDetail.tsx:99 #: src/tables/ColumnRenderers.tsx:321 -#: src/tables/build/BuildAllocatedStockTable.tsx:115 -#: src/tables/build/BuildLineTable.tsx:352 +#: src/tables/build/BuildAllocatedStockTable.tsx:112 +#: src/tables/build/BuildLineTable.tsx:353 msgid "Reference" msgstr "" -#: src/pages/build/BuildDetail.tsx:258 +#: src/pages/build/BuildDetail.tsx:259 msgid "Parent Build" msgstr "" -#: src/pages/build/BuildDetail.tsx:269 +#: src/pages/build/BuildDetail.tsx:270 msgid "Build Quantity" msgstr "" -#: src/pages/build/BuildDetail.tsx:275 +#: src/pages/build/BuildDetail.tsx:276 #: src/pages/part/PartDetail.tsx:598 #: src/tables/bom/BomTable.tsx:365 #: src/tables/bom/BomTable.tsx:407 msgid "Can Build" msgstr "" -#: src/pages/build/BuildDetail.tsx:284 -#: src/pages/build/BuildDetail.tsx:474 +#: src/pages/build/BuildDetail.tsx:285 +#: src/pages/build/BuildDetail.tsx:475 msgid "Completed Outputs" msgstr "" -#: src/pages/build/BuildDetail.tsx:301 +#: src/pages/build/BuildDetail.tsx:302 #: src/tables/Filter.tsx:381 #: src/tables/build/BuildOrderTable.tsx:143 msgid "Issued By" msgstr "" -#: src/pages/build/BuildDetail.tsx:309 +#: src/pages/build/BuildDetail.tsx:310 #: src/pages/part/PartDetail.tsx:691 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:261 -#: src/pages/sales/ReturnOrderDetail.tsx:239 -#: src/pages/sales/SalesOrderDetail.tsx:232 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:262 +#: src/pages/sales/ReturnOrderDetail.tsx:240 +#: src/pages/sales/SalesOrderDetail.tsx:233 #: src/tables/ColumnRenderers.tsx:464 #: src/tables/Filter.tsx:319 msgid "Responsible" msgstr "" -#: src/pages/build/BuildDetail.tsx:327 +#: src/pages/build/BuildDetail.tsx:328 msgid "Any location" msgstr "" -#: src/pages/build/BuildDetail.tsx:334 +#: src/pages/build/BuildDetail.tsx:335 msgid "Destination Location" msgstr "" @@ -6924,24 +6987,24 @@ msgstr "" #~ msgid "Test Statistics" #~ msgstr "Test Statistics" -#: src/pages/build/BuildDetail.tsx:350 +#: src/pages/build/BuildDetail.tsx:351 #: src/tables/settings/ApiTokenTable.tsx:97 #: src/tables/settings/PendingTasksTable.tsx:41 msgid "Created" msgstr "" -#: src/pages/build/BuildDetail.tsx:358 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:286 -#: src/pages/sales/ReturnOrderDetail.tsx:265 -#: src/pages/sales/SalesOrderDetail.tsx:257 +#: src/pages/build/BuildDetail.tsx:359 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:287 +#: src/pages/sales/ReturnOrderDetail.tsx:266 +#: src/pages/sales/SalesOrderDetail.tsx:258 #: src/tables/ColumnRenderers.tsx:486 msgid "Start Date" msgstr "" -#: src/pages/build/BuildDetail.tsx:366 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:294 -#: src/pages/sales/ReturnOrderDetail.tsx:273 -#: src/pages/sales/SalesOrderDetail.tsx:265 +#: src/pages/build/BuildDetail.tsx:367 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:295 +#: src/pages/sales/ReturnOrderDetail.tsx:274 +#: src/pages/sales/SalesOrderDetail.tsx:266 #: src/tables/ColumnRenderers.tsx:494 #: src/tables/part/PartPurchaseOrdersTable.tsx:101 #: src/tables/sales/ReturnOrderLineItemTable.tsx:154 @@ -6954,185 +7017,185 @@ msgstr "" #~ msgstr "Reporting Actions" #: src/pages/build/BuildDetail.tsx:374 +#~ msgid "Print build report" +#~ msgstr "Print build report" + +#: src/pages/build/BuildDetail.tsx:375 #: src/tables/build/BuildOrderTable.tsx:93 #: src/tables/sales/SalesOrderLineItemTable.tsx:347 msgid "Completed" msgstr "" -#: src/pages/build/BuildDetail.tsx:374 -#~ msgid "Print build report" -#~ msgstr "Print build report" - -#: src/pages/build/BuildDetail.tsx:410 +#: src/pages/build/BuildDetail.tsx:411 msgid "Build Details" msgstr "" -#: src/pages/build/BuildDetail.tsx:416 +#: src/pages/build/BuildDetail.tsx:417 msgid "Required Parts" msgstr "" -#: src/pages/build/BuildDetail.tsx:428 -#: src/pages/sales/SalesOrderDetail.tsx:407 -#: src/pages/sales/SalesOrderShipmentDetail.tsx:261 +#: src/pages/build/BuildDetail.tsx:429 +#: src/pages/sales/SalesOrderDetail.tsx:408 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:259 #: src/tables/part/PartSalesAllocationsTable.tsx:73 msgid "Allocated Stock" msgstr "" -#: src/pages/build/BuildDetail.tsx:444 +#: src/pages/build/BuildDetail.tsx:445 msgid "Consumed Stock" msgstr "" -#: src/pages/build/BuildDetail.tsx:461 +#: src/pages/build/BuildDetail.tsx:462 msgid "Incomplete Outputs" msgstr "" -#: src/pages/build/BuildDetail.tsx:489 +#: src/pages/build/BuildDetail.tsx:490 msgid "External Orders" msgstr "" -#: src/pages/build/BuildDetail.tsx:503 +#: src/pages/build/BuildDetail.tsx:504 msgid "Child Build Orders" msgstr "" -#: src/pages/build/BuildDetail.tsx:513 -#: src/pages/part/PartDetail.tsx:937 +#: src/pages/build/BuildDetail.tsx:514 +#: src/pages/part/PartDetail.tsx:926 #: src/pages/stock/StockDetail.tsx:587 #: src/tables/build/BuildOutputTable.tsx:654 #: src/tables/stock/StockItemTestResultTable.tsx:173 msgid "Test Results" msgstr "" -#: src/pages/build/BuildDetail.tsx:550 +#: src/pages/build/BuildDetail.tsx:555 msgid "Edit Build Order" msgstr "" -#: src/pages/build/BuildDetail.tsx:572 +#: src/pages/build/BuildDetail.tsx:577 #: src/tables/build/BuildOrderTable.tsx:207 #: src/tables/build/BuildOrderTable.tsx:223 msgid "Add Build Order" msgstr "" -#: src/pages/build/BuildDetail.tsx:582 +#: src/pages/build/BuildDetail.tsx:587 msgid "Cancel Build Order" msgstr "" -#: src/pages/build/BuildDetail.tsx:584 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:416 -#: src/pages/sales/ReturnOrderDetail.tsx:427 -#: src/pages/sales/SalesOrderDetail.tsx:454 +#: src/pages/build/BuildDetail.tsx:589 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:421 +#: src/pages/sales/ReturnOrderDetail.tsx:432 +#: src/pages/sales/SalesOrderDetail.tsx:459 msgid "Order cancelled" msgstr "" -#: src/pages/build/BuildDetail.tsx:585 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:415 -#: src/pages/sales/ReturnOrderDetail.tsx:426 -#: src/pages/sales/SalesOrderDetail.tsx:453 +#: src/pages/build/BuildDetail.tsx:590 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:420 +#: src/pages/sales/ReturnOrderDetail.tsx:431 +#: src/pages/sales/SalesOrderDetail.tsx:458 msgid "Cancel this order" msgstr "" -#: src/pages/build/BuildDetail.tsx:594 +#: src/pages/build/BuildDetail.tsx:599 msgid "Hold Build Order" msgstr "" -#: src/pages/build/BuildDetail.tsx:596 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:423 -#: src/pages/sales/ReturnOrderDetail.tsx:434 -#: src/pages/sales/SalesOrderDetail.tsx:461 +#: src/pages/build/BuildDetail.tsx:601 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:428 +#: src/pages/sales/ReturnOrderDetail.tsx:439 +#: src/pages/sales/SalesOrderDetail.tsx:466 msgid "Place this order on hold" msgstr "" -#: src/pages/build/BuildDetail.tsx:597 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:424 -#: src/pages/sales/ReturnOrderDetail.tsx:435 -#: src/pages/sales/SalesOrderDetail.tsx:462 +#: src/pages/build/BuildDetail.tsx:602 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:429 +#: src/pages/sales/ReturnOrderDetail.tsx:440 +#: src/pages/sales/SalesOrderDetail.tsx:467 msgid "Order placed on hold" msgstr "" -#: src/pages/build/BuildDetail.tsx:602 +#: src/pages/build/BuildDetail.tsx:607 msgid "Issue Build Order" msgstr "" -#: src/pages/build/BuildDetail.tsx:604 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:407 -#: src/pages/sales/ReturnOrderDetail.tsx:418 -#: src/pages/sales/SalesOrderDetail.tsx:445 +#: src/pages/build/BuildDetail.tsx:609 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:412 +#: src/pages/sales/ReturnOrderDetail.tsx:423 +#: src/pages/sales/SalesOrderDetail.tsx:450 msgid "Issue this order" msgstr "" -#: src/pages/build/BuildDetail.tsx:605 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:408 -#: src/pages/sales/ReturnOrderDetail.tsx:419 -#: src/pages/sales/SalesOrderDetail.tsx:446 +#: src/pages/build/BuildDetail.tsx:610 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:413 +#: src/pages/sales/ReturnOrderDetail.tsx:424 +#: src/pages/sales/SalesOrderDetail.tsx:451 msgid "Order issued" msgstr "" -#: src/pages/build/BuildDetail.tsx:624 +#: src/pages/build/BuildDetail.tsx:629 msgid "Complete Build Order" msgstr "" -#: src/pages/build/BuildDetail.tsx:630 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:436 -#: src/pages/sales/ReturnOrderDetail.tsx:442 -#: src/pages/sales/SalesOrderDetail.tsx:480 +#: src/pages/build/BuildDetail.tsx:635 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:441 +#: src/pages/sales/ReturnOrderDetail.tsx:447 +#: src/pages/sales/SalesOrderDetail.tsx:485 msgid "Mark this order as complete" msgstr "" -#: src/pages/build/BuildDetail.tsx:633 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:430 -#: src/pages/sales/ReturnOrderDetail.tsx:443 -#: src/pages/sales/SalesOrderDetail.tsx:481 +#: src/pages/build/BuildDetail.tsx:638 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:435 +#: src/pages/sales/ReturnOrderDetail.tsx:448 +#: src/pages/sales/SalesOrderDetail.tsx:486 msgid "Order completed" msgstr "" -#: src/pages/build/BuildDetail.tsx:660 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:459 -#: src/pages/sales/ReturnOrderDetail.tsx:470 -#: src/pages/sales/SalesOrderDetail.tsx:516 +#: src/pages/build/BuildDetail.tsx:665 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:464 +#: src/pages/sales/ReturnOrderDetail.tsx:475 +#: src/pages/sales/SalesOrderDetail.tsx:521 msgid "Issue Order" msgstr "" -#: src/pages/build/BuildDetail.tsx:667 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:466 -#: src/pages/sales/ReturnOrderDetail.tsx:477 -#: src/pages/sales/SalesOrderDetail.tsx:530 +#: src/pages/build/BuildDetail.tsx:672 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:471 +#: src/pages/sales/ReturnOrderDetail.tsx:482 +#: src/pages/sales/SalesOrderDetail.tsx:535 msgid "Complete Order" msgstr "" -#: src/pages/build/BuildDetail.tsx:686 +#: src/pages/build/BuildDetail.tsx:691 msgid "Build Order Actions" msgstr "" -#: src/pages/build/BuildDetail.tsx:691 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:489 -#: src/pages/sales/ReturnOrderDetail.tsx:500 -#: src/pages/sales/SalesOrderDetail.tsx:554 +#: src/pages/build/BuildDetail.tsx:696 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:494 +#: src/pages/sales/ReturnOrderDetail.tsx:505 +#: src/pages/sales/SalesOrderDetail.tsx:559 msgid "Edit order" msgstr "" -#: src/pages/build/BuildDetail.tsx:695 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:497 -#: src/pages/sales/ReturnOrderDetail.tsx:506 -#: src/pages/sales/SalesOrderDetail.tsx:559 -msgid "Duplicate order" -msgstr "" - -#: src/pages/build/BuildDetail.tsx:699 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:500 +#: src/pages/build/BuildDetail.tsx:700 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:502 #: src/pages/sales/ReturnOrderDetail.tsx:511 -#: src/pages/sales/SalesOrderDetail.tsx:562 -msgid "Hold order" +#: src/pages/sales/SalesOrderDetail.tsx:564 +msgid "Duplicate order" msgstr "" #: src/pages/build/BuildDetail.tsx:704 #: src/pages/purchasing/PurchaseOrderDetail.tsx:505 #: src/pages/sales/ReturnOrderDetail.tsx:516 #: src/pages/sales/SalesOrderDetail.tsx:567 +msgid "Hold order" +msgstr "" + +#: src/pages/build/BuildDetail.tsx:709 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:510 +#: src/pages/sales/ReturnOrderDetail.tsx:521 +#: src/pages/sales/SalesOrderDetail.tsx:572 msgid "Cancel order" msgstr "" -#: src/pages/build/BuildDetail.tsx:742 +#: src/pages/build/BuildDetail.tsx:747 #: src/pages/stock/StockDetail.tsx:344 -#: src/tables/build/BuildAllocatedStockTable.tsx:85 +#: src/tables/build/BuildAllocatedStockTable.tsx:82 #: src/tables/part/PartBuildAllocationsTable.tsx:45 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:157 #: src/tables/stock/StockTrackingTable.tsx:109 @@ -7143,7 +7206,7 @@ msgstr "" #~ msgid "Build order created" #~ msgstr "Build order created" -#: src/pages/build/BuildIndex.tsx:29 +#: src/pages/build/BuildIndex.tsx:35 #: src/tables/build/BuildOrderTable.tsx:184 msgid "Show external build orders" msgstr "" @@ -7152,61 +7215,82 @@ msgstr "" #~ msgid "New Build Order" #~ msgstr "New Build Order" -#: src/pages/build/BuildIndex.tsx:83 -#: src/pages/purchasing/PurchasingIndex.tsx:69 -#: src/pages/sales/SalesIndex.tsx:92 -#: src/pages/sales/SalesIndex.tsx:125 +#: src/pages/build/BuildIndex.tsx:74 +#: src/pages/part/CategoryDetail.tsx:292 +#: src/pages/purchasing/PurchasingIndex.tsx:74 +#: src/pages/purchasing/PurchasingIndex.tsx:107 +#: src/pages/purchasing/PurchasingIndex.tsx:135 +#: src/pages/purchasing/PurchasingIndex.tsx:156 +#: src/pages/purchasing/PurchasingIndex.tsx:184 +#: src/pages/sales/SalesIndex.tsx:61 +#: src/pages/sales/SalesIndex.tsx:107 +#: src/pages/sales/SalesIndex.tsx:140 msgid "Table View" msgstr "" -#: src/pages/build/BuildIndex.tsx:86 -#: src/pages/purchasing/PurchasingIndex.tsx:72 -#: src/pages/sales/SalesIndex.tsx:95 -#: src/pages/sales/SalesIndex.tsx:128 +#: src/pages/build/BuildIndex.tsx:80 +#: src/pages/purchasing/PurchasingIndex.tsx:80 +#: src/pages/sales/SalesIndex.tsx:67 +#: src/pages/sales/SalesIndex.tsx:113 msgid "Calendar View" msgstr "" -#: src/pages/company/CompanyDetail.tsx:99 +#: src/pages/build/BuildIndex.tsx:86 +#: src/pages/part/CategoryDetail.tsx:306 +#: src/pages/purchasing/PurchasingIndex.tsx:92 +#: src/pages/purchasing/PurchasingIndex.tsx:118 +#: src/pages/purchasing/PurchasingIndex.tsx:141 +#: src/pages/purchasing/PurchasingIndex.tsx:167 +#: src/pages/purchasing/PurchasingIndex.tsx:190 +#: src/pages/sales/SalesIndex.tsx:79 +#: src/pages/sales/SalesIndex.tsx:125 +#: src/pages/sales/SalesIndex.tsx:151 +msgid "Parametric View" +msgstr "" + +#: src/pages/company/CompanyDetail.tsx:100 msgid "Website" msgstr "" -#: src/pages/company/CompanyDetail.tsx:107 +#: src/pages/company/CompanyDetail.tsx:108 msgid "Phone Number" msgstr "" -#: src/pages/company/CompanyDetail.tsx:114 +#: src/pages/company/CompanyDetail.tsx:115 msgid "Email Address" msgstr "" -#: src/pages/company/CompanyDetail.tsx:121 +#: src/pages/company/CompanyDetail.tsx:122 msgid "Tax ID" msgstr "" -#: src/pages/company/CompanyDetail.tsx:131 +#: src/pages/company/CompanyDetail.tsx:132 msgid "Default Currency" msgstr "" -#: src/pages/company/CompanyDetail.tsx:142 +#: src/pages/company/CompanyDetail.tsx:143 #: src/pages/company/ManufacturerDetail.tsx:8 -#: src/pages/company/ManufacturerPartDetail.tsx:104 -#: src/pages/company/ManufacturerPartDetail.tsx:280 -#: src/pages/company/SupplierPartDetail.tsx:152 +#: src/pages/company/ManufacturerPartDetail.tsx:103 +#: src/pages/company/ManufacturerPartDetail.tsx:271 +#: src/pages/company/SupplierPartDetail.tsx:153 #: src/tables/Filter.tsx:347 #: src/tables/company/CompanyTable.tsx:101 #: src/tables/purchasing/SupplierPartTable.tsx:89 msgid "Manufacturer" msgstr "" -#: src/pages/company/CompanyDetail.tsx:148 +#: src/pages/company/CompanyDetail.tsx:149 #: src/pages/company/CustomerDetail.tsx:8 #: src/pages/part/pricing/SaleHistoryPanel.tsx:31 -#: src/pages/sales/ReturnOrderDetail.tsx:123 -#: src/pages/sales/SalesOrderDetail.tsx:113 -#: src/pages/sales/SalesOrderShipmentDetail.tsx:113 +#: src/pages/sales/ReturnOrderDetail.tsx:124 +#: src/pages/sales/SalesOrderDetail.tsx:114 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:111 #: src/pages/stock/StockDetail.tsx:370 #: src/tables/company/CompanyTable.tsx:106 +#: src/tables/sales/ReturnOrderParametricTable.tsx:32 #: src/tables/sales/ReturnOrderTable.tsx:108 -#: src/tables/sales/SalesOrderShipmentTable.tsx:111 +#: src/tables/sales/SalesOrderParametricTable.tsx:32 +#: src/tables/sales/SalesOrderShipmentTable.tsx:132 #: src/tables/sales/SalesOrderTable.tsx:133 #: src/tables/stock/StockTrackingTable.tsx:153 msgid "Customer" @@ -7216,11 +7300,11 @@ msgstr "" #~ msgid "Edit company" #~ msgstr "Edit company" -#: src/pages/company/CompanyDetail.tsx:181 +#: src/pages/company/CompanyDetail.tsx:182 msgid "Company Details" msgstr "" -#: src/pages/company/CompanyDetail.tsx:187 +#: src/pages/company/CompanyDetail.tsx:188 msgid "Supplied Parts" msgstr "" @@ -7228,79 +7312,79 @@ msgstr "" #~ msgid "Delete company" #~ msgstr "Delete company" -#: src/pages/company/CompanyDetail.tsx:194 +#: src/pages/company/CompanyDetail.tsx:195 msgid "Manufactured Parts" msgstr "" -#: src/pages/company/CompanyDetail.tsx:241 +#: src/pages/company/CompanyDetail.tsx:242 msgid "Assigned Stock" msgstr "" -#: src/pages/company/CompanyDetail.tsx:282 +#: src/pages/company/CompanyDetail.tsx:287 #: src/tables/company/CompanyTable.tsx:82 msgid "Edit Company" msgstr "" -#: src/pages/company/CompanyDetail.tsx:290 +#: src/pages/company/CompanyDetail.tsx:295 msgid "Delete Company" msgstr "" -#: src/pages/company/CompanyDetail.tsx:305 +#: src/pages/company/CompanyDetail.tsx:310 msgid "Company Actions" msgstr "" -#: src/pages/company/ManufacturerPartDetail.tsx:78 -#: src/pages/company/SupplierPartDetail.tsx:89 +#: src/pages/company/ManufacturerPartDetail.tsx:77 +#: src/pages/company/SupplierPartDetail.tsx:90 msgid "Internal Part" msgstr "" -#: src/pages/company/ManufacturerPartDetail.tsx:112 +#: src/pages/company/ManufacturerPartDetail.tsx:111 msgid "Manufacturer Part Number" msgstr "" -#: src/pages/company/ManufacturerPartDetail.tsx:129 -#: src/pages/company/SupplierPartDetail.tsx:113 +#: src/pages/company/ManufacturerPartDetail.tsx:128 +#: src/pages/company/SupplierPartDetail.tsx:114 msgid "External Link" msgstr "" -#: src/pages/company/ManufacturerPartDetail.tsx:148 -#: src/pages/company/SupplierPartDetail.tsx:232 +#: src/pages/company/ManufacturerPartDetail.tsx:147 +#: src/pages/company/SupplierPartDetail.tsx:233 #: src/pages/part/PartDetail.tsx:787 msgid "Part Details" msgstr "" -#: src/pages/company/ManufacturerPartDetail.tsx:151 +#: src/pages/company/ManufacturerPartDetail.tsx:150 msgid "Manufacturer Details" msgstr "" -#: src/pages/company/ManufacturerPartDetail.tsx:160 +#: src/pages/company/ManufacturerPartDetail.tsx:159 msgid "Manufacturer Part Details" msgstr "" -#: src/pages/company/ManufacturerPartDetail.tsx:178 -#: src/pages/company/SupplierPartDetail.tsx:252 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:381 +#: src/pages/company/ManufacturerPartDetail.tsx:165 +#: src/pages/company/SupplierPartDetail.tsx:253 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:382 msgid "Received Stock" msgstr "" -#: src/pages/company/ManufacturerPartDetail.tsx:220 +#: src/pages/company/ManufacturerPartDetail.tsx:211 #: src/tables/purchasing/ManufacturerPartTable.tsx:108 msgid "Edit Manufacturer Part" msgstr "" -#: src/pages/company/ManufacturerPartDetail.tsx:227 +#: src/pages/company/ManufacturerPartDetail.tsx:218 #: src/tables/purchasing/ManufacturerPartTable.tsx:96 #: src/tables/purchasing/ManufacturerPartTable.tsx:115 #: src/tables/purchasing/ManufacturerPartTable.tsx:156 msgid "Add Manufacturer Part" msgstr "" -#: src/pages/company/ManufacturerPartDetail.tsx:239 +#: src/pages/company/ManufacturerPartDetail.tsx:230 #: src/tables/purchasing/ManufacturerPartTable.tsx:126 msgid "Delete Manufacturer Part" msgstr "" -#: src/pages/company/ManufacturerPartDetail.tsx:254 +#: src/pages/company/ManufacturerPartDetail.tsx:245 msgid "Manufacturer Part Actions" msgstr "" @@ -7308,12 +7392,12 @@ msgstr "" #~ msgid "ManufacturerPart" #~ msgstr "ManufacturerPart" -#: src/pages/company/SupplierPartDetail.tsx:104 +#: src/pages/company/SupplierPartDetail.tsx:105 #: src/tables/part/RelatedPartTable.tsx:82 msgid "Part Description" msgstr "" -#: src/pages/company/SupplierPartDetail.tsx:179 +#: src/pages/company/SupplierPartDetail.tsx:180 #: src/tables/part/PartPurchaseOrdersTable.tsx:73 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:191 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:233 @@ -7321,50 +7405,50 @@ msgstr "" msgid "Pack Quantity" msgstr "" -#: src/pages/company/SupplierPartDetail.tsx:204 +#: src/pages/company/SupplierPartDetail.tsx:205 msgid "Supplier Availability" msgstr "" -#: src/pages/company/SupplierPartDetail.tsx:212 +#: src/pages/company/SupplierPartDetail.tsx:213 msgid "Availability Updated" msgstr "" -#: src/pages/company/SupplierPartDetail.tsx:237 +#: src/pages/company/SupplierPartDetail.tsx:238 msgid "Availability" msgstr "" -#: src/pages/company/SupplierPartDetail.tsx:246 +#: src/pages/company/SupplierPartDetail.tsx:247 msgid "Supplier Part Details" msgstr "" -#: src/pages/company/SupplierPartDetail.tsx:279 +#: src/pages/company/SupplierPartDetail.tsx:280 #: src/pages/part/PartPricingPanel.tsx:113 #: src/pages/part/pricing/PricingOverviewPanel.tsx:239 msgid "Supplier Pricing" msgstr "" -#: src/pages/company/SupplierPartDetail.tsx:308 +#: src/pages/company/SupplierPartDetail.tsx:313 msgid "Supplier Part Actions" msgstr "" -#: src/pages/company/SupplierPartDetail.tsx:332 +#: src/pages/company/SupplierPartDetail.tsx:337 #: src/tables/purchasing/SupplierPartTable.tsx:244 msgid "Edit Supplier Part" msgstr "" -#: src/pages/company/SupplierPartDetail.tsx:340 +#: src/pages/company/SupplierPartDetail.tsx:345 #: src/tables/purchasing/SupplierPartTable.tsx:264 msgid "Delete Supplier Part" msgstr "" -#: src/pages/company/SupplierPartDetail.tsx:348 +#: src/pages/company/SupplierPartDetail.tsx:353 #: src/tables/purchasing/SupplierPartTable.tsx:172 #: src/tables/purchasing/SupplierPartTable.tsx:251 msgid "Add Supplier Part" msgstr "" -#: src/pages/company/SupplierPartDetail.tsx:388 -#: src/pages/part/PartDetail.tsx:1003 +#: src/pages/company/SupplierPartDetail.tsx:393 +#: src/pages/part/PartDetail.tsx:1018 msgid "No Stock" msgstr "" @@ -7411,83 +7495,83 @@ msgstr "" msgid "Basic user" msgstr "" -#: src/pages/part/CategoryDetail.tsx:100 +#: src/pages/part/CategoryDetail.tsx:103 #: src/pages/stock/LocationDetail.tsx:94 #: src/tables/settings/ErrorTable.tsx:63 #: src/tables/settings/ErrorTable.tsx:108 msgid "Path" msgstr "" -#: src/pages/part/CategoryDetail.tsx:116 +#: src/pages/part/CategoryDetail.tsx:119 msgid "Parent Category" msgstr "" -#: src/pages/part/CategoryDetail.tsx:139 -#: src/pages/part/CategoryDetail.tsx:271 +#: src/pages/part/CategoryDetail.tsx:142 +#: src/pages/part/CategoryDetail.tsx:279 msgid "Subcategories" msgstr "" -#: src/pages/part/CategoryDetail.tsx:146 +#: src/pages/part/CategoryDetail.tsx:149 #: src/pages/stock/LocationDetail.tsx:134 #: src/tables/part/PartCategoryTable.tsx:89 #: src/tables/stock/StockLocationTable.tsx:43 msgid "Structural" msgstr "" -#: src/pages/part/CategoryDetail.tsx:152 +#: src/pages/part/CategoryDetail.tsx:155 msgid "Parent default location" msgstr "" -#: src/pages/part/CategoryDetail.tsx:159 +#: src/pages/part/CategoryDetail.tsx:162 msgid "Default location" msgstr "" -#: src/pages/part/CategoryDetail.tsx:170 +#: src/pages/part/CategoryDetail.tsx:173 msgid "Top level part category" msgstr "" -#: src/pages/part/CategoryDetail.tsx:180 -#: src/pages/part/CategoryDetail.tsx:248 +#: src/pages/part/CategoryDetail.tsx:183 +#: src/pages/part/CategoryDetail.tsx:251 #: src/tables/part/PartCategoryTable.tsx:122 msgid "Edit Part Category" msgstr "" -#: src/pages/part/CategoryDetail.tsx:189 +#: src/pages/part/CategoryDetail.tsx:192 msgid "Move items to parent category" msgstr "" -#: src/pages/part/CategoryDetail.tsx:193 +#: src/pages/part/CategoryDetail.tsx:196 #: src/pages/stock/LocationDetail.tsx:226 msgid "Delete items" msgstr "" -#: src/pages/part/CategoryDetail.tsx:201 -#: src/pages/part/CategoryDetail.tsx:253 +#: src/pages/part/CategoryDetail.tsx:204 +#: src/pages/part/CategoryDetail.tsx:256 msgid "Delete Part Category" msgstr "" -#: src/pages/part/CategoryDetail.tsx:204 +#: src/pages/part/CategoryDetail.tsx:207 msgid "Parts Action" msgstr "" -#: src/pages/part/CategoryDetail.tsx:205 +#: src/pages/part/CategoryDetail.tsx:208 msgid "Action for parts in this category" msgstr "" -#: src/pages/part/CategoryDetail.tsx:211 +#: src/pages/part/CategoryDetail.tsx:214 msgid "Child Categories Action" msgstr "" -#: src/pages/part/CategoryDetail.tsx:212 +#: src/pages/part/CategoryDetail.tsx:215 msgid "Action for child categories in this category" msgstr "" -#: src/pages/part/CategoryDetail.tsx:244 +#: src/pages/part/CategoryDetail.tsx:247 #: src/tables/part/PartCategoryTable.tsx:143 msgid "Category Actions" msgstr "" -#: src/pages/part/CategoryDetail.tsx:265 +#: src/pages/part/CategoryDetail.tsx:273 msgid "Category Details" msgstr "" @@ -7585,7 +7669,6 @@ msgid "Category Default Location" msgstr "" #: src/pages/part/PartDetail.tsx:507 -#: src/tables/purchasing/ManufacturerPartParameterTable.tsx:48 msgid "Units" msgstr "" @@ -7600,7 +7683,7 @@ msgstr "" #: src/pages/part/PartDetail.tsx:542 #: src/tables/bom/BomTable.tsx:439 -#: src/tables/build/BuildLineTable.tsx:305 +#: src/tables/build/BuildLineTable.tsx:306 #: src/tables/part/PartTable.tsx:319 #: src/tables/sales/SalesOrderLineItemTable.tsx:138 msgid "Available Stock" @@ -7608,7 +7691,7 @@ msgstr "" #: src/pages/part/PartDetail.tsx:548 #: src/tables/bom/BomTable.tsx:341 -#: src/tables/build/BuildLineTable.tsx:267 +#: src/tables/build/BuildLineTable.tsx:268 #: src/tables/sales/SalesOrderLineItemTable.tsx:180 msgid "On order" msgstr "" @@ -7634,7 +7717,7 @@ msgstr "" #~ msgstr "Scheduling" #: src/pages/part/PartDetail.tsx:620 -#: src/tables/part/ParametricPartTable.tsx:359 +#: src/tables/part/ParametricPartTable.tsx:24 #: src/tables/part/PartTable.tsx:203 msgid "Locked" msgstr "" @@ -7671,16 +7754,16 @@ msgid "Saleable Part" msgstr "" #: src/pages/part/PartDetail.tsx:663 -#: src/pages/part/PartDetail.tsx:1033 +#: src/pages/part/PartDetail.tsx:1054 #: src/tables/bom/BomTable.tsx:150 #: src/tables/bom/BomTable.tsx:434 msgid "Virtual Part" msgstr "" #: src/pages/part/PartDetail.tsx:678 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:271 -#: src/pages/sales/ReturnOrderDetail.tsx:249 -#: src/pages/sales/SalesOrderDetail.tsx:242 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:272 +#: src/pages/sales/ReturnOrderDetail.tsx:250 +#: src/pages/sales/SalesOrderDetail.tsx:243 #: src/tables/ColumnRenderers.tsx:502 msgid "Creation Date" msgstr "" @@ -7718,35 +7801,46 @@ msgstr "" msgid "Select Part Revision" msgstr "" -#: src/pages/part/PartDetail.tsx:823 +#: src/pages/part/PartDetail.tsx:812 msgid "Variants" msgstr "" -#: src/pages/part/PartDetail.tsx:830 +#: src/pages/part/PartDetail.tsx:819 #: src/pages/stock/StockDetail.tsx:542 msgid "Allocations" msgstr "" -#: src/pages/part/PartDetail.tsx:837 +#: src/pages/part/PartDetail.tsx:826 msgid "Bill of Materials" msgstr "" -#: src/pages/part/PartDetail.tsx:849 +#: src/pages/part/PartDetail.tsx:838 msgid "Used In" msgstr "" -#: src/pages/part/PartDetail.tsx:856 +#: src/pages/part/PartDetail.tsx:845 msgid "Part Pricing" msgstr "" -#: src/pages/part/PartDetail.tsx:926 +#: src/pages/part/PartDetail.tsx:915 msgid "Test Templates" msgstr "" -#: src/pages/part/PartDetail.tsx:948 +#: src/pages/part/PartDetail.tsx:937 msgid "Related Parts" msgstr "" +#: src/pages/part/PartDetail.tsx:949 +#: src/tables/ColumnRenderers.tsx:73 +#: src/tables/bom/BomTable.tsx:657 +#: src/tables/part/PartTestTemplateTable.tsx:258 +msgid "Part is Locked" +msgstr "" + +#: src/pages/part/PartDetail.tsx:954 +msgid "Part parameters cannot be edited, as the part is locked" +msgstr "" + #: src/pages/part/PartDetail.tsx:956 #~ msgid "Count part stock" #~ msgstr "Count part stock" @@ -7755,42 +7849,46 @@ msgstr "" #~ msgid "Transfer part stock" #~ msgstr "Transfer part stock" -#: src/pages/part/PartDetail.tsx:1009 +#: src/pages/part/PartDetail.tsx:1024 #: src/tables/part/PartTestTemplateTable.tsx:112 #: src/tables/stock/StockItemTestResultTable.tsx:404 msgid "Required" msgstr "" -#: src/pages/part/PartDetail.tsx:1058 +#: src/pages/part/PartDetail.tsx:1042 +msgid "Deficit" +msgstr "" + +#: src/pages/part/PartDetail.tsx:1079 #: src/tables/part/PartTable.tsx:396 #: src/tables/part/PartTable.tsx:449 msgid "Add Part" msgstr "" -#: src/pages/part/PartDetail.tsx:1072 +#: src/pages/part/PartDetail.tsx:1093 msgid "Delete Part" msgstr "" -#: src/pages/part/PartDetail.tsx:1081 +#: src/pages/part/PartDetail.tsx:1102 msgid "Deleting this part cannot be reversed" msgstr "" -#: src/pages/part/PartDetail.tsx:1143 +#: src/pages/part/PartDetail.tsx:1164 #: src/pages/stock/StockDetail.tsx:883 msgid "Order" msgstr "" -#: src/pages/part/PartDetail.tsx:1144 +#: src/pages/part/PartDetail.tsx:1165 #: src/pages/stock/StockDetail.tsx:884 -#: src/tables/build/BuildLineTable.tsx:761 +#: src/tables/build/BuildLineTable.tsx:768 msgid "Order Stock" msgstr "" -#: src/pages/part/PartDetail.tsx:1156 +#: src/pages/part/PartDetail.tsx:1177 msgid "Search by serial number" msgstr "" -#: src/pages/part/PartDetail.tsx:1164 +#: src/pages/part/PartDetail.tsx:1185 #: src/tables/part/PartTable.tsx:506 msgid "Part Actions" msgstr "" @@ -8039,7 +8137,7 @@ msgstr "" #: src/pages/part/pricing/PricingOverviewPanel.tsx:288 #: src/pages/stock/StockDetail.tsx:426 -#: src/tables/part/PartParameterTable.tsx:121 +#: src/tables/general/ParameterTable.tsx:101 #: src/tables/stock/StockItemTable.tsx:300 msgid "Last Updated" msgstr "" @@ -8107,17 +8205,17 @@ msgstr "" msgid "Variant Part" msgstr "" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:89 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:90 msgid "Edit Purchase Order" msgstr "" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:125 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:126 #: src/tables/purchasing/PurchaseOrderTable.tsx:154 #: src/tables/purchasing/PurchaseOrderTable.tsx:167 msgid "Add Purchase Order" msgstr "" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:147 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:148 msgid "Supplier Reference" msgstr "" @@ -8127,20 +8225,20 @@ msgstr "" #~ msgid "Order Currency," #~ msgstr "Order Currency," -#: src/pages/purchasing/PurchaseOrderDetail.tsx:187 -#: src/pages/sales/ReturnOrderDetail.tsx:160 -#: src/pages/sales/SalesOrderDetail.tsx:144 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:188 +#: src/pages/sales/ReturnOrderDetail.tsx:161 +#: src/pages/sales/SalesOrderDetail.tsx:145 msgid "Completed Line Items" msgstr "" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:196 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:197 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:272 msgid "Destination" msgstr "" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:202 -#: src/pages/sales/ReturnOrderDetail.tsx:167 -#: src/pages/sales/SalesOrderDetail.tsx:161 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:203 +#: src/pages/sales/ReturnOrderDetail.tsx:168 +#: src/pages/sales/SalesOrderDetail.tsx:162 msgid "Order Currency" msgstr "" @@ -8150,97 +8248,97 @@ msgstr "" #~ msgid "Created On" #~ msgstr "Created On" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:208 -#: src/pages/sales/ReturnOrderDetail.tsx:174 -#: src/pages/sales/SalesOrderDetail.tsx:167 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:209 +#: src/pages/sales/ReturnOrderDetail.tsx:175 +#: src/pages/sales/SalesOrderDetail.tsx:168 msgid "Total Cost" msgstr "" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:237 -#: src/pages/sales/ReturnOrderDetail.tsx:215 -#: src/pages/sales/SalesOrderDetail.tsx:208 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:238 +#: src/pages/sales/ReturnOrderDetail.tsx:216 +#: src/pages/sales/SalesOrderDetail.tsx:209 msgid "Contact Email" msgstr "" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:245 -#: src/pages/sales/ReturnOrderDetail.tsx:223 -#: src/pages/sales/SalesOrderDetail.tsx:216 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:246 +#: src/pages/sales/ReturnOrderDetail.tsx:224 +#: src/pages/sales/SalesOrderDetail.tsx:217 msgid "Contact Phone" msgstr "" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:278 -#: src/pages/sales/ReturnOrderDetail.tsx:257 -#: src/pages/sales/SalesOrderDetail.tsx:249 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:279 +#: src/pages/sales/ReturnOrderDetail.tsx:258 +#: src/pages/sales/SalesOrderDetail.tsx:250 msgid "Issue Date" msgstr "" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:303 -#: src/pages/sales/ReturnOrderDetail.tsx:281 -#: src/pages/sales/SalesOrderDetail.tsx:272 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:304 +#: src/pages/sales/ReturnOrderDetail.tsx:282 +#: src/pages/sales/SalesOrderDetail.tsx:273 #: src/tables/ColumnRenderers.tsx:510 #: src/tables/build/BuildOrderTable.tsx:137 #: src/tables/part/PartPurchaseOrdersTable.tsx:106 msgid "Completion Date" msgstr "" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:333 -#: src/pages/sales/ReturnOrderDetail.tsx:311 -#: src/pages/sales/SalesOrderDetail.tsx:349 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:334 +#: src/pages/sales/ReturnOrderDetail.tsx:312 +#: src/pages/sales/SalesOrderDetail.tsx:350 msgid "Order Details" msgstr "" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:339 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:348 -#: src/pages/sales/ReturnOrderDetail.tsx:153 -#: src/pages/sales/ReturnOrderDetail.tsx:317 -#: src/pages/sales/ReturnOrderDetail.tsx:326 -#: src/pages/sales/SalesOrderDetail.tsx:355 -#: src/pages/sales/SalesOrderDetail.tsx:364 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:340 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:349 +#: src/pages/sales/ReturnOrderDetail.tsx:154 +#: src/pages/sales/ReturnOrderDetail.tsx:318 +#: src/pages/sales/ReturnOrderDetail.tsx:327 +#: src/pages/sales/SalesOrderDetail.tsx:356 +#: src/pages/sales/SalesOrderDetail.tsx:365 msgid "Line Items" msgstr "" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:363 -#: src/pages/sales/ReturnOrderDetail.tsx:341 -#: src/pages/sales/SalesOrderDetail.tsx:378 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:364 +#: src/pages/sales/ReturnOrderDetail.tsx:342 +#: src/pages/sales/SalesOrderDetail.tsx:379 msgid "Extra Line Items" msgstr "" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:405 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:410 msgid "Issue Purchase Order" msgstr "" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:413 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:418 msgid "Cancel Purchase Order" msgstr "" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:421 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:426 msgid "Hold Purchase Order" msgstr "" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:429 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:434 msgid "Complete Purchase Order" msgstr "" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:485 -#: src/pages/sales/ReturnOrderDetail.tsx:496 -#: src/pages/sales/SalesOrderDetail.tsx:549 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:490 +#: src/pages/sales/ReturnOrderDetail.tsx:501 +#: src/pages/sales/SalesOrderDetail.tsx:554 msgid "Order Actions" msgstr "" -#: src/pages/sales/ReturnOrderDetail.tsx:114 -#: src/pages/sales/SalesOrderDetail.tsx:104 -#: src/pages/sales/SalesOrderShipmentDetail.tsx:134 +#: src/pages/sales/ReturnOrderDetail.tsx:115 +#: src/pages/sales/SalesOrderDetail.tsx:105 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:132 #: src/tables/sales/SalesOrderTable.tsx:141 msgid "Customer Reference" msgstr "" -#: src/pages/sales/ReturnOrderDetail.tsx:195 +#: src/pages/sales/ReturnOrderDetail.tsx:196 msgid "Return Address" msgstr "" -#: src/pages/sales/ReturnOrderDetail.tsx:201 -#: src/pages/sales/SalesOrderDetail.tsx:194 -#: src/pages/sales/SalesOrderShipmentDetail.tsx:181 +#: src/pages/sales/ReturnOrderDetail.tsx:202 +#: src/pages/sales/SalesOrderDetail.tsx:195 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:179 msgid "Not specified" msgstr "" @@ -8248,117 +8346,117 @@ msgstr "" #~ msgid "Order canceled" #~ msgstr "Order canceled" -#: src/pages/sales/ReturnOrderDetail.tsx:389 +#: src/pages/sales/ReturnOrderDetail.tsx:394 msgid "Edit Return Order" msgstr "" -#: src/pages/sales/ReturnOrderDetail.tsx:407 +#: src/pages/sales/ReturnOrderDetail.tsx:412 #: src/tables/sales/ReturnOrderTable.tsx:154 #: src/tables/sales/ReturnOrderTable.tsx:167 msgid "Add Return Order" msgstr "" -#: src/pages/sales/ReturnOrderDetail.tsx:416 +#: src/pages/sales/ReturnOrderDetail.tsx:421 msgid "Issue Return Order" msgstr "" -#: src/pages/sales/ReturnOrderDetail.tsx:424 +#: src/pages/sales/ReturnOrderDetail.tsx:429 msgid "Cancel Return Order" msgstr "" -#: src/pages/sales/ReturnOrderDetail.tsx:432 +#: src/pages/sales/ReturnOrderDetail.tsx:437 msgid "Hold Return Order" msgstr "" -#: src/pages/sales/ReturnOrderDetail.tsx:440 +#: src/pages/sales/ReturnOrderDetail.tsx:445 msgid "Complete Return Order" msgstr "" -#: src/pages/sales/SalesOrderDetail.tsx:153 +#: src/pages/sales/SalesOrderDetail.tsx:154 msgid "Completed Shipments" msgstr "" -#: src/pages/sales/SalesOrderDetail.tsx:188 -#: src/pages/sales/SalesOrderShipmentDetail.tsx:170 +#: src/pages/sales/SalesOrderDetail.tsx:189 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:168 msgid "Shipping Address" msgstr "" -#: src/pages/sales/SalesOrderDetail.tsx:316 +#: src/pages/sales/SalesOrderDetail.tsx:317 msgid "Edit Sales Order" msgstr "" -#: src/pages/sales/SalesOrderDetail.tsx:338 +#: src/pages/sales/SalesOrderDetail.tsx:339 #: src/tables/sales/SalesOrderTable.tsx:108 #: src/tables/sales/SalesOrderTable.tsx:121 msgid "Add Sales Order" msgstr "" -#: src/pages/sales/SalesOrderDetail.tsx:396 +#: src/pages/sales/SalesOrderDetail.tsx:397 #: src/tables/sales/SalesOrderTable.tsx:147 msgid "Shipments" msgstr "" -#: src/pages/sales/SalesOrderDetail.tsx:443 +#: src/pages/sales/SalesOrderDetail.tsx:448 msgid "Issue Sales Order" msgstr "" -#: src/pages/sales/SalesOrderDetail.tsx:451 +#: src/pages/sales/SalesOrderDetail.tsx:456 msgid "Cancel Sales Order" msgstr "" -#: src/pages/sales/SalesOrderDetail.tsx:459 +#: src/pages/sales/SalesOrderDetail.tsx:464 msgid "Hold Sales Order" msgstr "" -#: src/pages/sales/SalesOrderDetail.tsx:467 +#: src/pages/sales/SalesOrderDetail.tsx:472 msgid "Ship Sales Order" msgstr "" -#: src/pages/sales/SalesOrderDetail.tsx:469 +#: src/pages/sales/SalesOrderDetail.tsx:474 msgid "Ship this order?" msgstr "" -#: src/pages/sales/SalesOrderDetail.tsx:470 +#: src/pages/sales/SalesOrderDetail.tsx:475 msgid "Order shipped" msgstr "" -#: src/pages/sales/SalesOrderDetail.tsx:478 +#: src/pages/sales/SalesOrderDetail.tsx:483 msgid "Complete Sales Order" msgstr "" -#: src/pages/sales/SalesOrderDetail.tsx:523 +#: src/pages/sales/SalesOrderDetail.tsx:528 msgid "Ship Order" msgstr "" -#: src/pages/sales/SalesOrderShipmentDetail.tsx:142 -#: src/tables/sales/SalesOrderShipmentTable.tsx:135 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:140 +#: src/tables/sales/SalesOrderShipmentTable.tsx:156 msgid "Shipment Reference" msgstr "" -#: src/pages/sales/SalesOrderShipmentDetail.tsx:148 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:146 msgid "Tracking Number" msgstr "" -#: src/pages/sales/SalesOrderShipmentDetail.tsx:156 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:154 msgid "Invoice Number" msgstr "" -#: src/pages/sales/SalesOrderShipmentDetail.tsx:191 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:189 msgid "Allocated Items" msgstr "" -#: src/pages/sales/SalesOrderShipmentDetail.tsx:196 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:194 msgid "Checked By" msgstr "" -#: src/pages/sales/SalesOrderShipmentDetail.tsx:202 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:200 msgid "Not checked" msgstr "" -#: src/pages/sales/SalesOrderShipmentDetail.tsx:208 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:206 #: src/tables/ColumnRenderers.tsx:518 #: src/tables/sales/SalesOrderAllocationTable.tsx:182 -#: src/tables/sales/SalesOrderShipmentTable.tsx:168 +#: src/tables/sales/SalesOrderShipmentTable.tsx:189 msgid "Shipment Date" msgstr "" @@ -8366,108 +8464,82 @@ msgstr "" #~ msgid "Assigned Items" #~ msgstr "Assigned Items" -#: src/pages/sales/SalesOrderShipmentDetail.tsx:216 -#: src/tables/sales/SalesOrderShipmentTable.tsx:172 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:214 +#: src/tables/sales/SalesOrderShipmentTable.tsx:193 msgid "Delivery Date" msgstr "" -#: src/pages/sales/SalesOrderShipmentDetail.tsx:255 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:253 msgid "Shipment Details" msgstr "" -#: src/pages/sales/SalesOrderShipmentDetail.tsx:294 -#: src/pages/sales/SalesOrderShipmentDetail.tsx:438 -#: src/tables/sales/SalesOrderShipmentTable.tsx:90 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:292 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:406 +#: src/tables/sales/SalesOrderShipmentTable.tsx:97 msgid "Edit Shipment" msgstr "" -#: src/pages/sales/SalesOrderShipmentDetail.tsx:301 -#: src/pages/sales/SalesOrderShipmentDetail.tsx:457 -#: src/tables/sales/SalesOrderShipmentTable.tsx:82 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:299 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:425 +#: src/tables/sales/SalesOrderShipmentTable.tsx:89 msgid "Cancel Shipment" msgstr "" -#: src/pages/sales/SalesOrderShipmentDetail.tsx:314 -#: src/tables/sales/SalesOrderShipmentTable.tsx:98 -#: src/tables/sales/SalesOrderShipmentTable.tsx:193 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:312 +#: src/tables/sales/SalesOrderShipmentTable.tsx:119 +#: src/tables/sales/SalesOrderShipmentTable.tsx:238 msgid "Complete Shipment" msgstr "" -#: src/pages/sales/SalesOrderShipmentDetail.tsx:326 -#: src/pages/sales/SalesOrderShipmentDetail.tsx:328 -msgid "Check Shipment" -msgstr "" - -#: src/pages/sales/SalesOrderShipmentDetail.tsx:329 -msgid "Marking the shipment as checked indicates that you have verified that all items included in this shipment are correct" -msgstr "" - #: src/pages/sales/SalesOrderShipmentDetail.tsx:339 -msgid "Shipment marked as checked" -msgstr "" - -#: src/pages/sales/SalesOrderShipmentDetail.tsx:346 -#: src/pages/sales/SalesOrderShipmentDetail.tsx:348 -msgid "Uncheck Shipment" -msgstr "" - -#: src/pages/sales/SalesOrderShipmentDetail.tsx:349 -msgid "Marking the shipment as unchecked indicates that the shipment requires further verification" -msgstr "" - -#: src/pages/sales/SalesOrderShipmentDetail.tsx:359 -msgid "Shipment marked as unchecked" -msgstr "" - -#: src/pages/sales/SalesOrderShipmentDetail.tsx:371 #: src/tables/part/PartPurchaseOrdersTable.tsx:122 msgid "Pending" msgstr "" -#: src/pages/sales/SalesOrderShipmentDetail.tsx:377 -#: src/tables/sales/SalesOrderShipmentTable.tsx:147 -#: src/tables/sales/SalesOrderShipmentTable.tsx:254 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:345 +#: src/tables/sales/SalesOrderShipmentTable.tsx:168 +#: src/tables/sales/SalesOrderShipmentTable.tsx:299 msgid "Checked" msgstr "" -#: src/pages/sales/SalesOrderShipmentDetail.tsx:383 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:351 msgid "Not Checked" msgstr "" -#: src/pages/sales/SalesOrderShipmentDetail.tsx:389 -#: src/tables/sales/SalesOrderShipmentTable.tsx:154 -#: src/tables/sales/SalesOrderShipmentTable.tsx:259 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:357 +#: src/tables/sales/SalesOrderShipmentTable.tsx:175 +#: src/tables/sales/SalesOrderShipmentTable.tsx:304 msgid "Shipped" msgstr "" -#: src/pages/sales/SalesOrderShipmentDetail.tsx:395 -#: src/tables/sales/SalesOrderShipmentTable.tsx:161 -#: src/tables/sales/SalesOrderShipmentTable.tsx:264 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:363 +#: src/tables/sales/SalesOrderShipmentTable.tsx:182 +#: src/tables/sales/SalesOrderShipmentTable.tsx:309 #: src/tables/settings/EmailTable.tsx:31 msgid "Delivered" msgstr "" -#: src/pages/sales/SalesOrderShipmentDetail.tsx:410 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:378 msgid "Send Shipment" msgstr "" -#: src/pages/sales/SalesOrderShipmentDetail.tsx:433 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:401 msgid "Shipment Actions" msgstr "" -#: src/pages/sales/SalesOrderShipmentDetail.tsx:442 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:410 msgid "Check" msgstr "" -#: src/pages/sales/SalesOrderShipmentDetail.tsx:443 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:411 msgid "Mark shipment as checked" msgstr "" -#: src/pages/sales/SalesOrderShipmentDetail.tsx:449 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:417 msgid "Uncheck" msgstr "" -#: src/pages/sales/SalesOrderShipmentDetail.tsx:450 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:418 msgid "Mark shipment as unchecked" msgstr "" @@ -8775,13 +8847,6 @@ msgstr "" msgid "Part is not active" msgstr "" -#: src/tables/ColumnRenderers.tsx:73 -#: src/tables/bom/BomTable.tsx:657 -#: src/tables/part/PartParameterTable.tsx:227 -#: src/tables/part/PartTestTemplateTable.tsx:258 -msgid "Part is Locked" -msgstr "" - #: src/tables/ColumnRenderers.tsx:78 msgid "You are subscribed to notifications for this part" msgstr "" @@ -9219,13 +9284,13 @@ msgstr "" #~ msgstr "Show asssmbled items" #: src/tables/bom/BomTable.tsx:315 -#: src/tables/build/BuildLineTable.tsx:276 +#: src/tables/build/BuildLineTable.tsx:277 #: src/tables/part/PartTable.tsx:145 msgid "External stock" msgstr "" #: src/tables/bom/BomTable.tsx:323 -#: src/tables/build/BuildLineTable.tsx:239 +#: src/tables/build/BuildLineTable.tsx:240 msgid "Includes substitute stock" msgstr "" @@ -9234,7 +9299,7 @@ msgstr "" #~ msgstr "Edit Bom Item" #: src/tables/bom/BomTable.tsx:332 -#: src/tables/build/BuildLineTable.tsx:249 +#: src/tables/build/BuildLineTable.tsx:250 #: src/tables/sales/SalesOrderLineItemTable.tsx:166 msgid "Includes variant stock" msgstr "" @@ -9272,8 +9337,8 @@ msgid "Stock Information" msgstr "" #: src/tables/bom/BomTable.tsx:399 -#: src/tables/build/BuildLineTable.tsx:496 -#: src/tables/build/BuildLineTable.tsx:537 +#: src/tables/build/BuildLineTable.tsx:497 +#: src/tables/build/BuildLineTable.tsx:538 msgid "Consumable item" msgstr "" @@ -9282,7 +9347,7 @@ msgid "No available stock" msgstr "" #: src/tables/bom/BomTable.tsx:420 -#: src/tables/build/BuildLineTable.tsx:213 +#: src/tables/build/BuildLineTable.tsx:214 msgid "Show testable items" msgstr "" @@ -9291,7 +9356,7 @@ msgid "Show trackable items" msgstr "" #: src/tables/bom/BomTable.tsx:430 -#: src/tables/build/BuildLineTable.tsx:208 +#: src/tables/build/BuildLineTable.tsx:209 msgid "Show assembled items" msgstr "" @@ -9335,7 +9400,7 @@ msgstr "" #: src/tables/bom/BomTable.tsx:464 #: src/tables/bom/UsedInTable.tsx:85 -#: src/tables/build/BuildLineTable.tsx:202 +#: src/tables/build/BuildLineTable.tsx:203 msgid "Optional" msgstr "" @@ -9345,7 +9410,7 @@ msgid "Show optional items" msgstr "" #: src/tables/bom/BomTable.tsx:469 -#: src/tables/build/BuildLineTable.tsx:197 +#: src/tables/build/BuildLineTable.tsx:198 msgid "Consumable" msgstr "" @@ -9420,6 +9485,7 @@ msgid "Add a single BOM item" msgstr "" #: src/tables/bom/BomTable.tsx:637 +#: src/tables/general/ParameterTable.tsx:206 #: src/tables/part/PartTable.tsx:546 msgid "Import from File" msgstr "" @@ -9433,8 +9499,8 @@ msgid "Bill of materials cannot be edited, as the part is locked" msgstr "" #: src/tables/bom/UsedInTable.tsx:34 -#: src/tables/build/BuildLineTable.tsx:207 -#: src/tables/part/ParametricPartTable.tsx:364 +#: src/tables/build/BuildLineTable.tsx:208 +#: src/tables/part/ParametricPartTable.tsx:29 #: src/tables/part/PartBuildAllocationsTable.tsx:60 #: src/tables/part/PartTable.tsx:209 #: src/tables/stock/StockItemTable.tsx:333 @@ -9455,11 +9521,11 @@ msgstr "" msgid "Show trackable assemblies" msgstr "" -#: src/tables/build/BuildAllocatedStockTable.tsx:67 +#: src/tables/build/BuildAllocatedStockTable.tsx:64 msgid "Allocated to Output" msgstr "" -#: src/tables/build/BuildAllocatedStockTable.tsx:68 +#: src/tables/build/BuildAllocatedStockTable.tsx:65 msgid "Show items allocated to a build output" msgstr "" @@ -9472,50 +9538,68 @@ msgstr "" #~ msgid "Include orders for part variants" #~ msgstr "Include orders for part variants" -#: src/tables/build/BuildAllocatedStockTable.tsx:97 +#: src/tables/build/BuildAllocatedStockTable.tsx:94 #: src/tables/part/PartBuildAllocationsTable.tsx:84 #: src/tables/part/PartPurchaseOrdersTable.tsx:132 #: src/tables/part/PartSalesAllocationsTable.tsx:69 #: src/tables/sales/SalesOrderAllocationTable.tsx:122 -#: src/tables/sales/SalesOrderShipmentTable.tsx:130 +#: src/tables/sales/SalesOrderShipmentTable.tsx:151 msgid "Order Status" msgstr "" +#: src/tables/build/BuildAllocatedStockTable.tsx:164 +#: src/tables/build/BuildLineTable.tsx:651 +msgid "Edit Stock Allocation" +msgstr "" + #: src/tables/build/BuildAllocatedStockTable.tsx:164 #~ msgid "Edit Build Item" #~ msgstr "Edit Build Item" -#: src/tables/build/BuildAllocatedStockTable.tsx:167 -#: src/tables/build/BuildLineTable.tsx:650 -msgid "Edit Stock Allocation" -msgstr "" - #: src/tables/build/BuildAllocatedStockTable.tsx:174 #~ msgid "Delete Build Item" #~ msgstr "Delete Build Item" -#: src/tables/build/BuildAllocatedStockTable.tsx:180 -#: src/tables/build/BuildLineTable.tsx:663 -msgid "Delete Stock Allocation" +#: src/tables/build/BuildAllocatedStockTable.tsx:177 +#: src/tables/build/BuildLineTable.tsx:664 +#: src/tables/sales/SalesOrderAllocationTable.tsx:218 +msgid "Remove Allocated Stock" msgstr "" -#: src/tables/build/BuildAllocatedStockTable.tsx:239 +#: src/tables/build/BuildAllocatedStockTable.tsx:180 +#: src/tables/build/BuildLineTable.tsx:663 +#~ msgid "Delete Stock Allocation" +#~ msgstr "Delete Stock Allocation" + +#: src/tables/build/BuildAllocatedStockTable.tsx:182 +#: src/tables/build/BuildLineTable.tsx:669 +#: src/tables/sales/SalesOrderAllocationTable.tsx:221 +msgid "Are you sure you want to remove this allocated stock from the order?" +msgstr "" + +#: src/tables/build/BuildAllocatedStockTable.tsx:242 msgid "Consume" msgstr "" +#: src/tables/build/BuildAllocatedStockTable.tsx:259 +#: src/tables/build/BuildLineTable.tsx:112 +#: src/tables/sales/SalesOrderAllocationTable.tsx:248 +msgid "Remove allocated stock" +msgstr "" + #: src/tables/build/BuildLineTable.tsx:59 #~ msgid "Show lines with available stock" #~ msgstr "Show lines with available stock" -#: src/tables/build/BuildLineTable.tsx:120 +#: src/tables/build/BuildLineTable.tsx:121 msgid "View Stock Item" msgstr "" -#: src/tables/build/BuildLineTable.tsx:183 +#: src/tables/build/BuildLineTable.tsx:184 msgid "Show fully allocated lines" msgstr "" -#: src/tables/build/BuildLineTable.tsx:188 +#: src/tables/build/BuildLineTable.tsx:189 msgid "Show fully consumed lines" msgstr "" @@ -9523,124 +9607,124 @@ msgstr "" #~ msgid "Show allocated lines" #~ msgstr "Show allocated lines" -#: src/tables/build/BuildLineTable.tsx:193 +#: src/tables/build/BuildLineTable.tsx:194 msgid "Show items with sufficient available stock" msgstr "" -#: src/tables/build/BuildLineTable.tsx:198 +#: src/tables/build/BuildLineTable.tsx:199 msgid "Show consumable lines" msgstr "" -#: src/tables/build/BuildLineTable.tsx:203 +#: src/tables/build/BuildLineTable.tsx:204 msgid "Show optional lines" msgstr "" -#: src/tables/build/BuildLineTable.tsx:212 +#: src/tables/build/BuildLineTable.tsx:213 #: src/tables/part/PartTable.tsx:233 msgid "Testable" msgstr "" -#: src/tables/build/BuildLineTable.tsx:217 +#: src/tables/build/BuildLineTable.tsx:218 #: src/tables/stock/StockItemTable.tsx:388 msgid "Tracked" msgstr "" -#: src/tables/build/BuildLineTable.tsx:218 +#: src/tables/build/BuildLineTable.tsx:219 msgid "Show tracked lines" msgstr "" -#: src/tables/build/BuildLineTable.tsx:223 +#: src/tables/build/BuildLineTable.tsx:224 msgid "Show items with stock on order" msgstr "" -#: src/tables/build/BuildLineTable.tsx:258 +#: src/tables/build/BuildLineTable.tsx:259 #: src/tables/sales/SalesOrderLineItemTable.tsx:172 msgid "In production" msgstr "" -#: src/tables/build/BuildLineTable.tsx:286 +#: src/tables/build/BuildLineTable.tsx:287 msgid "Insufficient stock" msgstr "" -#: src/tables/build/BuildLineTable.tsx:302 +#: src/tables/build/BuildLineTable.tsx:303 #: src/tables/sales/SalesOrderLineItemTable.tsx:160 #: src/tables/stock/StockItemTable.tsx:191 msgid "No stock available" msgstr "" -#: src/tables/build/BuildLineTable.tsx:375 +#: src/tables/build/BuildLineTable.tsx:376 msgid "Gets Inherited" msgstr "" -#: src/tables/build/BuildLineTable.tsx:388 +#: src/tables/build/BuildLineTable.tsx:389 msgid "Unit Quantity" msgstr "" -#: src/tables/build/BuildLineTable.tsx:415 +#: src/tables/build/BuildLineTable.tsx:416 msgid "Setup Quantity" msgstr "" -#: src/tables/build/BuildLineTable.tsx:424 +#: src/tables/build/BuildLineTable.tsx:425 msgid "Attrition" msgstr "" -#: src/tables/build/BuildLineTable.tsx:432 +#: src/tables/build/BuildLineTable.tsx:433 msgid "Rounding Multiple" msgstr "" -#: src/tables/build/BuildLineTable.tsx:441 +#: src/tables/build/BuildLineTable.tsx:442 msgid "BOM Information" msgstr "" -#: src/tables/build/BuildLineTable.tsx:515 +#: src/tables/build/BuildLineTable.tsx:516 #: src/tables/part/PartBuildAllocationsTable.tsx:102 msgid "Fully allocated" msgstr "" -#: src/tables/build/BuildLineTable.tsx:563 +#: src/tables/build/BuildLineTable.tsx:564 #: src/tables/sales/SalesOrderLineItemTable.tsx:311 msgid "Create Build Order" msgstr "" -#: src/tables/build/BuildLineTable.tsx:592 +#: src/tables/build/BuildLineTable.tsx:593 msgid "Auto allocation in progress" msgstr "" -#: src/tables/build/BuildLineTable.tsx:595 -#: src/tables/build/BuildLineTable.tsx:802 +#: src/tables/build/BuildLineTable.tsx:596 +#: src/tables/build/BuildLineTable.tsx:809 msgid "Auto Allocate Stock" msgstr "" -#: src/tables/build/BuildLineTable.tsx:596 +#: src/tables/build/BuildLineTable.tsx:597 msgid "Automatically allocate stock to this build according to the selected options" msgstr "" -#: src/tables/build/BuildLineTable.tsx:616 -#: src/tables/build/BuildLineTable.tsx:630 -#: src/tables/build/BuildLineTable.tsx:751 -#: src/tables/build/BuildLineTable.tsx:852 +#: src/tables/build/BuildLineTable.tsx:617 +#: src/tables/build/BuildLineTable.tsx:631 +#: src/tables/build/BuildLineTable.tsx:758 +#: src/tables/build/BuildLineTable.tsx:859 #: src/tables/build/BuildOutputTable.tsx:355 #: src/tables/build/BuildOutputTable.tsx:360 msgid "Deallocate Stock" msgstr "" -#: src/tables/build/BuildLineTable.tsx:632 +#: src/tables/build/BuildLineTable.tsx:633 msgid "Deallocate all untracked stock for this build order" msgstr "" -#: src/tables/build/BuildLineTable.tsx:634 +#: src/tables/build/BuildLineTable.tsx:635 msgid "Deallocate stock from the selected line item" msgstr "" -#: src/tables/build/BuildLineTable.tsx:638 +#: src/tables/build/BuildLineTable.tsx:639 msgid "Stock has been deallocated" msgstr "" -#: src/tables/build/BuildLineTable.tsx:771 +#: src/tables/build/BuildLineTable.tsx:778 msgid "Build Stock" msgstr "" -#: src/tables/build/BuildLineTable.tsx:784 +#: src/tables/build/BuildLineTable.tsx:791 #: src/tables/sales/SalesOrderLineItemTable.tsx:487 msgid "View Part" msgstr "" @@ -9739,7 +9823,7 @@ msgid "Serialize Build Output" msgstr "" #: src/tables/build/BuildOutputTable.tsx:405 -#: src/tables/part/PartTestResultTable.tsx:310 +#: src/tables/part/PartTestResultTable.tsx:318 #: src/tables/stock/StockItemTable.tsx:328 msgid "Filter by stock status" msgstr "" @@ -9964,8 +10048,8 @@ msgid "View Item" msgstr "" #: src/tables/general/ExtraLineItemTable.tsx:95 -#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:299 -#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:403 +#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:300 +#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:405 #: src/tables/sales/ReturnOrderLineItemTable.tsx:83 #: src/tables/sales/ReturnOrderLineItemTable.tsx:187 #: src/tables/sales/SalesOrderLineItemTable.tsx:252 @@ -9974,14 +10058,14 @@ msgid "Add Line Item" msgstr "" #: src/tables/general/ExtraLineItemTable.tsx:108 -#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:320 +#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:322 #: src/tables/sales/ReturnOrderLineItemTable.tsx:96 #: src/tables/sales/SalesOrderLineItemTable.tsx:271 msgid "Edit Line Item" msgstr "" #: src/tables/general/ExtraLineItemTable.tsx:117 -#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:329 +#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:331 #: src/tables/sales/ReturnOrderLineItemTable.tsx:105 #: src/tables/sales/SalesOrderLineItemTable.tsx:280 msgid "Delete Line Item" @@ -9991,6 +10075,137 @@ msgstr "" msgid "Add Extra Line Item" msgstr "" +#: src/tables/general/ParameterTable.tsx:88 +msgid "Internal Units" +msgstr "" + +#: src/tables/general/ParameterTable.tsx:108 +#: src/tables/general/ParameterTable.tsx:123 +msgid "Updated By" +msgstr "" + +#: src/tables/general/ParameterTable.tsx:118 +msgid "Show parameters for enabled templates" +msgstr "" + +#: src/tables/general/ParameterTable.tsx:124 +msgid "Filter by user who last updated the parameter" +msgstr "" + +#: src/tables/general/ParameterTable.tsx:154 +msgid "Import Parameters" +msgstr "" + +#: src/tables/general/ParameterTable.tsx:164 +#: src/tables/general/ParametricDataTable.tsx:261 +#: src/tables/general/ParametricDataTable.tsx:392 +msgid "Add Parameter" +msgstr "" + +#: src/tables/general/ParameterTable.tsx:175 +#: src/tables/general/ParameterTable.tsx:222 +#: src/tables/general/ParametricDataTable.tsx:285 +msgid "Edit Parameter" +msgstr "" + +#: src/tables/general/ParameterTable.tsx:183 +#: src/tables/general/ParameterTable.tsx:230 +msgid "Delete Parameter" +msgstr "" + +#: src/tables/general/ParameterTable.tsx:191 +msgid "Add Parameters" +msgstr "" + +#: src/tables/general/ParameterTable.tsx:197 +msgid "Create Parameter" +msgstr "" + +#: src/tables/general/ParameterTable.tsx:199 +msgid "Create a new parameter" +msgstr "" + +#: src/tables/general/ParameterTable.tsx:208 +msgid "Import parameters from a file" +msgstr "" + +#: src/tables/general/ParameterTemplateTable.tsx:48 +#: src/tables/general/ParameterTemplateTable.tsx:197 +msgid "Add Parameter Template" +msgstr "" + +#: src/tables/general/ParameterTemplateTable.tsx:64 +msgid "Duplicate Parameter Template" +msgstr "" + +#: src/tables/general/ParameterTemplateTable.tsx:78 +msgid "Delete Parameter Template" +msgstr "" + +#: src/tables/general/ParameterTemplateTable.tsx:85 +msgid "Edit Parameter Template" +msgstr "" + +#: src/tables/general/ParameterTemplateTable.tsx:138 +msgid "Checkbox" +msgstr "" + +#: src/tables/general/ParameterTemplateTable.tsx:139 +msgid "Show checkbox templates" +msgstr "" + +#: src/tables/general/ParameterTemplateTable.tsx:143 +msgid "Has choices" +msgstr "" + +#: src/tables/general/ParameterTemplateTable.tsx:144 +msgid "Show templates with choices" +msgstr "" + +#: src/tables/general/ParameterTemplateTable.tsx:148 +#: src/tables/part/PartTable.tsx:245 +msgid "Has Units" +msgstr "" + +#: src/tables/general/ParameterTemplateTable.tsx:149 +msgid "Show templates with units" +msgstr "" + +#: src/tables/general/ParameterTemplateTable.tsx:154 +msgid "Show enabled templates" +msgstr "" + +#: src/tables/general/ParameterTemplateTable.tsx:158 +#: src/tables/settings/ImportSessionTable.tsx:111 +#: src/tables/settings/TemplateTable.tsx:368 +msgid "Model Type" +msgstr "" + +#: src/tables/general/ParameterTemplateTable.tsx:159 +msgid "Filter by model type" +msgstr "" + +#: src/tables/general/ParametricDataTable.tsx:79 +msgid "Click to edit" +msgstr "" + +#: src/tables/general/ParametricDataTableFilters.tsx:36 +msgid "True" +msgstr "" + +#: src/tables/general/ParametricDataTableFilters.tsx:37 +msgid "False" +msgstr "" + +#: src/tables/general/ParametricDataTableFilters.tsx:47 +#: src/tables/general/ParametricDataTableFilters.tsx:80 +msgid "Select a choice" +msgstr "" + +#: src/tables/general/ParametricDataTableFilters.tsx:100 +msgid "Enter a value" +msgstr "" + #: src/tables/machine/MachineListTable.tsx:133 msgid "Machine restarted" msgstr "" @@ -10071,7 +10286,7 @@ msgid "Initialized" msgstr "" #: src/tables/machine/MachineListTable.tsx:410 -#: src/tables/machine/MachineTypeTable.tsx:307 +#: src/tables/machine/MachineTypeTable.tsx:305 msgid "No errors reported" msgstr "" @@ -10132,15 +10347,15 @@ msgstr "" #~ msgid "Machine type information" #~ msgstr "Machine type information" -#: src/tables/machine/MachineTypeTable.tsx:128 +#: src/tables/machine/MachineTypeTable.tsx:126 msgid "Not Found" msgstr "" -#: src/tables/machine/MachineTypeTable.tsx:131 +#: src/tables/machine/MachineTypeTable.tsx:129 msgid "Machine type not found." msgstr "" -#: src/tables/machine/MachineTypeTable.tsx:141 +#: src/tables/machine/MachineTypeTable.tsx:139 msgid "Machine Type Information" msgstr "" @@ -10148,34 +10363,34 @@ msgstr "" #~ msgid "Available drivers" #~ msgstr "Available drivers" -#: src/tables/machine/MachineTypeTable.tsx:156 -#: src/tables/machine/MachineTypeTable.tsx:255 +#: src/tables/machine/MachineTypeTable.tsx:154 +#: src/tables/machine/MachineTypeTable.tsx:253 msgid "Slug" msgstr "" -#: src/tables/machine/MachineTypeTable.tsx:167 -#: src/tables/machine/MachineTypeTable.tsx:276 +#: src/tables/machine/MachineTypeTable.tsx:165 +#: src/tables/machine/MachineTypeTable.tsx:274 msgid "Provider plugin" msgstr "" -#: src/tables/machine/MachineTypeTable.tsx:179 -#: src/tables/machine/MachineTypeTable.tsx:288 +#: src/tables/machine/MachineTypeTable.tsx:177 +#: src/tables/machine/MachineTypeTable.tsx:286 msgid "Provider file" msgstr "" -#: src/tables/machine/MachineTypeTable.tsx:194 +#: src/tables/machine/MachineTypeTable.tsx:192 msgid "Available Drivers" msgstr "" -#: src/tables/machine/MachineTypeTable.tsx:234 +#: src/tables/machine/MachineTypeTable.tsx:232 msgid "Machine driver not found." msgstr "" -#: src/tables/machine/MachineTypeTable.tsx:242 +#: src/tables/machine/MachineTypeTable.tsx:240 msgid "Machine driver information" msgstr "" -#: src/tables/machine/MachineTypeTable.tsx:262 +#: src/tables/machine/MachineTypeTable.tsx:260 msgid "Machine type" msgstr "" @@ -10187,15 +10402,15 @@ msgstr "" #~ msgid "Machine driver detail" #~ msgstr "Machine driver detail" -#: src/tables/machine/MachineTypeTable.tsx:362 +#: src/tables/machine/MachineTypeTable.tsx:360 msgid "Builtin type" msgstr "" -#: src/tables/machine/MachineTypeTable.tsx:371 +#: src/tables/machine/MachineTypeTable.tsx:369 msgid "Machine Type Detail" msgstr "" -#: src/tables/machine/MachineTypeTable.tsx:381 +#: src/tables/machine/MachineTypeTable.tsx:379 msgid "Machine Driver Detail" msgstr "" @@ -10213,8 +10428,16 @@ msgstr "" msgid "Message" msgstr "" -#: src/tables/part/ParametricPartTable.tsx:78 -msgid "Click to edit" +#: src/tables/part/ParametricPartTable.tsx:20 +msgid "Show active parts" +msgstr "" + +#: src/tables/part/ParametricPartTable.tsx:25 +msgid "Show locked parts" +msgstr "" + +#: src/tables/part/ParametricPartTable.tsx:30 +msgid "Show assembly parts" msgstr "" #: src/tables/part/ParametricPartTable.tsx:82 @@ -10222,43 +10445,14 @@ msgstr "" #~ msgstr "Edit parameter" #: src/tables/part/ParametricPartTable.tsx:244 -msgid "Add Part Parameter" -msgstr "" +#~ msgid "Add Part Parameter" +#~ msgstr "Add Part Parameter" #: src/tables/part/ParametricPartTable.tsx:258 #: src/tables/part/PartParameterTable.tsx:164 #: src/tables/part/PartParameterTable.tsx:187 -msgid "Edit Part Parameter" -msgstr "" - -#: src/tables/part/ParametricPartTable.tsx:355 -msgid "Show active parts" -msgstr "" - -#: src/tables/part/ParametricPartTable.tsx:360 -msgid "Show locked parts" -msgstr "" - -#: src/tables/part/ParametricPartTable.tsx:365 -msgid "Show assembly parts" -msgstr "" - -#: src/tables/part/ParametricPartTableFilters.tsx:36 -msgid "True" -msgstr "" - -#: src/tables/part/ParametricPartTableFilters.tsx:37 -msgid "False" -msgstr "" - -#: src/tables/part/ParametricPartTableFilters.tsx:47 -#: src/tables/part/ParametricPartTableFilters.tsx:80 -msgid "Select a choice" -msgstr "" - -#: src/tables/part/ParametricPartTableFilters.tsx:100 -msgid "Enter a value" -msgstr "" +#~ msgid "Edit Part Parameter" +#~ msgstr "Edit Part Parameter" #: src/tables/part/PartBuildAllocationsTable.tsx:64 msgid "Assembly IPN" @@ -10273,7 +10467,7 @@ msgid "Required Stock" msgstr "" #: src/tables/part/PartBuildAllocationsTable.tsx:124 -#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:381 +#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:383 msgid "View Build Order" msgstr "" @@ -10332,85 +10526,22 @@ msgstr "" msgid "Delete Category Parameter" msgstr "" -#: src/tables/part/PartCategoryTemplateTable.tsx:87 -msgid "Parameter Template" -msgstr "" - #: src/tables/part/PartCategoryTemplateTable.tsx:93 #~ msgid "[{0}]" #~ msgstr "[{0}]" -#: src/tables/part/PartParameterTable.tsx:108 -msgid "Internal Units" -msgstr "" - -#: src/tables/part/PartParameterTable.tsx:128 -#: src/tables/part/PartParameterTable.tsx:138 -msgid "Updated By" -msgstr "" - -#: src/tables/part/PartParameterTable.tsx:139 -msgid "Filter by user who last updated the parameter" -msgstr "" - #: src/tables/part/PartParameterTable.tsx:148 -msgid "New Part Parameter" -msgstr "" +#~ msgid "New Part Parameter" +#~ msgstr "New Part Parameter" #: src/tables/part/PartParameterTable.tsx:173 #: src/tables/part/PartParameterTable.tsx:195 -msgid "Delete Part Parameter" -msgstr "" +#~ msgid "Delete Part Parameter" +#~ msgstr "Delete Part Parameter" #: src/tables/part/PartParameterTable.tsx:213 -msgid "Add parameter" -msgstr "" - -#: src/tables/part/PartParameterTable.tsx:232 -msgid "Part parameters cannot be edited, as the part is locked" -msgstr "" - -#: src/tables/part/PartParameterTemplateTable.tsx:36 -msgid "Checkbox" -msgstr "" - -#: src/tables/part/PartParameterTemplateTable.tsx:37 -msgid "Show checkbox templates" -msgstr "" - -#: src/tables/part/PartParameterTemplateTable.tsx:41 -msgid "Has choices" -msgstr "" - -#: src/tables/part/PartParameterTemplateTable.tsx:42 -msgid "Show templates with choices" -msgstr "" - -#: src/tables/part/PartParameterTemplateTable.tsx:46 -#: src/tables/part/PartTable.tsx:245 -msgid "Has Units" -msgstr "" - -#: src/tables/part/PartParameterTemplateTable.tsx:47 -msgid "Show templates with units" -msgstr "" - -#: src/tables/part/PartParameterTemplateTable.tsx:91 -#: src/tables/part/PartParameterTemplateTable.tsx:166 -msgid "Add Parameter Template" -msgstr "" - -#: src/tables/part/PartParameterTemplateTable.tsx:105 -msgid "Duplicate Parameter Template" -msgstr "" - -#: src/tables/part/PartParameterTemplateTable.tsx:117 -msgid "Edit Parameter Template" -msgstr "" - -#: src/tables/part/PartParameterTemplateTable.tsx:128 -msgid "Delete Parameter Template" -msgstr "" +#~ msgid "Add parameter" +#~ msgstr "Add parameter" #: src/tables/part/PartParameterTemplateTable.tsx:141 #~ msgid "Add parameter template" @@ -10430,7 +10561,7 @@ msgid "Show received items" msgstr "" #: src/tables/part/PartSalesAllocationsTable.tsx:90 -#: src/tables/sales/SalesOrderShipmentTable.tsx:218 +#: src/tables/sales/SalesOrderShipmentTable.tsx:263 msgid "View Sales Order" msgstr "" @@ -10617,8 +10748,8 @@ msgstr "" #: src/tables/part/PartTestResultTable.tsx:103 #: src/tables/part/PartTestResultTable.tsx:181 -#: src/tables/part/PartTestResultTable.tsx:320 -#: src/tables/part/PartTestResultTable.tsx:334 +#: src/tables/part/PartTestResultTable.tsx:328 +#: src/tables/part/PartTestResultTable.tsx:342 #: src/tables/stock/StockItemTestResultTable.tsx:296 #: src/tables/stock/StockItemTestResultTable.tsx:368 #: src/tables/stock/StockItemTestResultTable.tsx:429 @@ -10643,7 +10774,7 @@ msgstr "" msgid "No Result" msgstr "" -#: src/tables/part/PartTestResultTable.tsx:298 +#: src/tables/part/PartTestResultTable.tsx:306 msgid "Show build outputs currently in production" msgstr "" @@ -11013,36 +11144,45 @@ msgstr "" #~ msgid "Parameter updated" #~ msgstr "Parameter updated" -#: src/tables/purchasing/ManufacturerPartParameterTable.tsx:63 -#: src/tables/purchasing/ManufacturerPartParameterTable.tsx:112 -msgid "Add Parameter" -msgstr "" - #: src/tables/purchasing/ManufacturerPartParameterTable.tsx:73 #~ msgid "Parameter deleted" #~ msgstr "Parameter deleted" -#: src/tables/purchasing/ManufacturerPartParameterTable.tsx:74 -msgid "Edit Parameter" -msgstr "" - #: src/tables/purchasing/ManufacturerPartParameterTable.tsx:74 #~ msgid "Are you sure you want to delete this parameter?" #~ msgstr "Are you sure you want to delete this parameter?" -#: src/tables/purchasing/ManufacturerPartParameterTable.tsx:82 -msgid "Delete Parameter" +#: src/tables/purchasing/ManufacturerPartParametricTable.tsx:34 +#: src/tables/purchasing/ManufacturerPartTable.tsx:82 +#: src/tables/purchasing/SupplierPartTable.tsx:99 +msgid "MPN" +msgstr "" + +#: src/tables/purchasing/ManufacturerPartParametricTable.tsx:44 +#: src/tables/purchasing/ManufacturerPartTable.tsx:134 +#: src/tables/purchasing/SupplierPartTable.tsx:220 +msgid "Active Part" +msgstr "" + +#: src/tables/purchasing/ManufacturerPartParametricTable.tsx:45 +#: src/tables/purchasing/ManufacturerPartTable.tsx:135 +msgid "Show manufacturer parts for active internal parts." +msgstr "" + +#: src/tables/purchasing/ManufacturerPartParametricTable.tsx:50 +#: src/tables/purchasing/ManufacturerPartTable.tsx:140 +msgid "Active Manufacturer" +msgstr "" + +#: src/tables/purchasing/ManufacturerPartParametricTable.tsx:51 +#: src/tables/purchasing/ManufacturerPartTable.tsx:142 +msgid "Show manufacturer parts for active manufacturers." msgstr "" #: src/tables/purchasing/ManufacturerPartTable.tsx:63 #~ msgid "Create Manufacturer Part" #~ msgstr "Create Manufacturer Part" -#: src/tables/purchasing/ManufacturerPartTable.tsx:82 -#: src/tables/purchasing/SupplierPartTable.tsx:99 -msgid "MPN" -msgstr "" - #: src/tables/purchasing/ManufacturerPartTable.tsx:100 #~ msgid "Manufacturer part updated" #~ msgstr "Manufacturer part updated" @@ -11055,25 +11195,8 @@ msgstr "" #~ msgid "Are you sure you want to remove this manufacturer part?" #~ msgstr "Are you sure you want to remove this manufacturer part?" -#: src/tables/purchasing/ManufacturerPartTable.tsx:134 -#: src/tables/purchasing/SupplierPartTable.tsx:220 -msgid "Active Part" -msgstr "" - -#: src/tables/purchasing/ManufacturerPartTable.tsx:135 -msgid "Show manufacturer parts for active internal parts." -msgstr "" - -#: src/tables/purchasing/ManufacturerPartTable.tsx:140 -msgid "Active Manufacturer" -msgstr "" - -#: src/tables/purchasing/ManufacturerPartTable.tsx:142 -msgid "Show manufacturer parts for active manufacturers." -msgstr "" - #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:115 -#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:397 +#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:399 msgid "Import Line Items" msgstr "" @@ -11099,11 +11222,11 @@ msgstr "" #~ msgid "Add line item" #~ msgstr "Add line item" -#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:350 +#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:352 msgid "Receive line item" msgstr "" -#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:414 +#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:416 msgid "Receive items" msgstr "" @@ -11201,25 +11324,25 @@ msgid "Not shipped" msgstr "" #: src/tables/sales/SalesOrderAllocationTable.tsx:211 -#: src/tables/sales/SalesOrderAllocationTable.tsx:229 +#: src/tables/sales/SalesOrderAllocationTable.tsx:235 msgid "Edit Allocation" msgstr "" #: src/tables/sales/SalesOrderAllocationTable.tsx:218 #: src/tables/sales/SalesOrderAllocationTable.tsx:241 -msgid "Delete Allocation" -msgstr "" +#~ msgid "Delete Allocation" +#~ msgstr "Delete Allocation" -#: src/tables/sales/SalesOrderAllocationTable.tsx:252 -#: src/tables/sales/SalesOrderAllocationTable.tsx:253 +#: src/tables/sales/SalesOrderAllocationTable.tsx:261 +#: src/tables/sales/SalesOrderAllocationTable.tsx:262 msgid "View Shipment" msgstr "" -#: src/tables/sales/SalesOrderAllocationTable.tsx:308 +#: src/tables/sales/SalesOrderAllocationTable.tsx:317 msgid "Assign to Shipment" msgstr "" -#: src/tables/sales/SalesOrderAllocationTable.tsx:324 +#: src/tables/sales/SalesOrderAllocationTable.tsx:333 msgid "Assign to shipment" msgstr "" @@ -11259,35 +11382,35 @@ msgstr "" #~ msgid "Delete Shipment" #~ msgstr "Delete Shipment" -#: src/tables/sales/SalesOrderShipmentTable.tsx:72 +#: src/tables/sales/SalesOrderShipmentTable.tsx:79 msgid "Create Shipment" msgstr "" -#: src/tables/sales/SalesOrderShipmentTable.tsx:143 +#: src/tables/sales/SalesOrderShipmentTable.tsx:164 msgid "Items" msgstr "" -#: src/tables/sales/SalesOrderShipmentTable.tsx:203 +#: src/tables/sales/SalesOrderShipmentTable.tsx:248 msgid "Edit shipment" msgstr "" -#: src/tables/sales/SalesOrderShipmentTable.tsx:211 +#: src/tables/sales/SalesOrderShipmentTable.tsx:256 msgid "Cancel shipment" msgstr "" -#: src/tables/sales/SalesOrderShipmentTable.tsx:241 +#: src/tables/sales/SalesOrderShipmentTable.tsx:286 msgid "Add shipment" msgstr "" -#: src/tables/sales/SalesOrderShipmentTable.tsx:255 +#: src/tables/sales/SalesOrderShipmentTable.tsx:300 msgid "Show shipments which have been checked" msgstr "" -#: src/tables/sales/SalesOrderShipmentTable.tsx:260 +#: src/tables/sales/SalesOrderShipmentTable.tsx:305 msgid "Show shipments which have been shipped" msgstr "" -#: src/tables/sales/SalesOrderShipmentTable.tsx:265 +#: src/tables/sales/SalesOrderShipmentTable.tsx:310 msgid "Show shipments which have been delivered" msgstr "" @@ -11621,11 +11744,6 @@ msgstr "" msgid "Imported Rows" msgstr "" -#: src/tables/settings/ImportSessionTable.tsx:111 -#: src/tables/settings/TemplateTable.tsx:368 -msgid "Model Type" -msgstr "" - #: src/tables/settings/ImportSessionTable.tsx:112 #: src/tables/settings/TemplateTable.tsx:369 msgid "Filter by target model type" diff --git a/src/frontend/src/locales/fr/messages.po b/src/frontend/src/locales/fr/messages.po index ab611b3998..ee97c00cbe 100644 --- a/src/frontend/src/locales/fr/messages.po +++ b/src/frontend/src/locales/fr/messages.po @@ -8,7 +8,7 @@ msgstr "" "Language: fr\n" "Project-Id-Version: inventree\n" "Report-Msgid-Bugs-To: \n" -"PO-Revision-Date: 2025-11-19 19:39\n" +"PO-Revision-Date: 2025-12-07 07:36\n" "Last-Translator: \n" "Language-Team: French\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" @@ -30,7 +30,7 @@ msgid "Edit" msgstr "Éditer" #: lib/components/RowActions.tsx:56 -#: src/components/forms/ApiForm.tsx:735 +#: src/components/forms/ApiForm.tsx:754 #: src/components/items/ActionDropdown.tsx:257 #: src/components/items/RoleTable.tsx:155 #: src/hooks/UseForm.tsx:164 @@ -56,24 +56,24 @@ msgstr "Annuler" #: lib/components/RowActions.tsx:136 #: src/components/nav/NavigationDrawer.tsx:190 -#: src/forms/PurchaseOrderForms.tsx:802 +#: src/forms/PurchaseOrderForms.tsx:854 #: src/forms/StockForms.tsx:796 #: src/forms/StockForms.tsx:843 -#: src/forms/StockForms.tsx:889 -#: src/forms/StockForms.tsx:928 -#: src/forms/StockForms.tsx:964 -#: src/forms/StockForms.tsx:1050 +#: src/forms/StockForms.tsx:896 +#: src/forms/StockForms.tsx:942 +#: src/forms/StockForms.tsx:980 +#: src/forms/StockForms.tsx:1066 #: src/pages/Index/Settings/AccountSettings/MFASettings.tsx:962 msgid "Actions" msgstr "Actions" #: lib/components/SearchInput.tsx:34 -#: src/components/forms/fields/RelatedModelField.tsx:408 +#: src/components/forms/fields/RelatedModelField.tsx:479 #: src/components/nav/Header.tsx:169 #: src/components/wizards/ImportPartWizard.tsx:200 #: src/components/wizards/ImportPartWizard.tsx:233 -#: src/pages/Index/Settings/UserSettings.tsx:74 -#: src/pages/part/PartDetail.tsx:1155 +#: src/pages/Index/Settings/UserSettings.tsx:75 +#: src/pages/part/PartDetail.tsx:1176 msgid "Search" msgstr "Rechercher" @@ -95,7 +95,7 @@ msgstr "Oui" msgid "No" msgstr "Non" -#: lib/enums/ModelInformation.tsx:28 +#: lib/enums/ModelInformation.tsx:29 #: src/components/wizards/OrderPartsWizard.tsx:279 #: src/forms/BuildForms.tsx:332 #: src/forms/BuildForms.tsx:407 @@ -103,208 +103,234 @@ msgstr "Non" #: src/forms/BuildForms.tsx:630 #: src/forms/BuildForms.tsx:793 #: src/forms/BuildForms.tsx:896 -#: src/forms/PurchaseOrderForms.tsx:798 +#: src/forms/PurchaseOrderForms.tsx:850 #: src/forms/ReturnOrderForms.tsx:242 -#: src/forms/SalesOrderForms.tsx:305 +#: src/forms/SalesOrderForms.tsx:384 #: src/forms/StockForms.tsx:360 #: src/forms/StockForms.tsx:791 #: src/forms/StockForms.tsx:838 -#: src/forms/StockForms.tsx:884 -#: src/forms/StockForms.tsx:923 -#: src/forms/StockForms.tsx:959 -#: src/forms/StockForms.tsx:1002 -#: src/forms/StockForms.tsx:1046 -#: src/forms/StockForms.tsx:1094 -#: src/forms/StockForms.tsx:1138 -#: src/pages/build/BuildDetail.tsx:200 -#: src/pages/part/PartDetail.tsx:1207 +#: src/forms/StockForms.tsx:891 +#: src/forms/StockForms.tsx:937 +#: src/forms/StockForms.tsx:975 +#: src/forms/StockForms.tsx:1018 +#: src/forms/StockForms.tsx:1062 +#: src/forms/StockForms.tsx:1110 +#: src/forms/StockForms.tsx:1154 +#: src/pages/build/BuildDetail.tsx:201 +#: src/pages/part/PartDetail.tsx:1228 #: src/tables/ColumnRenderers.tsx:91 +#: src/tables/part/PartTestResultTable.tsx:247 #: src/tables/part/RelatedPartTable.tsx:53 #: src/tables/stock/StockTrackingTable.tsx:87 msgid "Part" msgstr "Pièce" -#: lib/enums/ModelInformation.tsx:29 +#: lib/enums/ModelInformation.tsx:30 #: lib/enums/Roles.tsx:35 #: src/components/nav/NavigationDrawer.tsx:70 #: src/defaults/links.tsx:36 -#: src/pages/Index/Settings/SystemSettings.tsx:190 -#: src/pages/part/CategoryDetail.tsx:132 -#: src/pages/part/CategoryDetail.tsx:277 -#: src/pages/part/CategoryDetail.tsx:323 -#: src/pages/part/CategoryDetail.tsx:354 -#: src/pages/part/PartDetail.tsx:965 +#: src/pages/Index/Settings/SystemSettings.tsx:197 +#: src/pages/part/CategoryDetail.tsx:135 +#: src/pages/part/CategoryDetail.tsx:285 +#: src/pages/part/CategoryDetail.tsx:340 +#: src/pages/part/CategoryDetail.tsx:371 +#: src/pages/part/PartDetail.tsx:978 msgid "Parts" msgstr "Composants" #: lib/enums/ModelInformation.tsx:37 #: src/pages/Index/Settings/AdminCenter/PartParameterPanel.tsx:13 -msgid "Part Parameter Template" -msgstr "Modèle de paramètre de pièce" +#~ msgid "Part Parameter Template" +#~ msgstr "Part Parameter Template" #: lib/enums/ModelInformation.tsx:38 -msgid "Part Parameter Templates" -msgstr "Modèles de paramètres de pièce" +#~ msgid "Part Parameter Templates" +#~ msgstr "Part Parameter Templates" + +#: lib/enums/ModelInformation.tsx:39 +msgid "Parameter" +msgstr "" + +#: lib/enums/ModelInformation.tsx:40 +#: src/components/panels/ParametersPanel.tsx:19 +#: src/components/wizards/ImportPartWizard.tsx:807 +#: src/pages/Index/Settings/AdminCenter/Index.tsx:195 +#: src/pages/Index/Settings/SystemSettings.tsx:191 +#: src/pages/part/PartDetail.tsx:943 +msgid "Parameters" +msgstr "Paramètres" #: lib/enums/ModelInformation.tsx:45 +#: src/tables/part/PartCategoryTemplateTable.tsx:87 +msgid "Parameter Template" +msgstr "Modèle de paramètre" + +#: lib/enums/ModelInformation.tsx:46 +#: src/pages/Index/Settings/AdminCenter/ParameterPanel.tsx:13 +msgid "Parameter Templates" +msgstr "" + +#: lib/enums/ModelInformation.tsx:52 msgid "Part Test Template" msgstr "Modèle de test de pièce" -#: lib/enums/ModelInformation.tsx:46 +#: lib/enums/ModelInformation.tsx:53 msgid "Part Test Templates" msgstr "Modèles de test de pièces" -#: lib/enums/ModelInformation.tsx:52 +#: lib/enums/ModelInformation.tsx:59 #: src/components/wizards/OrderPartsWizard.tsx:290 -#: src/pages/company/SupplierPartDetail.tsx:413 +#: src/pages/company/SupplierPartDetail.tsx:418 #: src/pages/stock/StockDetail.tsx:289 -#: src/tables/build/BuildAllocatedStockTable.tsx:155 +#: src/tables/build/BuildAllocatedStockTable.tsx:152 #: src/tables/part/PartPurchaseOrdersTable.tsx:50 +#: src/tables/purchasing/SupplierPartParametricTable.tsx:29 #: src/tables/purchasing/SupplierPartTable.tsx:83 #: src/tables/stock/StockItemTable.tsx:247 msgid "Supplier Part" msgstr "Pièce fournisseur" -#: lib/enums/ModelInformation.tsx:53 -#: src/pages/purchasing/PurchasingIndex.tsx:92 +#: lib/enums/ModelInformation.tsx:60 +#: src/pages/purchasing/PurchasingIndex.tsx:128 msgid "Supplier Parts" msgstr "Pièces du fournisseur" -#: lib/enums/ModelInformation.tsx:61 -#: src/pages/company/ManufacturerPartDetail.tsx:297 -#: src/pages/company/SupplierPartDetail.tsx:161 +#: lib/enums/ModelInformation.tsx:69 +#: src/pages/company/ManufacturerPartDetail.tsx:288 +#: src/pages/company/SupplierPartDetail.tsx:162 #: src/tables/part/PartPurchaseOrdersTable.tsx:56 #: src/tables/stock/StockItemTable.tsx:253 msgid "Manufacturer Part" msgstr "Pièces du fabricant" -#: lib/enums/ModelInformation.tsx:62 -#: src/pages/purchasing/PurchasingIndex.tsx:109 +#: lib/enums/ModelInformation.tsx:70 +#: src/pages/purchasing/PurchasingIndex.tsx:177 msgid "Manufacturer Parts" msgstr "Pièces du fabricant" -#: lib/enums/ModelInformation.tsx:70 -#: src/pages/part/CategoryDetail.tsx:354 +#: lib/enums/ModelInformation.tsx:79 +#: src/pages/part/CategoryDetail.tsx:371 #: src/tables/Filter.tsx:389 msgid "Part Category" msgstr "Catégorie de composant" -#: lib/enums/ModelInformation.tsx:71 +#: lib/enums/ModelInformation.tsx:80 #: lib/enums/Roles.tsx:37 -#: src/pages/part/CategoryDetail.tsx:271 -#: src/pages/part/CategoryDetail.tsx:345 -#: src/pages/part/PartDetail.tsx:1196 +#: src/pages/part/CategoryDetail.tsx:279 +#: src/pages/part/CategoryDetail.tsx:362 +#: src/pages/part/PartDetail.tsx:1217 msgid "Part Categories" msgstr "Catégories de composants" -#: lib/enums/ModelInformation.tsx:79 +#: lib/enums/ModelInformation.tsx:88 #: src/forms/BuildForms.tsx:473 #: src/forms/BuildForms.tsx:633 #: src/forms/BuildForms.tsx:794 -#: src/forms/SalesOrderForms.tsx:307 +#: src/forms/SalesOrderForms.tsx:386 #: src/pages/stock/StockDetail.tsx:1005 -#: src/tables/part/PartTestResultTable.tsx:248 +#: src/tables/part/PartTestResultTable.tsx:256 #: src/tables/stock/StockTrackingTable.tsx:48 #: src/tables/stock/StockTrackingTable.tsx:55 msgid "Stock Item" msgstr "Article en stock" -#: lib/enums/ModelInformation.tsx:80 +#: lib/enums/ModelInformation.tsx:89 #: lib/enums/Roles.tsx:45 -#: src/pages/company/CompanyDetail.tsx:210 -#: src/pages/part/CategoryDetail.tsx:291 +#: src/pages/company/CompanyDetail.tsx:211 +#: src/pages/part/CategoryDetail.tsx:314 #: src/pages/part/PartStockHistoryDetail.tsx:101 #: src/pages/stock/LocationDetail.tsx:121 #: src/pages/stock/LocationDetail.tsx:180 msgid "Stock Items" msgstr "Articles en stock" -#: lib/enums/ModelInformation.tsx:88 +#: lib/enums/ModelInformation.tsx:98 #: lib/enums/Roles.tsx:47 #: src/pages/stock/LocationDetail.tsx:420 msgid "Stock Location" msgstr "Emplacement du stock" -#: lib/enums/ModelInformation.tsx:89 +#: lib/enums/ModelInformation.tsx:99 #: src/pages/stock/LocationDetail.tsx:174 #: src/pages/stock/LocationDetail.tsx:412 #: src/pages/stock/StockDetail.tsx:996 msgid "Stock Locations" msgstr "Emplacements de stock" -#: lib/enums/ModelInformation.tsx:97 +#: lib/enums/ModelInformation.tsx:108 msgid "Stock Location Type" msgstr "Emplacements du stock" -#: lib/enums/ModelInformation.tsx:98 +#: lib/enums/ModelInformation.tsx:109 msgid "Stock Location Types" msgstr "Emplacements des stocks" -#: lib/enums/ModelInformation.tsx:103 -#: src/pages/Index/Settings/SystemSettings.tsx:248 -#: src/pages/part/PartDetail.tsx:911 +#: lib/enums/ModelInformation.tsx:114 +#: src/pages/Index/Settings/SystemSettings.tsx:254 +#: src/pages/part/PartDetail.tsx:900 msgid "Stock History" msgstr "Historique du stock" -#: lib/enums/ModelInformation.tsx:104 +#: lib/enums/ModelInformation.tsx:115 msgid "Stock Histories" msgstr "Historique du stock" -#: lib/enums/ModelInformation.tsx:109 +#: lib/enums/ModelInformation.tsx:120 msgid "Build" msgstr "Construction" -#: lib/enums/ModelInformation.tsx:110 +#: lib/enums/ModelInformation.tsx:121 msgid "Builds" msgstr "Construction" -#: lib/enums/ModelInformation.tsx:118 +#: lib/enums/ModelInformation.tsx:130 msgid "Build Line" msgstr "Chaîne d'assemblage" -#: lib/enums/ModelInformation.tsx:119 +#: lib/enums/ModelInformation.tsx:131 msgid "Build Lines" msgstr "Chaîne d'assemblage" -#: lib/enums/ModelInformation.tsx:126 +#: lib/enums/ModelInformation.tsx:138 msgid "Build Item" msgstr "Construire un élément" -#: lib/enums/ModelInformation.tsx:127 +#: lib/enums/ModelInformation.tsx:139 msgid "Build Items" msgstr "Construire des éléments" -#: lib/enums/ModelInformation.tsx:132 -#: src/pages/company/CompanyDetail.tsx:340 +#: lib/enums/ModelInformation.tsx:144 +#: src/pages/company/CompanyDetail.tsx:345 #: src/tables/company/CompanyTable.tsx:47 #: src/tables/company/ContactTable.tsx:67 +#: src/tables/company/ParametricCompanyTable.tsx:18 msgid "Company" msgstr "Société" -#: lib/enums/ModelInformation.tsx:133 +#: lib/enums/ModelInformation.tsx:145 msgid "Companies" msgstr "Sociétés" -#: lib/enums/ModelInformation.tsx:140 -#: src/pages/build/BuildDetail.tsx:316 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:253 -#: src/pages/sales/ReturnOrderDetail.tsx:231 -#: src/pages/sales/SalesOrderDetail.tsx:224 +#: lib/enums/ModelInformation.tsx:152 +#: src/pages/build/BuildDetail.tsx:317 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:254 +#: src/pages/sales/ReturnOrderDetail.tsx:232 +#: src/pages/sales/SalesOrderDetail.tsx:225 #: src/tables/ColumnRenderers.tsx:362 #: src/tables/Filter.tsx:286 #: src/tables/TableHoverCard.tsx:101 msgid "Project Code" msgstr "Code du projet" -#: lib/enums/ModelInformation.tsx:141 +#: lib/enums/ModelInformation.tsx:153 #: src/pages/Index/Settings/AdminCenter/Index.tsx:172 msgid "Project Codes" msgstr "Codes du projet" -#: lib/enums/ModelInformation.tsx:147 +#: lib/enums/ModelInformation.tsx:159 #: src/components/wizards/OrderPartsWizard.tsx:338 #: src/pages/part/pricing/PurchaseHistoryPanel.tsx:33 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:550 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:555 #: src/pages/stock/StockDetail.tsx:352 #: src/tables/part/PartPurchaseOrdersTable.tsx:32 #: src/tables/stock/StockItemTable.tsx:239 @@ -312,117 +338,117 @@ msgstr "Codes du projet" msgid "Purchase Order" msgstr "Commande d’achat" -#: lib/enums/ModelInformation.tsx:148 +#: lib/enums/ModelInformation.tsx:160 #: lib/enums/Roles.tsx:39 #: src/defaults/actions.tsx:104 -#: src/pages/Index/Settings/SystemSettings.tsx:283 -#: src/pages/company/CompanyDetail.tsx:203 -#: src/pages/company/SupplierPartDetail.tsx:266 -#: src/pages/part/PartDetail.tsx:875 -#: src/pages/purchasing/PurchasingIndex.tsx:60 +#: src/pages/Index/Settings/SystemSettings.tsx:289 +#: src/pages/company/CompanyDetail.tsx:204 +#: src/pages/company/SupplierPartDetail.tsx:267 +#: src/pages/part/PartDetail.tsx:864 +#: src/pages/purchasing/PurchasingIndex.tsx:66 msgid "Purchase Orders" msgstr "Ordres d'achat" -#: lib/enums/ModelInformation.tsx:156 +#: lib/enums/ModelInformation.tsx:169 msgid "Purchase Order Line" msgstr "Ligne de commande d'achat" -#: lib/enums/ModelInformation.tsx:157 +#: lib/enums/ModelInformation.tsx:170 msgid "Purchase Order Lines" msgstr "Lignes de commande d'achat" -#: lib/enums/ModelInformation.tsx:162 -#: src/pages/build/BuildDetail.tsx:289 +#: lib/enums/ModelInformation.tsx:175 +#: src/pages/build/BuildDetail.tsx:290 #: src/pages/part/pricing/SaleHistoryPanel.tsx:24 -#: src/pages/sales/SalesOrderDetail.tsx:614 -#: src/pages/sales/SalesOrderShipmentDetail.tsx:105 -#: src/pages/sales/SalesOrderShipmentDetail.tsx:478 +#: src/pages/sales/SalesOrderDetail.tsx:619 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:103 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:446 #: src/pages/stock/StockDetail.tsx:361 #: src/tables/part/PartSalesAllocationsTable.tsx:41 #: src/tables/sales/SalesOrderAllocationTable.tsx:110 -#: src/tables/sales/SalesOrderShipmentTable.tsx:122 +#: src/tables/sales/SalesOrderShipmentTable.tsx:143 #: src/tables/stock/StockTrackingTable.tsx:131 msgid "Sales Order" msgstr "Ventes" -#: lib/enums/ModelInformation.tsx:163 +#: lib/enums/ModelInformation.tsx:176 #: lib/enums/Roles.tsx:43 #: src/defaults/actions.tsx:114 -#: src/pages/Index/Settings/SystemSettings.tsx:299 -#: src/pages/company/CompanyDetail.tsx:223 -#: src/pages/part/PartDetail.tsx:887 -#: src/pages/sales/SalesIndex.tsx:84 +#: src/pages/Index/Settings/SystemSettings.tsx:305 +#: src/pages/company/CompanyDetail.tsx:224 +#: src/pages/part/PartDetail.tsx:876 +#: src/pages/sales/SalesIndex.tsx:53 msgid "Sales Orders" msgstr "Ordres de vente" -#: lib/enums/ModelInformation.tsx:171 -#: src/pages/sales/SalesOrderShipmentDetail.tsx:477 +#: lib/enums/ModelInformation.tsx:185 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:445 msgid "Sales Order Shipment" msgstr "Expédition de la commande" -#: lib/enums/ModelInformation.tsx:172 +#: lib/enums/ModelInformation.tsx:186 msgid "Sales Order Shipments" msgstr "Expéditions de la commande" -#: lib/enums/ModelInformation.tsx:179 -#: src/pages/sales/ReturnOrderDetail.tsx:549 +#: lib/enums/ModelInformation.tsx:194 +#: src/pages/sales/ReturnOrderDetail.tsx:554 #: src/tables/stock/StockTrackingTable.tsx:142 msgid "Return Order" msgstr "Retour de commande" -#: lib/enums/ModelInformation.tsx:180 +#: lib/enums/ModelInformation.tsx:195 #: lib/enums/Roles.tsx:41 #: src/defaults/actions.tsx:125 -#: src/pages/Index/Settings/SystemSettings.tsx:316 -#: src/pages/company/CompanyDetail.tsx:230 -#: src/pages/part/PartDetail.tsx:894 -#: src/pages/sales/SalesIndex.tsx:117 +#: src/pages/Index/Settings/SystemSettings.tsx:322 +#: src/pages/company/CompanyDetail.tsx:231 +#: src/pages/part/PartDetail.tsx:883 +#: src/pages/sales/SalesIndex.tsx:99 msgid "Return Orders" msgstr "Retours" -#: lib/enums/ModelInformation.tsx:188 +#: lib/enums/ModelInformation.tsx:204 msgid "Return Order Line Item" msgstr "Ligne de retour de commande" -#: lib/enums/ModelInformation.tsx:189 +#: lib/enums/ModelInformation.tsx:205 msgid "Return Order Line Items" msgstr "Ligne de retour de commande" -#: lib/enums/ModelInformation.tsx:194 +#: lib/enums/ModelInformation.tsx:210 #: src/tables/company/AddressTable.tsx:52 msgid "Address" msgstr "Adresse" -#: lib/enums/ModelInformation.tsx:195 -#: src/pages/company/CompanyDetail.tsx:264 +#: lib/enums/ModelInformation.tsx:211 +#: src/pages/company/CompanyDetail.tsx:265 msgid "Addresses" msgstr "Adresses" -#: lib/enums/ModelInformation.tsx:201 +#: lib/enums/ModelInformation.tsx:217 #: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:89 #: src/pages/core/UserDetail.tsx:135 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:229 -#: src/pages/sales/ReturnOrderDetail.tsx:207 -#: src/pages/sales/SalesOrderDetail.tsx:200 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:230 +#: src/pages/sales/ReturnOrderDetail.tsx:208 +#: src/pages/sales/SalesOrderDetail.tsx:201 msgid "Contact" msgstr "Contact" -#: lib/enums/ModelInformation.tsx:202 -#: src/pages/company/CompanyDetail.tsx:258 +#: lib/enums/ModelInformation.tsx:218 +#: src/pages/company/CompanyDetail.tsx:259 #: src/pages/core/CoreIndex.tsx:33 msgid "Contacts" msgstr "Contacts" -#: lib/enums/ModelInformation.tsx:208 +#: lib/enums/ModelInformation.tsx:224 #: src/tables/ColumnRenderers.tsx:444 msgid "Owner" msgstr "Propriétaire" -#: lib/enums/ModelInformation.tsx:209 +#: lib/enums/ModelInformation.tsx:225 msgid "Owners" msgstr "Propriétaires" -#: lib/enums/ModelInformation.tsx:215 +#: lib/enums/ModelInformation.tsx:231 #: src/pages/Auth/ChangePassword.tsx:36 #: src/pages/core/UserDetail.tsx:220 #: src/tables/ColumnRenderers.tsx:395 @@ -437,7 +463,7 @@ msgstr "Propriétaires" msgid "User" msgstr "Utilisateur" -#: lib/enums/ModelInformation.tsx:216 +#: lib/enums/ModelInformation.tsx:232 #: src/components/nav/NavigationDrawer.tsx:105 #: src/pages/Index/Settings/AdminCenter/UserManagementPanel.tsx:15 #: src/pages/core/CoreIndex.tsx:21 @@ -445,12 +471,12 @@ msgstr "Utilisateur" msgid "Users" msgstr "Utilisateurs" -#: lib/enums/ModelInformation.tsx:222 +#: lib/enums/ModelInformation.tsx:238 #: src/pages/core/GroupDetail.tsx:78 msgid "Group" msgstr "Groupes" -#: lib/enums/ModelInformation.tsx:223 +#: lib/enums/ModelInformation.tsx:239 #: src/components/nav/NavigationDrawer.tsx:111 #: src/pages/Index/Settings/AdminCenter/UserManagementPanel.tsx:23 #: src/pages/core/CoreIndex.tsx:27 @@ -460,64 +486,64 @@ msgstr "Groupes" msgid "Groups" msgstr "Groupes" -#: lib/enums/ModelInformation.tsx:230 +#: lib/enums/ModelInformation.tsx:246 msgid "Import Session" msgstr "Importer la session" -#: lib/enums/ModelInformation.tsx:231 +#: lib/enums/ModelInformation.tsx:247 msgid "Import Sessions" msgstr "Importer les sessions" -#: lib/enums/ModelInformation.tsx:238 +#: lib/enums/ModelInformation.tsx:254 msgid "Label Template" msgstr "Modèle d'étiquette" -#: lib/enums/ModelInformation.tsx:239 +#: lib/enums/ModelInformation.tsx:255 #: src/pages/Index/Settings/AdminCenter/Index.tsx:209 msgid "Label Templates" msgstr "Modèles d'étiquettes" -#: lib/enums/ModelInformation.tsx:246 +#: lib/enums/ModelInformation.tsx:262 msgid "Report Template" msgstr "Modèle de rapport" -#: lib/enums/ModelInformation.tsx:247 +#: lib/enums/ModelInformation.tsx:263 #: src/pages/Index/Settings/AdminCenter/Index.tsx:215 msgid "Report Templates" msgstr "Modèles des rapports" -#: lib/enums/ModelInformation.tsx:254 +#: lib/enums/ModelInformation.tsx:270 #: src/components/plugins/PluginDrawer.tsx:145 msgid "Plugin Configuration" msgstr "Configuration du plugin" -#: lib/enums/ModelInformation.tsx:255 +#: lib/enums/ModelInformation.tsx:271 msgid "Plugin Configurations" msgstr "Configurations des plugins" -#: lib/enums/ModelInformation.tsx:262 +#: lib/enums/ModelInformation.tsx:278 msgid "Content Type" msgstr "Type de contenu" -#: lib/enums/ModelInformation.tsx:263 +#: lib/enums/ModelInformation.tsx:279 msgid "Content Types" msgstr "Types de contenu" -#: lib/enums/ModelInformation.tsx:268 +#: lib/enums/ModelInformation.tsx:284 msgid "Selection List" msgstr "Liste Sélectionnée" -#: lib/enums/ModelInformation.tsx:269 -#: src/pages/Index/Settings/AdminCenter/PartParameterPanel.tsx:21 +#: lib/enums/ModelInformation.tsx:285 +#: src/pages/Index/Settings/AdminCenter/ParameterPanel.tsx:21 msgid "Selection Lists" msgstr "Listes Sélectionnées" -#: lib/enums/ModelInformation.tsx:275 +#: lib/enums/ModelInformation.tsx:291 #: src/components/barcodes/BarcodeInput.tsx:114 #: src/components/dashboard/DashboardLayout.tsx:281 #: src/components/editors/NotesEditor.tsx:74 #: src/components/editors/TemplateEditor/TemplateEditor.tsx:158 -#: src/components/forms/fields/ApiFormField.tsx:273 +#: src/components/forms/fields/ApiFormField.tsx:237 #: src/components/forms/fields/TableField.tsx:45 #: src/components/importer/ImportDataSelector.tsx:192 #: src/components/importer/ImporterColumnSelector.tsx:234 @@ -528,7 +554,7 @@ msgstr "Listes Sélectionnées" #: src/components/nav/SearchDrawer.tsx:572 #: src/components/settings/SettingList.tsx:139 #: src/components/wizards/ImportPartWizard.tsx:574 -#: src/components/wizards/ImportPartWizard.tsx:718 +#: src/components/wizards/ImportPartWizard.tsx:719 #: src/forms/BomForms.tsx:69 #: src/functions/auth.tsx:643 #: src/pages/ErrorPage.tsx:11 @@ -547,9 +573,9 @@ msgstr "Listes Sélectionnées" msgid "Error" msgstr "Erreur" -#: lib/enums/ModelInformation.tsx:276 +#: lib/enums/ModelInformation.tsx:292 #: src/tables/machine/MachineListTable.tsx:402 -#: src/tables/machine/MachineTypeTable.tsx:299 +#: src/tables/machine/MachineTypeTable.tsx:297 msgid "Errors" msgstr "Erreurs" @@ -559,10 +585,10 @@ msgstr "Administrateur" #: lib/enums/Roles.tsx:33 #: src/defaults/actions.tsx:135 -#: src/pages/Index/Settings/SystemSettings.tsx:264 -#: src/pages/build/BuildIndex.tsx:75 -#: src/pages/part/PartDetail.tsx:904 -#: src/pages/sales/SalesOrderDetail.tsx:421 +#: src/pages/Index/Settings/SystemSettings.tsx:270 +#: src/pages/build/BuildIndex.tsx:67 +#: src/pages/part/PartDetail.tsx:893 +#: src/pages/sales/SalesOrderDetail.tsx:422 msgid "Build Orders" msgstr "Ordres de fabrication" @@ -639,39 +665,39 @@ msgstr "Scannez ou saisissez les données du code-barres" msgid "Enter barcode data" msgstr "Saisissez les données du code-barres" -#: src/components/barcodes/BarcodeScanDialog.tsx:49 -#: src/components/buttons/ScanButton.tsx:15 +#: src/components/barcodes/BarcodeScanDialog.tsx:56 +#: src/components/buttons/ScanButton.tsx:27 #: src/components/nav/NavigationDrawer.tsx:122 -#: src/forms/PurchaseOrderForms.tsx:457 -#: src/forms/PurchaseOrderForms.tsx:563 +#: src/forms/PurchaseOrderForms.tsx:509 +#: src/forms/PurchaseOrderForms.tsx:615 msgid "Scan Barcode" msgstr "Scanner le code-barres" -#: src/components/barcodes/BarcodeScanDialog.tsx:105 +#: src/components/barcodes/BarcodeScanDialog.tsx:121 msgid "No matching item found" msgstr "Aucun élément correspondant trouvé" -#: src/components/barcodes/BarcodeScanDialog.tsx:134 +#: src/components/barcodes/BarcodeScanDialog.tsx:150 msgid "Barcode does not match the expected model type" msgstr "Le Code-barre ne correspond pas au type de modèle attendu" -#: src/components/barcodes/BarcodeScanDialog.tsx:145 +#: src/components/barcodes/BarcodeScanDialog.tsx:161 #: src/components/editors/NotesEditor.tsx:84 #: src/components/editors/NotesEditor.tsx:118 -#: src/components/forms/ApiForm.tsx:465 +#: src/components/forms/ApiForm.tsx:484 #: src/components/wizards/ImportPartWizard.tsx:566 -#: src/components/wizards/ImportPartWizard.tsx:690 +#: src/components/wizards/ImportPartWizard.tsx:691 #: src/pages/Index/Settings/AdminCenter/CurrencyManagementPanel.tsx:45 #: src/tables/bom/BomTable.tsx:548 #: src/tables/settings/PendingTasksTable.tsx:68 msgid "Success" msgstr "Succès" -#: src/components/barcodes/BarcodeScanDialog.tsx:151 +#: src/components/barcodes/BarcodeScanDialog.tsx:167 msgid "Failed to handle barcode" msgstr "Erreur de traitement du Code-barre" -#: src/components/barcodes/BarcodeScanDialog.tsx:167 +#: src/components/barcodes/BarcodeScanDialog.tsx:183 #: src/pages/Index/Scan.tsx:129 msgid "Failed to scan barcode" msgstr "Échec de la numérisation du code-barres" @@ -714,10 +740,10 @@ msgstr "Impossible de lier le code-barre" #: src/components/barcodes/QRCode.tsx:179 #: src/pages/part/PartDetail.tsx:521 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:222 -#: src/pages/sales/ReturnOrderDetail.tsx:188 -#: src/pages/sales/SalesOrderDetail.tsx:181 -#: src/pages/sales/SalesOrderShipmentDetail.tsx:122 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:223 +#: src/pages/sales/ReturnOrderDetail.tsx:189 +#: src/pages/sales/SalesOrderDetail.tsx:182 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:120 #: src/pages/stock/StockDetail.tsx:186 msgid "Link" msgstr "Lien" @@ -728,7 +754,7 @@ msgstr "Ceci supprimera le lien vers le code-barres associé" #: src/components/barcodes/QRCode.tsx:205 #: src/components/items/ActionDropdown.tsx:192 -#: src/forms/PurchaseOrderForms.tsx:554 +#: src/forms/PurchaseOrderForms.tsx:606 msgid "Unlink Barcode" msgstr "Délier le code-barre" @@ -829,14 +855,14 @@ msgstr "Vous allez être redirigé vers le fournisseur pour d'autres actions." #~ msgid "Scan QR code" #~ msgstr "Scan QR code" -#: src/components/buttons/ScanButton.tsx:19 -msgid "Open Barcode Scanner" -msgstr "Ouvrir le lecteur de code-barres" - #: src/components/buttons/ScanButton.tsx:20 #~ msgid "Open QR code scanner" #~ msgstr "Open QR code scanner" +#: src/components/buttons/ScanButton.tsx:32 +msgid "Open Barcode Scanner" +msgstr "Ouvrir le lecteur de code-barres" + #: src/components/buttons/SpotlightButton.tsx:12 msgid "Open spotlight" msgstr "Ouvrir Spotlight" @@ -1059,7 +1085,7 @@ msgid "Show the number of sales orders which are assigned to you" msgstr "Afficher le nombre de commandes de vente qui vous sont assignées" #: src/components/dashboard/DashboardWidgetLibrary.tsx:129 -#: src/pages/sales/SalesIndex.tsx:105 +#: src/pages/sales/SalesIndex.tsx:87 msgid "Pending Shipments" msgstr "" @@ -1210,12 +1236,18 @@ msgid "Remove the associated image from this item?" msgstr "Supprimer l'image associée de cet élément ?" #: src/components/details/DetailsImage.tsx:83 -#: src/forms/StockForms.tsx:888 +#: src/forms/StockForms.tsx:895 #: src/pages/Index/Settings/AccountSettings/MFASettings.tsx:324 #: src/pages/Index/Settings/AccountSettings/MFASettings.tsx:415 #: src/pages/Index/Settings/AccountSettings/MFASettings.tsx:884 #: src/pages/Index/Settings/AccountSettings/MFASettings.tsx:903 #: src/pages/Index/Settings/AccountSettings/SecurityContent.tsx:254 +#: src/tables/build/BuildAllocatedStockTable.tsx:178 +#: src/tables/build/BuildAllocatedStockTable.tsx:258 +#: src/tables/build/BuildLineTable.tsx:111 +#: src/tables/build/BuildLineTable.tsx:665 +#: src/tables/sales/SalesOrderAllocationTable.tsx:224 +#: src/tables/sales/SalesOrderAllocationTable.tsx:247 msgid "Remove" msgstr "Supprimer" @@ -1241,12 +1273,12 @@ msgid "Upload Error" msgstr "Erreur de téléchargement" #: src/components/details/DetailsImage.tsx:250 -#: src/components/forms/fields/TextField.tsx:65 +#: src/components/forms/fields/AutoFillRightSection.tsx:34 msgid "Clear" msgstr "Effacer" #: src/components/details/DetailsImage.tsx:256 -#: src/components/forms/ApiForm.tsx:677 +#: src/components/forms/ApiForm.tsx:696 #: src/contexts/ThemeContext.tsx:44 #: src/pages/Index/Settings/AccountSettings/MFASettings.tsx:149 #: src/pages/Index/Settings/AccountSettings/MFASettings.tsx:568 @@ -1499,8 +1531,8 @@ msgstr "Erreur serveur" msgid "A server error occurred" msgstr "Une erreur serveur s'est produite" -#: src/components/forms/ApiForm.tsx:103 -#: src/components/forms/ApiForm.tsx:594 +#: src/components/forms/ApiForm.tsx:107 +#: src/components/forms/ApiForm.tsx:613 msgid "Form Error" msgstr "Erreur de formulaire" @@ -1508,11 +1540,11 @@ msgstr "Erreur de formulaire" #~ msgid "Form Errors Exist" #~ msgstr "Form Errors Exist" -#: src/components/forms/ApiForm.tsx:604 +#: src/components/forms/ApiForm.tsx:623 msgid "Errors exist for one or more form fields" msgstr "Il existe des erreurs pour un ou plusieurs champs du formulaire" -#: src/components/forms/ApiForm.tsx:715 +#: src/components/forms/ApiForm.tsx:734 #: src/hooks/UseForm.tsx:133 #: src/tables/plugin/PluginListTable.tsx:204 msgid "Update" @@ -1698,15 +1730,14 @@ msgstr "Serveur" #: src/components/forms/InstanceOptions.tsx:124 #: src/components/plugins/PluginDrawer.tsx:68 #: src/pages/Index/Settings/AdminCenter/UnitManagementPanel.tsx:19 -#: src/pages/part/CategoryDetail.tsx:88 +#: src/pages/part/CategoryDetail.tsx:91 #: src/pages/part/PartDetail.tsx:446 #: src/pages/stock/LocationDetail.tsx:82 #: src/tables/machine/MachineTypeTable.tsx:67 -#: src/tables/machine/MachineTypeTable.tsx:151 -#: src/tables/machine/MachineTypeTable.tsx:254 -#: src/tables/machine/MachineTypeTable.tsx:357 +#: src/tables/machine/MachineTypeTable.tsx:149 +#: src/tables/machine/MachineTypeTable.tsx:252 +#: src/tables/machine/MachineTypeTable.tsx:355 #: src/tables/plugin/PluginErrorTable.tsx:33 -#: src/tables/purchasing/ManufacturerPartParameterTable.tsx:36 #: src/tables/settings/ApiTokenTable.tsx:57 #: src/tables/settings/GroupTable.tsx:95 #: src/tables/settings/GroupTable.tsx:148 @@ -1769,7 +1800,7 @@ msgstr "Sauvegarder la sélection de l'hébergement" #~ msgstr "State: <0>worker ({0}), <1>plugins{1}" #: src/components/forms/InstanceOptions.tsx:118 -#: src/pages/Index/Settings/SystemSettings.tsx:45 +#: src/pages/Index/Settings/SystemSettings.tsx:46 msgid "Server" msgstr "Serveur" @@ -1793,6 +1824,8 @@ msgid "Plugins" msgstr "Extensions" #: src/components/forms/InstanceOptions.tsx:143 +#: src/tables/general/ParameterTemplateTable.tsx:153 +#: src/tables/general/ParameterTemplateTable.tsx:188 #: src/tables/part/PartTestTemplateTable.tsx:117 #: src/tables/settings/TemplateTable.tsx:251 #: src/tables/settings/TemplateTable.tsx:362 @@ -1817,10 +1850,14 @@ msgstr "Arrêté" msgid "Running" msgstr "En cours d'exécution" -#: src/components/forms/fields/ApiFormField.tsx:233 +#: src/components/forms/fields/ApiFormField.tsx:197 msgid "Select file to upload" msgstr "" +#: src/components/forms/fields/AutoFillRightSection.tsx:47 +msgid "Accept suggested value" +msgstr "" + #: src/components/forms/fields/DateField.tsx:76 msgid "Select date" msgstr "" @@ -1853,13 +1890,13 @@ msgstr "Sélectionnez le pack" msgid "{0} icons" msgstr "Icônes {0}" -#: src/components/forms/fields/RelatedModelField.tsx:409 +#: src/components/forms/fields/RelatedModelField.tsx:480 #: src/components/modals/AboutInvenTreeModal.tsx:96 #: src/pages/Index/Settings/AccountSettings/SecurityContent.tsx:383 msgid "Loading" msgstr "Chargement" -#: src/components/forms/fields/RelatedModelField.tsx:411 +#: src/components/forms/fields/RelatedModelField.tsx:482 msgid "No results found" msgstr "Aucun résultat trouvé" @@ -1875,10 +1912,6 @@ msgstr "Aucune entrée n'est disponible" msgid "Add new row" msgstr "Ajouter une nouvelle ligne" -#: src/components/forms/fields/TextField.tsx:82 -msgid "Accept suggested value" -msgstr "" - #: src/components/images/DetailsImage.tsx:252 #~ msgid "Select image" #~ msgstr "Select image" @@ -2036,7 +2069,7 @@ msgstr "Les données on était correctement importés" #: src/components/importer/ImporterDrawer.tsx:109 #: src/components/modals/AboutInvenTreeModal.tsx:205 #: src/components/modals/ServerInfoModal.tsx:134 -#: src/components/wizards/ImportPartWizard.tsx:772 +#: src/components/wizards/ImportPartWizard.tsx:773 #: src/forms/BomForms.tsx:132 #: src/pages/Index/Settings/AccountSettings/MFASettings.tsx:685 msgid "Close" @@ -2199,7 +2232,7 @@ msgid "Change" msgstr "Modifier" #: src/components/items/RoleTable.tsx:150 -#: src/forms/StockForms.tsx:927 +#: src/forms/StockForms.tsx:941 #: src/tables/stock/StockItemTestResultTable.tsx:367 msgid "Add" msgstr "Ajouter" @@ -2222,11 +2255,11 @@ msgstr "Aucun élément" #: src/components/items/TransferList.tsx:161 #: src/components/render/Stock.tsx:102 -#: src/pages/part/PartDetail.tsx:994 +#: src/pages/part/PartDetail.tsx:1009 #: src/pages/stock/StockDetail.tsx:265 #: src/pages/stock/StockDetail.tsx:942 -#: src/tables/build/BuildAllocatedStockTable.tsx:135 -#: src/tables/build/BuildLineTable.tsx:192 +#: src/tables/build/BuildAllocatedStockTable.tsx:132 +#: src/tables/build/BuildLineTable.tsx:193 #: src/tables/part/PartTable.tsx:137 #: src/tables/stock/StockItemTable.tsx:182 #: src/tables/stock/StockItemTable.tsx:343 @@ -2373,7 +2406,7 @@ msgid "Database" msgstr "Base de données" #: src/components/modals/ServerInfoModal.tsx:49 -#: src/components/nav/Alerts.tsx:118 +#: src/components/nav/Alerts.tsx:120 msgid "Debug Mode" msgstr "Mode Debug" @@ -2414,7 +2447,7 @@ msgid "Issues detected" msgstr "Problème détecté" #: src/components/modals/ServerInfoModal.tsx:102 -#: src/components/nav/Alerts.tsx:125 +#: src/components/nav/Alerts.tsx:127 msgid "Background Worker" msgstr "Travail en arrière-plan" @@ -2436,7 +2469,7 @@ msgstr "Configuration email" #~ msgstr "Email settings not configured" #: src/components/modals/ServerInfoModal.tsx:120 -#: src/components/nav/Alerts.tsx:141 +#: src/components/nav/Alerts.tsx:143 msgid "Email settings not configured." msgstr "Les paramètres du courrier électronique ne sont pas configurés." @@ -2444,43 +2477,47 @@ msgstr "Les paramètres du courrier électronique ne sont pas configurés." msgid "Alerts" msgstr "Alertes" -#: src/components/nav/Alerts.tsx:120 +#: src/components/nav/Alerts.tsx:97 +msgid "No issues detected" +msgstr "" + +#: src/components/nav/Alerts.tsx:122 msgid "The server is running in debug mode." msgstr "Le serveur fonctionne en mode débogage." -#: src/components/nav/Alerts.tsx:127 +#: src/components/nav/Alerts.tsx:129 msgid "The background worker process is not running." msgstr "Le processus de travail en arrière-plan n'est pas en cours d'exécution." -#: src/components/nav/Alerts.tsx:132 +#: src/components/nav/Alerts.tsx:134 msgid "Server Restart" msgstr "Redémarrage du serveur" -#: src/components/nav/Alerts.tsx:134 +#: src/components/nav/Alerts.tsx:136 msgid "The server requires a restart to apply changes." msgstr "Le serveur nécessite un redémarrage pour appliquer les modifications." -#: src/components/nav/Alerts.tsx:139 +#: src/components/nav/Alerts.tsx:141 msgid "Email settings" msgstr "Paramètres de messagerie" -#: src/components/nav/Alerts.tsx:146 +#: src/components/nav/Alerts.tsx:148 msgid "Database Migrations" msgstr "Migrations de base de données" -#: src/components/nav/Alerts.tsx:148 +#: src/components/nav/Alerts.tsx:150 msgid "There are pending database migrations." msgstr "Il y a des migrations de base de données en attente." -#: src/components/nav/Alerts.tsx:163 +#: src/components/nav/Alerts.tsx:165 msgid "Learn more about {code}" msgstr "En savoir plus sur {code}" #: src/components/nav/Header.tsx:188 #: src/components/nav/NavigationDrawer.tsx:134 #: src/components/nav/NotificationDrawer.tsx:181 -#: src/pages/Index/Settings/SystemSettings.tsx:121 -#: src/pages/Index/Settings/UserSettings.tsx:106 +#: src/pages/Index/Settings/SystemSettings.tsx:122 +#: src/pages/Index/Settings/UserSettings.tsx:107 #: src/pages/Notifications.tsx:45 #: src/pages/Notifications.tsx:130 msgid "Notifications" @@ -2511,8 +2548,8 @@ msgstr "Paramètres" #: src/components/nav/NavigationDrawer.tsx:140 #: src/components/nav/SettingsHeader.tsx:40 #: src/defaults/actions.tsx:92 -#: src/pages/Index/Settings/UserSettings.tsx:141 -#: src/pages/Index/Settings/UserSettings.tsx:145 +#: src/pages/Index/Settings/UserSettings.tsx:142 +#: src/pages/Index/Settings/UserSettings.tsx:146 msgid "User Settings" msgstr "Paramètres de l'utilisateur" @@ -2529,8 +2566,8 @@ msgstr "Paramètres de l'utilisateur" #: src/components/nav/NavigationDrawer.tsx:146 #: src/components/nav/SettingsHeader.tsx:41 #: src/defaults/actions.tsx:144 -#: src/pages/Index/Settings/SystemSettings.tsx:348 -#: src/pages/Index/Settings/SystemSettings.tsx:353 +#: src/pages/Index/Settings/SystemSettings.tsx:354 +#: src/pages/Index/Settings/SystemSettings.tsx:359 msgid "System Settings" msgstr "Les paramètres du système" @@ -2577,11 +2614,11 @@ msgstr "Se déconnecter" #: src/components/nav/NavigationDrawer.tsx:77 #: src/components/render/Part.tsx:36 -#: src/components/wizards/ImportPartWizard.tsx:807 +#: src/components/wizards/ImportPartWizard.tsx:808 #: src/defaults/links.tsx:42 #: src/forms/StockForms.tsx:794 -#: src/pages/Index/Settings/SystemSettings.tsx:224 -#: src/pages/part/PartDetail.tsx:804 +#: src/pages/Index/Settings/SystemSettings.tsx:230 +#: src/pages/part/PartDetail.tsx:793 #: src/pages/stock/LocationDetail.tsx:390 #: src/pages/stock/LocationDetail.tsx:420 #: src/pages/stock/StockDetail.tsx:642 @@ -2591,29 +2628,29 @@ msgstr "Stock" #: src/components/nav/NavigationDrawer.tsx:84 #: src/defaults/links.tsx:48 -#: src/pages/build/BuildDetail.tsx:748 -#: src/pages/build/BuildIndex.tsx:102 +#: src/pages/build/BuildDetail.tsx:753 +#: src/pages/build/BuildIndex.tsx:101 msgid "Manufacturing" msgstr "Fabrication" #: src/components/nav/NavigationDrawer.tsx:91 #: src/defaults/links.tsx:54 #: src/pages/company/ManufacturerDetail.tsx:9 -#: src/pages/company/ManufacturerPartDetail.tsx:276 +#: src/pages/company/ManufacturerPartDetail.tsx:267 #: src/pages/company/SupplierDetail.tsx:9 -#: src/pages/company/SupplierPartDetail.tsx:360 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:553 -#: src/pages/purchasing/PurchasingIndex.tsx:122 +#: src/pages/company/SupplierPartDetail.tsx:365 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:558 +#: src/pages/purchasing/PurchasingIndex.tsx:212 msgid "Purchasing" msgstr "Achat en cours" #: src/components/nav/NavigationDrawer.tsx:98 #: src/defaults/links.tsx:60 #: src/pages/company/CustomerDetail.tsx:9 -#: src/pages/sales/ReturnOrderDetail.tsx:554 -#: src/pages/sales/SalesIndex.tsx:153 -#: src/pages/sales/SalesOrderDetail.tsx:619 -#: src/pages/sales/SalesOrderShipmentDetail.tsx:480 +#: src/pages/sales/ReturnOrderDetail.tsx:559 +#: src/pages/sales/SalesIndex.tsx:168 +#: src/pages/sales/SalesOrderDetail.tsx:624 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:448 msgid "Sales" msgstr "Ventes" @@ -2667,21 +2704,21 @@ msgid "Remove search group" msgstr "Supprimer le groupe de recherche" #: src/components/nav/SearchDrawer.tsx:288 -#: src/pages/company/ManufacturerPartDetail.tsx:192 -#: src/pages/part/PartDetail.tsx:862 +#: src/pages/company/ManufacturerPartDetail.tsx:179 +#: src/pages/part/PartDetail.tsx:851 #: src/pages/part/PartSupplierDetail.tsx:15 -#: src/pages/purchasing/PurchasingIndex.tsx:81 +#: src/pages/purchasing/PurchasingIndex.tsx:100 msgid "Suppliers" msgstr "Fournisseurs" #: src/components/nav/SearchDrawer.tsx:298 #: src/pages/part/PartSupplierDetail.tsx:23 -#: src/pages/purchasing/PurchasingIndex.tsx:98 +#: src/pages/purchasing/PurchasingIndex.tsx:149 msgid "Manufacturers" msgstr "Fabricants" #: src/components/nav/SearchDrawer.tsx:308 -#: src/pages/sales/SalesIndex.tsx:138 +#: src/pages/sales/SalesIndex.tsx:133 msgid "Customers" msgstr "Clients" @@ -2772,21 +2809,21 @@ msgstr "Informations sur le plugin" #: src/components/plugins/PluginDrawer.tsx:73 #: src/forms/selectionListFields.tsx:102 -#: src/pages/build/BuildDetail.tsx:250 -#: src/pages/company/CompanyDetail.tsx:93 -#: src/pages/company/ManufacturerPartDetail.tsx:93 -#: src/pages/company/ManufacturerPartDetail.tsx:120 -#: src/pages/company/SupplierPartDetail.tsx:145 -#: src/pages/part/CategoryDetail.tsx:108 +#: src/pages/build/BuildDetail.tsx:251 +#: src/pages/company/CompanyDetail.tsx:94 +#: src/pages/company/ManufacturerPartDetail.tsx:92 +#: src/pages/company/ManufacturerPartDetail.tsx:119 +#: src/pages/company/SupplierPartDetail.tsx:146 +#: src/pages/part/CategoryDetail.tsx:111 #: src/pages/part/PartDetail.tsx:460 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:162 -#: src/pages/sales/ReturnOrderDetail.tsx:129 -#: src/pages/sales/SalesOrderDetail.tsx:119 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:163 +#: src/pages/sales/ReturnOrderDetail.tsx:130 +#: src/pages/sales/SalesOrderDetail.tsx:120 #: src/pages/stock/LocationDetail.tsx:102 #: src/tables/ColumnRenderers.tsx:278 -#: src/tables/build/BuildAllocatedStockTable.tsx:91 -#: src/tables/machine/MachineTypeTable.tsx:161 -#: src/tables/machine/MachineTypeTable.tsx:257 +#: src/tables/build/BuildAllocatedStockTable.tsx:88 +#: src/tables/machine/MachineTypeTable.tsx:159 +#: src/tables/machine/MachineTypeTable.tsx:255 #: src/tables/plugin/PluginListTable.tsx:110 msgid "Description" msgstr "Description" @@ -2814,7 +2851,7 @@ msgstr "Date" #: src/tables/company/CompanyTable.tsx:91 #: src/tables/machine/MachineListTable.tsx:384 #: src/tables/machine/MachineListTable.tsx:799 -#: src/tables/part/ParametricPartTable.tsx:354 +#: src/tables/part/ParametricPartTable.tsx:19 #: src/tables/part/PartTable.tsx:197 #: src/tables/part/PartVariantTable.tsx:15 #: src/tables/plugin/PluginListTable.tsx:96 @@ -2836,8 +2873,8 @@ msgid "Installation Path" msgstr "Chemin d'installation" #: src/components/plugins/PluginDrawer.tsx:116 -#: src/tables/machine/MachineTypeTable.tsx:184 -#: src/tables/machine/MachineTypeTable.tsx:293 +#: src/tables/machine/MachineTypeTable.tsx:182 +#: src/tables/machine/MachineTypeTable.tsx:291 #: src/tables/plugin/PluginListTable.tsx:101 #: src/tables/plugin/PluginListTable.tsx:417 msgid "Builtin" @@ -2849,8 +2886,8 @@ msgstr "Paquet" #: src/components/plugins/PluginDrawer.tsx:133 #: src/pages/Index/Settings/AdminCenter/PluginManagementPanel.tsx:55 -#: src/pages/Index/Settings/SystemSettings.tsx:331 -#: src/pages/Index/Settings/UserSettings.tsx:128 +#: src/pages/Index/Settings/SystemSettings.tsx:337 +#: src/pages/Index/Settings/UserSettings.tsx:129 msgid "Plugin Settings" msgstr "Paramètres du plug-in" @@ -2911,7 +2948,7 @@ msgstr "Une erreur a eu lieu pendant le chargement du contenu du plugin" #~ msgid "Unknown model: {model}" #~ msgstr "Unknown model: {model}" -#: src/components/render/Instance.tsx:249 +#: src/components/render/Instance.tsx:247 msgid "Unknown model: {model_name}" msgstr "Modèle inconnu: {model_name}" @@ -2939,10 +2976,10 @@ msgstr "Livraison" #: src/components/render/Part.tsx:28 #: src/components/render/Plugin.tsx:17 #: src/components/render/User.tsx:37 -#: src/pages/company/CompanyDetail.tsx:323 -#: src/pages/company/SupplierPartDetail.tsx:373 +#: src/pages/company/CompanyDetail.tsx:328 +#: src/pages/company/SupplierPartDetail.tsx:378 #: src/pages/core/UserDetail.tsx:211 -#: src/pages/part/PartDetail.tsx:1027 +#: src/pages/part/PartDetail.tsx:1048 #: src/tables/ColumnRenderers.tsx:410 msgid "Inactive" msgstr "Inactif" @@ -2962,11 +2999,11 @@ msgstr "Aucun stock" #: src/components/render/Part.tsx:47 #: src/components/wizards/OrderPartsWizard.tsx:135 -#: src/pages/company/SupplierPartDetail.tsx:197 -#: src/pages/company/SupplierPartDetail.tsx:394 -#: src/pages/part/PartDetail.tsx:1015 +#: src/pages/company/SupplierPartDetail.tsx:198 +#: src/pages/company/SupplierPartDetail.tsx:399 +#: src/pages/part/PartDetail.tsx:1030 #: src/tables/bom/BomTable.tsx:444 -#: src/tables/build/BuildLineTable.tsx:222 +#: src/tables/build/BuildLineTable.tsx:223 #: src/tables/part/PartTable.tsx:108 msgid "On Order" msgstr "En Commande" @@ -2974,9 +3011,9 @@ msgstr "En Commande" #: src/components/render/Part.tsx:55 #: src/components/wizards/OrderPartsWizard.tsx:141 #: src/pages/part/PartDetail.tsx:587 -#: src/pages/part/PartDetail.tsx:1021 +#: src/pages/part/PartDetail.tsx:1036 #: src/pages/stock/StockDetail.tsx:925 -#: src/tables/part/PartTestResultTable.tsx:297 +#: src/tables/part/PartTestResultTable.tsx:305 #: src/tables/stock/StockItemTable.tsx:359 msgid "In Production" msgstr "En Production" @@ -2987,7 +3024,7 @@ msgid "Details" msgstr "Détails" #: src/components/render/Part.tsx:112 -#: src/components/wizards/ImportPartWizard.tsx:806 +#: src/components/wizards/ImportPartWizard.tsx:807 #: src/pages/part/PartDetail.tsx:487 #: src/tables/ColumnRenderers.tsx:233 #: src/tables/ColumnRenderers.tsx:242 @@ -3000,16 +3037,16 @@ msgstr "Catégorie" #: src/components/render/Stock.tsx:114 #: src/components/render/Stock.tsx:132 #: src/forms/BuildForms.tsx:795 -#: src/forms/PurchaseOrderForms.tsx:595 +#: src/forms/PurchaseOrderForms.tsx:647 #: src/forms/StockForms.tsx:792 #: src/forms/StockForms.tsx:839 -#: src/forms/StockForms.tsx:885 -#: src/forms/StockForms.tsx:924 -#: src/forms/StockForms.tsx:960 -#: src/forms/StockForms.tsx:1003 -#: src/forms/StockForms.tsx:1047 -#: src/forms/StockForms.tsx:1095 -#: src/forms/StockForms.tsx:1139 +#: src/forms/StockForms.tsx:892 +#: src/forms/StockForms.tsx:938 +#: src/forms/StockForms.tsx:976 +#: src/forms/StockForms.tsx:1019 +#: src/forms/StockForms.tsx:1063 +#: src/forms/StockForms.tsx:1111 +#: src/forms/StockForms.tsx:1155 #: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:88 #: src/pages/core/UserDetail.tsx:158 #: src/pages/stock/StockDetail.tsx:298 @@ -3023,7 +3060,7 @@ msgstr "Emplacement" #: src/components/render/Stock.tsx:99 #: src/pages/stock/StockDetail.tsx:198 #: src/pages/stock/StockDetail.tsx:930 -#: src/tables/build/BuildAllocatedStockTable.tsx:121 +#: src/tables/build/BuildAllocatedStockTable.tsx:118 #: src/tables/build/BuildOutputTable.tsx:107 #: src/tables/sales/SalesOrderAllocationTable.tsx:142 msgid "Serial Number" @@ -3034,9 +3071,9 @@ msgstr "Numéro de série" #: src/forms/BuildForms.tsx:240 #: src/forms/BuildForms.tsx:634 #: src/forms/BuildForms.tsx:797 -#: src/forms/PurchaseOrderForms.tsx:801 +#: src/forms/PurchaseOrderForms.tsx:853 #: src/forms/ReturnOrderForms.tsx:243 -#: src/forms/SalesOrderForms.tsx:308 +#: src/forms/SalesOrderForms.tsx:387 #: src/forms/StockForms.tsx:841 #: src/pages/part/PartStockHistoryDetail.tsx:56 #: src/pages/part/PartStockHistoryDetail.tsx:210 @@ -3046,9 +3083,9 @@ msgstr "Numéro de série" #: src/pages/part/pricing/PriceBreakPanel.tsx:172 #: src/pages/stock/StockDetail.tsx:258 #: src/pages/stock/StockDetail.tsx:936 -#: src/tables/build/BuildLineTable.tsx:86 +#: src/tables/build/BuildLineTable.tsx:83 #: src/tables/part/PartPurchaseOrdersTable.tsx:94 -#: src/tables/part/PartTestResultTable.tsx:269 +#: src/tables/part/PartTestResultTable.tsx:277 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:175 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:206 #: src/tables/purchasing/SupplierPriceBreakTable.tsx:69 @@ -3063,14 +3100,14 @@ msgstr "Quantité" #: src/forms/BuildForms.tsx:474 #: src/forms/StockForms.tsx:793 #: src/forms/StockForms.tsx:840 -#: src/forms/StockForms.tsx:886 -#: src/forms/StockForms.tsx:925 -#: src/forms/StockForms.tsx:961 -#: src/forms/StockForms.tsx:1004 -#: src/forms/StockForms.tsx:1048 -#: src/forms/StockForms.tsx:1096 -#: src/forms/StockForms.tsx:1140 -#: src/tables/build/BuildLineTable.tsx:96 +#: src/forms/StockForms.tsx:893 +#: src/forms/StockForms.tsx:939 +#: src/forms/StockForms.tsx:977 +#: src/forms/StockForms.tsx:1020 +#: src/forms/StockForms.tsx:1064 +#: src/forms/StockForms.tsx:1112 +#: src/forms/StockForms.tsx:1156 +#: src/tables/build/BuildLineTable.tsx:93 msgid "Batch" msgstr "Lot" @@ -3306,10 +3343,6 @@ msgstr "Aucun paramètre spécifié" #~ msgid "Part category updated" #~ msgstr "Part category updated" -#: src/components/tables/part/PartParameterTable.tsx:41 -#~ msgid "Parameter" -#~ msgstr "Parameter" - #: src/components/tables/part/PartParameterTable.tsx:114 #~ msgid "Part parameter updated" #~ msgstr "Part parameter updated" @@ -3571,15 +3604,16 @@ msgid "Already Imported" msgstr "" #: src/components/wizards/ImportPartWizard.tsx:205 -#: src/pages/company/CompanyDetail.tsx:136 +#: src/pages/company/CompanyDetail.tsx:137 #: src/pages/company/SupplierDetail.tsx:8 -#: src/pages/company/SupplierPartDetail.tsx:130 -#: src/pages/company/SupplierPartDetail.tsx:235 -#: src/pages/company/SupplierPartDetail.tsx:364 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:156 +#: src/pages/company/SupplierPartDetail.tsx:131 +#: src/pages/company/SupplierPartDetail.tsx:236 +#: src/pages/company/SupplierPartDetail.tsx:369 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:157 #: src/tables/Filter.tsx:360 #: src/tables/company/CompanyTable.tsx:96 #: src/tables/part/PartPurchaseOrdersTable.tsx:43 +#: src/tables/purchasing/PurchaseOrderParametricTable.tsx:34 #: src/tables/purchasing/PurchaseOrderTable.tsx:109 #: src/tables/purchasing/SupplierPriceBreakTable.tsx:40 msgid "Supplier" @@ -3648,7 +3682,7 @@ msgid "Next" msgstr "" #: src/components/wizards/ImportPartWizard.tsx:540 -#: src/pages/part/PartDetail.tsx:1046 +#: src/pages/part/PartDetail.tsx:1067 #: src/tables/part/PartTable.tsx:408 msgid "Edit Part" msgstr "Modifier la pièce" @@ -3669,28 +3703,28 @@ msgstr "" msgid "Import" msgstr "" -#: src/components/wizards/ImportPartWizard.tsx:691 +#: src/components/wizards/ImportPartWizard.tsx:692 msgid "Parameters created successfully!" msgstr "" -#: src/components/wizards/ImportPartWizard.tsx:719 +#: src/components/wizards/ImportPartWizard.tsx:720 msgid "Failed to create parameters, please fix the errors and try again" msgstr "" #. placeholder {0}: supplierPart?.supplier -#: src/components/wizards/ImportPartWizard.tsx:739 +#: src/components/wizards/ImportPartWizard.tsx:740 msgid "Part imported successfully from supplier {0}." msgstr "" -#: src/components/wizards/ImportPartWizard.tsx:752 +#: src/components/wizards/ImportPartWizard.tsx:753 msgid "Open Part" msgstr "" -#: src/components/wizards/ImportPartWizard.tsx:759 +#: src/components/wizards/ImportPartWizard.tsx:760 msgid "Open Supplier Part" msgstr "" -#: src/components/wizards/ImportPartWizard.tsx:766 +#: src/components/wizards/ImportPartWizard.tsx:767 msgid "Open Manufacturer Part" msgstr "" @@ -3699,25 +3733,19 @@ msgstr "" #~ msgid "Import Part" #~ msgstr "Import Part" -#: src/components/wizards/ImportPartWizard.tsx:802 +#: src/components/wizards/ImportPartWizard.tsx:803 msgid "Import Supplier Part" msgstr "" -#: src/components/wizards/ImportPartWizard.tsx:804 +#: src/components/wizards/ImportPartWizard.tsx:805 msgid "Search Supplier Part" msgstr "" -#: src/components/wizards/ImportPartWizard.tsx:806 -#: src/pages/company/ManufacturerPartDetail.tsx:166 -#: src/pages/part/PartDetail.tsx:793 -msgid "Parameters" -msgstr "Paramètres" - -#: src/components/wizards/ImportPartWizard.tsx:806 +#: src/components/wizards/ImportPartWizard.tsx:807 msgid "Confirm import" msgstr "" -#: src/components/wizards/ImportPartWizard.tsx:808 +#: src/components/wizards/ImportPartWizard.tsx:809 msgid "Done" msgstr "" @@ -3738,24 +3766,24 @@ msgid "Sales Requirements" msgstr "" #: src/components/wizards/OrderPartsWizard.tsx:129 -#: src/forms/StockForms.tsx:887 -#: src/forms/StockForms.tsx:926 -#: src/forms/StockForms.tsx:962 -#: src/forms/StockForms.tsx:1005 -#: src/forms/StockForms.tsx:1049 -#: src/forms/StockForms.tsx:1097 -#: src/forms/StockForms.tsx:1141 -#: src/pages/company/SupplierPartDetail.tsx:190 -#: src/pages/company/SupplierPartDetail.tsx:378 +#: src/forms/StockForms.tsx:894 +#: src/forms/StockForms.tsx:940 +#: src/forms/StockForms.tsx:978 +#: src/forms/StockForms.tsx:1021 +#: src/forms/StockForms.tsx:1065 +#: src/forms/StockForms.tsx:1113 +#: src/forms/StockForms.tsx:1157 +#: src/pages/company/SupplierPartDetail.tsx:191 +#: src/pages/company/SupplierPartDetail.tsx:383 #: src/pages/part/PartDetail.tsx:534 -#: src/pages/part/PartDetail.tsx:984 +#: src/pages/part/PartDetail.tsx:999 #: src/tables/Filter.tsx:92 #: src/tables/purchasing/SupplierPartTable.tsx:230 msgid "In Stock" msgstr "En Stock" #: src/components/wizards/OrderPartsWizard.tsx:146 -#: src/tables/build/BuildLineTable.tsx:404 +#: src/tables/build/BuildLineTable.tsx:405 msgid "Required Quantity" msgstr "Quantité requise" @@ -3847,7 +3875,7 @@ msgid "Please correct the errors in the selected parts" msgstr "Veuillez corriger les erreurs dans la sélection des pièces" #: src/components/wizards/OrderPartsWizard.tsx:587 -#: src/tables/build/BuildLineTable.tsx:815 +#: src/tables/build/BuildLineTable.tsx:822 #: src/tables/part/PartTable.tsx:522 #: src/tables/sales/SalesOrderLineItemTable.tsx:370 msgid "Order Parts" @@ -4349,9 +4377,9 @@ msgstr "Alternative ajoutée" #: src/forms/BuildForms.tsx:333 #: src/forms/BuildForms.tsx:408 #: src/forms/BuildForms.tsx:685 -#: src/tables/build/BuildAllocatedStockTable.tsx:150 +#: src/tables/build/BuildAllocatedStockTable.tsx:147 #: src/tables/build/BuildOutputTable.tsx:582 -#: src/tables/part/PartTestResultTable.tsx:272 +#: src/tables/part/PartTestResultTable.tsx:280 msgid "Build Output" msgstr "Sortie de la construction" @@ -4362,22 +4390,22 @@ msgstr "" #: src/forms/BuildForms.tsx:336 #: src/forms/BuildForms.tsx:411 #: src/forms/BuildForms.tsx:475 -#: src/forms/PurchaseOrderForms.tsx:717 +#: src/forms/PurchaseOrderForms.tsx:769 #: src/forms/ReturnOrderForms.tsx:197 #: src/forms/ReturnOrderForms.tsx:244 #: src/forms/StockForms.tsx:712 #: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:87 -#: src/pages/build/BuildDetail.tsx:222 +#: src/pages/build/BuildDetail.tsx:223 #: src/pages/core/UserDetail.tsx:151 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:168 -#: src/pages/sales/ReturnOrderDetail.tsx:135 -#: src/pages/sales/SalesOrderDetail.tsx:125 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:169 +#: src/pages/sales/ReturnOrderDetail.tsx:136 +#: src/pages/sales/SalesOrderDetail.tsx:126 #: src/pages/stock/StockDetail.tsx:170 #: src/tables/Filter.tsx:274 #: src/tables/build/BuildOutputTable.tsx:404 #: src/tables/machine/MachineListTable.tsx:387 #: src/tables/part/PartPurchaseOrdersTable.tsx:38 -#: src/tables/part/PartTestResultTable.tsx:309 +#: src/tables/part/PartTestResultTable.tsx:317 #: src/tables/sales/ReturnOrderLineItemTable.tsx:138 #: src/tables/sales/ReturnOrderLineItemTable.tsx:176 #: src/tables/settings/CustomStateTable.tsx:79 @@ -4443,18 +4471,19 @@ msgid "Build outputs have been cancelled" msgstr "Les résultats de construction ont été annulés" #: src/forms/BuildForms.tsx:631 -#: src/pages/build/BuildDetail.tsx:207 -#: src/pages/company/ManufacturerPartDetail.tsx:85 -#: src/pages/company/SupplierPartDetail.tsx:96 +#: src/pages/build/BuildDetail.tsx:208 +#: src/pages/company/ManufacturerPartDetail.tsx:84 +#: src/pages/company/SupplierPartDetail.tsx:97 #: src/pages/part/PartDetail.tsx:453 #: src/pages/stock/StockDetail.tsx:153 #: src/tables/bom/BomTable.tsx:134 #: src/tables/bom/UsedInTable.tsx:40 -#: src/tables/build/BuildAllocatedStockTable.tsx:108 -#: src/tables/build/BuildLineTable.tsx:336 +#: src/tables/build/BuildAllocatedStockTable.tsx:105 +#: src/tables/build/BuildLineTable.tsx:337 #: src/tables/build/BuildOrderTable.tsx:79 #: src/tables/part/PartSalesAllocationsTable.tsx:61 #: src/tables/part/RelatedPartTable.tsx:73 +#: src/tables/purchasing/ManufacturerPartParametricTable.tsx:21 #: src/tables/purchasing/ManufacturerPartTable.tsx:69 #: src/tables/purchasing/SupplierPartTable.tsx:70 #: src/tables/sales/SalesOrderAllocationTable.tsx:135 @@ -4466,47 +4495,47 @@ msgstr "IPN" #: src/forms/BuildForms.tsx:632 #: src/forms/BuildForms.tsx:796 #: src/forms/BuildForms.tsx:897 -#: src/forms/SalesOrderForms.tsx:306 -#: src/tables/build/BuildAllocatedStockTable.tsx:139 -#: src/tables/build/BuildLineTable.tsx:182 +#: src/forms/SalesOrderForms.tsx:385 +#: src/tables/build/BuildAllocatedStockTable.tsx:136 +#: src/tables/build/BuildLineTable.tsx:183 #: src/tables/sales/SalesOrderLineItemTable.tsx:342 #: src/tables/stock/StockItemTable.tsx:338 msgid "Allocated" msgstr "Allouée" #: src/forms/BuildForms.tsx:667 -#: src/forms/SalesOrderForms.tsx:295 -#: src/pages/build/BuildDetail.tsx:108 -#: src/pages/build/BuildDetail.tsx:326 +#: src/forms/SalesOrderForms.tsx:374 +#: src/pages/build/BuildDetail.tsx:109 +#: src/pages/build/BuildDetail.tsx:327 msgid "Source Location" msgstr "Emplacement d'origine" #: src/forms/BuildForms.tsx:668 -#: src/forms/SalesOrderForms.tsx:296 +#: src/forms/SalesOrderForms.tsx:375 msgid "Select the source location for the stock allocation" msgstr "Sélectionnez l'emplacement de la source pour l'allocation du stock" #: src/forms/BuildForms.tsx:700 -#: src/forms/SalesOrderForms.tsx:336 -#: src/tables/build/BuildLineTable.tsx:574 -#: src/tables/build/BuildLineTable.tsx:731 -#: src/tables/build/BuildLineTable.tsx:830 +#: src/forms/SalesOrderForms.tsx:415 +#: src/tables/build/BuildLineTable.tsx:575 +#: src/tables/build/BuildLineTable.tsx:738 +#: src/tables/build/BuildLineTable.tsx:837 #: src/tables/sales/SalesOrderLineItemTable.tsx:380 #: src/tables/sales/SalesOrderLineItemTable.tsx:406 msgid "Allocate Stock" msgstr "Stock alloué" #: src/forms/BuildForms.tsx:703 -#: src/forms/SalesOrderForms.tsx:341 +#: src/forms/SalesOrderForms.tsx:420 msgid "Stock items allocated" msgstr "Éléments du stock alloués" #: src/forms/BuildForms.tsx:816 #: src/forms/BuildForms.tsx:917 -#: src/tables/build/BuildAllocatedStockTable.tsx:240 -#: src/tables/build/BuildAllocatedStockTable.tsx:272 -#: src/tables/build/BuildLineTable.tsx:741 -#: src/tables/build/BuildLineTable.tsx:864 +#: src/tables/build/BuildAllocatedStockTable.tsx:243 +#: src/tables/build/BuildAllocatedStockTable.tsx:279 +#: src/tables/build/BuildLineTable.tsx:748 +#: src/tables/build/BuildLineTable.tsx:871 msgid "Consume Stock" msgstr "Consommer le stock" @@ -4521,21 +4550,21 @@ msgstr "" #~ msgstr "Stock items consumed" #: src/forms/BuildForms.tsx:853 -#: src/tables/build/BuildLineTable.tsx:514 +#: src/tables/build/BuildLineTable.tsx:515 #: src/tables/part/PartBuildAllocationsTable.tsx:101 msgid "Fully consumed" msgstr "Complétement consommé" #: src/forms/BuildForms.tsx:898 -#: src/tables/build/BuildLineTable.tsx:187 +#: src/tables/build/BuildLineTable.tsx:188 #: src/tables/stock/StockItemTable.tsx:367 msgid "Consumed" msgstr "Consommé" -#: src/forms/CommonForms.tsx:88 -#: src/forms/PurchaseOrderForms.tsx:125 +#: src/forms/CommonForms.tsx:92 +#: src/forms/PurchaseOrderForms.tsx:176 #: src/forms/ReturnOrderForms.tsx:138 -#: src/forms/SalesOrderForms.tsx:164 +#: src/forms/SalesOrderForms.tsx:185 msgid "Select project code for this line item" msgstr "" @@ -4543,16 +4572,16 @@ msgstr "" #~ msgid "Company updated" #~ msgstr "Company updated" -#: src/forms/PartForms.tsx:85 -#: src/forms/PartForms.tsx:207 -#: src/pages/part/CategoryDetail.tsx:124 +#: src/forms/PartForms.tsx:99 +#: src/forms/PartForms.tsx:228 +#: src/pages/part/CategoryDetail.tsx:127 #: src/pages/part/PartDetail.tsx:668 #: src/tables/part/PartCategoryTable.tsx:94 #: src/tables/part/PartTable.tsx:325 msgid "Subscribed" msgstr "Abonné" -#: src/forms/PartForms.tsx:86 +#: src/forms/PartForms.tsx:100 msgid "Subscribe to notifications for this part" msgstr "Suivre les notifications de cette pièce" @@ -4564,156 +4593,156 @@ msgstr "Suivre les notifications de cette pièce" #~ msgid "Part updated" #~ msgstr "Part updated" -#: src/forms/PartForms.tsx:193 +#: src/forms/PartForms.tsx:214 msgid "Parent part category" msgstr "Catégorie de pièce parente" -#: src/forms/PartForms.tsx:208 +#: src/forms/PartForms.tsx:229 msgid "Subscribe to notifications for this category" msgstr "S'abonner aux notifications pour cette catégorie" -#: src/forms/PurchaseOrderForms.tsx:388 -msgid "Assign Batch Code and Serial Numbers" -msgstr "Attribuer un code de lot et des numéros de série" - -#: src/forms/PurchaseOrderForms.tsx:390 -msgid "Assign Batch Code" -msgstr "Attribuer un code de lot" - -#: src/forms/PurchaseOrderForms.tsx:410 -msgid "Choose Location" -msgstr "Choisir l'emplacement" - -#: src/forms/PurchaseOrderForms.tsx:418 -msgid "Item Destination selected" -msgstr "Destination de l'élément sélectionné" - #: src/forms/PurchaseOrderForms.tsx:421 #~ msgid "Assign Batch Code{0}" #~ msgstr "Assign Batch Code{0}" -#: src/forms/PurchaseOrderForms.tsx:428 -msgid "Part category default location selected" -msgstr "Emplacement par défaut de la catégorie" +#: src/forms/PurchaseOrderForms.tsx:440 +msgid "Assign Batch Code and Serial Numbers" +msgstr "Attribuer un code de lot et des numéros de série" -#: src/forms/PurchaseOrderForms.tsx:438 -msgid "Received stock location selected" -msgstr "Emplacement de stock reçu" +#: src/forms/PurchaseOrderForms.tsx:442 +msgid "Assign Batch Code" +msgstr "Attribuer un code de lot" #: src/forms/PurchaseOrderForms.tsx:444 #: src/forms/StockForms.tsx:428 #~ msgid "Remove item from list" #~ msgstr "Remove item from list" -#: src/forms/PurchaseOrderForms.tsx:446 +#: src/forms/PurchaseOrderForms.tsx:462 +msgid "Choose Location" +msgstr "Choisir l'emplacement" + +#: src/forms/PurchaseOrderForms.tsx:470 +msgid "Item Destination selected" +msgstr "Destination de l'élément sélectionné" + +#: src/forms/PurchaseOrderForms.tsx:480 +msgid "Part category default location selected" +msgstr "Emplacement par défaut de la catégorie" + +#: src/forms/PurchaseOrderForms.tsx:490 +msgid "Received stock location selected" +msgstr "Emplacement de stock reçu" + +#: src/forms/PurchaseOrderForms.tsx:498 msgid "Default location selected" msgstr "Emplacement par défaut" -#: src/forms/PurchaseOrderForms.tsx:507 +#: src/forms/PurchaseOrderForms.tsx:559 msgid "Set Location" msgstr "Définir l'emplacement" -#: src/forms/PurchaseOrderForms.tsx:524 -msgid "Set Expiry Date" -msgstr "Indiquer une date d'expiration" - -#: src/forms/PurchaseOrderForms.tsx:532 -#: src/forms/StockForms.tsx:693 -msgid "Adjust Packaging" -msgstr "Ajuster le conditionnement" - -#: src/forms/PurchaseOrderForms.tsx:540 -#: src/forms/StockForms.tsx:684 -#: src/hooks/UseStockAdjustActions.tsx:148 -msgid "Change Status" -msgstr "Changer le statut" - -#: src/forms/PurchaseOrderForms.tsx:546 -msgid "Add Note" -msgstr "Ajouter une note" - #: src/forms/PurchaseOrderForms.tsx:566 #~ msgid "Serial numbers" #~ msgstr "Serial numbers" +#: src/forms/PurchaseOrderForms.tsx:576 +msgid "Set Expiry Date" +msgstr "Indiquer une date d'expiration" + #: src/forms/PurchaseOrderForms.tsx:582 #~ msgid "Store at line item destination" #~ msgstr "Store at line item destination" -#: src/forms/PurchaseOrderForms.tsx:610 -msgid "Store at default location" -msgstr "Stocker à l'emplacement par défaut" +#: src/forms/PurchaseOrderForms.tsx:584 +#: src/forms/StockForms.tsx:693 +msgid "Adjust Packaging" +msgstr "Ajuster le conditionnement" -#: src/forms/PurchaseOrderForms.tsx:625 -msgid "Store at line item destination " -msgstr "Stocker à la destination de l'article " +#: src/forms/PurchaseOrderForms.tsx:592 +#: src/forms/StockForms.tsx:684 +#: src/hooks/UseStockAdjustActions.tsx:148 +msgid "Change Status" +msgstr "Changer le statut" -#: src/forms/PurchaseOrderForms.tsx:637 -msgid "Store with already received stock" -msgstr "Stocker avec le stock déjà reçu" +#: src/forms/PurchaseOrderForms.tsx:598 +msgid "Add Note" +msgstr "Ajouter une note" #: src/forms/PurchaseOrderForms.tsx:658 #~ msgid "Receive line items" #~ msgstr "Receive line items" -#: src/forms/PurchaseOrderForms.tsx:661 -#: src/pages/build/BuildDetail.tsx:340 +#: src/forms/PurchaseOrderForms.tsx:662 +msgid "Store at default location" +msgstr "Stocker à l'emplacement par défaut" + +#: src/forms/PurchaseOrderForms.tsx:677 +msgid "Store at line item destination " +msgstr "Stocker à la destination de l'article " + +#: src/forms/PurchaseOrderForms.tsx:689 +msgid "Store with already received stock" +msgstr "Stocker avec le stock déjà reçu" + +#: src/forms/PurchaseOrderForms.tsx:713 +#: src/pages/build/BuildDetail.tsx:341 #: src/pages/stock/StockDetail.tsx:280 #: src/pages/stock/StockDetail.tsx:952 #: src/tables/Filter.tsx:83 -#: src/tables/build/BuildAllocatedStockTable.tsx:128 +#: src/tables/build/BuildAllocatedStockTable.tsx:125 #: src/tables/build/BuildOutputTable.tsx:112 -#: src/tables/part/PartTestResultTable.tsx:260 -#: src/tables/part/PartTestResultTable.tsx:281 +#: src/tables/part/PartTestResultTable.tsx:268 +#: src/tables/part/PartTestResultTable.tsx:289 #: src/tables/sales/SalesOrderAllocationTable.tsx:149 msgid "Batch Code" msgstr "Barre-code" -#: src/forms/PurchaseOrderForms.tsx:662 +#: src/forms/PurchaseOrderForms.tsx:714 msgid "Enter batch code for received items" msgstr "Saisir le code de lot pour les articles reçus" -#: src/forms/PurchaseOrderForms.tsx:675 +#: src/forms/PurchaseOrderForms.tsx:727 #: src/forms/StockForms.tsx:218 msgid "Serial Numbers" msgstr "Numéros de Série" -#: src/forms/PurchaseOrderForms.tsx:676 +#: src/forms/PurchaseOrderForms.tsx:728 msgid "Enter serial numbers for received items" msgstr "Saisir les numéros de série des articles reçus" -#: src/forms/PurchaseOrderForms.tsx:690 +#: src/forms/PurchaseOrderForms.tsx:742 #: src/pages/stock/StockDetail.tsx:382 #: src/tables/stock/StockItemTable.tsx:294 msgid "Expiry Date" msgstr "Date d'expiration" -#: src/forms/PurchaseOrderForms.tsx:691 +#: src/forms/PurchaseOrderForms.tsx:743 msgid "Enter an expiry date for received items" msgstr "Entrer une date d'expiration pour les articles reçus" -#: src/forms/PurchaseOrderForms.tsx:703 +#: src/forms/PurchaseOrderForms.tsx:755 #: src/forms/StockForms.tsx:728 -#: src/pages/company/SupplierPartDetail.tsx:172 -#: src/pages/company/SupplierPartDetail.tsx:236 +#: src/pages/company/SupplierPartDetail.tsx:173 +#: src/pages/company/SupplierPartDetail.tsx:237 #: src/pages/stock/StockDetail.tsx:419 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:227 msgid "Packaging" msgstr "Conditionnement" -#: src/forms/PurchaseOrderForms.tsx:727 -#: src/pages/company/SupplierPartDetail.tsx:120 +#: src/forms/PurchaseOrderForms.tsx:779 +#: src/pages/company/SupplierPartDetail.tsx:121 #: src/tables/ColumnRenderers.tsx:332 msgid "Note" msgstr "Note" -#: src/forms/PurchaseOrderForms.tsx:799 -#: src/pages/company/SupplierPartDetail.tsx:138 +#: src/forms/PurchaseOrderForms.tsx:851 +#: src/pages/company/SupplierPartDetail.tsx:139 #: src/tables/purchasing/SupplierPriceBreakTable.tsx:49 msgid "SKU" msgstr "SKU" -#: src/forms/PurchaseOrderForms.tsx:800 +#: src/forms/PurchaseOrderForms.tsx:852 #: src/tables/part/PartPurchaseOrdersTable.tsx:127 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:213 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:283 @@ -4721,11 +4750,11 @@ msgstr "SKU" msgid "Received" msgstr "Réceptionnée" -#: src/forms/PurchaseOrderForms.tsx:817 +#: src/forms/PurchaseOrderForms.tsx:869 msgid "Receive Line Items" msgstr "Articles reçus" -#: src/forms/PurchaseOrderForms.tsx:823 +#: src/forms/PurchaseOrderForms.tsx:875 msgid "Items received" msgstr "Articles reçus" @@ -4737,7 +4766,35 @@ msgstr "Articles reçus" msgid "Item received into stock" msgstr "Article reçu en stock" -#: src/forms/SalesOrderForms.tsx:401 +#: src/forms/SalesOrderForms.tsx:208 +#: src/forms/SalesOrderForms.tsx:210 +#: src/tables/sales/SalesOrderShipmentTable.tsx:215 +msgid "Check Shipment" +msgstr "" + +#: src/forms/SalesOrderForms.tsx:211 +msgid "Marking the shipment as checked indicates that you have verified that all items included in this shipment are correct" +msgstr "" + +#: src/forms/SalesOrderForms.tsx:221 +msgid "Shipment marked as checked" +msgstr "" + +#: src/forms/SalesOrderForms.tsx:236 +#: src/forms/SalesOrderForms.tsx:238 +#: src/tables/sales/SalesOrderShipmentTable.tsx:228 +msgid "Uncheck Shipment" +msgstr "" + +#: src/forms/SalesOrderForms.tsx:239 +msgid "Marking the shipment as unchecked indicates that the shipment requires further verification" +msgstr "" + +#: src/forms/SalesOrderForms.tsx:249 +msgid "Shipment marked as unchecked" +msgstr "" + +#: src/forms/SalesOrderForms.tsx:480 msgid "Leave blank to use the order address" msgstr "" @@ -4792,150 +4849,150 @@ msgstr "Déplacer" msgid "Return" msgstr "Retour" -#: src/forms/StockForms.tsx:963 +#: src/forms/StockForms.tsx:979 #: src/pages/Index/Scan.tsx:182 msgid "Count" msgstr "Compter" -#: src/forms/StockForms.tsx:1246 +#: src/forms/StockForms.tsx:1262 #: src/hooks/UseStockAdjustActions.tsx:108 msgid "Add Stock" msgstr "Ajouter du stock" -#: src/forms/StockForms.tsx:1247 +#: src/forms/StockForms.tsx:1263 msgid "Stock added" msgstr "Stock ajouté" -#: src/forms/StockForms.tsx:1250 +#: src/forms/StockForms.tsx:1266 msgid "Increase the quantity of the selected stock items by a given amount." msgstr "Augmenter le nombre des articles en stock sélectionnés d'une quantité donnée." -#: src/forms/StockForms.tsx:1261 +#: src/forms/StockForms.tsx:1277 #: src/hooks/UseStockAdjustActions.tsx:118 msgid "Remove Stock" msgstr "Supprimer du stock" -#: src/forms/StockForms.tsx:1262 +#: src/forms/StockForms.tsx:1278 msgid "Stock removed" msgstr "Stock retiré" -#: src/forms/StockForms.tsx:1265 +#: src/forms/StockForms.tsx:1281 msgid "Decrease the quantity of the selected stock items by a given amount." msgstr "Réduire le nombre des articles en stock sélectionnés d'une quantité donnée." -#: src/forms/StockForms.tsx:1276 +#: src/forms/StockForms.tsx:1292 #: src/hooks/UseStockAdjustActions.tsx:128 msgid "Transfer Stock" msgstr "Transférer le stock" -#: src/forms/StockForms.tsx:1277 +#: src/forms/StockForms.tsx:1293 msgid "Stock transferred" msgstr "Stock transféré" -#: src/forms/StockForms.tsx:1280 +#: src/forms/StockForms.tsx:1296 msgid "Transfer selected items to the specified location." msgstr "Transférer les articles sélectionnés vers l'endroit spécifié." -#: src/forms/StockForms.tsx:1291 +#: src/forms/StockForms.tsx:1307 #: src/hooks/UseStockAdjustActions.tsx:168 msgid "Return Stock" msgstr "Remettre en stock" -#: src/forms/StockForms.tsx:1292 +#: src/forms/StockForms.tsx:1308 msgid "Stock returned" msgstr "Remis en stock" -#: src/forms/StockForms.tsx:1295 +#: src/forms/StockForms.tsx:1311 msgid "Return selected items into stock, to the specified location." msgstr "Remettre les articles sélectionnés en stock, à l'endroit spécifié." -#: src/forms/StockForms.tsx:1306 +#: src/forms/StockForms.tsx:1322 #: src/hooks/UseStockAdjustActions.tsx:98 msgid "Count Stock" msgstr "Compter le stock" -#: src/forms/StockForms.tsx:1307 +#: src/forms/StockForms.tsx:1323 msgid "Stock counted" msgstr "Stock compté" -#: src/forms/StockForms.tsx:1310 +#: src/forms/StockForms.tsx:1326 msgid "Count the selected stock items, and adjust the quantity accordingly." msgstr "Compter les articles en stock sélectionnés et ajuster la quantité." -#: src/forms/StockForms.tsx:1321 +#: src/forms/StockForms.tsx:1337 msgid "Change Stock Status" msgstr "Changer l'état du stock" -#: src/forms/StockForms.tsx:1322 +#: src/forms/StockForms.tsx:1338 msgid "Stock status changed" msgstr "Statut du stock changé" -#: src/forms/StockForms.tsx:1325 +#: src/forms/StockForms.tsx:1341 msgid "Change the status of the selected stock items." msgstr "Changer le status des articles en stock sélectionnés." -#: src/forms/StockForms.tsx:1336 +#: src/forms/StockForms.tsx:1352 #: src/hooks/UseStockAdjustActions.tsx:138 msgid "Merge Stock" msgstr "Fusionner le stock" -#: src/forms/StockForms.tsx:1337 +#: src/forms/StockForms.tsx:1353 msgid "Stock merged" msgstr "Stock fusionné" -#: src/forms/StockForms.tsx:1339 +#: src/forms/StockForms.tsx:1355 msgid "Merge Stock Items" msgstr "Fusionner les articles en stock" -#: src/forms/StockForms.tsx:1341 +#: src/forms/StockForms.tsx:1357 msgid "Merge operation cannot be reversed" msgstr "L'opération de fusion ne permet pas de retour en arrière" -#: src/forms/StockForms.tsx:1342 +#: src/forms/StockForms.tsx:1358 msgid "Tracking information may be lost when merging items" msgstr "Les informations de suivi pourraient être perdues lors de la fusion des articles" -#: src/forms/StockForms.tsx:1343 +#: src/forms/StockForms.tsx:1359 msgid "Supplier information may be lost when merging items" msgstr "Les informations du fournisseur pourraient être perdues lors de la fusion des articles" -#: src/forms/StockForms.tsx:1361 +#: src/forms/StockForms.tsx:1377 msgid "Assign Stock to Customer" msgstr "Lier un stock à un client" -#: src/forms/StockForms.tsx:1362 +#: src/forms/StockForms.tsx:1378 msgid "Stock assigned to customer" msgstr "Stock lié au client" -#: src/forms/StockForms.tsx:1372 +#: src/forms/StockForms.tsx:1388 msgid "Delete Stock Items" msgstr "Supprimer l'article du stock" -#: src/forms/StockForms.tsx:1373 +#: src/forms/StockForms.tsx:1389 msgid "Stock deleted" msgstr "Stock supprimé" -#: src/forms/StockForms.tsx:1376 +#: src/forms/StockForms.tsx:1392 msgid "This operation will permanently delete the selected stock items." msgstr "Cette opération va supprimer définitivement les articles en stock sélectionnés." -#: src/forms/StockForms.tsx:1385 +#: src/forms/StockForms.tsx:1401 msgid "Parent stock location" msgstr "Localisation Parente du stock" -#: src/forms/StockForms.tsx:1512 +#: src/forms/StockForms.tsx:1528 msgid "Find Serial Number" msgstr "Trouver le numéro de série" -#: src/forms/StockForms.tsx:1523 +#: src/forms/StockForms.tsx:1539 msgid "No matching items" msgstr "Pas d'article correspondant" -#: src/forms/StockForms.tsx:1529 +#: src/forms/StockForms.tsx:1545 msgid "Multiple matching items" msgstr "Plusieurs articles correspondent" -#: src/forms/StockForms.tsx:1538 +#: src/forms/StockForms.tsx:1554 msgid "Invalid response from server" msgstr "Réponse invalide du serveur" @@ -4953,7 +5010,6 @@ msgstr "Liste des entrées dans lesquelles choisir" #: src/tables/FilterSelectDrawer.tsx:137 #: src/tables/FilterSelectDrawer.tsx:149 #: src/tables/part/PartTestResultTable.tsx:206 -#: src/tables/purchasing/ManufacturerPartParameterTable.tsx:42 #: src/tables/stock/StockItemTestResultTable.tsx:207 msgid "Value" msgstr "Valeur" @@ -5244,7 +5300,7 @@ msgid "Delete selected stock items" msgstr "Supprimer les articles en stock sélectionnés" #: src/hooks/UseStockAdjustActions.tsx:205 -#: src/pages/part/PartDetail.tsx:1137 +#: src/pages/part/PartDetail.tsx:1158 msgid "Stock Actions" msgstr "Actions sur le stock" @@ -5932,6 +5988,9 @@ msgstr "" #: src/pages/Index/Settings/AccountSettings/MFASettings.tsx:310 #: src/pages/Index/Settings/AccountSettings/MFASettings.tsx:401 +#: src/tables/build/BuildAllocatedStockTable.tsx:181 +#: src/tables/build/BuildLineTable.tsx:668 +#: src/tables/sales/SalesOrderAllocationTable.tsx:220 msgid "Confirm Removal" msgstr "" @@ -6394,30 +6453,34 @@ msgid "Email Messages" msgstr "Emails" #: src/pages/Index/Settings/AdminCenter/HomePanel.tsx:22 -msgid "Active Alerts" -msgstr "" +#~ msgid "Active Alerts" +#~ msgstr "Active Alerts" #: src/pages/Index/Settings/AdminCenter/HomePanel.tsx:27 -msgid "Inactive Alerts" +#~ msgid "Inactive Alerts" +#~ msgstr "Inactive Alerts" + +#: src/pages/Index/Settings/AdminCenter/HomePanel.tsx:36 +msgid "System Status" msgstr "" -#: src/pages/Index/Settings/AdminCenter/HomePanel.tsx:38 +#: src/pages/Index/Settings/AdminCenter/HomePanel.tsx:47 msgid "Admin Center Information" msgstr "" -#: src/pages/Index/Settings/AdminCenter/HomePanel.tsx:44 +#: src/pages/Index/Settings/AdminCenter/HomePanel.tsx:53 msgid "The home panel (and the whole Admin Center) is a new feature starting with the new UI and was previously (before 1.0) not available." msgstr "" -#: src/pages/Index/Settings/AdminCenter/HomePanel.tsx:51 +#: src/pages/Index/Settings/AdminCenter/HomePanel.tsx:60 msgid "The admin center provides a centralized location for all administration functionality and is meant to replace all interaction with the (django) backend admin interface." msgstr "" -#: src/pages/Index/Settings/AdminCenter/HomePanel.tsx:58 +#: src/pages/Index/Settings/AdminCenter/HomePanel.tsx:67 msgid "Please open feature requests (after checking the tracker) for any existing backend admin functionality you are missing in this UI. The backend admin interface should be used carefully and seldom." msgstr "" -#: src/pages/Index/Settings/AdminCenter/HomePanel.tsx:76 +#: src/pages/Index/Settings/AdminCenter/HomePanel.tsx:85 msgid "Quick Actions" msgstr "" @@ -6476,11 +6539,11 @@ msgstr "Unités personnalisées" #: src/pages/Index/Settings/AdminCenter/Index.tsx:195 #: src/pages/part/CategoryDetail.tsx:313 -msgid "Part Parameters" -msgstr "Paramètres de la pièce" +#~ msgid "Part Parameters" +#~ msgstr "Part Parameters" #: src/pages/Index/Settings/AdminCenter/Index.tsx:202 -#: src/pages/part/CategoryDetail.tsx:306 +#: src/pages/part/CategoryDetail.tsx:329 msgid "Category Parameters" msgstr "Paramètres de catégorie" @@ -6494,7 +6557,7 @@ msgstr "Types d'emplacement" #: src/pages/Index/Settings/AdminCenter/Index.tsx:235 #: src/pages/Index/Settings/AdminCenter/MachineManagementPanel.tsx:52 -#: src/tables/machine/MachineTypeTable.tsx:325 +#: src/tables/machine/MachineTypeTable.tsx:323 msgid "Machines" msgstr "Équipements" @@ -6507,8 +6570,8 @@ msgid "Data Management" msgstr "Gestion des données" #: src/pages/Index/Settings/AdminCenter/Index.tsx:270 -#: src/pages/Index/Settings/SystemSettings.tsx:175 -#: src/pages/Index/Settings/UserSettings.tsx:118 +#: src/pages/Index/Settings/SystemSettings.tsx:176 +#: src/pages/Index/Settings/UserSettings.tsx:119 msgid "Reporting" msgstr "Rapports" @@ -6709,11 +6772,11 @@ msgstr "Jetons" msgid "The settings below are specific to each available plugin" msgstr "Les paramètres ci-dessous sont spécifiques à chaque plugin disponible" -#: src/pages/Index/Settings/SystemSettings.tsx:77 +#: src/pages/Index/Settings/SystemSettings.tsx:78 msgid "Authentication" msgstr "Authentification" -#: src/pages/Index/Settings/SystemSettings.tsx:103 +#: src/pages/Index/Settings/SystemSettings.tsx:104 msgid "Barcodes" msgstr "Code-barres" @@ -6725,12 +6788,12 @@ msgstr "Code-barres" #~ msgid "This panel is a placeholder." #~ msgstr "This panel is a placeholder." -#: src/pages/Index/Settings/SystemSettings.tsx:127 -#: src/pages/Index/Settings/UserSettings.tsx:112 +#: src/pages/Index/Settings/SystemSettings.tsx:128 +#: src/pages/Index/Settings/UserSettings.tsx:113 msgid "The settings below are specific to each available notification method" msgstr "Les paramètres ci-dessous sont spécifiques à chaque méthode de notification disponible" -#: src/pages/Index/Settings/SystemSettings.tsx:133 +#: src/pages/Index/Settings/SystemSettings.tsx:134 msgid "Pricing" msgstr "Tarifs" @@ -6738,7 +6801,7 @@ msgstr "Tarifs" #~ msgid "Exchange Rates" #~ msgstr "Exchange Rates" -#: src/pages/Index/Settings/SystemSettings.tsx:169 +#: src/pages/Index/Settings/SystemSettings.tsx:170 msgid "Labels" msgstr "Étiquettes" @@ -6790,15 +6853,15 @@ msgstr "Marquer comme non lu" #~ msgid "Delete notifications" #~ msgstr "Delete notifications" -#: src/pages/build/BuildDetail.tsx:69 +#: src/pages/build/BuildDetail.tsx:70 msgid "No Required Items" msgstr "Pas d'article requis" -#: src/pages/build/BuildDetail.tsx:71 +#: src/pages/build/BuildDetail.tsx:72 msgid "This build order does not have any required items." msgstr "Cet ordre de fabrication n'a aucun article requis." -#: src/pages/build/BuildDetail.tsx:72 +#: src/pages/build/BuildDetail.tsx:73 msgid "The assembled part may not have a Bill of Materials (BOM) defined, or the BOM is empty." msgstr "La pièce d'assemblage pourrait ne pas avoir de nomenclature (BOM) définie, ou la nomenclature est vide." @@ -6826,7 +6889,7 @@ msgstr "La pièce d'assemblage pourrait ne pas avoir de nomenclature (BOM) défi #~ msgid "Build Order updated" #~ msgstr "Build Order updated" -#: src/pages/build/BuildDetail.tsx:215 +#: src/pages/build/BuildDetail.tsx:216 #: src/pages/part/PartDetail.tsx:480 #: src/pages/stock/StockDetail.tsx:161 #: src/tables/bom/UsedInTable.tsx:44 @@ -6843,10 +6906,10 @@ msgstr "Révision" #~ msgid "Duplicate build order" #~ msgstr "Duplicate build order" -#: src/pages/build/BuildDetail.tsx:228 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:174 -#: src/pages/sales/ReturnOrderDetail.tsx:141 -#: src/pages/sales/SalesOrderDetail.tsx:131 +#: src/pages/build/BuildDetail.tsx:229 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:175 +#: src/pages/sales/ReturnOrderDetail.tsx:142 +#: src/pages/sales/SalesOrderDetail.tsx:132 #: src/pages/stock/StockDetail.tsx:176 msgid "Custom Status" msgstr "Statut personnalisé" @@ -6855,9 +6918,9 @@ msgstr "Statut personnalisé" #~ msgid "Delete build order" #~ msgstr "Delete build order" -#: src/pages/build/BuildDetail.tsx:237 -#: src/pages/build/BuildDetail.tsx:723 -#: src/pages/build/BuildIndex.tsx:28 +#: src/pages/build/BuildDetail.tsx:238 +#: src/pages/build/BuildDetail.tsx:728 +#: src/pages/build/BuildIndex.tsx:34 #: src/pages/stock/LocationDetail.tsx:140 #: src/tables/build/BuildOrderTable.tsx:123 #: src/tables/build/BuildOrderTable.tsx:183 @@ -6865,57 +6928,57 @@ msgstr "Statut personnalisé" msgid "External" msgstr "Externe" -#: src/pages/build/BuildDetail.tsx:244 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:141 -#: src/pages/sales/ReturnOrderDetail.tsx:108 -#: src/pages/sales/SalesOrderDetail.tsx:98 +#: src/pages/build/BuildDetail.tsx:245 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:142 +#: src/pages/sales/ReturnOrderDetail.tsx:109 +#: src/pages/sales/SalesOrderDetail.tsx:99 #: src/tables/ColumnRenderers.tsx:321 -#: src/tables/build/BuildAllocatedStockTable.tsx:115 -#: src/tables/build/BuildLineTable.tsx:352 +#: src/tables/build/BuildAllocatedStockTable.tsx:112 +#: src/tables/build/BuildLineTable.tsx:353 msgid "Reference" msgstr "Référence" -#: src/pages/build/BuildDetail.tsx:258 +#: src/pages/build/BuildDetail.tsx:259 msgid "Parent Build" msgstr "Fabrication parente" -#: src/pages/build/BuildDetail.tsx:269 +#: src/pages/build/BuildDetail.tsx:270 msgid "Build Quantity" msgstr "Quantité de fabrication" -#: src/pages/build/BuildDetail.tsx:275 +#: src/pages/build/BuildDetail.tsx:276 #: src/pages/part/PartDetail.tsx:598 #: src/tables/bom/BomTable.tsx:365 #: src/tables/bom/BomTable.tsx:407 msgid "Can Build" msgstr "Peut être construit" -#: src/pages/build/BuildDetail.tsx:284 -#: src/pages/build/BuildDetail.tsx:474 +#: src/pages/build/BuildDetail.tsx:285 +#: src/pages/build/BuildDetail.tsx:475 msgid "Completed Outputs" msgstr "Sorties complétées" -#: src/pages/build/BuildDetail.tsx:301 +#: src/pages/build/BuildDetail.tsx:302 #: src/tables/Filter.tsx:381 #: src/tables/build/BuildOrderTable.tsx:143 msgid "Issued By" msgstr "Émis par" -#: src/pages/build/BuildDetail.tsx:309 +#: src/pages/build/BuildDetail.tsx:310 #: src/pages/part/PartDetail.tsx:691 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:261 -#: src/pages/sales/ReturnOrderDetail.tsx:239 -#: src/pages/sales/SalesOrderDetail.tsx:232 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:262 +#: src/pages/sales/ReturnOrderDetail.tsx:240 +#: src/pages/sales/SalesOrderDetail.tsx:233 #: src/tables/ColumnRenderers.tsx:464 #: src/tables/Filter.tsx:319 msgid "Responsible" msgstr "Responsable" -#: src/pages/build/BuildDetail.tsx:327 +#: src/pages/build/BuildDetail.tsx:328 msgid "Any location" msgstr "Tous les emplacements" -#: src/pages/build/BuildDetail.tsx:334 +#: src/pages/build/BuildDetail.tsx:335 msgid "Destination Location" msgstr "Emplacement cible" @@ -6924,24 +6987,24 @@ msgstr "Emplacement cible" #~ msgid "Test Statistics" #~ msgstr "Test Statistics" -#: src/pages/build/BuildDetail.tsx:350 +#: src/pages/build/BuildDetail.tsx:351 #: src/tables/settings/ApiTokenTable.tsx:97 #: src/tables/settings/PendingTasksTable.tsx:41 msgid "Created" msgstr "Créé" -#: src/pages/build/BuildDetail.tsx:358 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:286 -#: src/pages/sales/ReturnOrderDetail.tsx:265 -#: src/pages/sales/SalesOrderDetail.tsx:257 +#: src/pages/build/BuildDetail.tsx:359 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:287 +#: src/pages/sales/ReturnOrderDetail.tsx:266 +#: src/pages/sales/SalesOrderDetail.tsx:258 #: src/tables/ColumnRenderers.tsx:486 msgid "Start Date" msgstr "Date de début" -#: src/pages/build/BuildDetail.tsx:366 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:294 -#: src/pages/sales/ReturnOrderDetail.tsx:273 -#: src/pages/sales/SalesOrderDetail.tsx:265 +#: src/pages/build/BuildDetail.tsx:367 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:295 +#: src/pages/sales/ReturnOrderDetail.tsx:274 +#: src/pages/sales/SalesOrderDetail.tsx:266 #: src/tables/ColumnRenderers.tsx:494 #: src/tables/part/PartPurchaseOrdersTable.tsx:101 #: src/tables/sales/ReturnOrderLineItemTable.tsx:154 @@ -6954,185 +7017,185 @@ msgstr "Date cible" #~ msgstr "Reporting Actions" #: src/pages/build/BuildDetail.tsx:374 +#~ msgid "Print build report" +#~ msgstr "Print build report" + +#: src/pages/build/BuildDetail.tsx:375 #: src/tables/build/BuildOrderTable.tsx:93 #: src/tables/sales/SalesOrderLineItemTable.tsx:347 msgid "Completed" msgstr "Complété" -#: src/pages/build/BuildDetail.tsx:374 -#~ msgid "Print build report" -#~ msgstr "Print build report" - -#: src/pages/build/BuildDetail.tsx:410 +#: src/pages/build/BuildDetail.tsx:411 msgid "Build Details" msgstr "Détails de fabrication" -#: src/pages/build/BuildDetail.tsx:416 +#: src/pages/build/BuildDetail.tsx:417 msgid "Required Parts" msgstr "Pièces requises" -#: src/pages/build/BuildDetail.tsx:428 -#: src/pages/sales/SalesOrderDetail.tsx:407 -#: src/pages/sales/SalesOrderShipmentDetail.tsx:261 +#: src/pages/build/BuildDetail.tsx:429 +#: src/pages/sales/SalesOrderDetail.tsx:408 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:259 #: src/tables/part/PartSalesAllocationsTable.tsx:73 msgid "Allocated Stock" msgstr "Stock alloué" -#: src/pages/build/BuildDetail.tsx:444 +#: src/pages/build/BuildDetail.tsx:445 msgid "Consumed Stock" msgstr "Stock utilisé" -#: src/pages/build/BuildDetail.tsx:461 +#: src/pages/build/BuildDetail.tsx:462 msgid "Incomplete Outputs" msgstr "Sorties incomplètes" -#: src/pages/build/BuildDetail.tsx:489 +#: src/pages/build/BuildDetail.tsx:490 msgid "External Orders" msgstr "Achats externes" -#: src/pages/build/BuildDetail.tsx:503 +#: src/pages/build/BuildDetail.tsx:504 msgid "Child Build Orders" msgstr "Ordre de fabrication enfant" -#: src/pages/build/BuildDetail.tsx:513 -#: src/pages/part/PartDetail.tsx:937 +#: src/pages/build/BuildDetail.tsx:514 +#: src/pages/part/PartDetail.tsx:926 #: src/pages/stock/StockDetail.tsx:587 #: src/tables/build/BuildOutputTable.tsx:654 #: src/tables/stock/StockItemTestResultTable.tsx:173 msgid "Test Results" msgstr "Résultats des Tests" -#: src/pages/build/BuildDetail.tsx:550 +#: src/pages/build/BuildDetail.tsx:555 msgid "Edit Build Order" msgstr "Éditer l'ordre de fabrication" -#: src/pages/build/BuildDetail.tsx:572 +#: src/pages/build/BuildDetail.tsx:577 #: src/tables/build/BuildOrderTable.tsx:207 #: src/tables/build/BuildOrderTable.tsx:223 msgid "Add Build Order" msgstr "Ajouter un ordre de fabrication" -#: src/pages/build/BuildDetail.tsx:582 +#: src/pages/build/BuildDetail.tsx:587 msgid "Cancel Build Order" msgstr "Annuler l'ordre de fabrication" -#: src/pages/build/BuildDetail.tsx:584 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:416 -#: src/pages/sales/ReturnOrderDetail.tsx:427 -#: src/pages/sales/SalesOrderDetail.tsx:454 +#: src/pages/build/BuildDetail.tsx:589 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:421 +#: src/pages/sales/ReturnOrderDetail.tsx:432 +#: src/pages/sales/SalesOrderDetail.tsx:459 msgid "Order cancelled" msgstr "Commande annulée" -#: src/pages/build/BuildDetail.tsx:585 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:415 -#: src/pages/sales/ReturnOrderDetail.tsx:426 -#: src/pages/sales/SalesOrderDetail.tsx:453 +#: src/pages/build/BuildDetail.tsx:590 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:420 +#: src/pages/sales/ReturnOrderDetail.tsx:431 +#: src/pages/sales/SalesOrderDetail.tsx:458 msgid "Cancel this order" msgstr "Annuler cette commande" -#: src/pages/build/BuildDetail.tsx:594 +#: src/pages/build/BuildDetail.tsx:599 msgid "Hold Build Order" msgstr "Suspendre l'ordre de fabrication" -#: src/pages/build/BuildDetail.tsx:596 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:423 -#: src/pages/sales/ReturnOrderDetail.tsx:434 -#: src/pages/sales/SalesOrderDetail.tsx:461 +#: src/pages/build/BuildDetail.tsx:601 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:428 +#: src/pages/sales/ReturnOrderDetail.tsx:439 +#: src/pages/sales/SalesOrderDetail.tsx:466 msgid "Place this order on hold" msgstr "Mettre cet ordre en suspens" -#: src/pages/build/BuildDetail.tsx:597 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:424 -#: src/pages/sales/ReturnOrderDetail.tsx:435 -#: src/pages/sales/SalesOrderDetail.tsx:462 +#: src/pages/build/BuildDetail.tsx:602 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:429 +#: src/pages/sales/ReturnOrderDetail.tsx:440 +#: src/pages/sales/SalesOrderDetail.tsx:467 msgid "Order placed on hold" msgstr "Cet ordre a été mis en suspens" -#: src/pages/build/BuildDetail.tsx:602 +#: src/pages/build/BuildDetail.tsx:607 msgid "Issue Build Order" msgstr "Émettre l'ordre de fabrication" -#: src/pages/build/BuildDetail.tsx:604 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:407 -#: src/pages/sales/ReturnOrderDetail.tsx:418 -#: src/pages/sales/SalesOrderDetail.tsx:445 +#: src/pages/build/BuildDetail.tsx:609 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:412 +#: src/pages/sales/ReturnOrderDetail.tsx:423 +#: src/pages/sales/SalesOrderDetail.tsx:450 msgid "Issue this order" msgstr "Emettre cette commande" -#: src/pages/build/BuildDetail.tsx:605 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:408 -#: src/pages/sales/ReturnOrderDetail.tsx:419 -#: src/pages/sales/SalesOrderDetail.tsx:446 +#: src/pages/build/BuildDetail.tsx:610 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:413 +#: src/pages/sales/ReturnOrderDetail.tsx:424 +#: src/pages/sales/SalesOrderDetail.tsx:451 msgid "Order issued" msgstr "Commande émise" -#: src/pages/build/BuildDetail.tsx:624 +#: src/pages/build/BuildDetail.tsx:629 msgid "Complete Build Order" msgstr "Compléter l'ordre de fabrication" -#: src/pages/build/BuildDetail.tsx:630 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:436 -#: src/pages/sales/ReturnOrderDetail.tsx:442 -#: src/pages/sales/SalesOrderDetail.tsx:480 +#: src/pages/build/BuildDetail.tsx:635 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:441 +#: src/pages/sales/ReturnOrderDetail.tsx:447 +#: src/pages/sales/SalesOrderDetail.tsx:485 msgid "Mark this order as complete" msgstr "Marquer cet ordre comme complété" -#: src/pages/build/BuildDetail.tsx:633 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:430 -#: src/pages/sales/ReturnOrderDetail.tsx:443 -#: src/pages/sales/SalesOrderDetail.tsx:481 +#: src/pages/build/BuildDetail.tsx:638 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:435 +#: src/pages/sales/ReturnOrderDetail.tsx:448 +#: src/pages/sales/SalesOrderDetail.tsx:486 msgid "Order completed" msgstr "Ordre complété" -#: src/pages/build/BuildDetail.tsx:660 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:459 -#: src/pages/sales/ReturnOrderDetail.tsx:470 -#: src/pages/sales/SalesOrderDetail.tsx:516 +#: src/pages/build/BuildDetail.tsx:665 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:464 +#: src/pages/sales/ReturnOrderDetail.tsx:475 +#: src/pages/sales/SalesOrderDetail.tsx:521 msgid "Issue Order" msgstr "Émettre l'ordre" -#: src/pages/build/BuildDetail.tsx:667 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:466 -#: src/pages/sales/ReturnOrderDetail.tsx:477 -#: src/pages/sales/SalesOrderDetail.tsx:530 +#: src/pages/build/BuildDetail.tsx:672 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:471 +#: src/pages/sales/ReturnOrderDetail.tsx:482 +#: src/pages/sales/SalesOrderDetail.tsx:535 msgid "Complete Order" msgstr "Compléter l'ordre" -#: src/pages/build/BuildDetail.tsx:686 +#: src/pages/build/BuildDetail.tsx:691 msgid "Build Order Actions" msgstr "Actions de l'ordre de fabrication" -#: src/pages/build/BuildDetail.tsx:691 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:489 -#: src/pages/sales/ReturnOrderDetail.tsx:500 -#: src/pages/sales/SalesOrderDetail.tsx:554 +#: src/pages/build/BuildDetail.tsx:696 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:494 +#: src/pages/sales/ReturnOrderDetail.tsx:505 +#: src/pages/sales/SalesOrderDetail.tsx:559 msgid "Edit order" msgstr "Modifier la commande" -#: src/pages/build/BuildDetail.tsx:695 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:497 -#: src/pages/sales/ReturnOrderDetail.tsx:506 -#: src/pages/sales/SalesOrderDetail.tsx:559 +#: src/pages/build/BuildDetail.tsx:700 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:502 +#: src/pages/sales/ReturnOrderDetail.tsx:511 +#: src/pages/sales/SalesOrderDetail.tsx:564 msgid "Duplicate order" msgstr "Dupliquer la commande" -#: src/pages/build/BuildDetail.tsx:699 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:500 -#: src/pages/sales/ReturnOrderDetail.tsx:511 -#: src/pages/sales/SalesOrderDetail.tsx:562 -msgid "Hold order" -msgstr "Retenir la commande" - #: src/pages/build/BuildDetail.tsx:704 #: src/pages/purchasing/PurchaseOrderDetail.tsx:505 #: src/pages/sales/ReturnOrderDetail.tsx:516 #: src/pages/sales/SalesOrderDetail.tsx:567 +msgid "Hold order" +msgstr "Retenir la commande" + +#: src/pages/build/BuildDetail.tsx:709 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:510 +#: src/pages/sales/ReturnOrderDetail.tsx:521 +#: src/pages/sales/SalesOrderDetail.tsx:572 msgid "Cancel order" msgstr "Annuler la commande" -#: src/pages/build/BuildDetail.tsx:742 +#: src/pages/build/BuildDetail.tsx:747 #: src/pages/stock/StockDetail.tsx:344 -#: src/tables/build/BuildAllocatedStockTable.tsx:85 +#: src/tables/build/BuildAllocatedStockTable.tsx:82 #: src/tables/part/PartBuildAllocationsTable.tsx:45 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:157 #: src/tables/stock/StockTrackingTable.tsx:109 @@ -7143,7 +7206,7 @@ msgstr "Ordre de construction" #~ msgid "Build order created" #~ msgstr "Build order created" -#: src/pages/build/BuildIndex.tsx:29 +#: src/pages/build/BuildIndex.tsx:35 #: src/tables/build/BuildOrderTable.tsx:184 msgid "Show external build orders" msgstr "Voir les ordres de fabrication externes" @@ -7152,61 +7215,82 @@ msgstr "Voir les ordres de fabrication externes" #~ msgid "New Build Order" #~ msgstr "New Build Order" -#: src/pages/build/BuildIndex.tsx:83 -#: src/pages/purchasing/PurchasingIndex.tsx:69 -#: src/pages/sales/SalesIndex.tsx:92 -#: src/pages/sales/SalesIndex.tsx:125 +#: src/pages/build/BuildIndex.tsx:74 +#: src/pages/part/CategoryDetail.tsx:292 +#: src/pages/purchasing/PurchasingIndex.tsx:74 +#: src/pages/purchasing/PurchasingIndex.tsx:107 +#: src/pages/purchasing/PurchasingIndex.tsx:135 +#: src/pages/purchasing/PurchasingIndex.tsx:156 +#: src/pages/purchasing/PurchasingIndex.tsx:184 +#: src/pages/sales/SalesIndex.tsx:61 +#: src/pages/sales/SalesIndex.tsx:107 +#: src/pages/sales/SalesIndex.tsx:140 msgid "Table View" msgstr "Vue de la table" -#: src/pages/build/BuildIndex.tsx:86 -#: src/pages/purchasing/PurchasingIndex.tsx:72 -#: src/pages/sales/SalesIndex.tsx:95 -#: src/pages/sales/SalesIndex.tsx:128 +#: src/pages/build/BuildIndex.tsx:80 +#: src/pages/purchasing/PurchasingIndex.tsx:80 +#: src/pages/sales/SalesIndex.tsx:67 +#: src/pages/sales/SalesIndex.tsx:113 msgid "Calendar View" msgstr "Vue du calendrier" -#: src/pages/company/CompanyDetail.tsx:99 +#: src/pages/build/BuildIndex.tsx:86 +#: src/pages/part/CategoryDetail.tsx:306 +#: src/pages/purchasing/PurchasingIndex.tsx:92 +#: src/pages/purchasing/PurchasingIndex.tsx:118 +#: src/pages/purchasing/PurchasingIndex.tsx:141 +#: src/pages/purchasing/PurchasingIndex.tsx:167 +#: src/pages/purchasing/PurchasingIndex.tsx:190 +#: src/pages/sales/SalesIndex.tsx:79 +#: src/pages/sales/SalesIndex.tsx:125 +#: src/pages/sales/SalesIndex.tsx:151 +msgid "Parametric View" +msgstr "" + +#: src/pages/company/CompanyDetail.tsx:100 msgid "Website" msgstr "Site web" -#: src/pages/company/CompanyDetail.tsx:107 +#: src/pages/company/CompanyDetail.tsx:108 msgid "Phone Number" msgstr "Numéro de téléphone" -#: src/pages/company/CompanyDetail.tsx:114 +#: src/pages/company/CompanyDetail.tsx:115 msgid "Email Address" msgstr "Adresse email" -#: src/pages/company/CompanyDetail.tsx:121 +#: src/pages/company/CompanyDetail.tsx:122 msgid "Tax ID" msgstr "ID de taxe" -#: src/pages/company/CompanyDetail.tsx:131 +#: src/pages/company/CompanyDetail.tsx:132 msgid "Default Currency" msgstr "Devise par défaut" -#: src/pages/company/CompanyDetail.tsx:142 +#: src/pages/company/CompanyDetail.tsx:143 #: src/pages/company/ManufacturerDetail.tsx:8 -#: src/pages/company/ManufacturerPartDetail.tsx:104 -#: src/pages/company/ManufacturerPartDetail.tsx:280 -#: src/pages/company/SupplierPartDetail.tsx:152 +#: src/pages/company/ManufacturerPartDetail.tsx:103 +#: src/pages/company/ManufacturerPartDetail.tsx:271 +#: src/pages/company/SupplierPartDetail.tsx:153 #: src/tables/Filter.tsx:347 #: src/tables/company/CompanyTable.tsx:101 #: src/tables/purchasing/SupplierPartTable.tsx:89 msgid "Manufacturer" msgstr "Fabricant" -#: src/pages/company/CompanyDetail.tsx:148 +#: src/pages/company/CompanyDetail.tsx:149 #: src/pages/company/CustomerDetail.tsx:8 #: src/pages/part/pricing/SaleHistoryPanel.tsx:31 -#: src/pages/sales/ReturnOrderDetail.tsx:123 -#: src/pages/sales/SalesOrderDetail.tsx:113 -#: src/pages/sales/SalesOrderShipmentDetail.tsx:113 +#: src/pages/sales/ReturnOrderDetail.tsx:124 +#: src/pages/sales/SalesOrderDetail.tsx:114 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:111 #: src/pages/stock/StockDetail.tsx:370 #: src/tables/company/CompanyTable.tsx:106 +#: src/tables/sales/ReturnOrderParametricTable.tsx:32 #: src/tables/sales/ReturnOrderTable.tsx:108 -#: src/tables/sales/SalesOrderShipmentTable.tsx:111 +#: src/tables/sales/SalesOrderParametricTable.tsx:32 +#: src/tables/sales/SalesOrderShipmentTable.tsx:132 #: src/tables/sales/SalesOrderTable.tsx:133 #: src/tables/stock/StockTrackingTable.tsx:153 msgid "Customer" @@ -7216,11 +7300,11 @@ msgstr "Client" #~ msgid "Edit company" #~ msgstr "Edit company" -#: src/pages/company/CompanyDetail.tsx:181 +#: src/pages/company/CompanyDetail.tsx:182 msgid "Company Details" msgstr "Détails de l'entreprise" -#: src/pages/company/CompanyDetail.tsx:187 +#: src/pages/company/CompanyDetail.tsx:188 msgid "Supplied Parts" msgstr "Pièce fournisseur" @@ -7228,79 +7312,79 @@ msgstr "Pièce fournisseur" #~ msgid "Delete company" #~ msgstr "Delete company" -#: src/pages/company/CompanyDetail.tsx:194 +#: src/pages/company/CompanyDetail.tsx:195 msgid "Manufactured Parts" msgstr "Pièces du fabricant" -#: src/pages/company/CompanyDetail.tsx:241 +#: src/pages/company/CompanyDetail.tsx:242 msgid "Assigned Stock" msgstr "Stock attribué" -#: src/pages/company/CompanyDetail.tsx:282 +#: src/pages/company/CompanyDetail.tsx:287 #: src/tables/company/CompanyTable.tsx:82 msgid "Edit Company" msgstr "Modifier la société" -#: src/pages/company/CompanyDetail.tsx:290 +#: src/pages/company/CompanyDetail.tsx:295 msgid "Delete Company" msgstr "Supprimer la société" -#: src/pages/company/CompanyDetail.tsx:305 +#: src/pages/company/CompanyDetail.tsx:310 msgid "Company Actions" msgstr "Actions de la société" -#: src/pages/company/ManufacturerPartDetail.tsx:78 -#: src/pages/company/SupplierPartDetail.tsx:89 +#: src/pages/company/ManufacturerPartDetail.tsx:77 +#: src/pages/company/SupplierPartDetail.tsx:90 msgid "Internal Part" msgstr "Pièce interne" -#: src/pages/company/ManufacturerPartDetail.tsx:112 +#: src/pages/company/ManufacturerPartDetail.tsx:111 msgid "Manufacturer Part Number" msgstr "Numéro de pièce du fabricant" -#: src/pages/company/ManufacturerPartDetail.tsx:129 -#: src/pages/company/SupplierPartDetail.tsx:113 +#: src/pages/company/ManufacturerPartDetail.tsx:128 +#: src/pages/company/SupplierPartDetail.tsx:114 msgid "External Link" msgstr "Lien externe" -#: src/pages/company/ManufacturerPartDetail.tsx:148 -#: src/pages/company/SupplierPartDetail.tsx:232 +#: src/pages/company/ManufacturerPartDetail.tsx:147 +#: src/pages/company/SupplierPartDetail.tsx:233 #: src/pages/part/PartDetail.tsx:787 msgid "Part Details" msgstr "Détails de la pièce" -#: src/pages/company/ManufacturerPartDetail.tsx:151 +#: src/pages/company/ManufacturerPartDetail.tsx:150 msgid "Manufacturer Details" msgstr "Informations sur le fabricant" -#: src/pages/company/ManufacturerPartDetail.tsx:160 +#: src/pages/company/ManufacturerPartDetail.tsx:159 msgid "Manufacturer Part Details" msgstr "Détails de la pièce du fabricant" -#: src/pages/company/ManufacturerPartDetail.tsx:178 -#: src/pages/company/SupplierPartDetail.tsx:252 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:381 +#: src/pages/company/ManufacturerPartDetail.tsx:165 +#: src/pages/company/SupplierPartDetail.tsx:253 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:382 msgid "Received Stock" msgstr "Stock reçu" -#: src/pages/company/ManufacturerPartDetail.tsx:220 +#: src/pages/company/ManufacturerPartDetail.tsx:211 #: src/tables/purchasing/ManufacturerPartTable.tsx:108 msgid "Edit Manufacturer Part" msgstr "Modifier la pièce du fabricant" -#: src/pages/company/ManufacturerPartDetail.tsx:227 +#: src/pages/company/ManufacturerPartDetail.tsx:218 #: src/tables/purchasing/ManufacturerPartTable.tsx:96 #: src/tables/purchasing/ManufacturerPartTable.tsx:115 #: src/tables/purchasing/ManufacturerPartTable.tsx:156 msgid "Add Manufacturer Part" msgstr "Nouvelle pièce de fabricant" -#: src/pages/company/ManufacturerPartDetail.tsx:239 +#: src/pages/company/ManufacturerPartDetail.tsx:230 #: src/tables/purchasing/ManufacturerPartTable.tsx:126 msgid "Delete Manufacturer Part" msgstr "Supprimer la pièce de fabricant" -#: src/pages/company/ManufacturerPartDetail.tsx:254 +#: src/pages/company/ManufacturerPartDetail.tsx:245 msgid "Manufacturer Part Actions" msgstr "Détails de la pièce du fabricant" @@ -7308,12 +7392,12 @@ msgstr "Détails de la pièce du fabricant" #~ msgid "ManufacturerPart" #~ msgstr "ManufacturerPart" -#: src/pages/company/SupplierPartDetail.tsx:104 +#: src/pages/company/SupplierPartDetail.tsx:105 #: src/tables/part/RelatedPartTable.tsx:82 msgid "Part Description" msgstr "Description de la pièce" -#: src/pages/company/SupplierPartDetail.tsx:179 +#: src/pages/company/SupplierPartDetail.tsx:180 #: src/tables/part/PartPurchaseOrdersTable.tsx:73 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:191 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:233 @@ -7321,50 +7405,50 @@ msgstr "Description de la pièce" msgid "Pack Quantity" msgstr "Quantité du paquet" -#: src/pages/company/SupplierPartDetail.tsx:204 +#: src/pages/company/SupplierPartDetail.tsx:205 msgid "Supplier Availability" msgstr "Disponibilité du fournisseur" -#: src/pages/company/SupplierPartDetail.tsx:212 +#: src/pages/company/SupplierPartDetail.tsx:213 msgid "Availability Updated" msgstr "Disponibilité mise à jour" -#: src/pages/company/SupplierPartDetail.tsx:237 +#: src/pages/company/SupplierPartDetail.tsx:238 msgid "Availability" msgstr "Disponibilité" -#: src/pages/company/SupplierPartDetail.tsx:246 +#: src/pages/company/SupplierPartDetail.tsx:247 msgid "Supplier Part Details" msgstr "Détails de la pièce du fournisseur" -#: src/pages/company/SupplierPartDetail.tsx:279 +#: src/pages/company/SupplierPartDetail.tsx:280 #: src/pages/part/PartPricingPanel.tsx:113 #: src/pages/part/pricing/PricingOverviewPanel.tsx:239 msgid "Supplier Pricing" msgstr "" -#: src/pages/company/SupplierPartDetail.tsx:308 +#: src/pages/company/SupplierPartDetail.tsx:313 msgid "Supplier Part Actions" msgstr "Actions sur les pièces du fournisseur" -#: src/pages/company/SupplierPartDetail.tsx:332 +#: src/pages/company/SupplierPartDetail.tsx:337 #: src/tables/purchasing/SupplierPartTable.tsx:244 msgid "Edit Supplier Part" msgstr "Modifier les pièces du fournisseur" -#: src/pages/company/SupplierPartDetail.tsx:340 +#: src/pages/company/SupplierPartDetail.tsx:345 #: src/tables/purchasing/SupplierPartTable.tsx:264 msgid "Delete Supplier Part" msgstr "Supprimer des pièces du fournisseur" -#: src/pages/company/SupplierPartDetail.tsx:348 +#: src/pages/company/SupplierPartDetail.tsx:353 #: src/tables/purchasing/SupplierPartTable.tsx:172 #: src/tables/purchasing/SupplierPartTable.tsx:251 msgid "Add Supplier Part" msgstr "Ajouter la pièce du fournisseur" -#: src/pages/company/SupplierPartDetail.tsx:388 -#: src/pages/part/PartDetail.tsx:1003 +#: src/pages/company/SupplierPartDetail.tsx:393 +#: src/pages/part/PartDetail.tsx:1018 msgid "No Stock" msgstr "Aucun stock" @@ -7411,83 +7495,83 @@ msgstr "Détails de l'utilisateur" msgid "Basic user" msgstr "Utilisateur basique" -#: src/pages/part/CategoryDetail.tsx:100 +#: src/pages/part/CategoryDetail.tsx:103 #: src/pages/stock/LocationDetail.tsx:94 #: src/tables/settings/ErrorTable.tsx:63 #: src/tables/settings/ErrorTable.tsx:108 msgid "Path" msgstr "Chemin d'accès" -#: src/pages/part/CategoryDetail.tsx:116 +#: src/pages/part/CategoryDetail.tsx:119 msgid "Parent Category" msgstr "Catégorie parente" -#: src/pages/part/CategoryDetail.tsx:139 -#: src/pages/part/CategoryDetail.tsx:271 +#: src/pages/part/CategoryDetail.tsx:142 +#: src/pages/part/CategoryDetail.tsx:279 msgid "Subcategories" msgstr "Sous-catégories" -#: src/pages/part/CategoryDetail.tsx:146 +#: src/pages/part/CategoryDetail.tsx:149 #: src/pages/stock/LocationDetail.tsx:134 #: src/tables/part/PartCategoryTable.tsx:89 #: src/tables/stock/StockLocationTable.tsx:43 msgid "Structural" msgstr "Structure" -#: src/pages/part/CategoryDetail.tsx:152 +#: src/pages/part/CategoryDetail.tsx:155 msgid "Parent default location" msgstr "Emplacement par défaut du parent" -#: src/pages/part/CategoryDetail.tsx:159 +#: src/pages/part/CategoryDetail.tsx:162 msgid "Default location" msgstr "Emplacement par défaut" -#: src/pages/part/CategoryDetail.tsx:170 +#: src/pages/part/CategoryDetail.tsx:173 msgid "Top level part category" msgstr "Catégorie de pièce de niveau supérieur" -#: src/pages/part/CategoryDetail.tsx:180 -#: src/pages/part/CategoryDetail.tsx:248 +#: src/pages/part/CategoryDetail.tsx:183 +#: src/pages/part/CategoryDetail.tsx:251 #: src/tables/part/PartCategoryTable.tsx:122 msgid "Edit Part Category" msgstr "Modifier la catégorie" -#: src/pages/part/CategoryDetail.tsx:189 +#: src/pages/part/CategoryDetail.tsx:192 msgid "Move items to parent category" msgstr "Déplacer les articles dans la catégorie parent" -#: src/pages/part/CategoryDetail.tsx:193 +#: src/pages/part/CategoryDetail.tsx:196 #: src/pages/stock/LocationDetail.tsx:226 msgid "Delete items" msgstr "Supprimer l’élément" -#: src/pages/part/CategoryDetail.tsx:201 -#: src/pages/part/CategoryDetail.tsx:253 +#: src/pages/part/CategoryDetail.tsx:204 +#: src/pages/part/CategoryDetail.tsx:256 msgid "Delete Part Category" msgstr "Supprimer la catégorie" -#: src/pages/part/CategoryDetail.tsx:204 +#: src/pages/part/CategoryDetail.tsx:207 msgid "Parts Action" msgstr "Action sur les pièces" -#: src/pages/part/CategoryDetail.tsx:205 +#: src/pages/part/CategoryDetail.tsx:208 msgid "Action for parts in this category" msgstr "Action pour les pièces de cette catégorie" -#: src/pages/part/CategoryDetail.tsx:211 +#: src/pages/part/CategoryDetail.tsx:214 msgid "Child Categories Action" msgstr "Action sur les catégories enfants" -#: src/pages/part/CategoryDetail.tsx:212 +#: src/pages/part/CategoryDetail.tsx:215 msgid "Action for child categories in this category" msgstr "Action pour les sous-catégories de cette catégorie" -#: src/pages/part/CategoryDetail.tsx:244 +#: src/pages/part/CategoryDetail.tsx:247 #: src/tables/part/PartCategoryTable.tsx:143 msgid "Category Actions" msgstr "Paramètres de Catégorie" -#: src/pages/part/CategoryDetail.tsx:265 +#: src/pages/part/CategoryDetail.tsx:273 msgid "Category Details" msgstr "Détails de la catégorie" @@ -7585,7 +7669,6 @@ msgid "Category Default Location" msgstr "Emplacement par défaut de la catégorie" #: src/pages/part/PartDetail.tsx:507 -#: src/tables/purchasing/ManufacturerPartParameterTable.tsx:48 msgid "Units" msgstr "Unités" @@ -7600,7 +7683,7 @@ msgstr "Mots-clés" #: src/pages/part/PartDetail.tsx:542 #: src/tables/bom/BomTable.tsx:439 -#: src/tables/build/BuildLineTable.tsx:305 +#: src/tables/build/BuildLineTable.tsx:306 #: src/tables/part/PartTable.tsx:319 #: src/tables/sales/SalesOrderLineItemTable.tsx:138 msgid "Available Stock" @@ -7608,7 +7691,7 @@ msgstr "Stock disponible" #: src/pages/part/PartDetail.tsx:548 #: src/tables/bom/BomTable.tsx:341 -#: src/tables/build/BuildLineTable.tsx:267 +#: src/tables/build/BuildLineTable.tsx:268 #: src/tables/sales/SalesOrderLineItemTable.tsx:180 msgid "On order" msgstr "Sur commande" @@ -7634,7 +7717,7 @@ msgstr "Stock Minimum" #~ msgstr "Scheduling" #: src/pages/part/PartDetail.tsx:620 -#: src/tables/part/ParametricPartTable.tsx:359 +#: src/tables/part/ParametricPartTable.tsx:24 #: src/tables/part/PartTable.tsx:203 msgid "Locked" msgstr "Verrouillé" @@ -7671,16 +7754,16 @@ msgid "Saleable Part" msgstr "Pièce vendable" #: src/pages/part/PartDetail.tsx:663 -#: src/pages/part/PartDetail.tsx:1033 +#: src/pages/part/PartDetail.tsx:1054 #: src/tables/bom/BomTable.tsx:150 #: src/tables/bom/BomTable.tsx:434 msgid "Virtual Part" msgstr "Pièce virtuelle" #: src/pages/part/PartDetail.tsx:678 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:271 -#: src/pages/sales/ReturnOrderDetail.tsx:249 -#: src/pages/sales/SalesOrderDetail.tsx:242 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:272 +#: src/pages/sales/ReturnOrderDetail.tsx:250 +#: src/pages/sales/SalesOrderDetail.tsx:243 #: src/tables/ColumnRenderers.tsx:502 msgid "Creation Date" msgstr "Date de création" @@ -7718,35 +7801,46 @@ msgstr "Dernier numéro de série" msgid "Select Part Revision" msgstr "Sélectionner une révision de pièce" -#: src/pages/part/PartDetail.tsx:823 +#: src/pages/part/PartDetail.tsx:812 msgid "Variants" msgstr "Variants" -#: src/pages/part/PartDetail.tsx:830 +#: src/pages/part/PartDetail.tsx:819 #: src/pages/stock/StockDetail.tsx:542 msgid "Allocations" msgstr "Allocations" -#: src/pages/part/PartDetail.tsx:837 +#: src/pages/part/PartDetail.tsx:826 msgid "Bill of Materials" msgstr "Liste des matériaux" -#: src/pages/part/PartDetail.tsx:849 +#: src/pages/part/PartDetail.tsx:838 msgid "Used In" msgstr "Utilisé pour" -#: src/pages/part/PartDetail.tsx:856 +#: src/pages/part/PartDetail.tsx:845 msgid "Part Pricing" msgstr "Prix des pièces" -#: src/pages/part/PartDetail.tsx:926 +#: src/pages/part/PartDetail.tsx:915 msgid "Test Templates" msgstr "Modèles de test" -#: src/pages/part/PartDetail.tsx:948 +#: src/pages/part/PartDetail.tsx:937 msgid "Related Parts" msgstr "Pièces associées" +#: src/pages/part/PartDetail.tsx:949 +#: src/tables/ColumnRenderers.tsx:73 +#: src/tables/bom/BomTable.tsx:657 +#: src/tables/part/PartTestTemplateTable.tsx:258 +msgid "Part is Locked" +msgstr "La pièce est bloquée" + +#: src/pages/part/PartDetail.tsx:954 +msgid "Part parameters cannot be edited, as the part is locked" +msgstr "Les paramètres de la partie ne peuvent pas être modifiés, car la partie est verrouillée" + #: src/pages/part/PartDetail.tsx:956 #~ msgid "Count part stock" #~ msgstr "Count part stock" @@ -7755,42 +7849,46 @@ msgstr "Pièces associées" #~ msgid "Transfer part stock" #~ msgstr "Transfer part stock" -#: src/pages/part/PartDetail.tsx:1009 +#: src/pages/part/PartDetail.tsx:1024 #: src/tables/part/PartTestTemplateTable.tsx:112 #: src/tables/stock/StockItemTestResultTable.tsx:404 msgid "Required" msgstr "Requis" -#: src/pages/part/PartDetail.tsx:1058 +#: src/pages/part/PartDetail.tsx:1042 +msgid "Deficit" +msgstr "" + +#: src/pages/part/PartDetail.tsx:1079 #: src/tables/part/PartTable.tsx:396 #: src/tables/part/PartTable.tsx:449 msgid "Add Part" msgstr "Ajouter Pièce" -#: src/pages/part/PartDetail.tsx:1072 +#: src/pages/part/PartDetail.tsx:1093 msgid "Delete Part" msgstr "Supprimer la pièce" -#: src/pages/part/PartDetail.tsx:1081 +#: src/pages/part/PartDetail.tsx:1102 msgid "Deleting this part cannot be reversed" msgstr "La suppression de cette pièce est irréversible" -#: src/pages/part/PartDetail.tsx:1143 +#: src/pages/part/PartDetail.tsx:1164 #: src/pages/stock/StockDetail.tsx:883 msgid "Order" msgstr "Commande" -#: src/pages/part/PartDetail.tsx:1144 +#: src/pages/part/PartDetail.tsx:1165 #: src/pages/stock/StockDetail.tsx:884 -#: src/tables/build/BuildLineTable.tsx:761 +#: src/tables/build/BuildLineTable.tsx:768 msgid "Order Stock" msgstr "Stock de commandes" -#: src/pages/part/PartDetail.tsx:1156 +#: src/pages/part/PartDetail.tsx:1177 msgid "Search by serial number" msgstr "Rechercher par numéro de série" -#: src/pages/part/PartDetail.tsx:1164 +#: src/pages/part/PartDetail.tsx:1185 #: src/tables/part/PartTable.tsx:506 msgid "Part Actions" msgstr "Actions sur les pièces" @@ -8039,7 +8137,7 @@ msgstr "Tarif d'achat" #: src/pages/part/pricing/PricingOverviewPanel.tsx:288 #: src/pages/stock/StockDetail.tsx:426 -#: src/tables/part/PartParameterTable.tsx:121 +#: src/tables/general/ParameterTable.tsx:101 #: src/tables/stock/StockItemTable.tsx:300 msgid "Last Updated" msgstr "Dernière mise à jour" @@ -8107,17 +8205,17 @@ msgstr "Prix du fournisseur" msgid "Variant Part" msgstr "Prix des variantes" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:89 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:90 msgid "Edit Purchase Order" msgstr "Modifier l'ordre d'achat" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:125 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:126 #: src/tables/purchasing/PurchaseOrderTable.tsx:154 #: src/tables/purchasing/PurchaseOrderTable.tsx:167 msgid "Add Purchase Order" msgstr "Ajouter un ordre d'achat" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:147 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:148 msgid "Supplier Reference" msgstr "Référence du fournisseur" @@ -8127,20 +8225,20 @@ msgstr "Référence du fournisseur" #~ msgid "Order Currency," #~ msgstr "Order Currency," -#: src/pages/purchasing/PurchaseOrderDetail.tsx:187 -#: src/pages/sales/ReturnOrderDetail.tsx:160 -#: src/pages/sales/SalesOrderDetail.tsx:144 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:188 +#: src/pages/sales/ReturnOrderDetail.tsx:161 +#: src/pages/sales/SalesOrderDetail.tsx:145 msgid "Completed Line Items" msgstr "Ligne d'articles complétées" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:196 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:197 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:272 msgid "Destination" msgstr "Destination" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:202 -#: src/pages/sales/ReturnOrderDetail.tsx:167 -#: src/pages/sales/SalesOrderDetail.tsx:161 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:203 +#: src/pages/sales/ReturnOrderDetail.tsx:168 +#: src/pages/sales/SalesOrderDetail.tsx:162 msgid "Order Currency" msgstr "Devise de la commande" @@ -8150,97 +8248,97 @@ msgstr "Devise de la commande" #~ msgid "Created On" #~ msgstr "Created On" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:208 -#: src/pages/sales/ReturnOrderDetail.tsx:174 -#: src/pages/sales/SalesOrderDetail.tsx:167 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:209 +#: src/pages/sales/ReturnOrderDetail.tsx:175 +#: src/pages/sales/SalesOrderDetail.tsx:168 msgid "Total Cost" msgstr "Coût total" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:237 -#: src/pages/sales/ReturnOrderDetail.tsx:215 -#: src/pages/sales/SalesOrderDetail.tsx:208 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:238 +#: src/pages/sales/ReturnOrderDetail.tsx:216 +#: src/pages/sales/SalesOrderDetail.tsx:209 msgid "Contact Email" msgstr "Adresse email de contact" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:245 -#: src/pages/sales/ReturnOrderDetail.tsx:223 -#: src/pages/sales/SalesOrderDetail.tsx:216 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:246 +#: src/pages/sales/ReturnOrderDetail.tsx:224 +#: src/pages/sales/SalesOrderDetail.tsx:217 msgid "Contact Phone" msgstr "Numéro de téléphone de contact" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:278 -#: src/pages/sales/ReturnOrderDetail.tsx:257 -#: src/pages/sales/SalesOrderDetail.tsx:249 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:279 +#: src/pages/sales/ReturnOrderDetail.tsx:258 +#: src/pages/sales/SalesOrderDetail.tsx:250 msgid "Issue Date" msgstr "Date d'émission" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:303 -#: src/pages/sales/ReturnOrderDetail.tsx:281 -#: src/pages/sales/SalesOrderDetail.tsx:272 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:304 +#: src/pages/sales/ReturnOrderDetail.tsx:282 +#: src/pages/sales/SalesOrderDetail.tsx:273 #: src/tables/ColumnRenderers.tsx:510 #: src/tables/build/BuildOrderTable.tsx:137 #: src/tables/part/PartPurchaseOrdersTable.tsx:106 msgid "Completion Date" msgstr "Date d'achèvement" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:333 -#: src/pages/sales/ReturnOrderDetail.tsx:311 -#: src/pages/sales/SalesOrderDetail.tsx:349 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:334 +#: src/pages/sales/ReturnOrderDetail.tsx:312 +#: src/pages/sales/SalesOrderDetail.tsx:350 msgid "Order Details" msgstr "Détails de la commande" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:339 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:348 -#: src/pages/sales/ReturnOrderDetail.tsx:153 -#: src/pages/sales/ReturnOrderDetail.tsx:317 -#: src/pages/sales/ReturnOrderDetail.tsx:326 -#: src/pages/sales/SalesOrderDetail.tsx:355 -#: src/pages/sales/SalesOrderDetail.tsx:364 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:340 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:349 +#: src/pages/sales/ReturnOrderDetail.tsx:154 +#: src/pages/sales/ReturnOrderDetail.tsx:318 +#: src/pages/sales/ReturnOrderDetail.tsx:327 +#: src/pages/sales/SalesOrderDetail.tsx:356 +#: src/pages/sales/SalesOrderDetail.tsx:365 msgid "Line Items" msgstr "Éléments de la ligne" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:363 -#: src/pages/sales/ReturnOrderDetail.tsx:341 -#: src/pages/sales/SalesOrderDetail.tsx:378 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:364 +#: src/pages/sales/ReturnOrderDetail.tsx:342 +#: src/pages/sales/SalesOrderDetail.tsx:379 msgid "Extra Line Items" msgstr "Articles supplémentaires" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:405 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:410 msgid "Issue Purchase Order" msgstr "Emettre un bon de commande" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:413 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:418 msgid "Cancel Purchase Order" msgstr "Annuler le bon de commande" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:421 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:426 msgid "Hold Purchase Order" msgstr "Maintenir le bon de commande" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:429 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:434 msgid "Complete Purchase Order" msgstr "Compléter le bon de commande" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:485 -#: src/pages/sales/ReturnOrderDetail.tsx:496 -#: src/pages/sales/SalesOrderDetail.tsx:549 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:490 +#: src/pages/sales/ReturnOrderDetail.tsx:501 +#: src/pages/sales/SalesOrderDetail.tsx:554 msgid "Order Actions" msgstr "Actions sur la commande" -#: src/pages/sales/ReturnOrderDetail.tsx:114 -#: src/pages/sales/SalesOrderDetail.tsx:104 -#: src/pages/sales/SalesOrderShipmentDetail.tsx:134 +#: src/pages/sales/ReturnOrderDetail.tsx:115 +#: src/pages/sales/SalesOrderDetail.tsx:105 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:132 #: src/tables/sales/SalesOrderTable.tsx:141 msgid "Customer Reference" msgstr "Référence client" -#: src/pages/sales/ReturnOrderDetail.tsx:195 +#: src/pages/sales/ReturnOrderDetail.tsx:196 msgid "Return Address" msgstr "" -#: src/pages/sales/ReturnOrderDetail.tsx:201 -#: src/pages/sales/SalesOrderDetail.tsx:194 -#: src/pages/sales/SalesOrderShipmentDetail.tsx:181 +#: src/pages/sales/ReturnOrderDetail.tsx:202 +#: src/pages/sales/SalesOrderDetail.tsx:195 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:179 msgid "Not specified" msgstr "" @@ -8248,117 +8346,117 @@ msgstr "" #~ msgid "Order canceled" #~ msgstr "Order canceled" -#: src/pages/sales/ReturnOrderDetail.tsx:389 +#: src/pages/sales/ReturnOrderDetail.tsx:394 msgid "Edit Return Order" msgstr "Modifier l'ordre de retour" -#: src/pages/sales/ReturnOrderDetail.tsx:407 +#: src/pages/sales/ReturnOrderDetail.tsx:412 #: src/tables/sales/ReturnOrderTable.tsx:154 #: src/tables/sales/ReturnOrderTable.tsx:167 msgid "Add Return Order" msgstr "Ajouter un ordre de retour" -#: src/pages/sales/ReturnOrderDetail.tsx:416 +#: src/pages/sales/ReturnOrderDetail.tsx:421 msgid "Issue Return Order" msgstr "Émettre un ordre de retour" -#: src/pages/sales/ReturnOrderDetail.tsx:424 +#: src/pages/sales/ReturnOrderDetail.tsx:429 msgid "Cancel Return Order" msgstr "Annuler l'ordre de retour" -#: src/pages/sales/ReturnOrderDetail.tsx:432 +#: src/pages/sales/ReturnOrderDetail.tsx:437 msgid "Hold Return Order" msgstr "Suspendre l'ordre de retour" -#: src/pages/sales/ReturnOrderDetail.tsx:440 +#: src/pages/sales/ReturnOrderDetail.tsx:445 msgid "Complete Return Order" msgstr "Compléter l'ordre de retour" -#: src/pages/sales/SalesOrderDetail.tsx:153 +#: src/pages/sales/SalesOrderDetail.tsx:154 msgid "Completed Shipments" msgstr "Livraisons réalisées" -#: src/pages/sales/SalesOrderDetail.tsx:188 -#: src/pages/sales/SalesOrderShipmentDetail.tsx:170 +#: src/pages/sales/SalesOrderDetail.tsx:189 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:168 msgid "Shipping Address" msgstr "" -#: src/pages/sales/SalesOrderDetail.tsx:316 +#: src/pages/sales/SalesOrderDetail.tsx:317 msgid "Edit Sales Order" msgstr "Modifier la commande client" -#: src/pages/sales/SalesOrderDetail.tsx:338 +#: src/pages/sales/SalesOrderDetail.tsx:339 #: src/tables/sales/SalesOrderTable.tsx:108 #: src/tables/sales/SalesOrderTable.tsx:121 msgid "Add Sales Order" msgstr "Ajouter des commandes clients" -#: src/pages/sales/SalesOrderDetail.tsx:396 +#: src/pages/sales/SalesOrderDetail.tsx:397 #: src/tables/sales/SalesOrderTable.tsx:147 msgid "Shipments" msgstr "Livraisons" -#: src/pages/sales/SalesOrderDetail.tsx:443 +#: src/pages/sales/SalesOrderDetail.tsx:448 msgid "Issue Sales Order" msgstr "Etablir une commande client" -#: src/pages/sales/SalesOrderDetail.tsx:451 +#: src/pages/sales/SalesOrderDetail.tsx:456 msgid "Cancel Sales Order" msgstr "Annuler une commande client" -#: src/pages/sales/SalesOrderDetail.tsx:459 +#: src/pages/sales/SalesOrderDetail.tsx:464 msgid "Hold Sales Order" msgstr "Maintenir une commande client" -#: src/pages/sales/SalesOrderDetail.tsx:467 +#: src/pages/sales/SalesOrderDetail.tsx:472 msgid "Ship Sales Order" msgstr "Envoyer les commandes clients" -#: src/pages/sales/SalesOrderDetail.tsx:469 +#: src/pages/sales/SalesOrderDetail.tsx:474 msgid "Ship this order?" msgstr "Souhaitez vous envoyer cette commande ?" -#: src/pages/sales/SalesOrderDetail.tsx:470 +#: src/pages/sales/SalesOrderDetail.tsx:475 msgid "Order shipped" msgstr "Commande envoyée" -#: src/pages/sales/SalesOrderDetail.tsx:478 +#: src/pages/sales/SalesOrderDetail.tsx:483 msgid "Complete Sales Order" msgstr "Compléter les commandes clientes" -#: src/pages/sales/SalesOrderDetail.tsx:523 +#: src/pages/sales/SalesOrderDetail.tsx:528 msgid "Ship Order" msgstr "Envoyer les commandes" -#: src/pages/sales/SalesOrderShipmentDetail.tsx:142 -#: src/tables/sales/SalesOrderShipmentTable.tsx:135 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:140 +#: src/tables/sales/SalesOrderShipmentTable.tsx:156 msgid "Shipment Reference" msgstr "Référence de l'envoi" -#: src/pages/sales/SalesOrderShipmentDetail.tsx:148 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:146 msgid "Tracking Number" msgstr "Numéro de suivi" -#: src/pages/sales/SalesOrderShipmentDetail.tsx:156 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:154 msgid "Invoice Number" msgstr "Numéro de la facture" -#: src/pages/sales/SalesOrderShipmentDetail.tsx:191 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:189 msgid "Allocated Items" msgstr "Articles alloués" -#: src/pages/sales/SalesOrderShipmentDetail.tsx:196 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:194 msgid "Checked By" msgstr "" -#: src/pages/sales/SalesOrderShipmentDetail.tsx:202 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:200 msgid "Not checked" msgstr "" -#: src/pages/sales/SalesOrderShipmentDetail.tsx:208 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:206 #: src/tables/ColumnRenderers.tsx:518 #: src/tables/sales/SalesOrderAllocationTable.tsx:182 -#: src/tables/sales/SalesOrderShipmentTable.tsx:168 +#: src/tables/sales/SalesOrderShipmentTable.tsx:189 msgid "Shipment Date" msgstr "Date d'envoi" @@ -8366,108 +8464,82 @@ msgstr "Date d'envoi" #~ msgid "Assigned Items" #~ msgstr "Assigned Items" -#: src/pages/sales/SalesOrderShipmentDetail.tsx:216 -#: src/tables/sales/SalesOrderShipmentTable.tsx:172 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:214 +#: src/tables/sales/SalesOrderShipmentTable.tsx:193 msgid "Delivery Date" msgstr "Date de Livraison" -#: src/pages/sales/SalesOrderShipmentDetail.tsx:255 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:253 msgid "Shipment Details" msgstr "Détails de l'envoi" -#: src/pages/sales/SalesOrderShipmentDetail.tsx:294 -#: src/pages/sales/SalesOrderShipmentDetail.tsx:438 -#: src/tables/sales/SalesOrderShipmentTable.tsx:90 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:292 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:406 +#: src/tables/sales/SalesOrderShipmentTable.tsx:97 msgid "Edit Shipment" msgstr "Modifier l'envoi" -#: src/pages/sales/SalesOrderShipmentDetail.tsx:301 -#: src/pages/sales/SalesOrderShipmentDetail.tsx:457 -#: src/tables/sales/SalesOrderShipmentTable.tsx:82 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:299 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:425 +#: src/tables/sales/SalesOrderShipmentTable.tsx:89 msgid "Cancel Shipment" msgstr "Annuler l'envoi" -#: src/pages/sales/SalesOrderShipmentDetail.tsx:314 -#: src/tables/sales/SalesOrderShipmentTable.tsx:98 -#: src/tables/sales/SalesOrderShipmentTable.tsx:193 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:312 +#: src/tables/sales/SalesOrderShipmentTable.tsx:119 +#: src/tables/sales/SalesOrderShipmentTable.tsx:238 msgid "Complete Shipment" msgstr "Compléter l'envoi" -#: src/pages/sales/SalesOrderShipmentDetail.tsx:326 -#: src/pages/sales/SalesOrderShipmentDetail.tsx:328 -msgid "Check Shipment" -msgstr "" - -#: src/pages/sales/SalesOrderShipmentDetail.tsx:329 -msgid "Marking the shipment as checked indicates that you have verified that all items included in this shipment are correct" -msgstr "" - #: src/pages/sales/SalesOrderShipmentDetail.tsx:339 -msgid "Shipment marked as checked" -msgstr "" - -#: src/pages/sales/SalesOrderShipmentDetail.tsx:346 -#: src/pages/sales/SalesOrderShipmentDetail.tsx:348 -msgid "Uncheck Shipment" -msgstr "" - -#: src/pages/sales/SalesOrderShipmentDetail.tsx:349 -msgid "Marking the shipment as unchecked indicates that the shipment requires further verification" -msgstr "" - -#: src/pages/sales/SalesOrderShipmentDetail.tsx:359 -msgid "Shipment marked as unchecked" -msgstr "" - -#: src/pages/sales/SalesOrderShipmentDetail.tsx:371 #: src/tables/part/PartPurchaseOrdersTable.tsx:122 msgid "Pending" msgstr "En attente" -#: src/pages/sales/SalesOrderShipmentDetail.tsx:377 -#: src/tables/sales/SalesOrderShipmentTable.tsx:147 -#: src/tables/sales/SalesOrderShipmentTable.tsx:254 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:345 +#: src/tables/sales/SalesOrderShipmentTable.tsx:168 +#: src/tables/sales/SalesOrderShipmentTable.tsx:299 msgid "Checked" msgstr "" -#: src/pages/sales/SalesOrderShipmentDetail.tsx:383 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:351 msgid "Not Checked" msgstr "" -#: src/pages/sales/SalesOrderShipmentDetail.tsx:389 -#: src/tables/sales/SalesOrderShipmentTable.tsx:154 -#: src/tables/sales/SalesOrderShipmentTable.tsx:259 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:357 +#: src/tables/sales/SalesOrderShipmentTable.tsx:175 +#: src/tables/sales/SalesOrderShipmentTable.tsx:304 msgid "Shipped" msgstr "Envoyé" -#: src/pages/sales/SalesOrderShipmentDetail.tsx:395 -#: src/tables/sales/SalesOrderShipmentTable.tsx:161 -#: src/tables/sales/SalesOrderShipmentTable.tsx:264 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:363 +#: src/tables/sales/SalesOrderShipmentTable.tsx:182 +#: src/tables/sales/SalesOrderShipmentTable.tsx:309 #: src/tables/settings/EmailTable.tsx:31 msgid "Delivered" msgstr "Livré" -#: src/pages/sales/SalesOrderShipmentDetail.tsx:410 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:378 msgid "Send Shipment" msgstr "Envoyer l'expédition" -#: src/pages/sales/SalesOrderShipmentDetail.tsx:433 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:401 msgid "Shipment Actions" msgstr "Action sur l'expédition" -#: src/pages/sales/SalesOrderShipmentDetail.tsx:442 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:410 msgid "Check" msgstr "" -#: src/pages/sales/SalesOrderShipmentDetail.tsx:443 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:411 msgid "Mark shipment as checked" msgstr "" -#: src/pages/sales/SalesOrderShipmentDetail.tsx:449 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:417 msgid "Uncheck" msgstr "" -#: src/pages/sales/SalesOrderShipmentDetail.tsx:450 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:418 msgid "Mark shipment as unchecked" msgstr "" @@ -8775,13 +8847,6 @@ msgstr "Erreurs lors du chargement de l'icone du paquet depuis le serveur" msgid "Part is not active" msgstr "La pièce n'est pas active" -#: src/tables/ColumnRenderers.tsx:73 -#: src/tables/bom/BomTable.tsx:657 -#: src/tables/part/PartParameterTable.tsx:227 -#: src/tables/part/PartTestTemplateTable.tsx:258 -msgid "Part is Locked" -msgstr "La pièce est bloquée" - #: src/tables/ColumnRenderers.tsx:78 msgid "You are subscribed to notifications for this part" msgstr "Vous êtes abonnée aux notifications pour cette pièce" @@ -9219,13 +9284,13 @@ msgstr "Pièce virtuelle" #~ msgstr "Show asssmbled items" #: src/tables/bom/BomTable.tsx:315 -#: src/tables/build/BuildLineTable.tsx:276 +#: src/tables/build/BuildLineTable.tsx:277 #: src/tables/part/PartTable.tsx:145 msgid "External stock" msgstr "Stockage externe" #: src/tables/bom/BomTable.tsx:323 -#: src/tables/build/BuildLineTable.tsx:239 +#: src/tables/build/BuildLineTable.tsx:240 msgid "Includes substitute stock" msgstr "Comprend un stock de remplacement" @@ -9234,7 +9299,7 @@ msgstr "Comprend un stock de remplacement" #~ msgstr "Edit Bom Item" #: src/tables/bom/BomTable.tsx:332 -#: src/tables/build/BuildLineTable.tsx:249 +#: src/tables/build/BuildLineTable.tsx:250 #: src/tables/sales/SalesOrderLineItemTable.tsx:166 msgid "Includes variant stock" msgstr "Inclut le stock de variantes" @@ -9272,8 +9337,8 @@ msgid "Stock Information" msgstr "Information de stock" #: src/tables/bom/BomTable.tsx:399 -#: src/tables/build/BuildLineTable.tsx:496 -#: src/tables/build/BuildLineTable.tsx:537 +#: src/tables/build/BuildLineTable.tsx:497 +#: src/tables/build/BuildLineTable.tsx:538 msgid "Consumable item" msgstr "Article consommable" @@ -9282,7 +9347,7 @@ msgid "No available stock" msgstr "Pas de stock disponible" #: src/tables/bom/BomTable.tsx:420 -#: src/tables/build/BuildLineTable.tsx:213 +#: src/tables/build/BuildLineTable.tsx:214 msgid "Show testable items" msgstr "Afficher les articles testables" @@ -9291,7 +9356,7 @@ msgid "Show trackable items" msgstr "Afficher les articles suivables" #: src/tables/bom/BomTable.tsx:430 -#: src/tables/build/BuildLineTable.tsx:208 +#: src/tables/build/BuildLineTable.tsx:209 msgid "Show assembled items" msgstr "Afficher les articles assemblés" @@ -9335,7 +9400,7 @@ msgstr "Afficher les éléments qui permettent la substitution de variantes" #: src/tables/bom/BomTable.tsx:464 #: src/tables/bom/UsedInTable.tsx:85 -#: src/tables/build/BuildLineTable.tsx:202 +#: src/tables/build/BuildLineTable.tsx:203 msgid "Optional" msgstr "Optionnel" @@ -9345,7 +9410,7 @@ msgid "Show optional items" msgstr "Afficher les articles optionnels" #: src/tables/bom/BomTable.tsx:469 -#: src/tables/build/BuildLineTable.tsx:197 +#: src/tables/build/BuildLineTable.tsx:198 msgid "Consumable" msgstr "Consommable" @@ -9420,6 +9485,7 @@ msgid "Add a single BOM item" msgstr "" #: src/tables/bom/BomTable.tsx:637 +#: src/tables/general/ParameterTable.tsx:206 #: src/tables/part/PartTable.tsx:546 msgid "Import from File" msgstr "" @@ -9433,8 +9499,8 @@ msgid "Bill of materials cannot be edited, as the part is locked" msgstr "La liste des matériaux ne peut être modifiée, car la pièce est bloquée" #: src/tables/bom/UsedInTable.tsx:34 -#: src/tables/build/BuildLineTable.tsx:207 -#: src/tables/part/ParametricPartTable.tsx:364 +#: src/tables/build/BuildLineTable.tsx:208 +#: src/tables/part/ParametricPartTable.tsx:29 #: src/tables/part/PartBuildAllocationsTable.tsx:60 #: src/tables/part/PartTable.tsx:209 #: src/tables/stock/StockItemTable.tsx:333 @@ -9455,11 +9521,11 @@ msgstr "Suivi de l'évolution" msgid "Show trackable assemblies" msgstr "Afficher les suivi de l'évolution des assemblages" -#: src/tables/build/BuildAllocatedStockTable.tsx:67 +#: src/tables/build/BuildAllocatedStockTable.tsx:64 msgid "Allocated to Output" msgstr "Affecté à la production" -#: src/tables/build/BuildAllocatedStockTable.tsx:68 +#: src/tables/build/BuildAllocatedStockTable.tsx:65 msgid "Show items allocated to a build output" msgstr "Afficher les éléments alloués à une sortie de construction" @@ -9472,50 +9538,68 @@ msgstr "Afficher les éléments alloués à une sortie de construction" #~ msgid "Include orders for part variants" #~ msgstr "Include orders for part variants" -#: src/tables/build/BuildAllocatedStockTable.tsx:97 +#: src/tables/build/BuildAllocatedStockTable.tsx:94 #: src/tables/part/PartBuildAllocationsTable.tsx:84 #: src/tables/part/PartPurchaseOrdersTable.tsx:132 #: src/tables/part/PartSalesAllocationsTable.tsx:69 #: src/tables/sales/SalesOrderAllocationTable.tsx:122 -#: src/tables/sales/SalesOrderShipmentTable.tsx:130 +#: src/tables/sales/SalesOrderShipmentTable.tsx:151 msgid "Order Status" msgstr "Statut de la commande" +#: src/tables/build/BuildAllocatedStockTable.tsx:164 +#: src/tables/build/BuildLineTable.tsx:651 +msgid "Edit Stock Allocation" +msgstr "Modifier la répartition des stocks" + #: src/tables/build/BuildAllocatedStockTable.tsx:164 #~ msgid "Edit Build Item" #~ msgstr "Edit Build Item" -#: src/tables/build/BuildAllocatedStockTable.tsx:167 -#: src/tables/build/BuildLineTable.tsx:650 -msgid "Edit Stock Allocation" -msgstr "Modifier la répartition des stocks" - #: src/tables/build/BuildAllocatedStockTable.tsx:174 #~ msgid "Delete Build Item" #~ msgstr "Delete Build Item" +#: src/tables/build/BuildAllocatedStockTable.tsx:177 +#: src/tables/build/BuildLineTable.tsx:664 +#: src/tables/sales/SalesOrderAllocationTable.tsx:218 +msgid "Remove Allocated Stock" +msgstr "" + #: src/tables/build/BuildAllocatedStockTable.tsx:180 #: src/tables/build/BuildLineTable.tsx:663 -msgid "Delete Stock Allocation" -msgstr "Supprimer la répartition du stock" +#~ msgid "Delete Stock Allocation" +#~ msgstr "Delete Stock Allocation" -#: src/tables/build/BuildAllocatedStockTable.tsx:239 +#: src/tables/build/BuildAllocatedStockTable.tsx:182 +#: src/tables/build/BuildLineTable.tsx:669 +#: src/tables/sales/SalesOrderAllocationTable.tsx:221 +msgid "Are you sure you want to remove this allocated stock from the order?" +msgstr "" + +#: src/tables/build/BuildAllocatedStockTable.tsx:242 msgid "Consume" msgstr "Consommer" +#: src/tables/build/BuildAllocatedStockTable.tsx:259 +#: src/tables/build/BuildLineTable.tsx:112 +#: src/tables/sales/SalesOrderAllocationTable.tsx:248 +msgid "Remove allocated stock" +msgstr "" + #: src/tables/build/BuildLineTable.tsx:59 #~ msgid "Show lines with available stock" #~ msgstr "Show lines with available stock" -#: src/tables/build/BuildLineTable.tsx:120 +#: src/tables/build/BuildLineTable.tsx:121 msgid "View Stock Item" msgstr "Voir l'article du stock" -#: src/tables/build/BuildLineTable.tsx:183 +#: src/tables/build/BuildLineTable.tsx:184 msgid "Show fully allocated lines" msgstr "Voir les lignes totalement allouées" -#: src/tables/build/BuildLineTable.tsx:188 +#: src/tables/build/BuildLineTable.tsx:189 msgid "Show fully consumed lines" msgstr "Voir les lignes totalement consommées" @@ -9523,124 +9607,124 @@ msgstr "Voir les lignes totalement consommées" #~ msgid "Show allocated lines" #~ msgstr "Show allocated lines" -#: src/tables/build/BuildLineTable.tsx:193 +#: src/tables/build/BuildLineTable.tsx:194 msgid "Show items with sufficient available stock" msgstr "" -#: src/tables/build/BuildLineTable.tsx:198 +#: src/tables/build/BuildLineTable.tsx:199 msgid "Show consumable lines" msgstr "Afficher les lignes consommables" -#: src/tables/build/BuildLineTable.tsx:203 +#: src/tables/build/BuildLineTable.tsx:204 msgid "Show optional lines" msgstr "Afficher les lignes optionnelles" -#: src/tables/build/BuildLineTable.tsx:212 +#: src/tables/build/BuildLineTable.tsx:213 #: src/tables/part/PartTable.tsx:233 msgid "Testable" msgstr "Testable" -#: src/tables/build/BuildLineTable.tsx:217 +#: src/tables/build/BuildLineTable.tsx:218 #: src/tables/stock/StockItemTable.tsx:388 msgid "Tracked" msgstr "Suivi" -#: src/tables/build/BuildLineTable.tsx:218 +#: src/tables/build/BuildLineTable.tsx:219 msgid "Show tracked lines" msgstr "Afficher les lignes suivies" -#: src/tables/build/BuildLineTable.tsx:223 +#: src/tables/build/BuildLineTable.tsx:224 msgid "Show items with stock on order" msgstr "" -#: src/tables/build/BuildLineTable.tsx:258 +#: src/tables/build/BuildLineTable.tsx:259 #: src/tables/sales/SalesOrderLineItemTable.tsx:172 msgid "In production" msgstr "En production" -#: src/tables/build/BuildLineTable.tsx:286 +#: src/tables/build/BuildLineTable.tsx:287 msgid "Insufficient stock" msgstr "Rupture de stock" -#: src/tables/build/BuildLineTable.tsx:302 +#: src/tables/build/BuildLineTable.tsx:303 #: src/tables/sales/SalesOrderLineItemTable.tsx:160 #: src/tables/stock/StockItemTable.tsx:191 msgid "No stock available" msgstr "Aucun stocke disponible" -#: src/tables/build/BuildLineTable.tsx:375 +#: src/tables/build/BuildLineTable.tsx:376 msgid "Gets Inherited" msgstr "Obtenir les hérités" -#: src/tables/build/BuildLineTable.tsx:388 +#: src/tables/build/BuildLineTable.tsx:389 msgid "Unit Quantity" msgstr "Quantité unitaire" -#: src/tables/build/BuildLineTable.tsx:415 +#: src/tables/build/BuildLineTable.tsx:416 msgid "Setup Quantity" msgstr "Spécifier la quantité" -#: src/tables/build/BuildLineTable.tsx:424 +#: src/tables/build/BuildLineTable.tsx:425 msgid "Attrition" msgstr "Attrition" -#: src/tables/build/BuildLineTable.tsx:432 +#: src/tables/build/BuildLineTable.tsx:433 msgid "Rounding Multiple" msgstr "Arrondi au multiple" -#: src/tables/build/BuildLineTable.tsx:441 +#: src/tables/build/BuildLineTable.tsx:442 msgid "BOM Information" msgstr "Informations de nomenclature" -#: src/tables/build/BuildLineTable.tsx:515 +#: src/tables/build/BuildLineTable.tsx:516 #: src/tables/part/PartBuildAllocationsTable.tsx:102 msgid "Fully allocated" msgstr "Complètement alloué" -#: src/tables/build/BuildLineTable.tsx:563 +#: src/tables/build/BuildLineTable.tsx:564 #: src/tables/sales/SalesOrderLineItemTable.tsx:311 msgid "Create Build Order" msgstr "Créer un ordre de fabrication" -#: src/tables/build/BuildLineTable.tsx:592 +#: src/tables/build/BuildLineTable.tsx:593 msgid "Auto allocation in progress" msgstr "Attribution automatique en cours" -#: src/tables/build/BuildLineTable.tsx:595 -#: src/tables/build/BuildLineTable.tsx:802 +#: src/tables/build/BuildLineTable.tsx:596 +#: src/tables/build/BuildLineTable.tsx:809 msgid "Auto Allocate Stock" msgstr "Allocation automatique du stock" -#: src/tables/build/BuildLineTable.tsx:596 +#: src/tables/build/BuildLineTable.tsx:597 msgid "Automatically allocate stock to this build according to the selected options" msgstr "Attribuer automatiquement du stock à ce bâtiment en fonction des options sélectionnées" -#: src/tables/build/BuildLineTable.tsx:616 -#: src/tables/build/BuildLineTable.tsx:630 -#: src/tables/build/BuildLineTable.tsx:751 -#: src/tables/build/BuildLineTable.tsx:852 +#: src/tables/build/BuildLineTable.tsx:617 +#: src/tables/build/BuildLineTable.tsx:631 +#: src/tables/build/BuildLineTable.tsx:758 +#: src/tables/build/BuildLineTable.tsx:859 #: src/tables/build/BuildOutputTable.tsx:355 #: src/tables/build/BuildOutputTable.tsx:360 msgid "Deallocate Stock" msgstr "Désallouer le stock" -#: src/tables/build/BuildLineTable.tsx:632 +#: src/tables/build/BuildLineTable.tsx:633 msgid "Deallocate all untracked stock for this build order" msgstr "Désallouer tout le stock non suivi pour cet ordre de fabrication" -#: src/tables/build/BuildLineTable.tsx:634 +#: src/tables/build/BuildLineTable.tsx:635 msgid "Deallocate stock from the selected line item" msgstr "Désallouer le stock de la ligne sélectionné" -#: src/tables/build/BuildLineTable.tsx:638 +#: src/tables/build/BuildLineTable.tsx:639 msgid "Stock has been deallocated" msgstr "Le stock à état désallouer" -#: src/tables/build/BuildLineTable.tsx:771 +#: src/tables/build/BuildLineTable.tsx:778 msgid "Build Stock" msgstr "Stock de fabrication" -#: src/tables/build/BuildLineTable.tsx:784 +#: src/tables/build/BuildLineTable.tsx:791 #: src/tables/sales/SalesOrderLineItemTable.tsx:487 msgid "View Part" msgstr "Voir la pièce" @@ -9739,7 +9823,7 @@ msgid "Serialize Build Output" msgstr "Sérialiser la sortie de fabrication" #: src/tables/build/BuildOutputTable.tsx:405 -#: src/tables/part/PartTestResultTable.tsx:310 +#: src/tables/part/PartTestResultTable.tsx:318 #: src/tables/stock/StockItemTable.tsx:328 msgid "Filter by stock status" msgstr "Filtrer par état du stock" @@ -9964,8 +10048,8 @@ msgid "View Item" msgstr "Voir l'article" #: src/tables/general/ExtraLineItemTable.tsx:95 -#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:299 -#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:403 +#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:300 +#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:405 #: src/tables/sales/ReturnOrderLineItemTable.tsx:83 #: src/tables/sales/ReturnOrderLineItemTable.tsx:187 #: src/tables/sales/SalesOrderLineItemTable.tsx:252 @@ -9974,14 +10058,14 @@ msgid "Add Line Item" msgstr "Ajouter la ligne de l'article" #: src/tables/general/ExtraLineItemTable.tsx:108 -#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:320 +#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:322 #: src/tables/sales/ReturnOrderLineItemTable.tsx:96 #: src/tables/sales/SalesOrderLineItemTable.tsx:271 msgid "Edit Line Item" msgstr "Modifier la ligne de l'article" #: src/tables/general/ExtraLineItemTable.tsx:117 -#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:329 +#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:331 #: src/tables/sales/ReturnOrderLineItemTable.tsx:105 #: src/tables/sales/SalesOrderLineItemTable.tsx:280 msgid "Delete Line Item" @@ -9991,6 +10075,137 @@ msgstr "Supprimer la ligne de l'article" msgid "Add Extra Line Item" msgstr "Ajouter une ligne de plus de l'article" +#: src/tables/general/ParameterTable.tsx:88 +msgid "Internal Units" +msgstr "Unités internes" + +#: src/tables/general/ParameterTable.tsx:108 +#: src/tables/general/ParameterTable.tsx:123 +msgid "Updated By" +msgstr "Mis à jour par" + +#: src/tables/general/ParameterTable.tsx:118 +msgid "Show parameters for enabled templates" +msgstr "" + +#: src/tables/general/ParameterTable.tsx:124 +msgid "Filter by user who last updated the parameter" +msgstr "Filtrer avec l'utilisateur qui a édité le paramètre en dernier" + +#: src/tables/general/ParameterTable.tsx:154 +msgid "Import Parameters" +msgstr "" + +#: src/tables/general/ParameterTable.tsx:164 +#: src/tables/general/ParametricDataTable.tsx:261 +#: src/tables/general/ParametricDataTable.tsx:392 +msgid "Add Parameter" +msgstr "Ajouter un paramètre" + +#: src/tables/general/ParameterTable.tsx:175 +#: src/tables/general/ParameterTable.tsx:222 +#: src/tables/general/ParametricDataTable.tsx:285 +msgid "Edit Parameter" +msgstr "Modifier le paramètre" + +#: src/tables/general/ParameterTable.tsx:183 +#: src/tables/general/ParameterTable.tsx:230 +msgid "Delete Parameter" +msgstr "Supprimer le paramètre" + +#: src/tables/general/ParameterTable.tsx:191 +msgid "Add Parameters" +msgstr "" + +#: src/tables/general/ParameterTable.tsx:197 +msgid "Create Parameter" +msgstr "" + +#: src/tables/general/ParameterTable.tsx:199 +msgid "Create a new parameter" +msgstr "" + +#: src/tables/general/ParameterTable.tsx:208 +msgid "Import parameters from a file" +msgstr "" + +#: src/tables/general/ParameterTemplateTable.tsx:48 +#: src/tables/general/ParameterTemplateTable.tsx:197 +msgid "Add Parameter Template" +msgstr "Ajouter un modèle de paramètre" + +#: src/tables/general/ParameterTemplateTable.tsx:64 +msgid "Duplicate Parameter Template" +msgstr "Dupliquer le paramètre de modèle" + +#: src/tables/general/ParameterTemplateTable.tsx:78 +msgid "Delete Parameter Template" +msgstr "Supprimer un modèle de paramètre" + +#: src/tables/general/ParameterTemplateTable.tsx:85 +msgid "Edit Parameter Template" +msgstr "Modifier le modèle de paramètre" + +#: src/tables/general/ParameterTemplateTable.tsx:138 +msgid "Checkbox" +msgstr "Case à cocher" + +#: src/tables/general/ParameterTemplateTable.tsx:139 +msgid "Show checkbox templates" +msgstr "Afficher le modèle de cases à cocher" + +#: src/tables/general/ParameterTemplateTable.tsx:143 +msgid "Has choices" +msgstr "A des choix" + +#: src/tables/general/ParameterTemplateTable.tsx:144 +msgid "Show templates with choices" +msgstr "Afficher les modèles avec choix" + +#: src/tables/general/ParameterTemplateTable.tsx:148 +#: src/tables/part/PartTable.tsx:245 +msgid "Has Units" +msgstr "A des unités" + +#: src/tables/general/ParameterTemplateTable.tsx:149 +msgid "Show templates with units" +msgstr "Afficher les modèles avec les unités" + +#: src/tables/general/ParameterTemplateTable.tsx:154 +msgid "Show enabled templates" +msgstr "" + +#: src/tables/general/ParameterTemplateTable.tsx:158 +#: src/tables/settings/ImportSessionTable.tsx:111 +#: src/tables/settings/TemplateTable.tsx:368 +msgid "Model Type" +msgstr "Type de modèle" + +#: src/tables/general/ParameterTemplateTable.tsx:159 +msgid "Filter by model type" +msgstr "" + +#: src/tables/general/ParametricDataTable.tsx:79 +msgid "Click to edit" +msgstr "Cliquer pour modifier" + +#: src/tables/general/ParametricDataTableFilters.tsx:36 +msgid "True" +msgstr "Vrai" + +#: src/tables/general/ParametricDataTableFilters.tsx:37 +msgid "False" +msgstr "Faux" + +#: src/tables/general/ParametricDataTableFilters.tsx:47 +#: src/tables/general/ParametricDataTableFilters.tsx:80 +msgid "Select a choice" +msgstr "Sélectionner un choix" + +#: src/tables/general/ParametricDataTableFilters.tsx:100 +msgid "Enter a value" +msgstr "Entrer une valeur" + #: src/tables/machine/MachineListTable.tsx:133 msgid "Machine restarted" msgstr "Équipement redémarré" @@ -10071,7 +10286,7 @@ msgid "Initialized" msgstr "Initialisé" #: src/tables/machine/MachineListTable.tsx:410 -#: src/tables/machine/MachineTypeTable.tsx:307 +#: src/tables/machine/MachineTypeTable.tsx:305 msgid "No errors reported" msgstr "Aucune erreur reportée" @@ -10132,15 +10347,15 @@ msgstr "Driver construit" #~ msgid "Machine type information" #~ msgstr "Machine type information" -#: src/tables/machine/MachineTypeTable.tsx:128 +#: src/tables/machine/MachineTypeTable.tsx:126 msgid "Not Found" msgstr "Non trouvé" -#: src/tables/machine/MachineTypeTable.tsx:131 +#: src/tables/machine/MachineTypeTable.tsx:129 msgid "Machine type not found." msgstr "Type de la machine non trouvé." -#: src/tables/machine/MachineTypeTable.tsx:141 +#: src/tables/machine/MachineTypeTable.tsx:139 msgid "Machine Type Information" msgstr "Informations du type de la machine" @@ -10148,34 +10363,34 @@ msgstr "Informations du type de la machine" #~ msgid "Available drivers" #~ msgstr "Available drivers" -#: src/tables/machine/MachineTypeTable.tsx:156 -#: src/tables/machine/MachineTypeTable.tsx:255 +#: src/tables/machine/MachineTypeTable.tsx:154 +#: src/tables/machine/MachineTypeTable.tsx:253 msgid "Slug" msgstr "Identifiant" -#: src/tables/machine/MachineTypeTable.tsx:167 -#: src/tables/machine/MachineTypeTable.tsx:276 +#: src/tables/machine/MachineTypeTable.tsx:165 +#: src/tables/machine/MachineTypeTable.tsx:274 msgid "Provider plugin" msgstr "Plugin fournisseur" -#: src/tables/machine/MachineTypeTable.tsx:179 -#: src/tables/machine/MachineTypeTable.tsx:288 +#: src/tables/machine/MachineTypeTable.tsx:177 +#: src/tables/machine/MachineTypeTable.tsx:286 msgid "Provider file" msgstr "Fichier fournisseur" -#: src/tables/machine/MachineTypeTable.tsx:194 +#: src/tables/machine/MachineTypeTable.tsx:192 msgid "Available Drivers" msgstr "Drivers disponibles" -#: src/tables/machine/MachineTypeTable.tsx:234 +#: src/tables/machine/MachineTypeTable.tsx:232 msgid "Machine driver not found." msgstr "Pilote d'équipement non trouvé." -#: src/tables/machine/MachineTypeTable.tsx:242 +#: src/tables/machine/MachineTypeTable.tsx:240 msgid "Machine driver information" msgstr "Informations sur le pilote de l'équipement" -#: src/tables/machine/MachineTypeTable.tsx:262 +#: src/tables/machine/MachineTypeTable.tsx:260 msgid "Machine type" msgstr "Type d'équipement" @@ -10187,15 +10402,15 @@ msgstr "Type d'équipement" #~ msgid "Machine driver detail" #~ msgstr "Machine driver detail" -#: src/tables/machine/MachineTypeTable.tsx:362 +#: src/tables/machine/MachineTypeTable.tsx:360 msgid "Builtin type" msgstr "Type intégré" -#: src/tables/machine/MachineTypeTable.tsx:371 +#: src/tables/machine/MachineTypeTable.tsx:369 msgid "Machine Type Detail" msgstr "Détail du type de machine" -#: src/tables/machine/MachineTypeTable.tsx:381 +#: src/tables/machine/MachineTypeTable.tsx:379 msgid "Machine Driver Detail" msgstr "Détails sur le driver de la machine" @@ -10213,52 +10428,31 @@ msgstr "Notification" msgid "Message" msgstr "Message" -#: src/tables/part/ParametricPartTable.tsx:78 -msgid "Click to edit" -msgstr "Cliquer pour modifier" +#: src/tables/part/ParametricPartTable.tsx:20 +msgid "Show active parts" +msgstr "Afficher les parties actives" + +#: src/tables/part/ParametricPartTable.tsx:25 +msgid "Show locked parts" +msgstr "Afficher les pièces bloquées" + +#: src/tables/part/ParametricPartTable.tsx:30 +msgid "Show assembly parts" +msgstr "Afficher les pièces d'assemblage" #: src/tables/part/ParametricPartTable.tsx:82 #~ msgid "Edit parameter" #~ msgstr "Edit parameter" #: src/tables/part/ParametricPartTable.tsx:244 -msgid "Add Part Parameter" -msgstr "Ajouter un paramètre de pièce" +#~ msgid "Add Part Parameter" +#~ msgstr "Add Part Parameter" #: src/tables/part/ParametricPartTable.tsx:258 #: src/tables/part/PartParameterTable.tsx:164 #: src/tables/part/PartParameterTable.tsx:187 -msgid "Edit Part Parameter" -msgstr "Modifier un paramètre de pièce" - -#: src/tables/part/ParametricPartTable.tsx:355 -msgid "Show active parts" -msgstr "Afficher les parties actives" - -#: src/tables/part/ParametricPartTable.tsx:360 -msgid "Show locked parts" -msgstr "Afficher les pièces bloquées" - -#: src/tables/part/ParametricPartTable.tsx:365 -msgid "Show assembly parts" -msgstr "Afficher les pièces d'assemblage" - -#: src/tables/part/ParametricPartTableFilters.tsx:36 -msgid "True" -msgstr "Vrai" - -#: src/tables/part/ParametricPartTableFilters.tsx:37 -msgid "False" -msgstr "Faux" - -#: src/tables/part/ParametricPartTableFilters.tsx:47 -#: src/tables/part/ParametricPartTableFilters.tsx:80 -msgid "Select a choice" -msgstr "Sélectionner un choix" - -#: src/tables/part/ParametricPartTableFilters.tsx:100 -msgid "Enter a value" -msgstr "Entrer une valeur" +#~ msgid "Edit Part Parameter" +#~ msgstr "Edit Part Parameter" #: src/tables/part/PartBuildAllocationsTable.tsx:64 msgid "Assembly IPN" @@ -10273,7 +10467,7 @@ msgid "Required Stock" msgstr "Stock requis" #: src/tables/part/PartBuildAllocationsTable.tsx:124 -#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:381 +#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:383 msgid "View Build Order" msgstr "Voir l'ordre de construction" @@ -10332,85 +10526,22 @@ msgstr "Modifier les paramètres de la catégorie" msgid "Delete Category Parameter" msgstr "Supprimer un paramètre de catégorie" -#: src/tables/part/PartCategoryTemplateTable.tsx:87 -msgid "Parameter Template" -msgstr "Modèle de paramètre" - #: src/tables/part/PartCategoryTemplateTable.tsx:93 #~ msgid "[{0}]" #~ msgstr "[{0}]" -#: src/tables/part/PartParameterTable.tsx:108 -msgid "Internal Units" -msgstr "Unités internes" - -#: src/tables/part/PartParameterTable.tsx:128 -#: src/tables/part/PartParameterTable.tsx:138 -msgid "Updated By" -msgstr "Mis à jour par" - -#: src/tables/part/PartParameterTable.tsx:139 -msgid "Filter by user who last updated the parameter" -msgstr "Filtrer avec l'utilisateur qui a édité le paramètre en dernier" - #: src/tables/part/PartParameterTable.tsx:148 -msgid "New Part Parameter" -msgstr "Paramètre de la nouvelle pièce" +#~ msgid "New Part Parameter" +#~ msgstr "New Part Parameter" #: src/tables/part/PartParameterTable.tsx:173 #: src/tables/part/PartParameterTable.tsx:195 -msgid "Delete Part Parameter" -msgstr "Supprimer un paramètre de la pièce" +#~ msgid "Delete Part Parameter" +#~ msgstr "Delete Part Parameter" #: src/tables/part/PartParameterTable.tsx:213 -msgid "Add parameter" -msgstr "Ajouter un paramètre" - -#: src/tables/part/PartParameterTable.tsx:232 -msgid "Part parameters cannot be edited, as the part is locked" -msgstr "Les paramètres de la partie ne peuvent pas être modifiés, car la partie est verrouillée" - -#: src/tables/part/PartParameterTemplateTable.tsx:36 -msgid "Checkbox" -msgstr "Case à cocher" - -#: src/tables/part/PartParameterTemplateTable.tsx:37 -msgid "Show checkbox templates" -msgstr "Afficher le modèle de cases à cocher" - -#: src/tables/part/PartParameterTemplateTable.tsx:41 -msgid "Has choices" -msgstr "A des choix" - -#: src/tables/part/PartParameterTemplateTable.tsx:42 -msgid "Show templates with choices" -msgstr "Afficher les modèles avec choix" - -#: src/tables/part/PartParameterTemplateTable.tsx:46 -#: src/tables/part/PartTable.tsx:245 -msgid "Has Units" -msgstr "A des unités" - -#: src/tables/part/PartParameterTemplateTable.tsx:47 -msgid "Show templates with units" -msgstr "Afficher les modèles avec les unités" - -#: src/tables/part/PartParameterTemplateTable.tsx:91 -#: src/tables/part/PartParameterTemplateTable.tsx:166 -msgid "Add Parameter Template" -msgstr "Ajouter un modèle de paramètre" - -#: src/tables/part/PartParameterTemplateTable.tsx:105 -msgid "Duplicate Parameter Template" -msgstr "Dupliquer le paramètre de modèle" - -#: src/tables/part/PartParameterTemplateTable.tsx:117 -msgid "Edit Parameter Template" -msgstr "Modifier le modèle de paramètre" - -#: src/tables/part/PartParameterTemplateTable.tsx:128 -msgid "Delete Parameter Template" -msgstr "Supprimer un modèle de paramètre" +#~ msgid "Add parameter" +#~ msgstr "Add parameter" #: src/tables/part/PartParameterTemplateTable.tsx:141 #~ msgid "Add parameter template" @@ -10430,7 +10561,7 @@ msgid "Show received items" msgstr "Afficher les articles reçus" #: src/tables/part/PartSalesAllocationsTable.tsx:90 -#: src/tables/sales/SalesOrderShipmentTable.tsx:218 +#: src/tables/sales/SalesOrderShipmentTable.tsx:263 msgid "View Sales Order" msgstr "Voir la commande client" @@ -10617,8 +10748,8 @@ msgstr "" #: src/tables/part/PartTestResultTable.tsx:103 #: src/tables/part/PartTestResultTable.tsx:181 -#: src/tables/part/PartTestResultTable.tsx:320 -#: src/tables/part/PartTestResultTable.tsx:334 +#: src/tables/part/PartTestResultTable.tsx:328 +#: src/tables/part/PartTestResultTable.tsx:342 #: src/tables/stock/StockItemTestResultTable.tsx:296 #: src/tables/stock/StockItemTestResultTable.tsx:368 #: src/tables/stock/StockItemTestResultTable.tsx:429 @@ -10643,7 +10774,7 @@ msgstr "Résultats de test ajoutés" msgid "No Result" msgstr "Aucun résultat" -#: src/tables/part/PartTestResultTable.tsx:298 +#: src/tables/part/PartTestResultTable.tsx:306 msgid "Show build outputs currently in production" msgstr "Afficher les sorties" @@ -11013,36 +11144,45 @@ msgstr "Installé" #~ msgid "Parameter updated" #~ msgstr "Parameter updated" -#: src/tables/purchasing/ManufacturerPartParameterTable.tsx:63 -#: src/tables/purchasing/ManufacturerPartParameterTable.tsx:112 -msgid "Add Parameter" -msgstr "Ajouter un paramètre" - #: src/tables/purchasing/ManufacturerPartParameterTable.tsx:73 #~ msgid "Parameter deleted" #~ msgstr "Parameter deleted" -#: src/tables/purchasing/ManufacturerPartParameterTable.tsx:74 -msgid "Edit Parameter" -msgstr "Modifier le paramètre" - #: src/tables/purchasing/ManufacturerPartParameterTable.tsx:74 #~ msgid "Are you sure you want to delete this parameter?" #~ msgstr "Are you sure you want to delete this parameter?" -#: src/tables/purchasing/ManufacturerPartParameterTable.tsx:82 -msgid "Delete Parameter" -msgstr "Supprimer le paramètre" - -#: src/tables/purchasing/ManufacturerPartTable.tsx:63 -#~ msgid "Create Manufacturer Part" -#~ msgstr "Create Manufacturer Part" - +#: src/tables/purchasing/ManufacturerPartParametricTable.tsx:34 #: src/tables/purchasing/ManufacturerPartTable.tsx:82 #: src/tables/purchasing/SupplierPartTable.tsx:99 msgid "MPN" msgstr "Référence fabricant" +#: src/tables/purchasing/ManufacturerPartParametricTable.tsx:44 +#: src/tables/purchasing/ManufacturerPartTable.tsx:134 +#: src/tables/purchasing/SupplierPartTable.tsx:220 +msgid "Active Part" +msgstr "Pièce active" + +#: src/tables/purchasing/ManufacturerPartParametricTable.tsx:45 +#: src/tables/purchasing/ManufacturerPartTable.tsx:135 +msgid "Show manufacturer parts for active internal parts." +msgstr "" + +#: src/tables/purchasing/ManufacturerPartParametricTable.tsx:50 +#: src/tables/purchasing/ManufacturerPartTable.tsx:140 +msgid "Active Manufacturer" +msgstr "" + +#: src/tables/purchasing/ManufacturerPartParametricTable.tsx:51 +#: src/tables/purchasing/ManufacturerPartTable.tsx:142 +msgid "Show manufacturer parts for active manufacturers." +msgstr "" + +#: src/tables/purchasing/ManufacturerPartTable.tsx:63 +#~ msgid "Create Manufacturer Part" +#~ msgstr "Create Manufacturer Part" + #: src/tables/purchasing/ManufacturerPartTable.tsx:100 #~ msgid "Manufacturer part updated" #~ msgstr "Manufacturer part updated" @@ -11055,25 +11195,8 @@ msgstr "Référence fabricant" #~ msgid "Are you sure you want to remove this manufacturer part?" #~ msgstr "Are you sure you want to remove this manufacturer part?" -#: src/tables/purchasing/ManufacturerPartTable.tsx:134 -#: src/tables/purchasing/SupplierPartTable.tsx:220 -msgid "Active Part" -msgstr "Pièce active" - -#: src/tables/purchasing/ManufacturerPartTable.tsx:135 -msgid "Show manufacturer parts for active internal parts." -msgstr "" - -#: src/tables/purchasing/ManufacturerPartTable.tsx:140 -msgid "Active Manufacturer" -msgstr "" - -#: src/tables/purchasing/ManufacturerPartTable.tsx:142 -msgid "Show manufacturer parts for active manufacturers." -msgstr "" - #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:115 -#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:397 +#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:399 msgid "Import Line Items" msgstr "Importer des articles" @@ -11099,11 +11222,11 @@ msgstr "Afficher les articles qui ont été reçus" #~ msgid "Add line item" #~ msgstr "Add line item" -#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:350 +#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:352 msgid "Receive line item" msgstr "Recevoir l'article" -#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:414 +#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:416 msgid "Receive items" msgstr "Recevoir les articles" @@ -11201,25 +11324,25 @@ msgid "Not shipped" msgstr "Non expédié" #: src/tables/sales/SalesOrderAllocationTable.tsx:211 -#: src/tables/sales/SalesOrderAllocationTable.tsx:229 +#: src/tables/sales/SalesOrderAllocationTable.tsx:235 msgid "Edit Allocation" msgstr "Modifier l'allocation" #: src/tables/sales/SalesOrderAllocationTable.tsx:218 #: src/tables/sales/SalesOrderAllocationTable.tsx:241 -msgid "Delete Allocation" -msgstr "Supprimer l'allocation" +#~ msgid "Delete Allocation" +#~ msgstr "Delete Allocation" -#: src/tables/sales/SalesOrderAllocationTable.tsx:252 -#: src/tables/sales/SalesOrderAllocationTable.tsx:253 +#: src/tables/sales/SalesOrderAllocationTable.tsx:261 +#: src/tables/sales/SalesOrderAllocationTable.tsx:262 msgid "View Shipment" msgstr "Voir l'expédition" -#: src/tables/sales/SalesOrderAllocationTable.tsx:308 +#: src/tables/sales/SalesOrderAllocationTable.tsx:317 msgid "Assign to Shipment" msgstr "Assigner à l'expédition" -#: src/tables/sales/SalesOrderAllocationTable.tsx:324 +#: src/tables/sales/SalesOrderAllocationTable.tsx:333 msgid "Assign to shipment" msgstr "Assigner à l'expédition" @@ -11259,35 +11382,35 @@ msgstr "Commander du stock" #~ msgid "Delete Shipment" #~ msgstr "Delete Shipment" -#: src/tables/sales/SalesOrderShipmentTable.tsx:72 +#: src/tables/sales/SalesOrderShipmentTable.tsx:79 msgid "Create Shipment" msgstr "Créer une expédition" -#: src/tables/sales/SalesOrderShipmentTable.tsx:143 +#: src/tables/sales/SalesOrderShipmentTable.tsx:164 msgid "Items" msgstr "Articles" -#: src/tables/sales/SalesOrderShipmentTable.tsx:203 +#: src/tables/sales/SalesOrderShipmentTable.tsx:248 msgid "Edit shipment" msgstr "Modifier l'expédition" -#: src/tables/sales/SalesOrderShipmentTable.tsx:211 +#: src/tables/sales/SalesOrderShipmentTable.tsx:256 msgid "Cancel shipment" msgstr "Annuler l'expédition" -#: src/tables/sales/SalesOrderShipmentTable.tsx:241 +#: src/tables/sales/SalesOrderShipmentTable.tsx:286 msgid "Add shipment" msgstr "Ajouter une expédition" -#: src/tables/sales/SalesOrderShipmentTable.tsx:255 +#: src/tables/sales/SalesOrderShipmentTable.tsx:300 msgid "Show shipments which have been checked" msgstr "" -#: src/tables/sales/SalesOrderShipmentTable.tsx:260 +#: src/tables/sales/SalesOrderShipmentTable.tsx:305 msgid "Show shipments which have been shipped" msgstr "Afficher les expéditions qui ont été envoyées" -#: src/tables/sales/SalesOrderShipmentTable.tsx:265 +#: src/tables/sales/SalesOrderShipmentTable.tsx:310 msgid "Show shipments which have been delivered" msgstr "Afficher les expéditions qui ont été livrées" @@ -11621,11 +11744,6 @@ msgstr "Envoyé" msgid "Imported Rows" msgstr "Lignes importées" -#: src/tables/settings/ImportSessionTable.tsx:111 -#: src/tables/settings/TemplateTable.tsx:368 -msgid "Model Type" -msgstr "Type de modèle" - #: src/tables/settings/ImportSessionTable.tsx:112 #: src/tables/settings/TemplateTable.tsx:369 msgid "Filter by target model type" diff --git a/src/frontend/src/locales/he/messages.po b/src/frontend/src/locales/he/messages.po index 1655fa4bd3..b758d73c36 100644 --- a/src/frontend/src/locales/he/messages.po +++ b/src/frontend/src/locales/he/messages.po @@ -8,7 +8,7 @@ msgstr "" "Language: he\n" "Project-Id-Version: inventree\n" "Report-Msgid-Bugs-To: \n" -"PO-Revision-Date: 2025-11-19 19:39\n" +"PO-Revision-Date: 2025-12-07 07:36\n" "Last-Translator: \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" @@ -30,7 +30,7 @@ msgid "Edit" msgstr "ערוך" #: lib/components/RowActions.tsx:56 -#: src/components/forms/ApiForm.tsx:735 +#: src/components/forms/ApiForm.tsx:754 #: src/components/items/ActionDropdown.tsx:257 #: src/components/items/RoleTable.tsx:155 #: src/hooks/UseForm.tsx:164 @@ -56,24 +56,24 @@ msgstr "בטל" #: lib/components/RowActions.tsx:136 #: src/components/nav/NavigationDrawer.tsx:190 -#: src/forms/PurchaseOrderForms.tsx:802 +#: src/forms/PurchaseOrderForms.tsx:854 #: src/forms/StockForms.tsx:796 #: src/forms/StockForms.tsx:843 -#: src/forms/StockForms.tsx:889 -#: src/forms/StockForms.tsx:928 -#: src/forms/StockForms.tsx:964 -#: src/forms/StockForms.tsx:1050 +#: src/forms/StockForms.tsx:896 +#: src/forms/StockForms.tsx:942 +#: src/forms/StockForms.tsx:980 +#: src/forms/StockForms.tsx:1066 #: src/pages/Index/Settings/AccountSettings/MFASettings.tsx:962 msgid "Actions" msgstr "" #: lib/components/SearchInput.tsx:34 -#: src/components/forms/fields/RelatedModelField.tsx:408 +#: src/components/forms/fields/RelatedModelField.tsx:479 #: src/components/nav/Header.tsx:169 #: src/components/wizards/ImportPartWizard.tsx:200 #: src/components/wizards/ImportPartWizard.tsx:233 -#: src/pages/Index/Settings/UserSettings.tsx:74 -#: src/pages/part/PartDetail.tsx:1155 +#: src/pages/Index/Settings/UserSettings.tsx:75 +#: src/pages/part/PartDetail.tsx:1176 msgid "Search" msgstr "חפש" @@ -95,7 +95,7 @@ msgstr "כו" msgid "No" msgstr "לא" -#: lib/enums/ModelInformation.tsx:28 +#: lib/enums/ModelInformation.tsx:29 #: src/components/wizards/OrderPartsWizard.tsx:279 #: src/forms/BuildForms.tsx:332 #: src/forms/BuildForms.tsx:407 @@ -103,208 +103,234 @@ msgstr "לא" #: src/forms/BuildForms.tsx:630 #: src/forms/BuildForms.tsx:793 #: src/forms/BuildForms.tsx:896 -#: src/forms/PurchaseOrderForms.tsx:798 +#: src/forms/PurchaseOrderForms.tsx:850 #: src/forms/ReturnOrderForms.tsx:242 -#: src/forms/SalesOrderForms.tsx:305 +#: src/forms/SalesOrderForms.tsx:384 #: src/forms/StockForms.tsx:360 #: src/forms/StockForms.tsx:791 #: src/forms/StockForms.tsx:838 -#: src/forms/StockForms.tsx:884 -#: src/forms/StockForms.tsx:923 -#: src/forms/StockForms.tsx:959 -#: src/forms/StockForms.tsx:1002 -#: src/forms/StockForms.tsx:1046 -#: src/forms/StockForms.tsx:1094 -#: src/forms/StockForms.tsx:1138 -#: src/pages/build/BuildDetail.tsx:200 -#: src/pages/part/PartDetail.tsx:1207 +#: src/forms/StockForms.tsx:891 +#: src/forms/StockForms.tsx:937 +#: src/forms/StockForms.tsx:975 +#: src/forms/StockForms.tsx:1018 +#: src/forms/StockForms.tsx:1062 +#: src/forms/StockForms.tsx:1110 +#: src/forms/StockForms.tsx:1154 +#: src/pages/build/BuildDetail.tsx:201 +#: src/pages/part/PartDetail.tsx:1228 #: src/tables/ColumnRenderers.tsx:91 +#: src/tables/part/PartTestResultTable.tsx:247 #: src/tables/part/RelatedPartTable.tsx:53 #: src/tables/stock/StockTrackingTable.tsx:87 msgid "Part" msgstr "פריט" -#: lib/enums/ModelInformation.tsx:29 +#: lib/enums/ModelInformation.tsx:30 #: lib/enums/Roles.tsx:35 #: src/components/nav/NavigationDrawer.tsx:70 #: src/defaults/links.tsx:36 -#: src/pages/Index/Settings/SystemSettings.tsx:190 -#: src/pages/part/CategoryDetail.tsx:132 -#: src/pages/part/CategoryDetail.tsx:277 -#: src/pages/part/CategoryDetail.tsx:323 -#: src/pages/part/CategoryDetail.tsx:354 -#: src/pages/part/PartDetail.tsx:965 +#: src/pages/Index/Settings/SystemSettings.tsx:197 +#: src/pages/part/CategoryDetail.tsx:135 +#: src/pages/part/CategoryDetail.tsx:285 +#: src/pages/part/CategoryDetail.tsx:340 +#: src/pages/part/CategoryDetail.tsx:371 +#: src/pages/part/PartDetail.tsx:978 msgid "Parts" msgstr "פריטים" #: lib/enums/ModelInformation.tsx:37 #: src/pages/Index/Settings/AdminCenter/PartParameterPanel.tsx:13 -msgid "Part Parameter Template" -msgstr "תבנית פרמטר פריט" +#~ msgid "Part Parameter Template" +#~ msgstr "Part Parameter Template" #: lib/enums/ModelInformation.tsx:38 -msgid "Part Parameter Templates" +#~ msgid "Part Parameter Templates" +#~ msgstr "Part Parameter Templates" + +#: lib/enums/ModelInformation.tsx:39 +msgid "Parameter" +msgstr "" + +#: lib/enums/ModelInformation.tsx:40 +#: src/components/panels/ParametersPanel.tsx:19 +#: src/components/wizards/ImportPartWizard.tsx:807 +#: src/pages/Index/Settings/AdminCenter/Index.tsx:195 +#: src/pages/Index/Settings/SystemSettings.tsx:191 +#: src/pages/part/PartDetail.tsx:943 +msgid "Parameters" msgstr "" #: lib/enums/ModelInformation.tsx:45 -msgid "Part Test Template" +#: src/tables/part/PartCategoryTemplateTable.tsx:87 +msgid "Parameter Template" msgstr "" #: lib/enums/ModelInformation.tsx:46 -msgid "Part Test Templates" +#: src/pages/Index/Settings/AdminCenter/ParameterPanel.tsx:13 +msgid "Parameter Templates" msgstr "" #: lib/enums/ModelInformation.tsx:52 +msgid "Part Test Template" +msgstr "" + +#: lib/enums/ModelInformation.tsx:53 +msgid "Part Test Templates" +msgstr "" + +#: lib/enums/ModelInformation.tsx:59 #: src/components/wizards/OrderPartsWizard.tsx:290 -#: src/pages/company/SupplierPartDetail.tsx:413 +#: src/pages/company/SupplierPartDetail.tsx:418 #: src/pages/stock/StockDetail.tsx:289 -#: src/tables/build/BuildAllocatedStockTable.tsx:155 +#: src/tables/build/BuildAllocatedStockTable.tsx:152 #: src/tables/part/PartPurchaseOrdersTable.tsx:50 +#: src/tables/purchasing/SupplierPartParametricTable.tsx:29 #: src/tables/purchasing/SupplierPartTable.tsx:83 #: src/tables/stock/StockItemTable.tsx:247 msgid "Supplier Part" msgstr "" -#: lib/enums/ModelInformation.tsx:53 -#: src/pages/purchasing/PurchasingIndex.tsx:92 +#: lib/enums/ModelInformation.tsx:60 +#: src/pages/purchasing/PurchasingIndex.tsx:128 msgid "Supplier Parts" msgstr "" -#: lib/enums/ModelInformation.tsx:61 -#: src/pages/company/ManufacturerPartDetail.tsx:297 -#: src/pages/company/SupplierPartDetail.tsx:161 +#: lib/enums/ModelInformation.tsx:69 +#: src/pages/company/ManufacturerPartDetail.tsx:288 +#: src/pages/company/SupplierPartDetail.tsx:162 #: src/tables/part/PartPurchaseOrdersTable.tsx:56 #: src/tables/stock/StockItemTable.tsx:253 msgid "Manufacturer Part" msgstr "" -#: lib/enums/ModelInformation.tsx:62 -#: src/pages/purchasing/PurchasingIndex.tsx:109 +#: lib/enums/ModelInformation.tsx:70 +#: src/pages/purchasing/PurchasingIndex.tsx:177 msgid "Manufacturer Parts" msgstr "" -#: lib/enums/ModelInformation.tsx:70 -#: src/pages/part/CategoryDetail.tsx:354 +#: lib/enums/ModelInformation.tsx:79 +#: src/pages/part/CategoryDetail.tsx:371 #: src/tables/Filter.tsx:389 msgid "Part Category" msgstr "קטגוריית פריט" -#: lib/enums/ModelInformation.tsx:71 +#: lib/enums/ModelInformation.tsx:80 #: lib/enums/Roles.tsx:37 -#: src/pages/part/CategoryDetail.tsx:271 -#: src/pages/part/CategoryDetail.tsx:345 -#: src/pages/part/PartDetail.tsx:1196 +#: src/pages/part/CategoryDetail.tsx:279 +#: src/pages/part/CategoryDetail.tsx:362 +#: src/pages/part/PartDetail.tsx:1217 msgid "Part Categories" msgstr "קטגוריית פריטים" -#: lib/enums/ModelInformation.tsx:79 +#: lib/enums/ModelInformation.tsx:88 #: src/forms/BuildForms.tsx:473 #: src/forms/BuildForms.tsx:633 #: src/forms/BuildForms.tsx:794 -#: src/forms/SalesOrderForms.tsx:307 +#: src/forms/SalesOrderForms.tsx:386 #: src/pages/stock/StockDetail.tsx:1005 -#: src/tables/part/PartTestResultTable.tsx:248 +#: src/tables/part/PartTestResultTable.tsx:256 #: src/tables/stock/StockTrackingTable.tsx:48 #: src/tables/stock/StockTrackingTable.tsx:55 msgid "Stock Item" msgstr "פריט במלאי" -#: lib/enums/ModelInformation.tsx:80 +#: lib/enums/ModelInformation.tsx:89 #: lib/enums/Roles.tsx:45 -#: src/pages/company/CompanyDetail.tsx:210 -#: src/pages/part/CategoryDetail.tsx:291 +#: src/pages/company/CompanyDetail.tsx:211 +#: src/pages/part/CategoryDetail.tsx:314 #: src/pages/part/PartStockHistoryDetail.tsx:101 #: src/pages/stock/LocationDetail.tsx:121 #: src/pages/stock/LocationDetail.tsx:180 msgid "Stock Items" msgstr "פריטים במלאי" -#: lib/enums/ModelInformation.tsx:88 +#: lib/enums/ModelInformation.tsx:98 #: lib/enums/Roles.tsx:47 #: src/pages/stock/LocationDetail.tsx:420 msgid "Stock Location" msgstr "מיקום מלאי" -#: lib/enums/ModelInformation.tsx:89 +#: lib/enums/ModelInformation.tsx:99 #: src/pages/stock/LocationDetail.tsx:174 #: src/pages/stock/LocationDetail.tsx:412 #: src/pages/stock/StockDetail.tsx:996 msgid "Stock Locations" msgstr "מיקומי מלאי" -#: lib/enums/ModelInformation.tsx:97 +#: lib/enums/ModelInformation.tsx:108 msgid "Stock Location Type" msgstr "סוג מיקום מלאי" -#: lib/enums/ModelInformation.tsx:98 +#: lib/enums/ModelInformation.tsx:109 msgid "Stock Location Types" msgstr "סוגי מיקום מלאי" -#: lib/enums/ModelInformation.tsx:103 -#: src/pages/Index/Settings/SystemSettings.tsx:248 -#: src/pages/part/PartDetail.tsx:911 +#: lib/enums/ModelInformation.tsx:114 +#: src/pages/Index/Settings/SystemSettings.tsx:254 +#: src/pages/part/PartDetail.tsx:900 msgid "Stock History" msgstr "היסטוריית מלאי" -#: lib/enums/ModelInformation.tsx:104 +#: lib/enums/ModelInformation.tsx:115 msgid "Stock Histories" msgstr "הסטוריית מלאים" -#: lib/enums/ModelInformation.tsx:109 +#: lib/enums/ModelInformation.tsx:120 msgid "Build" msgstr "" -#: lib/enums/ModelInformation.tsx:110 +#: lib/enums/ModelInformation.tsx:121 msgid "Builds" msgstr "" -#: lib/enums/ModelInformation.tsx:118 +#: lib/enums/ModelInformation.tsx:130 msgid "Build Line" msgstr "בניית קו" -#: lib/enums/ModelInformation.tsx:119 +#: lib/enums/ModelInformation.tsx:131 msgid "Build Lines" msgstr "בניית קווים" -#: lib/enums/ModelInformation.tsx:126 +#: lib/enums/ModelInformation.tsx:138 msgid "Build Item" msgstr "בניית פריט" -#: lib/enums/ModelInformation.tsx:127 +#: lib/enums/ModelInformation.tsx:139 msgid "Build Items" msgstr "בניית פריטים" -#: lib/enums/ModelInformation.tsx:132 -#: src/pages/company/CompanyDetail.tsx:340 +#: lib/enums/ModelInformation.tsx:144 +#: src/pages/company/CompanyDetail.tsx:345 #: src/tables/company/CompanyTable.tsx:47 #: src/tables/company/ContactTable.tsx:67 +#: src/tables/company/ParametricCompanyTable.tsx:18 msgid "Company" msgstr "חברה" -#: lib/enums/ModelInformation.tsx:133 +#: lib/enums/ModelInformation.tsx:145 msgid "Companies" msgstr "חברות" -#: lib/enums/ModelInformation.tsx:140 -#: src/pages/build/BuildDetail.tsx:316 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:253 -#: src/pages/sales/ReturnOrderDetail.tsx:231 -#: src/pages/sales/SalesOrderDetail.tsx:224 +#: lib/enums/ModelInformation.tsx:152 +#: src/pages/build/BuildDetail.tsx:317 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:254 +#: src/pages/sales/ReturnOrderDetail.tsx:232 +#: src/pages/sales/SalesOrderDetail.tsx:225 #: src/tables/ColumnRenderers.tsx:362 #: src/tables/Filter.tsx:286 #: src/tables/TableHoverCard.tsx:101 msgid "Project Code" msgstr "קוד פרוייקט" -#: lib/enums/ModelInformation.tsx:141 +#: lib/enums/ModelInformation.tsx:153 #: src/pages/Index/Settings/AdminCenter/Index.tsx:172 msgid "Project Codes" msgstr "קוד פרויקט" -#: lib/enums/ModelInformation.tsx:147 +#: lib/enums/ModelInformation.tsx:159 #: src/components/wizards/OrderPartsWizard.tsx:338 #: src/pages/part/pricing/PurchaseHistoryPanel.tsx:33 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:550 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:555 #: src/pages/stock/StockDetail.tsx:352 #: src/tables/part/PartPurchaseOrdersTable.tsx:32 #: src/tables/stock/StockItemTable.tsx:239 @@ -312,117 +338,117 @@ msgstr "קוד פרויקט" msgid "Purchase Order" msgstr "הזמנות רכש" -#: lib/enums/ModelInformation.tsx:148 +#: lib/enums/ModelInformation.tsx:160 #: lib/enums/Roles.tsx:39 #: src/defaults/actions.tsx:104 -#: src/pages/Index/Settings/SystemSettings.tsx:283 -#: src/pages/company/CompanyDetail.tsx:203 -#: src/pages/company/SupplierPartDetail.tsx:266 -#: src/pages/part/PartDetail.tsx:875 -#: src/pages/purchasing/PurchasingIndex.tsx:60 +#: src/pages/Index/Settings/SystemSettings.tsx:289 +#: src/pages/company/CompanyDetail.tsx:204 +#: src/pages/company/SupplierPartDetail.tsx:267 +#: src/pages/part/PartDetail.tsx:864 +#: src/pages/purchasing/PurchasingIndex.tsx:66 msgid "Purchase Orders" msgstr "הזמנת רכש" -#: lib/enums/ModelInformation.tsx:156 +#: lib/enums/ModelInformation.tsx:169 msgid "Purchase Order Line" msgstr "שורת הזמנת רכש" -#: lib/enums/ModelInformation.tsx:157 +#: lib/enums/ModelInformation.tsx:170 msgid "Purchase Order Lines" msgstr "שורות הזמנת רכש" -#: lib/enums/ModelInformation.tsx:162 -#: src/pages/build/BuildDetail.tsx:289 +#: lib/enums/ModelInformation.tsx:175 +#: src/pages/build/BuildDetail.tsx:290 #: src/pages/part/pricing/SaleHistoryPanel.tsx:24 -#: src/pages/sales/SalesOrderDetail.tsx:614 -#: src/pages/sales/SalesOrderShipmentDetail.tsx:105 -#: src/pages/sales/SalesOrderShipmentDetail.tsx:478 +#: src/pages/sales/SalesOrderDetail.tsx:619 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:103 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:446 #: src/pages/stock/StockDetail.tsx:361 #: src/tables/part/PartSalesAllocationsTable.tsx:41 #: src/tables/sales/SalesOrderAllocationTable.tsx:110 -#: src/tables/sales/SalesOrderShipmentTable.tsx:122 +#: src/tables/sales/SalesOrderShipmentTable.tsx:143 #: src/tables/stock/StockTrackingTable.tsx:131 msgid "Sales Order" msgstr "הזמנת מכירה" -#: lib/enums/ModelInformation.tsx:163 +#: lib/enums/ModelInformation.tsx:176 #: lib/enums/Roles.tsx:43 #: src/defaults/actions.tsx:114 -#: src/pages/Index/Settings/SystemSettings.tsx:299 -#: src/pages/company/CompanyDetail.tsx:223 -#: src/pages/part/PartDetail.tsx:887 -#: src/pages/sales/SalesIndex.tsx:84 +#: src/pages/Index/Settings/SystemSettings.tsx:305 +#: src/pages/company/CompanyDetail.tsx:224 +#: src/pages/part/PartDetail.tsx:876 +#: src/pages/sales/SalesIndex.tsx:53 msgid "Sales Orders" msgstr "הזמנות מכירה" -#: lib/enums/ModelInformation.tsx:171 -#: src/pages/sales/SalesOrderShipmentDetail.tsx:477 +#: lib/enums/ModelInformation.tsx:185 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:445 msgid "Sales Order Shipment" msgstr "משלוח הזמנת מכירות" -#: lib/enums/ModelInformation.tsx:172 +#: lib/enums/ModelInformation.tsx:186 msgid "Sales Order Shipments" msgstr "משלוחי הזמנת מכירות" -#: lib/enums/ModelInformation.tsx:179 -#: src/pages/sales/ReturnOrderDetail.tsx:549 +#: lib/enums/ModelInformation.tsx:194 +#: src/pages/sales/ReturnOrderDetail.tsx:554 #: src/tables/stock/StockTrackingTable.tsx:142 msgid "Return Order" msgstr "החזרת הזמנה" -#: lib/enums/ModelInformation.tsx:180 +#: lib/enums/ModelInformation.tsx:195 #: lib/enums/Roles.tsx:41 #: src/defaults/actions.tsx:125 -#: src/pages/Index/Settings/SystemSettings.tsx:316 -#: src/pages/company/CompanyDetail.tsx:230 -#: src/pages/part/PartDetail.tsx:894 -#: src/pages/sales/SalesIndex.tsx:117 +#: src/pages/Index/Settings/SystemSettings.tsx:322 +#: src/pages/company/CompanyDetail.tsx:231 +#: src/pages/part/PartDetail.tsx:883 +#: src/pages/sales/SalesIndex.tsx:99 msgid "Return Orders" msgstr "החזרת הזמנות" -#: lib/enums/ModelInformation.tsx:188 +#: lib/enums/ModelInformation.tsx:204 msgid "Return Order Line Item" msgstr "שורת החזרת פריטי הזמנה" -#: lib/enums/ModelInformation.tsx:189 +#: lib/enums/ModelInformation.tsx:205 msgid "Return Order Line Items" msgstr "שורת החזרת פריט הזמנה" -#: lib/enums/ModelInformation.tsx:194 +#: lib/enums/ModelInformation.tsx:210 #: src/tables/company/AddressTable.tsx:52 msgid "Address" msgstr "כתובת" -#: lib/enums/ModelInformation.tsx:195 -#: src/pages/company/CompanyDetail.tsx:264 +#: lib/enums/ModelInformation.tsx:211 +#: src/pages/company/CompanyDetail.tsx:265 msgid "Addresses" msgstr "כתובות" -#: lib/enums/ModelInformation.tsx:201 +#: lib/enums/ModelInformation.tsx:217 #: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:89 #: src/pages/core/UserDetail.tsx:135 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:229 -#: src/pages/sales/ReturnOrderDetail.tsx:207 -#: src/pages/sales/SalesOrderDetail.tsx:200 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:230 +#: src/pages/sales/ReturnOrderDetail.tsx:208 +#: src/pages/sales/SalesOrderDetail.tsx:201 msgid "Contact" msgstr "איש קשר" -#: lib/enums/ModelInformation.tsx:202 -#: src/pages/company/CompanyDetail.tsx:258 +#: lib/enums/ModelInformation.tsx:218 +#: src/pages/company/CompanyDetail.tsx:259 #: src/pages/core/CoreIndex.tsx:33 msgid "Contacts" msgstr "אנשי קשר" -#: lib/enums/ModelInformation.tsx:208 +#: lib/enums/ModelInformation.tsx:224 #: src/tables/ColumnRenderers.tsx:444 msgid "Owner" msgstr "בעלים" -#: lib/enums/ModelInformation.tsx:209 +#: lib/enums/ModelInformation.tsx:225 msgid "Owners" msgstr "בעלים" -#: lib/enums/ModelInformation.tsx:215 +#: lib/enums/ModelInformation.tsx:231 #: src/pages/Auth/ChangePassword.tsx:36 #: src/pages/core/UserDetail.tsx:220 #: src/tables/ColumnRenderers.tsx:395 @@ -437,7 +463,7 @@ msgstr "בעלים" msgid "User" msgstr "משתמש" -#: lib/enums/ModelInformation.tsx:216 +#: lib/enums/ModelInformation.tsx:232 #: src/components/nav/NavigationDrawer.tsx:105 #: src/pages/Index/Settings/AdminCenter/UserManagementPanel.tsx:15 #: src/pages/core/CoreIndex.tsx:21 @@ -445,12 +471,12 @@ msgstr "משתמש" msgid "Users" msgstr "משתמשים" -#: lib/enums/ModelInformation.tsx:222 +#: lib/enums/ModelInformation.tsx:238 #: src/pages/core/GroupDetail.tsx:78 msgid "Group" msgstr "קבוצה" -#: lib/enums/ModelInformation.tsx:223 +#: lib/enums/ModelInformation.tsx:239 #: src/components/nav/NavigationDrawer.tsx:111 #: src/pages/Index/Settings/AdminCenter/UserManagementPanel.tsx:23 #: src/pages/core/CoreIndex.tsx:27 @@ -460,64 +486,64 @@ msgstr "קבוצה" msgid "Groups" msgstr "קבוצות" -#: lib/enums/ModelInformation.tsx:230 +#: lib/enums/ModelInformation.tsx:246 msgid "Import Session" msgstr "ייבוא הפעלה" -#: lib/enums/ModelInformation.tsx:231 +#: lib/enums/ModelInformation.tsx:247 msgid "Import Sessions" msgstr "ייבוא הפעלות" -#: lib/enums/ModelInformation.tsx:238 +#: lib/enums/ModelInformation.tsx:254 msgid "Label Template" msgstr "תבנית תווית" -#: lib/enums/ModelInformation.tsx:239 +#: lib/enums/ModelInformation.tsx:255 #: src/pages/Index/Settings/AdminCenter/Index.tsx:209 msgid "Label Templates" msgstr "תבניות תוויות" -#: lib/enums/ModelInformation.tsx:246 +#: lib/enums/ModelInformation.tsx:262 msgid "Report Template" msgstr "תבנית דוח" -#: lib/enums/ModelInformation.tsx:247 +#: lib/enums/ModelInformation.tsx:263 #: src/pages/Index/Settings/AdminCenter/Index.tsx:215 msgid "Report Templates" msgstr "תבניות דווח" -#: lib/enums/ModelInformation.tsx:254 +#: lib/enums/ModelInformation.tsx:270 #: src/components/plugins/PluginDrawer.tsx:145 msgid "Plugin Configuration" msgstr "תצורת תוסף" -#: lib/enums/ModelInformation.tsx:255 +#: lib/enums/ModelInformation.tsx:271 msgid "Plugin Configurations" msgstr "תצורת פלאגין" -#: lib/enums/ModelInformation.tsx:262 +#: lib/enums/ModelInformation.tsx:278 msgid "Content Type" msgstr "סוג תוכן" -#: lib/enums/ModelInformation.tsx:263 +#: lib/enums/ModelInformation.tsx:279 msgid "Content Types" msgstr "סוגי תוכן" -#: lib/enums/ModelInformation.tsx:268 +#: lib/enums/ModelInformation.tsx:284 msgid "Selection List" msgstr "" -#: lib/enums/ModelInformation.tsx:269 -#: src/pages/Index/Settings/AdminCenter/PartParameterPanel.tsx:21 +#: lib/enums/ModelInformation.tsx:285 +#: src/pages/Index/Settings/AdminCenter/ParameterPanel.tsx:21 msgid "Selection Lists" msgstr "" -#: lib/enums/ModelInformation.tsx:275 +#: lib/enums/ModelInformation.tsx:291 #: src/components/barcodes/BarcodeInput.tsx:114 #: src/components/dashboard/DashboardLayout.tsx:281 #: src/components/editors/NotesEditor.tsx:74 #: src/components/editors/TemplateEditor/TemplateEditor.tsx:158 -#: src/components/forms/fields/ApiFormField.tsx:273 +#: src/components/forms/fields/ApiFormField.tsx:237 #: src/components/forms/fields/TableField.tsx:45 #: src/components/importer/ImportDataSelector.tsx:192 #: src/components/importer/ImporterColumnSelector.tsx:234 @@ -528,7 +554,7 @@ msgstr "" #: src/components/nav/SearchDrawer.tsx:572 #: src/components/settings/SettingList.tsx:139 #: src/components/wizards/ImportPartWizard.tsx:574 -#: src/components/wizards/ImportPartWizard.tsx:718 +#: src/components/wizards/ImportPartWizard.tsx:719 #: src/forms/BomForms.tsx:69 #: src/functions/auth.tsx:643 #: src/pages/ErrorPage.tsx:11 @@ -547,9 +573,9 @@ msgstr "" msgid "Error" msgstr "שגיאה" -#: lib/enums/ModelInformation.tsx:276 +#: lib/enums/ModelInformation.tsx:292 #: src/tables/machine/MachineListTable.tsx:402 -#: src/tables/machine/MachineTypeTable.tsx:299 +#: src/tables/machine/MachineTypeTable.tsx:297 msgid "Errors" msgstr "" @@ -559,10 +585,10 @@ msgstr "" #: lib/enums/Roles.tsx:33 #: src/defaults/actions.tsx:135 -#: src/pages/Index/Settings/SystemSettings.tsx:264 -#: src/pages/build/BuildIndex.tsx:75 -#: src/pages/part/PartDetail.tsx:904 -#: src/pages/sales/SalesOrderDetail.tsx:421 +#: src/pages/Index/Settings/SystemSettings.tsx:270 +#: src/pages/build/BuildIndex.tsx:67 +#: src/pages/part/PartDetail.tsx:893 +#: src/pages/sales/SalesOrderDetail.tsx:422 msgid "Build Orders" msgstr "" @@ -639,39 +665,39 @@ msgstr "" msgid "Enter barcode data" msgstr "" -#: src/components/barcodes/BarcodeScanDialog.tsx:49 -#: src/components/buttons/ScanButton.tsx:15 +#: src/components/barcodes/BarcodeScanDialog.tsx:56 +#: src/components/buttons/ScanButton.tsx:27 #: src/components/nav/NavigationDrawer.tsx:122 -#: src/forms/PurchaseOrderForms.tsx:457 -#: src/forms/PurchaseOrderForms.tsx:563 +#: src/forms/PurchaseOrderForms.tsx:509 +#: src/forms/PurchaseOrderForms.tsx:615 msgid "Scan Barcode" msgstr "" -#: src/components/barcodes/BarcodeScanDialog.tsx:105 +#: src/components/barcodes/BarcodeScanDialog.tsx:121 msgid "No matching item found" msgstr "" -#: src/components/barcodes/BarcodeScanDialog.tsx:134 +#: src/components/barcodes/BarcodeScanDialog.tsx:150 msgid "Barcode does not match the expected model type" msgstr "" -#: src/components/barcodes/BarcodeScanDialog.tsx:145 +#: src/components/barcodes/BarcodeScanDialog.tsx:161 #: src/components/editors/NotesEditor.tsx:84 #: src/components/editors/NotesEditor.tsx:118 -#: src/components/forms/ApiForm.tsx:465 +#: src/components/forms/ApiForm.tsx:484 #: src/components/wizards/ImportPartWizard.tsx:566 -#: src/components/wizards/ImportPartWizard.tsx:690 +#: src/components/wizards/ImportPartWizard.tsx:691 #: src/pages/Index/Settings/AdminCenter/CurrencyManagementPanel.tsx:45 #: src/tables/bom/BomTable.tsx:548 #: src/tables/settings/PendingTasksTable.tsx:68 msgid "Success" msgstr "הצלחה" -#: src/components/barcodes/BarcodeScanDialog.tsx:151 +#: src/components/barcodes/BarcodeScanDialog.tsx:167 msgid "Failed to handle barcode" msgstr "" -#: src/components/barcodes/BarcodeScanDialog.tsx:167 +#: src/components/barcodes/BarcodeScanDialog.tsx:183 #: src/pages/Index/Scan.tsx:129 msgid "Failed to scan barcode" msgstr "" @@ -714,10 +740,10 @@ msgstr "" #: src/components/barcodes/QRCode.tsx:179 #: src/pages/part/PartDetail.tsx:521 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:222 -#: src/pages/sales/ReturnOrderDetail.tsx:188 -#: src/pages/sales/SalesOrderDetail.tsx:181 -#: src/pages/sales/SalesOrderShipmentDetail.tsx:122 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:223 +#: src/pages/sales/ReturnOrderDetail.tsx:189 +#: src/pages/sales/SalesOrderDetail.tsx:182 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:120 #: src/pages/stock/StockDetail.tsx:186 msgid "Link" msgstr "קישור" @@ -728,7 +754,7 @@ msgstr "פעולה זו תסיר את הקישור לברקוד המשויך" #: src/components/barcodes/QRCode.tsx:205 #: src/components/items/ActionDropdown.tsx:192 -#: src/forms/PurchaseOrderForms.tsx:554 +#: src/forms/PurchaseOrderForms.tsx:606 msgid "Unlink Barcode" msgstr "בטל קישור של ברקוד" @@ -829,14 +855,14 @@ msgstr "" #~ msgid "Scan QR code" #~ msgstr "Scan QR code" -#: src/components/buttons/ScanButton.tsx:19 -msgid "Open Barcode Scanner" -msgstr "" - #: src/components/buttons/ScanButton.tsx:20 #~ msgid "Open QR code scanner" #~ msgstr "Open QR code scanner" +#: src/components/buttons/ScanButton.tsx:32 +msgid "Open Barcode Scanner" +msgstr "" + #: src/components/buttons/SpotlightButton.tsx:12 msgid "Open spotlight" msgstr "פתח זרקור" @@ -1059,7 +1085,7 @@ msgid "Show the number of sales orders which are assigned to you" msgstr "" #: src/components/dashboard/DashboardWidgetLibrary.tsx:129 -#: src/pages/sales/SalesIndex.tsx:105 +#: src/pages/sales/SalesIndex.tsx:87 msgid "Pending Shipments" msgstr "" @@ -1210,12 +1236,18 @@ msgid "Remove the associated image from this item?" msgstr "האם להסיר את התמונה המשויכת מפריט זה?" #: src/components/details/DetailsImage.tsx:83 -#: src/forms/StockForms.tsx:888 +#: src/forms/StockForms.tsx:895 #: src/pages/Index/Settings/AccountSettings/MFASettings.tsx:324 #: src/pages/Index/Settings/AccountSettings/MFASettings.tsx:415 #: src/pages/Index/Settings/AccountSettings/MFASettings.tsx:884 #: src/pages/Index/Settings/AccountSettings/MFASettings.tsx:903 #: src/pages/Index/Settings/AccountSettings/SecurityContent.tsx:254 +#: src/tables/build/BuildAllocatedStockTable.tsx:178 +#: src/tables/build/BuildAllocatedStockTable.tsx:258 +#: src/tables/build/BuildLineTable.tsx:111 +#: src/tables/build/BuildLineTable.tsx:665 +#: src/tables/sales/SalesOrderAllocationTable.tsx:224 +#: src/tables/sales/SalesOrderAllocationTable.tsx:247 msgid "Remove" msgstr "הסר" @@ -1241,12 +1273,12 @@ msgid "Upload Error" msgstr "" #: src/components/details/DetailsImage.tsx:250 -#: src/components/forms/fields/TextField.tsx:65 +#: src/components/forms/fields/AutoFillRightSection.tsx:34 msgid "Clear" msgstr "נקה" #: src/components/details/DetailsImage.tsx:256 -#: src/components/forms/ApiForm.tsx:677 +#: src/components/forms/ApiForm.tsx:696 #: src/contexts/ThemeContext.tsx:44 #: src/pages/Index/Settings/AccountSettings/MFASettings.tsx:149 #: src/pages/Index/Settings/AccountSettings/MFASettings.tsx:568 @@ -1499,8 +1531,8 @@ msgstr "שגיאת שרת" msgid "A server error occurred" msgstr "אירעה שגיאת שרת" -#: src/components/forms/ApiForm.tsx:103 -#: src/components/forms/ApiForm.tsx:594 +#: src/components/forms/ApiForm.tsx:107 +#: src/components/forms/ApiForm.tsx:613 msgid "Form Error" msgstr "שגיאת טופס" @@ -1508,11 +1540,11 @@ msgstr "שגיאת טופס" #~ msgid "Form Errors Exist" #~ msgstr "Form Errors Exist" -#: src/components/forms/ApiForm.tsx:604 +#: src/components/forms/ApiForm.tsx:623 msgid "Errors exist for one or more form fields" msgstr "קיימות שגיאות עבור שדה טופס אחד או יותר" -#: src/components/forms/ApiForm.tsx:715 +#: src/components/forms/ApiForm.tsx:734 #: src/hooks/UseForm.tsx:133 #: src/tables/plugin/PluginListTable.tsx:204 msgid "Update" @@ -1698,15 +1730,14 @@ msgstr "מארח" #: src/components/forms/InstanceOptions.tsx:124 #: src/components/plugins/PluginDrawer.tsx:68 #: src/pages/Index/Settings/AdminCenter/UnitManagementPanel.tsx:19 -#: src/pages/part/CategoryDetail.tsx:88 +#: src/pages/part/CategoryDetail.tsx:91 #: src/pages/part/PartDetail.tsx:446 #: src/pages/stock/LocationDetail.tsx:82 #: src/tables/machine/MachineTypeTable.tsx:67 -#: src/tables/machine/MachineTypeTable.tsx:151 -#: src/tables/machine/MachineTypeTable.tsx:254 -#: src/tables/machine/MachineTypeTable.tsx:357 +#: src/tables/machine/MachineTypeTable.tsx:149 +#: src/tables/machine/MachineTypeTable.tsx:252 +#: src/tables/machine/MachineTypeTable.tsx:355 #: src/tables/plugin/PluginErrorTable.tsx:33 -#: src/tables/purchasing/ManufacturerPartParameterTable.tsx:36 #: src/tables/settings/ApiTokenTable.tsx:57 #: src/tables/settings/GroupTable.tsx:95 #: src/tables/settings/GroupTable.tsx:148 @@ -1769,7 +1800,7 @@ msgstr "" #~ msgstr "State: <0>worker ({0}), <1>plugins{1}" #: src/components/forms/InstanceOptions.tsx:118 -#: src/pages/Index/Settings/SystemSettings.tsx:45 +#: src/pages/Index/Settings/SystemSettings.tsx:46 msgid "Server" msgstr "שרת" @@ -1793,6 +1824,8 @@ msgid "Plugins" msgstr "תוספים" #: src/components/forms/InstanceOptions.tsx:143 +#: src/tables/general/ParameterTemplateTable.tsx:153 +#: src/tables/general/ParameterTemplateTable.tsx:188 #: src/tables/part/PartTestTemplateTable.tsx:117 #: src/tables/settings/TemplateTable.tsx:251 #: src/tables/settings/TemplateTable.tsx:362 @@ -1817,10 +1850,14 @@ msgstr "" msgid "Running" msgstr "" -#: src/components/forms/fields/ApiFormField.tsx:233 +#: src/components/forms/fields/ApiFormField.tsx:197 msgid "Select file to upload" msgstr "" +#: src/components/forms/fields/AutoFillRightSection.tsx:47 +msgid "Accept suggested value" +msgstr "" + #: src/components/forms/fields/DateField.tsx:76 msgid "Select date" msgstr "" @@ -1853,13 +1890,13 @@ msgstr "בחר חבילה" msgid "{0} icons" msgstr "{0} סמלים" -#: src/components/forms/fields/RelatedModelField.tsx:409 +#: src/components/forms/fields/RelatedModelField.tsx:480 #: src/components/modals/AboutInvenTreeModal.tsx:96 #: src/pages/Index/Settings/AccountSettings/SecurityContent.tsx:383 msgid "Loading" msgstr "טוען" -#: src/components/forms/fields/RelatedModelField.tsx:411 +#: src/components/forms/fields/RelatedModelField.tsx:482 msgid "No results found" msgstr "לא נמצאו תוצאות" @@ -1875,10 +1912,6 @@ msgstr "אין ערכים זמינים" msgid "Add new row" msgstr "" -#: src/components/forms/fields/TextField.tsx:82 -msgid "Accept suggested value" -msgstr "" - #: src/components/images/DetailsImage.tsx:252 #~ msgid "Select image" #~ msgstr "Select image" @@ -2036,7 +2069,7 @@ msgstr "הנתונים יובאו בהצלחה" #: src/components/importer/ImporterDrawer.tsx:109 #: src/components/modals/AboutInvenTreeModal.tsx:205 #: src/components/modals/ServerInfoModal.tsx:134 -#: src/components/wizards/ImportPartWizard.tsx:772 +#: src/components/wizards/ImportPartWizard.tsx:773 #: src/forms/BomForms.tsx:132 #: src/pages/Index/Settings/AccountSettings/MFASettings.tsx:685 msgid "Close" @@ -2199,7 +2232,7 @@ msgid "Change" msgstr "" #: src/components/items/RoleTable.tsx:150 -#: src/forms/StockForms.tsx:927 +#: src/forms/StockForms.tsx:941 #: src/tables/stock/StockItemTestResultTable.tsx:367 msgid "Add" msgstr "" @@ -2222,11 +2255,11 @@ msgstr "" #: src/components/items/TransferList.tsx:161 #: src/components/render/Stock.tsx:102 -#: src/pages/part/PartDetail.tsx:994 +#: src/pages/part/PartDetail.tsx:1009 #: src/pages/stock/StockDetail.tsx:265 #: src/pages/stock/StockDetail.tsx:942 -#: src/tables/build/BuildAllocatedStockTable.tsx:135 -#: src/tables/build/BuildLineTable.tsx:192 +#: src/tables/build/BuildAllocatedStockTable.tsx:132 +#: src/tables/build/BuildLineTable.tsx:193 #: src/tables/part/PartTable.tsx:137 #: src/tables/stock/StockItemTable.tsx:182 #: src/tables/stock/StockItemTable.tsx:343 @@ -2373,7 +2406,7 @@ msgid "Database" msgstr "מסד נתונים" #: src/components/modals/ServerInfoModal.tsx:49 -#: src/components/nav/Alerts.tsx:118 +#: src/components/nav/Alerts.tsx:120 msgid "Debug Mode" msgstr "מצב ניפוי באגים" @@ -2414,7 +2447,7 @@ msgid "Issues detected" msgstr "זוהו בעיות" #: src/components/modals/ServerInfoModal.tsx:102 -#: src/components/nav/Alerts.tsx:125 +#: src/components/nav/Alerts.tsx:127 msgid "Background Worker" msgstr "באקגראונד-וורקר" @@ -2436,7 +2469,7 @@ msgstr "הגדרות אימייל" #~ msgstr "Email settings not configured" #: src/components/modals/ServerInfoModal.tsx:120 -#: src/components/nav/Alerts.tsx:141 +#: src/components/nav/Alerts.tsx:143 msgid "Email settings not configured." msgstr "" @@ -2444,43 +2477,47 @@ msgstr "" msgid "Alerts" msgstr "" -#: src/components/nav/Alerts.tsx:120 +#: src/components/nav/Alerts.tsx:97 +msgid "No issues detected" +msgstr "" + +#: src/components/nav/Alerts.tsx:122 msgid "The server is running in debug mode." msgstr "" -#: src/components/nav/Alerts.tsx:127 +#: src/components/nav/Alerts.tsx:129 msgid "The background worker process is not running." msgstr "" -#: src/components/nav/Alerts.tsx:132 +#: src/components/nav/Alerts.tsx:134 msgid "Server Restart" msgstr "" -#: src/components/nav/Alerts.tsx:134 +#: src/components/nav/Alerts.tsx:136 msgid "The server requires a restart to apply changes." msgstr "" -#: src/components/nav/Alerts.tsx:139 +#: src/components/nav/Alerts.tsx:141 msgid "Email settings" msgstr "" -#: src/components/nav/Alerts.tsx:146 +#: src/components/nav/Alerts.tsx:148 msgid "Database Migrations" msgstr "" -#: src/components/nav/Alerts.tsx:148 +#: src/components/nav/Alerts.tsx:150 msgid "There are pending database migrations." msgstr "" -#: src/components/nav/Alerts.tsx:163 +#: src/components/nav/Alerts.tsx:165 msgid "Learn more about {code}" msgstr "" #: src/components/nav/Header.tsx:188 #: src/components/nav/NavigationDrawer.tsx:134 #: src/components/nav/NotificationDrawer.tsx:181 -#: src/pages/Index/Settings/SystemSettings.tsx:121 -#: src/pages/Index/Settings/UserSettings.tsx:106 +#: src/pages/Index/Settings/SystemSettings.tsx:122 +#: src/pages/Index/Settings/UserSettings.tsx:107 #: src/pages/Notifications.tsx:45 #: src/pages/Notifications.tsx:130 msgid "Notifications" @@ -2511,8 +2548,8 @@ msgstr "הגדרות" #: src/components/nav/NavigationDrawer.tsx:140 #: src/components/nav/SettingsHeader.tsx:40 #: src/defaults/actions.tsx:92 -#: src/pages/Index/Settings/UserSettings.tsx:141 -#: src/pages/Index/Settings/UserSettings.tsx:145 +#: src/pages/Index/Settings/UserSettings.tsx:142 +#: src/pages/Index/Settings/UserSettings.tsx:146 msgid "User Settings" msgstr "" @@ -2529,8 +2566,8 @@ msgstr "" #: src/components/nav/NavigationDrawer.tsx:146 #: src/components/nav/SettingsHeader.tsx:41 #: src/defaults/actions.tsx:144 -#: src/pages/Index/Settings/SystemSettings.tsx:348 -#: src/pages/Index/Settings/SystemSettings.tsx:353 +#: src/pages/Index/Settings/SystemSettings.tsx:354 +#: src/pages/Index/Settings/SystemSettings.tsx:359 msgid "System Settings" msgstr "הגדרות מערכת" @@ -2577,11 +2614,11 @@ msgstr "התנתק" #: src/components/nav/NavigationDrawer.tsx:77 #: src/components/render/Part.tsx:36 -#: src/components/wizards/ImportPartWizard.tsx:807 +#: src/components/wizards/ImportPartWizard.tsx:808 #: src/defaults/links.tsx:42 #: src/forms/StockForms.tsx:794 -#: src/pages/Index/Settings/SystemSettings.tsx:224 -#: src/pages/part/PartDetail.tsx:804 +#: src/pages/Index/Settings/SystemSettings.tsx:230 +#: src/pages/part/PartDetail.tsx:793 #: src/pages/stock/LocationDetail.tsx:390 #: src/pages/stock/LocationDetail.tsx:420 #: src/pages/stock/StockDetail.tsx:642 @@ -2591,29 +2628,29 @@ msgstr "מלאי" #: src/components/nav/NavigationDrawer.tsx:84 #: src/defaults/links.tsx:48 -#: src/pages/build/BuildDetail.tsx:748 -#: src/pages/build/BuildIndex.tsx:102 +#: src/pages/build/BuildDetail.tsx:753 +#: src/pages/build/BuildIndex.tsx:101 msgid "Manufacturing" msgstr "" #: src/components/nav/NavigationDrawer.tsx:91 #: src/defaults/links.tsx:54 #: src/pages/company/ManufacturerDetail.tsx:9 -#: src/pages/company/ManufacturerPartDetail.tsx:276 +#: src/pages/company/ManufacturerPartDetail.tsx:267 #: src/pages/company/SupplierDetail.tsx:9 -#: src/pages/company/SupplierPartDetail.tsx:360 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:553 -#: src/pages/purchasing/PurchasingIndex.tsx:122 +#: src/pages/company/SupplierPartDetail.tsx:365 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:558 +#: src/pages/purchasing/PurchasingIndex.tsx:212 msgid "Purchasing" msgstr "רכישה" #: src/components/nav/NavigationDrawer.tsx:98 #: src/defaults/links.tsx:60 #: src/pages/company/CustomerDetail.tsx:9 -#: src/pages/sales/ReturnOrderDetail.tsx:554 -#: src/pages/sales/SalesIndex.tsx:153 -#: src/pages/sales/SalesOrderDetail.tsx:619 -#: src/pages/sales/SalesOrderShipmentDetail.tsx:480 +#: src/pages/sales/ReturnOrderDetail.tsx:559 +#: src/pages/sales/SalesIndex.tsx:168 +#: src/pages/sales/SalesOrderDetail.tsx:624 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:448 msgid "Sales" msgstr "מכירות" @@ -2667,21 +2704,21 @@ msgid "Remove search group" msgstr "" #: src/components/nav/SearchDrawer.tsx:288 -#: src/pages/company/ManufacturerPartDetail.tsx:192 -#: src/pages/part/PartDetail.tsx:862 +#: src/pages/company/ManufacturerPartDetail.tsx:179 +#: src/pages/part/PartDetail.tsx:851 #: src/pages/part/PartSupplierDetail.tsx:15 -#: src/pages/purchasing/PurchasingIndex.tsx:81 +#: src/pages/purchasing/PurchasingIndex.tsx:100 msgid "Suppliers" msgstr "" #: src/components/nav/SearchDrawer.tsx:298 #: src/pages/part/PartSupplierDetail.tsx:23 -#: src/pages/purchasing/PurchasingIndex.tsx:98 +#: src/pages/purchasing/PurchasingIndex.tsx:149 msgid "Manufacturers" msgstr "" #: src/components/nav/SearchDrawer.tsx:308 -#: src/pages/sales/SalesIndex.tsx:138 +#: src/pages/sales/SalesIndex.tsx:133 msgid "Customers" msgstr "" @@ -2772,21 +2809,21 @@ msgstr "" #: src/components/plugins/PluginDrawer.tsx:73 #: src/forms/selectionListFields.tsx:102 -#: src/pages/build/BuildDetail.tsx:250 -#: src/pages/company/CompanyDetail.tsx:93 -#: src/pages/company/ManufacturerPartDetail.tsx:93 -#: src/pages/company/ManufacturerPartDetail.tsx:120 -#: src/pages/company/SupplierPartDetail.tsx:145 -#: src/pages/part/CategoryDetail.tsx:108 +#: src/pages/build/BuildDetail.tsx:251 +#: src/pages/company/CompanyDetail.tsx:94 +#: src/pages/company/ManufacturerPartDetail.tsx:92 +#: src/pages/company/ManufacturerPartDetail.tsx:119 +#: src/pages/company/SupplierPartDetail.tsx:146 +#: src/pages/part/CategoryDetail.tsx:111 #: src/pages/part/PartDetail.tsx:460 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:162 -#: src/pages/sales/ReturnOrderDetail.tsx:129 -#: src/pages/sales/SalesOrderDetail.tsx:119 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:163 +#: src/pages/sales/ReturnOrderDetail.tsx:130 +#: src/pages/sales/SalesOrderDetail.tsx:120 #: src/pages/stock/LocationDetail.tsx:102 #: src/tables/ColumnRenderers.tsx:278 -#: src/tables/build/BuildAllocatedStockTable.tsx:91 -#: src/tables/machine/MachineTypeTable.tsx:161 -#: src/tables/machine/MachineTypeTable.tsx:257 +#: src/tables/build/BuildAllocatedStockTable.tsx:88 +#: src/tables/machine/MachineTypeTable.tsx:159 +#: src/tables/machine/MachineTypeTable.tsx:255 #: src/tables/plugin/PluginListTable.tsx:110 msgid "Description" msgstr "" @@ -2814,7 +2851,7 @@ msgstr "" #: src/tables/company/CompanyTable.tsx:91 #: src/tables/machine/MachineListTable.tsx:384 #: src/tables/machine/MachineListTable.tsx:799 -#: src/tables/part/ParametricPartTable.tsx:354 +#: src/tables/part/ParametricPartTable.tsx:19 #: src/tables/part/PartTable.tsx:197 #: src/tables/part/PartVariantTable.tsx:15 #: src/tables/plugin/PluginListTable.tsx:96 @@ -2836,8 +2873,8 @@ msgid "Installation Path" msgstr "" #: src/components/plugins/PluginDrawer.tsx:116 -#: src/tables/machine/MachineTypeTable.tsx:184 -#: src/tables/machine/MachineTypeTable.tsx:293 +#: src/tables/machine/MachineTypeTable.tsx:182 +#: src/tables/machine/MachineTypeTable.tsx:291 #: src/tables/plugin/PluginListTable.tsx:101 #: src/tables/plugin/PluginListTable.tsx:417 msgid "Builtin" @@ -2849,8 +2886,8 @@ msgstr "" #: src/components/plugins/PluginDrawer.tsx:133 #: src/pages/Index/Settings/AdminCenter/PluginManagementPanel.tsx:55 -#: src/pages/Index/Settings/SystemSettings.tsx:331 -#: src/pages/Index/Settings/UserSettings.tsx:128 +#: src/pages/Index/Settings/SystemSettings.tsx:337 +#: src/pages/Index/Settings/UserSettings.tsx:129 msgid "Plugin Settings" msgstr "" @@ -2911,7 +2948,7 @@ msgstr "" #~ msgid "Unknown model: {model}" #~ msgstr "Unknown model: {model}" -#: src/components/render/Instance.tsx:249 +#: src/components/render/Instance.tsx:247 msgid "Unknown model: {model_name}" msgstr "" @@ -2939,10 +2976,10 @@ msgstr "משלוח" #: src/components/render/Part.tsx:28 #: src/components/render/Plugin.tsx:17 #: src/components/render/User.tsx:37 -#: src/pages/company/CompanyDetail.tsx:323 -#: src/pages/company/SupplierPartDetail.tsx:373 +#: src/pages/company/CompanyDetail.tsx:328 +#: src/pages/company/SupplierPartDetail.tsx:378 #: src/pages/core/UserDetail.tsx:211 -#: src/pages/part/PartDetail.tsx:1027 +#: src/pages/part/PartDetail.tsx:1048 #: src/tables/ColumnRenderers.tsx:410 msgid "Inactive" msgstr "לא פעיל" @@ -2962,11 +2999,11 @@ msgstr "אין מלאי" #: src/components/render/Part.tsx:47 #: src/components/wizards/OrderPartsWizard.tsx:135 -#: src/pages/company/SupplierPartDetail.tsx:197 -#: src/pages/company/SupplierPartDetail.tsx:394 -#: src/pages/part/PartDetail.tsx:1015 +#: src/pages/company/SupplierPartDetail.tsx:198 +#: src/pages/company/SupplierPartDetail.tsx:399 +#: src/pages/part/PartDetail.tsx:1030 #: src/tables/bom/BomTable.tsx:444 -#: src/tables/build/BuildLineTable.tsx:222 +#: src/tables/build/BuildLineTable.tsx:223 #: src/tables/part/PartTable.tsx:108 msgid "On Order" msgstr "" @@ -2974,9 +3011,9 @@ msgstr "" #: src/components/render/Part.tsx:55 #: src/components/wizards/OrderPartsWizard.tsx:141 #: src/pages/part/PartDetail.tsx:587 -#: src/pages/part/PartDetail.tsx:1021 +#: src/pages/part/PartDetail.tsx:1036 #: src/pages/stock/StockDetail.tsx:925 -#: src/tables/part/PartTestResultTable.tsx:297 +#: src/tables/part/PartTestResultTable.tsx:305 #: src/tables/stock/StockItemTable.tsx:359 msgid "In Production" msgstr "" @@ -2987,7 +3024,7 @@ msgid "Details" msgstr "" #: src/components/render/Part.tsx:112 -#: src/components/wizards/ImportPartWizard.tsx:806 +#: src/components/wizards/ImportPartWizard.tsx:807 #: src/pages/part/PartDetail.tsx:487 #: src/tables/ColumnRenderers.tsx:233 #: src/tables/ColumnRenderers.tsx:242 @@ -3000,16 +3037,16 @@ msgstr "" #: src/components/render/Stock.tsx:114 #: src/components/render/Stock.tsx:132 #: src/forms/BuildForms.tsx:795 -#: src/forms/PurchaseOrderForms.tsx:595 +#: src/forms/PurchaseOrderForms.tsx:647 #: src/forms/StockForms.tsx:792 #: src/forms/StockForms.tsx:839 -#: src/forms/StockForms.tsx:885 -#: src/forms/StockForms.tsx:924 -#: src/forms/StockForms.tsx:960 -#: src/forms/StockForms.tsx:1003 -#: src/forms/StockForms.tsx:1047 -#: src/forms/StockForms.tsx:1095 -#: src/forms/StockForms.tsx:1139 +#: src/forms/StockForms.tsx:892 +#: src/forms/StockForms.tsx:938 +#: src/forms/StockForms.tsx:976 +#: src/forms/StockForms.tsx:1019 +#: src/forms/StockForms.tsx:1063 +#: src/forms/StockForms.tsx:1111 +#: src/forms/StockForms.tsx:1155 #: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:88 #: src/pages/core/UserDetail.tsx:158 #: src/pages/stock/StockDetail.tsx:298 @@ -3023,7 +3060,7 @@ msgstr "" #: src/components/render/Stock.tsx:99 #: src/pages/stock/StockDetail.tsx:198 #: src/pages/stock/StockDetail.tsx:930 -#: src/tables/build/BuildAllocatedStockTable.tsx:121 +#: src/tables/build/BuildAllocatedStockTable.tsx:118 #: src/tables/build/BuildOutputTable.tsx:107 #: src/tables/sales/SalesOrderAllocationTable.tsx:142 msgid "Serial Number" @@ -3034,9 +3071,9 @@ msgstr "מספר סידורי" #: src/forms/BuildForms.tsx:240 #: src/forms/BuildForms.tsx:634 #: src/forms/BuildForms.tsx:797 -#: src/forms/PurchaseOrderForms.tsx:801 +#: src/forms/PurchaseOrderForms.tsx:853 #: src/forms/ReturnOrderForms.tsx:243 -#: src/forms/SalesOrderForms.tsx:308 +#: src/forms/SalesOrderForms.tsx:387 #: src/forms/StockForms.tsx:841 #: src/pages/part/PartStockHistoryDetail.tsx:56 #: src/pages/part/PartStockHistoryDetail.tsx:210 @@ -3046,9 +3083,9 @@ msgstr "מספר סידורי" #: src/pages/part/pricing/PriceBreakPanel.tsx:172 #: src/pages/stock/StockDetail.tsx:258 #: src/pages/stock/StockDetail.tsx:936 -#: src/tables/build/BuildLineTable.tsx:86 +#: src/tables/build/BuildLineTable.tsx:83 #: src/tables/part/PartPurchaseOrdersTable.tsx:94 -#: src/tables/part/PartTestResultTable.tsx:269 +#: src/tables/part/PartTestResultTable.tsx:277 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:175 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:206 #: src/tables/purchasing/SupplierPriceBreakTable.tsx:69 @@ -3063,14 +3100,14 @@ msgstr "כמות" #: src/forms/BuildForms.tsx:474 #: src/forms/StockForms.tsx:793 #: src/forms/StockForms.tsx:840 -#: src/forms/StockForms.tsx:886 -#: src/forms/StockForms.tsx:925 -#: src/forms/StockForms.tsx:961 -#: src/forms/StockForms.tsx:1004 -#: src/forms/StockForms.tsx:1048 -#: src/forms/StockForms.tsx:1096 -#: src/forms/StockForms.tsx:1140 -#: src/tables/build/BuildLineTable.tsx:96 +#: src/forms/StockForms.tsx:893 +#: src/forms/StockForms.tsx:939 +#: src/forms/StockForms.tsx:977 +#: src/forms/StockForms.tsx:1020 +#: src/forms/StockForms.tsx:1064 +#: src/forms/StockForms.tsx:1112 +#: src/forms/StockForms.tsx:1156 +#: src/tables/build/BuildLineTable.tsx:93 msgid "Batch" msgstr "" @@ -3306,10 +3343,6 @@ msgstr "לא צוינו הגדרות" #~ msgid "Part category updated" #~ msgstr "Part category updated" -#: src/components/tables/part/PartParameterTable.tsx:41 -#~ msgid "Parameter" -#~ msgstr "Parameter" - #: src/components/tables/part/PartParameterTable.tsx:114 #~ msgid "Part parameter updated" #~ msgstr "Part parameter updated" @@ -3571,15 +3604,16 @@ msgid "Already Imported" msgstr "" #: src/components/wizards/ImportPartWizard.tsx:205 -#: src/pages/company/CompanyDetail.tsx:136 +#: src/pages/company/CompanyDetail.tsx:137 #: src/pages/company/SupplierDetail.tsx:8 -#: src/pages/company/SupplierPartDetail.tsx:130 -#: src/pages/company/SupplierPartDetail.tsx:235 -#: src/pages/company/SupplierPartDetail.tsx:364 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:156 +#: src/pages/company/SupplierPartDetail.tsx:131 +#: src/pages/company/SupplierPartDetail.tsx:236 +#: src/pages/company/SupplierPartDetail.tsx:369 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:157 #: src/tables/Filter.tsx:360 #: src/tables/company/CompanyTable.tsx:96 #: src/tables/part/PartPurchaseOrdersTable.tsx:43 +#: src/tables/purchasing/PurchaseOrderParametricTable.tsx:34 #: src/tables/purchasing/PurchaseOrderTable.tsx:109 #: src/tables/purchasing/SupplierPriceBreakTable.tsx:40 msgid "Supplier" @@ -3648,7 +3682,7 @@ msgid "Next" msgstr "" #: src/components/wizards/ImportPartWizard.tsx:540 -#: src/pages/part/PartDetail.tsx:1046 +#: src/pages/part/PartDetail.tsx:1067 #: src/tables/part/PartTable.tsx:408 msgid "Edit Part" msgstr "" @@ -3669,28 +3703,28 @@ msgstr "" msgid "Import" msgstr "" -#: src/components/wizards/ImportPartWizard.tsx:691 +#: src/components/wizards/ImportPartWizard.tsx:692 msgid "Parameters created successfully!" msgstr "" -#: src/components/wizards/ImportPartWizard.tsx:719 +#: src/components/wizards/ImportPartWizard.tsx:720 msgid "Failed to create parameters, please fix the errors and try again" msgstr "" #. placeholder {0}: supplierPart?.supplier -#: src/components/wizards/ImportPartWizard.tsx:739 +#: src/components/wizards/ImportPartWizard.tsx:740 msgid "Part imported successfully from supplier {0}." msgstr "" -#: src/components/wizards/ImportPartWizard.tsx:752 +#: src/components/wizards/ImportPartWizard.tsx:753 msgid "Open Part" msgstr "" -#: src/components/wizards/ImportPartWizard.tsx:759 +#: src/components/wizards/ImportPartWizard.tsx:760 msgid "Open Supplier Part" msgstr "" -#: src/components/wizards/ImportPartWizard.tsx:766 +#: src/components/wizards/ImportPartWizard.tsx:767 msgid "Open Manufacturer Part" msgstr "" @@ -3699,25 +3733,19 @@ msgstr "" #~ msgid "Import Part" #~ msgstr "Import Part" -#: src/components/wizards/ImportPartWizard.tsx:802 +#: src/components/wizards/ImportPartWizard.tsx:803 msgid "Import Supplier Part" msgstr "" -#: src/components/wizards/ImportPartWizard.tsx:804 +#: src/components/wizards/ImportPartWizard.tsx:805 msgid "Search Supplier Part" msgstr "" -#: src/components/wizards/ImportPartWizard.tsx:806 -#: src/pages/company/ManufacturerPartDetail.tsx:166 -#: src/pages/part/PartDetail.tsx:793 -msgid "Parameters" -msgstr "" - -#: src/components/wizards/ImportPartWizard.tsx:806 +#: src/components/wizards/ImportPartWizard.tsx:807 msgid "Confirm import" msgstr "" -#: src/components/wizards/ImportPartWizard.tsx:808 +#: src/components/wizards/ImportPartWizard.tsx:809 msgid "Done" msgstr "" @@ -3738,24 +3766,24 @@ msgid "Sales Requirements" msgstr "" #: src/components/wizards/OrderPartsWizard.tsx:129 -#: src/forms/StockForms.tsx:887 -#: src/forms/StockForms.tsx:926 -#: src/forms/StockForms.tsx:962 -#: src/forms/StockForms.tsx:1005 -#: src/forms/StockForms.tsx:1049 -#: src/forms/StockForms.tsx:1097 -#: src/forms/StockForms.tsx:1141 -#: src/pages/company/SupplierPartDetail.tsx:190 -#: src/pages/company/SupplierPartDetail.tsx:378 +#: src/forms/StockForms.tsx:894 +#: src/forms/StockForms.tsx:940 +#: src/forms/StockForms.tsx:978 +#: src/forms/StockForms.tsx:1021 +#: src/forms/StockForms.tsx:1065 +#: src/forms/StockForms.tsx:1113 +#: src/forms/StockForms.tsx:1157 +#: src/pages/company/SupplierPartDetail.tsx:191 +#: src/pages/company/SupplierPartDetail.tsx:383 #: src/pages/part/PartDetail.tsx:534 -#: src/pages/part/PartDetail.tsx:984 +#: src/pages/part/PartDetail.tsx:999 #: src/tables/Filter.tsx:92 #: src/tables/purchasing/SupplierPartTable.tsx:230 msgid "In Stock" msgstr "" #: src/components/wizards/OrderPartsWizard.tsx:146 -#: src/tables/build/BuildLineTable.tsx:404 +#: src/tables/build/BuildLineTable.tsx:405 msgid "Required Quantity" msgstr "" @@ -3847,7 +3875,7 @@ msgid "Please correct the errors in the selected parts" msgstr "" #: src/components/wizards/OrderPartsWizard.tsx:587 -#: src/tables/build/BuildLineTable.tsx:815 +#: src/tables/build/BuildLineTable.tsx:822 #: src/tables/part/PartTable.tsx:522 #: src/tables/sales/SalesOrderLineItemTable.tsx:370 msgid "Order Parts" @@ -4349,9 +4377,9 @@ msgstr "" #: src/forms/BuildForms.tsx:333 #: src/forms/BuildForms.tsx:408 #: src/forms/BuildForms.tsx:685 -#: src/tables/build/BuildAllocatedStockTable.tsx:150 +#: src/tables/build/BuildAllocatedStockTable.tsx:147 #: src/tables/build/BuildOutputTable.tsx:582 -#: src/tables/part/PartTestResultTable.tsx:272 +#: src/tables/part/PartTestResultTable.tsx:280 msgid "Build Output" msgstr "" @@ -4362,22 +4390,22 @@ msgstr "" #: src/forms/BuildForms.tsx:336 #: src/forms/BuildForms.tsx:411 #: src/forms/BuildForms.tsx:475 -#: src/forms/PurchaseOrderForms.tsx:717 +#: src/forms/PurchaseOrderForms.tsx:769 #: src/forms/ReturnOrderForms.tsx:197 #: src/forms/ReturnOrderForms.tsx:244 #: src/forms/StockForms.tsx:712 #: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:87 -#: src/pages/build/BuildDetail.tsx:222 +#: src/pages/build/BuildDetail.tsx:223 #: src/pages/core/UserDetail.tsx:151 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:168 -#: src/pages/sales/ReturnOrderDetail.tsx:135 -#: src/pages/sales/SalesOrderDetail.tsx:125 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:169 +#: src/pages/sales/ReturnOrderDetail.tsx:136 +#: src/pages/sales/SalesOrderDetail.tsx:126 #: src/pages/stock/StockDetail.tsx:170 #: src/tables/Filter.tsx:274 #: src/tables/build/BuildOutputTable.tsx:404 #: src/tables/machine/MachineListTable.tsx:387 #: src/tables/part/PartPurchaseOrdersTable.tsx:38 -#: src/tables/part/PartTestResultTable.tsx:309 +#: src/tables/part/PartTestResultTable.tsx:317 #: src/tables/sales/ReturnOrderLineItemTable.tsx:138 #: src/tables/sales/ReturnOrderLineItemTable.tsx:176 #: src/tables/settings/CustomStateTable.tsx:79 @@ -4443,18 +4471,19 @@ msgid "Build outputs have been cancelled" msgstr "" #: src/forms/BuildForms.tsx:631 -#: src/pages/build/BuildDetail.tsx:207 -#: src/pages/company/ManufacturerPartDetail.tsx:85 -#: src/pages/company/SupplierPartDetail.tsx:96 +#: src/pages/build/BuildDetail.tsx:208 +#: src/pages/company/ManufacturerPartDetail.tsx:84 +#: src/pages/company/SupplierPartDetail.tsx:97 #: src/pages/part/PartDetail.tsx:453 #: src/pages/stock/StockDetail.tsx:153 #: src/tables/bom/BomTable.tsx:134 #: src/tables/bom/UsedInTable.tsx:40 -#: src/tables/build/BuildAllocatedStockTable.tsx:108 -#: src/tables/build/BuildLineTable.tsx:336 +#: src/tables/build/BuildAllocatedStockTable.tsx:105 +#: src/tables/build/BuildLineTable.tsx:337 #: src/tables/build/BuildOrderTable.tsx:79 #: src/tables/part/PartSalesAllocationsTable.tsx:61 #: src/tables/part/RelatedPartTable.tsx:73 +#: src/tables/purchasing/ManufacturerPartParametricTable.tsx:21 #: src/tables/purchasing/ManufacturerPartTable.tsx:69 #: src/tables/purchasing/SupplierPartTable.tsx:70 #: src/tables/sales/SalesOrderAllocationTable.tsx:135 @@ -4466,47 +4495,47 @@ msgstr "" #: src/forms/BuildForms.tsx:632 #: src/forms/BuildForms.tsx:796 #: src/forms/BuildForms.tsx:897 -#: src/forms/SalesOrderForms.tsx:306 -#: src/tables/build/BuildAllocatedStockTable.tsx:139 -#: src/tables/build/BuildLineTable.tsx:182 +#: src/forms/SalesOrderForms.tsx:385 +#: src/tables/build/BuildAllocatedStockTable.tsx:136 +#: src/tables/build/BuildLineTable.tsx:183 #: src/tables/sales/SalesOrderLineItemTable.tsx:342 #: src/tables/stock/StockItemTable.tsx:338 msgid "Allocated" msgstr "" #: src/forms/BuildForms.tsx:667 -#: src/forms/SalesOrderForms.tsx:295 -#: src/pages/build/BuildDetail.tsx:108 -#: src/pages/build/BuildDetail.tsx:326 +#: src/forms/SalesOrderForms.tsx:374 +#: src/pages/build/BuildDetail.tsx:109 +#: src/pages/build/BuildDetail.tsx:327 msgid "Source Location" msgstr "" #: src/forms/BuildForms.tsx:668 -#: src/forms/SalesOrderForms.tsx:296 +#: src/forms/SalesOrderForms.tsx:375 msgid "Select the source location for the stock allocation" msgstr "" #: src/forms/BuildForms.tsx:700 -#: src/forms/SalesOrderForms.tsx:336 -#: src/tables/build/BuildLineTable.tsx:574 -#: src/tables/build/BuildLineTable.tsx:731 -#: src/tables/build/BuildLineTable.tsx:830 +#: src/forms/SalesOrderForms.tsx:415 +#: src/tables/build/BuildLineTable.tsx:575 +#: src/tables/build/BuildLineTable.tsx:738 +#: src/tables/build/BuildLineTable.tsx:837 #: src/tables/sales/SalesOrderLineItemTable.tsx:380 #: src/tables/sales/SalesOrderLineItemTable.tsx:406 msgid "Allocate Stock" msgstr "" #: src/forms/BuildForms.tsx:703 -#: src/forms/SalesOrderForms.tsx:341 +#: src/forms/SalesOrderForms.tsx:420 msgid "Stock items allocated" msgstr "" #: src/forms/BuildForms.tsx:816 #: src/forms/BuildForms.tsx:917 -#: src/tables/build/BuildAllocatedStockTable.tsx:240 -#: src/tables/build/BuildAllocatedStockTable.tsx:272 -#: src/tables/build/BuildLineTable.tsx:741 -#: src/tables/build/BuildLineTable.tsx:864 +#: src/tables/build/BuildAllocatedStockTable.tsx:243 +#: src/tables/build/BuildAllocatedStockTable.tsx:279 +#: src/tables/build/BuildLineTable.tsx:748 +#: src/tables/build/BuildLineTable.tsx:871 msgid "Consume Stock" msgstr "" @@ -4521,21 +4550,21 @@ msgstr "" #~ msgstr "Stock items consumed" #: src/forms/BuildForms.tsx:853 -#: src/tables/build/BuildLineTable.tsx:514 +#: src/tables/build/BuildLineTable.tsx:515 #: src/tables/part/PartBuildAllocationsTable.tsx:101 msgid "Fully consumed" msgstr "" #: src/forms/BuildForms.tsx:898 -#: src/tables/build/BuildLineTable.tsx:187 +#: src/tables/build/BuildLineTable.tsx:188 #: src/tables/stock/StockItemTable.tsx:367 msgid "Consumed" msgstr "" -#: src/forms/CommonForms.tsx:88 -#: src/forms/PurchaseOrderForms.tsx:125 +#: src/forms/CommonForms.tsx:92 +#: src/forms/PurchaseOrderForms.tsx:176 #: src/forms/ReturnOrderForms.tsx:138 -#: src/forms/SalesOrderForms.tsx:164 +#: src/forms/SalesOrderForms.tsx:185 msgid "Select project code for this line item" msgstr "" @@ -4543,16 +4572,16 @@ msgstr "" #~ msgid "Company updated" #~ msgstr "Company updated" -#: src/forms/PartForms.tsx:85 -#: src/forms/PartForms.tsx:207 -#: src/pages/part/CategoryDetail.tsx:124 +#: src/forms/PartForms.tsx:99 +#: src/forms/PartForms.tsx:228 +#: src/pages/part/CategoryDetail.tsx:127 #: src/pages/part/PartDetail.tsx:668 #: src/tables/part/PartCategoryTable.tsx:94 #: src/tables/part/PartTable.tsx:325 msgid "Subscribed" msgstr "" -#: src/forms/PartForms.tsx:86 +#: src/forms/PartForms.tsx:100 msgid "Subscribe to notifications for this part" msgstr "" @@ -4564,40 +4593,24 @@ msgstr "" #~ msgid "Part updated" #~ msgstr "Part updated" -#: src/forms/PartForms.tsx:193 +#: src/forms/PartForms.tsx:214 msgid "Parent part category" msgstr "" -#: src/forms/PartForms.tsx:208 +#: src/forms/PartForms.tsx:229 msgid "Subscribe to notifications for this category" msgstr "" -#: src/forms/PurchaseOrderForms.tsx:388 -msgid "Assign Batch Code and Serial Numbers" -msgstr "" - -#: src/forms/PurchaseOrderForms.tsx:390 -msgid "Assign Batch Code" -msgstr "" - -#: src/forms/PurchaseOrderForms.tsx:410 -msgid "Choose Location" -msgstr "" - -#: src/forms/PurchaseOrderForms.tsx:418 -msgid "Item Destination selected" -msgstr "" - #: src/forms/PurchaseOrderForms.tsx:421 #~ msgid "Assign Batch Code{0}" #~ msgstr "Assign Batch Code{0}" -#: src/forms/PurchaseOrderForms.tsx:428 -msgid "Part category default location selected" +#: src/forms/PurchaseOrderForms.tsx:440 +msgid "Assign Batch Code and Serial Numbers" msgstr "" -#: src/forms/PurchaseOrderForms.tsx:438 -msgid "Received stock location selected" +#: src/forms/PurchaseOrderForms.tsx:442 +msgid "Assign Batch Code" msgstr "" #: src/forms/PurchaseOrderForms.tsx:444 @@ -4605,115 +4618,131 @@ msgstr "" #~ msgid "Remove item from list" #~ msgstr "Remove item from list" -#: src/forms/PurchaseOrderForms.tsx:446 +#: src/forms/PurchaseOrderForms.tsx:462 +msgid "Choose Location" +msgstr "" + +#: src/forms/PurchaseOrderForms.tsx:470 +msgid "Item Destination selected" +msgstr "" + +#: src/forms/PurchaseOrderForms.tsx:480 +msgid "Part category default location selected" +msgstr "" + +#: src/forms/PurchaseOrderForms.tsx:490 +msgid "Received stock location selected" +msgstr "" + +#: src/forms/PurchaseOrderForms.tsx:498 msgid "Default location selected" msgstr "" -#: src/forms/PurchaseOrderForms.tsx:507 +#: src/forms/PurchaseOrderForms.tsx:559 msgid "Set Location" msgstr "" -#: src/forms/PurchaseOrderForms.tsx:524 -msgid "Set Expiry Date" -msgstr "" - -#: src/forms/PurchaseOrderForms.tsx:532 -#: src/forms/StockForms.tsx:693 -msgid "Adjust Packaging" -msgstr "" - -#: src/forms/PurchaseOrderForms.tsx:540 -#: src/forms/StockForms.tsx:684 -#: src/hooks/UseStockAdjustActions.tsx:148 -msgid "Change Status" -msgstr "" - -#: src/forms/PurchaseOrderForms.tsx:546 -msgid "Add Note" -msgstr "" - #: src/forms/PurchaseOrderForms.tsx:566 #~ msgid "Serial numbers" #~ msgstr "Serial numbers" +#: src/forms/PurchaseOrderForms.tsx:576 +msgid "Set Expiry Date" +msgstr "" + #: src/forms/PurchaseOrderForms.tsx:582 #~ msgid "Store at line item destination" #~ msgstr "Store at line item destination" -#: src/forms/PurchaseOrderForms.tsx:610 -msgid "Store at default location" +#: src/forms/PurchaseOrderForms.tsx:584 +#: src/forms/StockForms.tsx:693 +msgid "Adjust Packaging" msgstr "" -#: src/forms/PurchaseOrderForms.tsx:625 -msgid "Store at line item destination " +#: src/forms/PurchaseOrderForms.tsx:592 +#: src/forms/StockForms.tsx:684 +#: src/hooks/UseStockAdjustActions.tsx:148 +msgid "Change Status" msgstr "" -#: src/forms/PurchaseOrderForms.tsx:637 -msgid "Store with already received stock" +#: src/forms/PurchaseOrderForms.tsx:598 +msgid "Add Note" msgstr "" #: src/forms/PurchaseOrderForms.tsx:658 #~ msgid "Receive line items" #~ msgstr "Receive line items" -#: src/forms/PurchaseOrderForms.tsx:661 -#: src/pages/build/BuildDetail.tsx:340 +#: src/forms/PurchaseOrderForms.tsx:662 +msgid "Store at default location" +msgstr "" + +#: src/forms/PurchaseOrderForms.tsx:677 +msgid "Store at line item destination " +msgstr "" + +#: src/forms/PurchaseOrderForms.tsx:689 +msgid "Store with already received stock" +msgstr "" + +#: src/forms/PurchaseOrderForms.tsx:713 +#: src/pages/build/BuildDetail.tsx:341 #: src/pages/stock/StockDetail.tsx:280 #: src/pages/stock/StockDetail.tsx:952 #: src/tables/Filter.tsx:83 -#: src/tables/build/BuildAllocatedStockTable.tsx:128 +#: src/tables/build/BuildAllocatedStockTable.tsx:125 #: src/tables/build/BuildOutputTable.tsx:112 -#: src/tables/part/PartTestResultTable.tsx:260 -#: src/tables/part/PartTestResultTable.tsx:281 +#: src/tables/part/PartTestResultTable.tsx:268 +#: src/tables/part/PartTestResultTable.tsx:289 #: src/tables/sales/SalesOrderAllocationTable.tsx:149 msgid "Batch Code" msgstr "" -#: src/forms/PurchaseOrderForms.tsx:662 +#: src/forms/PurchaseOrderForms.tsx:714 msgid "Enter batch code for received items" msgstr "" -#: src/forms/PurchaseOrderForms.tsx:675 +#: src/forms/PurchaseOrderForms.tsx:727 #: src/forms/StockForms.tsx:218 msgid "Serial Numbers" msgstr "" -#: src/forms/PurchaseOrderForms.tsx:676 +#: src/forms/PurchaseOrderForms.tsx:728 msgid "Enter serial numbers for received items" msgstr "" -#: src/forms/PurchaseOrderForms.tsx:690 +#: src/forms/PurchaseOrderForms.tsx:742 #: src/pages/stock/StockDetail.tsx:382 #: src/tables/stock/StockItemTable.tsx:294 msgid "Expiry Date" msgstr "" -#: src/forms/PurchaseOrderForms.tsx:691 +#: src/forms/PurchaseOrderForms.tsx:743 msgid "Enter an expiry date for received items" msgstr "" -#: src/forms/PurchaseOrderForms.tsx:703 +#: src/forms/PurchaseOrderForms.tsx:755 #: src/forms/StockForms.tsx:728 -#: src/pages/company/SupplierPartDetail.tsx:172 -#: src/pages/company/SupplierPartDetail.tsx:236 +#: src/pages/company/SupplierPartDetail.tsx:173 +#: src/pages/company/SupplierPartDetail.tsx:237 #: src/pages/stock/StockDetail.tsx:419 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:227 msgid "Packaging" msgstr "" -#: src/forms/PurchaseOrderForms.tsx:727 -#: src/pages/company/SupplierPartDetail.tsx:120 +#: src/forms/PurchaseOrderForms.tsx:779 +#: src/pages/company/SupplierPartDetail.tsx:121 #: src/tables/ColumnRenderers.tsx:332 msgid "Note" msgstr "" -#: src/forms/PurchaseOrderForms.tsx:799 -#: src/pages/company/SupplierPartDetail.tsx:138 +#: src/forms/PurchaseOrderForms.tsx:851 +#: src/pages/company/SupplierPartDetail.tsx:139 #: src/tables/purchasing/SupplierPriceBreakTable.tsx:49 msgid "SKU" msgstr "" -#: src/forms/PurchaseOrderForms.tsx:800 +#: src/forms/PurchaseOrderForms.tsx:852 #: src/tables/part/PartPurchaseOrdersTable.tsx:127 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:213 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:283 @@ -4721,11 +4750,11 @@ msgstr "" msgid "Received" msgstr "" -#: src/forms/PurchaseOrderForms.tsx:817 +#: src/forms/PurchaseOrderForms.tsx:869 msgid "Receive Line Items" msgstr "" -#: src/forms/PurchaseOrderForms.tsx:823 +#: src/forms/PurchaseOrderForms.tsx:875 msgid "Items received" msgstr "" @@ -4737,7 +4766,35 @@ msgstr "" msgid "Item received into stock" msgstr "" -#: src/forms/SalesOrderForms.tsx:401 +#: src/forms/SalesOrderForms.tsx:208 +#: src/forms/SalesOrderForms.tsx:210 +#: src/tables/sales/SalesOrderShipmentTable.tsx:215 +msgid "Check Shipment" +msgstr "" + +#: src/forms/SalesOrderForms.tsx:211 +msgid "Marking the shipment as checked indicates that you have verified that all items included in this shipment are correct" +msgstr "" + +#: src/forms/SalesOrderForms.tsx:221 +msgid "Shipment marked as checked" +msgstr "" + +#: src/forms/SalesOrderForms.tsx:236 +#: src/forms/SalesOrderForms.tsx:238 +#: src/tables/sales/SalesOrderShipmentTable.tsx:228 +msgid "Uncheck Shipment" +msgstr "" + +#: src/forms/SalesOrderForms.tsx:239 +msgid "Marking the shipment as unchecked indicates that the shipment requires further verification" +msgstr "" + +#: src/forms/SalesOrderForms.tsx:249 +msgid "Shipment marked as unchecked" +msgstr "" + +#: src/forms/SalesOrderForms.tsx:480 msgid "Leave blank to use the order address" msgstr "" @@ -4792,150 +4849,150 @@ msgstr "" msgid "Return" msgstr "" -#: src/forms/StockForms.tsx:963 +#: src/forms/StockForms.tsx:979 #: src/pages/Index/Scan.tsx:182 msgid "Count" msgstr "" -#: src/forms/StockForms.tsx:1246 +#: src/forms/StockForms.tsx:1262 #: src/hooks/UseStockAdjustActions.tsx:108 msgid "Add Stock" msgstr "" -#: src/forms/StockForms.tsx:1247 +#: src/forms/StockForms.tsx:1263 msgid "Stock added" msgstr "" -#: src/forms/StockForms.tsx:1250 +#: src/forms/StockForms.tsx:1266 msgid "Increase the quantity of the selected stock items by a given amount." msgstr "" -#: src/forms/StockForms.tsx:1261 +#: src/forms/StockForms.tsx:1277 #: src/hooks/UseStockAdjustActions.tsx:118 msgid "Remove Stock" msgstr "" -#: src/forms/StockForms.tsx:1262 +#: src/forms/StockForms.tsx:1278 msgid "Stock removed" msgstr "" -#: src/forms/StockForms.tsx:1265 +#: src/forms/StockForms.tsx:1281 msgid "Decrease the quantity of the selected stock items by a given amount." msgstr "" -#: src/forms/StockForms.tsx:1276 +#: src/forms/StockForms.tsx:1292 #: src/hooks/UseStockAdjustActions.tsx:128 msgid "Transfer Stock" msgstr "" -#: src/forms/StockForms.tsx:1277 +#: src/forms/StockForms.tsx:1293 msgid "Stock transferred" msgstr "" -#: src/forms/StockForms.tsx:1280 +#: src/forms/StockForms.tsx:1296 msgid "Transfer selected items to the specified location." msgstr "" -#: src/forms/StockForms.tsx:1291 +#: src/forms/StockForms.tsx:1307 #: src/hooks/UseStockAdjustActions.tsx:168 msgid "Return Stock" msgstr "" -#: src/forms/StockForms.tsx:1292 +#: src/forms/StockForms.tsx:1308 msgid "Stock returned" msgstr "" -#: src/forms/StockForms.tsx:1295 +#: src/forms/StockForms.tsx:1311 msgid "Return selected items into stock, to the specified location." msgstr "" -#: src/forms/StockForms.tsx:1306 +#: src/forms/StockForms.tsx:1322 #: src/hooks/UseStockAdjustActions.tsx:98 msgid "Count Stock" msgstr "" -#: src/forms/StockForms.tsx:1307 +#: src/forms/StockForms.tsx:1323 msgid "Stock counted" msgstr "" -#: src/forms/StockForms.tsx:1310 +#: src/forms/StockForms.tsx:1326 msgid "Count the selected stock items, and adjust the quantity accordingly." msgstr "" -#: src/forms/StockForms.tsx:1321 +#: src/forms/StockForms.tsx:1337 msgid "Change Stock Status" msgstr "" -#: src/forms/StockForms.tsx:1322 +#: src/forms/StockForms.tsx:1338 msgid "Stock status changed" msgstr "" -#: src/forms/StockForms.tsx:1325 +#: src/forms/StockForms.tsx:1341 msgid "Change the status of the selected stock items." msgstr "" -#: src/forms/StockForms.tsx:1336 +#: src/forms/StockForms.tsx:1352 #: src/hooks/UseStockAdjustActions.tsx:138 msgid "Merge Stock" msgstr "" -#: src/forms/StockForms.tsx:1337 +#: src/forms/StockForms.tsx:1353 msgid "Stock merged" msgstr "" -#: src/forms/StockForms.tsx:1339 +#: src/forms/StockForms.tsx:1355 msgid "Merge Stock Items" msgstr "" -#: src/forms/StockForms.tsx:1341 +#: src/forms/StockForms.tsx:1357 msgid "Merge operation cannot be reversed" msgstr "" -#: src/forms/StockForms.tsx:1342 +#: src/forms/StockForms.tsx:1358 msgid "Tracking information may be lost when merging items" msgstr "" -#: src/forms/StockForms.tsx:1343 +#: src/forms/StockForms.tsx:1359 msgid "Supplier information may be lost when merging items" msgstr "" -#: src/forms/StockForms.tsx:1361 +#: src/forms/StockForms.tsx:1377 msgid "Assign Stock to Customer" msgstr "" -#: src/forms/StockForms.tsx:1362 +#: src/forms/StockForms.tsx:1378 msgid "Stock assigned to customer" msgstr "" -#: src/forms/StockForms.tsx:1372 +#: src/forms/StockForms.tsx:1388 msgid "Delete Stock Items" msgstr "" -#: src/forms/StockForms.tsx:1373 +#: src/forms/StockForms.tsx:1389 msgid "Stock deleted" msgstr "" -#: src/forms/StockForms.tsx:1376 +#: src/forms/StockForms.tsx:1392 msgid "This operation will permanently delete the selected stock items." msgstr "" -#: src/forms/StockForms.tsx:1385 +#: src/forms/StockForms.tsx:1401 msgid "Parent stock location" msgstr "" -#: src/forms/StockForms.tsx:1512 +#: src/forms/StockForms.tsx:1528 msgid "Find Serial Number" msgstr "" -#: src/forms/StockForms.tsx:1523 +#: src/forms/StockForms.tsx:1539 msgid "No matching items" msgstr "" -#: src/forms/StockForms.tsx:1529 +#: src/forms/StockForms.tsx:1545 msgid "Multiple matching items" msgstr "" -#: src/forms/StockForms.tsx:1538 +#: src/forms/StockForms.tsx:1554 msgid "Invalid response from server" msgstr "" @@ -4953,7 +5010,6 @@ msgstr "" #: src/tables/FilterSelectDrawer.tsx:137 #: src/tables/FilterSelectDrawer.tsx:149 #: src/tables/part/PartTestResultTable.tsx:206 -#: src/tables/purchasing/ManufacturerPartParameterTable.tsx:42 #: src/tables/stock/StockItemTestResultTable.tsx:207 msgid "Value" msgstr "" @@ -5244,7 +5300,7 @@ msgid "Delete selected stock items" msgstr "" #: src/hooks/UseStockAdjustActions.tsx:205 -#: src/pages/part/PartDetail.tsx:1137 +#: src/pages/part/PartDetail.tsx:1158 msgid "Stock Actions" msgstr "" @@ -5932,6 +5988,9 @@ msgstr "" #: src/pages/Index/Settings/AccountSettings/MFASettings.tsx:310 #: src/pages/Index/Settings/AccountSettings/MFASettings.tsx:401 +#: src/tables/build/BuildAllocatedStockTable.tsx:181 +#: src/tables/build/BuildLineTable.tsx:668 +#: src/tables/sales/SalesOrderAllocationTable.tsx:220 msgid "Confirm Removal" msgstr "" @@ -6394,30 +6453,34 @@ msgid "Email Messages" msgstr "" #: src/pages/Index/Settings/AdminCenter/HomePanel.tsx:22 -msgid "Active Alerts" -msgstr "" +#~ msgid "Active Alerts" +#~ msgstr "Active Alerts" #: src/pages/Index/Settings/AdminCenter/HomePanel.tsx:27 -msgid "Inactive Alerts" +#~ msgid "Inactive Alerts" +#~ msgstr "Inactive Alerts" + +#: src/pages/Index/Settings/AdminCenter/HomePanel.tsx:36 +msgid "System Status" msgstr "" -#: src/pages/Index/Settings/AdminCenter/HomePanel.tsx:38 +#: src/pages/Index/Settings/AdminCenter/HomePanel.tsx:47 msgid "Admin Center Information" msgstr "" -#: src/pages/Index/Settings/AdminCenter/HomePanel.tsx:44 +#: src/pages/Index/Settings/AdminCenter/HomePanel.tsx:53 msgid "The home panel (and the whole Admin Center) is a new feature starting with the new UI and was previously (before 1.0) not available." msgstr "" -#: src/pages/Index/Settings/AdminCenter/HomePanel.tsx:51 +#: src/pages/Index/Settings/AdminCenter/HomePanel.tsx:60 msgid "The admin center provides a centralized location for all administration functionality and is meant to replace all interaction with the (django) backend admin interface." msgstr "" -#: src/pages/Index/Settings/AdminCenter/HomePanel.tsx:58 +#: src/pages/Index/Settings/AdminCenter/HomePanel.tsx:67 msgid "Please open feature requests (after checking the tracker) for any existing backend admin functionality you are missing in this UI. The backend admin interface should be used carefully and seldom." msgstr "" -#: src/pages/Index/Settings/AdminCenter/HomePanel.tsx:76 +#: src/pages/Index/Settings/AdminCenter/HomePanel.tsx:85 msgid "Quick Actions" msgstr "" @@ -6476,11 +6539,11 @@ msgstr "" #: src/pages/Index/Settings/AdminCenter/Index.tsx:195 #: src/pages/part/CategoryDetail.tsx:313 -msgid "Part Parameters" -msgstr "" +#~ msgid "Part Parameters" +#~ msgstr "Part Parameters" #: src/pages/Index/Settings/AdminCenter/Index.tsx:202 -#: src/pages/part/CategoryDetail.tsx:306 +#: src/pages/part/CategoryDetail.tsx:329 msgid "Category Parameters" msgstr "" @@ -6494,7 +6557,7 @@ msgstr "" #: src/pages/Index/Settings/AdminCenter/Index.tsx:235 #: src/pages/Index/Settings/AdminCenter/MachineManagementPanel.tsx:52 -#: src/tables/machine/MachineTypeTable.tsx:325 +#: src/tables/machine/MachineTypeTable.tsx:323 msgid "Machines" msgstr "" @@ -6507,8 +6570,8 @@ msgid "Data Management" msgstr "" #: src/pages/Index/Settings/AdminCenter/Index.tsx:270 -#: src/pages/Index/Settings/SystemSettings.tsx:175 -#: src/pages/Index/Settings/UserSettings.tsx:118 +#: src/pages/Index/Settings/SystemSettings.tsx:176 +#: src/pages/Index/Settings/UserSettings.tsx:119 msgid "Reporting" msgstr "" @@ -6709,11 +6772,11 @@ msgstr "" msgid "The settings below are specific to each available plugin" msgstr "" -#: src/pages/Index/Settings/SystemSettings.tsx:77 +#: src/pages/Index/Settings/SystemSettings.tsx:78 msgid "Authentication" msgstr "" -#: src/pages/Index/Settings/SystemSettings.tsx:103 +#: src/pages/Index/Settings/SystemSettings.tsx:104 msgid "Barcodes" msgstr "" @@ -6725,12 +6788,12 @@ msgstr "" #~ msgid "This panel is a placeholder." #~ msgstr "This panel is a placeholder." -#: src/pages/Index/Settings/SystemSettings.tsx:127 -#: src/pages/Index/Settings/UserSettings.tsx:112 +#: src/pages/Index/Settings/SystemSettings.tsx:128 +#: src/pages/Index/Settings/UserSettings.tsx:113 msgid "The settings below are specific to each available notification method" msgstr "" -#: src/pages/Index/Settings/SystemSettings.tsx:133 +#: src/pages/Index/Settings/SystemSettings.tsx:134 msgid "Pricing" msgstr "" @@ -6738,7 +6801,7 @@ msgstr "" #~ msgid "Exchange Rates" #~ msgstr "Exchange Rates" -#: src/pages/Index/Settings/SystemSettings.tsx:169 +#: src/pages/Index/Settings/SystemSettings.tsx:170 msgid "Labels" msgstr "" @@ -6790,15 +6853,15 @@ msgstr "" #~ msgid "Delete notifications" #~ msgstr "Delete notifications" -#: src/pages/build/BuildDetail.tsx:69 +#: src/pages/build/BuildDetail.tsx:70 msgid "No Required Items" msgstr "" -#: src/pages/build/BuildDetail.tsx:71 +#: src/pages/build/BuildDetail.tsx:72 msgid "This build order does not have any required items." msgstr "" -#: src/pages/build/BuildDetail.tsx:72 +#: src/pages/build/BuildDetail.tsx:73 msgid "The assembled part may not have a Bill of Materials (BOM) defined, or the BOM is empty." msgstr "" @@ -6826,7 +6889,7 @@ msgstr "" #~ msgid "Build Order updated" #~ msgstr "Build Order updated" -#: src/pages/build/BuildDetail.tsx:215 +#: src/pages/build/BuildDetail.tsx:216 #: src/pages/part/PartDetail.tsx:480 #: src/pages/stock/StockDetail.tsx:161 #: src/tables/bom/UsedInTable.tsx:44 @@ -6843,10 +6906,10 @@ msgstr "" #~ msgid "Duplicate build order" #~ msgstr "Duplicate build order" -#: src/pages/build/BuildDetail.tsx:228 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:174 -#: src/pages/sales/ReturnOrderDetail.tsx:141 -#: src/pages/sales/SalesOrderDetail.tsx:131 +#: src/pages/build/BuildDetail.tsx:229 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:175 +#: src/pages/sales/ReturnOrderDetail.tsx:142 +#: src/pages/sales/SalesOrderDetail.tsx:132 #: src/pages/stock/StockDetail.tsx:176 msgid "Custom Status" msgstr "" @@ -6855,9 +6918,9 @@ msgstr "" #~ msgid "Delete build order" #~ msgstr "Delete build order" -#: src/pages/build/BuildDetail.tsx:237 -#: src/pages/build/BuildDetail.tsx:723 -#: src/pages/build/BuildIndex.tsx:28 +#: src/pages/build/BuildDetail.tsx:238 +#: src/pages/build/BuildDetail.tsx:728 +#: src/pages/build/BuildIndex.tsx:34 #: src/pages/stock/LocationDetail.tsx:140 #: src/tables/build/BuildOrderTable.tsx:123 #: src/tables/build/BuildOrderTable.tsx:183 @@ -6865,57 +6928,57 @@ msgstr "" msgid "External" msgstr "" -#: src/pages/build/BuildDetail.tsx:244 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:141 -#: src/pages/sales/ReturnOrderDetail.tsx:108 -#: src/pages/sales/SalesOrderDetail.tsx:98 +#: src/pages/build/BuildDetail.tsx:245 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:142 +#: src/pages/sales/ReturnOrderDetail.tsx:109 +#: src/pages/sales/SalesOrderDetail.tsx:99 #: src/tables/ColumnRenderers.tsx:321 -#: src/tables/build/BuildAllocatedStockTable.tsx:115 -#: src/tables/build/BuildLineTable.tsx:352 +#: src/tables/build/BuildAllocatedStockTable.tsx:112 +#: src/tables/build/BuildLineTable.tsx:353 msgid "Reference" msgstr "" -#: src/pages/build/BuildDetail.tsx:258 +#: src/pages/build/BuildDetail.tsx:259 msgid "Parent Build" msgstr "" -#: src/pages/build/BuildDetail.tsx:269 +#: src/pages/build/BuildDetail.tsx:270 msgid "Build Quantity" msgstr "" -#: src/pages/build/BuildDetail.tsx:275 +#: src/pages/build/BuildDetail.tsx:276 #: src/pages/part/PartDetail.tsx:598 #: src/tables/bom/BomTable.tsx:365 #: src/tables/bom/BomTable.tsx:407 msgid "Can Build" msgstr "" -#: src/pages/build/BuildDetail.tsx:284 -#: src/pages/build/BuildDetail.tsx:474 +#: src/pages/build/BuildDetail.tsx:285 +#: src/pages/build/BuildDetail.tsx:475 msgid "Completed Outputs" msgstr "" -#: src/pages/build/BuildDetail.tsx:301 +#: src/pages/build/BuildDetail.tsx:302 #: src/tables/Filter.tsx:381 #: src/tables/build/BuildOrderTable.tsx:143 msgid "Issued By" msgstr "" -#: src/pages/build/BuildDetail.tsx:309 +#: src/pages/build/BuildDetail.tsx:310 #: src/pages/part/PartDetail.tsx:691 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:261 -#: src/pages/sales/ReturnOrderDetail.tsx:239 -#: src/pages/sales/SalesOrderDetail.tsx:232 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:262 +#: src/pages/sales/ReturnOrderDetail.tsx:240 +#: src/pages/sales/SalesOrderDetail.tsx:233 #: src/tables/ColumnRenderers.tsx:464 #: src/tables/Filter.tsx:319 msgid "Responsible" msgstr "" -#: src/pages/build/BuildDetail.tsx:327 +#: src/pages/build/BuildDetail.tsx:328 msgid "Any location" msgstr "" -#: src/pages/build/BuildDetail.tsx:334 +#: src/pages/build/BuildDetail.tsx:335 msgid "Destination Location" msgstr "" @@ -6924,24 +6987,24 @@ msgstr "" #~ msgid "Test Statistics" #~ msgstr "Test Statistics" -#: src/pages/build/BuildDetail.tsx:350 +#: src/pages/build/BuildDetail.tsx:351 #: src/tables/settings/ApiTokenTable.tsx:97 #: src/tables/settings/PendingTasksTable.tsx:41 msgid "Created" msgstr "" -#: src/pages/build/BuildDetail.tsx:358 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:286 -#: src/pages/sales/ReturnOrderDetail.tsx:265 -#: src/pages/sales/SalesOrderDetail.tsx:257 +#: src/pages/build/BuildDetail.tsx:359 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:287 +#: src/pages/sales/ReturnOrderDetail.tsx:266 +#: src/pages/sales/SalesOrderDetail.tsx:258 #: src/tables/ColumnRenderers.tsx:486 msgid "Start Date" msgstr "" -#: src/pages/build/BuildDetail.tsx:366 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:294 -#: src/pages/sales/ReturnOrderDetail.tsx:273 -#: src/pages/sales/SalesOrderDetail.tsx:265 +#: src/pages/build/BuildDetail.tsx:367 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:295 +#: src/pages/sales/ReturnOrderDetail.tsx:274 +#: src/pages/sales/SalesOrderDetail.tsx:266 #: src/tables/ColumnRenderers.tsx:494 #: src/tables/part/PartPurchaseOrdersTable.tsx:101 #: src/tables/sales/ReturnOrderLineItemTable.tsx:154 @@ -6954,185 +7017,185 @@ msgstr "" #~ msgstr "Reporting Actions" #: src/pages/build/BuildDetail.tsx:374 +#~ msgid "Print build report" +#~ msgstr "Print build report" + +#: src/pages/build/BuildDetail.tsx:375 #: src/tables/build/BuildOrderTable.tsx:93 #: src/tables/sales/SalesOrderLineItemTable.tsx:347 msgid "Completed" msgstr "" -#: src/pages/build/BuildDetail.tsx:374 -#~ msgid "Print build report" -#~ msgstr "Print build report" - -#: src/pages/build/BuildDetail.tsx:410 +#: src/pages/build/BuildDetail.tsx:411 msgid "Build Details" msgstr "" -#: src/pages/build/BuildDetail.tsx:416 +#: src/pages/build/BuildDetail.tsx:417 msgid "Required Parts" msgstr "" -#: src/pages/build/BuildDetail.tsx:428 -#: src/pages/sales/SalesOrderDetail.tsx:407 -#: src/pages/sales/SalesOrderShipmentDetail.tsx:261 +#: src/pages/build/BuildDetail.tsx:429 +#: src/pages/sales/SalesOrderDetail.tsx:408 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:259 #: src/tables/part/PartSalesAllocationsTable.tsx:73 msgid "Allocated Stock" msgstr "" -#: src/pages/build/BuildDetail.tsx:444 +#: src/pages/build/BuildDetail.tsx:445 msgid "Consumed Stock" msgstr "" -#: src/pages/build/BuildDetail.tsx:461 +#: src/pages/build/BuildDetail.tsx:462 msgid "Incomplete Outputs" msgstr "" -#: src/pages/build/BuildDetail.tsx:489 +#: src/pages/build/BuildDetail.tsx:490 msgid "External Orders" msgstr "" -#: src/pages/build/BuildDetail.tsx:503 +#: src/pages/build/BuildDetail.tsx:504 msgid "Child Build Orders" msgstr "" -#: src/pages/build/BuildDetail.tsx:513 -#: src/pages/part/PartDetail.tsx:937 +#: src/pages/build/BuildDetail.tsx:514 +#: src/pages/part/PartDetail.tsx:926 #: src/pages/stock/StockDetail.tsx:587 #: src/tables/build/BuildOutputTable.tsx:654 #: src/tables/stock/StockItemTestResultTable.tsx:173 msgid "Test Results" msgstr "" -#: src/pages/build/BuildDetail.tsx:550 +#: src/pages/build/BuildDetail.tsx:555 msgid "Edit Build Order" msgstr "" -#: src/pages/build/BuildDetail.tsx:572 +#: src/pages/build/BuildDetail.tsx:577 #: src/tables/build/BuildOrderTable.tsx:207 #: src/tables/build/BuildOrderTable.tsx:223 msgid "Add Build Order" msgstr "" -#: src/pages/build/BuildDetail.tsx:582 +#: src/pages/build/BuildDetail.tsx:587 msgid "Cancel Build Order" msgstr "" -#: src/pages/build/BuildDetail.tsx:584 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:416 -#: src/pages/sales/ReturnOrderDetail.tsx:427 -#: src/pages/sales/SalesOrderDetail.tsx:454 +#: src/pages/build/BuildDetail.tsx:589 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:421 +#: src/pages/sales/ReturnOrderDetail.tsx:432 +#: src/pages/sales/SalesOrderDetail.tsx:459 msgid "Order cancelled" msgstr "" -#: src/pages/build/BuildDetail.tsx:585 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:415 -#: src/pages/sales/ReturnOrderDetail.tsx:426 -#: src/pages/sales/SalesOrderDetail.tsx:453 +#: src/pages/build/BuildDetail.tsx:590 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:420 +#: src/pages/sales/ReturnOrderDetail.tsx:431 +#: src/pages/sales/SalesOrderDetail.tsx:458 msgid "Cancel this order" msgstr "" -#: src/pages/build/BuildDetail.tsx:594 +#: src/pages/build/BuildDetail.tsx:599 msgid "Hold Build Order" msgstr "" -#: src/pages/build/BuildDetail.tsx:596 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:423 -#: src/pages/sales/ReturnOrderDetail.tsx:434 -#: src/pages/sales/SalesOrderDetail.tsx:461 +#: src/pages/build/BuildDetail.tsx:601 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:428 +#: src/pages/sales/ReturnOrderDetail.tsx:439 +#: src/pages/sales/SalesOrderDetail.tsx:466 msgid "Place this order on hold" msgstr "" -#: src/pages/build/BuildDetail.tsx:597 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:424 -#: src/pages/sales/ReturnOrderDetail.tsx:435 -#: src/pages/sales/SalesOrderDetail.tsx:462 +#: src/pages/build/BuildDetail.tsx:602 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:429 +#: src/pages/sales/ReturnOrderDetail.tsx:440 +#: src/pages/sales/SalesOrderDetail.tsx:467 msgid "Order placed on hold" msgstr "" -#: src/pages/build/BuildDetail.tsx:602 +#: src/pages/build/BuildDetail.tsx:607 msgid "Issue Build Order" msgstr "" -#: src/pages/build/BuildDetail.tsx:604 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:407 -#: src/pages/sales/ReturnOrderDetail.tsx:418 -#: src/pages/sales/SalesOrderDetail.tsx:445 +#: src/pages/build/BuildDetail.tsx:609 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:412 +#: src/pages/sales/ReturnOrderDetail.tsx:423 +#: src/pages/sales/SalesOrderDetail.tsx:450 msgid "Issue this order" msgstr "" -#: src/pages/build/BuildDetail.tsx:605 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:408 -#: src/pages/sales/ReturnOrderDetail.tsx:419 -#: src/pages/sales/SalesOrderDetail.tsx:446 +#: src/pages/build/BuildDetail.tsx:610 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:413 +#: src/pages/sales/ReturnOrderDetail.tsx:424 +#: src/pages/sales/SalesOrderDetail.tsx:451 msgid "Order issued" msgstr "" -#: src/pages/build/BuildDetail.tsx:624 +#: src/pages/build/BuildDetail.tsx:629 msgid "Complete Build Order" msgstr "" -#: src/pages/build/BuildDetail.tsx:630 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:436 -#: src/pages/sales/ReturnOrderDetail.tsx:442 -#: src/pages/sales/SalesOrderDetail.tsx:480 +#: src/pages/build/BuildDetail.tsx:635 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:441 +#: src/pages/sales/ReturnOrderDetail.tsx:447 +#: src/pages/sales/SalesOrderDetail.tsx:485 msgid "Mark this order as complete" msgstr "" -#: src/pages/build/BuildDetail.tsx:633 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:430 -#: src/pages/sales/ReturnOrderDetail.tsx:443 -#: src/pages/sales/SalesOrderDetail.tsx:481 +#: src/pages/build/BuildDetail.tsx:638 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:435 +#: src/pages/sales/ReturnOrderDetail.tsx:448 +#: src/pages/sales/SalesOrderDetail.tsx:486 msgid "Order completed" msgstr "" -#: src/pages/build/BuildDetail.tsx:660 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:459 -#: src/pages/sales/ReturnOrderDetail.tsx:470 -#: src/pages/sales/SalesOrderDetail.tsx:516 +#: src/pages/build/BuildDetail.tsx:665 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:464 +#: src/pages/sales/ReturnOrderDetail.tsx:475 +#: src/pages/sales/SalesOrderDetail.tsx:521 msgid "Issue Order" msgstr "" -#: src/pages/build/BuildDetail.tsx:667 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:466 -#: src/pages/sales/ReturnOrderDetail.tsx:477 -#: src/pages/sales/SalesOrderDetail.tsx:530 +#: src/pages/build/BuildDetail.tsx:672 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:471 +#: src/pages/sales/ReturnOrderDetail.tsx:482 +#: src/pages/sales/SalesOrderDetail.tsx:535 msgid "Complete Order" msgstr "" -#: src/pages/build/BuildDetail.tsx:686 +#: src/pages/build/BuildDetail.tsx:691 msgid "Build Order Actions" msgstr "" -#: src/pages/build/BuildDetail.tsx:691 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:489 -#: src/pages/sales/ReturnOrderDetail.tsx:500 -#: src/pages/sales/SalesOrderDetail.tsx:554 +#: src/pages/build/BuildDetail.tsx:696 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:494 +#: src/pages/sales/ReturnOrderDetail.tsx:505 +#: src/pages/sales/SalesOrderDetail.tsx:559 msgid "Edit order" msgstr "" -#: src/pages/build/BuildDetail.tsx:695 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:497 -#: src/pages/sales/ReturnOrderDetail.tsx:506 -#: src/pages/sales/SalesOrderDetail.tsx:559 -msgid "Duplicate order" -msgstr "" - -#: src/pages/build/BuildDetail.tsx:699 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:500 +#: src/pages/build/BuildDetail.tsx:700 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:502 #: src/pages/sales/ReturnOrderDetail.tsx:511 -#: src/pages/sales/SalesOrderDetail.tsx:562 -msgid "Hold order" +#: src/pages/sales/SalesOrderDetail.tsx:564 +msgid "Duplicate order" msgstr "" #: src/pages/build/BuildDetail.tsx:704 #: src/pages/purchasing/PurchaseOrderDetail.tsx:505 #: src/pages/sales/ReturnOrderDetail.tsx:516 #: src/pages/sales/SalesOrderDetail.tsx:567 +msgid "Hold order" +msgstr "" + +#: src/pages/build/BuildDetail.tsx:709 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:510 +#: src/pages/sales/ReturnOrderDetail.tsx:521 +#: src/pages/sales/SalesOrderDetail.tsx:572 msgid "Cancel order" msgstr "" -#: src/pages/build/BuildDetail.tsx:742 +#: src/pages/build/BuildDetail.tsx:747 #: src/pages/stock/StockDetail.tsx:344 -#: src/tables/build/BuildAllocatedStockTable.tsx:85 +#: src/tables/build/BuildAllocatedStockTable.tsx:82 #: src/tables/part/PartBuildAllocationsTable.tsx:45 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:157 #: src/tables/stock/StockTrackingTable.tsx:109 @@ -7143,7 +7206,7 @@ msgstr "" #~ msgid "Build order created" #~ msgstr "Build order created" -#: src/pages/build/BuildIndex.tsx:29 +#: src/pages/build/BuildIndex.tsx:35 #: src/tables/build/BuildOrderTable.tsx:184 msgid "Show external build orders" msgstr "" @@ -7152,61 +7215,82 @@ msgstr "" #~ msgid "New Build Order" #~ msgstr "New Build Order" -#: src/pages/build/BuildIndex.tsx:83 -#: src/pages/purchasing/PurchasingIndex.tsx:69 -#: src/pages/sales/SalesIndex.tsx:92 -#: src/pages/sales/SalesIndex.tsx:125 +#: src/pages/build/BuildIndex.tsx:74 +#: src/pages/part/CategoryDetail.tsx:292 +#: src/pages/purchasing/PurchasingIndex.tsx:74 +#: src/pages/purchasing/PurchasingIndex.tsx:107 +#: src/pages/purchasing/PurchasingIndex.tsx:135 +#: src/pages/purchasing/PurchasingIndex.tsx:156 +#: src/pages/purchasing/PurchasingIndex.tsx:184 +#: src/pages/sales/SalesIndex.tsx:61 +#: src/pages/sales/SalesIndex.tsx:107 +#: src/pages/sales/SalesIndex.tsx:140 msgid "Table View" msgstr "" -#: src/pages/build/BuildIndex.tsx:86 -#: src/pages/purchasing/PurchasingIndex.tsx:72 -#: src/pages/sales/SalesIndex.tsx:95 -#: src/pages/sales/SalesIndex.tsx:128 +#: src/pages/build/BuildIndex.tsx:80 +#: src/pages/purchasing/PurchasingIndex.tsx:80 +#: src/pages/sales/SalesIndex.tsx:67 +#: src/pages/sales/SalesIndex.tsx:113 msgid "Calendar View" msgstr "" -#: src/pages/company/CompanyDetail.tsx:99 +#: src/pages/build/BuildIndex.tsx:86 +#: src/pages/part/CategoryDetail.tsx:306 +#: src/pages/purchasing/PurchasingIndex.tsx:92 +#: src/pages/purchasing/PurchasingIndex.tsx:118 +#: src/pages/purchasing/PurchasingIndex.tsx:141 +#: src/pages/purchasing/PurchasingIndex.tsx:167 +#: src/pages/purchasing/PurchasingIndex.tsx:190 +#: src/pages/sales/SalesIndex.tsx:79 +#: src/pages/sales/SalesIndex.tsx:125 +#: src/pages/sales/SalesIndex.tsx:151 +msgid "Parametric View" +msgstr "" + +#: src/pages/company/CompanyDetail.tsx:100 msgid "Website" msgstr "אתר אינטרנט" -#: src/pages/company/CompanyDetail.tsx:107 +#: src/pages/company/CompanyDetail.tsx:108 msgid "Phone Number" msgstr "" -#: src/pages/company/CompanyDetail.tsx:114 +#: src/pages/company/CompanyDetail.tsx:115 msgid "Email Address" msgstr "" -#: src/pages/company/CompanyDetail.tsx:121 +#: src/pages/company/CompanyDetail.tsx:122 msgid "Tax ID" msgstr "" -#: src/pages/company/CompanyDetail.tsx:131 +#: src/pages/company/CompanyDetail.tsx:132 msgid "Default Currency" msgstr "" -#: src/pages/company/CompanyDetail.tsx:142 +#: src/pages/company/CompanyDetail.tsx:143 #: src/pages/company/ManufacturerDetail.tsx:8 -#: src/pages/company/ManufacturerPartDetail.tsx:104 -#: src/pages/company/ManufacturerPartDetail.tsx:280 -#: src/pages/company/SupplierPartDetail.tsx:152 +#: src/pages/company/ManufacturerPartDetail.tsx:103 +#: src/pages/company/ManufacturerPartDetail.tsx:271 +#: src/pages/company/SupplierPartDetail.tsx:153 #: src/tables/Filter.tsx:347 #: src/tables/company/CompanyTable.tsx:101 #: src/tables/purchasing/SupplierPartTable.tsx:89 msgid "Manufacturer" msgstr "" -#: src/pages/company/CompanyDetail.tsx:148 +#: src/pages/company/CompanyDetail.tsx:149 #: src/pages/company/CustomerDetail.tsx:8 #: src/pages/part/pricing/SaleHistoryPanel.tsx:31 -#: src/pages/sales/ReturnOrderDetail.tsx:123 -#: src/pages/sales/SalesOrderDetail.tsx:113 -#: src/pages/sales/SalesOrderShipmentDetail.tsx:113 +#: src/pages/sales/ReturnOrderDetail.tsx:124 +#: src/pages/sales/SalesOrderDetail.tsx:114 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:111 #: src/pages/stock/StockDetail.tsx:370 #: src/tables/company/CompanyTable.tsx:106 +#: src/tables/sales/ReturnOrderParametricTable.tsx:32 #: src/tables/sales/ReturnOrderTable.tsx:108 -#: src/tables/sales/SalesOrderShipmentTable.tsx:111 +#: src/tables/sales/SalesOrderParametricTable.tsx:32 +#: src/tables/sales/SalesOrderShipmentTable.tsx:132 #: src/tables/sales/SalesOrderTable.tsx:133 #: src/tables/stock/StockTrackingTable.tsx:153 msgid "Customer" @@ -7216,11 +7300,11 @@ msgstr "" #~ msgid "Edit company" #~ msgstr "Edit company" -#: src/pages/company/CompanyDetail.tsx:181 +#: src/pages/company/CompanyDetail.tsx:182 msgid "Company Details" msgstr "" -#: src/pages/company/CompanyDetail.tsx:187 +#: src/pages/company/CompanyDetail.tsx:188 msgid "Supplied Parts" msgstr "" @@ -7228,79 +7312,79 @@ msgstr "" #~ msgid "Delete company" #~ msgstr "Delete company" -#: src/pages/company/CompanyDetail.tsx:194 +#: src/pages/company/CompanyDetail.tsx:195 msgid "Manufactured Parts" msgstr "" -#: src/pages/company/CompanyDetail.tsx:241 +#: src/pages/company/CompanyDetail.tsx:242 msgid "Assigned Stock" msgstr "" -#: src/pages/company/CompanyDetail.tsx:282 +#: src/pages/company/CompanyDetail.tsx:287 #: src/tables/company/CompanyTable.tsx:82 msgid "Edit Company" msgstr "" -#: src/pages/company/CompanyDetail.tsx:290 +#: src/pages/company/CompanyDetail.tsx:295 msgid "Delete Company" msgstr "" -#: src/pages/company/CompanyDetail.tsx:305 +#: src/pages/company/CompanyDetail.tsx:310 msgid "Company Actions" msgstr "" -#: src/pages/company/ManufacturerPartDetail.tsx:78 -#: src/pages/company/SupplierPartDetail.tsx:89 +#: src/pages/company/ManufacturerPartDetail.tsx:77 +#: src/pages/company/SupplierPartDetail.tsx:90 msgid "Internal Part" msgstr "" -#: src/pages/company/ManufacturerPartDetail.tsx:112 +#: src/pages/company/ManufacturerPartDetail.tsx:111 msgid "Manufacturer Part Number" msgstr "" -#: src/pages/company/ManufacturerPartDetail.tsx:129 -#: src/pages/company/SupplierPartDetail.tsx:113 +#: src/pages/company/ManufacturerPartDetail.tsx:128 +#: src/pages/company/SupplierPartDetail.tsx:114 msgid "External Link" msgstr "" -#: src/pages/company/ManufacturerPartDetail.tsx:148 -#: src/pages/company/SupplierPartDetail.tsx:232 +#: src/pages/company/ManufacturerPartDetail.tsx:147 +#: src/pages/company/SupplierPartDetail.tsx:233 #: src/pages/part/PartDetail.tsx:787 msgid "Part Details" msgstr "" -#: src/pages/company/ManufacturerPartDetail.tsx:151 +#: src/pages/company/ManufacturerPartDetail.tsx:150 msgid "Manufacturer Details" msgstr "" -#: src/pages/company/ManufacturerPartDetail.tsx:160 +#: src/pages/company/ManufacturerPartDetail.tsx:159 msgid "Manufacturer Part Details" msgstr "" -#: src/pages/company/ManufacturerPartDetail.tsx:178 -#: src/pages/company/SupplierPartDetail.tsx:252 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:381 +#: src/pages/company/ManufacturerPartDetail.tsx:165 +#: src/pages/company/SupplierPartDetail.tsx:253 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:382 msgid "Received Stock" msgstr "" -#: src/pages/company/ManufacturerPartDetail.tsx:220 +#: src/pages/company/ManufacturerPartDetail.tsx:211 #: src/tables/purchasing/ManufacturerPartTable.tsx:108 msgid "Edit Manufacturer Part" msgstr "" -#: src/pages/company/ManufacturerPartDetail.tsx:227 +#: src/pages/company/ManufacturerPartDetail.tsx:218 #: src/tables/purchasing/ManufacturerPartTable.tsx:96 #: src/tables/purchasing/ManufacturerPartTable.tsx:115 #: src/tables/purchasing/ManufacturerPartTable.tsx:156 msgid "Add Manufacturer Part" msgstr "" -#: src/pages/company/ManufacturerPartDetail.tsx:239 +#: src/pages/company/ManufacturerPartDetail.tsx:230 #: src/tables/purchasing/ManufacturerPartTable.tsx:126 msgid "Delete Manufacturer Part" msgstr "" -#: src/pages/company/ManufacturerPartDetail.tsx:254 +#: src/pages/company/ManufacturerPartDetail.tsx:245 msgid "Manufacturer Part Actions" msgstr "" @@ -7308,12 +7392,12 @@ msgstr "" #~ msgid "ManufacturerPart" #~ msgstr "ManufacturerPart" -#: src/pages/company/SupplierPartDetail.tsx:104 +#: src/pages/company/SupplierPartDetail.tsx:105 #: src/tables/part/RelatedPartTable.tsx:82 msgid "Part Description" msgstr "" -#: src/pages/company/SupplierPartDetail.tsx:179 +#: src/pages/company/SupplierPartDetail.tsx:180 #: src/tables/part/PartPurchaseOrdersTable.tsx:73 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:191 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:233 @@ -7321,50 +7405,50 @@ msgstr "" msgid "Pack Quantity" msgstr "" -#: src/pages/company/SupplierPartDetail.tsx:204 +#: src/pages/company/SupplierPartDetail.tsx:205 msgid "Supplier Availability" msgstr "" -#: src/pages/company/SupplierPartDetail.tsx:212 +#: src/pages/company/SupplierPartDetail.tsx:213 msgid "Availability Updated" msgstr "" -#: src/pages/company/SupplierPartDetail.tsx:237 +#: src/pages/company/SupplierPartDetail.tsx:238 msgid "Availability" msgstr "" -#: src/pages/company/SupplierPartDetail.tsx:246 +#: src/pages/company/SupplierPartDetail.tsx:247 msgid "Supplier Part Details" msgstr "" -#: src/pages/company/SupplierPartDetail.tsx:279 +#: src/pages/company/SupplierPartDetail.tsx:280 #: src/pages/part/PartPricingPanel.tsx:113 #: src/pages/part/pricing/PricingOverviewPanel.tsx:239 msgid "Supplier Pricing" msgstr "" -#: src/pages/company/SupplierPartDetail.tsx:308 +#: src/pages/company/SupplierPartDetail.tsx:313 msgid "Supplier Part Actions" msgstr "" -#: src/pages/company/SupplierPartDetail.tsx:332 +#: src/pages/company/SupplierPartDetail.tsx:337 #: src/tables/purchasing/SupplierPartTable.tsx:244 msgid "Edit Supplier Part" msgstr "" -#: src/pages/company/SupplierPartDetail.tsx:340 +#: src/pages/company/SupplierPartDetail.tsx:345 #: src/tables/purchasing/SupplierPartTable.tsx:264 msgid "Delete Supplier Part" msgstr "" -#: src/pages/company/SupplierPartDetail.tsx:348 +#: src/pages/company/SupplierPartDetail.tsx:353 #: src/tables/purchasing/SupplierPartTable.tsx:172 #: src/tables/purchasing/SupplierPartTable.tsx:251 msgid "Add Supplier Part" msgstr "" -#: src/pages/company/SupplierPartDetail.tsx:388 -#: src/pages/part/PartDetail.tsx:1003 +#: src/pages/company/SupplierPartDetail.tsx:393 +#: src/pages/part/PartDetail.tsx:1018 msgid "No Stock" msgstr "" @@ -7411,83 +7495,83 @@ msgstr "" msgid "Basic user" msgstr "" -#: src/pages/part/CategoryDetail.tsx:100 +#: src/pages/part/CategoryDetail.tsx:103 #: src/pages/stock/LocationDetail.tsx:94 #: src/tables/settings/ErrorTable.tsx:63 #: src/tables/settings/ErrorTable.tsx:108 msgid "Path" msgstr "" -#: src/pages/part/CategoryDetail.tsx:116 +#: src/pages/part/CategoryDetail.tsx:119 msgid "Parent Category" msgstr "" -#: src/pages/part/CategoryDetail.tsx:139 -#: src/pages/part/CategoryDetail.tsx:271 +#: src/pages/part/CategoryDetail.tsx:142 +#: src/pages/part/CategoryDetail.tsx:279 msgid "Subcategories" msgstr "" -#: src/pages/part/CategoryDetail.tsx:146 +#: src/pages/part/CategoryDetail.tsx:149 #: src/pages/stock/LocationDetail.tsx:134 #: src/tables/part/PartCategoryTable.tsx:89 #: src/tables/stock/StockLocationTable.tsx:43 msgid "Structural" msgstr "" -#: src/pages/part/CategoryDetail.tsx:152 +#: src/pages/part/CategoryDetail.tsx:155 msgid "Parent default location" msgstr "" -#: src/pages/part/CategoryDetail.tsx:159 +#: src/pages/part/CategoryDetail.tsx:162 msgid "Default location" msgstr "" -#: src/pages/part/CategoryDetail.tsx:170 +#: src/pages/part/CategoryDetail.tsx:173 msgid "Top level part category" msgstr "" -#: src/pages/part/CategoryDetail.tsx:180 -#: src/pages/part/CategoryDetail.tsx:248 +#: src/pages/part/CategoryDetail.tsx:183 +#: src/pages/part/CategoryDetail.tsx:251 #: src/tables/part/PartCategoryTable.tsx:122 msgid "Edit Part Category" msgstr "" -#: src/pages/part/CategoryDetail.tsx:189 +#: src/pages/part/CategoryDetail.tsx:192 msgid "Move items to parent category" msgstr "" -#: src/pages/part/CategoryDetail.tsx:193 +#: src/pages/part/CategoryDetail.tsx:196 #: src/pages/stock/LocationDetail.tsx:226 msgid "Delete items" msgstr "" -#: src/pages/part/CategoryDetail.tsx:201 -#: src/pages/part/CategoryDetail.tsx:253 +#: src/pages/part/CategoryDetail.tsx:204 +#: src/pages/part/CategoryDetail.tsx:256 msgid "Delete Part Category" msgstr "" -#: src/pages/part/CategoryDetail.tsx:204 +#: src/pages/part/CategoryDetail.tsx:207 msgid "Parts Action" msgstr "" -#: src/pages/part/CategoryDetail.tsx:205 +#: src/pages/part/CategoryDetail.tsx:208 msgid "Action for parts in this category" msgstr "" -#: src/pages/part/CategoryDetail.tsx:211 +#: src/pages/part/CategoryDetail.tsx:214 msgid "Child Categories Action" msgstr "" -#: src/pages/part/CategoryDetail.tsx:212 +#: src/pages/part/CategoryDetail.tsx:215 msgid "Action for child categories in this category" msgstr "" -#: src/pages/part/CategoryDetail.tsx:244 +#: src/pages/part/CategoryDetail.tsx:247 #: src/tables/part/PartCategoryTable.tsx:143 msgid "Category Actions" msgstr "" -#: src/pages/part/CategoryDetail.tsx:265 +#: src/pages/part/CategoryDetail.tsx:273 msgid "Category Details" msgstr "" @@ -7585,7 +7669,6 @@ msgid "Category Default Location" msgstr "" #: src/pages/part/PartDetail.tsx:507 -#: src/tables/purchasing/ManufacturerPartParameterTable.tsx:48 msgid "Units" msgstr "" @@ -7600,7 +7683,7 @@ msgstr "" #: src/pages/part/PartDetail.tsx:542 #: src/tables/bom/BomTable.tsx:439 -#: src/tables/build/BuildLineTable.tsx:305 +#: src/tables/build/BuildLineTable.tsx:306 #: src/tables/part/PartTable.tsx:319 #: src/tables/sales/SalesOrderLineItemTable.tsx:138 msgid "Available Stock" @@ -7608,7 +7691,7 @@ msgstr "" #: src/pages/part/PartDetail.tsx:548 #: src/tables/bom/BomTable.tsx:341 -#: src/tables/build/BuildLineTable.tsx:267 +#: src/tables/build/BuildLineTable.tsx:268 #: src/tables/sales/SalesOrderLineItemTable.tsx:180 msgid "On order" msgstr "" @@ -7634,7 +7717,7 @@ msgstr "" #~ msgstr "Scheduling" #: src/pages/part/PartDetail.tsx:620 -#: src/tables/part/ParametricPartTable.tsx:359 +#: src/tables/part/ParametricPartTable.tsx:24 #: src/tables/part/PartTable.tsx:203 msgid "Locked" msgstr "" @@ -7671,16 +7754,16 @@ msgid "Saleable Part" msgstr "" #: src/pages/part/PartDetail.tsx:663 -#: src/pages/part/PartDetail.tsx:1033 +#: src/pages/part/PartDetail.tsx:1054 #: src/tables/bom/BomTable.tsx:150 #: src/tables/bom/BomTable.tsx:434 msgid "Virtual Part" msgstr "" #: src/pages/part/PartDetail.tsx:678 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:271 -#: src/pages/sales/ReturnOrderDetail.tsx:249 -#: src/pages/sales/SalesOrderDetail.tsx:242 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:272 +#: src/pages/sales/ReturnOrderDetail.tsx:250 +#: src/pages/sales/SalesOrderDetail.tsx:243 #: src/tables/ColumnRenderers.tsx:502 msgid "Creation Date" msgstr "" @@ -7718,35 +7801,46 @@ msgstr "" msgid "Select Part Revision" msgstr "" -#: src/pages/part/PartDetail.tsx:823 +#: src/pages/part/PartDetail.tsx:812 msgid "Variants" msgstr "" -#: src/pages/part/PartDetail.tsx:830 +#: src/pages/part/PartDetail.tsx:819 #: src/pages/stock/StockDetail.tsx:542 msgid "Allocations" msgstr "" -#: src/pages/part/PartDetail.tsx:837 +#: src/pages/part/PartDetail.tsx:826 msgid "Bill of Materials" msgstr "" -#: src/pages/part/PartDetail.tsx:849 +#: src/pages/part/PartDetail.tsx:838 msgid "Used In" msgstr "" -#: src/pages/part/PartDetail.tsx:856 +#: src/pages/part/PartDetail.tsx:845 msgid "Part Pricing" msgstr "" -#: src/pages/part/PartDetail.tsx:926 +#: src/pages/part/PartDetail.tsx:915 msgid "Test Templates" msgstr "" -#: src/pages/part/PartDetail.tsx:948 +#: src/pages/part/PartDetail.tsx:937 msgid "Related Parts" msgstr "" +#: src/pages/part/PartDetail.tsx:949 +#: src/tables/ColumnRenderers.tsx:73 +#: src/tables/bom/BomTable.tsx:657 +#: src/tables/part/PartTestTemplateTable.tsx:258 +msgid "Part is Locked" +msgstr "" + +#: src/pages/part/PartDetail.tsx:954 +msgid "Part parameters cannot be edited, as the part is locked" +msgstr "" + #: src/pages/part/PartDetail.tsx:956 #~ msgid "Count part stock" #~ msgstr "Count part stock" @@ -7755,42 +7849,46 @@ msgstr "" #~ msgid "Transfer part stock" #~ msgstr "Transfer part stock" -#: src/pages/part/PartDetail.tsx:1009 +#: src/pages/part/PartDetail.tsx:1024 #: src/tables/part/PartTestTemplateTable.tsx:112 #: src/tables/stock/StockItemTestResultTable.tsx:404 msgid "Required" msgstr "" -#: src/pages/part/PartDetail.tsx:1058 +#: src/pages/part/PartDetail.tsx:1042 +msgid "Deficit" +msgstr "" + +#: src/pages/part/PartDetail.tsx:1079 #: src/tables/part/PartTable.tsx:396 #: src/tables/part/PartTable.tsx:449 msgid "Add Part" msgstr "" -#: src/pages/part/PartDetail.tsx:1072 +#: src/pages/part/PartDetail.tsx:1093 msgid "Delete Part" msgstr "" -#: src/pages/part/PartDetail.tsx:1081 +#: src/pages/part/PartDetail.tsx:1102 msgid "Deleting this part cannot be reversed" msgstr "" -#: src/pages/part/PartDetail.tsx:1143 +#: src/pages/part/PartDetail.tsx:1164 #: src/pages/stock/StockDetail.tsx:883 msgid "Order" msgstr "" -#: src/pages/part/PartDetail.tsx:1144 +#: src/pages/part/PartDetail.tsx:1165 #: src/pages/stock/StockDetail.tsx:884 -#: src/tables/build/BuildLineTable.tsx:761 +#: src/tables/build/BuildLineTable.tsx:768 msgid "Order Stock" msgstr "" -#: src/pages/part/PartDetail.tsx:1156 +#: src/pages/part/PartDetail.tsx:1177 msgid "Search by serial number" msgstr "" -#: src/pages/part/PartDetail.tsx:1164 +#: src/pages/part/PartDetail.tsx:1185 #: src/tables/part/PartTable.tsx:506 msgid "Part Actions" msgstr "" @@ -8039,7 +8137,7 @@ msgstr "" #: src/pages/part/pricing/PricingOverviewPanel.tsx:288 #: src/pages/stock/StockDetail.tsx:426 -#: src/tables/part/PartParameterTable.tsx:121 +#: src/tables/general/ParameterTable.tsx:101 #: src/tables/stock/StockItemTable.tsx:300 msgid "Last Updated" msgstr "" @@ -8107,17 +8205,17 @@ msgstr "" msgid "Variant Part" msgstr "" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:89 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:90 msgid "Edit Purchase Order" msgstr "" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:125 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:126 #: src/tables/purchasing/PurchaseOrderTable.tsx:154 #: src/tables/purchasing/PurchaseOrderTable.tsx:167 msgid "Add Purchase Order" msgstr "" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:147 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:148 msgid "Supplier Reference" msgstr "" @@ -8127,20 +8225,20 @@ msgstr "" #~ msgid "Order Currency," #~ msgstr "Order Currency," -#: src/pages/purchasing/PurchaseOrderDetail.tsx:187 -#: src/pages/sales/ReturnOrderDetail.tsx:160 -#: src/pages/sales/SalesOrderDetail.tsx:144 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:188 +#: src/pages/sales/ReturnOrderDetail.tsx:161 +#: src/pages/sales/SalesOrderDetail.tsx:145 msgid "Completed Line Items" msgstr "" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:196 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:197 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:272 msgid "Destination" msgstr "" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:202 -#: src/pages/sales/ReturnOrderDetail.tsx:167 -#: src/pages/sales/SalesOrderDetail.tsx:161 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:203 +#: src/pages/sales/ReturnOrderDetail.tsx:168 +#: src/pages/sales/SalesOrderDetail.tsx:162 msgid "Order Currency" msgstr "" @@ -8150,97 +8248,97 @@ msgstr "" #~ msgid "Created On" #~ msgstr "Created On" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:208 -#: src/pages/sales/ReturnOrderDetail.tsx:174 -#: src/pages/sales/SalesOrderDetail.tsx:167 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:209 +#: src/pages/sales/ReturnOrderDetail.tsx:175 +#: src/pages/sales/SalesOrderDetail.tsx:168 msgid "Total Cost" msgstr "" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:237 -#: src/pages/sales/ReturnOrderDetail.tsx:215 -#: src/pages/sales/SalesOrderDetail.tsx:208 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:238 +#: src/pages/sales/ReturnOrderDetail.tsx:216 +#: src/pages/sales/SalesOrderDetail.tsx:209 msgid "Contact Email" msgstr "" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:245 -#: src/pages/sales/ReturnOrderDetail.tsx:223 -#: src/pages/sales/SalesOrderDetail.tsx:216 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:246 +#: src/pages/sales/ReturnOrderDetail.tsx:224 +#: src/pages/sales/SalesOrderDetail.tsx:217 msgid "Contact Phone" msgstr "" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:278 -#: src/pages/sales/ReturnOrderDetail.tsx:257 -#: src/pages/sales/SalesOrderDetail.tsx:249 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:279 +#: src/pages/sales/ReturnOrderDetail.tsx:258 +#: src/pages/sales/SalesOrderDetail.tsx:250 msgid "Issue Date" msgstr "" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:303 -#: src/pages/sales/ReturnOrderDetail.tsx:281 -#: src/pages/sales/SalesOrderDetail.tsx:272 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:304 +#: src/pages/sales/ReturnOrderDetail.tsx:282 +#: src/pages/sales/SalesOrderDetail.tsx:273 #: src/tables/ColumnRenderers.tsx:510 #: src/tables/build/BuildOrderTable.tsx:137 #: src/tables/part/PartPurchaseOrdersTable.tsx:106 msgid "Completion Date" msgstr "" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:333 -#: src/pages/sales/ReturnOrderDetail.tsx:311 -#: src/pages/sales/SalesOrderDetail.tsx:349 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:334 +#: src/pages/sales/ReturnOrderDetail.tsx:312 +#: src/pages/sales/SalesOrderDetail.tsx:350 msgid "Order Details" msgstr "" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:339 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:348 -#: src/pages/sales/ReturnOrderDetail.tsx:153 -#: src/pages/sales/ReturnOrderDetail.tsx:317 -#: src/pages/sales/ReturnOrderDetail.tsx:326 -#: src/pages/sales/SalesOrderDetail.tsx:355 -#: src/pages/sales/SalesOrderDetail.tsx:364 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:340 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:349 +#: src/pages/sales/ReturnOrderDetail.tsx:154 +#: src/pages/sales/ReturnOrderDetail.tsx:318 +#: src/pages/sales/ReturnOrderDetail.tsx:327 +#: src/pages/sales/SalesOrderDetail.tsx:356 +#: src/pages/sales/SalesOrderDetail.tsx:365 msgid "Line Items" msgstr "" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:363 -#: src/pages/sales/ReturnOrderDetail.tsx:341 -#: src/pages/sales/SalesOrderDetail.tsx:378 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:364 +#: src/pages/sales/ReturnOrderDetail.tsx:342 +#: src/pages/sales/SalesOrderDetail.tsx:379 msgid "Extra Line Items" msgstr "" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:405 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:410 msgid "Issue Purchase Order" msgstr "" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:413 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:418 msgid "Cancel Purchase Order" msgstr "" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:421 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:426 msgid "Hold Purchase Order" msgstr "" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:429 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:434 msgid "Complete Purchase Order" msgstr "" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:485 -#: src/pages/sales/ReturnOrderDetail.tsx:496 -#: src/pages/sales/SalesOrderDetail.tsx:549 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:490 +#: src/pages/sales/ReturnOrderDetail.tsx:501 +#: src/pages/sales/SalesOrderDetail.tsx:554 msgid "Order Actions" msgstr "" -#: src/pages/sales/ReturnOrderDetail.tsx:114 -#: src/pages/sales/SalesOrderDetail.tsx:104 -#: src/pages/sales/SalesOrderShipmentDetail.tsx:134 +#: src/pages/sales/ReturnOrderDetail.tsx:115 +#: src/pages/sales/SalesOrderDetail.tsx:105 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:132 #: src/tables/sales/SalesOrderTable.tsx:141 msgid "Customer Reference" msgstr "" -#: src/pages/sales/ReturnOrderDetail.tsx:195 +#: src/pages/sales/ReturnOrderDetail.tsx:196 msgid "Return Address" msgstr "" -#: src/pages/sales/ReturnOrderDetail.tsx:201 -#: src/pages/sales/SalesOrderDetail.tsx:194 -#: src/pages/sales/SalesOrderShipmentDetail.tsx:181 +#: src/pages/sales/ReturnOrderDetail.tsx:202 +#: src/pages/sales/SalesOrderDetail.tsx:195 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:179 msgid "Not specified" msgstr "" @@ -8248,117 +8346,117 @@ msgstr "" #~ msgid "Order canceled" #~ msgstr "Order canceled" -#: src/pages/sales/ReturnOrderDetail.tsx:389 +#: src/pages/sales/ReturnOrderDetail.tsx:394 msgid "Edit Return Order" msgstr "" -#: src/pages/sales/ReturnOrderDetail.tsx:407 +#: src/pages/sales/ReturnOrderDetail.tsx:412 #: src/tables/sales/ReturnOrderTable.tsx:154 #: src/tables/sales/ReturnOrderTable.tsx:167 msgid "Add Return Order" msgstr "" -#: src/pages/sales/ReturnOrderDetail.tsx:416 +#: src/pages/sales/ReturnOrderDetail.tsx:421 msgid "Issue Return Order" msgstr "" -#: src/pages/sales/ReturnOrderDetail.tsx:424 +#: src/pages/sales/ReturnOrderDetail.tsx:429 msgid "Cancel Return Order" msgstr "" -#: src/pages/sales/ReturnOrderDetail.tsx:432 +#: src/pages/sales/ReturnOrderDetail.tsx:437 msgid "Hold Return Order" msgstr "" -#: src/pages/sales/ReturnOrderDetail.tsx:440 +#: src/pages/sales/ReturnOrderDetail.tsx:445 msgid "Complete Return Order" msgstr "" -#: src/pages/sales/SalesOrderDetail.tsx:153 +#: src/pages/sales/SalesOrderDetail.tsx:154 msgid "Completed Shipments" msgstr "" -#: src/pages/sales/SalesOrderDetail.tsx:188 -#: src/pages/sales/SalesOrderShipmentDetail.tsx:170 +#: src/pages/sales/SalesOrderDetail.tsx:189 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:168 msgid "Shipping Address" msgstr "" -#: src/pages/sales/SalesOrderDetail.tsx:316 +#: src/pages/sales/SalesOrderDetail.tsx:317 msgid "Edit Sales Order" msgstr "" -#: src/pages/sales/SalesOrderDetail.tsx:338 +#: src/pages/sales/SalesOrderDetail.tsx:339 #: src/tables/sales/SalesOrderTable.tsx:108 #: src/tables/sales/SalesOrderTable.tsx:121 msgid "Add Sales Order" msgstr "" -#: src/pages/sales/SalesOrderDetail.tsx:396 +#: src/pages/sales/SalesOrderDetail.tsx:397 #: src/tables/sales/SalesOrderTable.tsx:147 msgid "Shipments" msgstr "" -#: src/pages/sales/SalesOrderDetail.tsx:443 +#: src/pages/sales/SalesOrderDetail.tsx:448 msgid "Issue Sales Order" msgstr "" -#: src/pages/sales/SalesOrderDetail.tsx:451 +#: src/pages/sales/SalesOrderDetail.tsx:456 msgid "Cancel Sales Order" msgstr "" -#: src/pages/sales/SalesOrderDetail.tsx:459 +#: src/pages/sales/SalesOrderDetail.tsx:464 msgid "Hold Sales Order" msgstr "" -#: src/pages/sales/SalesOrderDetail.tsx:467 +#: src/pages/sales/SalesOrderDetail.tsx:472 msgid "Ship Sales Order" msgstr "" -#: src/pages/sales/SalesOrderDetail.tsx:469 +#: src/pages/sales/SalesOrderDetail.tsx:474 msgid "Ship this order?" msgstr "" -#: src/pages/sales/SalesOrderDetail.tsx:470 +#: src/pages/sales/SalesOrderDetail.tsx:475 msgid "Order shipped" msgstr "" -#: src/pages/sales/SalesOrderDetail.tsx:478 +#: src/pages/sales/SalesOrderDetail.tsx:483 msgid "Complete Sales Order" msgstr "" -#: src/pages/sales/SalesOrderDetail.tsx:523 +#: src/pages/sales/SalesOrderDetail.tsx:528 msgid "Ship Order" msgstr "" -#: src/pages/sales/SalesOrderShipmentDetail.tsx:142 -#: src/tables/sales/SalesOrderShipmentTable.tsx:135 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:140 +#: src/tables/sales/SalesOrderShipmentTable.tsx:156 msgid "Shipment Reference" msgstr "" -#: src/pages/sales/SalesOrderShipmentDetail.tsx:148 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:146 msgid "Tracking Number" msgstr "" -#: src/pages/sales/SalesOrderShipmentDetail.tsx:156 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:154 msgid "Invoice Number" msgstr "" -#: src/pages/sales/SalesOrderShipmentDetail.tsx:191 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:189 msgid "Allocated Items" msgstr "" -#: src/pages/sales/SalesOrderShipmentDetail.tsx:196 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:194 msgid "Checked By" msgstr "" -#: src/pages/sales/SalesOrderShipmentDetail.tsx:202 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:200 msgid "Not checked" msgstr "" -#: src/pages/sales/SalesOrderShipmentDetail.tsx:208 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:206 #: src/tables/ColumnRenderers.tsx:518 #: src/tables/sales/SalesOrderAllocationTable.tsx:182 -#: src/tables/sales/SalesOrderShipmentTable.tsx:168 +#: src/tables/sales/SalesOrderShipmentTable.tsx:189 msgid "Shipment Date" msgstr "" @@ -8366,108 +8464,82 @@ msgstr "" #~ msgid "Assigned Items" #~ msgstr "Assigned Items" -#: src/pages/sales/SalesOrderShipmentDetail.tsx:216 -#: src/tables/sales/SalesOrderShipmentTable.tsx:172 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:214 +#: src/tables/sales/SalesOrderShipmentTable.tsx:193 msgid "Delivery Date" msgstr "" -#: src/pages/sales/SalesOrderShipmentDetail.tsx:255 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:253 msgid "Shipment Details" msgstr "" -#: src/pages/sales/SalesOrderShipmentDetail.tsx:294 -#: src/pages/sales/SalesOrderShipmentDetail.tsx:438 -#: src/tables/sales/SalesOrderShipmentTable.tsx:90 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:292 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:406 +#: src/tables/sales/SalesOrderShipmentTable.tsx:97 msgid "Edit Shipment" msgstr "" -#: src/pages/sales/SalesOrderShipmentDetail.tsx:301 -#: src/pages/sales/SalesOrderShipmentDetail.tsx:457 -#: src/tables/sales/SalesOrderShipmentTable.tsx:82 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:299 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:425 +#: src/tables/sales/SalesOrderShipmentTable.tsx:89 msgid "Cancel Shipment" msgstr "" -#: src/pages/sales/SalesOrderShipmentDetail.tsx:314 -#: src/tables/sales/SalesOrderShipmentTable.tsx:98 -#: src/tables/sales/SalesOrderShipmentTable.tsx:193 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:312 +#: src/tables/sales/SalesOrderShipmentTable.tsx:119 +#: src/tables/sales/SalesOrderShipmentTable.tsx:238 msgid "Complete Shipment" msgstr "" -#: src/pages/sales/SalesOrderShipmentDetail.tsx:326 -#: src/pages/sales/SalesOrderShipmentDetail.tsx:328 -msgid "Check Shipment" -msgstr "" - -#: src/pages/sales/SalesOrderShipmentDetail.tsx:329 -msgid "Marking the shipment as checked indicates that you have verified that all items included in this shipment are correct" -msgstr "" - #: src/pages/sales/SalesOrderShipmentDetail.tsx:339 -msgid "Shipment marked as checked" -msgstr "" - -#: src/pages/sales/SalesOrderShipmentDetail.tsx:346 -#: src/pages/sales/SalesOrderShipmentDetail.tsx:348 -msgid "Uncheck Shipment" -msgstr "" - -#: src/pages/sales/SalesOrderShipmentDetail.tsx:349 -msgid "Marking the shipment as unchecked indicates that the shipment requires further verification" -msgstr "" - -#: src/pages/sales/SalesOrderShipmentDetail.tsx:359 -msgid "Shipment marked as unchecked" -msgstr "" - -#: src/pages/sales/SalesOrderShipmentDetail.tsx:371 #: src/tables/part/PartPurchaseOrdersTable.tsx:122 msgid "Pending" msgstr "" -#: src/pages/sales/SalesOrderShipmentDetail.tsx:377 -#: src/tables/sales/SalesOrderShipmentTable.tsx:147 -#: src/tables/sales/SalesOrderShipmentTable.tsx:254 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:345 +#: src/tables/sales/SalesOrderShipmentTable.tsx:168 +#: src/tables/sales/SalesOrderShipmentTable.tsx:299 msgid "Checked" msgstr "" -#: src/pages/sales/SalesOrderShipmentDetail.tsx:383 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:351 msgid "Not Checked" msgstr "" -#: src/pages/sales/SalesOrderShipmentDetail.tsx:389 -#: src/tables/sales/SalesOrderShipmentTable.tsx:154 -#: src/tables/sales/SalesOrderShipmentTable.tsx:259 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:357 +#: src/tables/sales/SalesOrderShipmentTable.tsx:175 +#: src/tables/sales/SalesOrderShipmentTable.tsx:304 msgid "Shipped" msgstr "" -#: src/pages/sales/SalesOrderShipmentDetail.tsx:395 -#: src/tables/sales/SalesOrderShipmentTable.tsx:161 -#: src/tables/sales/SalesOrderShipmentTable.tsx:264 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:363 +#: src/tables/sales/SalesOrderShipmentTable.tsx:182 +#: src/tables/sales/SalesOrderShipmentTable.tsx:309 #: src/tables/settings/EmailTable.tsx:31 msgid "Delivered" msgstr "" -#: src/pages/sales/SalesOrderShipmentDetail.tsx:410 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:378 msgid "Send Shipment" msgstr "" -#: src/pages/sales/SalesOrderShipmentDetail.tsx:433 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:401 msgid "Shipment Actions" msgstr "" -#: src/pages/sales/SalesOrderShipmentDetail.tsx:442 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:410 msgid "Check" msgstr "" -#: src/pages/sales/SalesOrderShipmentDetail.tsx:443 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:411 msgid "Mark shipment as checked" msgstr "" -#: src/pages/sales/SalesOrderShipmentDetail.tsx:449 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:417 msgid "Uncheck" msgstr "" -#: src/pages/sales/SalesOrderShipmentDetail.tsx:450 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:418 msgid "Mark shipment as unchecked" msgstr "" @@ -8775,13 +8847,6 @@ msgstr "" msgid "Part is not active" msgstr "" -#: src/tables/ColumnRenderers.tsx:73 -#: src/tables/bom/BomTable.tsx:657 -#: src/tables/part/PartParameterTable.tsx:227 -#: src/tables/part/PartTestTemplateTable.tsx:258 -msgid "Part is Locked" -msgstr "" - #: src/tables/ColumnRenderers.tsx:78 msgid "You are subscribed to notifications for this part" msgstr "" @@ -9219,13 +9284,13 @@ msgstr "" #~ msgstr "Show asssmbled items" #: src/tables/bom/BomTable.tsx:315 -#: src/tables/build/BuildLineTable.tsx:276 +#: src/tables/build/BuildLineTable.tsx:277 #: src/tables/part/PartTable.tsx:145 msgid "External stock" msgstr "" #: src/tables/bom/BomTable.tsx:323 -#: src/tables/build/BuildLineTable.tsx:239 +#: src/tables/build/BuildLineTable.tsx:240 msgid "Includes substitute stock" msgstr "" @@ -9234,7 +9299,7 @@ msgstr "" #~ msgstr "Edit Bom Item" #: src/tables/bom/BomTable.tsx:332 -#: src/tables/build/BuildLineTable.tsx:249 +#: src/tables/build/BuildLineTable.tsx:250 #: src/tables/sales/SalesOrderLineItemTable.tsx:166 msgid "Includes variant stock" msgstr "" @@ -9272,8 +9337,8 @@ msgid "Stock Information" msgstr "" #: src/tables/bom/BomTable.tsx:399 -#: src/tables/build/BuildLineTable.tsx:496 -#: src/tables/build/BuildLineTable.tsx:537 +#: src/tables/build/BuildLineTable.tsx:497 +#: src/tables/build/BuildLineTable.tsx:538 msgid "Consumable item" msgstr "" @@ -9282,7 +9347,7 @@ msgid "No available stock" msgstr "" #: src/tables/bom/BomTable.tsx:420 -#: src/tables/build/BuildLineTable.tsx:213 +#: src/tables/build/BuildLineTable.tsx:214 msgid "Show testable items" msgstr "" @@ -9291,7 +9356,7 @@ msgid "Show trackable items" msgstr "" #: src/tables/bom/BomTable.tsx:430 -#: src/tables/build/BuildLineTable.tsx:208 +#: src/tables/build/BuildLineTable.tsx:209 msgid "Show assembled items" msgstr "" @@ -9335,7 +9400,7 @@ msgstr "" #: src/tables/bom/BomTable.tsx:464 #: src/tables/bom/UsedInTable.tsx:85 -#: src/tables/build/BuildLineTable.tsx:202 +#: src/tables/build/BuildLineTable.tsx:203 msgid "Optional" msgstr "" @@ -9345,7 +9410,7 @@ msgid "Show optional items" msgstr "" #: src/tables/bom/BomTable.tsx:469 -#: src/tables/build/BuildLineTable.tsx:197 +#: src/tables/build/BuildLineTable.tsx:198 msgid "Consumable" msgstr "" @@ -9420,6 +9485,7 @@ msgid "Add a single BOM item" msgstr "" #: src/tables/bom/BomTable.tsx:637 +#: src/tables/general/ParameterTable.tsx:206 #: src/tables/part/PartTable.tsx:546 msgid "Import from File" msgstr "" @@ -9433,8 +9499,8 @@ msgid "Bill of materials cannot be edited, as the part is locked" msgstr "לא ניתן לערוך את כתב החומרים, מכיוון שהפריט נעול" #: src/tables/bom/UsedInTable.tsx:34 -#: src/tables/build/BuildLineTable.tsx:207 -#: src/tables/part/ParametricPartTable.tsx:364 +#: src/tables/build/BuildLineTable.tsx:208 +#: src/tables/part/ParametricPartTable.tsx:29 #: src/tables/part/PartBuildAllocationsTable.tsx:60 #: src/tables/part/PartTable.tsx:209 #: src/tables/stock/StockItemTable.tsx:333 @@ -9455,11 +9521,11 @@ msgstr "ניתן למעקב" msgid "Show trackable assemblies" msgstr "" -#: src/tables/build/BuildAllocatedStockTable.tsx:67 +#: src/tables/build/BuildAllocatedStockTable.tsx:64 msgid "Allocated to Output" msgstr "" -#: src/tables/build/BuildAllocatedStockTable.tsx:68 +#: src/tables/build/BuildAllocatedStockTable.tsx:65 msgid "Show items allocated to a build output" msgstr "הצג מכלולים שניתנים למעקב" @@ -9472,50 +9538,68 @@ msgstr "הצג מכלולים שניתנים למעקב" #~ msgid "Include orders for part variants" #~ msgstr "Include orders for part variants" -#: src/tables/build/BuildAllocatedStockTable.tsx:97 +#: src/tables/build/BuildAllocatedStockTable.tsx:94 #: src/tables/part/PartBuildAllocationsTable.tsx:84 #: src/tables/part/PartPurchaseOrdersTable.tsx:132 #: src/tables/part/PartSalesAllocationsTable.tsx:69 #: src/tables/sales/SalesOrderAllocationTable.tsx:122 -#: src/tables/sales/SalesOrderShipmentTable.tsx:130 +#: src/tables/sales/SalesOrderShipmentTable.tsx:151 msgid "Order Status" msgstr "" +#: src/tables/build/BuildAllocatedStockTable.tsx:164 +#: src/tables/build/BuildLineTable.tsx:651 +msgid "Edit Stock Allocation" +msgstr "" + #: src/tables/build/BuildAllocatedStockTable.tsx:164 #~ msgid "Edit Build Item" #~ msgstr "Edit Build Item" -#: src/tables/build/BuildAllocatedStockTable.tsx:167 -#: src/tables/build/BuildLineTable.tsx:650 -msgid "Edit Stock Allocation" -msgstr "" - #: src/tables/build/BuildAllocatedStockTable.tsx:174 #~ msgid "Delete Build Item" #~ msgstr "Delete Build Item" -#: src/tables/build/BuildAllocatedStockTable.tsx:180 -#: src/tables/build/BuildLineTable.tsx:663 -msgid "Delete Stock Allocation" +#: src/tables/build/BuildAllocatedStockTable.tsx:177 +#: src/tables/build/BuildLineTable.tsx:664 +#: src/tables/sales/SalesOrderAllocationTable.tsx:218 +msgid "Remove Allocated Stock" msgstr "" -#: src/tables/build/BuildAllocatedStockTable.tsx:239 +#: src/tables/build/BuildAllocatedStockTable.tsx:180 +#: src/tables/build/BuildLineTable.tsx:663 +#~ msgid "Delete Stock Allocation" +#~ msgstr "Delete Stock Allocation" + +#: src/tables/build/BuildAllocatedStockTable.tsx:182 +#: src/tables/build/BuildLineTable.tsx:669 +#: src/tables/sales/SalesOrderAllocationTable.tsx:221 +msgid "Are you sure you want to remove this allocated stock from the order?" +msgstr "" + +#: src/tables/build/BuildAllocatedStockTable.tsx:242 msgid "Consume" msgstr "" +#: src/tables/build/BuildAllocatedStockTable.tsx:259 +#: src/tables/build/BuildLineTable.tsx:112 +#: src/tables/sales/SalesOrderAllocationTable.tsx:248 +msgid "Remove allocated stock" +msgstr "" + #: src/tables/build/BuildLineTable.tsx:59 #~ msgid "Show lines with available stock" #~ msgstr "Show lines with available stock" -#: src/tables/build/BuildLineTable.tsx:120 +#: src/tables/build/BuildLineTable.tsx:121 msgid "View Stock Item" msgstr "" -#: src/tables/build/BuildLineTable.tsx:183 +#: src/tables/build/BuildLineTable.tsx:184 msgid "Show fully allocated lines" msgstr "" -#: src/tables/build/BuildLineTable.tsx:188 +#: src/tables/build/BuildLineTable.tsx:189 msgid "Show fully consumed lines" msgstr "" @@ -9523,124 +9607,124 @@ msgstr "" #~ msgid "Show allocated lines" #~ msgstr "Show allocated lines" -#: src/tables/build/BuildLineTable.tsx:193 +#: src/tables/build/BuildLineTable.tsx:194 msgid "Show items with sufficient available stock" msgstr "" -#: src/tables/build/BuildLineTable.tsx:198 +#: src/tables/build/BuildLineTable.tsx:199 msgid "Show consumable lines" msgstr "" -#: src/tables/build/BuildLineTable.tsx:203 +#: src/tables/build/BuildLineTable.tsx:204 msgid "Show optional lines" msgstr "" -#: src/tables/build/BuildLineTable.tsx:212 +#: src/tables/build/BuildLineTable.tsx:213 #: src/tables/part/PartTable.tsx:233 msgid "Testable" msgstr "" -#: src/tables/build/BuildLineTable.tsx:217 +#: src/tables/build/BuildLineTable.tsx:218 #: src/tables/stock/StockItemTable.tsx:388 msgid "Tracked" msgstr "" -#: src/tables/build/BuildLineTable.tsx:218 +#: src/tables/build/BuildLineTable.tsx:219 msgid "Show tracked lines" msgstr "" -#: src/tables/build/BuildLineTable.tsx:223 +#: src/tables/build/BuildLineTable.tsx:224 msgid "Show items with stock on order" msgstr "" -#: src/tables/build/BuildLineTable.tsx:258 +#: src/tables/build/BuildLineTable.tsx:259 #: src/tables/sales/SalesOrderLineItemTable.tsx:172 msgid "In production" msgstr "" -#: src/tables/build/BuildLineTable.tsx:286 +#: src/tables/build/BuildLineTable.tsx:287 msgid "Insufficient stock" msgstr "" -#: src/tables/build/BuildLineTable.tsx:302 +#: src/tables/build/BuildLineTable.tsx:303 #: src/tables/sales/SalesOrderLineItemTable.tsx:160 #: src/tables/stock/StockItemTable.tsx:191 msgid "No stock available" msgstr "" -#: src/tables/build/BuildLineTable.tsx:375 +#: src/tables/build/BuildLineTable.tsx:376 msgid "Gets Inherited" msgstr "" -#: src/tables/build/BuildLineTable.tsx:388 +#: src/tables/build/BuildLineTable.tsx:389 msgid "Unit Quantity" msgstr "" -#: src/tables/build/BuildLineTable.tsx:415 +#: src/tables/build/BuildLineTable.tsx:416 msgid "Setup Quantity" msgstr "" -#: src/tables/build/BuildLineTable.tsx:424 +#: src/tables/build/BuildLineTable.tsx:425 msgid "Attrition" msgstr "" -#: src/tables/build/BuildLineTable.tsx:432 +#: src/tables/build/BuildLineTable.tsx:433 msgid "Rounding Multiple" msgstr "" -#: src/tables/build/BuildLineTable.tsx:441 +#: src/tables/build/BuildLineTable.tsx:442 msgid "BOM Information" msgstr "" -#: src/tables/build/BuildLineTable.tsx:515 +#: src/tables/build/BuildLineTable.tsx:516 #: src/tables/part/PartBuildAllocationsTable.tsx:102 msgid "Fully allocated" msgstr "" -#: src/tables/build/BuildLineTable.tsx:563 +#: src/tables/build/BuildLineTable.tsx:564 #: src/tables/sales/SalesOrderLineItemTable.tsx:311 msgid "Create Build Order" msgstr "" -#: src/tables/build/BuildLineTable.tsx:592 +#: src/tables/build/BuildLineTable.tsx:593 msgid "Auto allocation in progress" msgstr "" -#: src/tables/build/BuildLineTable.tsx:595 -#: src/tables/build/BuildLineTable.tsx:802 +#: src/tables/build/BuildLineTable.tsx:596 +#: src/tables/build/BuildLineTable.tsx:809 msgid "Auto Allocate Stock" msgstr "" -#: src/tables/build/BuildLineTable.tsx:596 +#: src/tables/build/BuildLineTable.tsx:597 msgid "Automatically allocate stock to this build according to the selected options" msgstr "" -#: src/tables/build/BuildLineTable.tsx:616 -#: src/tables/build/BuildLineTable.tsx:630 -#: src/tables/build/BuildLineTable.tsx:751 -#: src/tables/build/BuildLineTable.tsx:852 +#: src/tables/build/BuildLineTable.tsx:617 +#: src/tables/build/BuildLineTable.tsx:631 +#: src/tables/build/BuildLineTable.tsx:758 +#: src/tables/build/BuildLineTable.tsx:859 #: src/tables/build/BuildOutputTable.tsx:355 #: src/tables/build/BuildOutputTable.tsx:360 msgid "Deallocate Stock" msgstr "" -#: src/tables/build/BuildLineTable.tsx:632 +#: src/tables/build/BuildLineTable.tsx:633 msgid "Deallocate all untracked stock for this build order" msgstr "" -#: src/tables/build/BuildLineTable.tsx:634 +#: src/tables/build/BuildLineTable.tsx:635 msgid "Deallocate stock from the selected line item" msgstr "" -#: src/tables/build/BuildLineTable.tsx:638 +#: src/tables/build/BuildLineTable.tsx:639 msgid "Stock has been deallocated" msgstr "" -#: src/tables/build/BuildLineTable.tsx:771 +#: src/tables/build/BuildLineTable.tsx:778 msgid "Build Stock" msgstr "" -#: src/tables/build/BuildLineTable.tsx:784 +#: src/tables/build/BuildLineTable.tsx:791 #: src/tables/sales/SalesOrderLineItemTable.tsx:487 msgid "View Part" msgstr "" @@ -9739,7 +9823,7 @@ msgid "Serialize Build Output" msgstr "" #: src/tables/build/BuildOutputTable.tsx:405 -#: src/tables/part/PartTestResultTable.tsx:310 +#: src/tables/part/PartTestResultTable.tsx:318 #: src/tables/stock/StockItemTable.tsx:328 msgid "Filter by stock status" msgstr "" @@ -9964,8 +10048,8 @@ msgid "View Item" msgstr "" #: src/tables/general/ExtraLineItemTable.tsx:95 -#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:299 -#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:403 +#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:300 +#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:405 #: src/tables/sales/ReturnOrderLineItemTable.tsx:83 #: src/tables/sales/ReturnOrderLineItemTable.tsx:187 #: src/tables/sales/SalesOrderLineItemTable.tsx:252 @@ -9974,14 +10058,14 @@ msgid "Add Line Item" msgstr "" #: src/tables/general/ExtraLineItemTable.tsx:108 -#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:320 +#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:322 #: src/tables/sales/ReturnOrderLineItemTable.tsx:96 #: src/tables/sales/SalesOrderLineItemTable.tsx:271 msgid "Edit Line Item" msgstr "" #: src/tables/general/ExtraLineItemTable.tsx:117 -#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:329 +#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:331 #: src/tables/sales/ReturnOrderLineItemTable.tsx:105 #: src/tables/sales/SalesOrderLineItemTable.tsx:280 msgid "Delete Line Item" @@ -9991,6 +10075,137 @@ msgstr "" msgid "Add Extra Line Item" msgstr "" +#: src/tables/general/ParameterTable.tsx:88 +msgid "Internal Units" +msgstr "" + +#: src/tables/general/ParameterTable.tsx:108 +#: src/tables/general/ParameterTable.tsx:123 +msgid "Updated By" +msgstr "" + +#: src/tables/general/ParameterTable.tsx:118 +msgid "Show parameters for enabled templates" +msgstr "" + +#: src/tables/general/ParameterTable.tsx:124 +msgid "Filter by user who last updated the parameter" +msgstr "" + +#: src/tables/general/ParameterTable.tsx:154 +msgid "Import Parameters" +msgstr "" + +#: src/tables/general/ParameterTable.tsx:164 +#: src/tables/general/ParametricDataTable.tsx:261 +#: src/tables/general/ParametricDataTable.tsx:392 +msgid "Add Parameter" +msgstr "" + +#: src/tables/general/ParameterTable.tsx:175 +#: src/tables/general/ParameterTable.tsx:222 +#: src/tables/general/ParametricDataTable.tsx:285 +msgid "Edit Parameter" +msgstr "" + +#: src/tables/general/ParameterTable.tsx:183 +#: src/tables/general/ParameterTable.tsx:230 +msgid "Delete Parameter" +msgstr "" + +#: src/tables/general/ParameterTable.tsx:191 +msgid "Add Parameters" +msgstr "" + +#: src/tables/general/ParameterTable.tsx:197 +msgid "Create Parameter" +msgstr "" + +#: src/tables/general/ParameterTable.tsx:199 +msgid "Create a new parameter" +msgstr "" + +#: src/tables/general/ParameterTable.tsx:208 +msgid "Import parameters from a file" +msgstr "" + +#: src/tables/general/ParameterTemplateTable.tsx:48 +#: src/tables/general/ParameterTemplateTable.tsx:197 +msgid "Add Parameter Template" +msgstr "" + +#: src/tables/general/ParameterTemplateTable.tsx:64 +msgid "Duplicate Parameter Template" +msgstr "" + +#: src/tables/general/ParameterTemplateTable.tsx:78 +msgid "Delete Parameter Template" +msgstr "" + +#: src/tables/general/ParameterTemplateTable.tsx:85 +msgid "Edit Parameter Template" +msgstr "" + +#: src/tables/general/ParameterTemplateTable.tsx:138 +msgid "Checkbox" +msgstr "" + +#: src/tables/general/ParameterTemplateTable.tsx:139 +msgid "Show checkbox templates" +msgstr "" + +#: src/tables/general/ParameterTemplateTable.tsx:143 +msgid "Has choices" +msgstr "" + +#: src/tables/general/ParameterTemplateTable.tsx:144 +msgid "Show templates with choices" +msgstr "" + +#: src/tables/general/ParameterTemplateTable.tsx:148 +#: src/tables/part/PartTable.tsx:245 +msgid "Has Units" +msgstr "" + +#: src/tables/general/ParameterTemplateTable.tsx:149 +msgid "Show templates with units" +msgstr "" + +#: src/tables/general/ParameterTemplateTable.tsx:154 +msgid "Show enabled templates" +msgstr "" + +#: src/tables/general/ParameterTemplateTable.tsx:158 +#: src/tables/settings/ImportSessionTable.tsx:111 +#: src/tables/settings/TemplateTable.tsx:368 +msgid "Model Type" +msgstr "" + +#: src/tables/general/ParameterTemplateTable.tsx:159 +msgid "Filter by model type" +msgstr "" + +#: src/tables/general/ParametricDataTable.tsx:79 +msgid "Click to edit" +msgstr "" + +#: src/tables/general/ParametricDataTableFilters.tsx:36 +msgid "True" +msgstr "" + +#: src/tables/general/ParametricDataTableFilters.tsx:37 +msgid "False" +msgstr "" + +#: src/tables/general/ParametricDataTableFilters.tsx:47 +#: src/tables/general/ParametricDataTableFilters.tsx:80 +msgid "Select a choice" +msgstr "" + +#: src/tables/general/ParametricDataTableFilters.tsx:100 +msgid "Enter a value" +msgstr "" + #: src/tables/machine/MachineListTable.tsx:133 msgid "Machine restarted" msgstr "" @@ -10071,7 +10286,7 @@ msgid "Initialized" msgstr "" #: src/tables/machine/MachineListTable.tsx:410 -#: src/tables/machine/MachineTypeTable.tsx:307 +#: src/tables/machine/MachineTypeTable.tsx:305 msgid "No errors reported" msgstr "" @@ -10132,15 +10347,15 @@ msgstr "" #~ msgid "Machine type information" #~ msgstr "Machine type information" -#: src/tables/machine/MachineTypeTable.tsx:128 +#: src/tables/machine/MachineTypeTable.tsx:126 msgid "Not Found" msgstr "" -#: src/tables/machine/MachineTypeTable.tsx:131 +#: src/tables/machine/MachineTypeTable.tsx:129 msgid "Machine type not found." msgstr "" -#: src/tables/machine/MachineTypeTable.tsx:141 +#: src/tables/machine/MachineTypeTable.tsx:139 msgid "Machine Type Information" msgstr "" @@ -10148,34 +10363,34 @@ msgstr "" #~ msgid "Available drivers" #~ msgstr "Available drivers" -#: src/tables/machine/MachineTypeTable.tsx:156 -#: src/tables/machine/MachineTypeTable.tsx:255 +#: src/tables/machine/MachineTypeTable.tsx:154 +#: src/tables/machine/MachineTypeTable.tsx:253 msgid "Slug" msgstr "" -#: src/tables/machine/MachineTypeTable.tsx:167 -#: src/tables/machine/MachineTypeTable.tsx:276 +#: src/tables/machine/MachineTypeTable.tsx:165 +#: src/tables/machine/MachineTypeTable.tsx:274 msgid "Provider plugin" msgstr "" -#: src/tables/machine/MachineTypeTable.tsx:179 -#: src/tables/machine/MachineTypeTable.tsx:288 +#: src/tables/machine/MachineTypeTable.tsx:177 +#: src/tables/machine/MachineTypeTable.tsx:286 msgid "Provider file" msgstr "" -#: src/tables/machine/MachineTypeTable.tsx:194 +#: src/tables/machine/MachineTypeTable.tsx:192 msgid "Available Drivers" msgstr "" -#: src/tables/machine/MachineTypeTable.tsx:234 +#: src/tables/machine/MachineTypeTable.tsx:232 msgid "Machine driver not found." msgstr "" -#: src/tables/machine/MachineTypeTable.tsx:242 +#: src/tables/machine/MachineTypeTable.tsx:240 msgid "Machine driver information" msgstr "" -#: src/tables/machine/MachineTypeTable.tsx:262 +#: src/tables/machine/MachineTypeTable.tsx:260 msgid "Machine type" msgstr "" @@ -10187,15 +10402,15 @@ msgstr "" #~ msgid "Machine driver detail" #~ msgstr "Machine driver detail" -#: src/tables/machine/MachineTypeTable.tsx:362 +#: src/tables/machine/MachineTypeTable.tsx:360 msgid "Builtin type" msgstr "" -#: src/tables/machine/MachineTypeTable.tsx:371 +#: src/tables/machine/MachineTypeTable.tsx:369 msgid "Machine Type Detail" msgstr "" -#: src/tables/machine/MachineTypeTable.tsx:381 +#: src/tables/machine/MachineTypeTable.tsx:379 msgid "Machine Driver Detail" msgstr "" @@ -10213,8 +10428,16 @@ msgstr "הודעה" msgid "Message" msgstr "" -#: src/tables/part/ParametricPartTable.tsx:78 -msgid "Click to edit" +#: src/tables/part/ParametricPartTable.tsx:20 +msgid "Show active parts" +msgstr "" + +#: src/tables/part/ParametricPartTable.tsx:25 +msgid "Show locked parts" +msgstr "" + +#: src/tables/part/ParametricPartTable.tsx:30 +msgid "Show assembly parts" msgstr "" #: src/tables/part/ParametricPartTable.tsx:82 @@ -10222,43 +10445,14 @@ msgstr "" #~ msgstr "Edit parameter" #: src/tables/part/ParametricPartTable.tsx:244 -msgid "Add Part Parameter" -msgstr "" +#~ msgid "Add Part Parameter" +#~ msgstr "Add Part Parameter" #: src/tables/part/ParametricPartTable.tsx:258 #: src/tables/part/PartParameterTable.tsx:164 #: src/tables/part/PartParameterTable.tsx:187 -msgid "Edit Part Parameter" -msgstr "" - -#: src/tables/part/ParametricPartTable.tsx:355 -msgid "Show active parts" -msgstr "" - -#: src/tables/part/ParametricPartTable.tsx:360 -msgid "Show locked parts" -msgstr "" - -#: src/tables/part/ParametricPartTable.tsx:365 -msgid "Show assembly parts" -msgstr "" - -#: src/tables/part/ParametricPartTableFilters.tsx:36 -msgid "True" -msgstr "" - -#: src/tables/part/ParametricPartTableFilters.tsx:37 -msgid "False" -msgstr "" - -#: src/tables/part/ParametricPartTableFilters.tsx:47 -#: src/tables/part/ParametricPartTableFilters.tsx:80 -msgid "Select a choice" -msgstr "" - -#: src/tables/part/ParametricPartTableFilters.tsx:100 -msgid "Enter a value" -msgstr "" +#~ msgid "Edit Part Parameter" +#~ msgstr "Edit Part Parameter" #: src/tables/part/PartBuildAllocationsTable.tsx:64 msgid "Assembly IPN" @@ -10273,7 +10467,7 @@ msgid "Required Stock" msgstr "" #: src/tables/part/PartBuildAllocationsTable.tsx:124 -#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:381 +#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:383 msgid "View Build Order" msgstr "" @@ -10332,85 +10526,22 @@ msgstr "" msgid "Delete Category Parameter" msgstr "" -#: src/tables/part/PartCategoryTemplateTable.tsx:87 -msgid "Parameter Template" -msgstr "" - #: src/tables/part/PartCategoryTemplateTable.tsx:93 #~ msgid "[{0}]" #~ msgstr "[{0}]" -#: src/tables/part/PartParameterTable.tsx:108 -msgid "Internal Units" -msgstr "" - -#: src/tables/part/PartParameterTable.tsx:128 -#: src/tables/part/PartParameterTable.tsx:138 -msgid "Updated By" -msgstr "" - -#: src/tables/part/PartParameterTable.tsx:139 -msgid "Filter by user who last updated the parameter" -msgstr "" - #: src/tables/part/PartParameterTable.tsx:148 -msgid "New Part Parameter" -msgstr "" +#~ msgid "New Part Parameter" +#~ msgstr "New Part Parameter" #: src/tables/part/PartParameterTable.tsx:173 #: src/tables/part/PartParameterTable.tsx:195 -msgid "Delete Part Parameter" -msgstr "" +#~ msgid "Delete Part Parameter" +#~ msgstr "Delete Part Parameter" #: src/tables/part/PartParameterTable.tsx:213 -msgid "Add parameter" -msgstr "" - -#: src/tables/part/PartParameterTable.tsx:232 -msgid "Part parameters cannot be edited, as the part is locked" -msgstr "" - -#: src/tables/part/PartParameterTemplateTable.tsx:36 -msgid "Checkbox" -msgstr "" - -#: src/tables/part/PartParameterTemplateTable.tsx:37 -msgid "Show checkbox templates" -msgstr "" - -#: src/tables/part/PartParameterTemplateTable.tsx:41 -msgid "Has choices" -msgstr "" - -#: src/tables/part/PartParameterTemplateTable.tsx:42 -msgid "Show templates with choices" -msgstr "" - -#: src/tables/part/PartParameterTemplateTable.tsx:46 -#: src/tables/part/PartTable.tsx:245 -msgid "Has Units" -msgstr "" - -#: src/tables/part/PartParameterTemplateTable.tsx:47 -msgid "Show templates with units" -msgstr "" - -#: src/tables/part/PartParameterTemplateTable.tsx:91 -#: src/tables/part/PartParameterTemplateTable.tsx:166 -msgid "Add Parameter Template" -msgstr "" - -#: src/tables/part/PartParameterTemplateTable.tsx:105 -msgid "Duplicate Parameter Template" -msgstr "" - -#: src/tables/part/PartParameterTemplateTable.tsx:117 -msgid "Edit Parameter Template" -msgstr "" - -#: src/tables/part/PartParameterTemplateTable.tsx:128 -msgid "Delete Parameter Template" -msgstr "" +#~ msgid "Add parameter" +#~ msgstr "Add parameter" #: src/tables/part/PartParameterTemplateTable.tsx:141 #~ msgid "Add parameter template" @@ -10430,7 +10561,7 @@ msgid "Show received items" msgstr "" #: src/tables/part/PartSalesAllocationsTable.tsx:90 -#: src/tables/sales/SalesOrderShipmentTable.tsx:218 +#: src/tables/sales/SalesOrderShipmentTable.tsx:263 msgid "View Sales Order" msgstr "" @@ -10617,8 +10748,8 @@ msgstr "" #: src/tables/part/PartTestResultTable.tsx:103 #: src/tables/part/PartTestResultTable.tsx:181 -#: src/tables/part/PartTestResultTable.tsx:320 -#: src/tables/part/PartTestResultTable.tsx:334 +#: src/tables/part/PartTestResultTable.tsx:328 +#: src/tables/part/PartTestResultTable.tsx:342 #: src/tables/stock/StockItemTestResultTable.tsx:296 #: src/tables/stock/StockItemTestResultTable.tsx:368 #: src/tables/stock/StockItemTestResultTable.tsx:429 @@ -10643,7 +10774,7 @@ msgstr "" msgid "No Result" msgstr "" -#: src/tables/part/PartTestResultTable.tsx:298 +#: src/tables/part/PartTestResultTable.tsx:306 msgid "Show build outputs currently in production" msgstr "" @@ -11013,36 +11144,45 @@ msgstr "" #~ msgid "Parameter updated" #~ msgstr "Parameter updated" -#: src/tables/purchasing/ManufacturerPartParameterTable.tsx:63 -#: src/tables/purchasing/ManufacturerPartParameterTable.tsx:112 -msgid "Add Parameter" -msgstr "" - #: src/tables/purchasing/ManufacturerPartParameterTable.tsx:73 #~ msgid "Parameter deleted" #~ msgstr "Parameter deleted" -#: src/tables/purchasing/ManufacturerPartParameterTable.tsx:74 -msgid "Edit Parameter" -msgstr "" - #: src/tables/purchasing/ManufacturerPartParameterTable.tsx:74 #~ msgid "Are you sure you want to delete this parameter?" #~ msgstr "Are you sure you want to delete this parameter?" -#: src/tables/purchasing/ManufacturerPartParameterTable.tsx:82 -msgid "Delete Parameter" +#: src/tables/purchasing/ManufacturerPartParametricTable.tsx:34 +#: src/tables/purchasing/ManufacturerPartTable.tsx:82 +#: src/tables/purchasing/SupplierPartTable.tsx:99 +msgid "MPN" +msgstr "" + +#: src/tables/purchasing/ManufacturerPartParametricTable.tsx:44 +#: src/tables/purchasing/ManufacturerPartTable.tsx:134 +#: src/tables/purchasing/SupplierPartTable.tsx:220 +msgid "Active Part" +msgstr "" + +#: src/tables/purchasing/ManufacturerPartParametricTable.tsx:45 +#: src/tables/purchasing/ManufacturerPartTable.tsx:135 +msgid "Show manufacturer parts for active internal parts." +msgstr "" + +#: src/tables/purchasing/ManufacturerPartParametricTable.tsx:50 +#: src/tables/purchasing/ManufacturerPartTable.tsx:140 +msgid "Active Manufacturer" +msgstr "" + +#: src/tables/purchasing/ManufacturerPartParametricTable.tsx:51 +#: src/tables/purchasing/ManufacturerPartTable.tsx:142 +msgid "Show manufacturer parts for active manufacturers." msgstr "" #: src/tables/purchasing/ManufacturerPartTable.tsx:63 #~ msgid "Create Manufacturer Part" #~ msgstr "Create Manufacturer Part" -#: src/tables/purchasing/ManufacturerPartTable.tsx:82 -#: src/tables/purchasing/SupplierPartTable.tsx:99 -msgid "MPN" -msgstr "" - #: src/tables/purchasing/ManufacturerPartTable.tsx:100 #~ msgid "Manufacturer part updated" #~ msgstr "Manufacturer part updated" @@ -11055,25 +11195,8 @@ msgstr "" #~ msgid "Are you sure you want to remove this manufacturer part?" #~ msgstr "Are you sure you want to remove this manufacturer part?" -#: src/tables/purchasing/ManufacturerPartTable.tsx:134 -#: src/tables/purchasing/SupplierPartTable.tsx:220 -msgid "Active Part" -msgstr "" - -#: src/tables/purchasing/ManufacturerPartTable.tsx:135 -msgid "Show manufacturer parts for active internal parts." -msgstr "" - -#: src/tables/purchasing/ManufacturerPartTable.tsx:140 -msgid "Active Manufacturer" -msgstr "" - -#: src/tables/purchasing/ManufacturerPartTable.tsx:142 -msgid "Show manufacturer parts for active manufacturers." -msgstr "" - #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:115 -#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:397 +#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:399 msgid "Import Line Items" msgstr "" @@ -11099,11 +11222,11 @@ msgstr "" #~ msgid "Add line item" #~ msgstr "Add line item" -#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:350 +#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:352 msgid "Receive line item" msgstr "" -#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:414 +#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:416 msgid "Receive items" msgstr "" @@ -11201,25 +11324,25 @@ msgid "Not shipped" msgstr "" #: src/tables/sales/SalesOrderAllocationTable.tsx:211 -#: src/tables/sales/SalesOrderAllocationTable.tsx:229 +#: src/tables/sales/SalesOrderAllocationTable.tsx:235 msgid "Edit Allocation" msgstr "" #: src/tables/sales/SalesOrderAllocationTable.tsx:218 #: src/tables/sales/SalesOrderAllocationTable.tsx:241 -msgid "Delete Allocation" -msgstr "" +#~ msgid "Delete Allocation" +#~ msgstr "Delete Allocation" -#: src/tables/sales/SalesOrderAllocationTable.tsx:252 -#: src/tables/sales/SalesOrderAllocationTable.tsx:253 +#: src/tables/sales/SalesOrderAllocationTable.tsx:261 +#: src/tables/sales/SalesOrderAllocationTable.tsx:262 msgid "View Shipment" msgstr "" -#: src/tables/sales/SalesOrderAllocationTable.tsx:308 +#: src/tables/sales/SalesOrderAllocationTable.tsx:317 msgid "Assign to Shipment" msgstr "" -#: src/tables/sales/SalesOrderAllocationTable.tsx:324 +#: src/tables/sales/SalesOrderAllocationTable.tsx:333 msgid "Assign to shipment" msgstr "" @@ -11259,35 +11382,35 @@ msgstr "" #~ msgid "Delete Shipment" #~ msgstr "Delete Shipment" -#: src/tables/sales/SalesOrderShipmentTable.tsx:72 +#: src/tables/sales/SalesOrderShipmentTable.tsx:79 msgid "Create Shipment" msgstr "" -#: src/tables/sales/SalesOrderShipmentTable.tsx:143 +#: src/tables/sales/SalesOrderShipmentTable.tsx:164 msgid "Items" msgstr "" -#: src/tables/sales/SalesOrderShipmentTable.tsx:203 +#: src/tables/sales/SalesOrderShipmentTable.tsx:248 msgid "Edit shipment" msgstr "" -#: src/tables/sales/SalesOrderShipmentTable.tsx:211 +#: src/tables/sales/SalesOrderShipmentTable.tsx:256 msgid "Cancel shipment" msgstr "" -#: src/tables/sales/SalesOrderShipmentTable.tsx:241 +#: src/tables/sales/SalesOrderShipmentTable.tsx:286 msgid "Add shipment" msgstr "" -#: src/tables/sales/SalesOrderShipmentTable.tsx:255 +#: src/tables/sales/SalesOrderShipmentTable.tsx:300 msgid "Show shipments which have been checked" msgstr "" -#: src/tables/sales/SalesOrderShipmentTable.tsx:260 +#: src/tables/sales/SalesOrderShipmentTable.tsx:305 msgid "Show shipments which have been shipped" msgstr "" -#: src/tables/sales/SalesOrderShipmentTable.tsx:265 +#: src/tables/sales/SalesOrderShipmentTable.tsx:310 msgid "Show shipments which have been delivered" msgstr "" @@ -11621,11 +11744,6 @@ msgstr "" msgid "Imported Rows" msgstr "" -#: src/tables/settings/ImportSessionTable.tsx:111 -#: src/tables/settings/TemplateTable.tsx:368 -msgid "Model Type" -msgstr "" - #: src/tables/settings/ImportSessionTable.tsx:112 #: src/tables/settings/TemplateTable.tsx:369 msgid "Filter by target model type" diff --git a/src/frontend/src/locales/hi/messages.po b/src/frontend/src/locales/hi/messages.po index 4d6a352e73..8d00170cf9 100644 --- a/src/frontend/src/locales/hi/messages.po +++ b/src/frontend/src/locales/hi/messages.po @@ -8,7 +8,7 @@ msgstr "" "Language: hi\n" "Project-Id-Version: inventree\n" "Report-Msgid-Bugs-To: \n" -"PO-Revision-Date: 2025-11-19 19:39\n" +"PO-Revision-Date: 2025-12-07 07:36\n" "Last-Translator: \n" "Language-Team: Hindi\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" @@ -30,7 +30,7 @@ msgid "Edit" msgstr "" #: lib/components/RowActions.tsx:56 -#: src/components/forms/ApiForm.tsx:735 +#: src/components/forms/ApiForm.tsx:754 #: src/components/items/ActionDropdown.tsx:257 #: src/components/items/RoleTable.tsx:155 #: src/hooks/UseForm.tsx:164 @@ -56,24 +56,24 @@ msgstr "" #: lib/components/RowActions.tsx:136 #: src/components/nav/NavigationDrawer.tsx:190 -#: src/forms/PurchaseOrderForms.tsx:802 +#: src/forms/PurchaseOrderForms.tsx:854 #: src/forms/StockForms.tsx:796 #: src/forms/StockForms.tsx:843 -#: src/forms/StockForms.tsx:889 -#: src/forms/StockForms.tsx:928 -#: src/forms/StockForms.tsx:964 -#: src/forms/StockForms.tsx:1050 +#: src/forms/StockForms.tsx:896 +#: src/forms/StockForms.tsx:942 +#: src/forms/StockForms.tsx:980 +#: src/forms/StockForms.tsx:1066 #: src/pages/Index/Settings/AccountSettings/MFASettings.tsx:962 msgid "Actions" msgstr "" #: lib/components/SearchInput.tsx:34 -#: src/components/forms/fields/RelatedModelField.tsx:408 +#: src/components/forms/fields/RelatedModelField.tsx:479 #: src/components/nav/Header.tsx:169 #: src/components/wizards/ImportPartWizard.tsx:200 #: src/components/wizards/ImportPartWizard.tsx:233 -#: src/pages/Index/Settings/UserSettings.tsx:74 -#: src/pages/part/PartDetail.tsx:1155 +#: src/pages/Index/Settings/UserSettings.tsx:75 +#: src/pages/part/PartDetail.tsx:1176 msgid "Search" msgstr "" @@ -95,7 +95,7 @@ msgstr "हाँ" msgid "No" msgstr "" -#: lib/enums/ModelInformation.tsx:28 +#: lib/enums/ModelInformation.tsx:29 #: src/components/wizards/OrderPartsWizard.tsx:279 #: src/forms/BuildForms.tsx:332 #: src/forms/BuildForms.tsx:407 @@ -103,208 +103,234 @@ msgstr "" #: src/forms/BuildForms.tsx:630 #: src/forms/BuildForms.tsx:793 #: src/forms/BuildForms.tsx:896 -#: src/forms/PurchaseOrderForms.tsx:798 +#: src/forms/PurchaseOrderForms.tsx:850 #: src/forms/ReturnOrderForms.tsx:242 -#: src/forms/SalesOrderForms.tsx:305 +#: src/forms/SalesOrderForms.tsx:384 #: src/forms/StockForms.tsx:360 #: src/forms/StockForms.tsx:791 #: src/forms/StockForms.tsx:838 -#: src/forms/StockForms.tsx:884 -#: src/forms/StockForms.tsx:923 -#: src/forms/StockForms.tsx:959 -#: src/forms/StockForms.tsx:1002 -#: src/forms/StockForms.tsx:1046 -#: src/forms/StockForms.tsx:1094 -#: src/forms/StockForms.tsx:1138 -#: src/pages/build/BuildDetail.tsx:200 -#: src/pages/part/PartDetail.tsx:1207 +#: src/forms/StockForms.tsx:891 +#: src/forms/StockForms.tsx:937 +#: src/forms/StockForms.tsx:975 +#: src/forms/StockForms.tsx:1018 +#: src/forms/StockForms.tsx:1062 +#: src/forms/StockForms.tsx:1110 +#: src/forms/StockForms.tsx:1154 +#: src/pages/build/BuildDetail.tsx:201 +#: src/pages/part/PartDetail.tsx:1228 #: src/tables/ColumnRenderers.tsx:91 +#: src/tables/part/PartTestResultTable.tsx:247 #: src/tables/part/RelatedPartTable.tsx:53 #: src/tables/stock/StockTrackingTable.tsx:87 msgid "Part" msgstr "" -#: lib/enums/ModelInformation.tsx:29 +#: lib/enums/ModelInformation.tsx:30 #: lib/enums/Roles.tsx:35 #: src/components/nav/NavigationDrawer.tsx:70 #: src/defaults/links.tsx:36 -#: src/pages/Index/Settings/SystemSettings.tsx:190 -#: src/pages/part/CategoryDetail.tsx:132 -#: src/pages/part/CategoryDetail.tsx:277 -#: src/pages/part/CategoryDetail.tsx:323 -#: src/pages/part/CategoryDetail.tsx:354 -#: src/pages/part/PartDetail.tsx:965 +#: src/pages/Index/Settings/SystemSettings.tsx:197 +#: src/pages/part/CategoryDetail.tsx:135 +#: src/pages/part/CategoryDetail.tsx:285 +#: src/pages/part/CategoryDetail.tsx:340 +#: src/pages/part/CategoryDetail.tsx:371 +#: src/pages/part/PartDetail.tsx:978 msgid "Parts" msgstr "" #: lib/enums/ModelInformation.tsx:37 #: src/pages/Index/Settings/AdminCenter/PartParameterPanel.tsx:13 -msgid "Part Parameter Template" -msgstr "" +#~ msgid "Part Parameter Template" +#~ msgstr "Part Parameter Template" #: lib/enums/ModelInformation.tsx:38 -msgid "Part Parameter Templates" +#~ msgid "Part Parameter Templates" +#~ msgstr "Part Parameter Templates" + +#: lib/enums/ModelInformation.tsx:39 +msgid "Parameter" +msgstr "" + +#: lib/enums/ModelInformation.tsx:40 +#: src/components/panels/ParametersPanel.tsx:19 +#: src/components/wizards/ImportPartWizard.tsx:807 +#: src/pages/Index/Settings/AdminCenter/Index.tsx:195 +#: src/pages/Index/Settings/SystemSettings.tsx:191 +#: src/pages/part/PartDetail.tsx:943 +msgid "Parameters" msgstr "" #: lib/enums/ModelInformation.tsx:45 -msgid "Part Test Template" +#: src/tables/part/PartCategoryTemplateTable.tsx:87 +msgid "Parameter Template" msgstr "" #: lib/enums/ModelInformation.tsx:46 -msgid "Part Test Templates" +#: src/pages/Index/Settings/AdminCenter/ParameterPanel.tsx:13 +msgid "Parameter Templates" msgstr "" #: lib/enums/ModelInformation.tsx:52 +msgid "Part Test Template" +msgstr "" + +#: lib/enums/ModelInformation.tsx:53 +msgid "Part Test Templates" +msgstr "" + +#: lib/enums/ModelInformation.tsx:59 #: src/components/wizards/OrderPartsWizard.tsx:290 -#: src/pages/company/SupplierPartDetail.tsx:413 +#: src/pages/company/SupplierPartDetail.tsx:418 #: src/pages/stock/StockDetail.tsx:289 -#: src/tables/build/BuildAllocatedStockTable.tsx:155 +#: src/tables/build/BuildAllocatedStockTable.tsx:152 #: src/tables/part/PartPurchaseOrdersTable.tsx:50 +#: src/tables/purchasing/SupplierPartParametricTable.tsx:29 #: src/tables/purchasing/SupplierPartTable.tsx:83 #: src/tables/stock/StockItemTable.tsx:247 msgid "Supplier Part" msgstr "" -#: lib/enums/ModelInformation.tsx:53 -#: src/pages/purchasing/PurchasingIndex.tsx:92 +#: lib/enums/ModelInformation.tsx:60 +#: src/pages/purchasing/PurchasingIndex.tsx:128 msgid "Supplier Parts" msgstr "" -#: lib/enums/ModelInformation.tsx:61 -#: src/pages/company/ManufacturerPartDetail.tsx:297 -#: src/pages/company/SupplierPartDetail.tsx:161 +#: lib/enums/ModelInformation.tsx:69 +#: src/pages/company/ManufacturerPartDetail.tsx:288 +#: src/pages/company/SupplierPartDetail.tsx:162 #: src/tables/part/PartPurchaseOrdersTable.tsx:56 #: src/tables/stock/StockItemTable.tsx:253 msgid "Manufacturer Part" msgstr "" -#: lib/enums/ModelInformation.tsx:62 -#: src/pages/purchasing/PurchasingIndex.tsx:109 +#: lib/enums/ModelInformation.tsx:70 +#: src/pages/purchasing/PurchasingIndex.tsx:177 msgid "Manufacturer Parts" msgstr "" -#: lib/enums/ModelInformation.tsx:70 -#: src/pages/part/CategoryDetail.tsx:354 +#: lib/enums/ModelInformation.tsx:79 +#: src/pages/part/CategoryDetail.tsx:371 #: src/tables/Filter.tsx:389 msgid "Part Category" msgstr "" -#: lib/enums/ModelInformation.tsx:71 +#: lib/enums/ModelInformation.tsx:80 #: lib/enums/Roles.tsx:37 -#: src/pages/part/CategoryDetail.tsx:271 -#: src/pages/part/CategoryDetail.tsx:345 -#: src/pages/part/PartDetail.tsx:1196 +#: src/pages/part/CategoryDetail.tsx:279 +#: src/pages/part/CategoryDetail.tsx:362 +#: src/pages/part/PartDetail.tsx:1217 msgid "Part Categories" msgstr "" -#: lib/enums/ModelInformation.tsx:79 +#: lib/enums/ModelInformation.tsx:88 #: src/forms/BuildForms.tsx:473 #: src/forms/BuildForms.tsx:633 #: src/forms/BuildForms.tsx:794 -#: src/forms/SalesOrderForms.tsx:307 +#: src/forms/SalesOrderForms.tsx:386 #: src/pages/stock/StockDetail.tsx:1005 -#: src/tables/part/PartTestResultTable.tsx:248 +#: src/tables/part/PartTestResultTable.tsx:256 #: src/tables/stock/StockTrackingTable.tsx:48 #: src/tables/stock/StockTrackingTable.tsx:55 msgid "Stock Item" msgstr "" -#: lib/enums/ModelInformation.tsx:80 +#: lib/enums/ModelInformation.tsx:89 #: lib/enums/Roles.tsx:45 -#: src/pages/company/CompanyDetail.tsx:210 -#: src/pages/part/CategoryDetail.tsx:291 +#: src/pages/company/CompanyDetail.tsx:211 +#: src/pages/part/CategoryDetail.tsx:314 #: src/pages/part/PartStockHistoryDetail.tsx:101 #: src/pages/stock/LocationDetail.tsx:121 #: src/pages/stock/LocationDetail.tsx:180 msgid "Stock Items" msgstr "" -#: lib/enums/ModelInformation.tsx:88 +#: lib/enums/ModelInformation.tsx:98 #: lib/enums/Roles.tsx:47 #: src/pages/stock/LocationDetail.tsx:420 msgid "Stock Location" msgstr "" -#: lib/enums/ModelInformation.tsx:89 +#: lib/enums/ModelInformation.tsx:99 #: src/pages/stock/LocationDetail.tsx:174 #: src/pages/stock/LocationDetail.tsx:412 #: src/pages/stock/StockDetail.tsx:996 msgid "Stock Locations" msgstr "" -#: lib/enums/ModelInformation.tsx:97 +#: lib/enums/ModelInformation.tsx:108 msgid "Stock Location Type" msgstr "" -#: lib/enums/ModelInformation.tsx:98 +#: lib/enums/ModelInformation.tsx:109 msgid "Stock Location Types" msgstr "" -#: lib/enums/ModelInformation.tsx:103 -#: src/pages/Index/Settings/SystemSettings.tsx:248 -#: src/pages/part/PartDetail.tsx:911 +#: lib/enums/ModelInformation.tsx:114 +#: src/pages/Index/Settings/SystemSettings.tsx:254 +#: src/pages/part/PartDetail.tsx:900 msgid "Stock History" msgstr "" -#: lib/enums/ModelInformation.tsx:104 +#: lib/enums/ModelInformation.tsx:115 msgid "Stock Histories" msgstr "" -#: lib/enums/ModelInformation.tsx:109 +#: lib/enums/ModelInformation.tsx:120 msgid "Build" msgstr "" -#: lib/enums/ModelInformation.tsx:110 +#: lib/enums/ModelInformation.tsx:121 msgid "Builds" msgstr "" -#: lib/enums/ModelInformation.tsx:118 +#: lib/enums/ModelInformation.tsx:130 msgid "Build Line" msgstr "" -#: lib/enums/ModelInformation.tsx:119 +#: lib/enums/ModelInformation.tsx:131 msgid "Build Lines" msgstr "" -#: lib/enums/ModelInformation.tsx:126 +#: lib/enums/ModelInformation.tsx:138 msgid "Build Item" msgstr "" -#: lib/enums/ModelInformation.tsx:127 +#: lib/enums/ModelInformation.tsx:139 msgid "Build Items" msgstr "" -#: lib/enums/ModelInformation.tsx:132 -#: src/pages/company/CompanyDetail.tsx:340 +#: lib/enums/ModelInformation.tsx:144 +#: src/pages/company/CompanyDetail.tsx:345 #: src/tables/company/CompanyTable.tsx:47 #: src/tables/company/ContactTable.tsx:67 +#: src/tables/company/ParametricCompanyTable.tsx:18 msgid "Company" msgstr "" -#: lib/enums/ModelInformation.tsx:133 +#: lib/enums/ModelInformation.tsx:145 msgid "Companies" msgstr "" -#: lib/enums/ModelInformation.tsx:140 -#: src/pages/build/BuildDetail.tsx:316 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:253 -#: src/pages/sales/ReturnOrderDetail.tsx:231 -#: src/pages/sales/SalesOrderDetail.tsx:224 +#: lib/enums/ModelInformation.tsx:152 +#: src/pages/build/BuildDetail.tsx:317 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:254 +#: src/pages/sales/ReturnOrderDetail.tsx:232 +#: src/pages/sales/SalesOrderDetail.tsx:225 #: src/tables/ColumnRenderers.tsx:362 #: src/tables/Filter.tsx:286 #: src/tables/TableHoverCard.tsx:101 msgid "Project Code" msgstr "" -#: lib/enums/ModelInformation.tsx:141 +#: lib/enums/ModelInformation.tsx:153 #: src/pages/Index/Settings/AdminCenter/Index.tsx:172 msgid "Project Codes" msgstr "" -#: lib/enums/ModelInformation.tsx:147 +#: lib/enums/ModelInformation.tsx:159 #: src/components/wizards/OrderPartsWizard.tsx:338 #: src/pages/part/pricing/PurchaseHistoryPanel.tsx:33 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:550 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:555 #: src/pages/stock/StockDetail.tsx:352 #: src/tables/part/PartPurchaseOrdersTable.tsx:32 #: src/tables/stock/StockItemTable.tsx:239 @@ -312,117 +338,117 @@ msgstr "" msgid "Purchase Order" msgstr "" -#: lib/enums/ModelInformation.tsx:148 +#: lib/enums/ModelInformation.tsx:160 #: lib/enums/Roles.tsx:39 #: src/defaults/actions.tsx:104 -#: src/pages/Index/Settings/SystemSettings.tsx:283 -#: src/pages/company/CompanyDetail.tsx:203 -#: src/pages/company/SupplierPartDetail.tsx:266 -#: src/pages/part/PartDetail.tsx:875 -#: src/pages/purchasing/PurchasingIndex.tsx:60 +#: src/pages/Index/Settings/SystemSettings.tsx:289 +#: src/pages/company/CompanyDetail.tsx:204 +#: src/pages/company/SupplierPartDetail.tsx:267 +#: src/pages/part/PartDetail.tsx:864 +#: src/pages/purchasing/PurchasingIndex.tsx:66 msgid "Purchase Orders" msgstr "" -#: lib/enums/ModelInformation.tsx:156 +#: lib/enums/ModelInformation.tsx:169 msgid "Purchase Order Line" msgstr "" -#: lib/enums/ModelInformation.tsx:157 +#: lib/enums/ModelInformation.tsx:170 msgid "Purchase Order Lines" msgstr "" -#: lib/enums/ModelInformation.tsx:162 -#: src/pages/build/BuildDetail.tsx:289 +#: lib/enums/ModelInformation.tsx:175 +#: src/pages/build/BuildDetail.tsx:290 #: src/pages/part/pricing/SaleHistoryPanel.tsx:24 -#: src/pages/sales/SalesOrderDetail.tsx:614 -#: src/pages/sales/SalesOrderShipmentDetail.tsx:105 -#: src/pages/sales/SalesOrderShipmentDetail.tsx:478 +#: src/pages/sales/SalesOrderDetail.tsx:619 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:103 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:446 #: src/pages/stock/StockDetail.tsx:361 #: src/tables/part/PartSalesAllocationsTable.tsx:41 #: src/tables/sales/SalesOrderAllocationTable.tsx:110 -#: src/tables/sales/SalesOrderShipmentTable.tsx:122 +#: src/tables/sales/SalesOrderShipmentTable.tsx:143 #: src/tables/stock/StockTrackingTable.tsx:131 msgid "Sales Order" msgstr "" -#: lib/enums/ModelInformation.tsx:163 +#: lib/enums/ModelInformation.tsx:176 #: lib/enums/Roles.tsx:43 #: src/defaults/actions.tsx:114 -#: src/pages/Index/Settings/SystemSettings.tsx:299 -#: src/pages/company/CompanyDetail.tsx:223 -#: src/pages/part/PartDetail.tsx:887 -#: src/pages/sales/SalesIndex.tsx:84 +#: src/pages/Index/Settings/SystemSettings.tsx:305 +#: src/pages/company/CompanyDetail.tsx:224 +#: src/pages/part/PartDetail.tsx:876 +#: src/pages/sales/SalesIndex.tsx:53 msgid "Sales Orders" msgstr "" -#: lib/enums/ModelInformation.tsx:171 -#: src/pages/sales/SalesOrderShipmentDetail.tsx:477 +#: lib/enums/ModelInformation.tsx:185 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:445 msgid "Sales Order Shipment" msgstr "" -#: lib/enums/ModelInformation.tsx:172 +#: lib/enums/ModelInformation.tsx:186 msgid "Sales Order Shipments" msgstr "" -#: lib/enums/ModelInformation.tsx:179 -#: src/pages/sales/ReturnOrderDetail.tsx:549 +#: lib/enums/ModelInformation.tsx:194 +#: src/pages/sales/ReturnOrderDetail.tsx:554 #: src/tables/stock/StockTrackingTable.tsx:142 msgid "Return Order" msgstr "" -#: lib/enums/ModelInformation.tsx:180 +#: lib/enums/ModelInformation.tsx:195 #: lib/enums/Roles.tsx:41 #: src/defaults/actions.tsx:125 -#: src/pages/Index/Settings/SystemSettings.tsx:316 -#: src/pages/company/CompanyDetail.tsx:230 -#: src/pages/part/PartDetail.tsx:894 -#: src/pages/sales/SalesIndex.tsx:117 +#: src/pages/Index/Settings/SystemSettings.tsx:322 +#: src/pages/company/CompanyDetail.tsx:231 +#: src/pages/part/PartDetail.tsx:883 +#: src/pages/sales/SalesIndex.tsx:99 msgid "Return Orders" msgstr "" -#: lib/enums/ModelInformation.tsx:188 +#: lib/enums/ModelInformation.tsx:204 msgid "Return Order Line Item" msgstr "" -#: lib/enums/ModelInformation.tsx:189 +#: lib/enums/ModelInformation.tsx:205 msgid "Return Order Line Items" msgstr "" -#: lib/enums/ModelInformation.tsx:194 +#: lib/enums/ModelInformation.tsx:210 #: src/tables/company/AddressTable.tsx:52 msgid "Address" msgstr "" -#: lib/enums/ModelInformation.tsx:195 -#: src/pages/company/CompanyDetail.tsx:264 +#: lib/enums/ModelInformation.tsx:211 +#: src/pages/company/CompanyDetail.tsx:265 msgid "Addresses" msgstr "" -#: lib/enums/ModelInformation.tsx:201 +#: lib/enums/ModelInformation.tsx:217 #: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:89 #: src/pages/core/UserDetail.tsx:135 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:229 -#: src/pages/sales/ReturnOrderDetail.tsx:207 -#: src/pages/sales/SalesOrderDetail.tsx:200 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:230 +#: src/pages/sales/ReturnOrderDetail.tsx:208 +#: src/pages/sales/SalesOrderDetail.tsx:201 msgid "Contact" msgstr "" -#: lib/enums/ModelInformation.tsx:202 -#: src/pages/company/CompanyDetail.tsx:258 +#: lib/enums/ModelInformation.tsx:218 +#: src/pages/company/CompanyDetail.tsx:259 #: src/pages/core/CoreIndex.tsx:33 msgid "Contacts" msgstr "" -#: lib/enums/ModelInformation.tsx:208 +#: lib/enums/ModelInformation.tsx:224 #: src/tables/ColumnRenderers.tsx:444 msgid "Owner" msgstr "" -#: lib/enums/ModelInformation.tsx:209 +#: lib/enums/ModelInformation.tsx:225 msgid "Owners" msgstr "" -#: lib/enums/ModelInformation.tsx:215 +#: lib/enums/ModelInformation.tsx:231 #: src/pages/Auth/ChangePassword.tsx:36 #: src/pages/core/UserDetail.tsx:220 #: src/tables/ColumnRenderers.tsx:395 @@ -437,7 +463,7 @@ msgstr "" msgid "User" msgstr "" -#: lib/enums/ModelInformation.tsx:216 +#: lib/enums/ModelInformation.tsx:232 #: src/components/nav/NavigationDrawer.tsx:105 #: src/pages/Index/Settings/AdminCenter/UserManagementPanel.tsx:15 #: src/pages/core/CoreIndex.tsx:21 @@ -445,12 +471,12 @@ msgstr "" msgid "Users" msgstr "" -#: lib/enums/ModelInformation.tsx:222 +#: lib/enums/ModelInformation.tsx:238 #: src/pages/core/GroupDetail.tsx:78 msgid "Group" msgstr "" -#: lib/enums/ModelInformation.tsx:223 +#: lib/enums/ModelInformation.tsx:239 #: src/components/nav/NavigationDrawer.tsx:111 #: src/pages/Index/Settings/AdminCenter/UserManagementPanel.tsx:23 #: src/pages/core/CoreIndex.tsx:27 @@ -460,64 +486,64 @@ msgstr "" msgid "Groups" msgstr "" -#: lib/enums/ModelInformation.tsx:230 +#: lib/enums/ModelInformation.tsx:246 msgid "Import Session" msgstr "" -#: lib/enums/ModelInformation.tsx:231 +#: lib/enums/ModelInformation.tsx:247 msgid "Import Sessions" msgstr "" -#: lib/enums/ModelInformation.tsx:238 +#: lib/enums/ModelInformation.tsx:254 msgid "Label Template" msgstr "" -#: lib/enums/ModelInformation.tsx:239 +#: lib/enums/ModelInformation.tsx:255 #: src/pages/Index/Settings/AdminCenter/Index.tsx:209 msgid "Label Templates" msgstr "" -#: lib/enums/ModelInformation.tsx:246 +#: lib/enums/ModelInformation.tsx:262 msgid "Report Template" msgstr "" -#: lib/enums/ModelInformation.tsx:247 +#: lib/enums/ModelInformation.tsx:263 #: src/pages/Index/Settings/AdminCenter/Index.tsx:215 msgid "Report Templates" msgstr "" -#: lib/enums/ModelInformation.tsx:254 +#: lib/enums/ModelInformation.tsx:270 #: src/components/plugins/PluginDrawer.tsx:145 msgid "Plugin Configuration" msgstr "" -#: lib/enums/ModelInformation.tsx:255 +#: lib/enums/ModelInformation.tsx:271 msgid "Plugin Configurations" msgstr "" -#: lib/enums/ModelInformation.tsx:262 +#: lib/enums/ModelInformation.tsx:278 msgid "Content Type" msgstr "" -#: lib/enums/ModelInformation.tsx:263 +#: lib/enums/ModelInformation.tsx:279 msgid "Content Types" msgstr "" -#: lib/enums/ModelInformation.tsx:268 +#: lib/enums/ModelInformation.tsx:284 msgid "Selection List" msgstr "" -#: lib/enums/ModelInformation.tsx:269 -#: src/pages/Index/Settings/AdminCenter/PartParameterPanel.tsx:21 +#: lib/enums/ModelInformation.tsx:285 +#: src/pages/Index/Settings/AdminCenter/ParameterPanel.tsx:21 msgid "Selection Lists" msgstr "" -#: lib/enums/ModelInformation.tsx:275 +#: lib/enums/ModelInformation.tsx:291 #: src/components/barcodes/BarcodeInput.tsx:114 #: src/components/dashboard/DashboardLayout.tsx:281 #: src/components/editors/NotesEditor.tsx:74 #: src/components/editors/TemplateEditor/TemplateEditor.tsx:158 -#: src/components/forms/fields/ApiFormField.tsx:273 +#: src/components/forms/fields/ApiFormField.tsx:237 #: src/components/forms/fields/TableField.tsx:45 #: src/components/importer/ImportDataSelector.tsx:192 #: src/components/importer/ImporterColumnSelector.tsx:234 @@ -528,7 +554,7 @@ msgstr "" #: src/components/nav/SearchDrawer.tsx:572 #: src/components/settings/SettingList.tsx:139 #: src/components/wizards/ImportPartWizard.tsx:574 -#: src/components/wizards/ImportPartWizard.tsx:718 +#: src/components/wizards/ImportPartWizard.tsx:719 #: src/forms/BomForms.tsx:69 #: src/functions/auth.tsx:643 #: src/pages/ErrorPage.tsx:11 @@ -547,9 +573,9 @@ msgstr "" msgid "Error" msgstr "" -#: lib/enums/ModelInformation.tsx:276 +#: lib/enums/ModelInformation.tsx:292 #: src/tables/machine/MachineListTable.tsx:402 -#: src/tables/machine/MachineTypeTable.tsx:299 +#: src/tables/machine/MachineTypeTable.tsx:297 msgid "Errors" msgstr "" @@ -559,10 +585,10 @@ msgstr "" #: lib/enums/Roles.tsx:33 #: src/defaults/actions.tsx:135 -#: src/pages/Index/Settings/SystemSettings.tsx:264 -#: src/pages/build/BuildIndex.tsx:75 -#: src/pages/part/PartDetail.tsx:904 -#: src/pages/sales/SalesOrderDetail.tsx:421 +#: src/pages/Index/Settings/SystemSettings.tsx:270 +#: src/pages/build/BuildIndex.tsx:67 +#: src/pages/part/PartDetail.tsx:893 +#: src/pages/sales/SalesOrderDetail.tsx:422 msgid "Build Orders" msgstr "" @@ -639,39 +665,39 @@ msgstr "" msgid "Enter barcode data" msgstr "" -#: src/components/barcodes/BarcodeScanDialog.tsx:49 -#: src/components/buttons/ScanButton.tsx:15 +#: src/components/barcodes/BarcodeScanDialog.tsx:56 +#: src/components/buttons/ScanButton.tsx:27 #: src/components/nav/NavigationDrawer.tsx:122 -#: src/forms/PurchaseOrderForms.tsx:457 -#: src/forms/PurchaseOrderForms.tsx:563 +#: src/forms/PurchaseOrderForms.tsx:509 +#: src/forms/PurchaseOrderForms.tsx:615 msgid "Scan Barcode" msgstr "" -#: src/components/barcodes/BarcodeScanDialog.tsx:105 +#: src/components/barcodes/BarcodeScanDialog.tsx:121 msgid "No matching item found" msgstr "" -#: src/components/barcodes/BarcodeScanDialog.tsx:134 +#: src/components/barcodes/BarcodeScanDialog.tsx:150 msgid "Barcode does not match the expected model type" msgstr "" -#: src/components/barcodes/BarcodeScanDialog.tsx:145 +#: src/components/barcodes/BarcodeScanDialog.tsx:161 #: src/components/editors/NotesEditor.tsx:84 #: src/components/editors/NotesEditor.tsx:118 -#: src/components/forms/ApiForm.tsx:465 +#: src/components/forms/ApiForm.tsx:484 #: src/components/wizards/ImportPartWizard.tsx:566 -#: src/components/wizards/ImportPartWizard.tsx:690 +#: src/components/wizards/ImportPartWizard.tsx:691 #: src/pages/Index/Settings/AdminCenter/CurrencyManagementPanel.tsx:45 #: src/tables/bom/BomTable.tsx:548 #: src/tables/settings/PendingTasksTable.tsx:68 msgid "Success" msgstr "" -#: src/components/barcodes/BarcodeScanDialog.tsx:151 +#: src/components/barcodes/BarcodeScanDialog.tsx:167 msgid "Failed to handle barcode" msgstr "" -#: src/components/barcodes/BarcodeScanDialog.tsx:167 +#: src/components/barcodes/BarcodeScanDialog.tsx:183 #: src/pages/Index/Scan.tsx:129 msgid "Failed to scan barcode" msgstr "" @@ -714,10 +740,10 @@ msgstr "" #: src/components/barcodes/QRCode.tsx:179 #: src/pages/part/PartDetail.tsx:521 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:222 -#: src/pages/sales/ReturnOrderDetail.tsx:188 -#: src/pages/sales/SalesOrderDetail.tsx:181 -#: src/pages/sales/SalesOrderShipmentDetail.tsx:122 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:223 +#: src/pages/sales/ReturnOrderDetail.tsx:189 +#: src/pages/sales/SalesOrderDetail.tsx:182 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:120 #: src/pages/stock/StockDetail.tsx:186 msgid "Link" msgstr "" @@ -728,7 +754,7 @@ msgstr "" #: src/components/barcodes/QRCode.tsx:205 #: src/components/items/ActionDropdown.tsx:192 -#: src/forms/PurchaseOrderForms.tsx:554 +#: src/forms/PurchaseOrderForms.tsx:606 msgid "Unlink Barcode" msgstr "" @@ -829,14 +855,14 @@ msgstr "" #~ msgid "Scan QR code" #~ msgstr "Scan QR code" -#: src/components/buttons/ScanButton.tsx:19 -msgid "Open Barcode Scanner" -msgstr "" - #: src/components/buttons/ScanButton.tsx:20 #~ msgid "Open QR code scanner" #~ msgstr "Open QR code scanner" +#: src/components/buttons/ScanButton.tsx:32 +msgid "Open Barcode Scanner" +msgstr "" + #: src/components/buttons/SpotlightButton.tsx:12 msgid "Open spotlight" msgstr "" @@ -1059,7 +1085,7 @@ msgid "Show the number of sales orders which are assigned to you" msgstr "" #: src/components/dashboard/DashboardWidgetLibrary.tsx:129 -#: src/pages/sales/SalesIndex.tsx:105 +#: src/pages/sales/SalesIndex.tsx:87 msgid "Pending Shipments" msgstr "" @@ -1210,12 +1236,18 @@ msgid "Remove the associated image from this item?" msgstr "" #: src/components/details/DetailsImage.tsx:83 -#: src/forms/StockForms.tsx:888 +#: src/forms/StockForms.tsx:895 #: src/pages/Index/Settings/AccountSettings/MFASettings.tsx:324 #: src/pages/Index/Settings/AccountSettings/MFASettings.tsx:415 #: src/pages/Index/Settings/AccountSettings/MFASettings.tsx:884 #: src/pages/Index/Settings/AccountSettings/MFASettings.tsx:903 #: src/pages/Index/Settings/AccountSettings/SecurityContent.tsx:254 +#: src/tables/build/BuildAllocatedStockTable.tsx:178 +#: src/tables/build/BuildAllocatedStockTable.tsx:258 +#: src/tables/build/BuildLineTable.tsx:111 +#: src/tables/build/BuildLineTable.tsx:665 +#: src/tables/sales/SalesOrderAllocationTable.tsx:224 +#: src/tables/sales/SalesOrderAllocationTable.tsx:247 msgid "Remove" msgstr "" @@ -1241,12 +1273,12 @@ msgid "Upload Error" msgstr "" #: src/components/details/DetailsImage.tsx:250 -#: src/components/forms/fields/TextField.tsx:65 +#: src/components/forms/fields/AutoFillRightSection.tsx:34 msgid "Clear" msgstr "" #: src/components/details/DetailsImage.tsx:256 -#: src/components/forms/ApiForm.tsx:677 +#: src/components/forms/ApiForm.tsx:696 #: src/contexts/ThemeContext.tsx:44 #: src/pages/Index/Settings/AccountSettings/MFASettings.tsx:149 #: src/pages/Index/Settings/AccountSettings/MFASettings.tsx:568 @@ -1499,8 +1531,8 @@ msgstr "" msgid "A server error occurred" msgstr "" -#: src/components/forms/ApiForm.tsx:103 -#: src/components/forms/ApiForm.tsx:594 +#: src/components/forms/ApiForm.tsx:107 +#: src/components/forms/ApiForm.tsx:613 msgid "Form Error" msgstr "" @@ -1508,11 +1540,11 @@ msgstr "" #~ msgid "Form Errors Exist" #~ msgstr "Form Errors Exist" -#: src/components/forms/ApiForm.tsx:604 +#: src/components/forms/ApiForm.tsx:623 msgid "Errors exist for one or more form fields" msgstr "" -#: src/components/forms/ApiForm.tsx:715 +#: src/components/forms/ApiForm.tsx:734 #: src/hooks/UseForm.tsx:133 #: src/tables/plugin/PluginListTable.tsx:204 msgid "Update" @@ -1698,15 +1730,14 @@ msgstr "" #: src/components/forms/InstanceOptions.tsx:124 #: src/components/plugins/PluginDrawer.tsx:68 #: src/pages/Index/Settings/AdminCenter/UnitManagementPanel.tsx:19 -#: src/pages/part/CategoryDetail.tsx:88 +#: src/pages/part/CategoryDetail.tsx:91 #: src/pages/part/PartDetail.tsx:446 #: src/pages/stock/LocationDetail.tsx:82 #: src/tables/machine/MachineTypeTable.tsx:67 -#: src/tables/machine/MachineTypeTable.tsx:151 -#: src/tables/machine/MachineTypeTable.tsx:254 -#: src/tables/machine/MachineTypeTable.tsx:357 +#: src/tables/machine/MachineTypeTable.tsx:149 +#: src/tables/machine/MachineTypeTable.tsx:252 +#: src/tables/machine/MachineTypeTable.tsx:355 #: src/tables/plugin/PluginErrorTable.tsx:33 -#: src/tables/purchasing/ManufacturerPartParameterTable.tsx:36 #: src/tables/settings/ApiTokenTable.tsx:57 #: src/tables/settings/GroupTable.tsx:95 #: src/tables/settings/GroupTable.tsx:148 @@ -1769,7 +1800,7 @@ msgstr "" #~ msgstr "State: <0>worker ({0}), <1>plugins{1}" #: src/components/forms/InstanceOptions.tsx:118 -#: src/pages/Index/Settings/SystemSettings.tsx:45 +#: src/pages/Index/Settings/SystemSettings.tsx:46 msgid "Server" msgstr "" @@ -1793,6 +1824,8 @@ msgid "Plugins" msgstr "" #: src/components/forms/InstanceOptions.tsx:143 +#: src/tables/general/ParameterTemplateTable.tsx:153 +#: src/tables/general/ParameterTemplateTable.tsx:188 #: src/tables/part/PartTestTemplateTable.tsx:117 #: src/tables/settings/TemplateTable.tsx:251 #: src/tables/settings/TemplateTable.tsx:362 @@ -1817,10 +1850,14 @@ msgstr "" msgid "Running" msgstr "" -#: src/components/forms/fields/ApiFormField.tsx:233 +#: src/components/forms/fields/ApiFormField.tsx:197 msgid "Select file to upload" msgstr "" +#: src/components/forms/fields/AutoFillRightSection.tsx:47 +msgid "Accept suggested value" +msgstr "" + #: src/components/forms/fields/DateField.tsx:76 msgid "Select date" msgstr "" @@ -1853,13 +1890,13 @@ msgstr "" msgid "{0} icons" msgstr "" -#: src/components/forms/fields/RelatedModelField.tsx:409 +#: src/components/forms/fields/RelatedModelField.tsx:480 #: src/components/modals/AboutInvenTreeModal.tsx:96 #: src/pages/Index/Settings/AccountSettings/SecurityContent.tsx:383 msgid "Loading" msgstr "" -#: src/components/forms/fields/RelatedModelField.tsx:411 +#: src/components/forms/fields/RelatedModelField.tsx:482 msgid "No results found" msgstr "" @@ -1875,10 +1912,6 @@ msgstr "" msgid "Add new row" msgstr "" -#: src/components/forms/fields/TextField.tsx:82 -msgid "Accept suggested value" -msgstr "" - #: src/components/images/DetailsImage.tsx:252 #~ msgid "Select image" #~ msgstr "Select image" @@ -2036,7 +2069,7 @@ msgstr "" #: src/components/importer/ImporterDrawer.tsx:109 #: src/components/modals/AboutInvenTreeModal.tsx:205 #: src/components/modals/ServerInfoModal.tsx:134 -#: src/components/wizards/ImportPartWizard.tsx:772 +#: src/components/wizards/ImportPartWizard.tsx:773 #: src/forms/BomForms.tsx:132 #: src/pages/Index/Settings/AccountSettings/MFASettings.tsx:685 msgid "Close" @@ -2199,7 +2232,7 @@ msgid "Change" msgstr "" #: src/components/items/RoleTable.tsx:150 -#: src/forms/StockForms.tsx:927 +#: src/forms/StockForms.tsx:941 #: src/tables/stock/StockItemTestResultTable.tsx:367 msgid "Add" msgstr "" @@ -2222,11 +2255,11 @@ msgstr "" #: src/components/items/TransferList.tsx:161 #: src/components/render/Stock.tsx:102 -#: src/pages/part/PartDetail.tsx:994 +#: src/pages/part/PartDetail.tsx:1009 #: src/pages/stock/StockDetail.tsx:265 #: src/pages/stock/StockDetail.tsx:942 -#: src/tables/build/BuildAllocatedStockTable.tsx:135 -#: src/tables/build/BuildLineTable.tsx:192 +#: src/tables/build/BuildAllocatedStockTable.tsx:132 +#: src/tables/build/BuildLineTable.tsx:193 #: src/tables/part/PartTable.tsx:137 #: src/tables/stock/StockItemTable.tsx:182 #: src/tables/stock/StockItemTable.tsx:343 @@ -2373,7 +2406,7 @@ msgid "Database" msgstr "" #: src/components/modals/ServerInfoModal.tsx:49 -#: src/components/nav/Alerts.tsx:118 +#: src/components/nav/Alerts.tsx:120 msgid "Debug Mode" msgstr "" @@ -2414,7 +2447,7 @@ msgid "Issues detected" msgstr "" #: src/components/modals/ServerInfoModal.tsx:102 -#: src/components/nav/Alerts.tsx:125 +#: src/components/nav/Alerts.tsx:127 msgid "Background Worker" msgstr "" @@ -2436,7 +2469,7 @@ msgstr "" #~ msgstr "Email settings not configured" #: src/components/modals/ServerInfoModal.tsx:120 -#: src/components/nav/Alerts.tsx:141 +#: src/components/nav/Alerts.tsx:143 msgid "Email settings not configured." msgstr "" @@ -2444,43 +2477,47 @@ msgstr "" msgid "Alerts" msgstr "" -#: src/components/nav/Alerts.tsx:120 +#: src/components/nav/Alerts.tsx:97 +msgid "No issues detected" +msgstr "" + +#: src/components/nav/Alerts.tsx:122 msgid "The server is running in debug mode." msgstr "" -#: src/components/nav/Alerts.tsx:127 +#: src/components/nav/Alerts.tsx:129 msgid "The background worker process is not running." msgstr "" -#: src/components/nav/Alerts.tsx:132 +#: src/components/nav/Alerts.tsx:134 msgid "Server Restart" msgstr "" -#: src/components/nav/Alerts.tsx:134 +#: src/components/nav/Alerts.tsx:136 msgid "The server requires a restart to apply changes." msgstr "" -#: src/components/nav/Alerts.tsx:139 +#: src/components/nav/Alerts.tsx:141 msgid "Email settings" msgstr "" -#: src/components/nav/Alerts.tsx:146 +#: src/components/nav/Alerts.tsx:148 msgid "Database Migrations" msgstr "" -#: src/components/nav/Alerts.tsx:148 +#: src/components/nav/Alerts.tsx:150 msgid "There are pending database migrations." msgstr "" -#: src/components/nav/Alerts.tsx:163 +#: src/components/nav/Alerts.tsx:165 msgid "Learn more about {code}" msgstr "" #: src/components/nav/Header.tsx:188 #: src/components/nav/NavigationDrawer.tsx:134 #: src/components/nav/NotificationDrawer.tsx:181 -#: src/pages/Index/Settings/SystemSettings.tsx:121 -#: src/pages/Index/Settings/UserSettings.tsx:106 +#: src/pages/Index/Settings/SystemSettings.tsx:122 +#: src/pages/Index/Settings/UserSettings.tsx:107 #: src/pages/Notifications.tsx:45 #: src/pages/Notifications.tsx:130 msgid "Notifications" @@ -2511,8 +2548,8 @@ msgstr "" #: src/components/nav/NavigationDrawer.tsx:140 #: src/components/nav/SettingsHeader.tsx:40 #: src/defaults/actions.tsx:92 -#: src/pages/Index/Settings/UserSettings.tsx:141 -#: src/pages/Index/Settings/UserSettings.tsx:145 +#: src/pages/Index/Settings/UserSettings.tsx:142 +#: src/pages/Index/Settings/UserSettings.tsx:146 msgid "User Settings" msgstr "" @@ -2529,8 +2566,8 @@ msgstr "" #: src/components/nav/NavigationDrawer.tsx:146 #: src/components/nav/SettingsHeader.tsx:41 #: src/defaults/actions.tsx:144 -#: src/pages/Index/Settings/SystemSettings.tsx:348 -#: src/pages/Index/Settings/SystemSettings.tsx:353 +#: src/pages/Index/Settings/SystemSettings.tsx:354 +#: src/pages/Index/Settings/SystemSettings.tsx:359 msgid "System Settings" msgstr "" @@ -2577,11 +2614,11 @@ msgstr "" #: src/components/nav/NavigationDrawer.tsx:77 #: src/components/render/Part.tsx:36 -#: src/components/wizards/ImportPartWizard.tsx:807 +#: src/components/wizards/ImportPartWizard.tsx:808 #: src/defaults/links.tsx:42 #: src/forms/StockForms.tsx:794 -#: src/pages/Index/Settings/SystemSettings.tsx:224 -#: src/pages/part/PartDetail.tsx:804 +#: src/pages/Index/Settings/SystemSettings.tsx:230 +#: src/pages/part/PartDetail.tsx:793 #: src/pages/stock/LocationDetail.tsx:390 #: src/pages/stock/LocationDetail.tsx:420 #: src/pages/stock/StockDetail.tsx:642 @@ -2591,29 +2628,29 @@ msgstr "" #: src/components/nav/NavigationDrawer.tsx:84 #: src/defaults/links.tsx:48 -#: src/pages/build/BuildDetail.tsx:748 -#: src/pages/build/BuildIndex.tsx:102 +#: src/pages/build/BuildDetail.tsx:753 +#: src/pages/build/BuildIndex.tsx:101 msgid "Manufacturing" msgstr "" #: src/components/nav/NavigationDrawer.tsx:91 #: src/defaults/links.tsx:54 #: src/pages/company/ManufacturerDetail.tsx:9 -#: src/pages/company/ManufacturerPartDetail.tsx:276 +#: src/pages/company/ManufacturerPartDetail.tsx:267 #: src/pages/company/SupplierDetail.tsx:9 -#: src/pages/company/SupplierPartDetail.tsx:360 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:553 -#: src/pages/purchasing/PurchasingIndex.tsx:122 +#: src/pages/company/SupplierPartDetail.tsx:365 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:558 +#: src/pages/purchasing/PurchasingIndex.tsx:212 msgid "Purchasing" msgstr "" #: src/components/nav/NavigationDrawer.tsx:98 #: src/defaults/links.tsx:60 #: src/pages/company/CustomerDetail.tsx:9 -#: src/pages/sales/ReturnOrderDetail.tsx:554 -#: src/pages/sales/SalesIndex.tsx:153 -#: src/pages/sales/SalesOrderDetail.tsx:619 -#: src/pages/sales/SalesOrderShipmentDetail.tsx:480 +#: src/pages/sales/ReturnOrderDetail.tsx:559 +#: src/pages/sales/SalesIndex.tsx:168 +#: src/pages/sales/SalesOrderDetail.tsx:624 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:448 msgid "Sales" msgstr "" @@ -2667,21 +2704,21 @@ msgid "Remove search group" msgstr "" #: src/components/nav/SearchDrawer.tsx:288 -#: src/pages/company/ManufacturerPartDetail.tsx:192 -#: src/pages/part/PartDetail.tsx:862 +#: src/pages/company/ManufacturerPartDetail.tsx:179 +#: src/pages/part/PartDetail.tsx:851 #: src/pages/part/PartSupplierDetail.tsx:15 -#: src/pages/purchasing/PurchasingIndex.tsx:81 +#: src/pages/purchasing/PurchasingIndex.tsx:100 msgid "Suppliers" msgstr "" #: src/components/nav/SearchDrawer.tsx:298 #: src/pages/part/PartSupplierDetail.tsx:23 -#: src/pages/purchasing/PurchasingIndex.tsx:98 +#: src/pages/purchasing/PurchasingIndex.tsx:149 msgid "Manufacturers" msgstr "" #: src/components/nav/SearchDrawer.tsx:308 -#: src/pages/sales/SalesIndex.tsx:138 +#: src/pages/sales/SalesIndex.tsx:133 msgid "Customers" msgstr "" @@ -2772,21 +2809,21 @@ msgstr "" #: src/components/plugins/PluginDrawer.tsx:73 #: src/forms/selectionListFields.tsx:102 -#: src/pages/build/BuildDetail.tsx:250 -#: src/pages/company/CompanyDetail.tsx:93 -#: src/pages/company/ManufacturerPartDetail.tsx:93 -#: src/pages/company/ManufacturerPartDetail.tsx:120 -#: src/pages/company/SupplierPartDetail.tsx:145 -#: src/pages/part/CategoryDetail.tsx:108 +#: src/pages/build/BuildDetail.tsx:251 +#: src/pages/company/CompanyDetail.tsx:94 +#: src/pages/company/ManufacturerPartDetail.tsx:92 +#: src/pages/company/ManufacturerPartDetail.tsx:119 +#: src/pages/company/SupplierPartDetail.tsx:146 +#: src/pages/part/CategoryDetail.tsx:111 #: src/pages/part/PartDetail.tsx:460 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:162 -#: src/pages/sales/ReturnOrderDetail.tsx:129 -#: src/pages/sales/SalesOrderDetail.tsx:119 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:163 +#: src/pages/sales/ReturnOrderDetail.tsx:130 +#: src/pages/sales/SalesOrderDetail.tsx:120 #: src/pages/stock/LocationDetail.tsx:102 #: src/tables/ColumnRenderers.tsx:278 -#: src/tables/build/BuildAllocatedStockTable.tsx:91 -#: src/tables/machine/MachineTypeTable.tsx:161 -#: src/tables/machine/MachineTypeTable.tsx:257 +#: src/tables/build/BuildAllocatedStockTable.tsx:88 +#: src/tables/machine/MachineTypeTable.tsx:159 +#: src/tables/machine/MachineTypeTable.tsx:255 #: src/tables/plugin/PluginListTable.tsx:110 msgid "Description" msgstr "" @@ -2814,7 +2851,7 @@ msgstr "" #: src/tables/company/CompanyTable.tsx:91 #: src/tables/machine/MachineListTable.tsx:384 #: src/tables/machine/MachineListTable.tsx:799 -#: src/tables/part/ParametricPartTable.tsx:354 +#: src/tables/part/ParametricPartTable.tsx:19 #: src/tables/part/PartTable.tsx:197 #: src/tables/part/PartVariantTable.tsx:15 #: src/tables/plugin/PluginListTable.tsx:96 @@ -2836,8 +2873,8 @@ msgid "Installation Path" msgstr "" #: src/components/plugins/PluginDrawer.tsx:116 -#: src/tables/machine/MachineTypeTable.tsx:184 -#: src/tables/machine/MachineTypeTable.tsx:293 +#: src/tables/machine/MachineTypeTable.tsx:182 +#: src/tables/machine/MachineTypeTable.tsx:291 #: src/tables/plugin/PluginListTable.tsx:101 #: src/tables/plugin/PluginListTable.tsx:417 msgid "Builtin" @@ -2849,8 +2886,8 @@ msgstr "" #: src/components/plugins/PluginDrawer.tsx:133 #: src/pages/Index/Settings/AdminCenter/PluginManagementPanel.tsx:55 -#: src/pages/Index/Settings/SystemSettings.tsx:331 -#: src/pages/Index/Settings/UserSettings.tsx:128 +#: src/pages/Index/Settings/SystemSettings.tsx:337 +#: src/pages/Index/Settings/UserSettings.tsx:129 msgid "Plugin Settings" msgstr "" @@ -2911,7 +2948,7 @@ msgstr "" #~ msgid "Unknown model: {model}" #~ msgstr "Unknown model: {model}" -#: src/components/render/Instance.tsx:249 +#: src/components/render/Instance.tsx:247 msgid "Unknown model: {model_name}" msgstr "" @@ -2939,10 +2976,10 @@ msgstr "" #: src/components/render/Part.tsx:28 #: src/components/render/Plugin.tsx:17 #: src/components/render/User.tsx:37 -#: src/pages/company/CompanyDetail.tsx:323 -#: src/pages/company/SupplierPartDetail.tsx:373 +#: src/pages/company/CompanyDetail.tsx:328 +#: src/pages/company/SupplierPartDetail.tsx:378 #: src/pages/core/UserDetail.tsx:211 -#: src/pages/part/PartDetail.tsx:1027 +#: src/pages/part/PartDetail.tsx:1048 #: src/tables/ColumnRenderers.tsx:410 msgid "Inactive" msgstr "" @@ -2962,11 +2999,11 @@ msgstr "" #: src/components/render/Part.tsx:47 #: src/components/wizards/OrderPartsWizard.tsx:135 -#: src/pages/company/SupplierPartDetail.tsx:197 -#: src/pages/company/SupplierPartDetail.tsx:394 -#: src/pages/part/PartDetail.tsx:1015 +#: src/pages/company/SupplierPartDetail.tsx:198 +#: src/pages/company/SupplierPartDetail.tsx:399 +#: src/pages/part/PartDetail.tsx:1030 #: src/tables/bom/BomTable.tsx:444 -#: src/tables/build/BuildLineTable.tsx:222 +#: src/tables/build/BuildLineTable.tsx:223 #: src/tables/part/PartTable.tsx:108 msgid "On Order" msgstr "" @@ -2974,9 +3011,9 @@ msgstr "" #: src/components/render/Part.tsx:55 #: src/components/wizards/OrderPartsWizard.tsx:141 #: src/pages/part/PartDetail.tsx:587 -#: src/pages/part/PartDetail.tsx:1021 +#: src/pages/part/PartDetail.tsx:1036 #: src/pages/stock/StockDetail.tsx:925 -#: src/tables/part/PartTestResultTable.tsx:297 +#: src/tables/part/PartTestResultTable.tsx:305 #: src/tables/stock/StockItemTable.tsx:359 msgid "In Production" msgstr "" @@ -2987,7 +3024,7 @@ msgid "Details" msgstr "" #: src/components/render/Part.tsx:112 -#: src/components/wizards/ImportPartWizard.tsx:806 +#: src/components/wizards/ImportPartWizard.tsx:807 #: src/pages/part/PartDetail.tsx:487 #: src/tables/ColumnRenderers.tsx:233 #: src/tables/ColumnRenderers.tsx:242 @@ -3000,16 +3037,16 @@ msgstr "" #: src/components/render/Stock.tsx:114 #: src/components/render/Stock.tsx:132 #: src/forms/BuildForms.tsx:795 -#: src/forms/PurchaseOrderForms.tsx:595 +#: src/forms/PurchaseOrderForms.tsx:647 #: src/forms/StockForms.tsx:792 #: src/forms/StockForms.tsx:839 -#: src/forms/StockForms.tsx:885 -#: src/forms/StockForms.tsx:924 -#: src/forms/StockForms.tsx:960 -#: src/forms/StockForms.tsx:1003 -#: src/forms/StockForms.tsx:1047 -#: src/forms/StockForms.tsx:1095 -#: src/forms/StockForms.tsx:1139 +#: src/forms/StockForms.tsx:892 +#: src/forms/StockForms.tsx:938 +#: src/forms/StockForms.tsx:976 +#: src/forms/StockForms.tsx:1019 +#: src/forms/StockForms.tsx:1063 +#: src/forms/StockForms.tsx:1111 +#: src/forms/StockForms.tsx:1155 #: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:88 #: src/pages/core/UserDetail.tsx:158 #: src/pages/stock/StockDetail.tsx:298 @@ -3023,7 +3060,7 @@ msgstr "" #: src/components/render/Stock.tsx:99 #: src/pages/stock/StockDetail.tsx:198 #: src/pages/stock/StockDetail.tsx:930 -#: src/tables/build/BuildAllocatedStockTable.tsx:121 +#: src/tables/build/BuildAllocatedStockTable.tsx:118 #: src/tables/build/BuildOutputTable.tsx:107 #: src/tables/sales/SalesOrderAllocationTable.tsx:142 msgid "Serial Number" @@ -3034,9 +3071,9 @@ msgstr "" #: src/forms/BuildForms.tsx:240 #: src/forms/BuildForms.tsx:634 #: src/forms/BuildForms.tsx:797 -#: src/forms/PurchaseOrderForms.tsx:801 +#: src/forms/PurchaseOrderForms.tsx:853 #: src/forms/ReturnOrderForms.tsx:243 -#: src/forms/SalesOrderForms.tsx:308 +#: src/forms/SalesOrderForms.tsx:387 #: src/forms/StockForms.tsx:841 #: src/pages/part/PartStockHistoryDetail.tsx:56 #: src/pages/part/PartStockHistoryDetail.tsx:210 @@ -3046,9 +3083,9 @@ msgstr "" #: src/pages/part/pricing/PriceBreakPanel.tsx:172 #: src/pages/stock/StockDetail.tsx:258 #: src/pages/stock/StockDetail.tsx:936 -#: src/tables/build/BuildLineTable.tsx:86 +#: src/tables/build/BuildLineTable.tsx:83 #: src/tables/part/PartPurchaseOrdersTable.tsx:94 -#: src/tables/part/PartTestResultTable.tsx:269 +#: src/tables/part/PartTestResultTable.tsx:277 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:175 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:206 #: src/tables/purchasing/SupplierPriceBreakTable.tsx:69 @@ -3063,14 +3100,14 @@ msgstr "" #: src/forms/BuildForms.tsx:474 #: src/forms/StockForms.tsx:793 #: src/forms/StockForms.tsx:840 -#: src/forms/StockForms.tsx:886 -#: src/forms/StockForms.tsx:925 -#: src/forms/StockForms.tsx:961 -#: src/forms/StockForms.tsx:1004 -#: src/forms/StockForms.tsx:1048 -#: src/forms/StockForms.tsx:1096 -#: src/forms/StockForms.tsx:1140 -#: src/tables/build/BuildLineTable.tsx:96 +#: src/forms/StockForms.tsx:893 +#: src/forms/StockForms.tsx:939 +#: src/forms/StockForms.tsx:977 +#: src/forms/StockForms.tsx:1020 +#: src/forms/StockForms.tsx:1064 +#: src/forms/StockForms.tsx:1112 +#: src/forms/StockForms.tsx:1156 +#: src/tables/build/BuildLineTable.tsx:93 msgid "Batch" msgstr "" @@ -3306,10 +3343,6 @@ msgstr "" #~ msgid "Part category updated" #~ msgstr "Part category updated" -#: src/components/tables/part/PartParameterTable.tsx:41 -#~ msgid "Parameter" -#~ msgstr "Parameter" - #: src/components/tables/part/PartParameterTable.tsx:114 #~ msgid "Part parameter updated" #~ msgstr "Part parameter updated" @@ -3571,15 +3604,16 @@ msgid "Already Imported" msgstr "" #: src/components/wizards/ImportPartWizard.tsx:205 -#: src/pages/company/CompanyDetail.tsx:136 +#: src/pages/company/CompanyDetail.tsx:137 #: src/pages/company/SupplierDetail.tsx:8 -#: src/pages/company/SupplierPartDetail.tsx:130 -#: src/pages/company/SupplierPartDetail.tsx:235 -#: src/pages/company/SupplierPartDetail.tsx:364 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:156 +#: src/pages/company/SupplierPartDetail.tsx:131 +#: src/pages/company/SupplierPartDetail.tsx:236 +#: src/pages/company/SupplierPartDetail.tsx:369 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:157 #: src/tables/Filter.tsx:360 #: src/tables/company/CompanyTable.tsx:96 #: src/tables/part/PartPurchaseOrdersTable.tsx:43 +#: src/tables/purchasing/PurchaseOrderParametricTable.tsx:34 #: src/tables/purchasing/PurchaseOrderTable.tsx:109 #: src/tables/purchasing/SupplierPriceBreakTable.tsx:40 msgid "Supplier" @@ -3648,7 +3682,7 @@ msgid "Next" msgstr "" #: src/components/wizards/ImportPartWizard.tsx:540 -#: src/pages/part/PartDetail.tsx:1046 +#: src/pages/part/PartDetail.tsx:1067 #: src/tables/part/PartTable.tsx:408 msgid "Edit Part" msgstr "" @@ -3669,28 +3703,28 @@ msgstr "" msgid "Import" msgstr "" -#: src/components/wizards/ImportPartWizard.tsx:691 +#: src/components/wizards/ImportPartWizard.tsx:692 msgid "Parameters created successfully!" msgstr "" -#: src/components/wizards/ImportPartWizard.tsx:719 +#: src/components/wizards/ImportPartWizard.tsx:720 msgid "Failed to create parameters, please fix the errors and try again" msgstr "" #. placeholder {0}: supplierPart?.supplier -#: src/components/wizards/ImportPartWizard.tsx:739 +#: src/components/wizards/ImportPartWizard.tsx:740 msgid "Part imported successfully from supplier {0}." msgstr "" -#: src/components/wizards/ImportPartWizard.tsx:752 +#: src/components/wizards/ImportPartWizard.tsx:753 msgid "Open Part" msgstr "" -#: src/components/wizards/ImportPartWizard.tsx:759 +#: src/components/wizards/ImportPartWizard.tsx:760 msgid "Open Supplier Part" msgstr "" -#: src/components/wizards/ImportPartWizard.tsx:766 +#: src/components/wizards/ImportPartWizard.tsx:767 msgid "Open Manufacturer Part" msgstr "" @@ -3699,25 +3733,19 @@ msgstr "" #~ msgid "Import Part" #~ msgstr "Import Part" -#: src/components/wizards/ImportPartWizard.tsx:802 +#: src/components/wizards/ImportPartWizard.tsx:803 msgid "Import Supplier Part" msgstr "" -#: src/components/wizards/ImportPartWizard.tsx:804 +#: src/components/wizards/ImportPartWizard.tsx:805 msgid "Search Supplier Part" msgstr "" -#: src/components/wizards/ImportPartWizard.tsx:806 -#: src/pages/company/ManufacturerPartDetail.tsx:166 -#: src/pages/part/PartDetail.tsx:793 -msgid "Parameters" -msgstr "" - -#: src/components/wizards/ImportPartWizard.tsx:806 +#: src/components/wizards/ImportPartWizard.tsx:807 msgid "Confirm import" msgstr "" -#: src/components/wizards/ImportPartWizard.tsx:808 +#: src/components/wizards/ImportPartWizard.tsx:809 msgid "Done" msgstr "" @@ -3738,24 +3766,24 @@ msgid "Sales Requirements" msgstr "" #: src/components/wizards/OrderPartsWizard.tsx:129 -#: src/forms/StockForms.tsx:887 -#: src/forms/StockForms.tsx:926 -#: src/forms/StockForms.tsx:962 -#: src/forms/StockForms.tsx:1005 -#: src/forms/StockForms.tsx:1049 -#: src/forms/StockForms.tsx:1097 -#: src/forms/StockForms.tsx:1141 -#: src/pages/company/SupplierPartDetail.tsx:190 -#: src/pages/company/SupplierPartDetail.tsx:378 +#: src/forms/StockForms.tsx:894 +#: src/forms/StockForms.tsx:940 +#: src/forms/StockForms.tsx:978 +#: src/forms/StockForms.tsx:1021 +#: src/forms/StockForms.tsx:1065 +#: src/forms/StockForms.tsx:1113 +#: src/forms/StockForms.tsx:1157 +#: src/pages/company/SupplierPartDetail.tsx:191 +#: src/pages/company/SupplierPartDetail.tsx:383 #: src/pages/part/PartDetail.tsx:534 -#: src/pages/part/PartDetail.tsx:984 +#: src/pages/part/PartDetail.tsx:999 #: src/tables/Filter.tsx:92 #: src/tables/purchasing/SupplierPartTable.tsx:230 msgid "In Stock" msgstr "" #: src/components/wizards/OrderPartsWizard.tsx:146 -#: src/tables/build/BuildLineTable.tsx:404 +#: src/tables/build/BuildLineTable.tsx:405 msgid "Required Quantity" msgstr "" @@ -3847,7 +3875,7 @@ msgid "Please correct the errors in the selected parts" msgstr "" #: src/components/wizards/OrderPartsWizard.tsx:587 -#: src/tables/build/BuildLineTable.tsx:815 +#: src/tables/build/BuildLineTable.tsx:822 #: src/tables/part/PartTable.tsx:522 #: src/tables/sales/SalesOrderLineItemTable.tsx:370 msgid "Order Parts" @@ -4349,9 +4377,9 @@ msgstr "" #: src/forms/BuildForms.tsx:333 #: src/forms/BuildForms.tsx:408 #: src/forms/BuildForms.tsx:685 -#: src/tables/build/BuildAllocatedStockTable.tsx:150 +#: src/tables/build/BuildAllocatedStockTable.tsx:147 #: src/tables/build/BuildOutputTable.tsx:582 -#: src/tables/part/PartTestResultTable.tsx:272 +#: src/tables/part/PartTestResultTable.tsx:280 msgid "Build Output" msgstr "" @@ -4362,22 +4390,22 @@ msgstr "" #: src/forms/BuildForms.tsx:336 #: src/forms/BuildForms.tsx:411 #: src/forms/BuildForms.tsx:475 -#: src/forms/PurchaseOrderForms.tsx:717 +#: src/forms/PurchaseOrderForms.tsx:769 #: src/forms/ReturnOrderForms.tsx:197 #: src/forms/ReturnOrderForms.tsx:244 #: src/forms/StockForms.tsx:712 #: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:87 -#: src/pages/build/BuildDetail.tsx:222 +#: src/pages/build/BuildDetail.tsx:223 #: src/pages/core/UserDetail.tsx:151 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:168 -#: src/pages/sales/ReturnOrderDetail.tsx:135 -#: src/pages/sales/SalesOrderDetail.tsx:125 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:169 +#: src/pages/sales/ReturnOrderDetail.tsx:136 +#: src/pages/sales/SalesOrderDetail.tsx:126 #: src/pages/stock/StockDetail.tsx:170 #: src/tables/Filter.tsx:274 #: src/tables/build/BuildOutputTable.tsx:404 #: src/tables/machine/MachineListTable.tsx:387 #: src/tables/part/PartPurchaseOrdersTable.tsx:38 -#: src/tables/part/PartTestResultTable.tsx:309 +#: src/tables/part/PartTestResultTable.tsx:317 #: src/tables/sales/ReturnOrderLineItemTable.tsx:138 #: src/tables/sales/ReturnOrderLineItemTable.tsx:176 #: src/tables/settings/CustomStateTable.tsx:79 @@ -4443,18 +4471,19 @@ msgid "Build outputs have been cancelled" msgstr "" #: src/forms/BuildForms.tsx:631 -#: src/pages/build/BuildDetail.tsx:207 -#: src/pages/company/ManufacturerPartDetail.tsx:85 -#: src/pages/company/SupplierPartDetail.tsx:96 +#: src/pages/build/BuildDetail.tsx:208 +#: src/pages/company/ManufacturerPartDetail.tsx:84 +#: src/pages/company/SupplierPartDetail.tsx:97 #: src/pages/part/PartDetail.tsx:453 #: src/pages/stock/StockDetail.tsx:153 #: src/tables/bom/BomTable.tsx:134 #: src/tables/bom/UsedInTable.tsx:40 -#: src/tables/build/BuildAllocatedStockTable.tsx:108 -#: src/tables/build/BuildLineTable.tsx:336 +#: src/tables/build/BuildAllocatedStockTable.tsx:105 +#: src/tables/build/BuildLineTable.tsx:337 #: src/tables/build/BuildOrderTable.tsx:79 #: src/tables/part/PartSalesAllocationsTable.tsx:61 #: src/tables/part/RelatedPartTable.tsx:73 +#: src/tables/purchasing/ManufacturerPartParametricTable.tsx:21 #: src/tables/purchasing/ManufacturerPartTable.tsx:69 #: src/tables/purchasing/SupplierPartTable.tsx:70 #: src/tables/sales/SalesOrderAllocationTable.tsx:135 @@ -4466,47 +4495,47 @@ msgstr "" #: src/forms/BuildForms.tsx:632 #: src/forms/BuildForms.tsx:796 #: src/forms/BuildForms.tsx:897 -#: src/forms/SalesOrderForms.tsx:306 -#: src/tables/build/BuildAllocatedStockTable.tsx:139 -#: src/tables/build/BuildLineTable.tsx:182 +#: src/forms/SalesOrderForms.tsx:385 +#: src/tables/build/BuildAllocatedStockTable.tsx:136 +#: src/tables/build/BuildLineTable.tsx:183 #: src/tables/sales/SalesOrderLineItemTable.tsx:342 #: src/tables/stock/StockItemTable.tsx:338 msgid "Allocated" msgstr "" #: src/forms/BuildForms.tsx:667 -#: src/forms/SalesOrderForms.tsx:295 -#: src/pages/build/BuildDetail.tsx:108 -#: src/pages/build/BuildDetail.tsx:326 +#: src/forms/SalesOrderForms.tsx:374 +#: src/pages/build/BuildDetail.tsx:109 +#: src/pages/build/BuildDetail.tsx:327 msgid "Source Location" msgstr "" #: src/forms/BuildForms.tsx:668 -#: src/forms/SalesOrderForms.tsx:296 +#: src/forms/SalesOrderForms.tsx:375 msgid "Select the source location for the stock allocation" msgstr "" #: src/forms/BuildForms.tsx:700 -#: src/forms/SalesOrderForms.tsx:336 -#: src/tables/build/BuildLineTable.tsx:574 -#: src/tables/build/BuildLineTable.tsx:731 -#: src/tables/build/BuildLineTable.tsx:830 +#: src/forms/SalesOrderForms.tsx:415 +#: src/tables/build/BuildLineTable.tsx:575 +#: src/tables/build/BuildLineTable.tsx:738 +#: src/tables/build/BuildLineTable.tsx:837 #: src/tables/sales/SalesOrderLineItemTable.tsx:380 #: src/tables/sales/SalesOrderLineItemTable.tsx:406 msgid "Allocate Stock" msgstr "" #: src/forms/BuildForms.tsx:703 -#: src/forms/SalesOrderForms.tsx:341 +#: src/forms/SalesOrderForms.tsx:420 msgid "Stock items allocated" msgstr "" #: src/forms/BuildForms.tsx:816 #: src/forms/BuildForms.tsx:917 -#: src/tables/build/BuildAllocatedStockTable.tsx:240 -#: src/tables/build/BuildAllocatedStockTable.tsx:272 -#: src/tables/build/BuildLineTable.tsx:741 -#: src/tables/build/BuildLineTable.tsx:864 +#: src/tables/build/BuildAllocatedStockTable.tsx:243 +#: src/tables/build/BuildAllocatedStockTable.tsx:279 +#: src/tables/build/BuildLineTable.tsx:748 +#: src/tables/build/BuildLineTable.tsx:871 msgid "Consume Stock" msgstr "" @@ -4521,21 +4550,21 @@ msgstr "" #~ msgstr "Stock items consumed" #: src/forms/BuildForms.tsx:853 -#: src/tables/build/BuildLineTable.tsx:514 +#: src/tables/build/BuildLineTable.tsx:515 #: src/tables/part/PartBuildAllocationsTable.tsx:101 msgid "Fully consumed" msgstr "" #: src/forms/BuildForms.tsx:898 -#: src/tables/build/BuildLineTable.tsx:187 +#: src/tables/build/BuildLineTable.tsx:188 #: src/tables/stock/StockItemTable.tsx:367 msgid "Consumed" msgstr "" -#: src/forms/CommonForms.tsx:88 -#: src/forms/PurchaseOrderForms.tsx:125 +#: src/forms/CommonForms.tsx:92 +#: src/forms/PurchaseOrderForms.tsx:176 #: src/forms/ReturnOrderForms.tsx:138 -#: src/forms/SalesOrderForms.tsx:164 +#: src/forms/SalesOrderForms.tsx:185 msgid "Select project code for this line item" msgstr "" @@ -4543,16 +4572,16 @@ msgstr "" #~ msgid "Company updated" #~ msgstr "Company updated" -#: src/forms/PartForms.tsx:85 -#: src/forms/PartForms.tsx:207 -#: src/pages/part/CategoryDetail.tsx:124 +#: src/forms/PartForms.tsx:99 +#: src/forms/PartForms.tsx:228 +#: src/pages/part/CategoryDetail.tsx:127 #: src/pages/part/PartDetail.tsx:668 #: src/tables/part/PartCategoryTable.tsx:94 #: src/tables/part/PartTable.tsx:325 msgid "Subscribed" msgstr "" -#: src/forms/PartForms.tsx:86 +#: src/forms/PartForms.tsx:100 msgid "Subscribe to notifications for this part" msgstr "" @@ -4564,40 +4593,24 @@ msgstr "" #~ msgid "Part updated" #~ msgstr "Part updated" -#: src/forms/PartForms.tsx:193 +#: src/forms/PartForms.tsx:214 msgid "Parent part category" msgstr "" -#: src/forms/PartForms.tsx:208 +#: src/forms/PartForms.tsx:229 msgid "Subscribe to notifications for this category" msgstr "" -#: src/forms/PurchaseOrderForms.tsx:388 -msgid "Assign Batch Code and Serial Numbers" -msgstr "" - -#: src/forms/PurchaseOrderForms.tsx:390 -msgid "Assign Batch Code" -msgstr "" - -#: src/forms/PurchaseOrderForms.tsx:410 -msgid "Choose Location" -msgstr "" - -#: src/forms/PurchaseOrderForms.tsx:418 -msgid "Item Destination selected" -msgstr "" - #: src/forms/PurchaseOrderForms.tsx:421 #~ msgid "Assign Batch Code{0}" #~ msgstr "Assign Batch Code{0}" -#: src/forms/PurchaseOrderForms.tsx:428 -msgid "Part category default location selected" +#: src/forms/PurchaseOrderForms.tsx:440 +msgid "Assign Batch Code and Serial Numbers" msgstr "" -#: src/forms/PurchaseOrderForms.tsx:438 -msgid "Received stock location selected" +#: src/forms/PurchaseOrderForms.tsx:442 +msgid "Assign Batch Code" msgstr "" #: src/forms/PurchaseOrderForms.tsx:444 @@ -4605,115 +4618,131 @@ msgstr "" #~ msgid "Remove item from list" #~ msgstr "Remove item from list" -#: src/forms/PurchaseOrderForms.tsx:446 +#: src/forms/PurchaseOrderForms.tsx:462 +msgid "Choose Location" +msgstr "" + +#: src/forms/PurchaseOrderForms.tsx:470 +msgid "Item Destination selected" +msgstr "" + +#: src/forms/PurchaseOrderForms.tsx:480 +msgid "Part category default location selected" +msgstr "" + +#: src/forms/PurchaseOrderForms.tsx:490 +msgid "Received stock location selected" +msgstr "" + +#: src/forms/PurchaseOrderForms.tsx:498 msgid "Default location selected" msgstr "" -#: src/forms/PurchaseOrderForms.tsx:507 +#: src/forms/PurchaseOrderForms.tsx:559 msgid "Set Location" msgstr "" -#: src/forms/PurchaseOrderForms.tsx:524 -msgid "Set Expiry Date" -msgstr "" - -#: src/forms/PurchaseOrderForms.tsx:532 -#: src/forms/StockForms.tsx:693 -msgid "Adjust Packaging" -msgstr "" - -#: src/forms/PurchaseOrderForms.tsx:540 -#: src/forms/StockForms.tsx:684 -#: src/hooks/UseStockAdjustActions.tsx:148 -msgid "Change Status" -msgstr "" - -#: src/forms/PurchaseOrderForms.tsx:546 -msgid "Add Note" -msgstr "" - #: src/forms/PurchaseOrderForms.tsx:566 #~ msgid "Serial numbers" #~ msgstr "Serial numbers" +#: src/forms/PurchaseOrderForms.tsx:576 +msgid "Set Expiry Date" +msgstr "" + #: src/forms/PurchaseOrderForms.tsx:582 #~ msgid "Store at line item destination" #~ msgstr "Store at line item destination" -#: src/forms/PurchaseOrderForms.tsx:610 -msgid "Store at default location" +#: src/forms/PurchaseOrderForms.tsx:584 +#: src/forms/StockForms.tsx:693 +msgid "Adjust Packaging" msgstr "" -#: src/forms/PurchaseOrderForms.tsx:625 -msgid "Store at line item destination " +#: src/forms/PurchaseOrderForms.tsx:592 +#: src/forms/StockForms.tsx:684 +#: src/hooks/UseStockAdjustActions.tsx:148 +msgid "Change Status" msgstr "" -#: src/forms/PurchaseOrderForms.tsx:637 -msgid "Store with already received stock" +#: src/forms/PurchaseOrderForms.tsx:598 +msgid "Add Note" msgstr "" #: src/forms/PurchaseOrderForms.tsx:658 #~ msgid "Receive line items" #~ msgstr "Receive line items" -#: src/forms/PurchaseOrderForms.tsx:661 -#: src/pages/build/BuildDetail.tsx:340 +#: src/forms/PurchaseOrderForms.tsx:662 +msgid "Store at default location" +msgstr "" + +#: src/forms/PurchaseOrderForms.tsx:677 +msgid "Store at line item destination " +msgstr "" + +#: src/forms/PurchaseOrderForms.tsx:689 +msgid "Store with already received stock" +msgstr "" + +#: src/forms/PurchaseOrderForms.tsx:713 +#: src/pages/build/BuildDetail.tsx:341 #: src/pages/stock/StockDetail.tsx:280 #: src/pages/stock/StockDetail.tsx:952 #: src/tables/Filter.tsx:83 -#: src/tables/build/BuildAllocatedStockTable.tsx:128 +#: src/tables/build/BuildAllocatedStockTable.tsx:125 #: src/tables/build/BuildOutputTable.tsx:112 -#: src/tables/part/PartTestResultTable.tsx:260 -#: src/tables/part/PartTestResultTable.tsx:281 +#: src/tables/part/PartTestResultTable.tsx:268 +#: src/tables/part/PartTestResultTable.tsx:289 #: src/tables/sales/SalesOrderAllocationTable.tsx:149 msgid "Batch Code" msgstr "" -#: src/forms/PurchaseOrderForms.tsx:662 +#: src/forms/PurchaseOrderForms.tsx:714 msgid "Enter batch code for received items" msgstr "" -#: src/forms/PurchaseOrderForms.tsx:675 +#: src/forms/PurchaseOrderForms.tsx:727 #: src/forms/StockForms.tsx:218 msgid "Serial Numbers" msgstr "" -#: src/forms/PurchaseOrderForms.tsx:676 +#: src/forms/PurchaseOrderForms.tsx:728 msgid "Enter serial numbers for received items" msgstr "" -#: src/forms/PurchaseOrderForms.tsx:690 +#: src/forms/PurchaseOrderForms.tsx:742 #: src/pages/stock/StockDetail.tsx:382 #: src/tables/stock/StockItemTable.tsx:294 msgid "Expiry Date" msgstr "" -#: src/forms/PurchaseOrderForms.tsx:691 +#: src/forms/PurchaseOrderForms.tsx:743 msgid "Enter an expiry date for received items" msgstr "" -#: src/forms/PurchaseOrderForms.tsx:703 +#: src/forms/PurchaseOrderForms.tsx:755 #: src/forms/StockForms.tsx:728 -#: src/pages/company/SupplierPartDetail.tsx:172 -#: src/pages/company/SupplierPartDetail.tsx:236 +#: src/pages/company/SupplierPartDetail.tsx:173 +#: src/pages/company/SupplierPartDetail.tsx:237 #: src/pages/stock/StockDetail.tsx:419 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:227 msgid "Packaging" msgstr "" -#: src/forms/PurchaseOrderForms.tsx:727 -#: src/pages/company/SupplierPartDetail.tsx:120 +#: src/forms/PurchaseOrderForms.tsx:779 +#: src/pages/company/SupplierPartDetail.tsx:121 #: src/tables/ColumnRenderers.tsx:332 msgid "Note" msgstr "" -#: src/forms/PurchaseOrderForms.tsx:799 -#: src/pages/company/SupplierPartDetail.tsx:138 +#: src/forms/PurchaseOrderForms.tsx:851 +#: src/pages/company/SupplierPartDetail.tsx:139 #: src/tables/purchasing/SupplierPriceBreakTable.tsx:49 msgid "SKU" msgstr "" -#: src/forms/PurchaseOrderForms.tsx:800 +#: src/forms/PurchaseOrderForms.tsx:852 #: src/tables/part/PartPurchaseOrdersTable.tsx:127 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:213 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:283 @@ -4721,11 +4750,11 @@ msgstr "" msgid "Received" msgstr "" -#: src/forms/PurchaseOrderForms.tsx:817 +#: src/forms/PurchaseOrderForms.tsx:869 msgid "Receive Line Items" msgstr "" -#: src/forms/PurchaseOrderForms.tsx:823 +#: src/forms/PurchaseOrderForms.tsx:875 msgid "Items received" msgstr "" @@ -4737,7 +4766,35 @@ msgstr "" msgid "Item received into stock" msgstr "" -#: src/forms/SalesOrderForms.tsx:401 +#: src/forms/SalesOrderForms.tsx:208 +#: src/forms/SalesOrderForms.tsx:210 +#: src/tables/sales/SalesOrderShipmentTable.tsx:215 +msgid "Check Shipment" +msgstr "" + +#: src/forms/SalesOrderForms.tsx:211 +msgid "Marking the shipment as checked indicates that you have verified that all items included in this shipment are correct" +msgstr "" + +#: src/forms/SalesOrderForms.tsx:221 +msgid "Shipment marked as checked" +msgstr "" + +#: src/forms/SalesOrderForms.tsx:236 +#: src/forms/SalesOrderForms.tsx:238 +#: src/tables/sales/SalesOrderShipmentTable.tsx:228 +msgid "Uncheck Shipment" +msgstr "" + +#: src/forms/SalesOrderForms.tsx:239 +msgid "Marking the shipment as unchecked indicates that the shipment requires further verification" +msgstr "" + +#: src/forms/SalesOrderForms.tsx:249 +msgid "Shipment marked as unchecked" +msgstr "" + +#: src/forms/SalesOrderForms.tsx:480 msgid "Leave blank to use the order address" msgstr "" @@ -4792,150 +4849,150 @@ msgstr "" msgid "Return" msgstr "" -#: src/forms/StockForms.tsx:963 +#: src/forms/StockForms.tsx:979 #: src/pages/Index/Scan.tsx:182 msgid "Count" msgstr "" -#: src/forms/StockForms.tsx:1246 +#: src/forms/StockForms.tsx:1262 #: src/hooks/UseStockAdjustActions.tsx:108 msgid "Add Stock" msgstr "" -#: src/forms/StockForms.tsx:1247 +#: src/forms/StockForms.tsx:1263 msgid "Stock added" msgstr "" -#: src/forms/StockForms.tsx:1250 +#: src/forms/StockForms.tsx:1266 msgid "Increase the quantity of the selected stock items by a given amount." msgstr "" -#: src/forms/StockForms.tsx:1261 +#: src/forms/StockForms.tsx:1277 #: src/hooks/UseStockAdjustActions.tsx:118 msgid "Remove Stock" msgstr "" -#: src/forms/StockForms.tsx:1262 +#: src/forms/StockForms.tsx:1278 msgid "Stock removed" msgstr "" -#: src/forms/StockForms.tsx:1265 +#: src/forms/StockForms.tsx:1281 msgid "Decrease the quantity of the selected stock items by a given amount." msgstr "" -#: src/forms/StockForms.tsx:1276 +#: src/forms/StockForms.tsx:1292 #: src/hooks/UseStockAdjustActions.tsx:128 msgid "Transfer Stock" msgstr "" -#: src/forms/StockForms.tsx:1277 +#: src/forms/StockForms.tsx:1293 msgid "Stock transferred" msgstr "" -#: src/forms/StockForms.tsx:1280 +#: src/forms/StockForms.tsx:1296 msgid "Transfer selected items to the specified location." msgstr "" -#: src/forms/StockForms.tsx:1291 +#: src/forms/StockForms.tsx:1307 #: src/hooks/UseStockAdjustActions.tsx:168 msgid "Return Stock" msgstr "" -#: src/forms/StockForms.tsx:1292 +#: src/forms/StockForms.tsx:1308 msgid "Stock returned" msgstr "" -#: src/forms/StockForms.tsx:1295 +#: src/forms/StockForms.tsx:1311 msgid "Return selected items into stock, to the specified location." msgstr "" -#: src/forms/StockForms.tsx:1306 +#: src/forms/StockForms.tsx:1322 #: src/hooks/UseStockAdjustActions.tsx:98 msgid "Count Stock" msgstr "" -#: src/forms/StockForms.tsx:1307 +#: src/forms/StockForms.tsx:1323 msgid "Stock counted" msgstr "" -#: src/forms/StockForms.tsx:1310 +#: src/forms/StockForms.tsx:1326 msgid "Count the selected stock items, and adjust the quantity accordingly." msgstr "" -#: src/forms/StockForms.tsx:1321 +#: src/forms/StockForms.tsx:1337 msgid "Change Stock Status" msgstr "" -#: src/forms/StockForms.tsx:1322 +#: src/forms/StockForms.tsx:1338 msgid "Stock status changed" msgstr "" -#: src/forms/StockForms.tsx:1325 +#: src/forms/StockForms.tsx:1341 msgid "Change the status of the selected stock items." msgstr "" -#: src/forms/StockForms.tsx:1336 +#: src/forms/StockForms.tsx:1352 #: src/hooks/UseStockAdjustActions.tsx:138 msgid "Merge Stock" msgstr "" -#: src/forms/StockForms.tsx:1337 +#: src/forms/StockForms.tsx:1353 msgid "Stock merged" msgstr "" -#: src/forms/StockForms.tsx:1339 +#: src/forms/StockForms.tsx:1355 msgid "Merge Stock Items" msgstr "" -#: src/forms/StockForms.tsx:1341 +#: src/forms/StockForms.tsx:1357 msgid "Merge operation cannot be reversed" msgstr "" -#: src/forms/StockForms.tsx:1342 +#: src/forms/StockForms.tsx:1358 msgid "Tracking information may be lost when merging items" msgstr "" -#: src/forms/StockForms.tsx:1343 +#: src/forms/StockForms.tsx:1359 msgid "Supplier information may be lost when merging items" msgstr "" -#: src/forms/StockForms.tsx:1361 +#: src/forms/StockForms.tsx:1377 msgid "Assign Stock to Customer" msgstr "" -#: src/forms/StockForms.tsx:1362 +#: src/forms/StockForms.tsx:1378 msgid "Stock assigned to customer" msgstr "" -#: src/forms/StockForms.tsx:1372 +#: src/forms/StockForms.tsx:1388 msgid "Delete Stock Items" msgstr "" -#: src/forms/StockForms.tsx:1373 +#: src/forms/StockForms.tsx:1389 msgid "Stock deleted" msgstr "" -#: src/forms/StockForms.tsx:1376 +#: src/forms/StockForms.tsx:1392 msgid "This operation will permanently delete the selected stock items." msgstr "" -#: src/forms/StockForms.tsx:1385 +#: src/forms/StockForms.tsx:1401 msgid "Parent stock location" msgstr "" -#: src/forms/StockForms.tsx:1512 +#: src/forms/StockForms.tsx:1528 msgid "Find Serial Number" msgstr "" -#: src/forms/StockForms.tsx:1523 +#: src/forms/StockForms.tsx:1539 msgid "No matching items" msgstr "" -#: src/forms/StockForms.tsx:1529 +#: src/forms/StockForms.tsx:1545 msgid "Multiple matching items" msgstr "" -#: src/forms/StockForms.tsx:1538 +#: src/forms/StockForms.tsx:1554 msgid "Invalid response from server" msgstr "" @@ -4953,7 +5010,6 @@ msgstr "" #: src/tables/FilterSelectDrawer.tsx:137 #: src/tables/FilterSelectDrawer.tsx:149 #: src/tables/part/PartTestResultTable.tsx:206 -#: src/tables/purchasing/ManufacturerPartParameterTable.tsx:42 #: src/tables/stock/StockItemTestResultTable.tsx:207 msgid "Value" msgstr "" @@ -5244,7 +5300,7 @@ msgid "Delete selected stock items" msgstr "" #: src/hooks/UseStockAdjustActions.tsx:205 -#: src/pages/part/PartDetail.tsx:1137 +#: src/pages/part/PartDetail.tsx:1158 msgid "Stock Actions" msgstr "" @@ -5932,6 +5988,9 @@ msgstr "" #: src/pages/Index/Settings/AccountSettings/MFASettings.tsx:310 #: src/pages/Index/Settings/AccountSettings/MFASettings.tsx:401 +#: src/tables/build/BuildAllocatedStockTable.tsx:181 +#: src/tables/build/BuildLineTable.tsx:668 +#: src/tables/sales/SalesOrderAllocationTable.tsx:220 msgid "Confirm Removal" msgstr "" @@ -6394,30 +6453,34 @@ msgid "Email Messages" msgstr "" #: src/pages/Index/Settings/AdminCenter/HomePanel.tsx:22 -msgid "Active Alerts" -msgstr "" +#~ msgid "Active Alerts" +#~ msgstr "Active Alerts" #: src/pages/Index/Settings/AdminCenter/HomePanel.tsx:27 -msgid "Inactive Alerts" +#~ msgid "Inactive Alerts" +#~ msgstr "Inactive Alerts" + +#: src/pages/Index/Settings/AdminCenter/HomePanel.tsx:36 +msgid "System Status" msgstr "" -#: src/pages/Index/Settings/AdminCenter/HomePanel.tsx:38 +#: src/pages/Index/Settings/AdminCenter/HomePanel.tsx:47 msgid "Admin Center Information" msgstr "" -#: src/pages/Index/Settings/AdminCenter/HomePanel.tsx:44 +#: src/pages/Index/Settings/AdminCenter/HomePanel.tsx:53 msgid "The home panel (and the whole Admin Center) is a new feature starting with the new UI and was previously (before 1.0) not available." msgstr "" -#: src/pages/Index/Settings/AdminCenter/HomePanel.tsx:51 +#: src/pages/Index/Settings/AdminCenter/HomePanel.tsx:60 msgid "The admin center provides a centralized location for all administration functionality and is meant to replace all interaction with the (django) backend admin interface." msgstr "" -#: src/pages/Index/Settings/AdminCenter/HomePanel.tsx:58 +#: src/pages/Index/Settings/AdminCenter/HomePanel.tsx:67 msgid "Please open feature requests (after checking the tracker) for any existing backend admin functionality you are missing in this UI. The backend admin interface should be used carefully and seldom." msgstr "" -#: src/pages/Index/Settings/AdminCenter/HomePanel.tsx:76 +#: src/pages/Index/Settings/AdminCenter/HomePanel.tsx:85 msgid "Quick Actions" msgstr "" @@ -6476,11 +6539,11 @@ msgstr "" #: src/pages/Index/Settings/AdminCenter/Index.tsx:195 #: src/pages/part/CategoryDetail.tsx:313 -msgid "Part Parameters" -msgstr "" +#~ msgid "Part Parameters" +#~ msgstr "Part Parameters" #: src/pages/Index/Settings/AdminCenter/Index.tsx:202 -#: src/pages/part/CategoryDetail.tsx:306 +#: src/pages/part/CategoryDetail.tsx:329 msgid "Category Parameters" msgstr "" @@ -6494,7 +6557,7 @@ msgstr "" #: src/pages/Index/Settings/AdminCenter/Index.tsx:235 #: src/pages/Index/Settings/AdminCenter/MachineManagementPanel.tsx:52 -#: src/tables/machine/MachineTypeTable.tsx:325 +#: src/tables/machine/MachineTypeTable.tsx:323 msgid "Machines" msgstr "" @@ -6507,8 +6570,8 @@ msgid "Data Management" msgstr "" #: src/pages/Index/Settings/AdminCenter/Index.tsx:270 -#: src/pages/Index/Settings/SystemSettings.tsx:175 -#: src/pages/Index/Settings/UserSettings.tsx:118 +#: src/pages/Index/Settings/SystemSettings.tsx:176 +#: src/pages/Index/Settings/UserSettings.tsx:119 msgid "Reporting" msgstr "" @@ -6709,11 +6772,11 @@ msgstr "" msgid "The settings below are specific to each available plugin" msgstr "" -#: src/pages/Index/Settings/SystemSettings.tsx:77 +#: src/pages/Index/Settings/SystemSettings.tsx:78 msgid "Authentication" msgstr "" -#: src/pages/Index/Settings/SystemSettings.tsx:103 +#: src/pages/Index/Settings/SystemSettings.tsx:104 msgid "Barcodes" msgstr "" @@ -6725,12 +6788,12 @@ msgstr "" #~ msgid "This panel is a placeholder." #~ msgstr "This panel is a placeholder." -#: src/pages/Index/Settings/SystemSettings.tsx:127 -#: src/pages/Index/Settings/UserSettings.tsx:112 +#: src/pages/Index/Settings/SystemSettings.tsx:128 +#: src/pages/Index/Settings/UserSettings.tsx:113 msgid "The settings below are specific to each available notification method" msgstr "" -#: src/pages/Index/Settings/SystemSettings.tsx:133 +#: src/pages/Index/Settings/SystemSettings.tsx:134 msgid "Pricing" msgstr "" @@ -6738,7 +6801,7 @@ msgstr "" #~ msgid "Exchange Rates" #~ msgstr "Exchange Rates" -#: src/pages/Index/Settings/SystemSettings.tsx:169 +#: src/pages/Index/Settings/SystemSettings.tsx:170 msgid "Labels" msgstr "" @@ -6790,15 +6853,15 @@ msgstr "" #~ msgid "Delete notifications" #~ msgstr "Delete notifications" -#: src/pages/build/BuildDetail.tsx:69 +#: src/pages/build/BuildDetail.tsx:70 msgid "No Required Items" msgstr "" -#: src/pages/build/BuildDetail.tsx:71 +#: src/pages/build/BuildDetail.tsx:72 msgid "This build order does not have any required items." msgstr "" -#: src/pages/build/BuildDetail.tsx:72 +#: src/pages/build/BuildDetail.tsx:73 msgid "The assembled part may not have a Bill of Materials (BOM) defined, or the BOM is empty." msgstr "" @@ -6826,7 +6889,7 @@ msgstr "" #~ msgid "Build Order updated" #~ msgstr "Build Order updated" -#: src/pages/build/BuildDetail.tsx:215 +#: src/pages/build/BuildDetail.tsx:216 #: src/pages/part/PartDetail.tsx:480 #: src/pages/stock/StockDetail.tsx:161 #: src/tables/bom/UsedInTable.tsx:44 @@ -6843,10 +6906,10 @@ msgstr "" #~ msgid "Duplicate build order" #~ msgstr "Duplicate build order" -#: src/pages/build/BuildDetail.tsx:228 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:174 -#: src/pages/sales/ReturnOrderDetail.tsx:141 -#: src/pages/sales/SalesOrderDetail.tsx:131 +#: src/pages/build/BuildDetail.tsx:229 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:175 +#: src/pages/sales/ReturnOrderDetail.tsx:142 +#: src/pages/sales/SalesOrderDetail.tsx:132 #: src/pages/stock/StockDetail.tsx:176 msgid "Custom Status" msgstr "" @@ -6855,9 +6918,9 @@ msgstr "" #~ msgid "Delete build order" #~ msgstr "Delete build order" -#: src/pages/build/BuildDetail.tsx:237 -#: src/pages/build/BuildDetail.tsx:723 -#: src/pages/build/BuildIndex.tsx:28 +#: src/pages/build/BuildDetail.tsx:238 +#: src/pages/build/BuildDetail.tsx:728 +#: src/pages/build/BuildIndex.tsx:34 #: src/pages/stock/LocationDetail.tsx:140 #: src/tables/build/BuildOrderTable.tsx:123 #: src/tables/build/BuildOrderTable.tsx:183 @@ -6865,57 +6928,57 @@ msgstr "" msgid "External" msgstr "" -#: src/pages/build/BuildDetail.tsx:244 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:141 -#: src/pages/sales/ReturnOrderDetail.tsx:108 -#: src/pages/sales/SalesOrderDetail.tsx:98 +#: src/pages/build/BuildDetail.tsx:245 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:142 +#: src/pages/sales/ReturnOrderDetail.tsx:109 +#: src/pages/sales/SalesOrderDetail.tsx:99 #: src/tables/ColumnRenderers.tsx:321 -#: src/tables/build/BuildAllocatedStockTable.tsx:115 -#: src/tables/build/BuildLineTable.tsx:352 +#: src/tables/build/BuildAllocatedStockTable.tsx:112 +#: src/tables/build/BuildLineTable.tsx:353 msgid "Reference" msgstr "" -#: src/pages/build/BuildDetail.tsx:258 +#: src/pages/build/BuildDetail.tsx:259 msgid "Parent Build" msgstr "" -#: src/pages/build/BuildDetail.tsx:269 +#: src/pages/build/BuildDetail.tsx:270 msgid "Build Quantity" msgstr "" -#: src/pages/build/BuildDetail.tsx:275 +#: src/pages/build/BuildDetail.tsx:276 #: src/pages/part/PartDetail.tsx:598 #: src/tables/bom/BomTable.tsx:365 #: src/tables/bom/BomTable.tsx:407 msgid "Can Build" msgstr "" -#: src/pages/build/BuildDetail.tsx:284 -#: src/pages/build/BuildDetail.tsx:474 +#: src/pages/build/BuildDetail.tsx:285 +#: src/pages/build/BuildDetail.tsx:475 msgid "Completed Outputs" msgstr "" -#: src/pages/build/BuildDetail.tsx:301 +#: src/pages/build/BuildDetail.tsx:302 #: src/tables/Filter.tsx:381 #: src/tables/build/BuildOrderTable.tsx:143 msgid "Issued By" msgstr "" -#: src/pages/build/BuildDetail.tsx:309 +#: src/pages/build/BuildDetail.tsx:310 #: src/pages/part/PartDetail.tsx:691 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:261 -#: src/pages/sales/ReturnOrderDetail.tsx:239 -#: src/pages/sales/SalesOrderDetail.tsx:232 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:262 +#: src/pages/sales/ReturnOrderDetail.tsx:240 +#: src/pages/sales/SalesOrderDetail.tsx:233 #: src/tables/ColumnRenderers.tsx:464 #: src/tables/Filter.tsx:319 msgid "Responsible" msgstr "" -#: src/pages/build/BuildDetail.tsx:327 +#: src/pages/build/BuildDetail.tsx:328 msgid "Any location" msgstr "" -#: src/pages/build/BuildDetail.tsx:334 +#: src/pages/build/BuildDetail.tsx:335 msgid "Destination Location" msgstr "" @@ -6924,24 +6987,24 @@ msgstr "" #~ msgid "Test Statistics" #~ msgstr "Test Statistics" -#: src/pages/build/BuildDetail.tsx:350 +#: src/pages/build/BuildDetail.tsx:351 #: src/tables/settings/ApiTokenTable.tsx:97 #: src/tables/settings/PendingTasksTable.tsx:41 msgid "Created" msgstr "" -#: src/pages/build/BuildDetail.tsx:358 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:286 -#: src/pages/sales/ReturnOrderDetail.tsx:265 -#: src/pages/sales/SalesOrderDetail.tsx:257 +#: src/pages/build/BuildDetail.tsx:359 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:287 +#: src/pages/sales/ReturnOrderDetail.tsx:266 +#: src/pages/sales/SalesOrderDetail.tsx:258 #: src/tables/ColumnRenderers.tsx:486 msgid "Start Date" msgstr "" -#: src/pages/build/BuildDetail.tsx:366 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:294 -#: src/pages/sales/ReturnOrderDetail.tsx:273 -#: src/pages/sales/SalesOrderDetail.tsx:265 +#: src/pages/build/BuildDetail.tsx:367 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:295 +#: src/pages/sales/ReturnOrderDetail.tsx:274 +#: src/pages/sales/SalesOrderDetail.tsx:266 #: src/tables/ColumnRenderers.tsx:494 #: src/tables/part/PartPurchaseOrdersTable.tsx:101 #: src/tables/sales/ReturnOrderLineItemTable.tsx:154 @@ -6954,185 +7017,185 @@ msgstr "" #~ msgstr "Reporting Actions" #: src/pages/build/BuildDetail.tsx:374 +#~ msgid "Print build report" +#~ msgstr "Print build report" + +#: src/pages/build/BuildDetail.tsx:375 #: src/tables/build/BuildOrderTable.tsx:93 #: src/tables/sales/SalesOrderLineItemTable.tsx:347 msgid "Completed" msgstr "" -#: src/pages/build/BuildDetail.tsx:374 -#~ msgid "Print build report" -#~ msgstr "Print build report" - -#: src/pages/build/BuildDetail.tsx:410 +#: src/pages/build/BuildDetail.tsx:411 msgid "Build Details" msgstr "" -#: src/pages/build/BuildDetail.tsx:416 +#: src/pages/build/BuildDetail.tsx:417 msgid "Required Parts" msgstr "" -#: src/pages/build/BuildDetail.tsx:428 -#: src/pages/sales/SalesOrderDetail.tsx:407 -#: src/pages/sales/SalesOrderShipmentDetail.tsx:261 +#: src/pages/build/BuildDetail.tsx:429 +#: src/pages/sales/SalesOrderDetail.tsx:408 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:259 #: src/tables/part/PartSalesAllocationsTable.tsx:73 msgid "Allocated Stock" msgstr "" -#: src/pages/build/BuildDetail.tsx:444 +#: src/pages/build/BuildDetail.tsx:445 msgid "Consumed Stock" msgstr "" -#: src/pages/build/BuildDetail.tsx:461 +#: src/pages/build/BuildDetail.tsx:462 msgid "Incomplete Outputs" msgstr "" -#: src/pages/build/BuildDetail.tsx:489 +#: src/pages/build/BuildDetail.tsx:490 msgid "External Orders" msgstr "" -#: src/pages/build/BuildDetail.tsx:503 +#: src/pages/build/BuildDetail.tsx:504 msgid "Child Build Orders" msgstr "" -#: src/pages/build/BuildDetail.tsx:513 -#: src/pages/part/PartDetail.tsx:937 +#: src/pages/build/BuildDetail.tsx:514 +#: src/pages/part/PartDetail.tsx:926 #: src/pages/stock/StockDetail.tsx:587 #: src/tables/build/BuildOutputTable.tsx:654 #: src/tables/stock/StockItemTestResultTable.tsx:173 msgid "Test Results" msgstr "" -#: src/pages/build/BuildDetail.tsx:550 +#: src/pages/build/BuildDetail.tsx:555 msgid "Edit Build Order" msgstr "" -#: src/pages/build/BuildDetail.tsx:572 +#: src/pages/build/BuildDetail.tsx:577 #: src/tables/build/BuildOrderTable.tsx:207 #: src/tables/build/BuildOrderTable.tsx:223 msgid "Add Build Order" msgstr "" -#: src/pages/build/BuildDetail.tsx:582 +#: src/pages/build/BuildDetail.tsx:587 msgid "Cancel Build Order" msgstr "" -#: src/pages/build/BuildDetail.tsx:584 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:416 -#: src/pages/sales/ReturnOrderDetail.tsx:427 -#: src/pages/sales/SalesOrderDetail.tsx:454 +#: src/pages/build/BuildDetail.tsx:589 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:421 +#: src/pages/sales/ReturnOrderDetail.tsx:432 +#: src/pages/sales/SalesOrderDetail.tsx:459 msgid "Order cancelled" msgstr "" -#: src/pages/build/BuildDetail.tsx:585 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:415 -#: src/pages/sales/ReturnOrderDetail.tsx:426 -#: src/pages/sales/SalesOrderDetail.tsx:453 +#: src/pages/build/BuildDetail.tsx:590 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:420 +#: src/pages/sales/ReturnOrderDetail.tsx:431 +#: src/pages/sales/SalesOrderDetail.tsx:458 msgid "Cancel this order" msgstr "" -#: src/pages/build/BuildDetail.tsx:594 +#: src/pages/build/BuildDetail.tsx:599 msgid "Hold Build Order" msgstr "" -#: src/pages/build/BuildDetail.tsx:596 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:423 -#: src/pages/sales/ReturnOrderDetail.tsx:434 -#: src/pages/sales/SalesOrderDetail.tsx:461 +#: src/pages/build/BuildDetail.tsx:601 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:428 +#: src/pages/sales/ReturnOrderDetail.tsx:439 +#: src/pages/sales/SalesOrderDetail.tsx:466 msgid "Place this order on hold" msgstr "" -#: src/pages/build/BuildDetail.tsx:597 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:424 -#: src/pages/sales/ReturnOrderDetail.tsx:435 -#: src/pages/sales/SalesOrderDetail.tsx:462 +#: src/pages/build/BuildDetail.tsx:602 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:429 +#: src/pages/sales/ReturnOrderDetail.tsx:440 +#: src/pages/sales/SalesOrderDetail.tsx:467 msgid "Order placed on hold" msgstr "" -#: src/pages/build/BuildDetail.tsx:602 +#: src/pages/build/BuildDetail.tsx:607 msgid "Issue Build Order" msgstr "" -#: src/pages/build/BuildDetail.tsx:604 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:407 -#: src/pages/sales/ReturnOrderDetail.tsx:418 -#: src/pages/sales/SalesOrderDetail.tsx:445 +#: src/pages/build/BuildDetail.tsx:609 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:412 +#: src/pages/sales/ReturnOrderDetail.tsx:423 +#: src/pages/sales/SalesOrderDetail.tsx:450 msgid "Issue this order" msgstr "" -#: src/pages/build/BuildDetail.tsx:605 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:408 -#: src/pages/sales/ReturnOrderDetail.tsx:419 -#: src/pages/sales/SalesOrderDetail.tsx:446 +#: src/pages/build/BuildDetail.tsx:610 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:413 +#: src/pages/sales/ReturnOrderDetail.tsx:424 +#: src/pages/sales/SalesOrderDetail.tsx:451 msgid "Order issued" msgstr "" -#: src/pages/build/BuildDetail.tsx:624 +#: src/pages/build/BuildDetail.tsx:629 msgid "Complete Build Order" msgstr "" -#: src/pages/build/BuildDetail.tsx:630 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:436 -#: src/pages/sales/ReturnOrderDetail.tsx:442 -#: src/pages/sales/SalesOrderDetail.tsx:480 +#: src/pages/build/BuildDetail.tsx:635 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:441 +#: src/pages/sales/ReturnOrderDetail.tsx:447 +#: src/pages/sales/SalesOrderDetail.tsx:485 msgid "Mark this order as complete" msgstr "" -#: src/pages/build/BuildDetail.tsx:633 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:430 -#: src/pages/sales/ReturnOrderDetail.tsx:443 -#: src/pages/sales/SalesOrderDetail.tsx:481 +#: src/pages/build/BuildDetail.tsx:638 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:435 +#: src/pages/sales/ReturnOrderDetail.tsx:448 +#: src/pages/sales/SalesOrderDetail.tsx:486 msgid "Order completed" msgstr "" -#: src/pages/build/BuildDetail.tsx:660 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:459 -#: src/pages/sales/ReturnOrderDetail.tsx:470 -#: src/pages/sales/SalesOrderDetail.tsx:516 +#: src/pages/build/BuildDetail.tsx:665 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:464 +#: src/pages/sales/ReturnOrderDetail.tsx:475 +#: src/pages/sales/SalesOrderDetail.tsx:521 msgid "Issue Order" msgstr "" -#: src/pages/build/BuildDetail.tsx:667 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:466 -#: src/pages/sales/ReturnOrderDetail.tsx:477 -#: src/pages/sales/SalesOrderDetail.tsx:530 +#: src/pages/build/BuildDetail.tsx:672 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:471 +#: src/pages/sales/ReturnOrderDetail.tsx:482 +#: src/pages/sales/SalesOrderDetail.tsx:535 msgid "Complete Order" msgstr "" -#: src/pages/build/BuildDetail.tsx:686 +#: src/pages/build/BuildDetail.tsx:691 msgid "Build Order Actions" msgstr "" -#: src/pages/build/BuildDetail.tsx:691 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:489 -#: src/pages/sales/ReturnOrderDetail.tsx:500 -#: src/pages/sales/SalesOrderDetail.tsx:554 +#: src/pages/build/BuildDetail.tsx:696 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:494 +#: src/pages/sales/ReturnOrderDetail.tsx:505 +#: src/pages/sales/SalesOrderDetail.tsx:559 msgid "Edit order" msgstr "" -#: src/pages/build/BuildDetail.tsx:695 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:497 -#: src/pages/sales/ReturnOrderDetail.tsx:506 -#: src/pages/sales/SalesOrderDetail.tsx:559 -msgid "Duplicate order" -msgstr "" - -#: src/pages/build/BuildDetail.tsx:699 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:500 +#: src/pages/build/BuildDetail.tsx:700 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:502 #: src/pages/sales/ReturnOrderDetail.tsx:511 -#: src/pages/sales/SalesOrderDetail.tsx:562 -msgid "Hold order" +#: src/pages/sales/SalesOrderDetail.tsx:564 +msgid "Duplicate order" msgstr "" #: src/pages/build/BuildDetail.tsx:704 #: src/pages/purchasing/PurchaseOrderDetail.tsx:505 #: src/pages/sales/ReturnOrderDetail.tsx:516 #: src/pages/sales/SalesOrderDetail.tsx:567 +msgid "Hold order" +msgstr "" + +#: src/pages/build/BuildDetail.tsx:709 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:510 +#: src/pages/sales/ReturnOrderDetail.tsx:521 +#: src/pages/sales/SalesOrderDetail.tsx:572 msgid "Cancel order" msgstr "" -#: src/pages/build/BuildDetail.tsx:742 +#: src/pages/build/BuildDetail.tsx:747 #: src/pages/stock/StockDetail.tsx:344 -#: src/tables/build/BuildAllocatedStockTable.tsx:85 +#: src/tables/build/BuildAllocatedStockTable.tsx:82 #: src/tables/part/PartBuildAllocationsTable.tsx:45 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:157 #: src/tables/stock/StockTrackingTable.tsx:109 @@ -7143,7 +7206,7 @@ msgstr "" #~ msgid "Build order created" #~ msgstr "Build order created" -#: src/pages/build/BuildIndex.tsx:29 +#: src/pages/build/BuildIndex.tsx:35 #: src/tables/build/BuildOrderTable.tsx:184 msgid "Show external build orders" msgstr "" @@ -7152,61 +7215,82 @@ msgstr "" #~ msgid "New Build Order" #~ msgstr "New Build Order" -#: src/pages/build/BuildIndex.tsx:83 -#: src/pages/purchasing/PurchasingIndex.tsx:69 -#: src/pages/sales/SalesIndex.tsx:92 -#: src/pages/sales/SalesIndex.tsx:125 +#: src/pages/build/BuildIndex.tsx:74 +#: src/pages/part/CategoryDetail.tsx:292 +#: src/pages/purchasing/PurchasingIndex.tsx:74 +#: src/pages/purchasing/PurchasingIndex.tsx:107 +#: src/pages/purchasing/PurchasingIndex.tsx:135 +#: src/pages/purchasing/PurchasingIndex.tsx:156 +#: src/pages/purchasing/PurchasingIndex.tsx:184 +#: src/pages/sales/SalesIndex.tsx:61 +#: src/pages/sales/SalesIndex.tsx:107 +#: src/pages/sales/SalesIndex.tsx:140 msgid "Table View" msgstr "" -#: src/pages/build/BuildIndex.tsx:86 -#: src/pages/purchasing/PurchasingIndex.tsx:72 -#: src/pages/sales/SalesIndex.tsx:95 -#: src/pages/sales/SalesIndex.tsx:128 +#: src/pages/build/BuildIndex.tsx:80 +#: src/pages/purchasing/PurchasingIndex.tsx:80 +#: src/pages/sales/SalesIndex.tsx:67 +#: src/pages/sales/SalesIndex.tsx:113 msgid "Calendar View" msgstr "" -#: src/pages/company/CompanyDetail.tsx:99 +#: src/pages/build/BuildIndex.tsx:86 +#: src/pages/part/CategoryDetail.tsx:306 +#: src/pages/purchasing/PurchasingIndex.tsx:92 +#: src/pages/purchasing/PurchasingIndex.tsx:118 +#: src/pages/purchasing/PurchasingIndex.tsx:141 +#: src/pages/purchasing/PurchasingIndex.tsx:167 +#: src/pages/purchasing/PurchasingIndex.tsx:190 +#: src/pages/sales/SalesIndex.tsx:79 +#: src/pages/sales/SalesIndex.tsx:125 +#: src/pages/sales/SalesIndex.tsx:151 +msgid "Parametric View" +msgstr "" + +#: src/pages/company/CompanyDetail.tsx:100 msgid "Website" msgstr "" -#: src/pages/company/CompanyDetail.tsx:107 +#: src/pages/company/CompanyDetail.tsx:108 msgid "Phone Number" msgstr "" -#: src/pages/company/CompanyDetail.tsx:114 +#: src/pages/company/CompanyDetail.tsx:115 msgid "Email Address" msgstr "" -#: src/pages/company/CompanyDetail.tsx:121 +#: src/pages/company/CompanyDetail.tsx:122 msgid "Tax ID" msgstr "" -#: src/pages/company/CompanyDetail.tsx:131 +#: src/pages/company/CompanyDetail.tsx:132 msgid "Default Currency" msgstr "" -#: src/pages/company/CompanyDetail.tsx:142 +#: src/pages/company/CompanyDetail.tsx:143 #: src/pages/company/ManufacturerDetail.tsx:8 -#: src/pages/company/ManufacturerPartDetail.tsx:104 -#: src/pages/company/ManufacturerPartDetail.tsx:280 -#: src/pages/company/SupplierPartDetail.tsx:152 +#: src/pages/company/ManufacturerPartDetail.tsx:103 +#: src/pages/company/ManufacturerPartDetail.tsx:271 +#: src/pages/company/SupplierPartDetail.tsx:153 #: src/tables/Filter.tsx:347 #: src/tables/company/CompanyTable.tsx:101 #: src/tables/purchasing/SupplierPartTable.tsx:89 msgid "Manufacturer" msgstr "" -#: src/pages/company/CompanyDetail.tsx:148 +#: src/pages/company/CompanyDetail.tsx:149 #: src/pages/company/CustomerDetail.tsx:8 #: src/pages/part/pricing/SaleHistoryPanel.tsx:31 -#: src/pages/sales/ReturnOrderDetail.tsx:123 -#: src/pages/sales/SalesOrderDetail.tsx:113 -#: src/pages/sales/SalesOrderShipmentDetail.tsx:113 +#: src/pages/sales/ReturnOrderDetail.tsx:124 +#: src/pages/sales/SalesOrderDetail.tsx:114 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:111 #: src/pages/stock/StockDetail.tsx:370 #: src/tables/company/CompanyTable.tsx:106 +#: src/tables/sales/ReturnOrderParametricTable.tsx:32 #: src/tables/sales/ReturnOrderTable.tsx:108 -#: src/tables/sales/SalesOrderShipmentTable.tsx:111 +#: src/tables/sales/SalesOrderParametricTable.tsx:32 +#: src/tables/sales/SalesOrderShipmentTable.tsx:132 #: src/tables/sales/SalesOrderTable.tsx:133 #: src/tables/stock/StockTrackingTable.tsx:153 msgid "Customer" @@ -7216,11 +7300,11 @@ msgstr "" #~ msgid "Edit company" #~ msgstr "Edit company" -#: src/pages/company/CompanyDetail.tsx:181 +#: src/pages/company/CompanyDetail.tsx:182 msgid "Company Details" msgstr "" -#: src/pages/company/CompanyDetail.tsx:187 +#: src/pages/company/CompanyDetail.tsx:188 msgid "Supplied Parts" msgstr "" @@ -7228,79 +7312,79 @@ msgstr "" #~ msgid "Delete company" #~ msgstr "Delete company" -#: src/pages/company/CompanyDetail.tsx:194 +#: src/pages/company/CompanyDetail.tsx:195 msgid "Manufactured Parts" msgstr "" -#: src/pages/company/CompanyDetail.tsx:241 +#: src/pages/company/CompanyDetail.tsx:242 msgid "Assigned Stock" msgstr "" -#: src/pages/company/CompanyDetail.tsx:282 +#: src/pages/company/CompanyDetail.tsx:287 #: src/tables/company/CompanyTable.tsx:82 msgid "Edit Company" msgstr "" -#: src/pages/company/CompanyDetail.tsx:290 +#: src/pages/company/CompanyDetail.tsx:295 msgid "Delete Company" msgstr "" -#: src/pages/company/CompanyDetail.tsx:305 +#: src/pages/company/CompanyDetail.tsx:310 msgid "Company Actions" msgstr "" -#: src/pages/company/ManufacturerPartDetail.tsx:78 -#: src/pages/company/SupplierPartDetail.tsx:89 +#: src/pages/company/ManufacturerPartDetail.tsx:77 +#: src/pages/company/SupplierPartDetail.tsx:90 msgid "Internal Part" msgstr "" -#: src/pages/company/ManufacturerPartDetail.tsx:112 +#: src/pages/company/ManufacturerPartDetail.tsx:111 msgid "Manufacturer Part Number" msgstr "" -#: src/pages/company/ManufacturerPartDetail.tsx:129 -#: src/pages/company/SupplierPartDetail.tsx:113 +#: src/pages/company/ManufacturerPartDetail.tsx:128 +#: src/pages/company/SupplierPartDetail.tsx:114 msgid "External Link" msgstr "" -#: src/pages/company/ManufacturerPartDetail.tsx:148 -#: src/pages/company/SupplierPartDetail.tsx:232 +#: src/pages/company/ManufacturerPartDetail.tsx:147 +#: src/pages/company/SupplierPartDetail.tsx:233 #: src/pages/part/PartDetail.tsx:787 msgid "Part Details" msgstr "" -#: src/pages/company/ManufacturerPartDetail.tsx:151 +#: src/pages/company/ManufacturerPartDetail.tsx:150 msgid "Manufacturer Details" msgstr "" -#: src/pages/company/ManufacturerPartDetail.tsx:160 +#: src/pages/company/ManufacturerPartDetail.tsx:159 msgid "Manufacturer Part Details" msgstr "" -#: src/pages/company/ManufacturerPartDetail.tsx:178 -#: src/pages/company/SupplierPartDetail.tsx:252 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:381 +#: src/pages/company/ManufacturerPartDetail.tsx:165 +#: src/pages/company/SupplierPartDetail.tsx:253 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:382 msgid "Received Stock" msgstr "" -#: src/pages/company/ManufacturerPartDetail.tsx:220 +#: src/pages/company/ManufacturerPartDetail.tsx:211 #: src/tables/purchasing/ManufacturerPartTable.tsx:108 msgid "Edit Manufacturer Part" msgstr "" -#: src/pages/company/ManufacturerPartDetail.tsx:227 +#: src/pages/company/ManufacturerPartDetail.tsx:218 #: src/tables/purchasing/ManufacturerPartTable.tsx:96 #: src/tables/purchasing/ManufacturerPartTable.tsx:115 #: src/tables/purchasing/ManufacturerPartTable.tsx:156 msgid "Add Manufacturer Part" msgstr "" -#: src/pages/company/ManufacturerPartDetail.tsx:239 +#: src/pages/company/ManufacturerPartDetail.tsx:230 #: src/tables/purchasing/ManufacturerPartTable.tsx:126 msgid "Delete Manufacturer Part" msgstr "" -#: src/pages/company/ManufacturerPartDetail.tsx:254 +#: src/pages/company/ManufacturerPartDetail.tsx:245 msgid "Manufacturer Part Actions" msgstr "" @@ -7308,12 +7392,12 @@ msgstr "" #~ msgid "ManufacturerPart" #~ msgstr "ManufacturerPart" -#: src/pages/company/SupplierPartDetail.tsx:104 +#: src/pages/company/SupplierPartDetail.tsx:105 #: src/tables/part/RelatedPartTable.tsx:82 msgid "Part Description" msgstr "" -#: src/pages/company/SupplierPartDetail.tsx:179 +#: src/pages/company/SupplierPartDetail.tsx:180 #: src/tables/part/PartPurchaseOrdersTable.tsx:73 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:191 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:233 @@ -7321,50 +7405,50 @@ msgstr "" msgid "Pack Quantity" msgstr "" -#: src/pages/company/SupplierPartDetail.tsx:204 +#: src/pages/company/SupplierPartDetail.tsx:205 msgid "Supplier Availability" msgstr "" -#: src/pages/company/SupplierPartDetail.tsx:212 +#: src/pages/company/SupplierPartDetail.tsx:213 msgid "Availability Updated" msgstr "" -#: src/pages/company/SupplierPartDetail.tsx:237 +#: src/pages/company/SupplierPartDetail.tsx:238 msgid "Availability" msgstr "" -#: src/pages/company/SupplierPartDetail.tsx:246 +#: src/pages/company/SupplierPartDetail.tsx:247 msgid "Supplier Part Details" msgstr "" -#: src/pages/company/SupplierPartDetail.tsx:279 +#: src/pages/company/SupplierPartDetail.tsx:280 #: src/pages/part/PartPricingPanel.tsx:113 #: src/pages/part/pricing/PricingOverviewPanel.tsx:239 msgid "Supplier Pricing" msgstr "" -#: src/pages/company/SupplierPartDetail.tsx:308 +#: src/pages/company/SupplierPartDetail.tsx:313 msgid "Supplier Part Actions" msgstr "" -#: src/pages/company/SupplierPartDetail.tsx:332 +#: src/pages/company/SupplierPartDetail.tsx:337 #: src/tables/purchasing/SupplierPartTable.tsx:244 msgid "Edit Supplier Part" msgstr "" -#: src/pages/company/SupplierPartDetail.tsx:340 +#: src/pages/company/SupplierPartDetail.tsx:345 #: src/tables/purchasing/SupplierPartTable.tsx:264 msgid "Delete Supplier Part" msgstr "" -#: src/pages/company/SupplierPartDetail.tsx:348 +#: src/pages/company/SupplierPartDetail.tsx:353 #: src/tables/purchasing/SupplierPartTable.tsx:172 #: src/tables/purchasing/SupplierPartTable.tsx:251 msgid "Add Supplier Part" msgstr "" -#: src/pages/company/SupplierPartDetail.tsx:388 -#: src/pages/part/PartDetail.tsx:1003 +#: src/pages/company/SupplierPartDetail.tsx:393 +#: src/pages/part/PartDetail.tsx:1018 msgid "No Stock" msgstr "" @@ -7411,83 +7495,83 @@ msgstr "" msgid "Basic user" msgstr "" -#: src/pages/part/CategoryDetail.tsx:100 +#: src/pages/part/CategoryDetail.tsx:103 #: src/pages/stock/LocationDetail.tsx:94 #: src/tables/settings/ErrorTable.tsx:63 #: src/tables/settings/ErrorTable.tsx:108 msgid "Path" msgstr "" -#: src/pages/part/CategoryDetail.tsx:116 +#: src/pages/part/CategoryDetail.tsx:119 msgid "Parent Category" msgstr "" -#: src/pages/part/CategoryDetail.tsx:139 -#: src/pages/part/CategoryDetail.tsx:271 +#: src/pages/part/CategoryDetail.tsx:142 +#: src/pages/part/CategoryDetail.tsx:279 msgid "Subcategories" msgstr "" -#: src/pages/part/CategoryDetail.tsx:146 +#: src/pages/part/CategoryDetail.tsx:149 #: src/pages/stock/LocationDetail.tsx:134 #: src/tables/part/PartCategoryTable.tsx:89 #: src/tables/stock/StockLocationTable.tsx:43 msgid "Structural" msgstr "" -#: src/pages/part/CategoryDetail.tsx:152 +#: src/pages/part/CategoryDetail.tsx:155 msgid "Parent default location" msgstr "" -#: src/pages/part/CategoryDetail.tsx:159 +#: src/pages/part/CategoryDetail.tsx:162 msgid "Default location" msgstr "" -#: src/pages/part/CategoryDetail.tsx:170 +#: src/pages/part/CategoryDetail.tsx:173 msgid "Top level part category" msgstr "" -#: src/pages/part/CategoryDetail.tsx:180 -#: src/pages/part/CategoryDetail.tsx:248 +#: src/pages/part/CategoryDetail.tsx:183 +#: src/pages/part/CategoryDetail.tsx:251 #: src/tables/part/PartCategoryTable.tsx:122 msgid "Edit Part Category" msgstr "" -#: src/pages/part/CategoryDetail.tsx:189 +#: src/pages/part/CategoryDetail.tsx:192 msgid "Move items to parent category" msgstr "" -#: src/pages/part/CategoryDetail.tsx:193 +#: src/pages/part/CategoryDetail.tsx:196 #: src/pages/stock/LocationDetail.tsx:226 msgid "Delete items" msgstr "" -#: src/pages/part/CategoryDetail.tsx:201 -#: src/pages/part/CategoryDetail.tsx:253 +#: src/pages/part/CategoryDetail.tsx:204 +#: src/pages/part/CategoryDetail.tsx:256 msgid "Delete Part Category" msgstr "" -#: src/pages/part/CategoryDetail.tsx:204 +#: src/pages/part/CategoryDetail.tsx:207 msgid "Parts Action" msgstr "" -#: src/pages/part/CategoryDetail.tsx:205 +#: src/pages/part/CategoryDetail.tsx:208 msgid "Action for parts in this category" msgstr "" -#: src/pages/part/CategoryDetail.tsx:211 +#: src/pages/part/CategoryDetail.tsx:214 msgid "Child Categories Action" msgstr "" -#: src/pages/part/CategoryDetail.tsx:212 +#: src/pages/part/CategoryDetail.tsx:215 msgid "Action for child categories in this category" msgstr "" -#: src/pages/part/CategoryDetail.tsx:244 +#: src/pages/part/CategoryDetail.tsx:247 #: src/tables/part/PartCategoryTable.tsx:143 msgid "Category Actions" msgstr "" -#: src/pages/part/CategoryDetail.tsx:265 +#: src/pages/part/CategoryDetail.tsx:273 msgid "Category Details" msgstr "" @@ -7585,7 +7669,6 @@ msgid "Category Default Location" msgstr "" #: src/pages/part/PartDetail.tsx:507 -#: src/tables/purchasing/ManufacturerPartParameterTable.tsx:48 msgid "Units" msgstr "" @@ -7600,7 +7683,7 @@ msgstr "" #: src/pages/part/PartDetail.tsx:542 #: src/tables/bom/BomTable.tsx:439 -#: src/tables/build/BuildLineTable.tsx:305 +#: src/tables/build/BuildLineTable.tsx:306 #: src/tables/part/PartTable.tsx:319 #: src/tables/sales/SalesOrderLineItemTable.tsx:138 msgid "Available Stock" @@ -7608,7 +7691,7 @@ msgstr "" #: src/pages/part/PartDetail.tsx:548 #: src/tables/bom/BomTable.tsx:341 -#: src/tables/build/BuildLineTable.tsx:267 +#: src/tables/build/BuildLineTable.tsx:268 #: src/tables/sales/SalesOrderLineItemTable.tsx:180 msgid "On order" msgstr "" @@ -7634,7 +7717,7 @@ msgstr "" #~ msgstr "Scheduling" #: src/pages/part/PartDetail.tsx:620 -#: src/tables/part/ParametricPartTable.tsx:359 +#: src/tables/part/ParametricPartTable.tsx:24 #: src/tables/part/PartTable.tsx:203 msgid "Locked" msgstr "" @@ -7671,16 +7754,16 @@ msgid "Saleable Part" msgstr "" #: src/pages/part/PartDetail.tsx:663 -#: src/pages/part/PartDetail.tsx:1033 +#: src/pages/part/PartDetail.tsx:1054 #: src/tables/bom/BomTable.tsx:150 #: src/tables/bom/BomTable.tsx:434 msgid "Virtual Part" msgstr "" #: src/pages/part/PartDetail.tsx:678 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:271 -#: src/pages/sales/ReturnOrderDetail.tsx:249 -#: src/pages/sales/SalesOrderDetail.tsx:242 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:272 +#: src/pages/sales/ReturnOrderDetail.tsx:250 +#: src/pages/sales/SalesOrderDetail.tsx:243 #: src/tables/ColumnRenderers.tsx:502 msgid "Creation Date" msgstr "" @@ -7718,35 +7801,46 @@ msgstr "" msgid "Select Part Revision" msgstr "" -#: src/pages/part/PartDetail.tsx:823 +#: src/pages/part/PartDetail.tsx:812 msgid "Variants" msgstr "" -#: src/pages/part/PartDetail.tsx:830 +#: src/pages/part/PartDetail.tsx:819 #: src/pages/stock/StockDetail.tsx:542 msgid "Allocations" msgstr "" -#: src/pages/part/PartDetail.tsx:837 +#: src/pages/part/PartDetail.tsx:826 msgid "Bill of Materials" msgstr "" -#: src/pages/part/PartDetail.tsx:849 +#: src/pages/part/PartDetail.tsx:838 msgid "Used In" msgstr "" -#: src/pages/part/PartDetail.tsx:856 +#: src/pages/part/PartDetail.tsx:845 msgid "Part Pricing" msgstr "" -#: src/pages/part/PartDetail.tsx:926 +#: src/pages/part/PartDetail.tsx:915 msgid "Test Templates" msgstr "" -#: src/pages/part/PartDetail.tsx:948 +#: src/pages/part/PartDetail.tsx:937 msgid "Related Parts" msgstr "" +#: src/pages/part/PartDetail.tsx:949 +#: src/tables/ColumnRenderers.tsx:73 +#: src/tables/bom/BomTable.tsx:657 +#: src/tables/part/PartTestTemplateTable.tsx:258 +msgid "Part is Locked" +msgstr "" + +#: src/pages/part/PartDetail.tsx:954 +msgid "Part parameters cannot be edited, as the part is locked" +msgstr "" + #: src/pages/part/PartDetail.tsx:956 #~ msgid "Count part stock" #~ msgstr "Count part stock" @@ -7755,42 +7849,46 @@ msgstr "" #~ msgid "Transfer part stock" #~ msgstr "Transfer part stock" -#: src/pages/part/PartDetail.tsx:1009 +#: src/pages/part/PartDetail.tsx:1024 #: src/tables/part/PartTestTemplateTable.tsx:112 #: src/tables/stock/StockItemTestResultTable.tsx:404 msgid "Required" msgstr "" -#: src/pages/part/PartDetail.tsx:1058 +#: src/pages/part/PartDetail.tsx:1042 +msgid "Deficit" +msgstr "" + +#: src/pages/part/PartDetail.tsx:1079 #: src/tables/part/PartTable.tsx:396 #: src/tables/part/PartTable.tsx:449 msgid "Add Part" msgstr "" -#: src/pages/part/PartDetail.tsx:1072 +#: src/pages/part/PartDetail.tsx:1093 msgid "Delete Part" msgstr "" -#: src/pages/part/PartDetail.tsx:1081 +#: src/pages/part/PartDetail.tsx:1102 msgid "Deleting this part cannot be reversed" msgstr "" -#: src/pages/part/PartDetail.tsx:1143 +#: src/pages/part/PartDetail.tsx:1164 #: src/pages/stock/StockDetail.tsx:883 msgid "Order" msgstr "" -#: src/pages/part/PartDetail.tsx:1144 +#: src/pages/part/PartDetail.tsx:1165 #: src/pages/stock/StockDetail.tsx:884 -#: src/tables/build/BuildLineTable.tsx:761 +#: src/tables/build/BuildLineTable.tsx:768 msgid "Order Stock" msgstr "" -#: src/pages/part/PartDetail.tsx:1156 +#: src/pages/part/PartDetail.tsx:1177 msgid "Search by serial number" msgstr "" -#: src/pages/part/PartDetail.tsx:1164 +#: src/pages/part/PartDetail.tsx:1185 #: src/tables/part/PartTable.tsx:506 msgid "Part Actions" msgstr "" @@ -8039,7 +8137,7 @@ msgstr "" #: src/pages/part/pricing/PricingOverviewPanel.tsx:288 #: src/pages/stock/StockDetail.tsx:426 -#: src/tables/part/PartParameterTable.tsx:121 +#: src/tables/general/ParameterTable.tsx:101 #: src/tables/stock/StockItemTable.tsx:300 msgid "Last Updated" msgstr "" @@ -8107,17 +8205,17 @@ msgstr "" msgid "Variant Part" msgstr "" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:89 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:90 msgid "Edit Purchase Order" msgstr "" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:125 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:126 #: src/tables/purchasing/PurchaseOrderTable.tsx:154 #: src/tables/purchasing/PurchaseOrderTable.tsx:167 msgid "Add Purchase Order" msgstr "" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:147 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:148 msgid "Supplier Reference" msgstr "" @@ -8127,20 +8225,20 @@ msgstr "" #~ msgid "Order Currency," #~ msgstr "Order Currency," -#: src/pages/purchasing/PurchaseOrderDetail.tsx:187 -#: src/pages/sales/ReturnOrderDetail.tsx:160 -#: src/pages/sales/SalesOrderDetail.tsx:144 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:188 +#: src/pages/sales/ReturnOrderDetail.tsx:161 +#: src/pages/sales/SalesOrderDetail.tsx:145 msgid "Completed Line Items" msgstr "" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:196 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:197 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:272 msgid "Destination" msgstr "" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:202 -#: src/pages/sales/ReturnOrderDetail.tsx:167 -#: src/pages/sales/SalesOrderDetail.tsx:161 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:203 +#: src/pages/sales/ReturnOrderDetail.tsx:168 +#: src/pages/sales/SalesOrderDetail.tsx:162 msgid "Order Currency" msgstr "" @@ -8150,97 +8248,97 @@ msgstr "" #~ msgid "Created On" #~ msgstr "Created On" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:208 -#: src/pages/sales/ReturnOrderDetail.tsx:174 -#: src/pages/sales/SalesOrderDetail.tsx:167 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:209 +#: src/pages/sales/ReturnOrderDetail.tsx:175 +#: src/pages/sales/SalesOrderDetail.tsx:168 msgid "Total Cost" msgstr "" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:237 -#: src/pages/sales/ReturnOrderDetail.tsx:215 -#: src/pages/sales/SalesOrderDetail.tsx:208 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:238 +#: src/pages/sales/ReturnOrderDetail.tsx:216 +#: src/pages/sales/SalesOrderDetail.tsx:209 msgid "Contact Email" msgstr "" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:245 -#: src/pages/sales/ReturnOrderDetail.tsx:223 -#: src/pages/sales/SalesOrderDetail.tsx:216 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:246 +#: src/pages/sales/ReturnOrderDetail.tsx:224 +#: src/pages/sales/SalesOrderDetail.tsx:217 msgid "Contact Phone" msgstr "" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:278 -#: src/pages/sales/ReturnOrderDetail.tsx:257 -#: src/pages/sales/SalesOrderDetail.tsx:249 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:279 +#: src/pages/sales/ReturnOrderDetail.tsx:258 +#: src/pages/sales/SalesOrderDetail.tsx:250 msgid "Issue Date" msgstr "" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:303 -#: src/pages/sales/ReturnOrderDetail.tsx:281 -#: src/pages/sales/SalesOrderDetail.tsx:272 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:304 +#: src/pages/sales/ReturnOrderDetail.tsx:282 +#: src/pages/sales/SalesOrderDetail.tsx:273 #: src/tables/ColumnRenderers.tsx:510 #: src/tables/build/BuildOrderTable.tsx:137 #: src/tables/part/PartPurchaseOrdersTable.tsx:106 msgid "Completion Date" msgstr "" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:333 -#: src/pages/sales/ReturnOrderDetail.tsx:311 -#: src/pages/sales/SalesOrderDetail.tsx:349 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:334 +#: src/pages/sales/ReturnOrderDetail.tsx:312 +#: src/pages/sales/SalesOrderDetail.tsx:350 msgid "Order Details" msgstr "" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:339 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:348 -#: src/pages/sales/ReturnOrderDetail.tsx:153 -#: src/pages/sales/ReturnOrderDetail.tsx:317 -#: src/pages/sales/ReturnOrderDetail.tsx:326 -#: src/pages/sales/SalesOrderDetail.tsx:355 -#: src/pages/sales/SalesOrderDetail.tsx:364 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:340 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:349 +#: src/pages/sales/ReturnOrderDetail.tsx:154 +#: src/pages/sales/ReturnOrderDetail.tsx:318 +#: src/pages/sales/ReturnOrderDetail.tsx:327 +#: src/pages/sales/SalesOrderDetail.tsx:356 +#: src/pages/sales/SalesOrderDetail.tsx:365 msgid "Line Items" msgstr "" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:363 -#: src/pages/sales/ReturnOrderDetail.tsx:341 -#: src/pages/sales/SalesOrderDetail.tsx:378 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:364 +#: src/pages/sales/ReturnOrderDetail.tsx:342 +#: src/pages/sales/SalesOrderDetail.tsx:379 msgid "Extra Line Items" msgstr "" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:405 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:410 msgid "Issue Purchase Order" msgstr "" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:413 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:418 msgid "Cancel Purchase Order" msgstr "" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:421 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:426 msgid "Hold Purchase Order" msgstr "" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:429 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:434 msgid "Complete Purchase Order" msgstr "" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:485 -#: src/pages/sales/ReturnOrderDetail.tsx:496 -#: src/pages/sales/SalesOrderDetail.tsx:549 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:490 +#: src/pages/sales/ReturnOrderDetail.tsx:501 +#: src/pages/sales/SalesOrderDetail.tsx:554 msgid "Order Actions" msgstr "" -#: src/pages/sales/ReturnOrderDetail.tsx:114 -#: src/pages/sales/SalesOrderDetail.tsx:104 -#: src/pages/sales/SalesOrderShipmentDetail.tsx:134 +#: src/pages/sales/ReturnOrderDetail.tsx:115 +#: src/pages/sales/SalesOrderDetail.tsx:105 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:132 #: src/tables/sales/SalesOrderTable.tsx:141 msgid "Customer Reference" msgstr "" -#: src/pages/sales/ReturnOrderDetail.tsx:195 +#: src/pages/sales/ReturnOrderDetail.tsx:196 msgid "Return Address" msgstr "" -#: src/pages/sales/ReturnOrderDetail.tsx:201 -#: src/pages/sales/SalesOrderDetail.tsx:194 -#: src/pages/sales/SalesOrderShipmentDetail.tsx:181 +#: src/pages/sales/ReturnOrderDetail.tsx:202 +#: src/pages/sales/SalesOrderDetail.tsx:195 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:179 msgid "Not specified" msgstr "" @@ -8248,117 +8346,117 @@ msgstr "" #~ msgid "Order canceled" #~ msgstr "Order canceled" -#: src/pages/sales/ReturnOrderDetail.tsx:389 +#: src/pages/sales/ReturnOrderDetail.tsx:394 msgid "Edit Return Order" msgstr "" -#: src/pages/sales/ReturnOrderDetail.tsx:407 +#: src/pages/sales/ReturnOrderDetail.tsx:412 #: src/tables/sales/ReturnOrderTable.tsx:154 #: src/tables/sales/ReturnOrderTable.tsx:167 msgid "Add Return Order" msgstr "" -#: src/pages/sales/ReturnOrderDetail.tsx:416 +#: src/pages/sales/ReturnOrderDetail.tsx:421 msgid "Issue Return Order" msgstr "" -#: src/pages/sales/ReturnOrderDetail.tsx:424 +#: src/pages/sales/ReturnOrderDetail.tsx:429 msgid "Cancel Return Order" msgstr "" -#: src/pages/sales/ReturnOrderDetail.tsx:432 +#: src/pages/sales/ReturnOrderDetail.tsx:437 msgid "Hold Return Order" msgstr "" -#: src/pages/sales/ReturnOrderDetail.tsx:440 +#: src/pages/sales/ReturnOrderDetail.tsx:445 msgid "Complete Return Order" msgstr "" -#: src/pages/sales/SalesOrderDetail.tsx:153 +#: src/pages/sales/SalesOrderDetail.tsx:154 msgid "Completed Shipments" msgstr "" -#: src/pages/sales/SalesOrderDetail.tsx:188 -#: src/pages/sales/SalesOrderShipmentDetail.tsx:170 +#: src/pages/sales/SalesOrderDetail.tsx:189 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:168 msgid "Shipping Address" msgstr "" -#: src/pages/sales/SalesOrderDetail.tsx:316 +#: src/pages/sales/SalesOrderDetail.tsx:317 msgid "Edit Sales Order" msgstr "" -#: src/pages/sales/SalesOrderDetail.tsx:338 +#: src/pages/sales/SalesOrderDetail.tsx:339 #: src/tables/sales/SalesOrderTable.tsx:108 #: src/tables/sales/SalesOrderTable.tsx:121 msgid "Add Sales Order" msgstr "" -#: src/pages/sales/SalesOrderDetail.tsx:396 +#: src/pages/sales/SalesOrderDetail.tsx:397 #: src/tables/sales/SalesOrderTable.tsx:147 msgid "Shipments" msgstr "" -#: src/pages/sales/SalesOrderDetail.tsx:443 +#: src/pages/sales/SalesOrderDetail.tsx:448 msgid "Issue Sales Order" msgstr "" -#: src/pages/sales/SalesOrderDetail.tsx:451 +#: src/pages/sales/SalesOrderDetail.tsx:456 msgid "Cancel Sales Order" msgstr "" -#: src/pages/sales/SalesOrderDetail.tsx:459 +#: src/pages/sales/SalesOrderDetail.tsx:464 msgid "Hold Sales Order" msgstr "" -#: src/pages/sales/SalesOrderDetail.tsx:467 +#: src/pages/sales/SalesOrderDetail.tsx:472 msgid "Ship Sales Order" msgstr "" -#: src/pages/sales/SalesOrderDetail.tsx:469 +#: src/pages/sales/SalesOrderDetail.tsx:474 msgid "Ship this order?" msgstr "" -#: src/pages/sales/SalesOrderDetail.tsx:470 +#: src/pages/sales/SalesOrderDetail.tsx:475 msgid "Order shipped" msgstr "" -#: src/pages/sales/SalesOrderDetail.tsx:478 +#: src/pages/sales/SalesOrderDetail.tsx:483 msgid "Complete Sales Order" msgstr "" -#: src/pages/sales/SalesOrderDetail.tsx:523 +#: src/pages/sales/SalesOrderDetail.tsx:528 msgid "Ship Order" msgstr "" -#: src/pages/sales/SalesOrderShipmentDetail.tsx:142 -#: src/tables/sales/SalesOrderShipmentTable.tsx:135 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:140 +#: src/tables/sales/SalesOrderShipmentTable.tsx:156 msgid "Shipment Reference" msgstr "" -#: src/pages/sales/SalesOrderShipmentDetail.tsx:148 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:146 msgid "Tracking Number" msgstr "" -#: src/pages/sales/SalesOrderShipmentDetail.tsx:156 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:154 msgid "Invoice Number" msgstr "" -#: src/pages/sales/SalesOrderShipmentDetail.tsx:191 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:189 msgid "Allocated Items" msgstr "" -#: src/pages/sales/SalesOrderShipmentDetail.tsx:196 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:194 msgid "Checked By" msgstr "" -#: src/pages/sales/SalesOrderShipmentDetail.tsx:202 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:200 msgid "Not checked" msgstr "" -#: src/pages/sales/SalesOrderShipmentDetail.tsx:208 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:206 #: src/tables/ColumnRenderers.tsx:518 #: src/tables/sales/SalesOrderAllocationTable.tsx:182 -#: src/tables/sales/SalesOrderShipmentTable.tsx:168 +#: src/tables/sales/SalesOrderShipmentTable.tsx:189 msgid "Shipment Date" msgstr "" @@ -8366,108 +8464,82 @@ msgstr "" #~ msgid "Assigned Items" #~ msgstr "Assigned Items" -#: src/pages/sales/SalesOrderShipmentDetail.tsx:216 -#: src/tables/sales/SalesOrderShipmentTable.tsx:172 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:214 +#: src/tables/sales/SalesOrderShipmentTable.tsx:193 msgid "Delivery Date" msgstr "" -#: src/pages/sales/SalesOrderShipmentDetail.tsx:255 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:253 msgid "Shipment Details" msgstr "" -#: src/pages/sales/SalesOrderShipmentDetail.tsx:294 -#: src/pages/sales/SalesOrderShipmentDetail.tsx:438 -#: src/tables/sales/SalesOrderShipmentTable.tsx:90 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:292 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:406 +#: src/tables/sales/SalesOrderShipmentTable.tsx:97 msgid "Edit Shipment" msgstr "" -#: src/pages/sales/SalesOrderShipmentDetail.tsx:301 -#: src/pages/sales/SalesOrderShipmentDetail.tsx:457 -#: src/tables/sales/SalesOrderShipmentTable.tsx:82 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:299 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:425 +#: src/tables/sales/SalesOrderShipmentTable.tsx:89 msgid "Cancel Shipment" msgstr "" -#: src/pages/sales/SalesOrderShipmentDetail.tsx:314 -#: src/tables/sales/SalesOrderShipmentTable.tsx:98 -#: src/tables/sales/SalesOrderShipmentTable.tsx:193 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:312 +#: src/tables/sales/SalesOrderShipmentTable.tsx:119 +#: src/tables/sales/SalesOrderShipmentTable.tsx:238 msgid "Complete Shipment" msgstr "" -#: src/pages/sales/SalesOrderShipmentDetail.tsx:326 -#: src/pages/sales/SalesOrderShipmentDetail.tsx:328 -msgid "Check Shipment" -msgstr "" - -#: src/pages/sales/SalesOrderShipmentDetail.tsx:329 -msgid "Marking the shipment as checked indicates that you have verified that all items included in this shipment are correct" -msgstr "" - #: src/pages/sales/SalesOrderShipmentDetail.tsx:339 -msgid "Shipment marked as checked" -msgstr "" - -#: src/pages/sales/SalesOrderShipmentDetail.tsx:346 -#: src/pages/sales/SalesOrderShipmentDetail.tsx:348 -msgid "Uncheck Shipment" -msgstr "" - -#: src/pages/sales/SalesOrderShipmentDetail.tsx:349 -msgid "Marking the shipment as unchecked indicates that the shipment requires further verification" -msgstr "" - -#: src/pages/sales/SalesOrderShipmentDetail.tsx:359 -msgid "Shipment marked as unchecked" -msgstr "" - -#: src/pages/sales/SalesOrderShipmentDetail.tsx:371 #: src/tables/part/PartPurchaseOrdersTable.tsx:122 msgid "Pending" msgstr "" -#: src/pages/sales/SalesOrderShipmentDetail.tsx:377 -#: src/tables/sales/SalesOrderShipmentTable.tsx:147 -#: src/tables/sales/SalesOrderShipmentTable.tsx:254 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:345 +#: src/tables/sales/SalesOrderShipmentTable.tsx:168 +#: src/tables/sales/SalesOrderShipmentTable.tsx:299 msgid "Checked" msgstr "" -#: src/pages/sales/SalesOrderShipmentDetail.tsx:383 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:351 msgid "Not Checked" msgstr "" -#: src/pages/sales/SalesOrderShipmentDetail.tsx:389 -#: src/tables/sales/SalesOrderShipmentTable.tsx:154 -#: src/tables/sales/SalesOrderShipmentTable.tsx:259 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:357 +#: src/tables/sales/SalesOrderShipmentTable.tsx:175 +#: src/tables/sales/SalesOrderShipmentTable.tsx:304 msgid "Shipped" msgstr "" -#: src/pages/sales/SalesOrderShipmentDetail.tsx:395 -#: src/tables/sales/SalesOrderShipmentTable.tsx:161 -#: src/tables/sales/SalesOrderShipmentTable.tsx:264 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:363 +#: src/tables/sales/SalesOrderShipmentTable.tsx:182 +#: src/tables/sales/SalesOrderShipmentTable.tsx:309 #: src/tables/settings/EmailTable.tsx:31 msgid "Delivered" msgstr "" -#: src/pages/sales/SalesOrderShipmentDetail.tsx:410 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:378 msgid "Send Shipment" msgstr "" -#: src/pages/sales/SalesOrderShipmentDetail.tsx:433 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:401 msgid "Shipment Actions" msgstr "" -#: src/pages/sales/SalesOrderShipmentDetail.tsx:442 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:410 msgid "Check" msgstr "" -#: src/pages/sales/SalesOrderShipmentDetail.tsx:443 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:411 msgid "Mark shipment as checked" msgstr "" -#: src/pages/sales/SalesOrderShipmentDetail.tsx:449 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:417 msgid "Uncheck" msgstr "" -#: src/pages/sales/SalesOrderShipmentDetail.tsx:450 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:418 msgid "Mark shipment as unchecked" msgstr "" @@ -8775,13 +8847,6 @@ msgstr "" msgid "Part is not active" msgstr "" -#: src/tables/ColumnRenderers.tsx:73 -#: src/tables/bom/BomTable.tsx:657 -#: src/tables/part/PartParameterTable.tsx:227 -#: src/tables/part/PartTestTemplateTable.tsx:258 -msgid "Part is Locked" -msgstr "" - #: src/tables/ColumnRenderers.tsx:78 msgid "You are subscribed to notifications for this part" msgstr "" @@ -9219,13 +9284,13 @@ msgstr "" #~ msgstr "Show asssmbled items" #: src/tables/bom/BomTable.tsx:315 -#: src/tables/build/BuildLineTable.tsx:276 +#: src/tables/build/BuildLineTable.tsx:277 #: src/tables/part/PartTable.tsx:145 msgid "External stock" msgstr "" #: src/tables/bom/BomTable.tsx:323 -#: src/tables/build/BuildLineTable.tsx:239 +#: src/tables/build/BuildLineTable.tsx:240 msgid "Includes substitute stock" msgstr "" @@ -9234,7 +9299,7 @@ msgstr "" #~ msgstr "Edit Bom Item" #: src/tables/bom/BomTable.tsx:332 -#: src/tables/build/BuildLineTable.tsx:249 +#: src/tables/build/BuildLineTable.tsx:250 #: src/tables/sales/SalesOrderLineItemTable.tsx:166 msgid "Includes variant stock" msgstr "" @@ -9272,8 +9337,8 @@ msgid "Stock Information" msgstr "" #: src/tables/bom/BomTable.tsx:399 -#: src/tables/build/BuildLineTable.tsx:496 -#: src/tables/build/BuildLineTable.tsx:537 +#: src/tables/build/BuildLineTable.tsx:497 +#: src/tables/build/BuildLineTable.tsx:538 msgid "Consumable item" msgstr "" @@ -9282,7 +9347,7 @@ msgid "No available stock" msgstr "" #: src/tables/bom/BomTable.tsx:420 -#: src/tables/build/BuildLineTable.tsx:213 +#: src/tables/build/BuildLineTable.tsx:214 msgid "Show testable items" msgstr "" @@ -9291,7 +9356,7 @@ msgid "Show trackable items" msgstr "" #: src/tables/bom/BomTable.tsx:430 -#: src/tables/build/BuildLineTable.tsx:208 +#: src/tables/build/BuildLineTable.tsx:209 msgid "Show assembled items" msgstr "" @@ -9335,7 +9400,7 @@ msgstr "" #: src/tables/bom/BomTable.tsx:464 #: src/tables/bom/UsedInTable.tsx:85 -#: src/tables/build/BuildLineTable.tsx:202 +#: src/tables/build/BuildLineTable.tsx:203 msgid "Optional" msgstr "" @@ -9345,7 +9410,7 @@ msgid "Show optional items" msgstr "" #: src/tables/bom/BomTable.tsx:469 -#: src/tables/build/BuildLineTable.tsx:197 +#: src/tables/build/BuildLineTable.tsx:198 msgid "Consumable" msgstr "" @@ -9420,6 +9485,7 @@ msgid "Add a single BOM item" msgstr "" #: src/tables/bom/BomTable.tsx:637 +#: src/tables/general/ParameterTable.tsx:206 #: src/tables/part/PartTable.tsx:546 msgid "Import from File" msgstr "" @@ -9433,8 +9499,8 @@ msgid "Bill of materials cannot be edited, as the part is locked" msgstr "" #: src/tables/bom/UsedInTable.tsx:34 -#: src/tables/build/BuildLineTable.tsx:207 -#: src/tables/part/ParametricPartTable.tsx:364 +#: src/tables/build/BuildLineTable.tsx:208 +#: src/tables/part/ParametricPartTable.tsx:29 #: src/tables/part/PartBuildAllocationsTable.tsx:60 #: src/tables/part/PartTable.tsx:209 #: src/tables/stock/StockItemTable.tsx:333 @@ -9455,11 +9521,11 @@ msgstr "" msgid "Show trackable assemblies" msgstr "" -#: src/tables/build/BuildAllocatedStockTable.tsx:67 +#: src/tables/build/BuildAllocatedStockTable.tsx:64 msgid "Allocated to Output" msgstr "" -#: src/tables/build/BuildAllocatedStockTable.tsx:68 +#: src/tables/build/BuildAllocatedStockTable.tsx:65 msgid "Show items allocated to a build output" msgstr "" @@ -9472,50 +9538,68 @@ msgstr "" #~ msgid "Include orders for part variants" #~ msgstr "Include orders for part variants" -#: src/tables/build/BuildAllocatedStockTable.tsx:97 +#: src/tables/build/BuildAllocatedStockTable.tsx:94 #: src/tables/part/PartBuildAllocationsTable.tsx:84 #: src/tables/part/PartPurchaseOrdersTable.tsx:132 #: src/tables/part/PartSalesAllocationsTable.tsx:69 #: src/tables/sales/SalesOrderAllocationTable.tsx:122 -#: src/tables/sales/SalesOrderShipmentTable.tsx:130 +#: src/tables/sales/SalesOrderShipmentTable.tsx:151 msgid "Order Status" msgstr "" +#: src/tables/build/BuildAllocatedStockTable.tsx:164 +#: src/tables/build/BuildLineTable.tsx:651 +msgid "Edit Stock Allocation" +msgstr "" + #: src/tables/build/BuildAllocatedStockTable.tsx:164 #~ msgid "Edit Build Item" #~ msgstr "Edit Build Item" -#: src/tables/build/BuildAllocatedStockTable.tsx:167 -#: src/tables/build/BuildLineTable.tsx:650 -msgid "Edit Stock Allocation" -msgstr "" - #: src/tables/build/BuildAllocatedStockTable.tsx:174 #~ msgid "Delete Build Item" #~ msgstr "Delete Build Item" -#: src/tables/build/BuildAllocatedStockTable.tsx:180 -#: src/tables/build/BuildLineTable.tsx:663 -msgid "Delete Stock Allocation" +#: src/tables/build/BuildAllocatedStockTable.tsx:177 +#: src/tables/build/BuildLineTable.tsx:664 +#: src/tables/sales/SalesOrderAllocationTable.tsx:218 +msgid "Remove Allocated Stock" msgstr "" -#: src/tables/build/BuildAllocatedStockTable.tsx:239 +#: src/tables/build/BuildAllocatedStockTable.tsx:180 +#: src/tables/build/BuildLineTable.tsx:663 +#~ msgid "Delete Stock Allocation" +#~ msgstr "Delete Stock Allocation" + +#: src/tables/build/BuildAllocatedStockTable.tsx:182 +#: src/tables/build/BuildLineTable.tsx:669 +#: src/tables/sales/SalesOrderAllocationTable.tsx:221 +msgid "Are you sure you want to remove this allocated stock from the order?" +msgstr "" + +#: src/tables/build/BuildAllocatedStockTable.tsx:242 msgid "Consume" msgstr "" +#: src/tables/build/BuildAllocatedStockTable.tsx:259 +#: src/tables/build/BuildLineTable.tsx:112 +#: src/tables/sales/SalesOrderAllocationTable.tsx:248 +msgid "Remove allocated stock" +msgstr "" + #: src/tables/build/BuildLineTable.tsx:59 #~ msgid "Show lines with available stock" #~ msgstr "Show lines with available stock" -#: src/tables/build/BuildLineTable.tsx:120 +#: src/tables/build/BuildLineTable.tsx:121 msgid "View Stock Item" msgstr "" -#: src/tables/build/BuildLineTable.tsx:183 +#: src/tables/build/BuildLineTable.tsx:184 msgid "Show fully allocated lines" msgstr "" -#: src/tables/build/BuildLineTable.tsx:188 +#: src/tables/build/BuildLineTable.tsx:189 msgid "Show fully consumed lines" msgstr "" @@ -9523,124 +9607,124 @@ msgstr "" #~ msgid "Show allocated lines" #~ msgstr "Show allocated lines" -#: src/tables/build/BuildLineTable.tsx:193 +#: src/tables/build/BuildLineTable.tsx:194 msgid "Show items with sufficient available stock" msgstr "" -#: src/tables/build/BuildLineTable.tsx:198 +#: src/tables/build/BuildLineTable.tsx:199 msgid "Show consumable lines" msgstr "" -#: src/tables/build/BuildLineTable.tsx:203 +#: src/tables/build/BuildLineTable.tsx:204 msgid "Show optional lines" msgstr "" -#: src/tables/build/BuildLineTable.tsx:212 +#: src/tables/build/BuildLineTable.tsx:213 #: src/tables/part/PartTable.tsx:233 msgid "Testable" msgstr "" -#: src/tables/build/BuildLineTable.tsx:217 +#: src/tables/build/BuildLineTable.tsx:218 #: src/tables/stock/StockItemTable.tsx:388 msgid "Tracked" msgstr "" -#: src/tables/build/BuildLineTable.tsx:218 +#: src/tables/build/BuildLineTable.tsx:219 msgid "Show tracked lines" msgstr "" -#: src/tables/build/BuildLineTable.tsx:223 +#: src/tables/build/BuildLineTable.tsx:224 msgid "Show items with stock on order" msgstr "" -#: src/tables/build/BuildLineTable.tsx:258 +#: src/tables/build/BuildLineTable.tsx:259 #: src/tables/sales/SalesOrderLineItemTable.tsx:172 msgid "In production" msgstr "" -#: src/tables/build/BuildLineTable.tsx:286 +#: src/tables/build/BuildLineTable.tsx:287 msgid "Insufficient stock" msgstr "" -#: src/tables/build/BuildLineTable.tsx:302 +#: src/tables/build/BuildLineTable.tsx:303 #: src/tables/sales/SalesOrderLineItemTable.tsx:160 #: src/tables/stock/StockItemTable.tsx:191 msgid "No stock available" msgstr "" -#: src/tables/build/BuildLineTable.tsx:375 +#: src/tables/build/BuildLineTable.tsx:376 msgid "Gets Inherited" msgstr "" -#: src/tables/build/BuildLineTable.tsx:388 +#: src/tables/build/BuildLineTable.tsx:389 msgid "Unit Quantity" msgstr "" -#: src/tables/build/BuildLineTable.tsx:415 +#: src/tables/build/BuildLineTable.tsx:416 msgid "Setup Quantity" msgstr "" -#: src/tables/build/BuildLineTable.tsx:424 +#: src/tables/build/BuildLineTable.tsx:425 msgid "Attrition" msgstr "" -#: src/tables/build/BuildLineTable.tsx:432 +#: src/tables/build/BuildLineTable.tsx:433 msgid "Rounding Multiple" msgstr "" -#: src/tables/build/BuildLineTable.tsx:441 +#: src/tables/build/BuildLineTable.tsx:442 msgid "BOM Information" msgstr "" -#: src/tables/build/BuildLineTable.tsx:515 +#: src/tables/build/BuildLineTable.tsx:516 #: src/tables/part/PartBuildAllocationsTable.tsx:102 msgid "Fully allocated" msgstr "" -#: src/tables/build/BuildLineTable.tsx:563 +#: src/tables/build/BuildLineTable.tsx:564 #: src/tables/sales/SalesOrderLineItemTable.tsx:311 msgid "Create Build Order" msgstr "" -#: src/tables/build/BuildLineTable.tsx:592 +#: src/tables/build/BuildLineTable.tsx:593 msgid "Auto allocation in progress" msgstr "" -#: src/tables/build/BuildLineTable.tsx:595 -#: src/tables/build/BuildLineTable.tsx:802 +#: src/tables/build/BuildLineTable.tsx:596 +#: src/tables/build/BuildLineTable.tsx:809 msgid "Auto Allocate Stock" msgstr "" -#: src/tables/build/BuildLineTable.tsx:596 +#: src/tables/build/BuildLineTable.tsx:597 msgid "Automatically allocate stock to this build according to the selected options" msgstr "" -#: src/tables/build/BuildLineTable.tsx:616 -#: src/tables/build/BuildLineTable.tsx:630 -#: src/tables/build/BuildLineTable.tsx:751 -#: src/tables/build/BuildLineTable.tsx:852 +#: src/tables/build/BuildLineTable.tsx:617 +#: src/tables/build/BuildLineTable.tsx:631 +#: src/tables/build/BuildLineTable.tsx:758 +#: src/tables/build/BuildLineTable.tsx:859 #: src/tables/build/BuildOutputTable.tsx:355 #: src/tables/build/BuildOutputTable.tsx:360 msgid "Deallocate Stock" msgstr "" -#: src/tables/build/BuildLineTable.tsx:632 +#: src/tables/build/BuildLineTable.tsx:633 msgid "Deallocate all untracked stock for this build order" msgstr "" -#: src/tables/build/BuildLineTable.tsx:634 +#: src/tables/build/BuildLineTable.tsx:635 msgid "Deallocate stock from the selected line item" msgstr "" -#: src/tables/build/BuildLineTable.tsx:638 +#: src/tables/build/BuildLineTable.tsx:639 msgid "Stock has been deallocated" msgstr "" -#: src/tables/build/BuildLineTable.tsx:771 +#: src/tables/build/BuildLineTable.tsx:778 msgid "Build Stock" msgstr "" -#: src/tables/build/BuildLineTable.tsx:784 +#: src/tables/build/BuildLineTable.tsx:791 #: src/tables/sales/SalesOrderLineItemTable.tsx:487 msgid "View Part" msgstr "" @@ -9739,7 +9823,7 @@ msgid "Serialize Build Output" msgstr "" #: src/tables/build/BuildOutputTable.tsx:405 -#: src/tables/part/PartTestResultTable.tsx:310 +#: src/tables/part/PartTestResultTable.tsx:318 #: src/tables/stock/StockItemTable.tsx:328 msgid "Filter by stock status" msgstr "" @@ -9964,8 +10048,8 @@ msgid "View Item" msgstr "" #: src/tables/general/ExtraLineItemTable.tsx:95 -#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:299 -#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:403 +#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:300 +#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:405 #: src/tables/sales/ReturnOrderLineItemTable.tsx:83 #: src/tables/sales/ReturnOrderLineItemTable.tsx:187 #: src/tables/sales/SalesOrderLineItemTable.tsx:252 @@ -9974,14 +10058,14 @@ msgid "Add Line Item" msgstr "" #: src/tables/general/ExtraLineItemTable.tsx:108 -#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:320 +#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:322 #: src/tables/sales/ReturnOrderLineItemTable.tsx:96 #: src/tables/sales/SalesOrderLineItemTable.tsx:271 msgid "Edit Line Item" msgstr "" #: src/tables/general/ExtraLineItemTable.tsx:117 -#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:329 +#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:331 #: src/tables/sales/ReturnOrderLineItemTable.tsx:105 #: src/tables/sales/SalesOrderLineItemTable.tsx:280 msgid "Delete Line Item" @@ -9991,6 +10075,137 @@ msgstr "" msgid "Add Extra Line Item" msgstr "" +#: src/tables/general/ParameterTable.tsx:88 +msgid "Internal Units" +msgstr "" + +#: src/tables/general/ParameterTable.tsx:108 +#: src/tables/general/ParameterTable.tsx:123 +msgid "Updated By" +msgstr "" + +#: src/tables/general/ParameterTable.tsx:118 +msgid "Show parameters for enabled templates" +msgstr "" + +#: src/tables/general/ParameterTable.tsx:124 +msgid "Filter by user who last updated the parameter" +msgstr "" + +#: src/tables/general/ParameterTable.tsx:154 +msgid "Import Parameters" +msgstr "" + +#: src/tables/general/ParameterTable.tsx:164 +#: src/tables/general/ParametricDataTable.tsx:261 +#: src/tables/general/ParametricDataTable.tsx:392 +msgid "Add Parameter" +msgstr "" + +#: src/tables/general/ParameterTable.tsx:175 +#: src/tables/general/ParameterTable.tsx:222 +#: src/tables/general/ParametricDataTable.tsx:285 +msgid "Edit Parameter" +msgstr "" + +#: src/tables/general/ParameterTable.tsx:183 +#: src/tables/general/ParameterTable.tsx:230 +msgid "Delete Parameter" +msgstr "" + +#: src/tables/general/ParameterTable.tsx:191 +msgid "Add Parameters" +msgstr "" + +#: src/tables/general/ParameterTable.tsx:197 +msgid "Create Parameter" +msgstr "" + +#: src/tables/general/ParameterTable.tsx:199 +msgid "Create a new parameter" +msgstr "" + +#: src/tables/general/ParameterTable.tsx:208 +msgid "Import parameters from a file" +msgstr "" + +#: src/tables/general/ParameterTemplateTable.tsx:48 +#: src/tables/general/ParameterTemplateTable.tsx:197 +msgid "Add Parameter Template" +msgstr "" + +#: src/tables/general/ParameterTemplateTable.tsx:64 +msgid "Duplicate Parameter Template" +msgstr "" + +#: src/tables/general/ParameterTemplateTable.tsx:78 +msgid "Delete Parameter Template" +msgstr "" + +#: src/tables/general/ParameterTemplateTable.tsx:85 +msgid "Edit Parameter Template" +msgstr "" + +#: src/tables/general/ParameterTemplateTable.tsx:138 +msgid "Checkbox" +msgstr "" + +#: src/tables/general/ParameterTemplateTable.tsx:139 +msgid "Show checkbox templates" +msgstr "" + +#: src/tables/general/ParameterTemplateTable.tsx:143 +msgid "Has choices" +msgstr "" + +#: src/tables/general/ParameterTemplateTable.tsx:144 +msgid "Show templates with choices" +msgstr "" + +#: src/tables/general/ParameterTemplateTable.tsx:148 +#: src/tables/part/PartTable.tsx:245 +msgid "Has Units" +msgstr "" + +#: src/tables/general/ParameterTemplateTable.tsx:149 +msgid "Show templates with units" +msgstr "" + +#: src/tables/general/ParameterTemplateTable.tsx:154 +msgid "Show enabled templates" +msgstr "" + +#: src/tables/general/ParameterTemplateTable.tsx:158 +#: src/tables/settings/ImportSessionTable.tsx:111 +#: src/tables/settings/TemplateTable.tsx:368 +msgid "Model Type" +msgstr "" + +#: src/tables/general/ParameterTemplateTable.tsx:159 +msgid "Filter by model type" +msgstr "" + +#: src/tables/general/ParametricDataTable.tsx:79 +msgid "Click to edit" +msgstr "" + +#: src/tables/general/ParametricDataTableFilters.tsx:36 +msgid "True" +msgstr "" + +#: src/tables/general/ParametricDataTableFilters.tsx:37 +msgid "False" +msgstr "" + +#: src/tables/general/ParametricDataTableFilters.tsx:47 +#: src/tables/general/ParametricDataTableFilters.tsx:80 +msgid "Select a choice" +msgstr "" + +#: src/tables/general/ParametricDataTableFilters.tsx:100 +msgid "Enter a value" +msgstr "" + #: src/tables/machine/MachineListTable.tsx:133 msgid "Machine restarted" msgstr "" @@ -10071,7 +10286,7 @@ msgid "Initialized" msgstr "" #: src/tables/machine/MachineListTable.tsx:410 -#: src/tables/machine/MachineTypeTable.tsx:307 +#: src/tables/machine/MachineTypeTable.tsx:305 msgid "No errors reported" msgstr "" @@ -10132,15 +10347,15 @@ msgstr "" #~ msgid "Machine type information" #~ msgstr "Machine type information" -#: src/tables/machine/MachineTypeTable.tsx:128 +#: src/tables/machine/MachineTypeTable.tsx:126 msgid "Not Found" msgstr "" -#: src/tables/machine/MachineTypeTable.tsx:131 +#: src/tables/machine/MachineTypeTable.tsx:129 msgid "Machine type not found." msgstr "" -#: src/tables/machine/MachineTypeTable.tsx:141 +#: src/tables/machine/MachineTypeTable.tsx:139 msgid "Machine Type Information" msgstr "" @@ -10148,34 +10363,34 @@ msgstr "" #~ msgid "Available drivers" #~ msgstr "Available drivers" -#: src/tables/machine/MachineTypeTable.tsx:156 -#: src/tables/machine/MachineTypeTable.tsx:255 +#: src/tables/machine/MachineTypeTable.tsx:154 +#: src/tables/machine/MachineTypeTable.tsx:253 msgid "Slug" msgstr "" -#: src/tables/machine/MachineTypeTable.tsx:167 -#: src/tables/machine/MachineTypeTable.tsx:276 +#: src/tables/machine/MachineTypeTable.tsx:165 +#: src/tables/machine/MachineTypeTable.tsx:274 msgid "Provider plugin" msgstr "" -#: src/tables/machine/MachineTypeTable.tsx:179 -#: src/tables/machine/MachineTypeTable.tsx:288 +#: src/tables/machine/MachineTypeTable.tsx:177 +#: src/tables/machine/MachineTypeTable.tsx:286 msgid "Provider file" msgstr "" -#: src/tables/machine/MachineTypeTable.tsx:194 +#: src/tables/machine/MachineTypeTable.tsx:192 msgid "Available Drivers" msgstr "" -#: src/tables/machine/MachineTypeTable.tsx:234 +#: src/tables/machine/MachineTypeTable.tsx:232 msgid "Machine driver not found." msgstr "" -#: src/tables/machine/MachineTypeTable.tsx:242 +#: src/tables/machine/MachineTypeTable.tsx:240 msgid "Machine driver information" msgstr "" -#: src/tables/machine/MachineTypeTable.tsx:262 +#: src/tables/machine/MachineTypeTable.tsx:260 msgid "Machine type" msgstr "" @@ -10187,15 +10402,15 @@ msgstr "" #~ msgid "Machine driver detail" #~ msgstr "Machine driver detail" -#: src/tables/machine/MachineTypeTable.tsx:362 +#: src/tables/machine/MachineTypeTable.tsx:360 msgid "Builtin type" msgstr "" -#: src/tables/machine/MachineTypeTable.tsx:371 +#: src/tables/machine/MachineTypeTable.tsx:369 msgid "Machine Type Detail" msgstr "" -#: src/tables/machine/MachineTypeTable.tsx:381 +#: src/tables/machine/MachineTypeTable.tsx:379 msgid "Machine Driver Detail" msgstr "" @@ -10213,8 +10428,16 @@ msgstr "" msgid "Message" msgstr "" -#: src/tables/part/ParametricPartTable.tsx:78 -msgid "Click to edit" +#: src/tables/part/ParametricPartTable.tsx:20 +msgid "Show active parts" +msgstr "" + +#: src/tables/part/ParametricPartTable.tsx:25 +msgid "Show locked parts" +msgstr "" + +#: src/tables/part/ParametricPartTable.tsx:30 +msgid "Show assembly parts" msgstr "" #: src/tables/part/ParametricPartTable.tsx:82 @@ -10222,43 +10445,14 @@ msgstr "" #~ msgstr "Edit parameter" #: src/tables/part/ParametricPartTable.tsx:244 -msgid "Add Part Parameter" -msgstr "" +#~ msgid "Add Part Parameter" +#~ msgstr "Add Part Parameter" #: src/tables/part/ParametricPartTable.tsx:258 #: src/tables/part/PartParameterTable.tsx:164 #: src/tables/part/PartParameterTable.tsx:187 -msgid "Edit Part Parameter" -msgstr "" - -#: src/tables/part/ParametricPartTable.tsx:355 -msgid "Show active parts" -msgstr "" - -#: src/tables/part/ParametricPartTable.tsx:360 -msgid "Show locked parts" -msgstr "" - -#: src/tables/part/ParametricPartTable.tsx:365 -msgid "Show assembly parts" -msgstr "" - -#: src/tables/part/ParametricPartTableFilters.tsx:36 -msgid "True" -msgstr "" - -#: src/tables/part/ParametricPartTableFilters.tsx:37 -msgid "False" -msgstr "" - -#: src/tables/part/ParametricPartTableFilters.tsx:47 -#: src/tables/part/ParametricPartTableFilters.tsx:80 -msgid "Select a choice" -msgstr "" - -#: src/tables/part/ParametricPartTableFilters.tsx:100 -msgid "Enter a value" -msgstr "" +#~ msgid "Edit Part Parameter" +#~ msgstr "Edit Part Parameter" #: src/tables/part/PartBuildAllocationsTable.tsx:64 msgid "Assembly IPN" @@ -10273,7 +10467,7 @@ msgid "Required Stock" msgstr "" #: src/tables/part/PartBuildAllocationsTable.tsx:124 -#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:381 +#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:383 msgid "View Build Order" msgstr "" @@ -10332,85 +10526,22 @@ msgstr "" msgid "Delete Category Parameter" msgstr "" -#: src/tables/part/PartCategoryTemplateTable.tsx:87 -msgid "Parameter Template" -msgstr "" - #: src/tables/part/PartCategoryTemplateTable.tsx:93 #~ msgid "[{0}]" #~ msgstr "[{0}]" -#: src/tables/part/PartParameterTable.tsx:108 -msgid "Internal Units" -msgstr "" - -#: src/tables/part/PartParameterTable.tsx:128 -#: src/tables/part/PartParameterTable.tsx:138 -msgid "Updated By" -msgstr "" - -#: src/tables/part/PartParameterTable.tsx:139 -msgid "Filter by user who last updated the parameter" -msgstr "" - #: src/tables/part/PartParameterTable.tsx:148 -msgid "New Part Parameter" -msgstr "" +#~ msgid "New Part Parameter" +#~ msgstr "New Part Parameter" #: src/tables/part/PartParameterTable.tsx:173 #: src/tables/part/PartParameterTable.tsx:195 -msgid "Delete Part Parameter" -msgstr "" +#~ msgid "Delete Part Parameter" +#~ msgstr "Delete Part Parameter" #: src/tables/part/PartParameterTable.tsx:213 -msgid "Add parameter" -msgstr "" - -#: src/tables/part/PartParameterTable.tsx:232 -msgid "Part parameters cannot be edited, as the part is locked" -msgstr "" - -#: src/tables/part/PartParameterTemplateTable.tsx:36 -msgid "Checkbox" -msgstr "" - -#: src/tables/part/PartParameterTemplateTable.tsx:37 -msgid "Show checkbox templates" -msgstr "" - -#: src/tables/part/PartParameterTemplateTable.tsx:41 -msgid "Has choices" -msgstr "" - -#: src/tables/part/PartParameterTemplateTable.tsx:42 -msgid "Show templates with choices" -msgstr "" - -#: src/tables/part/PartParameterTemplateTable.tsx:46 -#: src/tables/part/PartTable.tsx:245 -msgid "Has Units" -msgstr "" - -#: src/tables/part/PartParameterTemplateTable.tsx:47 -msgid "Show templates with units" -msgstr "" - -#: src/tables/part/PartParameterTemplateTable.tsx:91 -#: src/tables/part/PartParameterTemplateTable.tsx:166 -msgid "Add Parameter Template" -msgstr "" - -#: src/tables/part/PartParameterTemplateTable.tsx:105 -msgid "Duplicate Parameter Template" -msgstr "" - -#: src/tables/part/PartParameterTemplateTable.tsx:117 -msgid "Edit Parameter Template" -msgstr "" - -#: src/tables/part/PartParameterTemplateTable.tsx:128 -msgid "Delete Parameter Template" -msgstr "" +#~ msgid "Add parameter" +#~ msgstr "Add parameter" #: src/tables/part/PartParameterTemplateTable.tsx:141 #~ msgid "Add parameter template" @@ -10430,7 +10561,7 @@ msgid "Show received items" msgstr "" #: src/tables/part/PartSalesAllocationsTable.tsx:90 -#: src/tables/sales/SalesOrderShipmentTable.tsx:218 +#: src/tables/sales/SalesOrderShipmentTable.tsx:263 msgid "View Sales Order" msgstr "" @@ -10617,8 +10748,8 @@ msgstr "" #: src/tables/part/PartTestResultTable.tsx:103 #: src/tables/part/PartTestResultTable.tsx:181 -#: src/tables/part/PartTestResultTable.tsx:320 -#: src/tables/part/PartTestResultTable.tsx:334 +#: src/tables/part/PartTestResultTable.tsx:328 +#: src/tables/part/PartTestResultTable.tsx:342 #: src/tables/stock/StockItemTestResultTable.tsx:296 #: src/tables/stock/StockItemTestResultTable.tsx:368 #: src/tables/stock/StockItemTestResultTable.tsx:429 @@ -10643,7 +10774,7 @@ msgstr "" msgid "No Result" msgstr "" -#: src/tables/part/PartTestResultTable.tsx:298 +#: src/tables/part/PartTestResultTable.tsx:306 msgid "Show build outputs currently in production" msgstr "" @@ -11013,36 +11144,45 @@ msgstr "" #~ msgid "Parameter updated" #~ msgstr "Parameter updated" -#: src/tables/purchasing/ManufacturerPartParameterTable.tsx:63 -#: src/tables/purchasing/ManufacturerPartParameterTable.tsx:112 -msgid "Add Parameter" -msgstr "" - #: src/tables/purchasing/ManufacturerPartParameterTable.tsx:73 #~ msgid "Parameter deleted" #~ msgstr "Parameter deleted" -#: src/tables/purchasing/ManufacturerPartParameterTable.tsx:74 -msgid "Edit Parameter" -msgstr "" - #: src/tables/purchasing/ManufacturerPartParameterTable.tsx:74 #~ msgid "Are you sure you want to delete this parameter?" #~ msgstr "Are you sure you want to delete this parameter?" -#: src/tables/purchasing/ManufacturerPartParameterTable.tsx:82 -msgid "Delete Parameter" +#: src/tables/purchasing/ManufacturerPartParametricTable.tsx:34 +#: src/tables/purchasing/ManufacturerPartTable.tsx:82 +#: src/tables/purchasing/SupplierPartTable.tsx:99 +msgid "MPN" +msgstr "" + +#: src/tables/purchasing/ManufacturerPartParametricTable.tsx:44 +#: src/tables/purchasing/ManufacturerPartTable.tsx:134 +#: src/tables/purchasing/SupplierPartTable.tsx:220 +msgid "Active Part" +msgstr "" + +#: src/tables/purchasing/ManufacturerPartParametricTable.tsx:45 +#: src/tables/purchasing/ManufacturerPartTable.tsx:135 +msgid "Show manufacturer parts for active internal parts." +msgstr "" + +#: src/tables/purchasing/ManufacturerPartParametricTable.tsx:50 +#: src/tables/purchasing/ManufacturerPartTable.tsx:140 +msgid "Active Manufacturer" +msgstr "" + +#: src/tables/purchasing/ManufacturerPartParametricTable.tsx:51 +#: src/tables/purchasing/ManufacturerPartTable.tsx:142 +msgid "Show manufacturer parts for active manufacturers." msgstr "" #: src/tables/purchasing/ManufacturerPartTable.tsx:63 #~ msgid "Create Manufacturer Part" #~ msgstr "Create Manufacturer Part" -#: src/tables/purchasing/ManufacturerPartTable.tsx:82 -#: src/tables/purchasing/SupplierPartTable.tsx:99 -msgid "MPN" -msgstr "" - #: src/tables/purchasing/ManufacturerPartTable.tsx:100 #~ msgid "Manufacturer part updated" #~ msgstr "Manufacturer part updated" @@ -11055,25 +11195,8 @@ msgstr "" #~ msgid "Are you sure you want to remove this manufacturer part?" #~ msgstr "Are you sure you want to remove this manufacturer part?" -#: src/tables/purchasing/ManufacturerPartTable.tsx:134 -#: src/tables/purchasing/SupplierPartTable.tsx:220 -msgid "Active Part" -msgstr "" - -#: src/tables/purchasing/ManufacturerPartTable.tsx:135 -msgid "Show manufacturer parts for active internal parts." -msgstr "" - -#: src/tables/purchasing/ManufacturerPartTable.tsx:140 -msgid "Active Manufacturer" -msgstr "" - -#: src/tables/purchasing/ManufacturerPartTable.tsx:142 -msgid "Show manufacturer parts for active manufacturers." -msgstr "" - #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:115 -#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:397 +#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:399 msgid "Import Line Items" msgstr "" @@ -11099,11 +11222,11 @@ msgstr "" #~ msgid "Add line item" #~ msgstr "Add line item" -#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:350 +#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:352 msgid "Receive line item" msgstr "" -#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:414 +#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:416 msgid "Receive items" msgstr "" @@ -11201,25 +11324,25 @@ msgid "Not shipped" msgstr "" #: src/tables/sales/SalesOrderAllocationTable.tsx:211 -#: src/tables/sales/SalesOrderAllocationTable.tsx:229 +#: src/tables/sales/SalesOrderAllocationTable.tsx:235 msgid "Edit Allocation" msgstr "" #: src/tables/sales/SalesOrderAllocationTable.tsx:218 #: src/tables/sales/SalesOrderAllocationTable.tsx:241 -msgid "Delete Allocation" -msgstr "" +#~ msgid "Delete Allocation" +#~ msgstr "Delete Allocation" -#: src/tables/sales/SalesOrderAllocationTable.tsx:252 -#: src/tables/sales/SalesOrderAllocationTable.tsx:253 +#: src/tables/sales/SalesOrderAllocationTable.tsx:261 +#: src/tables/sales/SalesOrderAllocationTable.tsx:262 msgid "View Shipment" msgstr "" -#: src/tables/sales/SalesOrderAllocationTable.tsx:308 +#: src/tables/sales/SalesOrderAllocationTable.tsx:317 msgid "Assign to Shipment" msgstr "" -#: src/tables/sales/SalesOrderAllocationTable.tsx:324 +#: src/tables/sales/SalesOrderAllocationTable.tsx:333 msgid "Assign to shipment" msgstr "" @@ -11259,35 +11382,35 @@ msgstr "" #~ msgid "Delete Shipment" #~ msgstr "Delete Shipment" -#: src/tables/sales/SalesOrderShipmentTable.tsx:72 +#: src/tables/sales/SalesOrderShipmentTable.tsx:79 msgid "Create Shipment" msgstr "" -#: src/tables/sales/SalesOrderShipmentTable.tsx:143 +#: src/tables/sales/SalesOrderShipmentTable.tsx:164 msgid "Items" msgstr "" -#: src/tables/sales/SalesOrderShipmentTable.tsx:203 +#: src/tables/sales/SalesOrderShipmentTable.tsx:248 msgid "Edit shipment" msgstr "" -#: src/tables/sales/SalesOrderShipmentTable.tsx:211 +#: src/tables/sales/SalesOrderShipmentTable.tsx:256 msgid "Cancel shipment" msgstr "" -#: src/tables/sales/SalesOrderShipmentTable.tsx:241 +#: src/tables/sales/SalesOrderShipmentTable.tsx:286 msgid "Add shipment" msgstr "" -#: src/tables/sales/SalesOrderShipmentTable.tsx:255 +#: src/tables/sales/SalesOrderShipmentTable.tsx:300 msgid "Show shipments which have been checked" msgstr "" -#: src/tables/sales/SalesOrderShipmentTable.tsx:260 +#: src/tables/sales/SalesOrderShipmentTable.tsx:305 msgid "Show shipments which have been shipped" msgstr "" -#: src/tables/sales/SalesOrderShipmentTable.tsx:265 +#: src/tables/sales/SalesOrderShipmentTable.tsx:310 msgid "Show shipments which have been delivered" msgstr "" @@ -11621,11 +11744,6 @@ msgstr "" msgid "Imported Rows" msgstr "" -#: src/tables/settings/ImportSessionTable.tsx:111 -#: src/tables/settings/TemplateTable.tsx:368 -msgid "Model Type" -msgstr "" - #: src/tables/settings/ImportSessionTable.tsx:112 #: src/tables/settings/TemplateTable.tsx:369 msgid "Filter by target model type" diff --git a/src/frontend/src/locales/hu/messages.po b/src/frontend/src/locales/hu/messages.po index 2a2d2f08aa..db3ca9da18 100644 --- a/src/frontend/src/locales/hu/messages.po +++ b/src/frontend/src/locales/hu/messages.po @@ -8,7 +8,7 @@ msgstr "" "Language: hu\n" "Project-Id-Version: inventree\n" "Report-Msgid-Bugs-To: \n" -"PO-Revision-Date: 2025-11-19 19:39\n" +"PO-Revision-Date: 2025-12-07 07:36\n" "Last-Translator: \n" "Language-Team: Hungarian\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" @@ -30,7 +30,7 @@ msgid "Edit" msgstr "Szerkesztés" #: lib/components/RowActions.tsx:56 -#: src/components/forms/ApiForm.tsx:735 +#: src/components/forms/ApiForm.tsx:754 #: src/components/items/ActionDropdown.tsx:257 #: src/components/items/RoleTable.tsx:155 #: src/hooks/UseForm.tsx:164 @@ -56,24 +56,24 @@ msgstr "Mégsem" #: lib/components/RowActions.tsx:136 #: src/components/nav/NavigationDrawer.tsx:190 -#: src/forms/PurchaseOrderForms.tsx:802 +#: src/forms/PurchaseOrderForms.tsx:854 #: src/forms/StockForms.tsx:796 #: src/forms/StockForms.tsx:843 -#: src/forms/StockForms.tsx:889 -#: src/forms/StockForms.tsx:928 -#: src/forms/StockForms.tsx:964 -#: src/forms/StockForms.tsx:1050 +#: src/forms/StockForms.tsx:896 +#: src/forms/StockForms.tsx:942 +#: src/forms/StockForms.tsx:980 +#: src/forms/StockForms.tsx:1066 #: src/pages/Index/Settings/AccountSettings/MFASettings.tsx:962 msgid "Actions" msgstr "Műveletek" #: lib/components/SearchInput.tsx:34 -#: src/components/forms/fields/RelatedModelField.tsx:408 +#: src/components/forms/fields/RelatedModelField.tsx:479 #: src/components/nav/Header.tsx:169 #: src/components/wizards/ImportPartWizard.tsx:200 #: src/components/wizards/ImportPartWizard.tsx:233 -#: src/pages/Index/Settings/UserSettings.tsx:74 -#: src/pages/part/PartDetail.tsx:1155 +#: src/pages/Index/Settings/UserSettings.tsx:75 +#: src/pages/part/PartDetail.tsx:1176 msgid "Search" msgstr "Keresés" @@ -95,7 +95,7 @@ msgstr "Igen" msgid "No" msgstr "Nem" -#: lib/enums/ModelInformation.tsx:28 +#: lib/enums/ModelInformation.tsx:29 #: src/components/wizards/OrderPartsWizard.tsx:279 #: src/forms/BuildForms.tsx:332 #: src/forms/BuildForms.tsx:407 @@ -103,208 +103,234 @@ msgstr "Nem" #: src/forms/BuildForms.tsx:630 #: src/forms/BuildForms.tsx:793 #: src/forms/BuildForms.tsx:896 -#: src/forms/PurchaseOrderForms.tsx:798 +#: src/forms/PurchaseOrderForms.tsx:850 #: src/forms/ReturnOrderForms.tsx:242 -#: src/forms/SalesOrderForms.tsx:305 +#: src/forms/SalesOrderForms.tsx:384 #: src/forms/StockForms.tsx:360 #: src/forms/StockForms.tsx:791 #: src/forms/StockForms.tsx:838 -#: src/forms/StockForms.tsx:884 -#: src/forms/StockForms.tsx:923 -#: src/forms/StockForms.tsx:959 -#: src/forms/StockForms.tsx:1002 -#: src/forms/StockForms.tsx:1046 -#: src/forms/StockForms.tsx:1094 -#: src/forms/StockForms.tsx:1138 -#: src/pages/build/BuildDetail.tsx:200 -#: src/pages/part/PartDetail.tsx:1207 +#: src/forms/StockForms.tsx:891 +#: src/forms/StockForms.tsx:937 +#: src/forms/StockForms.tsx:975 +#: src/forms/StockForms.tsx:1018 +#: src/forms/StockForms.tsx:1062 +#: src/forms/StockForms.tsx:1110 +#: src/forms/StockForms.tsx:1154 +#: src/pages/build/BuildDetail.tsx:201 +#: src/pages/part/PartDetail.tsx:1228 #: src/tables/ColumnRenderers.tsx:91 +#: src/tables/part/PartTestResultTable.tsx:247 #: src/tables/part/RelatedPartTable.tsx:53 #: src/tables/stock/StockTrackingTable.tsx:87 msgid "Part" msgstr "Alkatrész" -#: lib/enums/ModelInformation.tsx:29 +#: lib/enums/ModelInformation.tsx:30 #: lib/enums/Roles.tsx:35 #: src/components/nav/NavigationDrawer.tsx:70 #: src/defaults/links.tsx:36 -#: src/pages/Index/Settings/SystemSettings.tsx:190 -#: src/pages/part/CategoryDetail.tsx:132 -#: src/pages/part/CategoryDetail.tsx:277 -#: src/pages/part/CategoryDetail.tsx:323 -#: src/pages/part/CategoryDetail.tsx:354 -#: src/pages/part/PartDetail.tsx:965 +#: src/pages/Index/Settings/SystemSettings.tsx:197 +#: src/pages/part/CategoryDetail.tsx:135 +#: src/pages/part/CategoryDetail.tsx:285 +#: src/pages/part/CategoryDetail.tsx:340 +#: src/pages/part/CategoryDetail.tsx:371 +#: src/pages/part/PartDetail.tsx:978 msgid "Parts" msgstr "Alkatrészek" #: lib/enums/ModelInformation.tsx:37 #: src/pages/Index/Settings/AdminCenter/PartParameterPanel.tsx:13 -msgid "Part Parameter Template" -msgstr "Alkatrész paraméter sablon" +#~ msgid "Part Parameter Template" +#~ msgstr "Part Parameter Template" #: lib/enums/ModelInformation.tsx:38 -msgid "Part Parameter Templates" -msgstr "Alkatrész paraméter sablonok" +#~ msgid "Part Parameter Templates" +#~ msgstr "Part Parameter Templates" + +#: lib/enums/ModelInformation.tsx:39 +msgid "Parameter" +msgstr "" + +#: lib/enums/ModelInformation.tsx:40 +#: src/components/panels/ParametersPanel.tsx:19 +#: src/components/wizards/ImportPartWizard.tsx:807 +#: src/pages/Index/Settings/AdminCenter/Index.tsx:195 +#: src/pages/Index/Settings/SystemSettings.tsx:191 +#: src/pages/part/PartDetail.tsx:943 +msgid "Parameters" +msgstr "Paraméterek" #: lib/enums/ModelInformation.tsx:45 +#: src/tables/part/PartCategoryTemplateTable.tsx:87 +msgid "Parameter Template" +msgstr "" + +#: lib/enums/ModelInformation.tsx:46 +#: src/pages/Index/Settings/AdminCenter/ParameterPanel.tsx:13 +msgid "Parameter Templates" +msgstr "" + +#: lib/enums/ModelInformation.tsx:52 msgid "Part Test Template" msgstr "Alkatrész teszt sablon" -#: lib/enums/ModelInformation.tsx:46 +#: lib/enums/ModelInformation.tsx:53 msgid "Part Test Templates" msgstr "Alkatrész Teszt Sablonok" -#: lib/enums/ModelInformation.tsx:52 +#: lib/enums/ModelInformation.tsx:59 #: src/components/wizards/OrderPartsWizard.tsx:290 -#: src/pages/company/SupplierPartDetail.tsx:413 +#: src/pages/company/SupplierPartDetail.tsx:418 #: src/pages/stock/StockDetail.tsx:289 -#: src/tables/build/BuildAllocatedStockTable.tsx:155 +#: src/tables/build/BuildAllocatedStockTable.tsx:152 #: src/tables/part/PartPurchaseOrdersTable.tsx:50 +#: src/tables/purchasing/SupplierPartParametricTable.tsx:29 #: src/tables/purchasing/SupplierPartTable.tsx:83 #: src/tables/stock/StockItemTable.tsx:247 msgid "Supplier Part" msgstr "Beszállítói alkatrész" -#: lib/enums/ModelInformation.tsx:53 -#: src/pages/purchasing/PurchasingIndex.tsx:92 +#: lib/enums/ModelInformation.tsx:60 +#: src/pages/purchasing/PurchasingIndex.tsx:128 msgid "Supplier Parts" msgstr "Beszállítói alkatrészek" -#: lib/enums/ModelInformation.tsx:61 -#: src/pages/company/ManufacturerPartDetail.tsx:297 -#: src/pages/company/SupplierPartDetail.tsx:161 +#: lib/enums/ModelInformation.tsx:69 +#: src/pages/company/ManufacturerPartDetail.tsx:288 +#: src/pages/company/SupplierPartDetail.tsx:162 #: src/tables/part/PartPurchaseOrdersTable.tsx:56 #: src/tables/stock/StockItemTable.tsx:253 msgid "Manufacturer Part" msgstr "Gyártói alkatrész" -#: lib/enums/ModelInformation.tsx:62 -#: src/pages/purchasing/PurchasingIndex.tsx:109 +#: lib/enums/ModelInformation.tsx:70 +#: src/pages/purchasing/PurchasingIndex.tsx:177 msgid "Manufacturer Parts" msgstr "Gyártói alkatrészek" -#: lib/enums/ModelInformation.tsx:70 -#: src/pages/part/CategoryDetail.tsx:354 +#: lib/enums/ModelInformation.tsx:79 +#: src/pages/part/CategoryDetail.tsx:371 #: src/tables/Filter.tsx:389 msgid "Part Category" msgstr "Alkatrész kategória" -#: lib/enums/ModelInformation.tsx:71 +#: lib/enums/ModelInformation.tsx:80 #: lib/enums/Roles.tsx:37 -#: src/pages/part/CategoryDetail.tsx:271 -#: src/pages/part/CategoryDetail.tsx:345 -#: src/pages/part/PartDetail.tsx:1196 +#: src/pages/part/CategoryDetail.tsx:279 +#: src/pages/part/CategoryDetail.tsx:362 +#: src/pages/part/PartDetail.tsx:1217 msgid "Part Categories" msgstr "Alkatrész kategóriák" -#: lib/enums/ModelInformation.tsx:79 +#: lib/enums/ModelInformation.tsx:88 #: src/forms/BuildForms.tsx:473 #: src/forms/BuildForms.tsx:633 #: src/forms/BuildForms.tsx:794 -#: src/forms/SalesOrderForms.tsx:307 +#: src/forms/SalesOrderForms.tsx:386 #: src/pages/stock/StockDetail.tsx:1005 -#: src/tables/part/PartTestResultTable.tsx:248 +#: src/tables/part/PartTestResultTable.tsx:256 #: src/tables/stock/StockTrackingTable.tsx:48 #: src/tables/stock/StockTrackingTable.tsx:55 msgid "Stock Item" msgstr "Készlet tétel" -#: lib/enums/ModelInformation.tsx:80 +#: lib/enums/ModelInformation.tsx:89 #: lib/enums/Roles.tsx:45 -#: src/pages/company/CompanyDetail.tsx:210 -#: src/pages/part/CategoryDetail.tsx:291 +#: src/pages/company/CompanyDetail.tsx:211 +#: src/pages/part/CategoryDetail.tsx:314 #: src/pages/part/PartStockHistoryDetail.tsx:101 #: src/pages/stock/LocationDetail.tsx:121 #: src/pages/stock/LocationDetail.tsx:180 msgid "Stock Items" msgstr "Készlet tételek" -#: lib/enums/ModelInformation.tsx:88 +#: lib/enums/ModelInformation.tsx:98 #: lib/enums/Roles.tsx:47 #: src/pages/stock/LocationDetail.tsx:420 msgid "Stock Location" msgstr "Készlet hely" -#: lib/enums/ModelInformation.tsx:89 +#: lib/enums/ModelInformation.tsx:99 #: src/pages/stock/LocationDetail.tsx:174 #: src/pages/stock/LocationDetail.tsx:412 #: src/pages/stock/StockDetail.tsx:996 msgid "Stock Locations" msgstr "Készlethelyek" -#: lib/enums/ModelInformation.tsx:97 +#: lib/enums/ModelInformation.tsx:108 msgid "Stock Location Type" msgstr "Készlethely Típus" -#: lib/enums/ModelInformation.tsx:98 +#: lib/enums/ModelInformation.tsx:109 msgid "Stock Location Types" msgstr "Készlethely típusok" -#: lib/enums/ModelInformation.tsx:103 -#: src/pages/Index/Settings/SystemSettings.tsx:248 -#: src/pages/part/PartDetail.tsx:911 +#: lib/enums/ModelInformation.tsx:114 +#: src/pages/Index/Settings/SystemSettings.tsx:254 +#: src/pages/part/PartDetail.tsx:900 msgid "Stock History" msgstr "Készlettörténet" -#: lib/enums/ModelInformation.tsx:104 +#: lib/enums/ModelInformation.tsx:115 msgid "Stock Histories" msgstr "Készlettörténet" -#: lib/enums/ModelInformation.tsx:109 +#: lib/enums/ModelInformation.tsx:120 msgid "Build" msgstr "Gyártás" -#: lib/enums/ModelInformation.tsx:110 +#: lib/enums/ModelInformation.tsx:121 msgid "Builds" msgstr "Gyártások" -#: lib/enums/ModelInformation.tsx:118 +#: lib/enums/ModelInformation.tsx:130 msgid "Build Line" msgstr "Gyártás sor" -#: lib/enums/ModelInformation.tsx:119 +#: lib/enums/ModelInformation.tsx:131 msgid "Build Lines" msgstr "Gyártási tételek" -#: lib/enums/ModelInformation.tsx:126 +#: lib/enums/ModelInformation.tsx:138 msgid "Build Item" msgstr "Gyártási tétel" -#: lib/enums/ModelInformation.tsx:127 +#: lib/enums/ModelInformation.tsx:139 msgid "Build Items" msgstr "Gyártási tételek" -#: lib/enums/ModelInformation.tsx:132 -#: src/pages/company/CompanyDetail.tsx:340 +#: lib/enums/ModelInformation.tsx:144 +#: src/pages/company/CompanyDetail.tsx:345 #: src/tables/company/CompanyTable.tsx:47 #: src/tables/company/ContactTable.tsx:67 +#: src/tables/company/ParametricCompanyTable.tsx:18 msgid "Company" msgstr "Cég" -#: lib/enums/ModelInformation.tsx:133 +#: lib/enums/ModelInformation.tsx:145 msgid "Companies" msgstr "Cégek" -#: lib/enums/ModelInformation.tsx:140 -#: src/pages/build/BuildDetail.tsx:316 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:253 -#: src/pages/sales/ReturnOrderDetail.tsx:231 -#: src/pages/sales/SalesOrderDetail.tsx:224 +#: lib/enums/ModelInformation.tsx:152 +#: src/pages/build/BuildDetail.tsx:317 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:254 +#: src/pages/sales/ReturnOrderDetail.tsx:232 +#: src/pages/sales/SalesOrderDetail.tsx:225 #: src/tables/ColumnRenderers.tsx:362 #: src/tables/Filter.tsx:286 #: src/tables/TableHoverCard.tsx:101 msgid "Project Code" msgstr "Projektszám" -#: lib/enums/ModelInformation.tsx:141 +#: lib/enums/ModelInformation.tsx:153 #: src/pages/Index/Settings/AdminCenter/Index.tsx:172 msgid "Project Codes" msgstr "Projektszámok" -#: lib/enums/ModelInformation.tsx:147 +#: lib/enums/ModelInformation.tsx:159 #: src/components/wizards/OrderPartsWizard.tsx:338 #: src/pages/part/pricing/PurchaseHistoryPanel.tsx:33 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:550 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:555 #: src/pages/stock/StockDetail.tsx:352 #: src/tables/part/PartPurchaseOrdersTable.tsx:32 #: src/tables/stock/StockItemTable.tsx:239 @@ -312,117 +338,117 @@ msgstr "Projektszámok" msgid "Purchase Order" msgstr "Beszerzési rendelés" -#: lib/enums/ModelInformation.tsx:148 +#: lib/enums/ModelInformation.tsx:160 #: lib/enums/Roles.tsx:39 #: src/defaults/actions.tsx:104 -#: src/pages/Index/Settings/SystemSettings.tsx:283 -#: src/pages/company/CompanyDetail.tsx:203 -#: src/pages/company/SupplierPartDetail.tsx:266 -#: src/pages/part/PartDetail.tsx:875 -#: src/pages/purchasing/PurchasingIndex.tsx:60 +#: src/pages/Index/Settings/SystemSettings.tsx:289 +#: src/pages/company/CompanyDetail.tsx:204 +#: src/pages/company/SupplierPartDetail.tsx:267 +#: src/pages/part/PartDetail.tsx:864 +#: src/pages/purchasing/PurchasingIndex.tsx:66 msgid "Purchase Orders" msgstr "Beszerzési rendelések" -#: lib/enums/ModelInformation.tsx:156 +#: lib/enums/ModelInformation.tsx:169 msgid "Purchase Order Line" msgstr "Beszerzési rendelés tétel" -#: lib/enums/ModelInformation.tsx:157 +#: lib/enums/ModelInformation.tsx:170 msgid "Purchase Order Lines" msgstr "Beszerzési rendelés tételei" -#: lib/enums/ModelInformation.tsx:162 -#: src/pages/build/BuildDetail.tsx:289 +#: lib/enums/ModelInformation.tsx:175 +#: src/pages/build/BuildDetail.tsx:290 #: src/pages/part/pricing/SaleHistoryPanel.tsx:24 -#: src/pages/sales/SalesOrderDetail.tsx:614 -#: src/pages/sales/SalesOrderShipmentDetail.tsx:105 -#: src/pages/sales/SalesOrderShipmentDetail.tsx:478 +#: src/pages/sales/SalesOrderDetail.tsx:619 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:103 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:446 #: src/pages/stock/StockDetail.tsx:361 #: src/tables/part/PartSalesAllocationsTable.tsx:41 #: src/tables/sales/SalesOrderAllocationTable.tsx:110 -#: src/tables/sales/SalesOrderShipmentTable.tsx:122 +#: src/tables/sales/SalesOrderShipmentTable.tsx:143 #: src/tables/stock/StockTrackingTable.tsx:131 msgid "Sales Order" msgstr "Vevői rendelés" -#: lib/enums/ModelInformation.tsx:163 +#: lib/enums/ModelInformation.tsx:176 #: lib/enums/Roles.tsx:43 #: src/defaults/actions.tsx:114 -#: src/pages/Index/Settings/SystemSettings.tsx:299 -#: src/pages/company/CompanyDetail.tsx:223 -#: src/pages/part/PartDetail.tsx:887 -#: src/pages/sales/SalesIndex.tsx:84 +#: src/pages/Index/Settings/SystemSettings.tsx:305 +#: src/pages/company/CompanyDetail.tsx:224 +#: src/pages/part/PartDetail.tsx:876 +#: src/pages/sales/SalesIndex.tsx:53 msgid "Sales Orders" msgstr "Vevői rendelések" -#: lib/enums/ModelInformation.tsx:171 -#: src/pages/sales/SalesOrderShipmentDetail.tsx:477 +#: lib/enums/ModelInformation.tsx:185 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:445 msgid "Sales Order Shipment" msgstr "Vevői rendelés szállítmány" -#: lib/enums/ModelInformation.tsx:172 +#: lib/enums/ModelInformation.tsx:186 msgid "Sales Order Shipments" msgstr "Vevői rendelés szállítmányok" -#: lib/enums/ModelInformation.tsx:179 -#: src/pages/sales/ReturnOrderDetail.tsx:549 +#: lib/enums/ModelInformation.tsx:194 +#: src/pages/sales/ReturnOrderDetail.tsx:554 #: src/tables/stock/StockTrackingTable.tsx:142 msgid "Return Order" msgstr "Visszavétel" -#: lib/enums/ModelInformation.tsx:180 +#: lib/enums/ModelInformation.tsx:195 #: lib/enums/Roles.tsx:41 #: src/defaults/actions.tsx:125 -#: src/pages/Index/Settings/SystemSettings.tsx:316 -#: src/pages/company/CompanyDetail.tsx:230 -#: src/pages/part/PartDetail.tsx:894 -#: src/pages/sales/SalesIndex.tsx:117 +#: src/pages/Index/Settings/SystemSettings.tsx:322 +#: src/pages/company/CompanyDetail.tsx:231 +#: src/pages/part/PartDetail.tsx:883 +#: src/pages/sales/SalesIndex.tsx:99 msgid "Return Orders" msgstr "Visszavételek" -#: lib/enums/ModelInformation.tsx:188 +#: lib/enums/ModelInformation.tsx:204 msgid "Return Order Line Item" msgstr "Visszavétel sortétel" -#: lib/enums/ModelInformation.tsx:189 +#: lib/enums/ModelInformation.tsx:205 msgid "Return Order Line Items" msgstr "Visszavétel sortételek" -#: lib/enums/ModelInformation.tsx:194 +#: lib/enums/ModelInformation.tsx:210 #: src/tables/company/AddressTable.tsx:52 msgid "Address" msgstr "Cím" -#: lib/enums/ModelInformation.tsx:195 -#: src/pages/company/CompanyDetail.tsx:264 +#: lib/enums/ModelInformation.tsx:211 +#: src/pages/company/CompanyDetail.tsx:265 msgid "Addresses" msgstr "Címek" -#: lib/enums/ModelInformation.tsx:201 +#: lib/enums/ModelInformation.tsx:217 #: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:89 #: src/pages/core/UserDetail.tsx:135 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:229 -#: src/pages/sales/ReturnOrderDetail.tsx:207 -#: src/pages/sales/SalesOrderDetail.tsx:200 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:230 +#: src/pages/sales/ReturnOrderDetail.tsx:208 +#: src/pages/sales/SalesOrderDetail.tsx:201 msgid "Contact" msgstr "Kapcsolat" -#: lib/enums/ModelInformation.tsx:202 -#: src/pages/company/CompanyDetail.tsx:258 +#: lib/enums/ModelInformation.tsx:218 +#: src/pages/company/CompanyDetail.tsx:259 #: src/pages/core/CoreIndex.tsx:33 msgid "Contacts" msgstr "Kapcsolatok" -#: lib/enums/ModelInformation.tsx:208 +#: lib/enums/ModelInformation.tsx:224 #: src/tables/ColumnRenderers.tsx:444 msgid "Owner" msgstr "Tulajdonos" -#: lib/enums/ModelInformation.tsx:209 +#: lib/enums/ModelInformation.tsx:225 msgid "Owners" msgstr "Tulajdonosok" -#: lib/enums/ModelInformation.tsx:215 +#: lib/enums/ModelInformation.tsx:231 #: src/pages/Auth/ChangePassword.tsx:36 #: src/pages/core/UserDetail.tsx:220 #: src/tables/ColumnRenderers.tsx:395 @@ -437,7 +463,7 @@ msgstr "Tulajdonosok" msgid "User" msgstr "Felhasználó" -#: lib/enums/ModelInformation.tsx:216 +#: lib/enums/ModelInformation.tsx:232 #: src/components/nav/NavigationDrawer.tsx:105 #: src/pages/Index/Settings/AdminCenter/UserManagementPanel.tsx:15 #: src/pages/core/CoreIndex.tsx:21 @@ -445,12 +471,12 @@ msgstr "Felhasználó" msgid "Users" msgstr "Felhasználók" -#: lib/enums/ModelInformation.tsx:222 +#: lib/enums/ModelInformation.tsx:238 #: src/pages/core/GroupDetail.tsx:78 msgid "Group" msgstr "Csoport" -#: lib/enums/ModelInformation.tsx:223 +#: lib/enums/ModelInformation.tsx:239 #: src/components/nav/NavigationDrawer.tsx:111 #: src/pages/Index/Settings/AdminCenter/UserManagementPanel.tsx:23 #: src/pages/core/CoreIndex.tsx:27 @@ -460,64 +486,64 @@ msgstr "Csoport" msgid "Groups" msgstr "Csoportok" -#: lib/enums/ModelInformation.tsx:230 +#: lib/enums/ModelInformation.tsx:246 msgid "Import Session" msgstr "Importálási munkamenet" -#: lib/enums/ModelInformation.tsx:231 +#: lib/enums/ModelInformation.tsx:247 msgid "Import Sessions" msgstr "Importálási munkamenetek" -#: lib/enums/ModelInformation.tsx:238 +#: lib/enums/ModelInformation.tsx:254 msgid "Label Template" msgstr "Címke sablon" -#: lib/enums/ModelInformation.tsx:239 +#: lib/enums/ModelInformation.tsx:255 #: src/pages/Index/Settings/AdminCenter/Index.tsx:209 msgid "Label Templates" msgstr "Címke sablonok" -#: lib/enums/ModelInformation.tsx:246 +#: lib/enums/ModelInformation.tsx:262 msgid "Report Template" msgstr "Jelentéssablon" -#: lib/enums/ModelInformation.tsx:247 +#: lib/enums/ModelInformation.tsx:263 #: src/pages/Index/Settings/AdminCenter/Index.tsx:215 msgid "Report Templates" msgstr "Jelentéssablonok" -#: lib/enums/ModelInformation.tsx:254 +#: lib/enums/ModelInformation.tsx:270 #: src/components/plugins/PluginDrawer.tsx:145 msgid "Plugin Configuration" msgstr "Plugin konfiguráció" -#: lib/enums/ModelInformation.tsx:255 +#: lib/enums/ModelInformation.tsx:271 msgid "Plugin Configurations" msgstr "Plugin beállítások" -#: lib/enums/ModelInformation.tsx:262 +#: lib/enums/ModelInformation.tsx:278 msgid "Content Type" msgstr "Tartalom típus" -#: lib/enums/ModelInformation.tsx:263 +#: lib/enums/ModelInformation.tsx:279 msgid "Content Types" msgstr "Tartalom típusok" -#: lib/enums/ModelInformation.tsx:268 +#: lib/enums/ModelInformation.tsx:284 msgid "Selection List" msgstr "Választéklista" -#: lib/enums/ModelInformation.tsx:269 -#: src/pages/Index/Settings/AdminCenter/PartParameterPanel.tsx:21 +#: lib/enums/ModelInformation.tsx:285 +#: src/pages/Index/Settings/AdminCenter/ParameterPanel.tsx:21 msgid "Selection Lists" msgstr "Választéklisták" -#: lib/enums/ModelInformation.tsx:275 +#: lib/enums/ModelInformation.tsx:291 #: src/components/barcodes/BarcodeInput.tsx:114 #: src/components/dashboard/DashboardLayout.tsx:281 #: src/components/editors/NotesEditor.tsx:74 #: src/components/editors/TemplateEditor/TemplateEditor.tsx:158 -#: src/components/forms/fields/ApiFormField.tsx:273 +#: src/components/forms/fields/ApiFormField.tsx:237 #: src/components/forms/fields/TableField.tsx:45 #: src/components/importer/ImportDataSelector.tsx:192 #: src/components/importer/ImporterColumnSelector.tsx:234 @@ -528,7 +554,7 @@ msgstr "Választéklisták" #: src/components/nav/SearchDrawer.tsx:572 #: src/components/settings/SettingList.tsx:139 #: src/components/wizards/ImportPartWizard.tsx:574 -#: src/components/wizards/ImportPartWizard.tsx:718 +#: src/components/wizards/ImportPartWizard.tsx:719 #: src/forms/BomForms.tsx:69 #: src/functions/auth.tsx:643 #: src/pages/ErrorPage.tsx:11 @@ -547,9 +573,9 @@ msgstr "Választéklisták" msgid "Error" msgstr "Hiba" -#: lib/enums/ModelInformation.tsx:276 +#: lib/enums/ModelInformation.tsx:292 #: src/tables/machine/MachineListTable.tsx:402 -#: src/tables/machine/MachineTypeTable.tsx:299 +#: src/tables/machine/MachineTypeTable.tsx:297 msgid "Errors" msgstr "Hibák" @@ -559,10 +585,10 @@ msgstr "Adminisztrátor" #: lib/enums/Roles.tsx:33 #: src/defaults/actions.tsx:135 -#: src/pages/Index/Settings/SystemSettings.tsx:264 -#: src/pages/build/BuildIndex.tsx:75 -#: src/pages/part/PartDetail.tsx:904 -#: src/pages/sales/SalesOrderDetail.tsx:421 +#: src/pages/Index/Settings/SystemSettings.tsx:270 +#: src/pages/build/BuildIndex.tsx:67 +#: src/pages/part/PartDetail.tsx:893 +#: src/pages/sales/SalesOrderDetail.tsx:422 msgid "Build Orders" msgstr "Gyártási utasítások" @@ -639,39 +665,39 @@ msgstr "Vonalkód beolvasása vagy begépelése" msgid "Enter barcode data" msgstr "Add meg a vonalkódot" -#: src/components/barcodes/BarcodeScanDialog.tsx:49 -#: src/components/buttons/ScanButton.tsx:15 +#: src/components/barcodes/BarcodeScanDialog.tsx:56 +#: src/components/buttons/ScanButton.tsx:27 #: src/components/nav/NavigationDrawer.tsx:122 -#: src/forms/PurchaseOrderForms.tsx:457 -#: src/forms/PurchaseOrderForms.tsx:563 +#: src/forms/PurchaseOrderForms.tsx:509 +#: src/forms/PurchaseOrderForms.tsx:615 msgid "Scan Barcode" msgstr "Vonalkód beolvasás" -#: src/components/barcodes/BarcodeScanDialog.tsx:105 +#: src/components/barcodes/BarcodeScanDialog.tsx:121 msgid "No matching item found" msgstr "Nincs egyező tétel" -#: src/components/barcodes/BarcodeScanDialog.tsx:134 +#: src/components/barcodes/BarcodeScanDialog.tsx:150 msgid "Barcode does not match the expected model type" msgstr "A vonalkód nem egyezik a várt model típussal" -#: src/components/barcodes/BarcodeScanDialog.tsx:145 +#: src/components/barcodes/BarcodeScanDialog.tsx:161 #: src/components/editors/NotesEditor.tsx:84 #: src/components/editors/NotesEditor.tsx:118 -#: src/components/forms/ApiForm.tsx:465 +#: src/components/forms/ApiForm.tsx:484 #: src/components/wizards/ImportPartWizard.tsx:566 -#: src/components/wizards/ImportPartWizard.tsx:690 +#: src/components/wizards/ImportPartWizard.tsx:691 #: src/pages/Index/Settings/AdminCenter/CurrencyManagementPanel.tsx:45 #: src/tables/bom/BomTable.tsx:548 #: src/tables/settings/PendingTasksTable.tsx:68 msgid "Success" msgstr "Siker" -#: src/components/barcodes/BarcodeScanDialog.tsx:151 +#: src/components/barcodes/BarcodeScanDialog.tsx:167 msgid "Failed to handle barcode" msgstr "Sikertelen a vonalkód kezelése" -#: src/components/barcodes/BarcodeScanDialog.tsx:167 +#: src/components/barcodes/BarcodeScanDialog.tsx:183 #: src/pages/Index/Scan.tsx:129 msgid "Failed to scan barcode" msgstr "Vonalkód beolvasás sikertelen" @@ -714,10 +740,10 @@ msgstr "Vonalkód párosítás sikertelen" #: src/components/barcodes/QRCode.tsx:179 #: src/pages/part/PartDetail.tsx:521 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:222 -#: src/pages/sales/ReturnOrderDetail.tsx:188 -#: src/pages/sales/SalesOrderDetail.tsx:181 -#: src/pages/sales/SalesOrderShipmentDetail.tsx:122 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:223 +#: src/pages/sales/ReturnOrderDetail.tsx:189 +#: src/pages/sales/SalesOrderDetail.tsx:182 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:120 #: src/pages/stock/StockDetail.tsx:186 msgid "Link" msgstr "Link" @@ -728,7 +754,7 @@ msgstr "A hozzárendelt vonalkód kapcsolat megszüntetése" #: src/components/barcodes/QRCode.tsx:205 #: src/components/items/ActionDropdown.tsx:192 -#: src/forms/PurchaseOrderForms.tsx:554 +#: src/forms/PurchaseOrderForms.tsx:606 msgid "Unlink Barcode" msgstr "Vonalkód leválasztása" @@ -829,14 +855,14 @@ msgstr "Átirányítjuk a szolgáltatóhoz a további lépésekre." #~ msgid "Scan QR code" #~ msgstr "Scan QR code" -#: src/components/buttons/ScanButton.tsx:19 -msgid "Open Barcode Scanner" -msgstr "Vonalkód olvasó megnyitása" - #: src/components/buttons/ScanButton.tsx:20 #~ msgid "Open QR code scanner" #~ msgstr "Open QR code scanner" +#: src/components/buttons/ScanButton.tsx:32 +msgid "Open Barcode Scanner" +msgstr "Vonalkód olvasó megnyitása" + #: src/components/buttons/SpotlightButton.tsx:12 msgid "Open spotlight" msgstr "Zseblámpa megnyitása" @@ -1059,7 +1085,7 @@ msgid "Show the number of sales orders which are assigned to you" msgstr "" #: src/components/dashboard/DashboardWidgetLibrary.tsx:129 -#: src/pages/sales/SalesIndex.tsx:105 +#: src/pages/sales/SalesIndex.tsx:87 msgid "Pending Shipments" msgstr "" @@ -1210,12 +1236,18 @@ msgid "Remove the associated image from this item?" msgstr "Tételhez rendelt kép eltávolítása?" #: src/components/details/DetailsImage.tsx:83 -#: src/forms/StockForms.tsx:888 +#: src/forms/StockForms.tsx:895 #: src/pages/Index/Settings/AccountSettings/MFASettings.tsx:324 #: src/pages/Index/Settings/AccountSettings/MFASettings.tsx:415 #: src/pages/Index/Settings/AccountSettings/MFASettings.tsx:884 #: src/pages/Index/Settings/AccountSettings/MFASettings.tsx:903 #: src/pages/Index/Settings/AccountSettings/SecurityContent.tsx:254 +#: src/tables/build/BuildAllocatedStockTable.tsx:178 +#: src/tables/build/BuildAllocatedStockTable.tsx:258 +#: src/tables/build/BuildLineTable.tsx:111 +#: src/tables/build/BuildLineTable.tsx:665 +#: src/tables/sales/SalesOrderAllocationTable.tsx:224 +#: src/tables/sales/SalesOrderAllocationTable.tsx:247 msgid "Remove" msgstr "Eltávolítás" @@ -1241,12 +1273,12 @@ msgid "Upload Error" msgstr "Feltöltési Hiba" #: src/components/details/DetailsImage.tsx:250 -#: src/components/forms/fields/TextField.tsx:65 +#: src/components/forms/fields/AutoFillRightSection.tsx:34 msgid "Clear" msgstr "Törlés" #: src/components/details/DetailsImage.tsx:256 -#: src/components/forms/ApiForm.tsx:677 +#: src/components/forms/ApiForm.tsx:696 #: src/contexts/ThemeContext.tsx:44 #: src/pages/Index/Settings/AccountSettings/MFASettings.tsx:149 #: src/pages/Index/Settings/AccountSettings/MFASettings.tsx:568 @@ -1499,8 +1531,8 @@ msgstr "Szerver hiba" msgid "A server error occurred" msgstr "Szerver hiba történt" -#: src/components/forms/ApiForm.tsx:103 -#: src/components/forms/ApiForm.tsx:594 +#: src/components/forms/ApiForm.tsx:107 +#: src/components/forms/ApiForm.tsx:613 msgid "Form Error" msgstr "Form hiba" @@ -1508,11 +1540,11 @@ msgstr "Form hiba" #~ msgid "Form Errors Exist" #~ msgstr "Form Errors Exist" -#: src/components/forms/ApiForm.tsx:604 +#: src/components/forms/ApiForm.tsx:623 msgid "Errors exist for one or more form fields" msgstr "Egy vagy több mező hibát jelez" -#: src/components/forms/ApiForm.tsx:715 +#: src/components/forms/ApiForm.tsx:734 #: src/hooks/UseForm.tsx:133 #: src/tables/plugin/PluginListTable.tsx:204 msgid "Update" @@ -1698,15 +1730,14 @@ msgstr "Kiszolgáló" #: src/components/forms/InstanceOptions.tsx:124 #: src/components/plugins/PluginDrawer.tsx:68 #: src/pages/Index/Settings/AdminCenter/UnitManagementPanel.tsx:19 -#: src/pages/part/CategoryDetail.tsx:88 +#: src/pages/part/CategoryDetail.tsx:91 #: src/pages/part/PartDetail.tsx:446 #: src/pages/stock/LocationDetail.tsx:82 #: src/tables/machine/MachineTypeTable.tsx:67 -#: src/tables/machine/MachineTypeTable.tsx:151 -#: src/tables/machine/MachineTypeTable.tsx:254 -#: src/tables/machine/MachineTypeTable.tsx:357 +#: src/tables/machine/MachineTypeTable.tsx:149 +#: src/tables/machine/MachineTypeTable.tsx:252 +#: src/tables/machine/MachineTypeTable.tsx:355 #: src/tables/plugin/PluginErrorTable.tsx:33 -#: src/tables/purchasing/ManufacturerPartParameterTable.tsx:36 #: src/tables/settings/ApiTokenTable.tsx:57 #: src/tables/settings/GroupTable.tsx:95 #: src/tables/settings/GroupTable.tsx:148 @@ -1769,7 +1800,7 @@ msgstr "" #~ msgstr "State: <0>worker ({0}), <1>plugins{1}" #: src/components/forms/InstanceOptions.tsx:118 -#: src/pages/Index/Settings/SystemSettings.tsx:45 +#: src/pages/Index/Settings/SystemSettings.tsx:46 msgid "Server" msgstr "Szerver" @@ -1793,6 +1824,8 @@ msgid "Plugins" msgstr "Pluginok" #: src/components/forms/InstanceOptions.tsx:143 +#: src/tables/general/ParameterTemplateTable.tsx:153 +#: src/tables/general/ParameterTemplateTable.tsx:188 #: src/tables/part/PartTestTemplateTable.tsx:117 #: src/tables/settings/TemplateTable.tsx:251 #: src/tables/settings/TemplateTable.tsx:362 @@ -1817,10 +1850,14 @@ msgstr "Leállítva" msgid "Running" msgstr "Fut" -#: src/components/forms/fields/ApiFormField.tsx:233 +#: src/components/forms/fields/ApiFormField.tsx:197 msgid "Select file to upload" msgstr "" +#: src/components/forms/fields/AutoFillRightSection.tsx:47 +msgid "Accept suggested value" +msgstr "" + #: src/components/forms/fields/DateField.tsx:76 msgid "Select date" msgstr "" @@ -1853,13 +1890,13 @@ msgstr "Csomag választás" msgid "{0} icons" msgstr "{0} db" -#: src/components/forms/fields/RelatedModelField.tsx:409 +#: src/components/forms/fields/RelatedModelField.tsx:480 #: src/components/modals/AboutInvenTreeModal.tsx:96 #: src/pages/Index/Settings/AccountSettings/SecurityContent.tsx:383 msgid "Loading" msgstr "Betöltés" -#: src/components/forms/fields/RelatedModelField.tsx:411 +#: src/components/forms/fields/RelatedModelField.tsx:482 msgid "No results found" msgstr "Nincs találat" @@ -1875,10 +1912,6 @@ msgstr "Nincs elérhető bejegyzés" msgid "Add new row" msgstr "Új sor hozzáadása" -#: src/components/forms/fields/TextField.tsx:82 -msgid "Accept suggested value" -msgstr "" - #: src/components/images/DetailsImage.tsx:252 #~ msgid "Select image" #~ msgstr "Select image" @@ -2036,7 +2069,7 @@ msgstr "" #: src/components/importer/ImporterDrawer.tsx:109 #: src/components/modals/AboutInvenTreeModal.tsx:205 #: src/components/modals/ServerInfoModal.tsx:134 -#: src/components/wizards/ImportPartWizard.tsx:772 +#: src/components/wizards/ImportPartWizard.tsx:773 #: src/forms/BomForms.tsx:132 #: src/pages/Index/Settings/AccountSettings/MFASettings.tsx:685 msgid "Close" @@ -2199,7 +2232,7 @@ msgid "Change" msgstr "Módosítás" #: src/components/items/RoleTable.tsx:150 -#: src/forms/StockForms.tsx:927 +#: src/forms/StockForms.tsx:941 #: src/tables/stock/StockItemTestResultTable.tsx:367 msgid "Add" msgstr "Hozzáadás" @@ -2222,11 +2255,11 @@ msgstr "Nincsenek tételek" #: src/components/items/TransferList.tsx:161 #: src/components/render/Stock.tsx:102 -#: src/pages/part/PartDetail.tsx:994 +#: src/pages/part/PartDetail.tsx:1009 #: src/pages/stock/StockDetail.tsx:265 #: src/pages/stock/StockDetail.tsx:942 -#: src/tables/build/BuildAllocatedStockTable.tsx:135 -#: src/tables/build/BuildLineTable.tsx:192 +#: src/tables/build/BuildAllocatedStockTable.tsx:132 +#: src/tables/build/BuildLineTable.tsx:193 #: src/tables/part/PartTable.tsx:137 #: src/tables/stock/StockItemTable.tsx:182 #: src/tables/stock/StockItemTable.tsx:343 @@ -2373,7 +2406,7 @@ msgid "Database" msgstr "Adatbázis" #: src/components/modals/ServerInfoModal.tsx:49 -#: src/components/nav/Alerts.tsx:118 +#: src/components/nav/Alerts.tsx:120 msgid "Debug Mode" msgstr "Debug mód" @@ -2414,7 +2447,7 @@ msgid "Issues detected" msgstr "Problémák észlelhetők" #: src/components/modals/ServerInfoModal.tsx:102 -#: src/components/nav/Alerts.tsx:125 +#: src/components/nav/Alerts.tsx:127 msgid "Background Worker" msgstr "Háttér munkavégző" @@ -2436,7 +2469,7 @@ msgstr "Email beállítások" #~ msgstr "Email settings not configured" #: src/components/modals/ServerInfoModal.tsx:120 -#: src/components/nav/Alerts.tsx:141 +#: src/components/nav/Alerts.tsx:143 msgid "Email settings not configured." msgstr "Email beállítások nincsenek konfigurálva." @@ -2444,43 +2477,47 @@ msgstr "Email beállítások nincsenek konfigurálva." msgid "Alerts" msgstr "Figyelmeztetések" -#: src/components/nav/Alerts.tsx:120 +#: src/components/nav/Alerts.tsx:97 +msgid "No issues detected" +msgstr "" + +#: src/components/nav/Alerts.tsx:122 msgid "The server is running in debug mode." msgstr "A szerver debug módban fut." -#: src/components/nav/Alerts.tsx:127 +#: src/components/nav/Alerts.tsx:129 msgid "The background worker process is not running." msgstr "A háttérmunka folyamata nem fut." -#: src/components/nav/Alerts.tsx:132 +#: src/components/nav/Alerts.tsx:134 msgid "Server Restart" msgstr "Szerver újraindítása" -#: src/components/nav/Alerts.tsx:134 +#: src/components/nav/Alerts.tsx:136 msgid "The server requires a restart to apply changes." msgstr "A szervert újra kell indítani a módosítások végrehajtásához." -#: src/components/nav/Alerts.tsx:139 +#: src/components/nav/Alerts.tsx:141 msgid "Email settings" msgstr "E-mail beállítások" -#: src/components/nav/Alerts.tsx:146 +#: src/components/nav/Alerts.tsx:148 msgid "Database Migrations" msgstr "Adatbázis migrációk" -#: src/components/nav/Alerts.tsx:148 +#: src/components/nav/Alerts.tsx:150 msgid "There are pending database migrations." msgstr "Függőben lévő adatbázis migrációk." -#: src/components/nav/Alerts.tsx:163 +#: src/components/nav/Alerts.tsx:165 msgid "Learn more about {code}" msgstr "Tudjon meg többet: {code}" #: src/components/nav/Header.tsx:188 #: src/components/nav/NavigationDrawer.tsx:134 #: src/components/nav/NotificationDrawer.tsx:181 -#: src/pages/Index/Settings/SystemSettings.tsx:121 -#: src/pages/Index/Settings/UserSettings.tsx:106 +#: src/pages/Index/Settings/SystemSettings.tsx:122 +#: src/pages/Index/Settings/UserSettings.tsx:107 #: src/pages/Notifications.tsx:45 #: src/pages/Notifications.tsx:130 msgid "Notifications" @@ -2511,8 +2548,8 @@ msgstr "Beállítások" #: src/components/nav/NavigationDrawer.tsx:140 #: src/components/nav/SettingsHeader.tsx:40 #: src/defaults/actions.tsx:92 -#: src/pages/Index/Settings/UserSettings.tsx:141 -#: src/pages/Index/Settings/UserSettings.tsx:145 +#: src/pages/Index/Settings/UserSettings.tsx:142 +#: src/pages/Index/Settings/UserSettings.tsx:146 msgid "User Settings" msgstr "Felhasználói beállítások" @@ -2529,8 +2566,8 @@ msgstr "Felhasználói beállítások" #: src/components/nav/NavigationDrawer.tsx:146 #: src/components/nav/SettingsHeader.tsx:41 #: src/defaults/actions.tsx:144 -#: src/pages/Index/Settings/SystemSettings.tsx:348 -#: src/pages/Index/Settings/SystemSettings.tsx:353 +#: src/pages/Index/Settings/SystemSettings.tsx:354 +#: src/pages/Index/Settings/SystemSettings.tsx:359 msgid "System Settings" msgstr "Rendszerbeállítások" @@ -2577,11 +2614,11 @@ msgstr "Kijelentkezés" #: src/components/nav/NavigationDrawer.tsx:77 #: src/components/render/Part.tsx:36 -#: src/components/wizards/ImportPartWizard.tsx:807 +#: src/components/wizards/ImportPartWizard.tsx:808 #: src/defaults/links.tsx:42 #: src/forms/StockForms.tsx:794 -#: src/pages/Index/Settings/SystemSettings.tsx:224 -#: src/pages/part/PartDetail.tsx:804 +#: src/pages/Index/Settings/SystemSettings.tsx:230 +#: src/pages/part/PartDetail.tsx:793 #: src/pages/stock/LocationDetail.tsx:390 #: src/pages/stock/LocationDetail.tsx:420 #: src/pages/stock/StockDetail.tsx:642 @@ -2591,29 +2628,29 @@ msgstr "Készlet" #: src/components/nav/NavigationDrawer.tsx:84 #: src/defaults/links.tsx:48 -#: src/pages/build/BuildDetail.tsx:748 -#: src/pages/build/BuildIndex.tsx:102 +#: src/pages/build/BuildDetail.tsx:753 +#: src/pages/build/BuildIndex.tsx:101 msgid "Manufacturing" msgstr "Gyártás" #: src/components/nav/NavigationDrawer.tsx:91 #: src/defaults/links.tsx:54 #: src/pages/company/ManufacturerDetail.tsx:9 -#: src/pages/company/ManufacturerPartDetail.tsx:276 +#: src/pages/company/ManufacturerPartDetail.tsx:267 #: src/pages/company/SupplierDetail.tsx:9 -#: src/pages/company/SupplierPartDetail.tsx:360 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:553 -#: src/pages/purchasing/PurchasingIndex.tsx:122 +#: src/pages/company/SupplierPartDetail.tsx:365 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:558 +#: src/pages/purchasing/PurchasingIndex.tsx:212 msgid "Purchasing" msgstr "Beszerzés" #: src/components/nav/NavigationDrawer.tsx:98 #: src/defaults/links.tsx:60 #: src/pages/company/CustomerDetail.tsx:9 -#: src/pages/sales/ReturnOrderDetail.tsx:554 -#: src/pages/sales/SalesIndex.tsx:153 -#: src/pages/sales/SalesOrderDetail.tsx:619 -#: src/pages/sales/SalesOrderShipmentDetail.tsx:480 +#: src/pages/sales/ReturnOrderDetail.tsx:559 +#: src/pages/sales/SalesIndex.tsx:168 +#: src/pages/sales/SalesOrderDetail.tsx:624 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:448 msgid "Sales" msgstr "Eladás" @@ -2667,21 +2704,21 @@ msgid "Remove search group" msgstr "Keresési csoport eltávolítása" #: src/components/nav/SearchDrawer.tsx:288 -#: src/pages/company/ManufacturerPartDetail.tsx:192 -#: src/pages/part/PartDetail.tsx:862 +#: src/pages/company/ManufacturerPartDetail.tsx:179 +#: src/pages/part/PartDetail.tsx:851 #: src/pages/part/PartSupplierDetail.tsx:15 -#: src/pages/purchasing/PurchasingIndex.tsx:81 +#: src/pages/purchasing/PurchasingIndex.tsx:100 msgid "Suppliers" msgstr "Beszállítók" #: src/components/nav/SearchDrawer.tsx:298 #: src/pages/part/PartSupplierDetail.tsx:23 -#: src/pages/purchasing/PurchasingIndex.tsx:98 +#: src/pages/purchasing/PurchasingIndex.tsx:149 msgid "Manufacturers" msgstr "Gyártók" #: src/components/nav/SearchDrawer.tsx:308 -#: src/pages/sales/SalesIndex.tsx:138 +#: src/pages/sales/SalesIndex.tsx:133 msgid "Customers" msgstr "Vevők" @@ -2772,21 +2809,21 @@ msgstr "Plugin információ" #: src/components/plugins/PluginDrawer.tsx:73 #: src/forms/selectionListFields.tsx:102 -#: src/pages/build/BuildDetail.tsx:250 -#: src/pages/company/CompanyDetail.tsx:93 -#: src/pages/company/ManufacturerPartDetail.tsx:93 -#: src/pages/company/ManufacturerPartDetail.tsx:120 -#: src/pages/company/SupplierPartDetail.tsx:145 -#: src/pages/part/CategoryDetail.tsx:108 +#: src/pages/build/BuildDetail.tsx:251 +#: src/pages/company/CompanyDetail.tsx:94 +#: src/pages/company/ManufacturerPartDetail.tsx:92 +#: src/pages/company/ManufacturerPartDetail.tsx:119 +#: src/pages/company/SupplierPartDetail.tsx:146 +#: src/pages/part/CategoryDetail.tsx:111 #: src/pages/part/PartDetail.tsx:460 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:162 -#: src/pages/sales/ReturnOrderDetail.tsx:129 -#: src/pages/sales/SalesOrderDetail.tsx:119 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:163 +#: src/pages/sales/ReturnOrderDetail.tsx:130 +#: src/pages/sales/SalesOrderDetail.tsx:120 #: src/pages/stock/LocationDetail.tsx:102 #: src/tables/ColumnRenderers.tsx:278 -#: src/tables/build/BuildAllocatedStockTable.tsx:91 -#: src/tables/machine/MachineTypeTable.tsx:161 -#: src/tables/machine/MachineTypeTable.tsx:257 +#: src/tables/build/BuildAllocatedStockTable.tsx:88 +#: src/tables/machine/MachineTypeTable.tsx:159 +#: src/tables/machine/MachineTypeTable.tsx:255 #: src/tables/plugin/PluginListTable.tsx:110 msgid "Description" msgstr "Leírás" @@ -2814,7 +2851,7 @@ msgstr "Dátum" #: src/tables/company/CompanyTable.tsx:91 #: src/tables/machine/MachineListTable.tsx:384 #: src/tables/machine/MachineListTable.tsx:799 -#: src/tables/part/ParametricPartTable.tsx:354 +#: src/tables/part/ParametricPartTable.tsx:19 #: src/tables/part/PartTable.tsx:197 #: src/tables/part/PartVariantTable.tsx:15 #: src/tables/plugin/PluginListTable.tsx:96 @@ -2836,8 +2873,8 @@ msgid "Installation Path" msgstr "Telepítési útvonal" #: src/components/plugins/PluginDrawer.tsx:116 -#: src/tables/machine/MachineTypeTable.tsx:184 -#: src/tables/machine/MachineTypeTable.tsx:293 +#: src/tables/machine/MachineTypeTable.tsx:182 +#: src/tables/machine/MachineTypeTable.tsx:291 #: src/tables/plugin/PluginListTable.tsx:101 #: src/tables/plugin/PluginListTable.tsx:417 msgid "Builtin" @@ -2849,8 +2886,8 @@ msgstr "Csomag" #: src/components/plugins/PluginDrawer.tsx:133 #: src/pages/Index/Settings/AdminCenter/PluginManagementPanel.tsx:55 -#: src/pages/Index/Settings/SystemSettings.tsx:331 -#: src/pages/Index/Settings/UserSettings.tsx:128 +#: src/pages/Index/Settings/SystemSettings.tsx:337 +#: src/pages/Index/Settings/UserSettings.tsx:129 msgid "Plugin Settings" msgstr "Plugin beállítások" @@ -2911,7 +2948,7 @@ msgstr "Plugin tartalom betöltési hiba" #~ msgid "Unknown model: {model}" #~ msgstr "Unknown model: {model}" -#: src/components/render/Instance.tsx:249 +#: src/components/render/Instance.tsx:247 msgid "Unknown model: {model_name}" msgstr "Ismeretlen model: {model_name}" @@ -2939,10 +2976,10 @@ msgstr "Szállítmány" #: src/components/render/Part.tsx:28 #: src/components/render/Plugin.tsx:17 #: src/components/render/User.tsx:37 -#: src/pages/company/CompanyDetail.tsx:323 -#: src/pages/company/SupplierPartDetail.tsx:373 +#: src/pages/company/CompanyDetail.tsx:328 +#: src/pages/company/SupplierPartDetail.tsx:378 #: src/pages/core/UserDetail.tsx:211 -#: src/pages/part/PartDetail.tsx:1027 +#: src/pages/part/PartDetail.tsx:1048 #: src/tables/ColumnRenderers.tsx:410 msgid "Inactive" msgstr "Inaktív" @@ -2962,11 +2999,11 @@ msgstr "Nincs készlet" #: src/components/render/Part.tsx:47 #: src/components/wizards/OrderPartsWizard.tsx:135 -#: src/pages/company/SupplierPartDetail.tsx:197 -#: src/pages/company/SupplierPartDetail.tsx:394 -#: src/pages/part/PartDetail.tsx:1015 +#: src/pages/company/SupplierPartDetail.tsx:198 +#: src/pages/company/SupplierPartDetail.tsx:399 +#: src/pages/part/PartDetail.tsx:1030 #: src/tables/bom/BomTable.tsx:444 -#: src/tables/build/BuildLineTable.tsx:222 +#: src/tables/build/BuildLineTable.tsx:223 #: src/tables/part/PartTable.tsx:108 msgid "On Order" msgstr "Rendelve" @@ -2974,9 +3011,9 @@ msgstr "Rendelve" #: src/components/render/Part.tsx:55 #: src/components/wizards/OrderPartsWizard.tsx:141 #: src/pages/part/PartDetail.tsx:587 -#: src/pages/part/PartDetail.tsx:1021 +#: src/pages/part/PartDetail.tsx:1036 #: src/pages/stock/StockDetail.tsx:925 -#: src/tables/part/PartTestResultTable.tsx:297 +#: src/tables/part/PartTestResultTable.tsx:305 #: src/tables/stock/StockItemTable.tsx:359 msgid "In Production" msgstr "Gyártásban" @@ -2987,7 +3024,7 @@ msgid "Details" msgstr "Részletek" #: src/components/render/Part.tsx:112 -#: src/components/wizards/ImportPartWizard.tsx:806 +#: src/components/wizards/ImportPartWizard.tsx:807 #: src/pages/part/PartDetail.tsx:487 #: src/tables/ColumnRenderers.tsx:233 #: src/tables/ColumnRenderers.tsx:242 @@ -3000,16 +3037,16 @@ msgstr "Kategória" #: src/components/render/Stock.tsx:114 #: src/components/render/Stock.tsx:132 #: src/forms/BuildForms.tsx:795 -#: src/forms/PurchaseOrderForms.tsx:595 +#: src/forms/PurchaseOrderForms.tsx:647 #: src/forms/StockForms.tsx:792 #: src/forms/StockForms.tsx:839 -#: src/forms/StockForms.tsx:885 -#: src/forms/StockForms.tsx:924 -#: src/forms/StockForms.tsx:960 -#: src/forms/StockForms.tsx:1003 -#: src/forms/StockForms.tsx:1047 -#: src/forms/StockForms.tsx:1095 -#: src/forms/StockForms.tsx:1139 +#: src/forms/StockForms.tsx:892 +#: src/forms/StockForms.tsx:938 +#: src/forms/StockForms.tsx:976 +#: src/forms/StockForms.tsx:1019 +#: src/forms/StockForms.tsx:1063 +#: src/forms/StockForms.tsx:1111 +#: src/forms/StockForms.tsx:1155 #: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:88 #: src/pages/core/UserDetail.tsx:158 #: src/pages/stock/StockDetail.tsx:298 @@ -3023,7 +3060,7 @@ msgstr "Hely" #: src/components/render/Stock.tsx:99 #: src/pages/stock/StockDetail.tsx:198 #: src/pages/stock/StockDetail.tsx:930 -#: src/tables/build/BuildAllocatedStockTable.tsx:121 +#: src/tables/build/BuildAllocatedStockTable.tsx:118 #: src/tables/build/BuildOutputTable.tsx:107 #: src/tables/sales/SalesOrderAllocationTable.tsx:142 msgid "Serial Number" @@ -3034,9 +3071,9 @@ msgstr "Sorozatszám" #: src/forms/BuildForms.tsx:240 #: src/forms/BuildForms.tsx:634 #: src/forms/BuildForms.tsx:797 -#: src/forms/PurchaseOrderForms.tsx:801 +#: src/forms/PurchaseOrderForms.tsx:853 #: src/forms/ReturnOrderForms.tsx:243 -#: src/forms/SalesOrderForms.tsx:308 +#: src/forms/SalesOrderForms.tsx:387 #: src/forms/StockForms.tsx:841 #: src/pages/part/PartStockHistoryDetail.tsx:56 #: src/pages/part/PartStockHistoryDetail.tsx:210 @@ -3046,9 +3083,9 @@ msgstr "Sorozatszám" #: src/pages/part/pricing/PriceBreakPanel.tsx:172 #: src/pages/stock/StockDetail.tsx:258 #: src/pages/stock/StockDetail.tsx:936 -#: src/tables/build/BuildLineTable.tsx:86 +#: src/tables/build/BuildLineTable.tsx:83 #: src/tables/part/PartPurchaseOrdersTable.tsx:94 -#: src/tables/part/PartTestResultTable.tsx:269 +#: src/tables/part/PartTestResultTable.tsx:277 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:175 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:206 #: src/tables/purchasing/SupplierPriceBreakTable.tsx:69 @@ -3063,14 +3100,14 @@ msgstr "Mennyiség" #: src/forms/BuildForms.tsx:474 #: src/forms/StockForms.tsx:793 #: src/forms/StockForms.tsx:840 -#: src/forms/StockForms.tsx:886 -#: src/forms/StockForms.tsx:925 -#: src/forms/StockForms.tsx:961 -#: src/forms/StockForms.tsx:1004 -#: src/forms/StockForms.tsx:1048 -#: src/forms/StockForms.tsx:1096 -#: src/forms/StockForms.tsx:1140 -#: src/tables/build/BuildLineTable.tsx:96 +#: src/forms/StockForms.tsx:893 +#: src/forms/StockForms.tsx:939 +#: src/forms/StockForms.tsx:977 +#: src/forms/StockForms.tsx:1020 +#: src/forms/StockForms.tsx:1064 +#: src/forms/StockForms.tsx:1112 +#: src/forms/StockForms.tsx:1156 +#: src/tables/build/BuildLineTable.tsx:93 msgid "Batch" msgstr "Köteg" @@ -3306,10 +3343,6 @@ msgstr "Nincs megadva beállítás" #~ msgid "Part category updated" #~ msgstr "Part category updated" -#: src/components/tables/part/PartParameterTable.tsx:41 -#~ msgid "Parameter" -#~ msgstr "Parameter" - #: src/components/tables/part/PartParameterTable.tsx:114 #~ msgid "Part parameter updated" #~ msgstr "Part parameter updated" @@ -3571,15 +3604,16 @@ msgid "Already Imported" msgstr "" #: src/components/wizards/ImportPartWizard.tsx:205 -#: src/pages/company/CompanyDetail.tsx:136 +#: src/pages/company/CompanyDetail.tsx:137 #: src/pages/company/SupplierDetail.tsx:8 -#: src/pages/company/SupplierPartDetail.tsx:130 -#: src/pages/company/SupplierPartDetail.tsx:235 -#: src/pages/company/SupplierPartDetail.tsx:364 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:156 +#: src/pages/company/SupplierPartDetail.tsx:131 +#: src/pages/company/SupplierPartDetail.tsx:236 +#: src/pages/company/SupplierPartDetail.tsx:369 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:157 #: src/tables/Filter.tsx:360 #: src/tables/company/CompanyTable.tsx:96 #: src/tables/part/PartPurchaseOrdersTable.tsx:43 +#: src/tables/purchasing/PurchaseOrderParametricTable.tsx:34 #: src/tables/purchasing/PurchaseOrderTable.tsx:109 #: src/tables/purchasing/SupplierPriceBreakTable.tsx:40 msgid "Supplier" @@ -3648,7 +3682,7 @@ msgid "Next" msgstr "" #: src/components/wizards/ImportPartWizard.tsx:540 -#: src/pages/part/PartDetail.tsx:1046 +#: src/pages/part/PartDetail.tsx:1067 #: src/tables/part/PartTable.tsx:408 msgid "Edit Part" msgstr "Alkatrész szerkesztése" @@ -3669,28 +3703,28 @@ msgstr "" msgid "Import" msgstr "" -#: src/components/wizards/ImportPartWizard.tsx:691 +#: src/components/wizards/ImportPartWizard.tsx:692 msgid "Parameters created successfully!" msgstr "" -#: src/components/wizards/ImportPartWizard.tsx:719 +#: src/components/wizards/ImportPartWizard.tsx:720 msgid "Failed to create parameters, please fix the errors and try again" msgstr "" #. placeholder {0}: supplierPart?.supplier -#: src/components/wizards/ImportPartWizard.tsx:739 +#: src/components/wizards/ImportPartWizard.tsx:740 msgid "Part imported successfully from supplier {0}." msgstr "" -#: src/components/wizards/ImportPartWizard.tsx:752 +#: src/components/wizards/ImportPartWizard.tsx:753 msgid "Open Part" msgstr "" -#: src/components/wizards/ImportPartWizard.tsx:759 +#: src/components/wizards/ImportPartWizard.tsx:760 msgid "Open Supplier Part" msgstr "" -#: src/components/wizards/ImportPartWizard.tsx:766 +#: src/components/wizards/ImportPartWizard.tsx:767 msgid "Open Manufacturer Part" msgstr "" @@ -3699,25 +3733,19 @@ msgstr "" #~ msgid "Import Part" #~ msgstr "Import Part" -#: src/components/wizards/ImportPartWizard.tsx:802 +#: src/components/wizards/ImportPartWizard.tsx:803 msgid "Import Supplier Part" msgstr "" -#: src/components/wizards/ImportPartWizard.tsx:804 +#: src/components/wizards/ImportPartWizard.tsx:805 msgid "Search Supplier Part" msgstr "" -#: src/components/wizards/ImportPartWizard.tsx:806 -#: src/pages/company/ManufacturerPartDetail.tsx:166 -#: src/pages/part/PartDetail.tsx:793 -msgid "Parameters" -msgstr "Paraméterek" - -#: src/components/wizards/ImportPartWizard.tsx:806 +#: src/components/wizards/ImportPartWizard.tsx:807 msgid "Confirm import" msgstr "" -#: src/components/wizards/ImportPartWizard.tsx:808 +#: src/components/wizards/ImportPartWizard.tsx:809 msgid "Done" msgstr "" @@ -3738,24 +3766,24 @@ msgid "Sales Requirements" msgstr "" #: src/components/wizards/OrderPartsWizard.tsx:129 -#: src/forms/StockForms.tsx:887 -#: src/forms/StockForms.tsx:926 -#: src/forms/StockForms.tsx:962 -#: src/forms/StockForms.tsx:1005 -#: src/forms/StockForms.tsx:1049 -#: src/forms/StockForms.tsx:1097 -#: src/forms/StockForms.tsx:1141 -#: src/pages/company/SupplierPartDetail.tsx:190 -#: src/pages/company/SupplierPartDetail.tsx:378 +#: src/forms/StockForms.tsx:894 +#: src/forms/StockForms.tsx:940 +#: src/forms/StockForms.tsx:978 +#: src/forms/StockForms.tsx:1021 +#: src/forms/StockForms.tsx:1065 +#: src/forms/StockForms.tsx:1113 +#: src/forms/StockForms.tsx:1157 +#: src/pages/company/SupplierPartDetail.tsx:191 +#: src/pages/company/SupplierPartDetail.tsx:383 #: src/pages/part/PartDetail.tsx:534 -#: src/pages/part/PartDetail.tsx:984 +#: src/pages/part/PartDetail.tsx:999 #: src/tables/Filter.tsx:92 #: src/tables/purchasing/SupplierPartTable.tsx:230 msgid "In Stock" msgstr "Készleten" #: src/components/wizards/OrderPartsWizard.tsx:146 -#: src/tables/build/BuildLineTable.tsx:404 +#: src/tables/build/BuildLineTable.tsx:405 msgid "Required Quantity" msgstr "Szükséges mennyiség" @@ -3847,7 +3875,7 @@ msgid "Please correct the errors in the selected parts" msgstr "" #: src/components/wizards/OrderPartsWizard.tsx:587 -#: src/tables/build/BuildLineTable.tsx:815 +#: src/tables/build/BuildLineTable.tsx:822 #: src/tables/part/PartTable.tsx:522 #: src/tables/sales/SalesOrderLineItemTable.tsx:370 msgid "Order Parts" @@ -4349,9 +4377,9 @@ msgstr "" #: src/forms/BuildForms.tsx:333 #: src/forms/BuildForms.tsx:408 #: src/forms/BuildForms.tsx:685 -#: src/tables/build/BuildAllocatedStockTable.tsx:150 +#: src/tables/build/BuildAllocatedStockTable.tsx:147 #: src/tables/build/BuildOutputTable.tsx:582 -#: src/tables/part/PartTestResultTable.tsx:272 +#: src/tables/part/PartTestResultTable.tsx:280 msgid "Build Output" msgstr "Gyártás kimenet" @@ -4362,22 +4390,22 @@ msgstr "" #: src/forms/BuildForms.tsx:336 #: src/forms/BuildForms.tsx:411 #: src/forms/BuildForms.tsx:475 -#: src/forms/PurchaseOrderForms.tsx:717 +#: src/forms/PurchaseOrderForms.tsx:769 #: src/forms/ReturnOrderForms.tsx:197 #: src/forms/ReturnOrderForms.tsx:244 #: src/forms/StockForms.tsx:712 #: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:87 -#: src/pages/build/BuildDetail.tsx:222 +#: src/pages/build/BuildDetail.tsx:223 #: src/pages/core/UserDetail.tsx:151 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:168 -#: src/pages/sales/ReturnOrderDetail.tsx:135 -#: src/pages/sales/SalesOrderDetail.tsx:125 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:169 +#: src/pages/sales/ReturnOrderDetail.tsx:136 +#: src/pages/sales/SalesOrderDetail.tsx:126 #: src/pages/stock/StockDetail.tsx:170 #: src/tables/Filter.tsx:274 #: src/tables/build/BuildOutputTable.tsx:404 #: src/tables/machine/MachineListTable.tsx:387 #: src/tables/part/PartPurchaseOrdersTable.tsx:38 -#: src/tables/part/PartTestResultTable.tsx:309 +#: src/tables/part/PartTestResultTable.tsx:317 #: src/tables/sales/ReturnOrderLineItemTable.tsx:138 #: src/tables/sales/ReturnOrderLineItemTable.tsx:176 #: src/tables/settings/CustomStateTable.tsx:79 @@ -4443,18 +4471,19 @@ msgid "Build outputs have been cancelled" msgstr "" #: src/forms/BuildForms.tsx:631 -#: src/pages/build/BuildDetail.tsx:207 -#: src/pages/company/ManufacturerPartDetail.tsx:85 -#: src/pages/company/SupplierPartDetail.tsx:96 +#: src/pages/build/BuildDetail.tsx:208 +#: src/pages/company/ManufacturerPartDetail.tsx:84 +#: src/pages/company/SupplierPartDetail.tsx:97 #: src/pages/part/PartDetail.tsx:453 #: src/pages/stock/StockDetail.tsx:153 #: src/tables/bom/BomTable.tsx:134 #: src/tables/bom/UsedInTable.tsx:40 -#: src/tables/build/BuildAllocatedStockTable.tsx:108 -#: src/tables/build/BuildLineTable.tsx:336 +#: src/tables/build/BuildAllocatedStockTable.tsx:105 +#: src/tables/build/BuildLineTable.tsx:337 #: src/tables/build/BuildOrderTable.tsx:79 #: src/tables/part/PartSalesAllocationsTable.tsx:61 #: src/tables/part/RelatedPartTable.tsx:73 +#: src/tables/purchasing/ManufacturerPartParametricTable.tsx:21 #: src/tables/purchasing/ManufacturerPartTable.tsx:69 #: src/tables/purchasing/SupplierPartTable.tsx:70 #: src/tables/sales/SalesOrderAllocationTable.tsx:135 @@ -4466,47 +4495,47 @@ msgstr "IPN" #: src/forms/BuildForms.tsx:632 #: src/forms/BuildForms.tsx:796 #: src/forms/BuildForms.tsx:897 -#: src/forms/SalesOrderForms.tsx:306 -#: src/tables/build/BuildAllocatedStockTable.tsx:139 -#: src/tables/build/BuildLineTable.tsx:182 +#: src/forms/SalesOrderForms.tsx:385 +#: src/tables/build/BuildAllocatedStockTable.tsx:136 +#: src/tables/build/BuildLineTable.tsx:183 #: src/tables/sales/SalesOrderLineItemTable.tsx:342 #: src/tables/stock/StockItemTable.tsx:338 msgid "Allocated" msgstr "Lefoglalva" #: src/forms/BuildForms.tsx:667 -#: src/forms/SalesOrderForms.tsx:295 -#: src/pages/build/BuildDetail.tsx:108 -#: src/pages/build/BuildDetail.tsx:326 +#: src/forms/SalesOrderForms.tsx:374 +#: src/pages/build/BuildDetail.tsx:109 +#: src/pages/build/BuildDetail.tsx:327 msgid "Source Location" msgstr "Készlet helye" #: src/forms/BuildForms.tsx:668 -#: src/forms/SalesOrderForms.tsx:296 +#: src/forms/SalesOrderForms.tsx:375 msgid "Select the source location for the stock allocation" msgstr "A készlet hozzárendelés forrás készlethelyének kiválasztása" #: src/forms/BuildForms.tsx:700 -#: src/forms/SalesOrderForms.tsx:336 -#: src/tables/build/BuildLineTable.tsx:574 -#: src/tables/build/BuildLineTable.tsx:731 -#: src/tables/build/BuildLineTable.tsx:830 +#: src/forms/SalesOrderForms.tsx:415 +#: src/tables/build/BuildLineTable.tsx:575 +#: src/tables/build/BuildLineTable.tsx:738 +#: src/tables/build/BuildLineTable.tsx:837 #: src/tables/sales/SalesOrderLineItemTable.tsx:380 #: src/tables/sales/SalesOrderLineItemTable.tsx:406 msgid "Allocate Stock" msgstr "Készlet foglalása" #: src/forms/BuildForms.tsx:703 -#: src/forms/SalesOrderForms.tsx:341 +#: src/forms/SalesOrderForms.tsx:420 msgid "Stock items allocated" msgstr "Készlet lefoglalva" #: src/forms/BuildForms.tsx:816 #: src/forms/BuildForms.tsx:917 -#: src/tables/build/BuildAllocatedStockTable.tsx:240 -#: src/tables/build/BuildAllocatedStockTable.tsx:272 -#: src/tables/build/BuildLineTable.tsx:741 -#: src/tables/build/BuildLineTable.tsx:864 +#: src/tables/build/BuildAllocatedStockTable.tsx:243 +#: src/tables/build/BuildAllocatedStockTable.tsx:279 +#: src/tables/build/BuildLineTable.tsx:748 +#: src/tables/build/BuildLineTable.tsx:871 msgid "Consume Stock" msgstr "" @@ -4521,21 +4550,21 @@ msgstr "" #~ msgstr "Stock items consumed" #: src/forms/BuildForms.tsx:853 -#: src/tables/build/BuildLineTable.tsx:514 +#: src/tables/build/BuildLineTable.tsx:515 #: src/tables/part/PartBuildAllocationsTable.tsx:101 msgid "Fully consumed" msgstr "Teljesen elfogyasztva" #: src/forms/BuildForms.tsx:898 -#: src/tables/build/BuildLineTable.tsx:187 +#: src/tables/build/BuildLineTable.tsx:188 #: src/tables/stock/StockItemTable.tsx:367 msgid "Consumed" msgstr "Elhasználva" -#: src/forms/CommonForms.tsx:88 -#: src/forms/PurchaseOrderForms.tsx:125 +#: src/forms/CommonForms.tsx:92 +#: src/forms/PurchaseOrderForms.tsx:176 #: src/forms/ReturnOrderForms.tsx:138 -#: src/forms/SalesOrderForms.tsx:164 +#: src/forms/SalesOrderForms.tsx:185 msgid "Select project code for this line item" msgstr "" @@ -4543,16 +4572,16 @@ msgstr "" #~ msgid "Company updated" #~ msgstr "Company updated" -#: src/forms/PartForms.tsx:85 -#: src/forms/PartForms.tsx:207 -#: src/pages/part/CategoryDetail.tsx:124 +#: src/forms/PartForms.tsx:99 +#: src/forms/PartForms.tsx:228 +#: src/pages/part/CategoryDetail.tsx:127 #: src/pages/part/PartDetail.tsx:668 #: src/tables/part/PartCategoryTable.tsx:94 #: src/tables/part/PartTable.tsx:325 msgid "Subscribed" msgstr "Feliratkozva" -#: src/forms/PartForms.tsx:86 +#: src/forms/PartForms.tsx:100 msgid "Subscribe to notifications for this part" msgstr "" @@ -4564,40 +4593,24 @@ msgstr "" #~ msgid "Part updated" #~ msgstr "Part updated" -#: src/forms/PartForms.tsx:193 +#: src/forms/PartForms.tsx:214 msgid "Parent part category" msgstr "Felsőbb szintű alkatrész kategória" -#: src/forms/PartForms.tsx:208 +#: src/forms/PartForms.tsx:229 msgid "Subscribe to notifications for this category" msgstr "" -#: src/forms/PurchaseOrderForms.tsx:388 -msgid "Assign Batch Code and Serial Numbers" -msgstr "" - -#: src/forms/PurchaseOrderForms.tsx:390 -msgid "Assign Batch Code" -msgstr "" - -#: src/forms/PurchaseOrderForms.tsx:410 -msgid "Choose Location" -msgstr "Hely kiválasztása" - -#: src/forms/PurchaseOrderForms.tsx:418 -msgid "Item Destination selected" -msgstr "" - #: src/forms/PurchaseOrderForms.tsx:421 #~ msgid "Assign Batch Code{0}" #~ msgstr "Assign Batch Code{0}" -#: src/forms/PurchaseOrderForms.tsx:428 -msgid "Part category default location selected" +#: src/forms/PurchaseOrderForms.tsx:440 +msgid "Assign Batch Code and Serial Numbers" msgstr "" -#: src/forms/PurchaseOrderForms.tsx:438 -msgid "Received stock location selected" +#: src/forms/PurchaseOrderForms.tsx:442 +msgid "Assign Batch Code" msgstr "" #: src/forms/PurchaseOrderForms.tsx:444 @@ -4605,115 +4618,131 @@ msgstr "" #~ msgid "Remove item from list" #~ msgstr "Remove item from list" -#: src/forms/PurchaseOrderForms.tsx:446 +#: src/forms/PurchaseOrderForms.tsx:462 +msgid "Choose Location" +msgstr "Hely kiválasztása" + +#: src/forms/PurchaseOrderForms.tsx:470 +msgid "Item Destination selected" +msgstr "" + +#: src/forms/PurchaseOrderForms.tsx:480 +msgid "Part category default location selected" +msgstr "" + +#: src/forms/PurchaseOrderForms.tsx:490 +msgid "Received stock location selected" +msgstr "" + +#: src/forms/PurchaseOrderForms.tsx:498 msgid "Default location selected" msgstr "" -#: src/forms/PurchaseOrderForms.tsx:507 +#: src/forms/PurchaseOrderForms.tsx:559 msgid "Set Location" msgstr "Helyszín beállítása" -#: src/forms/PurchaseOrderForms.tsx:524 -msgid "Set Expiry Date" -msgstr "" - -#: src/forms/PurchaseOrderForms.tsx:532 -#: src/forms/StockForms.tsx:693 -msgid "Adjust Packaging" -msgstr "" - -#: src/forms/PurchaseOrderForms.tsx:540 -#: src/forms/StockForms.tsx:684 -#: src/hooks/UseStockAdjustActions.tsx:148 -msgid "Change Status" -msgstr "Állapot megváltoztatása" - -#: src/forms/PurchaseOrderForms.tsx:546 -msgid "Add Note" -msgstr "Megjegyzés hozzáadása" - #: src/forms/PurchaseOrderForms.tsx:566 #~ msgid "Serial numbers" #~ msgstr "Serial numbers" +#: src/forms/PurchaseOrderForms.tsx:576 +msgid "Set Expiry Date" +msgstr "" + #: src/forms/PurchaseOrderForms.tsx:582 #~ msgid "Store at line item destination" #~ msgstr "Store at line item destination" -#: src/forms/PurchaseOrderForms.tsx:610 -msgid "Store at default location" -msgstr "Alapértelmezett helyre tárolás" - -#: src/forms/PurchaseOrderForms.tsx:625 -msgid "Store at line item destination " +#: src/forms/PurchaseOrderForms.tsx:584 +#: src/forms/StockForms.tsx:693 +msgid "Adjust Packaging" msgstr "" -#: src/forms/PurchaseOrderForms.tsx:637 -msgid "Store with already received stock" -msgstr "Tárolás a már megérkezett készlettel" +#: src/forms/PurchaseOrderForms.tsx:592 +#: src/forms/StockForms.tsx:684 +#: src/hooks/UseStockAdjustActions.tsx:148 +msgid "Change Status" +msgstr "Állapot megváltoztatása" + +#: src/forms/PurchaseOrderForms.tsx:598 +msgid "Add Note" +msgstr "Megjegyzés hozzáadása" #: src/forms/PurchaseOrderForms.tsx:658 #~ msgid "Receive line items" #~ msgstr "Receive line items" -#: src/forms/PurchaseOrderForms.tsx:661 -#: src/pages/build/BuildDetail.tsx:340 +#: src/forms/PurchaseOrderForms.tsx:662 +msgid "Store at default location" +msgstr "Alapértelmezett helyre tárolás" + +#: src/forms/PurchaseOrderForms.tsx:677 +msgid "Store at line item destination " +msgstr "" + +#: src/forms/PurchaseOrderForms.tsx:689 +msgid "Store with already received stock" +msgstr "Tárolás a már megérkezett készlettel" + +#: src/forms/PurchaseOrderForms.tsx:713 +#: src/pages/build/BuildDetail.tsx:341 #: src/pages/stock/StockDetail.tsx:280 #: src/pages/stock/StockDetail.tsx:952 #: src/tables/Filter.tsx:83 -#: src/tables/build/BuildAllocatedStockTable.tsx:128 +#: src/tables/build/BuildAllocatedStockTable.tsx:125 #: src/tables/build/BuildOutputTable.tsx:112 -#: src/tables/part/PartTestResultTable.tsx:260 -#: src/tables/part/PartTestResultTable.tsx:281 +#: src/tables/part/PartTestResultTable.tsx:268 +#: src/tables/part/PartTestResultTable.tsx:289 #: src/tables/sales/SalesOrderAllocationTable.tsx:149 msgid "Batch Code" msgstr "Batch kód" -#: src/forms/PurchaseOrderForms.tsx:662 +#: src/forms/PurchaseOrderForms.tsx:714 msgid "Enter batch code for received items" msgstr "" -#: src/forms/PurchaseOrderForms.tsx:675 +#: src/forms/PurchaseOrderForms.tsx:727 #: src/forms/StockForms.tsx:218 msgid "Serial Numbers" msgstr "Sorozatszámok" -#: src/forms/PurchaseOrderForms.tsx:676 +#: src/forms/PurchaseOrderForms.tsx:728 msgid "Enter serial numbers for received items" msgstr "" -#: src/forms/PurchaseOrderForms.tsx:690 +#: src/forms/PurchaseOrderForms.tsx:742 #: src/pages/stock/StockDetail.tsx:382 #: src/tables/stock/StockItemTable.tsx:294 msgid "Expiry Date" msgstr "Lejárati dátum" -#: src/forms/PurchaseOrderForms.tsx:691 +#: src/forms/PurchaseOrderForms.tsx:743 msgid "Enter an expiry date for received items" msgstr "" -#: src/forms/PurchaseOrderForms.tsx:703 +#: src/forms/PurchaseOrderForms.tsx:755 #: src/forms/StockForms.tsx:728 -#: src/pages/company/SupplierPartDetail.tsx:172 -#: src/pages/company/SupplierPartDetail.tsx:236 +#: src/pages/company/SupplierPartDetail.tsx:173 +#: src/pages/company/SupplierPartDetail.tsx:237 #: src/pages/stock/StockDetail.tsx:419 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:227 msgid "Packaging" msgstr "Csomagolás" -#: src/forms/PurchaseOrderForms.tsx:727 -#: src/pages/company/SupplierPartDetail.tsx:120 +#: src/forms/PurchaseOrderForms.tsx:779 +#: src/pages/company/SupplierPartDetail.tsx:121 #: src/tables/ColumnRenderers.tsx:332 msgid "Note" msgstr "Megjegyzés" -#: src/forms/PurchaseOrderForms.tsx:799 -#: src/pages/company/SupplierPartDetail.tsx:138 +#: src/forms/PurchaseOrderForms.tsx:851 +#: src/pages/company/SupplierPartDetail.tsx:139 #: src/tables/purchasing/SupplierPriceBreakTable.tsx:49 msgid "SKU" msgstr "SKU (leltári azonosító)" -#: src/forms/PurchaseOrderForms.tsx:800 +#: src/forms/PurchaseOrderForms.tsx:852 #: src/tables/part/PartPurchaseOrdersTable.tsx:127 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:213 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:283 @@ -4721,11 +4750,11 @@ msgstr "SKU (leltári azonosító)" msgid "Received" msgstr "Fogadott" -#: src/forms/PurchaseOrderForms.tsx:817 +#: src/forms/PurchaseOrderForms.tsx:869 msgid "Receive Line Items" msgstr "" -#: src/forms/PurchaseOrderForms.tsx:823 +#: src/forms/PurchaseOrderForms.tsx:875 msgid "Items received" msgstr "Tételek beérkeztek" @@ -4737,7 +4766,35 @@ msgstr "" msgid "Item received into stock" msgstr "" -#: src/forms/SalesOrderForms.tsx:401 +#: src/forms/SalesOrderForms.tsx:208 +#: src/forms/SalesOrderForms.tsx:210 +#: src/tables/sales/SalesOrderShipmentTable.tsx:215 +msgid "Check Shipment" +msgstr "" + +#: src/forms/SalesOrderForms.tsx:211 +msgid "Marking the shipment as checked indicates that you have verified that all items included in this shipment are correct" +msgstr "" + +#: src/forms/SalesOrderForms.tsx:221 +msgid "Shipment marked as checked" +msgstr "" + +#: src/forms/SalesOrderForms.tsx:236 +#: src/forms/SalesOrderForms.tsx:238 +#: src/tables/sales/SalesOrderShipmentTable.tsx:228 +msgid "Uncheck Shipment" +msgstr "" + +#: src/forms/SalesOrderForms.tsx:239 +msgid "Marking the shipment as unchecked indicates that the shipment requires further verification" +msgstr "" + +#: src/forms/SalesOrderForms.tsx:249 +msgid "Shipment marked as unchecked" +msgstr "" + +#: src/forms/SalesOrderForms.tsx:480 msgid "Leave blank to use the order address" msgstr "" @@ -4792,150 +4849,150 @@ msgstr "Áthelyezés" msgid "Return" msgstr "Visszavétel" -#: src/forms/StockForms.tsx:963 +#: src/forms/StockForms.tsx:979 #: src/pages/Index/Scan.tsx:182 msgid "Count" msgstr "Mennyiség" -#: src/forms/StockForms.tsx:1246 +#: src/forms/StockForms.tsx:1262 #: src/hooks/UseStockAdjustActions.tsx:108 msgid "Add Stock" msgstr "Készlethez ad" -#: src/forms/StockForms.tsx:1247 +#: src/forms/StockForms.tsx:1263 msgid "Stock added" msgstr "Raktárkészlet hozzáadva" -#: src/forms/StockForms.tsx:1250 +#: src/forms/StockForms.tsx:1266 msgid "Increase the quantity of the selected stock items by a given amount." msgstr "Kiválasztott készlettételek mennyiségének növelése adott értékkel." -#: src/forms/StockForms.tsx:1261 +#: src/forms/StockForms.tsx:1277 #: src/hooks/UseStockAdjustActions.tsx:118 msgid "Remove Stock" msgstr "Készlet csökkentése" -#: src/forms/StockForms.tsx:1262 +#: src/forms/StockForms.tsx:1278 msgid "Stock removed" msgstr "Készlet eltávolítva" -#: src/forms/StockForms.tsx:1265 +#: src/forms/StockForms.tsx:1281 msgid "Decrease the quantity of the selected stock items by a given amount." msgstr "Kiválasztott készlettételek mennyiségének csökkentése adott értékkel." -#: src/forms/StockForms.tsx:1276 +#: src/forms/StockForms.tsx:1292 #: src/hooks/UseStockAdjustActions.tsx:128 msgid "Transfer Stock" msgstr "Készlet áthelyezése" -#: src/forms/StockForms.tsx:1277 +#: src/forms/StockForms.tsx:1293 msgid "Stock transferred" msgstr "Készlet áthelyezve" -#: src/forms/StockForms.tsx:1280 +#: src/forms/StockForms.tsx:1296 msgid "Transfer selected items to the specified location." msgstr "Kiválasztott tétele mozgatása a meghatározott készlethelyre." -#: src/forms/StockForms.tsx:1291 +#: src/forms/StockForms.tsx:1307 #: src/hooks/UseStockAdjustActions.tsx:168 msgid "Return Stock" msgstr "Visszavételi készlet" -#: src/forms/StockForms.tsx:1292 +#: src/forms/StockForms.tsx:1308 msgid "Stock returned" msgstr "Készlet visszavéve" -#: src/forms/StockForms.tsx:1295 +#: src/forms/StockForms.tsx:1311 msgid "Return selected items into stock, to the specified location." msgstr "Kiválasztott tételek visszavétele készletre a megadott helyre." -#: src/forms/StockForms.tsx:1306 +#: src/forms/StockForms.tsx:1322 #: src/hooks/UseStockAdjustActions.tsx:98 msgid "Count Stock" msgstr "Leltározás" -#: src/forms/StockForms.tsx:1307 +#: src/forms/StockForms.tsx:1323 msgid "Stock counted" msgstr "Készlet számlálva" -#: src/forms/StockForms.tsx:1310 +#: src/forms/StockForms.tsx:1326 msgid "Count the selected stock items, and adjust the quantity accordingly." msgstr "" -#: src/forms/StockForms.tsx:1321 +#: src/forms/StockForms.tsx:1337 msgid "Change Stock Status" msgstr "Készlet állapot módosítása" -#: src/forms/StockForms.tsx:1322 +#: src/forms/StockForms.tsx:1338 msgid "Stock status changed" msgstr "" -#: src/forms/StockForms.tsx:1325 +#: src/forms/StockForms.tsx:1341 msgid "Change the status of the selected stock items." msgstr "" -#: src/forms/StockForms.tsx:1336 +#: src/forms/StockForms.tsx:1352 #: src/hooks/UseStockAdjustActions.tsx:138 msgid "Merge Stock" msgstr "Készlet összevonása" -#: src/forms/StockForms.tsx:1337 +#: src/forms/StockForms.tsx:1353 msgid "Stock merged" msgstr "Készlet összevonva" -#: src/forms/StockForms.tsx:1339 +#: src/forms/StockForms.tsx:1355 msgid "Merge Stock Items" msgstr "Készlet tételek összevonása" -#: src/forms/StockForms.tsx:1341 +#: src/forms/StockForms.tsx:1357 msgid "Merge operation cannot be reversed" msgstr "" -#: src/forms/StockForms.tsx:1342 +#: src/forms/StockForms.tsx:1358 msgid "Tracking information may be lost when merging items" msgstr "" -#: src/forms/StockForms.tsx:1343 +#: src/forms/StockForms.tsx:1359 msgid "Supplier information may be lost when merging items" msgstr "" -#: src/forms/StockForms.tsx:1361 +#: src/forms/StockForms.tsx:1377 msgid "Assign Stock to Customer" msgstr "" -#: src/forms/StockForms.tsx:1362 +#: src/forms/StockForms.tsx:1378 msgid "Stock assigned to customer" msgstr "" -#: src/forms/StockForms.tsx:1372 +#: src/forms/StockForms.tsx:1388 msgid "Delete Stock Items" msgstr "Készlet tétel törlése" -#: src/forms/StockForms.tsx:1373 +#: src/forms/StockForms.tsx:1389 msgid "Stock deleted" msgstr "Készlet törölve" -#: src/forms/StockForms.tsx:1376 +#: src/forms/StockForms.tsx:1392 msgid "This operation will permanently delete the selected stock items." msgstr "" -#: src/forms/StockForms.tsx:1385 +#: src/forms/StockForms.tsx:1401 msgid "Parent stock location" msgstr "Szülő készlet hely" -#: src/forms/StockForms.tsx:1512 +#: src/forms/StockForms.tsx:1528 msgid "Find Serial Number" msgstr "" -#: src/forms/StockForms.tsx:1523 +#: src/forms/StockForms.tsx:1539 msgid "No matching items" msgstr "" -#: src/forms/StockForms.tsx:1529 +#: src/forms/StockForms.tsx:1545 msgid "Multiple matching items" msgstr "" -#: src/forms/StockForms.tsx:1538 +#: src/forms/StockForms.tsx:1554 msgid "Invalid response from server" msgstr "" @@ -4953,7 +5010,6 @@ msgstr "" #: src/tables/FilterSelectDrawer.tsx:137 #: src/tables/FilterSelectDrawer.tsx:149 #: src/tables/part/PartTestResultTable.tsx:206 -#: src/tables/purchasing/ManufacturerPartParameterTable.tsx:42 #: src/tables/stock/StockItemTestResultTable.tsx:207 msgid "Value" msgstr "Érték" @@ -5244,7 +5300,7 @@ msgid "Delete selected stock items" msgstr "" #: src/hooks/UseStockAdjustActions.tsx:205 -#: src/pages/part/PartDetail.tsx:1137 +#: src/pages/part/PartDetail.tsx:1158 msgid "Stock Actions" msgstr "Készlet műveletek" @@ -5932,6 +5988,9 @@ msgstr "" #: src/pages/Index/Settings/AccountSettings/MFASettings.tsx:310 #: src/pages/Index/Settings/AccountSettings/MFASettings.tsx:401 +#: src/tables/build/BuildAllocatedStockTable.tsx:181 +#: src/tables/build/BuildLineTable.tsx:668 +#: src/tables/sales/SalesOrderAllocationTable.tsx:220 msgid "Confirm Removal" msgstr "" @@ -6394,30 +6453,34 @@ msgid "Email Messages" msgstr "E-mail üzenetek" #: src/pages/Index/Settings/AdminCenter/HomePanel.tsx:22 -msgid "Active Alerts" -msgstr "" +#~ msgid "Active Alerts" +#~ msgstr "Active Alerts" #: src/pages/Index/Settings/AdminCenter/HomePanel.tsx:27 -msgid "Inactive Alerts" +#~ msgid "Inactive Alerts" +#~ msgstr "Inactive Alerts" + +#: src/pages/Index/Settings/AdminCenter/HomePanel.tsx:36 +msgid "System Status" msgstr "" -#: src/pages/Index/Settings/AdminCenter/HomePanel.tsx:38 +#: src/pages/Index/Settings/AdminCenter/HomePanel.tsx:47 msgid "Admin Center Information" msgstr "" -#: src/pages/Index/Settings/AdminCenter/HomePanel.tsx:44 +#: src/pages/Index/Settings/AdminCenter/HomePanel.tsx:53 msgid "The home panel (and the whole Admin Center) is a new feature starting with the new UI and was previously (before 1.0) not available." msgstr "" -#: src/pages/Index/Settings/AdminCenter/HomePanel.tsx:51 +#: src/pages/Index/Settings/AdminCenter/HomePanel.tsx:60 msgid "The admin center provides a centralized location for all administration functionality and is meant to replace all interaction with the (django) backend admin interface." msgstr "" -#: src/pages/Index/Settings/AdminCenter/HomePanel.tsx:58 +#: src/pages/Index/Settings/AdminCenter/HomePanel.tsx:67 msgid "Please open feature requests (after checking the tracker) for any existing backend admin functionality you are missing in this UI. The backend admin interface should be used carefully and seldom." msgstr "" -#: src/pages/Index/Settings/AdminCenter/HomePanel.tsx:76 +#: src/pages/Index/Settings/AdminCenter/HomePanel.tsx:85 msgid "Quick Actions" msgstr "" @@ -6476,11 +6539,11 @@ msgstr "Egyedi mértékegységek" #: src/pages/Index/Settings/AdminCenter/Index.tsx:195 #: src/pages/part/CategoryDetail.tsx:313 -msgid "Part Parameters" -msgstr "Alkatrész paraméterek" +#~ msgid "Part Parameters" +#~ msgstr "Part Parameters" #: src/pages/Index/Settings/AdminCenter/Index.tsx:202 -#: src/pages/part/CategoryDetail.tsx:306 +#: src/pages/part/CategoryDetail.tsx:329 msgid "Category Parameters" msgstr "Kategória paraméterek" @@ -6494,7 +6557,7 @@ msgstr "Helyszín típusok" #: src/pages/Index/Settings/AdminCenter/Index.tsx:235 #: src/pages/Index/Settings/AdminCenter/MachineManagementPanel.tsx:52 -#: src/tables/machine/MachineTypeTable.tsx:325 +#: src/tables/machine/MachineTypeTable.tsx:323 msgid "Machines" msgstr "Berendezések" @@ -6507,8 +6570,8 @@ msgid "Data Management" msgstr "Adatkezelés" #: src/pages/Index/Settings/AdminCenter/Index.tsx:270 -#: src/pages/Index/Settings/SystemSettings.tsx:175 -#: src/pages/Index/Settings/UserSettings.tsx:118 +#: src/pages/Index/Settings/SystemSettings.tsx:176 +#: src/pages/Index/Settings/UserSettings.tsx:119 msgid "Reporting" msgstr "Riportolás" @@ -6709,11 +6772,11 @@ msgstr "Tokenek" msgid "The settings below are specific to each available plugin" msgstr "" -#: src/pages/Index/Settings/SystemSettings.tsx:77 +#: src/pages/Index/Settings/SystemSettings.tsx:78 msgid "Authentication" msgstr "Hitelesítés" -#: src/pages/Index/Settings/SystemSettings.tsx:103 +#: src/pages/Index/Settings/SystemSettings.tsx:104 msgid "Barcodes" msgstr "Vonalkódok" @@ -6725,12 +6788,12 @@ msgstr "Vonalkódok" #~ msgid "This panel is a placeholder." #~ msgstr "This panel is a placeholder." -#: src/pages/Index/Settings/SystemSettings.tsx:127 -#: src/pages/Index/Settings/UserSettings.tsx:112 +#: src/pages/Index/Settings/SystemSettings.tsx:128 +#: src/pages/Index/Settings/UserSettings.tsx:113 msgid "The settings below are specific to each available notification method" msgstr "" -#: src/pages/Index/Settings/SystemSettings.tsx:133 +#: src/pages/Index/Settings/SystemSettings.tsx:134 msgid "Pricing" msgstr "Árazás" @@ -6738,7 +6801,7 @@ msgstr "Árazás" #~ msgid "Exchange Rates" #~ msgstr "Exchange Rates" -#: src/pages/Index/Settings/SystemSettings.tsx:169 +#: src/pages/Index/Settings/SystemSettings.tsx:170 msgid "Labels" msgstr "Címkék" @@ -6790,15 +6853,15 @@ msgstr "Megjelölés olvasatlanként" #~ msgid "Delete notifications" #~ msgstr "Delete notifications" -#: src/pages/build/BuildDetail.tsx:69 +#: src/pages/build/BuildDetail.tsx:70 msgid "No Required Items" msgstr "" -#: src/pages/build/BuildDetail.tsx:71 +#: src/pages/build/BuildDetail.tsx:72 msgid "This build order does not have any required items." msgstr "" -#: src/pages/build/BuildDetail.tsx:72 +#: src/pages/build/BuildDetail.tsx:73 msgid "The assembled part may not have a Bill of Materials (BOM) defined, or the BOM is empty." msgstr "" @@ -6826,7 +6889,7 @@ msgstr "" #~ msgid "Build Order updated" #~ msgstr "Build Order updated" -#: src/pages/build/BuildDetail.tsx:215 +#: src/pages/build/BuildDetail.tsx:216 #: src/pages/part/PartDetail.tsx:480 #: src/pages/stock/StockDetail.tsx:161 #: src/tables/bom/UsedInTable.tsx:44 @@ -6843,10 +6906,10 @@ msgstr "Változat" #~ msgid "Duplicate build order" #~ msgstr "Duplicate build order" -#: src/pages/build/BuildDetail.tsx:228 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:174 -#: src/pages/sales/ReturnOrderDetail.tsx:141 -#: src/pages/sales/SalesOrderDetail.tsx:131 +#: src/pages/build/BuildDetail.tsx:229 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:175 +#: src/pages/sales/ReturnOrderDetail.tsx:142 +#: src/pages/sales/SalesOrderDetail.tsx:132 #: src/pages/stock/StockDetail.tsx:176 msgid "Custom Status" msgstr "Egyedi státusz" @@ -6855,9 +6918,9 @@ msgstr "Egyedi státusz" #~ msgid "Delete build order" #~ msgstr "Delete build order" -#: src/pages/build/BuildDetail.tsx:237 -#: src/pages/build/BuildDetail.tsx:723 -#: src/pages/build/BuildIndex.tsx:28 +#: src/pages/build/BuildDetail.tsx:238 +#: src/pages/build/BuildDetail.tsx:728 +#: src/pages/build/BuildIndex.tsx:34 #: src/pages/stock/LocationDetail.tsx:140 #: src/tables/build/BuildOrderTable.tsx:123 #: src/tables/build/BuildOrderTable.tsx:183 @@ -6865,57 +6928,57 @@ msgstr "Egyedi státusz" msgid "External" msgstr "Külső" -#: src/pages/build/BuildDetail.tsx:244 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:141 -#: src/pages/sales/ReturnOrderDetail.tsx:108 -#: src/pages/sales/SalesOrderDetail.tsx:98 +#: src/pages/build/BuildDetail.tsx:245 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:142 +#: src/pages/sales/ReturnOrderDetail.tsx:109 +#: src/pages/sales/SalesOrderDetail.tsx:99 #: src/tables/ColumnRenderers.tsx:321 -#: src/tables/build/BuildAllocatedStockTable.tsx:115 -#: src/tables/build/BuildLineTable.tsx:352 +#: src/tables/build/BuildAllocatedStockTable.tsx:112 +#: src/tables/build/BuildLineTable.tsx:353 msgid "Reference" msgstr "Hivatkozás" -#: src/pages/build/BuildDetail.tsx:258 +#: src/pages/build/BuildDetail.tsx:259 msgid "Parent Build" msgstr "Szülő gyártás" -#: src/pages/build/BuildDetail.tsx:269 +#: src/pages/build/BuildDetail.tsx:270 msgid "Build Quantity" msgstr "Gyártási mennyiség" -#: src/pages/build/BuildDetail.tsx:275 +#: src/pages/build/BuildDetail.tsx:276 #: src/pages/part/PartDetail.tsx:598 #: src/tables/bom/BomTable.tsx:365 #: src/tables/bom/BomTable.tsx:407 msgid "Can Build" msgstr "Gyártható" -#: src/pages/build/BuildDetail.tsx:284 -#: src/pages/build/BuildDetail.tsx:474 +#: src/pages/build/BuildDetail.tsx:285 +#: src/pages/build/BuildDetail.tsx:475 msgid "Completed Outputs" msgstr "Befejezett kimenetek" -#: src/pages/build/BuildDetail.tsx:301 +#: src/pages/build/BuildDetail.tsx:302 #: src/tables/Filter.tsx:381 #: src/tables/build/BuildOrderTable.tsx:143 msgid "Issued By" msgstr "Kiállította" -#: src/pages/build/BuildDetail.tsx:309 +#: src/pages/build/BuildDetail.tsx:310 #: src/pages/part/PartDetail.tsx:691 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:261 -#: src/pages/sales/ReturnOrderDetail.tsx:239 -#: src/pages/sales/SalesOrderDetail.tsx:232 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:262 +#: src/pages/sales/ReturnOrderDetail.tsx:240 +#: src/pages/sales/SalesOrderDetail.tsx:233 #: src/tables/ColumnRenderers.tsx:464 #: src/tables/Filter.tsx:319 msgid "Responsible" msgstr "Felelős" -#: src/pages/build/BuildDetail.tsx:327 +#: src/pages/build/BuildDetail.tsx:328 msgid "Any location" msgstr "Bárhonnan" -#: src/pages/build/BuildDetail.tsx:334 +#: src/pages/build/BuildDetail.tsx:335 msgid "Destination Location" msgstr "Cél hely" @@ -6924,24 +6987,24 @@ msgstr "Cél hely" #~ msgid "Test Statistics" #~ msgstr "Test Statistics" -#: src/pages/build/BuildDetail.tsx:350 +#: src/pages/build/BuildDetail.tsx:351 #: src/tables/settings/ApiTokenTable.tsx:97 #: src/tables/settings/PendingTasksTable.tsx:41 msgid "Created" msgstr "Létrehozva" -#: src/pages/build/BuildDetail.tsx:358 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:286 -#: src/pages/sales/ReturnOrderDetail.tsx:265 -#: src/pages/sales/SalesOrderDetail.tsx:257 +#: src/pages/build/BuildDetail.tsx:359 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:287 +#: src/pages/sales/ReturnOrderDetail.tsx:266 +#: src/pages/sales/SalesOrderDetail.tsx:258 #: src/tables/ColumnRenderers.tsx:486 msgid "Start Date" msgstr "Kezdő dátum" -#: src/pages/build/BuildDetail.tsx:366 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:294 -#: src/pages/sales/ReturnOrderDetail.tsx:273 -#: src/pages/sales/SalesOrderDetail.tsx:265 +#: src/pages/build/BuildDetail.tsx:367 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:295 +#: src/pages/sales/ReturnOrderDetail.tsx:274 +#: src/pages/sales/SalesOrderDetail.tsx:266 #: src/tables/ColumnRenderers.tsx:494 #: src/tables/part/PartPurchaseOrdersTable.tsx:101 #: src/tables/sales/ReturnOrderLineItemTable.tsx:154 @@ -6954,185 +7017,185 @@ msgstr "Cél dátum" #~ msgstr "Reporting Actions" #: src/pages/build/BuildDetail.tsx:374 +#~ msgid "Print build report" +#~ msgstr "Print build report" + +#: src/pages/build/BuildDetail.tsx:375 #: src/tables/build/BuildOrderTable.tsx:93 #: src/tables/sales/SalesOrderLineItemTable.tsx:347 msgid "Completed" msgstr "Kész" -#: src/pages/build/BuildDetail.tsx:374 -#~ msgid "Print build report" -#~ msgstr "Print build report" - -#: src/pages/build/BuildDetail.tsx:410 +#: src/pages/build/BuildDetail.tsx:411 msgid "Build Details" msgstr "Gyártás részletei" -#: src/pages/build/BuildDetail.tsx:416 +#: src/pages/build/BuildDetail.tsx:417 msgid "Required Parts" msgstr "Szükséges alkatrészek" -#: src/pages/build/BuildDetail.tsx:428 -#: src/pages/sales/SalesOrderDetail.tsx:407 -#: src/pages/sales/SalesOrderShipmentDetail.tsx:261 +#: src/pages/build/BuildDetail.tsx:429 +#: src/pages/sales/SalesOrderDetail.tsx:408 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:259 #: src/tables/part/PartSalesAllocationsTable.tsx:73 msgid "Allocated Stock" msgstr "Lefoglalt készlet" -#: src/pages/build/BuildDetail.tsx:444 +#: src/pages/build/BuildDetail.tsx:445 msgid "Consumed Stock" msgstr "Felhasznált készlet" -#: src/pages/build/BuildDetail.tsx:461 +#: src/pages/build/BuildDetail.tsx:462 msgid "Incomplete Outputs" msgstr "Befejezetlen kimenetek" -#: src/pages/build/BuildDetail.tsx:489 +#: src/pages/build/BuildDetail.tsx:490 msgid "External Orders" msgstr "Külső Rendelések" -#: src/pages/build/BuildDetail.tsx:503 +#: src/pages/build/BuildDetail.tsx:504 msgid "Child Build Orders" msgstr "Alárendelt gyártások" -#: src/pages/build/BuildDetail.tsx:513 -#: src/pages/part/PartDetail.tsx:937 +#: src/pages/build/BuildDetail.tsx:514 +#: src/pages/part/PartDetail.tsx:926 #: src/pages/stock/StockDetail.tsx:587 #: src/tables/build/BuildOutputTable.tsx:654 #: src/tables/stock/StockItemTestResultTable.tsx:173 msgid "Test Results" msgstr "Teszt eredmények" -#: src/pages/build/BuildDetail.tsx:550 +#: src/pages/build/BuildDetail.tsx:555 msgid "Edit Build Order" msgstr "Gyártási utasítás szerkesztése" -#: src/pages/build/BuildDetail.tsx:572 +#: src/pages/build/BuildDetail.tsx:577 #: src/tables/build/BuildOrderTable.tsx:207 #: src/tables/build/BuildOrderTable.tsx:223 msgid "Add Build Order" msgstr "Gyártási utasítás létrehozása" -#: src/pages/build/BuildDetail.tsx:582 +#: src/pages/build/BuildDetail.tsx:587 msgid "Cancel Build Order" msgstr "Gyártási utasítás visszavonása" -#: src/pages/build/BuildDetail.tsx:584 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:416 -#: src/pages/sales/ReturnOrderDetail.tsx:427 -#: src/pages/sales/SalesOrderDetail.tsx:454 +#: src/pages/build/BuildDetail.tsx:589 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:421 +#: src/pages/sales/ReturnOrderDetail.tsx:432 +#: src/pages/sales/SalesOrderDetail.tsx:459 msgid "Order cancelled" msgstr "Rendelés visszavonva" -#: src/pages/build/BuildDetail.tsx:585 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:415 -#: src/pages/sales/ReturnOrderDetail.tsx:426 -#: src/pages/sales/SalesOrderDetail.tsx:453 +#: src/pages/build/BuildDetail.tsx:590 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:420 +#: src/pages/sales/ReturnOrderDetail.tsx:431 +#: src/pages/sales/SalesOrderDetail.tsx:458 msgid "Cancel this order" msgstr "Rendelés visszavonása" -#: src/pages/build/BuildDetail.tsx:594 +#: src/pages/build/BuildDetail.tsx:599 msgid "Hold Build Order" msgstr "" -#: src/pages/build/BuildDetail.tsx:596 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:423 -#: src/pages/sales/ReturnOrderDetail.tsx:434 -#: src/pages/sales/SalesOrderDetail.tsx:461 +#: src/pages/build/BuildDetail.tsx:601 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:428 +#: src/pages/sales/ReturnOrderDetail.tsx:439 +#: src/pages/sales/SalesOrderDetail.tsx:466 msgid "Place this order on hold" msgstr "Rendelés felfüggesztése" -#: src/pages/build/BuildDetail.tsx:597 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:424 -#: src/pages/sales/ReturnOrderDetail.tsx:435 -#: src/pages/sales/SalesOrderDetail.tsx:462 +#: src/pages/build/BuildDetail.tsx:602 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:429 +#: src/pages/sales/ReturnOrderDetail.tsx:440 +#: src/pages/sales/SalesOrderDetail.tsx:467 msgid "Order placed on hold" msgstr "Felfüggesztett rendelés" -#: src/pages/build/BuildDetail.tsx:602 +#: src/pages/build/BuildDetail.tsx:607 msgid "Issue Build Order" msgstr "Gyártási Rendelés Kiadása" -#: src/pages/build/BuildDetail.tsx:604 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:407 -#: src/pages/sales/ReturnOrderDetail.tsx:418 -#: src/pages/sales/SalesOrderDetail.tsx:445 +#: src/pages/build/BuildDetail.tsx:609 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:412 +#: src/pages/sales/ReturnOrderDetail.tsx:423 +#: src/pages/sales/SalesOrderDetail.tsx:450 msgid "Issue this order" msgstr "Rendelés kiállítása" -#: src/pages/build/BuildDetail.tsx:605 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:408 -#: src/pages/sales/ReturnOrderDetail.tsx:419 -#: src/pages/sales/SalesOrderDetail.tsx:446 +#: src/pages/build/BuildDetail.tsx:610 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:413 +#: src/pages/sales/ReturnOrderDetail.tsx:424 +#: src/pages/sales/SalesOrderDetail.tsx:451 msgid "Order issued" msgstr "Megrendelés leadva" -#: src/pages/build/BuildDetail.tsx:624 +#: src/pages/build/BuildDetail.tsx:629 msgid "Complete Build Order" msgstr "Gyártási utasítás befejezése" -#: src/pages/build/BuildDetail.tsx:630 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:436 -#: src/pages/sales/ReturnOrderDetail.tsx:442 -#: src/pages/sales/SalesOrderDetail.tsx:480 +#: src/pages/build/BuildDetail.tsx:635 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:441 +#: src/pages/sales/ReturnOrderDetail.tsx:447 +#: src/pages/sales/SalesOrderDetail.tsx:485 msgid "Mark this order as complete" msgstr "Rendelés teljesítettnek jelölése" -#: src/pages/build/BuildDetail.tsx:633 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:430 -#: src/pages/sales/ReturnOrderDetail.tsx:443 -#: src/pages/sales/SalesOrderDetail.tsx:481 +#: src/pages/build/BuildDetail.tsx:638 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:435 +#: src/pages/sales/ReturnOrderDetail.tsx:448 +#: src/pages/sales/SalesOrderDetail.tsx:486 msgid "Order completed" msgstr "Megrendelés teljesítve" -#: src/pages/build/BuildDetail.tsx:660 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:459 -#: src/pages/sales/ReturnOrderDetail.tsx:470 -#: src/pages/sales/SalesOrderDetail.tsx:516 +#: src/pages/build/BuildDetail.tsx:665 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:464 +#: src/pages/sales/ReturnOrderDetail.tsx:475 +#: src/pages/sales/SalesOrderDetail.tsx:521 msgid "Issue Order" msgstr "Rendelés kiküldése" -#: src/pages/build/BuildDetail.tsx:667 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:466 -#: src/pages/sales/ReturnOrderDetail.tsx:477 -#: src/pages/sales/SalesOrderDetail.tsx:530 +#: src/pages/build/BuildDetail.tsx:672 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:471 +#: src/pages/sales/ReturnOrderDetail.tsx:482 +#: src/pages/sales/SalesOrderDetail.tsx:535 msgid "Complete Order" msgstr "Rendelés teljesítése" -#: src/pages/build/BuildDetail.tsx:686 +#: src/pages/build/BuildDetail.tsx:691 msgid "Build Order Actions" msgstr "Gyártáshoz foglalások" -#: src/pages/build/BuildDetail.tsx:691 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:489 -#: src/pages/sales/ReturnOrderDetail.tsx:500 -#: src/pages/sales/SalesOrderDetail.tsx:554 +#: src/pages/build/BuildDetail.tsx:696 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:494 +#: src/pages/sales/ReturnOrderDetail.tsx:505 +#: src/pages/sales/SalesOrderDetail.tsx:559 msgid "Edit order" msgstr "Rendelés szerkesztése" -#: src/pages/build/BuildDetail.tsx:695 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:497 -#: src/pages/sales/ReturnOrderDetail.tsx:506 -#: src/pages/sales/SalesOrderDetail.tsx:559 +#: src/pages/build/BuildDetail.tsx:700 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:502 +#: src/pages/sales/ReturnOrderDetail.tsx:511 +#: src/pages/sales/SalesOrderDetail.tsx:564 msgid "Duplicate order" msgstr "Rendelés duplikálása" -#: src/pages/build/BuildDetail.tsx:699 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:500 -#: src/pages/sales/ReturnOrderDetail.tsx:511 -#: src/pages/sales/SalesOrderDetail.tsx:562 -msgid "Hold order" -msgstr "Rendelés felfüggesztése" - #: src/pages/build/BuildDetail.tsx:704 #: src/pages/purchasing/PurchaseOrderDetail.tsx:505 #: src/pages/sales/ReturnOrderDetail.tsx:516 #: src/pages/sales/SalesOrderDetail.tsx:567 +msgid "Hold order" +msgstr "Rendelés felfüggesztése" + +#: src/pages/build/BuildDetail.tsx:709 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:510 +#: src/pages/sales/ReturnOrderDetail.tsx:521 +#: src/pages/sales/SalesOrderDetail.tsx:572 msgid "Cancel order" msgstr "Rendelés törlése" -#: src/pages/build/BuildDetail.tsx:742 +#: src/pages/build/BuildDetail.tsx:747 #: src/pages/stock/StockDetail.tsx:344 -#: src/tables/build/BuildAllocatedStockTable.tsx:85 +#: src/tables/build/BuildAllocatedStockTable.tsx:82 #: src/tables/part/PartBuildAllocationsTable.tsx:45 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:157 #: src/tables/stock/StockTrackingTable.tsx:109 @@ -7143,7 +7206,7 @@ msgstr "Gyártási utasítás" #~ msgid "Build order created" #~ msgstr "Build order created" -#: src/pages/build/BuildIndex.tsx:29 +#: src/pages/build/BuildIndex.tsx:35 #: src/tables/build/BuildOrderTable.tsx:184 msgid "Show external build orders" msgstr "" @@ -7152,61 +7215,82 @@ msgstr "" #~ msgid "New Build Order" #~ msgstr "New Build Order" -#: src/pages/build/BuildIndex.tsx:83 -#: src/pages/purchasing/PurchasingIndex.tsx:69 -#: src/pages/sales/SalesIndex.tsx:92 -#: src/pages/sales/SalesIndex.tsx:125 +#: src/pages/build/BuildIndex.tsx:74 +#: src/pages/part/CategoryDetail.tsx:292 +#: src/pages/purchasing/PurchasingIndex.tsx:74 +#: src/pages/purchasing/PurchasingIndex.tsx:107 +#: src/pages/purchasing/PurchasingIndex.tsx:135 +#: src/pages/purchasing/PurchasingIndex.tsx:156 +#: src/pages/purchasing/PurchasingIndex.tsx:184 +#: src/pages/sales/SalesIndex.tsx:61 +#: src/pages/sales/SalesIndex.tsx:107 +#: src/pages/sales/SalesIndex.tsx:140 msgid "Table View" msgstr "Táblázat nézet" -#: src/pages/build/BuildIndex.tsx:86 -#: src/pages/purchasing/PurchasingIndex.tsx:72 -#: src/pages/sales/SalesIndex.tsx:95 -#: src/pages/sales/SalesIndex.tsx:128 +#: src/pages/build/BuildIndex.tsx:80 +#: src/pages/purchasing/PurchasingIndex.tsx:80 +#: src/pages/sales/SalesIndex.tsx:67 +#: src/pages/sales/SalesIndex.tsx:113 msgid "Calendar View" msgstr "Naptár nézet" -#: src/pages/company/CompanyDetail.tsx:99 +#: src/pages/build/BuildIndex.tsx:86 +#: src/pages/part/CategoryDetail.tsx:306 +#: src/pages/purchasing/PurchasingIndex.tsx:92 +#: src/pages/purchasing/PurchasingIndex.tsx:118 +#: src/pages/purchasing/PurchasingIndex.tsx:141 +#: src/pages/purchasing/PurchasingIndex.tsx:167 +#: src/pages/purchasing/PurchasingIndex.tsx:190 +#: src/pages/sales/SalesIndex.tsx:79 +#: src/pages/sales/SalesIndex.tsx:125 +#: src/pages/sales/SalesIndex.tsx:151 +msgid "Parametric View" +msgstr "" + +#: src/pages/company/CompanyDetail.tsx:100 msgid "Website" msgstr "Weboldal" -#: src/pages/company/CompanyDetail.tsx:107 +#: src/pages/company/CompanyDetail.tsx:108 msgid "Phone Number" msgstr "Telefonszám" -#: src/pages/company/CompanyDetail.tsx:114 +#: src/pages/company/CompanyDetail.tsx:115 msgid "Email Address" msgstr "E-mail cím" -#: src/pages/company/CompanyDetail.tsx:121 +#: src/pages/company/CompanyDetail.tsx:122 msgid "Tax ID" msgstr "Adószám" -#: src/pages/company/CompanyDetail.tsx:131 +#: src/pages/company/CompanyDetail.tsx:132 msgid "Default Currency" msgstr "Alapértelmezett pénznem" -#: src/pages/company/CompanyDetail.tsx:142 +#: src/pages/company/CompanyDetail.tsx:143 #: src/pages/company/ManufacturerDetail.tsx:8 -#: src/pages/company/ManufacturerPartDetail.tsx:104 -#: src/pages/company/ManufacturerPartDetail.tsx:280 -#: src/pages/company/SupplierPartDetail.tsx:152 +#: src/pages/company/ManufacturerPartDetail.tsx:103 +#: src/pages/company/ManufacturerPartDetail.tsx:271 +#: src/pages/company/SupplierPartDetail.tsx:153 #: src/tables/Filter.tsx:347 #: src/tables/company/CompanyTable.tsx:101 #: src/tables/purchasing/SupplierPartTable.tsx:89 msgid "Manufacturer" msgstr "Gyártó" -#: src/pages/company/CompanyDetail.tsx:148 +#: src/pages/company/CompanyDetail.tsx:149 #: src/pages/company/CustomerDetail.tsx:8 #: src/pages/part/pricing/SaleHistoryPanel.tsx:31 -#: src/pages/sales/ReturnOrderDetail.tsx:123 -#: src/pages/sales/SalesOrderDetail.tsx:113 -#: src/pages/sales/SalesOrderShipmentDetail.tsx:113 +#: src/pages/sales/ReturnOrderDetail.tsx:124 +#: src/pages/sales/SalesOrderDetail.tsx:114 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:111 #: src/pages/stock/StockDetail.tsx:370 #: src/tables/company/CompanyTable.tsx:106 +#: src/tables/sales/ReturnOrderParametricTable.tsx:32 #: src/tables/sales/ReturnOrderTable.tsx:108 -#: src/tables/sales/SalesOrderShipmentTable.tsx:111 +#: src/tables/sales/SalesOrderParametricTable.tsx:32 +#: src/tables/sales/SalesOrderShipmentTable.tsx:132 #: src/tables/sales/SalesOrderTable.tsx:133 #: src/tables/stock/StockTrackingTable.tsx:153 msgid "Customer" @@ -7216,11 +7300,11 @@ msgstr "Vevő" #~ msgid "Edit company" #~ msgstr "Edit company" -#: src/pages/company/CompanyDetail.tsx:181 +#: src/pages/company/CompanyDetail.tsx:182 msgid "Company Details" msgstr "Cégadatok" -#: src/pages/company/CompanyDetail.tsx:187 +#: src/pages/company/CompanyDetail.tsx:188 msgid "Supplied Parts" msgstr "Szállított alkatrészek" @@ -7228,79 +7312,79 @@ msgstr "Szállított alkatrészek" #~ msgid "Delete company" #~ msgstr "Delete company" -#: src/pages/company/CompanyDetail.tsx:194 +#: src/pages/company/CompanyDetail.tsx:195 msgid "Manufactured Parts" msgstr "Gyártott alkatrészek" -#: src/pages/company/CompanyDetail.tsx:241 +#: src/pages/company/CompanyDetail.tsx:242 msgid "Assigned Stock" msgstr "Hozzárendelt készlet" -#: src/pages/company/CompanyDetail.tsx:282 +#: src/pages/company/CompanyDetail.tsx:287 #: src/tables/company/CompanyTable.tsx:82 msgid "Edit Company" msgstr "Cég szerkesztése" -#: src/pages/company/CompanyDetail.tsx:290 +#: src/pages/company/CompanyDetail.tsx:295 msgid "Delete Company" msgstr "Cég törlése" -#: src/pages/company/CompanyDetail.tsx:305 +#: src/pages/company/CompanyDetail.tsx:310 msgid "Company Actions" msgstr "Cég műveletek" -#: src/pages/company/ManufacturerPartDetail.tsx:78 -#: src/pages/company/SupplierPartDetail.tsx:89 +#: src/pages/company/ManufacturerPartDetail.tsx:77 +#: src/pages/company/SupplierPartDetail.tsx:90 msgid "Internal Part" msgstr "Belső alkatrész" -#: src/pages/company/ManufacturerPartDetail.tsx:112 +#: src/pages/company/ManufacturerPartDetail.tsx:111 msgid "Manufacturer Part Number" msgstr "Gyártói cikkszám" -#: src/pages/company/ManufacturerPartDetail.tsx:129 -#: src/pages/company/SupplierPartDetail.tsx:113 +#: src/pages/company/ManufacturerPartDetail.tsx:128 +#: src/pages/company/SupplierPartDetail.tsx:114 msgid "External Link" msgstr "Külső link" -#: src/pages/company/ManufacturerPartDetail.tsx:148 -#: src/pages/company/SupplierPartDetail.tsx:232 +#: src/pages/company/ManufacturerPartDetail.tsx:147 +#: src/pages/company/SupplierPartDetail.tsx:233 #: src/pages/part/PartDetail.tsx:787 msgid "Part Details" msgstr "Alkatrész részletei" -#: src/pages/company/ManufacturerPartDetail.tsx:151 +#: src/pages/company/ManufacturerPartDetail.tsx:150 msgid "Manufacturer Details" msgstr "Gyártó adatai" -#: src/pages/company/ManufacturerPartDetail.tsx:160 +#: src/pages/company/ManufacturerPartDetail.tsx:159 msgid "Manufacturer Part Details" msgstr "Gyártói alkatrész részletek" -#: src/pages/company/ManufacturerPartDetail.tsx:178 -#: src/pages/company/SupplierPartDetail.tsx:252 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:381 +#: src/pages/company/ManufacturerPartDetail.tsx:165 +#: src/pages/company/SupplierPartDetail.tsx:253 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:382 msgid "Received Stock" msgstr "Beérkezett készlet" -#: src/pages/company/ManufacturerPartDetail.tsx:220 +#: src/pages/company/ManufacturerPartDetail.tsx:211 #: src/tables/purchasing/ManufacturerPartTable.tsx:108 msgid "Edit Manufacturer Part" msgstr "Gyártói alkatrész szerkesztése" -#: src/pages/company/ManufacturerPartDetail.tsx:227 +#: src/pages/company/ManufacturerPartDetail.tsx:218 #: src/tables/purchasing/ManufacturerPartTable.tsx:96 #: src/tables/purchasing/ManufacturerPartTable.tsx:115 #: src/tables/purchasing/ManufacturerPartTable.tsx:156 msgid "Add Manufacturer Part" msgstr "Gyártói alkatrész hozzáadása" -#: src/pages/company/ManufacturerPartDetail.tsx:239 +#: src/pages/company/ManufacturerPartDetail.tsx:230 #: src/tables/purchasing/ManufacturerPartTable.tsx:126 msgid "Delete Manufacturer Part" msgstr "Gyártói alkatrész törlése" -#: src/pages/company/ManufacturerPartDetail.tsx:254 +#: src/pages/company/ManufacturerPartDetail.tsx:245 msgid "Manufacturer Part Actions" msgstr "Gyártói alkatrész műveletek" @@ -7308,12 +7392,12 @@ msgstr "Gyártói alkatrész műveletek" #~ msgid "ManufacturerPart" #~ msgstr "ManufacturerPart" -#: src/pages/company/SupplierPartDetail.tsx:104 +#: src/pages/company/SupplierPartDetail.tsx:105 #: src/tables/part/RelatedPartTable.tsx:82 msgid "Part Description" msgstr "Alkatrész leírása" -#: src/pages/company/SupplierPartDetail.tsx:179 +#: src/pages/company/SupplierPartDetail.tsx:180 #: src/tables/part/PartPurchaseOrdersTable.tsx:73 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:191 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:233 @@ -7321,50 +7405,50 @@ msgstr "Alkatrész leírása" msgid "Pack Quantity" msgstr "Csomagolási mennyiség" -#: src/pages/company/SupplierPartDetail.tsx:204 +#: src/pages/company/SupplierPartDetail.tsx:205 msgid "Supplier Availability" msgstr "" -#: src/pages/company/SupplierPartDetail.tsx:212 +#: src/pages/company/SupplierPartDetail.tsx:213 msgid "Availability Updated" msgstr "Elérhetőség frissítve" -#: src/pages/company/SupplierPartDetail.tsx:237 +#: src/pages/company/SupplierPartDetail.tsx:238 msgid "Availability" msgstr "Elérhetőség" -#: src/pages/company/SupplierPartDetail.tsx:246 +#: src/pages/company/SupplierPartDetail.tsx:247 msgid "Supplier Part Details" msgstr "" -#: src/pages/company/SupplierPartDetail.tsx:279 +#: src/pages/company/SupplierPartDetail.tsx:280 #: src/pages/part/PartPricingPanel.tsx:113 #: src/pages/part/pricing/PricingOverviewPanel.tsx:239 msgid "Supplier Pricing" msgstr "Beszállító árazás" -#: src/pages/company/SupplierPartDetail.tsx:308 +#: src/pages/company/SupplierPartDetail.tsx:313 msgid "Supplier Part Actions" msgstr "" -#: src/pages/company/SupplierPartDetail.tsx:332 +#: src/pages/company/SupplierPartDetail.tsx:337 #: src/tables/purchasing/SupplierPartTable.tsx:244 msgid "Edit Supplier Part" msgstr "Beszállítói alkatrész szerkesztése" -#: src/pages/company/SupplierPartDetail.tsx:340 +#: src/pages/company/SupplierPartDetail.tsx:345 #: src/tables/purchasing/SupplierPartTable.tsx:264 msgid "Delete Supplier Part" msgstr "Beszállítói alkatrész törlése" -#: src/pages/company/SupplierPartDetail.tsx:348 +#: src/pages/company/SupplierPartDetail.tsx:353 #: src/tables/purchasing/SupplierPartTable.tsx:172 #: src/tables/purchasing/SupplierPartTable.tsx:251 msgid "Add Supplier Part" msgstr "Beszállítói alkatrész hozzáadása" -#: src/pages/company/SupplierPartDetail.tsx:388 -#: src/pages/part/PartDetail.tsx:1003 +#: src/pages/company/SupplierPartDetail.tsx:393 +#: src/pages/part/PartDetail.tsx:1018 msgid "No Stock" msgstr "Nincs készlet" @@ -7411,83 +7495,83 @@ msgstr "Felhasználói adatok" msgid "Basic user" msgstr "Alap felhasználó" -#: src/pages/part/CategoryDetail.tsx:100 +#: src/pages/part/CategoryDetail.tsx:103 #: src/pages/stock/LocationDetail.tsx:94 #: src/tables/settings/ErrorTable.tsx:63 #: src/tables/settings/ErrorTable.tsx:108 msgid "Path" msgstr "Elérési út" -#: src/pages/part/CategoryDetail.tsx:116 +#: src/pages/part/CategoryDetail.tsx:119 msgid "Parent Category" msgstr "Szülő Kategória" -#: src/pages/part/CategoryDetail.tsx:139 -#: src/pages/part/CategoryDetail.tsx:271 +#: src/pages/part/CategoryDetail.tsx:142 +#: src/pages/part/CategoryDetail.tsx:279 msgid "Subcategories" msgstr "Alkategóriák" -#: src/pages/part/CategoryDetail.tsx:146 +#: src/pages/part/CategoryDetail.tsx:149 #: src/pages/stock/LocationDetail.tsx:134 #: src/tables/part/PartCategoryTable.tsx:89 #: src/tables/stock/StockLocationTable.tsx:43 msgid "Structural" msgstr "Szerkezeti" -#: src/pages/part/CategoryDetail.tsx:152 +#: src/pages/part/CategoryDetail.tsx:155 msgid "Parent default location" msgstr "" -#: src/pages/part/CategoryDetail.tsx:159 +#: src/pages/part/CategoryDetail.tsx:162 msgid "Default location" msgstr "Alapértelmezett hely" -#: src/pages/part/CategoryDetail.tsx:170 +#: src/pages/part/CategoryDetail.tsx:173 msgid "Top level part category" msgstr "Legfelső szintű alkatrész kategória" -#: src/pages/part/CategoryDetail.tsx:180 -#: src/pages/part/CategoryDetail.tsx:248 +#: src/pages/part/CategoryDetail.tsx:183 +#: src/pages/part/CategoryDetail.tsx:251 #: src/tables/part/PartCategoryTable.tsx:122 msgid "Edit Part Category" msgstr "" -#: src/pages/part/CategoryDetail.tsx:189 +#: src/pages/part/CategoryDetail.tsx:192 msgid "Move items to parent category" msgstr "" -#: src/pages/part/CategoryDetail.tsx:193 +#: src/pages/part/CategoryDetail.tsx:196 #: src/pages/stock/LocationDetail.tsx:226 msgid "Delete items" msgstr "Tételek törlése" -#: src/pages/part/CategoryDetail.tsx:201 -#: src/pages/part/CategoryDetail.tsx:253 +#: src/pages/part/CategoryDetail.tsx:204 +#: src/pages/part/CategoryDetail.tsx:256 msgid "Delete Part Category" msgstr "Alkatrész kategória törlése" -#: src/pages/part/CategoryDetail.tsx:204 +#: src/pages/part/CategoryDetail.tsx:207 msgid "Parts Action" msgstr "Alkatrész műveletek" -#: src/pages/part/CategoryDetail.tsx:205 +#: src/pages/part/CategoryDetail.tsx:208 msgid "Action for parts in this category" msgstr "" -#: src/pages/part/CategoryDetail.tsx:211 +#: src/pages/part/CategoryDetail.tsx:214 msgid "Child Categories Action" msgstr "" -#: src/pages/part/CategoryDetail.tsx:212 +#: src/pages/part/CategoryDetail.tsx:215 msgid "Action for child categories in this category" msgstr "" -#: src/pages/part/CategoryDetail.tsx:244 +#: src/pages/part/CategoryDetail.tsx:247 #: src/tables/part/PartCategoryTable.tsx:143 msgid "Category Actions" msgstr "Kategória műveletek" -#: src/pages/part/CategoryDetail.tsx:265 +#: src/pages/part/CategoryDetail.tsx:273 msgid "Category Details" msgstr "Kategória részletei" @@ -7585,7 +7669,6 @@ msgid "Category Default Location" msgstr "" #: src/pages/part/PartDetail.tsx:507 -#: src/tables/purchasing/ManufacturerPartParameterTable.tsx:48 msgid "Units" msgstr "Mértékegységek" @@ -7600,7 +7683,7 @@ msgstr "Kulcsszavak" #: src/pages/part/PartDetail.tsx:542 #: src/tables/bom/BomTable.tsx:439 -#: src/tables/build/BuildLineTable.tsx:305 +#: src/tables/build/BuildLineTable.tsx:306 #: src/tables/part/PartTable.tsx:319 #: src/tables/sales/SalesOrderLineItemTable.tsx:138 msgid "Available Stock" @@ -7608,7 +7691,7 @@ msgstr "Elérhető készlet" #: src/pages/part/PartDetail.tsx:548 #: src/tables/bom/BomTable.tsx:341 -#: src/tables/build/BuildLineTable.tsx:267 +#: src/tables/build/BuildLineTable.tsx:268 #: src/tables/sales/SalesOrderLineItemTable.tsx:180 msgid "On order" msgstr "Rendelve" @@ -7634,7 +7717,7 @@ msgstr "Minimum készlet" #~ msgstr "Scheduling" #: src/pages/part/PartDetail.tsx:620 -#: src/tables/part/ParametricPartTable.tsx:359 +#: src/tables/part/ParametricPartTable.tsx:24 #: src/tables/part/PartTable.tsx:203 msgid "Locked" msgstr "Zárolt" @@ -7671,16 +7754,16 @@ msgid "Saleable Part" msgstr "Értékesíthető alkatrész" #: src/pages/part/PartDetail.tsx:663 -#: src/pages/part/PartDetail.tsx:1033 +#: src/pages/part/PartDetail.tsx:1054 #: src/tables/bom/BomTable.tsx:150 #: src/tables/bom/BomTable.tsx:434 msgid "Virtual Part" msgstr "Virtuális alkatrész" #: src/pages/part/PartDetail.tsx:678 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:271 -#: src/pages/sales/ReturnOrderDetail.tsx:249 -#: src/pages/sales/SalesOrderDetail.tsx:242 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:272 +#: src/pages/sales/ReturnOrderDetail.tsx:250 +#: src/pages/sales/SalesOrderDetail.tsx:243 #: src/tables/ColumnRenderers.tsx:502 msgid "Creation Date" msgstr "Létrehozás dátuma" @@ -7718,35 +7801,46 @@ msgstr "Legutolsó sorozatszám" msgid "Select Part Revision" msgstr "Alkatrész revízió kiválasztása" -#: src/pages/part/PartDetail.tsx:823 +#: src/pages/part/PartDetail.tsx:812 msgid "Variants" msgstr "Változatok" -#: src/pages/part/PartDetail.tsx:830 +#: src/pages/part/PartDetail.tsx:819 #: src/pages/stock/StockDetail.tsx:542 msgid "Allocations" msgstr "Foglalások" -#: src/pages/part/PartDetail.tsx:837 +#: src/pages/part/PartDetail.tsx:826 msgid "Bill of Materials" msgstr "Alkatrészjegyzék" -#: src/pages/part/PartDetail.tsx:849 +#: src/pages/part/PartDetail.tsx:838 msgid "Used In" msgstr "Felhasználva ebben" -#: src/pages/part/PartDetail.tsx:856 +#: src/pages/part/PartDetail.tsx:845 msgid "Part Pricing" msgstr "Alkatrész árak" -#: src/pages/part/PartDetail.tsx:926 +#: src/pages/part/PartDetail.tsx:915 msgid "Test Templates" msgstr "Teszt sablonok" -#: src/pages/part/PartDetail.tsx:948 +#: src/pages/part/PartDetail.tsx:937 msgid "Related Parts" msgstr "Kapcsolódó alkatrészek" +#: src/pages/part/PartDetail.tsx:949 +#: src/tables/ColumnRenderers.tsx:73 +#: src/tables/bom/BomTable.tsx:657 +#: src/tables/part/PartTestTemplateTable.tsx:258 +msgid "Part is Locked" +msgstr "Zárolt alkatrész" + +#: src/pages/part/PartDetail.tsx:954 +msgid "Part parameters cannot be edited, as the part is locked" +msgstr "" + #: src/pages/part/PartDetail.tsx:956 #~ msgid "Count part stock" #~ msgstr "Count part stock" @@ -7755,42 +7849,46 @@ msgstr "Kapcsolódó alkatrészek" #~ msgid "Transfer part stock" #~ msgstr "Transfer part stock" -#: src/pages/part/PartDetail.tsx:1009 +#: src/pages/part/PartDetail.tsx:1024 #: src/tables/part/PartTestTemplateTable.tsx:112 #: src/tables/stock/StockItemTestResultTable.tsx:404 msgid "Required" msgstr "Kötelező" -#: src/pages/part/PartDetail.tsx:1058 +#: src/pages/part/PartDetail.tsx:1042 +msgid "Deficit" +msgstr "" + +#: src/pages/part/PartDetail.tsx:1079 #: src/tables/part/PartTable.tsx:396 #: src/tables/part/PartTable.tsx:449 msgid "Add Part" msgstr "Alkatrész hozzáadása" -#: src/pages/part/PartDetail.tsx:1072 +#: src/pages/part/PartDetail.tsx:1093 msgid "Delete Part" msgstr "Alkatrész törlése" -#: src/pages/part/PartDetail.tsx:1081 +#: src/pages/part/PartDetail.tsx:1102 msgid "Deleting this part cannot be reversed" msgstr "" -#: src/pages/part/PartDetail.tsx:1143 +#: src/pages/part/PartDetail.tsx:1164 #: src/pages/stock/StockDetail.tsx:883 msgid "Order" msgstr "Rendelés" -#: src/pages/part/PartDetail.tsx:1144 +#: src/pages/part/PartDetail.tsx:1165 #: src/pages/stock/StockDetail.tsx:884 -#: src/tables/build/BuildLineTable.tsx:761 +#: src/tables/build/BuildLineTable.tsx:768 msgid "Order Stock" msgstr "Készlet rendelés" -#: src/pages/part/PartDetail.tsx:1156 +#: src/pages/part/PartDetail.tsx:1177 msgid "Search by serial number" msgstr "Sorozatszámra keresés" -#: src/pages/part/PartDetail.tsx:1164 +#: src/pages/part/PartDetail.tsx:1185 #: src/tables/part/PartTable.tsx:506 msgid "Part Actions" msgstr "Alkatrész műveletek" @@ -8039,7 +8137,7 @@ msgstr "Beszerzési ár" #: src/pages/part/pricing/PricingOverviewPanel.tsx:288 #: src/pages/stock/StockDetail.tsx:426 -#: src/tables/part/PartParameterTable.tsx:121 +#: src/tables/general/ParameterTable.tsx:101 #: src/tables/stock/StockItemTable.tsx:300 msgid "Last Updated" msgstr "Legutóbb frissítve" @@ -8107,17 +8205,17 @@ msgstr "Beszállítói ár" msgid "Variant Part" msgstr "Alkatrészváltozat" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:89 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:90 msgid "Edit Purchase Order" msgstr "Beszerzési rendelés szerkesztése" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:125 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:126 #: src/tables/purchasing/PurchaseOrderTable.tsx:154 #: src/tables/purchasing/PurchaseOrderTable.tsx:167 msgid "Add Purchase Order" msgstr "Beszerzés hozzáadása" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:147 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:148 msgid "Supplier Reference" msgstr "Beszállítói azonosító" @@ -8127,20 +8225,20 @@ msgstr "Beszállítói azonosító" #~ msgid "Order Currency," #~ msgstr "Order Currency," -#: src/pages/purchasing/PurchaseOrderDetail.tsx:187 -#: src/pages/sales/ReturnOrderDetail.tsx:160 -#: src/pages/sales/SalesOrderDetail.tsx:144 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:188 +#: src/pages/sales/ReturnOrderDetail.tsx:161 +#: src/pages/sales/SalesOrderDetail.tsx:145 msgid "Completed Line Items" msgstr "Kész sortételek" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:196 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:197 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:272 msgid "Destination" msgstr "Cél" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:202 -#: src/pages/sales/ReturnOrderDetail.tsx:167 -#: src/pages/sales/SalesOrderDetail.tsx:161 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:203 +#: src/pages/sales/ReturnOrderDetail.tsx:168 +#: src/pages/sales/SalesOrderDetail.tsx:162 msgid "Order Currency" msgstr "Rendelés pénzneme" @@ -8150,97 +8248,97 @@ msgstr "Rendelés pénzneme" #~ msgid "Created On" #~ msgstr "Created On" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:208 -#: src/pages/sales/ReturnOrderDetail.tsx:174 -#: src/pages/sales/SalesOrderDetail.tsx:167 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:209 +#: src/pages/sales/ReturnOrderDetail.tsx:175 +#: src/pages/sales/SalesOrderDetail.tsx:168 msgid "Total Cost" msgstr "Teljes költség" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:237 -#: src/pages/sales/ReturnOrderDetail.tsx:215 -#: src/pages/sales/SalesOrderDetail.tsx:208 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:238 +#: src/pages/sales/ReturnOrderDetail.tsx:216 +#: src/pages/sales/SalesOrderDetail.tsx:209 msgid "Contact Email" msgstr "Kapcsolatfelvételi e-mail" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:245 -#: src/pages/sales/ReturnOrderDetail.tsx:223 -#: src/pages/sales/SalesOrderDetail.tsx:216 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:246 +#: src/pages/sales/ReturnOrderDetail.tsx:224 +#: src/pages/sales/SalesOrderDetail.tsx:217 msgid "Contact Phone" msgstr "Kapcsolattartási telefonszám" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:278 -#: src/pages/sales/ReturnOrderDetail.tsx:257 -#: src/pages/sales/SalesOrderDetail.tsx:249 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:279 +#: src/pages/sales/ReturnOrderDetail.tsx:258 +#: src/pages/sales/SalesOrderDetail.tsx:250 msgid "Issue Date" msgstr "Kiállítás dátuma" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:303 -#: src/pages/sales/ReturnOrderDetail.tsx:281 -#: src/pages/sales/SalesOrderDetail.tsx:272 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:304 +#: src/pages/sales/ReturnOrderDetail.tsx:282 +#: src/pages/sales/SalesOrderDetail.tsx:273 #: src/tables/ColumnRenderers.tsx:510 #: src/tables/build/BuildOrderTable.tsx:137 #: src/tables/part/PartPurchaseOrdersTable.tsx:106 msgid "Completion Date" msgstr "Teljesítés dátuma" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:333 -#: src/pages/sales/ReturnOrderDetail.tsx:311 -#: src/pages/sales/SalesOrderDetail.tsx:349 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:334 +#: src/pages/sales/ReturnOrderDetail.tsx:312 +#: src/pages/sales/SalesOrderDetail.tsx:350 msgid "Order Details" msgstr "Rendelés részletei" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:339 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:348 -#: src/pages/sales/ReturnOrderDetail.tsx:153 -#: src/pages/sales/ReturnOrderDetail.tsx:317 -#: src/pages/sales/ReturnOrderDetail.tsx:326 -#: src/pages/sales/SalesOrderDetail.tsx:355 -#: src/pages/sales/SalesOrderDetail.tsx:364 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:340 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:349 +#: src/pages/sales/ReturnOrderDetail.tsx:154 +#: src/pages/sales/ReturnOrderDetail.tsx:318 +#: src/pages/sales/ReturnOrderDetail.tsx:327 +#: src/pages/sales/SalesOrderDetail.tsx:356 +#: src/pages/sales/SalesOrderDetail.tsx:365 msgid "Line Items" msgstr "Sortételek" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:363 -#: src/pages/sales/ReturnOrderDetail.tsx:341 -#: src/pages/sales/SalesOrderDetail.tsx:378 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:364 +#: src/pages/sales/ReturnOrderDetail.tsx:342 +#: src/pages/sales/SalesOrderDetail.tsx:379 msgid "Extra Line Items" msgstr "Egyéb tételek" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:405 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:410 msgid "Issue Purchase Order" msgstr "" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:413 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:418 msgid "Cancel Purchase Order" msgstr "" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:421 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:426 msgid "Hold Purchase Order" msgstr "" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:429 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:434 msgid "Complete Purchase Order" msgstr "" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:485 -#: src/pages/sales/ReturnOrderDetail.tsx:496 -#: src/pages/sales/SalesOrderDetail.tsx:549 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:490 +#: src/pages/sales/ReturnOrderDetail.tsx:501 +#: src/pages/sales/SalesOrderDetail.tsx:554 msgid "Order Actions" msgstr "Rendelés műveletek" -#: src/pages/sales/ReturnOrderDetail.tsx:114 -#: src/pages/sales/SalesOrderDetail.tsx:104 -#: src/pages/sales/SalesOrderShipmentDetail.tsx:134 +#: src/pages/sales/ReturnOrderDetail.tsx:115 +#: src/pages/sales/SalesOrderDetail.tsx:105 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:132 #: src/tables/sales/SalesOrderTable.tsx:141 msgid "Customer Reference" msgstr "Vevői azonosító" -#: src/pages/sales/ReturnOrderDetail.tsx:195 +#: src/pages/sales/ReturnOrderDetail.tsx:196 msgid "Return Address" msgstr "" -#: src/pages/sales/ReturnOrderDetail.tsx:201 -#: src/pages/sales/SalesOrderDetail.tsx:194 -#: src/pages/sales/SalesOrderShipmentDetail.tsx:181 +#: src/pages/sales/ReturnOrderDetail.tsx:202 +#: src/pages/sales/SalesOrderDetail.tsx:195 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:179 msgid "Not specified" msgstr "" @@ -8248,117 +8346,117 @@ msgstr "" #~ msgid "Order canceled" #~ msgstr "Order canceled" -#: src/pages/sales/ReturnOrderDetail.tsx:389 +#: src/pages/sales/ReturnOrderDetail.tsx:394 msgid "Edit Return Order" msgstr "Visszavételi utasítás szerkesztése" -#: src/pages/sales/ReturnOrderDetail.tsx:407 +#: src/pages/sales/ReturnOrderDetail.tsx:412 #: src/tables/sales/ReturnOrderTable.tsx:154 #: src/tables/sales/ReturnOrderTable.tsx:167 msgid "Add Return Order" msgstr "Visszavételi utasítás hozzáadása" -#: src/pages/sales/ReturnOrderDetail.tsx:416 +#: src/pages/sales/ReturnOrderDetail.tsx:421 msgid "Issue Return Order" msgstr "Visszavételi utasítás kiállítása" -#: src/pages/sales/ReturnOrderDetail.tsx:424 +#: src/pages/sales/ReturnOrderDetail.tsx:429 msgid "Cancel Return Order" msgstr "Visszavételi utasítás törlése" -#: src/pages/sales/ReturnOrderDetail.tsx:432 +#: src/pages/sales/ReturnOrderDetail.tsx:437 msgid "Hold Return Order" msgstr "Visszavételi utasítás felfüggesztése" -#: src/pages/sales/ReturnOrderDetail.tsx:440 +#: src/pages/sales/ReturnOrderDetail.tsx:445 msgid "Complete Return Order" msgstr "Visszavételi utasítás teljesítése" -#: src/pages/sales/SalesOrderDetail.tsx:153 +#: src/pages/sales/SalesOrderDetail.tsx:154 msgid "Completed Shipments" msgstr "Kész szállítmányok" -#: src/pages/sales/SalesOrderDetail.tsx:188 -#: src/pages/sales/SalesOrderShipmentDetail.tsx:170 +#: src/pages/sales/SalesOrderDetail.tsx:189 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:168 msgid "Shipping Address" msgstr "" -#: src/pages/sales/SalesOrderDetail.tsx:316 +#: src/pages/sales/SalesOrderDetail.tsx:317 msgid "Edit Sales Order" msgstr "Értékesítési rendelés szerkesztése" -#: src/pages/sales/SalesOrderDetail.tsx:338 +#: src/pages/sales/SalesOrderDetail.tsx:339 #: src/tables/sales/SalesOrderTable.tsx:108 #: src/tables/sales/SalesOrderTable.tsx:121 msgid "Add Sales Order" msgstr "Értékesítési rendelés hozzáadása" -#: src/pages/sales/SalesOrderDetail.tsx:396 +#: src/pages/sales/SalesOrderDetail.tsx:397 #: src/tables/sales/SalesOrderTable.tsx:147 msgid "Shipments" msgstr "Szállítások" -#: src/pages/sales/SalesOrderDetail.tsx:443 +#: src/pages/sales/SalesOrderDetail.tsx:448 msgid "Issue Sales Order" msgstr "" -#: src/pages/sales/SalesOrderDetail.tsx:451 +#: src/pages/sales/SalesOrderDetail.tsx:456 msgid "Cancel Sales Order" msgstr "" -#: src/pages/sales/SalesOrderDetail.tsx:459 +#: src/pages/sales/SalesOrderDetail.tsx:464 msgid "Hold Sales Order" msgstr "" -#: src/pages/sales/SalesOrderDetail.tsx:467 +#: src/pages/sales/SalesOrderDetail.tsx:472 msgid "Ship Sales Order" msgstr "" -#: src/pages/sales/SalesOrderDetail.tsx:469 +#: src/pages/sales/SalesOrderDetail.tsx:474 msgid "Ship this order?" msgstr "" -#: src/pages/sales/SalesOrderDetail.tsx:470 +#: src/pages/sales/SalesOrderDetail.tsx:475 msgid "Order shipped" msgstr "Megrendelés szállítva" -#: src/pages/sales/SalesOrderDetail.tsx:478 +#: src/pages/sales/SalesOrderDetail.tsx:483 msgid "Complete Sales Order" msgstr "" -#: src/pages/sales/SalesOrderDetail.tsx:523 +#: src/pages/sales/SalesOrderDetail.tsx:528 msgid "Ship Order" msgstr "Megrendelés kiszállítása" -#: src/pages/sales/SalesOrderShipmentDetail.tsx:142 -#: src/tables/sales/SalesOrderShipmentTable.tsx:135 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:140 +#: src/tables/sales/SalesOrderShipmentTable.tsx:156 msgid "Shipment Reference" msgstr "" -#: src/pages/sales/SalesOrderShipmentDetail.tsx:148 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:146 msgid "Tracking Number" msgstr "Nyomonkövetési azonosító" -#: src/pages/sales/SalesOrderShipmentDetail.tsx:156 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:154 msgid "Invoice Number" msgstr "Számla sorszám" -#: src/pages/sales/SalesOrderShipmentDetail.tsx:191 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:189 msgid "Allocated Items" msgstr "" -#: src/pages/sales/SalesOrderShipmentDetail.tsx:196 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:194 msgid "Checked By" msgstr "" -#: src/pages/sales/SalesOrderShipmentDetail.tsx:202 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:200 msgid "Not checked" msgstr "" -#: src/pages/sales/SalesOrderShipmentDetail.tsx:208 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:206 #: src/tables/ColumnRenderers.tsx:518 #: src/tables/sales/SalesOrderAllocationTable.tsx:182 -#: src/tables/sales/SalesOrderShipmentTable.tsx:168 +#: src/tables/sales/SalesOrderShipmentTable.tsx:189 msgid "Shipment Date" msgstr "Kiszállítás dátuma" @@ -8366,108 +8464,82 @@ msgstr "Kiszállítás dátuma" #~ msgid "Assigned Items" #~ msgstr "Assigned Items" -#: src/pages/sales/SalesOrderShipmentDetail.tsx:216 -#: src/tables/sales/SalesOrderShipmentTable.tsx:172 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:214 +#: src/tables/sales/SalesOrderShipmentTable.tsx:193 msgid "Delivery Date" msgstr "Kézbesítés dátuma" -#: src/pages/sales/SalesOrderShipmentDetail.tsx:255 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:253 msgid "Shipment Details" msgstr "" -#: src/pages/sales/SalesOrderShipmentDetail.tsx:294 -#: src/pages/sales/SalesOrderShipmentDetail.tsx:438 -#: src/tables/sales/SalesOrderShipmentTable.tsx:90 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:292 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:406 +#: src/tables/sales/SalesOrderShipmentTable.tsx:97 msgid "Edit Shipment" msgstr "" -#: src/pages/sales/SalesOrderShipmentDetail.tsx:301 -#: src/pages/sales/SalesOrderShipmentDetail.tsx:457 -#: src/tables/sales/SalesOrderShipmentTable.tsx:82 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:299 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:425 +#: src/tables/sales/SalesOrderShipmentTable.tsx:89 msgid "Cancel Shipment" msgstr "" -#: src/pages/sales/SalesOrderShipmentDetail.tsx:314 -#: src/tables/sales/SalesOrderShipmentTable.tsx:98 -#: src/tables/sales/SalesOrderShipmentTable.tsx:193 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:312 +#: src/tables/sales/SalesOrderShipmentTable.tsx:119 +#: src/tables/sales/SalesOrderShipmentTable.tsx:238 msgid "Complete Shipment" msgstr "" -#: src/pages/sales/SalesOrderShipmentDetail.tsx:326 -#: src/pages/sales/SalesOrderShipmentDetail.tsx:328 -msgid "Check Shipment" -msgstr "" - -#: src/pages/sales/SalesOrderShipmentDetail.tsx:329 -msgid "Marking the shipment as checked indicates that you have verified that all items included in this shipment are correct" -msgstr "" - #: src/pages/sales/SalesOrderShipmentDetail.tsx:339 -msgid "Shipment marked as checked" -msgstr "" - -#: src/pages/sales/SalesOrderShipmentDetail.tsx:346 -#: src/pages/sales/SalesOrderShipmentDetail.tsx:348 -msgid "Uncheck Shipment" -msgstr "" - -#: src/pages/sales/SalesOrderShipmentDetail.tsx:349 -msgid "Marking the shipment as unchecked indicates that the shipment requires further verification" -msgstr "" - -#: src/pages/sales/SalesOrderShipmentDetail.tsx:359 -msgid "Shipment marked as unchecked" -msgstr "" - -#: src/pages/sales/SalesOrderShipmentDetail.tsx:371 #: src/tables/part/PartPurchaseOrdersTable.tsx:122 msgid "Pending" msgstr "Függőben" -#: src/pages/sales/SalesOrderShipmentDetail.tsx:377 -#: src/tables/sales/SalesOrderShipmentTable.tsx:147 -#: src/tables/sales/SalesOrderShipmentTable.tsx:254 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:345 +#: src/tables/sales/SalesOrderShipmentTable.tsx:168 +#: src/tables/sales/SalesOrderShipmentTable.tsx:299 msgid "Checked" msgstr "" -#: src/pages/sales/SalesOrderShipmentDetail.tsx:383 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:351 msgid "Not Checked" msgstr "" -#: src/pages/sales/SalesOrderShipmentDetail.tsx:389 -#: src/tables/sales/SalesOrderShipmentTable.tsx:154 -#: src/tables/sales/SalesOrderShipmentTable.tsx:259 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:357 +#: src/tables/sales/SalesOrderShipmentTable.tsx:175 +#: src/tables/sales/SalesOrderShipmentTable.tsx:304 msgid "Shipped" msgstr "Kiszállítva" -#: src/pages/sales/SalesOrderShipmentDetail.tsx:395 -#: src/tables/sales/SalesOrderShipmentTable.tsx:161 -#: src/tables/sales/SalesOrderShipmentTable.tsx:264 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:363 +#: src/tables/sales/SalesOrderShipmentTable.tsx:182 +#: src/tables/sales/SalesOrderShipmentTable.tsx:309 #: src/tables/settings/EmailTable.tsx:31 msgid "Delivered" msgstr "Kiszállítva" -#: src/pages/sales/SalesOrderShipmentDetail.tsx:410 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:378 msgid "Send Shipment" msgstr "Szállítmány elküldése" -#: src/pages/sales/SalesOrderShipmentDetail.tsx:433 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:401 msgid "Shipment Actions" msgstr "" -#: src/pages/sales/SalesOrderShipmentDetail.tsx:442 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:410 msgid "Check" msgstr "" -#: src/pages/sales/SalesOrderShipmentDetail.tsx:443 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:411 msgid "Mark shipment as checked" msgstr "" -#: src/pages/sales/SalesOrderShipmentDetail.tsx:449 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:417 msgid "Uncheck" msgstr "" -#: src/pages/sales/SalesOrderShipmentDetail.tsx:450 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:418 msgid "Mark shipment as unchecked" msgstr "" @@ -8775,13 +8847,6 @@ msgstr "" msgid "Part is not active" msgstr "Az alkatrész nem aktív" -#: src/tables/ColumnRenderers.tsx:73 -#: src/tables/bom/BomTable.tsx:657 -#: src/tables/part/PartParameterTable.tsx:227 -#: src/tables/part/PartTestTemplateTable.tsx:258 -msgid "Part is Locked" -msgstr "Zárolt alkatrész" - #: src/tables/ColumnRenderers.tsx:78 msgid "You are subscribed to notifications for this part" msgstr "" @@ -9219,13 +9284,13 @@ msgstr "Virtuális alkatrész" #~ msgstr "Show asssmbled items" #: src/tables/bom/BomTable.tsx:315 -#: src/tables/build/BuildLineTable.tsx:276 +#: src/tables/build/BuildLineTable.tsx:277 #: src/tables/part/PartTable.tsx:145 msgid "External stock" msgstr "" #: src/tables/bom/BomTable.tsx:323 -#: src/tables/build/BuildLineTable.tsx:239 +#: src/tables/build/BuildLineTable.tsx:240 msgid "Includes substitute stock" msgstr "Helyettesítőkkel együtt" @@ -9234,7 +9299,7 @@ msgstr "Helyettesítőkkel együtt" #~ msgstr "Edit Bom Item" #: src/tables/bom/BomTable.tsx:332 -#: src/tables/build/BuildLineTable.tsx:249 +#: src/tables/build/BuildLineTable.tsx:250 #: src/tables/sales/SalesOrderLineItemTable.tsx:166 msgid "Includes variant stock" msgstr "Változatokkal együtt" @@ -9272,8 +9337,8 @@ msgid "Stock Information" msgstr "Készlet adatok" #: src/tables/bom/BomTable.tsx:399 -#: src/tables/build/BuildLineTable.tsx:496 -#: src/tables/build/BuildLineTable.tsx:537 +#: src/tables/build/BuildLineTable.tsx:497 +#: src/tables/build/BuildLineTable.tsx:538 msgid "Consumable item" msgstr "Fogyóeszköz tétel" @@ -9282,7 +9347,7 @@ msgid "No available stock" msgstr "" #: src/tables/bom/BomTable.tsx:420 -#: src/tables/build/BuildLineTable.tsx:213 +#: src/tables/build/BuildLineTable.tsx:214 msgid "Show testable items" msgstr "Tesztelhető elemek mutatása" @@ -9291,7 +9356,7 @@ msgid "Show trackable items" msgstr "" #: src/tables/bom/BomTable.tsx:430 -#: src/tables/build/BuildLineTable.tsx:208 +#: src/tables/build/BuildLineTable.tsx:209 msgid "Show assembled items" msgstr "" @@ -9335,7 +9400,7 @@ msgstr "" #: src/tables/bom/BomTable.tsx:464 #: src/tables/bom/UsedInTable.tsx:85 -#: src/tables/build/BuildLineTable.tsx:202 +#: src/tables/build/BuildLineTable.tsx:203 msgid "Optional" msgstr "Opcionális" @@ -9345,7 +9410,7 @@ msgid "Show optional items" msgstr "Opcionális elemek mutatása" #: src/tables/bom/BomTable.tsx:469 -#: src/tables/build/BuildLineTable.tsx:197 +#: src/tables/build/BuildLineTable.tsx:198 msgid "Consumable" msgstr "Fogyóeszköz" @@ -9420,6 +9485,7 @@ msgid "Add a single BOM item" msgstr "" #: src/tables/bom/BomTable.tsx:637 +#: src/tables/general/ParameterTable.tsx:206 #: src/tables/part/PartTable.tsx:546 msgid "Import from File" msgstr "" @@ -9433,8 +9499,8 @@ msgid "Bill of materials cannot be edited, as the part is locked" msgstr "" #: src/tables/bom/UsedInTable.tsx:34 -#: src/tables/build/BuildLineTable.tsx:207 -#: src/tables/part/ParametricPartTable.tsx:364 +#: src/tables/build/BuildLineTable.tsx:208 +#: src/tables/part/ParametricPartTable.tsx:29 #: src/tables/part/PartBuildAllocationsTable.tsx:60 #: src/tables/part/PartTable.tsx:209 #: src/tables/stock/StockItemTable.tsx:333 @@ -9455,11 +9521,11 @@ msgstr "Követésre kötelezett" msgid "Show trackable assemblies" msgstr "Nyomonkövethető gyártmányok mutatása" -#: src/tables/build/BuildAllocatedStockTable.tsx:67 +#: src/tables/build/BuildAllocatedStockTable.tsx:64 msgid "Allocated to Output" msgstr "" -#: src/tables/build/BuildAllocatedStockTable.tsx:68 +#: src/tables/build/BuildAllocatedStockTable.tsx:65 msgid "Show items allocated to a build output" msgstr "" @@ -9472,50 +9538,68 @@ msgstr "" #~ msgid "Include orders for part variants" #~ msgstr "Include orders for part variants" -#: src/tables/build/BuildAllocatedStockTable.tsx:97 +#: src/tables/build/BuildAllocatedStockTable.tsx:94 #: src/tables/part/PartBuildAllocationsTable.tsx:84 #: src/tables/part/PartPurchaseOrdersTable.tsx:132 #: src/tables/part/PartSalesAllocationsTable.tsx:69 #: src/tables/sales/SalesOrderAllocationTable.tsx:122 -#: src/tables/sales/SalesOrderShipmentTable.tsx:130 +#: src/tables/sales/SalesOrderShipmentTable.tsx:151 msgid "Order Status" msgstr "Rendelés állapota" +#: src/tables/build/BuildAllocatedStockTable.tsx:164 +#: src/tables/build/BuildLineTable.tsx:651 +msgid "Edit Stock Allocation" +msgstr "Készlet foglalás szerkesztése" + #: src/tables/build/BuildAllocatedStockTable.tsx:164 #~ msgid "Edit Build Item" #~ msgstr "Edit Build Item" -#: src/tables/build/BuildAllocatedStockTable.tsx:167 -#: src/tables/build/BuildLineTable.tsx:650 -msgid "Edit Stock Allocation" -msgstr "Készlet foglalás szerkesztése" - #: src/tables/build/BuildAllocatedStockTable.tsx:174 #~ msgid "Delete Build Item" #~ msgstr "Delete Build Item" -#: src/tables/build/BuildAllocatedStockTable.tsx:180 -#: src/tables/build/BuildLineTable.tsx:663 -msgid "Delete Stock Allocation" +#: src/tables/build/BuildAllocatedStockTable.tsx:177 +#: src/tables/build/BuildLineTable.tsx:664 +#: src/tables/sales/SalesOrderAllocationTable.tsx:218 +msgid "Remove Allocated Stock" msgstr "" -#: src/tables/build/BuildAllocatedStockTable.tsx:239 +#: src/tables/build/BuildAllocatedStockTable.tsx:180 +#: src/tables/build/BuildLineTable.tsx:663 +#~ msgid "Delete Stock Allocation" +#~ msgstr "Delete Stock Allocation" + +#: src/tables/build/BuildAllocatedStockTable.tsx:182 +#: src/tables/build/BuildLineTable.tsx:669 +#: src/tables/sales/SalesOrderAllocationTable.tsx:221 +msgid "Are you sure you want to remove this allocated stock from the order?" +msgstr "" + +#: src/tables/build/BuildAllocatedStockTable.tsx:242 msgid "Consume" msgstr "Felhasznál" +#: src/tables/build/BuildAllocatedStockTable.tsx:259 +#: src/tables/build/BuildLineTable.tsx:112 +#: src/tables/sales/SalesOrderAllocationTable.tsx:248 +msgid "Remove allocated stock" +msgstr "" + #: src/tables/build/BuildLineTable.tsx:59 #~ msgid "Show lines with available stock" #~ msgstr "Show lines with available stock" -#: src/tables/build/BuildLineTable.tsx:120 +#: src/tables/build/BuildLineTable.tsx:121 msgid "View Stock Item" msgstr "Készlet tétel megtekintése" -#: src/tables/build/BuildLineTable.tsx:183 +#: src/tables/build/BuildLineTable.tsx:184 msgid "Show fully allocated lines" msgstr "" -#: src/tables/build/BuildLineTable.tsx:188 +#: src/tables/build/BuildLineTable.tsx:189 msgid "Show fully consumed lines" msgstr "" @@ -9523,124 +9607,124 @@ msgstr "" #~ msgid "Show allocated lines" #~ msgstr "Show allocated lines" -#: src/tables/build/BuildLineTable.tsx:193 +#: src/tables/build/BuildLineTable.tsx:194 msgid "Show items with sufficient available stock" msgstr "" -#: src/tables/build/BuildLineTable.tsx:198 +#: src/tables/build/BuildLineTable.tsx:199 msgid "Show consumable lines" msgstr "Felhasználható sorok mutatása" -#: src/tables/build/BuildLineTable.tsx:203 +#: src/tables/build/BuildLineTable.tsx:204 msgid "Show optional lines" msgstr "Opcionális sorok mutatása" -#: src/tables/build/BuildLineTable.tsx:212 +#: src/tables/build/BuildLineTable.tsx:213 #: src/tables/part/PartTable.tsx:233 msgid "Testable" msgstr "Tesztelhető" -#: src/tables/build/BuildLineTable.tsx:217 +#: src/tables/build/BuildLineTable.tsx:218 #: src/tables/stock/StockItemTable.tsx:388 msgid "Tracked" msgstr "Követett" -#: src/tables/build/BuildLineTable.tsx:218 +#: src/tables/build/BuildLineTable.tsx:219 msgid "Show tracked lines" msgstr "Követett tételek mutatása" -#: src/tables/build/BuildLineTable.tsx:223 +#: src/tables/build/BuildLineTable.tsx:224 msgid "Show items with stock on order" msgstr "" -#: src/tables/build/BuildLineTable.tsx:258 +#: src/tables/build/BuildLineTable.tsx:259 #: src/tables/sales/SalesOrderLineItemTable.tsx:172 msgid "In production" msgstr "Gyártásban" -#: src/tables/build/BuildLineTable.tsx:286 +#: src/tables/build/BuildLineTable.tsx:287 msgid "Insufficient stock" msgstr "" -#: src/tables/build/BuildLineTable.tsx:302 +#: src/tables/build/BuildLineTable.tsx:303 #: src/tables/sales/SalesOrderLineItemTable.tsx:160 #: src/tables/stock/StockItemTable.tsx:191 msgid "No stock available" msgstr "Nincs elérhető készlet" -#: src/tables/build/BuildLineTable.tsx:375 +#: src/tables/build/BuildLineTable.tsx:376 msgid "Gets Inherited" msgstr "" -#: src/tables/build/BuildLineTable.tsx:388 +#: src/tables/build/BuildLineTable.tsx:389 msgid "Unit Quantity" msgstr "Mennyiségi egység" -#: src/tables/build/BuildLineTable.tsx:415 +#: src/tables/build/BuildLineTable.tsx:416 msgid "Setup Quantity" msgstr "Beállítási mennyiség" -#: src/tables/build/BuildLineTable.tsx:424 +#: src/tables/build/BuildLineTable.tsx:425 msgid "Attrition" msgstr "" -#: src/tables/build/BuildLineTable.tsx:432 +#: src/tables/build/BuildLineTable.tsx:433 msgid "Rounding Multiple" msgstr "" -#: src/tables/build/BuildLineTable.tsx:441 +#: src/tables/build/BuildLineTable.tsx:442 msgid "BOM Information" msgstr "" -#: src/tables/build/BuildLineTable.tsx:515 +#: src/tables/build/BuildLineTable.tsx:516 #: src/tables/part/PartBuildAllocationsTable.tsx:102 msgid "Fully allocated" msgstr "" -#: src/tables/build/BuildLineTable.tsx:563 +#: src/tables/build/BuildLineTable.tsx:564 #: src/tables/sales/SalesOrderLineItemTable.tsx:311 msgid "Create Build Order" msgstr "" -#: src/tables/build/BuildLineTable.tsx:592 +#: src/tables/build/BuildLineTable.tsx:593 msgid "Auto allocation in progress" msgstr "Automatikus foglalás folyamatban" -#: src/tables/build/BuildLineTable.tsx:595 -#: src/tables/build/BuildLineTable.tsx:802 +#: src/tables/build/BuildLineTable.tsx:596 +#: src/tables/build/BuildLineTable.tsx:809 msgid "Auto Allocate Stock" msgstr "Készlet Automatikus Foglalása" -#: src/tables/build/BuildLineTable.tsx:596 +#: src/tables/build/BuildLineTable.tsx:597 msgid "Automatically allocate stock to this build according to the selected options" msgstr "Gyártáshoz szükséges készlet automatikus lefoglalása a beállítások szerint" -#: src/tables/build/BuildLineTable.tsx:616 -#: src/tables/build/BuildLineTable.tsx:630 -#: src/tables/build/BuildLineTable.tsx:751 -#: src/tables/build/BuildLineTable.tsx:852 +#: src/tables/build/BuildLineTable.tsx:617 +#: src/tables/build/BuildLineTable.tsx:631 +#: src/tables/build/BuildLineTable.tsx:758 +#: src/tables/build/BuildLineTable.tsx:859 #: src/tables/build/BuildOutputTable.tsx:355 #: src/tables/build/BuildOutputTable.tsx:360 msgid "Deallocate Stock" msgstr "Foglalás feloldása" -#: src/tables/build/BuildLineTable.tsx:632 +#: src/tables/build/BuildLineTable.tsx:633 msgid "Deallocate all untracked stock for this build order" msgstr "Összes nem egyedi sorszámos készlet felszabadítása ebből a gyártási rendelésből" -#: src/tables/build/BuildLineTable.tsx:634 +#: src/tables/build/BuildLineTable.tsx:635 msgid "Deallocate stock from the selected line item" msgstr "Készlet felszabadítsa a kiválasztott tételekhez" -#: src/tables/build/BuildLineTable.tsx:638 +#: src/tables/build/BuildLineTable.tsx:639 msgid "Stock has been deallocated" msgstr "Készlet felszabadítva" -#: src/tables/build/BuildLineTable.tsx:771 +#: src/tables/build/BuildLineTable.tsx:778 msgid "Build Stock" msgstr "Gyártási készlet" -#: src/tables/build/BuildLineTable.tsx:784 +#: src/tables/build/BuildLineTable.tsx:791 #: src/tables/sales/SalesOrderLineItemTable.tsx:487 msgid "View Part" msgstr "Alkatrész megtekintése" @@ -9739,7 +9823,7 @@ msgid "Serialize Build Output" msgstr "Gyártási kimenet sorozatszámozása" #: src/tables/build/BuildOutputTable.tsx:405 -#: src/tables/part/PartTestResultTable.tsx:310 +#: src/tables/part/PartTestResultTable.tsx:318 #: src/tables/stock/StockItemTable.tsx:328 msgid "Filter by stock status" msgstr "" @@ -9964,8 +10048,8 @@ msgid "View Item" msgstr "Tétel megtekintése" #: src/tables/general/ExtraLineItemTable.tsx:95 -#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:299 -#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:403 +#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:300 +#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:405 #: src/tables/sales/ReturnOrderLineItemTable.tsx:83 #: src/tables/sales/ReturnOrderLineItemTable.tsx:187 #: src/tables/sales/SalesOrderLineItemTable.tsx:252 @@ -9974,14 +10058,14 @@ msgid "Add Line Item" msgstr "Sortétel hozzáadása" #: src/tables/general/ExtraLineItemTable.tsx:108 -#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:320 +#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:322 #: src/tables/sales/ReturnOrderLineItemTable.tsx:96 #: src/tables/sales/SalesOrderLineItemTable.tsx:271 msgid "Edit Line Item" msgstr "Sortétel szerkesztése" #: src/tables/general/ExtraLineItemTable.tsx:117 -#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:329 +#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:331 #: src/tables/sales/ReturnOrderLineItemTable.tsx:105 #: src/tables/sales/SalesOrderLineItemTable.tsx:280 msgid "Delete Line Item" @@ -9991,6 +10075,137 @@ msgstr "Tétel törlése" msgid "Add Extra Line Item" msgstr "" +#: src/tables/general/ParameterTable.tsx:88 +msgid "Internal Units" +msgstr "Belső mértékegységek" + +#: src/tables/general/ParameterTable.tsx:108 +#: src/tables/general/ParameterTable.tsx:123 +msgid "Updated By" +msgstr "Frissítette" + +#: src/tables/general/ParameterTable.tsx:118 +msgid "Show parameters for enabled templates" +msgstr "" + +#: src/tables/general/ParameterTable.tsx:124 +msgid "Filter by user who last updated the parameter" +msgstr "" + +#: src/tables/general/ParameterTable.tsx:154 +msgid "Import Parameters" +msgstr "" + +#: src/tables/general/ParameterTable.tsx:164 +#: src/tables/general/ParametricDataTable.tsx:261 +#: src/tables/general/ParametricDataTable.tsx:392 +msgid "Add Parameter" +msgstr "Paraméter hozzáadása" + +#: src/tables/general/ParameterTable.tsx:175 +#: src/tables/general/ParameterTable.tsx:222 +#: src/tables/general/ParametricDataTable.tsx:285 +msgid "Edit Parameter" +msgstr "Paraméter szerkesztése" + +#: src/tables/general/ParameterTable.tsx:183 +#: src/tables/general/ParameterTable.tsx:230 +msgid "Delete Parameter" +msgstr "Paraméter törlése" + +#: src/tables/general/ParameterTable.tsx:191 +msgid "Add Parameters" +msgstr "" + +#: src/tables/general/ParameterTable.tsx:197 +msgid "Create Parameter" +msgstr "" + +#: src/tables/general/ParameterTable.tsx:199 +msgid "Create a new parameter" +msgstr "" + +#: src/tables/general/ParameterTable.tsx:208 +msgid "Import parameters from a file" +msgstr "" + +#: src/tables/general/ParameterTemplateTable.tsx:48 +#: src/tables/general/ParameterTemplateTable.tsx:197 +msgid "Add Parameter Template" +msgstr "Paraméter sablon létrehozás" + +#: src/tables/general/ParameterTemplateTable.tsx:64 +msgid "Duplicate Parameter Template" +msgstr "" + +#: src/tables/general/ParameterTemplateTable.tsx:78 +msgid "Delete Parameter Template" +msgstr "Paraméter sablon törlés" + +#: src/tables/general/ParameterTemplateTable.tsx:85 +msgid "Edit Parameter Template" +msgstr "Alkatrész paraméter sablon szerkesztés" + +#: src/tables/general/ParameterTemplateTable.tsx:138 +msgid "Checkbox" +msgstr "Jelölőnégyzet" + +#: src/tables/general/ParameterTemplateTable.tsx:139 +msgid "Show checkbox templates" +msgstr "" + +#: src/tables/general/ParameterTemplateTable.tsx:143 +msgid "Has choices" +msgstr "Vannak lehetőségei" + +#: src/tables/general/ParameterTemplateTable.tsx:144 +msgid "Show templates with choices" +msgstr "" + +#: src/tables/general/ParameterTemplateTable.tsx:148 +#: src/tables/part/PartTable.tsx:245 +msgid "Has Units" +msgstr "Van mértékegysége" + +#: src/tables/general/ParameterTemplateTable.tsx:149 +msgid "Show templates with units" +msgstr "" + +#: src/tables/general/ParameterTemplateTable.tsx:154 +msgid "Show enabled templates" +msgstr "" + +#: src/tables/general/ParameterTemplateTable.tsx:158 +#: src/tables/settings/ImportSessionTable.tsx:111 +#: src/tables/settings/TemplateTable.tsx:368 +msgid "Model Type" +msgstr "Modell típusa" + +#: src/tables/general/ParameterTemplateTable.tsx:159 +msgid "Filter by model type" +msgstr "" + +#: src/tables/general/ParametricDataTable.tsx:79 +msgid "Click to edit" +msgstr "Kattints a szerkesztéshez" + +#: src/tables/general/ParametricDataTableFilters.tsx:36 +msgid "True" +msgstr "Igaz" + +#: src/tables/general/ParametricDataTableFilters.tsx:37 +msgid "False" +msgstr "Hamis" + +#: src/tables/general/ParametricDataTableFilters.tsx:47 +#: src/tables/general/ParametricDataTableFilters.tsx:80 +msgid "Select a choice" +msgstr "" + +#: src/tables/general/ParametricDataTableFilters.tsx:100 +msgid "Enter a value" +msgstr "Írj be egy értéket" + #: src/tables/machine/MachineListTable.tsx:133 msgid "Machine restarted" msgstr "" @@ -10071,7 +10286,7 @@ msgid "Initialized" msgstr "Inicializálva" #: src/tables/machine/MachineListTable.tsx:410 -#: src/tables/machine/MachineTypeTable.tsx:307 +#: src/tables/machine/MachineTypeTable.tsx:305 msgid "No errors reported" msgstr "" @@ -10132,15 +10347,15 @@ msgstr "Beépített meghajtó" #~ msgid "Machine type information" #~ msgstr "Machine type information" -#: src/tables/machine/MachineTypeTable.tsx:128 +#: src/tables/machine/MachineTypeTable.tsx:126 msgid "Not Found" msgstr "Nem található" -#: src/tables/machine/MachineTypeTable.tsx:131 +#: src/tables/machine/MachineTypeTable.tsx:129 msgid "Machine type not found." msgstr "" -#: src/tables/machine/MachineTypeTable.tsx:141 +#: src/tables/machine/MachineTypeTable.tsx:139 msgid "Machine Type Information" msgstr "" @@ -10148,34 +10363,34 @@ msgstr "" #~ msgid "Available drivers" #~ msgstr "Available drivers" -#: src/tables/machine/MachineTypeTable.tsx:156 -#: src/tables/machine/MachineTypeTable.tsx:255 +#: src/tables/machine/MachineTypeTable.tsx:154 +#: src/tables/machine/MachineTypeTable.tsx:253 msgid "Slug" msgstr "Slug" -#: src/tables/machine/MachineTypeTable.tsx:167 -#: src/tables/machine/MachineTypeTable.tsx:276 +#: src/tables/machine/MachineTypeTable.tsx:165 +#: src/tables/machine/MachineTypeTable.tsx:274 msgid "Provider plugin" msgstr "" -#: src/tables/machine/MachineTypeTable.tsx:179 -#: src/tables/machine/MachineTypeTable.tsx:288 +#: src/tables/machine/MachineTypeTable.tsx:177 +#: src/tables/machine/MachineTypeTable.tsx:286 msgid "Provider file" msgstr "" -#: src/tables/machine/MachineTypeTable.tsx:194 +#: src/tables/machine/MachineTypeTable.tsx:192 msgid "Available Drivers" msgstr "" -#: src/tables/machine/MachineTypeTable.tsx:234 +#: src/tables/machine/MachineTypeTable.tsx:232 msgid "Machine driver not found." msgstr "" -#: src/tables/machine/MachineTypeTable.tsx:242 +#: src/tables/machine/MachineTypeTable.tsx:240 msgid "Machine driver information" msgstr "" -#: src/tables/machine/MachineTypeTable.tsx:262 +#: src/tables/machine/MachineTypeTable.tsx:260 msgid "Machine type" msgstr "Berendezés típusa" @@ -10187,15 +10402,15 @@ msgstr "Berendezés típusa" #~ msgid "Machine driver detail" #~ msgstr "Machine driver detail" -#: src/tables/machine/MachineTypeTable.tsx:362 +#: src/tables/machine/MachineTypeTable.tsx:360 msgid "Builtin type" msgstr "Beépülő típusa" -#: src/tables/machine/MachineTypeTable.tsx:371 +#: src/tables/machine/MachineTypeTable.tsx:369 msgid "Machine Type Detail" msgstr "" -#: src/tables/machine/MachineTypeTable.tsx:381 +#: src/tables/machine/MachineTypeTable.tsx:379 msgid "Machine Driver Detail" msgstr "" @@ -10213,52 +10428,31 @@ msgstr "Értesítés" msgid "Message" msgstr "Üzenet" -#: src/tables/part/ParametricPartTable.tsx:78 -msgid "Click to edit" -msgstr "Kattints a szerkesztéshez" +#: src/tables/part/ParametricPartTable.tsx:20 +msgid "Show active parts" +msgstr "" + +#: src/tables/part/ParametricPartTable.tsx:25 +msgid "Show locked parts" +msgstr "" + +#: src/tables/part/ParametricPartTable.tsx:30 +msgid "Show assembly parts" +msgstr "" #: src/tables/part/ParametricPartTable.tsx:82 #~ msgid "Edit parameter" #~ msgstr "Edit parameter" #: src/tables/part/ParametricPartTable.tsx:244 -msgid "Add Part Parameter" -msgstr "Alkatrész paraméter hozzáadása" +#~ msgid "Add Part Parameter" +#~ msgstr "Add Part Parameter" #: src/tables/part/ParametricPartTable.tsx:258 #: src/tables/part/PartParameterTable.tsx:164 #: src/tables/part/PartParameterTable.tsx:187 -msgid "Edit Part Parameter" -msgstr "Alkatrész paraméter szerkesztése" - -#: src/tables/part/ParametricPartTable.tsx:355 -msgid "Show active parts" -msgstr "" - -#: src/tables/part/ParametricPartTable.tsx:360 -msgid "Show locked parts" -msgstr "" - -#: src/tables/part/ParametricPartTable.tsx:365 -msgid "Show assembly parts" -msgstr "" - -#: src/tables/part/ParametricPartTableFilters.tsx:36 -msgid "True" -msgstr "Igaz" - -#: src/tables/part/ParametricPartTableFilters.tsx:37 -msgid "False" -msgstr "Hamis" - -#: src/tables/part/ParametricPartTableFilters.tsx:47 -#: src/tables/part/ParametricPartTableFilters.tsx:80 -msgid "Select a choice" -msgstr "" - -#: src/tables/part/ParametricPartTableFilters.tsx:100 -msgid "Enter a value" -msgstr "Írj be egy értéket" +#~ msgid "Edit Part Parameter" +#~ msgstr "Edit Part Parameter" #: src/tables/part/PartBuildAllocationsTable.tsx:64 msgid "Assembly IPN" @@ -10273,7 +10467,7 @@ msgid "Required Stock" msgstr "Szükséges készlet" #: src/tables/part/PartBuildAllocationsTable.tsx:124 -#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:381 +#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:383 msgid "View Build Order" msgstr "" @@ -10332,85 +10526,22 @@ msgstr "" msgid "Delete Category Parameter" msgstr "" -#: src/tables/part/PartCategoryTemplateTable.tsx:87 -msgid "Parameter Template" -msgstr "" - #: src/tables/part/PartCategoryTemplateTable.tsx:93 #~ msgid "[{0}]" #~ msgstr "[{0}]" -#: src/tables/part/PartParameterTable.tsx:108 -msgid "Internal Units" -msgstr "Belső mértékegységek" - -#: src/tables/part/PartParameterTable.tsx:128 -#: src/tables/part/PartParameterTable.tsx:138 -msgid "Updated By" -msgstr "Frissítette" - -#: src/tables/part/PartParameterTable.tsx:139 -msgid "Filter by user who last updated the parameter" -msgstr "" - #: src/tables/part/PartParameterTable.tsx:148 -msgid "New Part Parameter" -msgstr "" +#~ msgid "New Part Parameter" +#~ msgstr "New Part Parameter" #: src/tables/part/PartParameterTable.tsx:173 #: src/tables/part/PartParameterTable.tsx:195 -msgid "Delete Part Parameter" -msgstr "Alkatrész paraméter törlése" +#~ msgid "Delete Part Parameter" +#~ msgstr "Delete Part Parameter" #: src/tables/part/PartParameterTable.tsx:213 -msgid "Add parameter" -msgstr "Paraméter hozzáadás" - -#: src/tables/part/PartParameterTable.tsx:232 -msgid "Part parameters cannot be edited, as the part is locked" -msgstr "" - -#: src/tables/part/PartParameterTemplateTable.tsx:36 -msgid "Checkbox" -msgstr "Jelölőnégyzet" - -#: src/tables/part/PartParameterTemplateTable.tsx:37 -msgid "Show checkbox templates" -msgstr "" - -#: src/tables/part/PartParameterTemplateTable.tsx:41 -msgid "Has choices" -msgstr "Vannak lehetőségei" - -#: src/tables/part/PartParameterTemplateTable.tsx:42 -msgid "Show templates with choices" -msgstr "" - -#: src/tables/part/PartParameterTemplateTable.tsx:46 -#: src/tables/part/PartTable.tsx:245 -msgid "Has Units" -msgstr "Van mértékegysége" - -#: src/tables/part/PartParameterTemplateTable.tsx:47 -msgid "Show templates with units" -msgstr "" - -#: src/tables/part/PartParameterTemplateTable.tsx:91 -#: src/tables/part/PartParameterTemplateTable.tsx:166 -msgid "Add Parameter Template" -msgstr "Paraméter sablon létrehozás" - -#: src/tables/part/PartParameterTemplateTable.tsx:105 -msgid "Duplicate Parameter Template" -msgstr "" - -#: src/tables/part/PartParameterTemplateTable.tsx:117 -msgid "Edit Parameter Template" -msgstr "Alkatrész paraméter sablon szerkesztés" - -#: src/tables/part/PartParameterTemplateTable.tsx:128 -msgid "Delete Parameter Template" -msgstr "Paraméter sablon törlés" +#~ msgid "Add parameter" +#~ msgstr "Add parameter" #: src/tables/part/PartParameterTemplateTable.tsx:141 #~ msgid "Add parameter template" @@ -10430,7 +10561,7 @@ msgid "Show received items" msgstr "" #: src/tables/part/PartSalesAllocationsTable.tsx:90 -#: src/tables/sales/SalesOrderShipmentTable.tsx:218 +#: src/tables/sales/SalesOrderShipmentTable.tsx:263 msgid "View Sales Order" msgstr "" @@ -10617,8 +10748,8 @@ msgstr "" #: src/tables/part/PartTestResultTable.tsx:103 #: src/tables/part/PartTestResultTable.tsx:181 -#: src/tables/part/PartTestResultTable.tsx:320 -#: src/tables/part/PartTestResultTable.tsx:334 +#: src/tables/part/PartTestResultTable.tsx:328 +#: src/tables/part/PartTestResultTable.tsx:342 #: src/tables/stock/StockItemTestResultTable.tsx:296 #: src/tables/stock/StockItemTestResultTable.tsx:368 #: src/tables/stock/StockItemTestResultTable.tsx:429 @@ -10643,7 +10774,7 @@ msgstr "" msgid "No Result" msgstr "Nincs eredmény" -#: src/tables/part/PartTestResultTable.tsx:298 +#: src/tables/part/PartTestResultTable.tsx:306 msgid "Show build outputs currently in production" msgstr "" @@ -11013,36 +11144,45 @@ msgstr "Telepítve" #~ msgid "Parameter updated" #~ msgstr "Parameter updated" -#: src/tables/purchasing/ManufacturerPartParameterTable.tsx:63 -#: src/tables/purchasing/ManufacturerPartParameterTable.tsx:112 -msgid "Add Parameter" -msgstr "Paraméter hozzáadása" - #: src/tables/purchasing/ManufacturerPartParameterTable.tsx:73 #~ msgid "Parameter deleted" #~ msgstr "Parameter deleted" -#: src/tables/purchasing/ManufacturerPartParameterTable.tsx:74 -msgid "Edit Parameter" -msgstr "Paraméter szerkesztése" - #: src/tables/purchasing/ManufacturerPartParameterTable.tsx:74 #~ msgid "Are you sure you want to delete this parameter?" #~ msgstr "Are you sure you want to delete this parameter?" -#: src/tables/purchasing/ManufacturerPartParameterTable.tsx:82 -msgid "Delete Parameter" -msgstr "Paraméter törlése" - -#: src/tables/purchasing/ManufacturerPartTable.tsx:63 -#~ msgid "Create Manufacturer Part" -#~ msgstr "Create Manufacturer Part" - +#: src/tables/purchasing/ManufacturerPartParametricTable.tsx:34 #: src/tables/purchasing/ManufacturerPartTable.tsx:82 #: src/tables/purchasing/SupplierPartTable.tsx:99 msgid "MPN" msgstr "MPN (Gyártói cikkszám)" +#: src/tables/purchasing/ManufacturerPartParametricTable.tsx:44 +#: src/tables/purchasing/ManufacturerPartTable.tsx:134 +#: src/tables/purchasing/SupplierPartTable.tsx:220 +msgid "Active Part" +msgstr "Aktív alkatrész" + +#: src/tables/purchasing/ManufacturerPartParametricTable.tsx:45 +#: src/tables/purchasing/ManufacturerPartTable.tsx:135 +msgid "Show manufacturer parts for active internal parts." +msgstr "" + +#: src/tables/purchasing/ManufacturerPartParametricTable.tsx:50 +#: src/tables/purchasing/ManufacturerPartTable.tsx:140 +msgid "Active Manufacturer" +msgstr "" + +#: src/tables/purchasing/ManufacturerPartParametricTable.tsx:51 +#: src/tables/purchasing/ManufacturerPartTable.tsx:142 +msgid "Show manufacturer parts for active manufacturers." +msgstr "" + +#: src/tables/purchasing/ManufacturerPartTable.tsx:63 +#~ msgid "Create Manufacturer Part" +#~ msgstr "Create Manufacturer Part" + #: src/tables/purchasing/ManufacturerPartTable.tsx:100 #~ msgid "Manufacturer part updated" #~ msgstr "Manufacturer part updated" @@ -11055,25 +11195,8 @@ msgstr "MPN (Gyártói cikkszám)" #~ msgid "Are you sure you want to remove this manufacturer part?" #~ msgstr "Are you sure you want to remove this manufacturer part?" -#: src/tables/purchasing/ManufacturerPartTable.tsx:134 -#: src/tables/purchasing/SupplierPartTable.tsx:220 -msgid "Active Part" -msgstr "Aktív alkatrész" - -#: src/tables/purchasing/ManufacturerPartTable.tsx:135 -msgid "Show manufacturer parts for active internal parts." -msgstr "" - -#: src/tables/purchasing/ManufacturerPartTable.tsx:140 -msgid "Active Manufacturer" -msgstr "" - -#: src/tables/purchasing/ManufacturerPartTable.tsx:142 -msgid "Show manufacturer parts for active manufacturers." -msgstr "" - #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:115 -#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:397 +#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:399 msgid "Import Line Items" msgstr "" @@ -11099,11 +11222,11 @@ msgstr "" #~ msgid "Add line item" #~ msgstr "Add line item" -#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:350 +#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:352 msgid "Receive line item" msgstr "Sortétel bevételezése" -#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:414 +#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:416 msgid "Receive items" msgstr "Bevételezés" @@ -11201,25 +11324,25 @@ msgid "Not shipped" msgstr "Nincs kiszállítva" #: src/tables/sales/SalesOrderAllocationTable.tsx:211 -#: src/tables/sales/SalesOrderAllocationTable.tsx:229 +#: src/tables/sales/SalesOrderAllocationTable.tsx:235 msgid "Edit Allocation" msgstr "" #: src/tables/sales/SalesOrderAllocationTable.tsx:218 #: src/tables/sales/SalesOrderAllocationTable.tsx:241 -msgid "Delete Allocation" -msgstr "" +#~ msgid "Delete Allocation" +#~ msgstr "Delete Allocation" -#: src/tables/sales/SalesOrderAllocationTable.tsx:252 -#: src/tables/sales/SalesOrderAllocationTable.tsx:253 +#: src/tables/sales/SalesOrderAllocationTable.tsx:261 +#: src/tables/sales/SalesOrderAllocationTable.tsx:262 msgid "View Shipment" msgstr "Szállítmány megtekintése" -#: src/tables/sales/SalesOrderAllocationTable.tsx:308 +#: src/tables/sales/SalesOrderAllocationTable.tsx:317 msgid "Assign to Shipment" msgstr "" -#: src/tables/sales/SalesOrderAllocationTable.tsx:324 +#: src/tables/sales/SalesOrderAllocationTable.tsx:333 msgid "Assign to shipment" msgstr "" @@ -11259,35 +11382,35 @@ msgstr "Készlet rendelés" #~ msgid "Delete Shipment" #~ msgstr "Delete Shipment" -#: src/tables/sales/SalesOrderShipmentTable.tsx:72 +#: src/tables/sales/SalesOrderShipmentTable.tsx:79 msgid "Create Shipment" msgstr "" -#: src/tables/sales/SalesOrderShipmentTable.tsx:143 +#: src/tables/sales/SalesOrderShipmentTable.tsx:164 msgid "Items" msgstr "Tételek" -#: src/tables/sales/SalesOrderShipmentTable.tsx:203 +#: src/tables/sales/SalesOrderShipmentTable.tsx:248 msgid "Edit shipment" msgstr "Szállítmány szerkesztése" -#: src/tables/sales/SalesOrderShipmentTable.tsx:211 +#: src/tables/sales/SalesOrderShipmentTable.tsx:256 msgid "Cancel shipment" msgstr "Szállítmány visszavonása" -#: src/tables/sales/SalesOrderShipmentTable.tsx:241 +#: src/tables/sales/SalesOrderShipmentTable.tsx:286 msgid "Add shipment" msgstr "Szállítmány hozzáadása" -#: src/tables/sales/SalesOrderShipmentTable.tsx:255 +#: src/tables/sales/SalesOrderShipmentTable.tsx:300 msgid "Show shipments which have been checked" msgstr "" -#: src/tables/sales/SalesOrderShipmentTable.tsx:260 +#: src/tables/sales/SalesOrderShipmentTable.tsx:305 msgid "Show shipments which have been shipped" msgstr "" -#: src/tables/sales/SalesOrderShipmentTable.tsx:265 +#: src/tables/sales/SalesOrderShipmentTable.tsx:310 msgid "Show shipments which have been delivered" msgstr "" @@ -11621,11 +11744,6 @@ msgstr "Feltöltve" msgid "Imported Rows" msgstr "Importált sorok" -#: src/tables/settings/ImportSessionTable.tsx:111 -#: src/tables/settings/TemplateTable.tsx:368 -msgid "Model Type" -msgstr "Modell típusa" - #: src/tables/settings/ImportSessionTable.tsx:112 #: src/tables/settings/TemplateTable.tsx:369 msgid "Filter by target model type" diff --git a/src/frontend/src/locales/id/messages.po b/src/frontend/src/locales/id/messages.po index 2ef38c727d..7e83fba576 100644 --- a/src/frontend/src/locales/id/messages.po +++ b/src/frontend/src/locales/id/messages.po @@ -8,7 +8,7 @@ msgstr "" "Language: id\n" "Project-Id-Version: inventree\n" "Report-Msgid-Bugs-To: \n" -"PO-Revision-Date: 2025-11-19 19:39\n" +"PO-Revision-Date: 2025-12-07 07:36\n" "Last-Translator: \n" "Language-Team: Indonesian\n" "Plural-Forms: nplurals=1; plural=0;\n" @@ -30,7 +30,7 @@ msgid "Edit" msgstr "Sunting" #: lib/components/RowActions.tsx:56 -#: src/components/forms/ApiForm.tsx:735 +#: src/components/forms/ApiForm.tsx:754 #: src/components/items/ActionDropdown.tsx:257 #: src/components/items/RoleTable.tsx:155 #: src/hooks/UseForm.tsx:164 @@ -56,24 +56,24 @@ msgstr "Batal" #: lib/components/RowActions.tsx:136 #: src/components/nav/NavigationDrawer.tsx:190 -#: src/forms/PurchaseOrderForms.tsx:802 +#: src/forms/PurchaseOrderForms.tsx:854 #: src/forms/StockForms.tsx:796 #: src/forms/StockForms.tsx:843 -#: src/forms/StockForms.tsx:889 -#: src/forms/StockForms.tsx:928 -#: src/forms/StockForms.tsx:964 -#: src/forms/StockForms.tsx:1050 +#: src/forms/StockForms.tsx:896 +#: src/forms/StockForms.tsx:942 +#: src/forms/StockForms.tsx:980 +#: src/forms/StockForms.tsx:1066 #: src/pages/Index/Settings/AccountSettings/MFASettings.tsx:962 msgid "Actions" msgstr "" #: lib/components/SearchInput.tsx:34 -#: src/components/forms/fields/RelatedModelField.tsx:408 +#: src/components/forms/fields/RelatedModelField.tsx:479 #: src/components/nav/Header.tsx:169 #: src/components/wizards/ImportPartWizard.tsx:200 #: src/components/wizards/ImportPartWizard.tsx:233 -#: src/pages/Index/Settings/UserSettings.tsx:74 -#: src/pages/part/PartDetail.tsx:1155 +#: src/pages/Index/Settings/UserSettings.tsx:75 +#: src/pages/part/PartDetail.tsx:1176 msgid "Search" msgstr "Cari" @@ -95,7 +95,7 @@ msgstr "Ya" msgid "No" msgstr "Tidak" -#: lib/enums/ModelInformation.tsx:28 +#: lib/enums/ModelInformation.tsx:29 #: src/components/wizards/OrderPartsWizard.tsx:279 #: src/forms/BuildForms.tsx:332 #: src/forms/BuildForms.tsx:407 @@ -103,208 +103,234 @@ msgstr "Tidak" #: src/forms/BuildForms.tsx:630 #: src/forms/BuildForms.tsx:793 #: src/forms/BuildForms.tsx:896 -#: src/forms/PurchaseOrderForms.tsx:798 +#: src/forms/PurchaseOrderForms.tsx:850 #: src/forms/ReturnOrderForms.tsx:242 -#: src/forms/SalesOrderForms.tsx:305 +#: src/forms/SalesOrderForms.tsx:384 #: src/forms/StockForms.tsx:360 #: src/forms/StockForms.tsx:791 #: src/forms/StockForms.tsx:838 -#: src/forms/StockForms.tsx:884 -#: src/forms/StockForms.tsx:923 -#: src/forms/StockForms.tsx:959 -#: src/forms/StockForms.tsx:1002 -#: src/forms/StockForms.tsx:1046 -#: src/forms/StockForms.tsx:1094 -#: src/forms/StockForms.tsx:1138 -#: src/pages/build/BuildDetail.tsx:200 -#: src/pages/part/PartDetail.tsx:1207 +#: src/forms/StockForms.tsx:891 +#: src/forms/StockForms.tsx:937 +#: src/forms/StockForms.tsx:975 +#: src/forms/StockForms.tsx:1018 +#: src/forms/StockForms.tsx:1062 +#: src/forms/StockForms.tsx:1110 +#: src/forms/StockForms.tsx:1154 +#: src/pages/build/BuildDetail.tsx:201 +#: src/pages/part/PartDetail.tsx:1228 #: src/tables/ColumnRenderers.tsx:91 +#: src/tables/part/PartTestResultTable.tsx:247 #: src/tables/part/RelatedPartTable.tsx:53 #: src/tables/stock/StockTrackingTable.tsx:87 msgid "Part" msgstr "" -#: lib/enums/ModelInformation.tsx:29 +#: lib/enums/ModelInformation.tsx:30 #: lib/enums/Roles.tsx:35 #: src/components/nav/NavigationDrawer.tsx:70 #: src/defaults/links.tsx:36 -#: src/pages/Index/Settings/SystemSettings.tsx:190 -#: src/pages/part/CategoryDetail.tsx:132 -#: src/pages/part/CategoryDetail.tsx:277 -#: src/pages/part/CategoryDetail.tsx:323 -#: src/pages/part/CategoryDetail.tsx:354 -#: src/pages/part/PartDetail.tsx:965 +#: src/pages/Index/Settings/SystemSettings.tsx:197 +#: src/pages/part/CategoryDetail.tsx:135 +#: src/pages/part/CategoryDetail.tsx:285 +#: src/pages/part/CategoryDetail.tsx:340 +#: src/pages/part/CategoryDetail.tsx:371 +#: src/pages/part/PartDetail.tsx:978 msgid "Parts" msgstr "" #: lib/enums/ModelInformation.tsx:37 #: src/pages/Index/Settings/AdminCenter/PartParameterPanel.tsx:13 -msgid "Part Parameter Template" -msgstr "" +#~ msgid "Part Parameter Template" +#~ msgstr "Part Parameter Template" #: lib/enums/ModelInformation.tsx:38 -msgid "Part Parameter Templates" +#~ msgid "Part Parameter Templates" +#~ msgstr "Part Parameter Templates" + +#: lib/enums/ModelInformation.tsx:39 +msgid "Parameter" +msgstr "" + +#: lib/enums/ModelInformation.tsx:40 +#: src/components/panels/ParametersPanel.tsx:19 +#: src/components/wizards/ImportPartWizard.tsx:807 +#: src/pages/Index/Settings/AdminCenter/Index.tsx:195 +#: src/pages/Index/Settings/SystemSettings.tsx:191 +#: src/pages/part/PartDetail.tsx:943 +msgid "Parameters" msgstr "" #: lib/enums/ModelInformation.tsx:45 -msgid "Part Test Template" +#: src/tables/part/PartCategoryTemplateTable.tsx:87 +msgid "Parameter Template" msgstr "" #: lib/enums/ModelInformation.tsx:46 -msgid "Part Test Templates" +#: src/pages/Index/Settings/AdminCenter/ParameterPanel.tsx:13 +msgid "Parameter Templates" msgstr "" #: lib/enums/ModelInformation.tsx:52 +msgid "Part Test Template" +msgstr "" + +#: lib/enums/ModelInformation.tsx:53 +msgid "Part Test Templates" +msgstr "" + +#: lib/enums/ModelInformation.tsx:59 #: src/components/wizards/OrderPartsWizard.tsx:290 -#: src/pages/company/SupplierPartDetail.tsx:413 +#: src/pages/company/SupplierPartDetail.tsx:418 #: src/pages/stock/StockDetail.tsx:289 -#: src/tables/build/BuildAllocatedStockTable.tsx:155 +#: src/tables/build/BuildAllocatedStockTable.tsx:152 #: src/tables/part/PartPurchaseOrdersTable.tsx:50 +#: src/tables/purchasing/SupplierPartParametricTable.tsx:29 #: src/tables/purchasing/SupplierPartTable.tsx:83 #: src/tables/stock/StockItemTable.tsx:247 msgid "Supplier Part" msgstr "Part Supplier" -#: lib/enums/ModelInformation.tsx:53 -#: src/pages/purchasing/PurchasingIndex.tsx:92 +#: lib/enums/ModelInformation.tsx:60 +#: src/pages/purchasing/PurchasingIndex.tsx:128 msgid "Supplier Parts" msgstr "" -#: lib/enums/ModelInformation.tsx:61 -#: src/pages/company/ManufacturerPartDetail.tsx:297 -#: src/pages/company/SupplierPartDetail.tsx:161 +#: lib/enums/ModelInformation.tsx:69 +#: src/pages/company/ManufacturerPartDetail.tsx:288 +#: src/pages/company/SupplierPartDetail.tsx:162 #: src/tables/part/PartPurchaseOrdersTable.tsx:56 #: src/tables/stock/StockItemTable.tsx:253 msgid "Manufacturer Part" msgstr "" -#: lib/enums/ModelInformation.tsx:62 -#: src/pages/purchasing/PurchasingIndex.tsx:109 +#: lib/enums/ModelInformation.tsx:70 +#: src/pages/purchasing/PurchasingIndex.tsx:177 msgid "Manufacturer Parts" msgstr "" -#: lib/enums/ModelInformation.tsx:70 -#: src/pages/part/CategoryDetail.tsx:354 +#: lib/enums/ModelInformation.tsx:79 +#: src/pages/part/CategoryDetail.tsx:371 #: src/tables/Filter.tsx:389 msgid "Part Category" msgstr "" -#: lib/enums/ModelInformation.tsx:71 +#: lib/enums/ModelInformation.tsx:80 #: lib/enums/Roles.tsx:37 -#: src/pages/part/CategoryDetail.tsx:271 -#: src/pages/part/CategoryDetail.tsx:345 -#: src/pages/part/PartDetail.tsx:1196 +#: src/pages/part/CategoryDetail.tsx:279 +#: src/pages/part/CategoryDetail.tsx:362 +#: src/pages/part/PartDetail.tsx:1217 msgid "Part Categories" msgstr "" -#: lib/enums/ModelInformation.tsx:79 +#: lib/enums/ModelInformation.tsx:88 #: src/forms/BuildForms.tsx:473 #: src/forms/BuildForms.tsx:633 #: src/forms/BuildForms.tsx:794 -#: src/forms/SalesOrderForms.tsx:307 +#: src/forms/SalesOrderForms.tsx:386 #: src/pages/stock/StockDetail.tsx:1005 -#: src/tables/part/PartTestResultTable.tsx:248 +#: src/tables/part/PartTestResultTable.tsx:256 #: src/tables/stock/StockTrackingTable.tsx:48 #: src/tables/stock/StockTrackingTable.tsx:55 msgid "Stock Item" msgstr "" -#: lib/enums/ModelInformation.tsx:80 +#: lib/enums/ModelInformation.tsx:89 #: lib/enums/Roles.tsx:45 -#: src/pages/company/CompanyDetail.tsx:210 -#: src/pages/part/CategoryDetail.tsx:291 +#: src/pages/company/CompanyDetail.tsx:211 +#: src/pages/part/CategoryDetail.tsx:314 #: src/pages/part/PartStockHistoryDetail.tsx:101 #: src/pages/stock/LocationDetail.tsx:121 #: src/pages/stock/LocationDetail.tsx:180 msgid "Stock Items" msgstr "" -#: lib/enums/ModelInformation.tsx:88 +#: lib/enums/ModelInformation.tsx:98 #: lib/enums/Roles.tsx:47 #: src/pages/stock/LocationDetail.tsx:420 msgid "Stock Location" msgstr "" -#: lib/enums/ModelInformation.tsx:89 +#: lib/enums/ModelInformation.tsx:99 #: src/pages/stock/LocationDetail.tsx:174 #: src/pages/stock/LocationDetail.tsx:412 #: src/pages/stock/StockDetail.tsx:996 msgid "Stock Locations" msgstr "" -#: lib/enums/ModelInformation.tsx:97 +#: lib/enums/ModelInformation.tsx:108 msgid "Stock Location Type" msgstr "" -#: lib/enums/ModelInformation.tsx:98 +#: lib/enums/ModelInformation.tsx:109 msgid "Stock Location Types" msgstr "" -#: lib/enums/ModelInformation.tsx:103 -#: src/pages/Index/Settings/SystemSettings.tsx:248 -#: src/pages/part/PartDetail.tsx:911 +#: lib/enums/ModelInformation.tsx:114 +#: src/pages/Index/Settings/SystemSettings.tsx:254 +#: src/pages/part/PartDetail.tsx:900 msgid "Stock History" msgstr "" -#: lib/enums/ModelInformation.tsx:104 +#: lib/enums/ModelInformation.tsx:115 msgid "Stock Histories" msgstr "" -#: lib/enums/ModelInformation.tsx:109 +#: lib/enums/ModelInformation.tsx:120 msgid "Build" msgstr "" -#: lib/enums/ModelInformation.tsx:110 +#: lib/enums/ModelInformation.tsx:121 msgid "Builds" msgstr "" -#: lib/enums/ModelInformation.tsx:118 +#: lib/enums/ModelInformation.tsx:130 msgid "Build Line" msgstr "" -#: lib/enums/ModelInformation.tsx:119 +#: lib/enums/ModelInformation.tsx:131 msgid "Build Lines" msgstr "" -#: lib/enums/ModelInformation.tsx:126 +#: lib/enums/ModelInformation.tsx:138 msgid "Build Item" msgstr "" -#: lib/enums/ModelInformation.tsx:127 +#: lib/enums/ModelInformation.tsx:139 msgid "Build Items" msgstr "" -#: lib/enums/ModelInformation.tsx:132 -#: src/pages/company/CompanyDetail.tsx:340 +#: lib/enums/ModelInformation.tsx:144 +#: src/pages/company/CompanyDetail.tsx:345 #: src/tables/company/CompanyTable.tsx:47 #: src/tables/company/ContactTable.tsx:67 +#: src/tables/company/ParametricCompanyTable.tsx:18 msgid "Company" msgstr "Perusahaan" -#: lib/enums/ModelInformation.tsx:133 +#: lib/enums/ModelInformation.tsx:145 msgid "Companies" msgstr "Perusahaan" -#: lib/enums/ModelInformation.tsx:140 -#: src/pages/build/BuildDetail.tsx:316 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:253 -#: src/pages/sales/ReturnOrderDetail.tsx:231 -#: src/pages/sales/SalesOrderDetail.tsx:224 +#: lib/enums/ModelInformation.tsx:152 +#: src/pages/build/BuildDetail.tsx:317 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:254 +#: src/pages/sales/ReturnOrderDetail.tsx:232 +#: src/pages/sales/SalesOrderDetail.tsx:225 #: src/tables/ColumnRenderers.tsx:362 #: src/tables/Filter.tsx:286 #: src/tables/TableHoverCard.tsx:101 msgid "Project Code" msgstr "" -#: lib/enums/ModelInformation.tsx:141 +#: lib/enums/ModelInformation.tsx:153 #: src/pages/Index/Settings/AdminCenter/Index.tsx:172 msgid "Project Codes" msgstr "" -#: lib/enums/ModelInformation.tsx:147 +#: lib/enums/ModelInformation.tsx:159 #: src/components/wizards/OrderPartsWizard.tsx:338 #: src/pages/part/pricing/PurchaseHistoryPanel.tsx:33 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:550 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:555 #: src/pages/stock/StockDetail.tsx:352 #: src/tables/part/PartPurchaseOrdersTable.tsx:32 #: src/tables/stock/StockItemTable.tsx:239 @@ -312,117 +338,117 @@ msgstr "" msgid "Purchase Order" msgstr "" -#: lib/enums/ModelInformation.tsx:148 +#: lib/enums/ModelInformation.tsx:160 #: lib/enums/Roles.tsx:39 #: src/defaults/actions.tsx:104 -#: src/pages/Index/Settings/SystemSettings.tsx:283 -#: src/pages/company/CompanyDetail.tsx:203 -#: src/pages/company/SupplierPartDetail.tsx:266 -#: src/pages/part/PartDetail.tsx:875 -#: src/pages/purchasing/PurchasingIndex.tsx:60 +#: src/pages/Index/Settings/SystemSettings.tsx:289 +#: src/pages/company/CompanyDetail.tsx:204 +#: src/pages/company/SupplierPartDetail.tsx:267 +#: src/pages/part/PartDetail.tsx:864 +#: src/pages/purchasing/PurchasingIndex.tsx:66 msgid "Purchase Orders" msgstr "" -#: lib/enums/ModelInformation.tsx:156 +#: lib/enums/ModelInformation.tsx:169 msgid "Purchase Order Line" msgstr "" -#: lib/enums/ModelInformation.tsx:157 +#: lib/enums/ModelInformation.tsx:170 msgid "Purchase Order Lines" msgstr "" -#: lib/enums/ModelInformation.tsx:162 -#: src/pages/build/BuildDetail.tsx:289 +#: lib/enums/ModelInformation.tsx:175 +#: src/pages/build/BuildDetail.tsx:290 #: src/pages/part/pricing/SaleHistoryPanel.tsx:24 -#: src/pages/sales/SalesOrderDetail.tsx:614 -#: src/pages/sales/SalesOrderShipmentDetail.tsx:105 -#: src/pages/sales/SalesOrderShipmentDetail.tsx:478 +#: src/pages/sales/SalesOrderDetail.tsx:619 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:103 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:446 #: src/pages/stock/StockDetail.tsx:361 #: src/tables/part/PartSalesAllocationsTable.tsx:41 #: src/tables/sales/SalesOrderAllocationTable.tsx:110 -#: src/tables/sales/SalesOrderShipmentTable.tsx:122 +#: src/tables/sales/SalesOrderShipmentTable.tsx:143 #: src/tables/stock/StockTrackingTable.tsx:131 msgid "Sales Order" msgstr "" -#: lib/enums/ModelInformation.tsx:163 +#: lib/enums/ModelInformation.tsx:176 #: lib/enums/Roles.tsx:43 #: src/defaults/actions.tsx:114 -#: src/pages/Index/Settings/SystemSettings.tsx:299 -#: src/pages/company/CompanyDetail.tsx:223 -#: src/pages/part/PartDetail.tsx:887 -#: src/pages/sales/SalesIndex.tsx:84 +#: src/pages/Index/Settings/SystemSettings.tsx:305 +#: src/pages/company/CompanyDetail.tsx:224 +#: src/pages/part/PartDetail.tsx:876 +#: src/pages/sales/SalesIndex.tsx:53 msgid "Sales Orders" msgstr "" -#: lib/enums/ModelInformation.tsx:171 -#: src/pages/sales/SalesOrderShipmentDetail.tsx:477 +#: lib/enums/ModelInformation.tsx:185 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:445 msgid "Sales Order Shipment" msgstr "" -#: lib/enums/ModelInformation.tsx:172 +#: lib/enums/ModelInformation.tsx:186 msgid "Sales Order Shipments" msgstr "" -#: lib/enums/ModelInformation.tsx:179 -#: src/pages/sales/ReturnOrderDetail.tsx:549 +#: lib/enums/ModelInformation.tsx:194 +#: src/pages/sales/ReturnOrderDetail.tsx:554 #: src/tables/stock/StockTrackingTable.tsx:142 msgid "Return Order" msgstr "" -#: lib/enums/ModelInformation.tsx:180 +#: lib/enums/ModelInformation.tsx:195 #: lib/enums/Roles.tsx:41 #: src/defaults/actions.tsx:125 -#: src/pages/Index/Settings/SystemSettings.tsx:316 -#: src/pages/company/CompanyDetail.tsx:230 -#: src/pages/part/PartDetail.tsx:894 -#: src/pages/sales/SalesIndex.tsx:117 +#: src/pages/Index/Settings/SystemSettings.tsx:322 +#: src/pages/company/CompanyDetail.tsx:231 +#: src/pages/part/PartDetail.tsx:883 +#: src/pages/sales/SalesIndex.tsx:99 msgid "Return Orders" msgstr "" -#: lib/enums/ModelInformation.tsx:188 +#: lib/enums/ModelInformation.tsx:204 msgid "Return Order Line Item" msgstr "" -#: lib/enums/ModelInformation.tsx:189 +#: lib/enums/ModelInformation.tsx:205 msgid "Return Order Line Items" msgstr "" -#: lib/enums/ModelInformation.tsx:194 +#: lib/enums/ModelInformation.tsx:210 #: src/tables/company/AddressTable.tsx:52 msgid "Address" msgstr "Alamat" -#: lib/enums/ModelInformation.tsx:195 -#: src/pages/company/CompanyDetail.tsx:264 +#: lib/enums/ModelInformation.tsx:211 +#: src/pages/company/CompanyDetail.tsx:265 msgid "Addresses" msgstr "" -#: lib/enums/ModelInformation.tsx:201 +#: lib/enums/ModelInformation.tsx:217 #: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:89 #: src/pages/core/UserDetail.tsx:135 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:229 -#: src/pages/sales/ReturnOrderDetail.tsx:207 -#: src/pages/sales/SalesOrderDetail.tsx:200 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:230 +#: src/pages/sales/ReturnOrderDetail.tsx:208 +#: src/pages/sales/SalesOrderDetail.tsx:201 msgid "Contact" msgstr "Kontak" -#: lib/enums/ModelInformation.tsx:202 -#: src/pages/company/CompanyDetail.tsx:258 +#: lib/enums/ModelInformation.tsx:218 +#: src/pages/company/CompanyDetail.tsx:259 #: src/pages/core/CoreIndex.tsx:33 msgid "Contacts" msgstr "Kontak" -#: lib/enums/ModelInformation.tsx:208 +#: lib/enums/ModelInformation.tsx:224 #: src/tables/ColumnRenderers.tsx:444 msgid "Owner" msgstr "Pemilik" -#: lib/enums/ModelInformation.tsx:209 +#: lib/enums/ModelInformation.tsx:225 msgid "Owners" msgstr "Pemilik" -#: lib/enums/ModelInformation.tsx:215 +#: lib/enums/ModelInformation.tsx:231 #: src/pages/Auth/ChangePassword.tsx:36 #: src/pages/core/UserDetail.tsx:220 #: src/tables/ColumnRenderers.tsx:395 @@ -437,7 +463,7 @@ msgstr "Pemilik" msgid "User" msgstr "Pengguna" -#: lib/enums/ModelInformation.tsx:216 +#: lib/enums/ModelInformation.tsx:232 #: src/components/nav/NavigationDrawer.tsx:105 #: src/pages/Index/Settings/AdminCenter/UserManagementPanel.tsx:15 #: src/pages/core/CoreIndex.tsx:21 @@ -445,12 +471,12 @@ msgstr "Pengguna" msgid "Users" msgstr "Pengguna" -#: lib/enums/ModelInformation.tsx:222 +#: lib/enums/ModelInformation.tsx:238 #: src/pages/core/GroupDetail.tsx:78 msgid "Group" msgstr "" -#: lib/enums/ModelInformation.tsx:223 +#: lib/enums/ModelInformation.tsx:239 #: src/components/nav/NavigationDrawer.tsx:111 #: src/pages/Index/Settings/AdminCenter/UserManagementPanel.tsx:23 #: src/pages/core/CoreIndex.tsx:27 @@ -460,64 +486,64 @@ msgstr "" msgid "Groups" msgstr "" -#: lib/enums/ModelInformation.tsx:230 +#: lib/enums/ModelInformation.tsx:246 msgid "Import Session" msgstr "" -#: lib/enums/ModelInformation.tsx:231 +#: lib/enums/ModelInformation.tsx:247 msgid "Import Sessions" msgstr "" -#: lib/enums/ModelInformation.tsx:238 +#: lib/enums/ModelInformation.tsx:254 msgid "Label Template" msgstr "" -#: lib/enums/ModelInformation.tsx:239 +#: lib/enums/ModelInformation.tsx:255 #: src/pages/Index/Settings/AdminCenter/Index.tsx:209 msgid "Label Templates" msgstr "" -#: lib/enums/ModelInformation.tsx:246 +#: lib/enums/ModelInformation.tsx:262 msgid "Report Template" msgstr "" -#: lib/enums/ModelInformation.tsx:247 +#: lib/enums/ModelInformation.tsx:263 #: src/pages/Index/Settings/AdminCenter/Index.tsx:215 msgid "Report Templates" msgstr "" -#: lib/enums/ModelInformation.tsx:254 +#: lib/enums/ModelInformation.tsx:270 #: src/components/plugins/PluginDrawer.tsx:145 msgid "Plugin Configuration" msgstr "" -#: lib/enums/ModelInformation.tsx:255 +#: lib/enums/ModelInformation.tsx:271 msgid "Plugin Configurations" msgstr "" -#: lib/enums/ModelInformation.tsx:262 +#: lib/enums/ModelInformation.tsx:278 msgid "Content Type" msgstr "" -#: lib/enums/ModelInformation.tsx:263 +#: lib/enums/ModelInformation.tsx:279 msgid "Content Types" msgstr "" -#: lib/enums/ModelInformation.tsx:268 +#: lib/enums/ModelInformation.tsx:284 msgid "Selection List" msgstr "" -#: lib/enums/ModelInformation.tsx:269 -#: src/pages/Index/Settings/AdminCenter/PartParameterPanel.tsx:21 +#: lib/enums/ModelInformation.tsx:285 +#: src/pages/Index/Settings/AdminCenter/ParameterPanel.tsx:21 msgid "Selection Lists" msgstr "" -#: lib/enums/ModelInformation.tsx:275 +#: lib/enums/ModelInformation.tsx:291 #: src/components/barcodes/BarcodeInput.tsx:114 #: src/components/dashboard/DashboardLayout.tsx:281 #: src/components/editors/NotesEditor.tsx:74 #: src/components/editors/TemplateEditor/TemplateEditor.tsx:158 -#: src/components/forms/fields/ApiFormField.tsx:273 +#: src/components/forms/fields/ApiFormField.tsx:237 #: src/components/forms/fields/TableField.tsx:45 #: src/components/importer/ImportDataSelector.tsx:192 #: src/components/importer/ImporterColumnSelector.tsx:234 @@ -528,7 +554,7 @@ msgstr "" #: src/components/nav/SearchDrawer.tsx:572 #: src/components/settings/SettingList.tsx:139 #: src/components/wizards/ImportPartWizard.tsx:574 -#: src/components/wizards/ImportPartWizard.tsx:718 +#: src/components/wizards/ImportPartWizard.tsx:719 #: src/forms/BomForms.tsx:69 #: src/functions/auth.tsx:643 #: src/pages/ErrorPage.tsx:11 @@ -547,9 +573,9 @@ msgstr "" msgid "Error" msgstr "Galat" -#: lib/enums/ModelInformation.tsx:276 +#: lib/enums/ModelInformation.tsx:292 #: src/tables/machine/MachineListTable.tsx:402 -#: src/tables/machine/MachineTypeTable.tsx:299 +#: src/tables/machine/MachineTypeTable.tsx:297 msgid "Errors" msgstr "" @@ -559,10 +585,10 @@ msgstr "" #: lib/enums/Roles.tsx:33 #: src/defaults/actions.tsx:135 -#: src/pages/Index/Settings/SystemSettings.tsx:264 -#: src/pages/build/BuildIndex.tsx:75 -#: src/pages/part/PartDetail.tsx:904 -#: src/pages/sales/SalesOrderDetail.tsx:421 +#: src/pages/Index/Settings/SystemSettings.tsx:270 +#: src/pages/build/BuildIndex.tsx:67 +#: src/pages/part/PartDetail.tsx:893 +#: src/pages/sales/SalesOrderDetail.tsx:422 msgid "Build Orders" msgstr "" @@ -639,39 +665,39 @@ msgstr "" msgid "Enter barcode data" msgstr "" -#: src/components/barcodes/BarcodeScanDialog.tsx:49 -#: src/components/buttons/ScanButton.tsx:15 +#: src/components/barcodes/BarcodeScanDialog.tsx:56 +#: src/components/buttons/ScanButton.tsx:27 #: src/components/nav/NavigationDrawer.tsx:122 -#: src/forms/PurchaseOrderForms.tsx:457 -#: src/forms/PurchaseOrderForms.tsx:563 +#: src/forms/PurchaseOrderForms.tsx:509 +#: src/forms/PurchaseOrderForms.tsx:615 msgid "Scan Barcode" msgstr "" -#: src/components/barcodes/BarcodeScanDialog.tsx:105 +#: src/components/barcodes/BarcodeScanDialog.tsx:121 msgid "No matching item found" msgstr "" -#: src/components/barcodes/BarcodeScanDialog.tsx:134 +#: src/components/barcodes/BarcodeScanDialog.tsx:150 msgid "Barcode does not match the expected model type" msgstr "" -#: src/components/barcodes/BarcodeScanDialog.tsx:145 +#: src/components/barcodes/BarcodeScanDialog.tsx:161 #: src/components/editors/NotesEditor.tsx:84 #: src/components/editors/NotesEditor.tsx:118 -#: src/components/forms/ApiForm.tsx:465 +#: src/components/forms/ApiForm.tsx:484 #: src/components/wizards/ImportPartWizard.tsx:566 -#: src/components/wizards/ImportPartWizard.tsx:690 +#: src/components/wizards/ImportPartWizard.tsx:691 #: src/pages/Index/Settings/AdminCenter/CurrencyManagementPanel.tsx:45 #: src/tables/bom/BomTable.tsx:548 #: src/tables/settings/PendingTasksTable.tsx:68 msgid "Success" msgstr "Berhasil" -#: src/components/barcodes/BarcodeScanDialog.tsx:151 +#: src/components/barcodes/BarcodeScanDialog.tsx:167 msgid "Failed to handle barcode" msgstr "" -#: src/components/barcodes/BarcodeScanDialog.tsx:167 +#: src/components/barcodes/BarcodeScanDialog.tsx:183 #: src/pages/Index/Scan.tsx:129 msgid "Failed to scan barcode" msgstr "" @@ -714,10 +740,10 @@ msgstr "" #: src/components/barcodes/QRCode.tsx:179 #: src/pages/part/PartDetail.tsx:521 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:222 -#: src/pages/sales/ReturnOrderDetail.tsx:188 -#: src/pages/sales/SalesOrderDetail.tsx:181 -#: src/pages/sales/SalesOrderShipmentDetail.tsx:122 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:223 +#: src/pages/sales/ReturnOrderDetail.tsx:189 +#: src/pages/sales/SalesOrderDetail.tsx:182 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:120 #: src/pages/stock/StockDetail.tsx:186 msgid "Link" msgstr "Tautan" @@ -728,7 +754,7 @@ msgstr "" #: src/components/barcodes/QRCode.tsx:205 #: src/components/items/ActionDropdown.tsx:192 -#: src/forms/PurchaseOrderForms.tsx:554 +#: src/forms/PurchaseOrderForms.tsx:606 msgid "Unlink Barcode" msgstr "" @@ -829,14 +855,14 @@ msgstr "" #~ msgid "Scan QR code" #~ msgstr "Scan QR code" -#: src/components/buttons/ScanButton.tsx:19 -msgid "Open Barcode Scanner" -msgstr "" - #: src/components/buttons/ScanButton.tsx:20 #~ msgid "Open QR code scanner" #~ msgstr "Open QR code scanner" +#: src/components/buttons/ScanButton.tsx:32 +msgid "Open Barcode Scanner" +msgstr "" + #: src/components/buttons/SpotlightButton.tsx:12 msgid "Open spotlight" msgstr "" @@ -1059,7 +1085,7 @@ msgid "Show the number of sales orders which are assigned to you" msgstr "" #: src/components/dashboard/DashboardWidgetLibrary.tsx:129 -#: src/pages/sales/SalesIndex.tsx:105 +#: src/pages/sales/SalesIndex.tsx:87 msgid "Pending Shipments" msgstr "" @@ -1210,12 +1236,18 @@ msgid "Remove the associated image from this item?" msgstr "" #: src/components/details/DetailsImage.tsx:83 -#: src/forms/StockForms.tsx:888 +#: src/forms/StockForms.tsx:895 #: src/pages/Index/Settings/AccountSettings/MFASettings.tsx:324 #: src/pages/Index/Settings/AccountSettings/MFASettings.tsx:415 #: src/pages/Index/Settings/AccountSettings/MFASettings.tsx:884 #: src/pages/Index/Settings/AccountSettings/MFASettings.tsx:903 #: src/pages/Index/Settings/AccountSettings/SecurityContent.tsx:254 +#: src/tables/build/BuildAllocatedStockTable.tsx:178 +#: src/tables/build/BuildAllocatedStockTable.tsx:258 +#: src/tables/build/BuildLineTable.tsx:111 +#: src/tables/build/BuildLineTable.tsx:665 +#: src/tables/sales/SalesOrderAllocationTable.tsx:224 +#: src/tables/sales/SalesOrderAllocationTable.tsx:247 msgid "Remove" msgstr "Hapus" @@ -1241,12 +1273,12 @@ msgid "Upload Error" msgstr "" #: src/components/details/DetailsImage.tsx:250 -#: src/components/forms/fields/TextField.tsx:65 +#: src/components/forms/fields/AutoFillRightSection.tsx:34 msgid "Clear" msgstr "" #: src/components/details/DetailsImage.tsx:256 -#: src/components/forms/ApiForm.tsx:677 +#: src/components/forms/ApiForm.tsx:696 #: src/contexts/ThemeContext.tsx:44 #: src/pages/Index/Settings/AccountSettings/MFASettings.tsx:149 #: src/pages/Index/Settings/AccountSettings/MFASettings.tsx:568 @@ -1499,8 +1531,8 @@ msgstr "Galat Server" msgid "A server error occurred" msgstr "" -#: src/components/forms/ApiForm.tsx:103 -#: src/components/forms/ApiForm.tsx:594 +#: src/components/forms/ApiForm.tsx:107 +#: src/components/forms/ApiForm.tsx:613 msgid "Form Error" msgstr "" @@ -1508,11 +1540,11 @@ msgstr "" #~ msgid "Form Errors Exist" #~ msgstr "Form Errors Exist" -#: src/components/forms/ApiForm.tsx:604 +#: src/components/forms/ApiForm.tsx:623 msgid "Errors exist for one or more form fields" msgstr "" -#: src/components/forms/ApiForm.tsx:715 +#: src/components/forms/ApiForm.tsx:734 #: src/hooks/UseForm.tsx:133 #: src/tables/plugin/PluginListTable.tsx:204 msgid "Update" @@ -1698,15 +1730,14 @@ msgstr "" #: src/components/forms/InstanceOptions.tsx:124 #: src/components/plugins/PluginDrawer.tsx:68 #: src/pages/Index/Settings/AdminCenter/UnitManagementPanel.tsx:19 -#: src/pages/part/CategoryDetail.tsx:88 +#: src/pages/part/CategoryDetail.tsx:91 #: src/pages/part/PartDetail.tsx:446 #: src/pages/stock/LocationDetail.tsx:82 #: src/tables/machine/MachineTypeTable.tsx:67 -#: src/tables/machine/MachineTypeTable.tsx:151 -#: src/tables/machine/MachineTypeTable.tsx:254 -#: src/tables/machine/MachineTypeTable.tsx:357 +#: src/tables/machine/MachineTypeTable.tsx:149 +#: src/tables/machine/MachineTypeTable.tsx:252 +#: src/tables/machine/MachineTypeTable.tsx:355 #: src/tables/plugin/PluginErrorTable.tsx:33 -#: src/tables/purchasing/ManufacturerPartParameterTable.tsx:36 #: src/tables/settings/ApiTokenTable.tsx:57 #: src/tables/settings/GroupTable.tsx:95 #: src/tables/settings/GroupTable.tsx:148 @@ -1769,7 +1800,7 @@ msgstr "" #~ msgstr "State: <0>worker ({0}), <1>plugins{1}" #: src/components/forms/InstanceOptions.tsx:118 -#: src/pages/Index/Settings/SystemSettings.tsx:45 +#: src/pages/Index/Settings/SystemSettings.tsx:46 msgid "Server" msgstr "" @@ -1793,6 +1824,8 @@ msgid "Plugins" msgstr "" #: src/components/forms/InstanceOptions.tsx:143 +#: src/tables/general/ParameterTemplateTable.tsx:153 +#: src/tables/general/ParameterTemplateTable.tsx:188 #: src/tables/part/PartTestTemplateTable.tsx:117 #: src/tables/settings/TemplateTable.tsx:251 #: src/tables/settings/TemplateTable.tsx:362 @@ -1817,10 +1850,14 @@ msgstr "" msgid "Running" msgstr "" -#: src/components/forms/fields/ApiFormField.tsx:233 +#: src/components/forms/fields/ApiFormField.tsx:197 msgid "Select file to upload" msgstr "" +#: src/components/forms/fields/AutoFillRightSection.tsx:47 +msgid "Accept suggested value" +msgstr "" + #: src/components/forms/fields/DateField.tsx:76 msgid "Select date" msgstr "" @@ -1853,13 +1890,13 @@ msgstr "" msgid "{0} icons" msgstr "{0} icon" -#: src/components/forms/fields/RelatedModelField.tsx:409 +#: src/components/forms/fields/RelatedModelField.tsx:480 #: src/components/modals/AboutInvenTreeModal.tsx:96 #: src/pages/Index/Settings/AccountSettings/SecurityContent.tsx:383 msgid "Loading" msgstr "Memuat" -#: src/components/forms/fields/RelatedModelField.tsx:411 +#: src/components/forms/fields/RelatedModelField.tsx:482 msgid "No results found" msgstr "Tidak ada hasil yang ditemukan" @@ -1875,10 +1912,6 @@ msgstr "" msgid "Add new row" msgstr "" -#: src/components/forms/fields/TextField.tsx:82 -msgid "Accept suggested value" -msgstr "" - #: src/components/images/DetailsImage.tsx:252 #~ msgid "Select image" #~ msgstr "Select image" @@ -2036,7 +2069,7 @@ msgstr "" #: src/components/importer/ImporterDrawer.tsx:109 #: src/components/modals/AboutInvenTreeModal.tsx:205 #: src/components/modals/ServerInfoModal.tsx:134 -#: src/components/wizards/ImportPartWizard.tsx:772 +#: src/components/wizards/ImportPartWizard.tsx:773 #: src/forms/BomForms.tsx:132 #: src/pages/Index/Settings/AccountSettings/MFASettings.tsx:685 msgid "Close" @@ -2199,7 +2232,7 @@ msgid "Change" msgstr "" #: src/components/items/RoleTable.tsx:150 -#: src/forms/StockForms.tsx:927 +#: src/forms/StockForms.tsx:941 #: src/tables/stock/StockItemTestResultTable.tsx:367 msgid "Add" msgstr "Tambah" @@ -2222,11 +2255,11 @@ msgstr "" #: src/components/items/TransferList.tsx:161 #: src/components/render/Stock.tsx:102 -#: src/pages/part/PartDetail.tsx:994 +#: src/pages/part/PartDetail.tsx:1009 #: src/pages/stock/StockDetail.tsx:265 #: src/pages/stock/StockDetail.tsx:942 -#: src/tables/build/BuildAllocatedStockTable.tsx:135 -#: src/tables/build/BuildLineTable.tsx:192 +#: src/tables/build/BuildAllocatedStockTable.tsx:132 +#: src/tables/build/BuildLineTable.tsx:193 #: src/tables/part/PartTable.tsx:137 #: src/tables/stock/StockItemTable.tsx:182 #: src/tables/stock/StockItemTable.tsx:343 @@ -2373,7 +2406,7 @@ msgid "Database" msgstr "Basis Data" #: src/components/modals/ServerInfoModal.tsx:49 -#: src/components/nav/Alerts.tsx:118 +#: src/components/nav/Alerts.tsx:120 msgid "Debug Mode" msgstr "" @@ -2414,7 +2447,7 @@ msgid "Issues detected" msgstr "" #: src/components/modals/ServerInfoModal.tsx:102 -#: src/components/nav/Alerts.tsx:125 +#: src/components/nav/Alerts.tsx:127 msgid "Background Worker" msgstr "" @@ -2436,7 +2469,7 @@ msgstr "Pengaturan Surel" #~ msgstr "Email settings not configured" #: src/components/modals/ServerInfoModal.tsx:120 -#: src/components/nav/Alerts.tsx:141 +#: src/components/nav/Alerts.tsx:143 msgid "Email settings not configured." msgstr "" @@ -2444,43 +2477,47 @@ msgstr "" msgid "Alerts" msgstr "" -#: src/components/nav/Alerts.tsx:120 +#: src/components/nav/Alerts.tsx:97 +msgid "No issues detected" +msgstr "" + +#: src/components/nav/Alerts.tsx:122 msgid "The server is running in debug mode." msgstr "" -#: src/components/nav/Alerts.tsx:127 +#: src/components/nav/Alerts.tsx:129 msgid "The background worker process is not running." msgstr "" -#: src/components/nav/Alerts.tsx:132 +#: src/components/nav/Alerts.tsx:134 msgid "Server Restart" msgstr "" -#: src/components/nav/Alerts.tsx:134 +#: src/components/nav/Alerts.tsx:136 msgid "The server requires a restart to apply changes." msgstr "" -#: src/components/nav/Alerts.tsx:139 +#: src/components/nav/Alerts.tsx:141 msgid "Email settings" msgstr "" -#: src/components/nav/Alerts.tsx:146 +#: src/components/nav/Alerts.tsx:148 msgid "Database Migrations" msgstr "" -#: src/components/nav/Alerts.tsx:148 +#: src/components/nav/Alerts.tsx:150 msgid "There are pending database migrations." msgstr "" -#: src/components/nav/Alerts.tsx:163 +#: src/components/nav/Alerts.tsx:165 msgid "Learn more about {code}" msgstr "" #: src/components/nav/Header.tsx:188 #: src/components/nav/NavigationDrawer.tsx:134 #: src/components/nav/NotificationDrawer.tsx:181 -#: src/pages/Index/Settings/SystemSettings.tsx:121 -#: src/pages/Index/Settings/UserSettings.tsx:106 +#: src/pages/Index/Settings/SystemSettings.tsx:122 +#: src/pages/Index/Settings/UserSettings.tsx:107 #: src/pages/Notifications.tsx:45 #: src/pages/Notifications.tsx:130 msgid "Notifications" @@ -2511,8 +2548,8 @@ msgstr "Pengaturan" #: src/components/nav/NavigationDrawer.tsx:140 #: src/components/nav/SettingsHeader.tsx:40 #: src/defaults/actions.tsx:92 -#: src/pages/Index/Settings/UserSettings.tsx:141 -#: src/pages/Index/Settings/UserSettings.tsx:145 +#: src/pages/Index/Settings/UserSettings.tsx:142 +#: src/pages/Index/Settings/UserSettings.tsx:146 msgid "User Settings" msgstr "" @@ -2529,8 +2566,8 @@ msgstr "" #: src/components/nav/NavigationDrawer.tsx:146 #: src/components/nav/SettingsHeader.tsx:41 #: src/defaults/actions.tsx:144 -#: src/pages/Index/Settings/SystemSettings.tsx:348 -#: src/pages/Index/Settings/SystemSettings.tsx:353 +#: src/pages/Index/Settings/SystemSettings.tsx:354 +#: src/pages/Index/Settings/SystemSettings.tsx:359 msgid "System Settings" msgstr "Pengaturan Sistem" @@ -2577,11 +2614,11 @@ msgstr "" #: src/components/nav/NavigationDrawer.tsx:77 #: src/components/render/Part.tsx:36 -#: src/components/wizards/ImportPartWizard.tsx:807 +#: src/components/wizards/ImportPartWizard.tsx:808 #: src/defaults/links.tsx:42 #: src/forms/StockForms.tsx:794 -#: src/pages/Index/Settings/SystemSettings.tsx:224 -#: src/pages/part/PartDetail.tsx:804 +#: src/pages/Index/Settings/SystemSettings.tsx:230 +#: src/pages/part/PartDetail.tsx:793 #: src/pages/stock/LocationDetail.tsx:390 #: src/pages/stock/LocationDetail.tsx:420 #: src/pages/stock/StockDetail.tsx:642 @@ -2591,29 +2628,29 @@ msgstr "Persediaan" #: src/components/nav/NavigationDrawer.tsx:84 #: src/defaults/links.tsx:48 -#: src/pages/build/BuildDetail.tsx:748 -#: src/pages/build/BuildIndex.tsx:102 +#: src/pages/build/BuildDetail.tsx:753 +#: src/pages/build/BuildIndex.tsx:101 msgid "Manufacturing" msgstr "" #: src/components/nav/NavigationDrawer.tsx:91 #: src/defaults/links.tsx:54 #: src/pages/company/ManufacturerDetail.tsx:9 -#: src/pages/company/ManufacturerPartDetail.tsx:276 +#: src/pages/company/ManufacturerPartDetail.tsx:267 #: src/pages/company/SupplierDetail.tsx:9 -#: src/pages/company/SupplierPartDetail.tsx:360 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:553 -#: src/pages/purchasing/PurchasingIndex.tsx:122 +#: src/pages/company/SupplierPartDetail.tsx:365 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:558 +#: src/pages/purchasing/PurchasingIndex.tsx:212 msgid "Purchasing" msgstr "" #: src/components/nav/NavigationDrawer.tsx:98 #: src/defaults/links.tsx:60 #: src/pages/company/CustomerDetail.tsx:9 -#: src/pages/sales/ReturnOrderDetail.tsx:554 -#: src/pages/sales/SalesIndex.tsx:153 -#: src/pages/sales/SalesOrderDetail.tsx:619 -#: src/pages/sales/SalesOrderShipmentDetail.tsx:480 +#: src/pages/sales/ReturnOrderDetail.tsx:559 +#: src/pages/sales/SalesIndex.tsx:168 +#: src/pages/sales/SalesOrderDetail.tsx:624 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:448 msgid "Sales" msgstr "Penjualan" @@ -2667,21 +2704,21 @@ msgid "Remove search group" msgstr "" #: src/components/nav/SearchDrawer.tsx:288 -#: src/pages/company/ManufacturerPartDetail.tsx:192 -#: src/pages/part/PartDetail.tsx:862 +#: src/pages/company/ManufacturerPartDetail.tsx:179 +#: src/pages/part/PartDetail.tsx:851 #: src/pages/part/PartSupplierDetail.tsx:15 -#: src/pages/purchasing/PurchasingIndex.tsx:81 +#: src/pages/purchasing/PurchasingIndex.tsx:100 msgid "Suppliers" msgstr "" #: src/components/nav/SearchDrawer.tsx:298 #: src/pages/part/PartSupplierDetail.tsx:23 -#: src/pages/purchasing/PurchasingIndex.tsx:98 +#: src/pages/purchasing/PurchasingIndex.tsx:149 msgid "Manufacturers" msgstr "" #: src/components/nav/SearchDrawer.tsx:308 -#: src/pages/sales/SalesIndex.tsx:138 +#: src/pages/sales/SalesIndex.tsx:133 msgid "Customers" msgstr "Pelanggan" @@ -2772,21 +2809,21 @@ msgstr "" #: src/components/plugins/PluginDrawer.tsx:73 #: src/forms/selectionListFields.tsx:102 -#: src/pages/build/BuildDetail.tsx:250 -#: src/pages/company/CompanyDetail.tsx:93 -#: src/pages/company/ManufacturerPartDetail.tsx:93 -#: src/pages/company/ManufacturerPartDetail.tsx:120 -#: src/pages/company/SupplierPartDetail.tsx:145 -#: src/pages/part/CategoryDetail.tsx:108 +#: src/pages/build/BuildDetail.tsx:251 +#: src/pages/company/CompanyDetail.tsx:94 +#: src/pages/company/ManufacturerPartDetail.tsx:92 +#: src/pages/company/ManufacturerPartDetail.tsx:119 +#: src/pages/company/SupplierPartDetail.tsx:146 +#: src/pages/part/CategoryDetail.tsx:111 #: src/pages/part/PartDetail.tsx:460 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:162 -#: src/pages/sales/ReturnOrderDetail.tsx:129 -#: src/pages/sales/SalesOrderDetail.tsx:119 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:163 +#: src/pages/sales/ReturnOrderDetail.tsx:130 +#: src/pages/sales/SalesOrderDetail.tsx:120 #: src/pages/stock/LocationDetail.tsx:102 #: src/tables/ColumnRenderers.tsx:278 -#: src/tables/build/BuildAllocatedStockTable.tsx:91 -#: src/tables/machine/MachineTypeTable.tsx:161 -#: src/tables/machine/MachineTypeTable.tsx:257 +#: src/tables/build/BuildAllocatedStockTable.tsx:88 +#: src/tables/machine/MachineTypeTable.tsx:159 +#: src/tables/machine/MachineTypeTable.tsx:255 #: src/tables/plugin/PluginListTable.tsx:110 msgid "Description" msgstr "" @@ -2814,7 +2851,7 @@ msgstr "" #: src/tables/company/CompanyTable.tsx:91 #: src/tables/machine/MachineListTable.tsx:384 #: src/tables/machine/MachineListTable.tsx:799 -#: src/tables/part/ParametricPartTable.tsx:354 +#: src/tables/part/ParametricPartTable.tsx:19 #: src/tables/part/PartTable.tsx:197 #: src/tables/part/PartVariantTable.tsx:15 #: src/tables/plugin/PluginListTable.tsx:96 @@ -2836,8 +2873,8 @@ msgid "Installation Path" msgstr "" #: src/components/plugins/PluginDrawer.tsx:116 -#: src/tables/machine/MachineTypeTable.tsx:184 -#: src/tables/machine/MachineTypeTable.tsx:293 +#: src/tables/machine/MachineTypeTable.tsx:182 +#: src/tables/machine/MachineTypeTable.tsx:291 #: src/tables/plugin/PluginListTable.tsx:101 #: src/tables/plugin/PluginListTable.tsx:417 msgid "Builtin" @@ -2849,8 +2886,8 @@ msgstr "" #: src/components/plugins/PluginDrawer.tsx:133 #: src/pages/Index/Settings/AdminCenter/PluginManagementPanel.tsx:55 -#: src/pages/Index/Settings/SystemSettings.tsx:331 -#: src/pages/Index/Settings/UserSettings.tsx:128 +#: src/pages/Index/Settings/SystemSettings.tsx:337 +#: src/pages/Index/Settings/UserSettings.tsx:129 msgid "Plugin Settings" msgstr "" @@ -2911,7 +2948,7 @@ msgstr "" #~ msgid "Unknown model: {model}" #~ msgstr "Unknown model: {model}" -#: src/components/render/Instance.tsx:249 +#: src/components/render/Instance.tsx:247 msgid "Unknown model: {model_name}" msgstr "" @@ -2939,10 +2976,10 @@ msgstr "" #: src/components/render/Part.tsx:28 #: src/components/render/Plugin.tsx:17 #: src/components/render/User.tsx:37 -#: src/pages/company/CompanyDetail.tsx:323 -#: src/pages/company/SupplierPartDetail.tsx:373 +#: src/pages/company/CompanyDetail.tsx:328 +#: src/pages/company/SupplierPartDetail.tsx:378 #: src/pages/core/UserDetail.tsx:211 -#: src/pages/part/PartDetail.tsx:1027 +#: src/pages/part/PartDetail.tsx:1048 #: src/tables/ColumnRenderers.tsx:410 msgid "Inactive" msgstr "Tidak Aktif" @@ -2962,11 +2999,11 @@ msgstr "Tidak ada persediaan" #: src/components/render/Part.tsx:47 #: src/components/wizards/OrderPartsWizard.tsx:135 -#: src/pages/company/SupplierPartDetail.tsx:197 -#: src/pages/company/SupplierPartDetail.tsx:394 -#: src/pages/part/PartDetail.tsx:1015 +#: src/pages/company/SupplierPartDetail.tsx:198 +#: src/pages/company/SupplierPartDetail.tsx:399 +#: src/pages/part/PartDetail.tsx:1030 #: src/tables/bom/BomTable.tsx:444 -#: src/tables/build/BuildLineTable.tsx:222 +#: src/tables/build/BuildLineTable.tsx:223 #: src/tables/part/PartTable.tsx:108 msgid "On Order" msgstr "" @@ -2974,9 +3011,9 @@ msgstr "" #: src/components/render/Part.tsx:55 #: src/components/wizards/OrderPartsWizard.tsx:141 #: src/pages/part/PartDetail.tsx:587 -#: src/pages/part/PartDetail.tsx:1021 +#: src/pages/part/PartDetail.tsx:1036 #: src/pages/stock/StockDetail.tsx:925 -#: src/tables/part/PartTestResultTable.tsx:297 +#: src/tables/part/PartTestResultTable.tsx:305 #: src/tables/stock/StockItemTable.tsx:359 msgid "In Production" msgstr "" @@ -2987,7 +3024,7 @@ msgid "Details" msgstr "Rincian" #: src/components/render/Part.tsx:112 -#: src/components/wizards/ImportPartWizard.tsx:806 +#: src/components/wizards/ImportPartWizard.tsx:807 #: src/pages/part/PartDetail.tsx:487 #: src/tables/ColumnRenderers.tsx:233 #: src/tables/ColumnRenderers.tsx:242 @@ -3000,16 +3037,16 @@ msgstr "" #: src/components/render/Stock.tsx:114 #: src/components/render/Stock.tsx:132 #: src/forms/BuildForms.tsx:795 -#: src/forms/PurchaseOrderForms.tsx:595 +#: src/forms/PurchaseOrderForms.tsx:647 #: src/forms/StockForms.tsx:792 #: src/forms/StockForms.tsx:839 -#: src/forms/StockForms.tsx:885 -#: src/forms/StockForms.tsx:924 -#: src/forms/StockForms.tsx:960 -#: src/forms/StockForms.tsx:1003 -#: src/forms/StockForms.tsx:1047 -#: src/forms/StockForms.tsx:1095 -#: src/forms/StockForms.tsx:1139 +#: src/forms/StockForms.tsx:892 +#: src/forms/StockForms.tsx:938 +#: src/forms/StockForms.tsx:976 +#: src/forms/StockForms.tsx:1019 +#: src/forms/StockForms.tsx:1063 +#: src/forms/StockForms.tsx:1111 +#: src/forms/StockForms.tsx:1155 #: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:88 #: src/pages/core/UserDetail.tsx:158 #: src/pages/stock/StockDetail.tsx:298 @@ -3023,7 +3060,7 @@ msgstr "Lokasi" #: src/components/render/Stock.tsx:99 #: src/pages/stock/StockDetail.tsx:198 #: src/pages/stock/StockDetail.tsx:930 -#: src/tables/build/BuildAllocatedStockTable.tsx:121 +#: src/tables/build/BuildAllocatedStockTable.tsx:118 #: src/tables/build/BuildOutputTable.tsx:107 #: src/tables/sales/SalesOrderAllocationTable.tsx:142 msgid "Serial Number" @@ -3034,9 +3071,9 @@ msgstr "Nomor Seri" #: src/forms/BuildForms.tsx:240 #: src/forms/BuildForms.tsx:634 #: src/forms/BuildForms.tsx:797 -#: src/forms/PurchaseOrderForms.tsx:801 +#: src/forms/PurchaseOrderForms.tsx:853 #: src/forms/ReturnOrderForms.tsx:243 -#: src/forms/SalesOrderForms.tsx:308 +#: src/forms/SalesOrderForms.tsx:387 #: src/forms/StockForms.tsx:841 #: src/pages/part/PartStockHistoryDetail.tsx:56 #: src/pages/part/PartStockHistoryDetail.tsx:210 @@ -3046,9 +3083,9 @@ msgstr "Nomor Seri" #: src/pages/part/pricing/PriceBreakPanel.tsx:172 #: src/pages/stock/StockDetail.tsx:258 #: src/pages/stock/StockDetail.tsx:936 -#: src/tables/build/BuildLineTable.tsx:86 +#: src/tables/build/BuildLineTable.tsx:83 #: src/tables/part/PartPurchaseOrdersTable.tsx:94 -#: src/tables/part/PartTestResultTable.tsx:269 +#: src/tables/part/PartTestResultTable.tsx:277 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:175 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:206 #: src/tables/purchasing/SupplierPriceBreakTable.tsx:69 @@ -3063,14 +3100,14 @@ msgstr "Jumlah" #: src/forms/BuildForms.tsx:474 #: src/forms/StockForms.tsx:793 #: src/forms/StockForms.tsx:840 -#: src/forms/StockForms.tsx:886 -#: src/forms/StockForms.tsx:925 -#: src/forms/StockForms.tsx:961 -#: src/forms/StockForms.tsx:1004 -#: src/forms/StockForms.tsx:1048 -#: src/forms/StockForms.tsx:1096 -#: src/forms/StockForms.tsx:1140 -#: src/tables/build/BuildLineTable.tsx:96 +#: src/forms/StockForms.tsx:893 +#: src/forms/StockForms.tsx:939 +#: src/forms/StockForms.tsx:977 +#: src/forms/StockForms.tsx:1020 +#: src/forms/StockForms.tsx:1064 +#: src/forms/StockForms.tsx:1112 +#: src/forms/StockForms.tsx:1156 +#: src/tables/build/BuildLineTable.tsx:93 msgid "Batch" msgstr "" @@ -3306,10 +3343,6 @@ msgstr "" #~ msgid "Part category updated" #~ msgstr "Part category updated" -#: src/components/tables/part/PartParameterTable.tsx:41 -#~ msgid "Parameter" -#~ msgstr "Parameter" - #: src/components/tables/part/PartParameterTable.tsx:114 #~ msgid "Part parameter updated" #~ msgstr "Part parameter updated" @@ -3571,15 +3604,16 @@ msgid "Already Imported" msgstr "" #: src/components/wizards/ImportPartWizard.tsx:205 -#: src/pages/company/CompanyDetail.tsx:136 +#: src/pages/company/CompanyDetail.tsx:137 #: src/pages/company/SupplierDetail.tsx:8 -#: src/pages/company/SupplierPartDetail.tsx:130 -#: src/pages/company/SupplierPartDetail.tsx:235 -#: src/pages/company/SupplierPartDetail.tsx:364 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:156 +#: src/pages/company/SupplierPartDetail.tsx:131 +#: src/pages/company/SupplierPartDetail.tsx:236 +#: src/pages/company/SupplierPartDetail.tsx:369 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:157 #: src/tables/Filter.tsx:360 #: src/tables/company/CompanyTable.tsx:96 #: src/tables/part/PartPurchaseOrdersTable.tsx:43 +#: src/tables/purchasing/PurchaseOrderParametricTable.tsx:34 #: src/tables/purchasing/PurchaseOrderTable.tsx:109 #: src/tables/purchasing/SupplierPriceBreakTable.tsx:40 msgid "Supplier" @@ -3648,7 +3682,7 @@ msgid "Next" msgstr "" #: src/components/wizards/ImportPartWizard.tsx:540 -#: src/pages/part/PartDetail.tsx:1046 +#: src/pages/part/PartDetail.tsx:1067 #: src/tables/part/PartTable.tsx:408 msgid "Edit Part" msgstr "" @@ -3669,28 +3703,28 @@ msgstr "" msgid "Import" msgstr "" -#: src/components/wizards/ImportPartWizard.tsx:691 +#: src/components/wizards/ImportPartWizard.tsx:692 msgid "Parameters created successfully!" msgstr "" -#: src/components/wizards/ImportPartWizard.tsx:719 +#: src/components/wizards/ImportPartWizard.tsx:720 msgid "Failed to create parameters, please fix the errors and try again" msgstr "" #. placeholder {0}: supplierPart?.supplier -#: src/components/wizards/ImportPartWizard.tsx:739 +#: src/components/wizards/ImportPartWizard.tsx:740 msgid "Part imported successfully from supplier {0}." msgstr "" -#: src/components/wizards/ImportPartWizard.tsx:752 +#: src/components/wizards/ImportPartWizard.tsx:753 msgid "Open Part" msgstr "" -#: src/components/wizards/ImportPartWizard.tsx:759 +#: src/components/wizards/ImportPartWizard.tsx:760 msgid "Open Supplier Part" msgstr "" -#: src/components/wizards/ImportPartWizard.tsx:766 +#: src/components/wizards/ImportPartWizard.tsx:767 msgid "Open Manufacturer Part" msgstr "" @@ -3699,25 +3733,19 @@ msgstr "" #~ msgid "Import Part" #~ msgstr "Import Part" -#: src/components/wizards/ImportPartWizard.tsx:802 +#: src/components/wizards/ImportPartWizard.tsx:803 msgid "Import Supplier Part" msgstr "" -#: src/components/wizards/ImportPartWizard.tsx:804 +#: src/components/wizards/ImportPartWizard.tsx:805 msgid "Search Supplier Part" msgstr "" -#: src/components/wizards/ImportPartWizard.tsx:806 -#: src/pages/company/ManufacturerPartDetail.tsx:166 -#: src/pages/part/PartDetail.tsx:793 -msgid "Parameters" -msgstr "" - -#: src/components/wizards/ImportPartWizard.tsx:806 +#: src/components/wizards/ImportPartWizard.tsx:807 msgid "Confirm import" msgstr "" -#: src/components/wizards/ImportPartWizard.tsx:808 +#: src/components/wizards/ImportPartWizard.tsx:809 msgid "Done" msgstr "" @@ -3738,24 +3766,24 @@ msgid "Sales Requirements" msgstr "" #: src/components/wizards/OrderPartsWizard.tsx:129 -#: src/forms/StockForms.tsx:887 -#: src/forms/StockForms.tsx:926 -#: src/forms/StockForms.tsx:962 -#: src/forms/StockForms.tsx:1005 -#: src/forms/StockForms.tsx:1049 -#: src/forms/StockForms.tsx:1097 -#: src/forms/StockForms.tsx:1141 -#: src/pages/company/SupplierPartDetail.tsx:190 -#: src/pages/company/SupplierPartDetail.tsx:378 +#: src/forms/StockForms.tsx:894 +#: src/forms/StockForms.tsx:940 +#: src/forms/StockForms.tsx:978 +#: src/forms/StockForms.tsx:1021 +#: src/forms/StockForms.tsx:1065 +#: src/forms/StockForms.tsx:1113 +#: src/forms/StockForms.tsx:1157 +#: src/pages/company/SupplierPartDetail.tsx:191 +#: src/pages/company/SupplierPartDetail.tsx:383 #: src/pages/part/PartDetail.tsx:534 -#: src/pages/part/PartDetail.tsx:984 +#: src/pages/part/PartDetail.tsx:999 #: src/tables/Filter.tsx:92 #: src/tables/purchasing/SupplierPartTable.tsx:230 msgid "In Stock" msgstr "" #: src/components/wizards/OrderPartsWizard.tsx:146 -#: src/tables/build/BuildLineTable.tsx:404 +#: src/tables/build/BuildLineTable.tsx:405 msgid "Required Quantity" msgstr "" @@ -3847,7 +3875,7 @@ msgid "Please correct the errors in the selected parts" msgstr "" #: src/components/wizards/OrderPartsWizard.tsx:587 -#: src/tables/build/BuildLineTable.tsx:815 +#: src/tables/build/BuildLineTable.tsx:822 #: src/tables/part/PartTable.tsx:522 #: src/tables/sales/SalesOrderLineItemTable.tsx:370 msgid "Order Parts" @@ -4349,9 +4377,9 @@ msgstr "" #: src/forms/BuildForms.tsx:333 #: src/forms/BuildForms.tsx:408 #: src/forms/BuildForms.tsx:685 -#: src/tables/build/BuildAllocatedStockTable.tsx:150 +#: src/tables/build/BuildAllocatedStockTable.tsx:147 #: src/tables/build/BuildOutputTable.tsx:582 -#: src/tables/part/PartTestResultTable.tsx:272 +#: src/tables/part/PartTestResultTable.tsx:280 msgid "Build Output" msgstr "" @@ -4362,22 +4390,22 @@ msgstr "" #: src/forms/BuildForms.tsx:336 #: src/forms/BuildForms.tsx:411 #: src/forms/BuildForms.tsx:475 -#: src/forms/PurchaseOrderForms.tsx:717 +#: src/forms/PurchaseOrderForms.tsx:769 #: src/forms/ReturnOrderForms.tsx:197 #: src/forms/ReturnOrderForms.tsx:244 #: src/forms/StockForms.tsx:712 #: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:87 -#: src/pages/build/BuildDetail.tsx:222 +#: src/pages/build/BuildDetail.tsx:223 #: src/pages/core/UserDetail.tsx:151 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:168 -#: src/pages/sales/ReturnOrderDetail.tsx:135 -#: src/pages/sales/SalesOrderDetail.tsx:125 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:169 +#: src/pages/sales/ReturnOrderDetail.tsx:136 +#: src/pages/sales/SalesOrderDetail.tsx:126 #: src/pages/stock/StockDetail.tsx:170 #: src/tables/Filter.tsx:274 #: src/tables/build/BuildOutputTable.tsx:404 #: src/tables/machine/MachineListTable.tsx:387 #: src/tables/part/PartPurchaseOrdersTable.tsx:38 -#: src/tables/part/PartTestResultTable.tsx:309 +#: src/tables/part/PartTestResultTable.tsx:317 #: src/tables/sales/ReturnOrderLineItemTable.tsx:138 #: src/tables/sales/ReturnOrderLineItemTable.tsx:176 #: src/tables/settings/CustomStateTable.tsx:79 @@ -4443,18 +4471,19 @@ msgid "Build outputs have been cancelled" msgstr "" #: src/forms/BuildForms.tsx:631 -#: src/pages/build/BuildDetail.tsx:207 -#: src/pages/company/ManufacturerPartDetail.tsx:85 -#: src/pages/company/SupplierPartDetail.tsx:96 +#: src/pages/build/BuildDetail.tsx:208 +#: src/pages/company/ManufacturerPartDetail.tsx:84 +#: src/pages/company/SupplierPartDetail.tsx:97 #: src/pages/part/PartDetail.tsx:453 #: src/pages/stock/StockDetail.tsx:153 #: src/tables/bom/BomTable.tsx:134 #: src/tables/bom/UsedInTable.tsx:40 -#: src/tables/build/BuildAllocatedStockTable.tsx:108 -#: src/tables/build/BuildLineTable.tsx:336 +#: src/tables/build/BuildAllocatedStockTable.tsx:105 +#: src/tables/build/BuildLineTable.tsx:337 #: src/tables/build/BuildOrderTable.tsx:79 #: src/tables/part/PartSalesAllocationsTable.tsx:61 #: src/tables/part/RelatedPartTable.tsx:73 +#: src/tables/purchasing/ManufacturerPartParametricTable.tsx:21 #: src/tables/purchasing/ManufacturerPartTable.tsx:69 #: src/tables/purchasing/SupplierPartTable.tsx:70 #: src/tables/sales/SalesOrderAllocationTable.tsx:135 @@ -4466,47 +4495,47 @@ msgstr "" #: src/forms/BuildForms.tsx:632 #: src/forms/BuildForms.tsx:796 #: src/forms/BuildForms.tsx:897 -#: src/forms/SalesOrderForms.tsx:306 -#: src/tables/build/BuildAllocatedStockTable.tsx:139 -#: src/tables/build/BuildLineTable.tsx:182 +#: src/forms/SalesOrderForms.tsx:385 +#: src/tables/build/BuildAllocatedStockTable.tsx:136 +#: src/tables/build/BuildLineTable.tsx:183 #: src/tables/sales/SalesOrderLineItemTable.tsx:342 #: src/tables/stock/StockItemTable.tsx:338 msgid "Allocated" msgstr "" #: src/forms/BuildForms.tsx:667 -#: src/forms/SalesOrderForms.tsx:295 -#: src/pages/build/BuildDetail.tsx:108 -#: src/pages/build/BuildDetail.tsx:326 +#: src/forms/SalesOrderForms.tsx:374 +#: src/pages/build/BuildDetail.tsx:109 +#: src/pages/build/BuildDetail.tsx:327 msgid "Source Location" msgstr "" #: src/forms/BuildForms.tsx:668 -#: src/forms/SalesOrderForms.tsx:296 +#: src/forms/SalesOrderForms.tsx:375 msgid "Select the source location for the stock allocation" msgstr "" #: src/forms/BuildForms.tsx:700 -#: src/forms/SalesOrderForms.tsx:336 -#: src/tables/build/BuildLineTable.tsx:574 -#: src/tables/build/BuildLineTable.tsx:731 -#: src/tables/build/BuildLineTable.tsx:830 +#: src/forms/SalesOrderForms.tsx:415 +#: src/tables/build/BuildLineTable.tsx:575 +#: src/tables/build/BuildLineTable.tsx:738 +#: src/tables/build/BuildLineTable.tsx:837 #: src/tables/sales/SalesOrderLineItemTable.tsx:380 #: src/tables/sales/SalesOrderLineItemTable.tsx:406 msgid "Allocate Stock" msgstr "" #: src/forms/BuildForms.tsx:703 -#: src/forms/SalesOrderForms.tsx:341 +#: src/forms/SalesOrderForms.tsx:420 msgid "Stock items allocated" msgstr "" #: src/forms/BuildForms.tsx:816 #: src/forms/BuildForms.tsx:917 -#: src/tables/build/BuildAllocatedStockTable.tsx:240 -#: src/tables/build/BuildAllocatedStockTable.tsx:272 -#: src/tables/build/BuildLineTable.tsx:741 -#: src/tables/build/BuildLineTable.tsx:864 +#: src/tables/build/BuildAllocatedStockTable.tsx:243 +#: src/tables/build/BuildAllocatedStockTable.tsx:279 +#: src/tables/build/BuildLineTable.tsx:748 +#: src/tables/build/BuildLineTable.tsx:871 msgid "Consume Stock" msgstr "" @@ -4521,21 +4550,21 @@ msgstr "" #~ msgstr "Stock items consumed" #: src/forms/BuildForms.tsx:853 -#: src/tables/build/BuildLineTable.tsx:514 +#: src/tables/build/BuildLineTable.tsx:515 #: src/tables/part/PartBuildAllocationsTable.tsx:101 msgid "Fully consumed" msgstr "" #: src/forms/BuildForms.tsx:898 -#: src/tables/build/BuildLineTable.tsx:187 +#: src/tables/build/BuildLineTable.tsx:188 #: src/tables/stock/StockItemTable.tsx:367 msgid "Consumed" msgstr "" -#: src/forms/CommonForms.tsx:88 -#: src/forms/PurchaseOrderForms.tsx:125 +#: src/forms/CommonForms.tsx:92 +#: src/forms/PurchaseOrderForms.tsx:176 #: src/forms/ReturnOrderForms.tsx:138 -#: src/forms/SalesOrderForms.tsx:164 +#: src/forms/SalesOrderForms.tsx:185 msgid "Select project code for this line item" msgstr "" @@ -4543,16 +4572,16 @@ msgstr "" #~ msgid "Company updated" #~ msgstr "Company updated" -#: src/forms/PartForms.tsx:85 -#: src/forms/PartForms.tsx:207 -#: src/pages/part/CategoryDetail.tsx:124 +#: src/forms/PartForms.tsx:99 +#: src/forms/PartForms.tsx:228 +#: src/pages/part/CategoryDetail.tsx:127 #: src/pages/part/PartDetail.tsx:668 #: src/tables/part/PartCategoryTable.tsx:94 #: src/tables/part/PartTable.tsx:325 msgid "Subscribed" msgstr "" -#: src/forms/PartForms.tsx:86 +#: src/forms/PartForms.tsx:100 msgid "Subscribe to notifications for this part" msgstr "" @@ -4564,40 +4593,24 @@ msgstr "" #~ msgid "Part updated" #~ msgstr "Part updated" -#: src/forms/PartForms.tsx:193 +#: src/forms/PartForms.tsx:214 msgid "Parent part category" msgstr "" -#: src/forms/PartForms.tsx:208 +#: src/forms/PartForms.tsx:229 msgid "Subscribe to notifications for this category" msgstr "" -#: src/forms/PurchaseOrderForms.tsx:388 -msgid "Assign Batch Code and Serial Numbers" -msgstr "" - -#: src/forms/PurchaseOrderForms.tsx:390 -msgid "Assign Batch Code" -msgstr "" - -#: src/forms/PurchaseOrderForms.tsx:410 -msgid "Choose Location" -msgstr "" - -#: src/forms/PurchaseOrderForms.tsx:418 -msgid "Item Destination selected" -msgstr "" - #: src/forms/PurchaseOrderForms.tsx:421 #~ msgid "Assign Batch Code{0}" #~ msgstr "Assign Batch Code{0}" -#: src/forms/PurchaseOrderForms.tsx:428 -msgid "Part category default location selected" +#: src/forms/PurchaseOrderForms.tsx:440 +msgid "Assign Batch Code and Serial Numbers" msgstr "" -#: src/forms/PurchaseOrderForms.tsx:438 -msgid "Received stock location selected" +#: src/forms/PurchaseOrderForms.tsx:442 +msgid "Assign Batch Code" msgstr "" #: src/forms/PurchaseOrderForms.tsx:444 @@ -4605,115 +4618,131 @@ msgstr "" #~ msgid "Remove item from list" #~ msgstr "Remove item from list" -#: src/forms/PurchaseOrderForms.tsx:446 +#: src/forms/PurchaseOrderForms.tsx:462 +msgid "Choose Location" +msgstr "" + +#: src/forms/PurchaseOrderForms.tsx:470 +msgid "Item Destination selected" +msgstr "" + +#: src/forms/PurchaseOrderForms.tsx:480 +msgid "Part category default location selected" +msgstr "" + +#: src/forms/PurchaseOrderForms.tsx:490 +msgid "Received stock location selected" +msgstr "" + +#: src/forms/PurchaseOrderForms.tsx:498 msgid "Default location selected" msgstr "" -#: src/forms/PurchaseOrderForms.tsx:507 +#: src/forms/PurchaseOrderForms.tsx:559 msgid "Set Location" msgstr "Atur Lokasi" -#: src/forms/PurchaseOrderForms.tsx:524 -msgid "Set Expiry Date" -msgstr "" - -#: src/forms/PurchaseOrderForms.tsx:532 -#: src/forms/StockForms.tsx:693 -msgid "Adjust Packaging" -msgstr "" - -#: src/forms/PurchaseOrderForms.tsx:540 -#: src/forms/StockForms.tsx:684 -#: src/hooks/UseStockAdjustActions.tsx:148 -msgid "Change Status" -msgstr "" - -#: src/forms/PurchaseOrderForms.tsx:546 -msgid "Add Note" -msgstr "Tambah Catatan" - #: src/forms/PurchaseOrderForms.tsx:566 #~ msgid "Serial numbers" #~ msgstr "Serial numbers" +#: src/forms/PurchaseOrderForms.tsx:576 +msgid "Set Expiry Date" +msgstr "" + #: src/forms/PurchaseOrderForms.tsx:582 #~ msgid "Store at line item destination" #~ msgstr "Store at line item destination" -#: src/forms/PurchaseOrderForms.tsx:610 -msgid "Store at default location" +#: src/forms/PurchaseOrderForms.tsx:584 +#: src/forms/StockForms.tsx:693 +msgid "Adjust Packaging" msgstr "" -#: src/forms/PurchaseOrderForms.tsx:625 -msgid "Store at line item destination " +#: src/forms/PurchaseOrderForms.tsx:592 +#: src/forms/StockForms.tsx:684 +#: src/hooks/UseStockAdjustActions.tsx:148 +msgid "Change Status" msgstr "" -#: src/forms/PurchaseOrderForms.tsx:637 -msgid "Store with already received stock" -msgstr "" +#: src/forms/PurchaseOrderForms.tsx:598 +msgid "Add Note" +msgstr "Tambah Catatan" #: src/forms/PurchaseOrderForms.tsx:658 #~ msgid "Receive line items" #~ msgstr "Receive line items" -#: src/forms/PurchaseOrderForms.tsx:661 -#: src/pages/build/BuildDetail.tsx:340 +#: src/forms/PurchaseOrderForms.tsx:662 +msgid "Store at default location" +msgstr "" + +#: src/forms/PurchaseOrderForms.tsx:677 +msgid "Store at line item destination " +msgstr "" + +#: src/forms/PurchaseOrderForms.tsx:689 +msgid "Store with already received stock" +msgstr "" + +#: src/forms/PurchaseOrderForms.tsx:713 +#: src/pages/build/BuildDetail.tsx:341 #: src/pages/stock/StockDetail.tsx:280 #: src/pages/stock/StockDetail.tsx:952 #: src/tables/Filter.tsx:83 -#: src/tables/build/BuildAllocatedStockTable.tsx:128 +#: src/tables/build/BuildAllocatedStockTable.tsx:125 #: src/tables/build/BuildOutputTable.tsx:112 -#: src/tables/part/PartTestResultTable.tsx:260 -#: src/tables/part/PartTestResultTable.tsx:281 +#: src/tables/part/PartTestResultTable.tsx:268 +#: src/tables/part/PartTestResultTable.tsx:289 #: src/tables/sales/SalesOrderAllocationTable.tsx:149 msgid "Batch Code" msgstr "" -#: src/forms/PurchaseOrderForms.tsx:662 +#: src/forms/PurchaseOrderForms.tsx:714 msgid "Enter batch code for received items" msgstr "" -#: src/forms/PurchaseOrderForms.tsx:675 +#: src/forms/PurchaseOrderForms.tsx:727 #: src/forms/StockForms.tsx:218 msgid "Serial Numbers" msgstr "Nomor Seri" -#: src/forms/PurchaseOrderForms.tsx:676 +#: src/forms/PurchaseOrderForms.tsx:728 msgid "Enter serial numbers for received items" msgstr "" -#: src/forms/PurchaseOrderForms.tsx:690 +#: src/forms/PurchaseOrderForms.tsx:742 #: src/pages/stock/StockDetail.tsx:382 #: src/tables/stock/StockItemTable.tsx:294 msgid "Expiry Date" msgstr "" -#: src/forms/PurchaseOrderForms.tsx:691 +#: src/forms/PurchaseOrderForms.tsx:743 msgid "Enter an expiry date for received items" msgstr "" -#: src/forms/PurchaseOrderForms.tsx:703 +#: src/forms/PurchaseOrderForms.tsx:755 #: src/forms/StockForms.tsx:728 -#: src/pages/company/SupplierPartDetail.tsx:172 -#: src/pages/company/SupplierPartDetail.tsx:236 +#: src/pages/company/SupplierPartDetail.tsx:173 +#: src/pages/company/SupplierPartDetail.tsx:237 #: src/pages/stock/StockDetail.tsx:419 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:227 msgid "Packaging" msgstr "" -#: src/forms/PurchaseOrderForms.tsx:727 -#: src/pages/company/SupplierPartDetail.tsx:120 +#: src/forms/PurchaseOrderForms.tsx:779 +#: src/pages/company/SupplierPartDetail.tsx:121 #: src/tables/ColumnRenderers.tsx:332 msgid "Note" msgstr "Catatan" -#: src/forms/PurchaseOrderForms.tsx:799 -#: src/pages/company/SupplierPartDetail.tsx:138 +#: src/forms/PurchaseOrderForms.tsx:851 +#: src/pages/company/SupplierPartDetail.tsx:139 #: src/tables/purchasing/SupplierPriceBreakTable.tsx:49 msgid "SKU" msgstr "" -#: src/forms/PurchaseOrderForms.tsx:800 +#: src/forms/PurchaseOrderForms.tsx:852 #: src/tables/part/PartPurchaseOrdersTable.tsx:127 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:213 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:283 @@ -4721,11 +4750,11 @@ msgstr "" msgid "Received" msgstr "Telah diterima" -#: src/forms/PurchaseOrderForms.tsx:817 +#: src/forms/PurchaseOrderForms.tsx:869 msgid "Receive Line Items" msgstr "" -#: src/forms/PurchaseOrderForms.tsx:823 +#: src/forms/PurchaseOrderForms.tsx:875 msgid "Items received" msgstr "" @@ -4737,7 +4766,35 @@ msgstr "" msgid "Item received into stock" msgstr "" -#: src/forms/SalesOrderForms.tsx:401 +#: src/forms/SalesOrderForms.tsx:208 +#: src/forms/SalesOrderForms.tsx:210 +#: src/tables/sales/SalesOrderShipmentTable.tsx:215 +msgid "Check Shipment" +msgstr "" + +#: src/forms/SalesOrderForms.tsx:211 +msgid "Marking the shipment as checked indicates that you have verified that all items included in this shipment are correct" +msgstr "" + +#: src/forms/SalesOrderForms.tsx:221 +msgid "Shipment marked as checked" +msgstr "" + +#: src/forms/SalesOrderForms.tsx:236 +#: src/forms/SalesOrderForms.tsx:238 +#: src/tables/sales/SalesOrderShipmentTable.tsx:228 +msgid "Uncheck Shipment" +msgstr "" + +#: src/forms/SalesOrderForms.tsx:239 +msgid "Marking the shipment as unchecked indicates that the shipment requires further verification" +msgstr "" + +#: src/forms/SalesOrderForms.tsx:249 +msgid "Shipment marked as unchecked" +msgstr "" + +#: src/forms/SalesOrderForms.tsx:480 msgid "Leave blank to use the order address" msgstr "" @@ -4792,150 +4849,150 @@ msgstr "" msgid "Return" msgstr "" -#: src/forms/StockForms.tsx:963 +#: src/forms/StockForms.tsx:979 #: src/pages/Index/Scan.tsx:182 msgid "Count" msgstr "" -#: src/forms/StockForms.tsx:1246 +#: src/forms/StockForms.tsx:1262 #: src/hooks/UseStockAdjustActions.tsx:108 msgid "Add Stock" msgstr "" -#: src/forms/StockForms.tsx:1247 +#: src/forms/StockForms.tsx:1263 msgid "Stock added" msgstr "" -#: src/forms/StockForms.tsx:1250 +#: src/forms/StockForms.tsx:1266 msgid "Increase the quantity of the selected stock items by a given amount." msgstr "" -#: src/forms/StockForms.tsx:1261 +#: src/forms/StockForms.tsx:1277 #: src/hooks/UseStockAdjustActions.tsx:118 msgid "Remove Stock" msgstr "" -#: src/forms/StockForms.tsx:1262 +#: src/forms/StockForms.tsx:1278 msgid "Stock removed" msgstr "" -#: src/forms/StockForms.tsx:1265 +#: src/forms/StockForms.tsx:1281 msgid "Decrease the quantity of the selected stock items by a given amount." msgstr "" -#: src/forms/StockForms.tsx:1276 +#: src/forms/StockForms.tsx:1292 #: src/hooks/UseStockAdjustActions.tsx:128 msgid "Transfer Stock" msgstr "" -#: src/forms/StockForms.tsx:1277 +#: src/forms/StockForms.tsx:1293 msgid "Stock transferred" msgstr "" -#: src/forms/StockForms.tsx:1280 +#: src/forms/StockForms.tsx:1296 msgid "Transfer selected items to the specified location." msgstr "" -#: src/forms/StockForms.tsx:1291 +#: src/forms/StockForms.tsx:1307 #: src/hooks/UseStockAdjustActions.tsx:168 msgid "Return Stock" msgstr "" -#: src/forms/StockForms.tsx:1292 +#: src/forms/StockForms.tsx:1308 msgid "Stock returned" msgstr "" -#: src/forms/StockForms.tsx:1295 +#: src/forms/StockForms.tsx:1311 msgid "Return selected items into stock, to the specified location." msgstr "" -#: src/forms/StockForms.tsx:1306 +#: src/forms/StockForms.tsx:1322 #: src/hooks/UseStockAdjustActions.tsx:98 msgid "Count Stock" msgstr "" -#: src/forms/StockForms.tsx:1307 +#: src/forms/StockForms.tsx:1323 msgid "Stock counted" msgstr "" -#: src/forms/StockForms.tsx:1310 +#: src/forms/StockForms.tsx:1326 msgid "Count the selected stock items, and adjust the quantity accordingly." msgstr "" -#: src/forms/StockForms.tsx:1321 +#: src/forms/StockForms.tsx:1337 msgid "Change Stock Status" msgstr "" -#: src/forms/StockForms.tsx:1322 +#: src/forms/StockForms.tsx:1338 msgid "Stock status changed" msgstr "" -#: src/forms/StockForms.tsx:1325 +#: src/forms/StockForms.tsx:1341 msgid "Change the status of the selected stock items." msgstr "" -#: src/forms/StockForms.tsx:1336 +#: src/forms/StockForms.tsx:1352 #: src/hooks/UseStockAdjustActions.tsx:138 msgid "Merge Stock" msgstr "" -#: src/forms/StockForms.tsx:1337 +#: src/forms/StockForms.tsx:1353 msgid "Stock merged" msgstr "" -#: src/forms/StockForms.tsx:1339 +#: src/forms/StockForms.tsx:1355 msgid "Merge Stock Items" msgstr "" -#: src/forms/StockForms.tsx:1341 +#: src/forms/StockForms.tsx:1357 msgid "Merge operation cannot be reversed" msgstr "" -#: src/forms/StockForms.tsx:1342 +#: src/forms/StockForms.tsx:1358 msgid "Tracking information may be lost when merging items" msgstr "" -#: src/forms/StockForms.tsx:1343 +#: src/forms/StockForms.tsx:1359 msgid "Supplier information may be lost when merging items" msgstr "" -#: src/forms/StockForms.tsx:1361 +#: src/forms/StockForms.tsx:1377 msgid "Assign Stock to Customer" msgstr "" -#: src/forms/StockForms.tsx:1362 +#: src/forms/StockForms.tsx:1378 msgid "Stock assigned to customer" msgstr "" -#: src/forms/StockForms.tsx:1372 +#: src/forms/StockForms.tsx:1388 msgid "Delete Stock Items" msgstr "" -#: src/forms/StockForms.tsx:1373 +#: src/forms/StockForms.tsx:1389 msgid "Stock deleted" msgstr "" -#: src/forms/StockForms.tsx:1376 +#: src/forms/StockForms.tsx:1392 msgid "This operation will permanently delete the selected stock items." msgstr "" -#: src/forms/StockForms.tsx:1385 +#: src/forms/StockForms.tsx:1401 msgid "Parent stock location" msgstr "" -#: src/forms/StockForms.tsx:1512 +#: src/forms/StockForms.tsx:1528 msgid "Find Serial Number" msgstr "" -#: src/forms/StockForms.tsx:1523 +#: src/forms/StockForms.tsx:1539 msgid "No matching items" msgstr "" -#: src/forms/StockForms.tsx:1529 +#: src/forms/StockForms.tsx:1545 msgid "Multiple matching items" msgstr "" -#: src/forms/StockForms.tsx:1538 +#: src/forms/StockForms.tsx:1554 msgid "Invalid response from server" msgstr "" @@ -4953,7 +5010,6 @@ msgstr "" #: src/tables/FilterSelectDrawer.tsx:137 #: src/tables/FilterSelectDrawer.tsx:149 #: src/tables/part/PartTestResultTable.tsx:206 -#: src/tables/purchasing/ManufacturerPartParameterTable.tsx:42 #: src/tables/stock/StockItemTestResultTable.tsx:207 msgid "Value" msgstr "" @@ -5244,7 +5300,7 @@ msgid "Delete selected stock items" msgstr "" #: src/hooks/UseStockAdjustActions.tsx:205 -#: src/pages/part/PartDetail.tsx:1137 +#: src/pages/part/PartDetail.tsx:1158 msgid "Stock Actions" msgstr "" @@ -5932,6 +5988,9 @@ msgstr "" #: src/pages/Index/Settings/AccountSettings/MFASettings.tsx:310 #: src/pages/Index/Settings/AccountSettings/MFASettings.tsx:401 +#: src/tables/build/BuildAllocatedStockTable.tsx:181 +#: src/tables/build/BuildLineTable.tsx:668 +#: src/tables/sales/SalesOrderAllocationTable.tsx:220 msgid "Confirm Removal" msgstr "" @@ -6394,30 +6453,34 @@ msgid "Email Messages" msgstr "" #: src/pages/Index/Settings/AdminCenter/HomePanel.tsx:22 -msgid "Active Alerts" -msgstr "" +#~ msgid "Active Alerts" +#~ msgstr "Active Alerts" #: src/pages/Index/Settings/AdminCenter/HomePanel.tsx:27 -msgid "Inactive Alerts" +#~ msgid "Inactive Alerts" +#~ msgstr "Inactive Alerts" + +#: src/pages/Index/Settings/AdminCenter/HomePanel.tsx:36 +msgid "System Status" msgstr "" -#: src/pages/Index/Settings/AdminCenter/HomePanel.tsx:38 +#: src/pages/Index/Settings/AdminCenter/HomePanel.tsx:47 msgid "Admin Center Information" msgstr "" -#: src/pages/Index/Settings/AdminCenter/HomePanel.tsx:44 +#: src/pages/Index/Settings/AdminCenter/HomePanel.tsx:53 msgid "The home panel (and the whole Admin Center) is a new feature starting with the new UI and was previously (before 1.0) not available." msgstr "" -#: src/pages/Index/Settings/AdminCenter/HomePanel.tsx:51 +#: src/pages/Index/Settings/AdminCenter/HomePanel.tsx:60 msgid "The admin center provides a centralized location for all administration functionality and is meant to replace all interaction with the (django) backend admin interface." msgstr "" -#: src/pages/Index/Settings/AdminCenter/HomePanel.tsx:58 +#: src/pages/Index/Settings/AdminCenter/HomePanel.tsx:67 msgid "Please open feature requests (after checking the tracker) for any existing backend admin functionality you are missing in this UI. The backend admin interface should be used carefully and seldom." msgstr "" -#: src/pages/Index/Settings/AdminCenter/HomePanel.tsx:76 +#: src/pages/Index/Settings/AdminCenter/HomePanel.tsx:85 msgid "Quick Actions" msgstr "" @@ -6476,11 +6539,11 @@ msgstr "" #: src/pages/Index/Settings/AdminCenter/Index.tsx:195 #: src/pages/part/CategoryDetail.tsx:313 -msgid "Part Parameters" -msgstr "" +#~ msgid "Part Parameters" +#~ msgstr "Part Parameters" #: src/pages/Index/Settings/AdminCenter/Index.tsx:202 -#: src/pages/part/CategoryDetail.tsx:306 +#: src/pages/part/CategoryDetail.tsx:329 msgid "Category Parameters" msgstr "" @@ -6494,7 +6557,7 @@ msgstr "" #: src/pages/Index/Settings/AdminCenter/Index.tsx:235 #: src/pages/Index/Settings/AdminCenter/MachineManagementPanel.tsx:52 -#: src/tables/machine/MachineTypeTable.tsx:325 +#: src/tables/machine/MachineTypeTable.tsx:323 msgid "Machines" msgstr "" @@ -6507,8 +6570,8 @@ msgid "Data Management" msgstr "" #: src/pages/Index/Settings/AdminCenter/Index.tsx:270 -#: src/pages/Index/Settings/SystemSettings.tsx:175 -#: src/pages/Index/Settings/UserSettings.tsx:118 +#: src/pages/Index/Settings/SystemSettings.tsx:176 +#: src/pages/Index/Settings/UserSettings.tsx:119 msgid "Reporting" msgstr "" @@ -6709,11 +6772,11 @@ msgstr "" msgid "The settings below are specific to each available plugin" msgstr "" -#: src/pages/Index/Settings/SystemSettings.tsx:77 +#: src/pages/Index/Settings/SystemSettings.tsx:78 msgid "Authentication" msgstr "" -#: src/pages/Index/Settings/SystemSettings.tsx:103 +#: src/pages/Index/Settings/SystemSettings.tsx:104 msgid "Barcodes" msgstr "" @@ -6725,12 +6788,12 @@ msgstr "" #~ msgid "This panel is a placeholder." #~ msgstr "This panel is a placeholder." -#: src/pages/Index/Settings/SystemSettings.tsx:127 -#: src/pages/Index/Settings/UserSettings.tsx:112 +#: src/pages/Index/Settings/SystemSettings.tsx:128 +#: src/pages/Index/Settings/UserSettings.tsx:113 msgid "The settings below are specific to each available notification method" msgstr "" -#: src/pages/Index/Settings/SystemSettings.tsx:133 +#: src/pages/Index/Settings/SystemSettings.tsx:134 msgid "Pricing" msgstr "" @@ -6738,7 +6801,7 @@ msgstr "" #~ msgid "Exchange Rates" #~ msgstr "Exchange Rates" -#: src/pages/Index/Settings/SystemSettings.tsx:169 +#: src/pages/Index/Settings/SystemSettings.tsx:170 msgid "Labels" msgstr "" @@ -6790,15 +6853,15 @@ msgstr "" #~ msgid "Delete notifications" #~ msgstr "Delete notifications" -#: src/pages/build/BuildDetail.tsx:69 +#: src/pages/build/BuildDetail.tsx:70 msgid "No Required Items" msgstr "" -#: src/pages/build/BuildDetail.tsx:71 +#: src/pages/build/BuildDetail.tsx:72 msgid "This build order does not have any required items." msgstr "" -#: src/pages/build/BuildDetail.tsx:72 +#: src/pages/build/BuildDetail.tsx:73 msgid "The assembled part may not have a Bill of Materials (BOM) defined, or the BOM is empty." msgstr "" @@ -6826,7 +6889,7 @@ msgstr "" #~ msgid "Build Order updated" #~ msgstr "Build Order updated" -#: src/pages/build/BuildDetail.tsx:215 +#: src/pages/build/BuildDetail.tsx:216 #: src/pages/part/PartDetail.tsx:480 #: src/pages/stock/StockDetail.tsx:161 #: src/tables/bom/UsedInTable.tsx:44 @@ -6843,10 +6906,10 @@ msgstr "" #~ msgid "Duplicate build order" #~ msgstr "Duplicate build order" -#: src/pages/build/BuildDetail.tsx:228 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:174 -#: src/pages/sales/ReturnOrderDetail.tsx:141 -#: src/pages/sales/SalesOrderDetail.tsx:131 +#: src/pages/build/BuildDetail.tsx:229 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:175 +#: src/pages/sales/ReturnOrderDetail.tsx:142 +#: src/pages/sales/SalesOrderDetail.tsx:132 #: src/pages/stock/StockDetail.tsx:176 msgid "Custom Status" msgstr "" @@ -6855,9 +6918,9 @@ msgstr "" #~ msgid "Delete build order" #~ msgstr "Delete build order" -#: src/pages/build/BuildDetail.tsx:237 -#: src/pages/build/BuildDetail.tsx:723 -#: src/pages/build/BuildIndex.tsx:28 +#: src/pages/build/BuildDetail.tsx:238 +#: src/pages/build/BuildDetail.tsx:728 +#: src/pages/build/BuildIndex.tsx:34 #: src/pages/stock/LocationDetail.tsx:140 #: src/tables/build/BuildOrderTable.tsx:123 #: src/tables/build/BuildOrderTable.tsx:183 @@ -6865,57 +6928,57 @@ msgstr "" msgid "External" msgstr "" -#: src/pages/build/BuildDetail.tsx:244 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:141 -#: src/pages/sales/ReturnOrderDetail.tsx:108 -#: src/pages/sales/SalesOrderDetail.tsx:98 +#: src/pages/build/BuildDetail.tsx:245 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:142 +#: src/pages/sales/ReturnOrderDetail.tsx:109 +#: src/pages/sales/SalesOrderDetail.tsx:99 #: src/tables/ColumnRenderers.tsx:321 -#: src/tables/build/BuildAllocatedStockTable.tsx:115 -#: src/tables/build/BuildLineTable.tsx:352 +#: src/tables/build/BuildAllocatedStockTable.tsx:112 +#: src/tables/build/BuildLineTable.tsx:353 msgid "Reference" msgstr "" -#: src/pages/build/BuildDetail.tsx:258 +#: src/pages/build/BuildDetail.tsx:259 msgid "Parent Build" msgstr "" -#: src/pages/build/BuildDetail.tsx:269 +#: src/pages/build/BuildDetail.tsx:270 msgid "Build Quantity" msgstr "" -#: src/pages/build/BuildDetail.tsx:275 +#: src/pages/build/BuildDetail.tsx:276 #: src/pages/part/PartDetail.tsx:598 #: src/tables/bom/BomTable.tsx:365 #: src/tables/bom/BomTable.tsx:407 msgid "Can Build" msgstr "" -#: src/pages/build/BuildDetail.tsx:284 -#: src/pages/build/BuildDetail.tsx:474 +#: src/pages/build/BuildDetail.tsx:285 +#: src/pages/build/BuildDetail.tsx:475 msgid "Completed Outputs" msgstr "" -#: src/pages/build/BuildDetail.tsx:301 +#: src/pages/build/BuildDetail.tsx:302 #: src/tables/Filter.tsx:381 #: src/tables/build/BuildOrderTable.tsx:143 msgid "Issued By" msgstr "" -#: src/pages/build/BuildDetail.tsx:309 +#: src/pages/build/BuildDetail.tsx:310 #: src/pages/part/PartDetail.tsx:691 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:261 -#: src/pages/sales/ReturnOrderDetail.tsx:239 -#: src/pages/sales/SalesOrderDetail.tsx:232 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:262 +#: src/pages/sales/ReturnOrderDetail.tsx:240 +#: src/pages/sales/SalesOrderDetail.tsx:233 #: src/tables/ColumnRenderers.tsx:464 #: src/tables/Filter.tsx:319 msgid "Responsible" msgstr "" -#: src/pages/build/BuildDetail.tsx:327 +#: src/pages/build/BuildDetail.tsx:328 msgid "Any location" msgstr "" -#: src/pages/build/BuildDetail.tsx:334 +#: src/pages/build/BuildDetail.tsx:335 msgid "Destination Location" msgstr "" @@ -6924,24 +6987,24 @@ msgstr "" #~ msgid "Test Statistics" #~ msgstr "Test Statistics" -#: src/pages/build/BuildDetail.tsx:350 +#: src/pages/build/BuildDetail.tsx:351 #: src/tables/settings/ApiTokenTable.tsx:97 #: src/tables/settings/PendingTasksTable.tsx:41 msgid "Created" msgstr "" -#: src/pages/build/BuildDetail.tsx:358 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:286 -#: src/pages/sales/ReturnOrderDetail.tsx:265 -#: src/pages/sales/SalesOrderDetail.tsx:257 +#: src/pages/build/BuildDetail.tsx:359 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:287 +#: src/pages/sales/ReturnOrderDetail.tsx:266 +#: src/pages/sales/SalesOrderDetail.tsx:258 #: src/tables/ColumnRenderers.tsx:486 msgid "Start Date" msgstr "" -#: src/pages/build/BuildDetail.tsx:366 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:294 -#: src/pages/sales/ReturnOrderDetail.tsx:273 -#: src/pages/sales/SalesOrderDetail.tsx:265 +#: src/pages/build/BuildDetail.tsx:367 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:295 +#: src/pages/sales/ReturnOrderDetail.tsx:274 +#: src/pages/sales/SalesOrderDetail.tsx:266 #: src/tables/ColumnRenderers.tsx:494 #: src/tables/part/PartPurchaseOrdersTable.tsx:101 #: src/tables/sales/ReturnOrderLineItemTable.tsx:154 @@ -6954,185 +7017,185 @@ msgstr "" #~ msgstr "Reporting Actions" #: src/pages/build/BuildDetail.tsx:374 +#~ msgid "Print build report" +#~ msgstr "Print build report" + +#: src/pages/build/BuildDetail.tsx:375 #: src/tables/build/BuildOrderTable.tsx:93 #: src/tables/sales/SalesOrderLineItemTable.tsx:347 msgid "Completed" msgstr "" -#: src/pages/build/BuildDetail.tsx:374 -#~ msgid "Print build report" -#~ msgstr "Print build report" - -#: src/pages/build/BuildDetail.tsx:410 +#: src/pages/build/BuildDetail.tsx:411 msgid "Build Details" msgstr "" -#: src/pages/build/BuildDetail.tsx:416 +#: src/pages/build/BuildDetail.tsx:417 msgid "Required Parts" msgstr "" -#: src/pages/build/BuildDetail.tsx:428 -#: src/pages/sales/SalesOrderDetail.tsx:407 -#: src/pages/sales/SalesOrderShipmentDetail.tsx:261 +#: src/pages/build/BuildDetail.tsx:429 +#: src/pages/sales/SalesOrderDetail.tsx:408 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:259 #: src/tables/part/PartSalesAllocationsTable.tsx:73 msgid "Allocated Stock" msgstr "" -#: src/pages/build/BuildDetail.tsx:444 +#: src/pages/build/BuildDetail.tsx:445 msgid "Consumed Stock" msgstr "" -#: src/pages/build/BuildDetail.tsx:461 +#: src/pages/build/BuildDetail.tsx:462 msgid "Incomplete Outputs" msgstr "" -#: src/pages/build/BuildDetail.tsx:489 +#: src/pages/build/BuildDetail.tsx:490 msgid "External Orders" msgstr "" -#: src/pages/build/BuildDetail.tsx:503 +#: src/pages/build/BuildDetail.tsx:504 msgid "Child Build Orders" msgstr "" -#: src/pages/build/BuildDetail.tsx:513 -#: src/pages/part/PartDetail.tsx:937 +#: src/pages/build/BuildDetail.tsx:514 +#: src/pages/part/PartDetail.tsx:926 #: src/pages/stock/StockDetail.tsx:587 #: src/tables/build/BuildOutputTable.tsx:654 #: src/tables/stock/StockItemTestResultTable.tsx:173 msgid "Test Results" msgstr "" -#: src/pages/build/BuildDetail.tsx:550 +#: src/pages/build/BuildDetail.tsx:555 msgid "Edit Build Order" msgstr "" -#: src/pages/build/BuildDetail.tsx:572 +#: src/pages/build/BuildDetail.tsx:577 #: src/tables/build/BuildOrderTable.tsx:207 #: src/tables/build/BuildOrderTable.tsx:223 msgid "Add Build Order" msgstr "" -#: src/pages/build/BuildDetail.tsx:582 +#: src/pages/build/BuildDetail.tsx:587 msgid "Cancel Build Order" msgstr "" -#: src/pages/build/BuildDetail.tsx:584 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:416 -#: src/pages/sales/ReturnOrderDetail.tsx:427 -#: src/pages/sales/SalesOrderDetail.tsx:454 +#: src/pages/build/BuildDetail.tsx:589 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:421 +#: src/pages/sales/ReturnOrderDetail.tsx:432 +#: src/pages/sales/SalesOrderDetail.tsx:459 msgid "Order cancelled" msgstr "" -#: src/pages/build/BuildDetail.tsx:585 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:415 -#: src/pages/sales/ReturnOrderDetail.tsx:426 -#: src/pages/sales/SalesOrderDetail.tsx:453 +#: src/pages/build/BuildDetail.tsx:590 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:420 +#: src/pages/sales/ReturnOrderDetail.tsx:431 +#: src/pages/sales/SalesOrderDetail.tsx:458 msgid "Cancel this order" msgstr "" -#: src/pages/build/BuildDetail.tsx:594 +#: src/pages/build/BuildDetail.tsx:599 msgid "Hold Build Order" msgstr "" -#: src/pages/build/BuildDetail.tsx:596 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:423 -#: src/pages/sales/ReturnOrderDetail.tsx:434 -#: src/pages/sales/SalesOrderDetail.tsx:461 +#: src/pages/build/BuildDetail.tsx:601 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:428 +#: src/pages/sales/ReturnOrderDetail.tsx:439 +#: src/pages/sales/SalesOrderDetail.tsx:466 msgid "Place this order on hold" msgstr "" -#: src/pages/build/BuildDetail.tsx:597 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:424 -#: src/pages/sales/ReturnOrderDetail.tsx:435 -#: src/pages/sales/SalesOrderDetail.tsx:462 +#: src/pages/build/BuildDetail.tsx:602 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:429 +#: src/pages/sales/ReturnOrderDetail.tsx:440 +#: src/pages/sales/SalesOrderDetail.tsx:467 msgid "Order placed on hold" msgstr "" -#: src/pages/build/BuildDetail.tsx:602 +#: src/pages/build/BuildDetail.tsx:607 msgid "Issue Build Order" msgstr "" -#: src/pages/build/BuildDetail.tsx:604 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:407 -#: src/pages/sales/ReturnOrderDetail.tsx:418 -#: src/pages/sales/SalesOrderDetail.tsx:445 +#: src/pages/build/BuildDetail.tsx:609 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:412 +#: src/pages/sales/ReturnOrderDetail.tsx:423 +#: src/pages/sales/SalesOrderDetail.tsx:450 msgid "Issue this order" msgstr "" -#: src/pages/build/BuildDetail.tsx:605 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:408 -#: src/pages/sales/ReturnOrderDetail.tsx:419 -#: src/pages/sales/SalesOrderDetail.tsx:446 +#: src/pages/build/BuildDetail.tsx:610 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:413 +#: src/pages/sales/ReturnOrderDetail.tsx:424 +#: src/pages/sales/SalesOrderDetail.tsx:451 msgid "Order issued" msgstr "" -#: src/pages/build/BuildDetail.tsx:624 +#: src/pages/build/BuildDetail.tsx:629 msgid "Complete Build Order" msgstr "" -#: src/pages/build/BuildDetail.tsx:630 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:436 -#: src/pages/sales/ReturnOrderDetail.tsx:442 -#: src/pages/sales/SalesOrderDetail.tsx:480 +#: src/pages/build/BuildDetail.tsx:635 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:441 +#: src/pages/sales/ReturnOrderDetail.tsx:447 +#: src/pages/sales/SalesOrderDetail.tsx:485 msgid "Mark this order as complete" msgstr "" -#: src/pages/build/BuildDetail.tsx:633 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:430 -#: src/pages/sales/ReturnOrderDetail.tsx:443 -#: src/pages/sales/SalesOrderDetail.tsx:481 +#: src/pages/build/BuildDetail.tsx:638 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:435 +#: src/pages/sales/ReturnOrderDetail.tsx:448 +#: src/pages/sales/SalesOrderDetail.tsx:486 msgid "Order completed" msgstr "" -#: src/pages/build/BuildDetail.tsx:660 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:459 -#: src/pages/sales/ReturnOrderDetail.tsx:470 -#: src/pages/sales/SalesOrderDetail.tsx:516 +#: src/pages/build/BuildDetail.tsx:665 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:464 +#: src/pages/sales/ReturnOrderDetail.tsx:475 +#: src/pages/sales/SalesOrderDetail.tsx:521 msgid "Issue Order" msgstr "" -#: src/pages/build/BuildDetail.tsx:667 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:466 -#: src/pages/sales/ReturnOrderDetail.tsx:477 -#: src/pages/sales/SalesOrderDetail.tsx:530 +#: src/pages/build/BuildDetail.tsx:672 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:471 +#: src/pages/sales/ReturnOrderDetail.tsx:482 +#: src/pages/sales/SalesOrderDetail.tsx:535 msgid "Complete Order" msgstr "" -#: src/pages/build/BuildDetail.tsx:686 +#: src/pages/build/BuildDetail.tsx:691 msgid "Build Order Actions" msgstr "" -#: src/pages/build/BuildDetail.tsx:691 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:489 -#: src/pages/sales/ReturnOrderDetail.tsx:500 -#: src/pages/sales/SalesOrderDetail.tsx:554 +#: src/pages/build/BuildDetail.tsx:696 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:494 +#: src/pages/sales/ReturnOrderDetail.tsx:505 +#: src/pages/sales/SalesOrderDetail.tsx:559 msgid "Edit order" msgstr "" -#: src/pages/build/BuildDetail.tsx:695 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:497 -#: src/pages/sales/ReturnOrderDetail.tsx:506 -#: src/pages/sales/SalesOrderDetail.tsx:559 -msgid "Duplicate order" -msgstr "" - -#: src/pages/build/BuildDetail.tsx:699 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:500 +#: src/pages/build/BuildDetail.tsx:700 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:502 #: src/pages/sales/ReturnOrderDetail.tsx:511 -#: src/pages/sales/SalesOrderDetail.tsx:562 -msgid "Hold order" +#: src/pages/sales/SalesOrderDetail.tsx:564 +msgid "Duplicate order" msgstr "" #: src/pages/build/BuildDetail.tsx:704 #: src/pages/purchasing/PurchaseOrderDetail.tsx:505 #: src/pages/sales/ReturnOrderDetail.tsx:516 #: src/pages/sales/SalesOrderDetail.tsx:567 +msgid "Hold order" +msgstr "" + +#: src/pages/build/BuildDetail.tsx:709 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:510 +#: src/pages/sales/ReturnOrderDetail.tsx:521 +#: src/pages/sales/SalesOrderDetail.tsx:572 msgid "Cancel order" msgstr "" -#: src/pages/build/BuildDetail.tsx:742 +#: src/pages/build/BuildDetail.tsx:747 #: src/pages/stock/StockDetail.tsx:344 -#: src/tables/build/BuildAllocatedStockTable.tsx:85 +#: src/tables/build/BuildAllocatedStockTable.tsx:82 #: src/tables/part/PartBuildAllocationsTable.tsx:45 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:157 #: src/tables/stock/StockTrackingTable.tsx:109 @@ -7143,7 +7206,7 @@ msgstr "" #~ msgid "Build order created" #~ msgstr "Build order created" -#: src/pages/build/BuildIndex.tsx:29 +#: src/pages/build/BuildIndex.tsx:35 #: src/tables/build/BuildOrderTable.tsx:184 msgid "Show external build orders" msgstr "" @@ -7152,61 +7215,82 @@ msgstr "" #~ msgid "New Build Order" #~ msgstr "New Build Order" -#: src/pages/build/BuildIndex.tsx:83 -#: src/pages/purchasing/PurchasingIndex.tsx:69 -#: src/pages/sales/SalesIndex.tsx:92 -#: src/pages/sales/SalesIndex.tsx:125 +#: src/pages/build/BuildIndex.tsx:74 +#: src/pages/part/CategoryDetail.tsx:292 +#: src/pages/purchasing/PurchasingIndex.tsx:74 +#: src/pages/purchasing/PurchasingIndex.tsx:107 +#: src/pages/purchasing/PurchasingIndex.tsx:135 +#: src/pages/purchasing/PurchasingIndex.tsx:156 +#: src/pages/purchasing/PurchasingIndex.tsx:184 +#: src/pages/sales/SalesIndex.tsx:61 +#: src/pages/sales/SalesIndex.tsx:107 +#: src/pages/sales/SalesIndex.tsx:140 msgid "Table View" msgstr "" -#: src/pages/build/BuildIndex.tsx:86 -#: src/pages/purchasing/PurchasingIndex.tsx:72 -#: src/pages/sales/SalesIndex.tsx:95 -#: src/pages/sales/SalesIndex.tsx:128 +#: src/pages/build/BuildIndex.tsx:80 +#: src/pages/purchasing/PurchasingIndex.tsx:80 +#: src/pages/sales/SalesIndex.tsx:67 +#: src/pages/sales/SalesIndex.tsx:113 msgid "Calendar View" msgstr "" -#: src/pages/company/CompanyDetail.tsx:99 +#: src/pages/build/BuildIndex.tsx:86 +#: src/pages/part/CategoryDetail.tsx:306 +#: src/pages/purchasing/PurchasingIndex.tsx:92 +#: src/pages/purchasing/PurchasingIndex.tsx:118 +#: src/pages/purchasing/PurchasingIndex.tsx:141 +#: src/pages/purchasing/PurchasingIndex.tsx:167 +#: src/pages/purchasing/PurchasingIndex.tsx:190 +#: src/pages/sales/SalesIndex.tsx:79 +#: src/pages/sales/SalesIndex.tsx:125 +#: src/pages/sales/SalesIndex.tsx:151 +msgid "Parametric View" +msgstr "" + +#: src/pages/company/CompanyDetail.tsx:100 msgid "Website" msgstr "Laman" -#: src/pages/company/CompanyDetail.tsx:107 +#: src/pages/company/CompanyDetail.tsx:108 msgid "Phone Number" msgstr "Nomor Telepon" -#: src/pages/company/CompanyDetail.tsx:114 +#: src/pages/company/CompanyDetail.tsx:115 msgid "Email Address" msgstr "Alamat Surel" -#: src/pages/company/CompanyDetail.tsx:121 +#: src/pages/company/CompanyDetail.tsx:122 msgid "Tax ID" msgstr "" -#: src/pages/company/CompanyDetail.tsx:131 +#: src/pages/company/CompanyDetail.tsx:132 msgid "Default Currency" msgstr "Mata Uang Utama" -#: src/pages/company/CompanyDetail.tsx:142 +#: src/pages/company/CompanyDetail.tsx:143 #: src/pages/company/ManufacturerDetail.tsx:8 -#: src/pages/company/ManufacturerPartDetail.tsx:104 -#: src/pages/company/ManufacturerPartDetail.tsx:280 -#: src/pages/company/SupplierPartDetail.tsx:152 +#: src/pages/company/ManufacturerPartDetail.tsx:103 +#: src/pages/company/ManufacturerPartDetail.tsx:271 +#: src/pages/company/SupplierPartDetail.tsx:153 #: src/tables/Filter.tsx:347 #: src/tables/company/CompanyTable.tsx:101 #: src/tables/purchasing/SupplierPartTable.tsx:89 msgid "Manufacturer" msgstr "" -#: src/pages/company/CompanyDetail.tsx:148 +#: src/pages/company/CompanyDetail.tsx:149 #: src/pages/company/CustomerDetail.tsx:8 #: src/pages/part/pricing/SaleHistoryPanel.tsx:31 -#: src/pages/sales/ReturnOrderDetail.tsx:123 -#: src/pages/sales/SalesOrderDetail.tsx:113 -#: src/pages/sales/SalesOrderShipmentDetail.tsx:113 +#: src/pages/sales/ReturnOrderDetail.tsx:124 +#: src/pages/sales/SalesOrderDetail.tsx:114 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:111 #: src/pages/stock/StockDetail.tsx:370 #: src/tables/company/CompanyTable.tsx:106 +#: src/tables/sales/ReturnOrderParametricTable.tsx:32 #: src/tables/sales/ReturnOrderTable.tsx:108 -#: src/tables/sales/SalesOrderShipmentTable.tsx:111 +#: src/tables/sales/SalesOrderParametricTable.tsx:32 +#: src/tables/sales/SalesOrderShipmentTable.tsx:132 #: src/tables/sales/SalesOrderTable.tsx:133 #: src/tables/stock/StockTrackingTable.tsx:153 msgid "Customer" @@ -7216,11 +7300,11 @@ msgstr "" #~ msgid "Edit company" #~ msgstr "Edit company" -#: src/pages/company/CompanyDetail.tsx:181 +#: src/pages/company/CompanyDetail.tsx:182 msgid "Company Details" msgstr "" -#: src/pages/company/CompanyDetail.tsx:187 +#: src/pages/company/CompanyDetail.tsx:188 msgid "Supplied Parts" msgstr "" @@ -7228,79 +7312,79 @@ msgstr "" #~ msgid "Delete company" #~ msgstr "Delete company" -#: src/pages/company/CompanyDetail.tsx:194 +#: src/pages/company/CompanyDetail.tsx:195 msgid "Manufactured Parts" msgstr "" -#: src/pages/company/CompanyDetail.tsx:241 +#: src/pages/company/CompanyDetail.tsx:242 msgid "Assigned Stock" msgstr "" -#: src/pages/company/CompanyDetail.tsx:282 +#: src/pages/company/CompanyDetail.tsx:287 #: src/tables/company/CompanyTable.tsx:82 msgid "Edit Company" msgstr "" -#: src/pages/company/CompanyDetail.tsx:290 +#: src/pages/company/CompanyDetail.tsx:295 msgid "Delete Company" msgstr "" -#: src/pages/company/CompanyDetail.tsx:305 +#: src/pages/company/CompanyDetail.tsx:310 msgid "Company Actions" msgstr "" -#: src/pages/company/ManufacturerPartDetail.tsx:78 -#: src/pages/company/SupplierPartDetail.tsx:89 +#: src/pages/company/ManufacturerPartDetail.tsx:77 +#: src/pages/company/SupplierPartDetail.tsx:90 msgid "Internal Part" msgstr "" -#: src/pages/company/ManufacturerPartDetail.tsx:112 +#: src/pages/company/ManufacturerPartDetail.tsx:111 msgid "Manufacturer Part Number" msgstr "" -#: src/pages/company/ManufacturerPartDetail.tsx:129 -#: src/pages/company/SupplierPartDetail.tsx:113 +#: src/pages/company/ManufacturerPartDetail.tsx:128 +#: src/pages/company/SupplierPartDetail.tsx:114 msgid "External Link" msgstr "" -#: src/pages/company/ManufacturerPartDetail.tsx:148 -#: src/pages/company/SupplierPartDetail.tsx:232 +#: src/pages/company/ManufacturerPartDetail.tsx:147 +#: src/pages/company/SupplierPartDetail.tsx:233 #: src/pages/part/PartDetail.tsx:787 msgid "Part Details" msgstr "" -#: src/pages/company/ManufacturerPartDetail.tsx:151 +#: src/pages/company/ManufacturerPartDetail.tsx:150 msgid "Manufacturer Details" msgstr "" -#: src/pages/company/ManufacturerPartDetail.tsx:160 +#: src/pages/company/ManufacturerPartDetail.tsx:159 msgid "Manufacturer Part Details" msgstr "" -#: src/pages/company/ManufacturerPartDetail.tsx:178 -#: src/pages/company/SupplierPartDetail.tsx:252 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:381 +#: src/pages/company/ManufacturerPartDetail.tsx:165 +#: src/pages/company/SupplierPartDetail.tsx:253 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:382 msgid "Received Stock" msgstr "" -#: src/pages/company/ManufacturerPartDetail.tsx:220 +#: src/pages/company/ManufacturerPartDetail.tsx:211 #: src/tables/purchasing/ManufacturerPartTable.tsx:108 msgid "Edit Manufacturer Part" msgstr "" -#: src/pages/company/ManufacturerPartDetail.tsx:227 +#: src/pages/company/ManufacturerPartDetail.tsx:218 #: src/tables/purchasing/ManufacturerPartTable.tsx:96 #: src/tables/purchasing/ManufacturerPartTable.tsx:115 #: src/tables/purchasing/ManufacturerPartTable.tsx:156 msgid "Add Manufacturer Part" msgstr "" -#: src/pages/company/ManufacturerPartDetail.tsx:239 +#: src/pages/company/ManufacturerPartDetail.tsx:230 #: src/tables/purchasing/ManufacturerPartTable.tsx:126 msgid "Delete Manufacturer Part" msgstr "" -#: src/pages/company/ManufacturerPartDetail.tsx:254 +#: src/pages/company/ManufacturerPartDetail.tsx:245 msgid "Manufacturer Part Actions" msgstr "" @@ -7308,12 +7392,12 @@ msgstr "" #~ msgid "ManufacturerPart" #~ msgstr "ManufacturerPart" -#: src/pages/company/SupplierPartDetail.tsx:104 +#: src/pages/company/SupplierPartDetail.tsx:105 #: src/tables/part/RelatedPartTable.tsx:82 msgid "Part Description" msgstr "" -#: src/pages/company/SupplierPartDetail.tsx:179 +#: src/pages/company/SupplierPartDetail.tsx:180 #: src/tables/part/PartPurchaseOrdersTable.tsx:73 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:191 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:233 @@ -7321,50 +7405,50 @@ msgstr "" msgid "Pack Quantity" msgstr "" -#: src/pages/company/SupplierPartDetail.tsx:204 +#: src/pages/company/SupplierPartDetail.tsx:205 msgid "Supplier Availability" msgstr "" -#: src/pages/company/SupplierPartDetail.tsx:212 +#: src/pages/company/SupplierPartDetail.tsx:213 msgid "Availability Updated" msgstr "" -#: src/pages/company/SupplierPartDetail.tsx:237 +#: src/pages/company/SupplierPartDetail.tsx:238 msgid "Availability" msgstr "" -#: src/pages/company/SupplierPartDetail.tsx:246 +#: src/pages/company/SupplierPartDetail.tsx:247 msgid "Supplier Part Details" msgstr "" -#: src/pages/company/SupplierPartDetail.tsx:279 +#: src/pages/company/SupplierPartDetail.tsx:280 #: src/pages/part/PartPricingPanel.tsx:113 #: src/pages/part/pricing/PricingOverviewPanel.tsx:239 msgid "Supplier Pricing" msgstr "" -#: src/pages/company/SupplierPartDetail.tsx:308 +#: src/pages/company/SupplierPartDetail.tsx:313 msgid "Supplier Part Actions" msgstr "" -#: src/pages/company/SupplierPartDetail.tsx:332 +#: src/pages/company/SupplierPartDetail.tsx:337 #: src/tables/purchasing/SupplierPartTable.tsx:244 msgid "Edit Supplier Part" msgstr "" -#: src/pages/company/SupplierPartDetail.tsx:340 +#: src/pages/company/SupplierPartDetail.tsx:345 #: src/tables/purchasing/SupplierPartTable.tsx:264 msgid "Delete Supplier Part" msgstr "" -#: src/pages/company/SupplierPartDetail.tsx:348 +#: src/pages/company/SupplierPartDetail.tsx:353 #: src/tables/purchasing/SupplierPartTable.tsx:172 #: src/tables/purchasing/SupplierPartTable.tsx:251 msgid "Add Supplier Part" msgstr "" -#: src/pages/company/SupplierPartDetail.tsx:388 -#: src/pages/part/PartDetail.tsx:1003 +#: src/pages/company/SupplierPartDetail.tsx:393 +#: src/pages/part/PartDetail.tsx:1018 msgid "No Stock" msgstr "" @@ -7411,83 +7495,83 @@ msgstr "Rincian Pengguna" msgid "Basic user" msgstr "" -#: src/pages/part/CategoryDetail.tsx:100 +#: src/pages/part/CategoryDetail.tsx:103 #: src/pages/stock/LocationDetail.tsx:94 #: src/tables/settings/ErrorTable.tsx:63 #: src/tables/settings/ErrorTable.tsx:108 msgid "Path" msgstr "" -#: src/pages/part/CategoryDetail.tsx:116 +#: src/pages/part/CategoryDetail.tsx:119 msgid "Parent Category" msgstr "" -#: src/pages/part/CategoryDetail.tsx:139 -#: src/pages/part/CategoryDetail.tsx:271 +#: src/pages/part/CategoryDetail.tsx:142 +#: src/pages/part/CategoryDetail.tsx:279 msgid "Subcategories" msgstr "" -#: src/pages/part/CategoryDetail.tsx:146 +#: src/pages/part/CategoryDetail.tsx:149 #: src/pages/stock/LocationDetail.tsx:134 #: src/tables/part/PartCategoryTable.tsx:89 #: src/tables/stock/StockLocationTable.tsx:43 msgid "Structural" msgstr "" -#: src/pages/part/CategoryDetail.tsx:152 +#: src/pages/part/CategoryDetail.tsx:155 msgid "Parent default location" msgstr "" -#: src/pages/part/CategoryDetail.tsx:159 +#: src/pages/part/CategoryDetail.tsx:162 msgid "Default location" msgstr "" -#: src/pages/part/CategoryDetail.tsx:170 +#: src/pages/part/CategoryDetail.tsx:173 msgid "Top level part category" msgstr "" -#: src/pages/part/CategoryDetail.tsx:180 -#: src/pages/part/CategoryDetail.tsx:248 +#: src/pages/part/CategoryDetail.tsx:183 +#: src/pages/part/CategoryDetail.tsx:251 #: src/tables/part/PartCategoryTable.tsx:122 msgid "Edit Part Category" msgstr "" -#: src/pages/part/CategoryDetail.tsx:189 +#: src/pages/part/CategoryDetail.tsx:192 msgid "Move items to parent category" msgstr "" -#: src/pages/part/CategoryDetail.tsx:193 +#: src/pages/part/CategoryDetail.tsx:196 #: src/pages/stock/LocationDetail.tsx:226 msgid "Delete items" msgstr "" -#: src/pages/part/CategoryDetail.tsx:201 -#: src/pages/part/CategoryDetail.tsx:253 +#: src/pages/part/CategoryDetail.tsx:204 +#: src/pages/part/CategoryDetail.tsx:256 msgid "Delete Part Category" msgstr "" -#: src/pages/part/CategoryDetail.tsx:204 +#: src/pages/part/CategoryDetail.tsx:207 msgid "Parts Action" msgstr "" -#: src/pages/part/CategoryDetail.tsx:205 +#: src/pages/part/CategoryDetail.tsx:208 msgid "Action for parts in this category" msgstr "" -#: src/pages/part/CategoryDetail.tsx:211 +#: src/pages/part/CategoryDetail.tsx:214 msgid "Child Categories Action" msgstr "" -#: src/pages/part/CategoryDetail.tsx:212 +#: src/pages/part/CategoryDetail.tsx:215 msgid "Action for child categories in this category" msgstr "" -#: src/pages/part/CategoryDetail.tsx:244 +#: src/pages/part/CategoryDetail.tsx:247 #: src/tables/part/PartCategoryTable.tsx:143 msgid "Category Actions" msgstr "" -#: src/pages/part/CategoryDetail.tsx:265 +#: src/pages/part/CategoryDetail.tsx:273 msgid "Category Details" msgstr "" @@ -7585,7 +7669,6 @@ msgid "Category Default Location" msgstr "" #: src/pages/part/PartDetail.tsx:507 -#: src/tables/purchasing/ManufacturerPartParameterTable.tsx:48 msgid "Units" msgstr "" @@ -7600,7 +7683,7 @@ msgstr "" #: src/pages/part/PartDetail.tsx:542 #: src/tables/bom/BomTable.tsx:439 -#: src/tables/build/BuildLineTable.tsx:305 +#: src/tables/build/BuildLineTable.tsx:306 #: src/tables/part/PartTable.tsx:319 #: src/tables/sales/SalesOrderLineItemTable.tsx:138 msgid "Available Stock" @@ -7608,7 +7691,7 @@ msgstr "" #: src/pages/part/PartDetail.tsx:548 #: src/tables/bom/BomTable.tsx:341 -#: src/tables/build/BuildLineTable.tsx:267 +#: src/tables/build/BuildLineTable.tsx:268 #: src/tables/sales/SalesOrderLineItemTable.tsx:180 msgid "On order" msgstr "" @@ -7634,7 +7717,7 @@ msgstr "" #~ msgstr "Scheduling" #: src/pages/part/PartDetail.tsx:620 -#: src/tables/part/ParametricPartTable.tsx:359 +#: src/tables/part/ParametricPartTable.tsx:24 #: src/tables/part/PartTable.tsx:203 msgid "Locked" msgstr "" @@ -7671,16 +7754,16 @@ msgid "Saleable Part" msgstr "" #: src/pages/part/PartDetail.tsx:663 -#: src/pages/part/PartDetail.tsx:1033 +#: src/pages/part/PartDetail.tsx:1054 #: src/tables/bom/BomTable.tsx:150 #: src/tables/bom/BomTable.tsx:434 msgid "Virtual Part" msgstr "" #: src/pages/part/PartDetail.tsx:678 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:271 -#: src/pages/sales/ReturnOrderDetail.tsx:249 -#: src/pages/sales/SalesOrderDetail.tsx:242 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:272 +#: src/pages/sales/ReturnOrderDetail.tsx:250 +#: src/pages/sales/SalesOrderDetail.tsx:243 #: src/tables/ColumnRenderers.tsx:502 msgid "Creation Date" msgstr "" @@ -7718,35 +7801,46 @@ msgstr "" msgid "Select Part Revision" msgstr "" -#: src/pages/part/PartDetail.tsx:823 +#: src/pages/part/PartDetail.tsx:812 msgid "Variants" msgstr "" -#: src/pages/part/PartDetail.tsx:830 +#: src/pages/part/PartDetail.tsx:819 #: src/pages/stock/StockDetail.tsx:542 msgid "Allocations" msgstr "" -#: src/pages/part/PartDetail.tsx:837 +#: src/pages/part/PartDetail.tsx:826 msgid "Bill of Materials" msgstr "" -#: src/pages/part/PartDetail.tsx:849 +#: src/pages/part/PartDetail.tsx:838 msgid "Used In" msgstr "" -#: src/pages/part/PartDetail.tsx:856 +#: src/pages/part/PartDetail.tsx:845 msgid "Part Pricing" msgstr "" -#: src/pages/part/PartDetail.tsx:926 +#: src/pages/part/PartDetail.tsx:915 msgid "Test Templates" msgstr "" -#: src/pages/part/PartDetail.tsx:948 +#: src/pages/part/PartDetail.tsx:937 msgid "Related Parts" msgstr "" +#: src/pages/part/PartDetail.tsx:949 +#: src/tables/ColumnRenderers.tsx:73 +#: src/tables/bom/BomTable.tsx:657 +#: src/tables/part/PartTestTemplateTable.tsx:258 +msgid "Part is Locked" +msgstr "" + +#: src/pages/part/PartDetail.tsx:954 +msgid "Part parameters cannot be edited, as the part is locked" +msgstr "" + #: src/pages/part/PartDetail.tsx:956 #~ msgid "Count part stock" #~ msgstr "Count part stock" @@ -7755,42 +7849,46 @@ msgstr "" #~ msgid "Transfer part stock" #~ msgstr "Transfer part stock" -#: src/pages/part/PartDetail.tsx:1009 +#: src/pages/part/PartDetail.tsx:1024 #: src/tables/part/PartTestTemplateTable.tsx:112 #: src/tables/stock/StockItemTestResultTable.tsx:404 msgid "Required" msgstr "" -#: src/pages/part/PartDetail.tsx:1058 +#: src/pages/part/PartDetail.tsx:1042 +msgid "Deficit" +msgstr "" + +#: src/pages/part/PartDetail.tsx:1079 #: src/tables/part/PartTable.tsx:396 #: src/tables/part/PartTable.tsx:449 msgid "Add Part" msgstr "" -#: src/pages/part/PartDetail.tsx:1072 +#: src/pages/part/PartDetail.tsx:1093 msgid "Delete Part" msgstr "" -#: src/pages/part/PartDetail.tsx:1081 +#: src/pages/part/PartDetail.tsx:1102 msgid "Deleting this part cannot be reversed" msgstr "" -#: src/pages/part/PartDetail.tsx:1143 +#: src/pages/part/PartDetail.tsx:1164 #: src/pages/stock/StockDetail.tsx:883 msgid "Order" msgstr "" -#: src/pages/part/PartDetail.tsx:1144 +#: src/pages/part/PartDetail.tsx:1165 #: src/pages/stock/StockDetail.tsx:884 -#: src/tables/build/BuildLineTable.tsx:761 +#: src/tables/build/BuildLineTable.tsx:768 msgid "Order Stock" msgstr "" -#: src/pages/part/PartDetail.tsx:1156 +#: src/pages/part/PartDetail.tsx:1177 msgid "Search by serial number" msgstr "" -#: src/pages/part/PartDetail.tsx:1164 +#: src/pages/part/PartDetail.tsx:1185 #: src/tables/part/PartTable.tsx:506 msgid "Part Actions" msgstr "" @@ -8039,7 +8137,7 @@ msgstr "" #: src/pages/part/pricing/PricingOverviewPanel.tsx:288 #: src/pages/stock/StockDetail.tsx:426 -#: src/tables/part/PartParameterTable.tsx:121 +#: src/tables/general/ParameterTable.tsx:101 #: src/tables/stock/StockItemTable.tsx:300 msgid "Last Updated" msgstr "" @@ -8107,17 +8205,17 @@ msgstr "" msgid "Variant Part" msgstr "" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:89 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:90 msgid "Edit Purchase Order" msgstr "" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:125 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:126 #: src/tables/purchasing/PurchaseOrderTable.tsx:154 #: src/tables/purchasing/PurchaseOrderTable.tsx:167 msgid "Add Purchase Order" msgstr "" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:147 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:148 msgid "Supplier Reference" msgstr "" @@ -8127,20 +8225,20 @@ msgstr "" #~ msgid "Order Currency," #~ msgstr "Order Currency," -#: src/pages/purchasing/PurchaseOrderDetail.tsx:187 -#: src/pages/sales/ReturnOrderDetail.tsx:160 -#: src/pages/sales/SalesOrderDetail.tsx:144 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:188 +#: src/pages/sales/ReturnOrderDetail.tsx:161 +#: src/pages/sales/SalesOrderDetail.tsx:145 msgid "Completed Line Items" msgstr "" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:196 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:197 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:272 msgid "Destination" msgstr "" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:202 -#: src/pages/sales/ReturnOrderDetail.tsx:167 -#: src/pages/sales/SalesOrderDetail.tsx:161 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:203 +#: src/pages/sales/ReturnOrderDetail.tsx:168 +#: src/pages/sales/SalesOrderDetail.tsx:162 msgid "Order Currency" msgstr "" @@ -8150,97 +8248,97 @@ msgstr "" #~ msgid "Created On" #~ msgstr "Created On" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:208 -#: src/pages/sales/ReturnOrderDetail.tsx:174 -#: src/pages/sales/SalesOrderDetail.tsx:167 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:209 +#: src/pages/sales/ReturnOrderDetail.tsx:175 +#: src/pages/sales/SalesOrderDetail.tsx:168 msgid "Total Cost" msgstr "" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:237 -#: src/pages/sales/ReturnOrderDetail.tsx:215 -#: src/pages/sales/SalesOrderDetail.tsx:208 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:238 +#: src/pages/sales/ReturnOrderDetail.tsx:216 +#: src/pages/sales/SalesOrderDetail.tsx:209 msgid "Contact Email" msgstr "" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:245 -#: src/pages/sales/ReturnOrderDetail.tsx:223 -#: src/pages/sales/SalesOrderDetail.tsx:216 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:246 +#: src/pages/sales/ReturnOrderDetail.tsx:224 +#: src/pages/sales/SalesOrderDetail.tsx:217 msgid "Contact Phone" msgstr "" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:278 -#: src/pages/sales/ReturnOrderDetail.tsx:257 -#: src/pages/sales/SalesOrderDetail.tsx:249 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:279 +#: src/pages/sales/ReturnOrderDetail.tsx:258 +#: src/pages/sales/SalesOrderDetail.tsx:250 msgid "Issue Date" msgstr "" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:303 -#: src/pages/sales/ReturnOrderDetail.tsx:281 -#: src/pages/sales/SalesOrderDetail.tsx:272 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:304 +#: src/pages/sales/ReturnOrderDetail.tsx:282 +#: src/pages/sales/SalesOrderDetail.tsx:273 #: src/tables/ColumnRenderers.tsx:510 #: src/tables/build/BuildOrderTable.tsx:137 #: src/tables/part/PartPurchaseOrdersTable.tsx:106 msgid "Completion Date" msgstr "" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:333 -#: src/pages/sales/ReturnOrderDetail.tsx:311 -#: src/pages/sales/SalesOrderDetail.tsx:349 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:334 +#: src/pages/sales/ReturnOrderDetail.tsx:312 +#: src/pages/sales/SalesOrderDetail.tsx:350 msgid "Order Details" msgstr "" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:339 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:348 -#: src/pages/sales/ReturnOrderDetail.tsx:153 -#: src/pages/sales/ReturnOrderDetail.tsx:317 -#: src/pages/sales/ReturnOrderDetail.tsx:326 -#: src/pages/sales/SalesOrderDetail.tsx:355 -#: src/pages/sales/SalesOrderDetail.tsx:364 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:340 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:349 +#: src/pages/sales/ReturnOrderDetail.tsx:154 +#: src/pages/sales/ReturnOrderDetail.tsx:318 +#: src/pages/sales/ReturnOrderDetail.tsx:327 +#: src/pages/sales/SalesOrderDetail.tsx:356 +#: src/pages/sales/SalesOrderDetail.tsx:365 msgid "Line Items" msgstr "" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:363 -#: src/pages/sales/ReturnOrderDetail.tsx:341 -#: src/pages/sales/SalesOrderDetail.tsx:378 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:364 +#: src/pages/sales/ReturnOrderDetail.tsx:342 +#: src/pages/sales/SalesOrderDetail.tsx:379 msgid "Extra Line Items" msgstr "" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:405 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:410 msgid "Issue Purchase Order" msgstr "" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:413 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:418 msgid "Cancel Purchase Order" msgstr "" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:421 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:426 msgid "Hold Purchase Order" msgstr "" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:429 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:434 msgid "Complete Purchase Order" msgstr "" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:485 -#: src/pages/sales/ReturnOrderDetail.tsx:496 -#: src/pages/sales/SalesOrderDetail.tsx:549 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:490 +#: src/pages/sales/ReturnOrderDetail.tsx:501 +#: src/pages/sales/SalesOrderDetail.tsx:554 msgid "Order Actions" msgstr "" -#: src/pages/sales/ReturnOrderDetail.tsx:114 -#: src/pages/sales/SalesOrderDetail.tsx:104 -#: src/pages/sales/SalesOrderShipmentDetail.tsx:134 +#: src/pages/sales/ReturnOrderDetail.tsx:115 +#: src/pages/sales/SalesOrderDetail.tsx:105 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:132 #: src/tables/sales/SalesOrderTable.tsx:141 msgid "Customer Reference" msgstr "" -#: src/pages/sales/ReturnOrderDetail.tsx:195 +#: src/pages/sales/ReturnOrderDetail.tsx:196 msgid "Return Address" msgstr "" -#: src/pages/sales/ReturnOrderDetail.tsx:201 -#: src/pages/sales/SalesOrderDetail.tsx:194 -#: src/pages/sales/SalesOrderShipmentDetail.tsx:181 +#: src/pages/sales/ReturnOrderDetail.tsx:202 +#: src/pages/sales/SalesOrderDetail.tsx:195 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:179 msgid "Not specified" msgstr "" @@ -8248,117 +8346,117 @@ msgstr "" #~ msgid "Order canceled" #~ msgstr "Order canceled" -#: src/pages/sales/ReturnOrderDetail.tsx:389 +#: src/pages/sales/ReturnOrderDetail.tsx:394 msgid "Edit Return Order" msgstr "" -#: src/pages/sales/ReturnOrderDetail.tsx:407 +#: src/pages/sales/ReturnOrderDetail.tsx:412 #: src/tables/sales/ReturnOrderTable.tsx:154 #: src/tables/sales/ReturnOrderTable.tsx:167 msgid "Add Return Order" msgstr "" -#: src/pages/sales/ReturnOrderDetail.tsx:416 +#: src/pages/sales/ReturnOrderDetail.tsx:421 msgid "Issue Return Order" msgstr "" -#: src/pages/sales/ReturnOrderDetail.tsx:424 +#: src/pages/sales/ReturnOrderDetail.tsx:429 msgid "Cancel Return Order" msgstr "" -#: src/pages/sales/ReturnOrderDetail.tsx:432 +#: src/pages/sales/ReturnOrderDetail.tsx:437 msgid "Hold Return Order" msgstr "" -#: src/pages/sales/ReturnOrderDetail.tsx:440 +#: src/pages/sales/ReturnOrderDetail.tsx:445 msgid "Complete Return Order" msgstr "" -#: src/pages/sales/SalesOrderDetail.tsx:153 +#: src/pages/sales/SalesOrderDetail.tsx:154 msgid "Completed Shipments" msgstr "" -#: src/pages/sales/SalesOrderDetail.tsx:188 -#: src/pages/sales/SalesOrderShipmentDetail.tsx:170 +#: src/pages/sales/SalesOrderDetail.tsx:189 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:168 msgid "Shipping Address" msgstr "" -#: src/pages/sales/SalesOrderDetail.tsx:316 +#: src/pages/sales/SalesOrderDetail.tsx:317 msgid "Edit Sales Order" msgstr "" -#: src/pages/sales/SalesOrderDetail.tsx:338 +#: src/pages/sales/SalesOrderDetail.tsx:339 #: src/tables/sales/SalesOrderTable.tsx:108 #: src/tables/sales/SalesOrderTable.tsx:121 msgid "Add Sales Order" msgstr "" -#: src/pages/sales/SalesOrderDetail.tsx:396 +#: src/pages/sales/SalesOrderDetail.tsx:397 #: src/tables/sales/SalesOrderTable.tsx:147 msgid "Shipments" msgstr "" -#: src/pages/sales/SalesOrderDetail.tsx:443 +#: src/pages/sales/SalesOrderDetail.tsx:448 msgid "Issue Sales Order" msgstr "" -#: src/pages/sales/SalesOrderDetail.tsx:451 +#: src/pages/sales/SalesOrderDetail.tsx:456 msgid "Cancel Sales Order" msgstr "" -#: src/pages/sales/SalesOrderDetail.tsx:459 +#: src/pages/sales/SalesOrderDetail.tsx:464 msgid "Hold Sales Order" msgstr "" -#: src/pages/sales/SalesOrderDetail.tsx:467 +#: src/pages/sales/SalesOrderDetail.tsx:472 msgid "Ship Sales Order" msgstr "" -#: src/pages/sales/SalesOrderDetail.tsx:469 +#: src/pages/sales/SalesOrderDetail.tsx:474 msgid "Ship this order?" msgstr "" -#: src/pages/sales/SalesOrderDetail.tsx:470 +#: src/pages/sales/SalesOrderDetail.tsx:475 msgid "Order shipped" msgstr "" -#: src/pages/sales/SalesOrderDetail.tsx:478 +#: src/pages/sales/SalesOrderDetail.tsx:483 msgid "Complete Sales Order" msgstr "" -#: src/pages/sales/SalesOrderDetail.tsx:523 +#: src/pages/sales/SalesOrderDetail.tsx:528 msgid "Ship Order" msgstr "" -#: src/pages/sales/SalesOrderShipmentDetail.tsx:142 -#: src/tables/sales/SalesOrderShipmentTable.tsx:135 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:140 +#: src/tables/sales/SalesOrderShipmentTable.tsx:156 msgid "Shipment Reference" msgstr "" -#: src/pages/sales/SalesOrderShipmentDetail.tsx:148 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:146 msgid "Tracking Number" msgstr "" -#: src/pages/sales/SalesOrderShipmentDetail.tsx:156 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:154 msgid "Invoice Number" msgstr "" -#: src/pages/sales/SalesOrderShipmentDetail.tsx:191 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:189 msgid "Allocated Items" msgstr "" -#: src/pages/sales/SalesOrderShipmentDetail.tsx:196 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:194 msgid "Checked By" msgstr "" -#: src/pages/sales/SalesOrderShipmentDetail.tsx:202 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:200 msgid "Not checked" msgstr "" -#: src/pages/sales/SalesOrderShipmentDetail.tsx:208 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:206 #: src/tables/ColumnRenderers.tsx:518 #: src/tables/sales/SalesOrderAllocationTable.tsx:182 -#: src/tables/sales/SalesOrderShipmentTable.tsx:168 +#: src/tables/sales/SalesOrderShipmentTable.tsx:189 msgid "Shipment Date" msgstr "" @@ -8366,108 +8464,82 @@ msgstr "" #~ msgid "Assigned Items" #~ msgstr "Assigned Items" -#: src/pages/sales/SalesOrderShipmentDetail.tsx:216 -#: src/tables/sales/SalesOrderShipmentTable.tsx:172 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:214 +#: src/tables/sales/SalesOrderShipmentTable.tsx:193 msgid "Delivery Date" msgstr "" -#: src/pages/sales/SalesOrderShipmentDetail.tsx:255 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:253 msgid "Shipment Details" msgstr "" -#: src/pages/sales/SalesOrderShipmentDetail.tsx:294 -#: src/pages/sales/SalesOrderShipmentDetail.tsx:438 -#: src/tables/sales/SalesOrderShipmentTable.tsx:90 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:292 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:406 +#: src/tables/sales/SalesOrderShipmentTable.tsx:97 msgid "Edit Shipment" msgstr "" -#: src/pages/sales/SalesOrderShipmentDetail.tsx:301 -#: src/pages/sales/SalesOrderShipmentDetail.tsx:457 -#: src/tables/sales/SalesOrderShipmentTable.tsx:82 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:299 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:425 +#: src/tables/sales/SalesOrderShipmentTable.tsx:89 msgid "Cancel Shipment" msgstr "" -#: src/pages/sales/SalesOrderShipmentDetail.tsx:314 -#: src/tables/sales/SalesOrderShipmentTable.tsx:98 -#: src/tables/sales/SalesOrderShipmentTable.tsx:193 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:312 +#: src/tables/sales/SalesOrderShipmentTable.tsx:119 +#: src/tables/sales/SalesOrderShipmentTable.tsx:238 msgid "Complete Shipment" msgstr "" -#: src/pages/sales/SalesOrderShipmentDetail.tsx:326 -#: src/pages/sales/SalesOrderShipmentDetail.tsx:328 -msgid "Check Shipment" -msgstr "" - -#: src/pages/sales/SalesOrderShipmentDetail.tsx:329 -msgid "Marking the shipment as checked indicates that you have verified that all items included in this shipment are correct" -msgstr "" - #: src/pages/sales/SalesOrderShipmentDetail.tsx:339 -msgid "Shipment marked as checked" -msgstr "" - -#: src/pages/sales/SalesOrderShipmentDetail.tsx:346 -#: src/pages/sales/SalesOrderShipmentDetail.tsx:348 -msgid "Uncheck Shipment" -msgstr "" - -#: src/pages/sales/SalesOrderShipmentDetail.tsx:349 -msgid "Marking the shipment as unchecked indicates that the shipment requires further verification" -msgstr "" - -#: src/pages/sales/SalesOrderShipmentDetail.tsx:359 -msgid "Shipment marked as unchecked" -msgstr "" - -#: src/pages/sales/SalesOrderShipmentDetail.tsx:371 #: src/tables/part/PartPurchaseOrdersTable.tsx:122 msgid "Pending" msgstr "Tertunda" -#: src/pages/sales/SalesOrderShipmentDetail.tsx:377 -#: src/tables/sales/SalesOrderShipmentTable.tsx:147 -#: src/tables/sales/SalesOrderShipmentTable.tsx:254 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:345 +#: src/tables/sales/SalesOrderShipmentTable.tsx:168 +#: src/tables/sales/SalesOrderShipmentTable.tsx:299 msgid "Checked" msgstr "" -#: src/pages/sales/SalesOrderShipmentDetail.tsx:383 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:351 msgid "Not Checked" msgstr "" -#: src/pages/sales/SalesOrderShipmentDetail.tsx:389 -#: src/tables/sales/SalesOrderShipmentTable.tsx:154 -#: src/tables/sales/SalesOrderShipmentTable.tsx:259 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:357 +#: src/tables/sales/SalesOrderShipmentTable.tsx:175 +#: src/tables/sales/SalesOrderShipmentTable.tsx:304 msgid "Shipped" msgstr "" -#: src/pages/sales/SalesOrderShipmentDetail.tsx:395 -#: src/tables/sales/SalesOrderShipmentTable.tsx:161 -#: src/tables/sales/SalesOrderShipmentTable.tsx:264 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:363 +#: src/tables/sales/SalesOrderShipmentTable.tsx:182 +#: src/tables/sales/SalesOrderShipmentTable.tsx:309 #: src/tables/settings/EmailTable.tsx:31 msgid "Delivered" msgstr "" -#: src/pages/sales/SalesOrderShipmentDetail.tsx:410 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:378 msgid "Send Shipment" msgstr "" -#: src/pages/sales/SalesOrderShipmentDetail.tsx:433 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:401 msgid "Shipment Actions" msgstr "" -#: src/pages/sales/SalesOrderShipmentDetail.tsx:442 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:410 msgid "Check" msgstr "" -#: src/pages/sales/SalesOrderShipmentDetail.tsx:443 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:411 msgid "Mark shipment as checked" msgstr "" -#: src/pages/sales/SalesOrderShipmentDetail.tsx:449 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:417 msgid "Uncheck" msgstr "" -#: src/pages/sales/SalesOrderShipmentDetail.tsx:450 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:418 msgid "Mark shipment as unchecked" msgstr "" @@ -8775,13 +8847,6 @@ msgstr "" msgid "Part is not active" msgstr "" -#: src/tables/ColumnRenderers.tsx:73 -#: src/tables/bom/BomTable.tsx:657 -#: src/tables/part/PartParameterTable.tsx:227 -#: src/tables/part/PartTestTemplateTable.tsx:258 -msgid "Part is Locked" -msgstr "" - #: src/tables/ColumnRenderers.tsx:78 msgid "You are subscribed to notifications for this part" msgstr "" @@ -9219,13 +9284,13 @@ msgstr "" #~ msgstr "Show asssmbled items" #: src/tables/bom/BomTable.tsx:315 -#: src/tables/build/BuildLineTable.tsx:276 +#: src/tables/build/BuildLineTable.tsx:277 #: src/tables/part/PartTable.tsx:145 msgid "External stock" msgstr "" #: src/tables/bom/BomTable.tsx:323 -#: src/tables/build/BuildLineTable.tsx:239 +#: src/tables/build/BuildLineTable.tsx:240 msgid "Includes substitute stock" msgstr "" @@ -9234,7 +9299,7 @@ msgstr "" #~ msgstr "Edit Bom Item" #: src/tables/bom/BomTable.tsx:332 -#: src/tables/build/BuildLineTable.tsx:249 +#: src/tables/build/BuildLineTable.tsx:250 #: src/tables/sales/SalesOrderLineItemTable.tsx:166 msgid "Includes variant stock" msgstr "" @@ -9272,8 +9337,8 @@ msgid "Stock Information" msgstr "" #: src/tables/bom/BomTable.tsx:399 -#: src/tables/build/BuildLineTable.tsx:496 -#: src/tables/build/BuildLineTable.tsx:537 +#: src/tables/build/BuildLineTable.tsx:497 +#: src/tables/build/BuildLineTable.tsx:538 msgid "Consumable item" msgstr "" @@ -9282,7 +9347,7 @@ msgid "No available stock" msgstr "" #: src/tables/bom/BomTable.tsx:420 -#: src/tables/build/BuildLineTable.tsx:213 +#: src/tables/build/BuildLineTable.tsx:214 msgid "Show testable items" msgstr "" @@ -9291,7 +9356,7 @@ msgid "Show trackable items" msgstr "" #: src/tables/bom/BomTable.tsx:430 -#: src/tables/build/BuildLineTable.tsx:208 +#: src/tables/build/BuildLineTable.tsx:209 msgid "Show assembled items" msgstr "" @@ -9335,7 +9400,7 @@ msgstr "" #: src/tables/bom/BomTable.tsx:464 #: src/tables/bom/UsedInTable.tsx:85 -#: src/tables/build/BuildLineTable.tsx:202 +#: src/tables/build/BuildLineTable.tsx:203 msgid "Optional" msgstr "" @@ -9345,7 +9410,7 @@ msgid "Show optional items" msgstr "" #: src/tables/bom/BomTable.tsx:469 -#: src/tables/build/BuildLineTable.tsx:197 +#: src/tables/build/BuildLineTable.tsx:198 msgid "Consumable" msgstr "" @@ -9420,6 +9485,7 @@ msgid "Add a single BOM item" msgstr "" #: src/tables/bom/BomTable.tsx:637 +#: src/tables/general/ParameterTable.tsx:206 #: src/tables/part/PartTable.tsx:546 msgid "Import from File" msgstr "" @@ -9433,8 +9499,8 @@ msgid "Bill of materials cannot be edited, as the part is locked" msgstr "" #: src/tables/bom/UsedInTable.tsx:34 -#: src/tables/build/BuildLineTable.tsx:207 -#: src/tables/part/ParametricPartTable.tsx:364 +#: src/tables/build/BuildLineTable.tsx:208 +#: src/tables/part/ParametricPartTable.tsx:29 #: src/tables/part/PartBuildAllocationsTable.tsx:60 #: src/tables/part/PartTable.tsx:209 #: src/tables/stock/StockItemTable.tsx:333 @@ -9455,11 +9521,11 @@ msgstr "" msgid "Show trackable assemblies" msgstr "" -#: src/tables/build/BuildAllocatedStockTable.tsx:67 +#: src/tables/build/BuildAllocatedStockTable.tsx:64 msgid "Allocated to Output" msgstr "" -#: src/tables/build/BuildAllocatedStockTable.tsx:68 +#: src/tables/build/BuildAllocatedStockTable.tsx:65 msgid "Show items allocated to a build output" msgstr "" @@ -9472,50 +9538,68 @@ msgstr "" #~ msgid "Include orders for part variants" #~ msgstr "Include orders for part variants" -#: src/tables/build/BuildAllocatedStockTable.tsx:97 +#: src/tables/build/BuildAllocatedStockTable.tsx:94 #: src/tables/part/PartBuildAllocationsTable.tsx:84 #: src/tables/part/PartPurchaseOrdersTable.tsx:132 #: src/tables/part/PartSalesAllocationsTable.tsx:69 #: src/tables/sales/SalesOrderAllocationTable.tsx:122 -#: src/tables/sales/SalesOrderShipmentTable.tsx:130 +#: src/tables/sales/SalesOrderShipmentTable.tsx:151 msgid "Order Status" msgstr "" +#: src/tables/build/BuildAllocatedStockTable.tsx:164 +#: src/tables/build/BuildLineTable.tsx:651 +msgid "Edit Stock Allocation" +msgstr "" + #: src/tables/build/BuildAllocatedStockTable.tsx:164 #~ msgid "Edit Build Item" #~ msgstr "Edit Build Item" -#: src/tables/build/BuildAllocatedStockTable.tsx:167 -#: src/tables/build/BuildLineTable.tsx:650 -msgid "Edit Stock Allocation" -msgstr "" - #: src/tables/build/BuildAllocatedStockTable.tsx:174 #~ msgid "Delete Build Item" #~ msgstr "Delete Build Item" -#: src/tables/build/BuildAllocatedStockTable.tsx:180 -#: src/tables/build/BuildLineTable.tsx:663 -msgid "Delete Stock Allocation" +#: src/tables/build/BuildAllocatedStockTable.tsx:177 +#: src/tables/build/BuildLineTable.tsx:664 +#: src/tables/sales/SalesOrderAllocationTable.tsx:218 +msgid "Remove Allocated Stock" msgstr "" -#: src/tables/build/BuildAllocatedStockTable.tsx:239 +#: src/tables/build/BuildAllocatedStockTable.tsx:180 +#: src/tables/build/BuildLineTable.tsx:663 +#~ msgid "Delete Stock Allocation" +#~ msgstr "Delete Stock Allocation" + +#: src/tables/build/BuildAllocatedStockTable.tsx:182 +#: src/tables/build/BuildLineTable.tsx:669 +#: src/tables/sales/SalesOrderAllocationTable.tsx:221 +msgid "Are you sure you want to remove this allocated stock from the order?" +msgstr "" + +#: src/tables/build/BuildAllocatedStockTable.tsx:242 msgid "Consume" msgstr "" +#: src/tables/build/BuildAllocatedStockTable.tsx:259 +#: src/tables/build/BuildLineTable.tsx:112 +#: src/tables/sales/SalesOrderAllocationTable.tsx:248 +msgid "Remove allocated stock" +msgstr "" + #: src/tables/build/BuildLineTable.tsx:59 #~ msgid "Show lines with available stock" #~ msgstr "Show lines with available stock" -#: src/tables/build/BuildLineTable.tsx:120 +#: src/tables/build/BuildLineTable.tsx:121 msgid "View Stock Item" msgstr "" -#: src/tables/build/BuildLineTable.tsx:183 +#: src/tables/build/BuildLineTable.tsx:184 msgid "Show fully allocated lines" msgstr "" -#: src/tables/build/BuildLineTable.tsx:188 +#: src/tables/build/BuildLineTable.tsx:189 msgid "Show fully consumed lines" msgstr "" @@ -9523,124 +9607,124 @@ msgstr "" #~ msgid "Show allocated lines" #~ msgstr "Show allocated lines" -#: src/tables/build/BuildLineTable.tsx:193 +#: src/tables/build/BuildLineTable.tsx:194 msgid "Show items with sufficient available stock" msgstr "" -#: src/tables/build/BuildLineTable.tsx:198 +#: src/tables/build/BuildLineTable.tsx:199 msgid "Show consumable lines" msgstr "" -#: src/tables/build/BuildLineTable.tsx:203 +#: src/tables/build/BuildLineTable.tsx:204 msgid "Show optional lines" msgstr "" -#: src/tables/build/BuildLineTable.tsx:212 +#: src/tables/build/BuildLineTable.tsx:213 #: src/tables/part/PartTable.tsx:233 msgid "Testable" msgstr "" -#: src/tables/build/BuildLineTable.tsx:217 +#: src/tables/build/BuildLineTable.tsx:218 #: src/tables/stock/StockItemTable.tsx:388 msgid "Tracked" msgstr "" -#: src/tables/build/BuildLineTable.tsx:218 +#: src/tables/build/BuildLineTable.tsx:219 msgid "Show tracked lines" msgstr "" -#: src/tables/build/BuildLineTable.tsx:223 +#: src/tables/build/BuildLineTable.tsx:224 msgid "Show items with stock on order" msgstr "" -#: src/tables/build/BuildLineTable.tsx:258 +#: src/tables/build/BuildLineTable.tsx:259 #: src/tables/sales/SalesOrderLineItemTable.tsx:172 msgid "In production" msgstr "" -#: src/tables/build/BuildLineTable.tsx:286 +#: src/tables/build/BuildLineTable.tsx:287 msgid "Insufficient stock" msgstr "" -#: src/tables/build/BuildLineTable.tsx:302 +#: src/tables/build/BuildLineTable.tsx:303 #: src/tables/sales/SalesOrderLineItemTable.tsx:160 #: src/tables/stock/StockItemTable.tsx:191 msgid "No stock available" msgstr "" -#: src/tables/build/BuildLineTable.tsx:375 +#: src/tables/build/BuildLineTable.tsx:376 msgid "Gets Inherited" msgstr "" -#: src/tables/build/BuildLineTable.tsx:388 +#: src/tables/build/BuildLineTable.tsx:389 msgid "Unit Quantity" msgstr "" -#: src/tables/build/BuildLineTable.tsx:415 +#: src/tables/build/BuildLineTable.tsx:416 msgid "Setup Quantity" msgstr "" -#: src/tables/build/BuildLineTable.tsx:424 +#: src/tables/build/BuildLineTable.tsx:425 msgid "Attrition" msgstr "" -#: src/tables/build/BuildLineTable.tsx:432 +#: src/tables/build/BuildLineTable.tsx:433 msgid "Rounding Multiple" msgstr "" -#: src/tables/build/BuildLineTable.tsx:441 +#: src/tables/build/BuildLineTable.tsx:442 msgid "BOM Information" msgstr "" -#: src/tables/build/BuildLineTable.tsx:515 +#: src/tables/build/BuildLineTable.tsx:516 #: src/tables/part/PartBuildAllocationsTable.tsx:102 msgid "Fully allocated" msgstr "" -#: src/tables/build/BuildLineTable.tsx:563 +#: src/tables/build/BuildLineTable.tsx:564 #: src/tables/sales/SalesOrderLineItemTable.tsx:311 msgid "Create Build Order" msgstr "" -#: src/tables/build/BuildLineTable.tsx:592 +#: src/tables/build/BuildLineTable.tsx:593 msgid "Auto allocation in progress" msgstr "" -#: src/tables/build/BuildLineTable.tsx:595 -#: src/tables/build/BuildLineTable.tsx:802 +#: src/tables/build/BuildLineTable.tsx:596 +#: src/tables/build/BuildLineTable.tsx:809 msgid "Auto Allocate Stock" msgstr "" -#: src/tables/build/BuildLineTable.tsx:596 +#: src/tables/build/BuildLineTable.tsx:597 msgid "Automatically allocate stock to this build according to the selected options" msgstr "" -#: src/tables/build/BuildLineTable.tsx:616 -#: src/tables/build/BuildLineTable.tsx:630 -#: src/tables/build/BuildLineTable.tsx:751 -#: src/tables/build/BuildLineTable.tsx:852 +#: src/tables/build/BuildLineTable.tsx:617 +#: src/tables/build/BuildLineTable.tsx:631 +#: src/tables/build/BuildLineTable.tsx:758 +#: src/tables/build/BuildLineTable.tsx:859 #: src/tables/build/BuildOutputTable.tsx:355 #: src/tables/build/BuildOutputTable.tsx:360 msgid "Deallocate Stock" msgstr "" -#: src/tables/build/BuildLineTable.tsx:632 +#: src/tables/build/BuildLineTable.tsx:633 msgid "Deallocate all untracked stock for this build order" msgstr "" -#: src/tables/build/BuildLineTable.tsx:634 +#: src/tables/build/BuildLineTable.tsx:635 msgid "Deallocate stock from the selected line item" msgstr "" -#: src/tables/build/BuildLineTable.tsx:638 +#: src/tables/build/BuildLineTable.tsx:639 msgid "Stock has been deallocated" msgstr "" -#: src/tables/build/BuildLineTable.tsx:771 +#: src/tables/build/BuildLineTable.tsx:778 msgid "Build Stock" msgstr "" -#: src/tables/build/BuildLineTable.tsx:784 +#: src/tables/build/BuildLineTable.tsx:791 #: src/tables/sales/SalesOrderLineItemTable.tsx:487 msgid "View Part" msgstr "" @@ -9739,7 +9823,7 @@ msgid "Serialize Build Output" msgstr "" #: src/tables/build/BuildOutputTable.tsx:405 -#: src/tables/part/PartTestResultTable.tsx:310 +#: src/tables/part/PartTestResultTable.tsx:318 #: src/tables/stock/StockItemTable.tsx:328 msgid "Filter by stock status" msgstr "" @@ -9964,8 +10048,8 @@ msgid "View Item" msgstr "" #: src/tables/general/ExtraLineItemTable.tsx:95 -#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:299 -#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:403 +#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:300 +#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:405 #: src/tables/sales/ReturnOrderLineItemTable.tsx:83 #: src/tables/sales/ReturnOrderLineItemTable.tsx:187 #: src/tables/sales/SalesOrderLineItemTable.tsx:252 @@ -9974,14 +10058,14 @@ msgid "Add Line Item" msgstr "" #: src/tables/general/ExtraLineItemTable.tsx:108 -#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:320 +#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:322 #: src/tables/sales/ReturnOrderLineItemTable.tsx:96 #: src/tables/sales/SalesOrderLineItemTable.tsx:271 msgid "Edit Line Item" msgstr "" #: src/tables/general/ExtraLineItemTable.tsx:117 -#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:329 +#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:331 #: src/tables/sales/ReturnOrderLineItemTable.tsx:105 #: src/tables/sales/SalesOrderLineItemTable.tsx:280 msgid "Delete Line Item" @@ -9991,6 +10075,137 @@ msgstr "" msgid "Add Extra Line Item" msgstr "" +#: src/tables/general/ParameterTable.tsx:88 +msgid "Internal Units" +msgstr "" + +#: src/tables/general/ParameterTable.tsx:108 +#: src/tables/general/ParameterTable.tsx:123 +msgid "Updated By" +msgstr "" + +#: src/tables/general/ParameterTable.tsx:118 +msgid "Show parameters for enabled templates" +msgstr "" + +#: src/tables/general/ParameterTable.tsx:124 +msgid "Filter by user who last updated the parameter" +msgstr "" + +#: src/tables/general/ParameterTable.tsx:154 +msgid "Import Parameters" +msgstr "" + +#: src/tables/general/ParameterTable.tsx:164 +#: src/tables/general/ParametricDataTable.tsx:261 +#: src/tables/general/ParametricDataTable.tsx:392 +msgid "Add Parameter" +msgstr "" + +#: src/tables/general/ParameterTable.tsx:175 +#: src/tables/general/ParameterTable.tsx:222 +#: src/tables/general/ParametricDataTable.tsx:285 +msgid "Edit Parameter" +msgstr "" + +#: src/tables/general/ParameterTable.tsx:183 +#: src/tables/general/ParameterTable.tsx:230 +msgid "Delete Parameter" +msgstr "" + +#: src/tables/general/ParameterTable.tsx:191 +msgid "Add Parameters" +msgstr "" + +#: src/tables/general/ParameterTable.tsx:197 +msgid "Create Parameter" +msgstr "" + +#: src/tables/general/ParameterTable.tsx:199 +msgid "Create a new parameter" +msgstr "" + +#: src/tables/general/ParameterTable.tsx:208 +msgid "Import parameters from a file" +msgstr "" + +#: src/tables/general/ParameterTemplateTable.tsx:48 +#: src/tables/general/ParameterTemplateTable.tsx:197 +msgid "Add Parameter Template" +msgstr "" + +#: src/tables/general/ParameterTemplateTable.tsx:64 +msgid "Duplicate Parameter Template" +msgstr "" + +#: src/tables/general/ParameterTemplateTable.tsx:78 +msgid "Delete Parameter Template" +msgstr "" + +#: src/tables/general/ParameterTemplateTable.tsx:85 +msgid "Edit Parameter Template" +msgstr "" + +#: src/tables/general/ParameterTemplateTable.tsx:138 +msgid "Checkbox" +msgstr "" + +#: src/tables/general/ParameterTemplateTable.tsx:139 +msgid "Show checkbox templates" +msgstr "" + +#: src/tables/general/ParameterTemplateTable.tsx:143 +msgid "Has choices" +msgstr "" + +#: src/tables/general/ParameterTemplateTable.tsx:144 +msgid "Show templates with choices" +msgstr "" + +#: src/tables/general/ParameterTemplateTable.tsx:148 +#: src/tables/part/PartTable.tsx:245 +msgid "Has Units" +msgstr "" + +#: src/tables/general/ParameterTemplateTable.tsx:149 +msgid "Show templates with units" +msgstr "" + +#: src/tables/general/ParameterTemplateTable.tsx:154 +msgid "Show enabled templates" +msgstr "" + +#: src/tables/general/ParameterTemplateTable.tsx:158 +#: src/tables/settings/ImportSessionTable.tsx:111 +#: src/tables/settings/TemplateTable.tsx:368 +msgid "Model Type" +msgstr "" + +#: src/tables/general/ParameterTemplateTable.tsx:159 +msgid "Filter by model type" +msgstr "" + +#: src/tables/general/ParametricDataTable.tsx:79 +msgid "Click to edit" +msgstr "" + +#: src/tables/general/ParametricDataTableFilters.tsx:36 +msgid "True" +msgstr "" + +#: src/tables/general/ParametricDataTableFilters.tsx:37 +msgid "False" +msgstr "" + +#: src/tables/general/ParametricDataTableFilters.tsx:47 +#: src/tables/general/ParametricDataTableFilters.tsx:80 +msgid "Select a choice" +msgstr "" + +#: src/tables/general/ParametricDataTableFilters.tsx:100 +msgid "Enter a value" +msgstr "" + #: src/tables/machine/MachineListTable.tsx:133 msgid "Machine restarted" msgstr "" @@ -10071,7 +10286,7 @@ msgid "Initialized" msgstr "" #: src/tables/machine/MachineListTable.tsx:410 -#: src/tables/machine/MachineTypeTable.tsx:307 +#: src/tables/machine/MachineTypeTable.tsx:305 msgid "No errors reported" msgstr "" @@ -10132,15 +10347,15 @@ msgstr "" #~ msgid "Machine type information" #~ msgstr "Machine type information" -#: src/tables/machine/MachineTypeTable.tsx:128 +#: src/tables/machine/MachineTypeTable.tsx:126 msgid "Not Found" msgstr "" -#: src/tables/machine/MachineTypeTable.tsx:131 +#: src/tables/machine/MachineTypeTable.tsx:129 msgid "Machine type not found." msgstr "" -#: src/tables/machine/MachineTypeTable.tsx:141 +#: src/tables/machine/MachineTypeTable.tsx:139 msgid "Machine Type Information" msgstr "" @@ -10148,34 +10363,34 @@ msgstr "" #~ msgid "Available drivers" #~ msgstr "Available drivers" -#: src/tables/machine/MachineTypeTable.tsx:156 -#: src/tables/machine/MachineTypeTable.tsx:255 +#: src/tables/machine/MachineTypeTable.tsx:154 +#: src/tables/machine/MachineTypeTable.tsx:253 msgid "Slug" msgstr "" -#: src/tables/machine/MachineTypeTable.tsx:167 -#: src/tables/machine/MachineTypeTable.tsx:276 +#: src/tables/machine/MachineTypeTable.tsx:165 +#: src/tables/machine/MachineTypeTable.tsx:274 msgid "Provider plugin" msgstr "" -#: src/tables/machine/MachineTypeTable.tsx:179 -#: src/tables/machine/MachineTypeTable.tsx:288 +#: src/tables/machine/MachineTypeTable.tsx:177 +#: src/tables/machine/MachineTypeTable.tsx:286 msgid "Provider file" msgstr "" -#: src/tables/machine/MachineTypeTable.tsx:194 +#: src/tables/machine/MachineTypeTable.tsx:192 msgid "Available Drivers" msgstr "" -#: src/tables/machine/MachineTypeTable.tsx:234 +#: src/tables/machine/MachineTypeTable.tsx:232 msgid "Machine driver not found." msgstr "" -#: src/tables/machine/MachineTypeTable.tsx:242 +#: src/tables/machine/MachineTypeTable.tsx:240 msgid "Machine driver information" msgstr "" -#: src/tables/machine/MachineTypeTable.tsx:262 +#: src/tables/machine/MachineTypeTable.tsx:260 msgid "Machine type" msgstr "" @@ -10187,15 +10402,15 @@ msgstr "" #~ msgid "Machine driver detail" #~ msgstr "Machine driver detail" -#: src/tables/machine/MachineTypeTable.tsx:362 +#: src/tables/machine/MachineTypeTable.tsx:360 msgid "Builtin type" msgstr "" -#: src/tables/machine/MachineTypeTable.tsx:371 +#: src/tables/machine/MachineTypeTable.tsx:369 msgid "Machine Type Detail" msgstr "" -#: src/tables/machine/MachineTypeTable.tsx:381 +#: src/tables/machine/MachineTypeTable.tsx:379 msgid "Machine Driver Detail" msgstr "" @@ -10213,8 +10428,16 @@ msgstr "Notifikasi" msgid "Message" msgstr "" -#: src/tables/part/ParametricPartTable.tsx:78 -msgid "Click to edit" +#: src/tables/part/ParametricPartTable.tsx:20 +msgid "Show active parts" +msgstr "" + +#: src/tables/part/ParametricPartTable.tsx:25 +msgid "Show locked parts" +msgstr "" + +#: src/tables/part/ParametricPartTable.tsx:30 +msgid "Show assembly parts" msgstr "" #: src/tables/part/ParametricPartTable.tsx:82 @@ -10222,43 +10445,14 @@ msgstr "" #~ msgstr "Edit parameter" #: src/tables/part/ParametricPartTable.tsx:244 -msgid "Add Part Parameter" -msgstr "" +#~ msgid "Add Part Parameter" +#~ msgstr "Add Part Parameter" #: src/tables/part/ParametricPartTable.tsx:258 #: src/tables/part/PartParameterTable.tsx:164 #: src/tables/part/PartParameterTable.tsx:187 -msgid "Edit Part Parameter" -msgstr "" - -#: src/tables/part/ParametricPartTable.tsx:355 -msgid "Show active parts" -msgstr "" - -#: src/tables/part/ParametricPartTable.tsx:360 -msgid "Show locked parts" -msgstr "" - -#: src/tables/part/ParametricPartTable.tsx:365 -msgid "Show assembly parts" -msgstr "" - -#: src/tables/part/ParametricPartTableFilters.tsx:36 -msgid "True" -msgstr "" - -#: src/tables/part/ParametricPartTableFilters.tsx:37 -msgid "False" -msgstr "" - -#: src/tables/part/ParametricPartTableFilters.tsx:47 -#: src/tables/part/ParametricPartTableFilters.tsx:80 -msgid "Select a choice" -msgstr "" - -#: src/tables/part/ParametricPartTableFilters.tsx:100 -msgid "Enter a value" -msgstr "" +#~ msgid "Edit Part Parameter" +#~ msgstr "Edit Part Parameter" #: src/tables/part/PartBuildAllocationsTable.tsx:64 msgid "Assembly IPN" @@ -10273,7 +10467,7 @@ msgid "Required Stock" msgstr "" #: src/tables/part/PartBuildAllocationsTable.tsx:124 -#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:381 +#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:383 msgid "View Build Order" msgstr "" @@ -10332,85 +10526,22 @@ msgstr "" msgid "Delete Category Parameter" msgstr "" -#: src/tables/part/PartCategoryTemplateTable.tsx:87 -msgid "Parameter Template" -msgstr "" - #: src/tables/part/PartCategoryTemplateTable.tsx:93 #~ msgid "[{0}]" #~ msgstr "[{0}]" -#: src/tables/part/PartParameterTable.tsx:108 -msgid "Internal Units" -msgstr "" - -#: src/tables/part/PartParameterTable.tsx:128 -#: src/tables/part/PartParameterTable.tsx:138 -msgid "Updated By" -msgstr "" - -#: src/tables/part/PartParameterTable.tsx:139 -msgid "Filter by user who last updated the parameter" -msgstr "" - #: src/tables/part/PartParameterTable.tsx:148 -msgid "New Part Parameter" -msgstr "" +#~ msgid "New Part Parameter" +#~ msgstr "New Part Parameter" #: src/tables/part/PartParameterTable.tsx:173 #: src/tables/part/PartParameterTable.tsx:195 -msgid "Delete Part Parameter" -msgstr "" +#~ msgid "Delete Part Parameter" +#~ msgstr "Delete Part Parameter" #: src/tables/part/PartParameterTable.tsx:213 -msgid "Add parameter" -msgstr "" - -#: src/tables/part/PartParameterTable.tsx:232 -msgid "Part parameters cannot be edited, as the part is locked" -msgstr "" - -#: src/tables/part/PartParameterTemplateTable.tsx:36 -msgid "Checkbox" -msgstr "" - -#: src/tables/part/PartParameterTemplateTable.tsx:37 -msgid "Show checkbox templates" -msgstr "" - -#: src/tables/part/PartParameterTemplateTable.tsx:41 -msgid "Has choices" -msgstr "" - -#: src/tables/part/PartParameterTemplateTable.tsx:42 -msgid "Show templates with choices" -msgstr "" - -#: src/tables/part/PartParameterTemplateTable.tsx:46 -#: src/tables/part/PartTable.tsx:245 -msgid "Has Units" -msgstr "" - -#: src/tables/part/PartParameterTemplateTable.tsx:47 -msgid "Show templates with units" -msgstr "" - -#: src/tables/part/PartParameterTemplateTable.tsx:91 -#: src/tables/part/PartParameterTemplateTable.tsx:166 -msgid "Add Parameter Template" -msgstr "" - -#: src/tables/part/PartParameterTemplateTable.tsx:105 -msgid "Duplicate Parameter Template" -msgstr "" - -#: src/tables/part/PartParameterTemplateTable.tsx:117 -msgid "Edit Parameter Template" -msgstr "" - -#: src/tables/part/PartParameterTemplateTable.tsx:128 -msgid "Delete Parameter Template" -msgstr "" +#~ msgid "Add parameter" +#~ msgstr "Add parameter" #: src/tables/part/PartParameterTemplateTable.tsx:141 #~ msgid "Add parameter template" @@ -10430,7 +10561,7 @@ msgid "Show received items" msgstr "" #: src/tables/part/PartSalesAllocationsTable.tsx:90 -#: src/tables/sales/SalesOrderShipmentTable.tsx:218 +#: src/tables/sales/SalesOrderShipmentTable.tsx:263 msgid "View Sales Order" msgstr "" @@ -10617,8 +10748,8 @@ msgstr "" #: src/tables/part/PartTestResultTable.tsx:103 #: src/tables/part/PartTestResultTable.tsx:181 -#: src/tables/part/PartTestResultTable.tsx:320 -#: src/tables/part/PartTestResultTable.tsx:334 +#: src/tables/part/PartTestResultTable.tsx:328 +#: src/tables/part/PartTestResultTable.tsx:342 #: src/tables/stock/StockItemTestResultTable.tsx:296 #: src/tables/stock/StockItemTestResultTable.tsx:368 #: src/tables/stock/StockItemTestResultTable.tsx:429 @@ -10643,7 +10774,7 @@ msgstr "" msgid "No Result" msgstr "" -#: src/tables/part/PartTestResultTable.tsx:298 +#: src/tables/part/PartTestResultTable.tsx:306 msgid "Show build outputs currently in production" msgstr "" @@ -11013,36 +11144,45 @@ msgstr "" #~ msgid "Parameter updated" #~ msgstr "Parameter updated" -#: src/tables/purchasing/ManufacturerPartParameterTable.tsx:63 -#: src/tables/purchasing/ManufacturerPartParameterTable.tsx:112 -msgid "Add Parameter" -msgstr "" - #: src/tables/purchasing/ManufacturerPartParameterTable.tsx:73 #~ msgid "Parameter deleted" #~ msgstr "Parameter deleted" -#: src/tables/purchasing/ManufacturerPartParameterTable.tsx:74 -msgid "Edit Parameter" -msgstr "" - #: src/tables/purchasing/ManufacturerPartParameterTable.tsx:74 #~ msgid "Are you sure you want to delete this parameter?" #~ msgstr "Are you sure you want to delete this parameter?" -#: src/tables/purchasing/ManufacturerPartParameterTable.tsx:82 -msgid "Delete Parameter" +#: src/tables/purchasing/ManufacturerPartParametricTable.tsx:34 +#: src/tables/purchasing/ManufacturerPartTable.tsx:82 +#: src/tables/purchasing/SupplierPartTable.tsx:99 +msgid "MPN" +msgstr "" + +#: src/tables/purchasing/ManufacturerPartParametricTable.tsx:44 +#: src/tables/purchasing/ManufacturerPartTable.tsx:134 +#: src/tables/purchasing/SupplierPartTable.tsx:220 +msgid "Active Part" +msgstr "" + +#: src/tables/purchasing/ManufacturerPartParametricTable.tsx:45 +#: src/tables/purchasing/ManufacturerPartTable.tsx:135 +msgid "Show manufacturer parts for active internal parts." +msgstr "" + +#: src/tables/purchasing/ManufacturerPartParametricTable.tsx:50 +#: src/tables/purchasing/ManufacturerPartTable.tsx:140 +msgid "Active Manufacturer" +msgstr "" + +#: src/tables/purchasing/ManufacturerPartParametricTable.tsx:51 +#: src/tables/purchasing/ManufacturerPartTable.tsx:142 +msgid "Show manufacturer parts for active manufacturers." msgstr "" #: src/tables/purchasing/ManufacturerPartTable.tsx:63 #~ msgid "Create Manufacturer Part" #~ msgstr "Create Manufacturer Part" -#: src/tables/purchasing/ManufacturerPartTable.tsx:82 -#: src/tables/purchasing/SupplierPartTable.tsx:99 -msgid "MPN" -msgstr "" - #: src/tables/purchasing/ManufacturerPartTable.tsx:100 #~ msgid "Manufacturer part updated" #~ msgstr "Manufacturer part updated" @@ -11055,25 +11195,8 @@ msgstr "" #~ msgid "Are you sure you want to remove this manufacturer part?" #~ msgstr "Are you sure you want to remove this manufacturer part?" -#: src/tables/purchasing/ManufacturerPartTable.tsx:134 -#: src/tables/purchasing/SupplierPartTable.tsx:220 -msgid "Active Part" -msgstr "" - -#: src/tables/purchasing/ManufacturerPartTable.tsx:135 -msgid "Show manufacturer parts for active internal parts." -msgstr "" - -#: src/tables/purchasing/ManufacturerPartTable.tsx:140 -msgid "Active Manufacturer" -msgstr "" - -#: src/tables/purchasing/ManufacturerPartTable.tsx:142 -msgid "Show manufacturer parts for active manufacturers." -msgstr "" - #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:115 -#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:397 +#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:399 msgid "Import Line Items" msgstr "" @@ -11099,11 +11222,11 @@ msgstr "" #~ msgid "Add line item" #~ msgstr "Add line item" -#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:350 +#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:352 msgid "Receive line item" msgstr "" -#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:414 +#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:416 msgid "Receive items" msgstr "" @@ -11201,25 +11324,25 @@ msgid "Not shipped" msgstr "" #: src/tables/sales/SalesOrderAllocationTable.tsx:211 -#: src/tables/sales/SalesOrderAllocationTable.tsx:229 +#: src/tables/sales/SalesOrderAllocationTable.tsx:235 msgid "Edit Allocation" msgstr "" #: src/tables/sales/SalesOrderAllocationTable.tsx:218 #: src/tables/sales/SalesOrderAllocationTable.tsx:241 -msgid "Delete Allocation" -msgstr "" +#~ msgid "Delete Allocation" +#~ msgstr "Delete Allocation" -#: src/tables/sales/SalesOrderAllocationTable.tsx:252 -#: src/tables/sales/SalesOrderAllocationTable.tsx:253 +#: src/tables/sales/SalesOrderAllocationTable.tsx:261 +#: src/tables/sales/SalesOrderAllocationTable.tsx:262 msgid "View Shipment" msgstr "" -#: src/tables/sales/SalesOrderAllocationTable.tsx:308 +#: src/tables/sales/SalesOrderAllocationTable.tsx:317 msgid "Assign to Shipment" msgstr "" -#: src/tables/sales/SalesOrderAllocationTable.tsx:324 +#: src/tables/sales/SalesOrderAllocationTable.tsx:333 msgid "Assign to shipment" msgstr "" @@ -11259,35 +11382,35 @@ msgstr "" #~ msgid "Delete Shipment" #~ msgstr "Delete Shipment" -#: src/tables/sales/SalesOrderShipmentTable.tsx:72 +#: src/tables/sales/SalesOrderShipmentTable.tsx:79 msgid "Create Shipment" msgstr "" -#: src/tables/sales/SalesOrderShipmentTable.tsx:143 +#: src/tables/sales/SalesOrderShipmentTable.tsx:164 msgid "Items" msgstr "" -#: src/tables/sales/SalesOrderShipmentTable.tsx:203 +#: src/tables/sales/SalesOrderShipmentTable.tsx:248 msgid "Edit shipment" msgstr "" -#: src/tables/sales/SalesOrderShipmentTable.tsx:211 +#: src/tables/sales/SalesOrderShipmentTable.tsx:256 msgid "Cancel shipment" msgstr "" -#: src/tables/sales/SalesOrderShipmentTable.tsx:241 +#: src/tables/sales/SalesOrderShipmentTable.tsx:286 msgid "Add shipment" msgstr "" -#: src/tables/sales/SalesOrderShipmentTable.tsx:255 +#: src/tables/sales/SalesOrderShipmentTable.tsx:300 msgid "Show shipments which have been checked" msgstr "" -#: src/tables/sales/SalesOrderShipmentTable.tsx:260 +#: src/tables/sales/SalesOrderShipmentTable.tsx:305 msgid "Show shipments which have been shipped" msgstr "" -#: src/tables/sales/SalesOrderShipmentTable.tsx:265 +#: src/tables/sales/SalesOrderShipmentTable.tsx:310 msgid "Show shipments which have been delivered" msgstr "" @@ -11621,11 +11744,6 @@ msgstr "" msgid "Imported Rows" msgstr "" -#: src/tables/settings/ImportSessionTable.tsx:111 -#: src/tables/settings/TemplateTable.tsx:368 -msgid "Model Type" -msgstr "" - #: src/tables/settings/ImportSessionTable.tsx:112 #: src/tables/settings/TemplateTable.tsx:369 msgid "Filter by target model type" diff --git a/src/frontend/src/locales/it/messages.po b/src/frontend/src/locales/it/messages.po index ee28ede359..395942f712 100644 --- a/src/frontend/src/locales/it/messages.po +++ b/src/frontend/src/locales/it/messages.po @@ -8,7 +8,7 @@ msgstr "" "Language: it\n" "Project-Id-Version: inventree\n" "Report-Msgid-Bugs-To: \n" -"PO-Revision-Date: 2025-11-19 19:39\n" +"PO-Revision-Date: 2025-12-07 07:36\n" "Last-Translator: \n" "Language-Team: Italian\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" @@ -30,7 +30,7 @@ msgid "Edit" msgstr "Modifica" #: lib/components/RowActions.tsx:56 -#: src/components/forms/ApiForm.tsx:735 +#: src/components/forms/ApiForm.tsx:754 #: src/components/items/ActionDropdown.tsx:257 #: src/components/items/RoleTable.tsx:155 #: src/hooks/UseForm.tsx:164 @@ -56,24 +56,24 @@ msgstr "Annulla" #: lib/components/RowActions.tsx:136 #: src/components/nav/NavigationDrawer.tsx:190 -#: src/forms/PurchaseOrderForms.tsx:802 +#: src/forms/PurchaseOrderForms.tsx:854 #: src/forms/StockForms.tsx:796 #: src/forms/StockForms.tsx:843 -#: src/forms/StockForms.tsx:889 -#: src/forms/StockForms.tsx:928 -#: src/forms/StockForms.tsx:964 -#: src/forms/StockForms.tsx:1050 +#: src/forms/StockForms.tsx:896 +#: src/forms/StockForms.tsx:942 +#: src/forms/StockForms.tsx:980 +#: src/forms/StockForms.tsx:1066 #: src/pages/Index/Settings/AccountSettings/MFASettings.tsx:962 msgid "Actions" msgstr "Azioni" #: lib/components/SearchInput.tsx:34 -#: src/components/forms/fields/RelatedModelField.tsx:408 +#: src/components/forms/fields/RelatedModelField.tsx:479 #: src/components/nav/Header.tsx:169 #: src/components/wizards/ImportPartWizard.tsx:200 #: src/components/wizards/ImportPartWizard.tsx:233 -#: src/pages/Index/Settings/UserSettings.tsx:74 -#: src/pages/part/PartDetail.tsx:1155 +#: src/pages/Index/Settings/UserSettings.tsx:75 +#: src/pages/part/PartDetail.tsx:1176 msgid "Search" msgstr "Ricerca" @@ -95,7 +95,7 @@ msgstr "Si" msgid "No" msgstr "No" -#: lib/enums/ModelInformation.tsx:28 +#: lib/enums/ModelInformation.tsx:29 #: src/components/wizards/OrderPartsWizard.tsx:279 #: src/forms/BuildForms.tsx:332 #: src/forms/BuildForms.tsx:407 @@ -103,208 +103,234 @@ msgstr "No" #: src/forms/BuildForms.tsx:630 #: src/forms/BuildForms.tsx:793 #: src/forms/BuildForms.tsx:896 -#: src/forms/PurchaseOrderForms.tsx:798 +#: src/forms/PurchaseOrderForms.tsx:850 #: src/forms/ReturnOrderForms.tsx:242 -#: src/forms/SalesOrderForms.tsx:305 +#: src/forms/SalesOrderForms.tsx:384 #: src/forms/StockForms.tsx:360 #: src/forms/StockForms.tsx:791 #: src/forms/StockForms.tsx:838 -#: src/forms/StockForms.tsx:884 -#: src/forms/StockForms.tsx:923 -#: src/forms/StockForms.tsx:959 -#: src/forms/StockForms.tsx:1002 -#: src/forms/StockForms.tsx:1046 -#: src/forms/StockForms.tsx:1094 -#: src/forms/StockForms.tsx:1138 -#: src/pages/build/BuildDetail.tsx:200 -#: src/pages/part/PartDetail.tsx:1207 +#: src/forms/StockForms.tsx:891 +#: src/forms/StockForms.tsx:937 +#: src/forms/StockForms.tsx:975 +#: src/forms/StockForms.tsx:1018 +#: src/forms/StockForms.tsx:1062 +#: src/forms/StockForms.tsx:1110 +#: src/forms/StockForms.tsx:1154 +#: src/pages/build/BuildDetail.tsx:201 +#: src/pages/part/PartDetail.tsx:1228 #: src/tables/ColumnRenderers.tsx:91 +#: src/tables/part/PartTestResultTable.tsx:247 #: src/tables/part/RelatedPartTable.tsx:53 #: src/tables/stock/StockTrackingTable.tsx:87 msgid "Part" msgstr "Articolo" -#: lib/enums/ModelInformation.tsx:29 +#: lib/enums/ModelInformation.tsx:30 #: lib/enums/Roles.tsx:35 #: src/components/nav/NavigationDrawer.tsx:70 #: src/defaults/links.tsx:36 -#: src/pages/Index/Settings/SystemSettings.tsx:190 -#: src/pages/part/CategoryDetail.tsx:132 -#: src/pages/part/CategoryDetail.tsx:277 -#: src/pages/part/CategoryDetail.tsx:323 -#: src/pages/part/CategoryDetail.tsx:354 -#: src/pages/part/PartDetail.tsx:965 +#: src/pages/Index/Settings/SystemSettings.tsx:197 +#: src/pages/part/CategoryDetail.tsx:135 +#: src/pages/part/CategoryDetail.tsx:285 +#: src/pages/part/CategoryDetail.tsx:340 +#: src/pages/part/CategoryDetail.tsx:371 +#: src/pages/part/PartDetail.tsx:978 msgid "Parts" msgstr "Articoli" #: lib/enums/ModelInformation.tsx:37 #: src/pages/Index/Settings/AdminCenter/PartParameterPanel.tsx:13 -msgid "Part Parameter Template" -msgstr "Modello parametro articolo" +#~ msgid "Part Parameter Template" +#~ msgstr "Part Parameter Template" #: lib/enums/ModelInformation.tsx:38 -msgid "Part Parameter Templates" -msgstr "Modelli parametro articolo" +#~ msgid "Part Parameter Templates" +#~ msgstr "Part Parameter Templates" + +#: lib/enums/ModelInformation.tsx:39 +msgid "Parameter" +msgstr "" + +#: lib/enums/ModelInformation.tsx:40 +#: src/components/panels/ParametersPanel.tsx:19 +#: src/components/wizards/ImportPartWizard.tsx:807 +#: src/pages/Index/Settings/AdminCenter/Index.tsx:195 +#: src/pages/Index/Settings/SystemSettings.tsx:191 +#: src/pages/part/PartDetail.tsx:943 +msgid "Parameters" +msgstr "Parametri" #: lib/enums/ModelInformation.tsx:45 +#: src/tables/part/PartCategoryTemplateTable.tsx:87 +msgid "Parameter Template" +msgstr "Modello Parametro" + +#: lib/enums/ModelInformation.tsx:46 +#: src/pages/Index/Settings/AdminCenter/ParameterPanel.tsx:13 +msgid "Parameter Templates" +msgstr "" + +#: lib/enums/ModelInformation.tsx:52 msgid "Part Test Template" msgstr "Modello Test Articolo" -#: lib/enums/ModelInformation.tsx:46 +#: lib/enums/ModelInformation.tsx:53 msgid "Part Test Templates" msgstr "Modelli Test Articolo" -#: lib/enums/ModelInformation.tsx:52 +#: lib/enums/ModelInformation.tsx:59 #: src/components/wizards/OrderPartsWizard.tsx:290 -#: src/pages/company/SupplierPartDetail.tsx:413 +#: src/pages/company/SupplierPartDetail.tsx:418 #: src/pages/stock/StockDetail.tsx:289 -#: src/tables/build/BuildAllocatedStockTable.tsx:155 +#: src/tables/build/BuildAllocatedStockTable.tsx:152 #: src/tables/part/PartPurchaseOrdersTable.tsx:50 +#: src/tables/purchasing/SupplierPartParametricTable.tsx:29 #: src/tables/purchasing/SupplierPartTable.tsx:83 #: src/tables/stock/StockItemTable.tsx:247 msgid "Supplier Part" msgstr "Articolo Fornitore" -#: lib/enums/ModelInformation.tsx:53 -#: src/pages/purchasing/PurchasingIndex.tsx:92 +#: lib/enums/ModelInformation.tsx:60 +#: src/pages/purchasing/PurchasingIndex.tsx:128 msgid "Supplier Parts" msgstr "Articoli fornitore" -#: lib/enums/ModelInformation.tsx:61 -#: src/pages/company/ManufacturerPartDetail.tsx:297 -#: src/pages/company/SupplierPartDetail.tsx:161 +#: lib/enums/ModelInformation.tsx:69 +#: src/pages/company/ManufacturerPartDetail.tsx:288 +#: src/pages/company/SupplierPartDetail.tsx:162 #: src/tables/part/PartPurchaseOrdersTable.tsx:56 #: src/tables/stock/StockItemTable.tsx:253 msgid "Manufacturer Part" msgstr "Articolo Produttore" -#: lib/enums/ModelInformation.tsx:62 -#: src/pages/purchasing/PurchasingIndex.tsx:109 +#: lib/enums/ModelInformation.tsx:70 +#: src/pages/purchasing/PurchasingIndex.tsx:177 msgid "Manufacturer Parts" msgstr "Articoli Produttore" -#: lib/enums/ModelInformation.tsx:70 -#: src/pages/part/CategoryDetail.tsx:354 +#: lib/enums/ModelInformation.tsx:79 +#: src/pages/part/CategoryDetail.tsx:371 #: src/tables/Filter.tsx:389 msgid "Part Category" msgstr "Categoria Articolo" -#: lib/enums/ModelInformation.tsx:71 +#: lib/enums/ModelInformation.tsx:80 #: lib/enums/Roles.tsx:37 -#: src/pages/part/CategoryDetail.tsx:271 -#: src/pages/part/CategoryDetail.tsx:345 -#: src/pages/part/PartDetail.tsx:1196 +#: src/pages/part/CategoryDetail.tsx:279 +#: src/pages/part/CategoryDetail.tsx:362 +#: src/pages/part/PartDetail.tsx:1217 msgid "Part Categories" msgstr "Categorie Articolo" -#: lib/enums/ModelInformation.tsx:79 +#: lib/enums/ModelInformation.tsx:88 #: src/forms/BuildForms.tsx:473 #: src/forms/BuildForms.tsx:633 #: src/forms/BuildForms.tsx:794 -#: src/forms/SalesOrderForms.tsx:307 +#: src/forms/SalesOrderForms.tsx:386 #: src/pages/stock/StockDetail.tsx:1005 -#: src/tables/part/PartTestResultTable.tsx:248 +#: src/tables/part/PartTestResultTable.tsx:256 #: src/tables/stock/StockTrackingTable.tsx:48 #: src/tables/stock/StockTrackingTable.tsx:55 msgid "Stock Item" msgstr "Articolo in magazzino" -#: lib/enums/ModelInformation.tsx:80 +#: lib/enums/ModelInformation.tsx:89 #: lib/enums/Roles.tsx:45 -#: src/pages/company/CompanyDetail.tsx:210 -#: src/pages/part/CategoryDetail.tsx:291 +#: src/pages/company/CompanyDetail.tsx:211 +#: src/pages/part/CategoryDetail.tsx:314 #: src/pages/part/PartStockHistoryDetail.tsx:101 #: src/pages/stock/LocationDetail.tsx:121 #: src/pages/stock/LocationDetail.tsx:180 msgid "Stock Items" msgstr "Articoli in magazzino" -#: lib/enums/ModelInformation.tsx:88 +#: lib/enums/ModelInformation.tsx:98 #: lib/enums/Roles.tsx:47 #: src/pages/stock/LocationDetail.tsx:420 msgid "Stock Location" msgstr "Ubicazione articolo" -#: lib/enums/ModelInformation.tsx:89 +#: lib/enums/ModelInformation.tsx:99 #: src/pages/stock/LocationDetail.tsx:174 #: src/pages/stock/LocationDetail.tsx:412 #: src/pages/stock/StockDetail.tsx:996 msgid "Stock Locations" msgstr "Ubicazioni articolo" -#: lib/enums/ModelInformation.tsx:97 +#: lib/enums/ModelInformation.tsx:108 msgid "Stock Location Type" msgstr "Tipo ubicazione articolo" -#: lib/enums/ModelInformation.tsx:98 +#: lib/enums/ModelInformation.tsx:109 msgid "Stock Location Types" msgstr "Tipi ubicazione articolo" -#: lib/enums/ModelInformation.tsx:103 -#: src/pages/Index/Settings/SystemSettings.tsx:248 -#: src/pages/part/PartDetail.tsx:911 +#: lib/enums/ModelInformation.tsx:114 +#: src/pages/Index/Settings/SystemSettings.tsx:254 +#: src/pages/part/PartDetail.tsx:900 msgid "Stock History" msgstr "Cronologia Magazzino" -#: lib/enums/ModelInformation.tsx:104 +#: lib/enums/ModelInformation.tsx:115 msgid "Stock Histories" msgstr "Cronologie Magazzino" -#: lib/enums/ModelInformation.tsx:109 +#: lib/enums/ModelInformation.tsx:120 msgid "Build" msgstr "Produzione" -#: lib/enums/ModelInformation.tsx:110 +#: lib/enums/ModelInformation.tsx:121 msgid "Builds" msgstr "Produzione" -#: lib/enums/ModelInformation.tsx:118 +#: lib/enums/ModelInformation.tsx:130 msgid "Build Line" msgstr "Linea di produzione" -#: lib/enums/ModelInformation.tsx:119 +#: lib/enums/ModelInformation.tsx:131 msgid "Build Lines" msgstr "Linee di produzione" -#: lib/enums/ModelInformation.tsx:126 +#: lib/enums/ModelInformation.tsx:138 msgid "Build Item" msgstr "Costruisci articolo" -#: lib/enums/ModelInformation.tsx:127 +#: lib/enums/ModelInformation.tsx:139 msgid "Build Items" msgstr "Costruisci articoli" -#: lib/enums/ModelInformation.tsx:132 -#: src/pages/company/CompanyDetail.tsx:340 +#: lib/enums/ModelInformation.tsx:144 +#: src/pages/company/CompanyDetail.tsx:345 #: src/tables/company/CompanyTable.tsx:47 #: src/tables/company/ContactTable.tsx:67 +#: src/tables/company/ParametricCompanyTable.tsx:18 msgid "Company" msgstr "Azienda" -#: lib/enums/ModelInformation.tsx:133 +#: lib/enums/ModelInformation.tsx:145 msgid "Companies" msgstr "Aziende" -#: lib/enums/ModelInformation.tsx:140 -#: src/pages/build/BuildDetail.tsx:316 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:253 -#: src/pages/sales/ReturnOrderDetail.tsx:231 -#: src/pages/sales/SalesOrderDetail.tsx:224 +#: lib/enums/ModelInformation.tsx:152 +#: src/pages/build/BuildDetail.tsx:317 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:254 +#: src/pages/sales/ReturnOrderDetail.tsx:232 +#: src/pages/sales/SalesOrderDetail.tsx:225 #: src/tables/ColumnRenderers.tsx:362 #: src/tables/Filter.tsx:286 #: src/tables/TableHoverCard.tsx:101 msgid "Project Code" msgstr "Codice del progetto" -#: lib/enums/ModelInformation.tsx:141 +#: lib/enums/ModelInformation.tsx:153 #: src/pages/Index/Settings/AdminCenter/Index.tsx:172 msgid "Project Codes" msgstr "Codici del progetto" -#: lib/enums/ModelInformation.tsx:147 +#: lib/enums/ModelInformation.tsx:159 #: src/components/wizards/OrderPartsWizard.tsx:338 #: src/pages/part/pricing/PurchaseHistoryPanel.tsx:33 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:550 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:555 #: src/pages/stock/StockDetail.tsx:352 #: src/tables/part/PartPurchaseOrdersTable.tsx:32 #: src/tables/stock/StockItemTable.tsx:239 @@ -312,117 +338,117 @@ msgstr "Codici del progetto" msgid "Purchase Order" msgstr "Ordine d'acquisto" -#: lib/enums/ModelInformation.tsx:148 +#: lib/enums/ModelInformation.tsx:160 #: lib/enums/Roles.tsx:39 #: src/defaults/actions.tsx:104 -#: src/pages/Index/Settings/SystemSettings.tsx:283 -#: src/pages/company/CompanyDetail.tsx:203 -#: src/pages/company/SupplierPartDetail.tsx:266 -#: src/pages/part/PartDetail.tsx:875 -#: src/pages/purchasing/PurchasingIndex.tsx:60 +#: src/pages/Index/Settings/SystemSettings.tsx:289 +#: src/pages/company/CompanyDetail.tsx:204 +#: src/pages/company/SupplierPartDetail.tsx:267 +#: src/pages/part/PartDetail.tsx:864 +#: src/pages/purchasing/PurchasingIndex.tsx:66 msgid "Purchase Orders" msgstr "Ordini d'acquisto" -#: lib/enums/ModelInformation.tsx:156 +#: lib/enums/ModelInformation.tsx:169 msgid "Purchase Order Line" msgstr "Riga ordine di acquisto" -#: lib/enums/ModelInformation.tsx:157 +#: lib/enums/ModelInformation.tsx:170 msgid "Purchase Order Lines" msgstr "Righe ordine di acquisto" -#: lib/enums/ModelInformation.tsx:162 -#: src/pages/build/BuildDetail.tsx:289 +#: lib/enums/ModelInformation.tsx:175 +#: src/pages/build/BuildDetail.tsx:290 #: src/pages/part/pricing/SaleHistoryPanel.tsx:24 -#: src/pages/sales/SalesOrderDetail.tsx:614 -#: src/pages/sales/SalesOrderShipmentDetail.tsx:105 -#: src/pages/sales/SalesOrderShipmentDetail.tsx:478 +#: src/pages/sales/SalesOrderDetail.tsx:619 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:103 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:446 #: src/pages/stock/StockDetail.tsx:361 #: src/tables/part/PartSalesAllocationsTable.tsx:41 #: src/tables/sales/SalesOrderAllocationTable.tsx:110 -#: src/tables/sales/SalesOrderShipmentTable.tsx:122 +#: src/tables/sales/SalesOrderShipmentTable.tsx:143 #: src/tables/stock/StockTrackingTable.tsx:131 msgid "Sales Order" msgstr "Ordine di Vendita" -#: lib/enums/ModelInformation.tsx:163 +#: lib/enums/ModelInformation.tsx:176 #: lib/enums/Roles.tsx:43 #: src/defaults/actions.tsx:114 -#: src/pages/Index/Settings/SystemSettings.tsx:299 -#: src/pages/company/CompanyDetail.tsx:223 -#: src/pages/part/PartDetail.tsx:887 -#: src/pages/sales/SalesIndex.tsx:84 +#: src/pages/Index/Settings/SystemSettings.tsx:305 +#: src/pages/company/CompanyDetail.tsx:224 +#: src/pages/part/PartDetail.tsx:876 +#: src/pages/sales/SalesIndex.tsx:53 msgid "Sales Orders" msgstr "Ordini di Vendita" -#: lib/enums/ModelInformation.tsx:171 -#: src/pages/sales/SalesOrderShipmentDetail.tsx:477 +#: lib/enums/ModelInformation.tsx:185 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:445 msgid "Sales Order Shipment" msgstr "Spedizione dell'ordine di vendita" -#: lib/enums/ModelInformation.tsx:172 +#: lib/enums/ModelInformation.tsx:186 msgid "Sales Order Shipments" msgstr "Spedizioni dell'ordine di vendita" -#: lib/enums/ModelInformation.tsx:179 -#: src/pages/sales/ReturnOrderDetail.tsx:549 +#: lib/enums/ModelInformation.tsx:194 +#: src/pages/sales/ReturnOrderDetail.tsx:554 #: src/tables/stock/StockTrackingTable.tsx:142 msgid "Return Order" msgstr "Ordine di reso" -#: lib/enums/ModelInformation.tsx:180 +#: lib/enums/ModelInformation.tsx:195 #: lib/enums/Roles.tsx:41 #: src/defaults/actions.tsx:125 -#: src/pages/Index/Settings/SystemSettings.tsx:316 -#: src/pages/company/CompanyDetail.tsx:230 -#: src/pages/part/PartDetail.tsx:894 -#: src/pages/sales/SalesIndex.tsx:117 +#: src/pages/Index/Settings/SystemSettings.tsx:322 +#: src/pages/company/CompanyDetail.tsx:231 +#: src/pages/part/PartDetail.tsx:883 +#: src/pages/sales/SalesIndex.tsx:99 msgid "Return Orders" msgstr "Ordini di reso" -#: lib/enums/ModelInformation.tsx:188 +#: lib/enums/ModelInformation.tsx:204 msgid "Return Order Line Item" msgstr "Articolo Linea Ordine Reso" -#: lib/enums/ModelInformation.tsx:189 +#: lib/enums/ModelInformation.tsx:205 msgid "Return Order Line Items" msgstr "Articoli Linea Ordine Reso" -#: lib/enums/ModelInformation.tsx:194 +#: lib/enums/ModelInformation.tsx:210 #: src/tables/company/AddressTable.tsx:52 msgid "Address" msgstr "Indirizzo" -#: lib/enums/ModelInformation.tsx:195 -#: src/pages/company/CompanyDetail.tsx:264 +#: lib/enums/ModelInformation.tsx:211 +#: src/pages/company/CompanyDetail.tsx:265 msgid "Addresses" msgstr "Indirizzi" -#: lib/enums/ModelInformation.tsx:201 +#: lib/enums/ModelInformation.tsx:217 #: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:89 #: src/pages/core/UserDetail.tsx:135 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:229 -#: src/pages/sales/ReturnOrderDetail.tsx:207 -#: src/pages/sales/SalesOrderDetail.tsx:200 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:230 +#: src/pages/sales/ReturnOrderDetail.tsx:208 +#: src/pages/sales/SalesOrderDetail.tsx:201 msgid "Contact" msgstr "Contatto" -#: lib/enums/ModelInformation.tsx:202 -#: src/pages/company/CompanyDetail.tsx:258 +#: lib/enums/ModelInformation.tsx:218 +#: src/pages/company/CompanyDetail.tsx:259 #: src/pages/core/CoreIndex.tsx:33 msgid "Contacts" msgstr "Contatti" -#: lib/enums/ModelInformation.tsx:208 +#: lib/enums/ModelInformation.tsx:224 #: src/tables/ColumnRenderers.tsx:444 msgid "Owner" msgstr "Proprietario" -#: lib/enums/ModelInformation.tsx:209 +#: lib/enums/ModelInformation.tsx:225 msgid "Owners" msgstr "Proprietari" -#: lib/enums/ModelInformation.tsx:215 +#: lib/enums/ModelInformation.tsx:231 #: src/pages/Auth/ChangePassword.tsx:36 #: src/pages/core/UserDetail.tsx:220 #: src/tables/ColumnRenderers.tsx:395 @@ -437,7 +463,7 @@ msgstr "Proprietari" msgid "User" msgstr "Utente" -#: lib/enums/ModelInformation.tsx:216 +#: lib/enums/ModelInformation.tsx:232 #: src/components/nav/NavigationDrawer.tsx:105 #: src/pages/Index/Settings/AdminCenter/UserManagementPanel.tsx:15 #: src/pages/core/CoreIndex.tsx:21 @@ -445,12 +471,12 @@ msgstr "Utente" msgid "Users" msgstr "Utenti" -#: lib/enums/ModelInformation.tsx:222 +#: lib/enums/ModelInformation.tsx:238 #: src/pages/core/GroupDetail.tsx:78 msgid "Group" msgstr "Gruppo" -#: lib/enums/ModelInformation.tsx:223 +#: lib/enums/ModelInformation.tsx:239 #: src/components/nav/NavigationDrawer.tsx:111 #: src/pages/Index/Settings/AdminCenter/UserManagementPanel.tsx:23 #: src/pages/core/CoreIndex.tsx:27 @@ -460,64 +486,64 @@ msgstr "Gruppo" msgid "Groups" msgstr "Gruppi" -#: lib/enums/ModelInformation.tsx:230 +#: lib/enums/ModelInformation.tsx:246 msgid "Import Session" msgstr "Importa Sessione" -#: lib/enums/ModelInformation.tsx:231 +#: lib/enums/ModelInformation.tsx:247 msgid "Import Sessions" msgstr "Importa Sessioni" -#: lib/enums/ModelInformation.tsx:238 +#: lib/enums/ModelInformation.tsx:254 msgid "Label Template" msgstr "Modello Etichetta" -#: lib/enums/ModelInformation.tsx:239 +#: lib/enums/ModelInformation.tsx:255 #: src/pages/Index/Settings/AdminCenter/Index.tsx:209 msgid "Label Templates" msgstr "Modelli Etichetta" -#: lib/enums/ModelInformation.tsx:246 +#: lib/enums/ModelInformation.tsx:262 msgid "Report Template" msgstr "Modello Report" -#: lib/enums/ModelInformation.tsx:247 +#: lib/enums/ModelInformation.tsx:263 #: src/pages/Index/Settings/AdminCenter/Index.tsx:215 msgid "Report Templates" msgstr "Modelli Report" -#: lib/enums/ModelInformation.tsx:254 +#: lib/enums/ModelInformation.tsx:270 #: src/components/plugins/PluginDrawer.tsx:145 msgid "Plugin Configuration" msgstr "Configurazione Plugin" -#: lib/enums/ModelInformation.tsx:255 +#: lib/enums/ModelInformation.tsx:271 msgid "Plugin Configurations" msgstr "Configurazioni Plugin" -#: lib/enums/ModelInformation.tsx:262 +#: lib/enums/ModelInformation.tsx:278 msgid "Content Type" msgstr "Tipo Contenuto" -#: lib/enums/ModelInformation.tsx:263 +#: lib/enums/ModelInformation.tsx:279 msgid "Content Types" msgstr "Tipi Contenuti" -#: lib/enums/ModelInformation.tsx:268 +#: lib/enums/ModelInformation.tsx:284 msgid "Selection List" msgstr "Elenco selezione" -#: lib/enums/ModelInformation.tsx:269 -#: src/pages/Index/Settings/AdminCenter/PartParameterPanel.tsx:21 +#: lib/enums/ModelInformation.tsx:285 +#: src/pages/Index/Settings/AdminCenter/ParameterPanel.tsx:21 msgid "Selection Lists" msgstr "Elenchi di selezione" -#: lib/enums/ModelInformation.tsx:275 +#: lib/enums/ModelInformation.tsx:291 #: src/components/barcodes/BarcodeInput.tsx:114 #: src/components/dashboard/DashboardLayout.tsx:281 #: src/components/editors/NotesEditor.tsx:74 #: src/components/editors/TemplateEditor/TemplateEditor.tsx:158 -#: src/components/forms/fields/ApiFormField.tsx:273 +#: src/components/forms/fields/ApiFormField.tsx:237 #: src/components/forms/fields/TableField.tsx:45 #: src/components/importer/ImportDataSelector.tsx:192 #: src/components/importer/ImporterColumnSelector.tsx:234 @@ -528,7 +554,7 @@ msgstr "Elenchi di selezione" #: src/components/nav/SearchDrawer.tsx:572 #: src/components/settings/SettingList.tsx:139 #: src/components/wizards/ImportPartWizard.tsx:574 -#: src/components/wizards/ImportPartWizard.tsx:718 +#: src/components/wizards/ImportPartWizard.tsx:719 #: src/forms/BomForms.tsx:69 #: src/functions/auth.tsx:643 #: src/pages/ErrorPage.tsx:11 @@ -547,9 +573,9 @@ msgstr "Elenchi di selezione" msgid "Error" msgstr "Errore" -#: lib/enums/ModelInformation.tsx:276 +#: lib/enums/ModelInformation.tsx:292 #: src/tables/machine/MachineListTable.tsx:402 -#: src/tables/machine/MachineTypeTable.tsx:299 +#: src/tables/machine/MachineTypeTable.tsx:297 msgid "Errors" msgstr "Errori" @@ -559,10 +585,10 @@ msgstr "Admin" #: lib/enums/Roles.tsx:33 #: src/defaults/actions.tsx:135 -#: src/pages/Index/Settings/SystemSettings.tsx:264 -#: src/pages/build/BuildIndex.tsx:75 -#: src/pages/part/PartDetail.tsx:904 -#: src/pages/sales/SalesOrderDetail.tsx:421 +#: src/pages/Index/Settings/SystemSettings.tsx:270 +#: src/pages/build/BuildIndex.tsx:67 +#: src/pages/part/PartDetail.tsx:893 +#: src/pages/sales/SalesOrderDetail.tsx:422 msgid "Build Orders" msgstr "Ordini di Produzione" @@ -639,39 +665,39 @@ msgstr "Scansiona o inserisci i dati del codice a barre" msgid "Enter barcode data" msgstr "Inserire il codice a barre" -#: src/components/barcodes/BarcodeScanDialog.tsx:49 -#: src/components/buttons/ScanButton.tsx:15 +#: src/components/barcodes/BarcodeScanDialog.tsx:56 +#: src/components/buttons/ScanButton.tsx:27 #: src/components/nav/NavigationDrawer.tsx:122 -#: src/forms/PurchaseOrderForms.tsx:457 -#: src/forms/PurchaseOrderForms.tsx:563 +#: src/forms/PurchaseOrderForms.tsx:509 +#: src/forms/PurchaseOrderForms.tsx:615 msgid "Scan Barcode" msgstr "Scansiona codice a barre" -#: src/components/barcodes/BarcodeScanDialog.tsx:105 +#: src/components/barcodes/BarcodeScanDialog.tsx:121 msgid "No matching item found" msgstr "Nessun elemento corrispondente trovato" -#: src/components/barcodes/BarcodeScanDialog.tsx:134 +#: src/components/barcodes/BarcodeScanDialog.tsx:150 msgid "Barcode does not match the expected model type" msgstr "Il codice a barre non corrisponde al tipo di modello previsto" -#: src/components/barcodes/BarcodeScanDialog.tsx:145 +#: src/components/barcodes/BarcodeScanDialog.tsx:161 #: src/components/editors/NotesEditor.tsx:84 #: src/components/editors/NotesEditor.tsx:118 -#: src/components/forms/ApiForm.tsx:465 +#: src/components/forms/ApiForm.tsx:484 #: src/components/wizards/ImportPartWizard.tsx:566 -#: src/components/wizards/ImportPartWizard.tsx:690 +#: src/components/wizards/ImportPartWizard.tsx:691 #: src/pages/Index/Settings/AdminCenter/CurrencyManagementPanel.tsx:45 #: src/tables/bom/BomTable.tsx:548 #: src/tables/settings/PendingTasksTable.tsx:68 msgid "Success" msgstr "Operazione completata" -#: src/components/barcodes/BarcodeScanDialog.tsx:151 +#: src/components/barcodes/BarcodeScanDialog.tsx:167 msgid "Failed to handle barcode" msgstr "Gestione del codice a barre non riuscita" -#: src/components/barcodes/BarcodeScanDialog.tsx:167 +#: src/components/barcodes/BarcodeScanDialog.tsx:183 #: src/pages/Index/Scan.tsx:129 msgid "Failed to scan barcode" msgstr "Scansione del codice a barre non riuscita" @@ -714,10 +740,10 @@ msgstr "Collegamento al codice a barre non riuscito" #: src/components/barcodes/QRCode.tsx:179 #: src/pages/part/PartDetail.tsx:521 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:222 -#: src/pages/sales/ReturnOrderDetail.tsx:188 -#: src/pages/sales/SalesOrderDetail.tsx:181 -#: src/pages/sales/SalesOrderShipmentDetail.tsx:122 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:223 +#: src/pages/sales/ReturnOrderDetail.tsx:189 +#: src/pages/sales/SalesOrderDetail.tsx:182 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:120 #: src/pages/stock/StockDetail.tsx:186 msgid "Link" msgstr "Collegamento" @@ -728,7 +754,7 @@ msgstr "Questo rimuoverà il collegamento al codice a barre associato" #: src/components/barcodes/QRCode.tsx:205 #: src/components/items/ActionDropdown.tsx:192 -#: src/forms/PurchaseOrderForms.tsx:554 +#: src/forms/PurchaseOrderForms.tsx:606 msgid "Unlink Barcode" msgstr "Scollega Codice a Barre" @@ -829,14 +855,14 @@ msgstr "Verrai reindirizzato al provider per ulteriori azioni." #~ msgid "Scan QR code" #~ msgstr "Scan QR code" -#: src/components/buttons/ScanButton.tsx:19 -msgid "Open Barcode Scanner" -msgstr "Apri scanner di codici a barre" - #: src/components/buttons/ScanButton.tsx:20 #~ msgid "Open QR code scanner" #~ msgstr "Open QR code scanner" +#: src/components/buttons/ScanButton.tsx:32 +msgid "Open Barcode Scanner" +msgstr "Apri scanner di codici a barre" + #: src/components/buttons/SpotlightButton.tsx:12 msgid "Open spotlight" msgstr "Accendi torcia" @@ -1059,7 +1085,7 @@ msgid "Show the number of sales orders which are assigned to you" msgstr "Mostra il numero di ordini di vendita assegnati a te" #: src/components/dashboard/DashboardWidgetLibrary.tsx:129 -#: src/pages/sales/SalesIndex.tsx:105 +#: src/pages/sales/SalesIndex.tsx:87 msgid "Pending Shipments" msgstr "Spedizioni in sospeso" @@ -1210,12 +1236,18 @@ msgid "Remove the associated image from this item?" msgstr "Rimuovi l'immagine associata all'articolo?" #: src/components/details/DetailsImage.tsx:83 -#: src/forms/StockForms.tsx:888 +#: src/forms/StockForms.tsx:895 #: src/pages/Index/Settings/AccountSettings/MFASettings.tsx:324 #: src/pages/Index/Settings/AccountSettings/MFASettings.tsx:415 #: src/pages/Index/Settings/AccountSettings/MFASettings.tsx:884 #: src/pages/Index/Settings/AccountSettings/MFASettings.tsx:903 #: src/pages/Index/Settings/AccountSettings/SecurityContent.tsx:254 +#: src/tables/build/BuildAllocatedStockTable.tsx:178 +#: src/tables/build/BuildAllocatedStockTable.tsx:258 +#: src/tables/build/BuildLineTable.tsx:111 +#: src/tables/build/BuildLineTable.tsx:665 +#: src/tables/sales/SalesOrderAllocationTable.tsx:224 +#: src/tables/sales/SalesOrderAllocationTable.tsx:247 msgid "Remove" msgstr "Rimuovi" @@ -1241,12 +1273,12 @@ msgid "Upload Error" msgstr "Errore Di Caricamento" #: src/components/details/DetailsImage.tsx:250 -#: src/components/forms/fields/TextField.tsx:65 +#: src/components/forms/fields/AutoFillRightSection.tsx:34 msgid "Clear" msgstr "Elimina" #: src/components/details/DetailsImage.tsx:256 -#: src/components/forms/ApiForm.tsx:677 +#: src/components/forms/ApiForm.tsx:696 #: src/contexts/ThemeContext.tsx:44 #: src/pages/Index/Settings/AccountSettings/MFASettings.tsx:149 #: src/pages/Index/Settings/AccountSettings/MFASettings.tsx:568 @@ -1499,8 +1531,8 @@ msgstr "Errore del server" msgid "A server error occurred" msgstr "Si è verificato un errore del server" -#: src/components/forms/ApiForm.tsx:103 -#: src/components/forms/ApiForm.tsx:594 +#: src/components/forms/ApiForm.tsx:107 +#: src/components/forms/ApiForm.tsx:613 msgid "Form Error" msgstr "Errore Modulo" @@ -1508,11 +1540,11 @@ msgstr "Errore Modulo" #~ msgid "Form Errors Exist" #~ msgstr "Form Errors Exist" -#: src/components/forms/ApiForm.tsx:604 +#: src/components/forms/ApiForm.tsx:623 msgid "Errors exist for one or more form fields" msgstr "Esistono errori per uno o più campi del modulo" -#: src/components/forms/ApiForm.tsx:715 +#: src/components/forms/ApiForm.tsx:734 #: src/hooks/UseForm.tsx:133 #: src/tables/plugin/PluginListTable.tsx:204 msgid "Update" @@ -1698,15 +1730,14 @@ msgstr "Host" #: src/components/forms/InstanceOptions.tsx:124 #: src/components/plugins/PluginDrawer.tsx:68 #: src/pages/Index/Settings/AdminCenter/UnitManagementPanel.tsx:19 -#: src/pages/part/CategoryDetail.tsx:88 +#: src/pages/part/CategoryDetail.tsx:91 #: src/pages/part/PartDetail.tsx:446 #: src/pages/stock/LocationDetail.tsx:82 #: src/tables/machine/MachineTypeTable.tsx:67 -#: src/tables/machine/MachineTypeTable.tsx:151 -#: src/tables/machine/MachineTypeTable.tsx:254 -#: src/tables/machine/MachineTypeTable.tsx:357 +#: src/tables/machine/MachineTypeTable.tsx:149 +#: src/tables/machine/MachineTypeTable.tsx:252 +#: src/tables/machine/MachineTypeTable.tsx:355 #: src/tables/plugin/PluginErrorTable.tsx:33 -#: src/tables/purchasing/ManufacturerPartParameterTable.tsx:36 #: src/tables/settings/ApiTokenTable.tsx:57 #: src/tables/settings/GroupTable.tsx:95 #: src/tables/settings/GroupTable.tsx:148 @@ -1769,7 +1800,7 @@ msgstr "Salva selezione host" #~ msgstr "State: <0>worker ({0}), <1>plugins{1}" #: src/components/forms/InstanceOptions.tsx:118 -#: src/pages/Index/Settings/SystemSettings.tsx:45 +#: src/pages/Index/Settings/SystemSettings.tsx:46 msgid "Server" msgstr "Server" @@ -1793,6 +1824,8 @@ msgid "Plugins" msgstr "Plugin" #: src/components/forms/InstanceOptions.tsx:143 +#: src/tables/general/ParameterTemplateTable.tsx:153 +#: src/tables/general/ParameterTemplateTable.tsx:188 #: src/tables/part/PartTestTemplateTable.tsx:117 #: src/tables/settings/TemplateTable.tsx:251 #: src/tables/settings/TemplateTable.tsx:362 @@ -1817,10 +1850,14 @@ msgstr "Fermato" msgid "Running" msgstr "In Esecuzione" -#: src/components/forms/fields/ApiFormField.tsx:233 +#: src/components/forms/fields/ApiFormField.tsx:197 msgid "Select file to upload" msgstr "Seleziona file da caricare" +#: src/components/forms/fields/AutoFillRightSection.tsx:47 +msgid "Accept suggested value" +msgstr "Accetta il valore suggerito" + #: src/components/forms/fields/DateField.tsx:76 msgid "Select date" msgstr "Seleziona data" @@ -1853,13 +1890,13 @@ msgstr "Seleziona la confezione" msgid "{0} icons" msgstr "{0} icone" -#: src/components/forms/fields/RelatedModelField.tsx:409 +#: src/components/forms/fields/RelatedModelField.tsx:480 #: src/components/modals/AboutInvenTreeModal.tsx:96 #: src/pages/Index/Settings/AccountSettings/SecurityContent.tsx:383 msgid "Loading" msgstr "Caricamento" -#: src/components/forms/fields/RelatedModelField.tsx:411 +#: src/components/forms/fields/RelatedModelField.tsx:482 msgid "No results found" msgstr "Nessun risultato trovato" @@ -1875,10 +1912,6 @@ msgstr "Nessuna voce disponibile" msgid "Add new row" msgstr "Aggiungi nuova riga" -#: src/components/forms/fields/TextField.tsx:82 -msgid "Accept suggested value" -msgstr "Accetta il valore suggerito" - #: src/components/images/DetailsImage.tsx:252 #~ msgid "Select image" #~ msgstr "Select image" @@ -2036,7 +2069,7 @@ msgstr "I dati sono stati importati correttamente" #: src/components/importer/ImporterDrawer.tsx:109 #: src/components/modals/AboutInvenTreeModal.tsx:205 #: src/components/modals/ServerInfoModal.tsx:134 -#: src/components/wizards/ImportPartWizard.tsx:772 +#: src/components/wizards/ImportPartWizard.tsx:773 #: src/forms/BomForms.tsx:132 #: src/pages/Index/Settings/AccountSettings/MFASettings.tsx:685 msgid "Close" @@ -2199,7 +2232,7 @@ msgid "Change" msgstr "Cambiare" #: src/components/items/RoleTable.tsx:150 -#: src/forms/StockForms.tsx:927 +#: src/forms/StockForms.tsx:941 #: src/tables/stock/StockItemTestResultTable.tsx:367 msgid "Add" msgstr "Aggiungi" @@ -2222,11 +2255,11 @@ msgstr "Nessun articolo" #: src/components/items/TransferList.tsx:161 #: src/components/render/Stock.tsx:102 -#: src/pages/part/PartDetail.tsx:994 +#: src/pages/part/PartDetail.tsx:1009 #: src/pages/stock/StockDetail.tsx:265 #: src/pages/stock/StockDetail.tsx:942 -#: src/tables/build/BuildAllocatedStockTable.tsx:135 -#: src/tables/build/BuildLineTable.tsx:192 +#: src/tables/build/BuildAllocatedStockTable.tsx:132 +#: src/tables/build/BuildLineTable.tsx:193 #: src/tables/part/PartTable.tsx:137 #: src/tables/stock/StockItemTable.tsx:182 #: src/tables/stock/StockItemTable.tsx:343 @@ -2373,7 +2406,7 @@ msgid "Database" msgstr "Database" #: src/components/modals/ServerInfoModal.tsx:49 -#: src/components/nav/Alerts.tsx:118 +#: src/components/nav/Alerts.tsx:120 msgid "Debug Mode" msgstr "Modalità Debug" @@ -2414,7 +2447,7 @@ msgid "Issues detected" msgstr "Problemi rilevati" #: src/components/modals/ServerInfoModal.tsx:102 -#: src/components/nav/Alerts.tsx:125 +#: src/components/nav/Alerts.tsx:127 msgid "Background Worker" msgstr "Processo in background" @@ -2436,7 +2469,7 @@ msgstr "Impostazioni e-mail" #~ msgstr "Email settings not configured" #: src/components/modals/ServerInfoModal.tsx:120 -#: src/components/nav/Alerts.tsx:141 +#: src/components/nav/Alerts.tsx:143 msgid "Email settings not configured." msgstr "Impostazioni dell'email non configurate." @@ -2444,43 +2477,47 @@ msgstr "Impostazioni dell'email non configurate." msgid "Alerts" msgstr "Avvisi" -#: src/components/nav/Alerts.tsx:120 +#: src/components/nav/Alerts.tsx:97 +msgid "No issues detected" +msgstr "" + +#: src/components/nav/Alerts.tsx:122 msgid "The server is running in debug mode." msgstr "Il server è in esecuzione in modalità debug." -#: src/components/nav/Alerts.tsx:127 +#: src/components/nav/Alerts.tsx:129 msgid "The background worker process is not running." msgstr "Il processo di lavoro in background non è in esecuzione." -#: src/components/nav/Alerts.tsx:132 +#: src/components/nav/Alerts.tsx:134 msgid "Server Restart" msgstr "Riavvio Server" -#: src/components/nav/Alerts.tsx:134 +#: src/components/nav/Alerts.tsx:136 msgid "The server requires a restart to apply changes." msgstr "Il server richiede un riavvio per applicare le modifiche." -#: src/components/nav/Alerts.tsx:139 +#: src/components/nav/Alerts.tsx:141 msgid "Email settings" msgstr "Impostazioni email" -#: src/components/nav/Alerts.tsx:146 +#: src/components/nav/Alerts.tsx:148 msgid "Database Migrations" msgstr "Migrazioni Database" -#: src/components/nav/Alerts.tsx:148 +#: src/components/nav/Alerts.tsx:150 msgid "There are pending database migrations." msgstr "Ci sono migrazioni di database in sospeso." -#: src/components/nav/Alerts.tsx:163 +#: src/components/nav/Alerts.tsx:165 msgid "Learn more about {code}" msgstr "Scopri di più su {code}" #: src/components/nav/Header.tsx:188 #: src/components/nav/NavigationDrawer.tsx:134 #: src/components/nav/NotificationDrawer.tsx:181 -#: src/pages/Index/Settings/SystemSettings.tsx:121 -#: src/pages/Index/Settings/UserSettings.tsx:106 +#: src/pages/Index/Settings/SystemSettings.tsx:122 +#: src/pages/Index/Settings/UserSettings.tsx:107 #: src/pages/Notifications.tsx:45 #: src/pages/Notifications.tsx:130 msgid "Notifications" @@ -2511,8 +2548,8 @@ msgstr "Impostazioni" #: src/components/nav/NavigationDrawer.tsx:140 #: src/components/nav/SettingsHeader.tsx:40 #: src/defaults/actions.tsx:92 -#: src/pages/Index/Settings/UserSettings.tsx:141 -#: src/pages/Index/Settings/UserSettings.tsx:145 +#: src/pages/Index/Settings/UserSettings.tsx:142 +#: src/pages/Index/Settings/UserSettings.tsx:146 msgid "User Settings" msgstr "Impostazioni Utente" @@ -2529,8 +2566,8 @@ msgstr "Impostazioni Utente" #: src/components/nav/NavigationDrawer.tsx:146 #: src/components/nav/SettingsHeader.tsx:41 #: src/defaults/actions.tsx:144 -#: src/pages/Index/Settings/SystemSettings.tsx:348 -#: src/pages/Index/Settings/SystemSettings.tsx:353 +#: src/pages/Index/Settings/SystemSettings.tsx:354 +#: src/pages/Index/Settings/SystemSettings.tsx:359 msgid "System Settings" msgstr "Impostazioni di sistema" @@ -2577,11 +2614,11 @@ msgstr "Disconnettiti" #: src/components/nav/NavigationDrawer.tsx:77 #: src/components/render/Part.tsx:36 -#: src/components/wizards/ImportPartWizard.tsx:807 +#: src/components/wizards/ImportPartWizard.tsx:808 #: src/defaults/links.tsx:42 #: src/forms/StockForms.tsx:794 -#: src/pages/Index/Settings/SystemSettings.tsx:224 -#: src/pages/part/PartDetail.tsx:804 +#: src/pages/Index/Settings/SystemSettings.tsx:230 +#: src/pages/part/PartDetail.tsx:793 #: src/pages/stock/LocationDetail.tsx:390 #: src/pages/stock/LocationDetail.tsx:420 #: src/pages/stock/StockDetail.tsx:642 @@ -2591,29 +2628,29 @@ msgstr "Stock" #: src/components/nav/NavigationDrawer.tsx:84 #: src/defaults/links.tsx:48 -#: src/pages/build/BuildDetail.tsx:748 -#: src/pages/build/BuildIndex.tsx:102 +#: src/pages/build/BuildDetail.tsx:753 +#: src/pages/build/BuildIndex.tsx:101 msgid "Manufacturing" msgstr "Fabbricazione" #: src/components/nav/NavigationDrawer.tsx:91 #: src/defaults/links.tsx:54 #: src/pages/company/ManufacturerDetail.tsx:9 -#: src/pages/company/ManufacturerPartDetail.tsx:276 +#: src/pages/company/ManufacturerPartDetail.tsx:267 #: src/pages/company/SupplierDetail.tsx:9 -#: src/pages/company/SupplierPartDetail.tsx:360 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:553 -#: src/pages/purchasing/PurchasingIndex.tsx:122 +#: src/pages/company/SupplierPartDetail.tsx:365 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:558 +#: src/pages/purchasing/PurchasingIndex.tsx:212 msgid "Purchasing" msgstr "Acquisto" #: src/components/nav/NavigationDrawer.tsx:98 #: src/defaults/links.tsx:60 #: src/pages/company/CustomerDetail.tsx:9 -#: src/pages/sales/ReturnOrderDetail.tsx:554 -#: src/pages/sales/SalesIndex.tsx:153 -#: src/pages/sales/SalesOrderDetail.tsx:619 -#: src/pages/sales/SalesOrderShipmentDetail.tsx:480 +#: src/pages/sales/ReturnOrderDetail.tsx:559 +#: src/pages/sales/SalesIndex.tsx:168 +#: src/pages/sales/SalesOrderDetail.tsx:624 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:448 msgid "Sales" msgstr "Vendite" @@ -2667,21 +2704,21 @@ msgid "Remove search group" msgstr "Rimuovi gruppo di ricerca" #: src/components/nav/SearchDrawer.tsx:288 -#: src/pages/company/ManufacturerPartDetail.tsx:192 -#: src/pages/part/PartDetail.tsx:862 +#: src/pages/company/ManufacturerPartDetail.tsx:179 +#: src/pages/part/PartDetail.tsx:851 #: src/pages/part/PartSupplierDetail.tsx:15 -#: src/pages/purchasing/PurchasingIndex.tsx:81 +#: src/pages/purchasing/PurchasingIndex.tsx:100 msgid "Suppliers" msgstr "Fornitori" #: src/components/nav/SearchDrawer.tsx:298 #: src/pages/part/PartSupplierDetail.tsx:23 -#: src/pages/purchasing/PurchasingIndex.tsx:98 +#: src/pages/purchasing/PurchasingIndex.tsx:149 msgid "Manufacturers" msgstr "Produttori" #: src/components/nav/SearchDrawer.tsx:308 -#: src/pages/sales/SalesIndex.tsx:138 +#: src/pages/sales/SalesIndex.tsx:133 msgid "Customers" msgstr "Clienti" @@ -2772,21 +2809,21 @@ msgstr "Informazioni Plugin" #: src/components/plugins/PluginDrawer.tsx:73 #: src/forms/selectionListFields.tsx:102 -#: src/pages/build/BuildDetail.tsx:250 -#: src/pages/company/CompanyDetail.tsx:93 -#: src/pages/company/ManufacturerPartDetail.tsx:93 -#: src/pages/company/ManufacturerPartDetail.tsx:120 -#: src/pages/company/SupplierPartDetail.tsx:145 -#: src/pages/part/CategoryDetail.tsx:108 +#: src/pages/build/BuildDetail.tsx:251 +#: src/pages/company/CompanyDetail.tsx:94 +#: src/pages/company/ManufacturerPartDetail.tsx:92 +#: src/pages/company/ManufacturerPartDetail.tsx:119 +#: src/pages/company/SupplierPartDetail.tsx:146 +#: src/pages/part/CategoryDetail.tsx:111 #: src/pages/part/PartDetail.tsx:460 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:162 -#: src/pages/sales/ReturnOrderDetail.tsx:129 -#: src/pages/sales/SalesOrderDetail.tsx:119 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:163 +#: src/pages/sales/ReturnOrderDetail.tsx:130 +#: src/pages/sales/SalesOrderDetail.tsx:120 #: src/pages/stock/LocationDetail.tsx:102 #: src/tables/ColumnRenderers.tsx:278 -#: src/tables/build/BuildAllocatedStockTable.tsx:91 -#: src/tables/machine/MachineTypeTable.tsx:161 -#: src/tables/machine/MachineTypeTable.tsx:257 +#: src/tables/build/BuildAllocatedStockTable.tsx:88 +#: src/tables/machine/MachineTypeTable.tsx:159 +#: src/tables/machine/MachineTypeTable.tsx:255 #: src/tables/plugin/PluginListTable.tsx:110 msgid "Description" msgstr "Descrizione" @@ -2814,7 +2851,7 @@ msgstr "Data" #: src/tables/company/CompanyTable.tsx:91 #: src/tables/machine/MachineListTable.tsx:384 #: src/tables/machine/MachineListTable.tsx:799 -#: src/tables/part/ParametricPartTable.tsx:354 +#: src/tables/part/ParametricPartTable.tsx:19 #: src/tables/part/PartTable.tsx:197 #: src/tables/part/PartVariantTable.tsx:15 #: src/tables/plugin/PluginListTable.tsx:96 @@ -2836,8 +2873,8 @@ msgid "Installation Path" msgstr "Percorso d'installazione" #: src/components/plugins/PluginDrawer.tsx:116 -#: src/tables/machine/MachineTypeTable.tsx:184 -#: src/tables/machine/MachineTypeTable.tsx:293 +#: src/tables/machine/MachineTypeTable.tsx:182 +#: src/tables/machine/MachineTypeTable.tsx:291 #: src/tables/plugin/PluginListTable.tsx:101 #: src/tables/plugin/PluginListTable.tsx:417 msgid "Builtin" @@ -2849,8 +2886,8 @@ msgstr "Pacchetto" #: src/components/plugins/PluginDrawer.tsx:133 #: src/pages/Index/Settings/AdminCenter/PluginManagementPanel.tsx:55 -#: src/pages/Index/Settings/SystemSettings.tsx:331 -#: src/pages/Index/Settings/UserSettings.tsx:128 +#: src/pages/Index/Settings/SystemSettings.tsx:337 +#: src/pages/Index/Settings/UserSettings.tsx:129 msgid "Plugin Settings" msgstr "Impostazioni Plugin" @@ -2911,7 +2948,7 @@ msgstr "Errore durante il caricamento del contenuto del plugin" #~ msgid "Unknown model: {model}" #~ msgstr "Unknown model: {model}" -#: src/components/render/Instance.tsx:249 +#: src/components/render/Instance.tsx:247 msgid "Unknown model: {model_name}" msgstr "Modello sconosciuto: {model_name}" @@ -2939,10 +2976,10 @@ msgstr "Spedizione" #: src/components/render/Part.tsx:28 #: src/components/render/Plugin.tsx:17 #: src/components/render/User.tsx:37 -#: src/pages/company/CompanyDetail.tsx:323 -#: src/pages/company/SupplierPartDetail.tsx:373 +#: src/pages/company/CompanyDetail.tsx:328 +#: src/pages/company/SupplierPartDetail.tsx:378 #: src/pages/core/UserDetail.tsx:211 -#: src/pages/part/PartDetail.tsx:1027 +#: src/pages/part/PartDetail.tsx:1048 #: src/tables/ColumnRenderers.tsx:410 msgid "Inactive" msgstr "Inattivo" @@ -2962,11 +2999,11 @@ msgstr "Nessuno stock" #: src/components/render/Part.tsx:47 #: src/components/wizards/OrderPartsWizard.tsx:135 -#: src/pages/company/SupplierPartDetail.tsx:197 -#: src/pages/company/SupplierPartDetail.tsx:394 -#: src/pages/part/PartDetail.tsx:1015 +#: src/pages/company/SupplierPartDetail.tsx:198 +#: src/pages/company/SupplierPartDetail.tsx:399 +#: src/pages/part/PartDetail.tsx:1030 #: src/tables/bom/BomTable.tsx:444 -#: src/tables/build/BuildLineTable.tsx:222 +#: src/tables/build/BuildLineTable.tsx:223 #: src/tables/part/PartTable.tsx:108 msgid "On Order" msgstr "In ordine" @@ -2974,9 +3011,9 @@ msgstr "In ordine" #: src/components/render/Part.tsx:55 #: src/components/wizards/OrderPartsWizard.tsx:141 #: src/pages/part/PartDetail.tsx:587 -#: src/pages/part/PartDetail.tsx:1021 +#: src/pages/part/PartDetail.tsx:1036 #: src/pages/stock/StockDetail.tsx:925 -#: src/tables/part/PartTestResultTable.tsx:297 +#: src/tables/part/PartTestResultTable.tsx:305 #: src/tables/stock/StockItemTable.tsx:359 msgid "In Production" msgstr "In Produzione" @@ -2987,7 +3024,7 @@ msgid "Details" msgstr "Dettagli" #: src/components/render/Part.tsx:112 -#: src/components/wizards/ImportPartWizard.tsx:806 +#: src/components/wizards/ImportPartWizard.tsx:807 #: src/pages/part/PartDetail.tsx:487 #: src/tables/ColumnRenderers.tsx:233 #: src/tables/ColumnRenderers.tsx:242 @@ -3000,16 +3037,16 @@ msgstr "Categoria" #: src/components/render/Stock.tsx:114 #: src/components/render/Stock.tsx:132 #: src/forms/BuildForms.tsx:795 -#: src/forms/PurchaseOrderForms.tsx:595 +#: src/forms/PurchaseOrderForms.tsx:647 #: src/forms/StockForms.tsx:792 #: src/forms/StockForms.tsx:839 -#: src/forms/StockForms.tsx:885 -#: src/forms/StockForms.tsx:924 -#: src/forms/StockForms.tsx:960 -#: src/forms/StockForms.tsx:1003 -#: src/forms/StockForms.tsx:1047 -#: src/forms/StockForms.tsx:1095 -#: src/forms/StockForms.tsx:1139 +#: src/forms/StockForms.tsx:892 +#: src/forms/StockForms.tsx:938 +#: src/forms/StockForms.tsx:976 +#: src/forms/StockForms.tsx:1019 +#: src/forms/StockForms.tsx:1063 +#: src/forms/StockForms.tsx:1111 +#: src/forms/StockForms.tsx:1155 #: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:88 #: src/pages/core/UserDetail.tsx:158 #: src/pages/stock/StockDetail.tsx:298 @@ -3023,7 +3060,7 @@ msgstr "Posizione" #: src/components/render/Stock.tsx:99 #: src/pages/stock/StockDetail.tsx:198 #: src/pages/stock/StockDetail.tsx:930 -#: src/tables/build/BuildAllocatedStockTable.tsx:121 +#: src/tables/build/BuildAllocatedStockTable.tsx:118 #: src/tables/build/BuildOutputTable.tsx:107 #: src/tables/sales/SalesOrderAllocationTable.tsx:142 msgid "Serial Number" @@ -3034,9 +3071,9 @@ msgstr "Numero Seriale" #: src/forms/BuildForms.tsx:240 #: src/forms/BuildForms.tsx:634 #: src/forms/BuildForms.tsx:797 -#: src/forms/PurchaseOrderForms.tsx:801 +#: src/forms/PurchaseOrderForms.tsx:853 #: src/forms/ReturnOrderForms.tsx:243 -#: src/forms/SalesOrderForms.tsx:308 +#: src/forms/SalesOrderForms.tsx:387 #: src/forms/StockForms.tsx:841 #: src/pages/part/PartStockHistoryDetail.tsx:56 #: src/pages/part/PartStockHistoryDetail.tsx:210 @@ -3046,9 +3083,9 @@ msgstr "Numero Seriale" #: src/pages/part/pricing/PriceBreakPanel.tsx:172 #: src/pages/stock/StockDetail.tsx:258 #: src/pages/stock/StockDetail.tsx:936 -#: src/tables/build/BuildLineTable.tsx:86 +#: src/tables/build/BuildLineTable.tsx:83 #: src/tables/part/PartPurchaseOrdersTable.tsx:94 -#: src/tables/part/PartTestResultTable.tsx:269 +#: src/tables/part/PartTestResultTable.tsx:277 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:175 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:206 #: src/tables/purchasing/SupplierPriceBreakTable.tsx:69 @@ -3063,14 +3100,14 @@ msgstr "Quantità" #: src/forms/BuildForms.tsx:474 #: src/forms/StockForms.tsx:793 #: src/forms/StockForms.tsx:840 -#: src/forms/StockForms.tsx:886 -#: src/forms/StockForms.tsx:925 -#: src/forms/StockForms.tsx:961 -#: src/forms/StockForms.tsx:1004 -#: src/forms/StockForms.tsx:1048 -#: src/forms/StockForms.tsx:1096 -#: src/forms/StockForms.tsx:1140 -#: src/tables/build/BuildLineTable.tsx:96 +#: src/forms/StockForms.tsx:893 +#: src/forms/StockForms.tsx:939 +#: src/forms/StockForms.tsx:977 +#: src/forms/StockForms.tsx:1020 +#: src/forms/StockForms.tsx:1064 +#: src/forms/StockForms.tsx:1112 +#: src/forms/StockForms.tsx:1156 +#: src/tables/build/BuildLineTable.tsx:93 msgid "Batch" msgstr "Lotto" @@ -3306,10 +3343,6 @@ msgstr "Nessuna impostazione specificata" #~ msgid "Part category updated" #~ msgstr "Part category updated" -#: src/components/tables/part/PartParameterTable.tsx:41 -#~ msgid "Parameter" -#~ msgstr "Parameter" - #: src/components/tables/part/PartParameterTable.tsx:114 #~ msgid "Part parameter updated" #~ msgstr "Part parameter updated" @@ -3571,15 +3604,16 @@ msgid "Already Imported" msgstr "Già importato" #: src/components/wizards/ImportPartWizard.tsx:205 -#: src/pages/company/CompanyDetail.tsx:136 +#: src/pages/company/CompanyDetail.tsx:137 #: src/pages/company/SupplierDetail.tsx:8 -#: src/pages/company/SupplierPartDetail.tsx:130 -#: src/pages/company/SupplierPartDetail.tsx:235 -#: src/pages/company/SupplierPartDetail.tsx:364 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:156 +#: src/pages/company/SupplierPartDetail.tsx:131 +#: src/pages/company/SupplierPartDetail.tsx:236 +#: src/pages/company/SupplierPartDetail.tsx:369 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:157 #: src/tables/Filter.tsx:360 #: src/tables/company/CompanyTable.tsx:96 #: src/tables/part/PartPurchaseOrdersTable.tsx:43 +#: src/tables/purchasing/PurchaseOrderParametricTable.tsx:34 #: src/tables/purchasing/PurchaseOrderTable.tsx:109 #: src/tables/purchasing/SupplierPriceBreakTable.tsx:40 msgid "Supplier" @@ -3648,7 +3682,7 @@ msgid "Next" msgstr "Successivo" #: src/components/wizards/ImportPartWizard.tsx:540 -#: src/pages/part/PartDetail.tsx:1046 +#: src/pages/part/PartDetail.tsx:1067 #: src/tables/part/PartTable.tsx:408 msgid "Edit Part" msgstr "Modifica Articolo" @@ -3669,28 +3703,28 @@ msgstr "Sei sicuro di voler importare il fornitore e il produttore articolo in q msgid "Import" msgstr "Importa" -#: src/components/wizards/ImportPartWizard.tsx:691 +#: src/components/wizards/ImportPartWizard.tsx:692 msgid "Parameters created successfully!" msgstr "Parametro creato con successo!" -#: src/components/wizards/ImportPartWizard.tsx:719 +#: src/components/wizards/ImportPartWizard.tsx:720 msgid "Failed to create parameters, please fix the errors and try again" msgstr "Impossibile creare i parametri, si prega di correggere gli errori e riprovare" #. placeholder {0}: supplierPart?.supplier -#: src/components/wizards/ImportPartWizard.tsx:739 +#: src/components/wizards/ImportPartWizard.tsx:740 msgid "Part imported successfully from supplier {0}." msgstr "Parte importata con successo dal fornitore {0}." -#: src/components/wizards/ImportPartWizard.tsx:752 +#: src/components/wizards/ImportPartWizard.tsx:753 msgid "Open Part" msgstr "Apri articolo" -#: src/components/wizards/ImportPartWizard.tsx:759 +#: src/components/wizards/ImportPartWizard.tsx:760 msgid "Open Supplier Part" msgstr "Apri Fornitore Articolo" -#: src/components/wizards/ImportPartWizard.tsx:766 +#: src/components/wizards/ImportPartWizard.tsx:767 msgid "Open Manufacturer Part" msgstr "Apri Produttore Articolo" @@ -3699,25 +3733,19 @@ msgstr "Apri Produttore Articolo" #~ msgid "Import Part" #~ msgstr "Import Part" -#: src/components/wizards/ImportPartWizard.tsx:802 +#: src/components/wizards/ImportPartWizard.tsx:803 msgid "Import Supplier Part" msgstr "Importa Fornitore Articolo" -#: src/components/wizards/ImportPartWizard.tsx:804 +#: src/components/wizards/ImportPartWizard.tsx:805 msgid "Search Supplier Part" msgstr "Trova Articolo del Fornitore" -#: src/components/wizards/ImportPartWizard.tsx:806 -#: src/pages/company/ManufacturerPartDetail.tsx:166 -#: src/pages/part/PartDetail.tsx:793 -msgid "Parameters" -msgstr "Parametri" - -#: src/components/wizards/ImportPartWizard.tsx:806 +#: src/components/wizards/ImportPartWizard.tsx:807 msgid "Confirm import" msgstr "Conferma importazione" -#: src/components/wizards/ImportPartWizard.tsx:808 +#: src/components/wizards/ImportPartWizard.tsx:809 msgid "Done" msgstr "Fatto" @@ -3738,24 +3766,24 @@ msgid "Sales Requirements" msgstr "Requisiti di vendita" #: src/components/wizards/OrderPartsWizard.tsx:129 -#: src/forms/StockForms.tsx:887 -#: src/forms/StockForms.tsx:926 -#: src/forms/StockForms.tsx:962 -#: src/forms/StockForms.tsx:1005 -#: src/forms/StockForms.tsx:1049 -#: src/forms/StockForms.tsx:1097 -#: src/forms/StockForms.tsx:1141 -#: src/pages/company/SupplierPartDetail.tsx:190 -#: src/pages/company/SupplierPartDetail.tsx:378 +#: src/forms/StockForms.tsx:894 +#: src/forms/StockForms.tsx:940 +#: src/forms/StockForms.tsx:978 +#: src/forms/StockForms.tsx:1021 +#: src/forms/StockForms.tsx:1065 +#: src/forms/StockForms.tsx:1113 +#: src/forms/StockForms.tsx:1157 +#: src/pages/company/SupplierPartDetail.tsx:191 +#: src/pages/company/SupplierPartDetail.tsx:383 #: src/pages/part/PartDetail.tsx:534 -#: src/pages/part/PartDetail.tsx:984 +#: src/pages/part/PartDetail.tsx:999 #: src/tables/Filter.tsx:92 #: src/tables/purchasing/SupplierPartTable.tsx:230 msgid "In Stock" msgstr "In giacenza" #: src/components/wizards/OrderPartsWizard.tsx:146 -#: src/tables/build/BuildLineTable.tsx:404 +#: src/tables/build/BuildLineTable.tsx:405 msgid "Required Quantity" msgstr "Quantità richiesta" @@ -3847,7 +3875,7 @@ msgid "Please correct the errors in the selected parts" msgstr "Si prega di correggere gli errori negli articoli selezionati" #: src/components/wizards/OrderPartsWizard.tsx:587 -#: src/tables/build/BuildLineTable.tsx:815 +#: src/tables/build/BuildLineTable.tsx:822 #: src/tables/part/PartTable.tsx:522 #: src/tables/sales/SalesOrderLineItemTable.tsx:370 msgid "Order Parts" @@ -4349,9 +4377,9 @@ msgstr "Sostitutivo aggiunto" #: src/forms/BuildForms.tsx:333 #: src/forms/BuildForms.tsx:408 #: src/forms/BuildForms.tsx:685 -#: src/tables/build/BuildAllocatedStockTable.tsx:150 +#: src/tables/build/BuildAllocatedStockTable.tsx:147 #: src/tables/build/BuildOutputTable.tsx:582 -#: src/tables/part/PartTestResultTable.tsx:272 +#: src/tables/part/PartTestResultTable.tsx:280 msgid "Build Output" msgstr "Output produzione" @@ -4362,22 +4390,22 @@ msgstr "Quantità da completare" #: src/forms/BuildForms.tsx:336 #: src/forms/BuildForms.tsx:411 #: src/forms/BuildForms.tsx:475 -#: src/forms/PurchaseOrderForms.tsx:717 +#: src/forms/PurchaseOrderForms.tsx:769 #: src/forms/ReturnOrderForms.tsx:197 #: src/forms/ReturnOrderForms.tsx:244 #: src/forms/StockForms.tsx:712 #: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:87 -#: src/pages/build/BuildDetail.tsx:222 +#: src/pages/build/BuildDetail.tsx:223 #: src/pages/core/UserDetail.tsx:151 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:168 -#: src/pages/sales/ReturnOrderDetail.tsx:135 -#: src/pages/sales/SalesOrderDetail.tsx:125 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:169 +#: src/pages/sales/ReturnOrderDetail.tsx:136 +#: src/pages/sales/SalesOrderDetail.tsx:126 #: src/pages/stock/StockDetail.tsx:170 #: src/tables/Filter.tsx:274 #: src/tables/build/BuildOutputTable.tsx:404 #: src/tables/machine/MachineListTable.tsx:387 #: src/tables/part/PartPurchaseOrdersTable.tsx:38 -#: src/tables/part/PartTestResultTable.tsx:309 +#: src/tables/part/PartTestResultTable.tsx:317 #: src/tables/sales/ReturnOrderLineItemTable.tsx:138 #: src/tables/sales/ReturnOrderLineItemTable.tsx:176 #: src/tables/settings/CustomStateTable.tsx:79 @@ -4443,18 +4471,19 @@ msgid "Build outputs have been cancelled" msgstr "Gli output di produzione sono stati cancellati" #: src/forms/BuildForms.tsx:631 -#: src/pages/build/BuildDetail.tsx:207 -#: src/pages/company/ManufacturerPartDetail.tsx:85 -#: src/pages/company/SupplierPartDetail.tsx:96 +#: src/pages/build/BuildDetail.tsx:208 +#: src/pages/company/ManufacturerPartDetail.tsx:84 +#: src/pages/company/SupplierPartDetail.tsx:97 #: src/pages/part/PartDetail.tsx:453 #: src/pages/stock/StockDetail.tsx:153 #: src/tables/bom/BomTable.tsx:134 #: src/tables/bom/UsedInTable.tsx:40 -#: src/tables/build/BuildAllocatedStockTable.tsx:108 -#: src/tables/build/BuildLineTable.tsx:336 +#: src/tables/build/BuildAllocatedStockTable.tsx:105 +#: src/tables/build/BuildLineTable.tsx:337 #: src/tables/build/BuildOrderTable.tsx:79 #: src/tables/part/PartSalesAllocationsTable.tsx:61 #: src/tables/part/RelatedPartTable.tsx:73 +#: src/tables/purchasing/ManufacturerPartParametricTable.tsx:21 #: src/tables/purchasing/ManufacturerPartTable.tsx:69 #: src/tables/purchasing/SupplierPartTable.tsx:70 #: src/tables/sales/SalesOrderAllocationTable.tsx:135 @@ -4466,54 +4495,54 @@ msgstr "IPN" #: src/forms/BuildForms.tsx:632 #: src/forms/BuildForms.tsx:796 #: src/forms/BuildForms.tsx:897 -#: src/forms/SalesOrderForms.tsx:306 -#: src/tables/build/BuildAllocatedStockTable.tsx:139 -#: src/tables/build/BuildLineTable.tsx:182 +#: src/forms/SalesOrderForms.tsx:385 +#: src/tables/build/BuildAllocatedStockTable.tsx:136 +#: src/tables/build/BuildLineTable.tsx:183 #: src/tables/sales/SalesOrderLineItemTable.tsx:342 #: src/tables/stock/StockItemTable.tsx:338 msgid "Allocated" msgstr "Allocato" #: src/forms/BuildForms.tsx:667 -#: src/forms/SalesOrderForms.tsx:295 -#: src/pages/build/BuildDetail.tsx:108 -#: src/pages/build/BuildDetail.tsx:326 +#: src/forms/SalesOrderForms.tsx:374 +#: src/pages/build/BuildDetail.tsx:109 +#: src/pages/build/BuildDetail.tsx:327 msgid "Source Location" msgstr "Posizione sorgente" #: src/forms/BuildForms.tsx:668 -#: src/forms/SalesOrderForms.tsx:296 +#: src/forms/SalesOrderForms.tsx:375 msgid "Select the source location for the stock allocation" msgstr "Selezionare la posizione di origine per l'assegnazione dello stock" #: src/forms/BuildForms.tsx:700 -#: src/forms/SalesOrderForms.tsx:336 -#: src/tables/build/BuildLineTable.tsx:574 -#: src/tables/build/BuildLineTable.tsx:731 -#: src/tables/build/BuildLineTable.tsx:830 +#: src/forms/SalesOrderForms.tsx:415 +#: src/tables/build/BuildLineTable.tsx:575 +#: src/tables/build/BuildLineTable.tsx:738 +#: src/tables/build/BuildLineTable.tsx:837 #: src/tables/sales/SalesOrderLineItemTable.tsx:380 #: src/tables/sales/SalesOrderLineItemTable.tsx:406 msgid "Allocate Stock" msgstr "Assegna Scorte" #: src/forms/BuildForms.tsx:703 -#: src/forms/SalesOrderForms.tsx:341 +#: src/forms/SalesOrderForms.tsx:420 msgid "Stock items allocated" msgstr "Articoli di stock assegnati" #: src/forms/BuildForms.tsx:816 #: src/forms/BuildForms.tsx:917 -#: src/tables/build/BuildAllocatedStockTable.tsx:240 -#: src/tables/build/BuildAllocatedStockTable.tsx:272 -#: src/tables/build/BuildLineTable.tsx:741 -#: src/tables/build/BuildLineTable.tsx:864 +#: src/tables/build/BuildAllocatedStockTable.tsx:243 +#: src/tables/build/BuildAllocatedStockTable.tsx:279 +#: src/tables/build/BuildLineTable.tsx:748 +#: src/tables/build/BuildLineTable.tsx:871 msgid "Consume Stock" msgstr "Consuma Scorte" #: src/forms/BuildForms.tsx:817 #: src/forms/BuildForms.tsx:918 msgid "Stock items scheduled to be consumed" -msgstr "" +msgstr "Articoli di magazzino programmati per il consumo" #: src/forms/BuildForms.tsx:817 #: src/forms/BuildForms.tsx:918 @@ -4521,21 +4550,21 @@ msgstr "" #~ msgstr "Stock items consumed" #: src/forms/BuildForms.tsx:853 -#: src/tables/build/BuildLineTable.tsx:514 +#: src/tables/build/BuildLineTable.tsx:515 #: src/tables/part/PartBuildAllocationsTable.tsx:101 msgid "Fully consumed" msgstr "Completamente consumato" #: src/forms/BuildForms.tsx:898 -#: src/tables/build/BuildLineTable.tsx:187 +#: src/tables/build/BuildLineTable.tsx:188 #: src/tables/stock/StockItemTable.tsx:367 msgid "Consumed" msgstr "Utilizzato" -#: src/forms/CommonForms.tsx:88 -#: src/forms/PurchaseOrderForms.tsx:125 +#: src/forms/CommonForms.tsx:92 +#: src/forms/PurchaseOrderForms.tsx:176 #: src/forms/ReturnOrderForms.tsx:138 -#: src/forms/SalesOrderForms.tsx:164 +#: src/forms/SalesOrderForms.tsx:185 msgid "Select project code for this line item" msgstr "Seleziona il codice progetto per questa voce di riga" @@ -4543,16 +4572,16 @@ msgstr "Seleziona il codice progetto per questa voce di riga" #~ msgid "Company updated" #~ msgstr "Company updated" -#: src/forms/PartForms.tsx:85 -#: src/forms/PartForms.tsx:207 -#: src/pages/part/CategoryDetail.tsx:124 +#: src/forms/PartForms.tsx:99 +#: src/forms/PartForms.tsx:228 +#: src/pages/part/CategoryDetail.tsx:127 #: src/pages/part/PartDetail.tsx:668 #: src/tables/part/PartCategoryTable.tsx:94 #: src/tables/part/PartTable.tsx:325 msgid "Subscribed" msgstr "Sottoscritto" -#: src/forms/PartForms.tsx:86 +#: src/forms/PartForms.tsx:100 msgid "Subscribe to notifications for this part" msgstr "Sottoscrivi le notifiche per questo articolo" @@ -4564,156 +4593,156 @@ msgstr "Sottoscrivi le notifiche per questo articolo" #~ msgid "Part updated" #~ msgstr "Part updated" -#: src/forms/PartForms.tsx:193 +#: src/forms/PartForms.tsx:214 msgid "Parent part category" msgstr "Categoria articolo principale" -#: src/forms/PartForms.tsx:208 +#: src/forms/PartForms.tsx:229 msgid "Subscribe to notifications for this category" msgstr "Sottoscrivi notifiche per questa categoria" -#: src/forms/PurchaseOrderForms.tsx:388 -msgid "Assign Batch Code and Serial Numbers" -msgstr "Assegna codice lotto e numeri di serie" - -#: src/forms/PurchaseOrderForms.tsx:390 -msgid "Assign Batch Code" -msgstr "Assegna Codice Lotto" - -#: src/forms/PurchaseOrderForms.tsx:410 -msgid "Choose Location" -msgstr "Scegliere la posizione" - -#: src/forms/PurchaseOrderForms.tsx:418 -msgid "Item Destination selected" -msgstr "Destinazione oggetto selezionata" - #: src/forms/PurchaseOrderForms.tsx:421 #~ msgid "Assign Batch Code{0}" #~ msgstr "Assign Batch Code{0}" -#: src/forms/PurchaseOrderForms.tsx:428 -msgid "Part category default location selected" -msgstr "Posizione predefinita della categoria parte selezionata" +#: src/forms/PurchaseOrderForms.tsx:440 +msgid "Assign Batch Code and Serial Numbers" +msgstr "Assegna codice lotto e numeri di serie" -#: src/forms/PurchaseOrderForms.tsx:438 -msgid "Received stock location selected" -msgstr "Posizione stock ricevuto selezionata" +#: src/forms/PurchaseOrderForms.tsx:442 +msgid "Assign Batch Code" +msgstr "Assegna Codice Lotto" #: src/forms/PurchaseOrderForms.tsx:444 #: src/forms/StockForms.tsx:428 #~ msgid "Remove item from list" #~ msgstr "Remove item from list" -#: src/forms/PurchaseOrderForms.tsx:446 +#: src/forms/PurchaseOrderForms.tsx:462 +msgid "Choose Location" +msgstr "Scegliere la posizione" + +#: src/forms/PurchaseOrderForms.tsx:470 +msgid "Item Destination selected" +msgstr "Destinazione oggetto selezionata" + +#: src/forms/PurchaseOrderForms.tsx:480 +msgid "Part category default location selected" +msgstr "Posizione predefinita della categoria parte selezionata" + +#: src/forms/PurchaseOrderForms.tsx:490 +msgid "Received stock location selected" +msgstr "Posizione stock ricevuto selezionata" + +#: src/forms/PurchaseOrderForms.tsx:498 msgid "Default location selected" msgstr "Posizione predefinita selezionata" -#: src/forms/PurchaseOrderForms.tsx:507 +#: src/forms/PurchaseOrderForms.tsx:559 msgid "Set Location" msgstr "Imposta Posizione" -#: src/forms/PurchaseOrderForms.tsx:524 -msgid "Set Expiry Date" -msgstr "Impostare una Data di Scadenza" - -#: src/forms/PurchaseOrderForms.tsx:532 -#: src/forms/StockForms.tsx:693 -msgid "Adjust Packaging" -msgstr "Regola Imballaggio" - -#: src/forms/PurchaseOrderForms.tsx:540 -#: src/forms/StockForms.tsx:684 -#: src/hooks/UseStockAdjustActions.tsx:148 -msgid "Change Status" -msgstr "Modifica Stato" - -#: src/forms/PurchaseOrderForms.tsx:546 -msgid "Add Note" -msgstr "Aggiungi Nota" - #: src/forms/PurchaseOrderForms.tsx:566 #~ msgid "Serial numbers" #~ msgstr "Serial numbers" +#: src/forms/PurchaseOrderForms.tsx:576 +msgid "Set Expiry Date" +msgstr "Impostare una Data di Scadenza" + #: src/forms/PurchaseOrderForms.tsx:582 #~ msgid "Store at line item destination" #~ msgstr "Store at line item destination" -#: src/forms/PurchaseOrderForms.tsx:610 -msgid "Store at default location" -msgstr "Memorizza nella posizione predefinita" +#: src/forms/PurchaseOrderForms.tsx:584 +#: src/forms/StockForms.tsx:693 +msgid "Adjust Packaging" +msgstr "Regola Imballaggio" -#: src/forms/PurchaseOrderForms.tsx:625 -msgid "Store at line item destination " -msgstr "Salva alla destinazione dell'articolo" +#: src/forms/PurchaseOrderForms.tsx:592 +#: src/forms/StockForms.tsx:684 +#: src/hooks/UseStockAdjustActions.tsx:148 +msgid "Change Status" +msgstr "Modifica Stato" -#: src/forms/PurchaseOrderForms.tsx:637 -msgid "Store with already received stock" -msgstr "Memorizza con stock già ricevuto" +#: src/forms/PurchaseOrderForms.tsx:598 +msgid "Add Note" +msgstr "Aggiungi Nota" #: src/forms/PurchaseOrderForms.tsx:658 #~ msgid "Receive line items" #~ msgstr "Receive line items" -#: src/forms/PurchaseOrderForms.tsx:661 -#: src/pages/build/BuildDetail.tsx:340 +#: src/forms/PurchaseOrderForms.tsx:662 +msgid "Store at default location" +msgstr "Memorizza nella posizione predefinita" + +#: src/forms/PurchaseOrderForms.tsx:677 +msgid "Store at line item destination " +msgstr "Salva alla destinazione dell'articolo" + +#: src/forms/PurchaseOrderForms.tsx:689 +msgid "Store with already received stock" +msgstr "Memorizza con stock già ricevuto" + +#: src/forms/PurchaseOrderForms.tsx:713 +#: src/pages/build/BuildDetail.tsx:341 #: src/pages/stock/StockDetail.tsx:280 #: src/pages/stock/StockDetail.tsx:952 #: src/tables/Filter.tsx:83 -#: src/tables/build/BuildAllocatedStockTable.tsx:128 +#: src/tables/build/BuildAllocatedStockTable.tsx:125 #: src/tables/build/BuildOutputTable.tsx:112 -#: src/tables/part/PartTestResultTable.tsx:260 -#: src/tables/part/PartTestResultTable.tsx:281 +#: src/tables/part/PartTestResultTable.tsx:268 +#: src/tables/part/PartTestResultTable.tsx:289 #: src/tables/sales/SalesOrderAllocationTable.tsx:149 msgid "Batch Code" msgstr "Codice Lotto" -#: src/forms/PurchaseOrderForms.tsx:662 +#: src/forms/PurchaseOrderForms.tsx:714 msgid "Enter batch code for received items" msgstr "Inserisci il codice lotto per gli articoli ricevuti" -#: src/forms/PurchaseOrderForms.tsx:675 +#: src/forms/PurchaseOrderForms.tsx:727 #: src/forms/StockForms.tsx:218 msgid "Serial Numbers" msgstr "Numeri di serie" -#: src/forms/PurchaseOrderForms.tsx:676 +#: src/forms/PurchaseOrderForms.tsx:728 msgid "Enter serial numbers for received items" msgstr "Inserisci i numeri di serie per gli elementi ricevuti" -#: src/forms/PurchaseOrderForms.tsx:690 +#: src/forms/PurchaseOrderForms.tsx:742 #: src/pages/stock/StockDetail.tsx:382 #: src/tables/stock/StockItemTable.tsx:294 msgid "Expiry Date" msgstr "Data di scadenza" -#: src/forms/PurchaseOrderForms.tsx:691 +#: src/forms/PurchaseOrderForms.tsx:743 msgid "Enter an expiry date for received items" msgstr "Inserisci una data di scadenza per gli articoli ricevuti" -#: src/forms/PurchaseOrderForms.tsx:703 +#: src/forms/PurchaseOrderForms.tsx:755 #: src/forms/StockForms.tsx:728 -#: src/pages/company/SupplierPartDetail.tsx:172 -#: src/pages/company/SupplierPartDetail.tsx:236 +#: src/pages/company/SupplierPartDetail.tsx:173 +#: src/pages/company/SupplierPartDetail.tsx:237 #: src/pages/stock/StockDetail.tsx:419 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:227 msgid "Packaging" msgstr "Imballaggio" -#: src/forms/PurchaseOrderForms.tsx:727 -#: src/pages/company/SupplierPartDetail.tsx:120 +#: src/forms/PurchaseOrderForms.tsx:779 +#: src/pages/company/SupplierPartDetail.tsx:121 #: src/tables/ColumnRenderers.tsx:332 msgid "Note" msgstr "Nota" -#: src/forms/PurchaseOrderForms.tsx:799 -#: src/pages/company/SupplierPartDetail.tsx:138 +#: src/forms/PurchaseOrderForms.tsx:851 +#: src/pages/company/SupplierPartDetail.tsx:139 #: src/tables/purchasing/SupplierPriceBreakTable.tsx:49 msgid "SKU" msgstr "SKU" -#: src/forms/PurchaseOrderForms.tsx:800 +#: src/forms/PurchaseOrderForms.tsx:852 #: src/tables/part/PartPurchaseOrdersTable.tsx:127 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:213 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:283 @@ -4721,11 +4750,11 @@ msgstr "SKU" msgid "Received" msgstr "Ricevuto" -#: src/forms/PurchaseOrderForms.tsx:817 +#: src/forms/PurchaseOrderForms.tsx:869 msgid "Receive Line Items" msgstr "Ricevi Elementi Riga" -#: src/forms/PurchaseOrderForms.tsx:823 +#: src/forms/PurchaseOrderForms.tsx:875 msgid "Items received" msgstr "Articoli ricevuti" @@ -4737,7 +4766,35 @@ msgstr "Ricevi elementi" msgid "Item received into stock" msgstr "Oggetto ricevuto in magazzino" -#: src/forms/SalesOrderForms.tsx:401 +#: src/forms/SalesOrderForms.tsx:208 +#: src/forms/SalesOrderForms.tsx:210 +#: src/tables/sales/SalesOrderShipmentTable.tsx:215 +msgid "Check Shipment" +msgstr "Controlla spedizione" + +#: src/forms/SalesOrderForms.tsx:211 +msgid "Marking the shipment as checked indicates that you have verified that all items included in this shipment are correct" +msgstr "Marcatura della spedizione come controllato indica che hai verificato che tutti gli articoli inclusi in questa spedizione sono corretti" + +#: src/forms/SalesOrderForms.tsx:221 +msgid "Shipment marked as checked" +msgstr "Spedizione contrassegnata come controllata" + +#: src/forms/SalesOrderForms.tsx:236 +#: src/forms/SalesOrderForms.tsx:238 +#: src/tables/sales/SalesOrderShipmentTable.tsx:228 +msgid "Uncheck Shipment" +msgstr "Deseleziona Spedizione" + +#: src/forms/SalesOrderForms.tsx:239 +msgid "Marking the shipment as unchecked indicates that the shipment requires further verification" +msgstr "Contrassegnare la spedizione come non controllata indica che la spedizione richiede ulteriori verifiche" + +#: src/forms/SalesOrderForms.tsx:249 +msgid "Shipment marked as unchecked" +msgstr "Spedizione contrassegnata come non controllata" + +#: src/forms/SalesOrderForms.tsx:480 msgid "Leave blank to use the order address" msgstr "Lascia vuoto per utilizzare l'indirizzo dell'ordine" @@ -4792,150 +4849,150 @@ msgstr "Sposta" msgid "Return" msgstr "Reso" -#: src/forms/StockForms.tsx:963 +#: src/forms/StockForms.tsx:979 #: src/pages/Index/Scan.tsx:182 msgid "Count" msgstr "Conta" -#: src/forms/StockForms.tsx:1246 +#: src/forms/StockForms.tsx:1262 #: src/hooks/UseStockAdjustActions.tsx:108 msgid "Add Stock" msgstr "Aggiungi Giacenza" -#: src/forms/StockForms.tsx:1247 +#: src/forms/StockForms.tsx:1263 msgid "Stock added" msgstr "Scorte aggiunte" -#: src/forms/StockForms.tsx:1250 +#: src/forms/StockForms.tsx:1266 msgid "Increase the quantity of the selected stock items by a given amount." msgstr "Aumenta la quantità degli articoli di magazzino selezionati di una data quantità." -#: src/forms/StockForms.tsx:1261 +#: src/forms/StockForms.tsx:1277 #: src/hooks/UseStockAdjustActions.tsx:118 msgid "Remove Stock" msgstr "Rimuovi giacenza" -#: src/forms/StockForms.tsx:1262 +#: src/forms/StockForms.tsx:1278 msgid "Stock removed" msgstr "Scorte rimosse" -#: src/forms/StockForms.tsx:1265 +#: src/forms/StockForms.tsx:1281 msgid "Decrease the quantity of the selected stock items by a given amount." msgstr "Diminuisce la quantità degli articoli di magazzino selezionati di una data quantità." -#: src/forms/StockForms.tsx:1276 +#: src/forms/StockForms.tsx:1292 #: src/hooks/UseStockAdjustActions.tsx:128 msgid "Transfer Stock" msgstr "Trasferisci giacenza" -#: src/forms/StockForms.tsx:1277 +#: src/forms/StockForms.tsx:1293 msgid "Stock transferred" msgstr "Scorte trasferite" -#: src/forms/StockForms.tsx:1280 +#: src/forms/StockForms.tsx:1296 msgid "Transfer selected items to the specified location." msgstr "Trasferisci gli elementi selezionati nella posizione specificata." -#: src/forms/StockForms.tsx:1291 +#: src/forms/StockForms.tsx:1307 #: src/hooks/UseStockAdjustActions.tsx:168 msgid "Return Stock" msgstr "Restituisci Elemento a Magazzino" -#: src/forms/StockForms.tsx:1292 +#: src/forms/StockForms.tsx:1308 msgid "Stock returned" msgstr "Reso a magazzino effettuato" -#: src/forms/StockForms.tsx:1295 +#: src/forms/StockForms.tsx:1311 msgid "Return selected items into stock, to the specified location." msgstr "Restituisce gli articoli selezionati in magazzino, nella posizione specificata." -#: src/forms/StockForms.tsx:1306 +#: src/forms/StockForms.tsx:1322 #: src/hooks/UseStockAdjustActions.tsx:98 msgid "Count Stock" msgstr "Conteggio Giacenze" -#: src/forms/StockForms.tsx:1307 +#: src/forms/StockForms.tsx:1323 msgid "Stock counted" msgstr "Scorte contate" -#: src/forms/StockForms.tsx:1310 +#: src/forms/StockForms.tsx:1326 msgid "Count the selected stock items, and adjust the quantity accordingly." msgstr "Contare gli articoli di magazzino selezionati e regolare la quantità di conseguenza." -#: src/forms/StockForms.tsx:1321 +#: src/forms/StockForms.tsx:1337 msgid "Change Stock Status" msgstr "Modifica stato giacenze" -#: src/forms/StockForms.tsx:1322 +#: src/forms/StockForms.tsx:1338 msgid "Stock status changed" msgstr "Stato delle scorte cambiato" -#: src/forms/StockForms.tsx:1325 +#: src/forms/StockForms.tsx:1341 msgid "Change the status of the selected stock items." msgstr "Cambia lo stato degli articoli a magazzino selezionati." -#: src/forms/StockForms.tsx:1336 +#: src/forms/StockForms.tsx:1352 #: src/hooks/UseStockAdjustActions.tsx:138 msgid "Merge Stock" msgstr "Unisci giacenze" -#: src/forms/StockForms.tsx:1337 +#: src/forms/StockForms.tsx:1353 msgid "Stock merged" msgstr "Scorte unite" -#: src/forms/StockForms.tsx:1339 +#: src/forms/StockForms.tsx:1355 msgid "Merge Stock Items" msgstr "Unisci gli articoli di magazzino" -#: src/forms/StockForms.tsx:1341 +#: src/forms/StockForms.tsx:1357 msgid "Merge operation cannot be reversed" msgstr "L'operazione di unione non è reversibile" -#: src/forms/StockForms.tsx:1342 +#: src/forms/StockForms.tsx:1358 msgid "Tracking information may be lost when merging items" msgstr "Le informazioni di tracciamento potrebbero essere perse durante l'unione degli articoli" -#: src/forms/StockForms.tsx:1343 +#: src/forms/StockForms.tsx:1359 msgid "Supplier information may be lost when merging items" msgstr "Le informazioni sul fornitore potrebbero essere perse durante l'unione degli articoli" -#: src/forms/StockForms.tsx:1361 +#: src/forms/StockForms.tsx:1377 msgid "Assign Stock to Customer" msgstr "Assegnare la scorta al cliente" -#: src/forms/StockForms.tsx:1362 +#: src/forms/StockForms.tsx:1378 msgid "Stock assigned to customer" msgstr "Scorte assegnate al cliente" -#: src/forms/StockForms.tsx:1372 +#: src/forms/StockForms.tsx:1388 msgid "Delete Stock Items" msgstr "Cancella Elemento di Magazzino" -#: src/forms/StockForms.tsx:1373 +#: src/forms/StockForms.tsx:1389 msgid "Stock deleted" msgstr "Scorte cancellate" -#: src/forms/StockForms.tsx:1376 +#: src/forms/StockForms.tsx:1392 msgid "This operation will permanently delete the selected stock items." msgstr "Questa operazione eliminerà definitivamente gli articoli a magazzino selezionati." -#: src/forms/StockForms.tsx:1385 +#: src/forms/StockForms.tsx:1401 msgid "Parent stock location" msgstr "Posizione giacenza principale" -#: src/forms/StockForms.tsx:1512 +#: src/forms/StockForms.tsx:1528 msgid "Find Serial Number" msgstr "Trova Numero Di Serie" -#: src/forms/StockForms.tsx:1523 +#: src/forms/StockForms.tsx:1539 msgid "No matching items" msgstr "Nessun articolo corrispondente trovato" -#: src/forms/StockForms.tsx:1529 +#: src/forms/StockForms.tsx:1545 msgid "Multiple matching items" msgstr "Più elementi corrispondenti trovati" -#: src/forms/StockForms.tsx:1538 +#: src/forms/StockForms.tsx:1554 msgid "Invalid response from server" msgstr "Risposta non valida dal server" @@ -4953,7 +5010,6 @@ msgstr "Elenco delle voci tra cui scegliere" #: src/tables/FilterSelectDrawer.tsx:137 #: src/tables/FilterSelectDrawer.tsx:149 #: src/tables/part/PartTestResultTable.tsx:206 -#: src/tables/purchasing/ManufacturerPartParameterTable.tsx:42 #: src/tables/stock/StockItemTestResultTable.tsx:207 msgid "Value" msgstr "Valore" @@ -5244,7 +5300,7 @@ msgid "Delete selected stock items" msgstr "Elimina gli articoli a magazzino selezionati" #: src/hooks/UseStockAdjustActions.tsx:205 -#: src/pages/part/PartDetail.tsx:1137 +#: src/pages/part/PartDetail.tsx:1158 msgid "Stock Actions" msgstr "Azioni magazzino" @@ -5932,6 +5988,9 @@ msgstr "Rimuovi Credenziale WebAuthn" #: src/pages/Index/Settings/AccountSettings/MFASettings.tsx:310 #: src/pages/Index/Settings/AccountSettings/MFASettings.tsx:401 +#: src/tables/build/BuildAllocatedStockTable.tsx:181 +#: src/tables/build/BuildLineTable.tsx:668 +#: src/tables/sales/SalesOrderAllocationTable.tsx:220 msgid "Confirm Removal" msgstr "Conferma Rimozione" @@ -6394,30 +6453,34 @@ msgid "Email Messages" msgstr "Messaggi email" #: src/pages/Index/Settings/AdminCenter/HomePanel.tsx:22 -msgid "Active Alerts" -msgstr "Avvisi Attivi" +#~ msgid "Active Alerts" +#~ msgstr "Active Alerts" #: src/pages/Index/Settings/AdminCenter/HomePanel.tsx:27 -msgid "Inactive Alerts" -msgstr "Avvisi Inattivi" +#~ msgid "Inactive Alerts" +#~ msgstr "Inactive Alerts" -#: src/pages/Index/Settings/AdminCenter/HomePanel.tsx:38 +#: src/pages/Index/Settings/AdminCenter/HomePanel.tsx:36 +msgid "System Status" +msgstr "" + +#: src/pages/Index/Settings/AdminCenter/HomePanel.tsx:47 msgid "Admin Center Information" msgstr "Informazioni Centro Amministratore" -#: src/pages/Index/Settings/AdminCenter/HomePanel.tsx:44 +#: src/pages/Index/Settings/AdminCenter/HomePanel.tsx:53 msgid "The home panel (and the whole Admin Center) is a new feature starting with the new UI and was previously (before 1.0) not available." msgstr "Il pannello home (e l'intero centro amministrativo) è una nuova funzionalità che inizia con la nuova interfaccia utente ed era precedentemente (prima 1.0) non disponibile." -#: src/pages/Index/Settings/AdminCenter/HomePanel.tsx:51 +#: src/pages/Index/Settings/AdminCenter/HomePanel.tsx:60 msgid "The admin center provides a centralized location for all administration functionality and is meant to replace all interaction with the (django) backend admin interface." msgstr "Il centro di amministrazione fornisce una posizione centralizzata per tutte le funzionalità di amministrazione ed è destinato a sostituire tutte le interazioni con l'interfaccia di amministrazione (django) backend." -#: src/pages/Index/Settings/AdminCenter/HomePanel.tsx:58 +#: src/pages/Index/Settings/AdminCenter/HomePanel.tsx:67 msgid "Please open feature requests (after checking the tracker) for any existing backend admin functionality you are missing in this UI. The backend admin interface should be used carefully and seldom." msgstr "Si prega di aprire le richieste di funzionalità (dopo aver controllato il tracker) per qualsiasi funzionalità di amministratore del backend esistente che manca in questa UI. L'interfaccia di amministrazione del backend deve essere usata con attenzione e raramente." -#: src/pages/Index/Settings/AdminCenter/HomePanel.tsx:76 +#: src/pages/Index/Settings/AdminCenter/HomePanel.tsx:85 msgid "Quick Actions" msgstr "Azioni rapide" @@ -6476,11 +6539,11 @@ msgstr "Unità Personalizzate" #: src/pages/Index/Settings/AdminCenter/Index.tsx:195 #: src/pages/part/CategoryDetail.tsx:313 -msgid "Part Parameters" -msgstr "Parametri Articolo" +#~ msgid "Part Parameters" +#~ msgstr "Part Parameters" #: src/pages/Index/Settings/AdminCenter/Index.tsx:202 -#: src/pages/part/CategoryDetail.tsx:306 +#: src/pages/part/CategoryDetail.tsx:329 msgid "Category Parameters" msgstr "Parametri Categoria" @@ -6494,7 +6557,7 @@ msgstr "Tipi di posizione" #: src/pages/Index/Settings/AdminCenter/Index.tsx:235 #: src/pages/Index/Settings/AdminCenter/MachineManagementPanel.tsx:52 -#: src/tables/machine/MachineTypeTable.tsx:325 +#: src/tables/machine/MachineTypeTable.tsx:323 msgid "Machines" msgstr "Macchine" @@ -6507,8 +6570,8 @@ msgid "Data Management" msgstr "Gestione Dati" #: src/pages/Index/Settings/AdminCenter/Index.tsx:270 -#: src/pages/Index/Settings/SystemSettings.tsx:175 -#: src/pages/Index/Settings/UserSettings.tsx:118 +#: src/pages/Index/Settings/SystemSettings.tsx:176 +#: src/pages/Index/Settings/UserSettings.tsx:119 msgid "Reporting" msgstr "Rapporti" @@ -6709,11 +6772,11 @@ msgstr "Tokens" msgid "The settings below are specific to each available plugin" msgstr "Le impostazioni sottostanti sono specifiche per ogni plugin disponibile" -#: src/pages/Index/Settings/SystemSettings.tsx:77 +#: src/pages/Index/Settings/SystemSettings.tsx:78 msgid "Authentication" msgstr "Autenticazione" -#: src/pages/Index/Settings/SystemSettings.tsx:103 +#: src/pages/Index/Settings/SystemSettings.tsx:104 msgid "Barcodes" msgstr "Codici a barre" @@ -6725,12 +6788,12 @@ msgstr "Codici a barre" #~ msgid "This panel is a placeholder." #~ msgstr "This panel is a placeholder." -#: src/pages/Index/Settings/SystemSettings.tsx:127 -#: src/pages/Index/Settings/UserSettings.tsx:112 +#: src/pages/Index/Settings/SystemSettings.tsx:128 +#: src/pages/Index/Settings/UserSettings.tsx:113 msgid "The settings below are specific to each available notification method" msgstr "Le impostazioni sottostanti sono specifiche per ogni metodo di notifica disponibile" -#: src/pages/Index/Settings/SystemSettings.tsx:133 +#: src/pages/Index/Settings/SystemSettings.tsx:134 msgid "Pricing" msgstr "Prezzi" @@ -6738,7 +6801,7 @@ msgstr "Prezzi" #~ msgid "Exchange Rates" #~ msgstr "Exchange Rates" -#: src/pages/Index/Settings/SystemSettings.tsx:169 +#: src/pages/Index/Settings/SystemSettings.tsx:170 msgid "Labels" msgstr "Etichette" @@ -6790,15 +6853,15 @@ msgstr "Segna come non letto" #~ msgid "Delete notifications" #~ msgstr "Delete notifications" -#: src/pages/build/BuildDetail.tsx:69 +#: src/pages/build/BuildDetail.tsx:70 msgid "No Required Items" msgstr "Nessun Articolo Richiesto" -#: src/pages/build/BuildDetail.tsx:71 +#: src/pages/build/BuildDetail.tsx:72 msgid "This build order does not have any required items." msgstr "Questo ordine di produzione non ha alcun articolo richiesto." -#: src/pages/build/BuildDetail.tsx:72 +#: src/pages/build/BuildDetail.tsx:73 msgid "The assembled part may not have a Bill of Materials (BOM) defined, or the BOM is empty." msgstr "L'articolo assemblato non può avere una Distinta base (BOM) definita, o la BOM è vuota." @@ -6826,7 +6889,7 @@ msgstr "L'articolo assemblato non può avere una Distinta base (BOM) definita, o #~ msgid "Build Order updated" #~ msgstr "Build Order updated" -#: src/pages/build/BuildDetail.tsx:215 +#: src/pages/build/BuildDetail.tsx:216 #: src/pages/part/PartDetail.tsx:480 #: src/pages/stock/StockDetail.tsx:161 #: src/tables/bom/UsedInTable.tsx:44 @@ -6843,10 +6906,10 @@ msgstr "Revisione" #~ msgid "Duplicate build order" #~ msgstr "Duplicate build order" -#: src/pages/build/BuildDetail.tsx:228 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:174 -#: src/pages/sales/ReturnOrderDetail.tsx:141 -#: src/pages/sales/SalesOrderDetail.tsx:131 +#: src/pages/build/BuildDetail.tsx:229 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:175 +#: src/pages/sales/ReturnOrderDetail.tsx:142 +#: src/pages/sales/SalesOrderDetail.tsx:132 #: src/pages/stock/StockDetail.tsx:176 msgid "Custom Status" msgstr "Stato Cliente" @@ -6855,9 +6918,9 @@ msgstr "Stato Cliente" #~ msgid "Delete build order" #~ msgstr "Delete build order" -#: src/pages/build/BuildDetail.tsx:237 -#: src/pages/build/BuildDetail.tsx:723 -#: src/pages/build/BuildIndex.tsx:28 +#: src/pages/build/BuildDetail.tsx:238 +#: src/pages/build/BuildDetail.tsx:728 +#: src/pages/build/BuildIndex.tsx:34 #: src/pages/stock/LocationDetail.tsx:140 #: src/tables/build/BuildOrderTable.tsx:123 #: src/tables/build/BuildOrderTable.tsx:183 @@ -6865,57 +6928,57 @@ msgstr "Stato Cliente" msgid "External" msgstr "Esterna" -#: src/pages/build/BuildDetail.tsx:244 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:141 -#: src/pages/sales/ReturnOrderDetail.tsx:108 -#: src/pages/sales/SalesOrderDetail.tsx:98 +#: src/pages/build/BuildDetail.tsx:245 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:142 +#: src/pages/sales/ReturnOrderDetail.tsx:109 +#: src/pages/sales/SalesOrderDetail.tsx:99 #: src/tables/ColumnRenderers.tsx:321 -#: src/tables/build/BuildAllocatedStockTable.tsx:115 -#: src/tables/build/BuildLineTable.tsx:352 +#: src/tables/build/BuildAllocatedStockTable.tsx:112 +#: src/tables/build/BuildLineTable.tsx:353 msgid "Reference" msgstr "Riferimento" -#: src/pages/build/BuildDetail.tsx:258 +#: src/pages/build/BuildDetail.tsx:259 msgid "Parent Build" msgstr "Produzione Genitore" -#: src/pages/build/BuildDetail.tsx:269 +#: src/pages/build/BuildDetail.tsx:270 msgid "Build Quantity" msgstr "Quantità Produzione" -#: src/pages/build/BuildDetail.tsx:275 +#: src/pages/build/BuildDetail.tsx:276 #: src/pages/part/PartDetail.tsx:598 #: src/tables/bom/BomTable.tsx:365 #: src/tables/bom/BomTable.tsx:407 msgid "Can Build" msgstr "Puoi produrre" -#: src/pages/build/BuildDetail.tsx:284 -#: src/pages/build/BuildDetail.tsx:474 +#: src/pages/build/BuildDetail.tsx:285 +#: src/pages/build/BuildDetail.tsx:475 msgid "Completed Outputs" msgstr "Output Completati" -#: src/pages/build/BuildDetail.tsx:301 +#: src/pages/build/BuildDetail.tsx:302 #: src/tables/Filter.tsx:381 #: src/tables/build/BuildOrderTable.tsx:143 msgid "Issued By" msgstr "Emesso da" -#: src/pages/build/BuildDetail.tsx:309 +#: src/pages/build/BuildDetail.tsx:310 #: src/pages/part/PartDetail.tsx:691 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:261 -#: src/pages/sales/ReturnOrderDetail.tsx:239 -#: src/pages/sales/SalesOrderDetail.tsx:232 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:262 +#: src/pages/sales/ReturnOrderDetail.tsx:240 +#: src/pages/sales/SalesOrderDetail.tsx:233 #: src/tables/ColumnRenderers.tsx:464 #: src/tables/Filter.tsx:319 msgid "Responsible" msgstr "Responsabile" -#: src/pages/build/BuildDetail.tsx:327 +#: src/pages/build/BuildDetail.tsx:328 msgid "Any location" msgstr "Qualsiasi posizione" -#: src/pages/build/BuildDetail.tsx:334 +#: src/pages/build/BuildDetail.tsx:335 msgid "Destination Location" msgstr "Posizione Di Destinazione" @@ -6924,24 +6987,24 @@ msgstr "Posizione Di Destinazione" #~ msgid "Test Statistics" #~ msgstr "Test Statistics" -#: src/pages/build/BuildDetail.tsx:350 +#: src/pages/build/BuildDetail.tsx:351 #: src/tables/settings/ApiTokenTable.tsx:97 #: src/tables/settings/PendingTasksTable.tsx:41 msgid "Created" msgstr "Creato" -#: src/pages/build/BuildDetail.tsx:358 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:286 -#: src/pages/sales/ReturnOrderDetail.tsx:265 -#: src/pages/sales/SalesOrderDetail.tsx:257 +#: src/pages/build/BuildDetail.tsx:359 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:287 +#: src/pages/sales/ReturnOrderDetail.tsx:266 +#: src/pages/sales/SalesOrderDetail.tsx:258 #: src/tables/ColumnRenderers.tsx:486 msgid "Start Date" msgstr "Data inizio" -#: src/pages/build/BuildDetail.tsx:366 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:294 -#: src/pages/sales/ReturnOrderDetail.tsx:273 -#: src/pages/sales/SalesOrderDetail.tsx:265 +#: src/pages/build/BuildDetail.tsx:367 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:295 +#: src/pages/sales/ReturnOrderDetail.tsx:274 +#: src/pages/sales/SalesOrderDetail.tsx:266 #: src/tables/ColumnRenderers.tsx:494 #: src/tables/part/PartPurchaseOrdersTable.tsx:101 #: src/tables/sales/ReturnOrderLineItemTable.tsx:154 @@ -6954,185 +7017,185 @@ msgstr "Data obiettivo" #~ msgstr "Reporting Actions" #: src/pages/build/BuildDetail.tsx:374 +#~ msgid "Print build report" +#~ msgstr "Print build report" + +#: src/pages/build/BuildDetail.tsx:375 #: src/tables/build/BuildOrderTable.tsx:93 #: src/tables/sales/SalesOrderLineItemTable.tsx:347 msgid "Completed" msgstr "Completato" -#: src/pages/build/BuildDetail.tsx:374 -#~ msgid "Print build report" -#~ msgstr "Print build report" - -#: src/pages/build/BuildDetail.tsx:410 +#: src/pages/build/BuildDetail.tsx:411 msgid "Build Details" msgstr "Dettagli della Produzione" -#: src/pages/build/BuildDetail.tsx:416 +#: src/pages/build/BuildDetail.tsx:417 msgid "Required Parts" msgstr "Articoli richiesti" -#: src/pages/build/BuildDetail.tsx:428 -#: src/pages/sales/SalesOrderDetail.tsx:407 -#: src/pages/sales/SalesOrderShipmentDetail.tsx:261 +#: src/pages/build/BuildDetail.tsx:429 +#: src/pages/sales/SalesOrderDetail.tsx:408 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:259 #: src/tables/part/PartSalesAllocationsTable.tsx:73 msgid "Allocated Stock" msgstr "Scorte Assegnate" -#: src/pages/build/BuildDetail.tsx:444 +#: src/pages/build/BuildDetail.tsx:445 msgid "Consumed Stock" msgstr "Scorte Consumate" -#: src/pages/build/BuildDetail.tsx:461 +#: src/pages/build/BuildDetail.tsx:462 msgid "Incomplete Outputs" msgstr "Output Incompleti" -#: src/pages/build/BuildDetail.tsx:489 +#: src/pages/build/BuildDetail.tsx:490 msgid "External Orders" msgstr "Ordini Esterni" -#: src/pages/build/BuildDetail.tsx:503 +#: src/pages/build/BuildDetail.tsx:504 msgid "Child Build Orders" msgstr "Ordine di Produzione Subordinato" -#: src/pages/build/BuildDetail.tsx:513 -#: src/pages/part/PartDetail.tsx:937 +#: src/pages/build/BuildDetail.tsx:514 +#: src/pages/part/PartDetail.tsx:926 #: src/pages/stock/StockDetail.tsx:587 #: src/tables/build/BuildOutputTable.tsx:654 #: src/tables/stock/StockItemTestResultTable.tsx:173 msgid "Test Results" msgstr "Risultati Test" -#: src/pages/build/BuildDetail.tsx:550 +#: src/pages/build/BuildDetail.tsx:555 msgid "Edit Build Order" msgstr "Modifica Ordine di produzione" -#: src/pages/build/BuildDetail.tsx:572 +#: src/pages/build/BuildDetail.tsx:577 #: src/tables/build/BuildOrderTable.tsx:207 #: src/tables/build/BuildOrderTable.tsx:223 msgid "Add Build Order" msgstr "Nuovo Ordine di Produzione" -#: src/pages/build/BuildDetail.tsx:582 +#: src/pages/build/BuildDetail.tsx:587 msgid "Cancel Build Order" msgstr "Annulla Ordine Di Produzione" -#: src/pages/build/BuildDetail.tsx:584 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:416 -#: src/pages/sales/ReturnOrderDetail.tsx:427 -#: src/pages/sales/SalesOrderDetail.tsx:454 +#: src/pages/build/BuildDetail.tsx:589 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:421 +#: src/pages/sales/ReturnOrderDetail.tsx:432 +#: src/pages/sales/SalesOrderDetail.tsx:459 msgid "Order cancelled" msgstr "Ordine annullato" -#: src/pages/build/BuildDetail.tsx:585 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:415 -#: src/pages/sales/ReturnOrderDetail.tsx:426 -#: src/pages/sales/SalesOrderDetail.tsx:453 +#: src/pages/build/BuildDetail.tsx:590 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:420 +#: src/pages/sales/ReturnOrderDetail.tsx:431 +#: src/pages/sales/SalesOrderDetail.tsx:458 msgid "Cancel this order" msgstr "Annulla quest'ordine" -#: src/pages/build/BuildDetail.tsx:594 +#: src/pages/build/BuildDetail.tsx:599 msgid "Hold Build Order" msgstr "Sospendi Ordine di produzione" -#: src/pages/build/BuildDetail.tsx:596 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:423 -#: src/pages/sales/ReturnOrderDetail.tsx:434 -#: src/pages/sales/SalesOrderDetail.tsx:461 +#: src/pages/build/BuildDetail.tsx:601 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:428 +#: src/pages/sales/ReturnOrderDetail.tsx:439 +#: src/pages/sales/SalesOrderDetail.tsx:466 msgid "Place this order on hold" msgstr "Metti questo ordine in sospeso" -#: src/pages/build/BuildDetail.tsx:597 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:424 -#: src/pages/sales/ReturnOrderDetail.tsx:435 -#: src/pages/sales/SalesOrderDetail.tsx:462 +#: src/pages/build/BuildDetail.tsx:602 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:429 +#: src/pages/sales/ReturnOrderDetail.tsx:440 +#: src/pages/sales/SalesOrderDetail.tsx:467 msgid "Order placed on hold" msgstr "Ordine in sospeso" -#: src/pages/build/BuildDetail.tsx:602 +#: src/pages/build/BuildDetail.tsx:607 msgid "Issue Build Order" msgstr "Emetti ordine di produzione" -#: src/pages/build/BuildDetail.tsx:604 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:407 -#: src/pages/sales/ReturnOrderDetail.tsx:418 -#: src/pages/sales/SalesOrderDetail.tsx:445 +#: src/pages/build/BuildDetail.tsx:609 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:412 +#: src/pages/sales/ReturnOrderDetail.tsx:423 +#: src/pages/sales/SalesOrderDetail.tsx:450 msgid "Issue this order" msgstr "Emetti questo ordine di produzione" -#: src/pages/build/BuildDetail.tsx:605 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:408 -#: src/pages/sales/ReturnOrderDetail.tsx:419 -#: src/pages/sales/SalesOrderDetail.tsx:446 +#: src/pages/build/BuildDetail.tsx:610 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:413 +#: src/pages/sales/ReturnOrderDetail.tsx:424 +#: src/pages/sales/SalesOrderDetail.tsx:451 msgid "Order issued" msgstr "Ordine emesso" -#: src/pages/build/BuildDetail.tsx:624 +#: src/pages/build/BuildDetail.tsx:629 msgid "Complete Build Order" msgstr "Completa l'Ordine di Produzione" -#: src/pages/build/BuildDetail.tsx:630 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:436 -#: src/pages/sales/ReturnOrderDetail.tsx:442 -#: src/pages/sales/SalesOrderDetail.tsx:480 +#: src/pages/build/BuildDetail.tsx:635 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:441 +#: src/pages/sales/ReturnOrderDetail.tsx:447 +#: src/pages/sales/SalesOrderDetail.tsx:485 msgid "Mark this order as complete" msgstr "Contrassegna questo ordine come completato" -#: src/pages/build/BuildDetail.tsx:633 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:430 -#: src/pages/sales/ReturnOrderDetail.tsx:443 -#: src/pages/sales/SalesOrderDetail.tsx:481 +#: src/pages/build/BuildDetail.tsx:638 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:435 +#: src/pages/sales/ReturnOrderDetail.tsx:448 +#: src/pages/sales/SalesOrderDetail.tsx:486 msgid "Order completed" msgstr "Ordine completato" -#: src/pages/build/BuildDetail.tsx:660 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:459 -#: src/pages/sales/ReturnOrderDetail.tsx:470 -#: src/pages/sales/SalesOrderDetail.tsx:516 +#: src/pages/build/BuildDetail.tsx:665 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:464 +#: src/pages/sales/ReturnOrderDetail.tsx:475 +#: src/pages/sales/SalesOrderDetail.tsx:521 msgid "Issue Order" msgstr "Emetti Ordine" -#: src/pages/build/BuildDetail.tsx:667 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:466 -#: src/pages/sales/ReturnOrderDetail.tsx:477 -#: src/pages/sales/SalesOrderDetail.tsx:530 +#: src/pages/build/BuildDetail.tsx:672 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:471 +#: src/pages/sales/ReturnOrderDetail.tsx:482 +#: src/pages/sales/SalesOrderDetail.tsx:535 msgid "Complete Order" msgstr "Completa l'ordine" -#: src/pages/build/BuildDetail.tsx:686 +#: src/pages/build/BuildDetail.tsx:691 msgid "Build Order Actions" msgstr "Azioni Ordine di Produzione" -#: src/pages/build/BuildDetail.tsx:691 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:489 -#: src/pages/sales/ReturnOrderDetail.tsx:500 -#: src/pages/sales/SalesOrderDetail.tsx:554 +#: src/pages/build/BuildDetail.tsx:696 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:494 +#: src/pages/sales/ReturnOrderDetail.tsx:505 +#: src/pages/sales/SalesOrderDetail.tsx:559 msgid "Edit order" msgstr "Modifica ordine" -#: src/pages/build/BuildDetail.tsx:695 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:497 -#: src/pages/sales/ReturnOrderDetail.tsx:506 -#: src/pages/sales/SalesOrderDetail.tsx:559 +#: src/pages/build/BuildDetail.tsx:700 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:502 +#: src/pages/sales/ReturnOrderDetail.tsx:511 +#: src/pages/sales/SalesOrderDetail.tsx:564 msgid "Duplicate order" msgstr "Duplica Ordine" -#: src/pages/build/BuildDetail.tsx:699 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:500 -#: src/pages/sales/ReturnOrderDetail.tsx:511 -#: src/pages/sales/SalesOrderDetail.tsx:562 -msgid "Hold order" -msgstr "Sospendi ordine" - #: src/pages/build/BuildDetail.tsx:704 #: src/pages/purchasing/PurchaseOrderDetail.tsx:505 #: src/pages/sales/ReturnOrderDetail.tsx:516 #: src/pages/sales/SalesOrderDetail.tsx:567 +msgid "Hold order" +msgstr "Sospendi ordine" + +#: src/pages/build/BuildDetail.tsx:709 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:510 +#: src/pages/sales/ReturnOrderDetail.tsx:521 +#: src/pages/sales/SalesOrderDetail.tsx:572 msgid "Cancel order" msgstr "Annulla ordine" -#: src/pages/build/BuildDetail.tsx:742 +#: src/pages/build/BuildDetail.tsx:747 #: src/pages/stock/StockDetail.tsx:344 -#: src/tables/build/BuildAllocatedStockTable.tsx:85 +#: src/tables/build/BuildAllocatedStockTable.tsx:82 #: src/tables/part/PartBuildAllocationsTable.tsx:45 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:157 #: src/tables/stock/StockTrackingTable.tsx:109 @@ -7143,7 +7206,7 @@ msgstr "Ordine di Produzione" #~ msgid "Build order created" #~ msgstr "Build order created" -#: src/pages/build/BuildIndex.tsx:29 +#: src/pages/build/BuildIndex.tsx:35 #: src/tables/build/BuildOrderTable.tsx:184 msgid "Show external build orders" msgstr "Mostra ordini di produzione esterni" @@ -7152,61 +7215,82 @@ msgstr "Mostra ordini di produzione esterni" #~ msgid "New Build Order" #~ msgstr "New Build Order" -#: src/pages/build/BuildIndex.tsx:83 -#: src/pages/purchasing/PurchasingIndex.tsx:69 -#: src/pages/sales/SalesIndex.tsx:92 -#: src/pages/sales/SalesIndex.tsx:125 +#: src/pages/build/BuildIndex.tsx:74 +#: src/pages/part/CategoryDetail.tsx:292 +#: src/pages/purchasing/PurchasingIndex.tsx:74 +#: src/pages/purchasing/PurchasingIndex.tsx:107 +#: src/pages/purchasing/PurchasingIndex.tsx:135 +#: src/pages/purchasing/PurchasingIndex.tsx:156 +#: src/pages/purchasing/PurchasingIndex.tsx:184 +#: src/pages/sales/SalesIndex.tsx:61 +#: src/pages/sales/SalesIndex.tsx:107 +#: src/pages/sales/SalesIndex.tsx:140 msgid "Table View" msgstr "Vista Tabella" -#: src/pages/build/BuildIndex.tsx:86 -#: src/pages/purchasing/PurchasingIndex.tsx:72 -#: src/pages/sales/SalesIndex.tsx:95 -#: src/pages/sales/SalesIndex.tsx:128 +#: src/pages/build/BuildIndex.tsx:80 +#: src/pages/purchasing/PurchasingIndex.tsx:80 +#: src/pages/sales/SalesIndex.tsx:67 +#: src/pages/sales/SalesIndex.tsx:113 msgid "Calendar View" msgstr "Visualizzazione calendario" -#: src/pages/company/CompanyDetail.tsx:99 +#: src/pages/build/BuildIndex.tsx:86 +#: src/pages/part/CategoryDetail.tsx:306 +#: src/pages/purchasing/PurchasingIndex.tsx:92 +#: src/pages/purchasing/PurchasingIndex.tsx:118 +#: src/pages/purchasing/PurchasingIndex.tsx:141 +#: src/pages/purchasing/PurchasingIndex.tsx:167 +#: src/pages/purchasing/PurchasingIndex.tsx:190 +#: src/pages/sales/SalesIndex.tsx:79 +#: src/pages/sales/SalesIndex.tsx:125 +#: src/pages/sales/SalesIndex.tsx:151 +msgid "Parametric View" +msgstr "" + +#: src/pages/company/CompanyDetail.tsx:100 msgid "Website" msgstr "Sito Web" -#: src/pages/company/CompanyDetail.tsx:107 +#: src/pages/company/CompanyDetail.tsx:108 msgid "Phone Number" msgstr "Numero di telefono" -#: src/pages/company/CompanyDetail.tsx:114 +#: src/pages/company/CompanyDetail.tsx:115 msgid "Email Address" msgstr "Indirizzo email" -#: src/pages/company/CompanyDetail.tsx:121 +#: src/pages/company/CompanyDetail.tsx:122 msgid "Tax ID" msgstr "Partita IVA" -#: src/pages/company/CompanyDetail.tsx:131 +#: src/pages/company/CompanyDetail.tsx:132 msgid "Default Currency" msgstr "Valuta predefinita" -#: src/pages/company/CompanyDetail.tsx:142 +#: src/pages/company/CompanyDetail.tsx:143 #: src/pages/company/ManufacturerDetail.tsx:8 -#: src/pages/company/ManufacturerPartDetail.tsx:104 -#: src/pages/company/ManufacturerPartDetail.tsx:280 -#: src/pages/company/SupplierPartDetail.tsx:152 +#: src/pages/company/ManufacturerPartDetail.tsx:103 +#: src/pages/company/ManufacturerPartDetail.tsx:271 +#: src/pages/company/SupplierPartDetail.tsx:153 #: src/tables/Filter.tsx:347 #: src/tables/company/CompanyTable.tsx:101 #: src/tables/purchasing/SupplierPartTable.tsx:89 msgid "Manufacturer" msgstr "Produttore" -#: src/pages/company/CompanyDetail.tsx:148 +#: src/pages/company/CompanyDetail.tsx:149 #: src/pages/company/CustomerDetail.tsx:8 #: src/pages/part/pricing/SaleHistoryPanel.tsx:31 -#: src/pages/sales/ReturnOrderDetail.tsx:123 -#: src/pages/sales/SalesOrderDetail.tsx:113 -#: src/pages/sales/SalesOrderShipmentDetail.tsx:113 +#: src/pages/sales/ReturnOrderDetail.tsx:124 +#: src/pages/sales/SalesOrderDetail.tsx:114 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:111 #: src/pages/stock/StockDetail.tsx:370 #: src/tables/company/CompanyTable.tsx:106 +#: src/tables/sales/ReturnOrderParametricTable.tsx:32 #: src/tables/sales/ReturnOrderTable.tsx:108 -#: src/tables/sales/SalesOrderShipmentTable.tsx:111 +#: src/tables/sales/SalesOrderParametricTable.tsx:32 +#: src/tables/sales/SalesOrderShipmentTable.tsx:132 #: src/tables/sales/SalesOrderTable.tsx:133 #: src/tables/stock/StockTrackingTable.tsx:153 msgid "Customer" @@ -7216,11 +7300,11 @@ msgstr "Cliente" #~ msgid "Edit company" #~ msgstr "Edit company" -#: src/pages/company/CompanyDetail.tsx:181 +#: src/pages/company/CompanyDetail.tsx:182 msgid "Company Details" msgstr "Dettagli azienda" -#: src/pages/company/CompanyDetail.tsx:187 +#: src/pages/company/CompanyDetail.tsx:188 msgid "Supplied Parts" msgstr "Articoli Forniti" @@ -7228,79 +7312,79 @@ msgstr "Articoli Forniti" #~ msgid "Delete company" #~ msgstr "Delete company" -#: src/pages/company/CompanyDetail.tsx:194 +#: src/pages/company/CompanyDetail.tsx:195 msgid "Manufactured Parts" msgstr "Articoli Prodotti" -#: src/pages/company/CompanyDetail.tsx:241 +#: src/pages/company/CompanyDetail.tsx:242 msgid "Assigned Stock" msgstr "Elementi in Giacenza Assegnati" -#: src/pages/company/CompanyDetail.tsx:282 +#: src/pages/company/CompanyDetail.tsx:287 #: src/tables/company/CompanyTable.tsx:82 msgid "Edit Company" msgstr "Modifica azienda" -#: src/pages/company/CompanyDetail.tsx:290 +#: src/pages/company/CompanyDetail.tsx:295 msgid "Delete Company" msgstr "Elimina Azienda" -#: src/pages/company/CompanyDetail.tsx:305 +#: src/pages/company/CompanyDetail.tsx:310 msgid "Company Actions" msgstr "Azioni Azienda" -#: src/pages/company/ManufacturerPartDetail.tsx:78 -#: src/pages/company/SupplierPartDetail.tsx:89 +#: src/pages/company/ManufacturerPartDetail.tsx:77 +#: src/pages/company/SupplierPartDetail.tsx:90 msgid "Internal Part" msgstr "Articolo interno" -#: src/pages/company/ManufacturerPartDetail.tsx:112 +#: src/pages/company/ManufacturerPartDetail.tsx:111 msgid "Manufacturer Part Number" msgstr "Codice articolo produttore" -#: src/pages/company/ManufacturerPartDetail.tsx:129 -#: src/pages/company/SupplierPartDetail.tsx:113 +#: src/pages/company/ManufacturerPartDetail.tsx:128 +#: src/pages/company/SupplierPartDetail.tsx:114 msgid "External Link" msgstr "Collegamento esterno" -#: src/pages/company/ManufacturerPartDetail.tsx:148 -#: src/pages/company/SupplierPartDetail.tsx:232 +#: src/pages/company/ManufacturerPartDetail.tsx:147 +#: src/pages/company/SupplierPartDetail.tsx:233 #: src/pages/part/PartDetail.tsx:787 msgid "Part Details" msgstr "Dettagli Articolo" -#: src/pages/company/ManufacturerPartDetail.tsx:151 +#: src/pages/company/ManufacturerPartDetail.tsx:150 msgid "Manufacturer Details" msgstr "Dettagli Produttore" -#: src/pages/company/ManufacturerPartDetail.tsx:160 +#: src/pages/company/ManufacturerPartDetail.tsx:159 msgid "Manufacturer Part Details" msgstr "Dettagli Articolo Produttore" -#: src/pages/company/ManufacturerPartDetail.tsx:178 -#: src/pages/company/SupplierPartDetail.tsx:252 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:381 +#: src/pages/company/ManufacturerPartDetail.tsx:165 +#: src/pages/company/SupplierPartDetail.tsx:253 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:382 msgid "Received Stock" msgstr "Articolo Magazzino Ricevuto" -#: src/pages/company/ManufacturerPartDetail.tsx:220 +#: src/pages/company/ManufacturerPartDetail.tsx:211 #: src/tables/purchasing/ManufacturerPartTable.tsx:108 msgid "Edit Manufacturer Part" msgstr "Modifica Articolo Produttore" -#: src/pages/company/ManufacturerPartDetail.tsx:227 +#: src/pages/company/ManufacturerPartDetail.tsx:218 #: src/tables/purchasing/ManufacturerPartTable.tsx:96 #: src/tables/purchasing/ManufacturerPartTable.tsx:115 #: src/tables/purchasing/ManufacturerPartTable.tsx:156 msgid "Add Manufacturer Part" msgstr "Aggiungi Articolo Produttore" -#: src/pages/company/ManufacturerPartDetail.tsx:239 +#: src/pages/company/ManufacturerPartDetail.tsx:230 #: src/tables/purchasing/ManufacturerPartTable.tsx:126 msgid "Delete Manufacturer Part" msgstr "Elimina Articolo Produttore" -#: src/pages/company/ManufacturerPartDetail.tsx:254 +#: src/pages/company/ManufacturerPartDetail.tsx:245 msgid "Manufacturer Part Actions" msgstr "Azioni Articolo Produttore" @@ -7308,12 +7392,12 @@ msgstr "Azioni Articolo Produttore" #~ msgid "ManufacturerPart" #~ msgstr "ManufacturerPart" -#: src/pages/company/SupplierPartDetail.tsx:104 +#: src/pages/company/SupplierPartDetail.tsx:105 #: src/tables/part/RelatedPartTable.tsx:82 msgid "Part Description" msgstr "Descrizione Articolo" -#: src/pages/company/SupplierPartDetail.tsx:179 +#: src/pages/company/SupplierPartDetail.tsx:180 #: src/tables/part/PartPurchaseOrdersTable.tsx:73 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:191 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:233 @@ -7321,50 +7405,50 @@ msgstr "Descrizione Articolo" msgid "Pack Quantity" msgstr "Quantità Confezione" -#: src/pages/company/SupplierPartDetail.tsx:204 +#: src/pages/company/SupplierPartDetail.tsx:205 msgid "Supplier Availability" msgstr "Disponibilità Fornitore" -#: src/pages/company/SupplierPartDetail.tsx:212 +#: src/pages/company/SupplierPartDetail.tsx:213 msgid "Availability Updated" msgstr "Disponibilità Aggiornata" -#: src/pages/company/SupplierPartDetail.tsx:237 +#: src/pages/company/SupplierPartDetail.tsx:238 msgid "Availability" msgstr "Disponibilità" -#: src/pages/company/SupplierPartDetail.tsx:246 +#: src/pages/company/SupplierPartDetail.tsx:247 msgid "Supplier Part Details" msgstr "Dettagli Articolo Fornitore" -#: src/pages/company/SupplierPartDetail.tsx:279 +#: src/pages/company/SupplierPartDetail.tsx:280 #: src/pages/part/PartPricingPanel.tsx:113 #: src/pages/part/pricing/PricingOverviewPanel.tsx:239 msgid "Supplier Pricing" msgstr "Prezzo Fornitore" -#: src/pages/company/SupplierPartDetail.tsx:308 +#: src/pages/company/SupplierPartDetail.tsx:313 msgid "Supplier Part Actions" msgstr "Azioni Articolo Fornitore" -#: src/pages/company/SupplierPartDetail.tsx:332 +#: src/pages/company/SupplierPartDetail.tsx:337 #: src/tables/purchasing/SupplierPartTable.tsx:244 msgid "Edit Supplier Part" msgstr "Modifica Articolo Fornitore" -#: src/pages/company/SupplierPartDetail.tsx:340 +#: src/pages/company/SupplierPartDetail.tsx:345 #: src/tables/purchasing/SupplierPartTable.tsx:264 msgid "Delete Supplier Part" msgstr "Cancella Articolo Fornitore" -#: src/pages/company/SupplierPartDetail.tsx:348 +#: src/pages/company/SupplierPartDetail.tsx:353 #: src/tables/purchasing/SupplierPartTable.tsx:172 #: src/tables/purchasing/SupplierPartTable.tsx:251 msgid "Add Supplier Part" msgstr "Aggiungi articolo fornitore" -#: src/pages/company/SupplierPartDetail.tsx:388 -#: src/pages/part/PartDetail.tsx:1003 +#: src/pages/company/SupplierPartDetail.tsx:393 +#: src/pages/part/PartDetail.tsx:1018 msgid "No Stock" msgstr "Nessuna giacenza" @@ -7411,83 +7495,83 @@ msgstr "Dettagli Utente" msgid "Basic user" msgstr "Utente di base" -#: src/pages/part/CategoryDetail.tsx:100 +#: src/pages/part/CategoryDetail.tsx:103 #: src/pages/stock/LocationDetail.tsx:94 #: src/tables/settings/ErrorTable.tsx:63 #: src/tables/settings/ErrorTable.tsx:108 msgid "Path" msgstr "Percorso" -#: src/pages/part/CategoryDetail.tsx:116 +#: src/pages/part/CategoryDetail.tsx:119 msgid "Parent Category" msgstr "Categoria Superiore" -#: src/pages/part/CategoryDetail.tsx:139 -#: src/pages/part/CategoryDetail.tsx:271 +#: src/pages/part/CategoryDetail.tsx:142 +#: src/pages/part/CategoryDetail.tsx:279 msgid "Subcategories" msgstr "Sottocategorie" -#: src/pages/part/CategoryDetail.tsx:146 +#: src/pages/part/CategoryDetail.tsx:149 #: src/pages/stock/LocationDetail.tsx:134 #: src/tables/part/PartCategoryTable.tsx:89 #: src/tables/stock/StockLocationTable.tsx:43 msgid "Structural" msgstr "Struttura" -#: src/pages/part/CategoryDetail.tsx:152 +#: src/pages/part/CategoryDetail.tsx:155 msgid "Parent default location" msgstr "Posizione predefinita superiore" -#: src/pages/part/CategoryDetail.tsx:159 +#: src/pages/part/CategoryDetail.tsx:162 msgid "Default location" msgstr "Posizione predefinita" -#: src/pages/part/CategoryDetail.tsx:170 +#: src/pages/part/CategoryDetail.tsx:173 msgid "Top level part category" msgstr "Categoria articolo di livello superiore" -#: src/pages/part/CategoryDetail.tsx:180 -#: src/pages/part/CategoryDetail.tsx:248 +#: src/pages/part/CategoryDetail.tsx:183 +#: src/pages/part/CategoryDetail.tsx:251 #: src/tables/part/PartCategoryTable.tsx:122 msgid "Edit Part Category" msgstr "Modifica Categoria Articoli" -#: src/pages/part/CategoryDetail.tsx:189 +#: src/pages/part/CategoryDetail.tsx:192 msgid "Move items to parent category" msgstr "Sposta articoli nella categoria superiore" -#: src/pages/part/CategoryDetail.tsx:193 +#: src/pages/part/CategoryDetail.tsx:196 #: src/pages/stock/LocationDetail.tsx:226 msgid "Delete items" msgstr "Elimina articoli" -#: src/pages/part/CategoryDetail.tsx:201 -#: src/pages/part/CategoryDetail.tsx:253 +#: src/pages/part/CategoryDetail.tsx:204 +#: src/pages/part/CategoryDetail.tsx:256 msgid "Delete Part Category" msgstr "Elimina categoria articolo" -#: src/pages/part/CategoryDetail.tsx:204 +#: src/pages/part/CategoryDetail.tsx:207 msgid "Parts Action" msgstr "Azioni articolo" -#: src/pages/part/CategoryDetail.tsx:205 +#: src/pages/part/CategoryDetail.tsx:208 msgid "Action for parts in this category" msgstr "Azione articoli in questa categoria" -#: src/pages/part/CategoryDetail.tsx:211 +#: src/pages/part/CategoryDetail.tsx:214 msgid "Child Categories Action" msgstr "Azione Categorie Figlio" -#: src/pages/part/CategoryDetail.tsx:212 +#: src/pages/part/CategoryDetail.tsx:215 msgid "Action for child categories in this category" msgstr "Azione per categorie figli in questa categoria" -#: src/pages/part/CategoryDetail.tsx:244 +#: src/pages/part/CategoryDetail.tsx:247 #: src/tables/part/PartCategoryTable.tsx:143 msgid "Category Actions" msgstr "Azioni Categoria" -#: src/pages/part/CategoryDetail.tsx:265 +#: src/pages/part/CategoryDetail.tsx:273 msgid "Category Details" msgstr "Dettagli categoria" @@ -7585,7 +7669,6 @@ msgid "Category Default Location" msgstr "Posizione Predefinita Della Categoria" #: src/pages/part/PartDetail.tsx:507 -#: src/tables/purchasing/ManufacturerPartParameterTable.tsx:48 msgid "Units" msgstr "Unità" @@ -7600,7 +7683,7 @@ msgstr "Parole Chiave" #: src/pages/part/PartDetail.tsx:542 #: src/tables/bom/BomTable.tsx:439 -#: src/tables/build/BuildLineTable.tsx:305 +#: src/tables/build/BuildLineTable.tsx:306 #: src/tables/part/PartTable.tsx:319 #: src/tables/sales/SalesOrderLineItemTable.tsx:138 msgid "Available Stock" @@ -7608,7 +7691,7 @@ msgstr "Giacenza Disponibile" #: src/pages/part/PartDetail.tsx:548 #: src/tables/bom/BomTable.tsx:341 -#: src/tables/build/BuildLineTable.tsx:267 +#: src/tables/build/BuildLineTable.tsx:268 #: src/tables/sales/SalesOrderLineItemTable.tsx:180 msgid "On order" msgstr "In ordine" @@ -7634,7 +7717,7 @@ msgstr "Scorta Minima" #~ msgstr "Scheduling" #: src/pages/part/PartDetail.tsx:620 -#: src/tables/part/ParametricPartTable.tsx:359 +#: src/tables/part/ParametricPartTable.tsx:24 #: src/tables/part/PartTable.tsx:203 msgid "Locked" msgstr "Bloccato" @@ -7671,16 +7754,16 @@ msgid "Saleable Part" msgstr "Articolo Vendibile" #: src/pages/part/PartDetail.tsx:663 -#: src/pages/part/PartDetail.tsx:1033 +#: src/pages/part/PartDetail.tsx:1054 #: src/tables/bom/BomTable.tsx:150 #: src/tables/bom/BomTable.tsx:434 msgid "Virtual Part" msgstr "Articolo Virtuale" #: src/pages/part/PartDetail.tsx:678 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:271 -#: src/pages/sales/ReturnOrderDetail.tsx:249 -#: src/pages/sales/SalesOrderDetail.tsx:242 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:272 +#: src/pages/sales/ReturnOrderDetail.tsx:250 +#: src/pages/sales/SalesOrderDetail.tsx:243 #: src/tables/ColumnRenderers.tsx:502 msgid "Creation Date" msgstr "Data di creazione" @@ -7718,35 +7801,46 @@ msgstr "Ultimo Numero Di Serie" msgid "Select Part Revision" msgstr "Seleziona Revisione Articolo" -#: src/pages/part/PartDetail.tsx:823 +#: src/pages/part/PartDetail.tsx:812 msgid "Variants" msgstr "Varianti" -#: src/pages/part/PartDetail.tsx:830 +#: src/pages/part/PartDetail.tsx:819 #: src/pages/stock/StockDetail.tsx:542 msgid "Allocations" msgstr "Allocazioni" -#: src/pages/part/PartDetail.tsx:837 +#: src/pages/part/PartDetail.tsx:826 msgid "Bill of Materials" msgstr "Distinta base" -#: src/pages/part/PartDetail.tsx:849 +#: src/pages/part/PartDetail.tsx:838 msgid "Used In" msgstr "Utilizzato In" -#: src/pages/part/PartDetail.tsx:856 +#: src/pages/part/PartDetail.tsx:845 msgid "Part Pricing" msgstr "Prezzo Articolo" -#: src/pages/part/PartDetail.tsx:926 +#: src/pages/part/PartDetail.tsx:915 msgid "Test Templates" msgstr "Modelli test" -#: src/pages/part/PartDetail.tsx:948 +#: src/pages/part/PartDetail.tsx:937 msgid "Related Parts" msgstr "Articoli correlati" +#: src/pages/part/PartDetail.tsx:949 +#: src/tables/ColumnRenderers.tsx:73 +#: src/tables/bom/BomTable.tsx:657 +#: src/tables/part/PartTestTemplateTable.tsx:258 +msgid "Part is Locked" +msgstr "L'articolo è bloccato" + +#: src/pages/part/PartDetail.tsx:954 +msgid "Part parameters cannot be edited, as the part is locked" +msgstr "I parametri dell'articolo non possono essere modificati, poiché l'articolo è bloccata" + #: src/pages/part/PartDetail.tsx:956 #~ msgid "Count part stock" #~ msgstr "Count part stock" @@ -7755,42 +7849,46 @@ msgstr "Articoli correlati" #~ msgid "Transfer part stock" #~ msgstr "Transfer part stock" -#: src/pages/part/PartDetail.tsx:1009 +#: src/pages/part/PartDetail.tsx:1024 #: src/tables/part/PartTestTemplateTable.tsx:112 #: src/tables/stock/StockItemTestResultTable.tsx:404 msgid "Required" msgstr "Richiesto" -#: src/pages/part/PartDetail.tsx:1058 +#: src/pages/part/PartDetail.tsx:1042 +msgid "Deficit" +msgstr "" + +#: src/pages/part/PartDetail.tsx:1079 #: src/tables/part/PartTable.tsx:396 #: src/tables/part/PartTable.tsx:449 msgid "Add Part" msgstr "Aggiungi articolo" -#: src/pages/part/PartDetail.tsx:1072 +#: src/pages/part/PartDetail.tsx:1093 msgid "Delete Part" msgstr "Elimina Articolo" -#: src/pages/part/PartDetail.tsx:1081 +#: src/pages/part/PartDetail.tsx:1102 msgid "Deleting this part cannot be reversed" msgstr "L'eliminazione di questo articolo non è reversibile" -#: src/pages/part/PartDetail.tsx:1143 +#: src/pages/part/PartDetail.tsx:1164 #: src/pages/stock/StockDetail.tsx:883 msgid "Order" msgstr "Ordine" -#: src/pages/part/PartDetail.tsx:1144 +#: src/pages/part/PartDetail.tsx:1165 #: src/pages/stock/StockDetail.tsx:884 -#: src/tables/build/BuildLineTable.tsx:761 +#: src/tables/build/BuildLineTable.tsx:768 msgid "Order Stock" msgstr "Ordine Stock" -#: src/pages/part/PartDetail.tsx:1156 +#: src/pages/part/PartDetail.tsx:1177 msgid "Search by serial number" msgstr "Cerca per numero di serie" -#: src/pages/part/PartDetail.tsx:1164 +#: src/pages/part/PartDetail.tsx:1185 #: src/tables/part/PartTable.tsx:506 msgid "Part Actions" msgstr "Azioni articolo" @@ -8039,7 +8137,7 @@ msgstr "Prezzo d'acquisto" #: src/pages/part/pricing/PricingOverviewPanel.tsx:288 #: src/pages/stock/StockDetail.tsx:426 -#: src/tables/part/PartParameterTable.tsx:121 +#: src/tables/general/ParameterTable.tsx:101 #: src/tables/stock/StockItemTable.tsx:300 msgid "Last Updated" msgstr "Ultimo aggiornamento" @@ -8107,17 +8205,17 @@ msgstr "Prezzo Fornitore" msgid "Variant Part" msgstr "Variante Articolo" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:89 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:90 msgid "Edit Purchase Order" msgstr "Modifica ordine d'acquisto" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:125 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:126 #: src/tables/purchasing/PurchaseOrderTable.tsx:154 #: src/tables/purchasing/PurchaseOrderTable.tsx:167 msgid "Add Purchase Order" msgstr "Aggiungi ordine d'acquisto" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:147 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:148 msgid "Supplier Reference" msgstr "Riferimento fornitore" @@ -8127,20 +8225,20 @@ msgstr "Riferimento fornitore" #~ msgid "Order Currency," #~ msgstr "Order Currency," -#: src/pages/purchasing/PurchaseOrderDetail.tsx:187 -#: src/pages/sales/ReturnOrderDetail.tsx:160 -#: src/pages/sales/SalesOrderDetail.tsx:144 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:188 +#: src/pages/sales/ReturnOrderDetail.tsx:161 +#: src/pages/sales/SalesOrderDetail.tsx:145 msgid "Completed Line Items" msgstr "Elementi Riga completati" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:196 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:197 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:272 msgid "Destination" msgstr "Destinazione" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:202 -#: src/pages/sales/ReturnOrderDetail.tsx:167 -#: src/pages/sales/SalesOrderDetail.tsx:161 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:203 +#: src/pages/sales/ReturnOrderDetail.tsx:168 +#: src/pages/sales/SalesOrderDetail.tsx:162 msgid "Order Currency" msgstr "Valuta ordine" @@ -8150,97 +8248,97 @@ msgstr "Valuta ordine" #~ msgid "Created On" #~ msgstr "Created On" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:208 -#: src/pages/sales/ReturnOrderDetail.tsx:174 -#: src/pages/sales/SalesOrderDetail.tsx:167 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:209 +#: src/pages/sales/ReturnOrderDetail.tsx:175 +#: src/pages/sales/SalesOrderDetail.tsx:168 msgid "Total Cost" msgstr "Costo Totale" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:237 -#: src/pages/sales/ReturnOrderDetail.tsx:215 -#: src/pages/sales/SalesOrderDetail.tsx:208 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:238 +#: src/pages/sales/ReturnOrderDetail.tsx:216 +#: src/pages/sales/SalesOrderDetail.tsx:209 msgid "Contact Email" msgstr "Email di contatto" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:245 -#: src/pages/sales/ReturnOrderDetail.tsx:223 -#: src/pages/sales/SalesOrderDetail.tsx:216 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:246 +#: src/pages/sales/ReturnOrderDetail.tsx:224 +#: src/pages/sales/SalesOrderDetail.tsx:217 msgid "Contact Phone" msgstr "Contatto telefonico" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:278 -#: src/pages/sales/ReturnOrderDetail.tsx:257 -#: src/pages/sales/SalesOrderDetail.tsx:249 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:279 +#: src/pages/sales/ReturnOrderDetail.tsx:258 +#: src/pages/sales/SalesOrderDetail.tsx:250 msgid "Issue Date" msgstr "Data di emissione" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:303 -#: src/pages/sales/ReturnOrderDetail.tsx:281 -#: src/pages/sales/SalesOrderDetail.tsx:272 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:304 +#: src/pages/sales/ReturnOrderDetail.tsx:282 +#: src/pages/sales/SalesOrderDetail.tsx:273 #: src/tables/ColumnRenderers.tsx:510 #: src/tables/build/BuildOrderTable.tsx:137 #: src/tables/part/PartPurchaseOrdersTable.tsx:106 msgid "Completion Date" msgstr "Data di completamento" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:333 -#: src/pages/sales/ReturnOrderDetail.tsx:311 -#: src/pages/sales/SalesOrderDetail.tsx:349 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:334 +#: src/pages/sales/ReturnOrderDetail.tsx:312 +#: src/pages/sales/SalesOrderDetail.tsx:350 msgid "Order Details" msgstr "Dettagli dell'ordine" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:339 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:348 -#: src/pages/sales/ReturnOrderDetail.tsx:153 -#: src/pages/sales/ReturnOrderDetail.tsx:317 -#: src/pages/sales/ReturnOrderDetail.tsx:326 -#: src/pages/sales/SalesOrderDetail.tsx:355 -#: src/pages/sales/SalesOrderDetail.tsx:364 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:340 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:349 +#: src/pages/sales/ReturnOrderDetail.tsx:154 +#: src/pages/sales/ReturnOrderDetail.tsx:318 +#: src/pages/sales/ReturnOrderDetail.tsx:327 +#: src/pages/sales/SalesOrderDetail.tsx:356 +#: src/pages/sales/SalesOrderDetail.tsx:365 msgid "Line Items" msgstr "Riga Articoli" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:363 -#: src/pages/sales/ReturnOrderDetail.tsx:341 -#: src/pages/sales/SalesOrderDetail.tsx:378 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:364 +#: src/pages/sales/ReturnOrderDetail.tsx:342 +#: src/pages/sales/SalesOrderDetail.tsx:379 msgid "Extra Line Items" msgstr "Voci di riga extra" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:405 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:410 msgid "Issue Purchase Order" msgstr "Emettere ordine d'acquisto" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:413 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:418 msgid "Cancel Purchase Order" msgstr "Annulla ordine d'acquisto" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:421 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:426 msgid "Hold Purchase Order" msgstr "Sospendi ordine d'acquisto" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:429 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:434 msgid "Complete Purchase Order" msgstr "Completa Ordine D'Acquisto" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:485 -#: src/pages/sales/ReturnOrderDetail.tsx:496 -#: src/pages/sales/SalesOrderDetail.tsx:549 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:490 +#: src/pages/sales/ReturnOrderDetail.tsx:501 +#: src/pages/sales/SalesOrderDetail.tsx:554 msgid "Order Actions" msgstr "Azioni Ordine" -#: src/pages/sales/ReturnOrderDetail.tsx:114 -#: src/pages/sales/SalesOrderDetail.tsx:104 -#: src/pages/sales/SalesOrderShipmentDetail.tsx:134 +#: src/pages/sales/ReturnOrderDetail.tsx:115 +#: src/pages/sales/SalesOrderDetail.tsx:105 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:132 #: src/tables/sales/SalesOrderTable.tsx:141 msgid "Customer Reference" msgstr "Riferimento cliente" -#: src/pages/sales/ReturnOrderDetail.tsx:195 +#: src/pages/sales/ReturnOrderDetail.tsx:196 msgid "Return Address" msgstr "Indirizzo di reso" -#: src/pages/sales/ReturnOrderDetail.tsx:201 -#: src/pages/sales/SalesOrderDetail.tsx:194 -#: src/pages/sales/SalesOrderShipmentDetail.tsx:181 +#: src/pages/sales/ReturnOrderDetail.tsx:202 +#: src/pages/sales/SalesOrderDetail.tsx:195 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:179 msgid "Not specified" msgstr "Non specificato" @@ -8248,117 +8346,117 @@ msgstr "Non specificato" #~ msgid "Order canceled" #~ msgstr "Order canceled" -#: src/pages/sales/ReturnOrderDetail.tsx:389 +#: src/pages/sales/ReturnOrderDetail.tsx:394 msgid "Edit Return Order" msgstr "Modifica Ordine Di Reso" -#: src/pages/sales/ReturnOrderDetail.tsx:407 +#: src/pages/sales/ReturnOrderDetail.tsx:412 #: src/tables/sales/ReturnOrderTable.tsx:154 #: src/tables/sales/ReturnOrderTable.tsx:167 msgid "Add Return Order" msgstr "Aggiungi Ordine Di Reso" -#: src/pages/sales/ReturnOrderDetail.tsx:416 +#: src/pages/sales/ReturnOrderDetail.tsx:421 msgid "Issue Return Order" msgstr "Emetti Ordine di Reso" -#: src/pages/sales/ReturnOrderDetail.tsx:424 +#: src/pages/sales/ReturnOrderDetail.tsx:429 msgid "Cancel Return Order" msgstr "Annulla Ordine di Reso" -#: src/pages/sales/ReturnOrderDetail.tsx:432 +#: src/pages/sales/ReturnOrderDetail.tsx:437 msgid "Hold Return Order" msgstr "Sospendi ordine di reso" -#: src/pages/sales/ReturnOrderDetail.tsx:440 +#: src/pages/sales/ReturnOrderDetail.tsx:445 msgid "Complete Return Order" msgstr "Completa ordine di reso" -#: src/pages/sales/SalesOrderDetail.tsx:153 +#: src/pages/sales/SalesOrderDetail.tsx:154 msgid "Completed Shipments" msgstr "Spedizioni Completate" -#: src/pages/sales/SalesOrderDetail.tsx:188 -#: src/pages/sales/SalesOrderShipmentDetail.tsx:170 +#: src/pages/sales/SalesOrderDetail.tsx:189 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:168 msgid "Shipping Address" msgstr "Indirizzo di spedizione" -#: src/pages/sales/SalesOrderDetail.tsx:316 +#: src/pages/sales/SalesOrderDetail.tsx:317 msgid "Edit Sales Order" msgstr "Modifica Ordini di Vendita" -#: src/pages/sales/SalesOrderDetail.tsx:338 +#: src/pages/sales/SalesOrderDetail.tsx:339 #: src/tables/sales/SalesOrderTable.tsx:108 #: src/tables/sales/SalesOrderTable.tsx:121 msgid "Add Sales Order" msgstr "Aggiungi ordini di vendita" -#: src/pages/sales/SalesOrderDetail.tsx:396 +#: src/pages/sales/SalesOrderDetail.tsx:397 #: src/tables/sales/SalesOrderTable.tsx:147 msgid "Shipments" msgstr "Spedizioni" -#: src/pages/sales/SalesOrderDetail.tsx:443 +#: src/pages/sales/SalesOrderDetail.tsx:448 msgid "Issue Sales Order" msgstr "Emetti ordini di vendita" -#: src/pages/sales/SalesOrderDetail.tsx:451 +#: src/pages/sales/SalesOrderDetail.tsx:456 msgid "Cancel Sales Order" msgstr "Annulla Ordini di Vendita" -#: src/pages/sales/SalesOrderDetail.tsx:459 +#: src/pages/sales/SalesOrderDetail.tsx:464 msgid "Hold Sales Order" msgstr "Sospendi ordini di vendita" -#: src/pages/sales/SalesOrderDetail.tsx:467 +#: src/pages/sales/SalesOrderDetail.tsx:472 msgid "Ship Sales Order" msgstr "Spedizione ordini di vendita" -#: src/pages/sales/SalesOrderDetail.tsx:469 +#: src/pages/sales/SalesOrderDetail.tsx:474 msgid "Ship this order?" msgstr "Spedire questo ordine?" -#: src/pages/sales/SalesOrderDetail.tsx:470 +#: src/pages/sales/SalesOrderDetail.tsx:475 msgid "Order shipped" msgstr "Ordine spedito" -#: src/pages/sales/SalesOrderDetail.tsx:478 +#: src/pages/sales/SalesOrderDetail.tsx:483 msgid "Complete Sales Order" msgstr "Completa Ordini Di Vendita" -#: src/pages/sales/SalesOrderDetail.tsx:523 +#: src/pages/sales/SalesOrderDetail.tsx:528 msgid "Ship Order" msgstr "Spedisci l'ordine" -#: src/pages/sales/SalesOrderShipmentDetail.tsx:142 -#: src/tables/sales/SalesOrderShipmentTable.tsx:135 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:140 +#: src/tables/sales/SalesOrderShipmentTable.tsx:156 msgid "Shipment Reference" msgstr "Riferimento della spedizione" -#: src/pages/sales/SalesOrderShipmentDetail.tsx:148 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:146 msgid "Tracking Number" msgstr "Numero di monitoraggio" -#: src/pages/sales/SalesOrderShipmentDetail.tsx:156 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:154 msgid "Invoice Number" msgstr "Numero Fattura" -#: src/pages/sales/SalesOrderShipmentDetail.tsx:191 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:189 msgid "Allocated Items" msgstr "Elementi Assegnati" -#: src/pages/sales/SalesOrderShipmentDetail.tsx:196 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:194 msgid "Checked By" msgstr "Verificato Da" -#: src/pages/sales/SalesOrderShipmentDetail.tsx:202 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:200 msgid "Not checked" msgstr "Non controllato" -#: src/pages/sales/SalesOrderShipmentDetail.tsx:208 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:206 #: src/tables/ColumnRenderers.tsx:518 #: src/tables/sales/SalesOrderAllocationTable.tsx:182 -#: src/tables/sales/SalesOrderShipmentTable.tsx:168 +#: src/tables/sales/SalesOrderShipmentTable.tsx:189 msgid "Shipment Date" msgstr "Data di spedizione" @@ -8366,108 +8464,82 @@ msgstr "Data di spedizione" #~ msgid "Assigned Items" #~ msgstr "Assigned Items" -#: src/pages/sales/SalesOrderShipmentDetail.tsx:216 -#: src/tables/sales/SalesOrderShipmentTable.tsx:172 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:214 +#: src/tables/sales/SalesOrderShipmentTable.tsx:193 msgid "Delivery Date" msgstr "Data di consegna" -#: src/pages/sales/SalesOrderShipmentDetail.tsx:255 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:253 msgid "Shipment Details" msgstr "Dettagli spedizione" -#: src/pages/sales/SalesOrderShipmentDetail.tsx:294 -#: src/pages/sales/SalesOrderShipmentDetail.tsx:438 -#: src/tables/sales/SalesOrderShipmentTable.tsx:90 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:292 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:406 +#: src/tables/sales/SalesOrderShipmentTable.tsx:97 msgid "Edit Shipment" msgstr "Modifica spedizione" -#: src/pages/sales/SalesOrderShipmentDetail.tsx:301 -#: src/pages/sales/SalesOrderShipmentDetail.tsx:457 -#: src/tables/sales/SalesOrderShipmentTable.tsx:82 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:299 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:425 +#: src/tables/sales/SalesOrderShipmentTable.tsx:89 msgid "Cancel Shipment" msgstr "Annulla spedizione" -#: src/pages/sales/SalesOrderShipmentDetail.tsx:314 -#: src/tables/sales/SalesOrderShipmentTable.tsx:98 -#: src/tables/sales/SalesOrderShipmentTable.tsx:193 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:312 +#: src/tables/sales/SalesOrderShipmentTable.tsx:119 +#: src/tables/sales/SalesOrderShipmentTable.tsx:238 msgid "Complete Shipment" msgstr "Completa Spedizione" -#: src/pages/sales/SalesOrderShipmentDetail.tsx:326 -#: src/pages/sales/SalesOrderShipmentDetail.tsx:328 -msgid "Check Shipment" -msgstr "Controlla spedizione" - -#: src/pages/sales/SalesOrderShipmentDetail.tsx:329 -msgid "Marking the shipment as checked indicates that you have verified that all items included in this shipment are correct" -msgstr "Marcatura della spedizione come controllato indica che hai verificato che tutti gli articoli inclusi in questa spedizione sono corretti" - #: src/pages/sales/SalesOrderShipmentDetail.tsx:339 -msgid "Shipment marked as checked" -msgstr "Spedizione contrassegnata come controllata" - -#: src/pages/sales/SalesOrderShipmentDetail.tsx:346 -#: src/pages/sales/SalesOrderShipmentDetail.tsx:348 -msgid "Uncheck Shipment" -msgstr "Deseleziona Spedizione" - -#: src/pages/sales/SalesOrderShipmentDetail.tsx:349 -msgid "Marking the shipment as unchecked indicates that the shipment requires further verification" -msgstr "Contrassegnare la spedizione come non controllata indica che la spedizione richiede ulteriori verifiche" - -#: src/pages/sales/SalesOrderShipmentDetail.tsx:359 -msgid "Shipment marked as unchecked" -msgstr "Spedizione contrassegnata come non controllata" - -#: src/pages/sales/SalesOrderShipmentDetail.tsx:371 #: src/tables/part/PartPurchaseOrdersTable.tsx:122 msgid "Pending" msgstr "In sospeso" -#: src/pages/sales/SalesOrderShipmentDetail.tsx:377 -#: src/tables/sales/SalesOrderShipmentTable.tsx:147 -#: src/tables/sales/SalesOrderShipmentTable.tsx:254 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:345 +#: src/tables/sales/SalesOrderShipmentTable.tsx:168 +#: src/tables/sales/SalesOrderShipmentTable.tsx:299 msgid "Checked" msgstr "Controllato" -#: src/pages/sales/SalesOrderShipmentDetail.tsx:383 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:351 msgid "Not Checked" msgstr "Non controllato" -#: src/pages/sales/SalesOrderShipmentDetail.tsx:389 -#: src/tables/sales/SalesOrderShipmentTable.tsx:154 -#: src/tables/sales/SalesOrderShipmentTable.tsx:259 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:357 +#: src/tables/sales/SalesOrderShipmentTable.tsx:175 +#: src/tables/sales/SalesOrderShipmentTable.tsx:304 msgid "Shipped" msgstr "Spedito" -#: src/pages/sales/SalesOrderShipmentDetail.tsx:395 -#: src/tables/sales/SalesOrderShipmentTable.tsx:161 -#: src/tables/sales/SalesOrderShipmentTable.tsx:264 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:363 +#: src/tables/sales/SalesOrderShipmentTable.tsx:182 +#: src/tables/sales/SalesOrderShipmentTable.tsx:309 #: src/tables/settings/EmailTable.tsx:31 msgid "Delivered" msgstr "Consegnato" -#: src/pages/sales/SalesOrderShipmentDetail.tsx:410 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:378 msgid "Send Shipment" msgstr "Invia Spedizione" -#: src/pages/sales/SalesOrderShipmentDetail.tsx:433 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:401 msgid "Shipment Actions" msgstr "Azioni Di Spedizione" -#: src/pages/sales/SalesOrderShipmentDetail.tsx:442 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:410 msgid "Check" msgstr "Controlla" -#: src/pages/sales/SalesOrderShipmentDetail.tsx:443 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:411 msgid "Mark shipment as checked" msgstr "Segna spedizione come controllata" -#: src/pages/sales/SalesOrderShipmentDetail.tsx:449 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:417 msgid "Uncheck" msgstr "Deseleziona" -#: src/pages/sales/SalesOrderShipmentDetail.tsx:450 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:418 msgid "Mark shipment as unchecked" msgstr "Segna spedizione come non controllata" @@ -8775,13 +8847,6 @@ msgstr "Errore nel caricare il pacchetto icone dal server" msgid "Part is not active" msgstr "L'articolo non è attivo" -#: src/tables/ColumnRenderers.tsx:73 -#: src/tables/bom/BomTable.tsx:657 -#: src/tables/part/PartParameterTable.tsx:227 -#: src/tables/part/PartTestTemplateTable.tsx:258 -msgid "Part is Locked" -msgstr "L'articolo è bloccato" - #: src/tables/ColumnRenderers.tsx:78 msgid "You are subscribed to notifications for this part" msgstr "Sei iscritto alle notifiche per questo articolo" @@ -9219,13 +9284,13 @@ msgstr "Articolo Virtuale" #~ msgstr "Show asssmbled items" #: src/tables/bom/BomTable.tsx:315 -#: src/tables/build/BuildLineTable.tsx:276 +#: src/tables/build/BuildLineTable.tsx:277 #: src/tables/part/PartTable.tsx:145 msgid "External stock" msgstr "Scorte esterne" #: src/tables/bom/BomTable.tsx:323 -#: src/tables/build/BuildLineTable.tsx:239 +#: src/tables/build/BuildLineTable.tsx:240 msgid "Includes substitute stock" msgstr "Comprende le scorte sostitutive" @@ -9234,7 +9299,7 @@ msgstr "Comprende le scorte sostitutive" #~ msgstr "Edit Bom Item" #: src/tables/bom/BomTable.tsx:332 -#: src/tables/build/BuildLineTable.tsx:249 +#: src/tables/build/BuildLineTable.tsx:250 #: src/tables/sales/SalesOrderLineItemTable.tsx:166 msgid "Includes variant stock" msgstr "Comprende varianti scorte" @@ -9272,8 +9337,8 @@ msgid "Stock Information" msgstr "Informazioni sulle scorte" #: src/tables/bom/BomTable.tsx:399 -#: src/tables/build/BuildLineTable.tsx:496 -#: src/tables/build/BuildLineTable.tsx:537 +#: src/tables/build/BuildLineTable.tsx:497 +#: src/tables/build/BuildLineTable.tsx:538 msgid "Consumable item" msgstr "Articolo consumabile" @@ -9282,7 +9347,7 @@ msgid "No available stock" msgstr "Scorte non disponibili" #: src/tables/bom/BomTable.tsx:420 -#: src/tables/build/BuildLineTable.tsx:213 +#: src/tables/build/BuildLineTable.tsx:214 msgid "Show testable items" msgstr "Mostra elementi testabili" @@ -9291,7 +9356,7 @@ msgid "Show trackable items" msgstr "Mostra articoli tracciabili" #: src/tables/bom/BomTable.tsx:430 -#: src/tables/build/BuildLineTable.tsx:208 +#: src/tables/build/BuildLineTable.tsx:209 msgid "Show assembled items" msgstr "Mostra articoli assemblati" @@ -9335,7 +9400,7 @@ msgstr "Mostra articoli che consentono la sostituzione della variante" #: src/tables/bom/BomTable.tsx:464 #: src/tables/bom/UsedInTable.tsx:85 -#: src/tables/build/BuildLineTable.tsx:202 +#: src/tables/build/BuildLineTable.tsx:203 msgid "Optional" msgstr "Opzionale" @@ -9345,7 +9410,7 @@ msgid "Show optional items" msgstr "Mostra articoli opzionali" #: src/tables/bom/BomTable.tsx:469 -#: src/tables/build/BuildLineTable.tsx:197 +#: src/tables/build/BuildLineTable.tsx:198 msgid "Consumable" msgstr "Consumabile" @@ -9420,6 +9485,7 @@ msgid "Add a single BOM item" msgstr "Aggiungi un singolo articolo BOM" #: src/tables/bom/BomTable.tsx:637 +#: src/tables/general/ParameterTable.tsx:206 #: src/tables/part/PartTable.tsx:546 msgid "Import from File" msgstr "Importa da File" @@ -9433,8 +9499,8 @@ msgid "Bill of materials cannot be edited, as the part is locked" msgstr "La distinta base non può essere modificata, in quanto la parte è bloccata" #: src/tables/bom/UsedInTable.tsx:34 -#: src/tables/build/BuildLineTable.tsx:207 -#: src/tables/part/ParametricPartTable.tsx:364 +#: src/tables/build/BuildLineTable.tsx:208 +#: src/tables/part/ParametricPartTable.tsx:29 #: src/tables/part/PartBuildAllocationsTable.tsx:60 #: src/tables/part/PartTable.tsx:209 #: src/tables/stock/StockItemTable.tsx:333 @@ -9455,11 +9521,11 @@ msgstr "Tracciabile" msgid "Show trackable assemblies" msgstr "Mostra assemblaggi tracciabili" -#: src/tables/build/BuildAllocatedStockTable.tsx:67 +#: src/tables/build/BuildAllocatedStockTable.tsx:64 msgid "Allocated to Output" msgstr "Assegnato all'output" -#: src/tables/build/BuildAllocatedStockTable.tsx:68 +#: src/tables/build/BuildAllocatedStockTable.tsx:65 msgid "Show items allocated to a build output" msgstr "Mostra gli articoli assegnati a un ordine di produzione" @@ -9472,50 +9538,68 @@ msgstr "Mostra gli articoli assegnati a un ordine di produzione" #~ msgid "Include orders for part variants" #~ msgstr "Include orders for part variants" -#: src/tables/build/BuildAllocatedStockTable.tsx:97 +#: src/tables/build/BuildAllocatedStockTable.tsx:94 #: src/tables/part/PartBuildAllocationsTable.tsx:84 #: src/tables/part/PartPurchaseOrdersTable.tsx:132 #: src/tables/part/PartSalesAllocationsTable.tsx:69 #: src/tables/sales/SalesOrderAllocationTable.tsx:122 -#: src/tables/sales/SalesOrderShipmentTable.tsx:130 +#: src/tables/sales/SalesOrderShipmentTable.tsx:151 msgid "Order Status" msgstr "Stato dell'ordine" +#: src/tables/build/BuildAllocatedStockTable.tsx:164 +#: src/tables/build/BuildLineTable.tsx:651 +msgid "Edit Stock Allocation" +msgstr "Modifica Assegnazione Magazzino" + #: src/tables/build/BuildAllocatedStockTable.tsx:164 #~ msgid "Edit Build Item" #~ msgstr "Edit Build Item" -#: src/tables/build/BuildAllocatedStockTable.tsx:167 -#: src/tables/build/BuildLineTable.tsx:650 -msgid "Edit Stock Allocation" -msgstr "Modifica Assegnazione Magazzino" - #: src/tables/build/BuildAllocatedStockTable.tsx:174 #~ msgid "Delete Build Item" #~ msgstr "Delete Build Item" +#: src/tables/build/BuildAllocatedStockTable.tsx:177 +#: src/tables/build/BuildLineTable.tsx:664 +#: src/tables/sales/SalesOrderAllocationTable.tsx:218 +msgid "Remove Allocated Stock" +msgstr "Rimuovi Scorte Assegnate" + #: src/tables/build/BuildAllocatedStockTable.tsx:180 #: src/tables/build/BuildLineTable.tsx:663 -msgid "Delete Stock Allocation" -msgstr "Elimina Assegnazione Magazzino" +#~ msgid "Delete Stock Allocation" +#~ msgstr "Delete Stock Allocation" -#: src/tables/build/BuildAllocatedStockTable.tsx:239 +#: src/tables/build/BuildAllocatedStockTable.tsx:182 +#: src/tables/build/BuildLineTable.tsx:669 +#: src/tables/sales/SalesOrderAllocationTable.tsx:221 +msgid "Are you sure you want to remove this allocated stock from the order?" +msgstr "Sei sicuro di voler rimuovere questo stock assegnato dall'ordine?" + +#: src/tables/build/BuildAllocatedStockTable.tsx:242 msgid "Consume" msgstr "Consuma" +#: src/tables/build/BuildAllocatedStockTable.tsx:259 +#: src/tables/build/BuildLineTable.tsx:112 +#: src/tables/sales/SalesOrderAllocationTable.tsx:248 +msgid "Remove allocated stock" +msgstr "Rimuovi Scorte Assegnate" + #: src/tables/build/BuildLineTable.tsx:59 #~ msgid "Show lines with available stock" #~ msgstr "Show lines with available stock" -#: src/tables/build/BuildLineTable.tsx:120 +#: src/tables/build/BuildLineTable.tsx:121 msgid "View Stock Item" msgstr "Vedi Elemento di Magazzino" -#: src/tables/build/BuildLineTable.tsx:183 +#: src/tables/build/BuildLineTable.tsx:184 msgid "Show fully allocated lines" msgstr "Mostra le linee completamente assegnate" -#: src/tables/build/BuildLineTable.tsx:188 +#: src/tables/build/BuildLineTable.tsx:189 msgid "Show fully consumed lines" msgstr "Mostra le linee completamente consumate" @@ -9523,124 +9607,124 @@ msgstr "Mostra le linee completamente consumate" #~ msgid "Show allocated lines" #~ msgstr "Show allocated lines" -#: src/tables/build/BuildLineTable.tsx:193 +#: src/tables/build/BuildLineTable.tsx:194 msgid "Show items with sufficient available stock" msgstr "Mostra elementi con sufficiente stock disponibile" -#: src/tables/build/BuildLineTable.tsx:198 +#: src/tables/build/BuildLineTable.tsx:199 msgid "Show consumable lines" msgstr "Mostra linee consumabili" -#: src/tables/build/BuildLineTable.tsx:203 +#: src/tables/build/BuildLineTable.tsx:204 msgid "Show optional lines" msgstr "Mostra linee opzionali" -#: src/tables/build/BuildLineTable.tsx:212 +#: src/tables/build/BuildLineTable.tsx:213 #: src/tables/part/PartTable.tsx:233 msgid "Testable" msgstr "Testabile" -#: src/tables/build/BuildLineTable.tsx:217 +#: src/tables/build/BuildLineTable.tsx:218 #: src/tables/stock/StockItemTable.tsx:388 msgid "Tracked" msgstr "Tracciato" -#: src/tables/build/BuildLineTable.tsx:218 +#: src/tables/build/BuildLineTable.tsx:219 msgid "Show tracked lines" msgstr "Mostra linee tracciate" -#: src/tables/build/BuildLineTable.tsx:223 +#: src/tables/build/BuildLineTable.tsx:224 msgid "Show items with stock on order" msgstr "Mostra gli articoli con stock in ordine" -#: src/tables/build/BuildLineTable.tsx:258 +#: src/tables/build/BuildLineTable.tsx:259 #: src/tables/sales/SalesOrderLineItemTable.tsx:172 msgid "In production" msgstr "In produzione" -#: src/tables/build/BuildLineTable.tsx:286 +#: src/tables/build/BuildLineTable.tsx:287 msgid "Insufficient stock" msgstr "Scorte insufficienti" -#: src/tables/build/BuildLineTable.tsx:302 +#: src/tables/build/BuildLineTable.tsx:303 #: src/tables/sales/SalesOrderLineItemTable.tsx:160 #: src/tables/stock/StockItemTable.tsx:191 msgid "No stock available" msgstr "Nessuna Scorta Disponibile" -#: src/tables/build/BuildLineTable.tsx:375 +#: src/tables/build/BuildLineTable.tsx:376 msgid "Gets Inherited" msgstr "Viene Ereditato" -#: src/tables/build/BuildLineTable.tsx:388 +#: src/tables/build/BuildLineTable.tsx:389 msgid "Unit Quantity" msgstr "Quantità Unità" -#: src/tables/build/BuildLineTable.tsx:415 +#: src/tables/build/BuildLineTable.tsx:416 msgid "Setup Quantity" msgstr "Imposta quantità" -#: src/tables/build/BuildLineTable.tsx:424 +#: src/tables/build/BuildLineTable.tsx:425 msgid "Attrition" msgstr "Logoramento" -#: src/tables/build/BuildLineTable.tsx:432 +#: src/tables/build/BuildLineTable.tsx:433 msgid "Rounding Multiple" msgstr "Arrotondamento Multiplo" -#: src/tables/build/BuildLineTable.tsx:441 +#: src/tables/build/BuildLineTable.tsx:442 msgid "BOM Information" msgstr "Informazioni distinta base (BOM)" -#: src/tables/build/BuildLineTable.tsx:515 +#: src/tables/build/BuildLineTable.tsx:516 #: src/tables/part/PartBuildAllocationsTable.tsx:102 msgid "Fully allocated" msgstr "Completamente assegnato" -#: src/tables/build/BuildLineTable.tsx:563 +#: src/tables/build/BuildLineTable.tsx:564 #: src/tables/sales/SalesOrderLineItemTable.tsx:311 msgid "Create Build Order" msgstr "Crea Ordine di Produzione" -#: src/tables/build/BuildLineTable.tsx:592 +#: src/tables/build/BuildLineTable.tsx:593 msgid "Auto allocation in progress" msgstr "Assegnazione automatica in corso" -#: src/tables/build/BuildLineTable.tsx:595 -#: src/tables/build/BuildLineTable.tsx:802 +#: src/tables/build/BuildLineTable.tsx:596 +#: src/tables/build/BuildLineTable.tsx:809 msgid "Auto Allocate Stock" msgstr "Assegna Stock Automaticamente" -#: src/tables/build/BuildLineTable.tsx:596 +#: src/tables/build/BuildLineTable.tsx:597 msgid "Automatically allocate stock to this build according to the selected options" msgstr "Assegna automaticamente lo stock a questa produzione in base alle opzioni selezionate" -#: src/tables/build/BuildLineTable.tsx:616 -#: src/tables/build/BuildLineTable.tsx:630 -#: src/tables/build/BuildLineTable.tsx:751 -#: src/tables/build/BuildLineTable.tsx:852 +#: src/tables/build/BuildLineTable.tsx:617 +#: src/tables/build/BuildLineTable.tsx:631 +#: src/tables/build/BuildLineTable.tsx:758 +#: src/tables/build/BuildLineTable.tsx:859 #: src/tables/build/BuildOutputTable.tsx:355 #: src/tables/build/BuildOutputTable.tsx:360 msgid "Deallocate Stock" msgstr "Disassegna Stock" -#: src/tables/build/BuildLineTable.tsx:632 +#: src/tables/build/BuildLineTable.tsx:633 msgid "Deallocate all untracked stock for this build order" msgstr "Disassegna tutto lo stock non tracciato per questo ordine di produzione" -#: src/tables/build/BuildLineTable.tsx:634 +#: src/tables/build/BuildLineTable.tsx:635 msgid "Deallocate stock from the selected line item" msgstr "Disassegna stock dalla riga selezionata" -#: src/tables/build/BuildLineTable.tsx:638 +#: src/tables/build/BuildLineTable.tsx:639 msgid "Stock has been deallocated" msgstr "Lo stock è stato disassegnato" -#: src/tables/build/BuildLineTable.tsx:771 +#: src/tables/build/BuildLineTable.tsx:778 msgid "Build Stock" msgstr "Crea scorta" -#: src/tables/build/BuildLineTable.tsx:784 +#: src/tables/build/BuildLineTable.tsx:791 #: src/tables/sales/SalesOrderLineItemTable.tsx:487 msgid "View Part" msgstr "Mostra Articolo" @@ -9739,7 +9823,7 @@ msgid "Serialize Build Output" msgstr "Serializza ordine di produzione" #: src/tables/build/BuildOutputTable.tsx:405 -#: src/tables/part/PartTestResultTable.tsx:310 +#: src/tables/part/PartTestResultTable.tsx:318 #: src/tables/stock/StockItemTable.tsx:328 msgid "Filter by stock status" msgstr "Filtra per stato delle scorte" @@ -9964,8 +10048,8 @@ msgid "View Item" msgstr "Visualizza Articolo" #: src/tables/general/ExtraLineItemTable.tsx:95 -#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:299 -#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:403 +#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:300 +#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:405 #: src/tables/sales/ReturnOrderLineItemTable.tsx:83 #: src/tables/sales/ReturnOrderLineItemTable.tsx:187 #: src/tables/sales/SalesOrderLineItemTable.tsx:252 @@ -9974,14 +10058,14 @@ msgid "Add Line Item" msgstr "Aggiungi linea articolo" #: src/tables/general/ExtraLineItemTable.tsx:108 -#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:320 +#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:322 #: src/tables/sales/ReturnOrderLineItemTable.tsx:96 #: src/tables/sales/SalesOrderLineItemTable.tsx:271 msgid "Edit Line Item" msgstr "Modifica linea Articolo" #: src/tables/general/ExtraLineItemTable.tsx:117 -#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:329 +#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:331 #: src/tables/sales/ReturnOrderLineItemTable.tsx:105 #: src/tables/sales/SalesOrderLineItemTable.tsx:280 msgid "Delete Line Item" @@ -9991,6 +10075,137 @@ msgstr "Cancella Linea Articolo" msgid "Add Extra Line Item" msgstr "Aggiungi Voci di riga extra" +#: src/tables/general/ParameterTable.tsx:88 +msgid "Internal Units" +msgstr "Unità Interne" + +#: src/tables/general/ParameterTable.tsx:108 +#: src/tables/general/ParameterTable.tsx:123 +msgid "Updated By" +msgstr "Aggiornato da" + +#: src/tables/general/ParameterTable.tsx:118 +msgid "Show parameters for enabled templates" +msgstr "" + +#: src/tables/general/ParameterTable.tsx:124 +msgid "Filter by user who last updated the parameter" +msgstr "Filtra per utente che per ultimo ha aggiornato il parametro" + +#: src/tables/general/ParameterTable.tsx:154 +msgid "Import Parameters" +msgstr "" + +#: src/tables/general/ParameterTable.tsx:164 +#: src/tables/general/ParametricDataTable.tsx:261 +#: src/tables/general/ParametricDataTable.tsx:392 +msgid "Add Parameter" +msgstr "Aggiungi parametro" + +#: src/tables/general/ParameterTable.tsx:175 +#: src/tables/general/ParameterTable.tsx:222 +#: src/tables/general/ParametricDataTable.tsx:285 +msgid "Edit Parameter" +msgstr "Modifica parametro" + +#: src/tables/general/ParameterTable.tsx:183 +#: src/tables/general/ParameterTable.tsx:230 +msgid "Delete Parameter" +msgstr "Elimina Parametro" + +#: src/tables/general/ParameterTable.tsx:191 +msgid "Add Parameters" +msgstr "" + +#: src/tables/general/ParameterTable.tsx:197 +msgid "Create Parameter" +msgstr "" + +#: src/tables/general/ParameterTable.tsx:199 +msgid "Create a new parameter" +msgstr "" + +#: src/tables/general/ParameterTable.tsx:208 +msgid "Import parameters from a file" +msgstr "" + +#: src/tables/general/ParameterTemplateTable.tsx:48 +#: src/tables/general/ParameterTemplateTable.tsx:197 +msgid "Add Parameter Template" +msgstr "Aggiungi Modello Parametro" + +#: src/tables/general/ParameterTemplateTable.tsx:64 +msgid "Duplicate Parameter Template" +msgstr "Duplica Modello Parametro" + +#: src/tables/general/ParameterTemplateTable.tsx:78 +msgid "Delete Parameter Template" +msgstr "Elimina Modello Parametro" + +#: src/tables/general/ParameterTemplateTable.tsx:85 +msgid "Edit Parameter Template" +msgstr "Modifica Modello Parametro" + +#: src/tables/general/ParameterTemplateTable.tsx:138 +msgid "Checkbox" +msgstr "Casella di spunta" + +#: src/tables/general/ParameterTemplateTable.tsx:139 +msgid "Show checkbox templates" +msgstr "Mostra i modelli di casella di spunta" + +#: src/tables/general/ParameterTemplateTable.tsx:143 +msgid "Has choices" +msgstr "Ha scelte" + +#: src/tables/general/ParameterTemplateTable.tsx:144 +msgid "Show templates with choices" +msgstr "Mostra modelli con scelte" + +#: src/tables/general/ParameterTemplateTable.tsx:148 +#: src/tables/part/PartTable.tsx:245 +msgid "Has Units" +msgstr "Ha Unità" + +#: src/tables/general/ParameterTemplateTable.tsx:149 +msgid "Show templates with units" +msgstr "Mostra modelli con unità" + +#: src/tables/general/ParameterTemplateTable.tsx:154 +msgid "Show enabled templates" +msgstr "" + +#: src/tables/general/ParameterTemplateTable.tsx:158 +#: src/tables/settings/ImportSessionTable.tsx:111 +#: src/tables/settings/TemplateTable.tsx:368 +msgid "Model Type" +msgstr "Tipo Modello" + +#: src/tables/general/ParameterTemplateTable.tsx:159 +msgid "Filter by model type" +msgstr "" + +#: src/tables/general/ParametricDataTable.tsx:79 +msgid "Click to edit" +msgstr "Clicca per modificare" + +#: src/tables/general/ParametricDataTableFilters.tsx:36 +msgid "True" +msgstr "Vero" + +#: src/tables/general/ParametricDataTableFilters.tsx:37 +msgid "False" +msgstr "Falso" + +#: src/tables/general/ParametricDataTableFilters.tsx:47 +#: src/tables/general/ParametricDataTableFilters.tsx:80 +msgid "Select a choice" +msgstr "Seleziona una scelta" + +#: src/tables/general/ParametricDataTableFilters.tsx:100 +msgid "Enter a value" +msgstr "Inserisci un valore" + #: src/tables/machine/MachineListTable.tsx:133 msgid "Machine restarted" msgstr "Macchina riavviata" @@ -10071,7 +10286,7 @@ msgid "Initialized" msgstr "Inizializzato" #: src/tables/machine/MachineListTable.tsx:410 -#: src/tables/machine/MachineTypeTable.tsx:307 +#: src/tables/machine/MachineTypeTable.tsx:305 msgid "No errors reported" msgstr "Nessun errore segnalato" @@ -10132,15 +10347,15 @@ msgstr "Driver integrato" #~ msgid "Machine type information" #~ msgstr "Machine type information" -#: src/tables/machine/MachineTypeTable.tsx:128 +#: src/tables/machine/MachineTypeTable.tsx:126 msgid "Not Found" msgstr "Non Trovato" -#: src/tables/machine/MachineTypeTable.tsx:131 +#: src/tables/machine/MachineTypeTable.tsx:129 msgid "Machine type not found." msgstr "Tipo di macchina non trovato." -#: src/tables/machine/MachineTypeTable.tsx:141 +#: src/tables/machine/MachineTypeTable.tsx:139 msgid "Machine Type Information" msgstr "Informazioni sul tipo di macchina" @@ -10148,34 +10363,34 @@ msgstr "Informazioni sul tipo di macchina" #~ msgid "Available drivers" #~ msgstr "Available drivers" -#: src/tables/machine/MachineTypeTable.tsx:156 -#: src/tables/machine/MachineTypeTable.tsx:255 +#: src/tables/machine/MachineTypeTable.tsx:154 +#: src/tables/machine/MachineTypeTable.tsx:253 msgid "Slug" msgstr "Slug" -#: src/tables/machine/MachineTypeTable.tsx:167 -#: src/tables/machine/MachineTypeTable.tsx:276 +#: src/tables/machine/MachineTypeTable.tsx:165 +#: src/tables/machine/MachineTypeTable.tsx:274 msgid "Provider plugin" msgstr "Plugin fornitore" -#: src/tables/machine/MachineTypeTable.tsx:179 -#: src/tables/machine/MachineTypeTable.tsx:288 +#: src/tables/machine/MachineTypeTable.tsx:177 +#: src/tables/machine/MachineTypeTable.tsx:286 msgid "Provider file" msgstr "File provider" -#: src/tables/machine/MachineTypeTable.tsx:194 +#: src/tables/machine/MachineTypeTable.tsx:192 msgid "Available Drivers" msgstr "Driver disponibili" -#: src/tables/machine/MachineTypeTable.tsx:234 +#: src/tables/machine/MachineTypeTable.tsx:232 msgid "Machine driver not found." msgstr "Driver macchina non trovato." -#: src/tables/machine/MachineTypeTable.tsx:242 +#: src/tables/machine/MachineTypeTable.tsx:240 msgid "Machine driver information" msgstr "Informazioni driver macchina" -#: src/tables/machine/MachineTypeTable.tsx:262 +#: src/tables/machine/MachineTypeTable.tsx:260 msgid "Machine type" msgstr "Tipo di macchina" @@ -10187,15 +10402,15 @@ msgstr "Tipo di macchina" #~ msgid "Machine driver detail" #~ msgstr "Machine driver detail" -#: src/tables/machine/MachineTypeTable.tsx:362 +#: src/tables/machine/MachineTypeTable.tsx:360 msgid "Builtin type" msgstr "Tipo incorporato" -#: src/tables/machine/MachineTypeTable.tsx:371 +#: src/tables/machine/MachineTypeTable.tsx:369 msgid "Machine Type Detail" msgstr "Dettagli sul Tipo di Macchina" -#: src/tables/machine/MachineTypeTable.tsx:381 +#: src/tables/machine/MachineTypeTable.tsx:379 msgid "Machine Driver Detail" msgstr "Dettagli sul Driver di Macchina" @@ -10213,52 +10428,31 @@ msgstr "Notifiche" msgid "Message" msgstr "Messaggio" -#: src/tables/part/ParametricPartTable.tsx:78 -msgid "Click to edit" -msgstr "Clicca per modificare" +#: src/tables/part/ParametricPartTable.tsx:20 +msgid "Show active parts" +msgstr "Mostra articoli attivi" + +#: src/tables/part/ParametricPartTable.tsx:25 +msgid "Show locked parts" +msgstr "Mostra articoli bloccati" + +#: src/tables/part/ParametricPartTable.tsx:30 +msgid "Show assembly parts" +msgstr "Mostra articoli assemblati" #: src/tables/part/ParametricPartTable.tsx:82 #~ msgid "Edit parameter" #~ msgstr "Edit parameter" #: src/tables/part/ParametricPartTable.tsx:244 -msgid "Add Part Parameter" -msgstr "Aggiungi Parametro Articolo" +#~ msgid "Add Part Parameter" +#~ msgstr "Add Part Parameter" #: src/tables/part/ParametricPartTable.tsx:258 #: src/tables/part/PartParameterTable.tsx:164 #: src/tables/part/PartParameterTable.tsx:187 -msgid "Edit Part Parameter" -msgstr "Modifica Parametro Articolo" - -#: src/tables/part/ParametricPartTable.tsx:355 -msgid "Show active parts" -msgstr "Mostra articoli attivi" - -#: src/tables/part/ParametricPartTable.tsx:360 -msgid "Show locked parts" -msgstr "Mostra articoli bloccati" - -#: src/tables/part/ParametricPartTable.tsx:365 -msgid "Show assembly parts" -msgstr "Mostra articoli assemblati" - -#: src/tables/part/ParametricPartTableFilters.tsx:36 -msgid "True" -msgstr "Vero" - -#: src/tables/part/ParametricPartTableFilters.tsx:37 -msgid "False" -msgstr "Falso" - -#: src/tables/part/ParametricPartTableFilters.tsx:47 -#: src/tables/part/ParametricPartTableFilters.tsx:80 -msgid "Select a choice" -msgstr "Seleziona una scelta" - -#: src/tables/part/ParametricPartTableFilters.tsx:100 -msgid "Enter a value" -msgstr "Inserisci un valore" +#~ msgid "Edit Part Parameter" +#~ msgstr "Edit Part Parameter" #: src/tables/part/PartBuildAllocationsTable.tsx:64 msgid "Assembly IPN" @@ -10273,7 +10467,7 @@ msgid "Required Stock" msgstr "Giacenza Richiesta" #: src/tables/part/PartBuildAllocationsTable.tsx:124 -#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:381 +#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:383 msgid "View Build Order" msgstr "Vedi Ordine di Produzione" @@ -10332,85 +10526,22 @@ msgstr "Modifica Parametro Categoria" msgid "Delete Category Parameter" msgstr "Elimina Parametro Categoria" -#: src/tables/part/PartCategoryTemplateTable.tsx:87 -msgid "Parameter Template" -msgstr "Modello Parametro" - #: src/tables/part/PartCategoryTemplateTable.tsx:93 #~ msgid "[{0}]" #~ msgstr "[{0}]" -#: src/tables/part/PartParameterTable.tsx:108 -msgid "Internal Units" -msgstr "Unità Interne" - -#: src/tables/part/PartParameterTable.tsx:128 -#: src/tables/part/PartParameterTable.tsx:138 -msgid "Updated By" -msgstr "Aggiornato da" - -#: src/tables/part/PartParameterTable.tsx:139 -msgid "Filter by user who last updated the parameter" -msgstr "Filtra per utente che per ultimo ha aggiornato il parametro" - #: src/tables/part/PartParameterTable.tsx:148 -msgid "New Part Parameter" -msgstr "Nuovo Parametro Articolo" +#~ msgid "New Part Parameter" +#~ msgstr "New Part Parameter" #: src/tables/part/PartParameterTable.tsx:173 #: src/tables/part/PartParameterTable.tsx:195 -msgid "Delete Part Parameter" -msgstr "Elimina Parametro Articolo" +#~ msgid "Delete Part Parameter" +#~ msgstr "Delete Part Parameter" #: src/tables/part/PartParameterTable.tsx:213 -msgid "Add parameter" -msgstr "Aggiungi parametro" - -#: src/tables/part/PartParameterTable.tsx:232 -msgid "Part parameters cannot be edited, as the part is locked" -msgstr "I parametri dell'articolo non possono essere modificati, poiché l'articolo è bloccata" - -#: src/tables/part/PartParameterTemplateTable.tsx:36 -msgid "Checkbox" -msgstr "Casella di spunta" - -#: src/tables/part/PartParameterTemplateTable.tsx:37 -msgid "Show checkbox templates" -msgstr "Mostra i modelli di casella di spunta" - -#: src/tables/part/PartParameterTemplateTable.tsx:41 -msgid "Has choices" -msgstr "Ha scelte" - -#: src/tables/part/PartParameterTemplateTable.tsx:42 -msgid "Show templates with choices" -msgstr "Mostra modelli con scelte" - -#: src/tables/part/PartParameterTemplateTable.tsx:46 -#: src/tables/part/PartTable.tsx:245 -msgid "Has Units" -msgstr "Ha Unità" - -#: src/tables/part/PartParameterTemplateTable.tsx:47 -msgid "Show templates with units" -msgstr "Mostra modelli con unità" - -#: src/tables/part/PartParameterTemplateTable.tsx:91 -#: src/tables/part/PartParameterTemplateTable.tsx:166 -msgid "Add Parameter Template" -msgstr "Aggiungi Modello Parametro" - -#: src/tables/part/PartParameterTemplateTable.tsx:105 -msgid "Duplicate Parameter Template" -msgstr "Duplica Modello Parametro" - -#: src/tables/part/PartParameterTemplateTable.tsx:117 -msgid "Edit Parameter Template" -msgstr "Modifica Modello Parametro" - -#: src/tables/part/PartParameterTemplateTable.tsx:128 -msgid "Delete Parameter Template" -msgstr "Elimina Modello Parametro" +#~ msgid "Add parameter" +#~ msgstr "Add parameter" #: src/tables/part/PartParameterTemplateTable.tsx:141 #~ msgid "Add parameter template" @@ -10430,7 +10561,7 @@ msgid "Show received items" msgstr "Visualizza articoli ricevuti" #: src/tables/part/PartSalesAllocationsTable.tsx:90 -#: src/tables/sales/SalesOrderShipmentTable.tsx:218 +#: src/tables/sales/SalesOrderShipmentTable.tsx:263 msgid "View Sales Order" msgstr "Vedi Ordine di Vendita" @@ -10617,8 +10748,8 @@ msgstr "Importa articoli da un plugin del fornitore" #: src/tables/part/PartTestResultTable.tsx:103 #: src/tables/part/PartTestResultTable.tsx:181 -#: src/tables/part/PartTestResultTable.tsx:320 -#: src/tables/part/PartTestResultTable.tsx:334 +#: src/tables/part/PartTestResultTable.tsx:328 +#: src/tables/part/PartTestResultTable.tsx:342 #: src/tables/stock/StockItemTestResultTable.tsx:296 #: src/tables/stock/StockItemTestResultTable.tsx:368 #: src/tables/stock/StockItemTestResultTable.tsx:429 @@ -10643,7 +10774,7 @@ msgstr "Risultato dei test aggiunti" msgid "No Result" msgstr "Nessun risultato" -#: src/tables/part/PartTestResultTable.tsx:298 +#: src/tables/part/PartTestResultTable.tsx:306 msgid "Show build outputs currently in production" msgstr "Mostra gli ordini di produzione attualmente in produzione" @@ -11013,36 +11144,45 @@ msgstr "Installato" #~ msgid "Parameter updated" #~ msgstr "Parameter updated" -#: src/tables/purchasing/ManufacturerPartParameterTable.tsx:63 -#: src/tables/purchasing/ManufacturerPartParameterTable.tsx:112 -msgid "Add Parameter" -msgstr "Aggiungi parametro" - #: src/tables/purchasing/ManufacturerPartParameterTable.tsx:73 #~ msgid "Parameter deleted" #~ msgstr "Parameter deleted" -#: src/tables/purchasing/ManufacturerPartParameterTable.tsx:74 -msgid "Edit Parameter" -msgstr "Modifica parametro" - #: src/tables/purchasing/ManufacturerPartParameterTable.tsx:74 #~ msgid "Are you sure you want to delete this parameter?" #~ msgstr "Are you sure you want to delete this parameter?" -#: src/tables/purchasing/ManufacturerPartParameterTable.tsx:82 -msgid "Delete Parameter" -msgstr "Elimina Parametro" - -#: src/tables/purchasing/ManufacturerPartTable.tsx:63 -#~ msgid "Create Manufacturer Part" -#~ msgstr "Create Manufacturer Part" - +#: src/tables/purchasing/ManufacturerPartParametricTable.tsx:34 #: src/tables/purchasing/ManufacturerPartTable.tsx:82 #: src/tables/purchasing/SupplierPartTable.tsx:99 msgid "MPN" msgstr "MPN" +#: src/tables/purchasing/ManufacturerPartParametricTable.tsx:44 +#: src/tables/purchasing/ManufacturerPartTable.tsx:134 +#: src/tables/purchasing/SupplierPartTable.tsx:220 +msgid "Active Part" +msgstr "Articolo Attivo" + +#: src/tables/purchasing/ManufacturerPartParametricTable.tsx:45 +#: src/tables/purchasing/ManufacturerPartTable.tsx:135 +msgid "Show manufacturer parts for active internal parts." +msgstr "Mostra gli articoli del produttore per gli articoli interni attivi." + +#: src/tables/purchasing/ManufacturerPartParametricTable.tsx:50 +#: src/tables/purchasing/ManufacturerPartTable.tsx:140 +msgid "Active Manufacturer" +msgstr "Produttore Attivo" + +#: src/tables/purchasing/ManufacturerPartParametricTable.tsx:51 +#: src/tables/purchasing/ManufacturerPartTable.tsx:142 +msgid "Show manufacturer parts for active manufacturers." +msgstr "Mostra gli articoli del produttore per i produttori attivi" + +#: src/tables/purchasing/ManufacturerPartTable.tsx:63 +#~ msgid "Create Manufacturer Part" +#~ msgstr "Create Manufacturer Part" + #: src/tables/purchasing/ManufacturerPartTable.tsx:100 #~ msgid "Manufacturer part updated" #~ msgstr "Manufacturer part updated" @@ -11055,25 +11195,8 @@ msgstr "MPN" #~ msgid "Are you sure you want to remove this manufacturer part?" #~ msgstr "Are you sure you want to remove this manufacturer part?" -#: src/tables/purchasing/ManufacturerPartTable.tsx:134 -#: src/tables/purchasing/SupplierPartTable.tsx:220 -msgid "Active Part" -msgstr "Articolo Attivo" - -#: src/tables/purchasing/ManufacturerPartTable.tsx:135 -msgid "Show manufacturer parts for active internal parts." -msgstr "Mostra gli articoli del produttore per gli articoli interni attivi." - -#: src/tables/purchasing/ManufacturerPartTable.tsx:140 -msgid "Active Manufacturer" -msgstr "Produttore Attivo" - -#: src/tables/purchasing/ManufacturerPartTable.tsx:142 -msgid "Show manufacturer parts for active manufacturers." -msgstr "Mostra gli articoli del produttore per i produttori attivi" - #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:115 -#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:397 +#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:399 msgid "Import Line Items" msgstr "Importa Elementi Riga" @@ -11099,11 +11222,11 @@ msgstr "Mostra gli elementi di riga che sono stati ricevuti" #~ msgid "Add line item" #~ msgstr "Add line item" -#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:350 +#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:352 msgid "Receive line item" msgstr "Ricevi voce di riga" -#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:414 +#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:416 msgid "Receive items" msgstr "Ricevi articoli" @@ -11201,25 +11324,25 @@ msgid "Not shipped" msgstr "Non spedito" #: src/tables/sales/SalesOrderAllocationTable.tsx:211 -#: src/tables/sales/SalesOrderAllocationTable.tsx:229 +#: src/tables/sales/SalesOrderAllocationTable.tsx:235 msgid "Edit Allocation" msgstr "Modifica Assegnazione" #: src/tables/sales/SalesOrderAllocationTable.tsx:218 #: src/tables/sales/SalesOrderAllocationTable.tsx:241 -msgid "Delete Allocation" -msgstr "Rimuovi Assegnazione" +#~ msgid "Delete Allocation" +#~ msgstr "Delete Allocation" -#: src/tables/sales/SalesOrderAllocationTable.tsx:252 -#: src/tables/sales/SalesOrderAllocationTable.tsx:253 +#: src/tables/sales/SalesOrderAllocationTable.tsx:261 +#: src/tables/sales/SalesOrderAllocationTable.tsx:262 msgid "View Shipment" msgstr "Vedi spedizione" -#: src/tables/sales/SalesOrderAllocationTable.tsx:308 +#: src/tables/sales/SalesOrderAllocationTable.tsx:317 msgid "Assign to Shipment" msgstr "Assegna alla spedizione" -#: src/tables/sales/SalesOrderAllocationTable.tsx:324 +#: src/tables/sales/SalesOrderAllocationTable.tsx:333 msgid "Assign to shipment" msgstr "Assegna alla spedizione" @@ -11259,35 +11382,35 @@ msgstr "Ordine Articolo magazzino" #~ msgid "Delete Shipment" #~ msgstr "Delete Shipment" -#: src/tables/sales/SalesOrderShipmentTable.tsx:72 +#: src/tables/sales/SalesOrderShipmentTable.tsx:79 msgid "Create Shipment" msgstr "Crea spedizione" -#: src/tables/sales/SalesOrderShipmentTable.tsx:143 +#: src/tables/sales/SalesOrderShipmentTable.tsx:164 msgid "Items" msgstr "Articoli" -#: src/tables/sales/SalesOrderShipmentTable.tsx:203 +#: src/tables/sales/SalesOrderShipmentTable.tsx:248 msgid "Edit shipment" msgstr "Modifica spedizione" -#: src/tables/sales/SalesOrderShipmentTable.tsx:211 +#: src/tables/sales/SalesOrderShipmentTable.tsx:256 msgid "Cancel shipment" msgstr "Annulla spedizione" -#: src/tables/sales/SalesOrderShipmentTable.tsx:241 +#: src/tables/sales/SalesOrderShipmentTable.tsx:286 msgid "Add shipment" msgstr "Aggiungi Spedizione" -#: src/tables/sales/SalesOrderShipmentTable.tsx:255 +#: src/tables/sales/SalesOrderShipmentTable.tsx:300 msgid "Show shipments which have been checked" msgstr "Mostra le spedizioni che sono state controllate" -#: src/tables/sales/SalesOrderShipmentTable.tsx:260 +#: src/tables/sales/SalesOrderShipmentTable.tsx:305 msgid "Show shipments which have been shipped" msgstr "Mostra le spedizioni che sono state spedite" -#: src/tables/sales/SalesOrderShipmentTable.tsx:265 +#: src/tables/sales/SalesOrderShipmentTable.tsx:310 msgid "Show shipments which have been delivered" msgstr "Mostra le spedizioni che sono state consegnate" @@ -11621,11 +11744,6 @@ msgstr "Caricato" msgid "Imported Rows" msgstr "Riga importate" -#: src/tables/settings/ImportSessionTable.tsx:111 -#: src/tables/settings/TemplateTable.tsx:368 -msgid "Model Type" -msgstr "Tipo Modello" - #: src/tables/settings/ImportSessionTable.tsx:112 #: src/tables/settings/TemplateTable.tsx:369 msgid "Filter by target model type" diff --git a/src/frontend/src/locales/ja/messages.po b/src/frontend/src/locales/ja/messages.po index 73eef14b58..2c001fafa7 100644 --- a/src/frontend/src/locales/ja/messages.po +++ b/src/frontend/src/locales/ja/messages.po @@ -8,7 +8,7 @@ msgstr "" "Language: ja\n" "Project-Id-Version: inventree\n" "Report-Msgid-Bugs-To: \n" -"PO-Revision-Date: 2025-11-19 19:39\n" +"PO-Revision-Date: 2025-12-07 07:36\n" "Last-Translator: \n" "Language-Team: Japanese\n" "Plural-Forms: nplurals=1; plural=0;\n" @@ -30,7 +30,7 @@ msgid "Edit" msgstr "編集" #: lib/components/RowActions.tsx:56 -#: src/components/forms/ApiForm.tsx:735 +#: src/components/forms/ApiForm.tsx:754 #: src/components/items/ActionDropdown.tsx:257 #: src/components/items/RoleTable.tsx:155 #: src/hooks/UseForm.tsx:164 @@ -56,24 +56,24 @@ msgstr "キャンセル" #: lib/components/RowActions.tsx:136 #: src/components/nav/NavigationDrawer.tsx:190 -#: src/forms/PurchaseOrderForms.tsx:802 +#: src/forms/PurchaseOrderForms.tsx:854 #: src/forms/StockForms.tsx:796 #: src/forms/StockForms.tsx:843 -#: src/forms/StockForms.tsx:889 -#: src/forms/StockForms.tsx:928 -#: src/forms/StockForms.tsx:964 -#: src/forms/StockForms.tsx:1050 +#: src/forms/StockForms.tsx:896 +#: src/forms/StockForms.tsx:942 +#: src/forms/StockForms.tsx:980 +#: src/forms/StockForms.tsx:1066 #: src/pages/Index/Settings/AccountSettings/MFASettings.tsx:962 msgid "Actions" msgstr "アクション" #: lib/components/SearchInput.tsx:34 -#: src/components/forms/fields/RelatedModelField.tsx:408 +#: src/components/forms/fields/RelatedModelField.tsx:479 #: src/components/nav/Header.tsx:169 #: src/components/wizards/ImportPartWizard.tsx:200 #: src/components/wizards/ImportPartWizard.tsx:233 -#: src/pages/Index/Settings/UserSettings.tsx:74 -#: src/pages/part/PartDetail.tsx:1155 +#: src/pages/Index/Settings/UserSettings.tsx:75 +#: src/pages/part/PartDetail.tsx:1176 msgid "Search" msgstr "検索" @@ -95,7 +95,7 @@ msgstr "はい" msgid "No" msgstr "いいえ" -#: lib/enums/ModelInformation.tsx:28 +#: lib/enums/ModelInformation.tsx:29 #: src/components/wizards/OrderPartsWizard.tsx:279 #: src/forms/BuildForms.tsx:332 #: src/forms/BuildForms.tsx:407 @@ -103,208 +103,234 @@ msgstr "いいえ" #: src/forms/BuildForms.tsx:630 #: src/forms/BuildForms.tsx:793 #: src/forms/BuildForms.tsx:896 -#: src/forms/PurchaseOrderForms.tsx:798 +#: src/forms/PurchaseOrderForms.tsx:850 #: src/forms/ReturnOrderForms.tsx:242 -#: src/forms/SalesOrderForms.tsx:305 +#: src/forms/SalesOrderForms.tsx:384 #: src/forms/StockForms.tsx:360 #: src/forms/StockForms.tsx:791 #: src/forms/StockForms.tsx:838 -#: src/forms/StockForms.tsx:884 -#: src/forms/StockForms.tsx:923 -#: src/forms/StockForms.tsx:959 -#: src/forms/StockForms.tsx:1002 -#: src/forms/StockForms.tsx:1046 -#: src/forms/StockForms.tsx:1094 -#: src/forms/StockForms.tsx:1138 -#: src/pages/build/BuildDetail.tsx:200 -#: src/pages/part/PartDetail.tsx:1207 +#: src/forms/StockForms.tsx:891 +#: src/forms/StockForms.tsx:937 +#: src/forms/StockForms.tsx:975 +#: src/forms/StockForms.tsx:1018 +#: src/forms/StockForms.tsx:1062 +#: src/forms/StockForms.tsx:1110 +#: src/forms/StockForms.tsx:1154 +#: src/pages/build/BuildDetail.tsx:201 +#: src/pages/part/PartDetail.tsx:1228 #: src/tables/ColumnRenderers.tsx:91 +#: src/tables/part/PartTestResultTable.tsx:247 #: src/tables/part/RelatedPartTable.tsx:53 #: src/tables/stock/StockTrackingTable.tsx:87 msgid "Part" msgstr "パーツ" -#: lib/enums/ModelInformation.tsx:29 +#: lib/enums/ModelInformation.tsx:30 #: lib/enums/Roles.tsx:35 #: src/components/nav/NavigationDrawer.tsx:70 #: src/defaults/links.tsx:36 -#: src/pages/Index/Settings/SystemSettings.tsx:190 -#: src/pages/part/CategoryDetail.tsx:132 -#: src/pages/part/CategoryDetail.tsx:277 -#: src/pages/part/CategoryDetail.tsx:323 -#: src/pages/part/CategoryDetail.tsx:354 -#: src/pages/part/PartDetail.tsx:965 +#: src/pages/Index/Settings/SystemSettings.tsx:197 +#: src/pages/part/CategoryDetail.tsx:135 +#: src/pages/part/CategoryDetail.tsx:285 +#: src/pages/part/CategoryDetail.tsx:340 +#: src/pages/part/CategoryDetail.tsx:371 +#: src/pages/part/PartDetail.tsx:978 msgid "Parts" msgstr "パーツ" #: lib/enums/ModelInformation.tsx:37 #: src/pages/Index/Settings/AdminCenter/PartParameterPanel.tsx:13 -msgid "Part Parameter Template" -msgstr "部品パラメータテンプレート" +#~ msgid "Part Parameter Template" +#~ msgstr "Part Parameter Template" #: lib/enums/ModelInformation.tsx:38 -msgid "Part Parameter Templates" -msgstr "部品パラメータテンプレート" +#~ msgid "Part Parameter Templates" +#~ msgstr "Part Parameter Templates" + +#: lib/enums/ModelInformation.tsx:39 +msgid "Parameter" +msgstr "" + +#: lib/enums/ModelInformation.tsx:40 +#: src/components/panels/ParametersPanel.tsx:19 +#: src/components/wizards/ImportPartWizard.tsx:807 +#: src/pages/Index/Settings/AdminCenter/Index.tsx:195 +#: src/pages/Index/Settings/SystemSettings.tsx:191 +#: src/pages/part/PartDetail.tsx:943 +msgid "Parameters" +msgstr "パラメータ" #: lib/enums/ModelInformation.tsx:45 +#: src/tables/part/PartCategoryTemplateTable.tsx:87 +msgid "Parameter Template" +msgstr "パラメータテンプレート" + +#: lib/enums/ModelInformation.tsx:46 +#: src/pages/Index/Settings/AdminCenter/ParameterPanel.tsx:13 +msgid "Parameter Templates" +msgstr "" + +#: lib/enums/ModelInformation.tsx:52 msgid "Part Test Template" msgstr "部品試験テンプレート" -#: lib/enums/ModelInformation.tsx:46 +#: lib/enums/ModelInformation.tsx:53 msgid "Part Test Templates" msgstr "部品試験テンプレート" -#: lib/enums/ModelInformation.tsx:52 +#: lib/enums/ModelInformation.tsx:59 #: src/components/wizards/OrderPartsWizard.tsx:290 -#: src/pages/company/SupplierPartDetail.tsx:413 +#: src/pages/company/SupplierPartDetail.tsx:418 #: src/pages/stock/StockDetail.tsx:289 -#: src/tables/build/BuildAllocatedStockTable.tsx:155 +#: src/tables/build/BuildAllocatedStockTable.tsx:152 #: src/tables/part/PartPurchaseOrdersTable.tsx:50 +#: src/tables/purchasing/SupplierPartParametricTable.tsx:29 #: src/tables/purchasing/SupplierPartTable.tsx:83 #: src/tables/stock/StockItemTable.tsx:247 msgid "Supplier Part" msgstr "サプライヤー" -#: lib/enums/ModelInformation.tsx:53 -#: src/pages/purchasing/PurchasingIndex.tsx:92 +#: lib/enums/ModelInformation.tsx:60 +#: src/pages/purchasing/PurchasingIndex.tsx:128 msgid "Supplier Parts" msgstr "サプライヤー・パーツ" -#: lib/enums/ModelInformation.tsx:61 -#: src/pages/company/ManufacturerPartDetail.tsx:297 -#: src/pages/company/SupplierPartDetail.tsx:161 +#: lib/enums/ModelInformation.tsx:69 +#: src/pages/company/ManufacturerPartDetail.tsx:288 +#: src/pages/company/SupplierPartDetail.tsx:162 #: src/tables/part/PartPurchaseOrdersTable.tsx:56 #: src/tables/stock/StockItemTable.tsx:253 msgid "Manufacturer Part" msgstr "メーカー・パーツ" -#: lib/enums/ModelInformation.tsx:62 -#: src/pages/purchasing/PurchasingIndex.tsx:109 +#: lib/enums/ModelInformation.tsx:70 +#: src/pages/purchasing/PurchasingIndex.tsx:177 msgid "Manufacturer Parts" msgstr "メーカー・パーツ" -#: lib/enums/ModelInformation.tsx:70 -#: src/pages/part/CategoryDetail.tsx:354 +#: lib/enums/ModelInformation.tsx:79 +#: src/pages/part/CategoryDetail.tsx:371 #: src/tables/Filter.tsx:389 msgid "Part Category" msgstr "パーツカテゴリ" -#: lib/enums/ModelInformation.tsx:71 +#: lib/enums/ModelInformation.tsx:80 #: lib/enums/Roles.tsx:37 -#: src/pages/part/CategoryDetail.tsx:271 -#: src/pages/part/CategoryDetail.tsx:345 -#: src/pages/part/PartDetail.tsx:1196 +#: src/pages/part/CategoryDetail.tsx:279 +#: src/pages/part/CategoryDetail.tsx:362 +#: src/pages/part/PartDetail.tsx:1217 msgid "Part Categories" msgstr "パーツカテゴリ" -#: lib/enums/ModelInformation.tsx:79 +#: lib/enums/ModelInformation.tsx:88 #: src/forms/BuildForms.tsx:473 #: src/forms/BuildForms.tsx:633 #: src/forms/BuildForms.tsx:794 -#: src/forms/SalesOrderForms.tsx:307 +#: src/forms/SalesOrderForms.tsx:386 #: src/pages/stock/StockDetail.tsx:1005 -#: src/tables/part/PartTestResultTable.tsx:248 +#: src/tables/part/PartTestResultTable.tsx:256 #: src/tables/stock/StockTrackingTable.tsx:48 #: src/tables/stock/StockTrackingTable.tsx:55 msgid "Stock Item" msgstr "在庫商品" -#: lib/enums/ModelInformation.tsx:80 +#: lib/enums/ModelInformation.tsx:89 #: lib/enums/Roles.tsx:45 -#: src/pages/company/CompanyDetail.tsx:210 -#: src/pages/part/CategoryDetail.tsx:291 +#: src/pages/company/CompanyDetail.tsx:211 +#: src/pages/part/CategoryDetail.tsx:314 #: src/pages/part/PartStockHistoryDetail.tsx:101 #: src/pages/stock/LocationDetail.tsx:121 #: src/pages/stock/LocationDetail.tsx:180 msgid "Stock Items" msgstr "在庫商品" -#: lib/enums/ModelInformation.tsx:88 +#: lib/enums/ModelInformation.tsx:98 #: lib/enums/Roles.tsx:47 #: src/pages/stock/LocationDetail.tsx:420 msgid "Stock Location" msgstr "在庫場所" -#: lib/enums/ModelInformation.tsx:89 +#: lib/enums/ModelInformation.tsx:99 #: src/pages/stock/LocationDetail.tsx:174 #: src/pages/stock/LocationDetail.tsx:412 #: src/pages/stock/StockDetail.tsx:996 msgid "Stock Locations" msgstr "在庫場所" -#: lib/enums/ModelInformation.tsx:97 +#: lib/enums/ModelInformation.tsx:108 msgid "Stock Location Type" msgstr "在庫場所 タイプ" -#: lib/enums/ModelInformation.tsx:98 +#: lib/enums/ModelInformation.tsx:109 msgid "Stock Location Types" msgstr "ストックロケーションの種類" -#: lib/enums/ModelInformation.tsx:103 -#: src/pages/Index/Settings/SystemSettings.tsx:248 -#: src/pages/part/PartDetail.tsx:911 +#: lib/enums/ModelInformation.tsx:114 +#: src/pages/Index/Settings/SystemSettings.tsx:254 +#: src/pages/part/PartDetail.tsx:900 msgid "Stock History" msgstr "株式履歴" -#: lib/enums/ModelInformation.tsx:104 +#: lib/enums/ModelInformation.tsx:115 msgid "Stock Histories" msgstr "株式履歴" -#: lib/enums/ModelInformation.tsx:109 +#: lib/enums/ModelInformation.tsx:120 msgid "Build" msgstr "組立" -#: lib/enums/ModelInformation.tsx:110 +#: lib/enums/ModelInformation.tsx:121 msgid "Builds" msgstr "ビルド" -#: lib/enums/ModelInformation.tsx:118 +#: lib/enums/ModelInformation.tsx:130 msgid "Build Line" msgstr "組立ライン" -#: lib/enums/ModelInformation.tsx:119 +#: lib/enums/ModelInformation.tsx:131 msgid "Build Lines" msgstr "ビルドライン" -#: lib/enums/ModelInformation.tsx:126 +#: lib/enums/ModelInformation.tsx:138 msgid "Build Item" msgstr "ビルドアイテム" -#: lib/enums/ModelInformation.tsx:127 +#: lib/enums/ModelInformation.tsx:139 msgid "Build Items" msgstr "ビルドアイテム" -#: lib/enums/ModelInformation.tsx:132 -#: src/pages/company/CompanyDetail.tsx:340 +#: lib/enums/ModelInformation.tsx:144 +#: src/pages/company/CompanyDetail.tsx:345 #: src/tables/company/CompanyTable.tsx:47 #: src/tables/company/ContactTable.tsx:67 +#: src/tables/company/ParametricCompanyTable.tsx:18 msgid "Company" msgstr "会社名" -#: lib/enums/ModelInformation.tsx:133 +#: lib/enums/ModelInformation.tsx:145 msgid "Companies" msgstr "会社" -#: lib/enums/ModelInformation.tsx:140 -#: src/pages/build/BuildDetail.tsx:316 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:253 -#: src/pages/sales/ReturnOrderDetail.tsx:231 -#: src/pages/sales/SalesOrderDetail.tsx:224 +#: lib/enums/ModelInformation.tsx:152 +#: src/pages/build/BuildDetail.tsx:317 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:254 +#: src/pages/sales/ReturnOrderDetail.tsx:232 +#: src/pages/sales/SalesOrderDetail.tsx:225 #: src/tables/ColumnRenderers.tsx:362 #: src/tables/Filter.tsx:286 #: src/tables/TableHoverCard.tsx:101 msgid "Project Code" msgstr "プロジェクトコード" -#: lib/enums/ModelInformation.tsx:141 +#: lib/enums/ModelInformation.tsx:153 #: src/pages/Index/Settings/AdminCenter/Index.tsx:172 msgid "Project Codes" msgstr "プロジェクトコード" -#: lib/enums/ModelInformation.tsx:147 +#: lib/enums/ModelInformation.tsx:159 #: src/components/wizards/OrderPartsWizard.tsx:338 #: src/pages/part/pricing/PurchaseHistoryPanel.tsx:33 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:550 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:555 #: src/pages/stock/StockDetail.tsx:352 #: src/tables/part/PartPurchaseOrdersTable.tsx:32 #: src/tables/stock/StockItemTable.tsx:239 @@ -312,117 +338,117 @@ msgstr "プロジェクトコード" msgid "Purchase Order" msgstr "注文" -#: lib/enums/ModelInformation.tsx:148 +#: lib/enums/ModelInformation.tsx:160 #: lib/enums/Roles.tsx:39 #: src/defaults/actions.tsx:104 -#: src/pages/Index/Settings/SystemSettings.tsx:283 -#: src/pages/company/CompanyDetail.tsx:203 -#: src/pages/company/SupplierPartDetail.tsx:266 -#: src/pages/part/PartDetail.tsx:875 -#: src/pages/purchasing/PurchasingIndex.tsx:60 +#: src/pages/Index/Settings/SystemSettings.tsx:289 +#: src/pages/company/CompanyDetail.tsx:204 +#: src/pages/company/SupplierPartDetail.tsx:267 +#: src/pages/part/PartDetail.tsx:864 +#: src/pages/purchasing/PurchasingIndex.tsx:66 msgid "Purchase Orders" msgstr "購入注文" -#: lib/enums/ModelInformation.tsx:156 +#: lib/enums/ModelInformation.tsx:169 msgid "Purchase Order Line" msgstr "発注ライン" -#: lib/enums/ModelInformation.tsx:157 +#: lib/enums/ModelInformation.tsx:170 msgid "Purchase Order Lines" msgstr "発注ライン" -#: lib/enums/ModelInformation.tsx:162 -#: src/pages/build/BuildDetail.tsx:289 +#: lib/enums/ModelInformation.tsx:175 +#: src/pages/build/BuildDetail.tsx:290 #: src/pages/part/pricing/SaleHistoryPanel.tsx:24 -#: src/pages/sales/SalesOrderDetail.tsx:614 -#: src/pages/sales/SalesOrderShipmentDetail.tsx:105 -#: src/pages/sales/SalesOrderShipmentDetail.tsx:478 +#: src/pages/sales/SalesOrderDetail.tsx:619 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:103 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:446 #: src/pages/stock/StockDetail.tsx:361 #: src/tables/part/PartSalesAllocationsTable.tsx:41 #: src/tables/sales/SalesOrderAllocationTable.tsx:110 -#: src/tables/sales/SalesOrderShipmentTable.tsx:122 +#: src/tables/sales/SalesOrderShipmentTable.tsx:143 #: src/tables/stock/StockTrackingTable.tsx:131 msgid "Sales Order" msgstr "セールスオーダー" -#: lib/enums/ModelInformation.tsx:163 +#: lib/enums/ModelInformation.tsx:176 #: lib/enums/Roles.tsx:43 #: src/defaults/actions.tsx:114 -#: src/pages/Index/Settings/SystemSettings.tsx:299 -#: src/pages/company/CompanyDetail.tsx:223 -#: src/pages/part/PartDetail.tsx:887 -#: src/pages/sales/SalesIndex.tsx:84 +#: src/pages/Index/Settings/SystemSettings.tsx:305 +#: src/pages/company/CompanyDetail.tsx:224 +#: src/pages/part/PartDetail.tsx:876 +#: src/pages/sales/SalesIndex.tsx:53 msgid "Sales Orders" msgstr "セールスオーダー" -#: lib/enums/ModelInformation.tsx:171 -#: src/pages/sales/SalesOrderShipmentDetail.tsx:477 +#: lib/enums/ModelInformation.tsx:185 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:445 msgid "Sales Order Shipment" msgstr "販売注文の出荷" -#: lib/enums/ModelInformation.tsx:172 +#: lib/enums/ModelInformation.tsx:186 msgid "Sales Order Shipments" msgstr "販売注文の出荷" -#: lib/enums/ModelInformation.tsx:179 -#: src/pages/sales/ReturnOrderDetail.tsx:549 +#: lib/enums/ModelInformation.tsx:194 +#: src/pages/sales/ReturnOrderDetail.tsx:554 #: src/tables/stock/StockTrackingTable.tsx:142 msgid "Return Order" msgstr "リターンオーダー" -#: lib/enums/ModelInformation.tsx:180 +#: lib/enums/ModelInformation.tsx:195 #: lib/enums/Roles.tsx:41 #: src/defaults/actions.tsx:125 -#: src/pages/Index/Settings/SystemSettings.tsx:316 -#: src/pages/company/CompanyDetail.tsx:230 -#: src/pages/part/PartDetail.tsx:894 -#: src/pages/sales/SalesIndex.tsx:117 +#: src/pages/Index/Settings/SystemSettings.tsx:322 +#: src/pages/company/CompanyDetail.tsx:231 +#: src/pages/part/PartDetail.tsx:883 +#: src/pages/sales/SalesIndex.tsx:99 msgid "Return Orders" msgstr "返品注文" -#: lib/enums/ModelInformation.tsx:188 +#: lib/enums/ModelInformation.tsx:204 msgid "Return Order Line Item" msgstr "返品注文項目" -#: lib/enums/ModelInformation.tsx:189 +#: lib/enums/ModelInformation.tsx:205 msgid "Return Order Line Items" msgstr "返品注文項目" -#: lib/enums/ModelInformation.tsx:194 +#: lib/enums/ModelInformation.tsx:210 #: src/tables/company/AddressTable.tsx:52 msgid "Address" msgstr "住所" -#: lib/enums/ModelInformation.tsx:195 -#: src/pages/company/CompanyDetail.tsx:264 +#: lib/enums/ModelInformation.tsx:211 +#: src/pages/company/CompanyDetail.tsx:265 msgid "Addresses" msgstr "マイアカウント" -#: lib/enums/ModelInformation.tsx:201 +#: lib/enums/ModelInformation.tsx:217 #: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:89 #: src/pages/core/UserDetail.tsx:135 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:229 -#: src/pages/sales/ReturnOrderDetail.tsx:207 -#: src/pages/sales/SalesOrderDetail.tsx:200 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:230 +#: src/pages/sales/ReturnOrderDetail.tsx:208 +#: src/pages/sales/SalesOrderDetail.tsx:201 msgid "Contact" msgstr "お問い合わせ" -#: lib/enums/ModelInformation.tsx:202 -#: src/pages/company/CompanyDetail.tsx:258 +#: lib/enums/ModelInformation.tsx:218 +#: src/pages/company/CompanyDetail.tsx:259 #: src/pages/core/CoreIndex.tsx:33 msgid "Contacts" msgstr "連絡先" -#: lib/enums/ModelInformation.tsx:208 +#: lib/enums/ModelInformation.tsx:224 #: src/tables/ColumnRenderers.tsx:444 msgid "Owner" msgstr "所有者" -#: lib/enums/ModelInformation.tsx:209 +#: lib/enums/ModelInformation.tsx:225 msgid "Owners" msgstr "所有者" -#: lib/enums/ModelInformation.tsx:215 +#: lib/enums/ModelInformation.tsx:231 #: src/pages/Auth/ChangePassword.tsx:36 #: src/pages/core/UserDetail.tsx:220 #: src/tables/ColumnRenderers.tsx:395 @@ -437,7 +463,7 @@ msgstr "所有者" msgid "User" msgstr "ユーザー" -#: lib/enums/ModelInformation.tsx:216 +#: lib/enums/ModelInformation.tsx:232 #: src/components/nav/NavigationDrawer.tsx:105 #: src/pages/Index/Settings/AdminCenter/UserManagementPanel.tsx:15 #: src/pages/core/CoreIndex.tsx:21 @@ -445,12 +471,12 @@ msgstr "ユーザー" msgid "Users" msgstr "ユーザー" -#: lib/enums/ModelInformation.tsx:222 +#: lib/enums/ModelInformation.tsx:238 #: src/pages/core/GroupDetail.tsx:78 msgid "Group" msgstr "グループ" -#: lib/enums/ModelInformation.tsx:223 +#: lib/enums/ModelInformation.tsx:239 #: src/components/nav/NavigationDrawer.tsx:111 #: src/pages/Index/Settings/AdminCenter/UserManagementPanel.tsx:23 #: src/pages/core/CoreIndex.tsx:27 @@ -460,64 +486,64 @@ msgstr "グループ" msgid "Groups" msgstr "グループ" -#: lib/enums/ModelInformation.tsx:230 +#: lib/enums/ModelInformation.tsx:246 msgid "Import Session" msgstr "インポートセッション" -#: lib/enums/ModelInformation.tsx:231 +#: lib/enums/ModelInformation.tsx:247 msgid "Import Sessions" msgstr "インポートセッション" -#: lib/enums/ModelInformation.tsx:238 +#: lib/enums/ModelInformation.tsx:254 msgid "Label Template" msgstr "ラベルテンプレート" -#: lib/enums/ModelInformation.tsx:239 +#: lib/enums/ModelInformation.tsx:255 #: src/pages/Index/Settings/AdminCenter/Index.tsx:209 msgid "Label Templates" msgstr "ラベルテンプレート" -#: lib/enums/ModelInformation.tsx:246 +#: lib/enums/ModelInformation.tsx:262 msgid "Report Template" msgstr "レポートテンプレート" -#: lib/enums/ModelInformation.tsx:247 +#: lib/enums/ModelInformation.tsx:263 #: src/pages/Index/Settings/AdminCenter/Index.tsx:215 msgid "Report Templates" msgstr "レポートテンプレート" -#: lib/enums/ModelInformation.tsx:254 +#: lib/enums/ModelInformation.tsx:270 #: src/components/plugins/PluginDrawer.tsx:145 msgid "Plugin Configuration" msgstr "プラグインの設定" -#: lib/enums/ModelInformation.tsx:255 +#: lib/enums/ModelInformation.tsx:271 msgid "Plugin Configurations" msgstr "プラグインの設定" -#: lib/enums/ModelInformation.tsx:262 +#: lib/enums/ModelInformation.tsx:278 msgid "Content Type" msgstr "コンテンツタイプ" -#: lib/enums/ModelInformation.tsx:263 +#: lib/enums/ModelInformation.tsx:279 msgid "Content Types" msgstr "コンテンツタイプ" -#: lib/enums/ModelInformation.tsx:268 +#: lib/enums/ModelInformation.tsx:284 msgid "Selection List" msgstr "セレクションリスト" -#: lib/enums/ModelInformation.tsx:269 -#: src/pages/Index/Settings/AdminCenter/PartParameterPanel.tsx:21 +#: lib/enums/ModelInformation.tsx:285 +#: src/pages/Index/Settings/AdminCenter/ParameterPanel.tsx:21 msgid "Selection Lists" msgstr "セレクション・リスト" -#: lib/enums/ModelInformation.tsx:275 +#: lib/enums/ModelInformation.tsx:291 #: src/components/barcodes/BarcodeInput.tsx:114 #: src/components/dashboard/DashboardLayout.tsx:281 #: src/components/editors/NotesEditor.tsx:74 #: src/components/editors/TemplateEditor/TemplateEditor.tsx:158 -#: src/components/forms/fields/ApiFormField.tsx:273 +#: src/components/forms/fields/ApiFormField.tsx:237 #: src/components/forms/fields/TableField.tsx:45 #: src/components/importer/ImportDataSelector.tsx:192 #: src/components/importer/ImporterColumnSelector.tsx:234 @@ -528,7 +554,7 @@ msgstr "セレクション・リスト" #: src/components/nav/SearchDrawer.tsx:572 #: src/components/settings/SettingList.tsx:139 #: src/components/wizards/ImportPartWizard.tsx:574 -#: src/components/wizards/ImportPartWizard.tsx:718 +#: src/components/wizards/ImportPartWizard.tsx:719 #: src/forms/BomForms.tsx:69 #: src/functions/auth.tsx:643 #: src/pages/ErrorPage.tsx:11 @@ -547,9 +573,9 @@ msgstr "セレクション・リスト" msgid "Error" msgstr "エラー" -#: lib/enums/ModelInformation.tsx:276 +#: lib/enums/ModelInformation.tsx:292 #: src/tables/machine/MachineListTable.tsx:402 -#: src/tables/machine/MachineTypeTable.tsx:299 +#: src/tables/machine/MachineTypeTable.tsx:297 msgid "Errors" msgstr "エラー" @@ -559,10 +585,10 @@ msgstr "管理者" #: lib/enums/Roles.tsx:33 #: src/defaults/actions.tsx:135 -#: src/pages/Index/Settings/SystemSettings.tsx:264 -#: src/pages/build/BuildIndex.tsx:75 -#: src/pages/part/PartDetail.tsx:904 -#: src/pages/sales/SalesOrderDetail.tsx:421 +#: src/pages/Index/Settings/SystemSettings.tsx:270 +#: src/pages/build/BuildIndex.tsx:67 +#: src/pages/part/PartDetail.tsx:893 +#: src/pages/sales/SalesOrderDetail.tsx:422 msgid "Build Orders" msgstr "組立注文" @@ -639,39 +665,39 @@ msgstr "バーコードデータをスキャンまたは入力" msgid "Enter barcode data" msgstr "バーコードデータの入力" -#: src/components/barcodes/BarcodeScanDialog.tsx:49 -#: src/components/buttons/ScanButton.tsx:15 +#: src/components/barcodes/BarcodeScanDialog.tsx:56 +#: src/components/buttons/ScanButton.tsx:27 #: src/components/nav/NavigationDrawer.tsx:122 -#: src/forms/PurchaseOrderForms.tsx:457 -#: src/forms/PurchaseOrderForms.tsx:563 +#: src/forms/PurchaseOrderForms.tsx:509 +#: src/forms/PurchaseOrderForms.tsx:615 msgid "Scan Barcode" msgstr "バーコードをスキャン" -#: src/components/barcodes/BarcodeScanDialog.tsx:105 +#: src/components/barcodes/BarcodeScanDialog.tsx:121 msgid "No matching item found" msgstr "一致するアイテムは見つかりませんでした" -#: src/components/barcodes/BarcodeScanDialog.tsx:134 +#: src/components/barcodes/BarcodeScanDialog.tsx:150 msgid "Barcode does not match the expected model type" msgstr "" -#: src/components/barcodes/BarcodeScanDialog.tsx:145 +#: src/components/barcodes/BarcodeScanDialog.tsx:161 #: src/components/editors/NotesEditor.tsx:84 #: src/components/editors/NotesEditor.tsx:118 -#: src/components/forms/ApiForm.tsx:465 +#: src/components/forms/ApiForm.tsx:484 #: src/components/wizards/ImportPartWizard.tsx:566 -#: src/components/wizards/ImportPartWizard.tsx:690 +#: src/components/wizards/ImportPartWizard.tsx:691 #: src/pages/Index/Settings/AdminCenter/CurrencyManagementPanel.tsx:45 #: src/tables/bom/BomTable.tsx:548 #: src/tables/settings/PendingTasksTable.tsx:68 msgid "Success" msgstr "成功" -#: src/components/barcodes/BarcodeScanDialog.tsx:151 +#: src/components/barcodes/BarcodeScanDialog.tsx:167 msgid "Failed to handle barcode" msgstr "" -#: src/components/barcodes/BarcodeScanDialog.tsx:167 +#: src/components/barcodes/BarcodeScanDialog.tsx:183 #: src/pages/Index/Scan.tsx:129 msgid "Failed to scan barcode" msgstr "バーコードのスキャンに失敗しました" @@ -714,10 +740,10 @@ msgstr "バーコードのリンクに失敗" #: src/components/barcodes/QRCode.tsx:179 #: src/pages/part/PartDetail.tsx:521 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:222 -#: src/pages/sales/ReturnOrderDetail.tsx:188 -#: src/pages/sales/SalesOrderDetail.tsx:181 -#: src/pages/sales/SalesOrderShipmentDetail.tsx:122 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:223 +#: src/pages/sales/ReturnOrderDetail.tsx:189 +#: src/pages/sales/SalesOrderDetail.tsx:182 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:120 #: src/pages/stock/StockDetail.tsx:186 msgid "Link" msgstr "リンク" @@ -728,7 +754,7 @@ msgstr "これにより、関連するバーコードへのリンクが削除さ #: src/components/barcodes/QRCode.tsx:205 #: src/components/items/ActionDropdown.tsx:192 -#: src/forms/PurchaseOrderForms.tsx:554 +#: src/forms/PurchaseOrderForms.tsx:606 msgid "Unlink Barcode" msgstr "リンク解除バーコード" @@ -829,14 +855,14 @@ msgstr "プロバイダーにリダイレクトされます。" #~ msgid "Scan QR code" #~ msgstr "Scan QR code" -#: src/components/buttons/ScanButton.tsx:19 -msgid "Open Barcode Scanner" -msgstr "バーコードスキャナを開く" - #: src/components/buttons/ScanButton.tsx:20 #~ msgid "Open QR code scanner" #~ msgstr "Open QR code scanner" +#: src/components/buttons/ScanButton.tsx:32 +msgid "Open Barcode Scanner" +msgstr "バーコードスキャナを開く" + #: src/components/buttons/SpotlightButton.tsx:12 msgid "Open spotlight" msgstr "スポットライトを開く" @@ -1059,7 +1085,7 @@ msgid "Show the number of sales orders which are assigned to you" msgstr "割り当てられた受注数を表示" #: src/components/dashboard/DashboardWidgetLibrary.tsx:129 -#: src/pages/sales/SalesIndex.tsx:105 +#: src/pages/sales/SalesIndex.tsx:87 msgid "Pending Shipments" msgstr "" @@ -1210,12 +1236,18 @@ msgid "Remove the associated image from this item?" msgstr "このアイテムから関連画像を削除しますか?" #: src/components/details/DetailsImage.tsx:83 -#: src/forms/StockForms.tsx:888 +#: src/forms/StockForms.tsx:895 #: src/pages/Index/Settings/AccountSettings/MFASettings.tsx:324 #: src/pages/Index/Settings/AccountSettings/MFASettings.tsx:415 #: src/pages/Index/Settings/AccountSettings/MFASettings.tsx:884 #: src/pages/Index/Settings/AccountSettings/MFASettings.tsx:903 #: src/pages/Index/Settings/AccountSettings/SecurityContent.tsx:254 +#: src/tables/build/BuildAllocatedStockTable.tsx:178 +#: src/tables/build/BuildAllocatedStockTable.tsx:258 +#: src/tables/build/BuildLineTable.tsx:111 +#: src/tables/build/BuildLineTable.tsx:665 +#: src/tables/sales/SalesOrderAllocationTable.tsx:224 +#: src/tables/sales/SalesOrderAllocationTable.tsx:247 msgid "Remove" msgstr "削除" @@ -1241,12 +1273,12 @@ msgid "Upload Error" msgstr "アップロードエラー" #: src/components/details/DetailsImage.tsx:250 -#: src/components/forms/fields/TextField.tsx:65 +#: src/components/forms/fields/AutoFillRightSection.tsx:34 msgid "Clear" msgstr "クリア" #: src/components/details/DetailsImage.tsx:256 -#: src/components/forms/ApiForm.tsx:677 +#: src/components/forms/ApiForm.tsx:696 #: src/contexts/ThemeContext.tsx:44 #: src/pages/Index/Settings/AccountSettings/MFASettings.tsx:149 #: src/pages/Index/Settings/AccountSettings/MFASettings.tsx:568 @@ -1499,8 +1531,8 @@ msgstr "サーバーエラー" msgid "A server error occurred" msgstr "サーバーエラーが発生しました" -#: src/components/forms/ApiForm.tsx:103 -#: src/components/forms/ApiForm.tsx:594 +#: src/components/forms/ApiForm.tsx:107 +#: src/components/forms/ApiForm.tsx:613 msgid "Form Error" msgstr "フォームエラー" @@ -1508,11 +1540,11 @@ msgstr "フォームエラー" #~ msgid "Form Errors Exist" #~ msgstr "Form Errors Exist" -#: src/components/forms/ApiForm.tsx:604 +#: src/components/forms/ApiForm.tsx:623 msgid "Errors exist for one or more form fields" msgstr "1つ以上のフォームフィールドにエラーがあります" -#: src/components/forms/ApiForm.tsx:715 +#: src/components/forms/ApiForm.tsx:734 #: src/hooks/UseForm.tsx:133 #: src/tables/plugin/PluginListTable.tsx:204 msgid "Update" @@ -1698,15 +1730,14 @@ msgstr "ホスト" #: src/components/forms/InstanceOptions.tsx:124 #: src/components/plugins/PluginDrawer.tsx:68 #: src/pages/Index/Settings/AdminCenter/UnitManagementPanel.tsx:19 -#: src/pages/part/CategoryDetail.tsx:88 +#: src/pages/part/CategoryDetail.tsx:91 #: src/pages/part/PartDetail.tsx:446 #: src/pages/stock/LocationDetail.tsx:82 #: src/tables/machine/MachineTypeTable.tsx:67 -#: src/tables/machine/MachineTypeTable.tsx:151 -#: src/tables/machine/MachineTypeTable.tsx:254 -#: src/tables/machine/MachineTypeTable.tsx:357 +#: src/tables/machine/MachineTypeTable.tsx:149 +#: src/tables/machine/MachineTypeTable.tsx:252 +#: src/tables/machine/MachineTypeTable.tsx:355 #: src/tables/plugin/PluginErrorTable.tsx:33 -#: src/tables/purchasing/ManufacturerPartParameterTable.tsx:36 #: src/tables/settings/ApiTokenTable.tsx:57 #: src/tables/settings/GroupTable.tsx:95 #: src/tables/settings/GroupTable.tsx:148 @@ -1769,7 +1800,7 @@ msgstr "ホスト選択の保存" #~ msgstr "State: <0>worker ({0}), <1>plugins{1}" #: src/components/forms/InstanceOptions.tsx:118 -#: src/pages/Index/Settings/SystemSettings.tsx:45 +#: src/pages/Index/Settings/SystemSettings.tsx:46 msgid "Server" msgstr "サーバー" @@ -1793,6 +1824,8 @@ msgid "Plugins" msgstr "プラグイン" #: src/components/forms/InstanceOptions.tsx:143 +#: src/tables/general/ParameterTemplateTable.tsx:153 +#: src/tables/general/ParameterTemplateTable.tsx:188 #: src/tables/part/PartTestTemplateTable.tsx:117 #: src/tables/settings/TemplateTable.tsx:251 #: src/tables/settings/TemplateTable.tsx:362 @@ -1817,10 +1850,14 @@ msgstr "中断" msgid "Running" msgstr "実行中" -#: src/components/forms/fields/ApiFormField.tsx:233 +#: src/components/forms/fields/ApiFormField.tsx:197 msgid "Select file to upload" msgstr "" +#: src/components/forms/fields/AutoFillRightSection.tsx:47 +msgid "Accept suggested value" +msgstr "" + #: src/components/forms/fields/DateField.tsx:76 msgid "Select date" msgstr "" @@ -1853,13 +1890,13 @@ msgstr "パック選択" msgid "{0} icons" msgstr "{0} アイコン" -#: src/components/forms/fields/RelatedModelField.tsx:409 +#: src/components/forms/fields/RelatedModelField.tsx:480 #: src/components/modals/AboutInvenTreeModal.tsx:96 #: src/pages/Index/Settings/AccountSettings/SecurityContent.tsx:383 msgid "Loading" msgstr "読み込み中" -#: src/components/forms/fields/RelatedModelField.tsx:411 +#: src/components/forms/fields/RelatedModelField.tsx:482 msgid "No results found" msgstr "一致するものが見つかりませんでした" @@ -1875,10 +1912,6 @@ msgstr "選択した機能に使用できるエントリはありません" msgid "Add new row" msgstr "新しい行を追加" -#: src/components/forms/fields/TextField.tsx:82 -msgid "Accept suggested value" -msgstr "" - #: src/components/images/DetailsImage.tsx:252 #~ msgid "Select image" #~ msgstr "Select image" @@ -2036,7 +2069,7 @@ msgstr "データは正常にインポートされました" #: src/components/importer/ImporterDrawer.tsx:109 #: src/components/modals/AboutInvenTreeModal.tsx:205 #: src/components/modals/ServerInfoModal.tsx:134 -#: src/components/wizards/ImportPartWizard.tsx:772 +#: src/components/wizards/ImportPartWizard.tsx:773 #: src/forms/BomForms.tsx:132 #: src/pages/Index/Settings/AccountSettings/MFASettings.tsx:685 msgid "Close" @@ -2199,7 +2232,7 @@ msgid "Change" msgstr "変更" #: src/components/items/RoleTable.tsx:150 -#: src/forms/StockForms.tsx:927 +#: src/forms/StockForms.tsx:941 #: src/tables/stock/StockItemTestResultTable.tsx:367 msgid "Add" msgstr "追加" @@ -2222,11 +2255,11 @@ msgstr "項目なし" #: src/components/items/TransferList.tsx:161 #: src/components/render/Stock.tsx:102 -#: src/pages/part/PartDetail.tsx:994 +#: src/pages/part/PartDetail.tsx:1009 #: src/pages/stock/StockDetail.tsx:265 #: src/pages/stock/StockDetail.tsx:942 -#: src/tables/build/BuildAllocatedStockTable.tsx:135 -#: src/tables/build/BuildLineTable.tsx:192 +#: src/tables/build/BuildAllocatedStockTable.tsx:132 +#: src/tables/build/BuildLineTable.tsx:193 #: src/tables/part/PartTable.tsx:137 #: src/tables/stock/StockItemTable.tsx:182 #: src/tables/stock/StockItemTable.tsx:343 @@ -2373,7 +2406,7 @@ msgid "Database" msgstr "データベース" #: src/components/modals/ServerInfoModal.tsx:49 -#: src/components/nav/Alerts.tsx:118 +#: src/components/nav/Alerts.tsx:120 msgid "Debug Mode" msgstr "デバッグモード" @@ -2414,7 +2447,7 @@ msgid "Issues detected" msgstr "検出された問題" #: src/components/modals/ServerInfoModal.tsx:102 -#: src/components/nav/Alerts.tsx:125 +#: src/components/nav/Alerts.tsx:127 msgid "Background Worker" msgstr "バックグラウンドワーカー" @@ -2436,7 +2469,7 @@ msgstr "メール設定" #~ msgstr "Email settings not configured" #: src/components/modals/ServerInfoModal.tsx:120 -#: src/components/nav/Alerts.tsx:141 +#: src/components/nav/Alerts.tsx:143 msgid "Email settings not configured." msgstr "Eメール設定は行なわれていません" @@ -2444,43 +2477,47 @@ msgstr "Eメール設定は行なわれていません" msgid "Alerts" msgstr "アラート" -#: src/components/nav/Alerts.tsx:120 +#: src/components/nav/Alerts.tsx:97 +msgid "No issues detected" +msgstr "" + +#: src/components/nav/Alerts.tsx:122 msgid "The server is running in debug mode." msgstr "サーバーはデバッグモードで動作しています" -#: src/components/nav/Alerts.tsx:127 +#: src/components/nav/Alerts.tsx:129 msgid "The background worker process is not running." msgstr "バックグラウンドワーカープロセスが実行されていません。" -#: src/components/nav/Alerts.tsx:132 +#: src/components/nav/Alerts.tsx:134 msgid "Server Restart" msgstr "サーバー再起動" -#: src/components/nav/Alerts.tsx:134 +#: src/components/nav/Alerts.tsx:136 msgid "The server requires a restart to apply changes." msgstr "変更を適用するにはサーバーの再起動が必要です。" -#: src/components/nav/Alerts.tsx:139 +#: src/components/nav/Alerts.tsx:141 msgid "Email settings" msgstr "Eメール設定" -#: src/components/nav/Alerts.tsx:146 +#: src/components/nav/Alerts.tsx:148 msgid "Database Migrations" msgstr "データベースの移行" -#: src/components/nav/Alerts.tsx:148 +#: src/components/nav/Alerts.tsx:150 msgid "There are pending database migrations." msgstr "保留中のデータベース移行があります" -#: src/components/nav/Alerts.tsx:163 +#: src/components/nav/Alerts.tsx:165 msgid "Learn more about {code}" msgstr "{code} についてもっと知る" #: src/components/nav/Header.tsx:188 #: src/components/nav/NavigationDrawer.tsx:134 #: src/components/nav/NotificationDrawer.tsx:181 -#: src/pages/Index/Settings/SystemSettings.tsx:121 -#: src/pages/Index/Settings/UserSettings.tsx:106 +#: src/pages/Index/Settings/SystemSettings.tsx:122 +#: src/pages/Index/Settings/UserSettings.tsx:107 #: src/pages/Notifications.tsx:45 #: src/pages/Notifications.tsx:130 msgid "Notifications" @@ -2511,8 +2548,8 @@ msgstr "設定" #: src/components/nav/NavigationDrawer.tsx:140 #: src/components/nav/SettingsHeader.tsx:40 #: src/defaults/actions.tsx:92 -#: src/pages/Index/Settings/UserSettings.tsx:141 -#: src/pages/Index/Settings/UserSettings.tsx:145 +#: src/pages/Index/Settings/UserSettings.tsx:142 +#: src/pages/Index/Settings/UserSettings.tsx:146 msgid "User Settings" msgstr "ユーザー設定" @@ -2529,8 +2566,8 @@ msgstr "ユーザー設定" #: src/components/nav/NavigationDrawer.tsx:146 #: src/components/nav/SettingsHeader.tsx:41 #: src/defaults/actions.tsx:144 -#: src/pages/Index/Settings/SystemSettings.tsx:348 -#: src/pages/Index/Settings/SystemSettings.tsx:353 +#: src/pages/Index/Settings/SystemSettings.tsx:354 +#: src/pages/Index/Settings/SystemSettings.tsx:359 msgid "System Settings" msgstr "システム設定" @@ -2577,11 +2614,11 @@ msgstr "ログアウト" #: src/components/nav/NavigationDrawer.tsx:77 #: src/components/render/Part.tsx:36 -#: src/components/wizards/ImportPartWizard.tsx:807 +#: src/components/wizards/ImportPartWizard.tsx:808 #: src/defaults/links.tsx:42 #: src/forms/StockForms.tsx:794 -#: src/pages/Index/Settings/SystemSettings.tsx:224 -#: src/pages/part/PartDetail.tsx:804 +#: src/pages/Index/Settings/SystemSettings.tsx:230 +#: src/pages/part/PartDetail.tsx:793 #: src/pages/stock/LocationDetail.tsx:390 #: src/pages/stock/LocationDetail.tsx:420 #: src/pages/stock/StockDetail.tsx:642 @@ -2591,29 +2628,29 @@ msgstr "在庫" #: src/components/nav/NavigationDrawer.tsx:84 #: src/defaults/links.tsx:48 -#: src/pages/build/BuildDetail.tsx:748 -#: src/pages/build/BuildIndex.tsx:102 +#: src/pages/build/BuildDetail.tsx:753 +#: src/pages/build/BuildIndex.tsx:101 msgid "Manufacturing" msgstr "製造" #: src/components/nav/NavigationDrawer.tsx:91 #: src/defaults/links.tsx:54 #: src/pages/company/ManufacturerDetail.tsx:9 -#: src/pages/company/ManufacturerPartDetail.tsx:276 +#: src/pages/company/ManufacturerPartDetail.tsx:267 #: src/pages/company/SupplierDetail.tsx:9 -#: src/pages/company/SupplierPartDetail.tsx:360 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:553 -#: src/pages/purchasing/PurchasingIndex.tsx:122 +#: src/pages/company/SupplierPartDetail.tsx:365 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:558 +#: src/pages/purchasing/PurchasingIndex.tsx:212 msgid "Purchasing" msgstr "購買" #: src/components/nav/NavigationDrawer.tsx:98 #: src/defaults/links.tsx:60 #: src/pages/company/CustomerDetail.tsx:9 -#: src/pages/sales/ReturnOrderDetail.tsx:554 -#: src/pages/sales/SalesIndex.tsx:153 -#: src/pages/sales/SalesOrderDetail.tsx:619 -#: src/pages/sales/SalesOrderShipmentDetail.tsx:480 +#: src/pages/sales/ReturnOrderDetail.tsx:559 +#: src/pages/sales/SalesIndex.tsx:168 +#: src/pages/sales/SalesOrderDetail.tsx:624 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:448 msgid "Sales" msgstr "販売" @@ -2667,21 +2704,21 @@ msgid "Remove search group" msgstr "検索グループの削除" #: src/components/nav/SearchDrawer.tsx:288 -#: src/pages/company/ManufacturerPartDetail.tsx:192 -#: src/pages/part/PartDetail.tsx:862 +#: src/pages/company/ManufacturerPartDetail.tsx:179 +#: src/pages/part/PartDetail.tsx:851 #: src/pages/part/PartSupplierDetail.tsx:15 -#: src/pages/purchasing/PurchasingIndex.tsx:81 +#: src/pages/purchasing/PurchasingIndex.tsx:100 msgid "Suppliers" msgstr "仕入先" #: src/components/nav/SearchDrawer.tsx:298 #: src/pages/part/PartSupplierDetail.tsx:23 -#: src/pages/purchasing/PurchasingIndex.tsx:98 +#: src/pages/purchasing/PurchasingIndex.tsx:149 msgid "Manufacturers" msgstr "メーカー" #: src/components/nav/SearchDrawer.tsx:308 -#: src/pages/sales/SalesIndex.tsx:138 +#: src/pages/sales/SalesIndex.tsx:133 msgid "Customers" msgstr "顧客" @@ -2772,21 +2809,21 @@ msgstr "プラグイン情報" #: src/components/plugins/PluginDrawer.tsx:73 #: src/forms/selectionListFields.tsx:102 -#: src/pages/build/BuildDetail.tsx:250 -#: src/pages/company/CompanyDetail.tsx:93 -#: src/pages/company/ManufacturerPartDetail.tsx:93 -#: src/pages/company/ManufacturerPartDetail.tsx:120 -#: src/pages/company/SupplierPartDetail.tsx:145 -#: src/pages/part/CategoryDetail.tsx:108 +#: src/pages/build/BuildDetail.tsx:251 +#: src/pages/company/CompanyDetail.tsx:94 +#: src/pages/company/ManufacturerPartDetail.tsx:92 +#: src/pages/company/ManufacturerPartDetail.tsx:119 +#: src/pages/company/SupplierPartDetail.tsx:146 +#: src/pages/part/CategoryDetail.tsx:111 #: src/pages/part/PartDetail.tsx:460 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:162 -#: src/pages/sales/ReturnOrderDetail.tsx:129 -#: src/pages/sales/SalesOrderDetail.tsx:119 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:163 +#: src/pages/sales/ReturnOrderDetail.tsx:130 +#: src/pages/sales/SalesOrderDetail.tsx:120 #: src/pages/stock/LocationDetail.tsx:102 #: src/tables/ColumnRenderers.tsx:278 -#: src/tables/build/BuildAllocatedStockTable.tsx:91 -#: src/tables/machine/MachineTypeTable.tsx:161 -#: src/tables/machine/MachineTypeTable.tsx:257 +#: src/tables/build/BuildAllocatedStockTable.tsx:88 +#: src/tables/machine/MachineTypeTable.tsx:159 +#: src/tables/machine/MachineTypeTable.tsx:255 #: src/tables/plugin/PluginListTable.tsx:110 msgid "Description" msgstr "説明" @@ -2814,7 +2851,7 @@ msgstr "日付" #: src/tables/company/CompanyTable.tsx:91 #: src/tables/machine/MachineListTable.tsx:384 #: src/tables/machine/MachineListTable.tsx:799 -#: src/tables/part/ParametricPartTable.tsx:354 +#: src/tables/part/ParametricPartTable.tsx:19 #: src/tables/part/PartTable.tsx:197 #: src/tables/part/PartVariantTable.tsx:15 #: src/tables/plugin/PluginListTable.tsx:96 @@ -2836,8 +2873,8 @@ msgid "Installation Path" msgstr "設置経路" #: src/components/plugins/PluginDrawer.tsx:116 -#: src/tables/machine/MachineTypeTable.tsx:184 -#: src/tables/machine/MachineTypeTable.tsx:293 +#: src/tables/machine/MachineTypeTable.tsx:182 +#: src/tables/machine/MachineTypeTable.tsx:291 #: src/tables/plugin/PluginListTable.tsx:101 #: src/tables/plugin/PluginListTable.tsx:417 msgid "Builtin" @@ -2849,8 +2886,8 @@ msgstr "パッケージ" #: src/components/plugins/PluginDrawer.tsx:133 #: src/pages/Index/Settings/AdminCenter/PluginManagementPanel.tsx:55 -#: src/pages/Index/Settings/SystemSettings.tsx:331 -#: src/pages/Index/Settings/UserSettings.tsx:128 +#: src/pages/Index/Settings/SystemSettings.tsx:337 +#: src/pages/Index/Settings/UserSettings.tsx:129 msgid "Plugin Settings" msgstr "プラグイン設定" @@ -2911,7 +2948,7 @@ msgstr "プラグインコンテンツの読み込み中にエラーが発生し #~ msgid "Unknown model: {model}" #~ msgstr "Unknown model: {model}" -#: src/components/render/Instance.tsx:249 +#: src/components/render/Instance.tsx:247 msgid "Unknown model: {model_name}" msgstr "不明なモデル{model_name}" @@ -2939,10 +2976,10 @@ msgstr "発送" #: src/components/render/Part.tsx:28 #: src/components/render/Plugin.tsx:17 #: src/components/render/User.tsx:37 -#: src/pages/company/CompanyDetail.tsx:323 -#: src/pages/company/SupplierPartDetail.tsx:373 +#: src/pages/company/CompanyDetail.tsx:328 +#: src/pages/company/SupplierPartDetail.tsx:378 #: src/pages/core/UserDetail.tsx:211 -#: src/pages/part/PartDetail.tsx:1027 +#: src/pages/part/PartDetail.tsx:1048 #: src/tables/ColumnRenderers.tsx:410 msgid "Inactive" msgstr "非アクティブ" @@ -2962,11 +2999,11 @@ msgstr "在庫なし" #: src/components/render/Part.tsx:47 #: src/components/wizards/OrderPartsWizard.tsx:135 -#: src/pages/company/SupplierPartDetail.tsx:197 -#: src/pages/company/SupplierPartDetail.tsx:394 -#: src/pages/part/PartDetail.tsx:1015 +#: src/pages/company/SupplierPartDetail.tsx:198 +#: src/pages/company/SupplierPartDetail.tsx:399 +#: src/pages/part/PartDetail.tsx:1030 #: src/tables/bom/BomTable.tsx:444 -#: src/tables/build/BuildLineTable.tsx:222 +#: src/tables/build/BuildLineTable.tsx:223 #: src/tables/part/PartTable.tsx:108 msgid "On Order" msgstr "注文中" @@ -2974,9 +3011,9 @@ msgstr "注文中" #: src/components/render/Part.tsx:55 #: src/components/wizards/OrderPartsWizard.tsx:141 #: src/pages/part/PartDetail.tsx:587 -#: src/pages/part/PartDetail.tsx:1021 +#: src/pages/part/PartDetail.tsx:1036 #: src/pages/stock/StockDetail.tsx:925 -#: src/tables/part/PartTestResultTable.tsx:297 +#: src/tables/part/PartTestResultTable.tsx:305 #: src/tables/stock/StockItemTable.tsx:359 msgid "In Production" msgstr "生産中" @@ -2987,7 +3024,7 @@ msgid "Details" msgstr "詳細" #: src/components/render/Part.tsx:112 -#: src/components/wizards/ImportPartWizard.tsx:806 +#: src/components/wizards/ImportPartWizard.tsx:807 #: src/pages/part/PartDetail.tsx:487 #: src/tables/ColumnRenderers.tsx:233 #: src/tables/ColumnRenderers.tsx:242 @@ -3000,16 +3037,16 @@ msgstr "カテゴリ" #: src/components/render/Stock.tsx:114 #: src/components/render/Stock.tsx:132 #: src/forms/BuildForms.tsx:795 -#: src/forms/PurchaseOrderForms.tsx:595 +#: src/forms/PurchaseOrderForms.tsx:647 #: src/forms/StockForms.tsx:792 #: src/forms/StockForms.tsx:839 -#: src/forms/StockForms.tsx:885 -#: src/forms/StockForms.tsx:924 -#: src/forms/StockForms.tsx:960 -#: src/forms/StockForms.tsx:1003 -#: src/forms/StockForms.tsx:1047 -#: src/forms/StockForms.tsx:1095 -#: src/forms/StockForms.tsx:1139 +#: src/forms/StockForms.tsx:892 +#: src/forms/StockForms.tsx:938 +#: src/forms/StockForms.tsx:976 +#: src/forms/StockForms.tsx:1019 +#: src/forms/StockForms.tsx:1063 +#: src/forms/StockForms.tsx:1111 +#: src/forms/StockForms.tsx:1155 #: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:88 #: src/pages/core/UserDetail.tsx:158 #: src/pages/stock/StockDetail.tsx:298 @@ -3023,7 +3060,7 @@ msgstr "場所" #: src/components/render/Stock.tsx:99 #: src/pages/stock/StockDetail.tsx:198 #: src/pages/stock/StockDetail.tsx:930 -#: src/tables/build/BuildAllocatedStockTable.tsx:121 +#: src/tables/build/BuildAllocatedStockTable.tsx:118 #: src/tables/build/BuildOutputTable.tsx:107 #: src/tables/sales/SalesOrderAllocationTable.tsx:142 msgid "Serial Number" @@ -3034,9 +3071,9 @@ msgstr "シリアル番号" #: src/forms/BuildForms.tsx:240 #: src/forms/BuildForms.tsx:634 #: src/forms/BuildForms.tsx:797 -#: src/forms/PurchaseOrderForms.tsx:801 +#: src/forms/PurchaseOrderForms.tsx:853 #: src/forms/ReturnOrderForms.tsx:243 -#: src/forms/SalesOrderForms.tsx:308 +#: src/forms/SalesOrderForms.tsx:387 #: src/forms/StockForms.tsx:841 #: src/pages/part/PartStockHistoryDetail.tsx:56 #: src/pages/part/PartStockHistoryDetail.tsx:210 @@ -3046,9 +3083,9 @@ msgstr "シリアル番号" #: src/pages/part/pricing/PriceBreakPanel.tsx:172 #: src/pages/stock/StockDetail.tsx:258 #: src/pages/stock/StockDetail.tsx:936 -#: src/tables/build/BuildLineTable.tsx:86 +#: src/tables/build/BuildLineTable.tsx:83 #: src/tables/part/PartPurchaseOrdersTable.tsx:94 -#: src/tables/part/PartTestResultTable.tsx:269 +#: src/tables/part/PartTestResultTable.tsx:277 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:175 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:206 #: src/tables/purchasing/SupplierPriceBreakTable.tsx:69 @@ -3063,14 +3100,14 @@ msgstr "数量" #: src/forms/BuildForms.tsx:474 #: src/forms/StockForms.tsx:793 #: src/forms/StockForms.tsx:840 -#: src/forms/StockForms.tsx:886 -#: src/forms/StockForms.tsx:925 -#: src/forms/StockForms.tsx:961 -#: src/forms/StockForms.tsx:1004 -#: src/forms/StockForms.tsx:1048 -#: src/forms/StockForms.tsx:1096 -#: src/forms/StockForms.tsx:1140 -#: src/tables/build/BuildLineTable.tsx:96 +#: src/forms/StockForms.tsx:893 +#: src/forms/StockForms.tsx:939 +#: src/forms/StockForms.tsx:977 +#: src/forms/StockForms.tsx:1020 +#: src/forms/StockForms.tsx:1064 +#: src/forms/StockForms.tsx:1112 +#: src/forms/StockForms.tsx:1156 +#: src/tables/build/BuildLineTable.tsx:93 msgid "Batch" msgstr "スクール機能" @@ -3306,10 +3343,6 @@ msgstr "設定なし" #~ msgid "Part category updated" #~ msgstr "Part category updated" -#: src/components/tables/part/PartParameterTable.tsx:41 -#~ msgid "Parameter" -#~ msgstr "Parameter" - #: src/components/tables/part/PartParameterTable.tsx:114 #~ msgid "Part parameter updated" #~ msgstr "Part parameter updated" @@ -3571,15 +3604,16 @@ msgid "Already Imported" msgstr "" #: src/components/wizards/ImportPartWizard.tsx:205 -#: src/pages/company/CompanyDetail.tsx:136 +#: src/pages/company/CompanyDetail.tsx:137 #: src/pages/company/SupplierDetail.tsx:8 -#: src/pages/company/SupplierPartDetail.tsx:130 -#: src/pages/company/SupplierPartDetail.tsx:235 -#: src/pages/company/SupplierPartDetail.tsx:364 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:156 +#: src/pages/company/SupplierPartDetail.tsx:131 +#: src/pages/company/SupplierPartDetail.tsx:236 +#: src/pages/company/SupplierPartDetail.tsx:369 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:157 #: src/tables/Filter.tsx:360 #: src/tables/company/CompanyTable.tsx:96 #: src/tables/part/PartPurchaseOrdersTable.tsx:43 +#: src/tables/purchasing/PurchaseOrderParametricTable.tsx:34 #: src/tables/purchasing/PurchaseOrderTable.tsx:109 #: src/tables/purchasing/SupplierPriceBreakTable.tsx:40 msgid "Supplier" @@ -3648,7 +3682,7 @@ msgid "Next" msgstr "" #: src/components/wizards/ImportPartWizard.tsx:540 -#: src/pages/part/PartDetail.tsx:1046 +#: src/pages/part/PartDetail.tsx:1067 #: src/tables/part/PartTable.tsx:408 msgid "Edit Part" msgstr "パーツを編集" @@ -3669,28 +3703,28 @@ msgstr "" msgid "Import" msgstr "" -#: src/components/wizards/ImportPartWizard.tsx:691 +#: src/components/wizards/ImportPartWizard.tsx:692 msgid "Parameters created successfully!" msgstr "" -#: src/components/wizards/ImportPartWizard.tsx:719 +#: src/components/wizards/ImportPartWizard.tsx:720 msgid "Failed to create parameters, please fix the errors and try again" msgstr "" #. placeholder {0}: supplierPart?.supplier -#: src/components/wizards/ImportPartWizard.tsx:739 +#: src/components/wizards/ImportPartWizard.tsx:740 msgid "Part imported successfully from supplier {0}." msgstr "" -#: src/components/wizards/ImportPartWizard.tsx:752 +#: src/components/wizards/ImportPartWizard.tsx:753 msgid "Open Part" msgstr "" -#: src/components/wizards/ImportPartWizard.tsx:759 +#: src/components/wizards/ImportPartWizard.tsx:760 msgid "Open Supplier Part" msgstr "" -#: src/components/wizards/ImportPartWizard.tsx:766 +#: src/components/wizards/ImportPartWizard.tsx:767 msgid "Open Manufacturer Part" msgstr "" @@ -3699,25 +3733,19 @@ msgstr "" #~ msgid "Import Part" #~ msgstr "Import Part" -#: src/components/wizards/ImportPartWizard.tsx:802 +#: src/components/wizards/ImportPartWizard.tsx:803 msgid "Import Supplier Part" msgstr "" -#: src/components/wizards/ImportPartWizard.tsx:804 +#: src/components/wizards/ImportPartWizard.tsx:805 msgid "Search Supplier Part" msgstr "" -#: src/components/wizards/ImportPartWizard.tsx:806 -#: src/pages/company/ManufacturerPartDetail.tsx:166 -#: src/pages/part/PartDetail.tsx:793 -msgid "Parameters" -msgstr "パラメータ" - -#: src/components/wizards/ImportPartWizard.tsx:806 +#: src/components/wizards/ImportPartWizard.tsx:807 msgid "Confirm import" msgstr "" -#: src/components/wizards/ImportPartWizard.tsx:808 +#: src/components/wizards/ImportPartWizard.tsx:809 msgid "Done" msgstr "" @@ -3738,24 +3766,24 @@ msgid "Sales Requirements" msgstr "" #: src/components/wizards/OrderPartsWizard.tsx:129 -#: src/forms/StockForms.tsx:887 -#: src/forms/StockForms.tsx:926 -#: src/forms/StockForms.tsx:962 -#: src/forms/StockForms.tsx:1005 -#: src/forms/StockForms.tsx:1049 -#: src/forms/StockForms.tsx:1097 -#: src/forms/StockForms.tsx:1141 -#: src/pages/company/SupplierPartDetail.tsx:190 -#: src/pages/company/SupplierPartDetail.tsx:378 +#: src/forms/StockForms.tsx:894 +#: src/forms/StockForms.tsx:940 +#: src/forms/StockForms.tsx:978 +#: src/forms/StockForms.tsx:1021 +#: src/forms/StockForms.tsx:1065 +#: src/forms/StockForms.tsx:1113 +#: src/forms/StockForms.tsx:1157 +#: src/pages/company/SupplierPartDetail.tsx:191 +#: src/pages/company/SupplierPartDetail.tsx:383 #: src/pages/part/PartDetail.tsx:534 -#: src/pages/part/PartDetail.tsx:984 +#: src/pages/part/PartDetail.tsx:999 #: src/tables/Filter.tsx:92 #: src/tables/purchasing/SupplierPartTable.tsx:230 msgid "In Stock" msgstr "在庫あり" #: src/components/wizards/OrderPartsWizard.tsx:146 -#: src/tables/build/BuildLineTable.tsx:404 +#: src/tables/build/BuildLineTable.tsx:405 msgid "Required Quantity" msgstr "必要数量" @@ -3847,7 +3875,7 @@ msgid "Please correct the errors in the selected parts" msgstr "選択した部品の誤りを訂正してください。" #: src/components/wizards/OrderPartsWizard.tsx:587 -#: src/tables/build/BuildLineTable.tsx:815 +#: src/tables/build/BuildLineTable.tsx:822 #: src/tables/part/PartTable.tsx:522 #: src/tables/sales/SalesOrderLineItemTable.tsx:370 msgid "Order Parts" @@ -4349,9 +4377,9 @@ msgstr "" #: src/forms/BuildForms.tsx:333 #: src/forms/BuildForms.tsx:408 #: src/forms/BuildForms.tsx:685 -#: src/tables/build/BuildAllocatedStockTable.tsx:150 +#: src/tables/build/BuildAllocatedStockTable.tsx:147 #: src/tables/build/BuildOutputTable.tsx:582 -#: src/tables/part/PartTestResultTable.tsx:272 +#: src/tables/part/PartTestResultTable.tsx:280 msgid "Build Output" msgstr "ビルド出力" @@ -4362,22 +4390,22 @@ msgstr "" #: src/forms/BuildForms.tsx:336 #: src/forms/BuildForms.tsx:411 #: src/forms/BuildForms.tsx:475 -#: src/forms/PurchaseOrderForms.tsx:717 +#: src/forms/PurchaseOrderForms.tsx:769 #: src/forms/ReturnOrderForms.tsx:197 #: src/forms/ReturnOrderForms.tsx:244 #: src/forms/StockForms.tsx:712 #: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:87 -#: src/pages/build/BuildDetail.tsx:222 +#: src/pages/build/BuildDetail.tsx:223 #: src/pages/core/UserDetail.tsx:151 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:168 -#: src/pages/sales/ReturnOrderDetail.tsx:135 -#: src/pages/sales/SalesOrderDetail.tsx:125 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:169 +#: src/pages/sales/ReturnOrderDetail.tsx:136 +#: src/pages/sales/SalesOrderDetail.tsx:126 #: src/pages/stock/StockDetail.tsx:170 #: src/tables/Filter.tsx:274 #: src/tables/build/BuildOutputTable.tsx:404 #: src/tables/machine/MachineListTable.tsx:387 #: src/tables/part/PartPurchaseOrdersTable.tsx:38 -#: src/tables/part/PartTestResultTable.tsx:309 +#: src/tables/part/PartTestResultTable.tsx:317 #: src/tables/sales/ReturnOrderLineItemTable.tsx:138 #: src/tables/sales/ReturnOrderLineItemTable.tsx:176 #: src/tables/settings/CustomStateTable.tsx:79 @@ -4443,18 +4471,19 @@ msgid "Build outputs have been cancelled" msgstr "ビルドアウトプットはキャンセルされました" #: src/forms/BuildForms.tsx:631 -#: src/pages/build/BuildDetail.tsx:207 -#: src/pages/company/ManufacturerPartDetail.tsx:85 -#: src/pages/company/SupplierPartDetail.tsx:96 +#: src/pages/build/BuildDetail.tsx:208 +#: src/pages/company/ManufacturerPartDetail.tsx:84 +#: src/pages/company/SupplierPartDetail.tsx:97 #: src/pages/part/PartDetail.tsx:453 #: src/pages/stock/StockDetail.tsx:153 #: src/tables/bom/BomTable.tsx:134 #: src/tables/bom/UsedInTable.tsx:40 -#: src/tables/build/BuildAllocatedStockTable.tsx:108 -#: src/tables/build/BuildLineTable.tsx:336 +#: src/tables/build/BuildAllocatedStockTable.tsx:105 +#: src/tables/build/BuildLineTable.tsx:337 #: src/tables/build/BuildOrderTable.tsx:79 #: src/tables/part/PartSalesAllocationsTable.tsx:61 #: src/tables/part/RelatedPartTable.tsx:73 +#: src/tables/purchasing/ManufacturerPartParametricTable.tsx:21 #: src/tables/purchasing/ManufacturerPartTable.tsx:69 #: src/tables/purchasing/SupplierPartTable.tsx:70 #: src/tables/sales/SalesOrderAllocationTable.tsx:135 @@ -4466,47 +4495,47 @@ msgstr "即時支払通知" #: src/forms/BuildForms.tsx:632 #: src/forms/BuildForms.tsx:796 #: src/forms/BuildForms.tsx:897 -#: src/forms/SalesOrderForms.tsx:306 -#: src/tables/build/BuildAllocatedStockTable.tsx:139 -#: src/tables/build/BuildLineTable.tsx:182 +#: src/forms/SalesOrderForms.tsx:385 +#: src/tables/build/BuildAllocatedStockTable.tsx:136 +#: src/tables/build/BuildLineTable.tsx:183 #: src/tables/sales/SalesOrderLineItemTable.tsx:342 #: src/tables/stock/StockItemTable.tsx:338 msgid "Allocated" msgstr "割り当てられた" #: src/forms/BuildForms.tsx:667 -#: src/forms/SalesOrderForms.tsx:295 -#: src/pages/build/BuildDetail.tsx:108 -#: src/pages/build/BuildDetail.tsx:326 +#: src/forms/SalesOrderForms.tsx:374 +#: src/pages/build/BuildDetail.tsx:109 +#: src/pages/build/BuildDetail.tsx:327 msgid "Source Location" msgstr "ソース・ロケーション" #: src/forms/BuildForms.tsx:668 -#: src/forms/SalesOrderForms.tsx:296 +#: src/forms/SalesOrderForms.tsx:375 msgid "Select the source location for the stock allocation" msgstr "在庫配分のソースの場所を選択します。" #: src/forms/BuildForms.tsx:700 -#: src/forms/SalesOrderForms.tsx:336 -#: src/tables/build/BuildLineTable.tsx:574 -#: src/tables/build/BuildLineTable.tsx:731 -#: src/tables/build/BuildLineTable.tsx:830 +#: src/forms/SalesOrderForms.tsx:415 +#: src/tables/build/BuildLineTable.tsx:575 +#: src/tables/build/BuildLineTable.tsx:738 +#: src/tables/build/BuildLineTable.tsx:837 #: src/tables/sales/SalesOrderLineItemTable.tsx:380 #: src/tables/sales/SalesOrderLineItemTable.tsx:406 msgid "Allocate Stock" msgstr "株式の割当" #: src/forms/BuildForms.tsx:703 -#: src/forms/SalesOrderForms.tsx:341 +#: src/forms/SalesOrderForms.tsx:420 msgid "Stock items allocated" msgstr "割り当てられた在庫品目" #: src/forms/BuildForms.tsx:816 #: src/forms/BuildForms.tsx:917 -#: src/tables/build/BuildAllocatedStockTable.tsx:240 -#: src/tables/build/BuildAllocatedStockTable.tsx:272 -#: src/tables/build/BuildLineTable.tsx:741 -#: src/tables/build/BuildLineTable.tsx:864 +#: src/tables/build/BuildAllocatedStockTable.tsx:243 +#: src/tables/build/BuildAllocatedStockTable.tsx:279 +#: src/tables/build/BuildLineTable.tsx:748 +#: src/tables/build/BuildLineTable.tsx:871 msgid "Consume Stock" msgstr "" @@ -4521,21 +4550,21 @@ msgstr "" #~ msgstr "Stock items consumed" #: src/forms/BuildForms.tsx:853 -#: src/tables/build/BuildLineTable.tsx:514 +#: src/tables/build/BuildLineTable.tsx:515 #: src/tables/part/PartBuildAllocationsTable.tsx:101 msgid "Fully consumed" msgstr "" #: src/forms/BuildForms.tsx:898 -#: src/tables/build/BuildLineTable.tsx:187 +#: src/tables/build/BuildLineTable.tsx:188 #: src/tables/stock/StockItemTable.tsx:367 msgid "Consumed" msgstr "消費済み" -#: src/forms/CommonForms.tsx:88 -#: src/forms/PurchaseOrderForms.tsx:125 +#: src/forms/CommonForms.tsx:92 +#: src/forms/PurchaseOrderForms.tsx:176 #: src/forms/ReturnOrderForms.tsx:138 -#: src/forms/SalesOrderForms.tsx:164 +#: src/forms/SalesOrderForms.tsx:185 msgid "Select project code for this line item" msgstr "" @@ -4543,16 +4572,16 @@ msgstr "" #~ msgid "Company updated" #~ msgstr "Company updated" -#: src/forms/PartForms.tsx:85 -#: src/forms/PartForms.tsx:207 -#: src/pages/part/CategoryDetail.tsx:124 +#: src/forms/PartForms.tsx:99 +#: src/forms/PartForms.tsx:228 +#: src/pages/part/CategoryDetail.tsx:127 #: src/pages/part/PartDetail.tsx:668 #: src/tables/part/PartCategoryTable.tsx:94 #: src/tables/part/PartTable.tsx:325 msgid "Subscribed" msgstr "登録済み" -#: src/forms/PartForms.tsx:86 +#: src/forms/PartForms.tsx:100 msgid "Subscribe to notifications for this part" msgstr "このパーツの通知を受け取る" @@ -4564,156 +4593,156 @@ msgstr "このパーツの通知を受け取る" #~ msgid "Part updated" #~ msgstr "Part updated" -#: src/forms/PartForms.tsx:193 +#: src/forms/PartForms.tsx:214 msgid "Parent part category" msgstr "親部品カテゴリー" -#: src/forms/PartForms.tsx:208 +#: src/forms/PartForms.tsx:229 msgid "Subscribe to notifications for this category" msgstr "このカテゴリの通知を受け取る" -#: src/forms/PurchaseOrderForms.tsx:388 -msgid "Assign Batch Code and Serial Numbers" -msgstr "バッチコードとシリアル番号の割り当て" - -#: src/forms/PurchaseOrderForms.tsx:390 -msgid "Assign Batch Code" -msgstr "バッチコードの割り当て" - -#: src/forms/PurchaseOrderForms.tsx:410 -msgid "Choose Location" -msgstr "地域を選択" - -#: src/forms/PurchaseOrderForms.tsx:418 -msgid "Item Destination selected" -msgstr "選択された項目" - #: src/forms/PurchaseOrderForms.tsx:421 #~ msgid "Assign Batch Code{0}" #~ msgstr "Assign Batch Code{0}" -#: src/forms/PurchaseOrderForms.tsx:428 -msgid "Part category default location selected" -msgstr "選択されたパートカテゴリーのデフォルトの場所" +#: src/forms/PurchaseOrderForms.tsx:440 +msgid "Assign Batch Code and Serial Numbers" +msgstr "バッチコードとシリアル番号の割り当て" -#: src/forms/PurchaseOrderForms.tsx:438 -msgid "Received stock location selected" -msgstr "選択された受入在庫場所" +#: src/forms/PurchaseOrderForms.tsx:442 +msgid "Assign Batch Code" +msgstr "バッチコードの割り当て" #: src/forms/PurchaseOrderForms.tsx:444 #: src/forms/StockForms.tsx:428 #~ msgid "Remove item from list" #~ msgstr "Remove item from list" -#: src/forms/PurchaseOrderForms.tsx:446 +#: src/forms/PurchaseOrderForms.tsx:462 +msgid "Choose Location" +msgstr "地域を選択" + +#: src/forms/PurchaseOrderForms.tsx:470 +msgid "Item Destination selected" +msgstr "選択された項目" + +#: src/forms/PurchaseOrderForms.tsx:480 +msgid "Part category default location selected" +msgstr "選択されたパートカテゴリーのデフォルトの場所" + +#: src/forms/PurchaseOrderForms.tsx:490 +msgid "Received stock location selected" +msgstr "選択された受入在庫場所" + +#: src/forms/PurchaseOrderForms.tsx:498 msgid "Default location selected" msgstr "デフォルトの場所を選択" -#: src/forms/PurchaseOrderForms.tsx:507 +#: src/forms/PurchaseOrderForms.tsx:559 msgid "Set Location" msgstr "セット場所" -#: src/forms/PurchaseOrderForms.tsx:524 -msgid "Set Expiry Date" -msgstr "有効期限の設定" - -#: src/forms/PurchaseOrderForms.tsx:532 -#: src/forms/StockForms.tsx:693 -msgid "Adjust Packaging" -msgstr "パッケージの調整" - -#: src/forms/PurchaseOrderForms.tsx:540 -#: src/forms/StockForms.tsx:684 -#: src/hooks/UseStockAdjustActions.tsx:148 -msgid "Change Status" -msgstr "ステータスを変更" - -#: src/forms/PurchaseOrderForms.tsx:546 -msgid "Add Note" -msgstr "コメントを挿入" - #: src/forms/PurchaseOrderForms.tsx:566 #~ msgid "Serial numbers" #~ msgstr "Serial numbers" +#: src/forms/PurchaseOrderForms.tsx:576 +msgid "Set Expiry Date" +msgstr "有効期限の設定" + #: src/forms/PurchaseOrderForms.tsx:582 #~ msgid "Store at line item destination" #~ msgstr "Store at line item destination" -#: src/forms/PurchaseOrderForms.tsx:610 -msgid "Store at default location" -msgstr "デフォルトの場所に保存" +#: src/forms/PurchaseOrderForms.tsx:584 +#: src/forms/StockForms.tsx:693 +msgid "Adjust Packaging" +msgstr "パッケージの調整" -#: src/forms/PurchaseOrderForms.tsx:625 -msgid "Store at line item destination " -msgstr "行先での保存" +#: src/forms/PurchaseOrderForms.tsx:592 +#: src/forms/StockForms.tsx:684 +#: src/hooks/UseStockAdjustActions.tsx:148 +msgid "Change Status" +msgstr "ステータスを変更" -#: src/forms/PurchaseOrderForms.tsx:637 -msgid "Store with already received stock" -msgstr "入荷済みの在庫がある店舗" +#: src/forms/PurchaseOrderForms.tsx:598 +msgid "Add Note" +msgstr "コメントを挿入" #: src/forms/PurchaseOrderForms.tsx:658 #~ msgid "Receive line items" #~ msgstr "Receive line items" -#: src/forms/PurchaseOrderForms.tsx:661 -#: src/pages/build/BuildDetail.tsx:340 +#: src/forms/PurchaseOrderForms.tsx:662 +msgid "Store at default location" +msgstr "デフォルトの場所に保存" + +#: src/forms/PurchaseOrderForms.tsx:677 +msgid "Store at line item destination " +msgstr "行先での保存" + +#: src/forms/PurchaseOrderForms.tsx:689 +msgid "Store with already received stock" +msgstr "入荷済みの在庫がある店舗" + +#: src/forms/PurchaseOrderForms.tsx:713 +#: src/pages/build/BuildDetail.tsx:341 #: src/pages/stock/StockDetail.tsx:280 #: src/pages/stock/StockDetail.tsx:952 #: src/tables/Filter.tsx:83 -#: src/tables/build/BuildAllocatedStockTable.tsx:128 +#: src/tables/build/BuildAllocatedStockTable.tsx:125 #: src/tables/build/BuildOutputTable.tsx:112 -#: src/tables/part/PartTestResultTable.tsx:260 -#: src/tables/part/PartTestResultTable.tsx:281 +#: src/tables/part/PartTestResultTable.tsx:268 +#: src/tables/part/PartTestResultTable.tsx:289 #: src/tables/sales/SalesOrderAllocationTable.tsx:149 msgid "Batch Code" msgstr "バッチコード" -#: src/forms/PurchaseOrderForms.tsx:662 +#: src/forms/PurchaseOrderForms.tsx:714 msgid "Enter batch code for received items" msgstr "受領品のバッチコードを入力" -#: src/forms/PurchaseOrderForms.tsx:675 +#: src/forms/PurchaseOrderForms.tsx:727 #: src/forms/StockForms.tsx:218 msgid "Serial Numbers" msgstr "シリアル番号" -#: src/forms/PurchaseOrderForms.tsx:676 +#: src/forms/PurchaseOrderForms.tsx:728 msgid "Enter serial numbers for received items" msgstr "受け取った商品のシリアル番号を入力" -#: src/forms/PurchaseOrderForms.tsx:690 +#: src/forms/PurchaseOrderForms.tsx:742 #: src/pages/stock/StockDetail.tsx:382 #: src/tables/stock/StockItemTable.tsx:294 msgid "Expiry Date" msgstr "有効期限" -#: src/forms/PurchaseOrderForms.tsx:691 +#: src/forms/PurchaseOrderForms.tsx:743 msgid "Enter an expiry date for received items" msgstr "受け取った商品の有効期限を入力してください。" -#: src/forms/PurchaseOrderForms.tsx:703 +#: src/forms/PurchaseOrderForms.tsx:755 #: src/forms/StockForms.tsx:728 -#: src/pages/company/SupplierPartDetail.tsx:172 -#: src/pages/company/SupplierPartDetail.tsx:236 +#: src/pages/company/SupplierPartDetail.tsx:173 +#: src/pages/company/SupplierPartDetail.tsx:237 #: src/pages/stock/StockDetail.tsx:419 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:227 msgid "Packaging" msgstr "パッケージング" -#: src/forms/PurchaseOrderForms.tsx:727 -#: src/pages/company/SupplierPartDetail.tsx:120 +#: src/forms/PurchaseOrderForms.tsx:779 +#: src/pages/company/SupplierPartDetail.tsx:121 #: src/tables/ColumnRenderers.tsx:332 msgid "Note" msgstr "備考" -#: src/forms/PurchaseOrderForms.tsx:799 -#: src/pages/company/SupplierPartDetail.tsx:138 +#: src/forms/PurchaseOrderForms.tsx:851 +#: src/pages/company/SupplierPartDetail.tsx:139 #: src/tables/purchasing/SupplierPriceBreakTable.tsx:49 msgid "SKU" msgstr "SKU" -#: src/forms/PurchaseOrderForms.tsx:800 +#: src/forms/PurchaseOrderForms.tsx:852 #: src/tables/part/PartPurchaseOrdersTable.tsx:127 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:213 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:283 @@ -4721,11 +4750,11 @@ msgstr "SKU" msgid "Received" msgstr "受信" -#: src/forms/PurchaseOrderForms.tsx:817 +#: src/forms/PurchaseOrderForms.tsx:869 msgid "Receive Line Items" msgstr "ラインアイテムの受信" -#: src/forms/PurchaseOrderForms.tsx:823 +#: src/forms/PurchaseOrderForms.tsx:875 msgid "Items received" msgstr "受領品目" @@ -4737,7 +4766,35 @@ msgstr "商品を受け取る" msgid "Item received into stock" msgstr "入荷した商品" -#: src/forms/SalesOrderForms.tsx:401 +#: src/forms/SalesOrderForms.tsx:208 +#: src/forms/SalesOrderForms.tsx:210 +#: src/tables/sales/SalesOrderShipmentTable.tsx:215 +msgid "Check Shipment" +msgstr "" + +#: src/forms/SalesOrderForms.tsx:211 +msgid "Marking the shipment as checked indicates that you have verified that all items included in this shipment are correct" +msgstr "" + +#: src/forms/SalesOrderForms.tsx:221 +msgid "Shipment marked as checked" +msgstr "" + +#: src/forms/SalesOrderForms.tsx:236 +#: src/forms/SalesOrderForms.tsx:238 +#: src/tables/sales/SalesOrderShipmentTable.tsx:228 +msgid "Uncheck Shipment" +msgstr "" + +#: src/forms/SalesOrderForms.tsx:239 +msgid "Marking the shipment as unchecked indicates that the shipment requires further verification" +msgstr "" + +#: src/forms/SalesOrderForms.tsx:249 +msgid "Shipment marked as unchecked" +msgstr "" + +#: src/forms/SalesOrderForms.tsx:480 msgid "Leave blank to use the order address" msgstr "" @@ -4792,150 +4849,150 @@ msgstr "移動" msgid "Return" msgstr "戻る" -#: src/forms/StockForms.tsx:963 +#: src/forms/StockForms.tsx:979 #: src/pages/Index/Scan.tsx:182 msgid "Count" msgstr "カウント" -#: src/forms/StockForms.tsx:1246 +#: src/forms/StockForms.tsx:1262 #: src/hooks/UseStockAdjustActions.tsx:108 msgid "Add Stock" msgstr "在庫追加" -#: src/forms/StockForms.tsx:1247 +#: src/forms/StockForms.tsx:1263 msgid "Stock added" msgstr "在庫追加" -#: src/forms/StockForms.tsx:1250 +#: src/forms/StockForms.tsx:1266 msgid "Increase the quantity of the selected stock items by a given amount." msgstr "" -#: src/forms/StockForms.tsx:1261 +#: src/forms/StockForms.tsx:1277 #: src/hooks/UseStockAdjustActions.tsx:118 msgid "Remove Stock" msgstr "在庫の削除" -#: src/forms/StockForms.tsx:1262 +#: src/forms/StockForms.tsx:1278 msgid "Stock removed" msgstr "在庫一掃" -#: src/forms/StockForms.tsx:1265 +#: src/forms/StockForms.tsx:1281 msgid "Decrease the quantity of the selected stock items by a given amount." msgstr "" -#: src/forms/StockForms.tsx:1276 +#: src/forms/StockForms.tsx:1292 #: src/hooks/UseStockAdjustActions.tsx:128 msgid "Transfer Stock" msgstr "株式譲渡" -#: src/forms/StockForms.tsx:1277 +#: src/forms/StockForms.tsx:1293 msgid "Stock transferred" msgstr "株式譲渡" -#: src/forms/StockForms.tsx:1280 +#: src/forms/StockForms.tsx:1296 msgid "Transfer selected items to the specified location." msgstr "" -#: src/forms/StockForms.tsx:1291 +#: src/forms/StockForms.tsx:1307 #: src/hooks/UseStockAdjustActions.tsx:168 msgid "Return Stock" msgstr "" -#: src/forms/StockForms.tsx:1292 +#: src/forms/StockForms.tsx:1308 msgid "Stock returned" msgstr "" -#: src/forms/StockForms.tsx:1295 +#: src/forms/StockForms.tsx:1311 msgid "Return selected items into stock, to the specified location." msgstr "" -#: src/forms/StockForms.tsx:1306 +#: src/forms/StockForms.tsx:1322 #: src/hooks/UseStockAdjustActions.tsx:98 msgid "Count Stock" msgstr "在庫数" -#: src/forms/StockForms.tsx:1307 +#: src/forms/StockForms.tsx:1323 msgid "Stock counted" msgstr "在庫数" -#: src/forms/StockForms.tsx:1310 +#: src/forms/StockForms.tsx:1326 msgid "Count the selected stock items, and adjust the quantity accordingly." msgstr "" -#: src/forms/StockForms.tsx:1321 +#: src/forms/StockForms.tsx:1337 msgid "Change Stock Status" msgstr "在庫状況の変更" -#: src/forms/StockForms.tsx:1322 +#: src/forms/StockForms.tsx:1338 msgid "Stock status changed" msgstr "在庫状況の変更" -#: src/forms/StockForms.tsx:1325 +#: src/forms/StockForms.tsx:1341 msgid "Change the status of the selected stock items." msgstr "" -#: src/forms/StockForms.tsx:1336 +#: src/forms/StockForms.tsx:1352 #: src/hooks/UseStockAdjustActions.tsx:138 msgid "Merge Stock" msgstr "株式の併合" -#: src/forms/StockForms.tsx:1337 +#: src/forms/StockForms.tsx:1353 msgid "Stock merged" msgstr "株式併合" -#: src/forms/StockForms.tsx:1339 +#: src/forms/StockForms.tsx:1355 msgid "Merge Stock Items" msgstr "" -#: src/forms/StockForms.tsx:1341 +#: src/forms/StockForms.tsx:1357 msgid "Merge operation cannot be reversed" msgstr "" -#: src/forms/StockForms.tsx:1342 +#: src/forms/StockForms.tsx:1358 msgid "Tracking information may be lost when merging items" msgstr "" -#: src/forms/StockForms.tsx:1343 +#: src/forms/StockForms.tsx:1359 msgid "Supplier information may be lost when merging items" msgstr "" -#: src/forms/StockForms.tsx:1361 +#: src/forms/StockForms.tsx:1377 msgid "Assign Stock to Customer" msgstr "顧客への在庫割り当て" -#: src/forms/StockForms.tsx:1362 +#: src/forms/StockForms.tsx:1378 msgid "Stock assigned to customer" msgstr "顧客に割り当てられた在庫" -#: src/forms/StockForms.tsx:1372 +#: src/forms/StockForms.tsx:1388 msgid "Delete Stock Items" msgstr "在庫アイテムの削除" -#: src/forms/StockForms.tsx:1373 +#: src/forms/StockForms.tsx:1389 msgid "Stock deleted" msgstr "ストック削除" -#: src/forms/StockForms.tsx:1376 +#: src/forms/StockForms.tsx:1392 msgid "This operation will permanently delete the selected stock items." msgstr "" -#: src/forms/StockForms.tsx:1385 +#: src/forms/StockForms.tsx:1401 msgid "Parent stock location" msgstr "親株式所在地" -#: src/forms/StockForms.tsx:1512 +#: src/forms/StockForms.tsx:1528 msgid "Find Serial Number" msgstr "" -#: src/forms/StockForms.tsx:1523 +#: src/forms/StockForms.tsx:1539 msgid "No matching items" msgstr "" -#: src/forms/StockForms.tsx:1529 +#: src/forms/StockForms.tsx:1545 msgid "Multiple matching items" msgstr "" -#: src/forms/StockForms.tsx:1538 +#: src/forms/StockForms.tsx:1554 msgid "Invalid response from server" msgstr "" @@ -4953,7 +5010,6 @@ msgstr "エントリーリスト" #: src/tables/FilterSelectDrawer.tsx:137 #: src/tables/FilterSelectDrawer.tsx:149 #: src/tables/part/PartTestResultTable.tsx:206 -#: src/tables/purchasing/ManufacturerPartParameterTable.tsx:42 #: src/tables/stock/StockItemTestResultTable.tsx:207 msgid "Value" msgstr "値" @@ -5244,7 +5300,7 @@ msgid "Delete selected stock items" msgstr "" #: src/hooks/UseStockAdjustActions.tsx:205 -#: src/pages/part/PartDetail.tsx:1137 +#: src/pages/part/PartDetail.tsx:1158 msgid "Stock Actions" msgstr "ストックアクション" @@ -5932,6 +5988,9 @@ msgstr "" #: src/pages/Index/Settings/AccountSettings/MFASettings.tsx:310 #: src/pages/Index/Settings/AccountSettings/MFASettings.tsx:401 +#: src/tables/build/BuildAllocatedStockTable.tsx:181 +#: src/tables/build/BuildLineTable.tsx:668 +#: src/tables/sales/SalesOrderAllocationTable.tsx:220 msgid "Confirm Removal" msgstr "" @@ -6394,30 +6453,34 @@ msgid "Email Messages" msgstr "" #: src/pages/Index/Settings/AdminCenter/HomePanel.tsx:22 -msgid "Active Alerts" -msgstr "" +#~ msgid "Active Alerts" +#~ msgstr "Active Alerts" #: src/pages/Index/Settings/AdminCenter/HomePanel.tsx:27 -msgid "Inactive Alerts" +#~ msgid "Inactive Alerts" +#~ msgstr "Inactive Alerts" + +#: src/pages/Index/Settings/AdminCenter/HomePanel.tsx:36 +msgid "System Status" msgstr "" -#: src/pages/Index/Settings/AdminCenter/HomePanel.tsx:38 +#: src/pages/Index/Settings/AdminCenter/HomePanel.tsx:47 msgid "Admin Center Information" msgstr "" -#: src/pages/Index/Settings/AdminCenter/HomePanel.tsx:44 +#: src/pages/Index/Settings/AdminCenter/HomePanel.tsx:53 msgid "The home panel (and the whole Admin Center) is a new feature starting with the new UI and was previously (before 1.0) not available." msgstr "" -#: src/pages/Index/Settings/AdminCenter/HomePanel.tsx:51 +#: src/pages/Index/Settings/AdminCenter/HomePanel.tsx:60 msgid "The admin center provides a centralized location for all administration functionality and is meant to replace all interaction with the (django) backend admin interface." msgstr "" -#: src/pages/Index/Settings/AdminCenter/HomePanel.tsx:58 +#: src/pages/Index/Settings/AdminCenter/HomePanel.tsx:67 msgid "Please open feature requests (after checking the tracker) for any existing backend admin functionality you are missing in this UI. The backend admin interface should be used carefully and seldom." msgstr "" -#: src/pages/Index/Settings/AdminCenter/HomePanel.tsx:76 +#: src/pages/Index/Settings/AdminCenter/HomePanel.tsx:85 msgid "Quick Actions" msgstr "" @@ -6476,11 +6539,11 @@ msgstr "カスタム単位" #: src/pages/Index/Settings/AdminCenter/Index.tsx:195 #: src/pages/part/CategoryDetail.tsx:313 -msgid "Part Parameters" -msgstr "パーツパラメータ" +#~ msgid "Part Parameters" +#~ msgstr "Part Parameters" #: src/pages/Index/Settings/AdminCenter/Index.tsx:202 -#: src/pages/part/CategoryDetail.tsx:306 +#: src/pages/part/CategoryDetail.tsx:329 msgid "Category Parameters" msgstr "カテゴリー・パラメーター" @@ -6494,7 +6557,7 @@ msgstr "ロケーションタイプ" #: src/pages/Index/Settings/AdminCenter/Index.tsx:235 #: src/pages/Index/Settings/AdminCenter/MachineManagementPanel.tsx:52 -#: src/tables/machine/MachineTypeTable.tsx:325 +#: src/tables/machine/MachineTypeTable.tsx:323 msgid "Machines" msgstr "機械" @@ -6507,8 +6570,8 @@ msgid "Data Management" msgstr "" #: src/pages/Index/Settings/AdminCenter/Index.tsx:270 -#: src/pages/Index/Settings/SystemSettings.tsx:175 -#: src/pages/Index/Settings/UserSettings.tsx:118 +#: src/pages/Index/Settings/SystemSettings.tsx:176 +#: src/pages/Index/Settings/UserSettings.tsx:119 msgid "Reporting" msgstr "レポート" @@ -6709,11 +6772,11 @@ msgstr "トークン" msgid "The settings below are specific to each available plugin" msgstr "" -#: src/pages/Index/Settings/SystemSettings.tsx:77 +#: src/pages/Index/Settings/SystemSettings.tsx:78 msgid "Authentication" msgstr "認証" -#: src/pages/Index/Settings/SystemSettings.tsx:103 +#: src/pages/Index/Settings/SystemSettings.tsx:104 msgid "Barcodes" msgstr "バーコード" @@ -6725,12 +6788,12 @@ msgstr "バーコード" #~ msgid "This panel is a placeholder." #~ msgstr "This panel is a placeholder." -#: src/pages/Index/Settings/SystemSettings.tsx:127 -#: src/pages/Index/Settings/UserSettings.tsx:112 +#: src/pages/Index/Settings/SystemSettings.tsx:128 +#: src/pages/Index/Settings/UserSettings.tsx:113 msgid "The settings below are specific to each available notification method" msgstr "" -#: src/pages/Index/Settings/SystemSettings.tsx:133 +#: src/pages/Index/Settings/SystemSettings.tsx:134 msgid "Pricing" msgstr "価格" @@ -6738,7 +6801,7 @@ msgstr "価格" #~ msgid "Exchange Rates" #~ msgstr "Exchange Rates" -#: src/pages/Index/Settings/SystemSettings.tsx:169 +#: src/pages/Index/Settings/SystemSettings.tsx:170 msgid "Labels" msgstr "ラベル" @@ -6790,15 +6853,15 @@ msgstr "未読にする" #~ msgid "Delete notifications" #~ msgstr "Delete notifications" -#: src/pages/build/BuildDetail.tsx:69 +#: src/pages/build/BuildDetail.tsx:70 msgid "No Required Items" msgstr "" -#: src/pages/build/BuildDetail.tsx:71 +#: src/pages/build/BuildDetail.tsx:72 msgid "This build order does not have any required items." msgstr "" -#: src/pages/build/BuildDetail.tsx:72 +#: src/pages/build/BuildDetail.tsx:73 msgid "The assembled part may not have a Bill of Materials (BOM) defined, or the BOM is empty." msgstr "" @@ -6826,7 +6889,7 @@ msgstr "" #~ msgid "Build Order updated" #~ msgstr "Build Order updated" -#: src/pages/build/BuildDetail.tsx:215 +#: src/pages/build/BuildDetail.tsx:216 #: src/pages/part/PartDetail.tsx:480 #: src/pages/stock/StockDetail.tsx:161 #: src/tables/bom/UsedInTable.tsx:44 @@ -6843,10 +6906,10 @@ msgstr "リビジョン" #~ msgid "Duplicate build order" #~ msgstr "Duplicate build order" -#: src/pages/build/BuildDetail.tsx:228 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:174 -#: src/pages/sales/ReturnOrderDetail.tsx:141 -#: src/pages/sales/SalesOrderDetail.tsx:131 +#: src/pages/build/BuildDetail.tsx:229 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:175 +#: src/pages/sales/ReturnOrderDetail.tsx:142 +#: src/pages/sales/SalesOrderDetail.tsx:132 #: src/pages/stock/StockDetail.tsx:176 msgid "Custom Status" msgstr "カスタムステータス" @@ -6855,9 +6918,9 @@ msgstr "カスタムステータス" #~ msgid "Delete build order" #~ msgstr "Delete build order" -#: src/pages/build/BuildDetail.tsx:237 -#: src/pages/build/BuildDetail.tsx:723 -#: src/pages/build/BuildIndex.tsx:28 +#: src/pages/build/BuildDetail.tsx:238 +#: src/pages/build/BuildDetail.tsx:728 +#: src/pages/build/BuildIndex.tsx:34 #: src/pages/stock/LocationDetail.tsx:140 #: src/tables/build/BuildOrderTable.tsx:123 #: src/tables/build/BuildOrderTable.tsx:183 @@ -6865,57 +6928,57 @@ msgstr "カスタムステータス" msgid "External" msgstr "外部" -#: src/pages/build/BuildDetail.tsx:244 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:141 -#: src/pages/sales/ReturnOrderDetail.tsx:108 -#: src/pages/sales/SalesOrderDetail.tsx:98 +#: src/pages/build/BuildDetail.tsx:245 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:142 +#: src/pages/sales/ReturnOrderDetail.tsx:109 +#: src/pages/sales/SalesOrderDetail.tsx:99 #: src/tables/ColumnRenderers.tsx:321 -#: src/tables/build/BuildAllocatedStockTable.tsx:115 -#: src/tables/build/BuildLineTable.tsx:352 +#: src/tables/build/BuildAllocatedStockTable.tsx:112 +#: src/tables/build/BuildLineTable.tsx:353 msgid "Reference" msgstr "参照" -#: src/pages/build/BuildDetail.tsx:258 +#: src/pages/build/BuildDetail.tsx:259 msgid "Parent Build" msgstr "親ビルド" -#: src/pages/build/BuildDetail.tsx:269 +#: src/pages/build/BuildDetail.tsx:270 msgid "Build Quantity" msgstr "数量" -#: src/pages/build/BuildDetail.tsx:275 +#: src/pages/build/BuildDetail.tsx:276 #: src/pages/part/PartDetail.tsx:598 #: src/tables/bom/BomTable.tsx:365 #: src/tables/bom/BomTable.tsx:407 msgid "Can Build" msgstr "ビルド" -#: src/pages/build/BuildDetail.tsx:284 -#: src/pages/build/BuildDetail.tsx:474 +#: src/pages/build/BuildDetail.tsx:285 +#: src/pages/build/BuildDetail.tsx:475 msgid "Completed Outputs" msgstr "完成したアウトプット" -#: src/pages/build/BuildDetail.tsx:301 +#: src/pages/build/BuildDetail.tsx:302 #: src/tables/Filter.tsx:381 #: src/tables/build/BuildOrderTable.tsx:143 msgid "Issued By" msgstr "発行者" -#: src/pages/build/BuildDetail.tsx:309 +#: src/pages/build/BuildDetail.tsx:310 #: src/pages/part/PartDetail.tsx:691 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:261 -#: src/pages/sales/ReturnOrderDetail.tsx:239 -#: src/pages/sales/SalesOrderDetail.tsx:232 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:262 +#: src/pages/sales/ReturnOrderDetail.tsx:240 +#: src/pages/sales/SalesOrderDetail.tsx:233 #: src/tables/ColumnRenderers.tsx:464 #: src/tables/Filter.tsx:319 msgid "Responsible" msgstr "責任" -#: src/pages/build/BuildDetail.tsx:327 +#: src/pages/build/BuildDetail.tsx:328 msgid "Any location" msgstr "場所" -#: src/pages/build/BuildDetail.tsx:334 +#: src/pages/build/BuildDetail.tsx:335 msgid "Destination Location" msgstr "目的地" @@ -6924,24 +6987,24 @@ msgstr "目的地" #~ msgid "Test Statistics" #~ msgstr "Test Statistics" -#: src/pages/build/BuildDetail.tsx:350 +#: src/pages/build/BuildDetail.tsx:351 #: src/tables/settings/ApiTokenTable.tsx:97 #: src/tables/settings/PendingTasksTable.tsx:41 msgid "Created" msgstr "作成日" -#: src/pages/build/BuildDetail.tsx:358 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:286 -#: src/pages/sales/ReturnOrderDetail.tsx:265 -#: src/pages/sales/SalesOrderDetail.tsx:257 +#: src/pages/build/BuildDetail.tsx:359 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:287 +#: src/pages/sales/ReturnOrderDetail.tsx:266 +#: src/pages/sales/SalesOrderDetail.tsx:258 #: src/tables/ColumnRenderers.tsx:486 msgid "Start Date" msgstr "開始日" -#: src/pages/build/BuildDetail.tsx:366 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:294 -#: src/pages/sales/ReturnOrderDetail.tsx:273 -#: src/pages/sales/SalesOrderDetail.tsx:265 +#: src/pages/build/BuildDetail.tsx:367 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:295 +#: src/pages/sales/ReturnOrderDetail.tsx:274 +#: src/pages/sales/SalesOrderDetail.tsx:266 #: src/tables/ColumnRenderers.tsx:494 #: src/tables/part/PartPurchaseOrdersTable.tsx:101 #: src/tables/sales/ReturnOrderLineItemTable.tsx:154 @@ -6954,185 +7017,185 @@ msgstr "終了日に達したら" #~ msgstr "Reporting Actions" #: src/pages/build/BuildDetail.tsx:374 +#~ msgid "Print build report" +#~ msgstr "Print build report" + +#: src/pages/build/BuildDetail.tsx:375 #: src/tables/build/BuildOrderTable.tsx:93 #: src/tables/sales/SalesOrderLineItemTable.tsx:347 msgid "Completed" msgstr "完了" -#: src/pages/build/BuildDetail.tsx:374 -#~ msgid "Print build report" -#~ msgstr "Print build report" - -#: src/pages/build/BuildDetail.tsx:410 +#: src/pages/build/BuildDetail.tsx:411 msgid "Build Details" msgstr "詳細" -#: src/pages/build/BuildDetail.tsx:416 +#: src/pages/build/BuildDetail.tsx:417 msgid "Required Parts" msgstr "" -#: src/pages/build/BuildDetail.tsx:428 -#: src/pages/sales/SalesOrderDetail.tsx:407 -#: src/pages/sales/SalesOrderShipmentDetail.tsx:261 +#: src/pages/build/BuildDetail.tsx:429 +#: src/pages/sales/SalesOrderDetail.tsx:408 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:259 #: src/tables/part/PartSalesAllocationsTable.tsx:73 msgid "Allocated Stock" msgstr "割当株式" -#: src/pages/build/BuildDetail.tsx:444 +#: src/pages/build/BuildDetail.tsx:445 msgid "Consumed Stock" msgstr "消費在庫" -#: src/pages/build/BuildDetail.tsx:461 +#: src/pages/build/BuildDetail.tsx:462 msgid "Incomplete Outputs" msgstr "不完全なアウトプット" -#: src/pages/build/BuildDetail.tsx:489 +#: src/pages/build/BuildDetail.tsx:490 msgid "External Orders" msgstr "" -#: src/pages/build/BuildDetail.tsx:503 +#: src/pages/build/BuildDetail.tsx:504 msgid "Child Build Orders" msgstr "チャイルド・ビルド・オーダー" -#: src/pages/build/BuildDetail.tsx:513 -#: src/pages/part/PartDetail.tsx:937 +#: src/pages/build/BuildDetail.tsx:514 +#: src/pages/part/PartDetail.tsx:926 #: src/pages/stock/StockDetail.tsx:587 #: src/tables/build/BuildOutputTable.tsx:654 #: src/tables/stock/StockItemTestResultTable.tsx:173 msgid "Test Results" msgstr "テストの結果" -#: src/pages/build/BuildDetail.tsx:550 +#: src/pages/build/BuildDetail.tsx:555 msgid "Edit Build Order" msgstr "ビルド順序の編集" -#: src/pages/build/BuildDetail.tsx:572 +#: src/pages/build/BuildDetail.tsx:577 #: src/tables/build/BuildOrderTable.tsx:207 #: src/tables/build/BuildOrderTable.tsx:223 msgid "Add Build Order" msgstr "ビルドオーダーの追加" -#: src/pages/build/BuildDetail.tsx:582 +#: src/pages/build/BuildDetail.tsx:587 msgid "Cancel Build Order" msgstr "ビルドオーダーのキャンセル" -#: src/pages/build/BuildDetail.tsx:584 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:416 -#: src/pages/sales/ReturnOrderDetail.tsx:427 -#: src/pages/sales/SalesOrderDetail.tsx:454 +#: src/pages/build/BuildDetail.tsx:589 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:421 +#: src/pages/sales/ReturnOrderDetail.tsx:432 +#: src/pages/sales/SalesOrderDetail.tsx:459 msgid "Order cancelled" msgstr "注文のキャンセル" -#: src/pages/build/BuildDetail.tsx:585 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:415 -#: src/pages/sales/ReturnOrderDetail.tsx:426 -#: src/pages/sales/SalesOrderDetail.tsx:453 +#: src/pages/build/BuildDetail.tsx:590 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:420 +#: src/pages/sales/ReturnOrderDetail.tsx:431 +#: src/pages/sales/SalesOrderDetail.tsx:458 msgid "Cancel this order" msgstr "この注文をキャンセル" -#: src/pages/build/BuildDetail.tsx:594 +#: src/pages/build/BuildDetail.tsx:599 msgid "Hold Build Order" msgstr "ホールドビルドオーダー" -#: src/pages/build/BuildDetail.tsx:596 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:423 -#: src/pages/sales/ReturnOrderDetail.tsx:434 -#: src/pages/sales/SalesOrderDetail.tsx:461 +#: src/pages/build/BuildDetail.tsx:601 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:428 +#: src/pages/sales/ReturnOrderDetail.tsx:439 +#: src/pages/sales/SalesOrderDetail.tsx:466 msgid "Place this order on hold" msgstr "この注文を保留にします" -#: src/pages/build/BuildDetail.tsx:597 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:424 -#: src/pages/sales/ReturnOrderDetail.tsx:435 -#: src/pages/sales/SalesOrderDetail.tsx:462 +#: src/pages/build/BuildDetail.tsx:602 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:429 +#: src/pages/sales/ReturnOrderDetail.tsx:440 +#: src/pages/sales/SalesOrderDetail.tsx:467 msgid "Order placed on hold" msgstr "注文の保留" -#: src/pages/build/BuildDetail.tsx:602 +#: src/pages/build/BuildDetail.tsx:607 msgid "Issue Build Order" msgstr "ビルドオーダーの発行" -#: src/pages/build/BuildDetail.tsx:604 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:407 -#: src/pages/sales/ReturnOrderDetail.tsx:418 -#: src/pages/sales/SalesOrderDetail.tsx:445 +#: src/pages/build/BuildDetail.tsx:609 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:412 +#: src/pages/sales/ReturnOrderDetail.tsx:423 +#: src/pages/sales/SalesOrderDetail.tsx:450 msgid "Issue this order" msgstr "本命令の発令" -#: src/pages/build/BuildDetail.tsx:605 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:408 -#: src/pages/sales/ReturnOrderDetail.tsx:419 -#: src/pages/sales/SalesOrderDetail.tsx:446 +#: src/pages/build/BuildDetail.tsx:610 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:413 +#: src/pages/sales/ReturnOrderDetail.tsx:424 +#: src/pages/sales/SalesOrderDetail.tsx:451 msgid "Order issued" msgstr "オーダー発行" -#: src/pages/build/BuildDetail.tsx:624 +#: src/pages/build/BuildDetail.tsx:629 msgid "Complete Build Order" msgstr "コンプリート・ビルド・オーダー" -#: src/pages/build/BuildDetail.tsx:630 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:436 -#: src/pages/sales/ReturnOrderDetail.tsx:442 -#: src/pages/sales/SalesOrderDetail.tsx:480 +#: src/pages/build/BuildDetail.tsx:635 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:441 +#: src/pages/sales/ReturnOrderDetail.tsx:447 +#: src/pages/sales/SalesOrderDetail.tsx:485 msgid "Mark this order as complete" msgstr "この注文を完了としてマークしてください。" -#: src/pages/build/BuildDetail.tsx:633 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:430 -#: src/pages/sales/ReturnOrderDetail.tsx:443 -#: src/pages/sales/SalesOrderDetail.tsx:481 +#: src/pages/build/BuildDetail.tsx:638 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:435 +#: src/pages/sales/ReturnOrderDetail.tsx:448 +#: src/pages/sales/SalesOrderDetail.tsx:486 msgid "Order completed" msgstr "注文完了" -#: src/pages/build/BuildDetail.tsx:660 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:459 -#: src/pages/sales/ReturnOrderDetail.tsx:470 -#: src/pages/sales/SalesOrderDetail.tsx:516 +#: src/pages/build/BuildDetail.tsx:665 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:464 +#: src/pages/sales/ReturnOrderDetail.tsx:475 +#: src/pages/sales/SalesOrderDetail.tsx:521 msgid "Issue Order" msgstr "発行順序" -#: src/pages/build/BuildDetail.tsx:667 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:466 -#: src/pages/sales/ReturnOrderDetail.tsx:477 -#: src/pages/sales/SalesOrderDetail.tsx:530 +#: src/pages/build/BuildDetail.tsx:672 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:471 +#: src/pages/sales/ReturnOrderDetail.tsx:482 +#: src/pages/sales/SalesOrderDetail.tsx:535 msgid "Complete Order" msgstr "完全な注文" -#: src/pages/build/BuildDetail.tsx:686 +#: src/pages/build/BuildDetail.tsx:691 msgid "Build Order Actions" msgstr "ビルドオーダーアクション" -#: src/pages/build/BuildDetail.tsx:691 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:489 -#: src/pages/sales/ReturnOrderDetail.tsx:500 -#: src/pages/sales/SalesOrderDetail.tsx:554 +#: src/pages/build/BuildDetail.tsx:696 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:494 +#: src/pages/sales/ReturnOrderDetail.tsx:505 +#: src/pages/sales/SalesOrderDetail.tsx:559 msgid "Edit order" msgstr "掲載依頼を編集" -#: src/pages/build/BuildDetail.tsx:695 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:497 -#: src/pages/sales/ReturnOrderDetail.tsx:506 -#: src/pages/sales/SalesOrderDetail.tsx:559 +#: src/pages/build/BuildDetail.tsx:700 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:502 +#: src/pages/sales/ReturnOrderDetail.tsx:511 +#: src/pages/sales/SalesOrderDetail.tsx:564 msgid "Duplicate order" msgstr "重複した注文" -#: src/pages/build/BuildDetail.tsx:699 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:500 -#: src/pages/sales/ReturnOrderDetail.tsx:511 -#: src/pages/sales/SalesOrderDetail.tsx:562 -msgid "Hold order" -msgstr "ホールドオーダー" - #: src/pages/build/BuildDetail.tsx:704 #: src/pages/purchasing/PurchaseOrderDetail.tsx:505 #: src/pages/sales/ReturnOrderDetail.tsx:516 #: src/pages/sales/SalesOrderDetail.tsx:567 +msgid "Hold order" +msgstr "ホールドオーダー" + +#: src/pages/build/BuildDetail.tsx:709 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:510 +#: src/pages/sales/ReturnOrderDetail.tsx:521 +#: src/pages/sales/SalesOrderDetail.tsx:572 msgid "Cancel order" msgstr "お見積をキャンセル" -#: src/pages/build/BuildDetail.tsx:742 +#: src/pages/build/BuildDetail.tsx:747 #: src/pages/stock/StockDetail.tsx:344 -#: src/tables/build/BuildAllocatedStockTable.tsx:85 +#: src/tables/build/BuildAllocatedStockTable.tsx:82 #: src/tables/part/PartBuildAllocationsTable.tsx:45 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:157 #: src/tables/stock/StockTrackingTable.tsx:109 @@ -7143,7 +7206,7 @@ msgstr "組立注文" #~ msgid "Build order created" #~ msgstr "Build order created" -#: src/pages/build/BuildIndex.tsx:29 +#: src/pages/build/BuildIndex.tsx:35 #: src/tables/build/BuildOrderTable.tsx:184 msgid "Show external build orders" msgstr "" @@ -7152,61 +7215,82 @@ msgstr "" #~ msgid "New Build Order" #~ msgstr "New Build Order" -#: src/pages/build/BuildIndex.tsx:83 -#: src/pages/purchasing/PurchasingIndex.tsx:69 -#: src/pages/sales/SalesIndex.tsx:92 -#: src/pages/sales/SalesIndex.tsx:125 +#: src/pages/build/BuildIndex.tsx:74 +#: src/pages/part/CategoryDetail.tsx:292 +#: src/pages/purchasing/PurchasingIndex.tsx:74 +#: src/pages/purchasing/PurchasingIndex.tsx:107 +#: src/pages/purchasing/PurchasingIndex.tsx:135 +#: src/pages/purchasing/PurchasingIndex.tsx:156 +#: src/pages/purchasing/PurchasingIndex.tsx:184 +#: src/pages/sales/SalesIndex.tsx:61 +#: src/pages/sales/SalesIndex.tsx:107 +#: src/pages/sales/SalesIndex.tsx:140 msgid "Table View" msgstr "テーブルビュー" -#: src/pages/build/BuildIndex.tsx:86 -#: src/pages/purchasing/PurchasingIndex.tsx:72 -#: src/pages/sales/SalesIndex.tsx:95 -#: src/pages/sales/SalesIndex.tsx:128 +#: src/pages/build/BuildIndex.tsx:80 +#: src/pages/purchasing/PurchasingIndex.tsx:80 +#: src/pages/sales/SalesIndex.tsx:67 +#: src/pages/sales/SalesIndex.tsx:113 msgid "Calendar View" msgstr "カレンダービュー" -#: src/pages/company/CompanyDetail.tsx:99 +#: src/pages/build/BuildIndex.tsx:86 +#: src/pages/part/CategoryDetail.tsx:306 +#: src/pages/purchasing/PurchasingIndex.tsx:92 +#: src/pages/purchasing/PurchasingIndex.tsx:118 +#: src/pages/purchasing/PurchasingIndex.tsx:141 +#: src/pages/purchasing/PurchasingIndex.tsx:167 +#: src/pages/purchasing/PurchasingIndex.tsx:190 +#: src/pages/sales/SalesIndex.tsx:79 +#: src/pages/sales/SalesIndex.tsx:125 +#: src/pages/sales/SalesIndex.tsx:151 +msgid "Parametric View" +msgstr "" + +#: src/pages/company/CompanyDetail.tsx:100 msgid "Website" msgstr "ウェブサイト" -#: src/pages/company/CompanyDetail.tsx:107 +#: src/pages/company/CompanyDetail.tsx:108 msgid "Phone Number" msgstr "電話番号" -#: src/pages/company/CompanyDetail.tsx:114 +#: src/pages/company/CompanyDetail.tsx:115 msgid "Email Address" msgstr "メールアドレス" -#: src/pages/company/CompanyDetail.tsx:121 +#: src/pages/company/CompanyDetail.tsx:122 msgid "Tax ID" msgstr "" -#: src/pages/company/CompanyDetail.tsx:131 +#: src/pages/company/CompanyDetail.tsx:132 msgid "Default Currency" msgstr "デフォルトの通貨" -#: src/pages/company/CompanyDetail.tsx:142 +#: src/pages/company/CompanyDetail.tsx:143 #: src/pages/company/ManufacturerDetail.tsx:8 -#: src/pages/company/ManufacturerPartDetail.tsx:104 -#: src/pages/company/ManufacturerPartDetail.tsx:280 -#: src/pages/company/SupplierPartDetail.tsx:152 +#: src/pages/company/ManufacturerPartDetail.tsx:103 +#: src/pages/company/ManufacturerPartDetail.tsx:271 +#: src/pages/company/SupplierPartDetail.tsx:153 #: src/tables/Filter.tsx:347 #: src/tables/company/CompanyTable.tsx:101 #: src/tables/purchasing/SupplierPartTable.tsx:89 msgid "Manufacturer" msgstr "製造元" -#: src/pages/company/CompanyDetail.tsx:148 +#: src/pages/company/CompanyDetail.tsx:149 #: src/pages/company/CustomerDetail.tsx:8 #: src/pages/part/pricing/SaleHistoryPanel.tsx:31 -#: src/pages/sales/ReturnOrderDetail.tsx:123 -#: src/pages/sales/SalesOrderDetail.tsx:113 -#: src/pages/sales/SalesOrderShipmentDetail.tsx:113 +#: src/pages/sales/ReturnOrderDetail.tsx:124 +#: src/pages/sales/SalesOrderDetail.tsx:114 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:111 #: src/pages/stock/StockDetail.tsx:370 #: src/tables/company/CompanyTable.tsx:106 +#: src/tables/sales/ReturnOrderParametricTable.tsx:32 #: src/tables/sales/ReturnOrderTable.tsx:108 -#: src/tables/sales/SalesOrderShipmentTable.tsx:111 +#: src/tables/sales/SalesOrderParametricTable.tsx:32 +#: src/tables/sales/SalesOrderShipmentTable.tsx:132 #: src/tables/sales/SalesOrderTable.tsx:133 #: src/tables/stock/StockTrackingTable.tsx:153 msgid "Customer" @@ -7216,11 +7300,11 @@ msgstr "顧客" #~ msgid "Edit company" #~ msgstr "Edit company" -#: src/pages/company/CompanyDetail.tsx:181 +#: src/pages/company/CompanyDetail.tsx:182 msgid "Company Details" msgstr "会社詳細" -#: src/pages/company/CompanyDetail.tsx:187 +#: src/pages/company/CompanyDetail.tsx:188 msgid "Supplied Parts" msgstr "供給部品" @@ -7228,79 +7312,79 @@ msgstr "供給部品" #~ msgid "Delete company" #~ msgstr "Delete company" -#: src/pages/company/CompanyDetail.tsx:194 +#: src/pages/company/CompanyDetail.tsx:195 msgid "Manufactured Parts" msgstr "製造部品" -#: src/pages/company/CompanyDetail.tsx:241 +#: src/pages/company/CompanyDetail.tsx:242 msgid "Assigned Stock" msgstr "割り当て在庫" -#: src/pages/company/CompanyDetail.tsx:282 +#: src/pages/company/CompanyDetail.tsx:287 #: src/tables/company/CompanyTable.tsx:82 msgid "Edit Company" msgstr "会社情報を編集" -#: src/pages/company/CompanyDetail.tsx:290 +#: src/pages/company/CompanyDetail.tsx:295 msgid "Delete Company" msgstr "削除会社" -#: src/pages/company/CompanyDetail.tsx:305 +#: src/pages/company/CompanyDetail.tsx:310 msgid "Company Actions" msgstr "会社の動き" -#: src/pages/company/ManufacturerPartDetail.tsx:78 -#: src/pages/company/SupplierPartDetail.tsx:89 +#: src/pages/company/ManufacturerPartDetail.tsx:77 +#: src/pages/company/SupplierPartDetail.tsx:90 msgid "Internal Part" msgstr "内部パーツ" -#: src/pages/company/ManufacturerPartDetail.tsx:112 +#: src/pages/company/ManufacturerPartDetail.tsx:111 msgid "Manufacturer Part Number" msgstr "メーカー品番" -#: src/pages/company/ManufacturerPartDetail.tsx:129 -#: src/pages/company/SupplierPartDetail.tsx:113 +#: src/pages/company/ManufacturerPartDetail.tsx:128 +#: src/pages/company/SupplierPartDetail.tsx:114 msgid "External Link" msgstr "外部リンク" -#: src/pages/company/ManufacturerPartDetail.tsx:148 -#: src/pages/company/SupplierPartDetail.tsx:232 +#: src/pages/company/ManufacturerPartDetail.tsx:147 +#: src/pages/company/SupplierPartDetail.tsx:233 #: src/pages/part/PartDetail.tsx:787 msgid "Part Details" msgstr "部品詳細" -#: src/pages/company/ManufacturerPartDetail.tsx:151 +#: src/pages/company/ManufacturerPartDetail.tsx:150 msgid "Manufacturer Details" msgstr "メーカー詳細" -#: src/pages/company/ManufacturerPartDetail.tsx:160 +#: src/pages/company/ManufacturerPartDetail.tsx:159 msgid "Manufacturer Part Details" msgstr "メーカーパーツ詳細" -#: src/pages/company/ManufacturerPartDetail.tsx:178 -#: src/pages/company/SupplierPartDetail.tsx:252 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:381 +#: src/pages/company/ManufacturerPartDetail.tsx:165 +#: src/pages/company/SupplierPartDetail.tsx:253 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:382 msgid "Received Stock" msgstr "受入在庫" -#: src/pages/company/ManufacturerPartDetail.tsx:220 +#: src/pages/company/ManufacturerPartDetail.tsx:211 #: src/tables/purchasing/ManufacturerPartTable.tsx:108 msgid "Edit Manufacturer Part" msgstr "メーカー・パーツの編集" -#: src/pages/company/ManufacturerPartDetail.tsx:227 +#: src/pages/company/ManufacturerPartDetail.tsx:218 #: src/tables/purchasing/ManufacturerPartTable.tsx:96 #: src/tables/purchasing/ManufacturerPartTable.tsx:115 #: src/tables/purchasing/ManufacturerPartTable.tsx:156 msgid "Add Manufacturer Part" msgstr "メーカー部品の追加" -#: src/pages/company/ManufacturerPartDetail.tsx:239 +#: src/pages/company/ManufacturerPartDetail.tsx:230 #: src/tables/purchasing/ManufacturerPartTable.tsx:126 msgid "Delete Manufacturer Part" msgstr "メーカー部品の削除" -#: src/pages/company/ManufacturerPartDetail.tsx:254 +#: src/pages/company/ManufacturerPartDetail.tsx:245 msgid "Manufacturer Part Actions" msgstr "メーカー品番" @@ -7308,12 +7392,12 @@ msgstr "メーカー品番" #~ msgid "ManufacturerPart" #~ msgstr "ManufacturerPart" -#: src/pages/company/SupplierPartDetail.tsx:104 +#: src/pages/company/SupplierPartDetail.tsx:105 #: src/tables/part/RelatedPartTable.tsx:82 msgid "Part Description" msgstr "パーツ説明" -#: src/pages/company/SupplierPartDetail.tsx:179 +#: src/pages/company/SupplierPartDetail.tsx:180 #: src/tables/part/PartPurchaseOrdersTable.tsx:73 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:191 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:233 @@ -7321,50 +7405,50 @@ msgstr "パーツ説明" msgid "Pack Quantity" msgstr "パック数量" -#: src/pages/company/SupplierPartDetail.tsx:204 +#: src/pages/company/SupplierPartDetail.tsx:205 msgid "Supplier Availability" msgstr "サプライヤーの空き状況" -#: src/pages/company/SupplierPartDetail.tsx:212 +#: src/pages/company/SupplierPartDetail.tsx:213 msgid "Availability Updated" msgstr "空席状況更新" -#: src/pages/company/SupplierPartDetail.tsx:237 +#: src/pages/company/SupplierPartDetail.tsx:238 msgid "Availability" msgstr "有効性" -#: src/pages/company/SupplierPartDetail.tsx:246 +#: src/pages/company/SupplierPartDetail.tsx:247 msgid "Supplier Part Details" msgstr "サプライヤー部品詳細" -#: src/pages/company/SupplierPartDetail.tsx:279 +#: src/pages/company/SupplierPartDetail.tsx:280 #: src/pages/part/PartPricingPanel.tsx:113 #: src/pages/part/pricing/PricingOverviewPanel.tsx:239 msgid "Supplier Pricing" msgstr "サプライヤー価格" -#: src/pages/company/SupplierPartDetail.tsx:308 +#: src/pages/company/SupplierPartDetail.tsx:313 msgid "Supplier Part Actions" msgstr "サプライヤー" -#: src/pages/company/SupplierPartDetail.tsx:332 +#: src/pages/company/SupplierPartDetail.tsx:337 #: src/tables/purchasing/SupplierPartTable.tsx:244 msgid "Edit Supplier Part" msgstr "サプライヤーパーツの編集" -#: src/pages/company/SupplierPartDetail.tsx:340 +#: src/pages/company/SupplierPartDetail.tsx:345 #: src/tables/purchasing/SupplierPartTable.tsx:264 msgid "Delete Supplier Part" msgstr "サプライヤーの削除" -#: src/pages/company/SupplierPartDetail.tsx:348 +#: src/pages/company/SupplierPartDetail.tsx:353 #: src/tables/purchasing/SupplierPartTable.tsx:172 #: src/tables/purchasing/SupplierPartTable.tsx:251 msgid "Add Supplier Part" msgstr "サプライヤー部品の追加" -#: src/pages/company/SupplierPartDetail.tsx:388 -#: src/pages/part/PartDetail.tsx:1003 +#: src/pages/company/SupplierPartDetail.tsx:393 +#: src/pages/part/PartDetail.tsx:1018 msgid "No Stock" msgstr "在庫切れ" @@ -7411,83 +7495,83 @@ msgstr "ユーザー詳細" msgid "Basic user" msgstr "基本ユーザー" -#: src/pages/part/CategoryDetail.tsx:100 +#: src/pages/part/CategoryDetail.tsx:103 #: src/pages/stock/LocationDetail.tsx:94 #: src/tables/settings/ErrorTable.tsx:63 #: src/tables/settings/ErrorTable.tsx:108 msgid "Path" msgstr "パス" -#: src/pages/part/CategoryDetail.tsx:116 +#: src/pages/part/CategoryDetail.tsx:119 msgid "Parent Category" msgstr "親カテゴリ" -#: src/pages/part/CategoryDetail.tsx:139 -#: src/pages/part/CategoryDetail.tsx:271 +#: src/pages/part/CategoryDetail.tsx:142 +#: src/pages/part/CategoryDetail.tsx:279 msgid "Subcategories" msgstr "サブカテゴリ" -#: src/pages/part/CategoryDetail.tsx:146 +#: src/pages/part/CategoryDetail.tsx:149 #: src/pages/stock/LocationDetail.tsx:134 #: src/tables/part/PartCategoryTable.tsx:89 #: src/tables/stock/StockLocationTable.tsx:43 msgid "Structural" msgstr "構造に関するパターン" -#: src/pages/part/CategoryDetail.tsx:152 +#: src/pages/part/CategoryDetail.tsx:155 msgid "Parent default location" msgstr "親のデフォルトの場所" -#: src/pages/part/CategoryDetail.tsx:159 +#: src/pages/part/CategoryDetail.tsx:162 msgid "Default location" msgstr "デフォルトの場所" -#: src/pages/part/CategoryDetail.tsx:170 +#: src/pages/part/CategoryDetail.tsx:173 msgid "Top level part category" msgstr "トップレベルのパーツカテゴリ" -#: src/pages/part/CategoryDetail.tsx:180 -#: src/pages/part/CategoryDetail.tsx:248 +#: src/pages/part/CategoryDetail.tsx:183 +#: src/pages/part/CategoryDetail.tsx:251 #: src/tables/part/PartCategoryTable.tsx:122 msgid "Edit Part Category" msgstr "部品カテゴリーの編集" -#: src/pages/part/CategoryDetail.tsx:189 +#: src/pages/part/CategoryDetail.tsx:192 msgid "Move items to parent category" msgstr "項目を親カテゴリに移動" -#: src/pages/part/CategoryDetail.tsx:193 +#: src/pages/part/CategoryDetail.tsx:196 #: src/pages/stock/LocationDetail.tsx:226 msgid "Delete items" msgstr "アイテムの削除" -#: src/pages/part/CategoryDetail.tsx:201 -#: src/pages/part/CategoryDetail.tsx:253 +#: src/pages/part/CategoryDetail.tsx:204 +#: src/pages/part/CategoryDetail.tsx:256 msgid "Delete Part Category" msgstr "部品カテゴリの削除" -#: src/pages/part/CategoryDetail.tsx:204 +#: src/pages/part/CategoryDetail.tsx:207 msgid "Parts Action" msgstr "パーツアクション" -#: src/pages/part/CategoryDetail.tsx:205 +#: src/pages/part/CategoryDetail.tsx:208 msgid "Action for parts in this category" msgstr "このカテゴリの部品のアクション" -#: src/pages/part/CategoryDetail.tsx:211 +#: src/pages/part/CategoryDetail.tsx:214 msgid "Child Categories Action" msgstr "チャイルド・カテゴリー・アクション" -#: src/pages/part/CategoryDetail.tsx:212 +#: src/pages/part/CategoryDetail.tsx:215 msgid "Action for child categories in this category" msgstr "このカテゴリーに含まれる子どもの行動" -#: src/pages/part/CategoryDetail.tsx:244 +#: src/pages/part/CategoryDetail.tsx:247 #: src/tables/part/PartCategoryTable.tsx:143 msgid "Category Actions" msgstr "カテゴリー・アクション" -#: src/pages/part/CategoryDetail.tsx:265 +#: src/pages/part/CategoryDetail.tsx:273 msgid "Category Details" msgstr "カテゴリー詳細" @@ -7585,7 +7669,6 @@ msgid "Category Default Location" msgstr "カテゴリー デフォルトの場所" #: src/pages/part/PartDetail.tsx:507 -#: src/tables/purchasing/ManufacturerPartParameterTable.tsx:48 msgid "Units" msgstr "単位" @@ -7600,7 +7683,7 @@ msgstr "キーワード" #: src/pages/part/PartDetail.tsx:542 #: src/tables/bom/BomTable.tsx:439 -#: src/tables/build/BuildLineTable.tsx:305 +#: src/tables/build/BuildLineTable.tsx:306 #: src/tables/part/PartTable.tsx:319 #: src/tables/sales/SalesOrderLineItemTable.tsx:138 msgid "Available Stock" @@ -7608,7 +7691,7 @@ msgstr "在庫状況" #: src/pages/part/PartDetail.tsx:548 #: src/tables/bom/BomTable.tsx:341 -#: src/tables/build/BuildLineTable.tsx:267 +#: src/tables/build/BuildLineTable.tsx:268 #: src/tables/sales/SalesOrderLineItemTable.tsx:180 msgid "On order" msgstr "注文中" @@ -7634,7 +7717,7 @@ msgstr "最小在庫" #~ msgstr "Scheduling" #: src/pages/part/PartDetail.tsx:620 -#: src/tables/part/ParametricPartTable.tsx:359 +#: src/tables/part/ParametricPartTable.tsx:24 #: src/tables/part/PartTable.tsx:203 msgid "Locked" msgstr "ロック中" @@ -7671,16 +7754,16 @@ msgid "Saleable Part" msgstr "売却可能部分" #: src/pages/part/PartDetail.tsx:663 -#: src/pages/part/PartDetail.tsx:1033 +#: src/pages/part/PartDetail.tsx:1054 #: src/tables/bom/BomTable.tsx:150 #: src/tables/bom/BomTable.tsx:434 msgid "Virtual Part" msgstr "バーチャルパート" #: src/pages/part/PartDetail.tsx:678 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:271 -#: src/pages/sales/ReturnOrderDetail.tsx:249 -#: src/pages/sales/SalesOrderDetail.tsx:242 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:272 +#: src/pages/sales/ReturnOrderDetail.tsx:250 +#: src/pages/sales/SalesOrderDetail.tsx:243 #: src/tables/ColumnRenderers.tsx:502 msgid "Creation Date" msgstr "作成日時" @@ -7718,35 +7801,46 @@ msgstr "最新のシリアル番号" msgid "Select Part Revision" msgstr "部品リビジョンの選択" -#: src/pages/part/PartDetail.tsx:823 +#: src/pages/part/PartDetail.tsx:812 msgid "Variants" msgstr "バリアント" -#: src/pages/part/PartDetail.tsx:830 +#: src/pages/part/PartDetail.tsx:819 #: src/pages/stock/StockDetail.tsx:542 msgid "Allocations" msgstr "割り当て" -#: src/pages/part/PartDetail.tsx:837 +#: src/pages/part/PartDetail.tsx:826 msgid "Bill of Materials" msgstr "部品表" -#: src/pages/part/PartDetail.tsx:849 +#: src/pages/part/PartDetail.tsx:838 msgid "Used In" msgstr "中古" -#: src/pages/part/PartDetail.tsx:856 +#: src/pages/part/PartDetail.tsx:845 msgid "Part Pricing" msgstr "部品価格" -#: src/pages/part/PartDetail.tsx:926 +#: src/pages/part/PartDetail.tsx:915 msgid "Test Templates" msgstr "テストテンプレート" -#: src/pages/part/PartDetail.tsx:948 +#: src/pages/part/PartDetail.tsx:937 msgid "Related Parts" msgstr "関連部品" +#: src/pages/part/PartDetail.tsx:949 +#: src/tables/ColumnRenderers.tsx:73 +#: src/tables/bom/BomTable.tsx:657 +#: src/tables/part/PartTestTemplateTable.tsx:258 +msgid "Part is Locked" +msgstr "部品がロックされています" + +#: src/pages/part/PartDetail.tsx:954 +msgid "Part parameters cannot be edited, as the part is locked" +msgstr "パートがロックされているため、パートパラメータを編集できません。" + #: src/pages/part/PartDetail.tsx:956 #~ msgid "Count part stock" #~ msgstr "Count part stock" @@ -7755,42 +7849,46 @@ msgstr "関連部品" #~ msgid "Transfer part stock" #~ msgstr "Transfer part stock" -#: src/pages/part/PartDetail.tsx:1009 +#: src/pages/part/PartDetail.tsx:1024 #: src/tables/part/PartTestTemplateTable.tsx:112 #: src/tables/stock/StockItemTestResultTable.tsx:404 msgid "Required" msgstr "必須" -#: src/pages/part/PartDetail.tsx:1058 +#: src/pages/part/PartDetail.tsx:1042 +msgid "Deficit" +msgstr "" + +#: src/pages/part/PartDetail.tsx:1079 #: src/tables/part/PartTable.tsx:396 #: src/tables/part/PartTable.tsx:449 msgid "Add Part" msgstr "部品追加" -#: src/pages/part/PartDetail.tsx:1072 +#: src/pages/part/PartDetail.tsx:1093 msgid "Delete Part" msgstr "削除部分" -#: src/pages/part/PartDetail.tsx:1081 +#: src/pages/part/PartDetail.tsx:1102 msgid "Deleting this part cannot be reversed" msgstr "この部分の削除は元に戻せません" -#: src/pages/part/PartDetail.tsx:1143 +#: src/pages/part/PartDetail.tsx:1164 #: src/pages/stock/StockDetail.tsx:883 msgid "Order" msgstr "注文" -#: src/pages/part/PartDetail.tsx:1144 +#: src/pages/part/PartDetail.tsx:1165 #: src/pages/stock/StockDetail.tsx:884 -#: src/tables/build/BuildLineTable.tsx:761 +#: src/tables/build/BuildLineTable.tsx:768 msgid "Order Stock" msgstr "注文在庫" -#: src/pages/part/PartDetail.tsx:1156 +#: src/pages/part/PartDetail.tsx:1177 msgid "Search by serial number" msgstr "" -#: src/pages/part/PartDetail.tsx:1164 +#: src/pages/part/PartDetail.tsx:1185 #: src/tables/part/PartTable.tsx:506 msgid "Part Actions" msgstr "パートアクション" @@ -8039,7 +8137,7 @@ msgstr "購入価格" #: src/pages/part/pricing/PricingOverviewPanel.tsx:288 #: src/pages/stock/StockDetail.tsx:426 -#: src/tables/part/PartParameterTable.tsx:121 +#: src/tables/general/ParameterTable.tsx:101 #: src/tables/stock/StockItemTable.tsx:300 msgid "Last Updated" msgstr "最終更新" @@ -8107,17 +8205,17 @@ msgstr "サプライヤー価格" msgid "Variant Part" msgstr "バリアントパーツ" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:89 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:90 msgid "Edit Purchase Order" msgstr "発注書の編集" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:125 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:126 #: src/tables/purchasing/PurchaseOrderTable.tsx:154 #: src/tables/purchasing/PurchaseOrderTable.tsx:167 msgid "Add Purchase Order" msgstr "発注書の追加" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:147 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:148 msgid "Supplier Reference" msgstr "サプライヤー・リファレンス" @@ -8127,20 +8225,20 @@ msgstr "サプライヤー・リファレンス" #~ msgid "Order Currency," #~ msgstr "Order Currency," -#: src/pages/purchasing/PurchaseOrderDetail.tsx:187 -#: src/pages/sales/ReturnOrderDetail.tsx:160 -#: src/pages/sales/SalesOrderDetail.tsx:144 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:188 +#: src/pages/sales/ReturnOrderDetail.tsx:161 +#: src/pages/sales/SalesOrderDetail.tsx:145 msgid "Completed Line Items" msgstr "完了した項目" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:196 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:197 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:272 msgid "Destination" msgstr "目的地" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:202 -#: src/pages/sales/ReturnOrderDetail.tsx:167 -#: src/pages/sales/SalesOrderDetail.tsx:161 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:203 +#: src/pages/sales/ReturnOrderDetail.tsx:168 +#: src/pages/sales/SalesOrderDetail.tsx:162 msgid "Order Currency" msgstr "注文通貨" @@ -8150,97 +8248,97 @@ msgstr "注文通貨" #~ msgid "Created On" #~ msgstr "Created On" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:208 -#: src/pages/sales/ReturnOrderDetail.tsx:174 -#: src/pages/sales/SalesOrderDetail.tsx:167 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:209 +#: src/pages/sales/ReturnOrderDetail.tsx:175 +#: src/pages/sales/SalesOrderDetail.tsx:168 msgid "Total Cost" msgstr "合計コスト" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:237 -#: src/pages/sales/ReturnOrderDetail.tsx:215 -#: src/pages/sales/SalesOrderDetail.tsx:208 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:238 +#: src/pages/sales/ReturnOrderDetail.tsx:216 +#: src/pages/sales/SalesOrderDetail.tsx:209 msgid "Contact Email" msgstr "連絡先メールアドレス" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:245 -#: src/pages/sales/ReturnOrderDetail.tsx:223 -#: src/pages/sales/SalesOrderDetail.tsx:216 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:246 +#: src/pages/sales/ReturnOrderDetail.tsx:224 +#: src/pages/sales/SalesOrderDetail.tsx:217 msgid "Contact Phone" msgstr "連絡先電話番号" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:278 -#: src/pages/sales/ReturnOrderDetail.tsx:257 -#: src/pages/sales/SalesOrderDetail.tsx:249 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:279 +#: src/pages/sales/ReturnOrderDetail.tsx:258 +#: src/pages/sales/SalesOrderDetail.tsx:250 msgid "Issue Date" msgstr "発行日" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:303 -#: src/pages/sales/ReturnOrderDetail.tsx:281 -#: src/pages/sales/SalesOrderDetail.tsx:272 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:304 +#: src/pages/sales/ReturnOrderDetail.tsx:282 +#: src/pages/sales/SalesOrderDetail.tsx:273 #: src/tables/ColumnRenderers.tsx:510 #: src/tables/build/BuildOrderTable.tsx:137 #: src/tables/part/PartPurchaseOrdersTable.tsx:106 msgid "Completion Date" msgstr "完了日" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:333 -#: src/pages/sales/ReturnOrderDetail.tsx:311 -#: src/pages/sales/SalesOrderDetail.tsx:349 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:334 +#: src/pages/sales/ReturnOrderDetail.tsx:312 +#: src/pages/sales/SalesOrderDetail.tsx:350 msgid "Order Details" msgstr "ご注文の詳細" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:339 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:348 -#: src/pages/sales/ReturnOrderDetail.tsx:153 -#: src/pages/sales/ReturnOrderDetail.tsx:317 -#: src/pages/sales/ReturnOrderDetail.tsx:326 -#: src/pages/sales/SalesOrderDetail.tsx:355 -#: src/pages/sales/SalesOrderDetail.tsx:364 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:340 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:349 +#: src/pages/sales/ReturnOrderDetail.tsx:154 +#: src/pages/sales/ReturnOrderDetail.tsx:318 +#: src/pages/sales/ReturnOrderDetail.tsx:327 +#: src/pages/sales/SalesOrderDetail.tsx:356 +#: src/pages/sales/SalesOrderDetail.tsx:365 msgid "Line Items" msgstr "ラインアイテム" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:363 -#: src/pages/sales/ReturnOrderDetail.tsx:341 -#: src/pages/sales/SalesOrderDetail.tsx:378 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:364 +#: src/pages/sales/ReturnOrderDetail.tsx:342 +#: src/pages/sales/SalesOrderDetail.tsx:379 msgid "Extra Line Items" msgstr "追加項目" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:405 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:410 msgid "Issue Purchase Order" msgstr "発注書の発行" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:413 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:418 msgid "Cancel Purchase Order" msgstr "発注書のキャンセル" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:421 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:426 msgid "Hold Purchase Order" msgstr "発注書の保留" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:429 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:434 msgid "Complete Purchase Order" msgstr "完全な発注書" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:485 -#: src/pages/sales/ReturnOrderDetail.tsx:496 -#: src/pages/sales/SalesOrderDetail.tsx:549 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:490 +#: src/pages/sales/ReturnOrderDetail.tsx:501 +#: src/pages/sales/SalesOrderDetail.tsx:554 msgid "Order Actions" msgstr "注文の操作" -#: src/pages/sales/ReturnOrderDetail.tsx:114 -#: src/pages/sales/SalesOrderDetail.tsx:104 -#: src/pages/sales/SalesOrderShipmentDetail.tsx:134 +#: src/pages/sales/ReturnOrderDetail.tsx:115 +#: src/pages/sales/SalesOrderDetail.tsx:105 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:132 #: src/tables/sales/SalesOrderTable.tsx:141 msgid "Customer Reference" msgstr "得意先参照" -#: src/pages/sales/ReturnOrderDetail.tsx:195 +#: src/pages/sales/ReturnOrderDetail.tsx:196 msgid "Return Address" msgstr "" -#: src/pages/sales/ReturnOrderDetail.tsx:201 -#: src/pages/sales/SalesOrderDetail.tsx:194 -#: src/pages/sales/SalesOrderShipmentDetail.tsx:181 +#: src/pages/sales/ReturnOrderDetail.tsx:202 +#: src/pages/sales/SalesOrderDetail.tsx:195 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:179 msgid "Not specified" msgstr "" @@ -8248,117 +8346,117 @@ msgstr "" #~ msgid "Order canceled" #~ msgstr "Order canceled" -#: src/pages/sales/ReturnOrderDetail.tsx:389 +#: src/pages/sales/ReturnOrderDetail.tsx:394 msgid "Edit Return Order" msgstr "返品注文の編集" -#: src/pages/sales/ReturnOrderDetail.tsx:407 +#: src/pages/sales/ReturnOrderDetail.tsx:412 #: src/tables/sales/ReturnOrderTable.tsx:154 #: src/tables/sales/ReturnOrderTable.tsx:167 msgid "Add Return Order" msgstr "返品注文の追加" -#: src/pages/sales/ReturnOrderDetail.tsx:416 +#: src/pages/sales/ReturnOrderDetail.tsx:421 msgid "Issue Return Order" msgstr "返品注文の発行" -#: src/pages/sales/ReturnOrderDetail.tsx:424 +#: src/pages/sales/ReturnOrderDetail.tsx:429 msgid "Cancel Return Order" msgstr "返品注文のキャンセル" -#: src/pages/sales/ReturnOrderDetail.tsx:432 +#: src/pages/sales/ReturnOrderDetail.tsx:437 msgid "Hold Return Order" msgstr "返品注文の保留" -#: src/pages/sales/ReturnOrderDetail.tsx:440 +#: src/pages/sales/ReturnOrderDetail.tsx:445 msgid "Complete Return Order" msgstr "リターンオーダー" -#: src/pages/sales/SalesOrderDetail.tsx:153 +#: src/pages/sales/SalesOrderDetail.tsx:154 msgid "Completed Shipments" msgstr "完了した出荷" -#: src/pages/sales/SalesOrderDetail.tsx:188 -#: src/pages/sales/SalesOrderShipmentDetail.tsx:170 +#: src/pages/sales/SalesOrderDetail.tsx:189 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:168 msgid "Shipping Address" msgstr "" -#: src/pages/sales/SalesOrderDetail.tsx:316 +#: src/pages/sales/SalesOrderDetail.tsx:317 msgid "Edit Sales Order" msgstr "販売注文の編集" -#: src/pages/sales/SalesOrderDetail.tsx:338 +#: src/pages/sales/SalesOrderDetail.tsx:339 #: src/tables/sales/SalesOrderTable.tsx:108 #: src/tables/sales/SalesOrderTable.tsx:121 msgid "Add Sales Order" msgstr "販売注文の追加" -#: src/pages/sales/SalesOrderDetail.tsx:396 +#: src/pages/sales/SalesOrderDetail.tsx:397 #: src/tables/sales/SalesOrderTable.tsx:147 msgid "Shipments" msgstr "発送" -#: src/pages/sales/SalesOrderDetail.tsx:443 +#: src/pages/sales/SalesOrderDetail.tsx:448 msgid "Issue Sales Order" msgstr "販売注文書の発行" -#: src/pages/sales/SalesOrderDetail.tsx:451 +#: src/pages/sales/SalesOrderDetail.tsx:456 msgid "Cancel Sales Order" msgstr "販売注文のキャンセル" -#: src/pages/sales/SalesOrderDetail.tsx:459 +#: src/pages/sales/SalesOrderDetail.tsx:464 msgid "Hold Sales Order" msgstr "販売注文の保留" -#: src/pages/sales/SalesOrderDetail.tsx:467 +#: src/pages/sales/SalesOrderDetail.tsx:472 msgid "Ship Sales Order" msgstr "販売注文の発送" -#: src/pages/sales/SalesOrderDetail.tsx:469 +#: src/pages/sales/SalesOrderDetail.tsx:474 msgid "Ship this order?" msgstr "この注文を発送しますか?" -#: src/pages/sales/SalesOrderDetail.tsx:470 +#: src/pages/sales/SalesOrderDetail.tsx:475 msgid "Order shipped" msgstr "発送済み注文" -#: src/pages/sales/SalesOrderDetail.tsx:478 +#: src/pages/sales/SalesOrderDetail.tsx:483 msgid "Complete Sales Order" msgstr "完全な販売注文" -#: src/pages/sales/SalesOrderDetail.tsx:523 +#: src/pages/sales/SalesOrderDetail.tsx:528 msgid "Ship Order" msgstr "船舶発注" -#: src/pages/sales/SalesOrderShipmentDetail.tsx:142 -#: src/tables/sales/SalesOrderShipmentTable.tsx:135 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:140 +#: src/tables/sales/SalesOrderShipmentTable.tsx:156 msgid "Shipment Reference" msgstr "出荷基準" -#: src/pages/sales/SalesOrderShipmentDetail.tsx:148 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:146 msgid "Tracking Number" msgstr "追跡番号" -#: src/pages/sales/SalesOrderShipmentDetail.tsx:156 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:154 msgid "Invoice Number" msgstr "請求書番号" -#: src/pages/sales/SalesOrderShipmentDetail.tsx:191 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:189 msgid "Allocated Items" msgstr "割当項目" -#: src/pages/sales/SalesOrderShipmentDetail.tsx:196 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:194 msgid "Checked By" msgstr "" -#: src/pages/sales/SalesOrderShipmentDetail.tsx:202 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:200 msgid "Not checked" msgstr "" -#: src/pages/sales/SalesOrderShipmentDetail.tsx:208 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:206 #: src/tables/ColumnRenderers.tsx:518 #: src/tables/sales/SalesOrderAllocationTable.tsx:182 -#: src/tables/sales/SalesOrderShipmentTable.tsx:168 +#: src/tables/sales/SalesOrderShipmentTable.tsx:189 msgid "Shipment Date" msgstr "出荷日" @@ -8366,108 +8464,82 @@ msgstr "出荷日" #~ msgid "Assigned Items" #~ msgstr "Assigned Items" -#: src/pages/sales/SalesOrderShipmentDetail.tsx:216 -#: src/tables/sales/SalesOrderShipmentTable.tsx:172 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:214 +#: src/tables/sales/SalesOrderShipmentTable.tsx:193 msgid "Delivery Date" msgstr "配達日" -#: src/pages/sales/SalesOrderShipmentDetail.tsx:255 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:253 msgid "Shipment Details" msgstr "出荷の詳細" -#: src/pages/sales/SalesOrderShipmentDetail.tsx:294 -#: src/pages/sales/SalesOrderShipmentDetail.tsx:438 -#: src/tables/sales/SalesOrderShipmentTable.tsx:90 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:292 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:406 +#: src/tables/sales/SalesOrderShipmentTable.tsx:97 msgid "Edit Shipment" msgstr "出荷の編集" -#: src/pages/sales/SalesOrderShipmentDetail.tsx:301 -#: src/pages/sales/SalesOrderShipmentDetail.tsx:457 -#: src/tables/sales/SalesOrderShipmentTable.tsx:82 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:299 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:425 +#: src/tables/sales/SalesOrderShipmentTable.tsx:89 msgid "Cancel Shipment" msgstr "出荷のキャンセル" -#: src/pages/sales/SalesOrderShipmentDetail.tsx:314 -#: src/tables/sales/SalesOrderShipmentTable.tsx:98 -#: src/tables/sales/SalesOrderShipmentTable.tsx:193 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:312 +#: src/tables/sales/SalesOrderShipmentTable.tsx:119 +#: src/tables/sales/SalesOrderShipmentTable.tsx:238 msgid "Complete Shipment" msgstr "完全出荷" -#: src/pages/sales/SalesOrderShipmentDetail.tsx:326 -#: src/pages/sales/SalesOrderShipmentDetail.tsx:328 -msgid "Check Shipment" -msgstr "" - -#: src/pages/sales/SalesOrderShipmentDetail.tsx:329 -msgid "Marking the shipment as checked indicates that you have verified that all items included in this shipment are correct" -msgstr "" - #: src/pages/sales/SalesOrderShipmentDetail.tsx:339 -msgid "Shipment marked as checked" -msgstr "" - -#: src/pages/sales/SalesOrderShipmentDetail.tsx:346 -#: src/pages/sales/SalesOrderShipmentDetail.tsx:348 -msgid "Uncheck Shipment" -msgstr "" - -#: src/pages/sales/SalesOrderShipmentDetail.tsx:349 -msgid "Marking the shipment as unchecked indicates that the shipment requires further verification" -msgstr "" - -#: src/pages/sales/SalesOrderShipmentDetail.tsx:359 -msgid "Shipment marked as unchecked" -msgstr "" - -#: src/pages/sales/SalesOrderShipmentDetail.tsx:371 #: src/tables/part/PartPurchaseOrdersTable.tsx:122 msgid "Pending" msgstr "処理待ち" -#: src/pages/sales/SalesOrderShipmentDetail.tsx:377 -#: src/tables/sales/SalesOrderShipmentTable.tsx:147 -#: src/tables/sales/SalesOrderShipmentTable.tsx:254 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:345 +#: src/tables/sales/SalesOrderShipmentTable.tsx:168 +#: src/tables/sales/SalesOrderShipmentTable.tsx:299 msgid "Checked" msgstr "" -#: src/pages/sales/SalesOrderShipmentDetail.tsx:383 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:351 msgid "Not Checked" msgstr "" -#: src/pages/sales/SalesOrderShipmentDetail.tsx:389 -#: src/tables/sales/SalesOrderShipmentTable.tsx:154 -#: src/tables/sales/SalesOrderShipmentTable.tsx:259 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:357 +#: src/tables/sales/SalesOrderShipmentTable.tsx:175 +#: src/tables/sales/SalesOrderShipmentTable.tsx:304 msgid "Shipped" msgstr "発送済み" -#: src/pages/sales/SalesOrderShipmentDetail.tsx:395 -#: src/tables/sales/SalesOrderShipmentTable.tsx:161 -#: src/tables/sales/SalesOrderShipmentTable.tsx:264 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:363 +#: src/tables/sales/SalesOrderShipmentTable.tsx:182 +#: src/tables/sales/SalesOrderShipmentTable.tsx:309 #: src/tables/settings/EmailTable.tsx:31 msgid "Delivered" msgstr "配送済み" -#: src/pages/sales/SalesOrderShipmentDetail.tsx:410 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:378 msgid "Send Shipment" msgstr "発送" -#: src/pages/sales/SalesOrderShipmentDetail.tsx:433 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:401 msgid "Shipment Actions" msgstr "出荷アクション" -#: src/pages/sales/SalesOrderShipmentDetail.tsx:442 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:410 msgid "Check" msgstr "" -#: src/pages/sales/SalesOrderShipmentDetail.tsx:443 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:411 msgid "Mark shipment as checked" msgstr "" -#: src/pages/sales/SalesOrderShipmentDetail.tsx:449 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:417 msgid "Uncheck" msgstr "" -#: src/pages/sales/SalesOrderShipmentDetail.tsx:450 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:418 msgid "Mark shipment as unchecked" msgstr "" @@ -8775,13 +8847,6 @@ msgstr "サーバーからのアイコンパッケージの読み込みエラー msgid "Part is not active" msgstr "パートはアクティブではありません" -#: src/tables/ColumnRenderers.tsx:73 -#: src/tables/bom/BomTable.tsx:657 -#: src/tables/part/PartParameterTable.tsx:227 -#: src/tables/part/PartTestTemplateTable.tsx:258 -msgid "Part is Locked" -msgstr "部品がロックされています" - #: src/tables/ColumnRenderers.tsx:78 msgid "You are subscribed to notifications for this part" msgstr "このパートに関する通知を購読しています。" @@ -9219,13 +9284,13 @@ msgstr "" #~ msgstr "Show asssmbled items" #: src/tables/bom/BomTable.tsx:315 -#: src/tables/build/BuildLineTable.tsx:276 +#: src/tables/build/BuildLineTable.tsx:277 #: src/tables/part/PartTable.tsx:145 msgid "External stock" msgstr "外部在庫" #: src/tables/bom/BomTable.tsx:323 -#: src/tables/build/BuildLineTable.tsx:239 +#: src/tables/build/BuildLineTable.tsx:240 msgid "Includes substitute stock" msgstr "代用株を含む" @@ -9234,7 +9299,7 @@ msgstr "代用株を含む" #~ msgstr "Edit Bom Item" #: src/tables/bom/BomTable.tsx:332 -#: src/tables/build/BuildLineTable.tsx:249 +#: src/tables/build/BuildLineTable.tsx:250 #: src/tables/sales/SalesOrderLineItemTable.tsx:166 msgid "Includes variant stock" msgstr "バリアントストック付き" @@ -9272,8 +9337,8 @@ msgid "Stock Information" msgstr "株式情報" #: src/tables/bom/BomTable.tsx:399 -#: src/tables/build/BuildLineTable.tsx:496 -#: src/tables/build/BuildLineTable.tsx:537 +#: src/tables/build/BuildLineTable.tsx:497 +#: src/tables/build/BuildLineTable.tsx:538 msgid "Consumable item" msgstr "消耗品" @@ -9282,7 +9347,7 @@ msgid "No available stock" msgstr "在庫なし" #: src/tables/bom/BomTable.tsx:420 -#: src/tables/build/BuildLineTable.tsx:213 +#: src/tables/build/BuildLineTable.tsx:214 msgid "Show testable items" msgstr "テスト可能な項目を表示" @@ -9291,7 +9356,7 @@ msgid "Show trackable items" msgstr "追跡可能なアイテムの表示" #: src/tables/bom/BomTable.tsx:430 -#: src/tables/build/BuildLineTable.tsx:208 +#: src/tables/build/BuildLineTable.tsx:209 msgid "Show assembled items" msgstr "組み立てられた商品を表示" @@ -9335,7 +9400,7 @@ msgstr "バリアント置換が可能な項目を表示" #: src/tables/bom/BomTable.tsx:464 #: src/tables/bom/UsedInTable.tsx:85 -#: src/tables/build/BuildLineTable.tsx:202 +#: src/tables/build/BuildLineTable.tsx:203 msgid "Optional" msgstr "オプション" @@ -9345,7 +9410,7 @@ msgid "Show optional items" msgstr "オプション項目の表示" #: src/tables/bom/BomTable.tsx:469 -#: src/tables/build/BuildLineTable.tsx:197 +#: src/tables/build/BuildLineTable.tsx:198 msgid "Consumable" msgstr "消耗品" @@ -9420,6 +9485,7 @@ msgid "Add a single BOM item" msgstr "" #: src/tables/bom/BomTable.tsx:637 +#: src/tables/general/ParameterTable.tsx:206 #: src/tables/part/PartTable.tsx:546 msgid "Import from File" msgstr "" @@ -9433,8 +9499,8 @@ msgid "Bill of materials cannot be edited, as the part is locked" msgstr "部品がロックされているため、部品表を編集できません。" #: src/tables/bom/UsedInTable.tsx:34 -#: src/tables/build/BuildLineTable.tsx:207 -#: src/tables/part/ParametricPartTable.tsx:364 +#: src/tables/build/BuildLineTable.tsx:208 +#: src/tables/part/ParametricPartTable.tsx:29 #: src/tables/part/PartBuildAllocationsTable.tsx:60 #: src/tables/part/PartTable.tsx:209 #: src/tables/stock/StockItemTable.tsx:333 @@ -9455,11 +9521,11 @@ msgstr "追跡可能" msgid "Show trackable assemblies" msgstr "追跡可能なアセンブリの表示" -#: src/tables/build/BuildAllocatedStockTable.tsx:67 +#: src/tables/build/BuildAllocatedStockTable.tsx:64 msgid "Allocated to Output" msgstr "出力への割り当て" -#: src/tables/build/BuildAllocatedStockTable.tsx:68 +#: src/tables/build/BuildAllocatedStockTable.tsx:65 msgid "Show items allocated to a build output" msgstr "ビルド出力に割り当てられた項目を表示" @@ -9472,50 +9538,68 @@ msgstr "ビルド出力に割り当てられた項目を表示" #~ msgid "Include orders for part variants" #~ msgstr "Include orders for part variants" -#: src/tables/build/BuildAllocatedStockTable.tsx:97 +#: src/tables/build/BuildAllocatedStockTable.tsx:94 #: src/tables/part/PartBuildAllocationsTable.tsx:84 #: src/tables/part/PartPurchaseOrdersTable.tsx:132 #: src/tables/part/PartSalesAllocationsTable.tsx:69 #: src/tables/sales/SalesOrderAllocationTable.tsx:122 -#: src/tables/sales/SalesOrderShipmentTable.tsx:130 +#: src/tables/sales/SalesOrderShipmentTable.tsx:151 msgid "Order Status" msgstr "注文ステータス" +#: src/tables/build/BuildAllocatedStockTable.tsx:164 +#: src/tables/build/BuildLineTable.tsx:651 +msgid "Edit Stock Allocation" +msgstr "株式配分の編集" + #: src/tables/build/BuildAllocatedStockTable.tsx:164 #~ msgid "Edit Build Item" #~ msgstr "Edit Build Item" -#: src/tables/build/BuildAllocatedStockTable.tsx:167 -#: src/tables/build/BuildLineTable.tsx:650 -msgid "Edit Stock Allocation" -msgstr "株式配分の編集" - #: src/tables/build/BuildAllocatedStockTable.tsx:174 #~ msgid "Delete Build Item" #~ msgstr "Delete Build Item" +#: src/tables/build/BuildAllocatedStockTable.tsx:177 +#: src/tables/build/BuildLineTable.tsx:664 +#: src/tables/sales/SalesOrderAllocationTable.tsx:218 +msgid "Remove Allocated Stock" +msgstr "" + #: src/tables/build/BuildAllocatedStockTable.tsx:180 #: src/tables/build/BuildLineTable.tsx:663 -msgid "Delete Stock Allocation" -msgstr "株式割当の削除" +#~ msgid "Delete Stock Allocation" +#~ msgstr "Delete Stock Allocation" -#: src/tables/build/BuildAllocatedStockTable.tsx:239 +#: src/tables/build/BuildAllocatedStockTable.tsx:182 +#: src/tables/build/BuildLineTable.tsx:669 +#: src/tables/sales/SalesOrderAllocationTable.tsx:221 +msgid "Are you sure you want to remove this allocated stock from the order?" +msgstr "" + +#: src/tables/build/BuildAllocatedStockTable.tsx:242 msgid "Consume" msgstr "" +#: src/tables/build/BuildAllocatedStockTable.tsx:259 +#: src/tables/build/BuildLineTable.tsx:112 +#: src/tables/sales/SalesOrderAllocationTable.tsx:248 +msgid "Remove allocated stock" +msgstr "" + #: src/tables/build/BuildLineTable.tsx:59 #~ msgid "Show lines with available stock" #~ msgstr "Show lines with available stock" -#: src/tables/build/BuildLineTable.tsx:120 +#: src/tables/build/BuildLineTable.tsx:121 msgid "View Stock Item" msgstr "在庫を見る" -#: src/tables/build/BuildLineTable.tsx:183 +#: src/tables/build/BuildLineTable.tsx:184 msgid "Show fully allocated lines" msgstr "" -#: src/tables/build/BuildLineTable.tsx:188 +#: src/tables/build/BuildLineTable.tsx:189 msgid "Show fully consumed lines" msgstr "" @@ -9523,124 +9607,124 @@ msgstr "" #~ msgid "Show allocated lines" #~ msgstr "Show allocated lines" -#: src/tables/build/BuildLineTable.tsx:193 +#: src/tables/build/BuildLineTable.tsx:194 msgid "Show items with sufficient available stock" msgstr "" -#: src/tables/build/BuildLineTable.tsx:198 +#: src/tables/build/BuildLineTable.tsx:199 msgid "Show consumable lines" msgstr "消耗品ラインの表示" -#: src/tables/build/BuildLineTable.tsx:203 +#: src/tables/build/BuildLineTable.tsx:204 msgid "Show optional lines" msgstr "オプションラインの表示" -#: src/tables/build/BuildLineTable.tsx:212 +#: src/tables/build/BuildLineTable.tsx:213 #: src/tables/part/PartTable.tsx:233 msgid "Testable" msgstr "テスト可能" -#: src/tables/build/BuildLineTable.tsx:217 +#: src/tables/build/BuildLineTable.tsx:218 #: src/tables/stock/StockItemTable.tsx:388 msgid "Tracked" msgstr "追跡" -#: src/tables/build/BuildLineTable.tsx:218 +#: src/tables/build/BuildLineTable.tsx:219 msgid "Show tracked lines" msgstr "トラッキングラインの表示" -#: src/tables/build/BuildLineTable.tsx:223 +#: src/tables/build/BuildLineTable.tsx:224 msgid "Show items with stock on order" msgstr "" -#: src/tables/build/BuildLineTable.tsx:258 +#: src/tables/build/BuildLineTable.tsx:259 #: src/tables/sales/SalesOrderLineItemTable.tsx:172 msgid "In production" msgstr "生産中" -#: src/tables/build/BuildLineTable.tsx:286 +#: src/tables/build/BuildLineTable.tsx:287 msgid "Insufficient stock" msgstr "在庫不足" -#: src/tables/build/BuildLineTable.tsx:302 +#: src/tables/build/BuildLineTable.tsx:303 #: src/tables/sales/SalesOrderLineItemTable.tsx:160 #: src/tables/stock/StockItemTable.tsx:191 msgid "No stock available" msgstr "在庫なし" -#: src/tables/build/BuildLineTable.tsx:375 +#: src/tables/build/BuildLineTable.tsx:376 msgid "Gets Inherited" msgstr "継承" -#: src/tables/build/BuildLineTable.tsx:388 +#: src/tables/build/BuildLineTable.tsx:389 msgid "Unit Quantity" msgstr "単位 数量" -#: src/tables/build/BuildLineTable.tsx:415 +#: src/tables/build/BuildLineTable.tsx:416 msgid "Setup Quantity" msgstr "" -#: src/tables/build/BuildLineTable.tsx:424 +#: src/tables/build/BuildLineTable.tsx:425 msgid "Attrition" msgstr "" -#: src/tables/build/BuildLineTable.tsx:432 +#: src/tables/build/BuildLineTable.tsx:433 msgid "Rounding Multiple" msgstr "" -#: src/tables/build/BuildLineTable.tsx:441 +#: src/tables/build/BuildLineTable.tsx:442 msgid "BOM Information" msgstr "" -#: src/tables/build/BuildLineTable.tsx:515 +#: src/tables/build/BuildLineTable.tsx:516 #: src/tables/part/PartBuildAllocationsTable.tsx:102 msgid "Fully allocated" msgstr "" -#: src/tables/build/BuildLineTable.tsx:563 +#: src/tables/build/BuildLineTable.tsx:564 #: src/tables/sales/SalesOrderLineItemTable.tsx:311 msgid "Create Build Order" msgstr "ビルドオーダーの作成" -#: src/tables/build/BuildLineTable.tsx:592 +#: src/tables/build/BuildLineTable.tsx:593 msgid "Auto allocation in progress" msgstr "自動割り当て中" -#: src/tables/build/BuildLineTable.tsx:595 -#: src/tables/build/BuildLineTable.tsx:802 +#: src/tables/build/BuildLineTable.tsx:596 +#: src/tables/build/BuildLineTable.tsx:809 msgid "Auto Allocate Stock" msgstr "在庫の自動割り当て" -#: src/tables/build/BuildLineTable.tsx:596 +#: src/tables/build/BuildLineTable.tsx:597 msgid "Automatically allocate stock to this build according to the selected options" msgstr "選択されたオプションに従って、このビルドに在庫を自動的に割り当てます。" -#: src/tables/build/BuildLineTable.tsx:616 -#: src/tables/build/BuildLineTable.tsx:630 -#: src/tables/build/BuildLineTable.tsx:751 -#: src/tables/build/BuildLineTable.tsx:852 +#: src/tables/build/BuildLineTable.tsx:617 +#: src/tables/build/BuildLineTable.tsx:631 +#: src/tables/build/BuildLineTable.tsx:758 +#: src/tables/build/BuildLineTable.tsx:859 #: src/tables/build/BuildOutputTable.tsx:355 #: src/tables/build/BuildOutputTable.tsx:360 msgid "Deallocate Stock" msgstr "在庫処分" -#: src/tables/build/BuildLineTable.tsx:632 +#: src/tables/build/BuildLineTable.tsx:633 msgid "Deallocate all untracked stock for this build order" msgstr "このビルドオーダーのすべての未引当在庫を割り当て解除します。" -#: src/tables/build/BuildLineTable.tsx:634 +#: src/tables/build/BuildLineTable.tsx:635 msgid "Deallocate stock from the selected line item" msgstr "選択された品目から在庫を配分解除" -#: src/tables/build/BuildLineTable.tsx:638 +#: src/tables/build/BuildLineTable.tsx:639 msgid "Stock has been deallocated" msgstr "在庫の配分が終了しました" -#: src/tables/build/BuildLineTable.tsx:771 +#: src/tables/build/BuildLineTable.tsx:778 msgid "Build Stock" msgstr "ビルドストック" -#: src/tables/build/BuildLineTable.tsx:784 +#: src/tables/build/BuildLineTable.tsx:791 #: src/tables/sales/SalesOrderLineItemTable.tsx:487 msgid "View Part" msgstr "部品を見る" @@ -9739,7 +9823,7 @@ msgid "Serialize Build Output" msgstr "" #: src/tables/build/BuildOutputTable.tsx:405 -#: src/tables/part/PartTestResultTable.tsx:310 +#: src/tables/part/PartTestResultTable.tsx:318 #: src/tables/stock/StockItemTable.tsx:328 msgid "Filter by stock status" msgstr "在庫状況で絞り込む" @@ -9964,8 +10048,8 @@ msgid "View Item" msgstr "アイテムを見る" #: src/tables/general/ExtraLineItemTable.tsx:95 -#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:299 -#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:403 +#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:300 +#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:405 #: src/tables/sales/ReturnOrderLineItemTable.tsx:83 #: src/tables/sales/ReturnOrderLineItemTable.tsx:187 #: src/tables/sales/SalesOrderLineItemTable.tsx:252 @@ -9974,14 +10058,14 @@ msgid "Add Line Item" msgstr "項目追加" #: src/tables/general/ExtraLineItemTable.tsx:108 -#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:320 +#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:322 #: src/tables/sales/ReturnOrderLineItemTable.tsx:96 #: src/tables/sales/SalesOrderLineItemTable.tsx:271 msgid "Edit Line Item" msgstr "ラインアイテムの編集" #: src/tables/general/ExtraLineItemTable.tsx:117 -#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:329 +#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:331 #: src/tables/sales/ReturnOrderLineItemTable.tsx:105 #: src/tables/sales/SalesOrderLineItemTable.tsx:280 msgid "Delete Line Item" @@ -9991,6 +10075,137 @@ msgstr "行削除" msgid "Add Extra Line Item" msgstr "追加項目" +#: src/tables/general/ParameterTable.tsx:88 +msgid "Internal Units" +msgstr "内部ユニット" + +#: src/tables/general/ParameterTable.tsx:108 +#: src/tables/general/ParameterTable.tsx:123 +msgid "Updated By" +msgstr "" + +#: src/tables/general/ParameterTable.tsx:118 +msgid "Show parameters for enabled templates" +msgstr "" + +#: src/tables/general/ParameterTable.tsx:124 +msgid "Filter by user who last updated the parameter" +msgstr "" + +#: src/tables/general/ParameterTable.tsx:154 +msgid "Import Parameters" +msgstr "" + +#: src/tables/general/ParameterTable.tsx:164 +#: src/tables/general/ParametricDataTable.tsx:261 +#: src/tables/general/ParametricDataTable.tsx:392 +msgid "Add Parameter" +msgstr "パラメータ追加" + +#: src/tables/general/ParameterTable.tsx:175 +#: src/tables/general/ParameterTable.tsx:222 +#: src/tables/general/ParametricDataTable.tsx:285 +msgid "Edit Parameter" +msgstr "パラメータの編集" + +#: src/tables/general/ParameterTable.tsx:183 +#: src/tables/general/ParameterTable.tsx:230 +msgid "Delete Parameter" +msgstr "パラメータの削除" + +#: src/tables/general/ParameterTable.tsx:191 +msgid "Add Parameters" +msgstr "" + +#: src/tables/general/ParameterTable.tsx:197 +msgid "Create Parameter" +msgstr "" + +#: src/tables/general/ParameterTable.tsx:199 +msgid "Create a new parameter" +msgstr "" + +#: src/tables/general/ParameterTable.tsx:208 +msgid "Import parameters from a file" +msgstr "" + +#: src/tables/general/ParameterTemplateTable.tsx:48 +#: src/tables/general/ParameterTemplateTable.tsx:197 +msgid "Add Parameter Template" +msgstr "パラメータテンプレートの追加" + +#: src/tables/general/ParameterTemplateTable.tsx:64 +msgid "Duplicate Parameter Template" +msgstr "" + +#: src/tables/general/ParameterTemplateTable.tsx:78 +msgid "Delete Parameter Template" +msgstr "パラメータテンプレートの削除" + +#: src/tables/general/ParameterTemplateTable.tsx:85 +msgid "Edit Parameter Template" +msgstr "パラメータテンプレートの編集" + +#: src/tables/general/ParameterTemplateTable.tsx:138 +msgid "Checkbox" +msgstr "チェックボックス" + +#: src/tables/general/ParameterTemplateTable.tsx:139 +msgid "Show checkbox templates" +msgstr "チェックボックステンプレートを表示" + +#: src/tables/general/ParameterTemplateTable.tsx:143 +msgid "Has choices" +msgstr "選択肢があります" + +#: src/tables/general/ParameterTemplateTable.tsx:144 +msgid "Show templates with choices" +msgstr "選択肢のあるテンプレートを表示" + +#: src/tables/general/ParameterTemplateTable.tsx:148 +#: src/tables/part/PartTable.tsx:245 +msgid "Has Units" +msgstr "ユニット" + +#: src/tables/general/ParameterTemplateTable.tsx:149 +msgid "Show templates with units" +msgstr "単位付きテンプレートの表示" + +#: src/tables/general/ParameterTemplateTable.tsx:154 +msgid "Show enabled templates" +msgstr "" + +#: src/tables/general/ParameterTemplateTable.tsx:158 +#: src/tables/settings/ImportSessionTable.tsx:111 +#: src/tables/settings/TemplateTable.tsx:368 +msgid "Model Type" +msgstr "モデルタイプ" + +#: src/tables/general/ParameterTemplateTable.tsx:159 +msgid "Filter by model type" +msgstr "" + +#: src/tables/general/ParametricDataTable.tsx:79 +msgid "Click to edit" +msgstr "(打ち間違いはありませんか? 今なら編集が可能です。)" + +#: src/tables/general/ParametricDataTableFilters.tsx:36 +msgid "True" +msgstr "" + +#: src/tables/general/ParametricDataTableFilters.tsx:37 +msgid "False" +msgstr "" + +#: src/tables/general/ParametricDataTableFilters.tsx:47 +#: src/tables/general/ParametricDataTableFilters.tsx:80 +msgid "Select a choice" +msgstr "" + +#: src/tables/general/ParametricDataTableFilters.tsx:100 +msgid "Enter a value" +msgstr "" + #: src/tables/machine/MachineListTable.tsx:133 msgid "Machine restarted" msgstr "マシン再起動" @@ -10071,7 +10286,7 @@ msgid "Initialized" msgstr "初期化" #: src/tables/machine/MachineListTable.tsx:410 -#: src/tables/machine/MachineTypeTable.tsx:307 +#: src/tables/machine/MachineTypeTable.tsx:305 msgid "No errors reported" msgstr "エラーなし" @@ -10132,15 +10347,15 @@ msgstr "内蔵ドライバー" #~ msgid "Machine type information" #~ msgstr "Machine type information" -#: src/tables/machine/MachineTypeTable.tsx:128 +#: src/tables/machine/MachineTypeTable.tsx:126 msgid "Not Found" msgstr "みつかりません" -#: src/tables/machine/MachineTypeTable.tsx:131 +#: src/tables/machine/MachineTypeTable.tsx:129 msgid "Machine type not found." msgstr "マシンタイプが見つかりません。" -#: src/tables/machine/MachineTypeTable.tsx:141 +#: src/tables/machine/MachineTypeTable.tsx:139 msgid "Machine Type Information" msgstr "マシンタイプ情報" @@ -10148,34 +10363,34 @@ msgstr "マシンタイプ情報" #~ msgid "Available drivers" #~ msgstr "Available drivers" -#: src/tables/machine/MachineTypeTable.tsx:156 -#: src/tables/machine/MachineTypeTable.tsx:255 +#: src/tables/machine/MachineTypeTable.tsx:154 +#: src/tables/machine/MachineTypeTable.tsx:253 msgid "Slug" msgstr "スラッグ" -#: src/tables/machine/MachineTypeTable.tsx:167 -#: src/tables/machine/MachineTypeTable.tsx:276 +#: src/tables/machine/MachineTypeTable.tsx:165 +#: src/tables/machine/MachineTypeTable.tsx:274 msgid "Provider plugin" msgstr "プロバイダプラグイン" -#: src/tables/machine/MachineTypeTable.tsx:179 -#: src/tables/machine/MachineTypeTable.tsx:288 +#: src/tables/machine/MachineTypeTable.tsx:177 +#: src/tables/machine/MachineTypeTable.tsx:286 msgid "Provider file" msgstr "プロバイダーファイル" -#: src/tables/machine/MachineTypeTable.tsx:194 +#: src/tables/machine/MachineTypeTable.tsx:192 msgid "Available Drivers" msgstr "利用可能なドライバー" -#: src/tables/machine/MachineTypeTable.tsx:234 +#: src/tables/machine/MachineTypeTable.tsx:232 msgid "Machine driver not found." msgstr "マシンドライバーが見つかりません。" -#: src/tables/machine/MachineTypeTable.tsx:242 +#: src/tables/machine/MachineTypeTable.tsx:240 msgid "Machine driver information" msgstr "マシンドライバー情報" -#: src/tables/machine/MachineTypeTable.tsx:262 +#: src/tables/machine/MachineTypeTable.tsx:260 msgid "Machine type" msgstr "マシンタイプ" @@ -10187,15 +10402,15 @@ msgstr "マシンタイプ" #~ msgid "Machine driver detail" #~ msgstr "Machine driver detail" -#: src/tables/machine/MachineTypeTable.tsx:362 +#: src/tables/machine/MachineTypeTable.tsx:360 msgid "Builtin type" msgstr "内蔵タイプ" -#: src/tables/machine/MachineTypeTable.tsx:371 +#: src/tables/machine/MachineTypeTable.tsx:369 msgid "Machine Type Detail" msgstr "マシンタイプ詳細" -#: src/tables/machine/MachineTypeTable.tsx:381 +#: src/tables/machine/MachineTypeTable.tsx:379 msgid "Machine Driver Detail" msgstr "マシンドライバー詳細" @@ -10213,52 +10428,31 @@ msgstr "通知" msgid "Message" msgstr "メッセージ" -#: src/tables/part/ParametricPartTable.tsx:78 -msgid "Click to edit" -msgstr "(打ち間違いはありませんか? 今なら編集が可能です。)" +#: src/tables/part/ParametricPartTable.tsx:20 +msgid "Show active parts" +msgstr "アクティブパーツの表示" + +#: src/tables/part/ParametricPartTable.tsx:25 +msgid "Show locked parts" +msgstr "ロックされた部分を表示" + +#: src/tables/part/ParametricPartTable.tsx:30 +msgid "Show assembly parts" +msgstr "組立部品の表示" #: src/tables/part/ParametricPartTable.tsx:82 #~ msgid "Edit parameter" #~ msgstr "Edit parameter" #: src/tables/part/ParametricPartTable.tsx:244 -msgid "Add Part Parameter" -msgstr "部品パラメータの追加" +#~ msgid "Add Part Parameter" +#~ msgstr "Add Part Parameter" #: src/tables/part/ParametricPartTable.tsx:258 #: src/tables/part/PartParameterTable.tsx:164 #: src/tables/part/PartParameterTable.tsx:187 -msgid "Edit Part Parameter" -msgstr "パートパラメータの編集" - -#: src/tables/part/ParametricPartTable.tsx:355 -msgid "Show active parts" -msgstr "アクティブパーツの表示" - -#: src/tables/part/ParametricPartTable.tsx:360 -msgid "Show locked parts" -msgstr "ロックされた部分を表示" - -#: src/tables/part/ParametricPartTable.tsx:365 -msgid "Show assembly parts" -msgstr "組立部品の表示" - -#: src/tables/part/ParametricPartTableFilters.tsx:36 -msgid "True" -msgstr "" - -#: src/tables/part/ParametricPartTableFilters.tsx:37 -msgid "False" -msgstr "" - -#: src/tables/part/ParametricPartTableFilters.tsx:47 -#: src/tables/part/ParametricPartTableFilters.tsx:80 -msgid "Select a choice" -msgstr "" - -#: src/tables/part/ParametricPartTableFilters.tsx:100 -msgid "Enter a value" -msgstr "" +#~ msgid "Edit Part Parameter" +#~ msgstr "Edit Part Parameter" #: src/tables/part/PartBuildAllocationsTable.tsx:64 msgid "Assembly IPN" @@ -10273,7 +10467,7 @@ msgid "Required Stock" msgstr "必要在庫" #: src/tables/part/PartBuildAllocationsTable.tsx:124 -#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:381 +#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:383 msgid "View Build Order" msgstr "ビルドオーダーを見る" @@ -10332,85 +10526,22 @@ msgstr "カテゴリー・パラメーターの編集" msgid "Delete Category Parameter" msgstr "カテゴリー・パラメーターの削除" -#: src/tables/part/PartCategoryTemplateTable.tsx:87 -msgid "Parameter Template" -msgstr "パラメータテンプレート" - #: src/tables/part/PartCategoryTemplateTable.tsx:93 #~ msgid "[{0}]" #~ msgstr "[{0}]" -#: src/tables/part/PartParameterTable.tsx:108 -msgid "Internal Units" -msgstr "内部ユニット" - -#: src/tables/part/PartParameterTable.tsx:128 -#: src/tables/part/PartParameterTable.tsx:138 -msgid "Updated By" -msgstr "" - -#: src/tables/part/PartParameterTable.tsx:139 -msgid "Filter by user who last updated the parameter" -msgstr "" - #: src/tables/part/PartParameterTable.tsx:148 -msgid "New Part Parameter" -msgstr "新しい部品パラメータ" +#~ msgid "New Part Parameter" +#~ msgstr "New Part Parameter" #: src/tables/part/PartParameterTable.tsx:173 #: src/tables/part/PartParameterTable.tsx:195 -msgid "Delete Part Parameter" -msgstr "パートパラメータの削除" +#~ msgid "Delete Part Parameter" +#~ msgstr "Delete Part Parameter" #: src/tables/part/PartParameterTable.tsx:213 -msgid "Add parameter" -msgstr "パラメータ追加" - -#: src/tables/part/PartParameterTable.tsx:232 -msgid "Part parameters cannot be edited, as the part is locked" -msgstr "パートがロックされているため、パートパラメータを編集できません。" - -#: src/tables/part/PartParameterTemplateTable.tsx:36 -msgid "Checkbox" -msgstr "チェックボックス" - -#: src/tables/part/PartParameterTemplateTable.tsx:37 -msgid "Show checkbox templates" -msgstr "チェックボックステンプレートを表示" - -#: src/tables/part/PartParameterTemplateTable.tsx:41 -msgid "Has choices" -msgstr "選択肢があります" - -#: src/tables/part/PartParameterTemplateTable.tsx:42 -msgid "Show templates with choices" -msgstr "選択肢のあるテンプレートを表示" - -#: src/tables/part/PartParameterTemplateTable.tsx:46 -#: src/tables/part/PartTable.tsx:245 -msgid "Has Units" -msgstr "ユニット" - -#: src/tables/part/PartParameterTemplateTable.tsx:47 -msgid "Show templates with units" -msgstr "単位付きテンプレートの表示" - -#: src/tables/part/PartParameterTemplateTable.tsx:91 -#: src/tables/part/PartParameterTemplateTable.tsx:166 -msgid "Add Parameter Template" -msgstr "パラメータテンプレートの追加" - -#: src/tables/part/PartParameterTemplateTable.tsx:105 -msgid "Duplicate Parameter Template" -msgstr "" - -#: src/tables/part/PartParameterTemplateTable.tsx:117 -msgid "Edit Parameter Template" -msgstr "パラメータテンプレートの編集" - -#: src/tables/part/PartParameterTemplateTable.tsx:128 -msgid "Delete Parameter Template" -msgstr "パラメータテンプレートの削除" +#~ msgid "Add parameter" +#~ msgstr "Add parameter" #: src/tables/part/PartParameterTemplateTable.tsx:141 #~ msgid "Add parameter template" @@ -10430,7 +10561,7 @@ msgid "Show received items" msgstr "受信アイテムの表示" #: src/tables/part/PartSalesAllocationsTable.tsx:90 -#: src/tables/sales/SalesOrderShipmentTable.tsx:218 +#: src/tables/sales/SalesOrderShipmentTable.tsx:263 msgid "View Sales Order" msgstr "販売オーダーを見る" @@ -10617,8 +10748,8 @@ msgstr "" #: src/tables/part/PartTestResultTable.tsx:103 #: src/tables/part/PartTestResultTable.tsx:181 -#: src/tables/part/PartTestResultTable.tsx:320 -#: src/tables/part/PartTestResultTable.tsx:334 +#: src/tables/part/PartTestResultTable.tsx:328 +#: src/tables/part/PartTestResultTable.tsx:342 #: src/tables/stock/StockItemTestResultTable.tsx:296 #: src/tables/stock/StockItemTestResultTable.tsx:368 #: src/tables/stock/StockItemTestResultTable.tsx:429 @@ -10643,7 +10774,7 @@ msgstr "" msgid "No Result" msgstr "結果なし" -#: src/tables/part/PartTestResultTable.tsx:298 +#: src/tables/part/PartTestResultTable.tsx:306 msgid "Show build outputs currently in production" msgstr "現在生産中のビルド出力を表示" @@ -11013,36 +11144,45 @@ msgstr "インストール済み" #~ msgid "Parameter updated" #~ msgstr "Parameter updated" -#: src/tables/purchasing/ManufacturerPartParameterTable.tsx:63 -#: src/tables/purchasing/ManufacturerPartParameterTable.tsx:112 -msgid "Add Parameter" -msgstr "パラメータ追加" - #: src/tables/purchasing/ManufacturerPartParameterTable.tsx:73 #~ msgid "Parameter deleted" #~ msgstr "Parameter deleted" -#: src/tables/purchasing/ManufacturerPartParameterTable.tsx:74 -msgid "Edit Parameter" -msgstr "パラメータの編集" - #: src/tables/purchasing/ManufacturerPartParameterTable.tsx:74 #~ msgid "Are you sure you want to delete this parameter?" #~ msgstr "Are you sure you want to delete this parameter?" -#: src/tables/purchasing/ManufacturerPartParameterTable.tsx:82 -msgid "Delete Parameter" -msgstr "パラメータの削除" - -#: src/tables/purchasing/ManufacturerPartTable.tsx:63 -#~ msgid "Create Manufacturer Part" -#~ msgstr "Create Manufacturer Part" - +#: src/tables/purchasing/ManufacturerPartParametricTable.tsx:34 #: src/tables/purchasing/ManufacturerPartTable.tsx:82 #: src/tables/purchasing/SupplierPartTable.tsx:99 msgid "MPN" msgstr "MPN" +#: src/tables/purchasing/ManufacturerPartParametricTable.tsx:44 +#: src/tables/purchasing/ManufacturerPartTable.tsx:134 +#: src/tables/purchasing/SupplierPartTable.tsx:220 +msgid "Active Part" +msgstr "アクティブパート" + +#: src/tables/purchasing/ManufacturerPartParametricTable.tsx:45 +#: src/tables/purchasing/ManufacturerPartTable.tsx:135 +msgid "Show manufacturer parts for active internal parts." +msgstr "" + +#: src/tables/purchasing/ManufacturerPartParametricTable.tsx:50 +#: src/tables/purchasing/ManufacturerPartTable.tsx:140 +msgid "Active Manufacturer" +msgstr "" + +#: src/tables/purchasing/ManufacturerPartParametricTable.tsx:51 +#: src/tables/purchasing/ManufacturerPartTable.tsx:142 +msgid "Show manufacturer parts for active manufacturers." +msgstr "" + +#: src/tables/purchasing/ManufacturerPartTable.tsx:63 +#~ msgid "Create Manufacturer Part" +#~ msgstr "Create Manufacturer Part" + #: src/tables/purchasing/ManufacturerPartTable.tsx:100 #~ msgid "Manufacturer part updated" #~ msgstr "Manufacturer part updated" @@ -11055,25 +11195,8 @@ msgstr "MPN" #~ msgid "Are you sure you want to remove this manufacturer part?" #~ msgstr "Are you sure you want to remove this manufacturer part?" -#: src/tables/purchasing/ManufacturerPartTable.tsx:134 -#: src/tables/purchasing/SupplierPartTable.tsx:220 -msgid "Active Part" -msgstr "アクティブパート" - -#: src/tables/purchasing/ManufacturerPartTable.tsx:135 -msgid "Show manufacturer parts for active internal parts." -msgstr "" - -#: src/tables/purchasing/ManufacturerPartTable.tsx:140 -msgid "Active Manufacturer" -msgstr "" - -#: src/tables/purchasing/ManufacturerPartTable.tsx:142 -msgid "Show manufacturer parts for active manufacturers." -msgstr "" - #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:115 -#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:397 +#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:399 msgid "Import Line Items" msgstr "ラインアイテムのインポート" @@ -11099,11 +11222,11 @@ msgstr "受領済みの品目を表示" #~ msgid "Add line item" #~ msgstr "Add line item" -#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:350 +#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:352 msgid "Receive line item" msgstr "品目を受け取る" -#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:414 +#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:416 msgid "Receive items" msgstr "商品を受け取る" @@ -11201,25 +11324,25 @@ msgid "Not shipped" msgstr "未出荷" #: src/tables/sales/SalesOrderAllocationTable.tsx:211 -#: src/tables/sales/SalesOrderAllocationTable.tsx:229 +#: src/tables/sales/SalesOrderAllocationTable.tsx:235 msgid "Edit Allocation" msgstr "編集配分" #: src/tables/sales/SalesOrderAllocationTable.tsx:218 #: src/tables/sales/SalesOrderAllocationTable.tsx:241 -msgid "Delete Allocation" -msgstr "割り当ての削除" +#~ msgid "Delete Allocation" +#~ msgstr "Delete Allocation" -#: src/tables/sales/SalesOrderAllocationTable.tsx:252 -#: src/tables/sales/SalesOrderAllocationTable.tsx:253 +#: src/tables/sales/SalesOrderAllocationTable.tsx:261 +#: src/tables/sales/SalesOrderAllocationTable.tsx:262 msgid "View Shipment" msgstr "出荷を見る" -#: src/tables/sales/SalesOrderAllocationTable.tsx:308 +#: src/tables/sales/SalesOrderAllocationTable.tsx:317 msgid "Assign to Shipment" msgstr "出荷への割り当て" -#: src/tables/sales/SalesOrderAllocationTable.tsx:324 +#: src/tables/sales/SalesOrderAllocationTable.tsx:333 msgid "Assign to shipment" msgstr "出荷への割り当て" @@ -11259,35 +11382,35 @@ msgstr "注文在庫" #~ msgid "Delete Shipment" #~ msgstr "Delete Shipment" -#: src/tables/sales/SalesOrderShipmentTable.tsx:72 +#: src/tables/sales/SalesOrderShipmentTable.tsx:79 msgid "Create Shipment" msgstr "出荷の作成" -#: src/tables/sales/SalesOrderShipmentTable.tsx:143 +#: src/tables/sales/SalesOrderShipmentTable.tsx:164 msgid "Items" msgstr "アイテム" -#: src/tables/sales/SalesOrderShipmentTable.tsx:203 +#: src/tables/sales/SalesOrderShipmentTable.tsx:248 msgid "Edit shipment" msgstr "出荷の編集" -#: src/tables/sales/SalesOrderShipmentTable.tsx:211 +#: src/tables/sales/SalesOrderShipmentTable.tsx:256 msgid "Cancel shipment" msgstr "出荷のキャンセル" -#: src/tables/sales/SalesOrderShipmentTable.tsx:241 +#: src/tables/sales/SalesOrderShipmentTable.tsx:286 msgid "Add shipment" msgstr "貨物の追加" -#: src/tables/sales/SalesOrderShipmentTable.tsx:255 +#: src/tables/sales/SalesOrderShipmentTable.tsx:300 msgid "Show shipments which have been checked" msgstr "" -#: src/tables/sales/SalesOrderShipmentTable.tsx:260 +#: src/tables/sales/SalesOrderShipmentTable.tsx:305 msgid "Show shipments which have been shipped" msgstr "出荷済み貨物の表示" -#: src/tables/sales/SalesOrderShipmentTable.tsx:265 +#: src/tables/sales/SalesOrderShipmentTable.tsx:310 msgid "Show shipments which have been delivered" msgstr "配送済みの貨物の表示" @@ -11621,11 +11744,6 @@ msgstr "アップロード" msgid "Imported Rows" msgstr "インポートされた行" -#: src/tables/settings/ImportSessionTable.tsx:111 -#: src/tables/settings/TemplateTable.tsx:368 -msgid "Model Type" -msgstr "モデルタイプ" - #: src/tables/settings/ImportSessionTable.tsx:112 #: src/tables/settings/TemplateTable.tsx:369 msgid "Filter by target model type" diff --git a/src/frontend/src/locales/ko/messages.po b/src/frontend/src/locales/ko/messages.po index 99695ddaf8..7bcfbd9901 100644 --- a/src/frontend/src/locales/ko/messages.po +++ b/src/frontend/src/locales/ko/messages.po @@ -8,7 +8,7 @@ msgstr "" "Language: ko\n" "Project-Id-Version: inventree\n" "Report-Msgid-Bugs-To: \n" -"PO-Revision-Date: 2025-11-19 19:39\n" +"PO-Revision-Date: 2025-12-07 07:36\n" "Last-Translator: \n" "Language-Team: Korean\n" "Plural-Forms: nplurals=1; plural=0;\n" @@ -30,7 +30,7 @@ msgid "Edit" msgstr "" #: lib/components/RowActions.tsx:56 -#: src/components/forms/ApiForm.tsx:735 +#: src/components/forms/ApiForm.tsx:754 #: src/components/items/ActionDropdown.tsx:257 #: src/components/items/RoleTable.tsx:155 #: src/hooks/UseForm.tsx:164 @@ -56,24 +56,24 @@ msgstr "" #: lib/components/RowActions.tsx:136 #: src/components/nav/NavigationDrawer.tsx:190 -#: src/forms/PurchaseOrderForms.tsx:802 +#: src/forms/PurchaseOrderForms.tsx:854 #: src/forms/StockForms.tsx:796 #: src/forms/StockForms.tsx:843 -#: src/forms/StockForms.tsx:889 -#: src/forms/StockForms.tsx:928 -#: src/forms/StockForms.tsx:964 -#: src/forms/StockForms.tsx:1050 +#: src/forms/StockForms.tsx:896 +#: src/forms/StockForms.tsx:942 +#: src/forms/StockForms.tsx:980 +#: src/forms/StockForms.tsx:1066 #: src/pages/Index/Settings/AccountSettings/MFASettings.tsx:962 msgid "Actions" msgstr "" #: lib/components/SearchInput.tsx:34 -#: src/components/forms/fields/RelatedModelField.tsx:408 +#: src/components/forms/fields/RelatedModelField.tsx:479 #: src/components/nav/Header.tsx:169 #: src/components/wizards/ImportPartWizard.tsx:200 #: src/components/wizards/ImportPartWizard.tsx:233 -#: src/pages/Index/Settings/UserSettings.tsx:74 -#: src/pages/part/PartDetail.tsx:1155 +#: src/pages/Index/Settings/UserSettings.tsx:75 +#: src/pages/part/PartDetail.tsx:1176 msgid "Search" msgstr "" @@ -95,7 +95,7 @@ msgstr "" msgid "No" msgstr "" -#: lib/enums/ModelInformation.tsx:28 +#: lib/enums/ModelInformation.tsx:29 #: src/components/wizards/OrderPartsWizard.tsx:279 #: src/forms/BuildForms.tsx:332 #: src/forms/BuildForms.tsx:407 @@ -103,208 +103,234 @@ msgstr "" #: src/forms/BuildForms.tsx:630 #: src/forms/BuildForms.tsx:793 #: src/forms/BuildForms.tsx:896 -#: src/forms/PurchaseOrderForms.tsx:798 +#: src/forms/PurchaseOrderForms.tsx:850 #: src/forms/ReturnOrderForms.tsx:242 -#: src/forms/SalesOrderForms.tsx:305 +#: src/forms/SalesOrderForms.tsx:384 #: src/forms/StockForms.tsx:360 #: src/forms/StockForms.tsx:791 #: src/forms/StockForms.tsx:838 -#: src/forms/StockForms.tsx:884 -#: src/forms/StockForms.tsx:923 -#: src/forms/StockForms.tsx:959 -#: src/forms/StockForms.tsx:1002 -#: src/forms/StockForms.tsx:1046 -#: src/forms/StockForms.tsx:1094 -#: src/forms/StockForms.tsx:1138 -#: src/pages/build/BuildDetail.tsx:200 -#: src/pages/part/PartDetail.tsx:1207 +#: src/forms/StockForms.tsx:891 +#: src/forms/StockForms.tsx:937 +#: src/forms/StockForms.tsx:975 +#: src/forms/StockForms.tsx:1018 +#: src/forms/StockForms.tsx:1062 +#: src/forms/StockForms.tsx:1110 +#: src/forms/StockForms.tsx:1154 +#: src/pages/build/BuildDetail.tsx:201 +#: src/pages/part/PartDetail.tsx:1228 #: src/tables/ColumnRenderers.tsx:91 +#: src/tables/part/PartTestResultTable.tsx:247 #: src/tables/part/RelatedPartTable.tsx:53 #: src/tables/stock/StockTrackingTable.tsx:87 msgid "Part" msgstr "" -#: lib/enums/ModelInformation.tsx:29 +#: lib/enums/ModelInformation.tsx:30 #: lib/enums/Roles.tsx:35 #: src/components/nav/NavigationDrawer.tsx:70 #: src/defaults/links.tsx:36 -#: src/pages/Index/Settings/SystemSettings.tsx:190 -#: src/pages/part/CategoryDetail.tsx:132 -#: src/pages/part/CategoryDetail.tsx:277 -#: src/pages/part/CategoryDetail.tsx:323 -#: src/pages/part/CategoryDetail.tsx:354 -#: src/pages/part/PartDetail.tsx:965 +#: src/pages/Index/Settings/SystemSettings.tsx:197 +#: src/pages/part/CategoryDetail.tsx:135 +#: src/pages/part/CategoryDetail.tsx:285 +#: src/pages/part/CategoryDetail.tsx:340 +#: src/pages/part/CategoryDetail.tsx:371 +#: src/pages/part/PartDetail.tsx:978 msgid "Parts" msgstr "" #: lib/enums/ModelInformation.tsx:37 #: src/pages/Index/Settings/AdminCenter/PartParameterPanel.tsx:13 -msgid "Part Parameter Template" -msgstr "" +#~ msgid "Part Parameter Template" +#~ msgstr "Part Parameter Template" #: lib/enums/ModelInformation.tsx:38 -msgid "Part Parameter Templates" +#~ msgid "Part Parameter Templates" +#~ msgstr "Part Parameter Templates" + +#: lib/enums/ModelInformation.tsx:39 +msgid "Parameter" +msgstr "" + +#: lib/enums/ModelInformation.tsx:40 +#: src/components/panels/ParametersPanel.tsx:19 +#: src/components/wizards/ImportPartWizard.tsx:807 +#: src/pages/Index/Settings/AdminCenter/Index.tsx:195 +#: src/pages/Index/Settings/SystemSettings.tsx:191 +#: src/pages/part/PartDetail.tsx:943 +msgid "Parameters" msgstr "" #: lib/enums/ModelInformation.tsx:45 -msgid "Part Test Template" +#: src/tables/part/PartCategoryTemplateTable.tsx:87 +msgid "Parameter Template" msgstr "" #: lib/enums/ModelInformation.tsx:46 -msgid "Part Test Templates" +#: src/pages/Index/Settings/AdminCenter/ParameterPanel.tsx:13 +msgid "Parameter Templates" msgstr "" #: lib/enums/ModelInformation.tsx:52 +msgid "Part Test Template" +msgstr "" + +#: lib/enums/ModelInformation.tsx:53 +msgid "Part Test Templates" +msgstr "" + +#: lib/enums/ModelInformation.tsx:59 #: src/components/wizards/OrderPartsWizard.tsx:290 -#: src/pages/company/SupplierPartDetail.tsx:413 +#: src/pages/company/SupplierPartDetail.tsx:418 #: src/pages/stock/StockDetail.tsx:289 -#: src/tables/build/BuildAllocatedStockTable.tsx:155 +#: src/tables/build/BuildAllocatedStockTable.tsx:152 #: src/tables/part/PartPurchaseOrdersTable.tsx:50 +#: src/tables/purchasing/SupplierPartParametricTable.tsx:29 #: src/tables/purchasing/SupplierPartTable.tsx:83 #: src/tables/stock/StockItemTable.tsx:247 msgid "Supplier Part" msgstr "" -#: lib/enums/ModelInformation.tsx:53 -#: src/pages/purchasing/PurchasingIndex.tsx:92 +#: lib/enums/ModelInformation.tsx:60 +#: src/pages/purchasing/PurchasingIndex.tsx:128 msgid "Supplier Parts" msgstr "" -#: lib/enums/ModelInformation.tsx:61 -#: src/pages/company/ManufacturerPartDetail.tsx:297 -#: src/pages/company/SupplierPartDetail.tsx:161 +#: lib/enums/ModelInformation.tsx:69 +#: src/pages/company/ManufacturerPartDetail.tsx:288 +#: src/pages/company/SupplierPartDetail.tsx:162 #: src/tables/part/PartPurchaseOrdersTable.tsx:56 #: src/tables/stock/StockItemTable.tsx:253 msgid "Manufacturer Part" msgstr "" -#: lib/enums/ModelInformation.tsx:62 -#: src/pages/purchasing/PurchasingIndex.tsx:109 +#: lib/enums/ModelInformation.tsx:70 +#: src/pages/purchasing/PurchasingIndex.tsx:177 msgid "Manufacturer Parts" msgstr "" -#: lib/enums/ModelInformation.tsx:70 -#: src/pages/part/CategoryDetail.tsx:354 +#: lib/enums/ModelInformation.tsx:79 +#: src/pages/part/CategoryDetail.tsx:371 #: src/tables/Filter.tsx:389 msgid "Part Category" msgstr "" -#: lib/enums/ModelInformation.tsx:71 +#: lib/enums/ModelInformation.tsx:80 #: lib/enums/Roles.tsx:37 -#: src/pages/part/CategoryDetail.tsx:271 -#: src/pages/part/CategoryDetail.tsx:345 -#: src/pages/part/PartDetail.tsx:1196 +#: src/pages/part/CategoryDetail.tsx:279 +#: src/pages/part/CategoryDetail.tsx:362 +#: src/pages/part/PartDetail.tsx:1217 msgid "Part Categories" msgstr "" -#: lib/enums/ModelInformation.tsx:79 +#: lib/enums/ModelInformation.tsx:88 #: src/forms/BuildForms.tsx:473 #: src/forms/BuildForms.tsx:633 #: src/forms/BuildForms.tsx:794 -#: src/forms/SalesOrderForms.tsx:307 +#: src/forms/SalesOrderForms.tsx:386 #: src/pages/stock/StockDetail.tsx:1005 -#: src/tables/part/PartTestResultTable.tsx:248 +#: src/tables/part/PartTestResultTable.tsx:256 #: src/tables/stock/StockTrackingTable.tsx:48 #: src/tables/stock/StockTrackingTable.tsx:55 msgid "Stock Item" msgstr "" -#: lib/enums/ModelInformation.tsx:80 +#: lib/enums/ModelInformation.tsx:89 #: lib/enums/Roles.tsx:45 -#: src/pages/company/CompanyDetail.tsx:210 -#: src/pages/part/CategoryDetail.tsx:291 +#: src/pages/company/CompanyDetail.tsx:211 +#: src/pages/part/CategoryDetail.tsx:314 #: src/pages/part/PartStockHistoryDetail.tsx:101 #: src/pages/stock/LocationDetail.tsx:121 #: src/pages/stock/LocationDetail.tsx:180 msgid "Stock Items" msgstr "" -#: lib/enums/ModelInformation.tsx:88 +#: lib/enums/ModelInformation.tsx:98 #: lib/enums/Roles.tsx:47 #: src/pages/stock/LocationDetail.tsx:420 msgid "Stock Location" msgstr "" -#: lib/enums/ModelInformation.tsx:89 +#: lib/enums/ModelInformation.tsx:99 #: src/pages/stock/LocationDetail.tsx:174 #: src/pages/stock/LocationDetail.tsx:412 #: src/pages/stock/StockDetail.tsx:996 msgid "Stock Locations" msgstr "" -#: lib/enums/ModelInformation.tsx:97 +#: lib/enums/ModelInformation.tsx:108 msgid "Stock Location Type" msgstr "" -#: lib/enums/ModelInformation.tsx:98 +#: lib/enums/ModelInformation.tsx:109 msgid "Stock Location Types" msgstr "" -#: lib/enums/ModelInformation.tsx:103 -#: src/pages/Index/Settings/SystemSettings.tsx:248 -#: src/pages/part/PartDetail.tsx:911 +#: lib/enums/ModelInformation.tsx:114 +#: src/pages/Index/Settings/SystemSettings.tsx:254 +#: src/pages/part/PartDetail.tsx:900 msgid "Stock History" msgstr "" -#: lib/enums/ModelInformation.tsx:104 +#: lib/enums/ModelInformation.tsx:115 msgid "Stock Histories" msgstr "" -#: lib/enums/ModelInformation.tsx:109 +#: lib/enums/ModelInformation.tsx:120 msgid "Build" msgstr "" -#: lib/enums/ModelInformation.tsx:110 +#: lib/enums/ModelInformation.tsx:121 msgid "Builds" msgstr "" -#: lib/enums/ModelInformation.tsx:118 +#: lib/enums/ModelInformation.tsx:130 msgid "Build Line" msgstr "" -#: lib/enums/ModelInformation.tsx:119 +#: lib/enums/ModelInformation.tsx:131 msgid "Build Lines" msgstr "" -#: lib/enums/ModelInformation.tsx:126 +#: lib/enums/ModelInformation.tsx:138 msgid "Build Item" msgstr "" -#: lib/enums/ModelInformation.tsx:127 +#: lib/enums/ModelInformation.tsx:139 msgid "Build Items" msgstr "" -#: lib/enums/ModelInformation.tsx:132 -#: src/pages/company/CompanyDetail.tsx:340 +#: lib/enums/ModelInformation.tsx:144 +#: src/pages/company/CompanyDetail.tsx:345 #: src/tables/company/CompanyTable.tsx:47 #: src/tables/company/ContactTable.tsx:67 +#: src/tables/company/ParametricCompanyTable.tsx:18 msgid "Company" msgstr "" -#: lib/enums/ModelInformation.tsx:133 +#: lib/enums/ModelInformation.tsx:145 msgid "Companies" msgstr "" -#: lib/enums/ModelInformation.tsx:140 -#: src/pages/build/BuildDetail.tsx:316 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:253 -#: src/pages/sales/ReturnOrderDetail.tsx:231 -#: src/pages/sales/SalesOrderDetail.tsx:224 +#: lib/enums/ModelInformation.tsx:152 +#: src/pages/build/BuildDetail.tsx:317 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:254 +#: src/pages/sales/ReturnOrderDetail.tsx:232 +#: src/pages/sales/SalesOrderDetail.tsx:225 #: src/tables/ColumnRenderers.tsx:362 #: src/tables/Filter.tsx:286 #: src/tables/TableHoverCard.tsx:101 msgid "Project Code" msgstr "" -#: lib/enums/ModelInformation.tsx:141 +#: lib/enums/ModelInformation.tsx:153 #: src/pages/Index/Settings/AdminCenter/Index.tsx:172 msgid "Project Codes" msgstr "" -#: lib/enums/ModelInformation.tsx:147 +#: lib/enums/ModelInformation.tsx:159 #: src/components/wizards/OrderPartsWizard.tsx:338 #: src/pages/part/pricing/PurchaseHistoryPanel.tsx:33 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:550 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:555 #: src/pages/stock/StockDetail.tsx:352 #: src/tables/part/PartPurchaseOrdersTable.tsx:32 #: src/tables/stock/StockItemTable.tsx:239 @@ -312,117 +338,117 @@ msgstr "" msgid "Purchase Order" msgstr "" -#: lib/enums/ModelInformation.tsx:148 +#: lib/enums/ModelInformation.tsx:160 #: lib/enums/Roles.tsx:39 #: src/defaults/actions.tsx:104 -#: src/pages/Index/Settings/SystemSettings.tsx:283 -#: src/pages/company/CompanyDetail.tsx:203 -#: src/pages/company/SupplierPartDetail.tsx:266 -#: src/pages/part/PartDetail.tsx:875 -#: src/pages/purchasing/PurchasingIndex.tsx:60 +#: src/pages/Index/Settings/SystemSettings.tsx:289 +#: src/pages/company/CompanyDetail.tsx:204 +#: src/pages/company/SupplierPartDetail.tsx:267 +#: src/pages/part/PartDetail.tsx:864 +#: src/pages/purchasing/PurchasingIndex.tsx:66 msgid "Purchase Orders" msgstr "" -#: lib/enums/ModelInformation.tsx:156 +#: lib/enums/ModelInformation.tsx:169 msgid "Purchase Order Line" msgstr "" -#: lib/enums/ModelInformation.tsx:157 +#: lib/enums/ModelInformation.tsx:170 msgid "Purchase Order Lines" msgstr "" -#: lib/enums/ModelInformation.tsx:162 -#: src/pages/build/BuildDetail.tsx:289 +#: lib/enums/ModelInformation.tsx:175 +#: src/pages/build/BuildDetail.tsx:290 #: src/pages/part/pricing/SaleHistoryPanel.tsx:24 -#: src/pages/sales/SalesOrderDetail.tsx:614 -#: src/pages/sales/SalesOrderShipmentDetail.tsx:105 -#: src/pages/sales/SalesOrderShipmentDetail.tsx:478 +#: src/pages/sales/SalesOrderDetail.tsx:619 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:103 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:446 #: src/pages/stock/StockDetail.tsx:361 #: src/tables/part/PartSalesAllocationsTable.tsx:41 #: src/tables/sales/SalesOrderAllocationTable.tsx:110 -#: src/tables/sales/SalesOrderShipmentTable.tsx:122 +#: src/tables/sales/SalesOrderShipmentTable.tsx:143 #: src/tables/stock/StockTrackingTable.tsx:131 msgid "Sales Order" msgstr "" -#: lib/enums/ModelInformation.tsx:163 +#: lib/enums/ModelInformation.tsx:176 #: lib/enums/Roles.tsx:43 #: src/defaults/actions.tsx:114 -#: src/pages/Index/Settings/SystemSettings.tsx:299 -#: src/pages/company/CompanyDetail.tsx:223 -#: src/pages/part/PartDetail.tsx:887 -#: src/pages/sales/SalesIndex.tsx:84 +#: src/pages/Index/Settings/SystemSettings.tsx:305 +#: src/pages/company/CompanyDetail.tsx:224 +#: src/pages/part/PartDetail.tsx:876 +#: src/pages/sales/SalesIndex.tsx:53 msgid "Sales Orders" msgstr "" -#: lib/enums/ModelInformation.tsx:171 -#: src/pages/sales/SalesOrderShipmentDetail.tsx:477 +#: lib/enums/ModelInformation.tsx:185 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:445 msgid "Sales Order Shipment" msgstr "" -#: lib/enums/ModelInformation.tsx:172 +#: lib/enums/ModelInformation.tsx:186 msgid "Sales Order Shipments" msgstr "" -#: lib/enums/ModelInformation.tsx:179 -#: src/pages/sales/ReturnOrderDetail.tsx:549 +#: lib/enums/ModelInformation.tsx:194 +#: src/pages/sales/ReturnOrderDetail.tsx:554 #: src/tables/stock/StockTrackingTable.tsx:142 msgid "Return Order" msgstr "" -#: lib/enums/ModelInformation.tsx:180 +#: lib/enums/ModelInformation.tsx:195 #: lib/enums/Roles.tsx:41 #: src/defaults/actions.tsx:125 -#: src/pages/Index/Settings/SystemSettings.tsx:316 -#: src/pages/company/CompanyDetail.tsx:230 -#: src/pages/part/PartDetail.tsx:894 -#: src/pages/sales/SalesIndex.tsx:117 +#: src/pages/Index/Settings/SystemSettings.tsx:322 +#: src/pages/company/CompanyDetail.tsx:231 +#: src/pages/part/PartDetail.tsx:883 +#: src/pages/sales/SalesIndex.tsx:99 msgid "Return Orders" msgstr "" -#: lib/enums/ModelInformation.tsx:188 +#: lib/enums/ModelInformation.tsx:204 msgid "Return Order Line Item" msgstr "" -#: lib/enums/ModelInformation.tsx:189 +#: lib/enums/ModelInformation.tsx:205 msgid "Return Order Line Items" msgstr "" -#: lib/enums/ModelInformation.tsx:194 +#: lib/enums/ModelInformation.tsx:210 #: src/tables/company/AddressTable.tsx:52 msgid "Address" msgstr "" -#: lib/enums/ModelInformation.tsx:195 -#: src/pages/company/CompanyDetail.tsx:264 +#: lib/enums/ModelInformation.tsx:211 +#: src/pages/company/CompanyDetail.tsx:265 msgid "Addresses" msgstr "" -#: lib/enums/ModelInformation.tsx:201 +#: lib/enums/ModelInformation.tsx:217 #: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:89 #: src/pages/core/UserDetail.tsx:135 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:229 -#: src/pages/sales/ReturnOrderDetail.tsx:207 -#: src/pages/sales/SalesOrderDetail.tsx:200 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:230 +#: src/pages/sales/ReturnOrderDetail.tsx:208 +#: src/pages/sales/SalesOrderDetail.tsx:201 msgid "Contact" msgstr "" -#: lib/enums/ModelInformation.tsx:202 -#: src/pages/company/CompanyDetail.tsx:258 +#: lib/enums/ModelInformation.tsx:218 +#: src/pages/company/CompanyDetail.tsx:259 #: src/pages/core/CoreIndex.tsx:33 msgid "Contacts" msgstr "" -#: lib/enums/ModelInformation.tsx:208 +#: lib/enums/ModelInformation.tsx:224 #: src/tables/ColumnRenderers.tsx:444 msgid "Owner" msgstr "" -#: lib/enums/ModelInformation.tsx:209 +#: lib/enums/ModelInformation.tsx:225 msgid "Owners" msgstr "" -#: lib/enums/ModelInformation.tsx:215 +#: lib/enums/ModelInformation.tsx:231 #: src/pages/Auth/ChangePassword.tsx:36 #: src/pages/core/UserDetail.tsx:220 #: src/tables/ColumnRenderers.tsx:395 @@ -437,7 +463,7 @@ msgstr "" msgid "User" msgstr "" -#: lib/enums/ModelInformation.tsx:216 +#: lib/enums/ModelInformation.tsx:232 #: src/components/nav/NavigationDrawer.tsx:105 #: src/pages/Index/Settings/AdminCenter/UserManagementPanel.tsx:15 #: src/pages/core/CoreIndex.tsx:21 @@ -445,12 +471,12 @@ msgstr "" msgid "Users" msgstr "" -#: lib/enums/ModelInformation.tsx:222 +#: lib/enums/ModelInformation.tsx:238 #: src/pages/core/GroupDetail.tsx:78 msgid "Group" msgstr "" -#: lib/enums/ModelInformation.tsx:223 +#: lib/enums/ModelInformation.tsx:239 #: src/components/nav/NavigationDrawer.tsx:111 #: src/pages/Index/Settings/AdminCenter/UserManagementPanel.tsx:23 #: src/pages/core/CoreIndex.tsx:27 @@ -460,64 +486,64 @@ msgstr "" msgid "Groups" msgstr "" -#: lib/enums/ModelInformation.tsx:230 +#: lib/enums/ModelInformation.tsx:246 msgid "Import Session" msgstr "" -#: lib/enums/ModelInformation.tsx:231 +#: lib/enums/ModelInformation.tsx:247 msgid "Import Sessions" msgstr "" -#: lib/enums/ModelInformation.tsx:238 +#: lib/enums/ModelInformation.tsx:254 msgid "Label Template" msgstr "" -#: lib/enums/ModelInformation.tsx:239 +#: lib/enums/ModelInformation.tsx:255 #: src/pages/Index/Settings/AdminCenter/Index.tsx:209 msgid "Label Templates" msgstr "" -#: lib/enums/ModelInformation.tsx:246 +#: lib/enums/ModelInformation.tsx:262 msgid "Report Template" msgstr "" -#: lib/enums/ModelInformation.tsx:247 +#: lib/enums/ModelInformation.tsx:263 #: src/pages/Index/Settings/AdminCenter/Index.tsx:215 msgid "Report Templates" msgstr "" -#: lib/enums/ModelInformation.tsx:254 +#: lib/enums/ModelInformation.tsx:270 #: src/components/plugins/PluginDrawer.tsx:145 msgid "Plugin Configuration" msgstr "" -#: lib/enums/ModelInformation.tsx:255 +#: lib/enums/ModelInformation.tsx:271 msgid "Plugin Configurations" msgstr "" -#: lib/enums/ModelInformation.tsx:262 +#: lib/enums/ModelInformation.tsx:278 msgid "Content Type" msgstr "" -#: lib/enums/ModelInformation.tsx:263 +#: lib/enums/ModelInformation.tsx:279 msgid "Content Types" msgstr "" -#: lib/enums/ModelInformation.tsx:268 +#: lib/enums/ModelInformation.tsx:284 msgid "Selection List" msgstr "" -#: lib/enums/ModelInformation.tsx:269 -#: src/pages/Index/Settings/AdminCenter/PartParameterPanel.tsx:21 +#: lib/enums/ModelInformation.tsx:285 +#: src/pages/Index/Settings/AdminCenter/ParameterPanel.tsx:21 msgid "Selection Lists" msgstr "" -#: lib/enums/ModelInformation.tsx:275 +#: lib/enums/ModelInformation.tsx:291 #: src/components/barcodes/BarcodeInput.tsx:114 #: src/components/dashboard/DashboardLayout.tsx:281 #: src/components/editors/NotesEditor.tsx:74 #: src/components/editors/TemplateEditor/TemplateEditor.tsx:158 -#: src/components/forms/fields/ApiFormField.tsx:273 +#: src/components/forms/fields/ApiFormField.tsx:237 #: src/components/forms/fields/TableField.tsx:45 #: src/components/importer/ImportDataSelector.tsx:192 #: src/components/importer/ImporterColumnSelector.tsx:234 @@ -528,7 +554,7 @@ msgstr "" #: src/components/nav/SearchDrawer.tsx:572 #: src/components/settings/SettingList.tsx:139 #: src/components/wizards/ImportPartWizard.tsx:574 -#: src/components/wizards/ImportPartWizard.tsx:718 +#: src/components/wizards/ImportPartWizard.tsx:719 #: src/forms/BomForms.tsx:69 #: src/functions/auth.tsx:643 #: src/pages/ErrorPage.tsx:11 @@ -547,9 +573,9 @@ msgstr "" msgid "Error" msgstr "" -#: lib/enums/ModelInformation.tsx:276 +#: lib/enums/ModelInformation.tsx:292 #: src/tables/machine/MachineListTable.tsx:402 -#: src/tables/machine/MachineTypeTable.tsx:299 +#: src/tables/machine/MachineTypeTable.tsx:297 msgid "Errors" msgstr "" @@ -559,10 +585,10 @@ msgstr "" #: lib/enums/Roles.tsx:33 #: src/defaults/actions.tsx:135 -#: src/pages/Index/Settings/SystemSettings.tsx:264 -#: src/pages/build/BuildIndex.tsx:75 -#: src/pages/part/PartDetail.tsx:904 -#: src/pages/sales/SalesOrderDetail.tsx:421 +#: src/pages/Index/Settings/SystemSettings.tsx:270 +#: src/pages/build/BuildIndex.tsx:67 +#: src/pages/part/PartDetail.tsx:893 +#: src/pages/sales/SalesOrderDetail.tsx:422 msgid "Build Orders" msgstr "" @@ -639,39 +665,39 @@ msgstr "" msgid "Enter barcode data" msgstr "" -#: src/components/barcodes/BarcodeScanDialog.tsx:49 -#: src/components/buttons/ScanButton.tsx:15 +#: src/components/barcodes/BarcodeScanDialog.tsx:56 +#: src/components/buttons/ScanButton.tsx:27 #: src/components/nav/NavigationDrawer.tsx:122 -#: src/forms/PurchaseOrderForms.tsx:457 -#: src/forms/PurchaseOrderForms.tsx:563 +#: src/forms/PurchaseOrderForms.tsx:509 +#: src/forms/PurchaseOrderForms.tsx:615 msgid "Scan Barcode" msgstr "" -#: src/components/barcodes/BarcodeScanDialog.tsx:105 +#: src/components/barcodes/BarcodeScanDialog.tsx:121 msgid "No matching item found" msgstr "" -#: src/components/barcodes/BarcodeScanDialog.tsx:134 +#: src/components/barcodes/BarcodeScanDialog.tsx:150 msgid "Barcode does not match the expected model type" msgstr "" -#: src/components/barcodes/BarcodeScanDialog.tsx:145 +#: src/components/barcodes/BarcodeScanDialog.tsx:161 #: src/components/editors/NotesEditor.tsx:84 #: src/components/editors/NotesEditor.tsx:118 -#: src/components/forms/ApiForm.tsx:465 +#: src/components/forms/ApiForm.tsx:484 #: src/components/wizards/ImportPartWizard.tsx:566 -#: src/components/wizards/ImportPartWizard.tsx:690 +#: src/components/wizards/ImportPartWizard.tsx:691 #: src/pages/Index/Settings/AdminCenter/CurrencyManagementPanel.tsx:45 #: src/tables/bom/BomTable.tsx:548 #: src/tables/settings/PendingTasksTable.tsx:68 msgid "Success" msgstr "" -#: src/components/barcodes/BarcodeScanDialog.tsx:151 +#: src/components/barcodes/BarcodeScanDialog.tsx:167 msgid "Failed to handle barcode" msgstr "" -#: src/components/barcodes/BarcodeScanDialog.tsx:167 +#: src/components/barcodes/BarcodeScanDialog.tsx:183 #: src/pages/Index/Scan.tsx:129 msgid "Failed to scan barcode" msgstr "" @@ -714,10 +740,10 @@ msgstr "" #: src/components/barcodes/QRCode.tsx:179 #: src/pages/part/PartDetail.tsx:521 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:222 -#: src/pages/sales/ReturnOrderDetail.tsx:188 -#: src/pages/sales/SalesOrderDetail.tsx:181 -#: src/pages/sales/SalesOrderShipmentDetail.tsx:122 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:223 +#: src/pages/sales/ReturnOrderDetail.tsx:189 +#: src/pages/sales/SalesOrderDetail.tsx:182 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:120 #: src/pages/stock/StockDetail.tsx:186 msgid "Link" msgstr "" @@ -728,7 +754,7 @@ msgstr "" #: src/components/barcodes/QRCode.tsx:205 #: src/components/items/ActionDropdown.tsx:192 -#: src/forms/PurchaseOrderForms.tsx:554 +#: src/forms/PurchaseOrderForms.tsx:606 msgid "Unlink Barcode" msgstr "" @@ -829,14 +855,14 @@ msgstr "" #~ msgid "Scan QR code" #~ msgstr "Scan QR code" -#: src/components/buttons/ScanButton.tsx:19 -msgid "Open Barcode Scanner" -msgstr "" - #: src/components/buttons/ScanButton.tsx:20 #~ msgid "Open QR code scanner" #~ msgstr "Open QR code scanner" +#: src/components/buttons/ScanButton.tsx:32 +msgid "Open Barcode Scanner" +msgstr "" + #: src/components/buttons/SpotlightButton.tsx:12 msgid "Open spotlight" msgstr "" @@ -1059,7 +1085,7 @@ msgid "Show the number of sales orders which are assigned to you" msgstr "" #: src/components/dashboard/DashboardWidgetLibrary.tsx:129 -#: src/pages/sales/SalesIndex.tsx:105 +#: src/pages/sales/SalesIndex.tsx:87 msgid "Pending Shipments" msgstr "" @@ -1210,12 +1236,18 @@ msgid "Remove the associated image from this item?" msgstr "" #: src/components/details/DetailsImage.tsx:83 -#: src/forms/StockForms.tsx:888 +#: src/forms/StockForms.tsx:895 #: src/pages/Index/Settings/AccountSettings/MFASettings.tsx:324 #: src/pages/Index/Settings/AccountSettings/MFASettings.tsx:415 #: src/pages/Index/Settings/AccountSettings/MFASettings.tsx:884 #: src/pages/Index/Settings/AccountSettings/MFASettings.tsx:903 #: src/pages/Index/Settings/AccountSettings/SecurityContent.tsx:254 +#: src/tables/build/BuildAllocatedStockTable.tsx:178 +#: src/tables/build/BuildAllocatedStockTable.tsx:258 +#: src/tables/build/BuildLineTable.tsx:111 +#: src/tables/build/BuildLineTable.tsx:665 +#: src/tables/sales/SalesOrderAllocationTable.tsx:224 +#: src/tables/sales/SalesOrderAllocationTable.tsx:247 msgid "Remove" msgstr "" @@ -1241,12 +1273,12 @@ msgid "Upload Error" msgstr "" #: src/components/details/DetailsImage.tsx:250 -#: src/components/forms/fields/TextField.tsx:65 +#: src/components/forms/fields/AutoFillRightSection.tsx:34 msgid "Clear" msgstr "" #: src/components/details/DetailsImage.tsx:256 -#: src/components/forms/ApiForm.tsx:677 +#: src/components/forms/ApiForm.tsx:696 #: src/contexts/ThemeContext.tsx:44 #: src/pages/Index/Settings/AccountSettings/MFASettings.tsx:149 #: src/pages/Index/Settings/AccountSettings/MFASettings.tsx:568 @@ -1499,8 +1531,8 @@ msgstr "" msgid "A server error occurred" msgstr "" -#: src/components/forms/ApiForm.tsx:103 -#: src/components/forms/ApiForm.tsx:594 +#: src/components/forms/ApiForm.tsx:107 +#: src/components/forms/ApiForm.tsx:613 msgid "Form Error" msgstr "" @@ -1508,11 +1540,11 @@ msgstr "" #~ msgid "Form Errors Exist" #~ msgstr "Form Errors Exist" -#: src/components/forms/ApiForm.tsx:604 +#: src/components/forms/ApiForm.tsx:623 msgid "Errors exist for one or more form fields" msgstr "" -#: src/components/forms/ApiForm.tsx:715 +#: src/components/forms/ApiForm.tsx:734 #: src/hooks/UseForm.tsx:133 #: src/tables/plugin/PluginListTable.tsx:204 msgid "Update" @@ -1698,15 +1730,14 @@ msgstr "" #: src/components/forms/InstanceOptions.tsx:124 #: src/components/plugins/PluginDrawer.tsx:68 #: src/pages/Index/Settings/AdminCenter/UnitManagementPanel.tsx:19 -#: src/pages/part/CategoryDetail.tsx:88 +#: src/pages/part/CategoryDetail.tsx:91 #: src/pages/part/PartDetail.tsx:446 #: src/pages/stock/LocationDetail.tsx:82 #: src/tables/machine/MachineTypeTable.tsx:67 -#: src/tables/machine/MachineTypeTable.tsx:151 -#: src/tables/machine/MachineTypeTable.tsx:254 -#: src/tables/machine/MachineTypeTable.tsx:357 +#: src/tables/machine/MachineTypeTable.tsx:149 +#: src/tables/machine/MachineTypeTable.tsx:252 +#: src/tables/machine/MachineTypeTable.tsx:355 #: src/tables/plugin/PluginErrorTable.tsx:33 -#: src/tables/purchasing/ManufacturerPartParameterTable.tsx:36 #: src/tables/settings/ApiTokenTable.tsx:57 #: src/tables/settings/GroupTable.tsx:95 #: src/tables/settings/GroupTable.tsx:148 @@ -1769,7 +1800,7 @@ msgstr "" #~ msgstr "State: <0>worker ({0}), <1>plugins{1}" #: src/components/forms/InstanceOptions.tsx:118 -#: src/pages/Index/Settings/SystemSettings.tsx:45 +#: src/pages/Index/Settings/SystemSettings.tsx:46 msgid "Server" msgstr "" @@ -1793,6 +1824,8 @@ msgid "Plugins" msgstr "" #: src/components/forms/InstanceOptions.tsx:143 +#: src/tables/general/ParameterTemplateTable.tsx:153 +#: src/tables/general/ParameterTemplateTable.tsx:188 #: src/tables/part/PartTestTemplateTable.tsx:117 #: src/tables/settings/TemplateTable.tsx:251 #: src/tables/settings/TemplateTable.tsx:362 @@ -1817,10 +1850,14 @@ msgstr "" msgid "Running" msgstr "" -#: src/components/forms/fields/ApiFormField.tsx:233 +#: src/components/forms/fields/ApiFormField.tsx:197 msgid "Select file to upload" msgstr "" +#: src/components/forms/fields/AutoFillRightSection.tsx:47 +msgid "Accept suggested value" +msgstr "" + #: src/components/forms/fields/DateField.tsx:76 msgid "Select date" msgstr "" @@ -1853,13 +1890,13 @@ msgstr "" msgid "{0} icons" msgstr "" -#: src/components/forms/fields/RelatedModelField.tsx:409 +#: src/components/forms/fields/RelatedModelField.tsx:480 #: src/components/modals/AboutInvenTreeModal.tsx:96 #: src/pages/Index/Settings/AccountSettings/SecurityContent.tsx:383 msgid "Loading" msgstr "" -#: src/components/forms/fields/RelatedModelField.tsx:411 +#: src/components/forms/fields/RelatedModelField.tsx:482 msgid "No results found" msgstr "" @@ -1875,10 +1912,6 @@ msgstr "" msgid "Add new row" msgstr "" -#: src/components/forms/fields/TextField.tsx:82 -msgid "Accept suggested value" -msgstr "" - #: src/components/images/DetailsImage.tsx:252 #~ msgid "Select image" #~ msgstr "Select image" @@ -2036,7 +2069,7 @@ msgstr "" #: src/components/importer/ImporterDrawer.tsx:109 #: src/components/modals/AboutInvenTreeModal.tsx:205 #: src/components/modals/ServerInfoModal.tsx:134 -#: src/components/wizards/ImportPartWizard.tsx:772 +#: src/components/wizards/ImportPartWizard.tsx:773 #: src/forms/BomForms.tsx:132 #: src/pages/Index/Settings/AccountSettings/MFASettings.tsx:685 msgid "Close" @@ -2199,7 +2232,7 @@ msgid "Change" msgstr "" #: src/components/items/RoleTable.tsx:150 -#: src/forms/StockForms.tsx:927 +#: src/forms/StockForms.tsx:941 #: src/tables/stock/StockItemTestResultTable.tsx:367 msgid "Add" msgstr "" @@ -2222,11 +2255,11 @@ msgstr "" #: src/components/items/TransferList.tsx:161 #: src/components/render/Stock.tsx:102 -#: src/pages/part/PartDetail.tsx:994 +#: src/pages/part/PartDetail.tsx:1009 #: src/pages/stock/StockDetail.tsx:265 #: src/pages/stock/StockDetail.tsx:942 -#: src/tables/build/BuildAllocatedStockTable.tsx:135 -#: src/tables/build/BuildLineTable.tsx:192 +#: src/tables/build/BuildAllocatedStockTable.tsx:132 +#: src/tables/build/BuildLineTable.tsx:193 #: src/tables/part/PartTable.tsx:137 #: src/tables/stock/StockItemTable.tsx:182 #: src/tables/stock/StockItemTable.tsx:343 @@ -2373,7 +2406,7 @@ msgid "Database" msgstr "" #: src/components/modals/ServerInfoModal.tsx:49 -#: src/components/nav/Alerts.tsx:118 +#: src/components/nav/Alerts.tsx:120 msgid "Debug Mode" msgstr "" @@ -2414,7 +2447,7 @@ msgid "Issues detected" msgstr "" #: src/components/modals/ServerInfoModal.tsx:102 -#: src/components/nav/Alerts.tsx:125 +#: src/components/nav/Alerts.tsx:127 msgid "Background Worker" msgstr "" @@ -2436,7 +2469,7 @@ msgstr "" #~ msgstr "Email settings not configured" #: src/components/modals/ServerInfoModal.tsx:120 -#: src/components/nav/Alerts.tsx:141 +#: src/components/nav/Alerts.tsx:143 msgid "Email settings not configured." msgstr "" @@ -2444,43 +2477,47 @@ msgstr "" msgid "Alerts" msgstr "" -#: src/components/nav/Alerts.tsx:120 +#: src/components/nav/Alerts.tsx:97 +msgid "No issues detected" +msgstr "" + +#: src/components/nav/Alerts.tsx:122 msgid "The server is running in debug mode." msgstr "" -#: src/components/nav/Alerts.tsx:127 +#: src/components/nav/Alerts.tsx:129 msgid "The background worker process is not running." msgstr "" -#: src/components/nav/Alerts.tsx:132 +#: src/components/nav/Alerts.tsx:134 msgid "Server Restart" msgstr "" -#: src/components/nav/Alerts.tsx:134 +#: src/components/nav/Alerts.tsx:136 msgid "The server requires a restart to apply changes." msgstr "" -#: src/components/nav/Alerts.tsx:139 +#: src/components/nav/Alerts.tsx:141 msgid "Email settings" msgstr "" -#: src/components/nav/Alerts.tsx:146 +#: src/components/nav/Alerts.tsx:148 msgid "Database Migrations" msgstr "" -#: src/components/nav/Alerts.tsx:148 +#: src/components/nav/Alerts.tsx:150 msgid "There are pending database migrations." msgstr "" -#: src/components/nav/Alerts.tsx:163 +#: src/components/nav/Alerts.tsx:165 msgid "Learn more about {code}" msgstr "" #: src/components/nav/Header.tsx:188 #: src/components/nav/NavigationDrawer.tsx:134 #: src/components/nav/NotificationDrawer.tsx:181 -#: src/pages/Index/Settings/SystemSettings.tsx:121 -#: src/pages/Index/Settings/UserSettings.tsx:106 +#: src/pages/Index/Settings/SystemSettings.tsx:122 +#: src/pages/Index/Settings/UserSettings.tsx:107 #: src/pages/Notifications.tsx:45 #: src/pages/Notifications.tsx:130 msgid "Notifications" @@ -2511,8 +2548,8 @@ msgstr "" #: src/components/nav/NavigationDrawer.tsx:140 #: src/components/nav/SettingsHeader.tsx:40 #: src/defaults/actions.tsx:92 -#: src/pages/Index/Settings/UserSettings.tsx:141 -#: src/pages/Index/Settings/UserSettings.tsx:145 +#: src/pages/Index/Settings/UserSettings.tsx:142 +#: src/pages/Index/Settings/UserSettings.tsx:146 msgid "User Settings" msgstr "" @@ -2529,8 +2566,8 @@ msgstr "" #: src/components/nav/NavigationDrawer.tsx:146 #: src/components/nav/SettingsHeader.tsx:41 #: src/defaults/actions.tsx:144 -#: src/pages/Index/Settings/SystemSettings.tsx:348 -#: src/pages/Index/Settings/SystemSettings.tsx:353 +#: src/pages/Index/Settings/SystemSettings.tsx:354 +#: src/pages/Index/Settings/SystemSettings.tsx:359 msgid "System Settings" msgstr "" @@ -2577,11 +2614,11 @@ msgstr "" #: src/components/nav/NavigationDrawer.tsx:77 #: src/components/render/Part.tsx:36 -#: src/components/wizards/ImportPartWizard.tsx:807 +#: src/components/wizards/ImportPartWizard.tsx:808 #: src/defaults/links.tsx:42 #: src/forms/StockForms.tsx:794 -#: src/pages/Index/Settings/SystemSettings.tsx:224 -#: src/pages/part/PartDetail.tsx:804 +#: src/pages/Index/Settings/SystemSettings.tsx:230 +#: src/pages/part/PartDetail.tsx:793 #: src/pages/stock/LocationDetail.tsx:390 #: src/pages/stock/LocationDetail.tsx:420 #: src/pages/stock/StockDetail.tsx:642 @@ -2591,29 +2628,29 @@ msgstr "" #: src/components/nav/NavigationDrawer.tsx:84 #: src/defaults/links.tsx:48 -#: src/pages/build/BuildDetail.tsx:748 -#: src/pages/build/BuildIndex.tsx:102 +#: src/pages/build/BuildDetail.tsx:753 +#: src/pages/build/BuildIndex.tsx:101 msgid "Manufacturing" msgstr "" #: src/components/nav/NavigationDrawer.tsx:91 #: src/defaults/links.tsx:54 #: src/pages/company/ManufacturerDetail.tsx:9 -#: src/pages/company/ManufacturerPartDetail.tsx:276 +#: src/pages/company/ManufacturerPartDetail.tsx:267 #: src/pages/company/SupplierDetail.tsx:9 -#: src/pages/company/SupplierPartDetail.tsx:360 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:553 -#: src/pages/purchasing/PurchasingIndex.tsx:122 +#: src/pages/company/SupplierPartDetail.tsx:365 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:558 +#: src/pages/purchasing/PurchasingIndex.tsx:212 msgid "Purchasing" msgstr "" #: src/components/nav/NavigationDrawer.tsx:98 #: src/defaults/links.tsx:60 #: src/pages/company/CustomerDetail.tsx:9 -#: src/pages/sales/ReturnOrderDetail.tsx:554 -#: src/pages/sales/SalesIndex.tsx:153 -#: src/pages/sales/SalesOrderDetail.tsx:619 -#: src/pages/sales/SalesOrderShipmentDetail.tsx:480 +#: src/pages/sales/ReturnOrderDetail.tsx:559 +#: src/pages/sales/SalesIndex.tsx:168 +#: src/pages/sales/SalesOrderDetail.tsx:624 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:448 msgid "Sales" msgstr "" @@ -2667,21 +2704,21 @@ msgid "Remove search group" msgstr "" #: src/components/nav/SearchDrawer.tsx:288 -#: src/pages/company/ManufacturerPartDetail.tsx:192 -#: src/pages/part/PartDetail.tsx:862 +#: src/pages/company/ManufacturerPartDetail.tsx:179 +#: src/pages/part/PartDetail.tsx:851 #: src/pages/part/PartSupplierDetail.tsx:15 -#: src/pages/purchasing/PurchasingIndex.tsx:81 +#: src/pages/purchasing/PurchasingIndex.tsx:100 msgid "Suppliers" msgstr "" #: src/components/nav/SearchDrawer.tsx:298 #: src/pages/part/PartSupplierDetail.tsx:23 -#: src/pages/purchasing/PurchasingIndex.tsx:98 +#: src/pages/purchasing/PurchasingIndex.tsx:149 msgid "Manufacturers" msgstr "" #: src/components/nav/SearchDrawer.tsx:308 -#: src/pages/sales/SalesIndex.tsx:138 +#: src/pages/sales/SalesIndex.tsx:133 msgid "Customers" msgstr "" @@ -2772,21 +2809,21 @@ msgstr "" #: src/components/plugins/PluginDrawer.tsx:73 #: src/forms/selectionListFields.tsx:102 -#: src/pages/build/BuildDetail.tsx:250 -#: src/pages/company/CompanyDetail.tsx:93 -#: src/pages/company/ManufacturerPartDetail.tsx:93 -#: src/pages/company/ManufacturerPartDetail.tsx:120 -#: src/pages/company/SupplierPartDetail.tsx:145 -#: src/pages/part/CategoryDetail.tsx:108 +#: src/pages/build/BuildDetail.tsx:251 +#: src/pages/company/CompanyDetail.tsx:94 +#: src/pages/company/ManufacturerPartDetail.tsx:92 +#: src/pages/company/ManufacturerPartDetail.tsx:119 +#: src/pages/company/SupplierPartDetail.tsx:146 +#: src/pages/part/CategoryDetail.tsx:111 #: src/pages/part/PartDetail.tsx:460 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:162 -#: src/pages/sales/ReturnOrderDetail.tsx:129 -#: src/pages/sales/SalesOrderDetail.tsx:119 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:163 +#: src/pages/sales/ReturnOrderDetail.tsx:130 +#: src/pages/sales/SalesOrderDetail.tsx:120 #: src/pages/stock/LocationDetail.tsx:102 #: src/tables/ColumnRenderers.tsx:278 -#: src/tables/build/BuildAllocatedStockTable.tsx:91 -#: src/tables/machine/MachineTypeTable.tsx:161 -#: src/tables/machine/MachineTypeTable.tsx:257 +#: src/tables/build/BuildAllocatedStockTable.tsx:88 +#: src/tables/machine/MachineTypeTable.tsx:159 +#: src/tables/machine/MachineTypeTable.tsx:255 #: src/tables/plugin/PluginListTable.tsx:110 msgid "Description" msgstr "" @@ -2814,7 +2851,7 @@ msgstr "" #: src/tables/company/CompanyTable.tsx:91 #: src/tables/machine/MachineListTable.tsx:384 #: src/tables/machine/MachineListTable.tsx:799 -#: src/tables/part/ParametricPartTable.tsx:354 +#: src/tables/part/ParametricPartTable.tsx:19 #: src/tables/part/PartTable.tsx:197 #: src/tables/part/PartVariantTable.tsx:15 #: src/tables/plugin/PluginListTable.tsx:96 @@ -2836,8 +2873,8 @@ msgid "Installation Path" msgstr "" #: src/components/plugins/PluginDrawer.tsx:116 -#: src/tables/machine/MachineTypeTable.tsx:184 -#: src/tables/machine/MachineTypeTable.tsx:293 +#: src/tables/machine/MachineTypeTable.tsx:182 +#: src/tables/machine/MachineTypeTable.tsx:291 #: src/tables/plugin/PluginListTable.tsx:101 #: src/tables/plugin/PluginListTable.tsx:417 msgid "Builtin" @@ -2849,8 +2886,8 @@ msgstr "" #: src/components/plugins/PluginDrawer.tsx:133 #: src/pages/Index/Settings/AdminCenter/PluginManagementPanel.tsx:55 -#: src/pages/Index/Settings/SystemSettings.tsx:331 -#: src/pages/Index/Settings/UserSettings.tsx:128 +#: src/pages/Index/Settings/SystemSettings.tsx:337 +#: src/pages/Index/Settings/UserSettings.tsx:129 msgid "Plugin Settings" msgstr "" @@ -2911,7 +2948,7 @@ msgstr "" #~ msgid "Unknown model: {model}" #~ msgstr "Unknown model: {model}" -#: src/components/render/Instance.tsx:249 +#: src/components/render/Instance.tsx:247 msgid "Unknown model: {model_name}" msgstr "" @@ -2939,10 +2976,10 @@ msgstr "" #: src/components/render/Part.tsx:28 #: src/components/render/Plugin.tsx:17 #: src/components/render/User.tsx:37 -#: src/pages/company/CompanyDetail.tsx:323 -#: src/pages/company/SupplierPartDetail.tsx:373 +#: src/pages/company/CompanyDetail.tsx:328 +#: src/pages/company/SupplierPartDetail.tsx:378 #: src/pages/core/UserDetail.tsx:211 -#: src/pages/part/PartDetail.tsx:1027 +#: src/pages/part/PartDetail.tsx:1048 #: src/tables/ColumnRenderers.tsx:410 msgid "Inactive" msgstr "" @@ -2962,11 +2999,11 @@ msgstr "" #: src/components/render/Part.tsx:47 #: src/components/wizards/OrderPartsWizard.tsx:135 -#: src/pages/company/SupplierPartDetail.tsx:197 -#: src/pages/company/SupplierPartDetail.tsx:394 -#: src/pages/part/PartDetail.tsx:1015 +#: src/pages/company/SupplierPartDetail.tsx:198 +#: src/pages/company/SupplierPartDetail.tsx:399 +#: src/pages/part/PartDetail.tsx:1030 #: src/tables/bom/BomTable.tsx:444 -#: src/tables/build/BuildLineTable.tsx:222 +#: src/tables/build/BuildLineTable.tsx:223 #: src/tables/part/PartTable.tsx:108 msgid "On Order" msgstr "" @@ -2974,9 +3011,9 @@ msgstr "" #: src/components/render/Part.tsx:55 #: src/components/wizards/OrderPartsWizard.tsx:141 #: src/pages/part/PartDetail.tsx:587 -#: src/pages/part/PartDetail.tsx:1021 +#: src/pages/part/PartDetail.tsx:1036 #: src/pages/stock/StockDetail.tsx:925 -#: src/tables/part/PartTestResultTable.tsx:297 +#: src/tables/part/PartTestResultTable.tsx:305 #: src/tables/stock/StockItemTable.tsx:359 msgid "In Production" msgstr "" @@ -2987,7 +3024,7 @@ msgid "Details" msgstr "" #: src/components/render/Part.tsx:112 -#: src/components/wizards/ImportPartWizard.tsx:806 +#: src/components/wizards/ImportPartWizard.tsx:807 #: src/pages/part/PartDetail.tsx:487 #: src/tables/ColumnRenderers.tsx:233 #: src/tables/ColumnRenderers.tsx:242 @@ -3000,16 +3037,16 @@ msgstr "" #: src/components/render/Stock.tsx:114 #: src/components/render/Stock.tsx:132 #: src/forms/BuildForms.tsx:795 -#: src/forms/PurchaseOrderForms.tsx:595 +#: src/forms/PurchaseOrderForms.tsx:647 #: src/forms/StockForms.tsx:792 #: src/forms/StockForms.tsx:839 -#: src/forms/StockForms.tsx:885 -#: src/forms/StockForms.tsx:924 -#: src/forms/StockForms.tsx:960 -#: src/forms/StockForms.tsx:1003 -#: src/forms/StockForms.tsx:1047 -#: src/forms/StockForms.tsx:1095 -#: src/forms/StockForms.tsx:1139 +#: src/forms/StockForms.tsx:892 +#: src/forms/StockForms.tsx:938 +#: src/forms/StockForms.tsx:976 +#: src/forms/StockForms.tsx:1019 +#: src/forms/StockForms.tsx:1063 +#: src/forms/StockForms.tsx:1111 +#: src/forms/StockForms.tsx:1155 #: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:88 #: src/pages/core/UserDetail.tsx:158 #: src/pages/stock/StockDetail.tsx:298 @@ -3023,7 +3060,7 @@ msgstr "" #: src/components/render/Stock.tsx:99 #: src/pages/stock/StockDetail.tsx:198 #: src/pages/stock/StockDetail.tsx:930 -#: src/tables/build/BuildAllocatedStockTable.tsx:121 +#: src/tables/build/BuildAllocatedStockTable.tsx:118 #: src/tables/build/BuildOutputTable.tsx:107 #: src/tables/sales/SalesOrderAllocationTable.tsx:142 msgid "Serial Number" @@ -3034,9 +3071,9 @@ msgstr "" #: src/forms/BuildForms.tsx:240 #: src/forms/BuildForms.tsx:634 #: src/forms/BuildForms.tsx:797 -#: src/forms/PurchaseOrderForms.tsx:801 +#: src/forms/PurchaseOrderForms.tsx:853 #: src/forms/ReturnOrderForms.tsx:243 -#: src/forms/SalesOrderForms.tsx:308 +#: src/forms/SalesOrderForms.tsx:387 #: src/forms/StockForms.tsx:841 #: src/pages/part/PartStockHistoryDetail.tsx:56 #: src/pages/part/PartStockHistoryDetail.tsx:210 @@ -3046,9 +3083,9 @@ msgstr "" #: src/pages/part/pricing/PriceBreakPanel.tsx:172 #: src/pages/stock/StockDetail.tsx:258 #: src/pages/stock/StockDetail.tsx:936 -#: src/tables/build/BuildLineTable.tsx:86 +#: src/tables/build/BuildLineTable.tsx:83 #: src/tables/part/PartPurchaseOrdersTable.tsx:94 -#: src/tables/part/PartTestResultTable.tsx:269 +#: src/tables/part/PartTestResultTable.tsx:277 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:175 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:206 #: src/tables/purchasing/SupplierPriceBreakTable.tsx:69 @@ -3063,14 +3100,14 @@ msgstr "" #: src/forms/BuildForms.tsx:474 #: src/forms/StockForms.tsx:793 #: src/forms/StockForms.tsx:840 -#: src/forms/StockForms.tsx:886 -#: src/forms/StockForms.tsx:925 -#: src/forms/StockForms.tsx:961 -#: src/forms/StockForms.tsx:1004 -#: src/forms/StockForms.tsx:1048 -#: src/forms/StockForms.tsx:1096 -#: src/forms/StockForms.tsx:1140 -#: src/tables/build/BuildLineTable.tsx:96 +#: src/forms/StockForms.tsx:893 +#: src/forms/StockForms.tsx:939 +#: src/forms/StockForms.tsx:977 +#: src/forms/StockForms.tsx:1020 +#: src/forms/StockForms.tsx:1064 +#: src/forms/StockForms.tsx:1112 +#: src/forms/StockForms.tsx:1156 +#: src/tables/build/BuildLineTable.tsx:93 msgid "Batch" msgstr "" @@ -3306,10 +3343,6 @@ msgstr "" #~ msgid "Part category updated" #~ msgstr "Part category updated" -#: src/components/tables/part/PartParameterTable.tsx:41 -#~ msgid "Parameter" -#~ msgstr "Parameter" - #: src/components/tables/part/PartParameterTable.tsx:114 #~ msgid "Part parameter updated" #~ msgstr "Part parameter updated" @@ -3571,15 +3604,16 @@ msgid "Already Imported" msgstr "" #: src/components/wizards/ImportPartWizard.tsx:205 -#: src/pages/company/CompanyDetail.tsx:136 +#: src/pages/company/CompanyDetail.tsx:137 #: src/pages/company/SupplierDetail.tsx:8 -#: src/pages/company/SupplierPartDetail.tsx:130 -#: src/pages/company/SupplierPartDetail.tsx:235 -#: src/pages/company/SupplierPartDetail.tsx:364 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:156 +#: src/pages/company/SupplierPartDetail.tsx:131 +#: src/pages/company/SupplierPartDetail.tsx:236 +#: src/pages/company/SupplierPartDetail.tsx:369 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:157 #: src/tables/Filter.tsx:360 #: src/tables/company/CompanyTable.tsx:96 #: src/tables/part/PartPurchaseOrdersTable.tsx:43 +#: src/tables/purchasing/PurchaseOrderParametricTable.tsx:34 #: src/tables/purchasing/PurchaseOrderTable.tsx:109 #: src/tables/purchasing/SupplierPriceBreakTable.tsx:40 msgid "Supplier" @@ -3648,7 +3682,7 @@ msgid "Next" msgstr "" #: src/components/wizards/ImportPartWizard.tsx:540 -#: src/pages/part/PartDetail.tsx:1046 +#: src/pages/part/PartDetail.tsx:1067 #: src/tables/part/PartTable.tsx:408 msgid "Edit Part" msgstr "" @@ -3669,28 +3703,28 @@ msgstr "" msgid "Import" msgstr "" -#: src/components/wizards/ImportPartWizard.tsx:691 +#: src/components/wizards/ImportPartWizard.tsx:692 msgid "Parameters created successfully!" msgstr "" -#: src/components/wizards/ImportPartWizard.tsx:719 +#: src/components/wizards/ImportPartWizard.tsx:720 msgid "Failed to create parameters, please fix the errors and try again" msgstr "" #. placeholder {0}: supplierPart?.supplier -#: src/components/wizards/ImportPartWizard.tsx:739 +#: src/components/wizards/ImportPartWizard.tsx:740 msgid "Part imported successfully from supplier {0}." msgstr "" -#: src/components/wizards/ImportPartWizard.tsx:752 +#: src/components/wizards/ImportPartWizard.tsx:753 msgid "Open Part" msgstr "" -#: src/components/wizards/ImportPartWizard.tsx:759 +#: src/components/wizards/ImportPartWizard.tsx:760 msgid "Open Supplier Part" msgstr "" -#: src/components/wizards/ImportPartWizard.tsx:766 +#: src/components/wizards/ImportPartWizard.tsx:767 msgid "Open Manufacturer Part" msgstr "" @@ -3699,25 +3733,19 @@ msgstr "" #~ msgid "Import Part" #~ msgstr "Import Part" -#: src/components/wizards/ImportPartWizard.tsx:802 +#: src/components/wizards/ImportPartWizard.tsx:803 msgid "Import Supplier Part" msgstr "" -#: src/components/wizards/ImportPartWizard.tsx:804 +#: src/components/wizards/ImportPartWizard.tsx:805 msgid "Search Supplier Part" msgstr "" -#: src/components/wizards/ImportPartWizard.tsx:806 -#: src/pages/company/ManufacturerPartDetail.tsx:166 -#: src/pages/part/PartDetail.tsx:793 -msgid "Parameters" -msgstr "" - -#: src/components/wizards/ImportPartWizard.tsx:806 +#: src/components/wizards/ImportPartWizard.tsx:807 msgid "Confirm import" msgstr "" -#: src/components/wizards/ImportPartWizard.tsx:808 +#: src/components/wizards/ImportPartWizard.tsx:809 msgid "Done" msgstr "" @@ -3738,24 +3766,24 @@ msgid "Sales Requirements" msgstr "" #: src/components/wizards/OrderPartsWizard.tsx:129 -#: src/forms/StockForms.tsx:887 -#: src/forms/StockForms.tsx:926 -#: src/forms/StockForms.tsx:962 -#: src/forms/StockForms.tsx:1005 -#: src/forms/StockForms.tsx:1049 -#: src/forms/StockForms.tsx:1097 -#: src/forms/StockForms.tsx:1141 -#: src/pages/company/SupplierPartDetail.tsx:190 -#: src/pages/company/SupplierPartDetail.tsx:378 +#: src/forms/StockForms.tsx:894 +#: src/forms/StockForms.tsx:940 +#: src/forms/StockForms.tsx:978 +#: src/forms/StockForms.tsx:1021 +#: src/forms/StockForms.tsx:1065 +#: src/forms/StockForms.tsx:1113 +#: src/forms/StockForms.tsx:1157 +#: src/pages/company/SupplierPartDetail.tsx:191 +#: src/pages/company/SupplierPartDetail.tsx:383 #: src/pages/part/PartDetail.tsx:534 -#: src/pages/part/PartDetail.tsx:984 +#: src/pages/part/PartDetail.tsx:999 #: src/tables/Filter.tsx:92 #: src/tables/purchasing/SupplierPartTable.tsx:230 msgid "In Stock" msgstr "" #: src/components/wizards/OrderPartsWizard.tsx:146 -#: src/tables/build/BuildLineTable.tsx:404 +#: src/tables/build/BuildLineTable.tsx:405 msgid "Required Quantity" msgstr "" @@ -3847,7 +3875,7 @@ msgid "Please correct the errors in the selected parts" msgstr "" #: src/components/wizards/OrderPartsWizard.tsx:587 -#: src/tables/build/BuildLineTable.tsx:815 +#: src/tables/build/BuildLineTable.tsx:822 #: src/tables/part/PartTable.tsx:522 #: src/tables/sales/SalesOrderLineItemTable.tsx:370 msgid "Order Parts" @@ -4349,9 +4377,9 @@ msgstr "" #: src/forms/BuildForms.tsx:333 #: src/forms/BuildForms.tsx:408 #: src/forms/BuildForms.tsx:685 -#: src/tables/build/BuildAllocatedStockTable.tsx:150 +#: src/tables/build/BuildAllocatedStockTable.tsx:147 #: src/tables/build/BuildOutputTable.tsx:582 -#: src/tables/part/PartTestResultTable.tsx:272 +#: src/tables/part/PartTestResultTable.tsx:280 msgid "Build Output" msgstr "" @@ -4362,22 +4390,22 @@ msgstr "" #: src/forms/BuildForms.tsx:336 #: src/forms/BuildForms.tsx:411 #: src/forms/BuildForms.tsx:475 -#: src/forms/PurchaseOrderForms.tsx:717 +#: src/forms/PurchaseOrderForms.tsx:769 #: src/forms/ReturnOrderForms.tsx:197 #: src/forms/ReturnOrderForms.tsx:244 #: src/forms/StockForms.tsx:712 #: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:87 -#: src/pages/build/BuildDetail.tsx:222 +#: src/pages/build/BuildDetail.tsx:223 #: src/pages/core/UserDetail.tsx:151 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:168 -#: src/pages/sales/ReturnOrderDetail.tsx:135 -#: src/pages/sales/SalesOrderDetail.tsx:125 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:169 +#: src/pages/sales/ReturnOrderDetail.tsx:136 +#: src/pages/sales/SalesOrderDetail.tsx:126 #: src/pages/stock/StockDetail.tsx:170 #: src/tables/Filter.tsx:274 #: src/tables/build/BuildOutputTable.tsx:404 #: src/tables/machine/MachineListTable.tsx:387 #: src/tables/part/PartPurchaseOrdersTable.tsx:38 -#: src/tables/part/PartTestResultTable.tsx:309 +#: src/tables/part/PartTestResultTable.tsx:317 #: src/tables/sales/ReturnOrderLineItemTable.tsx:138 #: src/tables/sales/ReturnOrderLineItemTable.tsx:176 #: src/tables/settings/CustomStateTable.tsx:79 @@ -4443,18 +4471,19 @@ msgid "Build outputs have been cancelled" msgstr "" #: src/forms/BuildForms.tsx:631 -#: src/pages/build/BuildDetail.tsx:207 -#: src/pages/company/ManufacturerPartDetail.tsx:85 -#: src/pages/company/SupplierPartDetail.tsx:96 +#: src/pages/build/BuildDetail.tsx:208 +#: src/pages/company/ManufacturerPartDetail.tsx:84 +#: src/pages/company/SupplierPartDetail.tsx:97 #: src/pages/part/PartDetail.tsx:453 #: src/pages/stock/StockDetail.tsx:153 #: src/tables/bom/BomTable.tsx:134 #: src/tables/bom/UsedInTable.tsx:40 -#: src/tables/build/BuildAllocatedStockTable.tsx:108 -#: src/tables/build/BuildLineTable.tsx:336 +#: src/tables/build/BuildAllocatedStockTable.tsx:105 +#: src/tables/build/BuildLineTable.tsx:337 #: src/tables/build/BuildOrderTable.tsx:79 #: src/tables/part/PartSalesAllocationsTable.tsx:61 #: src/tables/part/RelatedPartTable.tsx:73 +#: src/tables/purchasing/ManufacturerPartParametricTable.tsx:21 #: src/tables/purchasing/ManufacturerPartTable.tsx:69 #: src/tables/purchasing/SupplierPartTable.tsx:70 #: src/tables/sales/SalesOrderAllocationTable.tsx:135 @@ -4466,47 +4495,47 @@ msgstr "" #: src/forms/BuildForms.tsx:632 #: src/forms/BuildForms.tsx:796 #: src/forms/BuildForms.tsx:897 -#: src/forms/SalesOrderForms.tsx:306 -#: src/tables/build/BuildAllocatedStockTable.tsx:139 -#: src/tables/build/BuildLineTable.tsx:182 +#: src/forms/SalesOrderForms.tsx:385 +#: src/tables/build/BuildAllocatedStockTable.tsx:136 +#: src/tables/build/BuildLineTable.tsx:183 #: src/tables/sales/SalesOrderLineItemTable.tsx:342 #: src/tables/stock/StockItemTable.tsx:338 msgid "Allocated" msgstr "" #: src/forms/BuildForms.tsx:667 -#: src/forms/SalesOrderForms.tsx:295 -#: src/pages/build/BuildDetail.tsx:108 -#: src/pages/build/BuildDetail.tsx:326 +#: src/forms/SalesOrderForms.tsx:374 +#: src/pages/build/BuildDetail.tsx:109 +#: src/pages/build/BuildDetail.tsx:327 msgid "Source Location" msgstr "" #: src/forms/BuildForms.tsx:668 -#: src/forms/SalesOrderForms.tsx:296 +#: src/forms/SalesOrderForms.tsx:375 msgid "Select the source location for the stock allocation" msgstr "" #: src/forms/BuildForms.tsx:700 -#: src/forms/SalesOrderForms.tsx:336 -#: src/tables/build/BuildLineTable.tsx:574 -#: src/tables/build/BuildLineTable.tsx:731 -#: src/tables/build/BuildLineTable.tsx:830 +#: src/forms/SalesOrderForms.tsx:415 +#: src/tables/build/BuildLineTable.tsx:575 +#: src/tables/build/BuildLineTable.tsx:738 +#: src/tables/build/BuildLineTable.tsx:837 #: src/tables/sales/SalesOrderLineItemTable.tsx:380 #: src/tables/sales/SalesOrderLineItemTable.tsx:406 msgid "Allocate Stock" msgstr "" #: src/forms/BuildForms.tsx:703 -#: src/forms/SalesOrderForms.tsx:341 +#: src/forms/SalesOrderForms.tsx:420 msgid "Stock items allocated" msgstr "" #: src/forms/BuildForms.tsx:816 #: src/forms/BuildForms.tsx:917 -#: src/tables/build/BuildAllocatedStockTable.tsx:240 -#: src/tables/build/BuildAllocatedStockTable.tsx:272 -#: src/tables/build/BuildLineTable.tsx:741 -#: src/tables/build/BuildLineTable.tsx:864 +#: src/tables/build/BuildAllocatedStockTable.tsx:243 +#: src/tables/build/BuildAllocatedStockTable.tsx:279 +#: src/tables/build/BuildLineTable.tsx:748 +#: src/tables/build/BuildLineTable.tsx:871 msgid "Consume Stock" msgstr "" @@ -4521,21 +4550,21 @@ msgstr "" #~ msgstr "Stock items consumed" #: src/forms/BuildForms.tsx:853 -#: src/tables/build/BuildLineTable.tsx:514 +#: src/tables/build/BuildLineTable.tsx:515 #: src/tables/part/PartBuildAllocationsTable.tsx:101 msgid "Fully consumed" msgstr "" #: src/forms/BuildForms.tsx:898 -#: src/tables/build/BuildLineTable.tsx:187 +#: src/tables/build/BuildLineTable.tsx:188 #: src/tables/stock/StockItemTable.tsx:367 msgid "Consumed" msgstr "" -#: src/forms/CommonForms.tsx:88 -#: src/forms/PurchaseOrderForms.tsx:125 +#: src/forms/CommonForms.tsx:92 +#: src/forms/PurchaseOrderForms.tsx:176 #: src/forms/ReturnOrderForms.tsx:138 -#: src/forms/SalesOrderForms.tsx:164 +#: src/forms/SalesOrderForms.tsx:185 msgid "Select project code for this line item" msgstr "" @@ -4543,16 +4572,16 @@ msgstr "" #~ msgid "Company updated" #~ msgstr "Company updated" -#: src/forms/PartForms.tsx:85 -#: src/forms/PartForms.tsx:207 -#: src/pages/part/CategoryDetail.tsx:124 +#: src/forms/PartForms.tsx:99 +#: src/forms/PartForms.tsx:228 +#: src/pages/part/CategoryDetail.tsx:127 #: src/pages/part/PartDetail.tsx:668 #: src/tables/part/PartCategoryTable.tsx:94 #: src/tables/part/PartTable.tsx:325 msgid "Subscribed" msgstr "" -#: src/forms/PartForms.tsx:86 +#: src/forms/PartForms.tsx:100 msgid "Subscribe to notifications for this part" msgstr "" @@ -4564,40 +4593,24 @@ msgstr "" #~ msgid "Part updated" #~ msgstr "Part updated" -#: src/forms/PartForms.tsx:193 +#: src/forms/PartForms.tsx:214 msgid "Parent part category" msgstr "" -#: src/forms/PartForms.tsx:208 +#: src/forms/PartForms.tsx:229 msgid "Subscribe to notifications for this category" msgstr "" -#: src/forms/PurchaseOrderForms.tsx:388 -msgid "Assign Batch Code and Serial Numbers" -msgstr "" - -#: src/forms/PurchaseOrderForms.tsx:390 -msgid "Assign Batch Code" -msgstr "" - -#: src/forms/PurchaseOrderForms.tsx:410 -msgid "Choose Location" -msgstr "" - -#: src/forms/PurchaseOrderForms.tsx:418 -msgid "Item Destination selected" -msgstr "" - #: src/forms/PurchaseOrderForms.tsx:421 #~ msgid "Assign Batch Code{0}" #~ msgstr "Assign Batch Code{0}" -#: src/forms/PurchaseOrderForms.tsx:428 -msgid "Part category default location selected" +#: src/forms/PurchaseOrderForms.tsx:440 +msgid "Assign Batch Code and Serial Numbers" msgstr "" -#: src/forms/PurchaseOrderForms.tsx:438 -msgid "Received stock location selected" +#: src/forms/PurchaseOrderForms.tsx:442 +msgid "Assign Batch Code" msgstr "" #: src/forms/PurchaseOrderForms.tsx:444 @@ -4605,115 +4618,131 @@ msgstr "" #~ msgid "Remove item from list" #~ msgstr "Remove item from list" -#: src/forms/PurchaseOrderForms.tsx:446 +#: src/forms/PurchaseOrderForms.tsx:462 +msgid "Choose Location" +msgstr "" + +#: src/forms/PurchaseOrderForms.tsx:470 +msgid "Item Destination selected" +msgstr "" + +#: src/forms/PurchaseOrderForms.tsx:480 +msgid "Part category default location selected" +msgstr "" + +#: src/forms/PurchaseOrderForms.tsx:490 +msgid "Received stock location selected" +msgstr "" + +#: src/forms/PurchaseOrderForms.tsx:498 msgid "Default location selected" msgstr "" -#: src/forms/PurchaseOrderForms.tsx:507 +#: src/forms/PurchaseOrderForms.tsx:559 msgid "Set Location" msgstr "" -#: src/forms/PurchaseOrderForms.tsx:524 -msgid "Set Expiry Date" -msgstr "" - -#: src/forms/PurchaseOrderForms.tsx:532 -#: src/forms/StockForms.tsx:693 -msgid "Adjust Packaging" -msgstr "" - -#: src/forms/PurchaseOrderForms.tsx:540 -#: src/forms/StockForms.tsx:684 -#: src/hooks/UseStockAdjustActions.tsx:148 -msgid "Change Status" -msgstr "" - -#: src/forms/PurchaseOrderForms.tsx:546 -msgid "Add Note" -msgstr "" - #: src/forms/PurchaseOrderForms.tsx:566 #~ msgid "Serial numbers" #~ msgstr "Serial numbers" +#: src/forms/PurchaseOrderForms.tsx:576 +msgid "Set Expiry Date" +msgstr "" + #: src/forms/PurchaseOrderForms.tsx:582 #~ msgid "Store at line item destination" #~ msgstr "Store at line item destination" -#: src/forms/PurchaseOrderForms.tsx:610 -msgid "Store at default location" +#: src/forms/PurchaseOrderForms.tsx:584 +#: src/forms/StockForms.tsx:693 +msgid "Adjust Packaging" msgstr "" -#: src/forms/PurchaseOrderForms.tsx:625 -msgid "Store at line item destination " +#: src/forms/PurchaseOrderForms.tsx:592 +#: src/forms/StockForms.tsx:684 +#: src/hooks/UseStockAdjustActions.tsx:148 +msgid "Change Status" msgstr "" -#: src/forms/PurchaseOrderForms.tsx:637 -msgid "Store with already received stock" +#: src/forms/PurchaseOrderForms.tsx:598 +msgid "Add Note" msgstr "" #: src/forms/PurchaseOrderForms.tsx:658 #~ msgid "Receive line items" #~ msgstr "Receive line items" -#: src/forms/PurchaseOrderForms.tsx:661 -#: src/pages/build/BuildDetail.tsx:340 +#: src/forms/PurchaseOrderForms.tsx:662 +msgid "Store at default location" +msgstr "" + +#: src/forms/PurchaseOrderForms.tsx:677 +msgid "Store at line item destination " +msgstr "" + +#: src/forms/PurchaseOrderForms.tsx:689 +msgid "Store with already received stock" +msgstr "" + +#: src/forms/PurchaseOrderForms.tsx:713 +#: src/pages/build/BuildDetail.tsx:341 #: src/pages/stock/StockDetail.tsx:280 #: src/pages/stock/StockDetail.tsx:952 #: src/tables/Filter.tsx:83 -#: src/tables/build/BuildAllocatedStockTable.tsx:128 +#: src/tables/build/BuildAllocatedStockTable.tsx:125 #: src/tables/build/BuildOutputTable.tsx:112 -#: src/tables/part/PartTestResultTable.tsx:260 -#: src/tables/part/PartTestResultTable.tsx:281 +#: src/tables/part/PartTestResultTable.tsx:268 +#: src/tables/part/PartTestResultTable.tsx:289 #: src/tables/sales/SalesOrderAllocationTable.tsx:149 msgid "Batch Code" msgstr "" -#: src/forms/PurchaseOrderForms.tsx:662 +#: src/forms/PurchaseOrderForms.tsx:714 msgid "Enter batch code for received items" msgstr "" -#: src/forms/PurchaseOrderForms.tsx:675 +#: src/forms/PurchaseOrderForms.tsx:727 #: src/forms/StockForms.tsx:218 msgid "Serial Numbers" msgstr "" -#: src/forms/PurchaseOrderForms.tsx:676 +#: src/forms/PurchaseOrderForms.tsx:728 msgid "Enter serial numbers for received items" msgstr "" -#: src/forms/PurchaseOrderForms.tsx:690 +#: src/forms/PurchaseOrderForms.tsx:742 #: src/pages/stock/StockDetail.tsx:382 #: src/tables/stock/StockItemTable.tsx:294 msgid "Expiry Date" msgstr "" -#: src/forms/PurchaseOrderForms.tsx:691 +#: src/forms/PurchaseOrderForms.tsx:743 msgid "Enter an expiry date for received items" msgstr "" -#: src/forms/PurchaseOrderForms.tsx:703 +#: src/forms/PurchaseOrderForms.tsx:755 #: src/forms/StockForms.tsx:728 -#: src/pages/company/SupplierPartDetail.tsx:172 -#: src/pages/company/SupplierPartDetail.tsx:236 +#: src/pages/company/SupplierPartDetail.tsx:173 +#: src/pages/company/SupplierPartDetail.tsx:237 #: src/pages/stock/StockDetail.tsx:419 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:227 msgid "Packaging" msgstr "" -#: src/forms/PurchaseOrderForms.tsx:727 -#: src/pages/company/SupplierPartDetail.tsx:120 +#: src/forms/PurchaseOrderForms.tsx:779 +#: src/pages/company/SupplierPartDetail.tsx:121 #: src/tables/ColumnRenderers.tsx:332 msgid "Note" msgstr "" -#: src/forms/PurchaseOrderForms.tsx:799 -#: src/pages/company/SupplierPartDetail.tsx:138 +#: src/forms/PurchaseOrderForms.tsx:851 +#: src/pages/company/SupplierPartDetail.tsx:139 #: src/tables/purchasing/SupplierPriceBreakTable.tsx:49 msgid "SKU" msgstr "" -#: src/forms/PurchaseOrderForms.tsx:800 +#: src/forms/PurchaseOrderForms.tsx:852 #: src/tables/part/PartPurchaseOrdersTable.tsx:127 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:213 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:283 @@ -4721,11 +4750,11 @@ msgstr "" msgid "Received" msgstr "" -#: src/forms/PurchaseOrderForms.tsx:817 +#: src/forms/PurchaseOrderForms.tsx:869 msgid "Receive Line Items" msgstr "" -#: src/forms/PurchaseOrderForms.tsx:823 +#: src/forms/PurchaseOrderForms.tsx:875 msgid "Items received" msgstr "" @@ -4737,7 +4766,35 @@ msgstr "" msgid "Item received into stock" msgstr "" -#: src/forms/SalesOrderForms.tsx:401 +#: src/forms/SalesOrderForms.tsx:208 +#: src/forms/SalesOrderForms.tsx:210 +#: src/tables/sales/SalesOrderShipmentTable.tsx:215 +msgid "Check Shipment" +msgstr "" + +#: src/forms/SalesOrderForms.tsx:211 +msgid "Marking the shipment as checked indicates that you have verified that all items included in this shipment are correct" +msgstr "" + +#: src/forms/SalesOrderForms.tsx:221 +msgid "Shipment marked as checked" +msgstr "" + +#: src/forms/SalesOrderForms.tsx:236 +#: src/forms/SalesOrderForms.tsx:238 +#: src/tables/sales/SalesOrderShipmentTable.tsx:228 +msgid "Uncheck Shipment" +msgstr "" + +#: src/forms/SalesOrderForms.tsx:239 +msgid "Marking the shipment as unchecked indicates that the shipment requires further verification" +msgstr "" + +#: src/forms/SalesOrderForms.tsx:249 +msgid "Shipment marked as unchecked" +msgstr "" + +#: src/forms/SalesOrderForms.tsx:480 msgid "Leave blank to use the order address" msgstr "" @@ -4792,150 +4849,150 @@ msgstr "" msgid "Return" msgstr "" -#: src/forms/StockForms.tsx:963 +#: src/forms/StockForms.tsx:979 #: src/pages/Index/Scan.tsx:182 msgid "Count" msgstr "" -#: src/forms/StockForms.tsx:1246 +#: src/forms/StockForms.tsx:1262 #: src/hooks/UseStockAdjustActions.tsx:108 msgid "Add Stock" msgstr "" -#: src/forms/StockForms.tsx:1247 +#: src/forms/StockForms.tsx:1263 msgid "Stock added" msgstr "" -#: src/forms/StockForms.tsx:1250 +#: src/forms/StockForms.tsx:1266 msgid "Increase the quantity of the selected stock items by a given amount." msgstr "" -#: src/forms/StockForms.tsx:1261 +#: src/forms/StockForms.tsx:1277 #: src/hooks/UseStockAdjustActions.tsx:118 msgid "Remove Stock" msgstr "" -#: src/forms/StockForms.tsx:1262 +#: src/forms/StockForms.tsx:1278 msgid "Stock removed" msgstr "" -#: src/forms/StockForms.tsx:1265 +#: src/forms/StockForms.tsx:1281 msgid "Decrease the quantity of the selected stock items by a given amount." msgstr "" -#: src/forms/StockForms.tsx:1276 +#: src/forms/StockForms.tsx:1292 #: src/hooks/UseStockAdjustActions.tsx:128 msgid "Transfer Stock" msgstr "" -#: src/forms/StockForms.tsx:1277 +#: src/forms/StockForms.tsx:1293 msgid "Stock transferred" msgstr "" -#: src/forms/StockForms.tsx:1280 +#: src/forms/StockForms.tsx:1296 msgid "Transfer selected items to the specified location." msgstr "" -#: src/forms/StockForms.tsx:1291 +#: src/forms/StockForms.tsx:1307 #: src/hooks/UseStockAdjustActions.tsx:168 msgid "Return Stock" msgstr "" -#: src/forms/StockForms.tsx:1292 +#: src/forms/StockForms.tsx:1308 msgid "Stock returned" msgstr "" -#: src/forms/StockForms.tsx:1295 +#: src/forms/StockForms.tsx:1311 msgid "Return selected items into stock, to the specified location." msgstr "" -#: src/forms/StockForms.tsx:1306 +#: src/forms/StockForms.tsx:1322 #: src/hooks/UseStockAdjustActions.tsx:98 msgid "Count Stock" msgstr "" -#: src/forms/StockForms.tsx:1307 +#: src/forms/StockForms.tsx:1323 msgid "Stock counted" msgstr "" -#: src/forms/StockForms.tsx:1310 +#: src/forms/StockForms.tsx:1326 msgid "Count the selected stock items, and adjust the quantity accordingly." msgstr "" -#: src/forms/StockForms.tsx:1321 +#: src/forms/StockForms.tsx:1337 msgid "Change Stock Status" msgstr "" -#: src/forms/StockForms.tsx:1322 +#: src/forms/StockForms.tsx:1338 msgid "Stock status changed" msgstr "" -#: src/forms/StockForms.tsx:1325 +#: src/forms/StockForms.tsx:1341 msgid "Change the status of the selected stock items." msgstr "" -#: src/forms/StockForms.tsx:1336 +#: src/forms/StockForms.tsx:1352 #: src/hooks/UseStockAdjustActions.tsx:138 msgid "Merge Stock" msgstr "" -#: src/forms/StockForms.tsx:1337 +#: src/forms/StockForms.tsx:1353 msgid "Stock merged" msgstr "" -#: src/forms/StockForms.tsx:1339 +#: src/forms/StockForms.tsx:1355 msgid "Merge Stock Items" msgstr "" -#: src/forms/StockForms.tsx:1341 +#: src/forms/StockForms.tsx:1357 msgid "Merge operation cannot be reversed" msgstr "" -#: src/forms/StockForms.tsx:1342 +#: src/forms/StockForms.tsx:1358 msgid "Tracking information may be lost when merging items" msgstr "" -#: src/forms/StockForms.tsx:1343 +#: src/forms/StockForms.tsx:1359 msgid "Supplier information may be lost when merging items" msgstr "" -#: src/forms/StockForms.tsx:1361 +#: src/forms/StockForms.tsx:1377 msgid "Assign Stock to Customer" msgstr "" -#: src/forms/StockForms.tsx:1362 +#: src/forms/StockForms.tsx:1378 msgid "Stock assigned to customer" msgstr "" -#: src/forms/StockForms.tsx:1372 +#: src/forms/StockForms.tsx:1388 msgid "Delete Stock Items" msgstr "" -#: src/forms/StockForms.tsx:1373 +#: src/forms/StockForms.tsx:1389 msgid "Stock deleted" msgstr "" -#: src/forms/StockForms.tsx:1376 +#: src/forms/StockForms.tsx:1392 msgid "This operation will permanently delete the selected stock items." msgstr "" -#: src/forms/StockForms.tsx:1385 +#: src/forms/StockForms.tsx:1401 msgid "Parent stock location" msgstr "" -#: src/forms/StockForms.tsx:1512 +#: src/forms/StockForms.tsx:1528 msgid "Find Serial Number" msgstr "" -#: src/forms/StockForms.tsx:1523 +#: src/forms/StockForms.tsx:1539 msgid "No matching items" msgstr "" -#: src/forms/StockForms.tsx:1529 +#: src/forms/StockForms.tsx:1545 msgid "Multiple matching items" msgstr "" -#: src/forms/StockForms.tsx:1538 +#: src/forms/StockForms.tsx:1554 msgid "Invalid response from server" msgstr "" @@ -4953,7 +5010,6 @@ msgstr "" #: src/tables/FilterSelectDrawer.tsx:137 #: src/tables/FilterSelectDrawer.tsx:149 #: src/tables/part/PartTestResultTable.tsx:206 -#: src/tables/purchasing/ManufacturerPartParameterTable.tsx:42 #: src/tables/stock/StockItemTestResultTable.tsx:207 msgid "Value" msgstr "" @@ -5244,7 +5300,7 @@ msgid "Delete selected stock items" msgstr "" #: src/hooks/UseStockAdjustActions.tsx:205 -#: src/pages/part/PartDetail.tsx:1137 +#: src/pages/part/PartDetail.tsx:1158 msgid "Stock Actions" msgstr "" @@ -5932,6 +5988,9 @@ msgstr "" #: src/pages/Index/Settings/AccountSettings/MFASettings.tsx:310 #: src/pages/Index/Settings/AccountSettings/MFASettings.tsx:401 +#: src/tables/build/BuildAllocatedStockTable.tsx:181 +#: src/tables/build/BuildLineTable.tsx:668 +#: src/tables/sales/SalesOrderAllocationTable.tsx:220 msgid "Confirm Removal" msgstr "" @@ -6394,30 +6453,34 @@ msgid "Email Messages" msgstr "" #: src/pages/Index/Settings/AdminCenter/HomePanel.tsx:22 -msgid "Active Alerts" -msgstr "" +#~ msgid "Active Alerts" +#~ msgstr "Active Alerts" #: src/pages/Index/Settings/AdminCenter/HomePanel.tsx:27 -msgid "Inactive Alerts" +#~ msgid "Inactive Alerts" +#~ msgstr "Inactive Alerts" + +#: src/pages/Index/Settings/AdminCenter/HomePanel.tsx:36 +msgid "System Status" msgstr "" -#: src/pages/Index/Settings/AdminCenter/HomePanel.tsx:38 +#: src/pages/Index/Settings/AdminCenter/HomePanel.tsx:47 msgid "Admin Center Information" msgstr "" -#: src/pages/Index/Settings/AdminCenter/HomePanel.tsx:44 +#: src/pages/Index/Settings/AdminCenter/HomePanel.tsx:53 msgid "The home panel (and the whole Admin Center) is a new feature starting with the new UI and was previously (before 1.0) not available." msgstr "" -#: src/pages/Index/Settings/AdminCenter/HomePanel.tsx:51 +#: src/pages/Index/Settings/AdminCenter/HomePanel.tsx:60 msgid "The admin center provides a centralized location for all administration functionality and is meant to replace all interaction with the (django) backend admin interface." msgstr "" -#: src/pages/Index/Settings/AdminCenter/HomePanel.tsx:58 +#: src/pages/Index/Settings/AdminCenter/HomePanel.tsx:67 msgid "Please open feature requests (after checking the tracker) for any existing backend admin functionality you are missing in this UI. The backend admin interface should be used carefully and seldom." msgstr "" -#: src/pages/Index/Settings/AdminCenter/HomePanel.tsx:76 +#: src/pages/Index/Settings/AdminCenter/HomePanel.tsx:85 msgid "Quick Actions" msgstr "" @@ -6476,11 +6539,11 @@ msgstr "" #: src/pages/Index/Settings/AdminCenter/Index.tsx:195 #: src/pages/part/CategoryDetail.tsx:313 -msgid "Part Parameters" -msgstr "" +#~ msgid "Part Parameters" +#~ msgstr "Part Parameters" #: src/pages/Index/Settings/AdminCenter/Index.tsx:202 -#: src/pages/part/CategoryDetail.tsx:306 +#: src/pages/part/CategoryDetail.tsx:329 msgid "Category Parameters" msgstr "" @@ -6494,7 +6557,7 @@ msgstr "" #: src/pages/Index/Settings/AdminCenter/Index.tsx:235 #: src/pages/Index/Settings/AdminCenter/MachineManagementPanel.tsx:52 -#: src/tables/machine/MachineTypeTable.tsx:325 +#: src/tables/machine/MachineTypeTable.tsx:323 msgid "Machines" msgstr "" @@ -6507,8 +6570,8 @@ msgid "Data Management" msgstr "" #: src/pages/Index/Settings/AdminCenter/Index.tsx:270 -#: src/pages/Index/Settings/SystemSettings.tsx:175 -#: src/pages/Index/Settings/UserSettings.tsx:118 +#: src/pages/Index/Settings/SystemSettings.tsx:176 +#: src/pages/Index/Settings/UserSettings.tsx:119 msgid "Reporting" msgstr "" @@ -6709,11 +6772,11 @@ msgstr "" msgid "The settings below are specific to each available plugin" msgstr "" -#: src/pages/Index/Settings/SystemSettings.tsx:77 +#: src/pages/Index/Settings/SystemSettings.tsx:78 msgid "Authentication" msgstr "" -#: src/pages/Index/Settings/SystemSettings.tsx:103 +#: src/pages/Index/Settings/SystemSettings.tsx:104 msgid "Barcodes" msgstr "" @@ -6725,12 +6788,12 @@ msgstr "" #~ msgid "This panel is a placeholder." #~ msgstr "This panel is a placeholder." -#: src/pages/Index/Settings/SystemSettings.tsx:127 -#: src/pages/Index/Settings/UserSettings.tsx:112 +#: src/pages/Index/Settings/SystemSettings.tsx:128 +#: src/pages/Index/Settings/UserSettings.tsx:113 msgid "The settings below are specific to each available notification method" msgstr "" -#: src/pages/Index/Settings/SystemSettings.tsx:133 +#: src/pages/Index/Settings/SystemSettings.tsx:134 msgid "Pricing" msgstr "" @@ -6738,7 +6801,7 @@ msgstr "" #~ msgid "Exchange Rates" #~ msgstr "Exchange Rates" -#: src/pages/Index/Settings/SystemSettings.tsx:169 +#: src/pages/Index/Settings/SystemSettings.tsx:170 msgid "Labels" msgstr "" @@ -6790,15 +6853,15 @@ msgstr "" #~ msgid "Delete notifications" #~ msgstr "Delete notifications" -#: src/pages/build/BuildDetail.tsx:69 +#: src/pages/build/BuildDetail.tsx:70 msgid "No Required Items" msgstr "" -#: src/pages/build/BuildDetail.tsx:71 +#: src/pages/build/BuildDetail.tsx:72 msgid "This build order does not have any required items." msgstr "" -#: src/pages/build/BuildDetail.tsx:72 +#: src/pages/build/BuildDetail.tsx:73 msgid "The assembled part may not have a Bill of Materials (BOM) defined, or the BOM is empty." msgstr "" @@ -6826,7 +6889,7 @@ msgstr "" #~ msgid "Build Order updated" #~ msgstr "Build Order updated" -#: src/pages/build/BuildDetail.tsx:215 +#: src/pages/build/BuildDetail.tsx:216 #: src/pages/part/PartDetail.tsx:480 #: src/pages/stock/StockDetail.tsx:161 #: src/tables/bom/UsedInTable.tsx:44 @@ -6843,10 +6906,10 @@ msgstr "" #~ msgid "Duplicate build order" #~ msgstr "Duplicate build order" -#: src/pages/build/BuildDetail.tsx:228 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:174 -#: src/pages/sales/ReturnOrderDetail.tsx:141 -#: src/pages/sales/SalesOrderDetail.tsx:131 +#: src/pages/build/BuildDetail.tsx:229 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:175 +#: src/pages/sales/ReturnOrderDetail.tsx:142 +#: src/pages/sales/SalesOrderDetail.tsx:132 #: src/pages/stock/StockDetail.tsx:176 msgid "Custom Status" msgstr "" @@ -6855,9 +6918,9 @@ msgstr "" #~ msgid "Delete build order" #~ msgstr "Delete build order" -#: src/pages/build/BuildDetail.tsx:237 -#: src/pages/build/BuildDetail.tsx:723 -#: src/pages/build/BuildIndex.tsx:28 +#: src/pages/build/BuildDetail.tsx:238 +#: src/pages/build/BuildDetail.tsx:728 +#: src/pages/build/BuildIndex.tsx:34 #: src/pages/stock/LocationDetail.tsx:140 #: src/tables/build/BuildOrderTable.tsx:123 #: src/tables/build/BuildOrderTable.tsx:183 @@ -6865,57 +6928,57 @@ msgstr "" msgid "External" msgstr "" -#: src/pages/build/BuildDetail.tsx:244 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:141 -#: src/pages/sales/ReturnOrderDetail.tsx:108 -#: src/pages/sales/SalesOrderDetail.tsx:98 +#: src/pages/build/BuildDetail.tsx:245 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:142 +#: src/pages/sales/ReturnOrderDetail.tsx:109 +#: src/pages/sales/SalesOrderDetail.tsx:99 #: src/tables/ColumnRenderers.tsx:321 -#: src/tables/build/BuildAllocatedStockTable.tsx:115 -#: src/tables/build/BuildLineTable.tsx:352 +#: src/tables/build/BuildAllocatedStockTable.tsx:112 +#: src/tables/build/BuildLineTable.tsx:353 msgid "Reference" msgstr "" -#: src/pages/build/BuildDetail.tsx:258 +#: src/pages/build/BuildDetail.tsx:259 msgid "Parent Build" msgstr "" -#: src/pages/build/BuildDetail.tsx:269 +#: src/pages/build/BuildDetail.tsx:270 msgid "Build Quantity" msgstr "" -#: src/pages/build/BuildDetail.tsx:275 +#: src/pages/build/BuildDetail.tsx:276 #: src/pages/part/PartDetail.tsx:598 #: src/tables/bom/BomTable.tsx:365 #: src/tables/bom/BomTable.tsx:407 msgid "Can Build" msgstr "" -#: src/pages/build/BuildDetail.tsx:284 -#: src/pages/build/BuildDetail.tsx:474 +#: src/pages/build/BuildDetail.tsx:285 +#: src/pages/build/BuildDetail.tsx:475 msgid "Completed Outputs" msgstr "" -#: src/pages/build/BuildDetail.tsx:301 +#: src/pages/build/BuildDetail.tsx:302 #: src/tables/Filter.tsx:381 #: src/tables/build/BuildOrderTable.tsx:143 msgid "Issued By" msgstr "" -#: src/pages/build/BuildDetail.tsx:309 +#: src/pages/build/BuildDetail.tsx:310 #: src/pages/part/PartDetail.tsx:691 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:261 -#: src/pages/sales/ReturnOrderDetail.tsx:239 -#: src/pages/sales/SalesOrderDetail.tsx:232 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:262 +#: src/pages/sales/ReturnOrderDetail.tsx:240 +#: src/pages/sales/SalesOrderDetail.tsx:233 #: src/tables/ColumnRenderers.tsx:464 #: src/tables/Filter.tsx:319 msgid "Responsible" msgstr "" -#: src/pages/build/BuildDetail.tsx:327 +#: src/pages/build/BuildDetail.tsx:328 msgid "Any location" msgstr "" -#: src/pages/build/BuildDetail.tsx:334 +#: src/pages/build/BuildDetail.tsx:335 msgid "Destination Location" msgstr "" @@ -6924,24 +6987,24 @@ msgstr "" #~ msgid "Test Statistics" #~ msgstr "Test Statistics" -#: src/pages/build/BuildDetail.tsx:350 +#: src/pages/build/BuildDetail.tsx:351 #: src/tables/settings/ApiTokenTable.tsx:97 #: src/tables/settings/PendingTasksTable.tsx:41 msgid "Created" msgstr "" -#: src/pages/build/BuildDetail.tsx:358 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:286 -#: src/pages/sales/ReturnOrderDetail.tsx:265 -#: src/pages/sales/SalesOrderDetail.tsx:257 +#: src/pages/build/BuildDetail.tsx:359 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:287 +#: src/pages/sales/ReturnOrderDetail.tsx:266 +#: src/pages/sales/SalesOrderDetail.tsx:258 #: src/tables/ColumnRenderers.tsx:486 msgid "Start Date" msgstr "" -#: src/pages/build/BuildDetail.tsx:366 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:294 -#: src/pages/sales/ReturnOrderDetail.tsx:273 -#: src/pages/sales/SalesOrderDetail.tsx:265 +#: src/pages/build/BuildDetail.tsx:367 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:295 +#: src/pages/sales/ReturnOrderDetail.tsx:274 +#: src/pages/sales/SalesOrderDetail.tsx:266 #: src/tables/ColumnRenderers.tsx:494 #: src/tables/part/PartPurchaseOrdersTable.tsx:101 #: src/tables/sales/ReturnOrderLineItemTable.tsx:154 @@ -6954,185 +7017,185 @@ msgstr "" #~ msgstr "Reporting Actions" #: src/pages/build/BuildDetail.tsx:374 +#~ msgid "Print build report" +#~ msgstr "Print build report" + +#: src/pages/build/BuildDetail.tsx:375 #: src/tables/build/BuildOrderTable.tsx:93 #: src/tables/sales/SalesOrderLineItemTable.tsx:347 msgid "Completed" msgstr "" -#: src/pages/build/BuildDetail.tsx:374 -#~ msgid "Print build report" -#~ msgstr "Print build report" - -#: src/pages/build/BuildDetail.tsx:410 +#: src/pages/build/BuildDetail.tsx:411 msgid "Build Details" msgstr "" -#: src/pages/build/BuildDetail.tsx:416 +#: src/pages/build/BuildDetail.tsx:417 msgid "Required Parts" msgstr "" -#: src/pages/build/BuildDetail.tsx:428 -#: src/pages/sales/SalesOrderDetail.tsx:407 -#: src/pages/sales/SalesOrderShipmentDetail.tsx:261 +#: src/pages/build/BuildDetail.tsx:429 +#: src/pages/sales/SalesOrderDetail.tsx:408 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:259 #: src/tables/part/PartSalesAllocationsTable.tsx:73 msgid "Allocated Stock" msgstr "" -#: src/pages/build/BuildDetail.tsx:444 +#: src/pages/build/BuildDetail.tsx:445 msgid "Consumed Stock" msgstr "" -#: src/pages/build/BuildDetail.tsx:461 +#: src/pages/build/BuildDetail.tsx:462 msgid "Incomplete Outputs" msgstr "" -#: src/pages/build/BuildDetail.tsx:489 +#: src/pages/build/BuildDetail.tsx:490 msgid "External Orders" msgstr "" -#: src/pages/build/BuildDetail.tsx:503 +#: src/pages/build/BuildDetail.tsx:504 msgid "Child Build Orders" msgstr "" -#: src/pages/build/BuildDetail.tsx:513 -#: src/pages/part/PartDetail.tsx:937 +#: src/pages/build/BuildDetail.tsx:514 +#: src/pages/part/PartDetail.tsx:926 #: src/pages/stock/StockDetail.tsx:587 #: src/tables/build/BuildOutputTable.tsx:654 #: src/tables/stock/StockItemTestResultTable.tsx:173 msgid "Test Results" msgstr "" -#: src/pages/build/BuildDetail.tsx:550 +#: src/pages/build/BuildDetail.tsx:555 msgid "Edit Build Order" msgstr "" -#: src/pages/build/BuildDetail.tsx:572 +#: src/pages/build/BuildDetail.tsx:577 #: src/tables/build/BuildOrderTable.tsx:207 #: src/tables/build/BuildOrderTable.tsx:223 msgid "Add Build Order" msgstr "" -#: src/pages/build/BuildDetail.tsx:582 +#: src/pages/build/BuildDetail.tsx:587 msgid "Cancel Build Order" msgstr "" -#: src/pages/build/BuildDetail.tsx:584 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:416 -#: src/pages/sales/ReturnOrderDetail.tsx:427 -#: src/pages/sales/SalesOrderDetail.tsx:454 +#: src/pages/build/BuildDetail.tsx:589 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:421 +#: src/pages/sales/ReturnOrderDetail.tsx:432 +#: src/pages/sales/SalesOrderDetail.tsx:459 msgid "Order cancelled" msgstr "" -#: src/pages/build/BuildDetail.tsx:585 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:415 -#: src/pages/sales/ReturnOrderDetail.tsx:426 -#: src/pages/sales/SalesOrderDetail.tsx:453 +#: src/pages/build/BuildDetail.tsx:590 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:420 +#: src/pages/sales/ReturnOrderDetail.tsx:431 +#: src/pages/sales/SalesOrderDetail.tsx:458 msgid "Cancel this order" msgstr "" -#: src/pages/build/BuildDetail.tsx:594 +#: src/pages/build/BuildDetail.tsx:599 msgid "Hold Build Order" msgstr "" -#: src/pages/build/BuildDetail.tsx:596 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:423 -#: src/pages/sales/ReturnOrderDetail.tsx:434 -#: src/pages/sales/SalesOrderDetail.tsx:461 +#: src/pages/build/BuildDetail.tsx:601 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:428 +#: src/pages/sales/ReturnOrderDetail.tsx:439 +#: src/pages/sales/SalesOrderDetail.tsx:466 msgid "Place this order on hold" msgstr "" -#: src/pages/build/BuildDetail.tsx:597 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:424 -#: src/pages/sales/ReturnOrderDetail.tsx:435 -#: src/pages/sales/SalesOrderDetail.tsx:462 +#: src/pages/build/BuildDetail.tsx:602 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:429 +#: src/pages/sales/ReturnOrderDetail.tsx:440 +#: src/pages/sales/SalesOrderDetail.tsx:467 msgid "Order placed on hold" msgstr "" -#: src/pages/build/BuildDetail.tsx:602 +#: src/pages/build/BuildDetail.tsx:607 msgid "Issue Build Order" msgstr "" -#: src/pages/build/BuildDetail.tsx:604 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:407 -#: src/pages/sales/ReturnOrderDetail.tsx:418 -#: src/pages/sales/SalesOrderDetail.tsx:445 +#: src/pages/build/BuildDetail.tsx:609 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:412 +#: src/pages/sales/ReturnOrderDetail.tsx:423 +#: src/pages/sales/SalesOrderDetail.tsx:450 msgid "Issue this order" msgstr "" -#: src/pages/build/BuildDetail.tsx:605 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:408 -#: src/pages/sales/ReturnOrderDetail.tsx:419 -#: src/pages/sales/SalesOrderDetail.tsx:446 +#: src/pages/build/BuildDetail.tsx:610 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:413 +#: src/pages/sales/ReturnOrderDetail.tsx:424 +#: src/pages/sales/SalesOrderDetail.tsx:451 msgid "Order issued" msgstr "" -#: src/pages/build/BuildDetail.tsx:624 +#: src/pages/build/BuildDetail.tsx:629 msgid "Complete Build Order" msgstr "" -#: src/pages/build/BuildDetail.tsx:630 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:436 -#: src/pages/sales/ReturnOrderDetail.tsx:442 -#: src/pages/sales/SalesOrderDetail.tsx:480 +#: src/pages/build/BuildDetail.tsx:635 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:441 +#: src/pages/sales/ReturnOrderDetail.tsx:447 +#: src/pages/sales/SalesOrderDetail.tsx:485 msgid "Mark this order as complete" msgstr "" -#: src/pages/build/BuildDetail.tsx:633 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:430 -#: src/pages/sales/ReturnOrderDetail.tsx:443 -#: src/pages/sales/SalesOrderDetail.tsx:481 +#: src/pages/build/BuildDetail.tsx:638 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:435 +#: src/pages/sales/ReturnOrderDetail.tsx:448 +#: src/pages/sales/SalesOrderDetail.tsx:486 msgid "Order completed" msgstr "" -#: src/pages/build/BuildDetail.tsx:660 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:459 -#: src/pages/sales/ReturnOrderDetail.tsx:470 -#: src/pages/sales/SalesOrderDetail.tsx:516 +#: src/pages/build/BuildDetail.tsx:665 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:464 +#: src/pages/sales/ReturnOrderDetail.tsx:475 +#: src/pages/sales/SalesOrderDetail.tsx:521 msgid "Issue Order" msgstr "" -#: src/pages/build/BuildDetail.tsx:667 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:466 -#: src/pages/sales/ReturnOrderDetail.tsx:477 -#: src/pages/sales/SalesOrderDetail.tsx:530 +#: src/pages/build/BuildDetail.tsx:672 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:471 +#: src/pages/sales/ReturnOrderDetail.tsx:482 +#: src/pages/sales/SalesOrderDetail.tsx:535 msgid "Complete Order" msgstr "" -#: src/pages/build/BuildDetail.tsx:686 +#: src/pages/build/BuildDetail.tsx:691 msgid "Build Order Actions" msgstr "" -#: src/pages/build/BuildDetail.tsx:691 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:489 -#: src/pages/sales/ReturnOrderDetail.tsx:500 -#: src/pages/sales/SalesOrderDetail.tsx:554 +#: src/pages/build/BuildDetail.tsx:696 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:494 +#: src/pages/sales/ReturnOrderDetail.tsx:505 +#: src/pages/sales/SalesOrderDetail.tsx:559 msgid "Edit order" msgstr "" -#: src/pages/build/BuildDetail.tsx:695 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:497 -#: src/pages/sales/ReturnOrderDetail.tsx:506 -#: src/pages/sales/SalesOrderDetail.tsx:559 -msgid "Duplicate order" -msgstr "" - -#: src/pages/build/BuildDetail.tsx:699 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:500 +#: src/pages/build/BuildDetail.tsx:700 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:502 #: src/pages/sales/ReturnOrderDetail.tsx:511 -#: src/pages/sales/SalesOrderDetail.tsx:562 -msgid "Hold order" +#: src/pages/sales/SalesOrderDetail.tsx:564 +msgid "Duplicate order" msgstr "" #: src/pages/build/BuildDetail.tsx:704 #: src/pages/purchasing/PurchaseOrderDetail.tsx:505 #: src/pages/sales/ReturnOrderDetail.tsx:516 #: src/pages/sales/SalesOrderDetail.tsx:567 +msgid "Hold order" +msgstr "" + +#: src/pages/build/BuildDetail.tsx:709 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:510 +#: src/pages/sales/ReturnOrderDetail.tsx:521 +#: src/pages/sales/SalesOrderDetail.tsx:572 msgid "Cancel order" msgstr "" -#: src/pages/build/BuildDetail.tsx:742 +#: src/pages/build/BuildDetail.tsx:747 #: src/pages/stock/StockDetail.tsx:344 -#: src/tables/build/BuildAllocatedStockTable.tsx:85 +#: src/tables/build/BuildAllocatedStockTable.tsx:82 #: src/tables/part/PartBuildAllocationsTable.tsx:45 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:157 #: src/tables/stock/StockTrackingTable.tsx:109 @@ -7143,7 +7206,7 @@ msgstr "" #~ msgid "Build order created" #~ msgstr "Build order created" -#: src/pages/build/BuildIndex.tsx:29 +#: src/pages/build/BuildIndex.tsx:35 #: src/tables/build/BuildOrderTable.tsx:184 msgid "Show external build orders" msgstr "" @@ -7152,61 +7215,82 @@ msgstr "" #~ msgid "New Build Order" #~ msgstr "New Build Order" -#: src/pages/build/BuildIndex.tsx:83 -#: src/pages/purchasing/PurchasingIndex.tsx:69 -#: src/pages/sales/SalesIndex.tsx:92 -#: src/pages/sales/SalesIndex.tsx:125 +#: src/pages/build/BuildIndex.tsx:74 +#: src/pages/part/CategoryDetail.tsx:292 +#: src/pages/purchasing/PurchasingIndex.tsx:74 +#: src/pages/purchasing/PurchasingIndex.tsx:107 +#: src/pages/purchasing/PurchasingIndex.tsx:135 +#: src/pages/purchasing/PurchasingIndex.tsx:156 +#: src/pages/purchasing/PurchasingIndex.tsx:184 +#: src/pages/sales/SalesIndex.tsx:61 +#: src/pages/sales/SalesIndex.tsx:107 +#: src/pages/sales/SalesIndex.tsx:140 msgid "Table View" msgstr "" -#: src/pages/build/BuildIndex.tsx:86 -#: src/pages/purchasing/PurchasingIndex.tsx:72 -#: src/pages/sales/SalesIndex.tsx:95 -#: src/pages/sales/SalesIndex.tsx:128 +#: src/pages/build/BuildIndex.tsx:80 +#: src/pages/purchasing/PurchasingIndex.tsx:80 +#: src/pages/sales/SalesIndex.tsx:67 +#: src/pages/sales/SalesIndex.tsx:113 msgid "Calendar View" msgstr "" -#: src/pages/company/CompanyDetail.tsx:99 +#: src/pages/build/BuildIndex.tsx:86 +#: src/pages/part/CategoryDetail.tsx:306 +#: src/pages/purchasing/PurchasingIndex.tsx:92 +#: src/pages/purchasing/PurchasingIndex.tsx:118 +#: src/pages/purchasing/PurchasingIndex.tsx:141 +#: src/pages/purchasing/PurchasingIndex.tsx:167 +#: src/pages/purchasing/PurchasingIndex.tsx:190 +#: src/pages/sales/SalesIndex.tsx:79 +#: src/pages/sales/SalesIndex.tsx:125 +#: src/pages/sales/SalesIndex.tsx:151 +msgid "Parametric View" +msgstr "" + +#: src/pages/company/CompanyDetail.tsx:100 msgid "Website" msgstr "" -#: src/pages/company/CompanyDetail.tsx:107 +#: src/pages/company/CompanyDetail.tsx:108 msgid "Phone Number" msgstr "" -#: src/pages/company/CompanyDetail.tsx:114 +#: src/pages/company/CompanyDetail.tsx:115 msgid "Email Address" msgstr "" -#: src/pages/company/CompanyDetail.tsx:121 +#: src/pages/company/CompanyDetail.tsx:122 msgid "Tax ID" msgstr "" -#: src/pages/company/CompanyDetail.tsx:131 +#: src/pages/company/CompanyDetail.tsx:132 msgid "Default Currency" msgstr "" -#: src/pages/company/CompanyDetail.tsx:142 +#: src/pages/company/CompanyDetail.tsx:143 #: src/pages/company/ManufacturerDetail.tsx:8 -#: src/pages/company/ManufacturerPartDetail.tsx:104 -#: src/pages/company/ManufacturerPartDetail.tsx:280 -#: src/pages/company/SupplierPartDetail.tsx:152 +#: src/pages/company/ManufacturerPartDetail.tsx:103 +#: src/pages/company/ManufacturerPartDetail.tsx:271 +#: src/pages/company/SupplierPartDetail.tsx:153 #: src/tables/Filter.tsx:347 #: src/tables/company/CompanyTable.tsx:101 #: src/tables/purchasing/SupplierPartTable.tsx:89 msgid "Manufacturer" msgstr "" -#: src/pages/company/CompanyDetail.tsx:148 +#: src/pages/company/CompanyDetail.tsx:149 #: src/pages/company/CustomerDetail.tsx:8 #: src/pages/part/pricing/SaleHistoryPanel.tsx:31 -#: src/pages/sales/ReturnOrderDetail.tsx:123 -#: src/pages/sales/SalesOrderDetail.tsx:113 -#: src/pages/sales/SalesOrderShipmentDetail.tsx:113 +#: src/pages/sales/ReturnOrderDetail.tsx:124 +#: src/pages/sales/SalesOrderDetail.tsx:114 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:111 #: src/pages/stock/StockDetail.tsx:370 #: src/tables/company/CompanyTable.tsx:106 +#: src/tables/sales/ReturnOrderParametricTable.tsx:32 #: src/tables/sales/ReturnOrderTable.tsx:108 -#: src/tables/sales/SalesOrderShipmentTable.tsx:111 +#: src/tables/sales/SalesOrderParametricTable.tsx:32 +#: src/tables/sales/SalesOrderShipmentTable.tsx:132 #: src/tables/sales/SalesOrderTable.tsx:133 #: src/tables/stock/StockTrackingTable.tsx:153 msgid "Customer" @@ -7216,11 +7300,11 @@ msgstr "" #~ msgid "Edit company" #~ msgstr "Edit company" -#: src/pages/company/CompanyDetail.tsx:181 +#: src/pages/company/CompanyDetail.tsx:182 msgid "Company Details" msgstr "" -#: src/pages/company/CompanyDetail.tsx:187 +#: src/pages/company/CompanyDetail.tsx:188 msgid "Supplied Parts" msgstr "" @@ -7228,79 +7312,79 @@ msgstr "" #~ msgid "Delete company" #~ msgstr "Delete company" -#: src/pages/company/CompanyDetail.tsx:194 +#: src/pages/company/CompanyDetail.tsx:195 msgid "Manufactured Parts" msgstr "" -#: src/pages/company/CompanyDetail.tsx:241 +#: src/pages/company/CompanyDetail.tsx:242 msgid "Assigned Stock" msgstr "" -#: src/pages/company/CompanyDetail.tsx:282 +#: src/pages/company/CompanyDetail.tsx:287 #: src/tables/company/CompanyTable.tsx:82 msgid "Edit Company" msgstr "" -#: src/pages/company/CompanyDetail.tsx:290 +#: src/pages/company/CompanyDetail.tsx:295 msgid "Delete Company" msgstr "" -#: src/pages/company/CompanyDetail.tsx:305 +#: src/pages/company/CompanyDetail.tsx:310 msgid "Company Actions" msgstr "" -#: src/pages/company/ManufacturerPartDetail.tsx:78 -#: src/pages/company/SupplierPartDetail.tsx:89 +#: src/pages/company/ManufacturerPartDetail.tsx:77 +#: src/pages/company/SupplierPartDetail.tsx:90 msgid "Internal Part" msgstr "" -#: src/pages/company/ManufacturerPartDetail.tsx:112 +#: src/pages/company/ManufacturerPartDetail.tsx:111 msgid "Manufacturer Part Number" msgstr "" -#: src/pages/company/ManufacturerPartDetail.tsx:129 -#: src/pages/company/SupplierPartDetail.tsx:113 +#: src/pages/company/ManufacturerPartDetail.tsx:128 +#: src/pages/company/SupplierPartDetail.tsx:114 msgid "External Link" msgstr "" -#: src/pages/company/ManufacturerPartDetail.tsx:148 -#: src/pages/company/SupplierPartDetail.tsx:232 +#: src/pages/company/ManufacturerPartDetail.tsx:147 +#: src/pages/company/SupplierPartDetail.tsx:233 #: src/pages/part/PartDetail.tsx:787 msgid "Part Details" msgstr "" -#: src/pages/company/ManufacturerPartDetail.tsx:151 +#: src/pages/company/ManufacturerPartDetail.tsx:150 msgid "Manufacturer Details" msgstr "" -#: src/pages/company/ManufacturerPartDetail.tsx:160 +#: src/pages/company/ManufacturerPartDetail.tsx:159 msgid "Manufacturer Part Details" msgstr "" -#: src/pages/company/ManufacturerPartDetail.tsx:178 -#: src/pages/company/SupplierPartDetail.tsx:252 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:381 +#: src/pages/company/ManufacturerPartDetail.tsx:165 +#: src/pages/company/SupplierPartDetail.tsx:253 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:382 msgid "Received Stock" msgstr "" -#: src/pages/company/ManufacturerPartDetail.tsx:220 +#: src/pages/company/ManufacturerPartDetail.tsx:211 #: src/tables/purchasing/ManufacturerPartTable.tsx:108 msgid "Edit Manufacturer Part" msgstr "" -#: src/pages/company/ManufacturerPartDetail.tsx:227 +#: src/pages/company/ManufacturerPartDetail.tsx:218 #: src/tables/purchasing/ManufacturerPartTable.tsx:96 #: src/tables/purchasing/ManufacturerPartTable.tsx:115 #: src/tables/purchasing/ManufacturerPartTable.tsx:156 msgid "Add Manufacturer Part" msgstr "" -#: src/pages/company/ManufacturerPartDetail.tsx:239 +#: src/pages/company/ManufacturerPartDetail.tsx:230 #: src/tables/purchasing/ManufacturerPartTable.tsx:126 msgid "Delete Manufacturer Part" msgstr "" -#: src/pages/company/ManufacturerPartDetail.tsx:254 +#: src/pages/company/ManufacturerPartDetail.tsx:245 msgid "Manufacturer Part Actions" msgstr "" @@ -7308,12 +7392,12 @@ msgstr "" #~ msgid "ManufacturerPart" #~ msgstr "ManufacturerPart" -#: src/pages/company/SupplierPartDetail.tsx:104 +#: src/pages/company/SupplierPartDetail.tsx:105 #: src/tables/part/RelatedPartTable.tsx:82 msgid "Part Description" msgstr "" -#: src/pages/company/SupplierPartDetail.tsx:179 +#: src/pages/company/SupplierPartDetail.tsx:180 #: src/tables/part/PartPurchaseOrdersTable.tsx:73 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:191 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:233 @@ -7321,50 +7405,50 @@ msgstr "" msgid "Pack Quantity" msgstr "" -#: src/pages/company/SupplierPartDetail.tsx:204 +#: src/pages/company/SupplierPartDetail.tsx:205 msgid "Supplier Availability" msgstr "" -#: src/pages/company/SupplierPartDetail.tsx:212 +#: src/pages/company/SupplierPartDetail.tsx:213 msgid "Availability Updated" msgstr "" -#: src/pages/company/SupplierPartDetail.tsx:237 +#: src/pages/company/SupplierPartDetail.tsx:238 msgid "Availability" msgstr "" -#: src/pages/company/SupplierPartDetail.tsx:246 +#: src/pages/company/SupplierPartDetail.tsx:247 msgid "Supplier Part Details" msgstr "" -#: src/pages/company/SupplierPartDetail.tsx:279 +#: src/pages/company/SupplierPartDetail.tsx:280 #: src/pages/part/PartPricingPanel.tsx:113 #: src/pages/part/pricing/PricingOverviewPanel.tsx:239 msgid "Supplier Pricing" msgstr "" -#: src/pages/company/SupplierPartDetail.tsx:308 +#: src/pages/company/SupplierPartDetail.tsx:313 msgid "Supplier Part Actions" msgstr "" -#: src/pages/company/SupplierPartDetail.tsx:332 +#: src/pages/company/SupplierPartDetail.tsx:337 #: src/tables/purchasing/SupplierPartTable.tsx:244 msgid "Edit Supplier Part" msgstr "" -#: src/pages/company/SupplierPartDetail.tsx:340 +#: src/pages/company/SupplierPartDetail.tsx:345 #: src/tables/purchasing/SupplierPartTable.tsx:264 msgid "Delete Supplier Part" msgstr "" -#: src/pages/company/SupplierPartDetail.tsx:348 +#: src/pages/company/SupplierPartDetail.tsx:353 #: src/tables/purchasing/SupplierPartTable.tsx:172 #: src/tables/purchasing/SupplierPartTable.tsx:251 msgid "Add Supplier Part" msgstr "" -#: src/pages/company/SupplierPartDetail.tsx:388 -#: src/pages/part/PartDetail.tsx:1003 +#: src/pages/company/SupplierPartDetail.tsx:393 +#: src/pages/part/PartDetail.tsx:1018 msgid "No Stock" msgstr "" @@ -7411,83 +7495,83 @@ msgstr "" msgid "Basic user" msgstr "" -#: src/pages/part/CategoryDetail.tsx:100 +#: src/pages/part/CategoryDetail.tsx:103 #: src/pages/stock/LocationDetail.tsx:94 #: src/tables/settings/ErrorTable.tsx:63 #: src/tables/settings/ErrorTable.tsx:108 msgid "Path" msgstr "" -#: src/pages/part/CategoryDetail.tsx:116 +#: src/pages/part/CategoryDetail.tsx:119 msgid "Parent Category" msgstr "" -#: src/pages/part/CategoryDetail.tsx:139 -#: src/pages/part/CategoryDetail.tsx:271 +#: src/pages/part/CategoryDetail.tsx:142 +#: src/pages/part/CategoryDetail.tsx:279 msgid "Subcategories" msgstr "" -#: src/pages/part/CategoryDetail.tsx:146 +#: src/pages/part/CategoryDetail.tsx:149 #: src/pages/stock/LocationDetail.tsx:134 #: src/tables/part/PartCategoryTable.tsx:89 #: src/tables/stock/StockLocationTable.tsx:43 msgid "Structural" msgstr "" -#: src/pages/part/CategoryDetail.tsx:152 +#: src/pages/part/CategoryDetail.tsx:155 msgid "Parent default location" msgstr "" -#: src/pages/part/CategoryDetail.tsx:159 +#: src/pages/part/CategoryDetail.tsx:162 msgid "Default location" msgstr "" -#: src/pages/part/CategoryDetail.tsx:170 +#: src/pages/part/CategoryDetail.tsx:173 msgid "Top level part category" msgstr "" -#: src/pages/part/CategoryDetail.tsx:180 -#: src/pages/part/CategoryDetail.tsx:248 +#: src/pages/part/CategoryDetail.tsx:183 +#: src/pages/part/CategoryDetail.tsx:251 #: src/tables/part/PartCategoryTable.tsx:122 msgid "Edit Part Category" msgstr "" -#: src/pages/part/CategoryDetail.tsx:189 +#: src/pages/part/CategoryDetail.tsx:192 msgid "Move items to parent category" msgstr "" -#: src/pages/part/CategoryDetail.tsx:193 +#: src/pages/part/CategoryDetail.tsx:196 #: src/pages/stock/LocationDetail.tsx:226 msgid "Delete items" msgstr "" -#: src/pages/part/CategoryDetail.tsx:201 -#: src/pages/part/CategoryDetail.tsx:253 +#: src/pages/part/CategoryDetail.tsx:204 +#: src/pages/part/CategoryDetail.tsx:256 msgid "Delete Part Category" msgstr "" -#: src/pages/part/CategoryDetail.tsx:204 +#: src/pages/part/CategoryDetail.tsx:207 msgid "Parts Action" msgstr "" -#: src/pages/part/CategoryDetail.tsx:205 +#: src/pages/part/CategoryDetail.tsx:208 msgid "Action for parts in this category" msgstr "" -#: src/pages/part/CategoryDetail.tsx:211 +#: src/pages/part/CategoryDetail.tsx:214 msgid "Child Categories Action" msgstr "" -#: src/pages/part/CategoryDetail.tsx:212 +#: src/pages/part/CategoryDetail.tsx:215 msgid "Action for child categories in this category" msgstr "" -#: src/pages/part/CategoryDetail.tsx:244 +#: src/pages/part/CategoryDetail.tsx:247 #: src/tables/part/PartCategoryTable.tsx:143 msgid "Category Actions" msgstr "" -#: src/pages/part/CategoryDetail.tsx:265 +#: src/pages/part/CategoryDetail.tsx:273 msgid "Category Details" msgstr "" @@ -7585,7 +7669,6 @@ msgid "Category Default Location" msgstr "" #: src/pages/part/PartDetail.tsx:507 -#: src/tables/purchasing/ManufacturerPartParameterTable.tsx:48 msgid "Units" msgstr "" @@ -7600,7 +7683,7 @@ msgstr "" #: src/pages/part/PartDetail.tsx:542 #: src/tables/bom/BomTable.tsx:439 -#: src/tables/build/BuildLineTable.tsx:305 +#: src/tables/build/BuildLineTable.tsx:306 #: src/tables/part/PartTable.tsx:319 #: src/tables/sales/SalesOrderLineItemTable.tsx:138 msgid "Available Stock" @@ -7608,7 +7691,7 @@ msgstr "" #: src/pages/part/PartDetail.tsx:548 #: src/tables/bom/BomTable.tsx:341 -#: src/tables/build/BuildLineTable.tsx:267 +#: src/tables/build/BuildLineTable.tsx:268 #: src/tables/sales/SalesOrderLineItemTable.tsx:180 msgid "On order" msgstr "" @@ -7634,7 +7717,7 @@ msgstr "" #~ msgstr "Scheduling" #: src/pages/part/PartDetail.tsx:620 -#: src/tables/part/ParametricPartTable.tsx:359 +#: src/tables/part/ParametricPartTable.tsx:24 #: src/tables/part/PartTable.tsx:203 msgid "Locked" msgstr "" @@ -7671,16 +7754,16 @@ msgid "Saleable Part" msgstr "" #: src/pages/part/PartDetail.tsx:663 -#: src/pages/part/PartDetail.tsx:1033 +#: src/pages/part/PartDetail.tsx:1054 #: src/tables/bom/BomTable.tsx:150 #: src/tables/bom/BomTable.tsx:434 msgid "Virtual Part" msgstr "" #: src/pages/part/PartDetail.tsx:678 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:271 -#: src/pages/sales/ReturnOrderDetail.tsx:249 -#: src/pages/sales/SalesOrderDetail.tsx:242 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:272 +#: src/pages/sales/ReturnOrderDetail.tsx:250 +#: src/pages/sales/SalesOrderDetail.tsx:243 #: src/tables/ColumnRenderers.tsx:502 msgid "Creation Date" msgstr "" @@ -7718,35 +7801,46 @@ msgstr "" msgid "Select Part Revision" msgstr "" -#: src/pages/part/PartDetail.tsx:823 +#: src/pages/part/PartDetail.tsx:812 msgid "Variants" msgstr "" -#: src/pages/part/PartDetail.tsx:830 +#: src/pages/part/PartDetail.tsx:819 #: src/pages/stock/StockDetail.tsx:542 msgid "Allocations" msgstr "" -#: src/pages/part/PartDetail.tsx:837 +#: src/pages/part/PartDetail.tsx:826 msgid "Bill of Materials" msgstr "" -#: src/pages/part/PartDetail.tsx:849 +#: src/pages/part/PartDetail.tsx:838 msgid "Used In" msgstr "" -#: src/pages/part/PartDetail.tsx:856 +#: src/pages/part/PartDetail.tsx:845 msgid "Part Pricing" msgstr "" -#: src/pages/part/PartDetail.tsx:926 +#: src/pages/part/PartDetail.tsx:915 msgid "Test Templates" msgstr "" -#: src/pages/part/PartDetail.tsx:948 +#: src/pages/part/PartDetail.tsx:937 msgid "Related Parts" msgstr "" +#: src/pages/part/PartDetail.tsx:949 +#: src/tables/ColumnRenderers.tsx:73 +#: src/tables/bom/BomTable.tsx:657 +#: src/tables/part/PartTestTemplateTable.tsx:258 +msgid "Part is Locked" +msgstr "" + +#: src/pages/part/PartDetail.tsx:954 +msgid "Part parameters cannot be edited, as the part is locked" +msgstr "" + #: src/pages/part/PartDetail.tsx:956 #~ msgid "Count part stock" #~ msgstr "Count part stock" @@ -7755,42 +7849,46 @@ msgstr "" #~ msgid "Transfer part stock" #~ msgstr "Transfer part stock" -#: src/pages/part/PartDetail.tsx:1009 +#: src/pages/part/PartDetail.tsx:1024 #: src/tables/part/PartTestTemplateTable.tsx:112 #: src/tables/stock/StockItemTestResultTable.tsx:404 msgid "Required" msgstr "" -#: src/pages/part/PartDetail.tsx:1058 +#: src/pages/part/PartDetail.tsx:1042 +msgid "Deficit" +msgstr "" + +#: src/pages/part/PartDetail.tsx:1079 #: src/tables/part/PartTable.tsx:396 #: src/tables/part/PartTable.tsx:449 msgid "Add Part" msgstr "" -#: src/pages/part/PartDetail.tsx:1072 +#: src/pages/part/PartDetail.tsx:1093 msgid "Delete Part" msgstr "" -#: src/pages/part/PartDetail.tsx:1081 +#: src/pages/part/PartDetail.tsx:1102 msgid "Deleting this part cannot be reversed" msgstr "" -#: src/pages/part/PartDetail.tsx:1143 +#: src/pages/part/PartDetail.tsx:1164 #: src/pages/stock/StockDetail.tsx:883 msgid "Order" msgstr "" -#: src/pages/part/PartDetail.tsx:1144 +#: src/pages/part/PartDetail.tsx:1165 #: src/pages/stock/StockDetail.tsx:884 -#: src/tables/build/BuildLineTable.tsx:761 +#: src/tables/build/BuildLineTable.tsx:768 msgid "Order Stock" msgstr "" -#: src/pages/part/PartDetail.tsx:1156 +#: src/pages/part/PartDetail.tsx:1177 msgid "Search by serial number" msgstr "" -#: src/pages/part/PartDetail.tsx:1164 +#: src/pages/part/PartDetail.tsx:1185 #: src/tables/part/PartTable.tsx:506 msgid "Part Actions" msgstr "" @@ -8039,7 +8137,7 @@ msgstr "" #: src/pages/part/pricing/PricingOverviewPanel.tsx:288 #: src/pages/stock/StockDetail.tsx:426 -#: src/tables/part/PartParameterTable.tsx:121 +#: src/tables/general/ParameterTable.tsx:101 #: src/tables/stock/StockItemTable.tsx:300 msgid "Last Updated" msgstr "" @@ -8107,17 +8205,17 @@ msgstr "" msgid "Variant Part" msgstr "" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:89 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:90 msgid "Edit Purchase Order" msgstr "" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:125 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:126 #: src/tables/purchasing/PurchaseOrderTable.tsx:154 #: src/tables/purchasing/PurchaseOrderTable.tsx:167 msgid "Add Purchase Order" msgstr "" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:147 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:148 msgid "Supplier Reference" msgstr "" @@ -8127,20 +8225,20 @@ msgstr "" #~ msgid "Order Currency," #~ msgstr "Order Currency," -#: src/pages/purchasing/PurchaseOrderDetail.tsx:187 -#: src/pages/sales/ReturnOrderDetail.tsx:160 -#: src/pages/sales/SalesOrderDetail.tsx:144 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:188 +#: src/pages/sales/ReturnOrderDetail.tsx:161 +#: src/pages/sales/SalesOrderDetail.tsx:145 msgid "Completed Line Items" msgstr "" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:196 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:197 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:272 msgid "Destination" msgstr "" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:202 -#: src/pages/sales/ReturnOrderDetail.tsx:167 -#: src/pages/sales/SalesOrderDetail.tsx:161 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:203 +#: src/pages/sales/ReturnOrderDetail.tsx:168 +#: src/pages/sales/SalesOrderDetail.tsx:162 msgid "Order Currency" msgstr "" @@ -8150,97 +8248,97 @@ msgstr "" #~ msgid "Created On" #~ msgstr "Created On" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:208 -#: src/pages/sales/ReturnOrderDetail.tsx:174 -#: src/pages/sales/SalesOrderDetail.tsx:167 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:209 +#: src/pages/sales/ReturnOrderDetail.tsx:175 +#: src/pages/sales/SalesOrderDetail.tsx:168 msgid "Total Cost" msgstr "" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:237 -#: src/pages/sales/ReturnOrderDetail.tsx:215 -#: src/pages/sales/SalesOrderDetail.tsx:208 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:238 +#: src/pages/sales/ReturnOrderDetail.tsx:216 +#: src/pages/sales/SalesOrderDetail.tsx:209 msgid "Contact Email" msgstr "" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:245 -#: src/pages/sales/ReturnOrderDetail.tsx:223 -#: src/pages/sales/SalesOrderDetail.tsx:216 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:246 +#: src/pages/sales/ReturnOrderDetail.tsx:224 +#: src/pages/sales/SalesOrderDetail.tsx:217 msgid "Contact Phone" msgstr "" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:278 -#: src/pages/sales/ReturnOrderDetail.tsx:257 -#: src/pages/sales/SalesOrderDetail.tsx:249 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:279 +#: src/pages/sales/ReturnOrderDetail.tsx:258 +#: src/pages/sales/SalesOrderDetail.tsx:250 msgid "Issue Date" msgstr "" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:303 -#: src/pages/sales/ReturnOrderDetail.tsx:281 -#: src/pages/sales/SalesOrderDetail.tsx:272 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:304 +#: src/pages/sales/ReturnOrderDetail.tsx:282 +#: src/pages/sales/SalesOrderDetail.tsx:273 #: src/tables/ColumnRenderers.tsx:510 #: src/tables/build/BuildOrderTable.tsx:137 #: src/tables/part/PartPurchaseOrdersTable.tsx:106 msgid "Completion Date" msgstr "" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:333 -#: src/pages/sales/ReturnOrderDetail.tsx:311 -#: src/pages/sales/SalesOrderDetail.tsx:349 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:334 +#: src/pages/sales/ReturnOrderDetail.tsx:312 +#: src/pages/sales/SalesOrderDetail.tsx:350 msgid "Order Details" msgstr "" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:339 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:348 -#: src/pages/sales/ReturnOrderDetail.tsx:153 -#: src/pages/sales/ReturnOrderDetail.tsx:317 -#: src/pages/sales/ReturnOrderDetail.tsx:326 -#: src/pages/sales/SalesOrderDetail.tsx:355 -#: src/pages/sales/SalesOrderDetail.tsx:364 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:340 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:349 +#: src/pages/sales/ReturnOrderDetail.tsx:154 +#: src/pages/sales/ReturnOrderDetail.tsx:318 +#: src/pages/sales/ReturnOrderDetail.tsx:327 +#: src/pages/sales/SalesOrderDetail.tsx:356 +#: src/pages/sales/SalesOrderDetail.tsx:365 msgid "Line Items" msgstr "" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:363 -#: src/pages/sales/ReturnOrderDetail.tsx:341 -#: src/pages/sales/SalesOrderDetail.tsx:378 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:364 +#: src/pages/sales/ReturnOrderDetail.tsx:342 +#: src/pages/sales/SalesOrderDetail.tsx:379 msgid "Extra Line Items" msgstr "" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:405 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:410 msgid "Issue Purchase Order" msgstr "" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:413 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:418 msgid "Cancel Purchase Order" msgstr "" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:421 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:426 msgid "Hold Purchase Order" msgstr "" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:429 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:434 msgid "Complete Purchase Order" msgstr "" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:485 -#: src/pages/sales/ReturnOrderDetail.tsx:496 -#: src/pages/sales/SalesOrderDetail.tsx:549 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:490 +#: src/pages/sales/ReturnOrderDetail.tsx:501 +#: src/pages/sales/SalesOrderDetail.tsx:554 msgid "Order Actions" msgstr "" -#: src/pages/sales/ReturnOrderDetail.tsx:114 -#: src/pages/sales/SalesOrderDetail.tsx:104 -#: src/pages/sales/SalesOrderShipmentDetail.tsx:134 +#: src/pages/sales/ReturnOrderDetail.tsx:115 +#: src/pages/sales/SalesOrderDetail.tsx:105 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:132 #: src/tables/sales/SalesOrderTable.tsx:141 msgid "Customer Reference" msgstr "" -#: src/pages/sales/ReturnOrderDetail.tsx:195 +#: src/pages/sales/ReturnOrderDetail.tsx:196 msgid "Return Address" msgstr "" -#: src/pages/sales/ReturnOrderDetail.tsx:201 -#: src/pages/sales/SalesOrderDetail.tsx:194 -#: src/pages/sales/SalesOrderShipmentDetail.tsx:181 +#: src/pages/sales/ReturnOrderDetail.tsx:202 +#: src/pages/sales/SalesOrderDetail.tsx:195 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:179 msgid "Not specified" msgstr "" @@ -8248,117 +8346,117 @@ msgstr "" #~ msgid "Order canceled" #~ msgstr "Order canceled" -#: src/pages/sales/ReturnOrderDetail.tsx:389 +#: src/pages/sales/ReturnOrderDetail.tsx:394 msgid "Edit Return Order" msgstr "" -#: src/pages/sales/ReturnOrderDetail.tsx:407 +#: src/pages/sales/ReturnOrderDetail.tsx:412 #: src/tables/sales/ReturnOrderTable.tsx:154 #: src/tables/sales/ReturnOrderTable.tsx:167 msgid "Add Return Order" msgstr "" -#: src/pages/sales/ReturnOrderDetail.tsx:416 +#: src/pages/sales/ReturnOrderDetail.tsx:421 msgid "Issue Return Order" msgstr "" -#: src/pages/sales/ReturnOrderDetail.tsx:424 +#: src/pages/sales/ReturnOrderDetail.tsx:429 msgid "Cancel Return Order" msgstr "" -#: src/pages/sales/ReturnOrderDetail.tsx:432 +#: src/pages/sales/ReturnOrderDetail.tsx:437 msgid "Hold Return Order" msgstr "" -#: src/pages/sales/ReturnOrderDetail.tsx:440 +#: src/pages/sales/ReturnOrderDetail.tsx:445 msgid "Complete Return Order" msgstr "" -#: src/pages/sales/SalesOrderDetail.tsx:153 +#: src/pages/sales/SalesOrderDetail.tsx:154 msgid "Completed Shipments" msgstr "" -#: src/pages/sales/SalesOrderDetail.tsx:188 -#: src/pages/sales/SalesOrderShipmentDetail.tsx:170 +#: src/pages/sales/SalesOrderDetail.tsx:189 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:168 msgid "Shipping Address" msgstr "" -#: src/pages/sales/SalesOrderDetail.tsx:316 +#: src/pages/sales/SalesOrderDetail.tsx:317 msgid "Edit Sales Order" msgstr "" -#: src/pages/sales/SalesOrderDetail.tsx:338 +#: src/pages/sales/SalesOrderDetail.tsx:339 #: src/tables/sales/SalesOrderTable.tsx:108 #: src/tables/sales/SalesOrderTable.tsx:121 msgid "Add Sales Order" msgstr "" -#: src/pages/sales/SalesOrderDetail.tsx:396 +#: src/pages/sales/SalesOrderDetail.tsx:397 #: src/tables/sales/SalesOrderTable.tsx:147 msgid "Shipments" msgstr "" -#: src/pages/sales/SalesOrderDetail.tsx:443 +#: src/pages/sales/SalesOrderDetail.tsx:448 msgid "Issue Sales Order" msgstr "" -#: src/pages/sales/SalesOrderDetail.tsx:451 +#: src/pages/sales/SalesOrderDetail.tsx:456 msgid "Cancel Sales Order" msgstr "" -#: src/pages/sales/SalesOrderDetail.tsx:459 +#: src/pages/sales/SalesOrderDetail.tsx:464 msgid "Hold Sales Order" msgstr "" -#: src/pages/sales/SalesOrderDetail.tsx:467 +#: src/pages/sales/SalesOrderDetail.tsx:472 msgid "Ship Sales Order" msgstr "" -#: src/pages/sales/SalesOrderDetail.tsx:469 +#: src/pages/sales/SalesOrderDetail.tsx:474 msgid "Ship this order?" msgstr "" -#: src/pages/sales/SalesOrderDetail.tsx:470 +#: src/pages/sales/SalesOrderDetail.tsx:475 msgid "Order shipped" msgstr "" -#: src/pages/sales/SalesOrderDetail.tsx:478 +#: src/pages/sales/SalesOrderDetail.tsx:483 msgid "Complete Sales Order" msgstr "" -#: src/pages/sales/SalesOrderDetail.tsx:523 +#: src/pages/sales/SalesOrderDetail.tsx:528 msgid "Ship Order" msgstr "" -#: src/pages/sales/SalesOrderShipmentDetail.tsx:142 -#: src/tables/sales/SalesOrderShipmentTable.tsx:135 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:140 +#: src/tables/sales/SalesOrderShipmentTable.tsx:156 msgid "Shipment Reference" msgstr "" -#: src/pages/sales/SalesOrderShipmentDetail.tsx:148 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:146 msgid "Tracking Number" msgstr "" -#: src/pages/sales/SalesOrderShipmentDetail.tsx:156 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:154 msgid "Invoice Number" msgstr "" -#: src/pages/sales/SalesOrderShipmentDetail.tsx:191 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:189 msgid "Allocated Items" msgstr "" -#: src/pages/sales/SalesOrderShipmentDetail.tsx:196 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:194 msgid "Checked By" msgstr "" -#: src/pages/sales/SalesOrderShipmentDetail.tsx:202 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:200 msgid "Not checked" msgstr "" -#: src/pages/sales/SalesOrderShipmentDetail.tsx:208 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:206 #: src/tables/ColumnRenderers.tsx:518 #: src/tables/sales/SalesOrderAllocationTable.tsx:182 -#: src/tables/sales/SalesOrderShipmentTable.tsx:168 +#: src/tables/sales/SalesOrderShipmentTable.tsx:189 msgid "Shipment Date" msgstr "" @@ -8366,108 +8464,82 @@ msgstr "" #~ msgid "Assigned Items" #~ msgstr "Assigned Items" -#: src/pages/sales/SalesOrderShipmentDetail.tsx:216 -#: src/tables/sales/SalesOrderShipmentTable.tsx:172 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:214 +#: src/tables/sales/SalesOrderShipmentTable.tsx:193 msgid "Delivery Date" msgstr "" -#: src/pages/sales/SalesOrderShipmentDetail.tsx:255 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:253 msgid "Shipment Details" msgstr "" -#: src/pages/sales/SalesOrderShipmentDetail.tsx:294 -#: src/pages/sales/SalesOrderShipmentDetail.tsx:438 -#: src/tables/sales/SalesOrderShipmentTable.tsx:90 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:292 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:406 +#: src/tables/sales/SalesOrderShipmentTable.tsx:97 msgid "Edit Shipment" msgstr "" -#: src/pages/sales/SalesOrderShipmentDetail.tsx:301 -#: src/pages/sales/SalesOrderShipmentDetail.tsx:457 -#: src/tables/sales/SalesOrderShipmentTable.tsx:82 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:299 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:425 +#: src/tables/sales/SalesOrderShipmentTable.tsx:89 msgid "Cancel Shipment" msgstr "" -#: src/pages/sales/SalesOrderShipmentDetail.tsx:314 -#: src/tables/sales/SalesOrderShipmentTable.tsx:98 -#: src/tables/sales/SalesOrderShipmentTable.tsx:193 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:312 +#: src/tables/sales/SalesOrderShipmentTable.tsx:119 +#: src/tables/sales/SalesOrderShipmentTable.tsx:238 msgid "Complete Shipment" msgstr "" -#: src/pages/sales/SalesOrderShipmentDetail.tsx:326 -#: src/pages/sales/SalesOrderShipmentDetail.tsx:328 -msgid "Check Shipment" -msgstr "" - -#: src/pages/sales/SalesOrderShipmentDetail.tsx:329 -msgid "Marking the shipment as checked indicates that you have verified that all items included in this shipment are correct" -msgstr "" - #: src/pages/sales/SalesOrderShipmentDetail.tsx:339 -msgid "Shipment marked as checked" -msgstr "" - -#: src/pages/sales/SalesOrderShipmentDetail.tsx:346 -#: src/pages/sales/SalesOrderShipmentDetail.tsx:348 -msgid "Uncheck Shipment" -msgstr "" - -#: src/pages/sales/SalesOrderShipmentDetail.tsx:349 -msgid "Marking the shipment as unchecked indicates that the shipment requires further verification" -msgstr "" - -#: src/pages/sales/SalesOrderShipmentDetail.tsx:359 -msgid "Shipment marked as unchecked" -msgstr "" - -#: src/pages/sales/SalesOrderShipmentDetail.tsx:371 #: src/tables/part/PartPurchaseOrdersTable.tsx:122 msgid "Pending" msgstr "" -#: src/pages/sales/SalesOrderShipmentDetail.tsx:377 -#: src/tables/sales/SalesOrderShipmentTable.tsx:147 -#: src/tables/sales/SalesOrderShipmentTable.tsx:254 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:345 +#: src/tables/sales/SalesOrderShipmentTable.tsx:168 +#: src/tables/sales/SalesOrderShipmentTable.tsx:299 msgid "Checked" msgstr "" -#: src/pages/sales/SalesOrderShipmentDetail.tsx:383 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:351 msgid "Not Checked" msgstr "" -#: src/pages/sales/SalesOrderShipmentDetail.tsx:389 -#: src/tables/sales/SalesOrderShipmentTable.tsx:154 -#: src/tables/sales/SalesOrderShipmentTable.tsx:259 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:357 +#: src/tables/sales/SalesOrderShipmentTable.tsx:175 +#: src/tables/sales/SalesOrderShipmentTable.tsx:304 msgid "Shipped" msgstr "" -#: src/pages/sales/SalesOrderShipmentDetail.tsx:395 -#: src/tables/sales/SalesOrderShipmentTable.tsx:161 -#: src/tables/sales/SalesOrderShipmentTable.tsx:264 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:363 +#: src/tables/sales/SalesOrderShipmentTable.tsx:182 +#: src/tables/sales/SalesOrderShipmentTable.tsx:309 #: src/tables/settings/EmailTable.tsx:31 msgid "Delivered" msgstr "" -#: src/pages/sales/SalesOrderShipmentDetail.tsx:410 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:378 msgid "Send Shipment" msgstr "" -#: src/pages/sales/SalesOrderShipmentDetail.tsx:433 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:401 msgid "Shipment Actions" msgstr "" -#: src/pages/sales/SalesOrderShipmentDetail.tsx:442 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:410 msgid "Check" msgstr "" -#: src/pages/sales/SalesOrderShipmentDetail.tsx:443 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:411 msgid "Mark shipment as checked" msgstr "" -#: src/pages/sales/SalesOrderShipmentDetail.tsx:449 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:417 msgid "Uncheck" msgstr "" -#: src/pages/sales/SalesOrderShipmentDetail.tsx:450 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:418 msgid "Mark shipment as unchecked" msgstr "" @@ -8775,13 +8847,6 @@ msgstr "" msgid "Part is not active" msgstr "" -#: src/tables/ColumnRenderers.tsx:73 -#: src/tables/bom/BomTable.tsx:657 -#: src/tables/part/PartParameterTable.tsx:227 -#: src/tables/part/PartTestTemplateTable.tsx:258 -msgid "Part is Locked" -msgstr "" - #: src/tables/ColumnRenderers.tsx:78 msgid "You are subscribed to notifications for this part" msgstr "" @@ -9219,13 +9284,13 @@ msgstr "" #~ msgstr "Show asssmbled items" #: src/tables/bom/BomTable.tsx:315 -#: src/tables/build/BuildLineTable.tsx:276 +#: src/tables/build/BuildLineTable.tsx:277 #: src/tables/part/PartTable.tsx:145 msgid "External stock" msgstr "" #: src/tables/bom/BomTable.tsx:323 -#: src/tables/build/BuildLineTable.tsx:239 +#: src/tables/build/BuildLineTable.tsx:240 msgid "Includes substitute stock" msgstr "" @@ -9234,7 +9299,7 @@ msgstr "" #~ msgstr "Edit Bom Item" #: src/tables/bom/BomTable.tsx:332 -#: src/tables/build/BuildLineTable.tsx:249 +#: src/tables/build/BuildLineTable.tsx:250 #: src/tables/sales/SalesOrderLineItemTable.tsx:166 msgid "Includes variant stock" msgstr "" @@ -9272,8 +9337,8 @@ msgid "Stock Information" msgstr "" #: src/tables/bom/BomTable.tsx:399 -#: src/tables/build/BuildLineTable.tsx:496 -#: src/tables/build/BuildLineTable.tsx:537 +#: src/tables/build/BuildLineTable.tsx:497 +#: src/tables/build/BuildLineTable.tsx:538 msgid "Consumable item" msgstr "" @@ -9282,7 +9347,7 @@ msgid "No available stock" msgstr "" #: src/tables/bom/BomTable.tsx:420 -#: src/tables/build/BuildLineTable.tsx:213 +#: src/tables/build/BuildLineTable.tsx:214 msgid "Show testable items" msgstr "" @@ -9291,7 +9356,7 @@ msgid "Show trackable items" msgstr "" #: src/tables/bom/BomTable.tsx:430 -#: src/tables/build/BuildLineTable.tsx:208 +#: src/tables/build/BuildLineTable.tsx:209 msgid "Show assembled items" msgstr "" @@ -9335,7 +9400,7 @@ msgstr "" #: src/tables/bom/BomTable.tsx:464 #: src/tables/bom/UsedInTable.tsx:85 -#: src/tables/build/BuildLineTable.tsx:202 +#: src/tables/build/BuildLineTable.tsx:203 msgid "Optional" msgstr "" @@ -9345,7 +9410,7 @@ msgid "Show optional items" msgstr "" #: src/tables/bom/BomTable.tsx:469 -#: src/tables/build/BuildLineTable.tsx:197 +#: src/tables/build/BuildLineTable.tsx:198 msgid "Consumable" msgstr "" @@ -9420,6 +9485,7 @@ msgid "Add a single BOM item" msgstr "" #: src/tables/bom/BomTable.tsx:637 +#: src/tables/general/ParameterTable.tsx:206 #: src/tables/part/PartTable.tsx:546 msgid "Import from File" msgstr "" @@ -9433,8 +9499,8 @@ msgid "Bill of materials cannot be edited, as the part is locked" msgstr "" #: src/tables/bom/UsedInTable.tsx:34 -#: src/tables/build/BuildLineTable.tsx:207 -#: src/tables/part/ParametricPartTable.tsx:364 +#: src/tables/build/BuildLineTable.tsx:208 +#: src/tables/part/ParametricPartTable.tsx:29 #: src/tables/part/PartBuildAllocationsTable.tsx:60 #: src/tables/part/PartTable.tsx:209 #: src/tables/stock/StockItemTable.tsx:333 @@ -9455,11 +9521,11 @@ msgstr "" msgid "Show trackable assemblies" msgstr "" -#: src/tables/build/BuildAllocatedStockTable.tsx:67 +#: src/tables/build/BuildAllocatedStockTable.tsx:64 msgid "Allocated to Output" msgstr "" -#: src/tables/build/BuildAllocatedStockTable.tsx:68 +#: src/tables/build/BuildAllocatedStockTable.tsx:65 msgid "Show items allocated to a build output" msgstr "" @@ -9472,50 +9538,68 @@ msgstr "" #~ msgid "Include orders for part variants" #~ msgstr "Include orders for part variants" -#: src/tables/build/BuildAllocatedStockTable.tsx:97 +#: src/tables/build/BuildAllocatedStockTable.tsx:94 #: src/tables/part/PartBuildAllocationsTable.tsx:84 #: src/tables/part/PartPurchaseOrdersTable.tsx:132 #: src/tables/part/PartSalesAllocationsTable.tsx:69 #: src/tables/sales/SalesOrderAllocationTable.tsx:122 -#: src/tables/sales/SalesOrderShipmentTable.tsx:130 +#: src/tables/sales/SalesOrderShipmentTable.tsx:151 msgid "Order Status" msgstr "" +#: src/tables/build/BuildAllocatedStockTable.tsx:164 +#: src/tables/build/BuildLineTable.tsx:651 +msgid "Edit Stock Allocation" +msgstr "" + #: src/tables/build/BuildAllocatedStockTable.tsx:164 #~ msgid "Edit Build Item" #~ msgstr "Edit Build Item" -#: src/tables/build/BuildAllocatedStockTable.tsx:167 -#: src/tables/build/BuildLineTable.tsx:650 -msgid "Edit Stock Allocation" -msgstr "" - #: src/tables/build/BuildAllocatedStockTable.tsx:174 #~ msgid "Delete Build Item" #~ msgstr "Delete Build Item" -#: src/tables/build/BuildAllocatedStockTable.tsx:180 -#: src/tables/build/BuildLineTable.tsx:663 -msgid "Delete Stock Allocation" +#: src/tables/build/BuildAllocatedStockTable.tsx:177 +#: src/tables/build/BuildLineTable.tsx:664 +#: src/tables/sales/SalesOrderAllocationTable.tsx:218 +msgid "Remove Allocated Stock" msgstr "" -#: src/tables/build/BuildAllocatedStockTable.tsx:239 +#: src/tables/build/BuildAllocatedStockTable.tsx:180 +#: src/tables/build/BuildLineTable.tsx:663 +#~ msgid "Delete Stock Allocation" +#~ msgstr "Delete Stock Allocation" + +#: src/tables/build/BuildAllocatedStockTable.tsx:182 +#: src/tables/build/BuildLineTable.tsx:669 +#: src/tables/sales/SalesOrderAllocationTable.tsx:221 +msgid "Are you sure you want to remove this allocated stock from the order?" +msgstr "" + +#: src/tables/build/BuildAllocatedStockTable.tsx:242 msgid "Consume" msgstr "" +#: src/tables/build/BuildAllocatedStockTable.tsx:259 +#: src/tables/build/BuildLineTable.tsx:112 +#: src/tables/sales/SalesOrderAllocationTable.tsx:248 +msgid "Remove allocated stock" +msgstr "" + #: src/tables/build/BuildLineTable.tsx:59 #~ msgid "Show lines with available stock" #~ msgstr "Show lines with available stock" -#: src/tables/build/BuildLineTable.tsx:120 +#: src/tables/build/BuildLineTable.tsx:121 msgid "View Stock Item" msgstr "" -#: src/tables/build/BuildLineTable.tsx:183 +#: src/tables/build/BuildLineTable.tsx:184 msgid "Show fully allocated lines" msgstr "" -#: src/tables/build/BuildLineTable.tsx:188 +#: src/tables/build/BuildLineTable.tsx:189 msgid "Show fully consumed lines" msgstr "" @@ -9523,124 +9607,124 @@ msgstr "" #~ msgid "Show allocated lines" #~ msgstr "Show allocated lines" -#: src/tables/build/BuildLineTable.tsx:193 +#: src/tables/build/BuildLineTable.tsx:194 msgid "Show items with sufficient available stock" msgstr "" -#: src/tables/build/BuildLineTable.tsx:198 +#: src/tables/build/BuildLineTable.tsx:199 msgid "Show consumable lines" msgstr "" -#: src/tables/build/BuildLineTable.tsx:203 +#: src/tables/build/BuildLineTable.tsx:204 msgid "Show optional lines" msgstr "" -#: src/tables/build/BuildLineTable.tsx:212 +#: src/tables/build/BuildLineTable.tsx:213 #: src/tables/part/PartTable.tsx:233 msgid "Testable" msgstr "" -#: src/tables/build/BuildLineTable.tsx:217 +#: src/tables/build/BuildLineTable.tsx:218 #: src/tables/stock/StockItemTable.tsx:388 msgid "Tracked" msgstr "" -#: src/tables/build/BuildLineTable.tsx:218 +#: src/tables/build/BuildLineTable.tsx:219 msgid "Show tracked lines" msgstr "" -#: src/tables/build/BuildLineTable.tsx:223 +#: src/tables/build/BuildLineTable.tsx:224 msgid "Show items with stock on order" msgstr "" -#: src/tables/build/BuildLineTable.tsx:258 +#: src/tables/build/BuildLineTable.tsx:259 #: src/tables/sales/SalesOrderLineItemTable.tsx:172 msgid "In production" msgstr "" -#: src/tables/build/BuildLineTable.tsx:286 +#: src/tables/build/BuildLineTable.tsx:287 msgid "Insufficient stock" msgstr "" -#: src/tables/build/BuildLineTable.tsx:302 +#: src/tables/build/BuildLineTable.tsx:303 #: src/tables/sales/SalesOrderLineItemTable.tsx:160 #: src/tables/stock/StockItemTable.tsx:191 msgid "No stock available" msgstr "" -#: src/tables/build/BuildLineTable.tsx:375 +#: src/tables/build/BuildLineTable.tsx:376 msgid "Gets Inherited" msgstr "" -#: src/tables/build/BuildLineTable.tsx:388 +#: src/tables/build/BuildLineTable.tsx:389 msgid "Unit Quantity" msgstr "" -#: src/tables/build/BuildLineTable.tsx:415 +#: src/tables/build/BuildLineTable.tsx:416 msgid "Setup Quantity" msgstr "" -#: src/tables/build/BuildLineTable.tsx:424 +#: src/tables/build/BuildLineTable.tsx:425 msgid "Attrition" msgstr "" -#: src/tables/build/BuildLineTable.tsx:432 +#: src/tables/build/BuildLineTable.tsx:433 msgid "Rounding Multiple" msgstr "" -#: src/tables/build/BuildLineTable.tsx:441 +#: src/tables/build/BuildLineTable.tsx:442 msgid "BOM Information" msgstr "" -#: src/tables/build/BuildLineTable.tsx:515 +#: src/tables/build/BuildLineTable.tsx:516 #: src/tables/part/PartBuildAllocationsTable.tsx:102 msgid "Fully allocated" msgstr "" -#: src/tables/build/BuildLineTable.tsx:563 +#: src/tables/build/BuildLineTable.tsx:564 #: src/tables/sales/SalesOrderLineItemTable.tsx:311 msgid "Create Build Order" msgstr "" -#: src/tables/build/BuildLineTable.tsx:592 +#: src/tables/build/BuildLineTable.tsx:593 msgid "Auto allocation in progress" msgstr "" -#: src/tables/build/BuildLineTable.tsx:595 -#: src/tables/build/BuildLineTable.tsx:802 +#: src/tables/build/BuildLineTable.tsx:596 +#: src/tables/build/BuildLineTable.tsx:809 msgid "Auto Allocate Stock" msgstr "" -#: src/tables/build/BuildLineTable.tsx:596 +#: src/tables/build/BuildLineTable.tsx:597 msgid "Automatically allocate stock to this build according to the selected options" msgstr "" -#: src/tables/build/BuildLineTable.tsx:616 -#: src/tables/build/BuildLineTable.tsx:630 -#: src/tables/build/BuildLineTable.tsx:751 -#: src/tables/build/BuildLineTable.tsx:852 +#: src/tables/build/BuildLineTable.tsx:617 +#: src/tables/build/BuildLineTable.tsx:631 +#: src/tables/build/BuildLineTable.tsx:758 +#: src/tables/build/BuildLineTable.tsx:859 #: src/tables/build/BuildOutputTable.tsx:355 #: src/tables/build/BuildOutputTable.tsx:360 msgid "Deallocate Stock" msgstr "" -#: src/tables/build/BuildLineTable.tsx:632 +#: src/tables/build/BuildLineTable.tsx:633 msgid "Deallocate all untracked stock for this build order" msgstr "" -#: src/tables/build/BuildLineTable.tsx:634 +#: src/tables/build/BuildLineTable.tsx:635 msgid "Deallocate stock from the selected line item" msgstr "" -#: src/tables/build/BuildLineTable.tsx:638 +#: src/tables/build/BuildLineTable.tsx:639 msgid "Stock has been deallocated" msgstr "" -#: src/tables/build/BuildLineTable.tsx:771 +#: src/tables/build/BuildLineTable.tsx:778 msgid "Build Stock" msgstr "" -#: src/tables/build/BuildLineTable.tsx:784 +#: src/tables/build/BuildLineTable.tsx:791 #: src/tables/sales/SalesOrderLineItemTable.tsx:487 msgid "View Part" msgstr "" @@ -9739,7 +9823,7 @@ msgid "Serialize Build Output" msgstr "" #: src/tables/build/BuildOutputTable.tsx:405 -#: src/tables/part/PartTestResultTable.tsx:310 +#: src/tables/part/PartTestResultTable.tsx:318 #: src/tables/stock/StockItemTable.tsx:328 msgid "Filter by stock status" msgstr "" @@ -9964,8 +10048,8 @@ msgid "View Item" msgstr "" #: src/tables/general/ExtraLineItemTable.tsx:95 -#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:299 -#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:403 +#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:300 +#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:405 #: src/tables/sales/ReturnOrderLineItemTable.tsx:83 #: src/tables/sales/ReturnOrderLineItemTable.tsx:187 #: src/tables/sales/SalesOrderLineItemTable.tsx:252 @@ -9974,14 +10058,14 @@ msgid "Add Line Item" msgstr "" #: src/tables/general/ExtraLineItemTable.tsx:108 -#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:320 +#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:322 #: src/tables/sales/ReturnOrderLineItemTable.tsx:96 #: src/tables/sales/SalesOrderLineItemTable.tsx:271 msgid "Edit Line Item" msgstr "" #: src/tables/general/ExtraLineItemTable.tsx:117 -#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:329 +#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:331 #: src/tables/sales/ReturnOrderLineItemTable.tsx:105 #: src/tables/sales/SalesOrderLineItemTable.tsx:280 msgid "Delete Line Item" @@ -9991,6 +10075,137 @@ msgstr "" msgid "Add Extra Line Item" msgstr "" +#: src/tables/general/ParameterTable.tsx:88 +msgid "Internal Units" +msgstr "" + +#: src/tables/general/ParameterTable.tsx:108 +#: src/tables/general/ParameterTable.tsx:123 +msgid "Updated By" +msgstr "" + +#: src/tables/general/ParameterTable.tsx:118 +msgid "Show parameters for enabled templates" +msgstr "" + +#: src/tables/general/ParameterTable.tsx:124 +msgid "Filter by user who last updated the parameter" +msgstr "" + +#: src/tables/general/ParameterTable.tsx:154 +msgid "Import Parameters" +msgstr "" + +#: src/tables/general/ParameterTable.tsx:164 +#: src/tables/general/ParametricDataTable.tsx:261 +#: src/tables/general/ParametricDataTable.tsx:392 +msgid "Add Parameter" +msgstr "" + +#: src/tables/general/ParameterTable.tsx:175 +#: src/tables/general/ParameterTable.tsx:222 +#: src/tables/general/ParametricDataTable.tsx:285 +msgid "Edit Parameter" +msgstr "" + +#: src/tables/general/ParameterTable.tsx:183 +#: src/tables/general/ParameterTable.tsx:230 +msgid "Delete Parameter" +msgstr "" + +#: src/tables/general/ParameterTable.tsx:191 +msgid "Add Parameters" +msgstr "" + +#: src/tables/general/ParameterTable.tsx:197 +msgid "Create Parameter" +msgstr "" + +#: src/tables/general/ParameterTable.tsx:199 +msgid "Create a new parameter" +msgstr "" + +#: src/tables/general/ParameterTable.tsx:208 +msgid "Import parameters from a file" +msgstr "" + +#: src/tables/general/ParameterTemplateTable.tsx:48 +#: src/tables/general/ParameterTemplateTable.tsx:197 +msgid "Add Parameter Template" +msgstr "" + +#: src/tables/general/ParameterTemplateTable.tsx:64 +msgid "Duplicate Parameter Template" +msgstr "" + +#: src/tables/general/ParameterTemplateTable.tsx:78 +msgid "Delete Parameter Template" +msgstr "" + +#: src/tables/general/ParameterTemplateTable.tsx:85 +msgid "Edit Parameter Template" +msgstr "" + +#: src/tables/general/ParameterTemplateTable.tsx:138 +msgid "Checkbox" +msgstr "" + +#: src/tables/general/ParameterTemplateTable.tsx:139 +msgid "Show checkbox templates" +msgstr "" + +#: src/tables/general/ParameterTemplateTable.tsx:143 +msgid "Has choices" +msgstr "" + +#: src/tables/general/ParameterTemplateTable.tsx:144 +msgid "Show templates with choices" +msgstr "" + +#: src/tables/general/ParameterTemplateTable.tsx:148 +#: src/tables/part/PartTable.tsx:245 +msgid "Has Units" +msgstr "" + +#: src/tables/general/ParameterTemplateTable.tsx:149 +msgid "Show templates with units" +msgstr "" + +#: src/tables/general/ParameterTemplateTable.tsx:154 +msgid "Show enabled templates" +msgstr "" + +#: src/tables/general/ParameterTemplateTable.tsx:158 +#: src/tables/settings/ImportSessionTable.tsx:111 +#: src/tables/settings/TemplateTable.tsx:368 +msgid "Model Type" +msgstr "" + +#: src/tables/general/ParameterTemplateTable.tsx:159 +msgid "Filter by model type" +msgstr "" + +#: src/tables/general/ParametricDataTable.tsx:79 +msgid "Click to edit" +msgstr "" + +#: src/tables/general/ParametricDataTableFilters.tsx:36 +msgid "True" +msgstr "" + +#: src/tables/general/ParametricDataTableFilters.tsx:37 +msgid "False" +msgstr "" + +#: src/tables/general/ParametricDataTableFilters.tsx:47 +#: src/tables/general/ParametricDataTableFilters.tsx:80 +msgid "Select a choice" +msgstr "" + +#: src/tables/general/ParametricDataTableFilters.tsx:100 +msgid "Enter a value" +msgstr "" + #: src/tables/machine/MachineListTable.tsx:133 msgid "Machine restarted" msgstr "" @@ -10071,7 +10286,7 @@ msgid "Initialized" msgstr "" #: src/tables/machine/MachineListTable.tsx:410 -#: src/tables/machine/MachineTypeTable.tsx:307 +#: src/tables/machine/MachineTypeTable.tsx:305 msgid "No errors reported" msgstr "" @@ -10132,15 +10347,15 @@ msgstr "" #~ msgid "Machine type information" #~ msgstr "Machine type information" -#: src/tables/machine/MachineTypeTable.tsx:128 +#: src/tables/machine/MachineTypeTable.tsx:126 msgid "Not Found" msgstr "" -#: src/tables/machine/MachineTypeTable.tsx:131 +#: src/tables/machine/MachineTypeTable.tsx:129 msgid "Machine type not found." msgstr "" -#: src/tables/machine/MachineTypeTable.tsx:141 +#: src/tables/machine/MachineTypeTable.tsx:139 msgid "Machine Type Information" msgstr "" @@ -10148,34 +10363,34 @@ msgstr "" #~ msgid "Available drivers" #~ msgstr "Available drivers" -#: src/tables/machine/MachineTypeTable.tsx:156 -#: src/tables/machine/MachineTypeTable.tsx:255 +#: src/tables/machine/MachineTypeTable.tsx:154 +#: src/tables/machine/MachineTypeTable.tsx:253 msgid "Slug" msgstr "" -#: src/tables/machine/MachineTypeTable.tsx:167 -#: src/tables/machine/MachineTypeTable.tsx:276 +#: src/tables/machine/MachineTypeTable.tsx:165 +#: src/tables/machine/MachineTypeTable.tsx:274 msgid "Provider plugin" msgstr "" -#: src/tables/machine/MachineTypeTable.tsx:179 -#: src/tables/machine/MachineTypeTable.tsx:288 +#: src/tables/machine/MachineTypeTable.tsx:177 +#: src/tables/machine/MachineTypeTable.tsx:286 msgid "Provider file" msgstr "" -#: src/tables/machine/MachineTypeTable.tsx:194 +#: src/tables/machine/MachineTypeTable.tsx:192 msgid "Available Drivers" msgstr "" -#: src/tables/machine/MachineTypeTable.tsx:234 +#: src/tables/machine/MachineTypeTable.tsx:232 msgid "Machine driver not found." msgstr "" -#: src/tables/machine/MachineTypeTable.tsx:242 +#: src/tables/machine/MachineTypeTable.tsx:240 msgid "Machine driver information" msgstr "" -#: src/tables/machine/MachineTypeTable.tsx:262 +#: src/tables/machine/MachineTypeTable.tsx:260 msgid "Machine type" msgstr "" @@ -10187,15 +10402,15 @@ msgstr "" #~ msgid "Machine driver detail" #~ msgstr "Machine driver detail" -#: src/tables/machine/MachineTypeTable.tsx:362 +#: src/tables/machine/MachineTypeTable.tsx:360 msgid "Builtin type" msgstr "" -#: src/tables/machine/MachineTypeTable.tsx:371 +#: src/tables/machine/MachineTypeTable.tsx:369 msgid "Machine Type Detail" msgstr "" -#: src/tables/machine/MachineTypeTable.tsx:381 +#: src/tables/machine/MachineTypeTable.tsx:379 msgid "Machine Driver Detail" msgstr "" @@ -10213,8 +10428,16 @@ msgstr "" msgid "Message" msgstr "" -#: src/tables/part/ParametricPartTable.tsx:78 -msgid "Click to edit" +#: src/tables/part/ParametricPartTable.tsx:20 +msgid "Show active parts" +msgstr "" + +#: src/tables/part/ParametricPartTable.tsx:25 +msgid "Show locked parts" +msgstr "" + +#: src/tables/part/ParametricPartTable.tsx:30 +msgid "Show assembly parts" msgstr "" #: src/tables/part/ParametricPartTable.tsx:82 @@ -10222,43 +10445,14 @@ msgstr "" #~ msgstr "Edit parameter" #: src/tables/part/ParametricPartTable.tsx:244 -msgid "Add Part Parameter" -msgstr "" +#~ msgid "Add Part Parameter" +#~ msgstr "Add Part Parameter" #: src/tables/part/ParametricPartTable.tsx:258 #: src/tables/part/PartParameterTable.tsx:164 #: src/tables/part/PartParameterTable.tsx:187 -msgid "Edit Part Parameter" -msgstr "" - -#: src/tables/part/ParametricPartTable.tsx:355 -msgid "Show active parts" -msgstr "" - -#: src/tables/part/ParametricPartTable.tsx:360 -msgid "Show locked parts" -msgstr "" - -#: src/tables/part/ParametricPartTable.tsx:365 -msgid "Show assembly parts" -msgstr "" - -#: src/tables/part/ParametricPartTableFilters.tsx:36 -msgid "True" -msgstr "" - -#: src/tables/part/ParametricPartTableFilters.tsx:37 -msgid "False" -msgstr "" - -#: src/tables/part/ParametricPartTableFilters.tsx:47 -#: src/tables/part/ParametricPartTableFilters.tsx:80 -msgid "Select a choice" -msgstr "" - -#: src/tables/part/ParametricPartTableFilters.tsx:100 -msgid "Enter a value" -msgstr "" +#~ msgid "Edit Part Parameter" +#~ msgstr "Edit Part Parameter" #: src/tables/part/PartBuildAllocationsTable.tsx:64 msgid "Assembly IPN" @@ -10273,7 +10467,7 @@ msgid "Required Stock" msgstr "" #: src/tables/part/PartBuildAllocationsTable.tsx:124 -#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:381 +#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:383 msgid "View Build Order" msgstr "" @@ -10332,85 +10526,22 @@ msgstr "" msgid "Delete Category Parameter" msgstr "" -#: src/tables/part/PartCategoryTemplateTable.tsx:87 -msgid "Parameter Template" -msgstr "" - #: src/tables/part/PartCategoryTemplateTable.tsx:93 #~ msgid "[{0}]" #~ msgstr "[{0}]" -#: src/tables/part/PartParameterTable.tsx:108 -msgid "Internal Units" -msgstr "" - -#: src/tables/part/PartParameterTable.tsx:128 -#: src/tables/part/PartParameterTable.tsx:138 -msgid "Updated By" -msgstr "" - -#: src/tables/part/PartParameterTable.tsx:139 -msgid "Filter by user who last updated the parameter" -msgstr "" - #: src/tables/part/PartParameterTable.tsx:148 -msgid "New Part Parameter" -msgstr "" +#~ msgid "New Part Parameter" +#~ msgstr "New Part Parameter" #: src/tables/part/PartParameterTable.tsx:173 #: src/tables/part/PartParameterTable.tsx:195 -msgid "Delete Part Parameter" -msgstr "" +#~ msgid "Delete Part Parameter" +#~ msgstr "Delete Part Parameter" #: src/tables/part/PartParameterTable.tsx:213 -msgid "Add parameter" -msgstr "" - -#: src/tables/part/PartParameterTable.tsx:232 -msgid "Part parameters cannot be edited, as the part is locked" -msgstr "" - -#: src/tables/part/PartParameterTemplateTable.tsx:36 -msgid "Checkbox" -msgstr "" - -#: src/tables/part/PartParameterTemplateTable.tsx:37 -msgid "Show checkbox templates" -msgstr "" - -#: src/tables/part/PartParameterTemplateTable.tsx:41 -msgid "Has choices" -msgstr "" - -#: src/tables/part/PartParameterTemplateTable.tsx:42 -msgid "Show templates with choices" -msgstr "" - -#: src/tables/part/PartParameterTemplateTable.tsx:46 -#: src/tables/part/PartTable.tsx:245 -msgid "Has Units" -msgstr "" - -#: src/tables/part/PartParameterTemplateTable.tsx:47 -msgid "Show templates with units" -msgstr "" - -#: src/tables/part/PartParameterTemplateTable.tsx:91 -#: src/tables/part/PartParameterTemplateTable.tsx:166 -msgid "Add Parameter Template" -msgstr "" - -#: src/tables/part/PartParameterTemplateTable.tsx:105 -msgid "Duplicate Parameter Template" -msgstr "" - -#: src/tables/part/PartParameterTemplateTable.tsx:117 -msgid "Edit Parameter Template" -msgstr "" - -#: src/tables/part/PartParameterTemplateTable.tsx:128 -msgid "Delete Parameter Template" -msgstr "" +#~ msgid "Add parameter" +#~ msgstr "Add parameter" #: src/tables/part/PartParameterTemplateTable.tsx:141 #~ msgid "Add parameter template" @@ -10430,7 +10561,7 @@ msgid "Show received items" msgstr "" #: src/tables/part/PartSalesAllocationsTable.tsx:90 -#: src/tables/sales/SalesOrderShipmentTable.tsx:218 +#: src/tables/sales/SalesOrderShipmentTable.tsx:263 msgid "View Sales Order" msgstr "" @@ -10617,8 +10748,8 @@ msgstr "" #: src/tables/part/PartTestResultTable.tsx:103 #: src/tables/part/PartTestResultTable.tsx:181 -#: src/tables/part/PartTestResultTable.tsx:320 -#: src/tables/part/PartTestResultTable.tsx:334 +#: src/tables/part/PartTestResultTable.tsx:328 +#: src/tables/part/PartTestResultTable.tsx:342 #: src/tables/stock/StockItemTestResultTable.tsx:296 #: src/tables/stock/StockItemTestResultTable.tsx:368 #: src/tables/stock/StockItemTestResultTable.tsx:429 @@ -10643,7 +10774,7 @@ msgstr "" msgid "No Result" msgstr "" -#: src/tables/part/PartTestResultTable.tsx:298 +#: src/tables/part/PartTestResultTable.tsx:306 msgid "Show build outputs currently in production" msgstr "" @@ -11013,36 +11144,45 @@ msgstr "" #~ msgid "Parameter updated" #~ msgstr "Parameter updated" -#: src/tables/purchasing/ManufacturerPartParameterTable.tsx:63 -#: src/tables/purchasing/ManufacturerPartParameterTable.tsx:112 -msgid "Add Parameter" -msgstr "" - #: src/tables/purchasing/ManufacturerPartParameterTable.tsx:73 #~ msgid "Parameter deleted" #~ msgstr "Parameter deleted" -#: src/tables/purchasing/ManufacturerPartParameterTable.tsx:74 -msgid "Edit Parameter" -msgstr "" - #: src/tables/purchasing/ManufacturerPartParameterTable.tsx:74 #~ msgid "Are you sure you want to delete this parameter?" #~ msgstr "Are you sure you want to delete this parameter?" -#: src/tables/purchasing/ManufacturerPartParameterTable.tsx:82 -msgid "Delete Parameter" +#: src/tables/purchasing/ManufacturerPartParametricTable.tsx:34 +#: src/tables/purchasing/ManufacturerPartTable.tsx:82 +#: src/tables/purchasing/SupplierPartTable.tsx:99 +msgid "MPN" +msgstr "" + +#: src/tables/purchasing/ManufacturerPartParametricTable.tsx:44 +#: src/tables/purchasing/ManufacturerPartTable.tsx:134 +#: src/tables/purchasing/SupplierPartTable.tsx:220 +msgid "Active Part" +msgstr "" + +#: src/tables/purchasing/ManufacturerPartParametricTable.tsx:45 +#: src/tables/purchasing/ManufacturerPartTable.tsx:135 +msgid "Show manufacturer parts for active internal parts." +msgstr "" + +#: src/tables/purchasing/ManufacturerPartParametricTable.tsx:50 +#: src/tables/purchasing/ManufacturerPartTable.tsx:140 +msgid "Active Manufacturer" +msgstr "" + +#: src/tables/purchasing/ManufacturerPartParametricTable.tsx:51 +#: src/tables/purchasing/ManufacturerPartTable.tsx:142 +msgid "Show manufacturer parts for active manufacturers." msgstr "" #: src/tables/purchasing/ManufacturerPartTable.tsx:63 #~ msgid "Create Manufacturer Part" #~ msgstr "Create Manufacturer Part" -#: src/tables/purchasing/ManufacturerPartTable.tsx:82 -#: src/tables/purchasing/SupplierPartTable.tsx:99 -msgid "MPN" -msgstr "" - #: src/tables/purchasing/ManufacturerPartTable.tsx:100 #~ msgid "Manufacturer part updated" #~ msgstr "Manufacturer part updated" @@ -11055,25 +11195,8 @@ msgstr "" #~ msgid "Are you sure you want to remove this manufacturer part?" #~ msgstr "Are you sure you want to remove this manufacturer part?" -#: src/tables/purchasing/ManufacturerPartTable.tsx:134 -#: src/tables/purchasing/SupplierPartTable.tsx:220 -msgid "Active Part" -msgstr "" - -#: src/tables/purchasing/ManufacturerPartTable.tsx:135 -msgid "Show manufacturer parts for active internal parts." -msgstr "" - -#: src/tables/purchasing/ManufacturerPartTable.tsx:140 -msgid "Active Manufacturer" -msgstr "" - -#: src/tables/purchasing/ManufacturerPartTable.tsx:142 -msgid "Show manufacturer parts for active manufacturers." -msgstr "" - #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:115 -#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:397 +#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:399 msgid "Import Line Items" msgstr "" @@ -11099,11 +11222,11 @@ msgstr "" #~ msgid "Add line item" #~ msgstr "Add line item" -#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:350 +#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:352 msgid "Receive line item" msgstr "" -#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:414 +#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:416 msgid "Receive items" msgstr "" @@ -11201,25 +11324,25 @@ msgid "Not shipped" msgstr "" #: src/tables/sales/SalesOrderAllocationTable.tsx:211 -#: src/tables/sales/SalesOrderAllocationTable.tsx:229 +#: src/tables/sales/SalesOrderAllocationTable.tsx:235 msgid "Edit Allocation" msgstr "" #: src/tables/sales/SalesOrderAllocationTable.tsx:218 #: src/tables/sales/SalesOrderAllocationTable.tsx:241 -msgid "Delete Allocation" -msgstr "" +#~ msgid "Delete Allocation" +#~ msgstr "Delete Allocation" -#: src/tables/sales/SalesOrderAllocationTable.tsx:252 -#: src/tables/sales/SalesOrderAllocationTable.tsx:253 +#: src/tables/sales/SalesOrderAllocationTable.tsx:261 +#: src/tables/sales/SalesOrderAllocationTable.tsx:262 msgid "View Shipment" msgstr "" -#: src/tables/sales/SalesOrderAllocationTable.tsx:308 +#: src/tables/sales/SalesOrderAllocationTable.tsx:317 msgid "Assign to Shipment" msgstr "" -#: src/tables/sales/SalesOrderAllocationTable.tsx:324 +#: src/tables/sales/SalesOrderAllocationTable.tsx:333 msgid "Assign to shipment" msgstr "" @@ -11259,35 +11382,35 @@ msgstr "" #~ msgid "Delete Shipment" #~ msgstr "Delete Shipment" -#: src/tables/sales/SalesOrderShipmentTable.tsx:72 +#: src/tables/sales/SalesOrderShipmentTable.tsx:79 msgid "Create Shipment" msgstr "" -#: src/tables/sales/SalesOrderShipmentTable.tsx:143 +#: src/tables/sales/SalesOrderShipmentTable.tsx:164 msgid "Items" msgstr "" -#: src/tables/sales/SalesOrderShipmentTable.tsx:203 +#: src/tables/sales/SalesOrderShipmentTable.tsx:248 msgid "Edit shipment" msgstr "" -#: src/tables/sales/SalesOrderShipmentTable.tsx:211 +#: src/tables/sales/SalesOrderShipmentTable.tsx:256 msgid "Cancel shipment" msgstr "" -#: src/tables/sales/SalesOrderShipmentTable.tsx:241 +#: src/tables/sales/SalesOrderShipmentTable.tsx:286 msgid "Add shipment" msgstr "" -#: src/tables/sales/SalesOrderShipmentTable.tsx:255 +#: src/tables/sales/SalesOrderShipmentTable.tsx:300 msgid "Show shipments which have been checked" msgstr "" -#: src/tables/sales/SalesOrderShipmentTable.tsx:260 +#: src/tables/sales/SalesOrderShipmentTable.tsx:305 msgid "Show shipments which have been shipped" msgstr "" -#: src/tables/sales/SalesOrderShipmentTable.tsx:265 +#: src/tables/sales/SalesOrderShipmentTable.tsx:310 msgid "Show shipments which have been delivered" msgstr "" @@ -11621,11 +11744,6 @@ msgstr "" msgid "Imported Rows" msgstr "" -#: src/tables/settings/ImportSessionTable.tsx:111 -#: src/tables/settings/TemplateTable.tsx:368 -msgid "Model Type" -msgstr "" - #: src/tables/settings/ImportSessionTable.tsx:112 #: src/tables/settings/TemplateTable.tsx:369 msgid "Filter by target model type" diff --git a/src/frontend/src/locales/lt/messages.po b/src/frontend/src/locales/lt/messages.po index 3aecf4dad7..3f6ff98f36 100644 --- a/src/frontend/src/locales/lt/messages.po +++ b/src/frontend/src/locales/lt/messages.po @@ -8,7 +8,7 @@ msgstr "" "Language: lt\n" "Project-Id-Version: inventree\n" "Report-Msgid-Bugs-To: \n" -"PO-Revision-Date: 2025-11-19 19:39\n" +"PO-Revision-Date: 2025-12-07 07:36\n" "Last-Translator: \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" @@ -30,7 +30,7 @@ msgid "Edit" msgstr "" #: lib/components/RowActions.tsx:56 -#: src/components/forms/ApiForm.tsx:735 +#: src/components/forms/ApiForm.tsx:754 #: src/components/items/ActionDropdown.tsx:257 #: src/components/items/RoleTable.tsx:155 #: src/hooks/UseForm.tsx:164 @@ -56,24 +56,24 @@ msgstr "" #: lib/components/RowActions.tsx:136 #: src/components/nav/NavigationDrawer.tsx:190 -#: src/forms/PurchaseOrderForms.tsx:802 +#: src/forms/PurchaseOrderForms.tsx:854 #: src/forms/StockForms.tsx:796 #: src/forms/StockForms.tsx:843 -#: src/forms/StockForms.tsx:889 -#: src/forms/StockForms.tsx:928 -#: src/forms/StockForms.tsx:964 -#: src/forms/StockForms.tsx:1050 +#: src/forms/StockForms.tsx:896 +#: src/forms/StockForms.tsx:942 +#: src/forms/StockForms.tsx:980 +#: src/forms/StockForms.tsx:1066 #: src/pages/Index/Settings/AccountSettings/MFASettings.tsx:962 msgid "Actions" msgstr "" #: lib/components/SearchInput.tsx:34 -#: src/components/forms/fields/RelatedModelField.tsx:408 +#: src/components/forms/fields/RelatedModelField.tsx:479 #: src/components/nav/Header.tsx:169 #: src/components/wizards/ImportPartWizard.tsx:200 #: src/components/wizards/ImportPartWizard.tsx:233 -#: src/pages/Index/Settings/UserSettings.tsx:74 -#: src/pages/part/PartDetail.tsx:1155 +#: src/pages/Index/Settings/UserSettings.tsx:75 +#: src/pages/part/PartDetail.tsx:1176 msgid "Search" msgstr "" @@ -95,7 +95,7 @@ msgstr "Taip" msgid "No" msgstr "Ne" -#: lib/enums/ModelInformation.tsx:28 +#: lib/enums/ModelInformation.tsx:29 #: src/components/wizards/OrderPartsWizard.tsx:279 #: src/forms/BuildForms.tsx:332 #: src/forms/BuildForms.tsx:407 @@ -103,208 +103,234 @@ msgstr "Ne" #: src/forms/BuildForms.tsx:630 #: src/forms/BuildForms.tsx:793 #: src/forms/BuildForms.tsx:896 -#: src/forms/PurchaseOrderForms.tsx:798 +#: src/forms/PurchaseOrderForms.tsx:850 #: src/forms/ReturnOrderForms.tsx:242 -#: src/forms/SalesOrderForms.tsx:305 +#: src/forms/SalesOrderForms.tsx:384 #: src/forms/StockForms.tsx:360 #: src/forms/StockForms.tsx:791 #: src/forms/StockForms.tsx:838 -#: src/forms/StockForms.tsx:884 -#: src/forms/StockForms.tsx:923 -#: src/forms/StockForms.tsx:959 -#: src/forms/StockForms.tsx:1002 -#: src/forms/StockForms.tsx:1046 -#: src/forms/StockForms.tsx:1094 -#: src/forms/StockForms.tsx:1138 -#: src/pages/build/BuildDetail.tsx:200 -#: src/pages/part/PartDetail.tsx:1207 +#: src/forms/StockForms.tsx:891 +#: src/forms/StockForms.tsx:937 +#: src/forms/StockForms.tsx:975 +#: src/forms/StockForms.tsx:1018 +#: src/forms/StockForms.tsx:1062 +#: src/forms/StockForms.tsx:1110 +#: src/forms/StockForms.tsx:1154 +#: src/pages/build/BuildDetail.tsx:201 +#: src/pages/part/PartDetail.tsx:1228 #: src/tables/ColumnRenderers.tsx:91 +#: src/tables/part/PartTestResultTable.tsx:247 #: src/tables/part/RelatedPartTable.tsx:53 #: src/tables/stock/StockTrackingTable.tsx:87 msgid "Part" msgstr "" -#: lib/enums/ModelInformation.tsx:29 +#: lib/enums/ModelInformation.tsx:30 #: lib/enums/Roles.tsx:35 #: src/components/nav/NavigationDrawer.tsx:70 #: src/defaults/links.tsx:36 -#: src/pages/Index/Settings/SystemSettings.tsx:190 -#: src/pages/part/CategoryDetail.tsx:132 -#: src/pages/part/CategoryDetail.tsx:277 -#: src/pages/part/CategoryDetail.tsx:323 -#: src/pages/part/CategoryDetail.tsx:354 -#: src/pages/part/PartDetail.tsx:965 +#: src/pages/Index/Settings/SystemSettings.tsx:197 +#: src/pages/part/CategoryDetail.tsx:135 +#: src/pages/part/CategoryDetail.tsx:285 +#: src/pages/part/CategoryDetail.tsx:340 +#: src/pages/part/CategoryDetail.tsx:371 +#: src/pages/part/PartDetail.tsx:978 msgid "Parts" msgstr "" #: lib/enums/ModelInformation.tsx:37 #: src/pages/Index/Settings/AdminCenter/PartParameterPanel.tsx:13 -msgid "Part Parameter Template" -msgstr "" +#~ msgid "Part Parameter Template" +#~ msgstr "Part Parameter Template" #: lib/enums/ModelInformation.tsx:38 -msgid "Part Parameter Templates" +#~ msgid "Part Parameter Templates" +#~ msgstr "Part Parameter Templates" + +#: lib/enums/ModelInformation.tsx:39 +msgid "Parameter" +msgstr "" + +#: lib/enums/ModelInformation.tsx:40 +#: src/components/panels/ParametersPanel.tsx:19 +#: src/components/wizards/ImportPartWizard.tsx:807 +#: src/pages/Index/Settings/AdminCenter/Index.tsx:195 +#: src/pages/Index/Settings/SystemSettings.tsx:191 +#: src/pages/part/PartDetail.tsx:943 +msgid "Parameters" msgstr "" #: lib/enums/ModelInformation.tsx:45 -msgid "Part Test Template" +#: src/tables/part/PartCategoryTemplateTable.tsx:87 +msgid "Parameter Template" msgstr "" #: lib/enums/ModelInformation.tsx:46 -msgid "Part Test Templates" +#: src/pages/Index/Settings/AdminCenter/ParameterPanel.tsx:13 +msgid "Parameter Templates" msgstr "" #: lib/enums/ModelInformation.tsx:52 +msgid "Part Test Template" +msgstr "" + +#: lib/enums/ModelInformation.tsx:53 +msgid "Part Test Templates" +msgstr "" + +#: lib/enums/ModelInformation.tsx:59 #: src/components/wizards/OrderPartsWizard.tsx:290 -#: src/pages/company/SupplierPartDetail.tsx:413 +#: src/pages/company/SupplierPartDetail.tsx:418 #: src/pages/stock/StockDetail.tsx:289 -#: src/tables/build/BuildAllocatedStockTable.tsx:155 +#: src/tables/build/BuildAllocatedStockTable.tsx:152 #: src/tables/part/PartPurchaseOrdersTable.tsx:50 +#: src/tables/purchasing/SupplierPartParametricTable.tsx:29 #: src/tables/purchasing/SupplierPartTable.tsx:83 #: src/tables/stock/StockItemTable.tsx:247 msgid "Supplier Part" msgstr "" -#: lib/enums/ModelInformation.tsx:53 -#: src/pages/purchasing/PurchasingIndex.tsx:92 +#: lib/enums/ModelInformation.tsx:60 +#: src/pages/purchasing/PurchasingIndex.tsx:128 msgid "Supplier Parts" msgstr "" -#: lib/enums/ModelInformation.tsx:61 -#: src/pages/company/ManufacturerPartDetail.tsx:297 -#: src/pages/company/SupplierPartDetail.tsx:161 +#: lib/enums/ModelInformation.tsx:69 +#: src/pages/company/ManufacturerPartDetail.tsx:288 +#: src/pages/company/SupplierPartDetail.tsx:162 #: src/tables/part/PartPurchaseOrdersTable.tsx:56 #: src/tables/stock/StockItemTable.tsx:253 msgid "Manufacturer Part" msgstr "" -#: lib/enums/ModelInformation.tsx:62 -#: src/pages/purchasing/PurchasingIndex.tsx:109 +#: lib/enums/ModelInformation.tsx:70 +#: src/pages/purchasing/PurchasingIndex.tsx:177 msgid "Manufacturer Parts" msgstr "" -#: lib/enums/ModelInformation.tsx:70 -#: src/pages/part/CategoryDetail.tsx:354 +#: lib/enums/ModelInformation.tsx:79 +#: src/pages/part/CategoryDetail.tsx:371 #: src/tables/Filter.tsx:389 msgid "Part Category" msgstr "" -#: lib/enums/ModelInformation.tsx:71 +#: lib/enums/ModelInformation.tsx:80 #: lib/enums/Roles.tsx:37 -#: src/pages/part/CategoryDetail.tsx:271 -#: src/pages/part/CategoryDetail.tsx:345 -#: src/pages/part/PartDetail.tsx:1196 +#: src/pages/part/CategoryDetail.tsx:279 +#: src/pages/part/CategoryDetail.tsx:362 +#: src/pages/part/PartDetail.tsx:1217 msgid "Part Categories" msgstr "" -#: lib/enums/ModelInformation.tsx:79 +#: lib/enums/ModelInformation.tsx:88 #: src/forms/BuildForms.tsx:473 #: src/forms/BuildForms.tsx:633 #: src/forms/BuildForms.tsx:794 -#: src/forms/SalesOrderForms.tsx:307 +#: src/forms/SalesOrderForms.tsx:386 #: src/pages/stock/StockDetail.tsx:1005 -#: src/tables/part/PartTestResultTable.tsx:248 +#: src/tables/part/PartTestResultTable.tsx:256 #: src/tables/stock/StockTrackingTable.tsx:48 #: src/tables/stock/StockTrackingTable.tsx:55 msgid "Stock Item" msgstr "" -#: lib/enums/ModelInformation.tsx:80 +#: lib/enums/ModelInformation.tsx:89 #: lib/enums/Roles.tsx:45 -#: src/pages/company/CompanyDetail.tsx:210 -#: src/pages/part/CategoryDetail.tsx:291 +#: src/pages/company/CompanyDetail.tsx:211 +#: src/pages/part/CategoryDetail.tsx:314 #: src/pages/part/PartStockHistoryDetail.tsx:101 #: src/pages/stock/LocationDetail.tsx:121 #: src/pages/stock/LocationDetail.tsx:180 msgid "Stock Items" msgstr "" -#: lib/enums/ModelInformation.tsx:88 +#: lib/enums/ModelInformation.tsx:98 #: lib/enums/Roles.tsx:47 #: src/pages/stock/LocationDetail.tsx:420 msgid "Stock Location" msgstr "" -#: lib/enums/ModelInformation.tsx:89 +#: lib/enums/ModelInformation.tsx:99 #: src/pages/stock/LocationDetail.tsx:174 #: src/pages/stock/LocationDetail.tsx:412 #: src/pages/stock/StockDetail.tsx:996 msgid "Stock Locations" msgstr "" -#: lib/enums/ModelInformation.tsx:97 +#: lib/enums/ModelInformation.tsx:108 msgid "Stock Location Type" msgstr "" -#: lib/enums/ModelInformation.tsx:98 +#: lib/enums/ModelInformation.tsx:109 msgid "Stock Location Types" msgstr "" -#: lib/enums/ModelInformation.tsx:103 -#: src/pages/Index/Settings/SystemSettings.tsx:248 -#: src/pages/part/PartDetail.tsx:911 +#: lib/enums/ModelInformation.tsx:114 +#: src/pages/Index/Settings/SystemSettings.tsx:254 +#: src/pages/part/PartDetail.tsx:900 msgid "Stock History" msgstr "" -#: lib/enums/ModelInformation.tsx:104 +#: lib/enums/ModelInformation.tsx:115 msgid "Stock Histories" msgstr "" -#: lib/enums/ModelInformation.tsx:109 +#: lib/enums/ModelInformation.tsx:120 msgid "Build" msgstr "" -#: lib/enums/ModelInformation.tsx:110 +#: lib/enums/ModelInformation.tsx:121 msgid "Builds" msgstr "" -#: lib/enums/ModelInformation.tsx:118 +#: lib/enums/ModelInformation.tsx:130 msgid "Build Line" msgstr "" -#: lib/enums/ModelInformation.tsx:119 +#: lib/enums/ModelInformation.tsx:131 msgid "Build Lines" msgstr "" -#: lib/enums/ModelInformation.tsx:126 +#: lib/enums/ModelInformation.tsx:138 msgid "Build Item" msgstr "" -#: lib/enums/ModelInformation.tsx:127 +#: lib/enums/ModelInformation.tsx:139 msgid "Build Items" msgstr "" -#: lib/enums/ModelInformation.tsx:132 -#: src/pages/company/CompanyDetail.tsx:340 +#: lib/enums/ModelInformation.tsx:144 +#: src/pages/company/CompanyDetail.tsx:345 #: src/tables/company/CompanyTable.tsx:47 #: src/tables/company/ContactTable.tsx:67 +#: src/tables/company/ParametricCompanyTable.tsx:18 msgid "Company" msgstr "" -#: lib/enums/ModelInformation.tsx:133 +#: lib/enums/ModelInformation.tsx:145 msgid "Companies" msgstr "" -#: lib/enums/ModelInformation.tsx:140 -#: src/pages/build/BuildDetail.tsx:316 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:253 -#: src/pages/sales/ReturnOrderDetail.tsx:231 -#: src/pages/sales/SalesOrderDetail.tsx:224 +#: lib/enums/ModelInformation.tsx:152 +#: src/pages/build/BuildDetail.tsx:317 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:254 +#: src/pages/sales/ReturnOrderDetail.tsx:232 +#: src/pages/sales/SalesOrderDetail.tsx:225 #: src/tables/ColumnRenderers.tsx:362 #: src/tables/Filter.tsx:286 #: src/tables/TableHoverCard.tsx:101 msgid "Project Code" msgstr "" -#: lib/enums/ModelInformation.tsx:141 +#: lib/enums/ModelInformation.tsx:153 #: src/pages/Index/Settings/AdminCenter/Index.tsx:172 msgid "Project Codes" msgstr "" -#: lib/enums/ModelInformation.tsx:147 +#: lib/enums/ModelInformation.tsx:159 #: src/components/wizards/OrderPartsWizard.tsx:338 #: src/pages/part/pricing/PurchaseHistoryPanel.tsx:33 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:550 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:555 #: src/pages/stock/StockDetail.tsx:352 #: src/tables/part/PartPurchaseOrdersTable.tsx:32 #: src/tables/stock/StockItemTable.tsx:239 @@ -312,117 +338,117 @@ msgstr "" msgid "Purchase Order" msgstr "" -#: lib/enums/ModelInformation.tsx:148 +#: lib/enums/ModelInformation.tsx:160 #: lib/enums/Roles.tsx:39 #: src/defaults/actions.tsx:104 -#: src/pages/Index/Settings/SystemSettings.tsx:283 -#: src/pages/company/CompanyDetail.tsx:203 -#: src/pages/company/SupplierPartDetail.tsx:266 -#: src/pages/part/PartDetail.tsx:875 -#: src/pages/purchasing/PurchasingIndex.tsx:60 +#: src/pages/Index/Settings/SystemSettings.tsx:289 +#: src/pages/company/CompanyDetail.tsx:204 +#: src/pages/company/SupplierPartDetail.tsx:267 +#: src/pages/part/PartDetail.tsx:864 +#: src/pages/purchasing/PurchasingIndex.tsx:66 msgid "Purchase Orders" msgstr "" -#: lib/enums/ModelInformation.tsx:156 +#: lib/enums/ModelInformation.tsx:169 msgid "Purchase Order Line" msgstr "" -#: lib/enums/ModelInformation.tsx:157 +#: lib/enums/ModelInformation.tsx:170 msgid "Purchase Order Lines" msgstr "" -#: lib/enums/ModelInformation.tsx:162 -#: src/pages/build/BuildDetail.tsx:289 +#: lib/enums/ModelInformation.tsx:175 +#: src/pages/build/BuildDetail.tsx:290 #: src/pages/part/pricing/SaleHistoryPanel.tsx:24 -#: src/pages/sales/SalesOrderDetail.tsx:614 -#: src/pages/sales/SalesOrderShipmentDetail.tsx:105 -#: src/pages/sales/SalesOrderShipmentDetail.tsx:478 +#: src/pages/sales/SalesOrderDetail.tsx:619 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:103 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:446 #: src/pages/stock/StockDetail.tsx:361 #: src/tables/part/PartSalesAllocationsTable.tsx:41 #: src/tables/sales/SalesOrderAllocationTable.tsx:110 -#: src/tables/sales/SalesOrderShipmentTable.tsx:122 +#: src/tables/sales/SalesOrderShipmentTable.tsx:143 #: src/tables/stock/StockTrackingTable.tsx:131 msgid "Sales Order" msgstr "" -#: lib/enums/ModelInformation.tsx:163 +#: lib/enums/ModelInformation.tsx:176 #: lib/enums/Roles.tsx:43 #: src/defaults/actions.tsx:114 -#: src/pages/Index/Settings/SystemSettings.tsx:299 -#: src/pages/company/CompanyDetail.tsx:223 -#: src/pages/part/PartDetail.tsx:887 -#: src/pages/sales/SalesIndex.tsx:84 +#: src/pages/Index/Settings/SystemSettings.tsx:305 +#: src/pages/company/CompanyDetail.tsx:224 +#: src/pages/part/PartDetail.tsx:876 +#: src/pages/sales/SalesIndex.tsx:53 msgid "Sales Orders" msgstr "" -#: lib/enums/ModelInformation.tsx:171 -#: src/pages/sales/SalesOrderShipmentDetail.tsx:477 +#: lib/enums/ModelInformation.tsx:185 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:445 msgid "Sales Order Shipment" msgstr "" -#: lib/enums/ModelInformation.tsx:172 +#: lib/enums/ModelInformation.tsx:186 msgid "Sales Order Shipments" msgstr "" -#: lib/enums/ModelInformation.tsx:179 -#: src/pages/sales/ReturnOrderDetail.tsx:549 +#: lib/enums/ModelInformation.tsx:194 +#: src/pages/sales/ReturnOrderDetail.tsx:554 #: src/tables/stock/StockTrackingTable.tsx:142 msgid "Return Order" msgstr "" -#: lib/enums/ModelInformation.tsx:180 +#: lib/enums/ModelInformation.tsx:195 #: lib/enums/Roles.tsx:41 #: src/defaults/actions.tsx:125 -#: src/pages/Index/Settings/SystemSettings.tsx:316 -#: src/pages/company/CompanyDetail.tsx:230 -#: src/pages/part/PartDetail.tsx:894 -#: src/pages/sales/SalesIndex.tsx:117 +#: src/pages/Index/Settings/SystemSettings.tsx:322 +#: src/pages/company/CompanyDetail.tsx:231 +#: src/pages/part/PartDetail.tsx:883 +#: src/pages/sales/SalesIndex.tsx:99 msgid "Return Orders" msgstr "" -#: lib/enums/ModelInformation.tsx:188 +#: lib/enums/ModelInformation.tsx:204 msgid "Return Order Line Item" msgstr "" -#: lib/enums/ModelInformation.tsx:189 +#: lib/enums/ModelInformation.tsx:205 msgid "Return Order Line Items" msgstr "" -#: lib/enums/ModelInformation.tsx:194 +#: lib/enums/ModelInformation.tsx:210 #: src/tables/company/AddressTable.tsx:52 msgid "Address" msgstr "" -#: lib/enums/ModelInformation.tsx:195 -#: src/pages/company/CompanyDetail.tsx:264 +#: lib/enums/ModelInformation.tsx:211 +#: src/pages/company/CompanyDetail.tsx:265 msgid "Addresses" msgstr "" -#: lib/enums/ModelInformation.tsx:201 +#: lib/enums/ModelInformation.tsx:217 #: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:89 #: src/pages/core/UserDetail.tsx:135 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:229 -#: src/pages/sales/ReturnOrderDetail.tsx:207 -#: src/pages/sales/SalesOrderDetail.tsx:200 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:230 +#: src/pages/sales/ReturnOrderDetail.tsx:208 +#: src/pages/sales/SalesOrderDetail.tsx:201 msgid "Contact" msgstr "" -#: lib/enums/ModelInformation.tsx:202 -#: src/pages/company/CompanyDetail.tsx:258 +#: lib/enums/ModelInformation.tsx:218 +#: src/pages/company/CompanyDetail.tsx:259 #: src/pages/core/CoreIndex.tsx:33 msgid "Contacts" msgstr "" -#: lib/enums/ModelInformation.tsx:208 +#: lib/enums/ModelInformation.tsx:224 #: src/tables/ColumnRenderers.tsx:444 msgid "Owner" msgstr "" -#: lib/enums/ModelInformation.tsx:209 +#: lib/enums/ModelInformation.tsx:225 msgid "Owners" msgstr "" -#: lib/enums/ModelInformation.tsx:215 +#: lib/enums/ModelInformation.tsx:231 #: src/pages/Auth/ChangePassword.tsx:36 #: src/pages/core/UserDetail.tsx:220 #: src/tables/ColumnRenderers.tsx:395 @@ -437,7 +463,7 @@ msgstr "" msgid "User" msgstr "" -#: lib/enums/ModelInformation.tsx:216 +#: lib/enums/ModelInformation.tsx:232 #: src/components/nav/NavigationDrawer.tsx:105 #: src/pages/Index/Settings/AdminCenter/UserManagementPanel.tsx:15 #: src/pages/core/CoreIndex.tsx:21 @@ -445,12 +471,12 @@ msgstr "" msgid "Users" msgstr "" -#: lib/enums/ModelInformation.tsx:222 +#: lib/enums/ModelInformation.tsx:238 #: src/pages/core/GroupDetail.tsx:78 msgid "Group" msgstr "" -#: lib/enums/ModelInformation.tsx:223 +#: lib/enums/ModelInformation.tsx:239 #: src/components/nav/NavigationDrawer.tsx:111 #: src/pages/Index/Settings/AdminCenter/UserManagementPanel.tsx:23 #: src/pages/core/CoreIndex.tsx:27 @@ -460,64 +486,64 @@ msgstr "" msgid "Groups" msgstr "" -#: lib/enums/ModelInformation.tsx:230 +#: lib/enums/ModelInformation.tsx:246 msgid "Import Session" msgstr "" -#: lib/enums/ModelInformation.tsx:231 +#: lib/enums/ModelInformation.tsx:247 msgid "Import Sessions" msgstr "" -#: lib/enums/ModelInformation.tsx:238 +#: lib/enums/ModelInformation.tsx:254 msgid "Label Template" msgstr "" -#: lib/enums/ModelInformation.tsx:239 +#: lib/enums/ModelInformation.tsx:255 #: src/pages/Index/Settings/AdminCenter/Index.tsx:209 msgid "Label Templates" msgstr "" -#: lib/enums/ModelInformation.tsx:246 +#: lib/enums/ModelInformation.tsx:262 msgid "Report Template" msgstr "" -#: lib/enums/ModelInformation.tsx:247 +#: lib/enums/ModelInformation.tsx:263 #: src/pages/Index/Settings/AdminCenter/Index.tsx:215 msgid "Report Templates" msgstr "" -#: lib/enums/ModelInformation.tsx:254 +#: lib/enums/ModelInformation.tsx:270 #: src/components/plugins/PluginDrawer.tsx:145 msgid "Plugin Configuration" msgstr "" -#: lib/enums/ModelInformation.tsx:255 +#: lib/enums/ModelInformation.tsx:271 msgid "Plugin Configurations" msgstr "" -#: lib/enums/ModelInformation.tsx:262 +#: lib/enums/ModelInformation.tsx:278 msgid "Content Type" msgstr "" -#: lib/enums/ModelInformation.tsx:263 +#: lib/enums/ModelInformation.tsx:279 msgid "Content Types" msgstr "" -#: lib/enums/ModelInformation.tsx:268 +#: lib/enums/ModelInformation.tsx:284 msgid "Selection List" msgstr "" -#: lib/enums/ModelInformation.tsx:269 -#: src/pages/Index/Settings/AdminCenter/PartParameterPanel.tsx:21 +#: lib/enums/ModelInformation.tsx:285 +#: src/pages/Index/Settings/AdminCenter/ParameterPanel.tsx:21 msgid "Selection Lists" msgstr "" -#: lib/enums/ModelInformation.tsx:275 +#: lib/enums/ModelInformation.tsx:291 #: src/components/barcodes/BarcodeInput.tsx:114 #: src/components/dashboard/DashboardLayout.tsx:281 #: src/components/editors/NotesEditor.tsx:74 #: src/components/editors/TemplateEditor/TemplateEditor.tsx:158 -#: src/components/forms/fields/ApiFormField.tsx:273 +#: src/components/forms/fields/ApiFormField.tsx:237 #: src/components/forms/fields/TableField.tsx:45 #: src/components/importer/ImportDataSelector.tsx:192 #: src/components/importer/ImporterColumnSelector.tsx:234 @@ -528,7 +554,7 @@ msgstr "" #: src/components/nav/SearchDrawer.tsx:572 #: src/components/settings/SettingList.tsx:139 #: src/components/wizards/ImportPartWizard.tsx:574 -#: src/components/wizards/ImportPartWizard.tsx:718 +#: src/components/wizards/ImportPartWizard.tsx:719 #: src/forms/BomForms.tsx:69 #: src/functions/auth.tsx:643 #: src/pages/ErrorPage.tsx:11 @@ -547,9 +573,9 @@ msgstr "" msgid "Error" msgstr "Klaida" -#: lib/enums/ModelInformation.tsx:276 +#: lib/enums/ModelInformation.tsx:292 #: src/tables/machine/MachineListTable.tsx:402 -#: src/tables/machine/MachineTypeTable.tsx:299 +#: src/tables/machine/MachineTypeTable.tsx:297 msgid "Errors" msgstr "" @@ -559,10 +585,10 @@ msgstr "" #: lib/enums/Roles.tsx:33 #: src/defaults/actions.tsx:135 -#: src/pages/Index/Settings/SystemSettings.tsx:264 -#: src/pages/build/BuildIndex.tsx:75 -#: src/pages/part/PartDetail.tsx:904 -#: src/pages/sales/SalesOrderDetail.tsx:421 +#: src/pages/Index/Settings/SystemSettings.tsx:270 +#: src/pages/build/BuildIndex.tsx:67 +#: src/pages/part/PartDetail.tsx:893 +#: src/pages/sales/SalesOrderDetail.tsx:422 msgid "Build Orders" msgstr "" @@ -639,39 +665,39 @@ msgstr "Nuskaitykite arba įveskite brūkšninio kodo duomenis" msgid "Enter barcode data" msgstr "Įveskite brūkšninio kodo duomenis" -#: src/components/barcodes/BarcodeScanDialog.tsx:49 -#: src/components/buttons/ScanButton.tsx:15 +#: src/components/barcodes/BarcodeScanDialog.tsx:56 +#: src/components/buttons/ScanButton.tsx:27 #: src/components/nav/NavigationDrawer.tsx:122 -#: src/forms/PurchaseOrderForms.tsx:457 -#: src/forms/PurchaseOrderForms.tsx:563 +#: src/forms/PurchaseOrderForms.tsx:509 +#: src/forms/PurchaseOrderForms.tsx:615 msgid "Scan Barcode" msgstr "Nuskaityti brūkšninį kodą" -#: src/components/barcodes/BarcodeScanDialog.tsx:105 +#: src/components/barcodes/BarcodeScanDialog.tsx:121 msgid "No matching item found" msgstr "Atitinkamų elementų nerasta" -#: src/components/barcodes/BarcodeScanDialog.tsx:134 +#: src/components/barcodes/BarcodeScanDialog.tsx:150 msgid "Barcode does not match the expected model type" msgstr "" -#: src/components/barcodes/BarcodeScanDialog.tsx:145 +#: src/components/barcodes/BarcodeScanDialog.tsx:161 #: src/components/editors/NotesEditor.tsx:84 #: src/components/editors/NotesEditor.tsx:118 -#: src/components/forms/ApiForm.tsx:465 +#: src/components/forms/ApiForm.tsx:484 #: src/components/wizards/ImportPartWizard.tsx:566 -#: src/components/wizards/ImportPartWizard.tsx:690 +#: src/components/wizards/ImportPartWizard.tsx:691 #: src/pages/Index/Settings/AdminCenter/CurrencyManagementPanel.tsx:45 #: src/tables/bom/BomTable.tsx:548 #: src/tables/settings/PendingTasksTable.tsx:68 msgid "Success" msgstr "" -#: src/components/barcodes/BarcodeScanDialog.tsx:151 +#: src/components/barcodes/BarcodeScanDialog.tsx:167 msgid "Failed to handle barcode" msgstr "" -#: src/components/barcodes/BarcodeScanDialog.tsx:167 +#: src/components/barcodes/BarcodeScanDialog.tsx:183 #: src/pages/Index/Scan.tsx:129 msgid "Failed to scan barcode" msgstr "Nepavyko nuskaityti brūkšninio kodo" @@ -714,10 +740,10 @@ msgstr "Nepavyko susieti brūkšninio kodo" #: src/components/barcodes/QRCode.tsx:179 #: src/pages/part/PartDetail.tsx:521 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:222 -#: src/pages/sales/ReturnOrderDetail.tsx:188 -#: src/pages/sales/SalesOrderDetail.tsx:181 -#: src/pages/sales/SalesOrderShipmentDetail.tsx:122 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:223 +#: src/pages/sales/ReturnOrderDetail.tsx:189 +#: src/pages/sales/SalesOrderDetail.tsx:182 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:120 #: src/pages/stock/StockDetail.tsx:186 msgid "Link" msgstr "Susieti" @@ -728,7 +754,7 @@ msgstr "Tai pašalins nuorodą į susietą brūkšninį kodą" #: src/components/barcodes/QRCode.tsx:205 #: src/components/items/ActionDropdown.tsx:192 -#: src/forms/PurchaseOrderForms.tsx:554 +#: src/forms/PurchaseOrderForms.tsx:606 msgid "Unlink Barcode" msgstr "Atsieti brūkšninį kodą" @@ -829,14 +855,14 @@ msgstr "Būsite nukreiptas pas tiekėją tolimesniems veiksmams." #~ msgid "Scan QR code" #~ msgstr "Scan QR code" -#: src/components/buttons/ScanButton.tsx:19 -msgid "Open Barcode Scanner" -msgstr "Atidaryti brūkšninio kodo skaitytuvą" - #: src/components/buttons/ScanButton.tsx:20 #~ msgid "Open QR code scanner" #~ msgstr "Open QR code scanner" +#: src/components/buttons/ScanButton.tsx:32 +msgid "Open Barcode Scanner" +msgstr "Atidaryti brūkšninio kodo skaitytuvą" + #: src/components/buttons/SpotlightButton.tsx:12 msgid "Open spotlight" msgstr "Atidaryti paiešką" @@ -1059,7 +1085,7 @@ msgid "Show the number of sales orders which are assigned to you" msgstr "" #: src/components/dashboard/DashboardWidgetLibrary.tsx:129 -#: src/pages/sales/SalesIndex.tsx:105 +#: src/pages/sales/SalesIndex.tsx:87 msgid "Pending Shipments" msgstr "" @@ -1210,12 +1236,18 @@ msgid "Remove the associated image from this item?" msgstr "" #: src/components/details/DetailsImage.tsx:83 -#: src/forms/StockForms.tsx:888 +#: src/forms/StockForms.tsx:895 #: src/pages/Index/Settings/AccountSettings/MFASettings.tsx:324 #: src/pages/Index/Settings/AccountSettings/MFASettings.tsx:415 #: src/pages/Index/Settings/AccountSettings/MFASettings.tsx:884 #: src/pages/Index/Settings/AccountSettings/MFASettings.tsx:903 #: src/pages/Index/Settings/AccountSettings/SecurityContent.tsx:254 +#: src/tables/build/BuildAllocatedStockTable.tsx:178 +#: src/tables/build/BuildAllocatedStockTable.tsx:258 +#: src/tables/build/BuildLineTable.tsx:111 +#: src/tables/build/BuildLineTable.tsx:665 +#: src/tables/sales/SalesOrderAllocationTable.tsx:224 +#: src/tables/sales/SalesOrderAllocationTable.tsx:247 msgid "Remove" msgstr "" @@ -1241,12 +1273,12 @@ msgid "Upload Error" msgstr "" #: src/components/details/DetailsImage.tsx:250 -#: src/components/forms/fields/TextField.tsx:65 +#: src/components/forms/fields/AutoFillRightSection.tsx:34 msgid "Clear" msgstr "" #: src/components/details/DetailsImage.tsx:256 -#: src/components/forms/ApiForm.tsx:677 +#: src/components/forms/ApiForm.tsx:696 #: src/contexts/ThemeContext.tsx:44 #: src/pages/Index/Settings/AccountSettings/MFASettings.tsx:149 #: src/pages/Index/Settings/AccountSettings/MFASettings.tsx:568 @@ -1499,8 +1531,8 @@ msgstr "" msgid "A server error occurred" msgstr "" -#: src/components/forms/ApiForm.tsx:103 -#: src/components/forms/ApiForm.tsx:594 +#: src/components/forms/ApiForm.tsx:107 +#: src/components/forms/ApiForm.tsx:613 msgid "Form Error" msgstr "" @@ -1508,11 +1540,11 @@ msgstr "" #~ msgid "Form Errors Exist" #~ msgstr "Form Errors Exist" -#: src/components/forms/ApiForm.tsx:604 +#: src/components/forms/ApiForm.tsx:623 msgid "Errors exist for one or more form fields" msgstr "" -#: src/components/forms/ApiForm.tsx:715 +#: src/components/forms/ApiForm.tsx:734 #: src/hooks/UseForm.tsx:133 #: src/tables/plugin/PluginListTable.tsx:204 msgid "Update" @@ -1698,15 +1730,14 @@ msgstr "" #: src/components/forms/InstanceOptions.tsx:124 #: src/components/plugins/PluginDrawer.tsx:68 #: src/pages/Index/Settings/AdminCenter/UnitManagementPanel.tsx:19 -#: src/pages/part/CategoryDetail.tsx:88 +#: src/pages/part/CategoryDetail.tsx:91 #: src/pages/part/PartDetail.tsx:446 #: src/pages/stock/LocationDetail.tsx:82 #: src/tables/machine/MachineTypeTable.tsx:67 -#: src/tables/machine/MachineTypeTable.tsx:151 -#: src/tables/machine/MachineTypeTable.tsx:254 -#: src/tables/machine/MachineTypeTable.tsx:357 +#: src/tables/machine/MachineTypeTable.tsx:149 +#: src/tables/machine/MachineTypeTable.tsx:252 +#: src/tables/machine/MachineTypeTable.tsx:355 #: src/tables/plugin/PluginErrorTable.tsx:33 -#: src/tables/purchasing/ManufacturerPartParameterTable.tsx:36 #: src/tables/settings/ApiTokenTable.tsx:57 #: src/tables/settings/GroupTable.tsx:95 #: src/tables/settings/GroupTable.tsx:148 @@ -1769,7 +1800,7 @@ msgstr "" #~ msgstr "State: <0>worker ({0}), <1>plugins{1}" #: src/components/forms/InstanceOptions.tsx:118 -#: src/pages/Index/Settings/SystemSettings.tsx:45 +#: src/pages/Index/Settings/SystemSettings.tsx:46 msgid "Server" msgstr "" @@ -1793,6 +1824,8 @@ msgid "Plugins" msgstr "" #: src/components/forms/InstanceOptions.tsx:143 +#: src/tables/general/ParameterTemplateTable.tsx:153 +#: src/tables/general/ParameterTemplateTable.tsx:188 #: src/tables/part/PartTestTemplateTable.tsx:117 #: src/tables/settings/TemplateTable.tsx:251 #: src/tables/settings/TemplateTable.tsx:362 @@ -1817,10 +1850,14 @@ msgstr "" msgid "Running" msgstr "" -#: src/components/forms/fields/ApiFormField.tsx:233 +#: src/components/forms/fields/ApiFormField.tsx:197 msgid "Select file to upload" msgstr "" +#: src/components/forms/fields/AutoFillRightSection.tsx:47 +msgid "Accept suggested value" +msgstr "" + #: src/components/forms/fields/DateField.tsx:76 msgid "Select date" msgstr "" @@ -1853,13 +1890,13 @@ msgstr "" msgid "{0} icons" msgstr "" -#: src/components/forms/fields/RelatedModelField.tsx:409 +#: src/components/forms/fields/RelatedModelField.tsx:480 #: src/components/modals/AboutInvenTreeModal.tsx:96 #: src/pages/Index/Settings/AccountSettings/SecurityContent.tsx:383 msgid "Loading" msgstr "" -#: src/components/forms/fields/RelatedModelField.tsx:411 +#: src/components/forms/fields/RelatedModelField.tsx:482 msgid "No results found" msgstr "" @@ -1875,10 +1912,6 @@ msgstr "" msgid "Add new row" msgstr "" -#: src/components/forms/fields/TextField.tsx:82 -msgid "Accept suggested value" -msgstr "" - #: src/components/images/DetailsImage.tsx:252 #~ msgid "Select image" #~ msgstr "Select image" @@ -2036,7 +2069,7 @@ msgstr "" #: src/components/importer/ImporterDrawer.tsx:109 #: src/components/modals/AboutInvenTreeModal.tsx:205 #: src/components/modals/ServerInfoModal.tsx:134 -#: src/components/wizards/ImportPartWizard.tsx:772 +#: src/components/wizards/ImportPartWizard.tsx:773 #: src/forms/BomForms.tsx:132 #: src/pages/Index/Settings/AccountSettings/MFASettings.tsx:685 msgid "Close" @@ -2199,7 +2232,7 @@ msgid "Change" msgstr "" #: src/components/items/RoleTable.tsx:150 -#: src/forms/StockForms.tsx:927 +#: src/forms/StockForms.tsx:941 #: src/tables/stock/StockItemTestResultTable.tsx:367 msgid "Add" msgstr "" @@ -2222,11 +2255,11 @@ msgstr "" #: src/components/items/TransferList.tsx:161 #: src/components/render/Stock.tsx:102 -#: src/pages/part/PartDetail.tsx:994 +#: src/pages/part/PartDetail.tsx:1009 #: src/pages/stock/StockDetail.tsx:265 #: src/pages/stock/StockDetail.tsx:942 -#: src/tables/build/BuildAllocatedStockTable.tsx:135 -#: src/tables/build/BuildLineTable.tsx:192 +#: src/tables/build/BuildAllocatedStockTable.tsx:132 +#: src/tables/build/BuildLineTable.tsx:193 #: src/tables/part/PartTable.tsx:137 #: src/tables/stock/StockItemTable.tsx:182 #: src/tables/stock/StockItemTable.tsx:343 @@ -2373,7 +2406,7 @@ msgid "Database" msgstr "" #: src/components/modals/ServerInfoModal.tsx:49 -#: src/components/nav/Alerts.tsx:118 +#: src/components/nav/Alerts.tsx:120 msgid "Debug Mode" msgstr "" @@ -2414,7 +2447,7 @@ msgid "Issues detected" msgstr "" #: src/components/modals/ServerInfoModal.tsx:102 -#: src/components/nav/Alerts.tsx:125 +#: src/components/nav/Alerts.tsx:127 msgid "Background Worker" msgstr "" @@ -2436,7 +2469,7 @@ msgstr "" #~ msgstr "Email settings not configured" #: src/components/modals/ServerInfoModal.tsx:120 -#: src/components/nav/Alerts.tsx:141 +#: src/components/nav/Alerts.tsx:143 msgid "Email settings not configured." msgstr "" @@ -2444,43 +2477,47 @@ msgstr "" msgid "Alerts" msgstr "" -#: src/components/nav/Alerts.tsx:120 +#: src/components/nav/Alerts.tsx:97 +msgid "No issues detected" +msgstr "" + +#: src/components/nav/Alerts.tsx:122 msgid "The server is running in debug mode." msgstr "" -#: src/components/nav/Alerts.tsx:127 +#: src/components/nav/Alerts.tsx:129 msgid "The background worker process is not running." msgstr "" -#: src/components/nav/Alerts.tsx:132 +#: src/components/nav/Alerts.tsx:134 msgid "Server Restart" msgstr "" -#: src/components/nav/Alerts.tsx:134 +#: src/components/nav/Alerts.tsx:136 msgid "The server requires a restart to apply changes." msgstr "" -#: src/components/nav/Alerts.tsx:139 +#: src/components/nav/Alerts.tsx:141 msgid "Email settings" msgstr "" -#: src/components/nav/Alerts.tsx:146 +#: src/components/nav/Alerts.tsx:148 msgid "Database Migrations" msgstr "" -#: src/components/nav/Alerts.tsx:148 +#: src/components/nav/Alerts.tsx:150 msgid "There are pending database migrations." msgstr "" -#: src/components/nav/Alerts.tsx:163 +#: src/components/nav/Alerts.tsx:165 msgid "Learn more about {code}" msgstr "" #: src/components/nav/Header.tsx:188 #: src/components/nav/NavigationDrawer.tsx:134 #: src/components/nav/NotificationDrawer.tsx:181 -#: src/pages/Index/Settings/SystemSettings.tsx:121 -#: src/pages/Index/Settings/UserSettings.tsx:106 +#: src/pages/Index/Settings/SystemSettings.tsx:122 +#: src/pages/Index/Settings/UserSettings.tsx:107 #: src/pages/Notifications.tsx:45 #: src/pages/Notifications.tsx:130 msgid "Notifications" @@ -2511,8 +2548,8 @@ msgstr "" #: src/components/nav/NavigationDrawer.tsx:140 #: src/components/nav/SettingsHeader.tsx:40 #: src/defaults/actions.tsx:92 -#: src/pages/Index/Settings/UserSettings.tsx:141 -#: src/pages/Index/Settings/UserSettings.tsx:145 +#: src/pages/Index/Settings/UserSettings.tsx:142 +#: src/pages/Index/Settings/UserSettings.tsx:146 msgid "User Settings" msgstr "" @@ -2529,8 +2566,8 @@ msgstr "" #: src/components/nav/NavigationDrawer.tsx:146 #: src/components/nav/SettingsHeader.tsx:41 #: src/defaults/actions.tsx:144 -#: src/pages/Index/Settings/SystemSettings.tsx:348 -#: src/pages/Index/Settings/SystemSettings.tsx:353 +#: src/pages/Index/Settings/SystemSettings.tsx:354 +#: src/pages/Index/Settings/SystemSettings.tsx:359 msgid "System Settings" msgstr "" @@ -2577,11 +2614,11 @@ msgstr "" #: src/components/nav/NavigationDrawer.tsx:77 #: src/components/render/Part.tsx:36 -#: src/components/wizards/ImportPartWizard.tsx:807 +#: src/components/wizards/ImportPartWizard.tsx:808 #: src/defaults/links.tsx:42 #: src/forms/StockForms.tsx:794 -#: src/pages/Index/Settings/SystemSettings.tsx:224 -#: src/pages/part/PartDetail.tsx:804 +#: src/pages/Index/Settings/SystemSettings.tsx:230 +#: src/pages/part/PartDetail.tsx:793 #: src/pages/stock/LocationDetail.tsx:390 #: src/pages/stock/LocationDetail.tsx:420 #: src/pages/stock/StockDetail.tsx:642 @@ -2591,29 +2628,29 @@ msgstr "" #: src/components/nav/NavigationDrawer.tsx:84 #: src/defaults/links.tsx:48 -#: src/pages/build/BuildDetail.tsx:748 -#: src/pages/build/BuildIndex.tsx:102 +#: src/pages/build/BuildDetail.tsx:753 +#: src/pages/build/BuildIndex.tsx:101 msgid "Manufacturing" msgstr "" #: src/components/nav/NavigationDrawer.tsx:91 #: src/defaults/links.tsx:54 #: src/pages/company/ManufacturerDetail.tsx:9 -#: src/pages/company/ManufacturerPartDetail.tsx:276 +#: src/pages/company/ManufacturerPartDetail.tsx:267 #: src/pages/company/SupplierDetail.tsx:9 -#: src/pages/company/SupplierPartDetail.tsx:360 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:553 -#: src/pages/purchasing/PurchasingIndex.tsx:122 +#: src/pages/company/SupplierPartDetail.tsx:365 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:558 +#: src/pages/purchasing/PurchasingIndex.tsx:212 msgid "Purchasing" msgstr "" #: src/components/nav/NavigationDrawer.tsx:98 #: src/defaults/links.tsx:60 #: src/pages/company/CustomerDetail.tsx:9 -#: src/pages/sales/ReturnOrderDetail.tsx:554 -#: src/pages/sales/SalesIndex.tsx:153 -#: src/pages/sales/SalesOrderDetail.tsx:619 -#: src/pages/sales/SalesOrderShipmentDetail.tsx:480 +#: src/pages/sales/ReturnOrderDetail.tsx:559 +#: src/pages/sales/SalesIndex.tsx:168 +#: src/pages/sales/SalesOrderDetail.tsx:624 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:448 msgid "Sales" msgstr "" @@ -2667,21 +2704,21 @@ msgid "Remove search group" msgstr "" #: src/components/nav/SearchDrawer.tsx:288 -#: src/pages/company/ManufacturerPartDetail.tsx:192 -#: src/pages/part/PartDetail.tsx:862 +#: src/pages/company/ManufacturerPartDetail.tsx:179 +#: src/pages/part/PartDetail.tsx:851 #: src/pages/part/PartSupplierDetail.tsx:15 -#: src/pages/purchasing/PurchasingIndex.tsx:81 +#: src/pages/purchasing/PurchasingIndex.tsx:100 msgid "Suppliers" msgstr "" #: src/components/nav/SearchDrawer.tsx:298 #: src/pages/part/PartSupplierDetail.tsx:23 -#: src/pages/purchasing/PurchasingIndex.tsx:98 +#: src/pages/purchasing/PurchasingIndex.tsx:149 msgid "Manufacturers" msgstr "" #: src/components/nav/SearchDrawer.tsx:308 -#: src/pages/sales/SalesIndex.tsx:138 +#: src/pages/sales/SalesIndex.tsx:133 msgid "Customers" msgstr "" @@ -2772,21 +2809,21 @@ msgstr "" #: src/components/plugins/PluginDrawer.tsx:73 #: src/forms/selectionListFields.tsx:102 -#: src/pages/build/BuildDetail.tsx:250 -#: src/pages/company/CompanyDetail.tsx:93 -#: src/pages/company/ManufacturerPartDetail.tsx:93 -#: src/pages/company/ManufacturerPartDetail.tsx:120 -#: src/pages/company/SupplierPartDetail.tsx:145 -#: src/pages/part/CategoryDetail.tsx:108 +#: src/pages/build/BuildDetail.tsx:251 +#: src/pages/company/CompanyDetail.tsx:94 +#: src/pages/company/ManufacturerPartDetail.tsx:92 +#: src/pages/company/ManufacturerPartDetail.tsx:119 +#: src/pages/company/SupplierPartDetail.tsx:146 +#: src/pages/part/CategoryDetail.tsx:111 #: src/pages/part/PartDetail.tsx:460 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:162 -#: src/pages/sales/ReturnOrderDetail.tsx:129 -#: src/pages/sales/SalesOrderDetail.tsx:119 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:163 +#: src/pages/sales/ReturnOrderDetail.tsx:130 +#: src/pages/sales/SalesOrderDetail.tsx:120 #: src/pages/stock/LocationDetail.tsx:102 #: src/tables/ColumnRenderers.tsx:278 -#: src/tables/build/BuildAllocatedStockTable.tsx:91 -#: src/tables/machine/MachineTypeTable.tsx:161 -#: src/tables/machine/MachineTypeTable.tsx:257 +#: src/tables/build/BuildAllocatedStockTable.tsx:88 +#: src/tables/machine/MachineTypeTable.tsx:159 +#: src/tables/machine/MachineTypeTable.tsx:255 #: src/tables/plugin/PluginListTable.tsx:110 msgid "Description" msgstr "" @@ -2814,7 +2851,7 @@ msgstr "" #: src/tables/company/CompanyTable.tsx:91 #: src/tables/machine/MachineListTable.tsx:384 #: src/tables/machine/MachineListTable.tsx:799 -#: src/tables/part/ParametricPartTable.tsx:354 +#: src/tables/part/ParametricPartTable.tsx:19 #: src/tables/part/PartTable.tsx:197 #: src/tables/part/PartVariantTable.tsx:15 #: src/tables/plugin/PluginListTable.tsx:96 @@ -2836,8 +2873,8 @@ msgid "Installation Path" msgstr "" #: src/components/plugins/PluginDrawer.tsx:116 -#: src/tables/machine/MachineTypeTable.tsx:184 -#: src/tables/machine/MachineTypeTable.tsx:293 +#: src/tables/machine/MachineTypeTable.tsx:182 +#: src/tables/machine/MachineTypeTable.tsx:291 #: src/tables/plugin/PluginListTable.tsx:101 #: src/tables/plugin/PluginListTable.tsx:417 msgid "Builtin" @@ -2849,8 +2886,8 @@ msgstr "" #: src/components/plugins/PluginDrawer.tsx:133 #: src/pages/Index/Settings/AdminCenter/PluginManagementPanel.tsx:55 -#: src/pages/Index/Settings/SystemSettings.tsx:331 -#: src/pages/Index/Settings/UserSettings.tsx:128 +#: src/pages/Index/Settings/SystemSettings.tsx:337 +#: src/pages/Index/Settings/UserSettings.tsx:129 msgid "Plugin Settings" msgstr "" @@ -2911,7 +2948,7 @@ msgstr "" #~ msgid "Unknown model: {model}" #~ msgstr "Unknown model: {model}" -#: src/components/render/Instance.tsx:249 +#: src/components/render/Instance.tsx:247 msgid "Unknown model: {model_name}" msgstr "" @@ -2939,10 +2976,10 @@ msgstr "" #: src/components/render/Part.tsx:28 #: src/components/render/Plugin.tsx:17 #: src/components/render/User.tsx:37 -#: src/pages/company/CompanyDetail.tsx:323 -#: src/pages/company/SupplierPartDetail.tsx:373 +#: src/pages/company/CompanyDetail.tsx:328 +#: src/pages/company/SupplierPartDetail.tsx:378 #: src/pages/core/UserDetail.tsx:211 -#: src/pages/part/PartDetail.tsx:1027 +#: src/pages/part/PartDetail.tsx:1048 #: src/tables/ColumnRenderers.tsx:410 msgid "Inactive" msgstr "" @@ -2962,11 +2999,11 @@ msgstr "" #: src/components/render/Part.tsx:47 #: src/components/wizards/OrderPartsWizard.tsx:135 -#: src/pages/company/SupplierPartDetail.tsx:197 -#: src/pages/company/SupplierPartDetail.tsx:394 -#: src/pages/part/PartDetail.tsx:1015 +#: src/pages/company/SupplierPartDetail.tsx:198 +#: src/pages/company/SupplierPartDetail.tsx:399 +#: src/pages/part/PartDetail.tsx:1030 #: src/tables/bom/BomTable.tsx:444 -#: src/tables/build/BuildLineTable.tsx:222 +#: src/tables/build/BuildLineTable.tsx:223 #: src/tables/part/PartTable.tsx:108 msgid "On Order" msgstr "" @@ -2974,9 +3011,9 @@ msgstr "" #: src/components/render/Part.tsx:55 #: src/components/wizards/OrderPartsWizard.tsx:141 #: src/pages/part/PartDetail.tsx:587 -#: src/pages/part/PartDetail.tsx:1021 +#: src/pages/part/PartDetail.tsx:1036 #: src/pages/stock/StockDetail.tsx:925 -#: src/tables/part/PartTestResultTable.tsx:297 +#: src/tables/part/PartTestResultTable.tsx:305 #: src/tables/stock/StockItemTable.tsx:359 msgid "In Production" msgstr "" @@ -2987,7 +3024,7 @@ msgid "Details" msgstr "" #: src/components/render/Part.tsx:112 -#: src/components/wizards/ImportPartWizard.tsx:806 +#: src/components/wizards/ImportPartWizard.tsx:807 #: src/pages/part/PartDetail.tsx:487 #: src/tables/ColumnRenderers.tsx:233 #: src/tables/ColumnRenderers.tsx:242 @@ -3000,16 +3037,16 @@ msgstr "" #: src/components/render/Stock.tsx:114 #: src/components/render/Stock.tsx:132 #: src/forms/BuildForms.tsx:795 -#: src/forms/PurchaseOrderForms.tsx:595 +#: src/forms/PurchaseOrderForms.tsx:647 #: src/forms/StockForms.tsx:792 #: src/forms/StockForms.tsx:839 -#: src/forms/StockForms.tsx:885 -#: src/forms/StockForms.tsx:924 -#: src/forms/StockForms.tsx:960 -#: src/forms/StockForms.tsx:1003 -#: src/forms/StockForms.tsx:1047 -#: src/forms/StockForms.tsx:1095 -#: src/forms/StockForms.tsx:1139 +#: src/forms/StockForms.tsx:892 +#: src/forms/StockForms.tsx:938 +#: src/forms/StockForms.tsx:976 +#: src/forms/StockForms.tsx:1019 +#: src/forms/StockForms.tsx:1063 +#: src/forms/StockForms.tsx:1111 +#: src/forms/StockForms.tsx:1155 #: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:88 #: src/pages/core/UserDetail.tsx:158 #: src/pages/stock/StockDetail.tsx:298 @@ -3023,7 +3060,7 @@ msgstr "" #: src/components/render/Stock.tsx:99 #: src/pages/stock/StockDetail.tsx:198 #: src/pages/stock/StockDetail.tsx:930 -#: src/tables/build/BuildAllocatedStockTable.tsx:121 +#: src/tables/build/BuildAllocatedStockTable.tsx:118 #: src/tables/build/BuildOutputTable.tsx:107 #: src/tables/sales/SalesOrderAllocationTable.tsx:142 msgid "Serial Number" @@ -3034,9 +3071,9 @@ msgstr "" #: src/forms/BuildForms.tsx:240 #: src/forms/BuildForms.tsx:634 #: src/forms/BuildForms.tsx:797 -#: src/forms/PurchaseOrderForms.tsx:801 +#: src/forms/PurchaseOrderForms.tsx:853 #: src/forms/ReturnOrderForms.tsx:243 -#: src/forms/SalesOrderForms.tsx:308 +#: src/forms/SalesOrderForms.tsx:387 #: src/forms/StockForms.tsx:841 #: src/pages/part/PartStockHistoryDetail.tsx:56 #: src/pages/part/PartStockHistoryDetail.tsx:210 @@ -3046,9 +3083,9 @@ msgstr "" #: src/pages/part/pricing/PriceBreakPanel.tsx:172 #: src/pages/stock/StockDetail.tsx:258 #: src/pages/stock/StockDetail.tsx:936 -#: src/tables/build/BuildLineTable.tsx:86 +#: src/tables/build/BuildLineTable.tsx:83 #: src/tables/part/PartPurchaseOrdersTable.tsx:94 -#: src/tables/part/PartTestResultTable.tsx:269 +#: src/tables/part/PartTestResultTable.tsx:277 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:175 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:206 #: src/tables/purchasing/SupplierPriceBreakTable.tsx:69 @@ -3063,14 +3100,14 @@ msgstr "" #: src/forms/BuildForms.tsx:474 #: src/forms/StockForms.tsx:793 #: src/forms/StockForms.tsx:840 -#: src/forms/StockForms.tsx:886 -#: src/forms/StockForms.tsx:925 -#: src/forms/StockForms.tsx:961 -#: src/forms/StockForms.tsx:1004 -#: src/forms/StockForms.tsx:1048 -#: src/forms/StockForms.tsx:1096 -#: src/forms/StockForms.tsx:1140 -#: src/tables/build/BuildLineTable.tsx:96 +#: src/forms/StockForms.tsx:893 +#: src/forms/StockForms.tsx:939 +#: src/forms/StockForms.tsx:977 +#: src/forms/StockForms.tsx:1020 +#: src/forms/StockForms.tsx:1064 +#: src/forms/StockForms.tsx:1112 +#: src/forms/StockForms.tsx:1156 +#: src/tables/build/BuildLineTable.tsx:93 msgid "Batch" msgstr "" @@ -3306,10 +3343,6 @@ msgstr "" #~ msgid "Part category updated" #~ msgstr "Part category updated" -#: src/components/tables/part/PartParameterTable.tsx:41 -#~ msgid "Parameter" -#~ msgstr "Parameter" - #: src/components/tables/part/PartParameterTable.tsx:114 #~ msgid "Part parameter updated" #~ msgstr "Part parameter updated" @@ -3571,15 +3604,16 @@ msgid "Already Imported" msgstr "" #: src/components/wizards/ImportPartWizard.tsx:205 -#: src/pages/company/CompanyDetail.tsx:136 +#: src/pages/company/CompanyDetail.tsx:137 #: src/pages/company/SupplierDetail.tsx:8 -#: src/pages/company/SupplierPartDetail.tsx:130 -#: src/pages/company/SupplierPartDetail.tsx:235 -#: src/pages/company/SupplierPartDetail.tsx:364 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:156 +#: src/pages/company/SupplierPartDetail.tsx:131 +#: src/pages/company/SupplierPartDetail.tsx:236 +#: src/pages/company/SupplierPartDetail.tsx:369 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:157 #: src/tables/Filter.tsx:360 #: src/tables/company/CompanyTable.tsx:96 #: src/tables/part/PartPurchaseOrdersTable.tsx:43 +#: src/tables/purchasing/PurchaseOrderParametricTable.tsx:34 #: src/tables/purchasing/PurchaseOrderTable.tsx:109 #: src/tables/purchasing/SupplierPriceBreakTable.tsx:40 msgid "Supplier" @@ -3648,7 +3682,7 @@ msgid "Next" msgstr "" #: src/components/wizards/ImportPartWizard.tsx:540 -#: src/pages/part/PartDetail.tsx:1046 +#: src/pages/part/PartDetail.tsx:1067 #: src/tables/part/PartTable.tsx:408 msgid "Edit Part" msgstr "" @@ -3669,28 +3703,28 @@ msgstr "" msgid "Import" msgstr "" -#: src/components/wizards/ImportPartWizard.tsx:691 +#: src/components/wizards/ImportPartWizard.tsx:692 msgid "Parameters created successfully!" msgstr "" -#: src/components/wizards/ImportPartWizard.tsx:719 +#: src/components/wizards/ImportPartWizard.tsx:720 msgid "Failed to create parameters, please fix the errors and try again" msgstr "" #. placeholder {0}: supplierPart?.supplier -#: src/components/wizards/ImportPartWizard.tsx:739 +#: src/components/wizards/ImportPartWizard.tsx:740 msgid "Part imported successfully from supplier {0}." msgstr "" -#: src/components/wizards/ImportPartWizard.tsx:752 +#: src/components/wizards/ImportPartWizard.tsx:753 msgid "Open Part" msgstr "" -#: src/components/wizards/ImportPartWizard.tsx:759 +#: src/components/wizards/ImportPartWizard.tsx:760 msgid "Open Supplier Part" msgstr "" -#: src/components/wizards/ImportPartWizard.tsx:766 +#: src/components/wizards/ImportPartWizard.tsx:767 msgid "Open Manufacturer Part" msgstr "" @@ -3699,25 +3733,19 @@ msgstr "" #~ msgid "Import Part" #~ msgstr "Import Part" -#: src/components/wizards/ImportPartWizard.tsx:802 +#: src/components/wizards/ImportPartWizard.tsx:803 msgid "Import Supplier Part" msgstr "" -#: src/components/wizards/ImportPartWizard.tsx:804 +#: src/components/wizards/ImportPartWizard.tsx:805 msgid "Search Supplier Part" msgstr "" -#: src/components/wizards/ImportPartWizard.tsx:806 -#: src/pages/company/ManufacturerPartDetail.tsx:166 -#: src/pages/part/PartDetail.tsx:793 -msgid "Parameters" -msgstr "" - -#: src/components/wizards/ImportPartWizard.tsx:806 +#: src/components/wizards/ImportPartWizard.tsx:807 msgid "Confirm import" msgstr "" -#: src/components/wizards/ImportPartWizard.tsx:808 +#: src/components/wizards/ImportPartWizard.tsx:809 msgid "Done" msgstr "" @@ -3738,24 +3766,24 @@ msgid "Sales Requirements" msgstr "" #: src/components/wizards/OrderPartsWizard.tsx:129 -#: src/forms/StockForms.tsx:887 -#: src/forms/StockForms.tsx:926 -#: src/forms/StockForms.tsx:962 -#: src/forms/StockForms.tsx:1005 -#: src/forms/StockForms.tsx:1049 -#: src/forms/StockForms.tsx:1097 -#: src/forms/StockForms.tsx:1141 -#: src/pages/company/SupplierPartDetail.tsx:190 -#: src/pages/company/SupplierPartDetail.tsx:378 +#: src/forms/StockForms.tsx:894 +#: src/forms/StockForms.tsx:940 +#: src/forms/StockForms.tsx:978 +#: src/forms/StockForms.tsx:1021 +#: src/forms/StockForms.tsx:1065 +#: src/forms/StockForms.tsx:1113 +#: src/forms/StockForms.tsx:1157 +#: src/pages/company/SupplierPartDetail.tsx:191 +#: src/pages/company/SupplierPartDetail.tsx:383 #: src/pages/part/PartDetail.tsx:534 -#: src/pages/part/PartDetail.tsx:984 +#: src/pages/part/PartDetail.tsx:999 #: src/tables/Filter.tsx:92 #: src/tables/purchasing/SupplierPartTable.tsx:230 msgid "In Stock" msgstr "" #: src/components/wizards/OrderPartsWizard.tsx:146 -#: src/tables/build/BuildLineTable.tsx:404 +#: src/tables/build/BuildLineTable.tsx:405 msgid "Required Quantity" msgstr "" @@ -3847,7 +3875,7 @@ msgid "Please correct the errors in the selected parts" msgstr "" #: src/components/wizards/OrderPartsWizard.tsx:587 -#: src/tables/build/BuildLineTable.tsx:815 +#: src/tables/build/BuildLineTable.tsx:822 #: src/tables/part/PartTable.tsx:522 #: src/tables/sales/SalesOrderLineItemTable.tsx:370 msgid "Order Parts" @@ -4349,9 +4377,9 @@ msgstr "" #: src/forms/BuildForms.tsx:333 #: src/forms/BuildForms.tsx:408 #: src/forms/BuildForms.tsx:685 -#: src/tables/build/BuildAllocatedStockTable.tsx:150 +#: src/tables/build/BuildAllocatedStockTable.tsx:147 #: src/tables/build/BuildOutputTable.tsx:582 -#: src/tables/part/PartTestResultTable.tsx:272 +#: src/tables/part/PartTestResultTable.tsx:280 msgid "Build Output" msgstr "" @@ -4362,22 +4390,22 @@ msgstr "" #: src/forms/BuildForms.tsx:336 #: src/forms/BuildForms.tsx:411 #: src/forms/BuildForms.tsx:475 -#: src/forms/PurchaseOrderForms.tsx:717 +#: src/forms/PurchaseOrderForms.tsx:769 #: src/forms/ReturnOrderForms.tsx:197 #: src/forms/ReturnOrderForms.tsx:244 #: src/forms/StockForms.tsx:712 #: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:87 -#: src/pages/build/BuildDetail.tsx:222 +#: src/pages/build/BuildDetail.tsx:223 #: src/pages/core/UserDetail.tsx:151 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:168 -#: src/pages/sales/ReturnOrderDetail.tsx:135 -#: src/pages/sales/SalesOrderDetail.tsx:125 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:169 +#: src/pages/sales/ReturnOrderDetail.tsx:136 +#: src/pages/sales/SalesOrderDetail.tsx:126 #: src/pages/stock/StockDetail.tsx:170 #: src/tables/Filter.tsx:274 #: src/tables/build/BuildOutputTable.tsx:404 #: src/tables/machine/MachineListTable.tsx:387 #: src/tables/part/PartPurchaseOrdersTable.tsx:38 -#: src/tables/part/PartTestResultTable.tsx:309 +#: src/tables/part/PartTestResultTable.tsx:317 #: src/tables/sales/ReturnOrderLineItemTable.tsx:138 #: src/tables/sales/ReturnOrderLineItemTable.tsx:176 #: src/tables/settings/CustomStateTable.tsx:79 @@ -4443,18 +4471,19 @@ msgid "Build outputs have been cancelled" msgstr "" #: src/forms/BuildForms.tsx:631 -#: src/pages/build/BuildDetail.tsx:207 -#: src/pages/company/ManufacturerPartDetail.tsx:85 -#: src/pages/company/SupplierPartDetail.tsx:96 +#: src/pages/build/BuildDetail.tsx:208 +#: src/pages/company/ManufacturerPartDetail.tsx:84 +#: src/pages/company/SupplierPartDetail.tsx:97 #: src/pages/part/PartDetail.tsx:453 #: src/pages/stock/StockDetail.tsx:153 #: src/tables/bom/BomTable.tsx:134 #: src/tables/bom/UsedInTable.tsx:40 -#: src/tables/build/BuildAllocatedStockTable.tsx:108 -#: src/tables/build/BuildLineTable.tsx:336 +#: src/tables/build/BuildAllocatedStockTable.tsx:105 +#: src/tables/build/BuildLineTable.tsx:337 #: src/tables/build/BuildOrderTable.tsx:79 #: src/tables/part/PartSalesAllocationsTable.tsx:61 #: src/tables/part/RelatedPartTable.tsx:73 +#: src/tables/purchasing/ManufacturerPartParametricTable.tsx:21 #: src/tables/purchasing/ManufacturerPartTable.tsx:69 #: src/tables/purchasing/SupplierPartTable.tsx:70 #: src/tables/sales/SalesOrderAllocationTable.tsx:135 @@ -4466,47 +4495,47 @@ msgstr "" #: src/forms/BuildForms.tsx:632 #: src/forms/BuildForms.tsx:796 #: src/forms/BuildForms.tsx:897 -#: src/forms/SalesOrderForms.tsx:306 -#: src/tables/build/BuildAllocatedStockTable.tsx:139 -#: src/tables/build/BuildLineTable.tsx:182 +#: src/forms/SalesOrderForms.tsx:385 +#: src/tables/build/BuildAllocatedStockTable.tsx:136 +#: src/tables/build/BuildLineTable.tsx:183 #: src/tables/sales/SalesOrderLineItemTable.tsx:342 #: src/tables/stock/StockItemTable.tsx:338 msgid "Allocated" msgstr "" #: src/forms/BuildForms.tsx:667 -#: src/forms/SalesOrderForms.tsx:295 -#: src/pages/build/BuildDetail.tsx:108 -#: src/pages/build/BuildDetail.tsx:326 +#: src/forms/SalesOrderForms.tsx:374 +#: src/pages/build/BuildDetail.tsx:109 +#: src/pages/build/BuildDetail.tsx:327 msgid "Source Location" msgstr "" #: src/forms/BuildForms.tsx:668 -#: src/forms/SalesOrderForms.tsx:296 +#: src/forms/SalesOrderForms.tsx:375 msgid "Select the source location for the stock allocation" msgstr "" #: src/forms/BuildForms.tsx:700 -#: src/forms/SalesOrderForms.tsx:336 -#: src/tables/build/BuildLineTable.tsx:574 -#: src/tables/build/BuildLineTable.tsx:731 -#: src/tables/build/BuildLineTable.tsx:830 +#: src/forms/SalesOrderForms.tsx:415 +#: src/tables/build/BuildLineTable.tsx:575 +#: src/tables/build/BuildLineTable.tsx:738 +#: src/tables/build/BuildLineTable.tsx:837 #: src/tables/sales/SalesOrderLineItemTable.tsx:380 #: src/tables/sales/SalesOrderLineItemTable.tsx:406 msgid "Allocate Stock" msgstr "" #: src/forms/BuildForms.tsx:703 -#: src/forms/SalesOrderForms.tsx:341 +#: src/forms/SalesOrderForms.tsx:420 msgid "Stock items allocated" msgstr "" #: src/forms/BuildForms.tsx:816 #: src/forms/BuildForms.tsx:917 -#: src/tables/build/BuildAllocatedStockTable.tsx:240 -#: src/tables/build/BuildAllocatedStockTable.tsx:272 -#: src/tables/build/BuildLineTable.tsx:741 -#: src/tables/build/BuildLineTable.tsx:864 +#: src/tables/build/BuildAllocatedStockTable.tsx:243 +#: src/tables/build/BuildAllocatedStockTable.tsx:279 +#: src/tables/build/BuildLineTable.tsx:748 +#: src/tables/build/BuildLineTable.tsx:871 msgid "Consume Stock" msgstr "" @@ -4521,21 +4550,21 @@ msgstr "" #~ msgstr "Stock items consumed" #: src/forms/BuildForms.tsx:853 -#: src/tables/build/BuildLineTable.tsx:514 +#: src/tables/build/BuildLineTable.tsx:515 #: src/tables/part/PartBuildAllocationsTable.tsx:101 msgid "Fully consumed" msgstr "" #: src/forms/BuildForms.tsx:898 -#: src/tables/build/BuildLineTable.tsx:187 +#: src/tables/build/BuildLineTable.tsx:188 #: src/tables/stock/StockItemTable.tsx:367 msgid "Consumed" msgstr "" -#: src/forms/CommonForms.tsx:88 -#: src/forms/PurchaseOrderForms.tsx:125 +#: src/forms/CommonForms.tsx:92 +#: src/forms/PurchaseOrderForms.tsx:176 #: src/forms/ReturnOrderForms.tsx:138 -#: src/forms/SalesOrderForms.tsx:164 +#: src/forms/SalesOrderForms.tsx:185 msgid "Select project code for this line item" msgstr "" @@ -4543,16 +4572,16 @@ msgstr "" #~ msgid "Company updated" #~ msgstr "Company updated" -#: src/forms/PartForms.tsx:85 -#: src/forms/PartForms.tsx:207 -#: src/pages/part/CategoryDetail.tsx:124 +#: src/forms/PartForms.tsx:99 +#: src/forms/PartForms.tsx:228 +#: src/pages/part/CategoryDetail.tsx:127 #: src/pages/part/PartDetail.tsx:668 #: src/tables/part/PartCategoryTable.tsx:94 #: src/tables/part/PartTable.tsx:325 msgid "Subscribed" msgstr "" -#: src/forms/PartForms.tsx:86 +#: src/forms/PartForms.tsx:100 msgid "Subscribe to notifications for this part" msgstr "" @@ -4564,40 +4593,24 @@ msgstr "" #~ msgid "Part updated" #~ msgstr "Part updated" -#: src/forms/PartForms.tsx:193 +#: src/forms/PartForms.tsx:214 msgid "Parent part category" msgstr "" -#: src/forms/PartForms.tsx:208 +#: src/forms/PartForms.tsx:229 msgid "Subscribe to notifications for this category" msgstr "" -#: src/forms/PurchaseOrderForms.tsx:388 -msgid "Assign Batch Code and Serial Numbers" -msgstr "" - -#: src/forms/PurchaseOrderForms.tsx:390 -msgid "Assign Batch Code" -msgstr "" - -#: src/forms/PurchaseOrderForms.tsx:410 -msgid "Choose Location" -msgstr "" - -#: src/forms/PurchaseOrderForms.tsx:418 -msgid "Item Destination selected" -msgstr "" - #: src/forms/PurchaseOrderForms.tsx:421 #~ msgid "Assign Batch Code{0}" #~ msgstr "Assign Batch Code{0}" -#: src/forms/PurchaseOrderForms.tsx:428 -msgid "Part category default location selected" +#: src/forms/PurchaseOrderForms.tsx:440 +msgid "Assign Batch Code and Serial Numbers" msgstr "" -#: src/forms/PurchaseOrderForms.tsx:438 -msgid "Received stock location selected" +#: src/forms/PurchaseOrderForms.tsx:442 +msgid "Assign Batch Code" msgstr "" #: src/forms/PurchaseOrderForms.tsx:444 @@ -4605,115 +4618,131 @@ msgstr "" #~ msgid "Remove item from list" #~ msgstr "Remove item from list" -#: src/forms/PurchaseOrderForms.tsx:446 +#: src/forms/PurchaseOrderForms.tsx:462 +msgid "Choose Location" +msgstr "" + +#: src/forms/PurchaseOrderForms.tsx:470 +msgid "Item Destination selected" +msgstr "" + +#: src/forms/PurchaseOrderForms.tsx:480 +msgid "Part category default location selected" +msgstr "" + +#: src/forms/PurchaseOrderForms.tsx:490 +msgid "Received stock location selected" +msgstr "" + +#: src/forms/PurchaseOrderForms.tsx:498 msgid "Default location selected" msgstr "" -#: src/forms/PurchaseOrderForms.tsx:507 +#: src/forms/PurchaseOrderForms.tsx:559 msgid "Set Location" msgstr "" -#: src/forms/PurchaseOrderForms.tsx:524 -msgid "Set Expiry Date" -msgstr "" - -#: src/forms/PurchaseOrderForms.tsx:532 -#: src/forms/StockForms.tsx:693 -msgid "Adjust Packaging" -msgstr "" - -#: src/forms/PurchaseOrderForms.tsx:540 -#: src/forms/StockForms.tsx:684 -#: src/hooks/UseStockAdjustActions.tsx:148 -msgid "Change Status" -msgstr "" - -#: src/forms/PurchaseOrderForms.tsx:546 -msgid "Add Note" -msgstr "" - #: src/forms/PurchaseOrderForms.tsx:566 #~ msgid "Serial numbers" #~ msgstr "Serial numbers" +#: src/forms/PurchaseOrderForms.tsx:576 +msgid "Set Expiry Date" +msgstr "" + #: src/forms/PurchaseOrderForms.tsx:582 #~ msgid "Store at line item destination" #~ msgstr "Store at line item destination" -#: src/forms/PurchaseOrderForms.tsx:610 -msgid "Store at default location" +#: src/forms/PurchaseOrderForms.tsx:584 +#: src/forms/StockForms.tsx:693 +msgid "Adjust Packaging" msgstr "" -#: src/forms/PurchaseOrderForms.tsx:625 -msgid "Store at line item destination " +#: src/forms/PurchaseOrderForms.tsx:592 +#: src/forms/StockForms.tsx:684 +#: src/hooks/UseStockAdjustActions.tsx:148 +msgid "Change Status" msgstr "" -#: src/forms/PurchaseOrderForms.tsx:637 -msgid "Store with already received stock" +#: src/forms/PurchaseOrderForms.tsx:598 +msgid "Add Note" msgstr "" #: src/forms/PurchaseOrderForms.tsx:658 #~ msgid "Receive line items" #~ msgstr "Receive line items" -#: src/forms/PurchaseOrderForms.tsx:661 -#: src/pages/build/BuildDetail.tsx:340 +#: src/forms/PurchaseOrderForms.tsx:662 +msgid "Store at default location" +msgstr "" + +#: src/forms/PurchaseOrderForms.tsx:677 +msgid "Store at line item destination " +msgstr "" + +#: src/forms/PurchaseOrderForms.tsx:689 +msgid "Store with already received stock" +msgstr "" + +#: src/forms/PurchaseOrderForms.tsx:713 +#: src/pages/build/BuildDetail.tsx:341 #: src/pages/stock/StockDetail.tsx:280 #: src/pages/stock/StockDetail.tsx:952 #: src/tables/Filter.tsx:83 -#: src/tables/build/BuildAllocatedStockTable.tsx:128 +#: src/tables/build/BuildAllocatedStockTable.tsx:125 #: src/tables/build/BuildOutputTable.tsx:112 -#: src/tables/part/PartTestResultTable.tsx:260 -#: src/tables/part/PartTestResultTable.tsx:281 +#: src/tables/part/PartTestResultTable.tsx:268 +#: src/tables/part/PartTestResultTable.tsx:289 #: src/tables/sales/SalesOrderAllocationTable.tsx:149 msgid "Batch Code" msgstr "" -#: src/forms/PurchaseOrderForms.tsx:662 +#: src/forms/PurchaseOrderForms.tsx:714 msgid "Enter batch code for received items" msgstr "" -#: src/forms/PurchaseOrderForms.tsx:675 +#: src/forms/PurchaseOrderForms.tsx:727 #: src/forms/StockForms.tsx:218 msgid "Serial Numbers" msgstr "" -#: src/forms/PurchaseOrderForms.tsx:676 +#: src/forms/PurchaseOrderForms.tsx:728 msgid "Enter serial numbers for received items" msgstr "" -#: src/forms/PurchaseOrderForms.tsx:690 +#: src/forms/PurchaseOrderForms.tsx:742 #: src/pages/stock/StockDetail.tsx:382 #: src/tables/stock/StockItemTable.tsx:294 msgid "Expiry Date" msgstr "" -#: src/forms/PurchaseOrderForms.tsx:691 +#: src/forms/PurchaseOrderForms.tsx:743 msgid "Enter an expiry date for received items" msgstr "" -#: src/forms/PurchaseOrderForms.tsx:703 +#: src/forms/PurchaseOrderForms.tsx:755 #: src/forms/StockForms.tsx:728 -#: src/pages/company/SupplierPartDetail.tsx:172 -#: src/pages/company/SupplierPartDetail.tsx:236 +#: src/pages/company/SupplierPartDetail.tsx:173 +#: src/pages/company/SupplierPartDetail.tsx:237 #: src/pages/stock/StockDetail.tsx:419 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:227 msgid "Packaging" msgstr "" -#: src/forms/PurchaseOrderForms.tsx:727 -#: src/pages/company/SupplierPartDetail.tsx:120 +#: src/forms/PurchaseOrderForms.tsx:779 +#: src/pages/company/SupplierPartDetail.tsx:121 #: src/tables/ColumnRenderers.tsx:332 msgid "Note" msgstr "" -#: src/forms/PurchaseOrderForms.tsx:799 -#: src/pages/company/SupplierPartDetail.tsx:138 +#: src/forms/PurchaseOrderForms.tsx:851 +#: src/pages/company/SupplierPartDetail.tsx:139 #: src/tables/purchasing/SupplierPriceBreakTable.tsx:49 msgid "SKU" msgstr "" -#: src/forms/PurchaseOrderForms.tsx:800 +#: src/forms/PurchaseOrderForms.tsx:852 #: src/tables/part/PartPurchaseOrdersTable.tsx:127 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:213 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:283 @@ -4721,11 +4750,11 @@ msgstr "" msgid "Received" msgstr "" -#: src/forms/PurchaseOrderForms.tsx:817 +#: src/forms/PurchaseOrderForms.tsx:869 msgid "Receive Line Items" msgstr "" -#: src/forms/PurchaseOrderForms.tsx:823 +#: src/forms/PurchaseOrderForms.tsx:875 msgid "Items received" msgstr "" @@ -4737,7 +4766,35 @@ msgstr "" msgid "Item received into stock" msgstr "" -#: src/forms/SalesOrderForms.tsx:401 +#: src/forms/SalesOrderForms.tsx:208 +#: src/forms/SalesOrderForms.tsx:210 +#: src/tables/sales/SalesOrderShipmentTable.tsx:215 +msgid "Check Shipment" +msgstr "" + +#: src/forms/SalesOrderForms.tsx:211 +msgid "Marking the shipment as checked indicates that you have verified that all items included in this shipment are correct" +msgstr "" + +#: src/forms/SalesOrderForms.tsx:221 +msgid "Shipment marked as checked" +msgstr "" + +#: src/forms/SalesOrderForms.tsx:236 +#: src/forms/SalesOrderForms.tsx:238 +#: src/tables/sales/SalesOrderShipmentTable.tsx:228 +msgid "Uncheck Shipment" +msgstr "" + +#: src/forms/SalesOrderForms.tsx:239 +msgid "Marking the shipment as unchecked indicates that the shipment requires further verification" +msgstr "" + +#: src/forms/SalesOrderForms.tsx:249 +msgid "Shipment marked as unchecked" +msgstr "" + +#: src/forms/SalesOrderForms.tsx:480 msgid "Leave blank to use the order address" msgstr "" @@ -4792,150 +4849,150 @@ msgstr "" msgid "Return" msgstr "" -#: src/forms/StockForms.tsx:963 +#: src/forms/StockForms.tsx:979 #: src/pages/Index/Scan.tsx:182 msgid "Count" msgstr "" -#: src/forms/StockForms.tsx:1246 +#: src/forms/StockForms.tsx:1262 #: src/hooks/UseStockAdjustActions.tsx:108 msgid "Add Stock" msgstr "" -#: src/forms/StockForms.tsx:1247 +#: src/forms/StockForms.tsx:1263 msgid "Stock added" msgstr "" -#: src/forms/StockForms.tsx:1250 +#: src/forms/StockForms.tsx:1266 msgid "Increase the quantity of the selected stock items by a given amount." msgstr "" -#: src/forms/StockForms.tsx:1261 +#: src/forms/StockForms.tsx:1277 #: src/hooks/UseStockAdjustActions.tsx:118 msgid "Remove Stock" msgstr "" -#: src/forms/StockForms.tsx:1262 +#: src/forms/StockForms.tsx:1278 msgid "Stock removed" msgstr "" -#: src/forms/StockForms.tsx:1265 +#: src/forms/StockForms.tsx:1281 msgid "Decrease the quantity of the selected stock items by a given amount." msgstr "" -#: src/forms/StockForms.tsx:1276 +#: src/forms/StockForms.tsx:1292 #: src/hooks/UseStockAdjustActions.tsx:128 msgid "Transfer Stock" msgstr "" -#: src/forms/StockForms.tsx:1277 +#: src/forms/StockForms.tsx:1293 msgid "Stock transferred" msgstr "" -#: src/forms/StockForms.tsx:1280 +#: src/forms/StockForms.tsx:1296 msgid "Transfer selected items to the specified location." msgstr "" -#: src/forms/StockForms.tsx:1291 +#: src/forms/StockForms.tsx:1307 #: src/hooks/UseStockAdjustActions.tsx:168 msgid "Return Stock" msgstr "" -#: src/forms/StockForms.tsx:1292 +#: src/forms/StockForms.tsx:1308 msgid "Stock returned" msgstr "" -#: src/forms/StockForms.tsx:1295 +#: src/forms/StockForms.tsx:1311 msgid "Return selected items into stock, to the specified location." msgstr "" -#: src/forms/StockForms.tsx:1306 +#: src/forms/StockForms.tsx:1322 #: src/hooks/UseStockAdjustActions.tsx:98 msgid "Count Stock" msgstr "" -#: src/forms/StockForms.tsx:1307 +#: src/forms/StockForms.tsx:1323 msgid "Stock counted" msgstr "" -#: src/forms/StockForms.tsx:1310 +#: src/forms/StockForms.tsx:1326 msgid "Count the selected stock items, and adjust the quantity accordingly." msgstr "" -#: src/forms/StockForms.tsx:1321 +#: src/forms/StockForms.tsx:1337 msgid "Change Stock Status" msgstr "" -#: src/forms/StockForms.tsx:1322 +#: src/forms/StockForms.tsx:1338 msgid "Stock status changed" msgstr "" -#: src/forms/StockForms.tsx:1325 +#: src/forms/StockForms.tsx:1341 msgid "Change the status of the selected stock items." msgstr "" -#: src/forms/StockForms.tsx:1336 +#: src/forms/StockForms.tsx:1352 #: src/hooks/UseStockAdjustActions.tsx:138 msgid "Merge Stock" msgstr "" -#: src/forms/StockForms.tsx:1337 +#: src/forms/StockForms.tsx:1353 msgid "Stock merged" msgstr "" -#: src/forms/StockForms.tsx:1339 +#: src/forms/StockForms.tsx:1355 msgid "Merge Stock Items" msgstr "" -#: src/forms/StockForms.tsx:1341 +#: src/forms/StockForms.tsx:1357 msgid "Merge operation cannot be reversed" msgstr "" -#: src/forms/StockForms.tsx:1342 +#: src/forms/StockForms.tsx:1358 msgid "Tracking information may be lost when merging items" msgstr "" -#: src/forms/StockForms.tsx:1343 +#: src/forms/StockForms.tsx:1359 msgid "Supplier information may be lost when merging items" msgstr "" -#: src/forms/StockForms.tsx:1361 +#: src/forms/StockForms.tsx:1377 msgid "Assign Stock to Customer" msgstr "" -#: src/forms/StockForms.tsx:1362 +#: src/forms/StockForms.tsx:1378 msgid "Stock assigned to customer" msgstr "" -#: src/forms/StockForms.tsx:1372 +#: src/forms/StockForms.tsx:1388 msgid "Delete Stock Items" msgstr "" -#: src/forms/StockForms.tsx:1373 +#: src/forms/StockForms.tsx:1389 msgid "Stock deleted" msgstr "" -#: src/forms/StockForms.tsx:1376 +#: src/forms/StockForms.tsx:1392 msgid "This operation will permanently delete the selected stock items." msgstr "" -#: src/forms/StockForms.tsx:1385 +#: src/forms/StockForms.tsx:1401 msgid "Parent stock location" msgstr "" -#: src/forms/StockForms.tsx:1512 +#: src/forms/StockForms.tsx:1528 msgid "Find Serial Number" msgstr "" -#: src/forms/StockForms.tsx:1523 +#: src/forms/StockForms.tsx:1539 msgid "No matching items" msgstr "" -#: src/forms/StockForms.tsx:1529 +#: src/forms/StockForms.tsx:1545 msgid "Multiple matching items" msgstr "" -#: src/forms/StockForms.tsx:1538 +#: src/forms/StockForms.tsx:1554 msgid "Invalid response from server" msgstr "" @@ -4953,7 +5010,6 @@ msgstr "" #: src/tables/FilterSelectDrawer.tsx:137 #: src/tables/FilterSelectDrawer.tsx:149 #: src/tables/part/PartTestResultTable.tsx:206 -#: src/tables/purchasing/ManufacturerPartParameterTable.tsx:42 #: src/tables/stock/StockItemTestResultTable.tsx:207 msgid "Value" msgstr "" @@ -5244,7 +5300,7 @@ msgid "Delete selected stock items" msgstr "" #: src/hooks/UseStockAdjustActions.tsx:205 -#: src/pages/part/PartDetail.tsx:1137 +#: src/pages/part/PartDetail.tsx:1158 msgid "Stock Actions" msgstr "" @@ -5932,6 +5988,9 @@ msgstr "" #: src/pages/Index/Settings/AccountSettings/MFASettings.tsx:310 #: src/pages/Index/Settings/AccountSettings/MFASettings.tsx:401 +#: src/tables/build/BuildAllocatedStockTable.tsx:181 +#: src/tables/build/BuildLineTable.tsx:668 +#: src/tables/sales/SalesOrderAllocationTable.tsx:220 msgid "Confirm Removal" msgstr "" @@ -6394,30 +6453,34 @@ msgid "Email Messages" msgstr "" #: src/pages/Index/Settings/AdminCenter/HomePanel.tsx:22 -msgid "Active Alerts" -msgstr "" +#~ msgid "Active Alerts" +#~ msgstr "Active Alerts" #: src/pages/Index/Settings/AdminCenter/HomePanel.tsx:27 -msgid "Inactive Alerts" +#~ msgid "Inactive Alerts" +#~ msgstr "Inactive Alerts" + +#: src/pages/Index/Settings/AdminCenter/HomePanel.tsx:36 +msgid "System Status" msgstr "" -#: src/pages/Index/Settings/AdminCenter/HomePanel.tsx:38 +#: src/pages/Index/Settings/AdminCenter/HomePanel.tsx:47 msgid "Admin Center Information" msgstr "" -#: src/pages/Index/Settings/AdminCenter/HomePanel.tsx:44 +#: src/pages/Index/Settings/AdminCenter/HomePanel.tsx:53 msgid "The home panel (and the whole Admin Center) is a new feature starting with the new UI and was previously (before 1.0) not available." msgstr "" -#: src/pages/Index/Settings/AdminCenter/HomePanel.tsx:51 +#: src/pages/Index/Settings/AdminCenter/HomePanel.tsx:60 msgid "The admin center provides a centralized location for all administration functionality and is meant to replace all interaction with the (django) backend admin interface." msgstr "" -#: src/pages/Index/Settings/AdminCenter/HomePanel.tsx:58 +#: src/pages/Index/Settings/AdminCenter/HomePanel.tsx:67 msgid "Please open feature requests (after checking the tracker) for any existing backend admin functionality you are missing in this UI. The backend admin interface should be used carefully and seldom." msgstr "" -#: src/pages/Index/Settings/AdminCenter/HomePanel.tsx:76 +#: src/pages/Index/Settings/AdminCenter/HomePanel.tsx:85 msgid "Quick Actions" msgstr "" @@ -6476,11 +6539,11 @@ msgstr "" #: src/pages/Index/Settings/AdminCenter/Index.tsx:195 #: src/pages/part/CategoryDetail.tsx:313 -msgid "Part Parameters" -msgstr "" +#~ msgid "Part Parameters" +#~ msgstr "Part Parameters" #: src/pages/Index/Settings/AdminCenter/Index.tsx:202 -#: src/pages/part/CategoryDetail.tsx:306 +#: src/pages/part/CategoryDetail.tsx:329 msgid "Category Parameters" msgstr "" @@ -6494,7 +6557,7 @@ msgstr "" #: src/pages/Index/Settings/AdminCenter/Index.tsx:235 #: src/pages/Index/Settings/AdminCenter/MachineManagementPanel.tsx:52 -#: src/tables/machine/MachineTypeTable.tsx:325 +#: src/tables/machine/MachineTypeTable.tsx:323 msgid "Machines" msgstr "" @@ -6507,8 +6570,8 @@ msgid "Data Management" msgstr "" #: src/pages/Index/Settings/AdminCenter/Index.tsx:270 -#: src/pages/Index/Settings/SystemSettings.tsx:175 -#: src/pages/Index/Settings/UserSettings.tsx:118 +#: src/pages/Index/Settings/SystemSettings.tsx:176 +#: src/pages/Index/Settings/UserSettings.tsx:119 msgid "Reporting" msgstr "" @@ -6709,11 +6772,11 @@ msgstr "" msgid "The settings below are specific to each available plugin" msgstr "" -#: src/pages/Index/Settings/SystemSettings.tsx:77 +#: src/pages/Index/Settings/SystemSettings.tsx:78 msgid "Authentication" msgstr "" -#: src/pages/Index/Settings/SystemSettings.tsx:103 +#: src/pages/Index/Settings/SystemSettings.tsx:104 msgid "Barcodes" msgstr "" @@ -6725,12 +6788,12 @@ msgstr "" #~ msgid "This panel is a placeholder." #~ msgstr "This panel is a placeholder." -#: src/pages/Index/Settings/SystemSettings.tsx:127 -#: src/pages/Index/Settings/UserSettings.tsx:112 +#: src/pages/Index/Settings/SystemSettings.tsx:128 +#: src/pages/Index/Settings/UserSettings.tsx:113 msgid "The settings below are specific to each available notification method" msgstr "" -#: src/pages/Index/Settings/SystemSettings.tsx:133 +#: src/pages/Index/Settings/SystemSettings.tsx:134 msgid "Pricing" msgstr "" @@ -6738,7 +6801,7 @@ msgstr "" #~ msgid "Exchange Rates" #~ msgstr "Exchange Rates" -#: src/pages/Index/Settings/SystemSettings.tsx:169 +#: src/pages/Index/Settings/SystemSettings.tsx:170 msgid "Labels" msgstr "" @@ -6790,15 +6853,15 @@ msgstr "" #~ msgid "Delete notifications" #~ msgstr "Delete notifications" -#: src/pages/build/BuildDetail.tsx:69 +#: src/pages/build/BuildDetail.tsx:70 msgid "No Required Items" msgstr "" -#: src/pages/build/BuildDetail.tsx:71 +#: src/pages/build/BuildDetail.tsx:72 msgid "This build order does not have any required items." msgstr "" -#: src/pages/build/BuildDetail.tsx:72 +#: src/pages/build/BuildDetail.tsx:73 msgid "The assembled part may not have a Bill of Materials (BOM) defined, or the BOM is empty." msgstr "" @@ -6826,7 +6889,7 @@ msgstr "" #~ msgid "Build Order updated" #~ msgstr "Build Order updated" -#: src/pages/build/BuildDetail.tsx:215 +#: src/pages/build/BuildDetail.tsx:216 #: src/pages/part/PartDetail.tsx:480 #: src/pages/stock/StockDetail.tsx:161 #: src/tables/bom/UsedInTable.tsx:44 @@ -6843,10 +6906,10 @@ msgstr "" #~ msgid "Duplicate build order" #~ msgstr "Duplicate build order" -#: src/pages/build/BuildDetail.tsx:228 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:174 -#: src/pages/sales/ReturnOrderDetail.tsx:141 -#: src/pages/sales/SalesOrderDetail.tsx:131 +#: src/pages/build/BuildDetail.tsx:229 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:175 +#: src/pages/sales/ReturnOrderDetail.tsx:142 +#: src/pages/sales/SalesOrderDetail.tsx:132 #: src/pages/stock/StockDetail.tsx:176 msgid "Custom Status" msgstr "" @@ -6855,9 +6918,9 @@ msgstr "" #~ msgid "Delete build order" #~ msgstr "Delete build order" -#: src/pages/build/BuildDetail.tsx:237 -#: src/pages/build/BuildDetail.tsx:723 -#: src/pages/build/BuildIndex.tsx:28 +#: src/pages/build/BuildDetail.tsx:238 +#: src/pages/build/BuildDetail.tsx:728 +#: src/pages/build/BuildIndex.tsx:34 #: src/pages/stock/LocationDetail.tsx:140 #: src/tables/build/BuildOrderTable.tsx:123 #: src/tables/build/BuildOrderTable.tsx:183 @@ -6865,57 +6928,57 @@ msgstr "" msgid "External" msgstr "" -#: src/pages/build/BuildDetail.tsx:244 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:141 -#: src/pages/sales/ReturnOrderDetail.tsx:108 -#: src/pages/sales/SalesOrderDetail.tsx:98 +#: src/pages/build/BuildDetail.tsx:245 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:142 +#: src/pages/sales/ReturnOrderDetail.tsx:109 +#: src/pages/sales/SalesOrderDetail.tsx:99 #: src/tables/ColumnRenderers.tsx:321 -#: src/tables/build/BuildAllocatedStockTable.tsx:115 -#: src/tables/build/BuildLineTable.tsx:352 +#: src/tables/build/BuildAllocatedStockTable.tsx:112 +#: src/tables/build/BuildLineTable.tsx:353 msgid "Reference" msgstr "" -#: src/pages/build/BuildDetail.tsx:258 +#: src/pages/build/BuildDetail.tsx:259 msgid "Parent Build" msgstr "" -#: src/pages/build/BuildDetail.tsx:269 +#: src/pages/build/BuildDetail.tsx:270 msgid "Build Quantity" msgstr "" -#: src/pages/build/BuildDetail.tsx:275 +#: src/pages/build/BuildDetail.tsx:276 #: src/pages/part/PartDetail.tsx:598 #: src/tables/bom/BomTable.tsx:365 #: src/tables/bom/BomTable.tsx:407 msgid "Can Build" msgstr "" -#: src/pages/build/BuildDetail.tsx:284 -#: src/pages/build/BuildDetail.tsx:474 +#: src/pages/build/BuildDetail.tsx:285 +#: src/pages/build/BuildDetail.tsx:475 msgid "Completed Outputs" msgstr "" -#: src/pages/build/BuildDetail.tsx:301 +#: src/pages/build/BuildDetail.tsx:302 #: src/tables/Filter.tsx:381 #: src/tables/build/BuildOrderTable.tsx:143 msgid "Issued By" msgstr "" -#: src/pages/build/BuildDetail.tsx:309 +#: src/pages/build/BuildDetail.tsx:310 #: src/pages/part/PartDetail.tsx:691 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:261 -#: src/pages/sales/ReturnOrderDetail.tsx:239 -#: src/pages/sales/SalesOrderDetail.tsx:232 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:262 +#: src/pages/sales/ReturnOrderDetail.tsx:240 +#: src/pages/sales/SalesOrderDetail.tsx:233 #: src/tables/ColumnRenderers.tsx:464 #: src/tables/Filter.tsx:319 msgid "Responsible" msgstr "" -#: src/pages/build/BuildDetail.tsx:327 +#: src/pages/build/BuildDetail.tsx:328 msgid "Any location" msgstr "" -#: src/pages/build/BuildDetail.tsx:334 +#: src/pages/build/BuildDetail.tsx:335 msgid "Destination Location" msgstr "" @@ -6924,24 +6987,24 @@ msgstr "" #~ msgid "Test Statistics" #~ msgstr "Test Statistics" -#: src/pages/build/BuildDetail.tsx:350 +#: src/pages/build/BuildDetail.tsx:351 #: src/tables/settings/ApiTokenTable.tsx:97 #: src/tables/settings/PendingTasksTable.tsx:41 msgid "Created" msgstr "" -#: src/pages/build/BuildDetail.tsx:358 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:286 -#: src/pages/sales/ReturnOrderDetail.tsx:265 -#: src/pages/sales/SalesOrderDetail.tsx:257 +#: src/pages/build/BuildDetail.tsx:359 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:287 +#: src/pages/sales/ReturnOrderDetail.tsx:266 +#: src/pages/sales/SalesOrderDetail.tsx:258 #: src/tables/ColumnRenderers.tsx:486 msgid "Start Date" msgstr "" -#: src/pages/build/BuildDetail.tsx:366 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:294 -#: src/pages/sales/ReturnOrderDetail.tsx:273 -#: src/pages/sales/SalesOrderDetail.tsx:265 +#: src/pages/build/BuildDetail.tsx:367 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:295 +#: src/pages/sales/ReturnOrderDetail.tsx:274 +#: src/pages/sales/SalesOrderDetail.tsx:266 #: src/tables/ColumnRenderers.tsx:494 #: src/tables/part/PartPurchaseOrdersTable.tsx:101 #: src/tables/sales/ReturnOrderLineItemTable.tsx:154 @@ -6954,185 +7017,185 @@ msgstr "" #~ msgstr "Reporting Actions" #: src/pages/build/BuildDetail.tsx:374 +#~ msgid "Print build report" +#~ msgstr "Print build report" + +#: src/pages/build/BuildDetail.tsx:375 #: src/tables/build/BuildOrderTable.tsx:93 #: src/tables/sales/SalesOrderLineItemTable.tsx:347 msgid "Completed" msgstr "" -#: src/pages/build/BuildDetail.tsx:374 -#~ msgid "Print build report" -#~ msgstr "Print build report" - -#: src/pages/build/BuildDetail.tsx:410 +#: src/pages/build/BuildDetail.tsx:411 msgid "Build Details" msgstr "" -#: src/pages/build/BuildDetail.tsx:416 +#: src/pages/build/BuildDetail.tsx:417 msgid "Required Parts" msgstr "" -#: src/pages/build/BuildDetail.tsx:428 -#: src/pages/sales/SalesOrderDetail.tsx:407 -#: src/pages/sales/SalesOrderShipmentDetail.tsx:261 +#: src/pages/build/BuildDetail.tsx:429 +#: src/pages/sales/SalesOrderDetail.tsx:408 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:259 #: src/tables/part/PartSalesAllocationsTable.tsx:73 msgid "Allocated Stock" msgstr "" -#: src/pages/build/BuildDetail.tsx:444 +#: src/pages/build/BuildDetail.tsx:445 msgid "Consumed Stock" msgstr "" -#: src/pages/build/BuildDetail.tsx:461 +#: src/pages/build/BuildDetail.tsx:462 msgid "Incomplete Outputs" msgstr "" -#: src/pages/build/BuildDetail.tsx:489 +#: src/pages/build/BuildDetail.tsx:490 msgid "External Orders" msgstr "" -#: src/pages/build/BuildDetail.tsx:503 +#: src/pages/build/BuildDetail.tsx:504 msgid "Child Build Orders" msgstr "" -#: src/pages/build/BuildDetail.tsx:513 -#: src/pages/part/PartDetail.tsx:937 +#: src/pages/build/BuildDetail.tsx:514 +#: src/pages/part/PartDetail.tsx:926 #: src/pages/stock/StockDetail.tsx:587 #: src/tables/build/BuildOutputTable.tsx:654 #: src/tables/stock/StockItemTestResultTable.tsx:173 msgid "Test Results" msgstr "" -#: src/pages/build/BuildDetail.tsx:550 +#: src/pages/build/BuildDetail.tsx:555 msgid "Edit Build Order" msgstr "" -#: src/pages/build/BuildDetail.tsx:572 +#: src/pages/build/BuildDetail.tsx:577 #: src/tables/build/BuildOrderTable.tsx:207 #: src/tables/build/BuildOrderTable.tsx:223 msgid "Add Build Order" msgstr "" -#: src/pages/build/BuildDetail.tsx:582 +#: src/pages/build/BuildDetail.tsx:587 msgid "Cancel Build Order" msgstr "" -#: src/pages/build/BuildDetail.tsx:584 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:416 -#: src/pages/sales/ReturnOrderDetail.tsx:427 -#: src/pages/sales/SalesOrderDetail.tsx:454 +#: src/pages/build/BuildDetail.tsx:589 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:421 +#: src/pages/sales/ReturnOrderDetail.tsx:432 +#: src/pages/sales/SalesOrderDetail.tsx:459 msgid "Order cancelled" msgstr "" -#: src/pages/build/BuildDetail.tsx:585 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:415 -#: src/pages/sales/ReturnOrderDetail.tsx:426 -#: src/pages/sales/SalesOrderDetail.tsx:453 +#: src/pages/build/BuildDetail.tsx:590 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:420 +#: src/pages/sales/ReturnOrderDetail.tsx:431 +#: src/pages/sales/SalesOrderDetail.tsx:458 msgid "Cancel this order" msgstr "" -#: src/pages/build/BuildDetail.tsx:594 +#: src/pages/build/BuildDetail.tsx:599 msgid "Hold Build Order" msgstr "" -#: src/pages/build/BuildDetail.tsx:596 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:423 -#: src/pages/sales/ReturnOrderDetail.tsx:434 -#: src/pages/sales/SalesOrderDetail.tsx:461 +#: src/pages/build/BuildDetail.tsx:601 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:428 +#: src/pages/sales/ReturnOrderDetail.tsx:439 +#: src/pages/sales/SalesOrderDetail.tsx:466 msgid "Place this order on hold" msgstr "" -#: src/pages/build/BuildDetail.tsx:597 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:424 -#: src/pages/sales/ReturnOrderDetail.tsx:435 -#: src/pages/sales/SalesOrderDetail.tsx:462 +#: src/pages/build/BuildDetail.tsx:602 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:429 +#: src/pages/sales/ReturnOrderDetail.tsx:440 +#: src/pages/sales/SalesOrderDetail.tsx:467 msgid "Order placed on hold" msgstr "" -#: src/pages/build/BuildDetail.tsx:602 +#: src/pages/build/BuildDetail.tsx:607 msgid "Issue Build Order" msgstr "" -#: src/pages/build/BuildDetail.tsx:604 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:407 -#: src/pages/sales/ReturnOrderDetail.tsx:418 -#: src/pages/sales/SalesOrderDetail.tsx:445 +#: src/pages/build/BuildDetail.tsx:609 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:412 +#: src/pages/sales/ReturnOrderDetail.tsx:423 +#: src/pages/sales/SalesOrderDetail.tsx:450 msgid "Issue this order" msgstr "" -#: src/pages/build/BuildDetail.tsx:605 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:408 -#: src/pages/sales/ReturnOrderDetail.tsx:419 -#: src/pages/sales/SalesOrderDetail.tsx:446 +#: src/pages/build/BuildDetail.tsx:610 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:413 +#: src/pages/sales/ReturnOrderDetail.tsx:424 +#: src/pages/sales/SalesOrderDetail.tsx:451 msgid "Order issued" msgstr "" -#: src/pages/build/BuildDetail.tsx:624 +#: src/pages/build/BuildDetail.tsx:629 msgid "Complete Build Order" msgstr "" -#: src/pages/build/BuildDetail.tsx:630 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:436 -#: src/pages/sales/ReturnOrderDetail.tsx:442 -#: src/pages/sales/SalesOrderDetail.tsx:480 +#: src/pages/build/BuildDetail.tsx:635 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:441 +#: src/pages/sales/ReturnOrderDetail.tsx:447 +#: src/pages/sales/SalesOrderDetail.tsx:485 msgid "Mark this order as complete" msgstr "" -#: src/pages/build/BuildDetail.tsx:633 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:430 -#: src/pages/sales/ReturnOrderDetail.tsx:443 -#: src/pages/sales/SalesOrderDetail.tsx:481 +#: src/pages/build/BuildDetail.tsx:638 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:435 +#: src/pages/sales/ReturnOrderDetail.tsx:448 +#: src/pages/sales/SalesOrderDetail.tsx:486 msgid "Order completed" msgstr "" -#: src/pages/build/BuildDetail.tsx:660 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:459 -#: src/pages/sales/ReturnOrderDetail.tsx:470 -#: src/pages/sales/SalesOrderDetail.tsx:516 +#: src/pages/build/BuildDetail.tsx:665 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:464 +#: src/pages/sales/ReturnOrderDetail.tsx:475 +#: src/pages/sales/SalesOrderDetail.tsx:521 msgid "Issue Order" msgstr "" -#: src/pages/build/BuildDetail.tsx:667 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:466 -#: src/pages/sales/ReturnOrderDetail.tsx:477 -#: src/pages/sales/SalesOrderDetail.tsx:530 +#: src/pages/build/BuildDetail.tsx:672 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:471 +#: src/pages/sales/ReturnOrderDetail.tsx:482 +#: src/pages/sales/SalesOrderDetail.tsx:535 msgid "Complete Order" msgstr "" -#: src/pages/build/BuildDetail.tsx:686 +#: src/pages/build/BuildDetail.tsx:691 msgid "Build Order Actions" msgstr "" -#: src/pages/build/BuildDetail.tsx:691 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:489 -#: src/pages/sales/ReturnOrderDetail.tsx:500 -#: src/pages/sales/SalesOrderDetail.tsx:554 +#: src/pages/build/BuildDetail.tsx:696 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:494 +#: src/pages/sales/ReturnOrderDetail.tsx:505 +#: src/pages/sales/SalesOrderDetail.tsx:559 msgid "Edit order" msgstr "" -#: src/pages/build/BuildDetail.tsx:695 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:497 -#: src/pages/sales/ReturnOrderDetail.tsx:506 -#: src/pages/sales/SalesOrderDetail.tsx:559 -msgid "Duplicate order" -msgstr "" - -#: src/pages/build/BuildDetail.tsx:699 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:500 +#: src/pages/build/BuildDetail.tsx:700 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:502 #: src/pages/sales/ReturnOrderDetail.tsx:511 -#: src/pages/sales/SalesOrderDetail.tsx:562 -msgid "Hold order" +#: src/pages/sales/SalesOrderDetail.tsx:564 +msgid "Duplicate order" msgstr "" #: src/pages/build/BuildDetail.tsx:704 #: src/pages/purchasing/PurchaseOrderDetail.tsx:505 #: src/pages/sales/ReturnOrderDetail.tsx:516 #: src/pages/sales/SalesOrderDetail.tsx:567 +msgid "Hold order" +msgstr "" + +#: src/pages/build/BuildDetail.tsx:709 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:510 +#: src/pages/sales/ReturnOrderDetail.tsx:521 +#: src/pages/sales/SalesOrderDetail.tsx:572 msgid "Cancel order" msgstr "" -#: src/pages/build/BuildDetail.tsx:742 +#: src/pages/build/BuildDetail.tsx:747 #: src/pages/stock/StockDetail.tsx:344 -#: src/tables/build/BuildAllocatedStockTable.tsx:85 +#: src/tables/build/BuildAllocatedStockTable.tsx:82 #: src/tables/part/PartBuildAllocationsTable.tsx:45 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:157 #: src/tables/stock/StockTrackingTable.tsx:109 @@ -7143,7 +7206,7 @@ msgstr "" #~ msgid "Build order created" #~ msgstr "Build order created" -#: src/pages/build/BuildIndex.tsx:29 +#: src/pages/build/BuildIndex.tsx:35 #: src/tables/build/BuildOrderTable.tsx:184 msgid "Show external build orders" msgstr "" @@ -7152,61 +7215,82 @@ msgstr "" #~ msgid "New Build Order" #~ msgstr "New Build Order" -#: src/pages/build/BuildIndex.tsx:83 -#: src/pages/purchasing/PurchasingIndex.tsx:69 -#: src/pages/sales/SalesIndex.tsx:92 -#: src/pages/sales/SalesIndex.tsx:125 +#: src/pages/build/BuildIndex.tsx:74 +#: src/pages/part/CategoryDetail.tsx:292 +#: src/pages/purchasing/PurchasingIndex.tsx:74 +#: src/pages/purchasing/PurchasingIndex.tsx:107 +#: src/pages/purchasing/PurchasingIndex.tsx:135 +#: src/pages/purchasing/PurchasingIndex.tsx:156 +#: src/pages/purchasing/PurchasingIndex.tsx:184 +#: src/pages/sales/SalesIndex.tsx:61 +#: src/pages/sales/SalesIndex.tsx:107 +#: src/pages/sales/SalesIndex.tsx:140 msgid "Table View" msgstr "" -#: src/pages/build/BuildIndex.tsx:86 -#: src/pages/purchasing/PurchasingIndex.tsx:72 -#: src/pages/sales/SalesIndex.tsx:95 -#: src/pages/sales/SalesIndex.tsx:128 +#: src/pages/build/BuildIndex.tsx:80 +#: src/pages/purchasing/PurchasingIndex.tsx:80 +#: src/pages/sales/SalesIndex.tsx:67 +#: src/pages/sales/SalesIndex.tsx:113 msgid "Calendar View" msgstr "" -#: src/pages/company/CompanyDetail.tsx:99 +#: src/pages/build/BuildIndex.tsx:86 +#: src/pages/part/CategoryDetail.tsx:306 +#: src/pages/purchasing/PurchasingIndex.tsx:92 +#: src/pages/purchasing/PurchasingIndex.tsx:118 +#: src/pages/purchasing/PurchasingIndex.tsx:141 +#: src/pages/purchasing/PurchasingIndex.tsx:167 +#: src/pages/purchasing/PurchasingIndex.tsx:190 +#: src/pages/sales/SalesIndex.tsx:79 +#: src/pages/sales/SalesIndex.tsx:125 +#: src/pages/sales/SalesIndex.tsx:151 +msgid "Parametric View" +msgstr "" + +#: src/pages/company/CompanyDetail.tsx:100 msgid "Website" msgstr "" -#: src/pages/company/CompanyDetail.tsx:107 +#: src/pages/company/CompanyDetail.tsx:108 msgid "Phone Number" msgstr "" -#: src/pages/company/CompanyDetail.tsx:114 +#: src/pages/company/CompanyDetail.tsx:115 msgid "Email Address" msgstr "" -#: src/pages/company/CompanyDetail.tsx:121 +#: src/pages/company/CompanyDetail.tsx:122 msgid "Tax ID" msgstr "" -#: src/pages/company/CompanyDetail.tsx:131 +#: src/pages/company/CompanyDetail.tsx:132 msgid "Default Currency" msgstr "" -#: src/pages/company/CompanyDetail.tsx:142 +#: src/pages/company/CompanyDetail.tsx:143 #: src/pages/company/ManufacturerDetail.tsx:8 -#: src/pages/company/ManufacturerPartDetail.tsx:104 -#: src/pages/company/ManufacturerPartDetail.tsx:280 -#: src/pages/company/SupplierPartDetail.tsx:152 +#: src/pages/company/ManufacturerPartDetail.tsx:103 +#: src/pages/company/ManufacturerPartDetail.tsx:271 +#: src/pages/company/SupplierPartDetail.tsx:153 #: src/tables/Filter.tsx:347 #: src/tables/company/CompanyTable.tsx:101 #: src/tables/purchasing/SupplierPartTable.tsx:89 msgid "Manufacturer" msgstr "" -#: src/pages/company/CompanyDetail.tsx:148 +#: src/pages/company/CompanyDetail.tsx:149 #: src/pages/company/CustomerDetail.tsx:8 #: src/pages/part/pricing/SaleHistoryPanel.tsx:31 -#: src/pages/sales/ReturnOrderDetail.tsx:123 -#: src/pages/sales/SalesOrderDetail.tsx:113 -#: src/pages/sales/SalesOrderShipmentDetail.tsx:113 +#: src/pages/sales/ReturnOrderDetail.tsx:124 +#: src/pages/sales/SalesOrderDetail.tsx:114 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:111 #: src/pages/stock/StockDetail.tsx:370 #: src/tables/company/CompanyTable.tsx:106 +#: src/tables/sales/ReturnOrderParametricTable.tsx:32 #: src/tables/sales/ReturnOrderTable.tsx:108 -#: src/tables/sales/SalesOrderShipmentTable.tsx:111 +#: src/tables/sales/SalesOrderParametricTable.tsx:32 +#: src/tables/sales/SalesOrderShipmentTable.tsx:132 #: src/tables/sales/SalesOrderTable.tsx:133 #: src/tables/stock/StockTrackingTable.tsx:153 msgid "Customer" @@ -7216,11 +7300,11 @@ msgstr "" #~ msgid "Edit company" #~ msgstr "Edit company" -#: src/pages/company/CompanyDetail.tsx:181 +#: src/pages/company/CompanyDetail.tsx:182 msgid "Company Details" msgstr "" -#: src/pages/company/CompanyDetail.tsx:187 +#: src/pages/company/CompanyDetail.tsx:188 msgid "Supplied Parts" msgstr "" @@ -7228,79 +7312,79 @@ msgstr "" #~ msgid "Delete company" #~ msgstr "Delete company" -#: src/pages/company/CompanyDetail.tsx:194 +#: src/pages/company/CompanyDetail.tsx:195 msgid "Manufactured Parts" msgstr "" -#: src/pages/company/CompanyDetail.tsx:241 +#: src/pages/company/CompanyDetail.tsx:242 msgid "Assigned Stock" msgstr "" -#: src/pages/company/CompanyDetail.tsx:282 +#: src/pages/company/CompanyDetail.tsx:287 #: src/tables/company/CompanyTable.tsx:82 msgid "Edit Company" msgstr "" -#: src/pages/company/CompanyDetail.tsx:290 +#: src/pages/company/CompanyDetail.tsx:295 msgid "Delete Company" msgstr "" -#: src/pages/company/CompanyDetail.tsx:305 +#: src/pages/company/CompanyDetail.tsx:310 msgid "Company Actions" msgstr "" -#: src/pages/company/ManufacturerPartDetail.tsx:78 -#: src/pages/company/SupplierPartDetail.tsx:89 +#: src/pages/company/ManufacturerPartDetail.tsx:77 +#: src/pages/company/SupplierPartDetail.tsx:90 msgid "Internal Part" msgstr "" -#: src/pages/company/ManufacturerPartDetail.tsx:112 +#: src/pages/company/ManufacturerPartDetail.tsx:111 msgid "Manufacturer Part Number" msgstr "" -#: src/pages/company/ManufacturerPartDetail.tsx:129 -#: src/pages/company/SupplierPartDetail.tsx:113 +#: src/pages/company/ManufacturerPartDetail.tsx:128 +#: src/pages/company/SupplierPartDetail.tsx:114 msgid "External Link" msgstr "" -#: src/pages/company/ManufacturerPartDetail.tsx:148 -#: src/pages/company/SupplierPartDetail.tsx:232 +#: src/pages/company/ManufacturerPartDetail.tsx:147 +#: src/pages/company/SupplierPartDetail.tsx:233 #: src/pages/part/PartDetail.tsx:787 msgid "Part Details" msgstr "" -#: src/pages/company/ManufacturerPartDetail.tsx:151 +#: src/pages/company/ManufacturerPartDetail.tsx:150 msgid "Manufacturer Details" msgstr "" -#: src/pages/company/ManufacturerPartDetail.tsx:160 +#: src/pages/company/ManufacturerPartDetail.tsx:159 msgid "Manufacturer Part Details" msgstr "" -#: src/pages/company/ManufacturerPartDetail.tsx:178 -#: src/pages/company/SupplierPartDetail.tsx:252 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:381 +#: src/pages/company/ManufacturerPartDetail.tsx:165 +#: src/pages/company/SupplierPartDetail.tsx:253 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:382 msgid "Received Stock" msgstr "" -#: src/pages/company/ManufacturerPartDetail.tsx:220 +#: src/pages/company/ManufacturerPartDetail.tsx:211 #: src/tables/purchasing/ManufacturerPartTable.tsx:108 msgid "Edit Manufacturer Part" msgstr "" -#: src/pages/company/ManufacturerPartDetail.tsx:227 +#: src/pages/company/ManufacturerPartDetail.tsx:218 #: src/tables/purchasing/ManufacturerPartTable.tsx:96 #: src/tables/purchasing/ManufacturerPartTable.tsx:115 #: src/tables/purchasing/ManufacturerPartTable.tsx:156 msgid "Add Manufacturer Part" msgstr "" -#: src/pages/company/ManufacturerPartDetail.tsx:239 +#: src/pages/company/ManufacturerPartDetail.tsx:230 #: src/tables/purchasing/ManufacturerPartTable.tsx:126 msgid "Delete Manufacturer Part" msgstr "" -#: src/pages/company/ManufacturerPartDetail.tsx:254 +#: src/pages/company/ManufacturerPartDetail.tsx:245 msgid "Manufacturer Part Actions" msgstr "" @@ -7308,12 +7392,12 @@ msgstr "" #~ msgid "ManufacturerPart" #~ msgstr "ManufacturerPart" -#: src/pages/company/SupplierPartDetail.tsx:104 +#: src/pages/company/SupplierPartDetail.tsx:105 #: src/tables/part/RelatedPartTable.tsx:82 msgid "Part Description" msgstr "" -#: src/pages/company/SupplierPartDetail.tsx:179 +#: src/pages/company/SupplierPartDetail.tsx:180 #: src/tables/part/PartPurchaseOrdersTable.tsx:73 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:191 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:233 @@ -7321,50 +7405,50 @@ msgstr "" msgid "Pack Quantity" msgstr "" -#: src/pages/company/SupplierPartDetail.tsx:204 +#: src/pages/company/SupplierPartDetail.tsx:205 msgid "Supplier Availability" msgstr "" -#: src/pages/company/SupplierPartDetail.tsx:212 +#: src/pages/company/SupplierPartDetail.tsx:213 msgid "Availability Updated" msgstr "" -#: src/pages/company/SupplierPartDetail.tsx:237 +#: src/pages/company/SupplierPartDetail.tsx:238 msgid "Availability" msgstr "" -#: src/pages/company/SupplierPartDetail.tsx:246 +#: src/pages/company/SupplierPartDetail.tsx:247 msgid "Supplier Part Details" msgstr "" -#: src/pages/company/SupplierPartDetail.tsx:279 +#: src/pages/company/SupplierPartDetail.tsx:280 #: src/pages/part/PartPricingPanel.tsx:113 #: src/pages/part/pricing/PricingOverviewPanel.tsx:239 msgid "Supplier Pricing" msgstr "" -#: src/pages/company/SupplierPartDetail.tsx:308 +#: src/pages/company/SupplierPartDetail.tsx:313 msgid "Supplier Part Actions" msgstr "" -#: src/pages/company/SupplierPartDetail.tsx:332 +#: src/pages/company/SupplierPartDetail.tsx:337 #: src/tables/purchasing/SupplierPartTable.tsx:244 msgid "Edit Supplier Part" msgstr "" -#: src/pages/company/SupplierPartDetail.tsx:340 +#: src/pages/company/SupplierPartDetail.tsx:345 #: src/tables/purchasing/SupplierPartTable.tsx:264 msgid "Delete Supplier Part" msgstr "" -#: src/pages/company/SupplierPartDetail.tsx:348 +#: src/pages/company/SupplierPartDetail.tsx:353 #: src/tables/purchasing/SupplierPartTable.tsx:172 #: src/tables/purchasing/SupplierPartTable.tsx:251 msgid "Add Supplier Part" msgstr "" -#: src/pages/company/SupplierPartDetail.tsx:388 -#: src/pages/part/PartDetail.tsx:1003 +#: src/pages/company/SupplierPartDetail.tsx:393 +#: src/pages/part/PartDetail.tsx:1018 msgid "No Stock" msgstr "" @@ -7411,83 +7495,83 @@ msgstr "" msgid "Basic user" msgstr "" -#: src/pages/part/CategoryDetail.tsx:100 +#: src/pages/part/CategoryDetail.tsx:103 #: src/pages/stock/LocationDetail.tsx:94 #: src/tables/settings/ErrorTable.tsx:63 #: src/tables/settings/ErrorTable.tsx:108 msgid "Path" msgstr "" -#: src/pages/part/CategoryDetail.tsx:116 +#: src/pages/part/CategoryDetail.tsx:119 msgid "Parent Category" msgstr "" -#: src/pages/part/CategoryDetail.tsx:139 -#: src/pages/part/CategoryDetail.tsx:271 +#: src/pages/part/CategoryDetail.tsx:142 +#: src/pages/part/CategoryDetail.tsx:279 msgid "Subcategories" msgstr "" -#: src/pages/part/CategoryDetail.tsx:146 +#: src/pages/part/CategoryDetail.tsx:149 #: src/pages/stock/LocationDetail.tsx:134 #: src/tables/part/PartCategoryTable.tsx:89 #: src/tables/stock/StockLocationTable.tsx:43 msgid "Structural" msgstr "" -#: src/pages/part/CategoryDetail.tsx:152 +#: src/pages/part/CategoryDetail.tsx:155 msgid "Parent default location" msgstr "" -#: src/pages/part/CategoryDetail.tsx:159 +#: src/pages/part/CategoryDetail.tsx:162 msgid "Default location" msgstr "" -#: src/pages/part/CategoryDetail.tsx:170 +#: src/pages/part/CategoryDetail.tsx:173 msgid "Top level part category" msgstr "" -#: src/pages/part/CategoryDetail.tsx:180 -#: src/pages/part/CategoryDetail.tsx:248 +#: src/pages/part/CategoryDetail.tsx:183 +#: src/pages/part/CategoryDetail.tsx:251 #: src/tables/part/PartCategoryTable.tsx:122 msgid "Edit Part Category" msgstr "" -#: src/pages/part/CategoryDetail.tsx:189 +#: src/pages/part/CategoryDetail.tsx:192 msgid "Move items to parent category" msgstr "" -#: src/pages/part/CategoryDetail.tsx:193 +#: src/pages/part/CategoryDetail.tsx:196 #: src/pages/stock/LocationDetail.tsx:226 msgid "Delete items" msgstr "" -#: src/pages/part/CategoryDetail.tsx:201 -#: src/pages/part/CategoryDetail.tsx:253 +#: src/pages/part/CategoryDetail.tsx:204 +#: src/pages/part/CategoryDetail.tsx:256 msgid "Delete Part Category" msgstr "" -#: src/pages/part/CategoryDetail.tsx:204 +#: src/pages/part/CategoryDetail.tsx:207 msgid "Parts Action" msgstr "" -#: src/pages/part/CategoryDetail.tsx:205 +#: src/pages/part/CategoryDetail.tsx:208 msgid "Action for parts in this category" msgstr "" -#: src/pages/part/CategoryDetail.tsx:211 +#: src/pages/part/CategoryDetail.tsx:214 msgid "Child Categories Action" msgstr "" -#: src/pages/part/CategoryDetail.tsx:212 +#: src/pages/part/CategoryDetail.tsx:215 msgid "Action for child categories in this category" msgstr "" -#: src/pages/part/CategoryDetail.tsx:244 +#: src/pages/part/CategoryDetail.tsx:247 #: src/tables/part/PartCategoryTable.tsx:143 msgid "Category Actions" msgstr "" -#: src/pages/part/CategoryDetail.tsx:265 +#: src/pages/part/CategoryDetail.tsx:273 msgid "Category Details" msgstr "" @@ -7585,7 +7669,6 @@ msgid "Category Default Location" msgstr "" #: src/pages/part/PartDetail.tsx:507 -#: src/tables/purchasing/ManufacturerPartParameterTable.tsx:48 msgid "Units" msgstr "" @@ -7600,7 +7683,7 @@ msgstr "" #: src/pages/part/PartDetail.tsx:542 #: src/tables/bom/BomTable.tsx:439 -#: src/tables/build/BuildLineTable.tsx:305 +#: src/tables/build/BuildLineTable.tsx:306 #: src/tables/part/PartTable.tsx:319 #: src/tables/sales/SalesOrderLineItemTable.tsx:138 msgid "Available Stock" @@ -7608,7 +7691,7 @@ msgstr "" #: src/pages/part/PartDetail.tsx:548 #: src/tables/bom/BomTable.tsx:341 -#: src/tables/build/BuildLineTable.tsx:267 +#: src/tables/build/BuildLineTable.tsx:268 #: src/tables/sales/SalesOrderLineItemTable.tsx:180 msgid "On order" msgstr "" @@ -7634,7 +7717,7 @@ msgstr "" #~ msgstr "Scheduling" #: src/pages/part/PartDetail.tsx:620 -#: src/tables/part/ParametricPartTable.tsx:359 +#: src/tables/part/ParametricPartTable.tsx:24 #: src/tables/part/PartTable.tsx:203 msgid "Locked" msgstr "" @@ -7671,16 +7754,16 @@ msgid "Saleable Part" msgstr "" #: src/pages/part/PartDetail.tsx:663 -#: src/pages/part/PartDetail.tsx:1033 +#: src/pages/part/PartDetail.tsx:1054 #: src/tables/bom/BomTable.tsx:150 #: src/tables/bom/BomTable.tsx:434 msgid "Virtual Part" msgstr "" #: src/pages/part/PartDetail.tsx:678 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:271 -#: src/pages/sales/ReturnOrderDetail.tsx:249 -#: src/pages/sales/SalesOrderDetail.tsx:242 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:272 +#: src/pages/sales/ReturnOrderDetail.tsx:250 +#: src/pages/sales/SalesOrderDetail.tsx:243 #: src/tables/ColumnRenderers.tsx:502 msgid "Creation Date" msgstr "" @@ -7718,35 +7801,46 @@ msgstr "" msgid "Select Part Revision" msgstr "" -#: src/pages/part/PartDetail.tsx:823 +#: src/pages/part/PartDetail.tsx:812 msgid "Variants" msgstr "" -#: src/pages/part/PartDetail.tsx:830 +#: src/pages/part/PartDetail.tsx:819 #: src/pages/stock/StockDetail.tsx:542 msgid "Allocations" msgstr "" -#: src/pages/part/PartDetail.tsx:837 +#: src/pages/part/PartDetail.tsx:826 msgid "Bill of Materials" msgstr "" -#: src/pages/part/PartDetail.tsx:849 +#: src/pages/part/PartDetail.tsx:838 msgid "Used In" msgstr "" -#: src/pages/part/PartDetail.tsx:856 +#: src/pages/part/PartDetail.tsx:845 msgid "Part Pricing" msgstr "" -#: src/pages/part/PartDetail.tsx:926 +#: src/pages/part/PartDetail.tsx:915 msgid "Test Templates" msgstr "" -#: src/pages/part/PartDetail.tsx:948 +#: src/pages/part/PartDetail.tsx:937 msgid "Related Parts" msgstr "" +#: src/pages/part/PartDetail.tsx:949 +#: src/tables/ColumnRenderers.tsx:73 +#: src/tables/bom/BomTable.tsx:657 +#: src/tables/part/PartTestTemplateTable.tsx:258 +msgid "Part is Locked" +msgstr "" + +#: src/pages/part/PartDetail.tsx:954 +msgid "Part parameters cannot be edited, as the part is locked" +msgstr "" + #: src/pages/part/PartDetail.tsx:956 #~ msgid "Count part stock" #~ msgstr "Count part stock" @@ -7755,42 +7849,46 @@ msgstr "" #~ msgid "Transfer part stock" #~ msgstr "Transfer part stock" -#: src/pages/part/PartDetail.tsx:1009 +#: src/pages/part/PartDetail.tsx:1024 #: src/tables/part/PartTestTemplateTable.tsx:112 #: src/tables/stock/StockItemTestResultTable.tsx:404 msgid "Required" msgstr "" -#: src/pages/part/PartDetail.tsx:1058 +#: src/pages/part/PartDetail.tsx:1042 +msgid "Deficit" +msgstr "" + +#: src/pages/part/PartDetail.tsx:1079 #: src/tables/part/PartTable.tsx:396 #: src/tables/part/PartTable.tsx:449 msgid "Add Part" msgstr "" -#: src/pages/part/PartDetail.tsx:1072 +#: src/pages/part/PartDetail.tsx:1093 msgid "Delete Part" msgstr "" -#: src/pages/part/PartDetail.tsx:1081 +#: src/pages/part/PartDetail.tsx:1102 msgid "Deleting this part cannot be reversed" msgstr "" -#: src/pages/part/PartDetail.tsx:1143 +#: src/pages/part/PartDetail.tsx:1164 #: src/pages/stock/StockDetail.tsx:883 msgid "Order" msgstr "" -#: src/pages/part/PartDetail.tsx:1144 +#: src/pages/part/PartDetail.tsx:1165 #: src/pages/stock/StockDetail.tsx:884 -#: src/tables/build/BuildLineTable.tsx:761 +#: src/tables/build/BuildLineTable.tsx:768 msgid "Order Stock" msgstr "" -#: src/pages/part/PartDetail.tsx:1156 +#: src/pages/part/PartDetail.tsx:1177 msgid "Search by serial number" msgstr "" -#: src/pages/part/PartDetail.tsx:1164 +#: src/pages/part/PartDetail.tsx:1185 #: src/tables/part/PartTable.tsx:506 msgid "Part Actions" msgstr "" @@ -8039,7 +8137,7 @@ msgstr "" #: src/pages/part/pricing/PricingOverviewPanel.tsx:288 #: src/pages/stock/StockDetail.tsx:426 -#: src/tables/part/PartParameterTable.tsx:121 +#: src/tables/general/ParameterTable.tsx:101 #: src/tables/stock/StockItemTable.tsx:300 msgid "Last Updated" msgstr "" @@ -8107,17 +8205,17 @@ msgstr "" msgid "Variant Part" msgstr "" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:89 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:90 msgid "Edit Purchase Order" msgstr "" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:125 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:126 #: src/tables/purchasing/PurchaseOrderTable.tsx:154 #: src/tables/purchasing/PurchaseOrderTable.tsx:167 msgid "Add Purchase Order" msgstr "" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:147 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:148 msgid "Supplier Reference" msgstr "" @@ -8127,20 +8225,20 @@ msgstr "" #~ msgid "Order Currency," #~ msgstr "Order Currency," -#: src/pages/purchasing/PurchaseOrderDetail.tsx:187 -#: src/pages/sales/ReturnOrderDetail.tsx:160 -#: src/pages/sales/SalesOrderDetail.tsx:144 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:188 +#: src/pages/sales/ReturnOrderDetail.tsx:161 +#: src/pages/sales/SalesOrderDetail.tsx:145 msgid "Completed Line Items" msgstr "" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:196 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:197 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:272 msgid "Destination" msgstr "" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:202 -#: src/pages/sales/ReturnOrderDetail.tsx:167 -#: src/pages/sales/SalesOrderDetail.tsx:161 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:203 +#: src/pages/sales/ReturnOrderDetail.tsx:168 +#: src/pages/sales/SalesOrderDetail.tsx:162 msgid "Order Currency" msgstr "" @@ -8150,97 +8248,97 @@ msgstr "" #~ msgid "Created On" #~ msgstr "Created On" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:208 -#: src/pages/sales/ReturnOrderDetail.tsx:174 -#: src/pages/sales/SalesOrderDetail.tsx:167 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:209 +#: src/pages/sales/ReturnOrderDetail.tsx:175 +#: src/pages/sales/SalesOrderDetail.tsx:168 msgid "Total Cost" msgstr "" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:237 -#: src/pages/sales/ReturnOrderDetail.tsx:215 -#: src/pages/sales/SalesOrderDetail.tsx:208 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:238 +#: src/pages/sales/ReturnOrderDetail.tsx:216 +#: src/pages/sales/SalesOrderDetail.tsx:209 msgid "Contact Email" msgstr "" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:245 -#: src/pages/sales/ReturnOrderDetail.tsx:223 -#: src/pages/sales/SalesOrderDetail.tsx:216 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:246 +#: src/pages/sales/ReturnOrderDetail.tsx:224 +#: src/pages/sales/SalesOrderDetail.tsx:217 msgid "Contact Phone" msgstr "" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:278 -#: src/pages/sales/ReturnOrderDetail.tsx:257 -#: src/pages/sales/SalesOrderDetail.tsx:249 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:279 +#: src/pages/sales/ReturnOrderDetail.tsx:258 +#: src/pages/sales/SalesOrderDetail.tsx:250 msgid "Issue Date" msgstr "" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:303 -#: src/pages/sales/ReturnOrderDetail.tsx:281 -#: src/pages/sales/SalesOrderDetail.tsx:272 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:304 +#: src/pages/sales/ReturnOrderDetail.tsx:282 +#: src/pages/sales/SalesOrderDetail.tsx:273 #: src/tables/ColumnRenderers.tsx:510 #: src/tables/build/BuildOrderTable.tsx:137 #: src/tables/part/PartPurchaseOrdersTable.tsx:106 msgid "Completion Date" msgstr "" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:333 -#: src/pages/sales/ReturnOrderDetail.tsx:311 -#: src/pages/sales/SalesOrderDetail.tsx:349 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:334 +#: src/pages/sales/ReturnOrderDetail.tsx:312 +#: src/pages/sales/SalesOrderDetail.tsx:350 msgid "Order Details" msgstr "" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:339 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:348 -#: src/pages/sales/ReturnOrderDetail.tsx:153 -#: src/pages/sales/ReturnOrderDetail.tsx:317 -#: src/pages/sales/ReturnOrderDetail.tsx:326 -#: src/pages/sales/SalesOrderDetail.tsx:355 -#: src/pages/sales/SalesOrderDetail.tsx:364 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:340 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:349 +#: src/pages/sales/ReturnOrderDetail.tsx:154 +#: src/pages/sales/ReturnOrderDetail.tsx:318 +#: src/pages/sales/ReturnOrderDetail.tsx:327 +#: src/pages/sales/SalesOrderDetail.tsx:356 +#: src/pages/sales/SalesOrderDetail.tsx:365 msgid "Line Items" msgstr "" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:363 -#: src/pages/sales/ReturnOrderDetail.tsx:341 -#: src/pages/sales/SalesOrderDetail.tsx:378 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:364 +#: src/pages/sales/ReturnOrderDetail.tsx:342 +#: src/pages/sales/SalesOrderDetail.tsx:379 msgid "Extra Line Items" msgstr "" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:405 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:410 msgid "Issue Purchase Order" msgstr "" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:413 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:418 msgid "Cancel Purchase Order" msgstr "" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:421 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:426 msgid "Hold Purchase Order" msgstr "" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:429 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:434 msgid "Complete Purchase Order" msgstr "" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:485 -#: src/pages/sales/ReturnOrderDetail.tsx:496 -#: src/pages/sales/SalesOrderDetail.tsx:549 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:490 +#: src/pages/sales/ReturnOrderDetail.tsx:501 +#: src/pages/sales/SalesOrderDetail.tsx:554 msgid "Order Actions" msgstr "" -#: src/pages/sales/ReturnOrderDetail.tsx:114 -#: src/pages/sales/SalesOrderDetail.tsx:104 -#: src/pages/sales/SalesOrderShipmentDetail.tsx:134 +#: src/pages/sales/ReturnOrderDetail.tsx:115 +#: src/pages/sales/SalesOrderDetail.tsx:105 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:132 #: src/tables/sales/SalesOrderTable.tsx:141 msgid "Customer Reference" msgstr "" -#: src/pages/sales/ReturnOrderDetail.tsx:195 +#: src/pages/sales/ReturnOrderDetail.tsx:196 msgid "Return Address" msgstr "" -#: src/pages/sales/ReturnOrderDetail.tsx:201 -#: src/pages/sales/SalesOrderDetail.tsx:194 -#: src/pages/sales/SalesOrderShipmentDetail.tsx:181 +#: src/pages/sales/ReturnOrderDetail.tsx:202 +#: src/pages/sales/SalesOrderDetail.tsx:195 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:179 msgid "Not specified" msgstr "" @@ -8248,117 +8346,117 @@ msgstr "" #~ msgid "Order canceled" #~ msgstr "Order canceled" -#: src/pages/sales/ReturnOrderDetail.tsx:389 +#: src/pages/sales/ReturnOrderDetail.tsx:394 msgid "Edit Return Order" msgstr "" -#: src/pages/sales/ReturnOrderDetail.tsx:407 +#: src/pages/sales/ReturnOrderDetail.tsx:412 #: src/tables/sales/ReturnOrderTable.tsx:154 #: src/tables/sales/ReturnOrderTable.tsx:167 msgid "Add Return Order" msgstr "" -#: src/pages/sales/ReturnOrderDetail.tsx:416 +#: src/pages/sales/ReturnOrderDetail.tsx:421 msgid "Issue Return Order" msgstr "" -#: src/pages/sales/ReturnOrderDetail.tsx:424 +#: src/pages/sales/ReturnOrderDetail.tsx:429 msgid "Cancel Return Order" msgstr "" -#: src/pages/sales/ReturnOrderDetail.tsx:432 +#: src/pages/sales/ReturnOrderDetail.tsx:437 msgid "Hold Return Order" msgstr "" -#: src/pages/sales/ReturnOrderDetail.tsx:440 +#: src/pages/sales/ReturnOrderDetail.tsx:445 msgid "Complete Return Order" msgstr "" -#: src/pages/sales/SalesOrderDetail.tsx:153 +#: src/pages/sales/SalesOrderDetail.tsx:154 msgid "Completed Shipments" msgstr "" -#: src/pages/sales/SalesOrderDetail.tsx:188 -#: src/pages/sales/SalesOrderShipmentDetail.tsx:170 +#: src/pages/sales/SalesOrderDetail.tsx:189 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:168 msgid "Shipping Address" msgstr "" -#: src/pages/sales/SalesOrderDetail.tsx:316 +#: src/pages/sales/SalesOrderDetail.tsx:317 msgid "Edit Sales Order" msgstr "" -#: src/pages/sales/SalesOrderDetail.tsx:338 +#: src/pages/sales/SalesOrderDetail.tsx:339 #: src/tables/sales/SalesOrderTable.tsx:108 #: src/tables/sales/SalesOrderTable.tsx:121 msgid "Add Sales Order" msgstr "" -#: src/pages/sales/SalesOrderDetail.tsx:396 +#: src/pages/sales/SalesOrderDetail.tsx:397 #: src/tables/sales/SalesOrderTable.tsx:147 msgid "Shipments" msgstr "" -#: src/pages/sales/SalesOrderDetail.tsx:443 +#: src/pages/sales/SalesOrderDetail.tsx:448 msgid "Issue Sales Order" msgstr "" -#: src/pages/sales/SalesOrderDetail.tsx:451 +#: src/pages/sales/SalesOrderDetail.tsx:456 msgid "Cancel Sales Order" msgstr "" -#: src/pages/sales/SalesOrderDetail.tsx:459 +#: src/pages/sales/SalesOrderDetail.tsx:464 msgid "Hold Sales Order" msgstr "" -#: src/pages/sales/SalesOrderDetail.tsx:467 +#: src/pages/sales/SalesOrderDetail.tsx:472 msgid "Ship Sales Order" msgstr "" -#: src/pages/sales/SalesOrderDetail.tsx:469 +#: src/pages/sales/SalesOrderDetail.tsx:474 msgid "Ship this order?" msgstr "" -#: src/pages/sales/SalesOrderDetail.tsx:470 +#: src/pages/sales/SalesOrderDetail.tsx:475 msgid "Order shipped" msgstr "" -#: src/pages/sales/SalesOrderDetail.tsx:478 +#: src/pages/sales/SalesOrderDetail.tsx:483 msgid "Complete Sales Order" msgstr "" -#: src/pages/sales/SalesOrderDetail.tsx:523 +#: src/pages/sales/SalesOrderDetail.tsx:528 msgid "Ship Order" msgstr "" -#: src/pages/sales/SalesOrderShipmentDetail.tsx:142 -#: src/tables/sales/SalesOrderShipmentTable.tsx:135 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:140 +#: src/tables/sales/SalesOrderShipmentTable.tsx:156 msgid "Shipment Reference" msgstr "" -#: src/pages/sales/SalesOrderShipmentDetail.tsx:148 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:146 msgid "Tracking Number" msgstr "" -#: src/pages/sales/SalesOrderShipmentDetail.tsx:156 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:154 msgid "Invoice Number" msgstr "" -#: src/pages/sales/SalesOrderShipmentDetail.tsx:191 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:189 msgid "Allocated Items" msgstr "" -#: src/pages/sales/SalesOrderShipmentDetail.tsx:196 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:194 msgid "Checked By" msgstr "" -#: src/pages/sales/SalesOrderShipmentDetail.tsx:202 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:200 msgid "Not checked" msgstr "" -#: src/pages/sales/SalesOrderShipmentDetail.tsx:208 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:206 #: src/tables/ColumnRenderers.tsx:518 #: src/tables/sales/SalesOrderAllocationTable.tsx:182 -#: src/tables/sales/SalesOrderShipmentTable.tsx:168 +#: src/tables/sales/SalesOrderShipmentTable.tsx:189 msgid "Shipment Date" msgstr "" @@ -8366,108 +8464,82 @@ msgstr "" #~ msgid "Assigned Items" #~ msgstr "Assigned Items" -#: src/pages/sales/SalesOrderShipmentDetail.tsx:216 -#: src/tables/sales/SalesOrderShipmentTable.tsx:172 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:214 +#: src/tables/sales/SalesOrderShipmentTable.tsx:193 msgid "Delivery Date" msgstr "" -#: src/pages/sales/SalesOrderShipmentDetail.tsx:255 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:253 msgid "Shipment Details" msgstr "" -#: src/pages/sales/SalesOrderShipmentDetail.tsx:294 -#: src/pages/sales/SalesOrderShipmentDetail.tsx:438 -#: src/tables/sales/SalesOrderShipmentTable.tsx:90 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:292 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:406 +#: src/tables/sales/SalesOrderShipmentTable.tsx:97 msgid "Edit Shipment" msgstr "" -#: src/pages/sales/SalesOrderShipmentDetail.tsx:301 -#: src/pages/sales/SalesOrderShipmentDetail.tsx:457 -#: src/tables/sales/SalesOrderShipmentTable.tsx:82 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:299 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:425 +#: src/tables/sales/SalesOrderShipmentTable.tsx:89 msgid "Cancel Shipment" msgstr "" -#: src/pages/sales/SalesOrderShipmentDetail.tsx:314 -#: src/tables/sales/SalesOrderShipmentTable.tsx:98 -#: src/tables/sales/SalesOrderShipmentTable.tsx:193 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:312 +#: src/tables/sales/SalesOrderShipmentTable.tsx:119 +#: src/tables/sales/SalesOrderShipmentTable.tsx:238 msgid "Complete Shipment" msgstr "" -#: src/pages/sales/SalesOrderShipmentDetail.tsx:326 -#: src/pages/sales/SalesOrderShipmentDetail.tsx:328 -msgid "Check Shipment" -msgstr "" - -#: src/pages/sales/SalesOrderShipmentDetail.tsx:329 -msgid "Marking the shipment as checked indicates that you have verified that all items included in this shipment are correct" -msgstr "" - #: src/pages/sales/SalesOrderShipmentDetail.tsx:339 -msgid "Shipment marked as checked" -msgstr "" - -#: src/pages/sales/SalesOrderShipmentDetail.tsx:346 -#: src/pages/sales/SalesOrderShipmentDetail.tsx:348 -msgid "Uncheck Shipment" -msgstr "" - -#: src/pages/sales/SalesOrderShipmentDetail.tsx:349 -msgid "Marking the shipment as unchecked indicates that the shipment requires further verification" -msgstr "" - -#: src/pages/sales/SalesOrderShipmentDetail.tsx:359 -msgid "Shipment marked as unchecked" -msgstr "" - -#: src/pages/sales/SalesOrderShipmentDetail.tsx:371 #: src/tables/part/PartPurchaseOrdersTable.tsx:122 msgid "Pending" msgstr "" -#: src/pages/sales/SalesOrderShipmentDetail.tsx:377 -#: src/tables/sales/SalesOrderShipmentTable.tsx:147 -#: src/tables/sales/SalesOrderShipmentTable.tsx:254 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:345 +#: src/tables/sales/SalesOrderShipmentTable.tsx:168 +#: src/tables/sales/SalesOrderShipmentTable.tsx:299 msgid "Checked" msgstr "" -#: src/pages/sales/SalesOrderShipmentDetail.tsx:383 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:351 msgid "Not Checked" msgstr "" -#: src/pages/sales/SalesOrderShipmentDetail.tsx:389 -#: src/tables/sales/SalesOrderShipmentTable.tsx:154 -#: src/tables/sales/SalesOrderShipmentTable.tsx:259 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:357 +#: src/tables/sales/SalesOrderShipmentTable.tsx:175 +#: src/tables/sales/SalesOrderShipmentTable.tsx:304 msgid "Shipped" msgstr "" -#: src/pages/sales/SalesOrderShipmentDetail.tsx:395 -#: src/tables/sales/SalesOrderShipmentTable.tsx:161 -#: src/tables/sales/SalesOrderShipmentTable.tsx:264 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:363 +#: src/tables/sales/SalesOrderShipmentTable.tsx:182 +#: src/tables/sales/SalesOrderShipmentTable.tsx:309 #: src/tables/settings/EmailTable.tsx:31 msgid "Delivered" msgstr "" -#: src/pages/sales/SalesOrderShipmentDetail.tsx:410 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:378 msgid "Send Shipment" msgstr "" -#: src/pages/sales/SalesOrderShipmentDetail.tsx:433 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:401 msgid "Shipment Actions" msgstr "" -#: src/pages/sales/SalesOrderShipmentDetail.tsx:442 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:410 msgid "Check" msgstr "" -#: src/pages/sales/SalesOrderShipmentDetail.tsx:443 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:411 msgid "Mark shipment as checked" msgstr "" -#: src/pages/sales/SalesOrderShipmentDetail.tsx:449 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:417 msgid "Uncheck" msgstr "" -#: src/pages/sales/SalesOrderShipmentDetail.tsx:450 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:418 msgid "Mark shipment as unchecked" msgstr "" @@ -8775,13 +8847,6 @@ msgstr "" msgid "Part is not active" msgstr "" -#: src/tables/ColumnRenderers.tsx:73 -#: src/tables/bom/BomTable.tsx:657 -#: src/tables/part/PartParameterTable.tsx:227 -#: src/tables/part/PartTestTemplateTable.tsx:258 -msgid "Part is Locked" -msgstr "" - #: src/tables/ColumnRenderers.tsx:78 msgid "You are subscribed to notifications for this part" msgstr "" @@ -9219,13 +9284,13 @@ msgstr "" #~ msgstr "Show asssmbled items" #: src/tables/bom/BomTable.tsx:315 -#: src/tables/build/BuildLineTable.tsx:276 +#: src/tables/build/BuildLineTable.tsx:277 #: src/tables/part/PartTable.tsx:145 msgid "External stock" msgstr "" #: src/tables/bom/BomTable.tsx:323 -#: src/tables/build/BuildLineTable.tsx:239 +#: src/tables/build/BuildLineTable.tsx:240 msgid "Includes substitute stock" msgstr "" @@ -9234,7 +9299,7 @@ msgstr "" #~ msgstr "Edit Bom Item" #: src/tables/bom/BomTable.tsx:332 -#: src/tables/build/BuildLineTable.tsx:249 +#: src/tables/build/BuildLineTable.tsx:250 #: src/tables/sales/SalesOrderLineItemTable.tsx:166 msgid "Includes variant stock" msgstr "" @@ -9272,8 +9337,8 @@ msgid "Stock Information" msgstr "" #: src/tables/bom/BomTable.tsx:399 -#: src/tables/build/BuildLineTable.tsx:496 -#: src/tables/build/BuildLineTable.tsx:537 +#: src/tables/build/BuildLineTable.tsx:497 +#: src/tables/build/BuildLineTable.tsx:538 msgid "Consumable item" msgstr "" @@ -9282,7 +9347,7 @@ msgid "No available stock" msgstr "" #: src/tables/bom/BomTable.tsx:420 -#: src/tables/build/BuildLineTable.tsx:213 +#: src/tables/build/BuildLineTable.tsx:214 msgid "Show testable items" msgstr "" @@ -9291,7 +9356,7 @@ msgid "Show trackable items" msgstr "" #: src/tables/bom/BomTable.tsx:430 -#: src/tables/build/BuildLineTable.tsx:208 +#: src/tables/build/BuildLineTable.tsx:209 msgid "Show assembled items" msgstr "" @@ -9335,7 +9400,7 @@ msgstr "" #: src/tables/bom/BomTable.tsx:464 #: src/tables/bom/UsedInTable.tsx:85 -#: src/tables/build/BuildLineTable.tsx:202 +#: src/tables/build/BuildLineTable.tsx:203 msgid "Optional" msgstr "" @@ -9345,7 +9410,7 @@ msgid "Show optional items" msgstr "" #: src/tables/bom/BomTable.tsx:469 -#: src/tables/build/BuildLineTable.tsx:197 +#: src/tables/build/BuildLineTable.tsx:198 msgid "Consumable" msgstr "" @@ -9420,6 +9485,7 @@ msgid "Add a single BOM item" msgstr "" #: src/tables/bom/BomTable.tsx:637 +#: src/tables/general/ParameterTable.tsx:206 #: src/tables/part/PartTable.tsx:546 msgid "Import from File" msgstr "" @@ -9433,8 +9499,8 @@ msgid "Bill of materials cannot be edited, as the part is locked" msgstr "" #: src/tables/bom/UsedInTable.tsx:34 -#: src/tables/build/BuildLineTable.tsx:207 -#: src/tables/part/ParametricPartTable.tsx:364 +#: src/tables/build/BuildLineTable.tsx:208 +#: src/tables/part/ParametricPartTable.tsx:29 #: src/tables/part/PartBuildAllocationsTable.tsx:60 #: src/tables/part/PartTable.tsx:209 #: src/tables/stock/StockItemTable.tsx:333 @@ -9455,11 +9521,11 @@ msgstr "" msgid "Show trackable assemblies" msgstr "" -#: src/tables/build/BuildAllocatedStockTable.tsx:67 +#: src/tables/build/BuildAllocatedStockTable.tsx:64 msgid "Allocated to Output" msgstr "" -#: src/tables/build/BuildAllocatedStockTable.tsx:68 +#: src/tables/build/BuildAllocatedStockTable.tsx:65 msgid "Show items allocated to a build output" msgstr "" @@ -9472,50 +9538,68 @@ msgstr "" #~ msgid "Include orders for part variants" #~ msgstr "Include orders for part variants" -#: src/tables/build/BuildAllocatedStockTable.tsx:97 +#: src/tables/build/BuildAllocatedStockTable.tsx:94 #: src/tables/part/PartBuildAllocationsTable.tsx:84 #: src/tables/part/PartPurchaseOrdersTable.tsx:132 #: src/tables/part/PartSalesAllocationsTable.tsx:69 #: src/tables/sales/SalesOrderAllocationTable.tsx:122 -#: src/tables/sales/SalesOrderShipmentTable.tsx:130 +#: src/tables/sales/SalesOrderShipmentTable.tsx:151 msgid "Order Status" msgstr "" +#: src/tables/build/BuildAllocatedStockTable.tsx:164 +#: src/tables/build/BuildLineTable.tsx:651 +msgid "Edit Stock Allocation" +msgstr "" + #: src/tables/build/BuildAllocatedStockTable.tsx:164 #~ msgid "Edit Build Item" #~ msgstr "Edit Build Item" -#: src/tables/build/BuildAllocatedStockTable.tsx:167 -#: src/tables/build/BuildLineTable.tsx:650 -msgid "Edit Stock Allocation" -msgstr "" - #: src/tables/build/BuildAllocatedStockTable.tsx:174 #~ msgid "Delete Build Item" #~ msgstr "Delete Build Item" -#: src/tables/build/BuildAllocatedStockTable.tsx:180 -#: src/tables/build/BuildLineTable.tsx:663 -msgid "Delete Stock Allocation" +#: src/tables/build/BuildAllocatedStockTable.tsx:177 +#: src/tables/build/BuildLineTable.tsx:664 +#: src/tables/sales/SalesOrderAllocationTable.tsx:218 +msgid "Remove Allocated Stock" msgstr "" -#: src/tables/build/BuildAllocatedStockTable.tsx:239 +#: src/tables/build/BuildAllocatedStockTable.tsx:180 +#: src/tables/build/BuildLineTable.tsx:663 +#~ msgid "Delete Stock Allocation" +#~ msgstr "Delete Stock Allocation" + +#: src/tables/build/BuildAllocatedStockTable.tsx:182 +#: src/tables/build/BuildLineTable.tsx:669 +#: src/tables/sales/SalesOrderAllocationTable.tsx:221 +msgid "Are you sure you want to remove this allocated stock from the order?" +msgstr "" + +#: src/tables/build/BuildAllocatedStockTable.tsx:242 msgid "Consume" msgstr "" +#: src/tables/build/BuildAllocatedStockTable.tsx:259 +#: src/tables/build/BuildLineTable.tsx:112 +#: src/tables/sales/SalesOrderAllocationTable.tsx:248 +msgid "Remove allocated stock" +msgstr "" + #: src/tables/build/BuildLineTable.tsx:59 #~ msgid "Show lines with available stock" #~ msgstr "Show lines with available stock" -#: src/tables/build/BuildLineTable.tsx:120 +#: src/tables/build/BuildLineTable.tsx:121 msgid "View Stock Item" msgstr "" -#: src/tables/build/BuildLineTable.tsx:183 +#: src/tables/build/BuildLineTable.tsx:184 msgid "Show fully allocated lines" msgstr "" -#: src/tables/build/BuildLineTable.tsx:188 +#: src/tables/build/BuildLineTable.tsx:189 msgid "Show fully consumed lines" msgstr "" @@ -9523,124 +9607,124 @@ msgstr "" #~ msgid "Show allocated lines" #~ msgstr "Show allocated lines" -#: src/tables/build/BuildLineTable.tsx:193 +#: src/tables/build/BuildLineTable.tsx:194 msgid "Show items with sufficient available stock" msgstr "" -#: src/tables/build/BuildLineTable.tsx:198 +#: src/tables/build/BuildLineTable.tsx:199 msgid "Show consumable lines" msgstr "" -#: src/tables/build/BuildLineTable.tsx:203 +#: src/tables/build/BuildLineTable.tsx:204 msgid "Show optional lines" msgstr "" -#: src/tables/build/BuildLineTable.tsx:212 +#: src/tables/build/BuildLineTable.tsx:213 #: src/tables/part/PartTable.tsx:233 msgid "Testable" msgstr "" -#: src/tables/build/BuildLineTable.tsx:217 +#: src/tables/build/BuildLineTable.tsx:218 #: src/tables/stock/StockItemTable.tsx:388 msgid "Tracked" msgstr "" -#: src/tables/build/BuildLineTable.tsx:218 +#: src/tables/build/BuildLineTable.tsx:219 msgid "Show tracked lines" msgstr "" -#: src/tables/build/BuildLineTable.tsx:223 +#: src/tables/build/BuildLineTable.tsx:224 msgid "Show items with stock on order" msgstr "" -#: src/tables/build/BuildLineTable.tsx:258 +#: src/tables/build/BuildLineTable.tsx:259 #: src/tables/sales/SalesOrderLineItemTable.tsx:172 msgid "In production" msgstr "" -#: src/tables/build/BuildLineTable.tsx:286 +#: src/tables/build/BuildLineTable.tsx:287 msgid "Insufficient stock" msgstr "" -#: src/tables/build/BuildLineTable.tsx:302 +#: src/tables/build/BuildLineTable.tsx:303 #: src/tables/sales/SalesOrderLineItemTable.tsx:160 #: src/tables/stock/StockItemTable.tsx:191 msgid "No stock available" msgstr "" -#: src/tables/build/BuildLineTable.tsx:375 +#: src/tables/build/BuildLineTable.tsx:376 msgid "Gets Inherited" msgstr "" -#: src/tables/build/BuildLineTable.tsx:388 +#: src/tables/build/BuildLineTable.tsx:389 msgid "Unit Quantity" msgstr "" -#: src/tables/build/BuildLineTable.tsx:415 +#: src/tables/build/BuildLineTable.tsx:416 msgid "Setup Quantity" msgstr "" -#: src/tables/build/BuildLineTable.tsx:424 +#: src/tables/build/BuildLineTable.tsx:425 msgid "Attrition" msgstr "" -#: src/tables/build/BuildLineTable.tsx:432 +#: src/tables/build/BuildLineTable.tsx:433 msgid "Rounding Multiple" msgstr "" -#: src/tables/build/BuildLineTable.tsx:441 +#: src/tables/build/BuildLineTable.tsx:442 msgid "BOM Information" msgstr "" -#: src/tables/build/BuildLineTable.tsx:515 +#: src/tables/build/BuildLineTable.tsx:516 #: src/tables/part/PartBuildAllocationsTable.tsx:102 msgid "Fully allocated" msgstr "" -#: src/tables/build/BuildLineTable.tsx:563 +#: src/tables/build/BuildLineTable.tsx:564 #: src/tables/sales/SalesOrderLineItemTable.tsx:311 msgid "Create Build Order" msgstr "" -#: src/tables/build/BuildLineTable.tsx:592 +#: src/tables/build/BuildLineTable.tsx:593 msgid "Auto allocation in progress" msgstr "" -#: src/tables/build/BuildLineTable.tsx:595 -#: src/tables/build/BuildLineTable.tsx:802 +#: src/tables/build/BuildLineTable.tsx:596 +#: src/tables/build/BuildLineTable.tsx:809 msgid "Auto Allocate Stock" msgstr "" -#: src/tables/build/BuildLineTable.tsx:596 +#: src/tables/build/BuildLineTable.tsx:597 msgid "Automatically allocate stock to this build according to the selected options" msgstr "" -#: src/tables/build/BuildLineTable.tsx:616 -#: src/tables/build/BuildLineTable.tsx:630 -#: src/tables/build/BuildLineTable.tsx:751 -#: src/tables/build/BuildLineTable.tsx:852 +#: src/tables/build/BuildLineTable.tsx:617 +#: src/tables/build/BuildLineTable.tsx:631 +#: src/tables/build/BuildLineTable.tsx:758 +#: src/tables/build/BuildLineTable.tsx:859 #: src/tables/build/BuildOutputTable.tsx:355 #: src/tables/build/BuildOutputTable.tsx:360 msgid "Deallocate Stock" msgstr "" -#: src/tables/build/BuildLineTable.tsx:632 +#: src/tables/build/BuildLineTable.tsx:633 msgid "Deallocate all untracked stock for this build order" msgstr "" -#: src/tables/build/BuildLineTable.tsx:634 +#: src/tables/build/BuildLineTable.tsx:635 msgid "Deallocate stock from the selected line item" msgstr "" -#: src/tables/build/BuildLineTable.tsx:638 +#: src/tables/build/BuildLineTable.tsx:639 msgid "Stock has been deallocated" msgstr "" -#: src/tables/build/BuildLineTable.tsx:771 +#: src/tables/build/BuildLineTable.tsx:778 msgid "Build Stock" msgstr "" -#: src/tables/build/BuildLineTable.tsx:784 +#: src/tables/build/BuildLineTable.tsx:791 #: src/tables/sales/SalesOrderLineItemTable.tsx:487 msgid "View Part" msgstr "" @@ -9739,7 +9823,7 @@ msgid "Serialize Build Output" msgstr "" #: src/tables/build/BuildOutputTable.tsx:405 -#: src/tables/part/PartTestResultTable.tsx:310 +#: src/tables/part/PartTestResultTable.tsx:318 #: src/tables/stock/StockItemTable.tsx:328 msgid "Filter by stock status" msgstr "" @@ -9964,8 +10048,8 @@ msgid "View Item" msgstr "" #: src/tables/general/ExtraLineItemTable.tsx:95 -#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:299 -#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:403 +#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:300 +#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:405 #: src/tables/sales/ReturnOrderLineItemTable.tsx:83 #: src/tables/sales/ReturnOrderLineItemTable.tsx:187 #: src/tables/sales/SalesOrderLineItemTable.tsx:252 @@ -9974,14 +10058,14 @@ msgid "Add Line Item" msgstr "" #: src/tables/general/ExtraLineItemTable.tsx:108 -#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:320 +#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:322 #: src/tables/sales/ReturnOrderLineItemTable.tsx:96 #: src/tables/sales/SalesOrderLineItemTable.tsx:271 msgid "Edit Line Item" msgstr "" #: src/tables/general/ExtraLineItemTable.tsx:117 -#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:329 +#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:331 #: src/tables/sales/ReturnOrderLineItemTable.tsx:105 #: src/tables/sales/SalesOrderLineItemTable.tsx:280 msgid "Delete Line Item" @@ -9991,6 +10075,137 @@ msgstr "" msgid "Add Extra Line Item" msgstr "" +#: src/tables/general/ParameterTable.tsx:88 +msgid "Internal Units" +msgstr "" + +#: src/tables/general/ParameterTable.tsx:108 +#: src/tables/general/ParameterTable.tsx:123 +msgid "Updated By" +msgstr "" + +#: src/tables/general/ParameterTable.tsx:118 +msgid "Show parameters for enabled templates" +msgstr "" + +#: src/tables/general/ParameterTable.tsx:124 +msgid "Filter by user who last updated the parameter" +msgstr "" + +#: src/tables/general/ParameterTable.tsx:154 +msgid "Import Parameters" +msgstr "" + +#: src/tables/general/ParameterTable.tsx:164 +#: src/tables/general/ParametricDataTable.tsx:261 +#: src/tables/general/ParametricDataTable.tsx:392 +msgid "Add Parameter" +msgstr "" + +#: src/tables/general/ParameterTable.tsx:175 +#: src/tables/general/ParameterTable.tsx:222 +#: src/tables/general/ParametricDataTable.tsx:285 +msgid "Edit Parameter" +msgstr "" + +#: src/tables/general/ParameterTable.tsx:183 +#: src/tables/general/ParameterTable.tsx:230 +msgid "Delete Parameter" +msgstr "" + +#: src/tables/general/ParameterTable.tsx:191 +msgid "Add Parameters" +msgstr "" + +#: src/tables/general/ParameterTable.tsx:197 +msgid "Create Parameter" +msgstr "" + +#: src/tables/general/ParameterTable.tsx:199 +msgid "Create a new parameter" +msgstr "" + +#: src/tables/general/ParameterTable.tsx:208 +msgid "Import parameters from a file" +msgstr "" + +#: src/tables/general/ParameterTemplateTable.tsx:48 +#: src/tables/general/ParameterTemplateTable.tsx:197 +msgid "Add Parameter Template" +msgstr "" + +#: src/tables/general/ParameterTemplateTable.tsx:64 +msgid "Duplicate Parameter Template" +msgstr "" + +#: src/tables/general/ParameterTemplateTable.tsx:78 +msgid "Delete Parameter Template" +msgstr "" + +#: src/tables/general/ParameterTemplateTable.tsx:85 +msgid "Edit Parameter Template" +msgstr "" + +#: src/tables/general/ParameterTemplateTable.tsx:138 +msgid "Checkbox" +msgstr "" + +#: src/tables/general/ParameterTemplateTable.tsx:139 +msgid "Show checkbox templates" +msgstr "" + +#: src/tables/general/ParameterTemplateTable.tsx:143 +msgid "Has choices" +msgstr "" + +#: src/tables/general/ParameterTemplateTable.tsx:144 +msgid "Show templates with choices" +msgstr "" + +#: src/tables/general/ParameterTemplateTable.tsx:148 +#: src/tables/part/PartTable.tsx:245 +msgid "Has Units" +msgstr "" + +#: src/tables/general/ParameterTemplateTable.tsx:149 +msgid "Show templates with units" +msgstr "" + +#: src/tables/general/ParameterTemplateTable.tsx:154 +msgid "Show enabled templates" +msgstr "" + +#: src/tables/general/ParameterTemplateTable.tsx:158 +#: src/tables/settings/ImportSessionTable.tsx:111 +#: src/tables/settings/TemplateTable.tsx:368 +msgid "Model Type" +msgstr "" + +#: src/tables/general/ParameterTemplateTable.tsx:159 +msgid "Filter by model type" +msgstr "" + +#: src/tables/general/ParametricDataTable.tsx:79 +msgid "Click to edit" +msgstr "" + +#: src/tables/general/ParametricDataTableFilters.tsx:36 +msgid "True" +msgstr "" + +#: src/tables/general/ParametricDataTableFilters.tsx:37 +msgid "False" +msgstr "" + +#: src/tables/general/ParametricDataTableFilters.tsx:47 +#: src/tables/general/ParametricDataTableFilters.tsx:80 +msgid "Select a choice" +msgstr "" + +#: src/tables/general/ParametricDataTableFilters.tsx:100 +msgid "Enter a value" +msgstr "" + #: src/tables/machine/MachineListTable.tsx:133 msgid "Machine restarted" msgstr "" @@ -10071,7 +10286,7 @@ msgid "Initialized" msgstr "" #: src/tables/machine/MachineListTable.tsx:410 -#: src/tables/machine/MachineTypeTable.tsx:307 +#: src/tables/machine/MachineTypeTable.tsx:305 msgid "No errors reported" msgstr "" @@ -10132,15 +10347,15 @@ msgstr "" #~ msgid "Machine type information" #~ msgstr "Machine type information" -#: src/tables/machine/MachineTypeTable.tsx:128 +#: src/tables/machine/MachineTypeTable.tsx:126 msgid "Not Found" msgstr "" -#: src/tables/machine/MachineTypeTable.tsx:131 +#: src/tables/machine/MachineTypeTable.tsx:129 msgid "Machine type not found." msgstr "" -#: src/tables/machine/MachineTypeTable.tsx:141 +#: src/tables/machine/MachineTypeTable.tsx:139 msgid "Machine Type Information" msgstr "" @@ -10148,34 +10363,34 @@ msgstr "" #~ msgid "Available drivers" #~ msgstr "Available drivers" -#: src/tables/machine/MachineTypeTable.tsx:156 -#: src/tables/machine/MachineTypeTable.tsx:255 +#: src/tables/machine/MachineTypeTable.tsx:154 +#: src/tables/machine/MachineTypeTable.tsx:253 msgid "Slug" msgstr "" -#: src/tables/machine/MachineTypeTable.tsx:167 -#: src/tables/machine/MachineTypeTable.tsx:276 +#: src/tables/machine/MachineTypeTable.tsx:165 +#: src/tables/machine/MachineTypeTable.tsx:274 msgid "Provider plugin" msgstr "" -#: src/tables/machine/MachineTypeTable.tsx:179 -#: src/tables/machine/MachineTypeTable.tsx:288 +#: src/tables/machine/MachineTypeTable.tsx:177 +#: src/tables/machine/MachineTypeTable.tsx:286 msgid "Provider file" msgstr "" -#: src/tables/machine/MachineTypeTable.tsx:194 +#: src/tables/machine/MachineTypeTable.tsx:192 msgid "Available Drivers" msgstr "" -#: src/tables/machine/MachineTypeTable.tsx:234 +#: src/tables/machine/MachineTypeTable.tsx:232 msgid "Machine driver not found." msgstr "" -#: src/tables/machine/MachineTypeTable.tsx:242 +#: src/tables/machine/MachineTypeTable.tsx:240 msgid "Machine driver information" msgstr "" -#: src/tables/machine/MachineTypeTable.tsx:262 +#: src/tables/machine/MachineTypeTable.tsx:260 msgid "Machine type" msgstr "" @@ -10187,15 +10402,15 @@ msgstr "" #~ msgid "Machine driver detail" #~ msgstr "Machine driver detail" -#: src/tables/machine/MachineTypeTable.tsx:362 +#: src/tables/machine/MachineTypeTable.tsx:360 msgid "Builtin type" msgstr "" -#: src/tables/machine/MachineTypeTable.tsx:371 +#: src/tables/machine/MachineTypeTable.tsx:369 msgid "Machine Type Detail" msgstr "" -#: src/tables/machine/MachineTypeTable.tsx:381 +#: src/tables/machine/MachineTypeTable.tsx:379 msgid "Machine Driver Detail" msgstr "" @@ -10213,8 +10428,16 @@ msgstr "" msgid "Message" msgstr "" -#: src/tables/part/ParametricPartTable.tsx:78 -msgid "Click to edit" +#: src/tables/part/ParametricPartTable.tsx:20 +msgid "Show active parts" +msgstr "" + +#: src/tables/part/ParametricPartTable.tsx:25 +msgid "Show locked parts" +msgstr "" + +#: src/tables/part/ParametricPartTable.tsx:30 +msgid "Show assembly parts" msgstr "" #: src/tables/part/ParametricPartTable.tsx:82 @@ -10222,43 +10445,14 @@ msgstr "" #~ msgstr "Edit parameter" #: src/tables/part/ParametricPartTable.tsx:244 -msgid "Add Part Parameter" -msgstr "" +#~ msgid "Add Part Parameter" +#~ msgstr "Add Part Parameter" #: src/tables/part/ParametricPartTable.tsx:258 #: src/tables/part/PartParameterTable.tsx:164 #: src/tables/part/PartParameterTable.tsx:187 -msgid "Edit Part Parameter" -msgstr "" - -#: src/tables/part/ParametricPartTable.tsx:355 -msgid "Show active parts" -msgstr "" - -#: src/tables/part/ParametricPartTable.tsx:360 -msgid "Show locked parts" -msgstr "" - -#: src/tables/part/ParametricPartTable.tsx:365 -msgid "Show assembly parts" -msgstr "" - -#: src/tables/part/ParametricPartTableFilters.tsx:36 -msgid "True" -msgstr "" - -#: src/tables/part/ParametricPartTableFilters.tsx:37 -msgid "False" -msgstr "" - -#: src/tables/part/ParametricPartTableFilters.tsx:47 -#: src/tables/part/ParametricPartTableFilters.tsx:80 -msgid "Select a choice" -msgstr "" - -#: src/tables/part/ParametricPartTableFilters.tsx:100 -msgid "Enter a value" -msgstr "" +#~ msgid "Edit Part Parameter" +#~ msgstr "Edit Part Parameter" #: src/tables/part/PartBuildAllocationsTable.tsx:64 msgid "Assembly IPN" @@ -10273,7 +10467,7 @@ msgid "Required Stock" msgstr "" #: src/tables/part/PartBuildAllocationsTable.tsx:124 -#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:381 +#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:383 msgid "View Build Order" msgstr "" @@ -10332,85 +10526,22 @@ msgstr "" msgid "Delete Category Parameter" msgstr "" -#: src/tables/part/PartCategoryTemplateTable.tsx:87 -msgid "Parameter Template" -msgstr "" - #: src/tables/part/PartCategoryTemplateTable.tsx:93 #~ msgid "[{0}]" #~ msgstr "[{0}]" -#: src/tables/part/PartParameterTable.tsx:108 -msgid "Internal Units" -msgstr "" - -#: src/tables/part/PartParameterTable.tsx:128 -#: src/tables/part/PartParameterTable.tsx:138 -msgid "Updated By" -msgstr "" - -#: src/tables/part/PartParameterTable.tsx:139 -msgid "Filter by user who last updated the parameter" -msgstr "" - #: src/tables/part/PartParameterTable.tsx:148 -msgid "New Part Parameter" -msgstr "" +#~ msgid "New Part Parameter" +#~ msgstr "New Part Parameter" #: src/tables/part/PartParameterTable.tsx:173 #: src/tables/part/PartParameterTable.tsx:195 -msgid "Delete Part Parameter" -msgstr "" +#~ msgid "Delete Part Parameter" +#~ msgstr "Delete Part Parameter" #: src/tables/part/PartParameterTable.tsx:213 -msgid "Add parameter" -msgstr "" - -#: src/tables/part/PartParameterTable.tsx:232 -msgid "Part parameters cannot be edited, as the part is locked" -msgstr "" - -#: src/tables/part/PartParameterTemplateTable.tsx:36 -msgid "Checkbox" -msgstr "" - -#: src/tables/part/PartParameterTemplateTable.tsx:37 -msgid "Show checkbox templates" -msgstr "" - -#: src/tables/part/PartParameterTemplateTable.tsx:41 -msgid "Has choices" -msgstr "" - -#: src/tables/part/PartParameterTemplateTable.tsx:42 -msgid "Show templates with choices" -msgstr "" - -#: src/tables/part/PartParameterTemplateTable.tsx:46 -#: src/tables/part/PartTable.tsx:245 -msgid "Has Units" -msgstr "" - -#: src/tables/part/PartParameterTemplateTable.tsx:47 -msgid "Show templates with units" -msgstr "" - -#: src/tables/part/PartParameterTemplateTable.tsx:91 -#: src/tables/part/PartParameterTemplateTable.tsx:166 -msgid "Add Parameter Template" -msgstr "" - -#: src/tables/part/PartParameterTemplateTable.tsx:105 -msgid "Duplicate Parameter Template" -msgstr "" - -#: src/tables/part/PartParameterTemplateTable.tsx:117 -msgid "Edit Parameter Template" -msgstr "" - -#: src/tables/part/PartParameterTemplateTable.tsx:128 -msgid "Delete Parameter Template" -msgstr "" +#~ msgid "Add parameter" +#~ msgstr "Add parameter" #: src/tables/part/PartParameterTemplateTable.tsx:141 #~ msgid "Add parameter template" @@ -10430,7 +10561,7 @@ msgid "Show received items" msgstr "" #: src/tables/part/PartSalesAllocationsTable.tsx:90 -#: src/tables/sales/SalesOrderShipmentTable.tsx:218 +#: src/tables/sales/SalesOrderShipmentTable.tsx:263 msgid "View Sales Order" msgstr "" @@ -10617,8 +10748,8 @@ msgstr "" #: src/tables/part/PartTestResultTable.tsx:103 #: src/tables/part/PartTestResultTable.tsx:181 -#: src/tables/part/PartTestResultTable.tsx:320 -#: src/tables/part/PartTestResultTable.tsx:334 +#: src/tables/part/PartTestResultTable.tsx:328 +#: src/tables/part/PartTestResultTable.tsx:342 #: src/tables/stock/StockItemTestResultTable.tsx:296 #: src/tables/stock/StockItemTestResultTable.tsx:368 #: src/tables/stock/StockItemTestResultTable.tsx:429 @@ -10643,7 +10774,7 @@ msgstr "" msgid "No Result" msgstr "" -#: src/tables/part/PartTestResultTable.tsx:298 +#: src/tables/part/PartTestResultTable.tsx:306 msgid "Show build outputs currently in production" msgstr "" @@ -11013,36 +11144,45 @@ msgstr "" #~ msgid "Parameter updated" #~ msgstr "Parameter updated" -#: src/tables/purchasing/ManufacturerPartParameterTable.tsx:63 -#: src/tables/purchasing/ManufacturerPartParameterTable.tsx:112 -msgid "Add Parameter" -msgstr "" - #: src/tables/purchasing/ManufacturerPartParameterTable.tsx:73 #~ msgid "Parameter deleted" #~ msgstr "Parameter deleted" -#: src/tables/purchasing/ManufacturerPartParameterTable.tsx:74 -msgid "Edit Parameter" -msgstr "" - #: src/tables/purchasing/ManufacturerPartParameterTable.tsx:74 #~ msgid "Are you sure you want to delete this parameter?" #~ msgstr "Are you sure you want to delete this parameter?" -#: src/tables/purchasing/ManufacturerPartParameterTable.tsx:82 -msgid "Delete Parameter" +#: src/tables/purchasing/ManufacturerPartParametricTable.tsx:34 +#: src/tables/purchasing/ManufacturerPartTable.tsx:82 +#: src/tables/purchasing/SupplierPartTable.tsx:99 +msgid "MPN" +msgstr "" + +#: src/tables/purchasing/ManufacturerPartParametricTable.tsx:44 +#: src/tables/purchasing/ManufacturerPartTable.tsx:134 +#: src/tables/purchasing/SupplierPartTable.tsx:220 +msgid "Active Part" +msgstr "" + +#: src/tables/purchasing/ManufacturerPartParametricTable.tsx:45 +#: src/tables/purchasing/ManufacturerPartTable.tsx:135 +msgid "Show manufacturer parts for active internal parts." +msgstr "" + +#: src/tables/purchasing/ManufacturerPartParametricTable.tsx:50 +#: src/tables/purchasing/ManufacturerPartTable.tsx:140 +msgid "Active Manufacturer" +msgstr "" + +#: src/tables/purchasing/ManufacturerPartParametricTable.tsx:51 +#: src/tables/purchasing/ManufacturerPartTable.tsx:142 +msgid "Show manufacturer parts for active manufacturers." msgstr "" #: src/tables/purchasing/ManufacturerPartTable.tsx:63 #~ msgid "Create Manufacturer Part" #~ msgstr "Create Manufacturer Part" -#: src/tables/purchasing/ManufacturerPartTable.tsx:82 -#: src/tables/purchasing/SupplierPartTable.tsx:99 -msgid "MPN" -msgstr "" - #: src/tables/purchasing/ManufacturerPartTable.tsx:100 #~ msgid "Manufacturer part updated" #~ msgstr "Manufacturer part updated" @@ -11055,25 +11195,8 @@ msgstr "" #~ msgid "Are you sure you want to remove this manufacturer part?" #~ msgstr "Are you sure you want to remove this manufacturer part?" -#: src/tables/purchasing/ManufacturerPartTable.tsx:134 -#: src/tables/purchasing/SupplierPartTable.tsx:220 -msgid "Active Part" -msgstr "" - -#: src/tables/purchasing/ManufacturerPartTable.tsx:135 -msgid "Show manufacturer parts for active internal parts." -msgstr "" - -#: src/tables/purchasing/ManufacturerPartTable.tsx:140 -msgid "Active Manufacturer" -msgstr "" - -#: src/tables/purchasing/ManufacturerPartTable.tsx:142 -msgid "Show manufacturer parts for active manufacturers." -msgstr "" - #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:115 -#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:397 +#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:399 msgid "Import Line Items" msgstr "" @@ -11099,11 +11222,11 @@ msgstr "" #~ msgid "Add line item" #~ msgstr "Add line item" -#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:350 +#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:352 msgid "Receive line item" msgstr "" -#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:414 +#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:416 msgid "Receive items" msgstr "" @@ -11201,25 +11324,25 @@ msgid "Not shipped" msgstr "" #: src/tables/sales/SalesOrderAllocationTable.tsx:211 -#: src/tables/sales/SalesOrderAllocationTable.tsx:229 +#: src/tables/sales/SalesOrderAllocationTable.tsx:235 msgid "Edit Allocation" msgstr "" #: src/tables/sales/SalesOrderAllocationTable.tsx:218 #: src/tables/sales/SalesOrderAllocationTable.tsx:241 -msgid "Delete Allocation" -msgstr "" +#~ msgid "Delete Allocation" +#~ msgstr "Delete Allocation" -#: src/tables/sales/SalesOrderAllocationTable.tsx:252 -#: src/tables/sales/SalesOrderAllocationTable.tsx:253 +#: src/tables/sales/SalesOrderAllocationTable.tsx:261 +#: src/tables/sales/SalesOrderAllocationTable.tsx:262 msgid "View Shipment" msgstr "" -#: src/tables/sales/SalesOrderAllocationTable.tsx:308 +#: src/tables/sales/SalesOrderAllocationTable.tsx:317 msgid "Assign to Shipment" msgstr "" -#: src/tables/sales/SalesOrderAllocationTable.tsx:324 +#: src/tables/sales/SalesOrderAllocationTable.tsx:333 msgid "Assign to shipment" msgstr "" @@ -11259,35 +11382,35 @@ msgstr "" #~ msgid "Delete Shipment" #~ msgstr "Delete Shipment" -#: src/tables/sales/SalesOrderShipmentTable.tsx:72 +#: src/tables/sales/SalesOrderShipmentTable.tsx:79 msgid "Create Shipment" msgstr "" -#: src/tables/sales/SalesOrderShipmentTable.tsx:143 +#: src/tables/sales/SalesOrderShipmentTable.tsx:164 msgid "Items" msgstr "" -#: src/tables/sales/SalesOrderShipmentTable.tsx:203 +#: src/tables/sales/SalesOrderShipmentTable.tsx:248 msgid "Edit shipment" msgstr "" -#: src/tables/sales/SalesOrderShipmentTable.tsx:211 +#: src/tables/sales/SalesOrderShipmentTable.tsx:256 msgid "Cancel shipment" msgstr "" -#: src/tables/sales/SalesOrderShipmentTable.tsx:241 +#: src/tables/sales/SalesOrderShipmentTable.tsx:286 msgid "Add shipment" msgstr "" -#: src/tables/sales/SalesOrderShipmentTable.tsx:255 +#: src/tables/sales/SalesOrderShipmentTable.tsx:300 msgid "Show shipments which have been checked" msgstr "" -#: src/tables/sales/SalesOrderShipmentTable.tsx:260 +#: src/tables/sales/SalesOrderShipmentTable.tsx:305 msgid "Show shipments which have been shipped" msgstr "" -#: src/tables/sales/SalesOrderShipmentTable.tsx:265 +#: src/tables/sales/SalesOrderShipmentTable.tsx:310 msgid "Show shipments which have been delivered" msgstr "" @@ -11621,11 +11744,6 @@ msgstr "" msgid "Imported Rows" msgstr "" -#: src/tables/settings/ImportSessionTable.tsx:111 -#: src/tables/settings/TemplateTable.tsx:368 -msgid "Model Type" -msgstr "" - #: src/tables/settings/ImportSessionTable.tsx:112 #: src/tables/settings/TemplateTable.tsx:369 msgid "Filter by target model type" diff --git a/src/frontend/src/locales/lv/messages.po b/src/frontend/src/locales/lv/messages.po index 9366b1bbba..50dae1c7e8 100644 --- a/src/frontend/src/locales/lv/messages.po +++ b/src/frontend/src/locales/lv/messages.po @@ -8,7 +8,7 @@ msgstr "" "Language: lv\n" "Project-Id-Version: inventree\n" "Report-Msgid-Bugs-To: \n" -"PO-Revision-Date: 2025-11-19 19:39\n" +"PO-Revision-Date: 2025-12-07 07:36\n" "Last-Translator: \n" "Language-Team: Latvian\n" "Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : 2;\n" @@ -30,7 +30,7 @@ msgid "Edit" msgstr "" #: lib/components/RowActions.tsx:56 -#: src/components/forms/ApiForm.tsx:735 +#: src/components/forms/ApiForm.tsx:754 #: src/components/items/ActionDropdown.tsx:257 #: src/components/items/RoleTable.tsx:155 #: src/hooks/UseForm.tsx:164 @@ -56,24 +56,24 @@ msgstr "" #: lib/components/RowActions.tsx:136 #: src/components/nav/NavigationDrawer.tsx:190 -#: src/forms/PurchaseOrderForms.tsx:802 +#: src/forms/PurchaseOrderForms.tsx:854 #: src/forms/StockForms.tsx:796 #: src/forms/StockForms.tsx:843 -#: src/forms/StockForms.tsx:889 -#: src/forms/StockForms.tsx:928 -#: src/forms/StockForms.tsx:964 -#: src/forms/StockForms.tsx:1050 +#: src/forms/StockForms.tsx:896 +#: src/forms/StockForms.tsx:942 +#: src/forms/StockForms.tsx:980 +#: src/forms/StockForms.tsx:1066 #: src/pages/Index/Settings/AccountSettings/MFASettings.tsx:962 msgid "Actions" msgstr "" #: lib/components/SearchInput.tsx:34 -#: src/components/forms/fields/RelatedModelField.tsx:408 +#: src/components/forms/fields/RelatedModelField.tsx:479 #: src/components/nav/Header.tsx:169 #: src/components/wizards/ImportPartWizard.tsx:200 #: src/components/wizards/ImportPartWizard.tsx:233 -#: src/pages/Index/Settings/UserSettings.tsx:74 -#: src/pages/part/PartDetail.tsx:1155 +#: src/pages/Index/Settings/UserSettings.tsx:75 +#: src/pages/part/PartDetail.tsx:1176 msgid "Search" msgstr "" @@ -95,7 +95,7 @@ msgstr "" msgid "No" msgstr "" -#: lib/enums/ModelInformation.tsx:28 +#: lib/enums/ModelInformation.tsx:29 #: src/components/wizards/OrderPartsWizard.tsx:279 #: src/forms/BuildForms.tsx:332 #: src/forms/BuildForms.tsx:407 @@ -103,208 +103,234 @@ msgstr "" #: src/forms/BuildForms.tsx:630 #: src/forms/BuildForms.tsx:793 #: src/forms/BuildForms.tsx:896 -#: src/forms/PurchaseOrderForms.tsx:798 +#: src/forms/PurchaseOrderForms.tsx:850 #: src/forms/ReturnOrderForms.tsx:242 -#: src/forms/SalesOrderForms.tsx:305 +#: src/forms/SalesOrderForms.tsx:384 #: src/forms/StockForms.tsx:360 #: src/forms/StockForms.tsx:791 #: src/forms/StockForms.tsx:838 -#: src/forms/StockForms.tsx:884 -#: src/forms/StockForms.tsx:923 -#: src/forms/StockForms.tsx:959 -#: src/forms/StockForms.tsx:1002 -#: src/forms/StockForms.tsx:1046 -#: src/forms/StockForms.tsx:1094 -#: src/forms/StockForms.tsx:1138 -#: src/pages/build/BuildDetail.tsx:200 -#: src/pages/part/PartDetail.tsx:1207 +#: src/forms/StockForms.tsx:891 +#: src/forms/StockForms.tsx:937 +#: src/forms/StockForms.tsx:975 +#: src/forms/StockForms.tsx:1018 +#: src/forms/StockForms.tsx:1062 +#: src/forms/StockForms.tsx:1110 +#: src/forms/StockForms.tsx:1154 +#: src/pages/build/BuildDetail.tsx:201 +#: src/pages/part/PartDetail.tsx:1228 #: src/tables/ColumnRenderers.tsx:91 +#: src/tables/part/PartTestResultTable.tsx:247 #: src/tables/part/RelatedPartTable.tsx:53 #: src/tables/stock/StockTrackingTable.tsx:87 msgid "Part" msgstr "" -#: lib/enums/ModelInformation.tsx:29 +#: lib/enums/ModelInformation.tsx:30 #: lib/enums/Roles.tsx:35 #: src/components/nav/NavigationDrawer.tsx:70 #: src/defaults/links.tsx:36 -#: src/pages/Index/Settings/SystemSettings.tsx:190 -#: src/pages/part/CategoryDetail.tsx:132 -#: src/pages/part/CategoryDetail.tsx:277 -#: src/pages/part/CategoryDetail.tsx:323 -#: src/pages/part/CategoryDetail.tsx:354 -#: src/pages/part/PartDetail.tsx:965 +#: src/pages/Index/Settings/SystemSettings.tsx:197 +#: src/pages/part/CategoryDetail.tsx:135 +#: src/pages/part/CategoryDetail.tsx:285 +#: src/pages/part/CategoryDetail.tsx:340 +#: src/pages/part/CategoryDetail.tsx:371 +#: src/pages/part/PartDetail.tsx:978 msgid "Parts" msgstr "" #: lib/enums/ModelInformation.tsx:37 #: src/pages/Index/Settings/AdminCenter/PartParameterPanel.tsx:13 -msgid "Part Parameter Template" -msgstr "" +#~ msgid "Part Parameter Template" +#~ msgstr "Part Parameter Template" #: lib/enums/ModelInformation.tsx:38 -msgid "Part Parameter Templates" +#~ msgid "Part Parameter Templates" +#~ msgstr "Part Parameter Templates" + +#: lib/enums/ModelInformation.tsx:39 +msgid "Parameter" +msgstr "" + +#: lib/enums/ModelInformation.tsx:40 +#: src/components/panels/ParametersPanel.tsx:19 +#: src/components/wizards/ImportPartWizard.tsx:807 +#: src/pages/Index/Settings/AdminCenter/Index.tsx:195 +#: src/pages/Index/Settings/SystemSettings.tsx:191 +#: src/pages/part/PartDetail.tsx:943 +msgid "Parameters" msgstr "" #: lib/enums/ModelInformation.tsx:45 -msgid "Part Test Template" +#: src/tables/part/PartCategoryTemplateTable.tsx:87 +msgid "Parameter Template" msgstr "" #: lib/enums/ModelInformation.tsx:46 -msgid "Part Test Templates" +#: src/pages/Index/Settings/AdminCenter/ParameterPanel.tsx:13 +msgid "Parameter Templates" msgstr "" #: lib/enums/ModelInformation.tsx:52 +msgid "Part Test Template" +msgstr "" + +#: lib/enums/ModelInformation.tsx:53 +msgid "Part Test Templates" +msgstr "" + +#: lib/enums/ModelInformation.tsx:59 #: src/components/wizards/OrderPartsWizard.tsx:290 -#: src/pages/company/SupplierPartDetail.tsx:413 +#: src/pages/company/SupplierPartDetail.tsx:418 #: src/pages/stock/StockDetail.tsx:289 -#: src/tables/build/BuildAllocatedStockTable.tsx:155 +#: src/tables/build/BuildAllocatedStockTable.tsx:152 #: src/tables/part/PartPurchaseOrdersTable.tsx:50 +#: src/tables/purchasing/SupplierPartParametricTable.tsx:29 #: src/tables/purchasing/SupplierPartTable.tsx:83 #: src/tables/stock/StockItemTable.tsx:247 msgid "Supplier Part" msgstr "" -#: lib/enums/ModelInformation.tsx:53 -#: src/pages/purchasing/PurchasingIndex.tsx:92 +#: lib/enums/ModelInformation.tsx:60 +#: src/pages/purchasing/PurchasingIndex.tsx:128 msgid "Supplier Parts" msgstr "" -#: lib/enums/ModelInformation.tsx:61 -#: src/pages/company/ManufacturerPartDetail.tsx:297 -#: src/pages/company/SupplierPartDetail.tsx:161 +#: lib/enums/ModelInformation.tsx:69 +#: src/pages/company/ManufacturerPartDetail.tsx:288 +#: src/pages/company/SupplierPartDetail.tsx:162 #: src/tables/part/PartPurchaseOrdersTable.tsx:56 #: src/tables/stock/StockItemTable.tsx:253 msgid "Manufacturer Part" msgstr "" -#: lib/enums/ModelInformation.tsx:62 -#: src/pages/purchasing/PurchasingIndex.tsx:109 +#: lib/enums/ModelInformation.tsx:70 +#: src/pages/purchasing/PurchasingIndex.tsx:177 msgid "Manufacturer Parts" msgstr "" -#: lib/enums/ModelInformation.tsx:70 -#: src/pages/part/CategoryDetail.tsx:354 +#: lib/enums/ModelInformation.tsx:79 +#: src/pages/part/CategoryDetail.tsx:371 #: src/tables/Filter.tsx:389 msgid "Part Category" msgstr "" -#: lib/enums/ModelInformation.tsx:71 +#: lib/enums/ModelInformation.tsx:80 #: lib/enums/Roles.tsx:37 -#: src/pages/part/CategoryDetail.tsx:271 -#: src/pages/part/CategoryDetail.tsx:345 -#: src/pages/part/PartDetail.tsx:1196 +#: src/pages/part/CategoryDetail.tsx:279 +#: src/pages/part/CategoryDetail.tsx:362 +#: src/pages/part/PartDetail.tsx:1217 msgid "Part Categories" msgstr "" -#: lib/enums/ModelInformation.tsx:79 +#: lib/enums/ModelInformation.tsx:88 #: src/forms/BuildForms.tsx:473 #: src/forms/BuildForms.tsx:633 #: src/forms/BuildForms.tsx:794 -#: src/forms/SalesOrderForms.tsx:307 +#: src/forms/SalesOrderForms.tsx:386 #: src/pages/stock/StockDetail.tsx:1005 -#: src/tables/part/PartTestResultTable.tsx:248 +#: src/tables/part/PartTestResultTable.tsx:256 #: src/tables/stock/StockTrackingTable.tsx:48 #: src/tables/stock/StockTrackingTable.tsx:55 msgid "Stock Item" msgstr "" -#: lib/enums/ModelInformation.tsx:80 +#: lib/enums/ModelInformation.tsx:89 #: lib/enums/Roles.tsx:45 -#: src/pages/company/CompanyDetail.tsx:210 -#: src/pages/part/CategoryDetail.tsx:291 +#: src/pages/company/CompanyDetail.tsx:211 +#: src/pages/part/CategoryDetail.tsx:314 #: src/pages/part/PartStockHistoryDetail.tsx:101 #: src/pages/stock/LocationDetail.tsx:121 #: src/pages/stock/LocationDetail.tsx:180 msgid "Stock Items" msgstr "" -#: lib/enums/ModelInformation.tsx:88 +#: lib/enums/ModelInformation.tsx:98 #: lib/enums/Roles.tsx:47 #: src/pages/stock/LocationDetail.tsx:420 msgid "Stock Location" msgstr "" -#: lib/enums/ModelInformation.tsx:89 +#: lib/enums/ModelInformation.tsx:99 #: src/pages/stock/LocationDetail.tsx:174 #: src/pages/stock/LocationDetail.tsx:412 #: src/pages/stock/StockDetail.tsx:996 msgid "Stock Locations" msgstr "" -#: lib/enums/ModelInformation.tsx:97 +#: lib/enums/ModelInformation.tsx:108 msgid "Stock Location Type" msgstr "" -#: lib/enums/ModelInformation.tsx:98 +#: lib/enums/ModelInformation.tsx:109 msgid "Stock Location Types" msgstr "" -#: lib/enums/ModelInformation.tsx:103 -#: src/pages/Index/Settings/SystemSettings.tsx:248 -#: src/pages/part/PartDetail.tsx:911 +#: lib/enums/ModelInformation.tsx:114 +#: src/pages/Index/Settings/SystemSettings.tsx:254 +#: src/pages/part/PartDetail.tsx:900 msgid "Stock History" msgstr "" -#: lib/enums/ModelInformation.tsx:104 +#: lib/enums/ModelInformation.tsx:115 msgid "Stock Histories" msgstr "" -#: lib/enums/ModelInformation.tsx:109 +#: lib/enums/ModelInformation.tsx:120 msgid "Build" msgstr "" -#: lib/enums/ModelInformation.tsx:110 +#: lib/enums/ModelInformation.tsx:121 msgid "Builds" msgstr "" -#: lib/enums/ModelInformation.tsx:118 +#: lib/enums/ModelInformation.tsx:130 msgid "Build Line" msgstr "" -#: lib/enums/ModelInformation.tsx:119 +#: lib/enums/ModelInformation.tsx:131 msgid "Build Lines" msgstr "" -#: lib/enums/ModelInformation.tsx:126 +#: lib/enums/ModelInformation.tsx:138 msgid "Build Item" msgstr "" -#: lib/enums/ModelInformation.tsx:127 +#: lib/enums/ModelInformation.tsx:139 msgid "Build Items" msgstr "" -#: lib/enums/ModelInformation.tsx:132 -#: src/pages/company/CompanyDetail.tsx:340 +#: lib/enums/ModelInformation.tsx:144 +#: src/pages/company/CompanyDetail.tsx:345 #: src/tables/company/CompanyTable.tsx:47 #: src/tables/company/ContactTable.tsx:67 +#: src/tables/company/ParametricCompanyTable.tsx:18 msgid "Company" msgstr "" -#: lib/enums/ModelInformation.tsx:133 +#: lib/enums/ModelInformation.tsx:145 msgid "Companies" msgstr "" -#: lib/enums/ModelInformation.tsx:140 -#: src/pages/build/BuildDetail.tsx:316 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:253 -#: src/pages/sales/ReturnOrderDetail.tsx:231 -#: src/pages/sales/SalesOrderDetail.tsx:224 +#: lib/enums/ModelInformation.tsx:152 +#: src/pages/build/BuildDetail.tsx:317 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:254 +#: src/pages/sales/ReturnOrderDetail.tsx:232 +#: src/pages/sales/SalesOrderDetail.tsx:225 #: src/tables/ColumnRenderers.tsx:362 #: src/tables/Filter.tsx:286 #: src/tables/TableHoverCard.tsx:101 msgid "Project Code" msgstr "" -#: lib/enums/ModelInformation.tsx:141 +#: lib/enums/ModelInformation.tsx:153 #: src/pages/Index/Settings/AdminCenter/Index.tsx:172 msgid "Project Codes" msgstr "" -#: lib/enums/ModelInformation.tsx:147 +#: lib/enums/ModelInformation.tsx:159 #: src/components/wizards/OrderPartsWizard.tsx:338 #: src/pages/part/pricing/PurchaseHistoryPanel.tsx:33 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:550 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:555 #: src/pages/stock/StockDetail.tsx:352 #: src/tables/part/PartPurchaseOrdersTable.tsx:32 #: src/tables/stock/StockItemTable.tsx:239 @@ -312,117 +338,117 @@ msgstr "" msgid "Purchase Order" msgstr "" -#: lib/enums/ModelInformation.tsx:148 +#: lib/enums/ModelInformation.tsx:160 #: lib/enums/Roles.tsx:39 #: src/defaults/actions.tsx:104 -#: src/pages/Index/Settings/SystemSettings.tsx:283 -#: src/pages/company/CompanyDetail.tsx:203 -#: src/pages/company/SupplierPartDetail.tsx:266 -#: src/pages/part/PartDetail.tsx:875 -#: src/pages/purchasing/PurchasingIndex.tsx:60 +#: src/pages/Index/Settings/SystemSettings.tsx:289 +#: src/pages/company/CompanyDetail.tsx:204 +#: src/pages/company/SupplierPartDetail.tsx:267 +#: src/pages/part/PartDetail.tsx:864 +#: src/pages/purchasing/PurchasingIndex.tsx:66 msgid "Purchase Orders" msgstr "" -#: lib/enums/ModelInformation.tsx:156 +#: lib/enums/ModelInformation.tsx:169 msgid "Purchase Order Line" msgstr "" -#: lib/enums/ModelInformation.tsx:157 +#: lib/enums/ModelInformation.tsx:170 msgid "Purchase Order Lines" msgstr "" -#: lib/enums/ModelInformation.tsx:162 -#: src/pages/build/BuildDetail.tsx:289 +#: lib/enums/ModelInformation.tsx:175 +#: src/pages/build/BuildDetail.tsx:290 #: src/pages/part/pricing/SaleHistoryPanel.tsx:24 -#: src/pages/sales/SalesOrderDetail.tsx:614 -#: src/pages/sales/SalesOrderShipmentDetail.tsx:105 -#: src/pages/sales/SalesOrderShipmentDetail.tsx:478 +#: src/pages/sales/SalesOrderDetail.tsx:619 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:103 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:446 #: src/pages/stock/StockDetail.tsx:361 #: src/tables/part/PartSalesAllocationsTable.tsx:41 #: src/tables/sales/SalesOrderAllocationTable.tsx:110 -#: src/tables/sales/SalesOrderShipmentTable.tsx:122 +#: src/tables/sales/SalesOrderShipmentTable.tsx:143 #: src/tables/stock/StockTrackingTable.tsx:131 msgid "Sales Order" msgstr "" -#: lib/enums/ModelInformation.tsx:163 +#: lib/enums/ModelInformation.tsx:176 #: lib/enums/Roles.tsx:43 #: src/defaults/actions.tsx:114 -#: src/pages/Index/Settings/SystemSettings.tsx:299 -#: src/pages/company/CompanyDetail.tsx:223 -#: src/pages/part/PartDetail.tsx:887 -#: src/pages/sales/SalesIndex.tsx:84 +#: src/pages/Index/Settings/SystemSettings.tsx:305 +#: src/pages/company/CompanyDetail.tsx:224 +#: src/pages/part/PartDetail.tsx:876 +#: src/pages/sales/SalesIndex.tsx:53 msgid "Sales Orders" msgstr "" -#: lib/enums/ModelInformation.tsx:171 -#: src/pages/sales/SalesOrderShipmentDetail.tsx:477 +#: lib/enums/ModelInformation.tsx:185 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:445 msgid "Sales Order Shipment" msgstr "" -#: lib/enums/ModelInformation.tsx:172 +#: lib/enums/ModelInformation.tsx:186 msgid "Sales Order Shipments" msgstr "" -#: lib/enums/ModelInformation.tsx:179 -#: src/pages/sales/ReturnOrderDetail.tsx:549 +#: lib/enums/ModelInformation.tsx:194 +#: src/pages/sales/ReturnOrderDetail.tsx:554 #: src/tables/stock/StockTrackingTable.tsx:142 msgid "Return Order" msgstr "" -#: lib/enums/ModelInformation.tsx:180 +#: lib/enums/ModelInformation.tsx:195 #: lib/enums/Roles.tsx:41 #: src/defaults/actions.tsx:125 -#: src/pages/Index/Settings/SystemSettings.tsx:316 -#: src/pages/company/CompanyDetail.tsx:230 -#: src/pages/part/PartDetail.tsx:894 -#: src/pages/sales/SalesIndex.tsx:117 +#: src/pages/Index/Settings/SystemSettings.tsx:322 +#: src/pages/company/CompanyDetail.tsx:231 +#: src/pages/part/PartDetail.tsx:883 +#: src/pages/sales/SalesIndex.tsx:99 msgid "Return Orders" msgstr "" -#: lib/enums/ModelInformation.tsx:188 +#: lib/enums/ModelInformation.tsx:204 msgid "Return Order Line Item" msgstr "" -#: lib/enums/ModelInformation.tsx:189 +#: lib/enums/ModelInformation.tsx:205 msgid "Return Order Line Items" msgstr "" -#: lib/enums/ModelInformation.tsx:194 +#: lib/enums/ModelInformation.tsx:210 #: src/tables/company/AddressTable.tsx:52 msgid "Address" msgstr "" -#: lib/enums/ModelInformation.tsx:195 -#: src/pages/company/CompanyDetail.tsx:264 +#: lib/enums/ModelInformation.tsx:211 +#: src/pages/company/CompanyDetail.tsx:265 msgid "Addresses" msgstr "" -#: lib/enums/ModelInformation.tsx:201 +#: lib/enums/ModelInformation.tsx:217 #: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:89 #: src/pages/core/UserDetail.tsx:135 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:229 -#: src/pages/sales/ReturnOrderDetail.tsx:207 -#: src/pages/sales/SalesOrderDetail.tsx:200 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:230 +#: src/pages/sales/ReturnOrderDetail.tsx:208 +#: src/pages/sales/SalesOrderDetail.tsx:201 msgid "Contact" msgstr "" -#: lib/enums/ModelInformation.tsx:202 -#: src/pages/company/CompanyDetail.tsx:258 +#: lib/enums/ModelInformation.tsx:218 +#: src/pages/company/CompanyDetail.tsx:259 #: src/pages/core/CoreIndex.tsx:33 msgid "Contacts" msgstr "" -#: lib/enums/ModelInformation.tsx:208 +#: lib/enums/ModelInformation.tsx:224 #: src/tables/ColumnRenderers.tsx:444 msgid "Owner" msgstr "" -#: lib/enums/ModelInformation.tsx:209 +#: lib/enums/ModelInformation.tsx:225 msgid "Owners" msgstr "" -#: lib/enums/ModelInformation.tsx:215 +#: lib/enums/ModelInformation.tsx:231 #: src/pages/Auth/ChangePassword.tsx:36 #: src/pages/core/UserDetail.tsx:220 #: src/tables/ColumnRenderers.tsx:395 @@ -437,7 +463,7 @@ msgstr "" msgid "User" msgstr "" -#: lib/enums/ModelInformation.tsx:216 +#: lib/enums/ModelInformation.tsx:232 #: src/components/nav/NavigationDrawer.tsx:105 #: src/pages/Index/Settings/AdminCenter/UserManagementPanel.tsx:15 #: src/pages/core/CoreIndex.tsx:21 @@ -445,12 +471,12 @@ msgstr "" msgid "Users" msgstr "" -#: lib/enums/ModelInformation.tsx:222 +#: lib/enums/ModelInformation.tsx:238 #: src/pages/core/GroupDetail.tsx:78 msgid "Group" msgstr "" -#: lib/enums/ModelInformation.tsx:223 +#: lib/enums/ModelInformation.tsx:239 #: src/components/nav/NavigationDrawer.tsx:111 #: src/pages/Index/Settings/AdminCenter/UserManagementPanel.tsx:23 #: src/pages/core/CoreIndex.tsx:27 @@ -460,64 +486,64 @@ msgstr "" msgid "Groups" msgstr "" -#: lib/enums/ModelInformation.tsx:230 +#: lib/enums/ModelInformation.tsx:246 msgid "Import Session" msgstr "" -#: lib/enums/ModelInformation.tsx:231 +#: lib/enums/ModelInformation.tsx:247 msgid "Import Sessions" msgstr "" -#: lib/enums/ModelInformation.tsx:238 +#: lib/enums/ModelInformation.tsx:254 msgid "Label Template" msgstr "" -#: lib/enums/ModelInformation.tsx:239 +#: lib/enums/ModelInformation.tsx:255 #: src/pages/Index/Settings/AdminCenter/Index.tsx:209 msgid "Label Templates" msgstr "" -#: lib/enums/ModelInformation.tsx:246 +#: lib/enums/ModelInformation.tsx:262 msgid "Report Template" msgstr "" -#: lib/enums/ModelInformation.tsx:247 +#: lib/enums/ModelInformation.tsx:263 #: src/pages/Index/Settings/AdminCenter/Index.tsx:215 msgid "Report Templates" msgstr "" -#: lib/enums/ModelInformation.tsx:254 +#: lib/enums/ModelInformation.tsx:270 #: src/components/plugins/PluginDrawer.tsx:145 msgid "Plugin Configuration" msgstr "" -#: lib/enums/ModelInformation.tsx:255 +#: lib/enums/ModelInformation.tsx:271 msgid "Plugin Configurations" msgstr "" -#: lib/enums/ModelInformation.tsx:262 +#: lib/enums/ModelInformation.tsx:278 msgid "Content Type" msgstr "" -#: lib/enums/ModelInformation.tsx:263 +#: lib/enums/ModelInformation.tsx:279 msgid "Content Types" msgstr "" -#: lib/enums/ModelInformation.tsx:268 +#: lib/enums/ModelInformation.tsx:284 msgid "Selection List" msgstr "" -#: lib/enums/ModelInformation.tsx:269 -#: src/pages/Index/Settings/AdminCenter/PartParameterPanel.tsx:21 +#: lib/enums/ModelInformation.tsx:285 +#: src/pages/Index/Settings/AdminCenter/ParameterPanel.tsx:21 msgid "Selection Lists" msgstr "" -#: lib/enums/ModelInformation.tsx:275 +#: lib/enums/ModelInformation.tsx:291 #: src/components/barcodes/BarcodeInput.tsx:114 #: src/components/dashboard/DashboardLayout.tsx:281 #: src/components/editors/NotesEditor.tsx:74 #: src/components/editors/TemplateEditor/TemplateEditor.tsx:158 -#: src/components/forms/fields/ApiFormField.tsx:273 +#: src/components/forms/fields/ApiFormField.tsx:237 #: src/components/forms/fields/TableField.tsx:45 #: src/components/importer/ImportDataSelector.tsx:192 #: src/components/importer/ImporterColumnSelector.tsx:234 @@ -528,7 +554,7 @@ msgstr "" #: src/components/nav/SearchDrawer.tsx:572 #: src/components/settings/SettingList.tsx:139 #: src/components/wizards/ImportPartWizard.tsx:574 -#: src/components/wizards/ImportPartWizard.tsx:718 +#: src/components/wizards/ImportPartWizard.tsx:719 #: src/forms/BomForms.tsx:69 #: src/functions/auth.tsx:643 #: src/pages/ErrorPage.tsx:11 @@ -547,9 +573,9 @@ msgstr "" msgid "Error" msgstr "" -#: lib/enums/ModelInformation.tsx:276 +#: lib/enums/ModelInformation.tsx:292 #: src/tables/machine/MachineListTable.tsx:402 -#: src/tables/machine/MachineTypeTable.tsx:299 +#: src/tables/machine/MachineTypeTable.tsx:297 msgid "Errors" msgstr "" @@ -559,10 +585,10 @@ msgstr "" #: lib/enums/Roles.tsx:33 #: src/defaults/actions.tsx:135 -#: src/pages/Index/Settings/SystemSettings.tsx:264 -#: src/pages/build/BuildIndex.tsx:75 -#: src/pages/part/PartDetail.tsx:904 -#: src/pages/sales/SalesOrderDetail.tsx:421 +#: src/pages/Index/Settings/SystemSettings.tsx:270 +#: src/pages/build/BuildIndex.tsx:67 +#: src/pages/part/PartDetail.tsx:893 +#: src/pages/sales/SalesOrderDetail.tsx:422 msgid "Build Orders" msgstr "" @@ -639,39 +665,39 @@ msgstr "" msgid "Enter barcode data" msgstr "" -#: src/components/barcodes/BarcodeScanDialog.tsx:49 -#: src/components/buttons/ScanButton.tsx:15 +#: src/components/barcodes/BarcodeScanDialog.tsx:56 +#: src/components/buttons/ScanButton.tsx:27 #: src/components/nav/NavigationDrawer.tsx:122 -#: src/forms/PurchaseOrderForms.tsx:457 -#: src/forms/PurchaseOrderForms.tsx:563 +#: src/forms/PurchaseOrderForms.tsx:509 +#: src/forms/PurchaseOrderForms.tsx:615 msgid "Scan Barcode" msgstr "" -#: src/components/barcodes/BarcodeScanDialog.tsx:105 +#: src/components/barcodes/BarcodeScanDialog.tsx:121 msgid "No matching item found" msgstr "" -#: src/components/barcodes/BarcodeScanDialog.tsx:134 +#: src/components/barcodes/BarcodeScanDialog.tsx:150 msgid "Barcode does not match the expected model type" msgstr "" -#: src/components/barcodes/BarcodeScanDialog.tsx:145 +#: src/components/barcodes/BarcodeScanDialog.tsx:161 #: src/components/editors/NotesEditor.tsx:84 #: src/components/editors/NotesEditor.tsx:118 -#: src/components/forms/ApiForm.tsx:465 +#: src/components/forms/ApiForm.tsx:484 #: src/components/wizards/ImportPartWizard.tsx:566 -#: src/components/wizards/ImportPartWizard.tsx:690 +#: src/components/wizards/ImportPartWizard.tsx:691 #: src/pages/Index/Settings/AdminCenter/CurrencyManagementPanel.tsx:45 #: src/tables/bom/BomTable.tsx:548 #: src/tables/settings/PendingTasksTable.tsx:68 msgid "Success" msgstr "" -#: src/components/barcodes/BarcodeScanDialog.tsx:151 +#: src/components/barcodes/BarcodeScanDialog.tsx:167 msgid "Failed to handle barcode" msgstr "" -#: src/components/barcodes/BarcodeScanDialog.tsx:167 +#: src/components/barcodes/BarcodeScanDialog.tsx:183 #: src/pages/Index/Scan.tsx:129 msgid "Failed to scan barcode" msgstr "" @@ -714,10 +740,10 @@ msgstr "" #: src/components/barcodes/QRCode.tsx:179 #: src/pages/part/PartDetail.tsx:521 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:222 -#: src/pages/sales/ReturnOrderDetail.tsx:188 -#: src/pages/sales/SalesOrderDetail.tsx:181 -#: src/pages/sales/SalesOrderShipmentDetail.tsx:122 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:223 +#: src/pages/sales/ReturnOrderDetail.tsx:189 +#: src/pages/sales/SalesOrderDetail.tsx:182 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:120 #: src/pages/stock/StockDetail.tsx:186 msgid "Link" msgstr "" @@ -728,7 +754,7 @@ msgstr "" #: src/components/barcodes/QRCode.tsx:205 #: src/components/items/ActionDropdown.tsx:192 -#: src/forms/PurchaseOrderForms.tsx:554 +#: src/forms/PurchaseOrderForms.tsx:606 msgid "Unlink Barcode" msgstr "" @@ -829,14 +855,14 @@ msgstr "" #~ msgid "Scan QR code" #~ msgstr "Scan QR code" -#: src/components/buttons/ScanButton.tsx:19 -msgid "Open Barcode Scanner" -msgstr "" - #: src/components/buttons/ScanButton.tsx:20 #~ msgid "Open QR code scanner" #~ msgstr "Open QR code scanner" +#: src/components/buttons/ScanButton.tsx:32 +msgid "Open Barcode Scanner" +msgstr "" + #: src/components/buttons/SpotlightButton.tsx:12 msgid "Open spotlight" msgstr "" @@ -1059,7 +1085,7 @@ msgid "Show the number of sales orders which are assigned to you" msgstr "" #: src/components/dashboard/DashboardWidgetLibrary.tsx:129 -#: src/pages/sales/SalesIndex.tsx:105 +#: src/pages/sales/SalesIndex.tsx:87 msgid "Pending Shipments" msgstr "" @@ -1210,12 +1236,18 @@ msgid "Remove the associated image from this item?" msgstr "" #: src/components/details/DetailsImage.tsx:83 -#: src/forms/StockForms.tsx:888 +#: src/forms/StockForms.tsx:895 #: src/pages/Index/Settings/AccountSettings/MFASettings.tsx:324 #: src/pages/Index/Settings/AccountSettings/MFASettings.tsx:415 #: src/pages/Index/Settings/AccountSettings/MFASettings.tsx:884 #: src/pages/Index/Settings/AccountSettings/MFASettings.tsx:903 #: src/pages/Index/Settings/AccountSettings/SecurityContent.tsx:254 +#: src/tables/build/BuildAllocatedStockTable.tsx:178 +#: src/tables/build/BuildAllocatedStockTable.tsx:258 +#: src/tables/build/BuildLineTable.tsx:111 +#: src/tables/build/BuildLineTable.tsx:665 +#: src/tables/sales/SalesOrderAllocationTable.tsx:224 +#: src/tables/sales/SalesOrderAllocationTable.tsx:247 msgid "Remove" msgstr "" @@ -1241,12 +1273,12 @@ msgid "Upload Error" msgstr "" #: src/components/details/DetailsImage.tsx:250 -#: src/components/forms/fields/TextField.tsx:65 +#: src/components/forms/fields/AutoFillRightSection.tsx:34 msgid "Clear" msgstr "" #: src/components/details/DetailsImage.tsx:256 -#: src/components/forms/ApiForm.tsx:677 +#: src/components/forms/ApiForm.tsx:696 #: src/contexts/ThemeContext.tsx:44 #: src/pages/Index/Settings/AccountSettings/MFASettings.tsx:149 #: src/pages/Index/Settings/AccountSettings/MFASettings.tsx:568 @@ -1499,8 +1531,8 @@ msgstr "" msgid "A server error occurred" msgstr "" -#: src/components/forms/ApiForm.tsx:103 -#: src/components/forms/ApiForm.tsx:594 +#: src/components/forms/ApiForm.tsx:107 +#: src/components/forms/ApiForm.tsx:613 msgid "Form Error" msgstr "" @@ -1508,11 +1540,11 @@ msgstr "" #~ msgid "Form Errors Exist" #~ msgstr "Form Errors Exist" -#: src/components/forms/ApiForm.tsx:604 +#: src/components/forms/ApiForm.tsx:623 msgid "Errors exist for one or more form fields" msgstr "" -#: src/components/forms/ApiForm.tsx:715 +#: src/components/forms/ApiForm.tsx:734 #: src/hooks/UseForm.tsx:133 #: src/tables/plugin/PluginListTable.tsx:204 msgid "Update" @@ -1698,15 +1730,14 @@ msgstr "" #: src/components/forms/InstanceOptions.tsx:124 #: src/components/plugins/PluginDrawer.tsx:68 #: src/pages/Index/Settings/AdminCenter/UnitManagementPanel.tsx:19 -#: src/pages/part/CategoryDetail.tsx:88 +#: src/pages/part/CategoryDetail.tsx:91 #: src/pages/part/PartDetail.tsx:446 #: src/pages/stock/LocationDetail.tsx:82 #: src/tables/machine/MachineTypeTable.tsx:67 -#: src/tables/machine/MachineTypeTable.tsx:151 -#: src/tables/machine/MachineTypeTable.tsx:254 -#: src/tables/machine/MachineTypeTable.tsx:357 +#: src/tables/machine/MachineTypeTable.tsx:149 +#: src/tables/machine/MachineTypeTable.tsx:252 +#: src/tables/machine/MachineTypeTable.tsx:355 #: src/tables/plugin/PluginErrorTable.tsx:33 -#: src/tables/purchasing/ManufacturerPartParameterTable.tsx:36 #: src/tables/settings/ApiTokenTable.tsx:57 #: src/tables/settings/GroupTable.tsx:95 #: src/tables/settings/GroupTable.tsx:148 @@ -1769,7 +1800,7 @@ msgstr "" #~ msgstr "State: <0>worker ({0}), <1>plugins{1}" #: src/components/forms/InstanceOptions.tsx:118 -#: src/pages/Index/Settings/SystemSettings.tsx:45 +#: src/pages/Index/Settings/SystemSettings.tsx:46 msgid "Server" msgstr "" @@ -1793,6 +1824,8 @@ msgid "Plugins" msgstr "" #: src/components/forms/InstanceOptions.tsx:143 +#: src/tables/general/ParameterTemplateTable.tsx:153 +#: src/tables/general/ParameterTemplateTable.tsx:188 #: src/tables/part/PartTestTemplateTable.tsx:117 #: src/tables/settings/TemplateTable.tsx:251 #: src/tables/settings/TemplateTable.tsx:362 @@ -1817,10 +1850,14 @@ msgstr "" msgid "Running" msgstr "" -#: src/components/forms/fields/ApiFormField.tsx:233 +#: src/components/forms/fields/ApiFormField.tsx:197 msgid "Select file to upload" msgstr "" +#: src/components/forms/fields/AutoFillRightSection.tsx:47 +msgid "Accept suggested value" +msgstr "" + #: src/components/forms/fields/DateField.tsx:76 msgid "Select date" msgstr "" @@ -1853,13 +1890,13 @@ msgstr "" msgid "{0} icons" msgstr "" -#: src/components/forms/fields/RelatedModelField.tsx:409 +#: src/components/forms/fields/RelatedModelField.tsx:480 #: src/components/modals/AboutInvenTreeModal.tsx:96 #: src/pages/Index/Settings/AccountSettings/SecurityContent.tsx:383 msgid "Loading" msgstr "" -#: src/components/forms/fields/RelatedModelField.tsx:411 +#: src/components/forms/fields/RelatedModelField.tsx:482 msgid "No results found" msgstr "" @@ -1875,10 +1912,6 @@ msgstr "" msgid "Add new row" msgstr "" -#: src/components/forms/fields/TextField.tsx:82 -msgid "Accept suggested value" -msgstr "" - #: src/components/images/DetailsImage.tsx:252 #~ msgid "Select image" #~ msgstr "Select image" @@ -2036,7 +2069,7 @@ msgstr "" #: src/components/importer/ImporterDrawer.tsx:109 #: src/components/modals/AboutInvenTreeModal.tsx:205 #: src/components/modals/ServerInfoModal.tsx:134 -#: src/components/wizards/ImportPartWizard.tsx:772 +#: src/components/wizards/ImportPartWizard.tsx:773 #: src/forms/BomForms.tsx:132 #: src/pages/Index/Settings/AccountSettings/MFASettings.tsx:685 msgid "Close" @@ -2199,7 +2232,7 @@ msgid "Change" msgstr "" #: src/components/items/RoleTable.tsx:150 -#: src/forms/StockForms.tsx:927 +#: src/forms/StockForms.tsx:941 #: src/tables/stock/StockItemTestResultTable.tsx:367 msgid "Add" msgstr "" @@ -2222,11 +2255,11 @@ msgstr "" #: src/components/items/TransferList.tsx:161 #: src/components/render/Stock.tsx:102 -#: src/pages/part/PartDetail.tsx:994 +#: src/pages/part/PartDetail.tsx:1009 #: src/pages/stock/StockDetail.tsx:265 #: src/pages/stock/StockDetail.tsx:942 -#: src/tables/build/BuildAllocatedStockTable.tsx:135 -#: src/tables/build/BuildLineTable.tsx:192 +#: src/tables/build/BuildAllocatedStockTable.tsx:132 +#: src/tables/build/BuildLineTable.tsx:193 #: src/tables/part/PartTable.tsx:137 #: src/tables/stock/StockItemTable.tsx:182 #: src/tables/stock/StockItemTable.tsx:343 @@ -2373,7 +2406,7 @@ msgid "Database" msgstr "" #: src/components/modals/ServerInfoModal.tsx:49 -#: src/components/nav/Alerts.tsx:118 +#: src/components/nav/Alerts.tsx:120 msgid "Debug Mode" msgstr "" @@ -2414,7 +2447,7 @@ msgid "Issues detected" msgstr "" #: src/components/modals/ServerInfoModal.tsx:102 -#: src/components/nav/Alerts.tsx:125 +#: src/components/nav/Alerts.tsx:127 msgid "Background Worker" msgstr "" @@ -2436,7 +2469,7 @@ msgstr "" #~ msgstr "Email settings not configured" #: src/components/modals/ServerInfoModal.tsx:120 -#: src/components/nav/Alerts.tsx:141 +#: src/components/nav/Alerts.tsx:143 msgid "Email settings not configured." msgstr "" @@ -2444,43 +2477,47 @@ msgstr "" msgid "Alerts" msgstr "" -#: src/components/nav/Alerts.tsx:120 +#: src/components/nav/Alerts.tsx:97 +msgid "No issues detected" +msgstr "" + +#: src/components/nav/Alerts.tsx:122 msgid "The server is running in debug mode." msgstr "" -#: src/components/nav/Alerts.tsx:127 +#: src/components/nav/Alerts.tsx:129 msgid "The background worker process is not running." msgstr "" -#: src/components/nav/Alerts.tsx:132 +#: src/components/nav/Alerts.tsx:134 msgid "Server Restart" msgstr "" -#: src/components/nav/Alerts.tsx:134 +#: src/components/nav/Alerts.tsx:136 msgid "The server requires a restart to apply changes." msgstr "" -#: src/components/nav/Alerts.tsx:139 +#: src/components/nav/Alerts.tsx:141 msgid "Email settings" msgstr "" -#: src/components/nav/Alerts.tsx:146 +#: src/components/nav/Alerts.tsx:148 msgid "Database Migrations" msgstr "" -#: src/components/nav/Alerts.tsx:148 +#: src/components/nav/Alerts.tsx:150 msgid "There are pending database migrations." msgstr "" -#: src/components/nav/Alerts.tsx:163 +#: src/components/nav/Alerts.tsx:165 msgid "Learn more about {code}" msgstr "" #: src/components/nav/Header.tsx:188 #: src/components/nav/NavigationDrawer.tsx:134 #: src/components/nav/NotificationDrawer.tsx:181 -#: src/pages/Index/Settings/SystemSettings.tsx:121 -#: src/pages/Index/Settings/UserSettings.tsx:106 +#: src/pages/Index/Settings/SystemSettings.tsx:122 +#: src/pages/Index/Settings/UserSettings.tsx:107 #: src/pages/Notifications.tsx:45 #: src/pages/Notifications.tsx:130 msgid "Notifications" @@ -2511,8 +2548,8 @@ msgstr "" #: src/components/nav/NavigationDrawer.tsx:140 #: src/components/nav/SettingsHeader.tsx:40 #: src/defaults/actions.tsx:92 -#: src/pages/Index/Settings/UserSettings.tsx:141 -#: src/pages/Index/Settings/UserSettings.tsx:145 +#: src/pages/Index/Settings/UserSettings.tsx:142 +#: src/pages/Index/Settings/UserSettings.tsx:146 msgid "User Settings" msgstr "" @@ -2529,8 +2566,8 @@ msgstr "" #: src/components/nav/NavigationDrawer.tsx:146 #: src/components/nav/SettingsHeader.tsx:41 #: src/defaults/actions.tsx:144 -#: src/pages/Index/Settings/SystemSettings.tsx:348 -#: src/pages/Index/Settings/SystemSettings.tsx:353 +#: src/pages/Index/Settings/SystemSettings.tsx:354 +#: src/pages/Index/Settings/SystemSettings.tsx:359 msgid "System Settings" msgstr "" @@ -2577,11 +2614,11 @@ msgstr "" #: src/components/nav/NavigationDrawer.tsx:77 #: src/components/render/Part.tsx:36 -#: src/components/wizards/ImportPartWizard.tsx:807 +#: src/components/wizards/ImportPartWizard.tsx:808 #: src/defaults/links.tsx:42 #: src/forms/StockForms.tsx:794 -#: src/pages/Index/Settings/SystemSettings.tsx:224 -#: src/pages/part/PartDetail.tsx:804 +#: src/pages/Index/Settings/SystemSettings.tsx:230 +#: src/pages/part/PartDetail.tsx:793 #: src/pages/stock/LocationDetail.tsx:390 #: src/pages/stock/LocationDetail.tsx:420 #: src/pages/stock/StockDetail.tsx:642 @@ -2591,29 +2628,29 @@ msgstr "" #: src/components/nav/NavigationDrawer.tsx:84 #: src/defaults/links.tsx:48 -#: src/pages/build/BuildDetail.tsx:748 -#: src/pages/build/BuildIndex.tsx:102 +#: src/pages/build/BuildDetail.tsx:753 +#: src/pages/build/BuildIndex.tsx:101 msgid "Manufacturing" msgstr "" #: src/components/nav/NavigationDrawer.tsx:91 #: src/defaults/links.tsx:54 #: src/pages/company/ManufacturerDetail.tsx:9 -#: src/pages/company/ManufacturerPartDetail.tsx:276 +#: src/pages/company/ManufacturerPartDetail.tsx:267 #: src/pages/company/SupplierDetail.tsx:9 -#: src/pages/company/SupplierPartDetail.tsx:360 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:553 -#: src/pages/purchasing/PurchasingIndex.tsx:122 +#: src/pages/company/SupplierPartDetail.tsx:365 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:558 +#: src/pages/purchasing/PurchasingIndex.tsx:212 msgid "Purchasing" msgstr "" #: src/components/nav/NavigationDrawer.tsx:98 #: src/defaults/links.tsx:60 #: src/pages/company/CustomerDetail.tsx:9 -#: src/pages/sales/ReturnOrderDetail.tsx:554 -#: src/pages/sales/SalesIndex.tsx:153 -#: src/pages/sales/SalesOrderDetail.tsx:619 -#: src/pages/sales/SalesOrderShipmentDetail.tsx:480 +#: src/pages/sales/ReturnOrderDetail.tsx:559 +#: src/pages/sales/SalesIndex.tsx:168 +#: src/pages/sales/SalesOrderDetail.tsx:624 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:448 msgid "Sales" msgstr "" @@ -2667,21 +2704,21 @@ msgid "Remove search group" msgstr "" #: src/components/nav/SearchDrawer.tsx:288 -#: src/pages/company/ManufacturerPartDetail.tsx:192 -#: src/pages/part/PartDetail.tsx:862 +#: src/pages/company/ManufacturerPartDetail.tsx:179 +#: src/pages/part/PartDetail.tsx:851 #: src/pages/part/PartSupplierDetail.tsx:15 -#: src/pages/purchasing/PurchasingIndex.tsx:81 +#: src/pages/purchasing/PurchasingIndex.tsx:100 msgid "Suppliers" msgstr "" #: src/components/nav/SearchDrawer.tsx:298 #: src/pages/part/PartSupplierDetail.tsx:23 -#: src/pages/purchasing/PurchasingIndex.tsx:98 +#: src/pages/purchasing/PurchasingIndex.tsx:149 msgid "Manufacturers" msgstr "" #: src/components/nav/SearchDrawer.tsx:308 -#: src/pages/sales/SalesIndex.tsx:138 +#: src/pages/sales/SalesIndex.tsx:133 msgid "Customers" msgstr "" @@ -2772,21 +2809,21 @@ msgstr "" #: src/components/plugins/PluginDrawer.tsx:73 #: src/forms/selectionListFields.tsx:102 -#: src/pages/build/BuildDetail.tsx:250 -#: src/pages/company/CompanyDetail.tsx:93 -#: src/pages/company/ManufacturerPartDetail.tsx:93 -#: src/pages/company/ManufacturerPartDetail.tsx:120 -#: src/pages/company/SupplierPartDetail.tsx:145 -#: src/pages/part/CategoryDetail.tsx:108 +#: src/pages/build/BuildDetail.tsx:251 +#: src/pages/company/CompanyDetail.tsx:94 +#: src/pages/company/ManufacturerPartDetail.tsx:92 +#: src/pages/company/ManufacturerPartDetail.tsx:119 +#: src/pages/company/SupplierPartDetail.tsx:146 +#: src/pages/part/CategoryDetail.tsx:111 #: src/pages/part/PartDetail.tsx:460 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:162 -#: src/pages/sales/ReturnOrderDetail.tsx:129 -#: src/pages/sales/SalesOrderDetail.tsx:119 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:163 +#: src/pages/sales/ReturnOrderDetail.tsx:130 +#: src/pages/sales/SalesOrderDetail.tsx:120 #: src/pages/stock/LocationDetail.tsx:102 #: src/tables/ColumnRenderers.tsx:278 -#: src/tables/build/BuildAllocatedStockTable.tsx:91 -#: src/tables/machine/MachineTypeTable.tsx:161 -#: src/tables/machine/MachineTypeTable.tsx:257 +#: src/tables/build/BuildAllocatedStockTable.tsx:88 +#: src/tables/machine/MachineTypeTable.tsx:159 +#: src/tables/machine/MachineTypeTable.tsx:255 #: src/tables/plugin/PluginListTable.tsx:110 msgid "Description" msgstr "" @@ -2814,7 +2851,7 @@ msgstr "" #: src/tables/company/CompanyTable.tsx:91 #: src/tables/machine/MachineListTable.tsx:384 #: src/tables/machine/MachineListTable.tsx:799 -#: src/tables/part/ParametricPartTable.tsx:354 +#: src/tables/part/ParametricPartTable.tsx:19 #: src/tables/part/PartTable.tsx:197 #: src/tables/part/PartVariantTable.tsx:15 #: src/tables/plugin/PluginListTable.tsx:96 @@ -2836,8 +2873,8 @@ msgid "Installation Path" msgstr "" #: src/components/plugins/PluginDrawer.tsx:116 -#: src/tables/machine/MachineTypeTable.tsx:184 -#: src/tables/machine/MachineTypeTable.tsx:293 +#: src/tables/machine/MachineTypeTable.tsx:182 +#: src/tables/machine/MachineTypeTable.tsx:291 #: src/tables/plugin/PluginListTable.tsx:101 #: src/tables/plugin/PluginListTable.tsx:417 msgid "Builtin" @@ -2849,8 +2886,8 @@ msgstr "" #: src/components/plugins/PluginDrawer.tsx:133 #: src/pages/Index/Settings/AdminCenter/PluginManagementPanel.tsx:55 -#: src/pages/Index/Settings/SystemSettings.tsx:331 -#: src/pages/Index/Settings/UserSettings.tsx:128 +#: src/pages/Index/Settings/SystemSettings.tsx:337 +#: src/pages/Index/Settings/UserSettings.tsx:129 msgid "Plugin Settings" msgstr "" @@ -2911,7 +2948,7 @@ msgstr "" #~ msgid "Unknown model: {model}" #~ msgstr "Unknown model: {model}" -#: src/components/render/Instance.tsx:249 +#: src/components/render/Instance.tsx:247 msgid "Unknown model: {model_name}" msgstr "" @@ -2939,10 +2976,10 @@ msgstr "" #: src/components/render/Part.tsx:28 #: src/components/render/Plugin.tsx:17 #: src/components/render/User.tsx:37 -#: src/pages/company/CompanyDetail.tsx:323 -#: src/pages/company/SupplierPartDetail.tsx:373 +#: src/pages/company/CompanyDetail.tsx:328 +#: src/pages/company/SupplierPartDetail.tsx:378 #: src/pages/core/UserDetail.tsx:211 -#: src/pages/part/PartDetail.tsx:1027 +#: src/pages/part/PartDetail.tsx:1048 #: src/tables/ColumnRenderers.tsx:410 msgid "Inactive" msgstr "" @@ -2962,11 +2999,11 @@ msgstr "" #: src/components/render/Part.tsx:47 #: src/components/wizards/OrderPartsWizard.tsx:135 -#: src/pages/company/SupplierPartDetail.tsx:197 -#: src/pages/company/SupplierPartDetail.tsx:394 -#: src/pages/part/PartDetail.tsx:1015 +#: src/pages/company/SupplierPartDetail.tsx:198 +#: src/pages/company/SupplierPartDetail.tsx:399 +#: src/pages/part/PartDetail.tsx:1030 #: src/tables/bom/BomTable.tsx:444 -#: src/tables/build/BuildLineTable.tsx:222 +#: src/tables/build/BuildLineTable.tsx:223 #: src/tables/part/PartTable.tsx:108 msgid "On Order" msgstr "" @@ -2974,9 +3011,9 @@ msgstr "" #: src/components/render/Part.tsx:55 #: src/components/wizards/OrderPartsWizard.tsx:141 #: src/pages/part/PartDetail.tsx:587 -#: src/pages/part/PartDetail.tsx:1021 +#: src/pages/part/PartDetail.tsx:1036 #: src/pages/stock/StockDetail.tsx:925 -#: src/tables/part/PartTestResultTable.tsx:297 +#: src/tables/part/PartTestResultTable.tsx:305 #: src/tables/stock/StockItemTable.tsx:359 msgid "In Production" msgstr "" @@ -2987,7 +3024,7 @@ msgid "Details" msgstr "" #: src/components/render/Part.tsx:112 -#: src/components/wizards/ImportPartWizard.tsx:806 +#: src/components/wizards/ImportPartWizard.tsx:807 #: src/pages/part/PartDetail.tsx:487 #: src/tables/ColumnRenderers.tsx:233 #: src/tables/ColumnRenderers.tsx:242 @@ -3000,16 +3037,16 @@ msgstr "" #: src/components/render/Stock.tsx:114 #: src/components/render/Stock.tsx:132 #: src/forms/BuildForms.tsx:795 -#: src/forms/PurchaseOrderForms.tsx:595 +#: src/forms/PurchaseOrderForms.tsx:647 #: src/forms/StockForms.tsx:792 #: src/forms/StockForms.tsx:839 -#: src/forms/StockForms.tsx:885 -#: src/forms/StockForms.tsx:924 -#: src/forms/StockForms.tsx:960 -#: src/forms/StockForms.tsx:1003 -#: src/forms/StockForms.tsx:1047 -#: src/forms/StockForms.tsx:1095 -#: src/forms/StockForms.tsx:1139 +#: src/forms/StockForms.tsx:892 +#: src/forms/StockForms.tsx:938 +#: src/forms/StockForms.tsx:976 +#: src/forms/StockForms.tsx:1019 +#: src/forms/StockForms.tsx:1063 +#: src/forms/StockForms.tsx:1111 +#: src/forms/StockForms.tsx:1155 #: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:88 #: src/pages/core/UserDetail.tsx:158 #: src/pages/stock/StockDetail.tsx:298 @@ -3023,7 +3060,7 @@ msgstr "" #: src/components/render/Stock.tsx:99 #: src/pages/stock/StockDetail.tsx:198 #: src/pages/stock/StockDetail.tsx:930 -#: src/tables/build/BuildAllocatedStockTable.tsx:121 +#: src/tables/build/BuildAllocatedStockTable.tsx:118 #: src/tables/build/BuildOutputTable.tsx:107 #: src/tables/sales/SalesOrderAllocationTable.tsx:142 msgid "Serial Number" @@ -3034,9 +3071,9 @@ msgstr "" #: src/forms/BuildForms.tsx:240 #: src/forms/BuildForms.tsx:634 #: src/forms/BuildForms.tsx:797 -#: src/forms/PurchaseOrderForms.tsx:801 +#: src/forms/PurchaseOrderForms.tsx:853 #: src/forms/ReturnOrderForms.tsx:243 -#: src/forms/SalesOrderForms.tsx:308 +#: src/forms/SalesOrderForms.tsx:387 #: src/forms/StockForms.tsx:841 #: src/pages/part/PartStockHistoryDetail.tsx:56 #: src/pages/part/PartStockHistoryDetail.tsx:210 @@ -3046,9 +3083,9 @@ msgstr "" #: src/pages/part/pricing/PriceBreakPanel.tsx:172 #: src/pages/stock/StockDetail.tsx:258 #: src/pages/stock/StockDetail.tsx:936 -#: src/tables/build/BuildLineTable.tsx:86 +#: src/tables/build/BuildLineTable.tsx:83 #: src/tables/part/PartPurchaseOrdersTable.tsx:94 -#: src/tables/part/PartTestResultTable.tsx:269 +#: src/tables/part/PartTestResultTable.tsx:277 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:175 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:206 #: src/tables/purchasing/SupplierPriceBreakTable.tsx:69 @@ -3063,14 +3100,14 @@ msgstr "" #: src/forms/BuildForms.tsx:474 #: src/forms/StockForms.tsx:793 #: src/forms/StockForms.tsx:840 -#: src/forms/StockForms.tsx:886 -#: src/forms/StockForms.tsx:925 -#: src/forms/StockForms.tsx:961 -#: src/forms/StockForms.tsx:1004 -#: src/forms/StockForms.tsx:1048 -#: src/forms/StockForms.tsx:1096 -#: src/forms/StockForms.tsx:1140 -#: src/tables/build/BuildLineTable.tsx:96 +#: src/forms/StockForms.tsx:893 +#: src/forms/StockForms.tsx:939 +#: src/forms/StockForms.tsx:977 +#: src/forms/StockForms.tsx:1020 +#: src/forms/StockForms.tsx:1064 +#: src/forms/StockForms.tsx:1112 +#: src/forms/StockForms.tsx:1156 +#: src/tables/build/BuildLineTable.tsx:93 msgid "Batch" msgstr "" @@ -3306,10 +3343,6 @@ msgstr "" #~ msgid "Part category updated" #~ msgstr "Part category updated" -#: src/components/tables/part/PartParameterTable.tsx:41 -#~ msgid "Parameter" -#~ msgstr "Parameter" - #: src/components/tables/part/PartParameterTable.tsx:114 #~ msgid "Part parameter updated" #~ msgstr "Part parameter updated" @@ -3571,15 +3604,16 @@ msgid "Already Imported" msgstr "" #: src/components/wizards/ImportPartWizard.tsx:205 -#: src/pages/company/CompanyDetail.tsx:136 +#: src/pages/company/CompanyDetail.tsx:137 #: src/pages/company/SupplierDetail.tsx:8 -#: src/pages/company/SupplierPartDetail.tsx:130 -#: src/pages/company/SupplierPartDetail.tsx:235 -#: src/pages/company/SupplierPartDetail.tsx:364 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:156 +#: src/pages/company/SupplierPartDetail.tsx:131 +#: src/pages/company/SupplierPartDetail.tsx:236 +#: src/pages/company/SupplierPartDetail.tsx:369 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:157 #: src/tables/Filter.tsx:360 #: src/tables/company/CompanyTable.tsx:96 #: src/tables/part/PartPurchaseOrdersTable.tsx:43 +#: src/tables/purchasing/PurchaseOrderParametricTable.tsx:34 #: src/tables/purchasing/PurchaseOrderTable.tsx:109 #: src/tables/purchasing/SupplierPriceBreakTable.tsx:40 msgid "Supplier" @@ -3648,7 +3682,7 @@ msgid "Next" msgstr "" #: src/components/wizards/ImportPartWizard.tsx:540 -#: src/pages/part/PartDetail.tsx:1046 +#: src/pages/part/PartDetail.tsx:1067 #: src/tables/part/PartTable.tsx:408 msgid "Edit Part" msgstr "" @@ -3669,28 +3703,28 @@ msgstr "" msgid "Import" msgstr "" -#: src/components/wizards/ImportPartWizard.tsx:691 +#: src/components/wizards/ImportPartWizard.tsx:692 msgid "Parameters created successfully!" msgstr "" -#: src/components/wizards/ImportPartWizard.tsx:719 +#: src/components/wizards/ImportPartWizard.tsx:720 msgid "Failed to create parameters, please fix the errors and try again" msgstr "" #. placeholder {0}: supplierPart?.supplier -#: src/components/wizards/ImportPartWizard.tsx:739 +#: src/components/wizards/ImportPartWizard.tsx:740 msgid "Part imported successfully from supplier {0}." msgstr "" -#: src/components/wizards/ImportPartWizard.tsx:752 +#: src/components/wizards/ImportPartWizard.tsx:753 msgid "Open Part" msgstr "" -#: src/components/wizards/ImportPartWizard.tsx:759 +#: src/components/wizards/ImportPartWizard.tsx:760 msgid "Open Supplier Part" msgstr "" -#: src/components/wizards/ImportPartWizard.tsx:766 +#: src/components/wizards/ImportPartWizard.tsx:767 msgid "Open Manufacturer Part" msgstr "" @@ -3699,25 +3733,19 @@ msgstr "" #~ msgid "Import Part" #~ msgstr "Import Part" -#: src/components/wizards/ImportPartWizard.tsx:802 +#: src/components/wizards/ImportPartWizard.tsx:803 msgid "Import Supplier Part" msgstr "" -#: src/components/wizards/ImportPartWizard.tsx:804 +#: src/components/wizards/ImportPartWizard.tsx:805 msgid "Search Supplier Part" msgstr "" -#: src/components/wizards/ImportPartWizard.tsx:806 -#: src/pages/company/ManufacturerPartDetail.tsx:166 -#: src/pages/part/PartDetail.tsx:793 -msgid "Parameters" -msgstr "" - -#: src/components/wizards/ImportPartWizard.tsx:806 +#: src/components/wizards/ImportPartWizard.tsx:807 msgid "Confirm import" msgstr "" -#: src/components/wizards/ImportPartWizard.tsx:808 +#: src/components/wizards/ImportPartWizard.tsx:809 msgid "Done" msgstr "" @@ -3738,24 +3766,24 @@ msgid "Sales Requirements" msgstr "" #: src/components/wizards/OrderPartsWizard.tsx:129 -#: src/forms/StockForms.tsx:887 -#: src/forms/StockForms.tsx:926 -#: src/forms/StockForms.tsx:962 -#: src/forms/StockForms.tsx:1005 -#: src/forms/StockForms.tsx:1049 -#: src/forms/StockForms.tsx:1097 -#: src/forms/StockForms.tsx:1141 -#: src/pages/company/SupplierPartDetail.tsx:190 -#: src/pages/company/SupplierPartDetail.tsx:378 +#: src/forms/StockForms.tsx:894 +#: src/forms/StockForms.tsx:940 +#: src/forms/StockForms.tsx:978 +#: src/forms/StockForms.tsx:1021 +#: src/forms/StockForms.tsx:1065 +#: src/forms/StockForms.tsx:1113 +#: src/forms/StockForms.tsx:1157 +#: src/pages/company/SupplierPartDetail.tsx:191 +#: src/pages/company/SupplierPartDetail.tsx:383 #: src/pages/part/PartDetail.tsx:534 -#: src/pages/part/PartDetail.tsx:984 +#: src/pages/part/PartDetail.tsx:999 #: src/tables/Filter.tsx:92 #: src/tables/purchasing/SupplierPartTable.tsx:230 msgid "In Stock" msgstr "" #: src/components/wizards/OrderPartsWizard.tsx:146 -#: src/tables/build/BuildLineTable.tsx:404 +#: src/tables/build/BuildLineTable.tsx:405 msgid "Required Quantity" msgstr "" @@ -3847,7 +3875,7 @@ msgid "Please correct the errors in the selected parts" msgstr "" #: src/components/wizards/OrderPartsWizard.tsx:587 -#: src/tables/build/BuildLineTable.tsx:815 +#: src/tables/build/BuildLineTable.tsx:822 #: src/tables/part/PartTable.tsx:522 #: src/tables/sales/SalesOrderLineItemTable.tsx:370 msgid "Order Parts" @@ -4349,9 +4377,9 @@ msgstr "" #: src/forms/BuildForms.tsx:333 #: src/forms/BuildForms.tsx:408 #: src/forms/BuildForms.tsx:685 -#: src/tables/build/BuildAllocatedStockTable.tsx:150 +#: src/tables/build/BuildAllocatedStockTable.tsx:147 #: src/tables/build/BuildOutputTable.tsx:582 -#: src/tables/part/PartTestResultTable.tsx:272 +#: src/tables/part/PartTestResultTable.tsx:280 msgid "Build Output" msgstr "" @@ -4362,22 +4390,22 @@ msgstr "" #: src/forms/BuildForms.tsx:336 #: src/forms/BuildForms.tsx:411 #: src/forms/BuildForms.tsx:475 -#: src/forms/PurchaseOrderForms.tsx:717 +#: src/forms/PurchaseOrderForms.tsx:769 #: src/forms/ReturnOrderForms.tsx:197 #: src/forms/ReturnOrderForms.tsx:244 #: src/forms/StockForms.tsx:712 #: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:87 -#: src/pages/build/BuildDetail.tsx:222 +#: src/pages/build/BuildDetail.tsx:223 #: src/pages/core/UserDetail.tsx:151 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:168 -#: src/pages/sales/ReturnOrderDetail.tsx:135 -#: src/pages/sales/SalesOrderDetail.tsx:125 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:169 +#: src/pages/sales/ReturnOrderDetail.tsx:136 +#: src/pages/sales/SalesOrderDetail.tsx:126 #: src/pages/stock/StockDetail.tsx:170 #: src/tables/Filter.tsx:274 #: src/tables/build/BuildOutputTable.tsx:404 #: src/tables/machine/MachineListTable.tsx:387 #: src/tables/part/PartPurchaseOrdersTable.tsx:38 -#: src/tables/part/PartTestResultTable.tsx:309 +#: src/tables/part/PartTestResultTable.tsx:317 #: src/tables/sales/ReturnOrderLineItemTable.tsx:138 #: src/tables/sales/ReturnOrderLineItemTable.tsx:176 #: src/tables/settings/CustomStateTable.tsx:79 @@ -4443,18 +4471,19 @@ msgid "Build outputs have been cancelled" msgstr "" #: src/forms/BuildForms.tsx:631 -#: src/pages/build/BuildDetail.tsx:207 -#: src/pages/company/ManufacturerPartDetail.tsx:85 -#: src/pages/company/SupplierPartDetail.tsx:96 +#: src/pages/build/BuildDetail.tsx:208 +#: src/pages/company/ManufacturerPartDetail.tsx:84 +#: src/pages/company/SupplierPartDetail.tsx:97 #: src/pages/part/PartDetail.tsx:453 #: src/pages/stock/StockDetail.tsx:153 #: src/tables/bom/BomTable.tsx:134 #: src/tables/bom/UsedInTable.tsx:40 -#: src/tables/build/BuildAllocatedStockTable.tsx:108 -#: src/tables/build/BuildLineTable.tsx:336 +#: src/tables/build/BuildAllocatedStockTable.tsx:105 +#: src/tables/build/BuildLineTable.tsx:337 #: src/tables/build/BuildOrderTable.tsx:79 #: src/tables/part/PartSalesAllocationsTable.tsx:61 #: src/tables/part/RelatedPartTable.tsx:73 +#: src/tables/purchasing/ManufacturerPartParametricTable.tsx:21 #: src/tables/purchasing/ManufacturerPartTable.tsx:69 #: src/tables/purchasing/SupplierPartTable.tsx:70 #: src/tables/sales/SalesOrderAllocationTable.tsx:135 @@ -4466,47 +4495,47 @@ msgstr "" #: src/forms/BuildForms.tsx:632 #: src/forms/BuildForms.tsx:796 #: src/forms/BuildForms.tsx:897 -#: src/forms/SalesOrderForms.tsx:306 -#: src/tables/build/BuildAllocatedStockTable.tsx:139 -#: src/tables/build/BuildLineTable.tsx:182 +#: src/forms/SalesOrderForms.tsx:385 +#: src/tables/build/BuildAllocatedStockTable.tsx:136 +#: src/tables/build/BuildLineTable.tsx:183 #: src/tables/sales/SalesOrderLineItemTable.tsx:342 #: src/tables/stock/StockItemTable.tsx:338 msgid "Allocated" msgstr "" #: src/forms/BuildForms.tsx:667 -#: src/forms/SalesOrderForms.tsx:295 -#: src/pages/build/BuildDetail.tsx:108 -#: src/pages/build/BuildDetail.tsx:326 +#: src/forms/SalesOrderForms.tsx:374 +#: src/pages/build/BuildDetail.tsx:109 +#: src/pages/build/BuildDetail.tsx:327 msgid "Source Location" msgstr "" #: src/forms/BuildForms.tsx:668 -#: src/forms/SalesOrderForms.tsx:296 +#: src/forms/SalesOrderForms.tsx:375 msgid "Select the source location for the stock allocation" msgstr "" #: src/forms/BuildForms.tsx:700 -#: src/forms/SalesOrderForms.tsx:336 -#: src/tables/build/BuildLineTable.tsx:574 -#: src/tables/build/BuildLineTable.tsx:731 -#: src/tables/build/BuildLineTable.tsx:830 +#: src/forms/SalesOrderForms.tsx:415 +#: src/tables/build/BuildLineTable.tsx:575 +#: src/tables/build/BuildLineTable.tsx:738 +#: src/tables/build/BuildLineTable.tsx:837 #: src/tables/sales/SalesOrderLineItemTable.tsx:380 #: src/tables/sales/SalesOrderLineItemTable.tsx:406 msgid "Allocate Stock" msgstr "" #: src/forms/BuildForms.tsx:703 -#: src/forms/SalesOrderForms.tsx:341 +#: src/forms/SalesOrderForms.tsx:420 msgid "Stock items allocated" msgstr "" #: src/forms/BuildForms.tsx:816 #: src/forms/BuildForms.tsx:917 -#: src/tables/build/BuildAllocatedStockTable.tsx:240 -#: src/tables/build/BuildAllocatedStockTable.tsx:272 -#: src/tables/build/BuildLineTable.tsx:741 -#: src/tables/build/BuildLineTable.tsx:864 +#: src/tables/build/BuildAllocatedStockTable.tsx:243 +#: src/tables/build/BuildAllocatedStockTable.tsx:279 +#: src/tables/build/BuildLineTable.tsx:748 +#: src/tables/build/BuildLineTable.tsx:871 msgid "Consume Stock" msgstr "" @@ -4521,21 +4550,21 @@ msgstr "" #~ msgstr "Stock items consumed" #: src/forms/BuildForms.tsx:853 -#: src/tables/build/BuildLineTable.tsx:514 +#: src/tables/build/BuildLineTable.tsx:515 #: src/tables/part/PartBuildAllocationsTable.tsx:101 msgid "Fully consumed" msgstr "" #: src/forms/BuildForms.tsx:898 -#: src/tables/build/BuildLineTable.tsx:187 +#: src/tables/build/BuildLineTable.tsx:188 #: src/tables/stock/StockItemTable.tsx:367 msgid "Consumed" msgstr "" -#: src/forms/CommonForms.tsx:88 -#: src/forms/PurchaseOrderForms.tsx:125 +#: src/forms/CommonForms.tsx:92 +#: src/forms/PurchaseOrderForms.tsx:176 #: src/forms/ReturnOrderForms.tsx:138 -#: src/forms/SalesOrderForms.tsx:164 +#: src/forms/SalesOrderForms.tsx:185 msgid "Select project code for this line item" msgstr "" @@ -4543,16 +4572,16 @@ msgstr "" #~ msgid "Company updated" #~ msgstr "Company updated" -#: src/forms/PartForms.tsx:85 -#: src/forms/PartForms.tsx:207 -#: src/pages/part/CategoryDetail.tsx:124 +#: src/forms/PartForms.tsx:99 +#: src/forms/PartForms.tsx:228 +#: src/pages/part/CategoryDetail.tsx:127 #: src/pages/part/PartDetail.tsx:668 #: src/tables/part/PartCategoryTable.tsx:94 #: src/tables/part/PartTable.tsx:325 msgid "Subscribed" msgstr "" -#: src/forms/PartForms.tsx:86 +#: src/forms/PartForms.tsx:100 msgid "Subscribe to notifications for this part" msgstr "" @@ -4564,40 +4593,24 @@ msgstr "" #~ msgid "Part updated" #~ msgstr "Part updated" -#: src/forms/PartForms.tsx:193 +#: src/forms/PartForms.tsx:214 msgid "Parent part category" msgstr "" -#: src/forms/PartForms.tsx:208 +#: src/forms/PartForms.tsx:229 msgid "Subscribe to notifications for this category" msgstr "" -#: src/forms/PurchaseOrderForms.tsx:388 -msgid "Assign Batch Code and Serial Numbers" -msgstr "" - -#: src/forms/PurchaseOrderForms.tsx:390 -msgid "Assign Batch Code" -msgstr "" - -#: src/forms/PurchaseOrderForms.tsx:410 -msgid "Choose Location" -msgstr "" - -#: src/forms/PurchaseOrderForms.tsx:418 -msgid "Item Destination selected" -msgstr "" - #: src/forms/PurchaseOrderForms.tsx:421 #~ msgid "Assign Batch Code{0}" #~ msgstr "Assign Batch Code{0}" -#: src/forms/PurchaseOrderForms.tsx:428 -msgid "Part category default location selected" +#: src/forms/PurchaseOrderForms.tsx:440 +msgid "Assign Batch Code and Serial Numbers" msgstr "" -#: src/forms/PurchaseOrderForms.tsx:438 -msgid "Received stock location selected" +#: src/forms/PurchaseOrderForms.tsx:442 +msgid "Assign Batch Code" msgstr "" #: src/forms/PurchaseOrderForms.tsx:444 @@ -4605,115 +4618,131 @@ msgstr "" #~ msgid "Remove item from list" #~ msgstr "Remove item from list" -#: src/forms/PurchaseOrderForms.tsx:446 +#: src/forms/PurchaseOrderForms.tsx:462 +msgid "Choose Location" +msgstr "" + +#: src/forms/PurchaseOrderForms.tsx:470 +msgid "Item Destination selected" +msgstr "" + +#: src/forms/PurchaseOrderForms.tsx:480 +msgid "Part category default location selected" +msgstr "" + +#: src/forms/PurchaseOrderForms.tsx:490 +msgid "Received stock location selected" +msgstr "" + +#: src/forms/PurchaseOrderForms.tsx:498 msgid "Default location selected" msgstr "" -#: src/forms/PurchaseOrderForms.tsx:507 +#: src/forms/PurchaseOrderForms.tsx:559 msgid "Set Location" msgstr "" -#: src/forms/PurchaseOrderForms.tsx:524 -msgid "Set Expiry Date" -msgstr "" - -#: src/forms/PurchaseOrderForms.tsx:532 -#: src/forms/StockForms.tsx:693 -msgid "Adjust Packaging" -msgstr "" - -#: src/forms/PurchaseOrderForms.tsx:540 -#: src/forms/StockForms.tsx:684 -#: src/hooks/UseStockAdjustActions.tsx:148 -msgid "Change Status" -msgstr "" - -#: src/forms/PurchaseOrderForms.tsx:546 -msgid "Add Note" -msgstr "" - #: src/forms/PurchaseOrderForms.tsx:566 #~ msgid "Serial numbers" #~ msgstr "Serial numbers" +#: src/forms/PurchaseOrderForms.tsx:576 +msgid "Set Expiry Date" +msgstr "" + #: src/forms/PurchaseOrderForms.tsx:582 #~ msgid "Store at line item destination" #~ msgstr "Store at line item destination" -#: src/forms/PurchaseOrderForms.tsx:610 -msgid "Store at default location" +#: src/forms/PurchaseOrderForms.tsx:584 +#: src/forms/StockForms.tsx:693 +msgid "Adjust Packaging" msgstr "" -#: src/forms/PurchaseOrderForms.tsx:625 -msgid "Store at line item destination " +#: src/forms/PurchaseOrderForms.tsx:592 +#: src/forms/StockForms.tsx:684 +#: src/hooks/UseStockAdjustActions.tsx:148 +msgid "Change Status" msgstr "" -#: src/forms/PurchaseOrderForms.tsx:637 -msgid "Store with already received stock" +#: src/forms/PurchaseOrderForms.tsx:598 +msgid "Add Note" msgstr "" #: src/forms/PurchaseOrderForms.tsx:658 #~ msgid "Receive line items" #~ msgstr "Receive line items" -#: src/forms/PurchaseOrderForms.tsx:661 -#: src/pages/build/BuildDetail.tsx:340 +#: src/forms/PurchaseOrderForms.tsx:662 +msgid "Store at default location" +msgstr "" + +#: src/forms/PurchaseOrderForms.tsx:677 +msgid "Store at line item destination " +msgstr "" + +#: src/forms/PurchaseOrderForms.tsx:689 +msgid "Store with already received stock" +msgstr "" + +#: src/forms/PurchaseOrderForms.tsx:713 +#: src/pages/build/BuildDetail.tsx:341 #: src/pages/stock/StockDetail.tsx:280 #: src/pages/stock/StockDetail.tsx:952 #: src/tables/Filter.tsx:83 -#: src/tables/build/BuildAllocatedStockTable.tsx:128 +#: src/tables/build/BuildAllocatedStockTable.tsx:125 #: src/tables/build/BuildOutputTable.tsx:112 -#: src/tables/part/PartTestResultTable.tsx:260 -#: src/tables/part/PartTestResultTable.tsx:281 +#: src/tables/part/PartTestResultTable.tsx:268 +#: src/tables/part/PartTestResultTable.tsx:289 #: src/tables/sales/SalesOrderAllocationTable.tsx:149 msgid "Batch Code" msgstr "" -#: src/forms/PurchaseOrderForms.tsx:662 +#: src/forms/PurchaseOrderForms.tsx:714 msgid "Enter batch code for received items" msgstr "" -#: src/forms/PurchaseOrderForms.tsx:675 +#: src/forms/PurchaseOrderForms.tsx:727 #: src/forms/StockForms.tsx:218 msgid "Serial Numbers" msgstr "" -#: src/forms/PurchaseOrderForms.tsx:676 +#: src/forms/PurchaseOrderForms.tsx:728 msgid "Enter serial numbers for received items" msgstr "" -#: src/forms/PurchaseOrderForms.tsx:690 +#: src/forms/PurchaseOrderForms.tsx:742 #: src/pages/stock/StockDetail.tsx:382 #: src/tables/stock/StockItemTable.tsx:294 msgid "Expiry Date" msgstr "" -#: src/forms/PurchaseOrderForms.tsx:691 +#: src/forms/PurchaseOrderForms.tsx:743 msgid "Enter an expiry date for received items" msgstr "" -#: src/forms/PurchaseOrderForms.tsx:703 +#: src/forms/PurchaseOrderForms.tsx:755 #: src/forms/StockForms.tsx:728 -#: src/pages/company/SupplierPartDetail.tsx:172 -#: src/pages/company/SupplierPartDetail.tsx:236 +#: src/pages/company/SupplierPartDetail.tsx:173 +#: src/pages/company/SupplierPartDetail.tsx:237 #: src/pages/stock/StockDetail.tsx:419 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:227 msgid "Packaging" msgstr "" -#: src/forms/PurchaseOrderForms.tsx:727 -#: src/pages/company/SupplierPartDetail.tsx:120 +#: src/forms/PurchaseOrderForms.tsx:779 +#: src/pages/company/SupplierPartDetail.tsx:121 #: src/tables/ColumnRenderers.tsx:332 msgid "Note" msgstr "" -#: src/forms/PurchaseOrderForms.tsx:799 -#: src/pages/company/SupplierPartDetail.tsx:138 +#: src/forms/PurchaseOrderForms.tsx:851 +#: src/pages/company/SupplierPartDetail.tsx:139 #: src/tables/purchasing/SupplierPriceBreakTable.tsx:49 msgid "SKU" msgstr "" -#: src/forms/PurchaseOrderForms.tsx:800 +#: src/forms/PurchaseOrderForms.tsx:852 #: src/tables/part/PartPurchaseOrdersTable.tsx:127 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:213 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:283 @@ -4721,11 +4750,11 @@ msgstr "" msgid "Received" msgstr "" -#: src/forms/PurchaseOrderForms.tsx:817 +#: src/forms/PurchaseOrderForms.tsx:869 msgid "Receive Line Items" msgstr "" -#: src/forms/PurchaseOrderForms.tsx:823 +#: src/forms/PurchaseOrderForms.tsx:875 msgid "Items received" msgstr "" @@ -4737,7 +4766,35 @@ msgstr "" msgid "Item received into stock" msgstr "" -#: src/forms/SalesOrderForms.tsx:401 +#: src/forms/SalesOrderForms.tsx:208 +#: src/forms/SalesOrderForms.tsx:210 +#: src/tables/sales/SalesOrderShipmentTable.tsx:215 +msgid "Check Shipment" +msgstr "" + +#: src/forms/SalesOrderForms.tsx:211 +msgid "Marking the shipment as checked indicates that you have verified that all items included in this shipment are correct" +msgstr "" + +#: src/forms/SalesOrderForms.tsx:221 +msgid "Shipment marked as checked" +msgstr "" + +#: src/forms/SalesOrderForms.tsx:236 +#: src/forms/SalesOrderForms.tsx:238 +#: src/tables/sales/SalesOrderShipmentTable.tsx:228 +msgid "Uncheck Shipment" +msgstr "" + +#: src/forms/SalesOrderForms.tsx:239 +msgid "Marking the shipment as unchecked indicates that the shipment requires further verification" +msgstr "" + +#: src/forms/SalesOrderForms.tsx:249 +msgid "Shipment marked as unchecked" +msgstr "" + +#: src/forms/SalesOrderForms.tsx:480 msgid "Leave blank to use the order address" msgstr "" @@ -4792,150 +4849,150 @@ msgstr "" msgid "Return" msgstr "" -#: src/forms/StockForms.tsx:963 +#: src/forms/StockForms.tsx:979 #: src/pages/Index/Scan.tsx:182 msgid "Count" msgstr "" -#: src/forms/StockForms.tsx:1246 +#: src/forms/StockForms.tsx:1262 #: src/hooks/UseStockAdjustActions.tsx:108 msgid "Add Stock" msgstr "" -#: src/forms/StockForms.tsx:1247 +#: src/forms/StockForms.tsx:1263 msgid "Stock added" msgstr "" -#: src/forms/StockForms.tsx:1250 +#: src/forms/StockForms.tsx:1266 msgid "Increase the quantity of the selected stock items by a given amount." msgstr "" -#: src/forms/StockForms.tsx:1261 +#: src/forms/StockForms.tsx:1277 #: src/hooks/UseStockAdjustActions.tsx:118 msgid "Remove Stock" msgstr "" -#: src/forms/StockForms.tsx:1262 +#: src/forms/StockForms.tsx:1278 msgid "Stock removed" msgstr "" -#: src/forms/StockForms.tsx:1265 +#: src/forms/StockForms.tsx:1281 msgid "Decrease the quantity of the selected stock items by a given amount." msgstr "" -#: src/forms/StockForms.tsx:1276 +#: src/forms/StockForms.tsx:1292 #: src/hooks/UseStockAdjustActions.tsx:128 msgid "Transfer Stock" msgstr "" -#: src/forms/StockForms.tsx:1277 +#: src/forms/StockForms.tsx:1293 msgid "Stock transferred" msgstr "" -#: src/forms/StockForms.tsx:1280 +#: src/forms/StockForms.tsx:1296 msgid "Transfer selected items to the specified location." msgstr "" -#: src/forms/StockForms.tsx:1291 +#: src/forms/StockForms.tsx:1307 #: src/hooks/UseStockAdjustActions.tsx:168 msgid "Return Stock" msgstr "" -#: src/forms/StockForms.tsx:1292 +#: src/forms/StockForms.tsx:1308 msgid "Stock returned" msgstr "" -#: src/forms/StockForms.tsx:1295 +#: src/forms/StockForms.tsx:1311 msgid "Return selected items into stock, to the specified location." msgstr "" -#: src/forms/StockForms.tsx:1306 +#: src/forms/StockForms.tsx:1322 #: src/hooks/UseStockAdjustActions.tsx:98 msgid "Count Stock" msgstr "" -#: src/forms/StockForms.tsx:1307 +#: src/forms/StockForms.tsx:1323 msgid "Stock counted" msgstr "" -#: src/forms/StockForms.tsx:1310 +#: src/forms/StockForms.tsx:1326 msgid "Count the selected stock items, and adjust the quantity accordingly." msgstr "" -#: src/forms/StockForms.tsx:1321 +#: src/forms/StockForms.tsx:1337 msgid "Change Stock Status" msgstr "" -#: src/forms/StockForms.tsx:1322 +#: src/forms/StockForms.tsx:1338 msgid "Stock status changed" msgstr "" -#: src/forms/StockForms.tsx:1325 +#: src/forms/StockForms.tsx:1341 msgid "Change the status of the selected stock items." msgstr "" -#: src/forms/StockForms.tsx:1336 +#: src/forms/StockForms.tsx:1352 #: src/hooks/UseStockAdjustActions.tsx:138 msgid "Merge Stock" msgstr "" -#: src/forms/StockForms.tsx:1337 +#: src/forms/StockForms.tsx:1353 msgid "Stock merged" msgstr "" -#: src/forms/StockForms.tsx:1339 +#: src/forms/StockForms.tsx:1355 msgid "Merge Stock Items" msgstr "" -#: src/forms/StockForms.tsx:1341 +#: src/forms/StockForms.tsx:1357 msgid "Merge operation cannot be reversed" msgstr "" -#: src/forms/StockForms.tsx:1342 +#: src/forms/StockForms.tsx:1358 msgid "Tracking information may be lost when merging items" msgstr "" -#: src/forms/StockForms.tsx:1343 +#: src/forms/StockForms.tsx:1359 msgid "Supplier information may be lost when merging items" msgstr "" -#: src/forms/StockForms.tsx:1361 +#: src/forms/StockForms.tsx:1377 msgid "Assign Stock to Customer" msgstr "" -#: src/forms/StockForms.tsx:1362 +#: src/forms/StockForms.tsx:1378 msgid "Stock assigned to customer" msgstr "" -#: src/forms/StockForms.tsx:1372 +#: src/forms/StockForms.tsx:1388 msgid "Delete Stock Items" msgstr "" -#: src/forms/StockForms.tsx:1373 +#: src/forms/StockForms.tsx:1389 msgid "Stock deleted" msgstr "" -#: src/forms/StockForms.tsx:1376 +#: src/forms/StockForms.tsx:1392 msgid "This operation will permanently delete the selected stock items." msgstr "" -#: src/forms/StockForms.tsx:1385 +#: src/forms/StockForms.tsx:1401 msgid "Parent stock location" msgstr "" -#: src/forms/StockForms.tsx:1512 +#: src/forms/StockForms.tsx:1528 msgid "Find Serial Number" msgstr "" -#: src/forms/StockForms.tsx:1523 +#: src/forms/StockForms.tsx:1539 msgid "No matching items" msgstr "" -#: src/forms/StockForms.tsx:1529 +#: src/forms/StockForms.tsx:1545 msgid "Multiple matching items" msgstr "" -#: src/forms/StockForms.tsx:1538 +#: src/forms/StockForms.tsx:1554 msgid "Invalid response from server" msgstr "" @@ -4953,7 +5010,6 @@ msgstr "" #: src/tables/FilterSelectDrawer.tsx:137 #: src/tables/FilterSelectDrawer.tsx:149 #: src/tables/part/PartTestResultTable.tsx:206 -#: src/tables/purchasing/ManufacturerPartParameterTable.tsx:42 #: src/tables/stock/StockItemTestResultTable.tsx:207 msgid "Value" msgstr "" @@ -5244,7 +5300,7 @@ msgid "Delete selected stock items" msgstr "" #: src/hooks/UseStockAdjustActions.tsx:205 -#: src/pages/part/PartDetail.tsx:1137 +#: src/pages/part/PartDetail.tsx:1158 msgid "Stock Actions" msgstr "" @@ -5932,6 +5988,9 @@ msgstr "" #: src/pages/Index/Settings/AccountSettings/MFASettings.tsx:310 #: src/pages/Index/Settings/AccountSettings/MFASettings.tsx:401 +#: src/tables/build/BuildAllocatedStockTable.tsx:181 +#: src/tables/build/BuildLineTable.tsx:668 +#: src/tables/sales/SalesOrderAllocationTable.tsx:220 msgid "Confirm Removal" msgstr "" @@ -6394,30 +6453,34 @@ msgid "Email Messages" msgstr "" #: src/pages/Index/Settings/AdminCenter/HomePanel.tsx:22 -msgid "Active Alerts" -msgstr "" +#~ msgid "Active Alerts" +#~ msgstr "Active Alerts" #: src/pages/Index/Settings/AdminCenter/HomePanel.tsx:27 -msgid "Inactive Alerts" +#~ msgid "Inactive Alerts" +#~ msgstr "Inactive Alerts" + +#: src/pages/Index/Settings/AdminCenter/HomePanel.tsx:36 +msgid "System Status" msgstr "" -#: src/pages/Index/Settings/AdminCenter/HomePanel.tsx:38 +#: src/pages/Index/Settings/AdminCenter/HomePanel.tsx:47 msgid "Admin Center Information" msgstr "" -#: src/pages/Index/Settings/AdminCenter/HomePanel.tsx:44 +#: src/pages/Index/Settings/AdminCenter/HomePanel.tsx:53 msgid "The home panel (and the whole Admin Center) is a new feature starting with the new UI and was previously (before 1.0) not available." msgstr "" -#: src/pages/Index/Settings/AdminCenter/HomePanel.tsx:51 +#: src/pages/Index/Settings/AdminCenter/HomePanel.tsx:60 msgid "The admin center provides a centralized location for all administration functionality and is meant to replace all interaction with the (django) backend admin interface." msgstr "" -#: src/pages/Index/Settings/AdminCenter/HomePanel.tsx:58 +#: src/pages/Index/Settings/AdminCenter/HomePanel.tsx:67 msgid "Please open feature requests (after checking the tracker) for any existing backend admin functionality you are missing in this UI. The backend admin interface should be used carefully and seldom." msgstr "" -#: src/pages/Index/Settings/AdminCenter/HomePanel.tsx:76 +#: src/pages/Index/Settings/AdminCenter/HomePanel.tsx:85 msgid "Quick Actions" msgstr "" @@ -6476,11 +6539,11 @@ msgstr "" #: src/pages/Index/Settings/AdminCenter/Index.tsx:195 #: src/pages/part/CategoryDetail.tsx:313 -msgid "Part Parameters" -msgstr "" +#~ msgid "Part Parameters" +#~ msgstr "Part Parameters" #: src/pages/Index/Settings/AdminCenter/Index.tsx:202 -#: src/pages/part/CategoryDetail.tsx:306 +#: src/pages/part/CategoryDetail.tsx:329 msgid "Category Parameters" msgstr "" @@ -6494,7 +6557,7 @@ msgstr "" #: src/pages/Index/Settings/AdminCenter/Index.tsx:235 #: src/pages/Index/Settings/AdminCenter/MachineManagementPanel.tsx:52 -#: src/tables/machine/MachineTypeTable.tsx:325 +#: src/tables/machine/MachineTypeTable.tsx:323 msgid "Machines" msgstr "" @@ -6507,8 +6570,8 @@ msgid "Data Management" msgstr "" #: src/pages/Index/Settings/AdminCenter/Index.tsx:270 -#: src/pages/Index/Settings/SystemSettings.tsx:175 -#: src/pages/Index/Settings/UserSettings.tsx:118 +#: src/pages/Index/Settings/SystemSettings.tsx:176 +#: src/pages/Index/Settings/UserSettings.tsx:119 msgid "Reporting" msgstr "" @@ -6709,11 +6772,11 @@ msgstr "" msgid "The settings below are specific to each available plugin" msgstr "" -#: src/pages/Index/Settings/SystemSettings.tsx:77 +#: src/pages/Index/Settings/SystemSettings.tsx:78 msgid "Authentication" msgstr "" -#: src/pages/Index/Settings/SystemSettings.tsx:103 +#: src/pages/Index/Settings/SystemSettings.tsx:104 msgid "Barcodes" msgstr "" @@ -6725,12 +6788,12 @@ msgstr "" #~ msgid "This panel is a placeholder." #~ msgstr "This panel is a placeholder." -#: src/pages/Index/Settings/SystemSettings.tsx:127 -#: src/pages/Index/Settings/UserSettings.tsx:112 +#: src/pages/Index/Settings/SystemSettings.tsx:128 +#: src/pages/Index/Settings/UserSettings.tsx:113 msgid "The settings below are specific to each available notification method" msgstr "" -#: src/pages/Index/Settings/SystemSettings.tsx:133 +#: src/pages/Index/Settings/SystemSettings.tsx:134 msgid "Pricing" msgstr "" @@ -6738,7 +6801,7 @@ msgstr "" #~ msgid "Exchange Rates" #~ msgstr "Exchange Rates" -#: src/pages/Index/Settings/SystemSettings.tsx:169 +#: src/pages/Index/Settings/SystemSettings.tsx:170 msgid "Labels" msgstr "" @@ -6790,15 +6853,15 @@ msgstr "" #~ msgid "Delete notifications" #~ msgstr "Delete notifications" -#: src/pages/build/BuildDetail.tsx:69 +#: src/pages/build/BuildDetail.tsx:70 msgid "No Required Items" msgstr "" -#: src/pages/build/BuildDetail.tsx:71 +#: src/pages/build/BuildDetail.tsx:72 msgid "This build order does not have any required items." msgstr "" -#: src/pages/build/BuildDetail.tsx:72 +#: src/pages/build/BuildDetail.tsx:73 msgid "The assembled part may not have a Bill of Materials (BOM) defined, or the BOM is empty." msgstr "" @@ -6826,7 +6889,7 @@ msgstr "" #~ msgid "Build Order updated" #~ msgstr "Build Order updated" -#: src/pages/build/BuildDetail.tsx:215 +#: src/pages/build/BuildDetail.tsx:216 #: src/pages/part/PartDetail.tsx:480 #: src/pages/stock/StockDetail.tsx:161 #: src/tables/bom/UsedInTable.tsx:44 @@ -6843,10 +6906,10 @@ msgstr "" #~ msgid "Duplicate build order" #~ msgstr "Duplicate build order" -#: src/pages/build/BuildDetail.tsx:228 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:174 -#: src/pages/sales/ReturnOrderDetail.tsx:141 -#: src/pages/sales/SalesOrderDetail.tsx:131 +#: src/pages/build/BuildDetail.tsx:229 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:175 +#: src/pages/sales/ReturnOrderDetail.tsx:142 +#: src/pages/sales/SalesOrderDetail.tsx:132 #: src/pages/stock/StockDetail.tsx:176 msgid "Custom Status" msgstr "" @@ -6855,9 +6918,9 @@ msgstr "" #~ msgid "Delete build order" #~ msgstr "Delete build order" -#: src/pages/build/BuildDetail.tsx:237 -#: src/pages/build/BuildDetail.tsx:723 -#: src/pages/build/BuildIndex.tsx:28 +#: src/pages/build/BuildDetail.tsx:238 +#: src/pages/build/BuildDetail.tsx:728 +#: src/pages/build/BuildIndex.tsx:34 #: src/pages/stock/LocationDetail.tsx:140 #: src/tables/build/BuildOrderTable.tsx:123 #: src/tables/build/BuildOrderTable.tsx:183 @@ -6865,57 +6928,57 @@ msgstr "" msgid "External" msgstr "" -#: src/pages/build/BuildDetail.tsx:244 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:141 -#: src/pages/sales/ReturnOrderDetail.tsx:108 -#: src/pages/sales/SalesOrderDetail.tsx:98 +#: src/pages/build/BuildDetail.tsx:245 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:142 +#: src/pages/sales/ReturnOrderDetail.tsx:109 +#: src/pages/sales/SalesOrderDetail.tsx:99 #: src/tables/ColumnRenderers.tsx:321 -#: src/tables/build/BuildAllocatedStockTable.tsx:115 -#: src/tables/build/BuildLineTable.tsx:352 +#: src/tables/build/BuildAllocatedStockTable.tsx:112 +#: src/tables/build/BuildLineTable.tsx:353 msgid "Reference" msgstr "" -#: src/pages/build/BuildDetail.tsx:258 +#: src/pages/build/BuildDetail.tsx:259 msgid "Parent Build" msgstr "" -#: src/pages/build/BuildDetail.tsx:269 +#: src/pages/build/BuildDetail.tsx:270 msgid "Build Quantity" msgstr "" -#: src/pages/build/BuildDetail.tsx:275 +#: src/pages/build/BuildDetail.tsx:276 #: src/pages/part/PartDetail.tsx:598 #: src/tables/bom/BomTable.tsx:365 #: src/tables/bom/BomTable.tsx:407 msgid "Can Build" msgstr "" -#: src/pages/build/BuildDetail.tsx:284 -#: src/pages/build/BuildDetail.tsx:474 +#: src/pages/build/BuildDetail.tsx:285 +#: src/pages/build/BuildDetail.tsx:475 msgid "Completed Outputs" msgstr "" -#: src/pages/build/BuildDetail.tsx:301 +#: src/pages/build/BuildDetail.tsx:302 #: src/tables/Filter.tsx:381 #: src/tables/build/BuildOrderTable.tsx:143 msgid "Issued By" msgstr "" -#: src/pages/build/BuildDetail.tsx:309 +#: src/pages/build/BuildDetail.tsx:310 #: src/pages/part/PartDetail.tsx:691 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:261 -#: src/pages/sales/ReturnOrderDetail.tsx:239 -#: src/pages/sales/SalesOrderDetail.tsx:232 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:262 +#: src/pages/sales/ReturnOrderDetail.tsx:240 +#: src/pages/sales/SalesOrderDetail.tsx:233 #: src/tables/ColumnRenderers.tsx:464 #: src/tables/Filter.tsx:319 msgid "Responsible" msgstr "" -#: src/pages/build/BuildDetail.tsx:327 +#: src/pages/build/BuildDetail.tsx:328 msgid "Any location" msgstr "" -#: src/pages/build/BuildDetail.tsx:334 +#: src/pages/build/BuildDetail.tsx:335 msgid "Destination Location" msgstr "" @@ -6924,24 +6987,24 @@ msgstr "" #~ msgid "Test Statistics" #~ msgstr "Test Statistics" -#: src/pages/build/BuildDetail.tsx:350 +#: src/pages/build/BuildDetail.tsx:351 #: src/tables/settings/ApiTokenTable.tsx:97 #: src/tables/settings/PendingTasksTable.tsx:41 msgid "Created" msgstr "" -#: src/pages/build/BuildDetail.tsx:358 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:286 -#: src/pages/sales/ReturnOrderDetail.tsx:265 -#: src/pages/sales/SalesOrderDetail.tsx:257 +#: src/pages/build/BuildDetail.tsx:359 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:287 +#: src/pages/sales/ReturnOrderDetail.tsx:266 +#: src/pages/sales/SalesOrderDetail.tsx:258 #: src/tables/ColumnRenderers.tsx:486 msgid "Start Date" msgstr "" -#: src/pages/build/BuildDetail.tsx:366 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:294 -#: src/pages/sales/ReturnOrderDetail.tsx:273 -#: src/pages/sales/SalesOrderDetail.tsx:265 +#: src/pages/build/BuildDetail.tsx:367 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:295 +#: src/pages/sales/ReturnOrderDetail.tsx:274 +#: src/pages/sales/SalesOrderDetail.tsx:266 #: src/tables/ColumnRenderers.tsx:494 #: src/tables/part/PartPurchaseOrdersTable.tsx:101 #: src/tables/sales/ReturnOrderLineItemTable.tsx:154 @@ -6954,185 +7017,185 @@ msgstr "" #~ msgstr "Reporting Actions" #: src/pages/build/BuildDetail.tsx:374 +#~ msgid "Print build report" +#~ msgstr "Print build report" + +#: src/pages/build/BuildDetail.tsx:375 #: src/tables/build/BuildOrderTable.tsx:93 #: src/tables/sales/SalesOrderLineItemTable.tsx:347 msgid "Completed" msgstr "" -#: src/pages/build/BuildDetail.tsx:374 -#~ msgid "Print build report" -#~ msgstr "Print build report" - -#: src/pages/build/BuildDetail.tsx:410 +#: src/pages/build/BuildDetail.tsx:411 msgid "Build Details" msgstr "" -#: src/pages/build/BuildDetail.tsx:416 +#: src/pages/build/BuildDetail.tsx:417 msgid "Required Parts" msgstr "" -#: src/pages/build/BuildDetail.tsx:428 -#: src/pages/sales/SalesOrderDetail.tsx:407 -#: src/pages/sales/SalesOrderShipmentDetail.tsx:261 +#: src/pages/build/BuildDetail.tsx:429 +#: src/pages/sales/SalesOrderDetail.tsx:408 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:259 #: src/tables/part/PartSalesAllocationsTable.tsx:73 msgid "Allocated Stock" msgstr "" -#: src/pages/build/BuildDetail.tsx:444 +#: src/pages/build/BuildDetail.tsx:445 msgid "Consumed Stock" msgstr "" -#: src/pages/build/BuildDetail.tsx:461 +#: src/pages/build/BuildDetail.tsx:462 msgid "Incomplete Outputs" msgstr "" -#: src/pages/build/BuildDetail.tsx:489 +#: src/pages/build/BuildDetail.tsx:490 msgid "External Orders" msgstr "" -#: src/pages/build/BuildDetail.tsx:503 +#: src/pages/build/BuildDetail.tsx:504 msgid "Child Build Orders" msgstr "" -#: src/pages/build/BuildDetail.tsx:513 -#: src/pages/part/PartDetail.tsx:937 +#: src/pages/build/BuildDetail.tsx:514 +#: src/pages/part/PartDetail.tsx:926 #: src/pages/stock/StockDetail.tsx:587 #: src/tables/build/BuildOutputTable.tsx:654 #: src/tables/stock/StockItemTestResultTable.tsx:173 msgid "Test Results" msgstr "" -#: src/pages/build/BuildDetail.tsx:550 +#: src/pages/build/BuildDetail.tsx:555 msgid "Edit Build Order" msgstr "" -#: src/pages/build/BuildDetail.tsx:572 +#: src/pages/build/BuildDetail.tsx:577 #: src/tables/build/BuildOrderTable.tsx:207 #: src/tables/build/BuildOrderTable.tsx:223 msgid "Add Build Order" msgstr "" -#: src/pages/build/BuildDetail.tsx:582 +#: src/pages/build/BuildDetail.tsx:587 msgid "Cancel Build Order" msgstr "" -#: src/pages/build/BuildDetail.tsx:584 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:416 -#: src/pages/sales/ReturnOrderDetail.tsx:427 -#: src/pages/sales/SalesOrderDetail.tsx:454 +#: src/pages/build/BuildDetail.tsx:589 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:421 +#: src/pages/sales/ReturnOrderDetail.tsx:432 +#: src/pages/sales/SalesOrderDetail.tsx:459 msgid "Order cancelled" msgstr "" -#: src/pages/build/BuildDetail.tsx:585 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:415 -#: src/pages/sales/ReturnOrderDetail.tsx:426 -#: src/pages/sales/SalesOrderDetail.tsx:453 +#: src/pages/build/BuildDetail.tsx:590 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:420 +#: src/pages/sales/ReturnOrderDetail.tsx:431 +#: src/pages/sales/SalesOrderDetail.tsx:458 msgid "Cancel this order" msgstr "" -#: src/pages/build/BuildDetail.tsx:594 +#: src/pages/build/BuildDetail.tsx:599 msgid "Hold Build Order" msgstr "" -#: src/pages/build/BuildDetail.tsx:596 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:423 -#: src/pages/sales/ReturnOrderDetail.tsx:434 -#: src/pages/sales/SalesOrderDetail.tsx:461 +#: src/pages/build/BuildDetail.tsx:601 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:428 +#: src/pages/sales/ReturnOrderDetail.tsx:439 +#: src/pages/sales/SalesOrderDetail.tsx:466 msgid "Place this order on hold" msgstr "" -#: src/pages/build/BuildDetail.tsx:597 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:424 -#: src/pages/sales/ReturnOrderDetail.tsx:435 -#: src/pages/sales/SalesOrderDetail.tsx:462 +#: src/pages/build/BuildDetail.tsx:602 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:429 +#: src/pages/sales/ReturnOrderDetail.tsx:440 +#: src/pages/sales/SalesOrderDetail.tsx:467 msgid "Order placed on hold" msgstr "" -#: src/pages/build/BuildDetail.tsx:602 +#: src/pages/build/BuildDetail.tsx:607 msgid "Issue Build Order" msgstr "" -#: src/pages/build/BuildDetail.tsx:604 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:407 -#: src/pages/sales/ReturnOrderDetail.tsx:418 -#: src/pages/sales/SalesOrderDetail.tsx:445 +#: src/pages/build/BuildDetail.tsx:609 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:412 +#: src/pages/sales/ReturnOrderDetail.tsx:423 +#: src/pages/sales/SalesOrderDetail.tsx:450 msgid "Issue this order" msgstr "" -#: src/pages/build/BuildDetail.tsx:605 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:408 -#: src/pages/sales/ReturnOrderDetail.tsx:419 -#: src/pages/sales/SalesOrderDetail.tsx:446 +#: src/pages/build/BuildDetail.tsx:610 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:413 +#: src/pages/sales/ReturnOrderDetail.tsx:424 +#: src/pages/sales/SalesOrderDetail.tsx:451 msgid "Order issued" msgstr "" -#: src/pages/build/BuildDetail.tsx:624 +#: src/pages/build/BuildDetail.tsx:629 msgid "Complete Build Order" msgstr "" -#: src/pages/build/BuildDetail.tsx:630 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:436 -#: src/pages/sales/ReturnOrderDetail.tsx:442 -#: src/pages/sales/SalesOrderDetail.tsx:480 +#: src/pages/build/BuildDetail.tsx:635 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:441 +#: src/pages/sales/ReturnOrderDetail.tsx:447 +#: src/pages/sales/SalesOrderDetail.tsx:485 msgid "Mark this order as complete" msgstr "" -#: src/pages/build/BuildDetail.tsx:633 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:430 -#: src/pages/sales/ReturnOrderDetail.tsx:443 -#: src/pages/sales/SalesOrderDetail.tsx:481 +#: src/pages/build/BuildDetail.tsx:638 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:435 +#: src/pages/sales/ReturnOrderDetail.tsx:448 +#: src/pages/sales/SalesOrderDetail.tsx:486 msgid "Order completed" msgstr "" -#: src/pages/build/BuildDetail.tsx:660 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:459 -#: src/pages/sales/ReturnOrderDetail.tsx:470 -#: src/pages/sales/SalesOrderDetail.tsx:516 +#: src/pages/build/BuildDetail.tsx:665 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:464 +#: src/pages/sales/ReturnOrderDetail.tsx:475 +#: src/pages/sales/SalesOrderDetail.tsx:521 msgid "Issue Order" msgstr "" -#: src/pages/build/BuildDetail.tsx:667 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:466 -#: src/pages/sales/ReturnOrderDetail.tsx:477 -#: src/pages/sales/SalesOrderDetail.tsx:530 +#: src/pages/build/BuildDetail.tsx:672 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:471 +#: src/pages/sales/ReturnOrderDetail.tsx:482 +#: src/pages/sales/SalesOrderDetail.tsx:535 msgid "Complete Order" msgstr "" -#: src/pages/build/BuildDetail.tsx:686 +#: src/pages/build/BuildDetail.tsx:691 msgid "Build Order Actions" msgstr "" -#: src/pages/build/BuildDetail.tsx:691 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:489 -#: src/pages/sales/ReturnOrderDetail.tsx:500 -#: src/pages/sales/SalesOrderDetail.tsx:554 +#: src/pages/build/BuildDetail.tsx:696 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:494 +#: src/pages/sales/ReturnOrderDetail.tsx:505 +#: src/pages/sales/SalesOrderDetail.tsx:559 msgid "Edit order" msgstr "" -#: src/pages/build/BuildDetail.tsx:695 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:497 -#: src/pages/sales/ReturnOrderDetail.tsx:506 -#: src/pages/sales/SalesOrderDetail.tsx:559 -msgid "Duplicate order" -msgstr "" - -#: src/pages/build/BuildDetail.tsx:699 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:500 +#: src/pages/build/BuildDetail.tsx:700 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:502 #: src/pages/sales/ReturnOrderDetail.tsx:511 -#: src/pages/sales/SalesOrderDetail.tsx:562 -msgid "Hold order" +#: src/pages/sales/SalesOrderDetail.tsx:564 +msgid "Duplicate order" msgstr "" #: src/pages/build/BuildDetail.tsx:704 #: src/pages/purchasing/PurchaseOrderDetail.tsx:505 #: src/pages/sales/ReturnOrderDetail.tsx:516 #: src/pages/sales/SalesOrderDetail.tsx:567 +msgid "Hold order" +msgstr "" + +#: src/pages/build/BuildDetail.tsx:709 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:510 +#: src/pages/sales/ReturnOrderDetail.tsx:521 +#: src/pages/sales/SalesOrderDetail.tsx:572 msgid "Cancel order" msgstr "" -#: src/pages/build/BuildDetail.tsx:742 +#: src/pages/build/BuildDetail.tsx:747 #: src/pages/stock/StockDetail.tsx:344 -#: src/tables/build/BuildAllocatedStockTable.tsx:85 +#: src/tables/build/BuildAllocatedStockTable.tsx:82 #: src/tables/part/PartBuildAllocationsTable.tsx:45 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:157 #: src/tables/stock/StockTrackingTable.tsx:109 @@ -7143,7 +7206,7 @@ msgstr "" #~ msgid "Build order created" #~ msgstr "Build order created" -#: src/pages/build/BuildIndex.tsx:29 +#: src/pages/build/BuildIndex.tsx:35 #: src/tables/build/BuildOrderTable.tsx:184 msgid "Show external build orders" msgstr "" @@ -7152,61 +7215,82 @@ msgstr "" #~ msgid "New Build Order" #~ msgstr "New Build Order" -#: src/pages/build/BuildIndex.tsx:83 -#: src/pages/purchasing/PurchasingIndex.tsx:69 -#: src/pages/sales/SalesIndex.tsx:92 -#: src/pages/sales/SalesIndex.tsx:125 +#: src/pages/build/BuildIndex.tsx:74 +#: src/pages/part/CategoryDetail.tsx:292 +#: src/pages/purchasing/PurchasingIndex.tsx:74 +#: src/pages/purchasing/PurchasingIndex.tsx:107 +#: src/pages/purchasing/PurchasingIndex.tsx:135 +#: src/pages/purchasing/PurchasingIndex.tsx:156 +#: src/pages/purchasing/PurchasingIndex.tsx:184 +#: src/pages/sales/SalesIndex.tsx:61 +#: src/pages/sales/SalesIndex.tsx:107 +#: src/pages/sales/SalesIndex.tsx:140 msgid "Table View" msgstr "" -#: src/pages/build/BuildIndex.tsx:86 -#: src/pages/purchasing/PurchasingIndex.tsx:72 -#: src/pages/sales/SalesIndex.tsx:95 -#: src/pages/sales/SalesIndex.tsx:128 +#: src/pages/build/BuildIndex.tsx:80 +#: src/pages/purchasing/PurchasingIndex.tsx:80 +#: src/pages/sales/SalesIndex.tsx:67 +#: src/pages/sales/SalesIndex.tsx:113 msgid "Calendar View" msgstr "" -#: src/pages/company/CompanyDetail.tsx:99 +#: src/pages/build/BuildIndex.tsx:86 +#: src/pages/part/CategoryDetail.tsx:306 +#: src/pages/purchasing/PurchasingIndex.tsx:92 +#: src/pages/purchasing/PurchasingIndex.tsx:118 +#: src/pages/purchasing/PurchasingIndex.tsx:141 +#: src/pages/purchasing/PurchasingIndex.tsx:167 +#: src/pages/purchasing/PurchasingIndex.tsx:190 +#: src/pages/sales/SalesIndex.tsx:79 +#: src/pages/sales/SalesIndex.tsx:125 +#: src/pages/sales/SalesIndex.tsx:151 +msgid "Parametric View" +msgstr "" + +#: src/pages/company/CompanyDetail.tsx:100 msgid "Website" msgstr "" -#: src/pages/company/CompanyDetail.tsx:107 +#: src/pages/company/CompanyDetail.tsx:108 msgid "Phone Number" msgstr "" -#: src/pages/company/CompanyDetail.tsx:114 +#: src/pages/company/CompanyDetail.tsx:115 msgid "Email Address" msgstr "" -#: src/pages/company/CompanyDetail.tsx:121 +#: src/pages/company/CompanyDetail.tsx:122 msgid "Tax ID" msgstr "" -#: src/pages/company/CompanyDetail.tsx:131 +#: src/pages/company/CompanyDetail.tsx:132 msgid "Default Currency" msgstr "" -#: src/pages/company/CompanyDetail.tsx:142 +#: src/pages/company/CompanyDetail.tsx:143 #: src/pages/company/ManufacturerDetail.tsx:8 -#: src/pages/company/ManufacturerPartDetail.tsx:104 -#: src/pages/company/ManufacturerPartDetail.tsx:280 -#: src/pages/company/SupplierPartDetail.tsx:152 +#: src/pages/company/ManufacturerPartDetail.tsx:103 +#: src/pages/company/ManufacturerPartDetail.tsx:271 +#: src/pages/company/SupplierPartDetail.tsx:153 #: src/tables/Filter.tsx:347 #: src/tables/company/CompanyTable.tsx:101 #: src/tables/purchasing/SupplierPartTable.tsx:89 msgid "Manufacturer" msgstr "" -#: src/pages/company/CompanyDetail.tsx:148 +#: src/pages/company/CompanyDetail.tsx:149 #: src/pages/company/CustomerDetail.tsx:8 #: src/pages/part/pricing/SaleHistoryPanel.tsx:31 -#: src/pages/sales/ReturnOrderDetail.tsx:123 -#: src/pages/sales/SalesOrderDetail.tsx:113 -#: src/pages/sales/SalesOrderShipmentDetail.tsx:113 +#: src/pages/sales/ReturnOrderDetail.tsx:124 +#: src/pages/sales/SalesOrderDetail.tsx:114 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:111 #: src/pages/stock/StockDetail.tsx:370 #: src/tables/company/CompanyTable.tsx:106 +#: src/tables/sales/ReturnOrderParametricTable.tsx:32 #: src/tables/sales/ReturnOrderTable.tsx:108 -#: src/tables/sales/SalesOrderShipmentTable.tsx:111 +#: src/tables/sales/SalesOrderParametricTable.tsx:32 +#: src/tables/sales/SalesOrderShipmentTable.tsx:132 #: src/tables/sales/SalesOrderTable.tsx:133 #: src/tables/stock/StockTrackingTable.tsx:153 msgid "Customer" @@ -7216,11 +7300,11 @@ msgstr "" #~ msgid "Edit company" #~ msgstr "Edit company" -#: src/pages/company/CompanyDetail.tsx:181 +#: src/pages/company/CompanyDetail.tsx:182 msgid "Company Details" msgstr "" -#: src/pages/company/CompanyDetail.tsx:187 +#: src/pages/company/CompanyDetail.tsx:188 msgid "Supplied Parts" msgstr "" @@ -7228,79 +7312,79 @@ msgstr "" #~ msgid "Delete company" #~ msgstr "Delete company" -#: src/pages/company/CompanyDetail.tsx:194 +#: src/pages/company/CompanyDetail.tsx:195 msgid "Manufactured Parts" msgstr "" -#: src/pages/company/CompanyDetail.tsx:241 +#: src/pages/company/CompanyDetail.tsx:242 msgid "Assigned Stock" msgstr "" -#: src/pages/company/CompanyDetail.tsx:282 +#: src/pages/company/CompanyDetail.tsx:287 #: src/tables/company/CompanyTable.tsx:82 msgid "Edit Company" msgstr "" -#: src/pages/company/CompanyDetail.tsx:290 +#: src/pages/company/CompanyDetail.tsx:295 msgid "Delete Company" msgstr "" -#: src/pages/company/CompanyDetail.tsx:305 +#: src/pages/company/CompanyDetail.tsx:310 msgid "Company Actions" msgstr "" -#: src/pages/company/ManufacturerPartDetail.tsx:78 -#: src/pages/company/SupplierPartDetail.tsx:89 +#: src/pages/company/ManufacturerPartDetail.tsx:77 +#: src/pages/company/SupplierPartDetail.tsx:90 msgid "Internal Part" msgstr "" -#: src/pages/company/ManufacturerPartDetail.tsx:112 +#: src/pages/company/ManufacturerPartDetail.tsx:111 msgid "Manufacturer Part Number" msgstr "" -#: src/pages/company/ManufacturerPartDetail.tsx:129 -#: src/pages/company/SupplierPartDetail.tsx:113 +#: src/pages/company/ManufacturerPartDetail.tsx:128 +#: src/pages/company/SupplierPartDetail.tsx:114 msgid "External Link" msgstr "" -#: src/pages/company/ManufacturerPartDetail.tsx:148 -#: src/pages/company/SupplierPartDetail.tsx:232 +#: src/pages/company/ManufacturerPartDetail.tsx:147 +#: src/pages/company/SupplierPartDetail.tsx:233 #: src/pages/part/PartDetail.tsx:787 msgid "Part Details" msgstr "" -#: src/pages/company/ManufacturerPartDetail.tsx:151 +#: src/pages/company/ManufacturerPartDetail.tsx:150 msgid "Manufacturer Details" msgstr "" -#: src/pages/company/ManufacturerPartDetail.tsx:160 +#: src/pages/company/ManufacturerPartDetail.tsx:159 msgid "Manufacturer Part Details" msgstr "" -#: src/pages/company/ManufacturerPartDetail.tsx:178 -#: src/pages/company/SupplierPartDetail.tsx:252 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:381 +#: src/pages/company/ManufacturerPartDetail.tsx:165 +#: src/pages/company/SupplierPartDetail.tsx:253 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:382 msgid "Received Stock" msgstr "" -#: src/pages/company/ManufacturerPartDetail.tsx:220 +#: src/pages/company/ManufacturerPartDetail.tsx:211 #: src/tables/purchasing/ManufacturerPartTable.tsx:108 msgid "Edit Manufacturer Part" msgstr "" -#: src/pages/company/ManufacturerPartDetail.tsx:227 +#: src/pages/company/ManufacturerPartDetail.tsx:218 #: src/tables/purchasing/ManufacturerPartTable.tsx:96 #: src/tables/purchasing/ManufacturerPartTable.tsx:115 #: src/tables/purchasing/ManufacturerPartTable.tsx:156 msgid "Add Manufacturer Part" msgstr "" -#: src/pages/company/ManufacturerPartDetail.tsx:239 +#: src/pages/company/ManufacturerPartDetail.tsx:230 #: src/tables/purchasing/ManufacturerPartTable.tsx:126 msgid "Delete Manufacturer Part" msgstr "" -#: src/pages/company/ManufacturerPartDetail.tsx:254 +#: src/pages/company/ManufacturerPartDetail.tsx:245 msgid "Manufacturer Part Actions" msgstr "" @@ -7308,12 +7392,12 @@ msgstr "" #~ msgid "ManufacturerPart" #~ msgstr "ManufacturerPart" -#: src/pages/company/SupplierPartDetail.tsx:104 +#: src/pages/company/SupplierPartDetail.tsx:105 #: src/tables/part/RelatedPartTable.tsx:82 msgid "Part Description" msgstr "" -#: src/pages/company/SupplierPartDetail.tsx:179 +#: src/pages/company/SupplierPartDetail.tsx:180 #: src/tables/part/PartPurchaseOrdersTable.tsx:73 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:191 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:233 @@ -7321,50 +7405,50 @@ msgstr "" msgid "Pack Quantity" msgstr "" -#: src/pages/company/SupplierPartDetail.tsx:204 +#: src/pages/company/SupplierPartDetail.tsx:205 msgid "Supplier Availability" msgstr "" -#: src/pages/company/SupplierPartDetail.tsx:212 +#: src/pages/company/SupplierPartDetail.tsx:213 msgid "Availability Updated" msgstr "" -#: src/pages/company/SupplierPartDetail.tsx:237 +#: src/pages/company/SupplierPartDetail.tsx:238 msgid "Availability" msgstr "" -#: src/pages/company/SupplierPartDetail.tsx:246 +#: src/pages/company/SupplierPartDetail.tsx:247 msgid "Supplier Part Details" msgstr "" -#: src/pages/company/SupplierPartDetail.tsx:279 +#: src/pages/company/SupplierPartDetail.tsx:280 #: src/pages/part/PartPricingPanel.tsx:113 #: src/pages/part/pricing/PricingOverviewPanel.tsx:239 msgid "Supplier Pricing" msgstr "" -#: src/pages/company/SupplierPartDetail.tsx:308 +#: src/pages/company/SupplierPartDetail.tsx:313 msgid "Supplier Part Actions" msgstr "" -#: src/pages/company/SupplierPartDetail.tsx:332 +#: src/pages/company/SupplierPartDetail.tsx:337 #: src/tables/purchasing/SupplierPartTable.tsx:244 msgid "Edit Supplier Part" msgstr "" -#: src/pages/company/SupplierPartDetail.tsx:340 +#: src/pages/company/SupplierPartDetail.tsx:345 #: src/tables/purchasing/SupplierPartTable.tsx:264 msgid "Delete Supplier Part" msgstr "" -#: src/pages/company/SupplierPartDetail.tsx:348 +#: src/pages/company/SupplierPartDetail.tsx:353 #: src/tables/purchasing/SupplierPartTable.tsx:172 #: src/tables/purchasing/SupplierPartTable.tsx:251 msgid "Add Supplier Part" msgstr "" -#: src/pages/company/SupplierPartDetail.tsx:388 -#: src/pages/part/PartDetail.tsx:1003 +#: src/pages/company/SupplierPartDetail.tsx:393 +#: src/pages/part/PartDetail.tsx:1018 msgid "No Stock" msgstr "" @@ -7411,83 +7495,83 @@ msgstr "" msgid "Basic user" msgstr "" -#: src/pages/part/CategoryDetail.tsx:100 +#: src/pages/part/CategoryDetail.tsx:103 #: src/pages/stock/LocationDetail.tsx:94 #: src/tables/settings/ErrorTable.tsx:63 #: src/tables/settings/ErrorTable.tsx:108 msgid "Path" msgstr "" -#: src/pages/part/CategoryDetail.tsx:116 +#: src/pages/part/CategoryDetail.tsx:119 msgid "Parent Category" msgstr "" -#: src/pages/part/CategoryDetail.tsx:139 -#: src/pages/part/CategoryDetail.tsx:271 +#: src/pages/part/CategoryDetail.tsx:142 +#: src/pages/part/CategoryDetail.tsx:279 msgid "Subcategories" msgstr "" -#: src/pages/part/CategoryDetail.tsx:146 +#: src/pages/part/CategoryDetail.tsx:149 #: src/pages/stock/LocationDetail.tsx:134 #: src/tables/part/PartCategoryTable.tsx:89 #: src/tables/stock/StockLocationTable.tsx:43 msgid "Structural" msgstr "" -#: src/pages/part/CategoryDetail.tsx:152 +#: src/pages/part/CategoryDetail.tsx:155 msgid "Parent default location" msgstr "" -#: src/pages/part/CategoryDetail.tsx:159 +#: src/pages/part/CategoryDetail.tsx:162 msgid "Default location" msgstr "" -#: src/pages/part/CategoryDetail.tsx:170 +#: src/pages/part/CategoryDetail.tsx:173 msgid "Top level part category" msgstr "" -#: src/pages/part/CategoryDetail.tsx:180 -#: src/pages/part/CategoryDetail.tsx:248 +#: src/pages/part/CategoryDetail.tsx:183 +#: src/pages/part/CategoryDetail.tsx:251 #: src/tables/part/PartCategoryTable.tsx:122 msgid "Edit Part Category" msgstr "" -#: src/pages/part/CategoryDetail.tsx:189 +#: src/pages/part/CategoryDetail.tsx:192 msgid "Move items to parent category" msgstr "" -#: src/pages/part/CategoryDetail.tsx:193 +#: src/pages/part/CategoryDetail.tsx:196 #: src/pages/stock/LocationDetail.tsx:226 msgid "Delete items" msgstr "" -#: src/pages/part/CategoryDetail.tsx:201 -#: src/pages/part/CategoryDetail.tsx:253 +#: src/pages/part/CategoryDetail.tsx:204 +#: src/pages/part/CategoryDetail.tsx:256 msgid "Delete Part Category" msgstr "" -#: src/pages/part/CategoryDetail.tsx:204 +#: src/pages/part/CategoryDetail.tsx:207 msgid "Parts Action" msgstr "" -#: src/pages/part/CategoryDetail.tsx:205 +#: src/pages/part/CategoryDetail.tsx:208 msgid "Action for parts in this category" msgstr "" -#: src/pages/part/CategoryDetail.tsx:211 +#: src/pages/part/CategoryDetail.tsx:214 msgid "Child Categories Action" msgstr "" -#: src/pages/part/CategoryDetail.tsx:212 +#: src/pages/part/CategoryDetail.tsx:215 msgid "Action for child categories in this category" msgstr "" -#: src/pages/part/CategoryDetail.tsx:244 +#: src/pages/part/CategoryDetail.tsx:247 #: src/tables/part/PartCategoryTable.tsx:143 msgid "Category Actions" msgstr "" -#: src/pages/part/CategoryDetail.tsx:265 +#: src/pages/part/CategoryDetail.tsx:273 msgid "Category Details" msgstr "" @@ -7585,7 +7669,6 @@ msgid "Category Default Location" msgstr "" #: src/pages/part/PartDetail.tsx:507 -#: src/tables/purchasing/ManufacturerPartParameterTable.tsx:48 msgid "Units" msgstr "" @@ -7600,7 +7683,7 @@ msgstr "" #: src/pages/part/PartDetail.tsx:542 #: src/tables/bom/BomTable.tsx:439 -#: src/tables/build/BuildLineTable.tsx:305 +#: src/tables/build/BuildLineTable.tsx:306 #: src/tables/part/PartTable.tsx:319 #: src/tables/sales/SalesOrderLineItemTable.tsx:138 msgid "Available Stock" @@ -7608,7 +7691,7 @@ msgstr "" #: src/pages/part/PartDetail.tsx:548 #: src/tables/bom/BomTable.tsx:341 -#: src/tables/build/BuildLineTable.tsx:267 +#: src/tables/build/BuildLineTable.tsx:268 #: src/tables/sales/SalesOrderLineItemTable.tsx:180 msgid "On order" msgstr "" @@ -7634,7 +7717,7 @@ msgstr "" #~ msgstr "Scheduling" #: src/pages/part/PartDetail.tsx:620 -#: src/tables/part/ParametricPartTable.tsx:359 +#: src/tables/part/ParametricPartTable.tsx:24 #: src/tables/part/PartTable.tsx:203 msgid "Locked" msgstr "" @@ -7671,16 +7754,16 @@ msgid "Saleable Part" msgstr "" #: src/pages/part/PartDetail.tsx:663 -#: src/pages/part/PartDetail.tsx:1033 +#: src/pages/part/PartDetail.tsx:1054 #: src/tables/bom/BomTable.tsx:150 #: src/tables/bom/BomTable.tsx:434 msgid "Virtual Part" msgstr "" #: src/pages/part/PartDetail.tsx:678 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:271 -#: src/pages/sales/ReturnOrderDetail.tsx:249 -#: src/pages/sales/SalesOrderDetail.tsx:242 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:272 +#: src/pages/sales/ReturnOrderDetail.tsx:250 +#: src/pages/sales/SalesOrderDetail.tsx:243 #: src/tables/ColumnRenderers.tsx:502 msgid "Creation Date" msgstr "" @@ -7718,35 +7801,46 @@ msgstr "" msgid "Select Part Revision" msgstr "" -#: src/pages/part/PartDetail.tsx:823 +#: src/pages/part/PartDetail.tsx:812 msgid "Variants" msgstr "" -#: src/pages/part/PartDetail.tsx:830 +#: src/pages/part/PartDetail.tsx:819 #: src/pages/stock/StockDetail.tsx:542 msgid "Allocations" msgstr "" -#: src/pages/part/PartDetail.tsx:837 +#: src/pages/part/PartDetail.tsx:826 msgid "Bill of Materials" msgstr "" -#: src/pages/part/PartDetail.tsx:849 +#: src/pages/part/PartDetail.tsx:838 msgid "Used In" msgstr "" -#: src/pages/part/PartDetail.tsx:856 +#: src/pages/part/PartDetail.tsx:845 msgid "Part Pricing" msgstr "" -#: src/pages/part/PartDetail.tsx:926 +#: src/pages/part/PartDetail.tsx:915 msgid "Test Templates" msgstr "" -#: src/pages/part/PartDetail.tsx:948 +#: src/pages/part/PartDetail.tsx:937 msgid "Related Parts" msgstr "" +#: src/pages/part/PartDetail.tsx:949 +#: src/tables/ColumnRenderers.tsx:73 +#: src/tables/bom/BomTable.tsx:657 +#: src/tables/part/PartTestTemplateTable.tsx:258 +msgid "Part is Locked" +msgstr "" + +#: src/pages/part/PartDetail.tsx:954 +msgid "Part parameters cannot be edited, as the part is locked" +msgstr "" + #: src/pages/part/PartDetail.tsx:956 #~ msgid "Count part stock" #~ msgstr "Count part stock" @@ -7755,42 +7849,46 @@ msgstr "" #~ msgid "Transfer part stock" #~ msgstr "Transfer part stock" -#: src/pages/part/PartDetail.tsx:1009 +#: src/pages/part/PartDetail.tsx:1024 #: src/tables/part/PartTestTemplateTable.tsx:112 #: src/tables/stock/StockItemTestResultTable.tsx:404 msgid "Required" msgstr "" -#: src/pages/part/PartDetail.tsx:1058 +#: src/pages/part/PartDetail.tsx:1042 +msgid "Deficit" +msgstr "" + +#: src/pages/part/PartDetail.tsx:1079 #: src/tables/part/PartTable.tsx:396 #: src/tables/part/PartTable.tsx:449 msgid "Add Part" msgstr "" -#: src/pages/part/PartDetail.tsx:1072 +#: src/pages/part/PartDetail.tsx:1093 msgid "Delete Part" msgstr "" -#: src/pages/part/PartDetail.tsx:1081 +#: src/pages/part/PartDetail.tsx:1102 msgid "Deleting this part cannot be reversed" msgstr "" -#: src/pages/part/PartDetail.tsx:1143 +#: src/pages/part/PartDetail.tsx:1164 #: src/pages/stock/StockDetail.tsx:883 msgid "Order" msgstr "" -#: src/pages/part/PartDetail.tsx:1144 +#: src/pages/part/PartDetail.tsx:1165 #: src/pages/stock/StockDetail.tsx:884 -#: src/tables/build/BuildLineTable.tsx:761 +#: src/tables/build/BuildLineTable.tsx:768 msgid "Order Stock" msgstr "" -#: src/pages/part/PartDetail.tsx:1156 +#: src/pages/part/PartDetail.tsx:1177 msgid "Search by serial number" msgstr "" -#: src/pages/part/PartDetail.tsx:1164 +#: src/pages/part/PartDetail.tsx:1185 #: src/tables/part/PartTable.tsx:506 msgid "Part Actions" msgstr "" @@ -8039,7 +8137,7 @@ msgstr "" #: src/pages/part/pricing/PricingOverviewPanel.tsx:288 #: src/pages/stock/StockDetail.tsx:426 -#: src/tables/part/PartParameterTable.tsx:121 +#: src/tables/general/ParameterTable.tsx:101 #: src/tables/stock/StockItemTable.tsx:300 msgid "Last Updated" msgstr "" @@ -8107,17 +8205,17 @@ msgstr "" msgid "Variant Part" msgstr "" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:89 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:90 msgid "Edit Purchase Order" msgstr "" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:125 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:126 #: src/tables/purchasing/PurchaseOrderTable.tsx:154 #: src/tables/purchasing/PurchaseOrderTable.tsx:167 msgid "Add Purchase Order" msgstr "" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:147 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:148 msgid "Supplier Reference" msgstr "" @@ -8127,20 +8225,20 @@ msgstr "" #~ msgid "Order Currency," #~ msgstr "Order Currency," -#: src/pages/purchasing/PurchaseOrderDetail.tsx:187 -#: src/pages/sales/ReturnOrderDetail.tsx:160 -#: src/pages/sales/SalesOrderDetail.tsx:144 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:188 +#: src/pages/sales/ReturnOrderDetail.tsx:161 +#: src/pages/sales/SalesOrderDetail.tsx:145 msgid "Completed Line Items" msgstr "" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:196 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:197 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:272 msgid "Destination" msgstr "" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:202 -#: src/pages/sales/ReturnOrderDetail.tsx:167 -#: src/pages/sales/SalesOrderDetail.tsx:161 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:203 +#: src/pages/sales/ReturnOrderDetail.tsx:168 +#: src/pages/sales/SalesOrderDetail.tsx:162 msgid "Order Currency" msgstr "" @@ -8150,97 +8248,97 @@ msgstr "" #~ msgid "Created On" #~ msgstr "Created On" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:208 -#: src/pages/sales/ReturnOrderDetail.tsx:174 -#: src/pages/sales/SalesOrderDetail.tsx:167 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:209 +#: src/pages/sales/ReturnOrderDetail.tsx:175 +#: src/pages/sales/SalesOrderDetail.tsx:168 msgid "Total Cost" msgstr "" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:237 -#: src/pages/sales/ReturnOrderDetail.tsx:215 -#: src/pages/sales/SalesOrderDetail.tsx:208 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:238 +#: src/pages/sales/ReturnOrderDetail.tsx:216 +#: src/pages/sales/SalesOrderDetail.tsx:209 msgid "Contact Email" msgstr "" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:245 -#: src/pages/sales/ReturnOrderDetail.tsx:223 -#: src/pages/sales/SalesOrderDetail.tsx:216 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:246 +#: src/pages/sales/ReturnOrderDetail.tsx:224 +#: src/pages/sales/SalesOrderDetail.tsx:217 msgid "Contact Phone" msgstr "" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:278 -#: src/pages/sales/ReturnOrderDetail.tsx:257 -#: src/pages/sales/SalesOrderDetail.tsx:249 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:279 +#: src/pages/sales/ReturnOrderDetail.tsx:258 +#: src/pages/sales/SalesOrderDetail.tsx:250 msgid "Issue Date" msgstr "" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:303 -#: src/pages/sales/ReturnOrderDetail.tsx:281 -#: src/pages/sales/SalesOrderDetail.tsx:272 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:304 +#: src/pages/sales/ReturnOrderDetail.tsx:282 +#: src/pages/sales/SalesOrderDetail.tsx:273 #: src/tables/ColumnRenderers.tsx:510 #: src/tables/build/BuildOrderTable.tsx:137 #: src/tables/part/PartPurchaseOrdersTable.tsx:106 msgid "Completion Date" msgstr "" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:333 -#: src/pages/sales/ReturnOrderDetail.tsx:311 -#: src/pages/sales/SalesOrderDetail.tsx:349 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:334 +#: src/pages/sales/ReturnOrderDetail.tsx:312 +#: src/pages/sales/SalesOrderDetail.tsx:350 msgid "Order Details" msgstr "" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:339 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:348 -#: src/pages/sales/ReturnOrderDetail.tsx:153 -#: src/pages/sales/ReturnOrderDetail.tsx:317 -#: src/pages/sales/ReturnOrderDetail.tsx:326 -#: src/pages/sales/SalesOrderDetail.tsx:355 -#: src/pages/sales/SalesOrderDetail.tsx:364 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:340 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:349 +#: src/pages/sales/ReturnOrderDetail.tsx:154 +#: src/pages/sales/ReturnOrderDetail.tsx:318 +#: src/pages/sales/ReturnOrderDetail.tsx:327 +#: src/pages/sales/SalesOrderDetail.tsx:356 +#: src/pages/sales/SalesOrderDetail.tsx:365 msgid "Line Items" msgstr "" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:363 -#: src/pages/sales/ReturnOrderDetail.tsx:341 -#: src/pages/sales/SalesOrderDetail.tsx:378 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:364 +#: src/pages/sales/ReturnOrderDetail.tsx:342 +#: src/pages/sales/SalesOrderDetail.tsx:379 msgid "Extra Line Items" msgstr "" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:405 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:410 msgid "Issue Purchase Order" msgstr "" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:413 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:418 msgid "Cancel Purchase Order" msgstr "" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:421 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:426 msgid "Hold Purchase Order" msgstr "" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:429 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:434 msgid "Complete Purchase Order" msgstr "" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:485 -#: src/pages/sales/ReturnOrderDetail.tsx:496 -#: src/pages/sales/SalesOrderDetail.tsx:549 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:490 +#: src/pages/sales/ReturnOrderDetail.tsx:501 +#: src/pages/sales/SalesOrderDetail.tsx:554 msgid "Order Actions" msgstr "" -#: src/pages/sales/ReturnOrderDetail.tsx:114 -#: src/pages/sales/SalesOrderDetail.tsx:104 -#: src/pages/sales/SalesOrderShipmentDetail.tsx:134 +#: src/pages/sales/ReturnOrderDetail.tsx:115 +#: src/pages/sales/SalesOrderDetail.tsx:105 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:132 #: src/tables/sales/SalesOrderTable.tsx:141 msgid "Customer Reference" msgstr "" -#: src/pages/sales/ReturnOrderDetail.tsx:195 +#: src/pages/sales/ReturnOrderDetail.tsx:196 msgid "Return Address" msgstr "" -#: src/pages/sales/ReturnOrderDetail.tsx:201 -#: src/pages/sales/SalesOrderDetail.tsx:194 -#: src/pages/sales/SalesOrderShipmentDetail.tsx:181 +#: src/pages/sales/ReturnOrderDetail.tsx:202 +#: src/pages/sales/SalesOrderDetail.tsx:195 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:179 msgid "Not specified" msgstr "" @@ -8248,117 +8346,117 @@ msgstr "" #~ msgid "Order canceled" #~ msgstr "Order canceled" -#: src/pages/sales/ReturnOrderDetail.tsx:389 +#: src/pages/sales/ReturnOrderDetail.tsx:394 msgid "Edit Return Order" msgstr "" -#: src/pages/sales/ReturnOrderDetail.tsx:407 +#: src/pages/sales/ReturnOrderDetail.tsx:412 #: src/tables/sales/ReturnOrderTable.tsx:154 #: src/tables/sales/ReturnOrderTable.tsx:167 msgid "Add Return Order" msgstr "" -#: src/pages/sales/ReturnOrderDetail.tsx:416 +#: src/pages/sales/ReturnOrderDetail.tsx:421 msgid "Issue Return Order" msgstr "" -#: src/pages/sales/ReturnOrderDetail.tsx:424 +#: src/pages/sales/ReturnOrderDetail.tsx:429 msgid "Cancel Return Order" msgstr "" -#: src/pages/sales/ReturnOrderDetail.tsx:432 +#: src/pages/sales/ReturnOrderDetail.tsx:437 msgid "Hold Return Order" msgstr "" -#: src/pages/sales/ReturnOrderDetail.tsx:440 +#: src/pages/sales/ReturnOrderDetail.tsx:445 msgid "Complete Return Order" msgstr "" -#: src/pages/sales/SalesOrderDetail.tsx:153 +#: src/pages/sales/SalesOrderDetail.tsx:154 msgid "Completed Shipments" msgstr "" -#: src/pages/sales/SalesOrderDetail.tsx:188 -#: src/pages/sales/SalesOrderShipmentDetail.tsx:170 +#: src/pages/sales/SalesOrderDetail.tsx:189 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:168 msgid "Shipping Address" msgstr "" -#: src/pages/sales/SalesOrderDetail.tsx:316 +#: src/pages/sales/SalesOrderDetail.tsx:317 msgid "Edit Sales Order" msgstr "" -#: src/pages/sales/SalesOrderDetail.tsx:338 +#: src/pages/sales/SalesOrderDetail.tsx:339 #: src/tables/sales/SalesOrderTable.tsx:108 #: src/tables/sales/SalesOrderTable.tsx:121 msgid "Add Sales Order" msgstr "" -#: src/pages/sales/SalesOrderDetail.tsx:396 +#: src/pages/sales/SalesOrderDetail.tsx:397 #: src/tables/sales/SalesOrderTable.tsx:147 msgid "Shipments" msgstr "" -#: src/pages/sales/SalesOrderDetail.tsx:443 +#: src/pages/sales/SalesOrderDetail.tsx:448 msgid "Issue Sales Order" msgstr "" -#: src/pages/sales/SalesOrderDetail.tsx:451 +#: src/pages/sales/SalesOrderDetail.tsx:456 msgid "Cancel Sales Order" msgstr "" -#: src/pages/sales/SalesOrderDetail.tsx:459 +#: src/pages/sales/SalesOrderDetail.tsx:464 msgid "Hold Sales Order" msgstr "" -#: src/pages/sales/SalesOrderDetail.tsx:467 +#: src/pages/sales/SalesOrderDetail.tsx:472 msgid "Ship Sales Order" msgstr "" -#: src/pages/sales/SalesOrderDetail.tsx:469 +#: src/pages/sales/SalesOrderDetail.tsx:474 msgid "Ship this order?" msgstr "" -#: src/pages/sales/SalesOrderDetail.tsx:470 +#: src/pages/sales/SalesOrderDetail.tsx:475 msgid "Order shipped" msgstr "" -#: src/pages/sales/SalesOrderDetail.tsx:478 +#: src/pages/sales/SalesOrderDetail.tsx:483 msgid "Complete Sales Order" msgstr "" -#: src/pages/sales/SalesOrderDetail.tsx:523 +#: src/pages/sales/SalesOrderDetail.tsx:528 msgid "Ship Order" msgstr "" -#: src/pages/sales/SalesOrderShipmentDetail.tsx:142 -#: src/tables/sales/SalesOrderShipmentTable.tsx:135 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:140 +#: src/tables/sales/SalesOrderShipmentTable.tsx:156 msgid "Shipment Reference" msgstr "" -#: src/pages/sales/SalesOrderShipmentDetail.tsx:148 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:146 msgid "Tracking Number" msgstr "" -#: src/pages/sales/SalesOrderShipmentDetail.tsx:156 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:154 msgid "Invoice Number" msgstr "" -#: src/pages/sales/SalesOrderShipmentDetail.tsx:191 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:189 msgid "Allocated Items" msgstr "" -#: src/pages/sales/SalesOrderShipmentDetail.tsx:196 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:194 msgid "Checked By" msgstr "" -#: src/pages/sales/SalesOrderShipmentDetail.tsx:202 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:200 msgid "Not checked" msgstr "" -#: src/pages/sales/SalesOrderShipmentDetail.tsx:208 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:206 #: src/tables/ColumnRenderers.tsx:518 #: src/tables/sales/SalesOrderAllocationTable.tsx:182 -#: src/tables/sales/SalesOrderShipmentTable.tsx:168 +#: src/tables/sales/SalesOrderShipmentTable.tsx:189 msgid "Shipment Date" msgstr "" @@ -8366,108 +8464,82 @@ msgstr "" #~ msgid "Assigned Items" #~ msgstr "Assigned Items" -#: src/pages/sales/SalesOrderShipmentDetail.tsx:216 -#: src/tables/sales/SalesOrderShipmentTable.tsx:172 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:214 +#: src/tables/sales/SalesOrderShipmentTable.tsx:193 msgid "Delivery Date" msgstr "" -#: src/pages/sales/SalesOrderShipmentDetail.tsx:255 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:253 msgid "Shipment Details" msgstr "" -#: src/pages/sales/SalesOrderShipmentDetail.tsx:294 -#: src/pages/sales/SalesOrderShipmentDetail.tsx:438 -#: src/tables/sales/SalesOrderShipmentTable.tsx:90 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:292 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:406 +#: src/tables/sales/SalesOrderShipmentTable.tsx:97 msgid "Edit Shipment" msgstr "" -#: src/pages/sales/SalesOrderShipmentDetail.tsx:301 -#: src/pages/sales/SalesOrderShipmentDetail.tsx:457 -#: src/tables/sales/SalesOrderShipmentTable.tsx:82 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:299 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:425 +#: src/tables/sales/SalesOrderShipmentTable.tsx:89 msgid "Cancel Shipment" msgstr "" -#: src/pages/sales/SalesOrderShipmentDetail.tsx:314 -#: src/tables/sales/SalesOrderShipmentTable.tsx:98 -#: src/tables/sales/SalesOrderShipmentTable.tsx:193 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:312 +#: src/tables/sales/SalesOrderShipmentTable.tsx:119 +#: src/tables/sales/SalesOrderShipmentTable.tsx:238 msgid "Complete Shipment" msgstr "" -#: src/pages/sales/SalesOrderShipmentDetail.tsx:326 -#: src/pages/sales/SalesOrderShipmentDetail.tsx:328 -msgid "Check Shipment" -msgstr "" - -#: src/pages/sales/SalesOrderShipmentDetail.tsx:329 -msgid "Marking the shipment as checked indicates that you have verified that all items included in this shipment are correct" -msgstr "" - #: src/pages/sales/SalesOrderShipmentDetail.tsx:339 -msgid "Shipment marked as checked" -msgstr "" - -#: src/pages/sales/SalesOrderShipmentDetail.tsx:346 -#: src/pages/sales/SalesOrderShipmentDetail.tsx:348 -msgid "Uncheck Shipment" -msgstr "" - -#: src/pages/sales/SalesOrderShipmentDetail.tsx:349 -msgid "Marking the shipment as unchecked indicates that the shipment requires further verification" -msgstr "" - -#: src/pages/sales/SalesOrderShipmentDetail.tsx:359 -msgid "Shipment marked as unchecked" -msgstr "" - -#: src/pages/sales/SalesOrderShipmentDetail.tsx:371 #: src/tables/part/PartPurchaseOrdersTable.tsx:122 msgid "Pending" msgstr "" -#: src/pages/sales/SalesOrderShipmentDetail.tsx:377 -#: src/tables/sales/SalesOrderShipmentTable.tsx:147 -#: src/tables/sales/SalesOrderShipmentTable.tsx:254 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:345 +#: src/tables/sales/SalesOrderShipmentTable.tsx:168 +#: src/tables/sales/SalesOrderShipmentTable.tsx:299 msgid "Checked" msgstr "" -#: src/pages/sales/SalesOrderShipmentDetail.tsx:383 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:351 msgid "Not Checked" msgstr "" -#: src/pages/sales/SalesOrderShipmentDetail.tsx:389 -#: src/tables/sales/SalesOrderShipmentTable.tsx:154 -#: src/tables/sales/SalesOrderShipmentTable.tsx:259 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:357 +#: src/tables/sales/SalesOrderShipmentTable.tsx:175 +#: src/tables/sales/SalesOrderShipmentTable.tsx:304 msgid "Shipped" msgstr "" -#: src/pages/sales/SalesOrderShipmentDetail.tsx:395 -#: src/tables/sales/SalesOrderShipmentTable.tsx:161 -#: src/tables/sales/SalesOrderShipmentTable.tsx:264 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:363 +#: src/tables/sales/SalesOrderShipmentTable.tsx:182 +#: src/tables/sales/SalesOrderShipmentTable.tsx:309 #: src/tables/settings/EmailTable.tsx:31 msgid "Delivered" msgstr "" -#: src/pages/sales/SalesOrderShipmentDetail.tsx:410 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:378 msgid "Send Shipment" msgstr "" -#: src/pages/sales/SalesOrderShipmentDetail.tsx:433 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:401 msgid "Shipment Actions" msgstr "" -#: src/pages/sales/SalesOrderShipmentDetail.tsx:442 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:410 msgid "Check" msgstr "" -#: src/pages/sales/SalesOrderShipmentDetail.tsx:443 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:411 msgid "Mark shipment as checked" msgstr "" -#: src/pages/sales/SalesOrderShipmentDetail.tsx:449 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:417 msgid "Uncheck" msgstr "" -#: src/pages/sales/SalesOrderShipmentDetail.tsx:450 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:418 msgid "Mark shipment as unchecked" msgstr "" @@ -8775,13 +8847,6 @@ msgstr "" msgid "Part is not active" msgstr "" -#: src/tables/ColumnRenderers.tsx:73 -#: src/tables/bom/BomTable.tsx:657 -#: src/tables/part/PartParameterTable.tsx:227 -#: src/tables/part/PartTestTemplateTable.tsx:258 -msgid "Part is Locked" -msgstr "" - #: src/tables/ColumnRenderers.tsx:78 msgid "You are subscribed to notifications for this part" msgstr "" @@ -9219,13 +9284,13 @@ msgstr "" #~ msgstr "Show asssmbled items" #: src/tables/bom/BomTable.tsx:315 -#: src/tables/build/BuildLineTable.tsx:276 +#: src/tables/build/BuildLineTable.tsx:277 #: src/tables/part/PartTable.tsx:145 msgid "External stock" msgstr "" #: src/tables/bom/BomTable.tsx:323 -#: src/tables/build/BuildLineTable.tsx:239 +#: src/tables/build/BuildLineTable.tsx:240 msgid "Includes substitute stock" msgstr "" @@ -9234,7 +9299,7 @@ msgstr "" #~ msgstr "Edit Bom Item" #: src/tables/bom/BomTable.tsx:332 -#: src/tables/build/BuildLineTable.tsx:249 +#: src/tables/build/BuildLineTable.tsx:250 #: src/tables/sales/SalesOrderLineItemTable.tsx:166 msgid "Includes variant stock" msgstr "" @@ -9272,8 +9337,8 @@ msgid "Stock Information" msgstr "" #: src/tables/bom/BomTable.tsx:399 -#: src/tables/build/BuildLineTable.tsx:496 -#: src/tables/build/BuildLineTable.tsx:537 +#: src/tables/build/BuildLineTable.tsx:497 +#: src/tables/build/BuildLineTable.tsx:538 msgid "Consumable item" msgstr "" @@ -9282,7 +9347,7 @@ msgid "No available stock" msgstr "" #: src/tables/bom/BomTable.tsx:420 -#: src/tables/build/BuildLineTable.tsx:213 +#: src/tables/build/BuildLineTable.tsx:214 msgid "Show testable items" msgstr "" @@ -9291,7 +9356,7 @@ msgid "Show trackable items" msgstr "" #: src/tables/bom/BomTable.tsx:430 -#: src/tables/build/BuildLineTable.tsx:208 +#: src/tables/build/BuildLineTable.tsx:209 msgid "Show assembled items" msgstr "" @@ -9335,7 +9400,7 @@ msgstr "" #: src/tables/bom/BomTable.tsx:464 #: src/tables/bom/UsedInTable.tsx:85 -#: src/tables/build/BuildLineTable.tsx:202 +#: src/tables/build/BuildLineTable.tsx:203 msgid "Optional" msgstr "" @@ -9345,7 +9410,7 @@ msgid "Show optional items" msgstr "" #: src/tables/bom/BomTable.tsx:469 -#: src/tables/build/BuildLineTable.tsx:197 +#: src/tables/build/BuildLineTable.tsx:198 msgid "Consumable" msgstr "" @@ -9420,6 +9485,7 @@ msgid "Add a single BOM item" msgstr "" #: src/tables/bom/BomTable.tsx:637 +#: src/tables/general/ParameterTable.tsx:206 #: src/tables/part/PartTable.tsx:546 msgid "Import from File" msgstr "" @@ -9433,8 +9499,8 @@ msgid "Bill of materials cannot be edited, as the part is locked" msgstr "" #: src/tables/bom/UsedInTable.tsx:34 -#: src/tables/build/BuildLineTable.tsx:207 -#: src/tables/part/ParametricPartTable.tsx:364 +#: src/tables/build/BuildLineTable.tsx:208 +#: src/tables/part/ParametricPartTable.tsx:29 #: src/tables/part/PartBuildAllocationsTable.tsx:60 #: src/tables/part/PartTable.tsx:209 #: src/tables/stock/StockItemTable.tsx:333 @@ -9455,11 +9521,11 @@ msgstr "" msgid "Show trackable assemblies" msgstr "" -#: src/tables/build/BuildAllocatedStockTable.tsx:67 +#: src/tables/build/BuildAllocatedStockTable.tsx:64 msgid "Allocated to Output" msgstr "" -#: src/tables/build/BuildAllocatedStockTable.tsx:68 +#: src/tables/build/BuildAllocatedStockTable.tsx:65 msgid "Show items allocated to a build output" msgstr "" @@ -9472,50 +9538,68 @@ msgstr "" #~ msgid "Include orders for part variants" #~ msgstr "Include orders for part variants" -#: src/tables/build/BuildAllocatedStockTable.tsx:97 +#: src/tables/build/BuildAllocatedStockTable.tsx:94 #: src/tables/part/PartBuildAllocationsTable.tsx:84 #: src/tables/part/PartPurchaseOrdersTable.tsx:132 #: src/tables/part/PartSalesAllocationsTable.tsx:69 #: src/tables/sales/SalesOrderAllocationTable.tsx:122 -#: src/tables/sales/SalesOrderShipmentTable.tsx:130 +#: src/tables/sales/SalesOrderShipmentTable.tsx:151 msgid "Order Status" msgstr "" +#: src/tables/build/BuildAllocatedStockTable.tsx:164 +#: src/tables/build/BuildLineTable.tsx:651 +msgid "Edit Stock Allocation" +msgstr "" + #: src/tables/build/BuildAllocatedStockTable.tsx:164 #~ msgid "Edit Build Item" #~ msgstr "Edit Build Item" -#: src/tables/build/BuildAllocatedStockTable.tsx:167 -#: src/tables/build/BuildLineTable.tsx:650 -msgid "Edit Stock Allocation" -msgstr "" - #: src/tables/build/BuildAllocatedStockTable.tsx:174 #~ msgid "Delete Build Item" #~ msgstr "Delete Build Item" -#: src/tables/build/BuildAllocatedStockTable.tsx:180 -#: src/tables/build/BuildLineTable.tsx:663 -msgid "Delete Stock Allocation" +#: src/tables/build/BuildAllocatedStockTable.tsx:177 +#: src/tables/build/BuildLineTable.tsx:664 +#: src/tables/sales/SalesOrderAllocationTable.tsx:218 +msgid "Remove Allocated Stock" msgstr "" -#: src/tables/build/BuildAllocatedStockTable.tsx:239 +#: src/tables/build/BuildAllocatedStockTable.tsx:180 +#: src/tables/build/BuildLineTable.tsx:663 +#~ msgid "Delete Stock Allocation" +#~ msgstr "Delete Stock Allocation" + +#: src/tables/build/BuildAllocatedStockTable.tsx:182 +#: src/tables/build/BuildLineTable.tsx:669 +#: src/tables/sales/SalesOrderAllocationTable.tsx:221 +msgid "Are you sure you want to remove this allocated stock from the order?" +msgstr "" + +#: src/tables/build/BuildAllocatedStockTable.tsx:242 msgid "Consume" msgstr "" +#: src/tables/build/BuildAllocatedStockTable.tsx:259 +#: src/tables/build/BuildLineTable.tsx:112 +#: src/tables/sales/SalesOrderAllocationTable.tsx:248 +msgid "Remove allocated stock" +msgstr "" + #: src/tables/build/BuildLineTable.tsx:59 #~ msgid "Show lines with available stock" #~ msgstr "Show lines with available stock" -#: src/tables/build/BuildLineTable.tsx:120 +#: src/tables/build/BuildLineTable.tsx:121 msgid "View Stock Item" msgstr "" -#: src/tables/build/BuildLineTable.tsx:183 +#: src/tables/build/BuildLineTable.tsx:184 msgid "Show fully allocated lines" msgstr "" -#: src/tables/build/BuildLineTable.tsx:188 +#: src/tables/build/BuildLineTable.tsx:189 msgid "Show fully consumed lines" msgstr "" @@ -9523,124 +9607,124 @@ msgstr "" #~ msgid "Show allocated lines" #~ msgstr "Show allocated lines" -#: src/tables/build/BuildLineTable.tsx:193 +#: src/tables/build/BuildLineTable.tsx:194 msgid "Show items with sufficient available stock" msgstr "" -#: src/tables/build/BuildLineTable.tsx:198 +#: src/tables/build/BuildLineTable.tsx:199 msgid "Show consumable lines" msgstr "" -#: src/tables/build/BuildLineTable.tsx:203 +#: src/tables/build/BuildLineTable.tsx:204 msgid "Show optional lines" msgstr "" -#: src/tables/build/BuildLineTable.tsx:212 +#: src/tables/build/BuildLineTable.tsx:213 #: src/tables/part/PartTable.tsx:233 msgid "Testable" msgstr "" -#: src/tables/build/BuildLineTable.tsx:217 +#: src/tables/build/BuildLineTable.tsx:218 #: src/tables/stock/StockItemTable.tsx:388 msgid "Tracked" msgstr "" -#: src/tables/build/BuildLineTable.tsx:218 +#: src/tables/build/BuildLineTable.tsx:219 msgid "Show tracked lines" msgstr "" -#: src/tables/build/BuildLineTable.tsx:223 +#: src/tables/build/BuildLineTable.tsx:224 msgid "Show items with stock on order" msgstr "" -#: src/tables/build/BuildLineTable.tsx:258 +#: src/tables/build/BuildLineTable.tsx:259 #: src/tables/sales/SalesOrderLineItemTable.tsx:172 msgid "In production" msgstr "" -#: src/tables/build/BuildLineTable.tsx:286 +#: src/tables/build/BuildLineTable.tsx:287 msgid "Insufficient stock" msgstr "" -#: src/tables/build/BuildLineTable.tsx:302 +#: src/tables/build/BuildLineTable.tsx:303 #: src/tables/sales/SalesOrderLineItemTable.tsx:160 #: src/tables/stock/StockItemTable.tsx:191 msgid "No stock available" msgstr "" -#: src/tables/build/BuildLineTable.tsx:375 +#: src/tables/build/BuildLineTable.tsx:376 msgid "Gets Inherited" msgstr "" -#: src/tables/build/BuildLineTable.tsx:388 +#: src/tables/build/BuildLineTable.tsx:389 msgid "Unit Quantity" msgstr "" -#: src/tables/build/BuildLineTable.tsx:415 +#: src/tables/build/BuildLineTable.tsx:416 msgid "Setup Quantity" msgstr "" -#: src/tables/build/BuildLineTable.tsx:424 +#: src/tables/build/BuildLineTable.tsx:425 msgid "Attrition" msgstr "" -#: src/tables/build/BuildLineTable.tsx:432 +#: src/tables/build/BuildLineTable.tsx:433 msgid "Rounding Multiple" msgstr "" -#: src/tables/build/BuildLineTable.tsx:441 +#: src/tables/build/BuildLineTable.tsx:442 msgid "BOM Information" msgstr "" -#: src/tables/build/BuildLineTable.tsx:515 +#: src/tables/build/BuildLineTable.tsx:516 #: src/tables/part/PartBuildAllocationsTable.tsx:102 msgid "Fully allocated" msgstr "" -#: src/tables/build/BuildLineTable.tsx:563 +#: src/tables/build/BuildLineTable.tsx:564 #: src/tables/sales/SalesOrderLineItemTable.tsx:311 msgid "Create Build Order" msgstr "" -#: src/tables/build/BuildLineTable.tsx:592 +#: src/tables/build/BuildLineTable.tsx:593 msgid "Auto allocation in progress" msgstr "" -#: src/tables/build/BuildLineTable.tsx:595 -#: src/tables/build/BuildLineTable.tsx:802 +#: src/tables/build/BuildLineTable.tsx:596 +#: src/tables/build/BuildLineTable.tsx:809 msgid "Auto Allocate Stock" msgstr "" -#: src/tables/build/BuildLineTable.tsx:596 +#: src/tables/build/BuildLineTable.tsx:597 msgid "Automatically allocate stock to this build according to the selected options" msgstr "" -#: src/tables/build/BuildLineTable.tsx:616 -#: src/tables/build/BuildLineTable.tsx:630 -#: src/tables/build/BuildLineTable.tsx:751 -#: src/tables/build/BuildLineTable.tsx:852 +#: src/tables/build/BuildLineTable.tsx:617 +#: src/tables/build/BuildLineTable.tsx:631 +#: src/tables/build/BuildLineTable.tsx:758 +#: src/tables/build/BuildLineTable.tsx:859 #: src/tables/build/BuildOutputTable.tsx:355 #: src/tables/build/BuildOutputTable.tsx:360 msgid "Deallocate Stock" msgstr "" -#: src/tables/build/BuildLineTable.tsx:632 +#: src/tables/build/BuildLineTable.tsx:633 msgid "Deallocate all untracked stock for this build order" msgstr "" -#: src/tables/build/BuildLineTable.tsx:634 +#: src/tables/build/BuildLineTable.tsx:635 msgid "Deallocate stock from the selected line item" msgstr "" -#: src/tables/build/BuildLineTable.tsx:638 +#: src/tables/build/BuildLineTable.tsx:639 msgid "Stock has been deallocated" msgstr "" -#: src/tables/build/BuildLineTable.tsx:771 +#: src/tables/build/BuildLineTable.tsx:778 msgid "Build Stock" msgstr "" -#: src/tables/build/BuildLineTable.tsx:784 +#: src/tables/build/BuildLineTable.tsx:791 #: src/tables/sales/SalesOrderLineItemTable.tsx:487 msgid "View Part" msgstr "" @@ -9739,7 +9823,7 @@ msgid "Serialize Build Output" msgstr "" #: src/tables/build/BuildOutputTable.tsx:405 -#: src/tables/part/PartTestResultTable.tsx:310 +#: src/tables/part/PartTestResultTable.tsx:318 #: src/tables/stock/StockItemTable.tsx:328 msgid "Filter by stock status" msgstr "" @@ -9964,8 +10048,8 @@ msgid "View Item" msgstr "" #: src/tables/general/ExtraLineItemTable.tsx:95 -#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:299 -#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:403 +#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:300 +#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:405 #: src/tables/sales/ReturnOrderLineItemTable.tsx:83 #: src/tables/sales/ReturnOrderLineItemTable.tsx:187 #: src/tables/sales/SalesOrderLineItemTable.tsx:252 @@ -9974,14 +10058,14 @@ msgid "Add Line Item" msgstr "" #: src/tables/general/ExtraLineItemTable.tsx:108 -#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:320 +#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:322 #: src/tables/sales/ReturnOrderLineItemTable.tsx:96 #: src/tables/sales/SalesOrderLineItemTable.tsx:271 msgid "Edit Line Item" msgstr "" #: src/tables/general/ExtraLineItemTable.tsx:117 -#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:329 +#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:331 #: src/tables/sales/ReturnOrderLineItemTable.tsx:105 #: src/tables/sales/SalesOrderLineItemTable.tsx:280 msgid "Delete Line Item" @@ -9991,6 +10075,137 @@ msgstr "" msgid "Add Extra Line Item" msgstr "" +#: src/tables/general/ParameterTable.tsx:88 +msgid "Internal Units" +msgstr "" + +#: src/tables/general/ParameterTable.tsx:108 +#: src/tables/general/ParameterTable.tsx:123 +msgid "Updated By" +msgstr "" + +#: src/tables/general/ParameterTable.tsx:118 +msgid "Show parameters for enabled templates" +msgstr "" + +#: src/tables/general/ParameterTable.tsx:124 +msgid "Filter by user who last updated the parameter" +msgstr "" + +#: src/tables/general/ParameterTable.tsx:154 +msgid "Import Parameters" +msgstr "" + +#: src/tables/general/ParameterTable.tsx:164 +#: src/tables/general/ParametricDataTable.tsx:261 +#: src/tables/general/ParametricDataTable.tsx:392 +msgid "Add Parameter" +msgstr "" + +#: src/tables/general/ParameterTable.tsx:175 +#: src/tables/general/ParameterTable.tsx:222 +#: src/tables/general/ParametricDataTable.tsx:285 +msgid "Edit Parameter" +msgstr "" + +#: src/tables/general/ParameterTable.tsx:183 +#: src/tables/general/ParameterTable.tsx:230 +msgid "Delete Parameter" +msgstr "" + +#: src/tables/general/ParameterTable.tsx:191 +msgid "Add Parameters" +msgstr "" + +#: src/tables/general/ParameterTable.tsx:197 +msgid "Create Parameter" +msgstr "" + +#: src/tables/general/ParameterTable.tsx:199 +msgid "Create a new parameter" +msgstr "" + +#: src/tables/general/ParameterTable.tsx:208 +msgid "Import parameters from a file" +msgstr "" + +#: src/tables/general/ParameterTemplateTable.tsx:48 +#: src/tables/general/ParameterTemplateTable.tsx:197 +msgid "Add Parameter Template" +msgstr "" + +#: src/tables/general/ParameterTemplateTable.tsx:64 +msgid "Duplicate Parameter Template" +msgstr "" + +#: src/tables/general/ParameterTemplateTable.tsx:78 +msgid "Delete Parameter Template" +msgstr "" + +#: src/tables/general/ParameterTemplateTable.tsx:85 +msgid "Edit Parameter Template" +msgstr "" + +#: src/tables/general/ParameterTemplateTable.tsx:138 +msgid "Checkbox" +msgstr "" + +#: src/tables/general/ParameterTemplateTable.tsx:139 +msgid "Show checkbox templates" +msgstr "" + +#: src/tables/general/ParameterTemplateTable.tsx:143 +msgid "Has choices" +msgstr "" + +#: src/tables/general/ParameterTemplateTable.tsx:144 +msgid "Show templates with choices" +msgstr "" + +#: src/tables/general/ParameterTemplateTable.tsx:148 +#: src/tables/part/PartTable.tsx:245 +msgid "Has Units" +msgstr "" + +#: src/tables/general/ParameterTemplateTable.tsx:149 +msgid "Show templates with units" +msgstr "" + +#: src/tables/general/ParameterTemplateTable.tsx:154 +msgid "Show enabled templates" +msgstr "" + +#: src/tables/general/ParameterTemplateTable.tsx:158 +#: src/tables/settings/ImportSessionTable.tsx:111 +#: src/tables/settings/TemplateTable.tsx:368 +msgid "Model Type" +msgstr "" + +#: src/tables/general/ParameterTemplateTable.tsx:159 +msgid "Filter by model type" +msgstr "" + +#: src/tables/general/ParametricDataTable.tsx:79 +msgid "Click to edit" +msgstr "" + +#: src/tables/general/ParametricDataTableFilters.tsx:36 +msgid "True" +msgstr "" + +#: src/tables/general/ParametricDataTableFilters.tsx:37 +msgid "False" +msgstr "" + +#: src/tables/general/ParametricDataTableFilters.tsx:47 +#: src/tables/general/ParametricDataTableFilters.tsx:80 +msgid "Select a choice" +msgstr "" + +#: src/tables/general/ParametricDataTableFilters.tsx:100 +msgid "Enter a value" +msgstr "" + #: src/tables/machine/MachineListTable.tsx:133 msgid "Machine restarted" msgstr "" @@ -10071,7 +10286,7 @@ msgid "Initialized" msgstr "" #: src/tables/machine/MachineListTable.tsx:410 -#: src/tables/machine/MachineTypeTable.tsx:307 +#: src/tables/machine/MachineTypeTable.tsx:305 msgid "No errors reported" msgstr "" @@ -10132,15 +10347,15 @@ msgstr "" #~ msgid "Machine type information" #~ msgstr "Machine type information" -#: src/tables/machine/MachineTypeTable.tsx:128 +#: src/tables/machine/MachineTypeTable.tsx:126 msgid "Not Found" msgstr "" -#: src/tables/machine/MachineTypeTable.tsx:131 +#: src/tables/machine/MachineTypeTable.tsx:129 msgid "Machine type not found." msgstr "" -#: src/tables/machine/MachineTypeTable.tsx:141 +#: src/tables/machine/MachineTypeTable.tsx:139 msgid "Machine Type Information" msgstr "" @@ -10148,34 +10363,34 @@ msgstr "" #~ msgid "Available drivers" #~ msgstr "Available drivers" -#: src/tables/machine/MachineTypeTable.tsx:156 -#: src/tables/machine/MachineTypeTable.tsx:255 +#: src/tables/machine/MachineTypeTable.tsx:154 +#: src/tables/machine/MachineTypeTable.tsx:253 msgid "Slug" msgstr "" -#: src/tables/machine/MachineTypeTable.tsx:167 -#: src/tables/machine/MachineTypeTable.tsx:276 +#: src/tables/machine/MachineTypeTable.tsx:165 +#: src/tables/machine/MachineTypeTable.tsx:274 msgid "Provider plugin" msgstr "" -#: src/tables/machine/MachineTypeTable.tsx:179 -#: src/tables/machine/MachineTypeTable.tsx:288 +#: src/tables/machine/MachineTypeTable.tsx:177 +#: src/tables/machine/MachineTypeTable.tsx:286 msgid "Provider file" msgstr "" -#: src/tables/machine/MachineTypeTable.tsx:194 +#: src/tables/machine/MachineTypeTable.tsx:192 msgid "Available Drivers" msgstr "" -#: src/tables/machine/MachineTypeTable.tsx:234 +#: src/tables/machine/MachineTypeTable.tsx:232 msgid "Machine driver not found." msgstr "" -#: src/tables/machine/MachineTypeTable.tsx:242 +#: src/tables/machine/MachineTypeTable.tsx:240 msgid "Machine driver information" msgstr "" -#: src/tables/machine/MachineTypeTable.tsx:262 +#: src/tables/machine/MachineTypeTable.tsx:260 msgid "Machine type" msgstr "" @@ -10187,15 +10402,15 @@ msgstr "" #~ msgid "Machine driver detail" #~ msgstr "Machine driver detail" -#: src/tables/machine/MachineTypeTable.tsx:362 +#: src/tables/machine/MachineTypeTable.tsx:360 msgid "Builtin type" msgstr "" -#: src/tables/machine/MachineTypeTable.tsx:371 +#: src/tables/machine/MachineTypeTable.tsx:369 msgid "Machine Type Detail" msgstr "" -#: src/tables/machine/MachineTypeTable.tsx:381 +#: src/tables/machine/MachineTypeTable.tsx:379 msgid "Machine Driver Detail" msgstr "" @@ -10213,8 +10428,16 @@ msgstr "" msgid "Message" msgstr "" -#: src/tables/part/ParametricPartTable.tsx:78 -msgid "Click to edit" +#: src/tables/part/ParametricPartTable.tsx:20 +msgid "Show active parts" +msgstr "" + +#: src/tables/part/ParametricPartTable.tsx:25 +msgid "Show locked parts" +msgstr "" + +#: src/tables/part/ParametricPartTable.tsx:30 +msgid "Show assembly parts" msgstr "" #: src/tables/part/ParametricPartTable.tsx:82 @@ -10222,43 +10445,14 @@ msgstr "" #~ msgstr "Edit parameter" #: src/tables/part/ParametricPartTable.tsx:244 -msgid "Add Part Parameter" -msgstr "" +#~ msgid "Add Part Parameter" +#~ msgstr "Add Part Parameter" #: src/tables/part/ParametricPartTable.tsx:258 #: src/tables/part/PartParameterTable.tsx:164 #: src/tables/part/PartParameterTable.tsx:187 -msgid "Edit Part Parameter" -msgstr "" - -#: src/tables/part/ParametricPartTable.tsx:355 -msgid "Show active parts" -msgstr "" - -#: src/tables/part/ParametricPartTable.tsx:360 -msgid "Show locked parts" -msgstr "" - -#: src/tables/part/ParametricPartTable.tsx:365 -msgid "Show assembly parts" -msgstr "" - -#: src/tables/part/ParametricPartTableFilters.tsx:36 -msgid "True" -msgstr "" - -#: src/tables/part/ParametricPartTableFilters.tsx:37 -msgid "False" -msgstr "" - -#: src/tables/part/ParametricPartTableFilters.tsx:47 -#: src/tables/part/ParametricPartTableFilters.tsx:80 -msgid "Select a choice" -msgstr "" - -#: src/tables/part/ParametricPartTableFilters.tsx:100 -msgid "Enter a value" -msgstr "" +#~ msgid "Edit Part Parameter" +#~ msgstr "Edit Part Parameter" #: src/tables/part/PartBuildAllocationsTable.tsx:64 msgid "Assembly IPN" @@ -10273,7 +10467,7 @@ msgid "Required Stock" msgstr "" #: src/tables/part/PartBuildAllocationsTable.tsx:124 -#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:381 +#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:383 msgid "View Build Order" msgstr "" @@ -10332,85 +10526,22 @@ msgstr "" msgid "Delete Category Parameter" msgstr "" -#: src/tables/part/PartCategoryTemplateTable.tsx:87 -msgid "Parameter Template" -msgstr "" - #: src/tables/part/PartCategoryTemplateTable.tsx:93 #~ msgid "[{0}]" #~ msgstr "[{0}]" -#: src/tables/part/PartParameterTable.tsx:108 -msgid "Internal Units" -msgstr "" - -#: src/tables/part/PartParameterTable.tsx:128 -#: src/tables/part/PartParameterTable.tsx:138 -msgid "Updated By" -msgstr "" - -#: src/tables/part/PartParameterTable.tsx:139 -msgid "Filter by user who last updated the parameter" -msgstr "" - #: src/tables/part/PartParameterTable.tsx:148 -msgid "New Part Parameter" -msgstr "" +#~ msgid "New Part Parameter" +#~ msgstr "New Part Parameter" #: src/tables/part/PartParameterTable.tsx:173 #: src/tables/part/PartParameterTable.tsx:195 -msgid "Delete Part Parameter" -msgstr "" +#~ msgid "Delete Part Parameter" +#~ msgstr "Delete Part Parameter" #: src/tables/part/PartParameterTable.tsx:213 -msgid "Add parameter" -msgstr "" - -#: src/tables/part/PartParameterTable.tsx:232 -msgid "Part parameters cannot be edited, as the part is locked" -msgstr "" - -#: src/tables/part/PartParameterTemplateTable.tsx:36 -msgid "Checkbox" -msgstr "" - -#: src/tables/part/PartParameterTemplateTable.tsx:37 -msgid "Show checkbox templates" -msgstr "" - -#: src/tables/part/PartParameterTemplateTable.tsx:41 -msgid "Has choices" -msgstr "" - -#: src/tables/part/PartParameterTemplateTable.tsx:42 -msgid "Show templates with choices" -msgstr "" - -#: src/tables/part/PartParameterTemplateTable.tsx:46 -#: src/tables/part/PartTable.tsx:245 -msgid "Has Units" -msgstr "" - -#: src/tables/part/PartParameterTemplateTable.tsx:47 -msgid "Show templates with units" -msgstr "" - -#: src/tables/part/PartParameterTemplateTable.tsx:91 -#: src/tables/part/PartParameterTemplateTable.tsx:166 -msgid "Add Parameter Template" -msgstr "" - -#: src/tables/part/PartParameterTemplateTable.tsx:105 -msgid "Duplicate Parameter Template" -msgstr "" - -#: src/tables/part/PartParameterTemplateTable.tsx:117 -msgid "Edit Parameter Template" -msgstr "" - -#: src/tables/part/PartParameterTemplateTable.tsx:128 -msgid "Delete Parameter Template" -msgstr "" +#~ msgid "Add parameter" +#~ msgstr "Add parameter" #: src/tables/part/PartParameterTemplateTable.tsx:141 #~ msgid "Add parameter template" @@ -10430,7 +10561,7 @@ msgid "Show received items" msgstr "" #: src/tables/part/PartSalesAllocationsTable.tsx:90 -#: src/tables/sales/SalesOrderShipmentTable.tsx:218 +#: src/tables/sales/SalesOrderShipmentTable.tsx:263 msgid "View Sales Order" msgstr "" @@ -10617,8 +10748,8 @@ msgstr "" #: src/tables/part/PartTestResultTable.tsx:103 #: src/tables/part/PartTestResultTable.tsx:181 -#: src/tables/part/PartTestResultTable.tsx:320 -#: src/tables/part/PartTestResultTable.tsx:334 +#: src/tables/part/PartTestResultTable.tsx:328 +#: src/tables/part/PartTestResultTable.tsx:342 #: src/tables/stock/StockItemTestResultTable.tsx:296 #: src/tables/stock/StockItemTestResultTable.tsx:368 #: src/tables/stock/StockItemTestResultTable.tsx:429 @@ -10643,7 +10774,7 @@ msgstr "" msgid "No Result" msgstr "" -#: src/tables/part/PartTestResultTable.tsx:298 +#: src/tables/part/PartTestResultTable.tsx:306 msgid "Show build outputs currently in production" msgstr "" @@ -11013,36 +11144,45 @@ msgstr "" #~ msgid "Parameter updated" #~ msgstr "Parameter updated" -#: src/tables/purchasing/ManufacturerPartParameterTable.tsx:63 -#: src/tables/purchasing/ManufacturerPartParameterTable.tsx:112 -msgid "Add Parameter" -msgstr "" - #: src/tables/purchasing/ManufacturerPartParameterTable.tsx:73 #~ msgid "Parameter deleted" #~ msgstr "Parameter deleted" -#: src/tables/purchasing/ManufacturerPartParameterTable.tsx:74 -msgid "Edit Parameter" -msgstr "" - #: src/tables/purchasing/ManufacturerPartParameterTable.tsx:74 #~ msgid "Are you sure you want to delete this parameter?" #~ msgstr "Are you sure you want to delete this parameter?" -#: src/tables/purchasing/ManufacturerPartParameterTable.tsx:82 -msgid "Delete Parameter" +#: src/tables/purchasing/ManufacturerPartParametricTable.tsx:34 +#: src/tables/purchasing/ManufacturerPartTable.tsx:82 +#: src/tables/purchasing/SupplierPartTable.tsx:99 +msgid "MPN" +msgstr "" + +#: src/tables/purchasing/ManufacturerPartParametricTable.tsx:44 +#: src/tables/purchasing/ManufacturerPartTable.tsx:134 +#: src/tables/purchasing/SupplierPartTable.tsx:220 +msgid "Active Part" +msgstr "" + +#: src/tables/purchasing/ManufacturerPartParametricTable.tsx:45 +#: src/tables/purchasing/ManufacturerPartTable.tsx:135 +msgid "Show manufacturer parts for active internal parts." +msgstr "" + +#: src/tables/purchasing/ManufacturerPartParametricTable.tsx:50 +#: src/tables/purchasing/ManufacturerPartTable.tsx:140 +msgid "Active Manufacturer" +msgstr "" + +#: src/tables/purchasing/ManufacturerPartParametricTable.tsx:51 +#: src/tables/purchasing/ManufacturerPartTable.tsx:142 +msgid "Show manufacturer parts for active manufacturers." msgstr "" #: src/tables/purchasing/ManufacturerPartTable.tsx:63 #~ msgid "Create Manufacturer Part" #~ msgstr "Create Manufacturer Part" -#: src/tables/purchasing/ManufacturerPartTable.tsx:82 -#: src/tables/purchasing/SupplierPartTable.tsx:99 -msgid "MPN" -msgstr "" - #: src/tables/purchasing/ManufacturerPartTable.tsx:100 #~ msgid "Manufacturer part updated" #~ msgstr "Manufacturer part updated" @@ -11055,25 +11195,8 @@ msgstr "" #~ msgid "Are you sure you want to remove this manufacturer part?" #~ msgstr "Are you sure you want to remove this manufacturer part?" -#: src/tables/purchasing/ManufacturerPartTable.tsx:134 -#: src/tables/purchasing/SupplierPartTable.tsx:220 -msgid "Active Part" -msgstr "" - -#: src/tables/purchasing/ManufacturerPartTable.tsx:135 -msgid "Show manufacturer parts for active internal parts." -msgstr "" - -#: src/tables/purchasing/ManufacturerPartTable.tsx:140 -msgid "Active Manufacturer" -msgstr "" - -#: src/tables/purchasing/ManufacturerPartTable.tsx:142 -msgid "Show manufacturer parts for active manufacturers." -msgstr "" - #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:115 -#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:397 +#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:399 msgid "Import Line Items" msgstr "" @@ -11099,11 +11222,11 @@ msgstr "" #~ msgid "Add line item" #~ msgstr "Add line item" -#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:350 +#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:352 msgid "Receive line item" msgstr "" -#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:414 +#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:416 msgid "Receive items" msgstr "" @@ -11201,25 +11324,25 @@ msgid "Not shipped" msgstr "" #: src/tables/sales/SalesOrderAllocationTable.tsx:211 -#: src/tables/sales/SalesOrderAllocationTable.tsx:229 +#: src/tables/sales/SalesOrderAllocationTable.tsx:235 msgid "Edit Allocation" msgstr "" #: src/tables/sales/SalesOrderAllocationTable.tsx:218 #: src/tables/sales/SalesOrderAllocationTable.tsx:241 -msgid "Delete Allocation" -msgstr "" +#~ msgid "Delete Allocation" +#~ msgstr "Delete Allocation" -#: src/tables/sales/SalesOrderAllocationTable.tsx:252 -#: src/tables/sales/SalesOrderAllocationTable.tsx:253 +#: src/tables/sales/SalesOrderAllocationTable.tsx:261 +#: src/tables/sales/SalesOrderAllocationTable.tsx:262 msgid "View Shipment" msgstr "" -#: src/tables/sales/SalesOrderAllocationTable.tsx:308 +#: src/tables/sales/SalesOrderAllocationTable.tsx:317 msgid "Assign to Shipment" msgstr "" -#: src/tables/sales/SalesOrderAllocationTable.tsx:324 +#: src/tables/sales/SalesOrderAllocationTable.tsx:333 msgid "Assign to shipment" msgstr "" @@ -11259,35 +11382,35 @@ msgstr "" #~ msgid "Delete Shipment" #~ msgstr "Delete Shipment" -#: src/tables/sales/SalesOrderShipmentTable.tsx:72 +#: src/tables/sales/SalesOrderShipmentTable.tsx:79 msgid "Create Shipment" msgstr "" -#: src/tables/sales/SalesOrderShipmentTable.tsx:143 +#: src/tables/sales/SalesOrderShipmentTable.tsx:164 msgid "Items" msgstr "" -#: src/tables/sales/SalesOrderShipmentTable.tsx:203 +#: src/tables/sales/SalesOrderShipmentTable.tsx:248 msgid "Edit shipment" msgstr "" -#: src/tables/sales/SalesOrderShipmentTable.tsx:211 +#: src/tables/sales/SalesOrderShipmentTable.tsx:256 msgid "Cancel shipment" msgstr "" -#: src/tables/sales/SalesOrderShipmentTable.tsx:241 +#: src/tables/sales/SalesOrderShipmentTable.tsx:286 msgid "Add shipment" msgstr "" -#: src/tables/sales/SalesOrderShipmentTable.tsx:255 +#: src/tables/sales/SalesOrderShipmentTable.tsx:300 msgid "Show shipments which have been checked" msgstr "" -#: src/tables/sales/SalesOrderShipmentTable.tsx:260 +#: src/tables/sales/SalesOrderShipmentTable.tsx:305 msgid "Show shipments which have been shipped" msgstr "" -#: src/tables/sales/SalesOrderShipmentTable.tsx:265 +#: src/tables/sales/SalesOrderShipmentTable.tsx:310 msgid "Show shipments which have been delivered" msgstr "" @@ -11621,11 +11744,6 @@ msgstr "" msgid "Imported Rows" msgstr "" -#: src/tables/settings/ImportSessionTable.tsx:111 -#: src/tables/settings/TemplateTable.tsx:368 -msgid "Model Type" -msgstr "" - #: src/tables/settings/ImportSessionTable.tsx:112 #: src/tables/settings/TemplateTable.tsx:369 msgid "Filter by target model type" diff --git a/src/frontend/src/locales/nl/messages.po b/src/frontend/src/locales/nl/messages.po index 9242cc7bde..d8895a5e80 100644 --- a/src/frontend/src/locales/nl/messages.po +++ b/src/frontend/src/locales/nl/messages.po @@ -8,7 +8,7 @@ msgstr "" "Language: nl\n" "Project-Id-Version: inventree\n" "Report-Msgid-Bugs-To: \n" -"PO-Revision-Date: 2025-11-19 19:39\n" +"PO-Revision-Date: 2025-12-07 07:36\n" "Last-Translator: \n" "Language-Team: Dutch\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" @@ -30,7 +30,7 @@ msgid "Edit" msgstr "Bewerken" #: lib/components/RowActions.tsx:56 -#: src/components/forms/ApiForm.tsx:735 +#: src/components/forms/ApiForm.tsx:754 #: src/components/items/ActionDropdown.tsx:257 #: src/components/items/RoleTable.tsx:155 #: src/hooks/UseForm.tsx:164 @@ -56,24 +56,24 @@ msgstr "Annuleer" #: lib/components/RowActions.tsx:136 #: src/components/nav/NavigationDrawer.tsx:190 -#: src/forms/PurchaseOrderForms.tsx:802 +#: src/forms/PurchaseOrderForms.tsx:854 #: src/forms/StockForms.tsx:796 #: src/forms/StockForms.tsx:843 -#: src/forms/StockForms.tsx:889 -#: src/forms/StockForms.tsx:928 -#: src/forms/StockForms.tsx:964 -#: src/forms/StockForms.tsx:1050 +#: src/forms/StockForms.tsx:896 +#: src/forms/StockForms.tsx:942 +#: src/forms/StockForms.tsx:980 +#: src/forms/StockForms.tsx:1066 #: src/pages/Index/Settings/AccountSettings/MFASettings.tsx:962 msgid "Actions" msgstr "Acties" #: lib/components/SearchInput.tsx:34 -#: src/components/forms/fields/RelatedModelField.tsx:408 +#: src/components/forms/fields/RelatedModelField.tsx:479 #: src/components/nav/Header.tsx:169 #: src/components/wizards/ImportPartWizard.tsx:200 #: src/components/wizards/ImportPartWizard.tsx:233 -#: src/pages/Index/Settings/UserSettings.tsx:74 -#: src/pages/part/PartDetail.tsx:1155 +#: src/pages/Index/Settings/UserSettings.tsx:75 +#: src/pages/part/PartDetail.tsx:1176 msgid "Search" msgstr "Zoeken" @@ -95,7 +95,7 @@ msgstr "Ja" msgid "No" msgstr "Nee" -#: lib/enums/ModelInformation.tsx:28 +#: lib/enums/ModelInformation.tsx:29 #: src/components/wizards/OrderPartsWizard.tsx:279 #: src/forms/BuildForms.tsx:332 #: src/forms/BuildForms.tsx:407 @@ -103,208 +103,234 @@ msgstr "Nee" #: src/forms/BuildForms.tsx:630 #: src/forms/BuildForms.tsx:793 #: src/forms/BuildForms.tsx:896 -#: src/forms/PurchaseOrderForms.tsx:798 +#: src/forms/PurchaseOrderForms.tsx:850 #: src/forms/ReturnOrderForms.tsx:242 -#: src/forms/SalesOrderForms.tsx:305 +#: src/forms/SalesOrderForms.tsx:384 #: src/forms/StockForms.tsx:360 #: src/forms/StockForms.tsx:791 #: src/forms/StockForms.tsx:838 -#: src/forms/StockForms.tsx:884 -#: src/forms/StockForms.tsx:923 -#: src/forms/StockForms.tsx:959 -#: src/forms/StockForms.tsx:1002 -#: src/forms/StockForms.tsx:1046 -#: src/forms/StockForms.tsx:1094 -#: src/forms/StockForms.tsx:1138 -#: src/pages/build/BuildDetail.tsx:200 -#: src/pages/part/PartDetail.tsx:1207 +#: src/forms/StockForms.tsx:891 +#: src/forms/StockForms.tsx:937 +#: src/forms/StockForms.tsx:975 +#: src/forms/StockForms.tsx:1018 +#: src/forms/StockForms.tsx:1062 +#: src/forms/StockForms.tsx:1110 +#: src/forms/StockForms.tsx:1154 +#: src/pages/build/BuildDetail.tsx:201 +#: src/pages/part/PartDetail.tsx:1228 #: src/tables/ColumnRenderers.tsx:91 +#: src/tables/part/PartTestResultTable.tsx:247 #: src/tables/part/RelatedPartTable.tsx:53 #: src/tables/stock/StockTrackingTable.tsx:87 msgid "Part" msgstr "Onderdeel" -#: lib/enums/ModelInformation.tsx:29 +#: lib/enums/ModelInformation.tsx:30 #: lib/enums/Roles.tsx:35 #: src/components/nav/NavigationDrawer.tsx:70 #: src/defaults/links.tsx:36 -#: src/pages/Index/Settings/SystemSettings.tsx:190 -#: src/pages/part/CategoryDetail.tsx:132 -#: src/pages/part/CategoryDetail.tsx:277 -#: src/pages/part/CategoryDetail.tsx:323 -#: src/pages/part/CategoryDetail.tsx:354 -#: src/pages/part/PartDetail.tsx:965 +#: src/pages/Index/Settings/SystemSettings.tsx:197 +#: src/pages/part/CategoryDetail.tsx:135 +#: src/pages/part/CategoryDetail.tsx:285 +#: src/pages/part/CategoryDetail.tsx:340 +#: src/pages/part/CategoryDetail.tsx:371 +#: src/pages/part/PartDetail.tsx:978 msgid "Parts" msgstr "Onderdelen" #: lib/enums/ModelInformation.tsx:37 #: src/pages/Index/Settings/AdminCenter/PartParameterPanel.tsx:13 -msgid "Part Parameter Template" -msgstr "Sjabloon deelparameter" +#~ msgid "Part Parameter Template" +#~ msgstr "Part Parameter Template" #: lib/enums/ModelInformation.tsx:38 -msgid "Part Parameter Templates" -msgstr "Sjablonen deelparameter" +#~ msgid "Part Parameter Templates" +#~ msgstr "Part Parameter Templates" + +#: lib/enums/ModelInformation.tsx:39 +msgid "Parameter" +msgstr "" + +#: lib/enums/ModelInformation.tsx:40 +#: src/components/panels/ParametersPanel.tsx:19 +#: src/components/wizards/ImportPartWizard.tsx:807 +#: src/pages/Index/Settings/AdminCenter/Index.tsx:195 +#: src/pages/Index/Settings/SystemSettings.tsx:191 +#: src/pages/part/PartDetail.tsx:943 +msgid "Parameters" +msgstr "Parameters" #: lib/enums/ModelInformation.tsx:45 +#: src/tables/part/PartCategoryTemplateTable.tsx:87 +msgid "Parameter Template" +msgstr "Parameter sjabloon" + +#: lib/enums/ModelInformation.tsx:46 +#: src/pages/Index/Settings/AdminCenter/ParameterPanel.tsx:13 +msgid "Parameter Templates" +msgstr "" + +#: lib/enums/ModelInformation.tsx:52 msgid "Part Test Template" msgstr "Sjabloon test onderdeel" -#: lib/enums/ModelInformation.tsx:46 +#: lib/enums/ModelInformation.tsx:53 msgid "Part Test Templates" msgstr "Templatesjablonen voor onderdeel" -#: lib/enums/ModelInformation.tsx:52 +#: lib/enums/ModelInformation.tsx:59 #: src/components/wizards/OrderPartsWizard.tsx:290 -#: src/pages/company/SupplierPartDetail.tsx:413 +#: src/pages/company/SupplierPartDetail.tsx:418 #: src/pages/stock/StockDetail.tsx:289 -#: src/tables/build/BuildAllocatedStockTable.tsx:155 +#: src/tables/build/BuildAllocatedStockTable.tsx:152 #: src/tables/part/PartPurchaseOrdersTable.tsx:50 +#: src/tables/purchasing/SupplierPartParametricTable.tsx:29 #: src/tables/purchasing/SupplierPartTable.tsx:83 #: src/tables/stock/StockItemTable.tsx:247 msgid "Supplier Part" msgstr "Leverancier onderdeel" -#: lib/enums/ModelInformation.tsx:53 -#: src/pages/purchasing/PurchasingIndex.tsx:92 +#: lib/enums/ModelInformation.tsx:60 +#: src/pages/purchasing/PurchasingIndex.tsx:128 msgid "Supplier Parts" msgstr "Leveranciers onderdelen" -#: lib/enums/ModelInformation.tsx:61 -#: src/pages/company/ManufacturerPartDetail.tsx:297 -#: src/pages/company/SupplierPartDetail.tsx:161 +#: lib/enums/ModelInformation.tsx:69 +#: src/pages/company/ManufacturerPartDetail.tsx:288 +#: src/pages/company/SupplierPartDetail.tsx:162 #: src/tables/part/PartPurchaseOrdersTable.tsx:56 #: src/tables/stock/StockItemTable.tsx:253 msgid "Manufacturer Part" msgstr "Fabrikant onderdeel" -#: lib/enums/ModelInformation.tsx:62 -#: src/pages/purchasing/PurchasingIndex.tsx:109 +#: lib/enums/ModelInformation.tsx:70 +#: src/pages/purchasing/PurchasingIndex.tsx:177 msgid "Manufacturer Parts" msgstr "Fabrikant onderdelen" -#: lib/enums/ModelInformation.tsx:70 -#: src/pages/part/CategoryDetail.tsx:354 +#: lib/enums/ModelInformation.tsx:79 +#: src/pages/part/CategoryDetail.tsx:371 #: src/tables/Filter.tsx:389 msgid "Part Category" msgstr "Onderdeel categorie" -#: lib/enums/ModelInformation.tsx:71 +#: lib/enums/ModelInformation.tsx:80 #: lib/enums/Roles.tsx:37 -#: src/pages/part/CategoryDetail.tsx:271 -#: src/pages/part/CategoryDetail.tsx:345 -#: src/pages/part/PartDetail.tsx:1196 +#: src/pages/part/CategoryDetail.tsx:279 +#: src/pages/part/CategoryDetail.tsx:362 +#: src/pages/part/PartDetail.tsx:1217 msgid "Part Categories" msgstr "Onderdeel categorieën" -#: lib/enums/ModelInformation.tsx:79 +#: lib/enums/ModelInformation.tsx:88 #: src/forms/BuildForms.tsx:473 #: src/forms/BuildForms.tsx:633 #: src/forms/BuildForms.tsx:794 -#: src/forms/SalesOrderForms.tsx:307 +#: src/forms/SalesOrderForms.tsx:386 #: src/pages/stock/StockDetail.tsx:1005 -#: src/tables/part/PartTestResultTable.tsx:248 +#: src/tables/part/PartTestResultTable.tsx:256 #: src/tables/stock/StockTrackingTable.tsx:48 #: src/tables/stock/StockTrackingTable.tsx:55 msgid "Stock Item" msgstr "Voorraad item" -#: lib/enums/ModelInformation.tsx:80 +#: lib/enums/ModelInformation.tsx:89 #: lib/enums/Roles.tsx:45 -#: src/pages/company/CompanyDetail.tsx:210 -#: src/pages/part/CategoryDetail.tsx:291 +#: src/pages/company/CompanyDetail.tsx:211 +#: src/pages/part/CategoryDetail.tsx:314 #: src/pages/part/PartStockHistoryDetail.tsx:101 #: src/pages/stock/LocationDetail.tsx:121 #: src/pages/stock/LocationDetail.tsx:180 msgid "Stock Items" msgstr "Voorraad items" -#: lib/enums/ModelInformation.tsx:88 +#: lib/enums/ModelInformation.tsx:98 #: lib/enums/Roles.tsx:47 #: src/pages/stock/LocationDetail.tsx:420 msgid "Stock Location" msgstr "Voorraad locatie" -#: lib/enums/ModelInformation.tsx:89 +#: lib/enums/ModelInformation.tsx:99 #: src/pages/stock/LocationDetail.tsx:174 #: src/pages/stock/LocationDetail.tsx:412 #: src/pages/stock/StockDetail.tsx:996 msgid "Stock Locations" msgstr "Voorraad locatie" -#: lib/enums/ModelInformation.tsx:97 +#: lib/enums/ModelInformation.tsx:108 msgid "Stock Location Type" msgstr "Voorraad locatie type" -#: lib/enums/ModelInformation.tsx:98 +#: lib/enums/ModelInformation.tsx:109 msgid "Stock Location Types" msgstr "Voorraad locatie types" -#: lib/enums/ModelInformation.tsx:103 -#: src/pages/Index/Settings/SystemSettings.tsx:248 -#: src/pages/part/PartDetail.tsx:911 +#: lib/enums/ModelInformation.tsx:114 +#: src/pages/Index/Settings/SystemSettings.tsx:254 +#: src/pages/part/PartDetail.tsx:900 msgid "Stock History" msgstr "Voorraad geschiedenis" -#: lib/enums/ModelInformation.tsx:104 +#: lib/enums/ModelInformation.tsx:115 msgid "Stock Histories" msgstr "Voorraad Historieën" -#: lib/enums/ModelInformation.tsx:109 +#: lib/enums/ModelInformation.tsx:120 msgid "Build" msgstr "Bouwen" -#: lib/enums/ModelInformation.tsx:110 +#: lib/enums/ModelInformation.tsx:121 msgid "Builds" msgstr "Bouwen" -#: lib/enums/ModelInformation.tsx:118 +#: lib/enums/ModelInformation.tsx:130 msgid "Build Line" msgstr "Bouw lijn" -#: lib/enums/ModelInformation.tsx:119 +#: lib/enums/ModelInformation.tsx:131 msgid "Build Lines" msgstr "Bouw lijnen" -#: lib/enums/ModelInformation.tsx:126 +#: lib/enums/ModelInformation.tsx:138 msgid "Build Item" msgstr "Bouw onderdeel" -#: lib/enums/ModelInformation.tsx:127 +#: lib/enums/ModelInformation.tsx:139 msgid "Build Items" msgstr "Bouw onderdelen" -#: lib/enums/ModelInformation.tsx:132 -#: src/pages/company/CompanyDetail.tsx:340 +#: lib/enums/ModelInformation.tsx:144 +#: src/pages/company/CompanyDetail.tsx:345 #: src/tables/company/CompanyTable.tsx:47 #: src/tables/company/ContactTable.tsx:67 +#: src/tables/company/ParametricCompanyTable.tsx:18 msgid "Company" msgstr "Bedrijf" -#: lib/enums/ModelInformation.tsx:133 +#: lib/enums/ModelInformation.tsx:145 msgid "Companies" msgstr "Bedrijven" -#: lib/enums/ModelInformation.tsx:140 -#: src/pages/build/BuildDetail.tsx:316 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:253 -#: src/pages/sales/ReturnOrderDetail.tsx:231 -#: src/pages/sales/SalesOrderDetail.tsx:224 +#: lib/enums/ModelInformation.tsx:152 +#: src/pages/build/BuildDetail.tsx:317 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:254 +#: src/pages/sales/ReturnOrderDetail.tsx:232 +#: src/pages/sales/SalesOrderDetail.tsx:225 #: src/tables/ColumnRenderers.tsx:362 #: src/tables/Filter.tsx:286 #: src/tables/TableHoverCard.tsx:101 msgid "Project Code" msgstr "Project code" -#: lib/enums/ModelInformation.tsx:141 +#: lib/enums/ModelInformation.tsx:153 #: src/pages/Index/Settings/AdminCenter/Index.tsx:172 msgid "Project Codes" msgstr "Project codes" -#: lib/enums/ModelInformation.tsx:147 +#: lib/enums/ModelInformation.tsx:159 #: src/components/wizards/OrderPartsWizard.tsx:338 #: src/pages/part/pricing/PurchaseHistoryPanel.tsx:33 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:550 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:555 #: src/pages/stock/StockDetail.tsx:352 #: src/tables/part/PartPurchaseOrdersTable.tsx:32 #: src/tables/stock/StockItemTable.tsx:239 @@ -312,117 +338,117 @@ msgstr "Project codes" msgid "Purchase Order" msgstr "Inkooporder" -#: lib/enums/ModelInformation.tsx:148 +#: lib/enums/ModelInformation.tsx:160 #: lib/enums/Roles.tsx:39 #: src/defaults/actions.tsx:104 -#: src/pages/Index/Settings/SystemSettings.tsx:283 -#: src/pages/company/CompanyDetail.tsx:203 -#: src/pages/company/SupplierPartDetail.tsx:266 -#: src/pages/part/PartDetail.tsx:875 -#: src/pages/purchasing/PurchasingIndex.tsx:60 +#: src/pages/Index/Settings/SystemSettings.tsx:289 +#: src/pages/company/CompanyDetail.tsx:204 +#: src/pages/company/SupplierPartDetail.tsx:267 +#: src/pages/part/PartDetail.tsx:864 +#: src/pages/purchasing/PurchasingIndex.tsx:66 msgid "Purchase Orders" msgstr "Inkooporders" -#: lib/enums/ModelInformation.tsx:156 +#: lib/enums/ModelInformation.tsx:169 msgid "Purchase Order Line" msgstr "Inkooporder regel" -#: lib/enums/ModelInformation.tsx:157 +#: lib/enums/ModelInformation.tsx:170 msgid "Purchase Order Lines" msgstr "Inkooporder regels" -#: lib/enums/ModelInformation.tsx:162 -#: src/pages/build/BuildDetail.tsx:289 +#: lib/enums/ModelInformation.tsx:175 +#: src/pages/build/BuildDetail.tsx:290 #: src/pages/part/pricing/SaleHistoryPanel.tsx:24 -#: src/pages/sales/SalesOrderDetail.tsx:614 -#: src/pages/sales/SalesOrderShipmentDetail.tsx:105 -#: src/pages/sales/SalesOrderShipmentDetail.tsx:478 +#: src/pages/sales/SalesOrderDetail.tsx:619 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:103 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:446 #: src/pages/stock/StockDetail.tsx:361 #: src/tables/part/PartSalesAllocationsTable.tsx:41 #: src/tables/sales/SalesOrderAllocationTable.tsx:110 -#: src/tables/sales/SalesOrderShipmentTable.tsx:122 +#: src/tables/sales/SalesOrderShipmentTable.tsx:143 #: src/tables/stock/StockTrackingTable.tsx:131 msgid "Sales Order" msgstr "Verkooporder" -#: lib/enums/ModelInformation.tsx:163 +#: lib/enums/ModelInformation.tsx:176 #: lib/enums/Roles.tsx:43 #: src/defaults/actions.tsx:114 -#: src/pages/Index/Settings/SystemSettings.tsx:299 -#: src/pages/company/CompanyDetail.tsx:223 -#: src/pages/part/PartDetail.tsx:887 -#: src/pages/sales/SalesIndex.tsx:84 +#: src/pages/Index/Settings/SystemSettings.tsx:305 +#: src/pages/company/CompanyDetail.tsx:224 +#: src/pages/part/PartDetail.tsx:876 +#: src/pages/sales/SalesIndex.tsx:53 msgid "Sales Orders" msgstr "Verkooporders" -#: lib/enums/ModelInformation.tsx:171 -#: src/pages/sales/SalesOrderShipmentDetail.tsx:477 +#: lib/enums/ModelInformation.tsx:185 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:445 msgid "Sales Order Shipment" msgstr "Verzending verkooporder" -#: lib/enums/ModelInformation.tsx:172 +#: lib/enums/ModelInformation.tsx:186 msgid "Sales Order Shipments" msgstr "Verzendingen verkooporders" -#: lib/enums/ModelInformation.tsx:179 -#: src/pages/sales/ReturnOrderDetail.tsx:549 +#: lib/enums/ModelInformation.tsx:194 +#: src/pages/sales/ReturnOrderDetail.tsx:554 #: src/tables/stock/StockTrackingTable.tsx:142 msgid "Return Order" msgstr "Retourorder" -#: lib/enums/ModelInformation.tsx:180 +#: lib/enums/ModelInformation.tsx:195 #: lib/enums/Roles.tsx:41 #: src/defaults/actions.tsx:125 -#: src/pages/Index/Settings/SystemSettings.tsx:316 -#: src/pages/company/CompanyDetail.tsx:230 -#: src/pages/part/PartDetail.tsx:894 -#: src/pages/sales/SalesIndex.tsx:117 +#: src/pages/Index/Settings/SystemSettings.tsx:322 +#: src/pages/company/CompanyDetail.tsx:231 +#: src/pages/part/PartDetail.tsx:883 +#: src/pages/sales/SalesIndex.tsx:99 msgid "Return Orders" msgstr "Retourorders" -#: lib/enums/ModelInformation.tsx:188 +#: lib/enums/ModelInformation.tsx:204 msgid "Return Order Line Item" msgstr "Retourneer bestelregel item" -#: lib/enums/ModelInformation.tsx:189 +#: lib/enums/ModelInformation.tsx:205 msgid "Return Order Line Items" msgstr "Retourneer bestelregel items" -#: lib/enums/ModelInformation.tsx:194 +#: lib/enums/ModelInformation.tsx:210 #: src/tables/company/AddressTable.tsx:52 msgid "Address" msgstr "Adres:" -#: lib/enums/ModelInformation.tsx:195 -#: src/pages/company/CompanyDetail.tsx:264 +#: lib/enums/ModelInformation.tsx:211 +#: src/pages/company/CompanyDetail.tsx:265 msgid "Addresses" msgstr "Adressen" -#: lib/enums/ModelInformation.tsx:201 +#: lib/enums/ModelInformation.tsx:217 #: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:89 #: src/pages/core/UserDetail.tsx:135 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:229 -#: src/pages/sales/ReturnOrderDetail.tsx:207 -#: src/pages/sales/SalesOrderDetail.tsx:200 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:230 +#: src/pages/sales/ReturnOrderDetail.tsx:208 +#: src/pages/sales/SalesOrderDetail.tsx:201 msgid "Contact" msgstr "Contact" -#: lib/enums/ModelInformation.tsx:202 -#: src/pages/company/CompanyDetail.tsx:258 +#: lib/enums/ModelInformation.tsx:218 +#: src/pages/company/CompanyDetail.tsx:259 #: src/pages/core/CoreIndex.tsx:33 msgid "Contacts" msgstr "Contacten" -#: lib/enums/ModelInformation.tsx:208 +#: lib/enums/ModelInformation.tsx:224 #: src/tables/ColumnRenderers.tsx:444 msgid "Owner" msgstr "Eigenaar" -#: lib/enums/ModelInformation.tsx:209 +#: lib/enums/ModelInformation.tsx:225 msgid "Owners" msgstr "Eigenaren" -#: lib/enums/ModelInformation.tsx:215 +#: lib/enums/ModelInformation.tsx:231 #: src/pages/Auth/ChangePassword.tsx:36 #: src/pages/core/UserDetail.tsx:220 #: src/tables/ColumnRenderers.tsx:395 @@ -437,7 +463,7 @@ msgstr "Eigenaren" msgid "User" msgstr "Gebruiker" -#: lib/enums/ModelInformation.tsx:216 +#: lib/enums/ModelInformation.tsx:232 #: src/components/nav/NavigationDrawer.tsx:105 #: src/pages/Index/Settings/AdminCenter/UserManagementPanel.tsx:15 #: src/pages/core/CoreIndex.tsx:21 @@ -445,12 +471,12 @@ msgstr "Gebruiker" msgid "Users" msgstr "Gebruikers" -#: lib/enums/ModelInformation.tsx:222 +#: lib/enums/ModelInformation.tsx:238 #: src/pages/core/GroupDetail.tsx:78 msgid "Group" msgstr "Groep" -#: lib/enums/ModelInformation.tsx:223 +#: lib/enums/ModelInformation.tsx:239 #: src/components/nav/NavigationDrawer.tsx:111 #: src/pages/Index/Settings/AdminCenter/UserManagementPanel.tsx:23 #: src/pages/core/CoreIndex.tsx:27 @@ -460,64 +486,64 @@ msgstr "Groep" msgid "Groups" msgstr "Groepen" -#: lib/enums/ModelInformation.tsx:230 +#: lib/enums/ModelInformation.tsx:246 msgid "Import Session" msgstr "Sessie Importeren" -#: lib/enums/ModelInformation.tsx:231 +#: lib/enums/ModelInformation.tsx:247 msgid "Import Sessions" msgstr "Sessies importeren" -#: lib/enums/ModelInformation.tsx:238 +#: lib/enums/ModelInformation.tsx:254 msgid "Label Template" msgstr "Label sjabloon" -#: lib/enums/ModelInformation.tsx:239 +#: lib/enums/ModelInformation.tsx:255 #: src/pages/Index/Settings/AdminCenter/Index.tsx:209 msgid "Label Templates" msgstr "Label sjablonen" -#: lib/enums/ModelInformation.tsx:246 +#: lib/enums/ModelInformation.tsx:262 msgid "Report Template" msgstr "Rapporteer sjabloon" -#: lib/enums/ModelInformation.tsx:247 +#: lib/enums/ModelInformation.tsx:263 #: src/pages/Index/Settings/AdminCenter/Index.tsx:215 msgid "Report Templates" msgstr "Rapport sjablonen" -#: lib/enums/ModelInformation.tsx:254 +#: lib/enums/ModelInformation.tsx:270 #: src/components/plugins/PluginDrawer.tsx:145 msgid "Plugin Configuration" msgstr "Plug-in configuratie" -#: lib/enums/ModelInformation.tsx:255 +#: lib/enums/ModelInformation.tsx:271 msgid "Plugin Configurations" msgstr "Plug-in configuraties" -#: lib/enums/ModelInformation.tsx:262 +#: lib/enums/ModelInformation.tsx:278 msgid "Content Type" msgstr "Content type" -#: lib/enums/ModelInformation.tsx:263 +#: lib/enums/ModelInformation.tsx:279 msgid "Content Types" msgstr "Content Types" -#: lib/enums/ModelInformation.tsx:268 +#: lib/enums/ModelInformation.tsx:284 msgid "Selection List" msgstr "Selectielijst" -#: lib/enums/ModelInformation.tsx:269 -#: src/pages/Index/Settings/AdminCenter/PartParameterPanel.tsx:21 +#: lib/enums/ModelInformation.tsx:285 +#: src/pages/Index/Settings/AdminCenter/ParameterPanel.tsx:21 msgid "Selection Lists" msgstr "Selectie lijsten" -#: lib/enums/ModelInformation.tsx:275 +#: lib/enums/ModelInformation.tsx:291 #: src/components/barcodes/BarcodeInput.tsx:114 #: src/components/dashboard/DashboardLayout.tsx:281 #: src/components/editors/NotesEditor.tsx:74 #: src/components/editors/TemplateEditor/TemplateEditor.tsx:158 -#: src/components/forms/fields/ApiFormField.tsx:273 +#: src/components/forms/fields/ApiFormField.tsx:237 #: src/components/forms/fields/TableField.tsx:45 #: src/components/importer/ImportDataSelector.tsx:192 #: src/components/importer/ImporterColumnSelector.tsx:234 @@ -528,7 +554,7 @@ msgstr "Selectie lijsten" #: src/components/nav/SearchDrawer.tsx:572 #: src/components/settings/SettingList.tsx:139 #: src/components/wizards/ImportPartWizard.tsx:574 -#: src/components/wizards/ImportPartWizard.tsx:718 +#: src/components/wizards/ImportPartWizard.tsx:719 #: src/forms/BomForms.tsx:69 #: src/functions/auth.tsx:643 #: src/pages/ErrorPage.tsx:11 @@ -547,9 +573,9 @@ msgstr "Selectie lijsten" msgid "Error" msgstr "Foutmelding" -#: lib/enums/ModelInformation.tsx:276 +#: lib/enums/ModelInformation.tsx:292 #: src/tables/machine/MachineListTable.tsx:402 -#: src/tables/machine/MachineTypeTable.tsx:299 +#: src/tables/machine/MachineTypeTable.tsx:297 msgid "Errors" msgstr "Foutmeldingen" @@ -559,10 +585,10 @@ msgstr "Administrator" #: lib/enums/Roles.tsx:33 #: src/defaults/actions.tsx:135 -#: src/pages/Index/Settings/SystemSettings.tsx:264 -#: src/pages/build/BuildIndex.tsx:75 -#: src/pages/part/PartDetail.tsx:904 -#: src/pages/sales/SalesOrderDetail.tsx:421 +#: src/pages/Index/Settings/SystemSettings.tsx:270 +#: src/pages/build/BuildIndex.tsx:67 +#: src/pages/part/PartDetail.tsx:893 +#: src/pages/sales/SalesOrderDetail.tsx:422 msgid "Build Orders" msgstr "Productieorders" @@ -639,39 +665,39 @@ msgstr "Scan of voer de barcode in" msgid "Enter barcode data" msgstr "Voer barcode gegevens in" -#: src/components/barcodes/BarcodeScanDialog.tsx:49 -#: src/components/buttons/ScanButton.tsx:15 +#: src/components/barcodes/BarcodeScanDialog.tsx:56 +#: src/components/buttons/ScanButton.tsx:27 #: src/components/nav/NavigationDrawer.tsx:122 -#: src/forms/PurchaseOrderForms.tsx:457 -#: src/forms/PurchaseOrderForms.tsx:563 +#: src/forms/PurchaseOrderForms.tsx:509 +#: src/forms/PurchaseOrderForms.tsx:615 msgid "Scan Barcode" msgstr "Scan barcode" -#: src/components/barcodes/BarcodeScanDialog.tsx:105 +#: src/components/barcodes/BarcodeScanDialog.tsx:121 msgid "No matching item found" msgstr "Geen overeenkomend item gevonden" -#: src/components/barcodes/BarcodeScanDialog.tsx:134 +#: src/components/barcodes/BarcodeScanDialog.tsx:150 msgid "Barcode does not match the expected model type" msgstr "Barcode komt niet overeen met het verwachte type model" -#: src/components/barcodes/BarcodeScanDialog.tsx:145 +#: src/components/barcodes/BarcodeScanDialog.tsx:161 #: src/components/editors/NotesEditor.tsx:84 #: src/components/editors/NotesEditor.tsx:118 -#: src/components/forms/ApiForm.tsx:465 +#: src/components/forms/ApiForm.tsx:484 #: src/components/wizards/ImportPartWizard.tsx:566 -#: src/components/wizards/ImportPartWizard.tsx:690 +#: src/components/wizards/ImportPartWizard.tsx:691 #: src/pages/Index/Settings/AdminCenter/CurrencyManagementPanel.tsx:45 #: src/tables/bom/BomTable.tsx:548 #: src/tables/settings/PendingTasksTable.tsx:68 msgid "Success" msgstr "Succes" -#: src/components/barcodes/BarcodeScanDialog.tsx:151 +#: src/components/barcodes/BarcodeScanDialog.tsx:167 msgid "Failed to handle barcode" msgstr "Streepjescode verwerken mislukt" -#: src/components/barcodes/BarcodeScanDialog.tsx:167 +#: src/components/barcodes/BarcodeScanDialog.tsx:183 #: src/pages/Index/Scan.tsx:129 msgid "Failed to scan barcode" msgstr "Streepjescode scannen mislukt" @@ -714,10 +740,10 @@ msgstr "Streepjescode koppelen mislukt" #: src/components/barcodes/QRCode.tsx:179 #: src/pages/part/PartDetail.tsx:521 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:222 -#: src/pages/sales/ReturnOrderDetail.tsx:188 -#: src/pages/sales/SalesOrderDetail.tsx:181 -#: src/pages/sales/SalesOrderShipmentDetail.tsx:122 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:223 +#: src/pages/sales/ReturnOrderDetail.tsx:189 +#: src/pages/sales/SalesOrderDetail.tsx:182 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:120 #: src/pages/stock/StockDetail.tsx:186 msgid "Link" msgstr "Link" @@ -728,7 +754,7 @@ msgstr "Dit verwijdert de link naar de bijbehorende barcode" #: src/components/barcodes/QRCode.tsx:205 #: src/components/items/ActionDropdown.tsx:192 -#: src/forms/PurchaseOrderForms.tsx:554 +#: src/forms/PurchaseOrderForms.tsx:606 msgid "Unlink Barcode" msgstr "Barcode loskoppelen" @@ -829,14 +855,14 @@ msgstr "Je wordt doorverwezen naar de provider voor verdere acties." #~ msgid "Scan QR code" #~ msgstr "Scan QR code" -#: src/components/buttons/ScanButton.tsx:19 -msgid "Open Barcode Scanner" -msgstr "Barcode Scanner openen" - #: src/components/buttons/ScanButton.tsx:20 #~ msgid "Open QR code scanner" #~ msgstr "Open QR code scanner" +#: src/components/buttons/ScanButton.tsx:32 +msgid "Open Barcode Scanner" +msgstr "Barcode Scanner openen" + #: src/components/buttons/SpotlightButton.tsx:12 msgid "Open spotlight" msgstr "Open spotlight" @@ -1059,7 +1085,7 @@ msgid "Show the number of sales orders which are assigned to you" msgstr "Toon het aantal aan u toegewezen verkooporders" #: src/components/dashboard/DashboardWidgetLibrary.tsx:129 -#: src/pages/sales/SalesIndex.tsx:105 +#: src/pages/sales/SalesIndex.tsx:87 msgid "Pending Shipments" msgstr "" @@ -1210,12 +1236,18 @@ msgid "Remove the associated image from this item?" msgstr "De bijbehorende afbeelding van dit item verwijderen?" #: src/components/details/DetailsImage.tsx:83 -#: src/forms/StockForms.tsx:888 +#: src/forms/StockForms.tsx:895 #: src/pages/Index/Settings/AccountSettings/MFASettings.tsx:324 #: src/pages/Index/Settings/AccountSettings/MFASettings.tsx:415 #: src/pages/Index/Settings/AccountSettings/MFASettings.tsx:884 #: src/pages/Index/Settings/AccountSettings/MFASettings.tsx:903 #: src/pages/Index/Settings/AccountSettings/SecurityContent.tsx:254 +#: src/tables/build/BuildAllocatedStockTable.tsx:178 +#: src/tables/build/BuildAllocatedStockTable.tsx:258 +#: src/tables/build/BuildLineTable.tsx:111 +#: src/tables/build/BuildLineTable.tsx:665 +#: src/tables/sales/SalesOrderAllocationTable.tsx:224 +#: src/tables/sales/SalesOrderAllocationTable.tsx:247 msgid "Remove" msgstr "Verwijderen" @@ -1241,12 +1273,12 @@ msgid "Upload Error" msgstr "Fout bij uploaden" #: src/components/details/DetailsImage.tsx:250 -#: src/components/forms/fields/TextField.tsx:65 +#: src/components/forms/fields/AutoFillRightSection.tsx:34 msgid "Clear" msgstr "Wis" #: src/components/details/DetailsImage.tsx:256 -#: src/components/forms/ApiForm.tsx:677 +#: src/components/forms/ApiForm.tsx:696 #: src/contexts/ThemeContext.tsx:44 #: src/pages/Index/Settings/AccountSettings/MFASettings.tsx:149 #: src/pages/Index/Settings/AccountSettings/MFASettings.tsx:568 @@ -1499,8 +1531,8 @@ msgstr "Server fout" msgid "A server error occurred" msgstr "Er is een serverfout opgetreden" -#: src/components/forms/ApiForm.tsx:103 -#: src/components/forms/ApiForm.tsx:594 +#: src/components/forms/ApiForm.tsx:107 +#: src/components/forms/ApiForm.tsx:613 msgid "Form Error" msgstr "Formulier fout" @@ -1508,11 +1540,11 @@ msgstr "Formulier fout" #~ msgid "Form Errors Exist" #~ msgstr "Form Errors Exist" -#: src/components/forms/ApiForm.tsx:604 +#: src/components/forms/ApiForm.tsx:623 msgid "Errors exist for one or more form fields" msgstr "Er staan fouten in één of meer formuliervelden" -#: src/components/forms/ApiForm.tsx:715 +#: src/components/forms/ApiForm.tsx:734 #: src/hooks/UseForm.tsx:133 #: src/tables/plugin/PluginListTable.tsx:204 msgid "Update" @@ -1698,15 +1730,14 @@ msgstr "Hostnaam" #: src/components/forms/InstanceOptions.tsx:124 #: src/components/plugins/PluginDrawer.tsx:68 #: src/pages/Index/Settings/AdminCenter/UnitManagementPanel.tsx:19 -#: src/pages/part/CategoryDetail.tsx:88 +#: src/pages/part/CategoryDetail.tsx:91 #: src/pages/part/PartDetail.tsx:446 #: src/pages/stock/LocationDetail.tsx:82 #: src/tables/machine/MachineTypeTable.tsx:67 -#: src/tables/machine/MachineTypeTable.tsx:151 -#: src/tables/machine/MachineTypeTable.tsx:254 -#: src/tables/machine/MachineTypeTable.tsx:357 +#: src/tables/machine/MachineTypeTable.tsx:149 +#: src/tables/machine/MachineTypeTable.tsx:252 +#: src/tables/machine/MachineTypeTable.tsx:355 #: src/tables/plugin/PluginErrorTable.tsx:33 -#: src/tables/purchasing/ManufacturerPartParameterTable.tsx:36 #: src/tables/settings/ApiTokenTable.tsx:57 #: src/tables/settings/GroupTable.tsx:95 #: src/tables/settings/GroupTable.tsx:148 @@ -1769,7 +1800,7 @@ msgstr "Host keuze opslaan" #~ msgstr "State: <0>worker ({0}), <1>plugins{1}" #: src/components/forms/InstanceOptions.tsx:118 -#: src/pages/Index/Settings/SystemSettings.tsx:45 +#: src/pages/Index/Settings/SystemSettings.tsx:46 msgid "Server" msgstr "Server" @@ -1793,6 +1824,8 @@ msgid "Plugins" msgstr "Plug-ins" #: src/components/forms/InstanceOptions.tsx:143 +#: src/tables/general/ParameterTemplateTable.tsx:153 +#: src/tables/general/ParameterTemplateTable.tsx:188 #: src/tables/part/PartTestTemplateTable.tsx:117 #: src/tables/settings/TemplateTable.tsx:251 #: src/tables/settings/TemplateTable.tsx:362 @@ -1817,10 +1850,14 @@ msgstr "Gestopt" msgid "Running" msgstr "Bezig" -#: src/components/forms/fields/ApiFormField.tsx:233 +#: src/components/forms/fields/ApiFormField.tsx:197 msgid "Select file to upload" msgstr "" +#: src/components/forms/fields/AutoFillRightSection.tsx:47 +msgid "Accept suggested value" +msgstr "" + #: src/components/forms/fields/DateField.tsx:76 msgid "Select date" msgstr "" @@ -1853,13 +1890,13 @@ msgstr "Selecteer pakket" msgid "{0} icons" msgstr "{0} pictogrammen" -#: src/components/forms/fields/RelatedModelField.tsx:409 +#: src/components/forms/fields/RelatedModelField.tsx:480 #: src/components/modals/AboutInvenTreeModal.tsx:96 #: src/pages/Index/Settings/AccountSettings/SecurityContent.tsx:383 msgid "Loading" msgstr "Laden" -#: src/components/forms/fields/RelatedModelField.tsx:411 +#: src/components/forms/fields/RelatedModelField.tsx:482 msgid "No results found" msgstr "Geen resultaten gevonden" @@ -1875,10 +1912,6 @@ msgstr "Geen items beschikbaar" msgid "Add new row" msgstr "Nieuwe rij toevoegen" -#: src/components/forms/fields/TextField.tsx:82 -msgid "Accept suggested value" -msgstr "" - #: src/components/images/DetailsImage.tsx:252 #~ msgid "Select image" #~ msgstr "Select image" @@ -2036,7 +2069,7 @@ msgstr "De gegevens zijn met succes geïmporteerd" #: src/components/importer/ImporterDrawer.tsx:109 #: src/components/modals/AboutInvenTreeModal.tsx:205 #: src/components/modals/ServerInfoModal.tsx:134 -#: src/components/wizards/ImportPartWizard.tsx:772 +#: src/components/wizards/ImportPartWizard.tsx:773 #: src/forms/BomForms.tsx:132 #: src/pages/Index/Settings/AccountSettings/MFASettings.tsx:685 msgid "Close" @@ -2199,7 +2232,7 @@ msgid "Change" msgstr "Wijzigen" #: src/components/items/RoleTable.tsx:150 -#: src/forms/StockForms.tsx:927 +#: src/forms/StockForms.tsx:941 #: src/tables/stock/StockItemTestResultTable.tsx:367 msgid "Add" msgstr "Toevoegen" @@ -2222,11 +2255,11 @@ msgstr "Geen artikelen" #: src/components/items/TransferList.tsx:161 #: src/components/render/Stock.tsx:102 -#: src/pages/part/PartDetail.tsx:994 +#: src/pages/part/PartDetail.tsx:1009 #: src/pages/stock/StockDetail.tsx:265 #: src/pages/stock/StockDetail.tsx:942 -#: src/tables/build/BuildAllocatedStockTable.tsx:135 -#: src/tables/build/BuildLineTable.tsx:192 +#: src/tables/build/BuildAllocatedStockTable.tsx:132 +#: src/tables/build/BuildLineTable.tsx:193 #: src/tables/part/PartTable.tsx:137 #: src/tables/stock/StockItemTable.tsx:182 #: src/tables/stock/StockItemTable.tsx:343 @@ -2373,7 +2406,7 @@ msgid "Database" msgstr "Database" #: src/components/modals/ServerInfoModal.tsx:49 -#: src/components/nav/Alerts.tsx:118 +#: src/components/nav/Alerts.tsx:120 msgid "Debug Mode" msgstr "Foutopsporing modus" @@ -2414,7 +2447,7 @@ msgid "Issues detected" msgstr "Problemen gedetecteerd" #: src/components/modals/ServerInfoModal.tsx:102 -#: src/components/nav/Alerts.tsx:125 +#: src/components/nav/Alerts.tsx:127 msgid "Background Worker" msgstr "" @@ -2436,7 +2469,7 @@ msgstr "E-mail instellingen" #~ msgstr "Email settings not configured" #: src/components/modals/ServerInfoModal.tsx:120 -#: src/components/nav/Alerts.tsx:141 +#: src/components/nav/Alerts.tsx:143 msgid "Email settings not configured." msgstr "E-mailinstellingen niet geconfigureerd." @@ -2444,43 +2477,47 @@ msgstr "E-mailinstellingen niet geconfigureerd." msgid "Alerts" msgstr "Waarschuwingen" -#: src/components/nav/Alerts.tsx:120 +#: src/components/nav/Alerts.tsx:97 +msgid "No issues detected" +msgstr "" + +#: src/components/nav/Alerts.tsx:122 msgid "The server is running in debug mode." msgstr "Server wordt uitgevoerd in debug mode." -#: src/components/nav/Alerts.tsx:127 +#: src/components/nav/Alerts.tsx:129 msgid "The background worker process is not running." msgstr "Het proces van server is niet gestart." -#: src/components/nav/Alerts.tsx:132 +#: src/components/nav/Alerts.tsx:134 msgid "Server Restart" msgstr "Server herstart" -#: src/components/nav/Alerts.tsx:134 +#: src/components/nav/Alerts.tsx:136 msgid "The server requires a restart to apply changes." msgstr "De server vereist een herstart om de wijzigingen toe te passen." -#: src/components/nav/Alerts.tsx:139 +#: src/components/nav/Alerts.tsx:141 msgid "Email settings" msgstr "E-mail instellingen" -#: src/components/nav/Alerts.tsx:146 +#: src/components/nav/Alerts.tsx:148 msgid "Database Migrations" msgstr "Database migraties" -#: src/components/nav/Alerts.tsx:148 +#: src/components/nav/Alerts.tsx:150 msgid "There are pending database migrations." msgstr "Er zijn nog geen database migraties." -#: src/components/nav/Alerts.tsx:163 +#: src/components/nav/Alerts.tsx:165 msgid "Learn more about {code}" msgstr "Meer informatie over {code}" #: src/components/nav/Header.tsx:188 #: src/components/nav/NavigationDrawer.tsx:134 #: src/components/nav/NotificationDrawer.tsx:181 -#: src/pages/Index/Settings/SystemSettings.tsx:121 -#: src/pages/Index/Settings/UserSettings.tsx:106 +#: src/pages/Index/Settings/SystemSettings.tsx:122 +#: src/pages/Index/Settings/UserSettings.tsx:107 #: src/pages/Notifications.tsx:45 #: src/pages/Notifications.tsx:130 msgid "Notifications" @@ -2511,8 +2548,8 @@ msgstr "Instellingen" #: src/components/nav/NavigationDrawer.tsx:140 #: src/components/nav/SettingsHeader.tsx:40 #: src/defaults/actions.tsx:92 -#: src/pages/Index/Settings/UserSettings.tsx:141 -#: src/pages/Index/Settings/UserSettings.tsx:145 +#: src/pages/Index/Settings/UserSettings.tsx:142 +#: src/pages/Index/Settings/UserSettings.tsx:146 msgid "User Settings" msgstr "Gebruiker instellingen" @@ -2529,8 +2566,8 @@ msgstr "Gebruiker instellingen" #: src/components/nav/NavigationDrawer.tsx:146 #: src/components/nav/SettingsHeader.tsx:41 #: src/defaults/actions.tsx:144 -#: src/pages/Index/Settings/SystemSettings.tsx:348 -#: src/pages/Index/Settings/SystemSettings.tsx:353 +#: src/pages/Index/Settings/SystemSettings.tsx:354 +#: src/pages/Index/Settings/SystemSettings.tsx:359 msgid "System Settings" msgstr "Systeem instellingen" @@ -2577,11 +2614,11 @@ msgstr "Uitloggen" #: src/components/nav/NavigationDrawer.tsx:77 #: src/components/render/Part.tsx:36 -#: src/components/wizards/ImportPartWizard.tsx:807 +#: src/components/wizards/ImportPartWizard.tsx:808 #: src/defaults/links.tsx:42 #: src/forms/StockForms.tsx:794 -#: src/pages/Index/Settings/SystemSettings.tsx:224 -#: src/pages/part/PartDetail.tsx:804 +#: src/pages/Index/Settings/SystemSettings.tsx:230 +#: src/pages/part/PartDetail.tsx:793 #: src/pages/stock/LocationDetail.tsx:390 #: src/pages/stock/LocationDetail.tsx:420 #: src/pages/stock/StockDetail.tsx:642 @@ -2591,29 +2628,29 @@ msgstr "Voorraad" #: src/components/nav/NavigationDrawer.tsx:84 #: src/defaults/links.tsx:48 -#: src/pages/build/BuildDetail.tsx:748 -#: src/pages/build/BuildIndex.tsx:102 +#: src/pages/build/BuildDetail.tsx:753 +#: src/pages/build/BuildIndex.tsx:101 msgid "Manufacturing" msgstr "Productie" #: src/components/nav/NavigationDrawer.tsx:91 #: src/defaults/links.tsx:54 #: src/pages/company/ManufacturerDetail.tsx:9 -#: src/pages/company/ManufacturerPartDetail.tsx:276 +#: src/pages/company/ManufacturerPartDetail.tsx:267 #: src/pages/company/SupplierDetail.tsx:9 -#: src/pages/company/SupplierPartDetail.tsx:360 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:553 -#: src/pages/purchasing/PurchasingIndex.tsx:122 +#: src/pages/company/SupplierPartDetail.tsx:365 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:558 +#: src/pages/purchasing/PurchasingIndex.tsx:212 msgid "Purchasing" msgstr "Kopen" #: src/components/nav/NavigationDrawer.tsx:98 #: src/defaults/links.tsx:60 #: src/pages/company/CustomerDetail.tsx:9 -#: src/pages/sales/ReturnOrderDetail.tsx:554 -#: src/pages/sales/SalesIndex.tsx:153 -#: src/pages/sales/SalesOrderDetail.tsx:619 -#: src/pages/sales/SalesOrderShipmentDetail.tsx:480 +#: src/pages/sales/ReturnOrderDetail.tsx:559 +#: src/pages/sales/SalesIndex.tsx:168 +#: src/pages/sales/SalesOrderDetail.tsx:624 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:448 msgid "Sales" msgstr "Verkoop" @@ -2667,21 +2704,21 @@ msgid "Remove search group" msgstr "Verwijder zoekgroep" #: src/components/nav/SearchDrawer.tsx:288 -#: src/pages/company/ManufacturerPartDetail.tsx:192 -#: src/pages/part/PartDetail.tsx:862 +#: src/pages/company/ManufacturerPartDetail.tsx:179 +#: src/pages/part/PartDetail.tsx:851 #: src/pages/part/PartSupplierDetail.tsx:15 -#: src/pages/purchasing/PurchasingIndex.tsx:81 +#: src/pages/purchasing/PurchasingIndex.tsx:100 msgid "Suppliers" msgstr "Leveranciers" #: src/components/nav/SearchDrawer.tsx:298 #: src/pages/part/PartSupplierDetail.tsx:23 -#: src/pages/purchasing/PurchasingIndex.tsx:98 +#: src/pages/purchasing/PurchasingIndex.tsx:149 msgid "Manufacturers" msgstr "Fabrikant" #: src/components/nav/SearchDrawer.tsx:308 -#: src/pages/sales/SalesIndex.tsx:138 +#: src/pages/sales/SalesIndex.tsx:133 msgid "Customers" msgstr "Klanten" @@ -2772,21 +2809,21 @@ msgstr "Plug-in informatie" #: src/components/plugins/PluginDrawer.tsx:73 #: src/forms/selectionListFields.tsx:102 -#: src/pages/build/BuildDetail.tsx:250 -#: src/pages/company/CompanyDetail.tsx:93 -#: src/pages/company/ManufacturerPartDetail.tsx:93 -#: src/pages/company/ManufacturerPartDetail.tsx:120 -#: src/pages/company/SupplierPartDetail.tsx:145 -#: src/pages/part/CategoryDetail.tsx:108 +#: src/pages/build/BuildDetail.tsx:251 +#: src/pages/company/CompanyDetail.tsx:94 +#: src/pages/company/ManufacturerPartDetail.tsx:92 +#: src/pages/company/ManufacturerPartDetail.tsx:119 +#: src/pages/company/SupplierPartDetail.tsx:146 +#: src/pages/part/CategoryDetail.tsx:111 #: src/pages/part/PartDetail.tsx:460 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:162 -#: src/pages/sales/ReturnOrderDetail.tsx:129 -#: src/pages/sales/SalesOrderDetail.tsx:119 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:163 +#: src/pages/sales/ReturnOrderDetail.tsx:130 +#: src/pages/sales/SalesOrderDetail.tsx:120 #: src/pages/stock/LocationDetail.tsx:102 #: src/tables/ColumnRenderers.tsx:278 -#: src/tables/build/BuildAllocatedStockTable.tsx:91 -#: src/tables/machine/MachineTypeTable.tsx:161 -#: src/tables/machine/MachineTypeTable.tsx:257 +#: src/tables/build/BuildAllocatedStockTable.tsx:88 +#: src/tables/machine/MachineTypeTable.tsx:159 +#: src/tables/machine/MachineTypeTable.tsx:255 #: src/tables/plugin/PluginListTable.tsx:110 msgid "Description" msgstr "Omschrijving" @@ -2814,7 +2851,7 @@ msgstr "Datum" #: src/tables/company/CompanyTable.tsx:91 #: src/tables/machine/MachineListTable.tsx:384 #: src/tables/machine/MachineListTable.tsx:799 -#: src/tables/part/ParametricPartTable.tsx:354 +#: src/tables/part/ParametricPartTable.tsx:19 #: src/tables/part/PartTable.tsx:197 #: src/tables/part/PartVariantTable.tsx:15 #: src/tables/plugin/PluginListTable.tsx:96 @@ -2836,8 +2873,8 @@ msgid "Installation Path" msgstr "Installatie pad" #: src/components/plugins/PluginDrawer.tsx:116 -#: src/tables/machine/MachineTypeTable.tsx:184 -#: src/tables/machine/MachineTypeTable.tsx:293 +#: src/tables/machine/MachineTypeTable.tsx:182 +#: src/tables/machine/MachineTypeTable.tsx:291 #: src/tables/plugin/PluginListTable.tsx:101 #: src/tables/plugin/PluginListTable.tsx:417 msgid "Builtin" @@ -2849,8 +2886,8 @@ msgstr "Pakket" #: src/components/plugins/PluginDrawer.tsx:133 #: src/pages/Index/Settings/AdminCenter/PluginManagementPanel.tsx:55 -#: src/pages/Index/Settings/SystemSettings.tsx:331 -#: src/pages/Index/Settings/UserSettings.tsx:128 +#: src/pages/Index/Settings/SystemSettings.tsx:337 +#: src/pages/Index/Settings/UserSettings.tsx:129 msgid "Plugin Settings" msgstr "Plug-in instellingen" @@ -2911,7 +2948,7 @@ msgstr "Fout opgetreden tijdens het laden van de plug-in inhoud" #~ msgid "Unknown model: {model}" #~ msgstr "Unknown model: {model}" -#: src/components/render/Instance.tsx:249 +#: src/components/render/Instance.tsx:247 msgid "Unknown model: {model_name}" msgstr "Onbekend model: {model_name}" @@ -2939,10 +2976,10 @@ msgstr "Verzending" #: src/components/render/Part.tsx:28 #: src/components/render/Plugin.tsx:17 #: src/components/render/User.tsx:37 -#: src/pages/company/CompanyDetail.tsx:323 -#: src/pages/company/SupplierPartDetail.tsx:373 +#: src/pages/company/CompanyDetail.tsx:328 +#: src/pages/company/SupplierPartDetail.tsx:378 #: src/pages/core/UserDetail.tsx:211 -#: src/pages/part/PartDetail.tsx:1027 +#: src/pages/part/PartDetail.tsx:1048 #: src/tables/ColumnRenderers.tsx:410 msgid "Inactive" msgstr "Inactief" @@ -2962,11 +2999,11 @@ msgstr "Geen voorraad" #: src/components/render/Part.tsx:47 #: src/components/wizards/OrderPartsWizard.tsx:135 -#: src/pages/company/SupplierPartDetail.tsx:197 -#: src/pages/company/SupplierPartDetail.tsx:394 -#: src/pages/part/PartDetail.tsx:1015 +#: src/pages/company/SupplierPartDetail.tsx:198 +#: src/pages/company/SupplierPartDetail.tsx:399 +#: src/pages/part/PartDetail.tsx:1030 #: src/tables/bom/BomTable.tsx:444 -#: src/tables/build/BuildLineTable.tsx:222 +#: src/tables/build/BuildLineTable.tsx:223 #: src/tables/part/PartTable.tsx:108 msgid "On Order" msgstr "In bestelling" @@ -2974,9 +3011,9 @@ msgstr "In bestelling" #: src/components/render/Part.tsx:55 #: src/components/wizards/OrderPartsWizard.tsx:141 #: src/pages/part/PartDetail.tsx:587 -#: src/pages/part/PartDetail.tsx:1021 +#: src/pages/part/PartDetail.tsx:1036 #: src/pages/stock/StockDetail.tsx:925 -#: src/tables/part/PartTestResultTable.tsx:297 +#: src/tables/part/PartTestResultTable.tsx:305 #: src/tables/stock/StockItemTable.tsx:359 msgid "In Production" msgstr "In productie" @@ -2987,7 +3024,7 @@ msgid "Details" msgstr "Beschrijving" #: src/components/render/Part.tsx:112 -#: src/components/wizards/ImportPartWizard.tsx:806 +#: src/components/wizards/ImportPartWizard.tsx:807 #: src/pages/part/PartDetail.tsx:487 #: src/tables/ColumnRenderers.tsx:233 #: src/tables/ColumnRenderers.tsx:242 @@ -3000,16 +3037,16 @@ msgstr "Categorie" #: src/components/render/Stock.tsx:114 #: src/components/render/Stock.tsx:132 #: src/forms/BuildForms.tsx:795 -#: src/forms/PurchaseOrderForms.tsx:595 +#: src/forms/PurchaseOrderForms.tsx:647 #: src/forms/StockForms.tsx:792 #: src/forms/StockForms.tsx:839 -#: src/forms/StockForms.tsx:885 -#: src/forms/StockForms.tsx:924 -#: src/forms/StockForms.tsx:960 -#: src/forms/StockForms.tsx:1003 -#: src/forms/StockForms.tsx:1047 -#: src/forms/StockForms.tsx:1095 -#: src/forms/StockForms.tsx:1139 +#: src/forms/StockForms.tsx:892 +#: src/forms/StockForms.tsx:938 +#: src/forms/StockForms.tsx:976 +#: src/forms/StockForms.tsx:1019 +#: src/forms/StockForms.tsx:1063 +#: src/forms/StockForms.tsx:1111 +#: src/forms/StockForms.tsx:1155 #: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:88 #: src/pages/core/UserDetail.tsx:158 #: src/pages/stock/StockDetail.tsx:298 @@ -3023,7 +3060,7 @@ msgstr "Locatie" #: src/components/render/Stock.tsx:99 #: src/pages/stock/StockDetail.tsx:198 #: src/pages/stock/StockDetail.tsx:930 -#: src/tables/build/BuildAllocatedStockTable.tsx:121 +#: src/tables/build/BuildAllocatedStockTable.tsx:118 #: src/tables/build/BuildOutputTable.tsx:107 #: src/tables/sales/SalesOrderAllocationTable.tsx:142 msgid "Serial Number" @@ -3034,9 +3071,9 @@ msgstr "Serienummer" #: src/forms/BuildForms.tsx:240 #: src/forms/BuildForms.tsx:634 #: src/forms/BuildForms.tsx:797 -#: src/forms/PurchaseOrderForms.tsx:801 +#: src/forms/PurchaseOrderForms.tsx:853 #: src/forms/ReturnOrderForms.tsx:243 -#: src/forms/SalesOrderForms.tsx:308 +#: src/forms/SalesOrderForms.tsx:387 #: src/forms/StockForms.tsx:841 #: src/pages/part/PartStockHistoryDetail.tsx:56 #: src/pages/part/PartStockHistoryDetail.tsx:210 @@ -3046,9 +3083,9 @@ msgstr "Serienummer" #: src/pages/part/pricing/PriceBreakPanel.tsx:172 #: src/pages/stock/StockDetail.tsx:258 #: src/pages/stock/StockDetail.tsx:936 -#: src/tables/build/BuildLineTable.tsx:86 +#: src/tables/build/BuildLineTable.tsx:83 #: src/tables/part/PartPurchaseOrdersTable.tsx:94 -#: src/tables/part/PartTestResultTable.tsx:269 +#: src/tables/part/PartTestResultTable.tsx:277 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:175 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:206 #: src/tables/purchasing/SupplierPriceBreakTable.tsx:69 @@ -3063,14 +3100,14 @@ msgstr "Aantal" #: src/forms/BuildForms.tsx:474 #: src/forms/StockForms.tsx:793 #: src/forms/StockForms.tsx:840 -#: src/forms/StockForms.tsx:886 -#: src/forms/StockForms.tsx:925 -#: src/forms/StockForms.tsx:961 -#: src/forms/StockForms.tsx:1004 -#: src/forms/StockForms.tsx:1048 -#: src/forms/StockForms.tsx:1096 -#: src/forms/StockForms.tsx:1140 -#: src/tables/build/BuildLineTable.tsx:96 +#: src/forms/StockForms.tsx:893 +#: src/forms/StockForms.tsx:939 +#: src/forms/StockForms.tsx:977 +#: src/forms/StockForms.tsx:1020 +#: src/forms/StockForms.tsx:1064 +#: src/forms/StockForms.tsx:1112 +#: src/forms/StockForms.tsx:1156 +#: src/tables/build/BuildLineTable.tsx:93 msgid "Batch" msgstr "Batch" @@ -3306,10 +3343,6 @@ msgstr "Geen instellingen opgegeven" #~ msgid "Part category updated" #~ msgstr "Part category updated" -#: src/components/tables/part/PartParameterTable.tsx:41 -#~ msgid "Parameter" -#~ msgstr "Parameter" - #: src/components/tables/part/PartParameterTable.tsx:114 #~ msgid "Part parameter updated" #~ msgstr "Part parameter updated" @@ -3571,15 +3604,16 @@ msgid "Already Imported" msgstr "" #: src/components/wizards/ImportPartWizard.tsx:205 -#: src/pages/company/CompanyDetail.tsx:136 +#: src/pages/company/CompanyDetail.tsx:137 #: src/pages/company/SupplierDetail.tsx:8 -#: src/pages/company/SupplierPartDetail.tsx:130 -#: src/pages/company/SupplierPartDetail.tsx:235 -#: src/pages/company/SupplierPartDetail.tsx:364 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:156 +#: src/pages/company/SupplierPartDetail.tsx:131 +#: src/pages/company/SupplierPartDetail.tsx:236 +#: src/pages/company/SupplierPartDetail.tsx:369 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:157 #: src/tables/Filter.tsx:360 #: src/tables/company/CompanyTable.tsx:96 #: src/tables/part/PartPurchaseOrdersTable.tsx:43 +#: src/tables/purchasing/PurchaseOrderParametricTable.tsx:34 #: src/tables/purchasing/PurchaseOrderTable.tsx:109 #: src/tables/purchasing/SupplierPriceBreakTable.tsx:40 msgid "Supplier" @@ -3648,7 +3682,7 @@ msgid "Next" msgstr "" #: src/components/wizards/ImportPartWizard.tsx:540 -#: src/pages/part/PartDetail.tsx:1046 +#: src/pages/part/PartDetail.tsx:1067 #: src/tables/part/PartTable.tsx:408 msgid "Edit Part" msgstr "Onderdeel bewerken" @@ -3669,28 +3703,28 @@ msgstr "" msgid "Import" msgstr "" -#: src/components/wizards/ImportPartWizard.tsx:691 +#: src/components/wizards/ImportPartWizard.tsx:692 msgid "Parameters created successfully!" msgstr "" -#: src/components/wizards/ImportPartWizard.tsx:719 +#: src/components/wizards/ImportPartWizard.tsx:720 msgid "Failed to create parameters, please fix the errors and try again" msgstr "" #. placeholder {0}: supplierPart?.supplier -#: src/components/wizards/ImportPartWizard.tsx:739 +#: src/components/wizards/ImportPartWizard.tsx:740 msgid "Part imported successfully from supplier {0}." msgstr "" -#: src/components/wizards/ImportPartWizard.tsx:752 +#: src/components/wizards/ImportPartWizard.tsx:753 msgid "Open Part" msgstr "" -#: src/components/wizards/ImportPartWizard.tsx:759 +#: src/components/wizards/ImportPartWizard.tsx:760 msgid "Open Supplier Part" msgstr "" -#: src/components/wizards/ImportPartWizard.tsx:766 +#: src/components/wizards/ImportPartWizard.tsx:767 msgid "Open Manufacturer Part" msgstr "" @@ -3699,25 +3733,19 @@ msgstr "" #~ msgid "Import Part" #~ msgstr "Import Part" -#: src/components/wizards/ImportPartWizard.tsx:802 +#: src/components/wizards/ImportPartWizard.tsx:803 msgid "Import Supplier Part" msgstr "" -#: src/components/wizards/ImportPartWizard.tsx:804 +#: src/components/wizards/ImportPartWizard.tsx:805 msgid "Search Supplier Part" msgstr "" -#: src/components/wizards/ImportPartWizard.tsx:806 -#: src/pages/company/ManufacturerPartDetail.tsx:166 -#: src/pages/part/PartDetail.tsx:793 -msgid "Parameters" -msgstr "Parameters" - -#: src/components/wizards/ImportPartWizard.tsx:806 +#: src/components/wizards/ImportPartWizard.tsx:807 msgid "Confirm import" msgstr "" -#: src/components/wizards/ImportPartWizard.tsx:808 +#: src/components/wizards/ImportPartWizard.tsx:809 msgid "Done" msgstr "" @@ -3738,24 +3766,24 @@ msgid "Sales Requirements" msgstr "" #: src/components/wizards/OrderPartsWizard.tsx:129 -#: src/forms/StockForms.tsx:887 -#: src/forms/StockForms.tsx:926 -#: src/forms/StockForms.tsx:962 -#: src/forms/StockForms.tsx:1005 -#: src/forms/StockForms.tsx:1049 -#: src/forms/StockForms.tsx:1097 -#: src/forms/StockForms.tsx:1141 -#: src/pages/company/SupplierPartDetail.tsx:190 -#: src/pages/company/SupplierPartDetail.tsx:378 +#: src/forms/StockForms.tsx:894 +#: src/forms/StockForms.tsx:940 +#: src/forms/StockForms.tsx:978 +#: src/forms/StockForms.tsx:1021 +#: src/forms/StockForms.tsx:1065 +#: src/forms/StockForms.tsx:1113 +#: src/forms/StockForms.tsx:1157 +#: src/pages/company/SupplierPartDetail.tsx:191 +#: src/pages/company/SupplierPartDetail.tsx:383 #: src/pages/part/PartDetail.tsx:534 -#: src/pages/part/PartDetail.tsx:984 +#: src/pages/part/PartDetail.tsx:999 #: src/tables/Filter.tsx:92 #: src/tables/purchasing/SupplierPartTable.tsx:230 msgid "In Stock" msgstr "Op voorraad" #: src/components/wizards/OrderPartsWizard.tsx:146 -#: src/tables/build/BuildLineTable.tsx:404 +#: src/tables/build/BuildLineTable.tsx:405 msgid "Required Quantity" msgstr "Vereiste hoeveelheid" @@ -3847,7 +3875,7 @@ msgid "Please correct the errors in the selected parts" msgstr "Corrigeer de fouten in de geselecteerde onderdelen" #: src/components/wizards/OrderPartsWizard.tsx:587 -#: src/tables/build/BuildLineTable.tsx:815 +#: src/tables/build/BuildLineTable.tsx:822 #: src/tables/part/PartTable.tsx:522 #: src/tables/sales/SalesOrderLineItemTable.tsx:370 msgid "Order Parts" @@ -4349,9 +4377,9 @@ msgstr "Vervanging toegevoegd" #: src/forms/BuildForms.tsx:333 #: src/forms/BuildForms.tsx:408 #: src/forms/BuildForms.tsx:685 -#: src/tables/build/BuildAllocatedStockTable.tsx:150 +#: src/tables/build/BuildAllocatedStockTable.tsx:147 #: src/tables/build/BuildOutputTable.tsx:582 -#: src/tables/part/PartTestResultTable.tsx:272 +#: src/tables/part/PartTestResultTable.tsx:280 msgid "Build Output" msgstr "Bouw Uitvoer" @@ -4362,22 +4390,22 @@ msgstr "" #: src/forms/BuildForms.tsx:336 #: src/forms/BuildForms.tsx:411 #: src/forms/BuildForms.tsx:475 -#: src/forms/PurchaseOrderForms.tsx:717 +#: src/forms/PurchaseOrderForms.tsx:769 #: src/forms/ReturnOrderForms.tsx:197 #: src/forms/ReturnOrderForms.tsx:244 #: src/forms/StockForms.tsx:712 #: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:87 -#: src/pages/build/BuildDetail.tsx:222 +#: src/pages/build/BuildDetail.tsx:223 #: src/pages/core/UserDetail.tsx:151 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:168 -#: src/pages/sales/ReturnOrderDetail.tsx:135 -#: src/pages/sales/SalesOrderDetail.tsx:125 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:169 +#: src/pages/sales/ReturnOrderDetail.tsx:136 +#: src/pages/sales/SalesOrderDetail.tsx:126 #: src/pages/stock/StockDetail.tsx:170 #: src/tables/Filter.tsx:274 #: src/tables/build/BuildOutputTable.tsx:404 #: src/tables/machine/MachineListTable.tsx:387 #: src/tables/part/PartPurchaseOrdersTable.tsx:38 -#: src/tables/part/PartTestResultTable.tsx:309 +#: src/tables/part/PartTestResultTable.tsx:317 #: src/tables/sales/ReturnOrderLineItemTable.tsx:138 #: src/tables/sales/ReturnOrderLineItemTable.tsx:176 #: src/tables/settings/CustomStateTable.tsx:79 @@ -4443,18 +4471,19 @@ msgid "Build outputs have been cancelled" msgstr "Productieorders zijn geannuleerd" #: src/forms/BuildForms.tsx:631 -#: src/pages/build/BuildDetail.tsx:207 -#: src/pages/company/ManufacturerPartDetail.tsx:85 -#: src/pages/company/SupplierPartDetail.tsx:96 +#: src/pages/build/BuildDetail.tsx:208 +#: src/pages/company/ManufacturerPartDetail.tsx:84 +#: src/pages/company/SupplierPartDetail.tsx:97 #: src/pages/part/PartDetail.tsx:453 #: src/pages/stock/StockDetail.tsx:153 #: src/tables/bom/BomTable.tsx:134 #: src/tables/bom/UsedInTable.tsx:40 -#: src/tables/build/BuildAllocatedStockTable.tsx:108 -#: src/tables/build/BuildLineTable.tsx:336 +#: src/tables/build/BuildAllocatedStockTable.tsx:105 +#: src/tables/build/BuildLineTable.tsx:337 #: src/tables/build/BuildOrderTable.tsx:79 #: src/tables/part/PartSalesAllocationsTable.tsx:61 #: src/tables/part/RelatedPartTable.tsx:73 +#: src/tables/purchasing/ManufacturerPartParametricTable.tsx:21 #: src/tables/purchasing/ManufacturerPartTable.tsx:69 #: src/tables/purchasing/SupplierPartTable.tsx:70 #: src/tables/sales/SalesOrderAllocationTable.tsx:135 @@ -4466,47 +4495,47 @@ msgstr "IPN" #: src/forms/BuildForms.tsx:632 #: src/forms/BuildForms.tsx:796 #: src/forms/BuildForms.tsx:897 -#: src/forms/SalesOrderForms.tsx:306 -#: src/tables/build/BuildAllocatedStockTable.tsx:139 -#: src/tables/build/BuildLineTable.tsx:182 +#: src/forms/SalesOrderForms.tsx:385 +#: src/tables/build/BuildAllocatedStockTable.tsx:136 +#: src/tables/build/BuildLineTable.tsx:183 #: src/tables/sales/SalesOrderLineItemTable.tsx:342 #: src/tables/stock/StockItemTable.tsx:338 msgid "Allocated" msgstr "Toegewezen" #: src/forms/BuildForms.tsx:667 -#: src/forms/SalesOrderForms.tsx:295 -#: src/pages/build/BuildDetail.tsx:108 -#: src/pages/build/BuildDetail.tsx:326 +#: src/forms/SalesOrderForms.tsx:374 +#: src/pages/build/BuildDetail.tsx:109 +#: src/pages/build/BuildDetail.tsx:327 msgid "Source Location" msgstr "Bron locatie" #: src/forms/BuildForms.tsx:668 -#: src/forms/SalesOrderForms.tsx:296 +#: src/forms/SalesOrderForms.tsx:375 msgid "Select the source location for the stock allocation" msgstr "Selecteer de bron locatie voor de voorraadtoewijzing" #: src/forms/BuildForms.tsx:700 -#: src/forms/SalesOrderForms.tsx:336 -#: src/tables/build/BuildLineTable.tsx:574 -#: src/tables/build/BuildLineTable.tsx:731 -#: src/tables/build/BuildLineTable.tsx:830 +#: src/forms/SalesOrderForms.tsx:415 +#: src/tables/build/BuildLineTable.tsx:575 +#: src/tables/build/BuildLineTable.tsx:738 +#: src/tables/build/BuildLineTable.tsx:837 #: src/tables/sales/SalesOrderLineItemTable.tsx:380 #: src/tables/sales/SalesOrderLineItemTable.tsx:406 msgid "Allocate Stock" msgstr "Voorraad toewijzen" #: src/forms/BuildForms.tsx:703 -#: src/forms/SalesOrderForms.tsx:341 +#: src/forms/SalesOrderForms.tsx:420 msgid "Stock items allocated" msgstr "Voorraad items toegewezen" #: src/forms/BuildForms.tsx:816 #: src/forms/BuildForms.tsx:917 -#: src/tables/build/BuildAllocatedStockTable.tsx:240 -#: src/tables/build/BuildAllocatedStockTable.tsx:272 -#: src/tables/build/BuildLineTable.tsx:741 -#: src/tables/build/BuildLineTable.tsx:864 +#: src/tables/build/BuildAllocatedStockTable.tsx:243 +#: src/tables/build/BuildAllocatedStockTable.tsx:279 +#: src/tables/build/BuildLineTable.tsx:748 +#: src/tables/build/BuildLineTable.tsx:871 msgid "Consume Stock" msgstr "Verbruikte voorraad" @@ -4521,21 +4550,21 @@ msgstr "" #~ msgstr "Stock items consumed" #: src/forms/BuildForms.tsx:853 -#: src/tables/build/BuildLineTable.tsx:514 +#: src/tables/build/BuildLineTable.tsx:515 #: src/tables/part/PartBuildAllocationsTable.tsx:101 msgid "Fully consumed" msgstr "Volledig verbruikt" #: src/forms/BuildForms.tsx:898 -#: src/tables/build/BuildLineTable.tsx:187 +#: src/tables/build/BuildLineTable.tsx:188 #: src/tables/stock/StockItemTable.tsx:367 msgid "Consumed" msgstr "Verbruikt" -#: src/forms/CommonForms.tsx:88 -#: src/forms/PurchaseOrderForms.tsx:125 +#: src/forms/CommonForms.tsx:92 +#: src/forms/PurchaseOrderForms.tsx:176 #: src/forms/ReturnOrderForms.tsx:138 -#: src/forms/SalesOrderForms.tsx:164 +#: src/forms/SalesOrderForms.tsx:185 msgid "Select project code for this line item" msgstr "" @@ -4543,16 +4572,16 @@ msgstr "" #~ msgid "Company updated" #~ msgstr "Company updated" -#: src/forms/PartForms.tsx:85 -#: src/forms/PartForms.tsx:207 -#: src/pages/part/CategoryDetail.tsx:124 +#: src/forms/PartForms.tsx:99 +#: src/forms/PartForms.tsx:228 +#: src/pages/part/CategoryDetail.tsx:127 #: src/pages/part/PartDetail.tsx:668 #: src/tables/part/PartCategoryTable.tsx:94 #: src/tables/part/PartTable.tsx:325 msgid "Subscribed" msgstr "Geabonneerd" -#: src/forms/PartForms.tsx:86 +#: src/forms/PartForms.tsx:100 msgid "Subscribe to notifications for this part" msgstr "Abonneren op meldingen voor dit onderdeel" @@ -4564,156 +4593,156 @@ msgstr "Abonneren op meldingen voor dit onderdeel" #~ msgid "Part updated" #~ msgstr "Part updated" -#: src/forms/PartForms.tsx:193 +#: src/forms/PartForms.tsx:214 msgid "Parent part category" msgstr "Bovenliggende onderdeel categorie" -#: src/forms/PartForms.tsx:208 +#: src/forms/PartForms.tsx:229 msgid "Subscribe to notifications for this category" msgstr "Abonneer je op meldingen voor deze categorie" -#: src/forms/PurchaseOrderForms.tsx:388 -msgid "Assign Batch Code and Serial Numbers" -msgstr "Batchcode en serienummers toewijzen" - -#: src/forms/PurchaseOrderForms.tsx:390 -msgid "Assign Batch Code" -msgstr "Batch code toewijzen" - -#: src/forms/PurchaseOrderForms.tsx:410 -msgid "Choose Location" -msgstr "Kies locatie" - -#: src/forms/PurchaseOrderForms.tsx:418 -msgid "Item Destination selected" -msgstr "Item bestemming geselecteerd" - #: src/forms/PurchaseOrderForms.tsx:421 #~ msgid "Assign Batch Code{0}" #~ msgstr "Assign Batch Code{0}" -#: src/forms/PurchaseOrderForms.tsx:428 -msgid "Part category default location selected" -msgstr "Standaardlocatie voor de subcategorie" +#: src/forms/PurchaseOrderForms.tsx:440 +msgid "Assign Batch Code and Serial Numbers" +msgstr "Batchcode en serienummers toewijzen" -#: src/forms/PurchaseOrderForms.tsx:438 -msgid "Received stock location selected" -msgstr "Ontvangen voorraadlocatie geselecteerd" +#: src/forms/PurchaseOrderForms.tsx:442 +msgid "Assign Batch Code" +msgstr "Batch code toewijzen" #: src/forms/PurchaseOrderForms.tsx:444 #: src/forms/StockForms.tsx:428 #~ msgid "Remove item from list" #~ msgstr "Remove item from list" -#: src/forms/PurchaseOrderForms.tsx:446 +#: src/forms/PurchaseOrderForms.tsx:462 +msgid "Choose Location" +msgstr "Kies locatie" + +#: src/forms/PurchaseOrderForms.tsx:470 +msgid "Item Destination selected" +msgstr "Item bestemming geselecteerd" + +#: src/forms/PurchaseOrderForms.tsx:480 +msgid "Part category default location selected" +msgstr "Standaardlocatie voor de subcategorie" + +#: src/forms/PurchaseOrderForms.tsx:490 +msgid "Received stock location selected" +msgstr "Ontvangen voorraadlocatie geselecteerd" + +#: src/forms/PurchaseOrderForms.tsx:498 msgid "Default location selected" msgstr "Standaard locatie geselecteerd" -#: src/forms/PurchaseOrderForms.tsx:507 +#: src/forms/PurchaseOrderForms.tsx:559 msgid "Set Location" msgstr "Locatie invoeren" -#: src/forms/PurchaseOrderForms.tsx:524 -msgid "Set Expiry Date" -msgstr "Stel vervaldatum in" - -#: src/forms/PurchaseOrderForms.tsx:532 -#: src/forms/StockForms.tsx:693 -msgid "Adjust Packaging" -msgstr "Verpakking aanpassen" - -#: src/forms/PurchaseOrderForms.tsx:540 -#: src/forms/StockForms.tsx:684 -#: src/hooks/UseStockAdjustActions.tsx:148 -msgid "Change Status" -msgstr "Status wijzigen" - -#: src/forms/PurchaseOrderForms.tsx:546 -msgid "Add Note" -msgstr "Opmerking toevoegen" - #: src/forms/PurchaseOrderForms.tsx:566 #~ msgid "Serial numbers" #~ msgstr "Serial numbers" +#: src/forms/PurchaseOrderForms.tsx:576 +msgid "Set Expiry Date" +msgstr "Stel vervaldatum in" + #: src/forms/PurchaseOrderForms.tsx:582 #~ msgid "Store at line item destination" #~ msgstr "Store at line item destination" -#: src/forms/PurchaseOrderForms.tsx:610 -msgid "Store at default location" -msgstr "Op standaardlocatie opslaan" +#: src/forms/PurchaseOrderForms.tsx:584 +#: src/forms/StockForms.tsx:693 +msgid "Adjust Packaging" +msgstr "Verpakking aanpassen" -#: src/forms/PurchaseOrderForms.tsx:625 -msgid "Store at line item destination " -msgstr "Bewaar op de bestemming van het item " +#: src/forms/PurchaseOrderForms.tsx:592 +#: src/forms/StockForms.tsx:684 +#: src/hooks/UseStockAdjustActions.tsx:148 +msgid "Change Status" +msgstr "Status wijzigen" -#: src/forms/PurchaseOrderForms.tsx:637 -msgid "Store with already received stock" -msgstr "Winkel met reeds ontvangen voorraad" +#: src/forms/PurchaseOrderForms.tsx:598 +msgid "Add Note" +msgstr "Opmerking toevoegen" #: src/forms/PurchaseOrderForms.tsx:658 #~ msgid "Receive line items" #~ msgstr "Receive line items" -#: src/forms/PurchaseOrderForms.tsx:661 -#: src/pages/build/BuildDetail.tsx:340 +#: src/forms/PurchaseOrderForms.tsx:662 +msgid "Store at default location" +msgstr "Op standaardlocatie opslaan" + +#: src/forms/PurchaseOrderForms.tsx:677 +msgid "Store at line item destination " +msgstr "Bewaar op de bestemming van het item " + +#: src/forms/PurchaseOrderForms.tsx:689 +msgid "Store with already received stock" +msgstr "Winkel met reeds ontvangen voorraad" + +#: src/forms/PurchaseOrderForms.tsx:713 +#: src/pages/build/BuildDetail.tsx:341 #: src/pages/stock/StockDetail.tsx:280 #: src/pages/stock/StockDetail.tsx:952 #: src/tables/Filter.tsx:83 -#: src/tables/build/BuildAllocatedStockTable.tsx:128 +#: src/tables/build/BuildAllocatedStockTable.tsx:125 #: src/tables/build/BuildOutputTable.tsx:112 -#: src/tables/part/PartTestResultTable.tsx:260 -#: src/tables/part/PartTestResultTable.tsx:281 +#: src/tables/part/PartTestResultTable.tsx:268 +#: src/tables/part/PartTestResultTable.tsx:289 #: src/tables/sales/SalesOrderAllocationTable.tsx:149 msgid "Batch Code" msgstr "Batch code" -#: src/forms/PurchaseOrderForms.tsx:662 +#: src/forms/PurchaseOrderForms.tsx:714 msgid "Enter batch code for received items" msgstr "Voer batch code in voor ontvangen items" -#: src/forms/PurchaseOrderForms.tsx:675 +#: src/forms/PurchaseOrderForms.tsx:727 #: src/forms/StockForms.tsx:218 msgid "Serial Numbers" msgstr "Serienummers" -#: src/forms/PurchaseOrderForms.tsx:676 +#: src/forms/PurchaseOrderForms.tsx:728 msgid "Enter serial numbers for received items" msgstr "Voer serienummers in voor ontvangen items" -#: src/forms/PurchaseOrderForms.tsx:690 +#: src/forms/PurchaseOrderForms.tsx:742 #: src/pages/stock/StockDetail.tsx:382 #: src/tables/stock/StockItemTable.tsx:294 msgid "Expiry Date" msgstr "Vervaldatum" -#: src/forms/PurchaseOrderForms.tsx:691 +#: src/forms/PurchaseOrderForms.tsx:743 msgid "Enter an expiry date for received items" msgstr "Voer een vervaldatum in voor ontvangen items" -#: src/forms/PurchaseOrderForms.tsx:703 +#: src/forms/PurchaseOrderForms.tsx:755 #: src/forms/StockForms.tsx:728 -#: src/pages/company/SupplierPartDetail.tsx:172 -#: src/pages/company/SupplierPartDetail.tsx:236 +#: src/pages/company/SupplierPartDetail.tsx:173 +#: src/pages/company/SupplierPartDetail.tsx:237 #: src/pages/stock/StockDetail.tsx:419 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:227 msgid "Packaging" msgstr "Verpakking" -#: src/forms/PurchaseOrderForms.tsx:727 -#: src/pages/company/SupplierPartDetail.tsx:120 +#: src/forms/PurchaseOrderForms.tsx:779 +#: src/pages/company/SupplierPartDetail.tsx:121 #: src/tables/ColumnRenderers.tsx:332 msgid "Note" msgstr "Opmerking" -#: src/forms/PurchaseOrderForms.tsx:799 -#: src/pages/company/SupplierPartDetail.tsx:138 +#: src/forms/PurchaseOrderForms.tsx:851 +#: src/pages/company/SupplierPartDetail.tsx:139 #: src/tables/purchasing/SupplierPriceBreakTable.tsx:49 msgid "SKU" msgstr "SKU" -#: src/forms/PurchaseOrderForms.tsx:800 +#: src/forms/PurchaseOrderForms.tsx:852 #: src/tables/part/PartPurchaseOrdersTable.tsx:127 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:213 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:283 @@ -4721,11 +4750,11 @@ msgstr "SKU" msgid "Received" msgstr "Ontvangen" -#: src/forms/PurchaseOrderForms.tsx:817 +#: src/forms/PurchaseOrderForms.tsx:869 msgid "Receive Line Items" msgstr "Ontvang regelitems" -#: src/forms/PurchaseOrderForms.tsx:823 +#: src/forms/PurchaseOrderForms.tsx:875 msgid "Items received" msgstr "Ontvangen items" @@ -4737,7 +4766,35 @@ msgstr "Ontvang regelitems" msgid "Item received into stock" msgstr "Item ontvangen in voorraad" -#: src/forms/SalesOrderForms.tsx:401 +#: src/forms/SalesOrderForms.tsx:208 +#: src/forms/SalesOrderForms.tsx:210 +#: src/tables/sales/SalesOrderShipmentTable.tsx:215 +msgid "Check Shipment" +msgstr "" + +#: src/forms/SalesOrderForms.tsx:211 +msgid "Marking the shipment as checked indicates that you have verified that all items included in this shipment are correct" +msgstr "" + +#: src/forms/SalesOrderForms.tsx:221 +msgid "Shipment marked as checked" +msgstr "" + +#: src/forms/SalesOrderForms.tsx:236 +#: src/forms/SalesOrderForms.tsx:238 +#: src/tables/sales/SalesOrderShipmentTable.tsx:228 +msgid "Uncheck Shipment" +msgstr "" + +#: src/forms/SalesOrderForms.tsx:239 +msgid "Marking the shipment as unchecked indicates that the shipment requires further verification" +msgstr "" + +#: src/forms/SalesOrderForms.tsx:249 +msgid "Shipment marked as unchecked" +msgstr "" + +#: src/forms/SalesOrderForms.tsx:480 msgid "Leave blank to use the order address" msgstr "" @@ -4792,150 +4849,150 @@ msgstr "Verplaatsen" msgid "Return" msgstr "Terug" -#: src/forms/StockForms.tsx:963 +#: src/forms/StockForms.tsx:979 #: src/pages/Index/Scan.tsx:182 msgid "Count" msgstr "Aantal" -#: src/forms/StockForms.tsx:1246 +#: src/forms/StockForms.tsx:1262 #: src/hooks/UseStockAdjustActions.tsx:108 msgid "Add Stock" msgstr "Voorraad toevoegen" -#: src/forms/StockForms.tsx:1247 +#: src/forms/StockForms.tsx:1263 msgid "Stock added" msgstr "Voorraad toegevoegd" -#: src/forms/StockForms.tsx:1250 +#: src/forms/StockForms.tsx:1266 msgid "Increase the quantity of the selected stock items by a given amount." msgstr "Verhoog de hoeveelheid van de geselecteerde voorraadartikelen met een bepaald bedrag." -#: src/forms/StockForms.tsx:1261 +#: src/forms/StockForms.tsx:1277 #: src/hooks/UseStockAdjustActions.tsx:118 msgid "Remove Stock" msgstr "Voorraad verwijderen" -#: src/forms/StockForms.tsx:1262 +#: src/forms/StockForms.tsx:1278 msgid "Stock removed" msgstr "Voorraad verwijderd" -#: src/forms/StockForms.tsx:1265 +#: src/forms/StockForms.tsx:1281 msgid "Decrease the quantity of the selected stock items by a given amount." msgstr "Verlaag de hoeveelheid van de geselecteerde voorraadartikelen met een bepaald bedrag." -#: src/forms/StockForms.tsx:1276 +#: src/forms/StockForms.tsx:1292 #: src/hooks/UseStockAdjustActions.tsx:128 msgid "Transfer Stock" msgstr "Voorraad verplaatsen " -#: src/forms/StockForms.tsx:1277 +#: src/forms/StockForms.tsx:1293 msgid "Stock transferred" msgstr "Voorraadartikel verplaatst" -#: src/forms/StockForms.tsx:1280 +#: src/forms/StockForms.tsx:1296 msgid "Transfer selected items to the specified location." msgstr "Verplaats de geselecteerde items naar de opgegeven locatie." -#: src/forms/StockForms.tsx:1291 +#: src/forms/StockForms.tsx:1307 #: src/hooks/UseStockAdjustActions.tsx:168 msgid "Return Stock" msgstr "Terug naar voorraad" -#: src/forms/StockForms.tsx:1292 +#: src/forms/StockForms.tsx:1308 msgid "Stock returned" msgstr "Voorraad teruggestuurd" -#: src/forms/StockForms.tsx:1295 +#: src/forms/StockForms.tsx:1311 msgid "Return selected items into stock, to the specified location." msgstr "Retourneer geselecteerde items naar voorraad, naar de opgegeven locatie." -#: src/forms/StockForms.tsx:1306 +#: src/forms/StockForms.tsx:1322 #: src/hooks/UseStockAdjustActions.tsx:98 msgid "Count Stock" msgstr "Tel voorraad" -#: src/forms/StockForms.tsx:1307 +#: src/forms/StockForms.tsx:1323 msgid "Stock counted" msgstr "Voorraad geteld" -#: src/forms/StockForms.tsx:1310 +#: src/forms/StockForms.tsx:1326 msgid "Count the selected stock items, and adjust the quantity accordingly." msgstr "Tel de geselecteerde voorraaditems, en pas de hoeveelheid overeenkomstig aan." -#: src/forms/StockForms.tsx:1321 +#: src/forms/StockForms.tsx:1337 msgid "Change Stock Status" msgstr "Wijzig voorraad status" -#: src/forms/StockForms.tsx:1322 +#: src/forms/StockForms.tsx:1338 msgid "Stock status changed" msgstr "Voorraad status gewijzigd" -#: src/forms/StockForms.tsx:1325 +#: src/forms/StockForms.tsx:1341 msgid "Change the status of the selected stock items." msgstr "Verander de status van de geselecteerde voorraaditems." -#: src/forms/StockForms.tsx:1336 +#: src/forms/StockForms.tsx:1352 #: src/hooks/UseStockAdjustActions.tsx:138 msgid "Merge Stock" msgstr "Voorraad samenvoegen" -#: src/forms/StockForms.tsx:1337 +#: src/forms/StockForms.tsx:1353 msgid "Stock merged" msgstr "Voorraad samengevoegd" -#: src/forms/StockForms.tsx:1339 +#: src/forms/StockForms.tsx:1355 msgid "Merge Stock Items" msgstr "Voorraad items samenvoegen" -#: src/forms/StockForms.tsx:1341 +#: src/forms/StockForms.tsx:1357 msgid "Merge operation cannot be reversed" msgstr "Samenvoeg bewerking kan niet worden teruggedraaid" -#: src/forms/StockForms.tsx:1342 +#: src/forms/StockForms.tsx:1358 msgid "Tracking information may be lost when merging items" msgstr "Tracking informatie kan verloren gaan tijdens het samenvoegen van items" -#: src/forms/StockForms.tsx:1343 +#: src/forms/StockForms.tsx:1359 msgid "Supplier information may be lost when merging items" msgstr "De informatie van de leverancier kan verloren gaan bij het samenvoegen van items" -#: src/forms/StockForms.tsx:1361 +#: src/forms/StockForms.tsx:1377 msgid "Assign Stock to Customer" msgstr "Voorraad toewijzen aan klant" -#: src/forms/StockForms.tsx:1362 +#: src/forms/StockForms.tsx:1378 msgid "Stock assigned to customer" msgstr "Voorraad toegewezen aan klant" -#: src/forms/StockForms.tsx:1372 +#: src/forms/StockForms.tsx:1388 msgid "Delete Stock Items" msgstr "Voorraad items verwijderen" -#: src/forms/StockForms.tsx:1373 +#: src/forms/StockForms.tsx:1389 msgid "Stock deleted" msgstr "Voorraad verwijderd" -#: src/forms/StockForms.tsx:1376 +#: src/forms/StockForms.tsx:1392 msgid "This operation will permanently delete the selected stock items." msgstr "Deze bewerking zal de geselecteerde voorraaditems permanent verwijderen." -#: src/forms/StockForms.tsx:1385 +#: src/forms/StockForms.tsx:1401 msgid "Parent stock location" msgstr "Bovenliggende voorraad locatie" -#: src/forms/StockForms.tsx:1512 +#: src/forms/StockForms.tsx:1528 msgid "Find Serial Number" msgstr "Zoek serienummer" -#: src/forms/StockForms.tsx:1523 +#: src/forms/StockForms.tsx:1539 msgid "No matching items" msgstr "Geen overeenkomende items" -#: src/forms/StockForms.tsx:1529 +#: src/forms/StockForms.tsx:1545 msgid "Multiple matching items" msgstr "Meerdere overeenkomende items" -#: src/forms/StockForms.tsx:1538 +#: src/forms/StockForms.tsx:1554 msgid "Invalid response from server" msgstr "Ongeldige reactie van server" @@ -4953,7 +5010,6 @@ msgstr "Lijst van items om uit te kiezen" #: src/tables/FilterSelectDrawer.tsx:137 #: src/tables/FilterSelectDrawer.tsx:149 #: src/tables/part/PartTestResultTable.tsx:206 -#: src/tables/purchasing/ManufacturerPartParameterTable.tsx:42 #: src/tables/stock/StockItemTestResultTable.tsx:207 msgid "Value" msgstr "Invoer" @@ -5244,7 +5300,7 @@ msgid "Delete selected stock items" msgstr "Geselecteerde voorraadartikelen verwijderen" #: src/hooks/UseStockAdjustActions.tsx:205 -#: src/pages/part/PartDetail.tsx:1137 +#: src/pages/part/PartDetail.tsx:1158 msgid "Stock Actions" msgstr "Voorraad acties" @@ -5932,6 +5988,9 @@ msgstr "" #: src/pages/Index/Settings/AccountSettings/MFASettings.tsx:310 #: src/pages/Index/Settings/AccountSettings/MFASettings.tsx:401 +#: src/tables/build/BuildAllocatedStockTable.tsx:181 +#: src/tables/build/BuildLineTable.tsx:668 +#: src/tables/sales/SalesOrderAllocationTable.tsx:220 msgid "Confirm Removal" msgstr "" @@ -6394,30 +6453,34 @@ msgid "Email Messages" msgstr "E-mail berichten" #: src/pages/Index/Settings/AdminCenter/HomePanel.tsx:22 -msgid "Active Alerts" -msgstr "" +#~ msgid "Active Alerts" +#~ msgstr "Active Alerts" #: src/pages/Index/Settings/AdminCenter/HomePanel.tsx:27 -msgid "Inactive Alerts" +#~ msgid "Inactive Alerts" +#~ msgstr "Inactive Alerts" + +#: src/pages/Index/Settings/AdminCenter/HomePanel.tsx:36 +msgid "System Status" msgstr "" -#: src/pages/Index/Settings/AdminCenter/HomePanel.tsx:38 +#: src/pages/Index/Settings/AdminCenter/HomePanel.tsx:47 msgid "Admin Center Information" msgstr "" -#: src/pages/Index/Settings/AdminCenter/HomePanel.tsx:44 +#: src/pages/Index/Settings/AdminCenter/HomePanel.tsx:53 msgid "The home panel (and the whole Admin Center) is a new feature starting with the new UI and was previously (before 1.0) not available." msgstr "" -#: src/pages/Index/Settings/AdminCenter/HomePanel.tsx:51 +#: src/pages/Index/Settings/AdminCenter/HomePanel.tsx:60 msgid "The admin center provides a centralized location for all administration functionality and is meant to replace all interaction with the (django) backend admin interface." msgstr "" -#: src/pages/Index/Settings/AdminCenter/HomePanel.tsx:58 +#: src/pages/Index/Settings/AdminCenter/HomePanel.tsx:67 msgid "Please open feature requests (after checking the tracker) for any existing backend admin functionality you are missing in this UI. The backend admin interface should be used carefully and seldom." msgstr "" -#: src/pages/Index/Settings/AdminCenter/HomePanel.tsx:76 +#: src/pages/Index/Settings/AdminCenter/HomePanel.tsx:85 msgid "Quick Actions" msgstr "" @@ -6476,11 +6539,11 @@ msgstr "Aangepaste eenheden" #: src/pages/Index/Settings/AdminCenter/Index.tsx:195 #: src/pages/part/CategoryDetail.tsx:313 -msgid "Part Parameters" -msgstr "Onderdeel parameters" +#~ msgid "Part Parameters" +#~ msgstr "Part Parameters" #: src/pages/Index/Settings/AdminCenter/Index.tsx:202 -#: src/pages/part/CategoryDetail.tsx:306 +#: src/pages/part/CategoryDetail.tsx:329 msgid "Category Parameters" msgstr "Categorie parameters" @@ -6494,7 +6557,7 @@ msgstr "Locatie soorten" #: src/pages/Index/Settings/AdminCenter/Index.tsx:235 #: src/pages/Index/Settings/AdminCenter/MachineManagementPanel.tsx:52 -#: src/tables/machine/MachineTypeTable.tsx:325 +#: src/tables/machine/MachineTypeTable.tsx:323 msgid "Machines" msgstr "Machines" @@ -6507,8 +6570,8 @@ msgid "Data Management" msgstr "Gegevens beheer" #: src/pages/Index/Settings/AdminCenter/Index.tsx:270 -#: src/pages/Index/Settings/SystemSettings.tsx:175 -#: src/pages/Index/Settings/UserSettings.tsx:118 +#: src/pages/Index/Settings/SystemSettings.tsx:176 +#: src/pages/Index/Settings/UserSettings.tsx:119 msgid "Reporting" msgstr "Rapporteren" @@ -6709,11 +6772,11 @@ msgstr "Tokens" msgid "The settings below are specific to each available plugin" msgstr "De instellingen hieronder zijn specifiek voor elke beschikbare plug-in" -#: src/pages/Index/Settings/SystemSettings.tsx:77 +#: src/pages/Index/Settings/SystemSettings.tsx:78 msgid "Authentication" msgstr "Authenticatie" -#: src/pages/Index/Settings/SystemSettings.tsx:103 +#: src/pages/Index/Settings/SystemSettings.tsx:104 msgid "Barcodes" msgstr "Barcodes" @@ -6725,12 +6788,12 @@ msgstr "Barcodes" #~ msgid "This panel is a placeholder." #~ msgstr "This panel is a placeholder." -#: src/pages/Index/Settings/SystemSettings.tsx:127 -#: src/pages/Index/Settings/UserSettings.tsx:112 +#: src/pages/Index/Settings/SystemSettings.tsx:128 +#: src/pages/Index/Settings/UserSettings.tsx:113 msgid "The settings below are specific to each available notification method" msgstr "De onderstaande instellingen zijn specifiek voor elke beschikbare notificatie methode" -#: src/pages/Index/Settings/SystemSettings.tsx:133 +#: src/pages/Index/Settings/SystemSettings.tsx:134 msgid "Pricing" msgstr "Prijzen" @@ -6738,7 +6801,7 @@ msgstr "Prijzen" #~ msgid "Exchange Rates" #~ msgstr "Exchange Rates" -#: src/pages/Index/Settings/SystemSettings.tsx:169 +#: src/pages/Index/Settings/SystemSettings.tsx:170 msgid "Labels" msgstr "Labels" @@ -6790,15 +6853,15 @@ msgstr "Markeren als ongelezen" #~ msgid "Delete notifications" #~ msgstr "Delete notifications" -#: src/pages/build/BuildDetail.tsx:69 +#: src/pages/build/BuildDetail.tsx:70 msgid "No Required Items" msgstr "Geen vereiste items" -#: src/pages/build/BuildDetail.tsx:71 +#: src/pages/build/BuildDetail.tsx:72 msgid "This build order does not have any required items." msgstr "Deze bouwopdracht heeft geen vereiste items." -#: src/pages/build/BuildDetail.tsx:72 +#: src/pages/build/BuildDetail.tsx:73 msgid "The assembled part may not have a Bill of Materials (BOM) defined, or the BOM is empty." msgstr "Het geassembleerde onderdeel heeft mogelijk geen Materiaalbon (BOM) gedefinieerd, of de BOM is leeg." @@ -6826,7 +6889,7 @@ msgstr "Het geassembleerde onderdeel heeft mogelijk geen Materiaalbon (BOM) gede #~ msgid "Build Order updated" #~ msgstr "Build Order updated" -#: src/pages/build/BuildDetail.tsx:215 +#: src/pages/build/BuildDetail.tsx:216 #: src/pages/part/PartDetail.tsx:480 #: src/pages/stock/StockDetail.tsx:161 #: src/tables/bom/UsedInTable.tsx:44 @@ -6843,10 +6906,10 @@ msgstr "Revisie" #~ msgid "Duplicate build order" #~ msgstr "Duplicate build order" -#: src/pages/build/BuildDetail.tsx:228 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:174 -#: src/pages/sales/ReturnOrderDetail.tsx:141 -#: src/pages/sales/SalesOrderDetail.tsx:131 +#: src/pages/build/BuildDetail.tsx:229 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:175 +#: src/pages/sales/ReturnOrderDetail.tsx:142 +#: src/pages/sales/SalesOrderDetail.tsx:132 #: src/pages/stock/StockDetail.tsx:176 msgid "Custom Status" msgstr "Aangepaste status" @@ -6855,9 +6918,9 @@ msgstr "Aangepaste status" #~ msgid "Delete build order" #~ msgstr "Delete build order" -#: src/pages/build/BuildDetail.tsx:237 -#: src/pages/build/BuildDetail.tsx:723 -#: src/pages/build/BuildIndex.tsx:28 +#: src/pages/build/BuildDetail.tsx:238 +#: src/pages/build/BuildDetail.tsx:728 +#: src/pages/build/BuildIndex.tsx:34 #: src/pages/stock/LocationDetail.tsx:140 #: src/tables/build/BuildOrderTable.tsx:123 #: src/tables/build/BuildOrderTable.tsx:183 @@ -6865,57 +6928,57 @@ msgstr "Aangepaste status" msgid "External" msgstr "Extern" -#: src/pages/build/BuildDetail.tsx:244 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:141 -#: src/pages/sales/ReturnOrderDetail.tsx:108 -#: src/pages/sales/SalesOrderDetail.tsx:98 +#: src/pages/build/BuildDetail.tsx:245 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:142 +#: src/pages/sales/ReturnOrderDetail.tsx:109 +#: src/pages/sales/SalesOrderDetail.tsx:99 #: src/tables/ColumnRenderers.tsx:321 -#: src/tables/build/BuildAllocatedStockTable.tsx:115 -#: src/tables/build/BuildLineTable.tsx:352 +#: src/tables/build/BuildAllocatedStockTable.tsx:112 +#: src/tables/build/BuildLineTable.tsx:353 msgid "Reference" msgstr "Verwijzing" -#: src/pages/build/BuildDetail.tsx:258 +#: src/pages/build/BuildDetail.tsx:259 msgid "Parent Build" msgstr "Bovenliggende Build" -#: src/pages/build/BuildDetail.tsx:269 +#: src/pages/build/BuildDetail.tsx:270 msgid "Build Quantity" msgstr "Productiehoeveelheid" -#: src/pages/build/BuildDetail.tsx:275 +#: src/pages/build/BuildDetail.tsx:276 #: src/pages/part/PartDetail.tsx:598 #: src/tables/bom/BomTable.tsx:365 #: src/tables/bom/BomTable.tsx:407 msgid "Can Build" msgstr "Kan bouwen" -#: src/pages/build/BuildDetail.tsx:284 -#: src/pages/build/BuildDetail.tsx:474 +#: src/pages/build/BuildDetail.tsx:285 +#: src/pages/build/BuildDetail.tsx:475 msgid "Completed Outputs" msgstr "Afgeronde uitvoer" -#: src/pages/build/BuildDetail.tsx:301 +#: src/pages/build/BuildDetail.tsx:302 #: src/tables/Filter.tsx:381 #: src/tables/build/BuildOrderTable.tsx:143 msgid "Issued By" msgstr "Uitgegeven door" -#: src/pages/build/BuildDetail.tsx:309 +#: src/pages/build/BuildDetail.tsx:310 #: src/pages/part/PartDetail.tsx:691 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:261 -#: src/pages/sales/ReturnOrderDetail.tsx:239 -#: src/pages/sales/SalesOrderDetail.tsx:232 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:262 +#: src/pages/sales/ReturnOrderDetail.tsx:240 +#: src/pages/sales/SalesOrderDetail.tsx:233 #: src/tables/ColumnRenderers.tsx:464 #: src/tables/Filter.tsx:319 msgid "Responsible" msgstr "Verantwoordelijk" -#: src/pages/build/BuildDetail.tsx:327 +#: src/pages/build/BuildDetail.tsx:328 msgid "Any location" msgstr "Elke locatie" -#: src/pages/build/BuildDetail.tsx:334 +#: src/pages/build/BuildDetail.tsx:335 msgid "Destination Location" msgstr "Doel Locatie" @@ -6924,24 +6987,24 @@ msgstr "Doel Locatie" #~ msgid "Test Statistics" #~ msgstr "Test Statistics" -#: src/pages/build/BuildDetail.tsx:350 +#: src/pages/build/BuildDetail.tsx:351 #: src/tables/settings/ApiTokenTable.tsx:97 #: src/tables/settings/PendingTasksTable.tsx:41 msgid "Created" msgstr "Aangemaakt" -#: src/pages/build/BuildDetail.tsx:358 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:286 -#: src/pages/sales/ReturnOrderDetail.tsx:265 -#: src/pages/sales/SalesOrderDetail.tsx:257 +#: src/pages/build/BuildDetail.tsx:359 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:287 +#: src/pages/sales/ReturnOrderDetail.tsx:266 +#: src/pages/sales/SalesOrderDetail.tsx:258 #: src/tables/ColumnRenderers.tsx:486 msgid "Start Date" msgstr "Start datum" -#: src/pages/build/BuildDetail.tsx:366 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:294 -#: src/pages/sales/ReturnOrderDetail.tsx:273 -#: src/pages/sales/SalesOrderDetail.tsx:265 +#: src/pages/build/BuildDetail.tsx:367 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:295 +#: src/pages/sales/ReturnOrderDetail.tsx:274 +#: src/pages/sales/SalesOrderDetail.tsx:266 #: src/tables/ColumnRenderers.tsx:494 #: src/tables/part/PartPurchaseOrdersTable.tsx:101 #: src/tables/sales/ReturnOrderLineItemTable.tsx:154 @@ -6954,185 +7017,185 @@ msgstr "" #~ msgstr "Reporting Actions" #: src/pages/build/BuildDetail.tsx:374 +#~ msgid "Print build report" +#~ msgstr "Print build report" + +#: src/pages/build/BuildDetail.tsx:375 #: src/tables/build/BuildOrderTable.tsx:93 #: src/tables/sales/SalesOrderLineItemTable.tsx:347 msgid "Completed" msgstr "Compleet" -#: src/pages/build/BuildDetail.tsx:374 -#~ msgid "Print build report" -#~ msgstr "Print build report" - -#: src/pages/build/BuildDetail.tsx:410 +#: src/pages/build/BuildDetail.tsx:411 msgid "Build Details" msgstr "Bouw details" -#: src/pages/build/BuildDetail.tsx:416 +#: src/pages/build/BuildDetail.tsx:417 msgid "Required Parts" msgstr "Vereiste onderdelen" -#: src/pages/build/BuildDetail.tsx:428 -#: src/pages/sales/SalesOrderDetail.tsx:407 -#: src/pages/sales/SalesOrderShipmentDetail.tsx:261 +#: src/pages/build/BuildDetail.tsx:429 +#: src/pages/sales/SalesOrderDetail.tsx:408 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:259 #: src/tables/part/PartSalesAllocationsTable.tsx:73 msgid "Allocated Stock" msgstr "Toegewezen voorraad" -#: src/pages/build/BuildDetail.tsx:444 +#: src/pages/build/BuildDetail.tsx:445 msgid "Consumed Stock" msgstr "Verbruikte voorraad" -#: src/pages/build/BuildDetail.tsx:461 +#: src/pages/build/BuildDetail.tsx:462 msgid "Incomplete Outputs" msgstr "Onvolledige uitvoer" -#: src/pages/build/BuildDetail.tsx:489 +#: src/pages/build/BuildDetail.tsx:490 msgid "External Orders" msgstr "Externe bestellingen" -#: src/pages/build/BuildDetail.tsx:503 +#: src/pages/build/BuildDetail.tsx:504 msgid "Child Build Orders" msgstr "Print bouw order" -#: src/pages/build/BuildDetail.tsx:513 -#: src/pages/part/PartDetail.tsx:937 +#: src/pages/build/BuildDetail.tsx:514 +#: src/pages/part/PartDetail.tsx:926 #: src/pages/stock/StockDetail.tsx:587 #: src/tables/build/BuildOutputTable.tsx:654 #: src/tables/stock/StockItemTestResultTable.tsx:173 msgid "Test Results" msgstr "Test resultaten" -#: src/pages/build/BuildDetail.tsx:550 +#: src/pages/build/BuildDetail.tsx:555 msgid "Edit Build Order" msgstr "Bewerk bouwopdracht" -#: src/pages/build/BuildDetail.tsx:572 +#: src/pages/build/BuildDetail.tsx:577 #: src/tables/build/BuildOrderTable.tsx:207 #: src/tables/build/BuildOrderTable.tsx:223 msgid "Add Build Order" msgstr "Voeg bouwopdracht toe" -#: src/pages/build/BuildDetail.tsx:582 +#: src/pages/build/BuildDetail.tsx:587 msgid "Cancel Build Order" msgstr "Annuleer bouworder" -#: src/pages/build/BuildDetail.tsx:584 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:416 -#: src/pages/sales/ReturnOrderDetail.tsx:427 -#: src/pages/sales/SalesOrderDetail.tsx:454 +#: src/pages/build/BuildDetail.tsx:589 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:421 +#: src/pages/sales/ReturnOrderDetail.tsx:432 +#: src/pages/sales/SalesOrderDetail.tsx:459 msgid "Order cancelled" msgstr "" -#: src/pages/build/BuildDetail.tsx:585 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:415 -#: src/pages/sales/ReturnOrderDetail.tsx:426 -#: src/pages/sales/SalesOrderDetail.tsx:453 +#: src/pages/build/BuildDetail.tsx:590 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:420 +#: src/pages/sales/ReturnOrderDetail.tsx:431 +#: src/pages/sales/SalesOrderDetail.tsx:458 msgid "Cancel this order" msgstr "Deze order annuleren" -#: src/pages/build/BuildDetail.tsx:594 +#: src/pages/build/BuildDetail.tsx:599 msgid "Hold Build Order" msgstr "Houdt bouwopdracht" -#: src/pages/build/BuildDetail.tsx:596 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:423 -#: src/pages/sales/ReturnOrderDetail.tsx:434 -#: src/pages/sales/SalesOrderDetail.tsx:461 +#: src/pages/build/BuildDetail.tsx:601 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:428 +#: src/pages/sales/ReturnOrderDetail.tsx:439 +#: src/pages/sales/SalesOrderDetail.tsx:466 msgid "Place this order on hold" msgstr "Plaats deze bestelling in de wacht" -#: src/pages/build/BuildDetail.tsx:597 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:424 -#: src/pages/sales/ReturnOrderDetail.tsx:435 -#: src/pages/sales/SalesOrderDetail.tsx:462 +#: src/pages/build/BuildDetail.tsx:602 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:429 +#: src/pages/sales/ReturnOrderDetail.tsx:440 +#: src/pages/sales/SalesOrderDetail.tsx:467 msgid "Order placed on hold" msgstr "Bestelling geplaatst in de wacht" -#: src/pages/build/BuildDetail.tsx:602 +#: src/pages/build/BuildDetail.tsx:607 msgid "Issue Build Order" msgstr "Probleem bouwopdracht" -#: src/pages/build/BuildDetail.tsx:604 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:407 -#: src/pages/sales/ReturnOrderDetail.tsx:418 -#: src/pages/sales/SalesOrderDetail.tsx:445 +#: src/pages/build/BuildDetail.tsx:609 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:412 +#: src/pages/sales/ReturnOrderDetail.tsx:423 +#: src/pages/sales/SalesOrderDetail.tsx:450 msgid "Issue this order" msgstr "Geef deze bestelling uit" -#: src/pages/build/BuildDetail.tsx:605 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:408 -#: src/pages/sales/ReturnOrderDetail.tsx:419 -#: src/pages/sales/SalesOrderDetail.tsx:446 +#: src/pages/build/BuildDetail.tsx:610 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:413 +#: src/pages/sales/ReturnOrderDetail.tsx:424 +#: src/pages/sales/SalesOrderDetail.tsx:451 msgid "Order issued" msgstr "Order uitgegeven" -#: src/pages/build/BuildDetail.tsx:624 +#: src/pages/build/BuildDetail.tsx:629 msgid "Complete Build Order" msgstr "Voltooi Bouw Opdracht" -#: src/pages/build/BuildDetail.tsx:630 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:436 -#: src/pages/sales/ReturnOrderDetail.tsx:442 -#: src/pages/sales/SalesOrderDetail.tsx:480 +#: src/pages/build/BuildDetail.tsx:635 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:441 +#: src/pages/sales/ReturnOrderDetail.tsx:447 +#: src/pages/sales/SalesOrderDetail.tsx:485 msgid "Mark this order as complete" msgstr "Deze bestelling als voltooid markeren" -#: src/pages/build/BuildDetail.tsx:633 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:430 -#: src/pages/sales/ReturnOrderDetail.tsx:443 -#: src/pages/sales/SalesOrderDetail.tsx:481 +#: src/pages/build/BuildDetail.tsx:638 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:435 +#: src/pages/sales/ReturnOrderDetail.tsx:448 +#: src/pages/sales/SalesOrderDetail.tsx:486 msgid "Order completed" msgstr "Bestelling voltooid" -#: src/pages/build/BuildDetail.tsx:660 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:459 -#: src/pages/sales/ReturnOrderDetail.tsx:470 -#: src/pages/sales/SalesOrderDetail.tsx:516 +#: src/pages/build/BuildDetail.tsx:665 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:464 +#: src/pages/sales/ReturnOrderDetail.tsx:475 +#: src/pages/sales/SalesOrderDetail.tsx:521 msgid "Issue Order" msgstr "Issue Order" -#: src/pages/build/BuildDetail.tsx:667 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:466 -#: src/pages/sales/ReturnOrderDetail.tsx:477 -#: src/pages/sales/SalesOrderDetail.tsx:530 +#: src/pages/build/BuildDetail.tsx:672 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:471 +#: src/pages/sales/ReturnOrderDetail.tsx:482 +#: src/pages/sales/SalesOrderDetail.tsx:535 msgid "Complete Order" msgstr "Bestelling voltooien" -#: src/pages/build/BuildDetail.tsx:686 +#: src/pages/build/BuildDetail.tsx:691 msgid "Build Order Actions" msgstr "Bouw order acties" -#: src/pages/build/BuildDetail.tsx:691 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:489 -#: src/pages/sales/ReturnOrderDetail.tsx:500 -#: src/pages/sales/SalesOrderDetail.tsx:554 +#: src/pages/build/BuildDetail.tsx:696 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:494 +#: src/pages/sales/ReturnOrderDetail.tsx:505 +#: src/pages/sales/SalesOrderDetail.tsx:559 msgid "Edit order" msgstr "Bestelling bewerken" -#: src/pages/build/BuildDetail.tsx:695 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:497 -#: src/pages/sales/ReturnOrderDetail.tsx:506 -#: src/pages/sales/SalesOrderDetail.tsx:559 +#: src/pages/build/BuildDetail.tsx:700 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:502 +#: src/pages/sales/ReturnOrderDetail.tsx:511 +#: src/pages/sales/SalesOrderDetail.tsx:564 msgid "Duplicate order" msgstr "Kopieer regel" -#: src/pages/build/BuildDetail.tsx:699 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:500 -#: src/pages/sales/ReturnOrderDetail.tsx:511 -#: src/pages/sales/SalesOrderDetail.tsx:562 -msgid "Hold order" -msgstr "Bestelling vasthouden" - #: src/pages/build/BuildDetail.tsx:704 #: src/pages/purchasing/PurchaseOrderDetail.tsx:505 #: src/pages/sales/ReturnOrderDetail.tsx:516 #: src/pages/sales/SalesOrderDetail.tsx:567 +msgid "Hold order" +msgstr "Bestelling vasthouden" + +#: src/pages/build/BuildDetail.tsx:709 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:510 +#: src/pages/sales/ReturnOrderDetail.tsx:521 +#: src/pages/sales/SalesOrderDetail.tsx:572 msgid "Cancel order" msgstr "Bestelling annuleren" -#: src/pages/build/BuildDetail.tsx:742 +#: src/pages/build/BuildDetail.tsx:747 #: src/pages/stock/StockDetail.tsx:344 -#: src/tables/build/BuildAllocatedStockTable.tsx:85 +#: src/tables/build/BuildAllocatedStockTable.tsx:82 #: src/tables/part/PartBuildAllocationsTable.tsx:45 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:157 #: src/tables/stock/StockTrackingTable.tsx:109 @@ -7143,7 +7206,7 @@ msgstr "Productieorder" #~ msgid "Build order created" #~ msgstr "Build order created" -#: src/pages/build/BuildIndex.tsx:29 +#: src/pages/build/BuildIndex.tsx:35 #: src/tables/build/BuildOrderTable.tsx:184 msgid "Show external build orders" msgstr "Toon externe build orders" @@ -7152,61 +7215,82 @@ msgstr "Toon externe build orders" #~ msgid "New Build Order" #~ msgstr "New Build Order" -#: src/pages/build/BuildIndex.tsx:83 -#: src/pages/purchasing/PurchasingIndex.tsx:69 -#: src/pages/sales/SalesIndex.tsx:92 -#: src/pages/sales/SalesIndex.tsx:125 +#: src/pages/build/BuildIndex.tsx:74 +#: src/pages/part/CategoryDetail.tsx:292 +#: src/pages/purchasing/PurchasingIndex.tsx:74 +#: src/pages/purchasing/PurchasingIndex.tsx:107 +#: src/pages/purchasing/PurchasingIndex.tsx:135 +#: src/pages/purchasing/PurchasingIndex.tsx:156 +#: src/pages/purchasing/PurchasingIndex.tsx:184 +#: src/pages/sales/SalesIndex.tsx:61 +#: src/pages/sales/SalesIndex.tsx:107 +#: src/pages/sales/SalesIndex.tsx:140 msgid "Table View" msgstr "Tabelweergave" -#: src/pages/build/BuildIndex.tsx:86 -#: src/pages/purchasing/PurchasingIndex.tsx:72 -#: src/pages/sales/SalesIndex.tsx:95 -#: src/pages/sales/SalesIndex.tsx:128 +#: src/pages/build/BuildIndex.tsx:80 +#: src/pages/purchasing/PurchasingIndex.tsx:80 +#: src/pages/sales/SalesIndex.tsx:67 +#: src/pages/sales/SalesIndex.tsx:113 msgid "Calendar View" msgstr "Kalenderoverzicht" -#: src/pages/company/CompanyDetail.tsx:99 +#: src/pages/build/BuildIndex.tsx:86 +#: src/pages/part/CategoryDetail.tsx:306 +#: src/pages/purchasing/PurchasingIndex.tsx:92 +#: src/pages/purchasing/PurchasingIndex.tsx:118 +#: src/pages/purchasing/PurchasingIndex.tsx:141 +#: src/pages/purchasing/PurchasingIndex.tsx:167 +#: src/pages/purchasing/PurchasingIndex.tsx:190 +#: src/pages/sales/SalesIndex.tsx:79 +#: src/pages/sales/SalesIndex.tsx:125 +#: src/pages/sales/SalesIndex.tsx:151 +msgid "Parametric View" +msgstr "" + +#: src/pages/company/CompanyDetail.tsx:100 msgid "Website" msgstr "Website" -#: src/pages/company/CompanyDetail.tsx:107 +#: src/pages/company/CompanyDetail.tsx:108 msgid "Phone Number" msgstr "Telefoon nummer" -#: src/pages/company/CompanyDetail.tsx:114 +#: src/pages/company/CompanyDetail.tsx:115 msgid "Email Address" msgstr "E-mail adres" -#: src/pages/company/CompanyDetail.tsx:121 +#: src/pages/company/CompanyDetail.tsx:122 msgid "Tax ID" msgstr "BTW nr." -#: src/pages/company/CompanyDetail.tsx:131 +#: src/pages/company/CompanyDetail.tsx:132 msgid "Default Currency" msgstr "Standaard valuta" -#: src/pages/company/CompanyDetail.tsx:142 +#: src/pages/company/CompanyDetail.tsx:143 #: src/pages/company/ManufacturerDetail.tsx:8 -#: src/pages/company/ManufacturerPartDetail.tsx:104 -#: src/pages/company/ManufacturerPartDetail.tsx:280 -#: src/pages/company/SupplierPartDetail.tsx:152 +#: src/pages/company/ManufacturerPartDetail.tsx:103 +#: src/pages/company/ManufacturerPartDetail.tsx:271 +#: src/pages/company/SupplierPartDetail.tsx:153 #: src/tables/Filter.tsx:347 #: src/tables/company/CompanyTable.tsx:101 #: src/tables/purchasing/SupplierPartTable.tsx:89 msgid "Manufacturer" msgstr "Fabrikant" -#: src/pages/company/CompanyDetail.tsx:148 +#: src/pages/company/CompanyDetail.tsx:149 #: src/pages/company/CustomerDetail.tsx:8 #: src/pages/part/pricing/SaleHistoryPanel.tsx:31 -#: src/pages/sales/ReturnOrderDetail.tsx:123 -#: src/pages/sales/SalesOrderDetail.tsx:113 -#: src/pages/sales/SalesOrderShipmentDetail.tsx:113 +#: src/pages/sales/ReturnOrderDetail.tsx:124 +#: src/pages/sales/SalesOrderDetail.tsx:114 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:111 #: src/pages/stock/StockDetail.tsx:370 #: src/tables/company/CompanyTable.tsx:106 +#: src/tables/sales/ReturnOrderParametricTable.tsx:32 #: src/tables/sales/ReturnOrderTable.tsx:108 -#: src/tables/sales/SalesOrderShipmentTable.tsx:111 +#: src/tables/sales/SalesOrderParametricTable.tsx:32 +#: src/tables/sales/SalesOrderShipmentTable.tsx:132 #: src/tables/sales/SalesOrderTable.tsx:133 #: src/tables/stock/StockTrackingTable.tsx:153 msgid "Customer" @@ -7216,11 +7300,11 @@ msgstr "Klant" #~ msgid "Edit company" #~ msgstr "Edit company" -#: src/pages/company/CompanyDetail.tsx:181 +#: src/pages/company/CompanyDetail.tsx:182 msgid "Company Details" msgstr "Bedrijf gegevens" -#: src/pages/company/CompanyDetail.tsx:187 +#: src/pages/company/CompanyDetail.tsx:188 msgid "Supplied Parts" msgstr "Geleverde onderdelen" @@ -7228,79 +7312,79 @@ msgstr "Geleverde onderdelen" #~ msgid "Delete company" #~ msgstr "Delete company" -#: src/pages/company/CompanyDetail.tsx:194 +#: src/pages/company/CompanyDetail.tsx:195 msgid "Manufactured Parts" msgstr "Geproduceerde onderdelen" -#: src/pages/company/CompanyDetail.tsx:241 +#: src/pages/company/CompanyDetail.tsx:242 msgid "Assigned Stock" msgstr "Toegewezen voorraad" -#: src/pages/company/CompanyDetail.tsx:282 +#: src/pages/company/CompanyDetail.tsx:287 #: src/tables/company/CompanyTable.tsx:82 msgid "Edit Company" msgstr "Bedrijf bewerken" -#: src/pages/company/CompanyDetail.tsx:290 +#: src/pages/company/CompanyDetail.tsx:295 msgid "Delete Company" msgstr "Bedrijf verwijderen" -#: src/pages/company/CompanyDetail.tsx:305 +#: src/pages/company/CompanyDetail.tsx:310 msgid "Company Actions" msgstr "Bedrijf acties" -#: src/pages/company/ManufacturerPartDetail.tsx:78 -#: src/pages/company/SupplierPartDetail.tsx:89 +#: src/pages/company/ManufacturerPartDetail.tsx:77 +#: src/pages/company/SupplierPartDetail.tsx:90 msgid "Internal Part" msgstr "Intern onderdeel" -#: src/pages/company/ManufacturerPartDetail.tsx:112 +#: src/pages/company/ManufacturerPartDetail.tsx:111 msgid "Manufacturer Part Number" msgstr "Fabrikant onderdeelnummer" -#: src/pages/company/ManufacturerPartDetail.tsx:129 -#: src/pages/company/SupplierPartDetail.tsx:113 +#: src/pages/company/ManufacturerPartDetail.tsx:128 +#: src/pages/company/SupplierPartDetail.tsx:114 msgid "External Link" msgstr "Externe link" -#: src/pages/company/ManufacturerPartDetail.tsx:148 -#: src/pages/company/SupplierPartDetail.tsx:232 +#: src/pages/company/ManufacturerPartDetail.tsx:147 +#: src/pages/company/SupplierPartDetail.tsx:233 #: src/pages/part/PartDetail.tsx:787 msgid "Part Details" msgstr "Details onderdelen" -#: src/pages/company/ManufacturerPartDetail.tsx:151 +#: src/pages/company/ManufacturerPartDetail.tsx:150 msgid "Manufacturer Details" msgstr "Fabrikant details" -#: src/pages/company/ManufacturerPartDetail.tsx:160 +#: src/pages/company/ManufacturerPartDetail.tsx:159 msgid "Manufacturer Part Details" msgstr "Fabrikant onderdeel details" -#: src/pages/company/ManufacturerPartDetail.tsx:178 -#: src/pages/company/SupplierPartDetail.tsx:252 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:381 +#: src/pages/company/ManufacturerPartDetail.tsx:165 +#: src/pages/company/SupplierPartDetail.tsx:253 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:382 msgid "Received Stock" msgstr "Ontvangen voorraad" -#: src/pages/company/ManufacturerPartDetail.tsx:220 +#: src/pages/company/ManufacturerPartDetail.tsx:211 #: src/tables/purchasing/ManufacturerPartTable.tsx:108 msgid "Edit Manufacturer Part" msgstr "Wijzig fabrikant deel" -#: src/pages/company/ManufacturerPartDetail.tsx:227 +#: src/pages/company/ManufacturerPartDetail.tsx:218 #: src/tables/purchasing/ManufacturerPartTable.tsx:96 #: src/tables/purchasing/ManufacturerPartTable.tsx:115 #: src/tables/purchasing/ManufacturerPartTable.tsx:156 msgid "Add Manufacturer Part" msgstr "Voeg fabrikant deel toe" -#: src/pages/company/ManufacturerPartDetail.tsx:239 +#: src/pages/company/ManufacturerPartDetail.tsx:230 #: src/tables/purchasing/ManufacturerPartTable.tsx:126 msgid "Delete Manufacturer Part" msgstr "Fabrikant deel verwijderen" -#: src/pages/company/ManufacturerPartDetail.tsx:254 +#: src/pages/company/ManufacturerPartDetail.tsx:245 msgid "Manufacturer Part Actions" msgstr "Fabrikant onderdeel acties" @@ -7308,12 +7392,12 @@ msgstr "Fabrikant onderdeel acties" #~ msgid "ManufacturerPart" #~ msgstr "ManufacturerPart" -#: src/pages/company/SupplierPartDetail.tsx:104 +#: src/pages/company/SupplierPartDetail.tsx:105 #: src/tables/part/RelatedPartTable.tsx:82 msgid "Part Description" msgstr "Onderdeel omschrijving" -#: src/pages/company/SupplierPartDetail.tsx:179 +#: src/pages/company/SupplierPartDetail.tsx:180 #: src/tables/part/PartPurchaseOrdersTable.tsx:73 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:191 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:233 @@ -7321,50 +7405,50 @@ msgstr "Onderdeel omschrijving" msgid "Pack Quantity" msgstr "Pakket hoeveelheid" -#: src/pages/company/SupplierPartDetail.tsx:204 +#: src/pages/company/SupplierPartDetail.tsx:205 msgid "Supplier Availability" msgstr "Beschikbaarheid van de leverancier" -#: src/pages/company/SupplierPartDetail.tsx:212 +#: src/pages/company/SupplierPartDetail.tsx:213 msgid "Availability Updated" msgstr "Beschikbaarheid bijgewerkt" -#: src/pages/company/SupplierPartDetail.tsx:237 +#: src/pages/company/SupplierPartDetail.tsx:238 msgid "Availability" msgstr "Beschikbaarheid" -#: src/pages/company/SupplierPartDetail.tsx:246 +#: src/pages/company/SupplierPartDetail.tsx:247 msgid "Supplier Part Details" msgstr "Leverancier onderdelen details" -#: src/pages/company/SupplierPartDetail.tsx:279 +#: src/pages/company/SupplierPartDetail.tsx:280 #: src/pages/part/PartPricingPanel.tsx:113 #: src/pages/part/pricing/PricingOverviewPanel.tsx:239 msgid "Supplier Pricing" msgstr "Leverancier prijzen" -#: src/pages/company/SupplierPartDetail.tsx:308 +#: src/pages/company/SupplierPartDetail.tsx:313 msgid "Supplier Part Actions" msgstr "Acties leverancier onderdelen" -#: src/pages/company/SupplierPartDetail.tsx:332 +#: src/pages/company/SupplierPartDetail.tsx:337 #: src/tables/purchasing/SupplierPartTable.tsx:244 msgid "Edit Supplier Part" msgstr "Bewerk leveranciersdeel" -#: src/pages/company/SupplierPartDetail.tsx:340 +#: src/pages/company/SupplierPartDetail.tsx:345 #: src/tables/purchasing/SupplierPartTable.tsx:264 msgid "Delete Supplier Part" msgstr "Verwijder leveranciersdeel" -#: src/pages/company/SupplierPartDetail.tsx:348 +#: src/pages/company/SupplierPartDetail.tsx:353 #: src/tables/purchasing/SupplierPartTable.tsx:172 #: src/tables/purchasing/SupplierPartTable.tsx:251 msgid "Add Supplier Part" msgstr "Leveranciersdeel toevoegen" -#: src/pages/company/SupplierPartDetail.tsx:388 -#: src/pages/part/PartDetail.tsx:1003 +#: src/pages/company/SupplierPartDetail.tsx:393 +#: src/pages/part/PartDetail.tsx:1018 msgid "No Stock" msgstr "Geen voorraad" @@ -7411,83 +7495,83 @@ msgstr "Gebruikers details" msgid "Basic user" msgstr "Basis gebruiker" -#: src/pages/part/CategoryDetail.tsx:100 +#: src/pages/part/CategoryDetail.tsx:103 #: src/pages/stock/LocationDetail.tsx:94 #: src/tables/settings/ErrorTable.tsx:63 #: src/tables/settings/ErrorTable.tsx:108 msgid "Path" msgstr "Locatie" -#: src/pages/part/CategoryDetail.tsx:116 +#: src/pages/part/CategoryDetail.tsx:119 msgid "Parent Category" msgstr "Bovenliggende categorie" -#: src/pages/part/CategoryDetail.tsx:139 -#: src/pages/part/CategoryDetail.tsx:271 +#: src/pages/part/CategoryDetail.tsx:142 +#: src/pages/part/CategoryDetail.tsx:279 msgid "Subcategories" msgstr "Subcategorieën" -#: src/pages/part/CategoryDetail.tsx:146 +#: src/pages/part/CategoryDetail.tsx:149 #: src/pages/stock/LocationDetail.tsx:134 #: src/tables/part/PartCategoryTable.tsx:89 #: src/tables/stock/StockLocationTable.tsx:43 msgid "Structural" msgstr "Structureel" -#: src/pages/part/CategoryDetail.tsx:152 +#: src/pages/part/CategoryDetail.tsx:155 msgid "Parent default location" msgstr "Op standaardlocatie opslaan" -#: src/pages/part/CategoryDetail.tsx:159 +#: src/pages/part/CategoryDetail.tsx:162 msgid "Default location" msgstr "Standaard locatie" -#: src/pages/part/CategoryDetail.tsx:170 +#: src/pages/part/CategoryDetail.tsx:173 msgid "Top level part category" msgstr "Hoogste niveau onderdeel categorie" -#: src/pages/part/CategoryDetail.tsx:180 -#: src/pages/part/CategoryDetail.tsx:248 +#: src/pages/part/CategoryDetail.tsx:183 +#: src/pages/part/CategoryDetail.tsx:251 #: src/tables/part/PartCategoryTable.tsx:122 msgid "Edit Part Category" msgstr "Categorie bewerken" -#: src/pages/part/CategoryDetail.tsx:189 +#: src/pages/part/CategoryDetail.tsx:192 msgid "Move items to parent category" msgstr "Verplaats items naar bovenliggende categorie" -#: src/pages/part/CategoryDetail.tsx:193 +#: src/pages/part/CategoryDetail.tsx:196 #: src/pages/stock/LocationDetail.tsx:226 msgid "Delete items" msgstr "Items verwijderen" -#: src/pages/part/CategoryDetail.tsx:201 -#: src/pages/part/CategoryDetail.tsx:253 +#: src/pages/part/CategoryDetail.tsx:204 +#: src/pages/part/CategoryDetail.tsx:256 msgid "Delete Part Category" msgstr "Verwijder categorie onderdelen" -#: src/pages/part/CategoryDetail.tsx:204 +#: src/pages/part/CategoryDetail.tsx:207 msgid "Parts Action" msgstr "Actie voor onderdelen" -#: src/pages/part/CategoryDetail.tsx:205 +#: src/pages/part/CategoryDetail.tsx:208 msgid "Action for parts in this category" msgstr "Actie voor onderdelen in deze categorie" -#: src/pages/part/CategoryDetail.tsx:211 +#: src/pages/part/CategoryDetail.tsx:214 msgid "Child Categories Action" msgstr "Onderliggende categorie actie" -#: src/pages/part/CategoryDetail.tsx:212 +#: src/pages/part/CategoryDetail.tsx:215 msgid "Action for child categories in this category" msgstr "Actie voor subcategorieën in deze categorie" -#: src/pages/part/CategoryDetail.tsx:244 +#: src/pages/part/CategoryDetail.tsx:247 #: src/tables/part/PartCategoryTable.tsx:143 msgid "Category Actions" msgstr "Categorie acties" -#: src/pages/part/CategoryDetail.tsx:265 +#: src/pages/part/CategoryDetail.tsx:273 msgid "Category Details" msgstr "Categorie details" @@ -7585,7 +7669,6 @@ msgid "Category Default Location" msgstr "Standaard categorie locatie" #: src/pages/part/PartDetail.tsx:507 -#: src/tables/purchasing/ManufacturerPartParameterTable.tsx:48 msgid "Units" msgstr "Eenheden" @@ -7600,7 +7683,7 @@ msgstr "Trefwoorden" #: src/pages/part/PartDetail.tsx:542 #: src/tables/bom/BomTable.tsx:439 -#: src/tables/build/BuildLineTable.tsx:305 +#: src/tables/build/BuildLineTable.tsx:306 #: src/tables/part/PartTable.tsx:319 #: src/tables/sales/SalesOrderLineItemTable.tsx:138 msgid "Available Stock" @@ -7608,7 +7691,7 @@ msgstr "Beschikbare voorraad" #: src/pages/part/PartDetail.tsx:548 #: src/tables/bom/BomTable.tsx:341 -#: src/tables/build/BuildLineTable.tsx:267 +#: src/tables/build/BuildLineTable.tsx:268 #: src/tables/sales/SalesOrderLineItemTable.tsx:180 msgid "On order" msgstr "In bestelling" @@ -7634,7 +7717,7 @@ msgstr "Minimale voorraad" #~ msgstr "Scheduling" #: src/pages/part/PartDetail.tsx:620 -#: src/tables/part/ParametricPartTable.tsx:359 +#: src/tables/part/ParametricPartTable.tsx:24 #: src/tables/part/PartTable.tsx:203 msgid "Locked" msgstr "Vergrendeld" @@ -7671,16 +7754,16 @@ msgid "Saleable Part" msgstr "Verkoopbaar onderdeel" #: src/pages/part/PartDetail.tsx:663 -#: src/pages/part/PartDetail.tsx:1033 +#: src/pages/part/PartDetail.tsx:1054 #: src/tables/bom/BomTable.tsx:150 #: src/tables/bom/BomTable.tsx:434 msgid "Virtual Part" msgstr "Virtueel onderdeel" #: src/pages/part/PartDetail.tsx:678 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:271 -#: src/pages/sales/ReturnOrderDetail.tsx:249 -#: src/pages/sales/SalesOrderDetail.tsx:242 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:272 +#: src/pages/sales/ReturnOrderDetail.tsx:250 +#: src/pages/sales/SalesOrderDetail.tsx:243 #: src/tables/ColumnRenderers.tsx:502 msgid "Creation Date" msgstr "Aangemaakt op" @@ -7718,35 +7801,46 @@ msgstr "Laatste serienummer" msgid "Select Part Revision" msgstr "Selecteer onderdeel revisie" -#: src/pages/part/PartDetail.tsx:823 +#: src/pages/part/PartDetail.tsx:812 msgid "Variants" msgstr "Varianten" -#: src/pages/part/PartDetail.tsx:830 +#: src/pages/part/PartDetail.tsx:819 #: src/pages/stock/StockDetail.tsx:542 msgid "Allocations" msgstr "Toewijzingen" -#: src/pages/part/PartDetail.tsx:837 +#: src/pages/part/PartDetail.tsx:826 msgid "Bill of Materials" msgstr "Materiaallijst" -#: src/pages/part/PartDetail.tsx:849 +#: src/pages/part/PartDetail.tsx:838 msgid "Used In" msgstr "Wordt gebruikt in" -#: src/pages/part/PartDetail.tsx:856 +#: src/pages/part/PartDetail.tsx:845 msgid "Part Pricing" msgstr "Prijzen onderdeel" -#: src/pages/part/PartDetail.tsx:926 +#: src/pages/part/PartDetail.tsx:915 msgid "Test Templates" msgstr "Test sjablonen" -#: src/pages/part/PartDetail.tsx:948 +#: src/pages/part/PartDetail.tsx:937 msgid "Related Parts" msgstr "Gerelateerde onderdelen" +#: src/pages/part/PartDetail.tsx:949 +#: src/tables/ColumnRenderers.tsx:73 +#: src/tables/bom/BomTable.tsx:657 +#: src/tables/part/PartTestTemplateTable.tsx:258 +msgid "Part is Locked" +msgstr "Onderdeel is vergrendeld" + +#: src/pages/part/PartDetail.tsx:954 +msgid "Part parameters cannot be edited, as the part is locked" +msgstr "Onderdeel parameters kunnen niet worden bewerkt, omdat het onderdeel is vergrendeld" + #: src/pages/part/PartDetail.tsx:956 #~ msgid "Count part stock" #~ msgstr "Count part stock" @@ -7755,42 +7849,46 @@ msgstr "Gerelateerde onderdelen" #~ msgid "Transfer part stock" #~ msgstr "Transfer part stock" -#: src/pages/part/PartDetail.tsx:1009 +#: src/pages/part/PartDetail.tsx:1024 #: src/tables/part/PartTestTemplateTable.tsx:112 #: src/tables/stock/StockItemTestResultTable.tsx:404 msgid "Required" msgstr "Vereist" -#: src/pages/part/PartDetail.tsx:1058 +#: src/pages/part/PartDetail.tsx:1042 +msgid "Deficit" +msgstr "" + +#: src/pages/part/PartDetail.tsx:1079 #: src/tables/part/PartTable.tsx:396 #: src/tables/part/PartTable.tsx:449 msgid "Add Part" msgstr "Onderdeel toevoegen" -#: src/pages/part/PartDetail.tsx:1072 +#: src/pages/part/PartDetail.tsx:1093 msgid "Delete Part" msgstr "Onderdeel verwijderen" -#: src/pages/part/PartDetail.tsx:1081 +#: src/pages/part/PartDetail.tsx:1102 msgid "Deleting this part cannot be reversed" msgstr "Verwijderen van dit onderdeel kan niet ongedaan worden gemaakt" -#: src/pages/part/PartDetail.tsx:1143 +#: src/pages/part/PartDetail.tsx:1164 #: src/pages/stock/StockDetail.tsx:883 msgid "Order" msgstr "Order" -#: src/pages/part/PartDetail.tsx:1144 +#: src/pages/part/PartDetail.tsx:1165 #: src/pages/stock/StockDetail.tsx:884 -#: src/tables/build/BuildLineTable.tsx:761 +#: src/tables/build/BuildLineTable.tsx:768 msgid "Order Stock" msgstr "Voorraad bestelling" -#: src/pages/part/PartDetail.tsx:1156 +#: src/pages/part/PartDetail.tsx:1177 msgid "Search by serial number" msgstr "Zoek op serienummer" -#: src/pages/part/PartDetail.tsx:1164 +#: src/pages/part/PartDetail.tsx:1185 #: src/tables/part/PartTable.tsx:506 msgid "Part Actions" msgstr "Acties van onderdeel" @@ -8039,7 +8137,7 @@ msgstr "Inkoopprijs" #: src/pages/part/pricing/PricingOverviewPanel.tsx:288 #: src/pages/stock/StockDetail.tsx:426 -#: src/tables/part/PartParameterTable.tsx:121 +#: src/tables/general/ParameterTable.tsx:101 #: src/tables/stock/StockItemTable.tsx:300 msgid "Last Updated" msgstr "Laatst bijgewerkt" @@ -8107,17 +8205,17 @@ msgstr "Leverancier prijs" msgid "Variant Part" msgstr "Variant onderdeel" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:89 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:90 msgid "Edit Purchase Order" msgstr "Bewerk inkooporder" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:125 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:126 #: src/tables/purchasing/PurchaseOrderTable.tsx:154 #: src/tables/purchasing/PurchaseOrderTable.tsx:167 msgid "Add Purchase Order" msgstr "Inkooporder toevoegen" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:147 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:148 msgid "Supplier Reference" msgstr "Referentie leverancier" @@ -8127,20 +8225,20 @@ msgstr "Referentie leverancier" #~ msgid "Order Currency," #~ msgstr "Order Currency," -#: src/pages/purchasing/PurchaseOrderDetail.tsx:187 -#: src/pages/sales/ReturnOrderDetail.tsx:160 -#: src/pages/sales/SalesOrderDetail.tsx:144 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:188 +#: src/pages/sales/ReturnOrderDetail.tsx:161 +#: src/pages/sales/SalesOrderDetail.tsx:145 msgid "Completed Line Items" msgstr "Afgeronde regel items" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:196 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:197 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:272 msgid "Destination" msgstr "Bestemming" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:202 -#: src/pages/sales/ReturnOrderDetail.tsx:167 -#: src/pages/sales/SalesOrderDetail.tsx:161 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:203 +#: src/pages/sales/ReturnOrderDetail.tsx:168 +#: src/pages/sales/SalesOrderDetail.tsx:162 msgid "Order Currency" msgstr "Bestelling valuta" @@ -8150,97 +8248,97 @@ msgstr "Bestelling valuta" #~ msgid "Created On" #~ msgstr "Created On" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:208 -#: src/pages/sales/ReturnOrderDetail.tsx:174 -#: src/pages/sales/SalesOrderDetail.tsx:167 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:209 +#: src/pages/sales/ReturnOrderDetail.tsx:175 +#: src/pages/sales/SalesOrderDetail.tsx:168 msgid "Total Cost" msgstr "Totale kosten" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:237 -#: src/pages/sales/ReturnOrderDetail.tsx:215 -#: src/pages/sales/SalesOrderDetail.tsx:208 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:238 +#: src/pages/sales/ReturnOrderDetail.tsx:216 +#: src/pages/sales/SalesOrderDetail.tsx:209 msgid "Contact Email" msgstr "Contact email adres" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:245 -#: src/pages/sales/ReturnOrderDetail.tsx:223 -#: src/pages/sales/SalesOrderDetail.tsx:216 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:246 +#: src/pages/sales/ReturnOrderDetail.tsx:224 +#: src/pages/sales/SalesOrderDetail.tsx:217 msgid "Contact Phone" msgstr "Contact telefoonnummer" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:278 -#: src/pages/sales/ReturnOrderDetail.tsx:257 -#: src/pages/sales/SalesOrderDetail.tsx:249 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:279 +#: src/pages/sales/ReturnOrderDetail.tsx:258 +#: src/pages/sales/SalesOrderDetail.tsx:250 msgid "Issue Date" msgstr "Datum van uitgifte" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:303 -#: src/pages/sales/ReturnOrderDetail.tsx:281 -#: src/pages/sales/SalesOrderDetail.tsx:272 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:304 +#: src/pages/sales/ReturnOrderDetail.tsx:282 +#: src/pages/sales/SalesOrderDetail.tsx:273 #: src/tables/ColumnRenderers.tsx:510 #: src/tables/build/BuildOrderTable.tsx:137 #: src/tables/part/PartPurchaseOrdersTable.tsx:106 msgid "Completion Date" msgstr "Datum van afronding" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:333 -#: src/pages/sales/ReturnOrderDetail.tsx:311 -#: src/pages/sales/SalesOrderDetail.tsx:349 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:334 +#: src/pages/sales/ReturnOrderDetail.tsx:312 +#: src/pages/sales/SalesOrderDetail.tsx:350 msgid "Order Details" msgstr "Order Details" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:339 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:348 -#: src/pages/sales/ReturnOrderDetail.tsx:153 -#: src/pages/sales/ReturnOrderDetail.tsx:317 -#: src/pages/sales/ReturnOrderDetail.tsx:326 -#: src/pages/sales/SalesOrderDetail.tsx:355 -#: src/pages/sales/SalesOrderDetail.tsx:364 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:340 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:349 +#: src/pages/sales/ReturnOrderDetail.tsx:154 +#: src/pages/sales/ReturnOrderDetail.tsx:318 +#: src/pages/sales/ReturnOrderDetail.tsx:327 +#: src/pages/sales/SalesOrderDetail.tsx:356 +#: src/pages/sales/SalesOrderDetail.tsx:365 msgid "Line Items" msgstr "Regelitems" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:363 -#: src/pages/sales/ReturnOrderDetail.tsx:341 -#: src/pages/sales/SalesOrderDetail.tsx:378 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:364 +#: src/pages/sales/ReturnOrderDetail.tsx:342 +#: src/pages/sales/SalesOrderDetail.tsx:379 msgid "Extra Line Items" msgstr "Extra regelitems" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:405 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:410 msgid "Issue Purchase Order" msgstr "Inkooporder aanmaken" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:413 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:418 msgid "Cancel Purchase Order" msgstr "Order annuleren" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:421 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:426 msgid "Hold Purchase Order" msgstr "Order vasthouden" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:429 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:434 msgid "Complete Purchase Order" msgstr "Bestelling afronden" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:485 -#: src/pages/sales/ReturnOrderDetail.tsx:496 -#: src/pages/sales/SalesOrderDetail.tsx:549 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:490 +#: src/pages/sales/ReturnOrderDetail.tsx:501 +#: src/pages/sales/SalesOrderDetail.tsx:554 msgid "Order Actions" msgstr "Order acties" -#: src/pages/sales/ReturnOrderDetail.tsx:114 -#: src/pages/sales/SalesOrderDetail.tsx:104 -#: src/pages/sales/SalesOrderShipmentDetail.tsx:134 +#: src/pages/sales/ReturnOrderDetail.tsx:115 +#: src/pages/sales/SalesOrderDetail.tsx:105 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:132 #: src/tables/sales/SalesOrderTable.tsx:141 msgid "Customer Reference" msgstr "Klantreferentie" -#: src/pages/sales/ReturnOrderDetail.tsx:195 +#: src/pages/sales/ReturnOrderDetail.tsx:196 msgid "Return Address" msgstr "" -#: src/pages/sales/ReturnOrderDetail.tsx:201 -#: src/pages/sales/SalesOrderDetail.tsx:194 -#: src/pages/sales/SalesOrderShipmentDetail.tsx:181 +#: src/pages/sales/ReturnOrderDetail.tsx:202 +#: src/pages/sales/SalesOrderDetail.tsx:195 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:179 msgid "Not specified" msgstr "" @@ -8248,117 +8346,117 @@ msgstr "" #~ msgid "Order canceled" #~ msgstr "Order canceled" -#: src/pages/sales/ReturnOrderDetail.tsx:389 +#: src/pages/sales/ReturnOrderDetail.tsx:394 msgid "Edit Return Order" msgstr "Retour order bewerken" -#: src/pages/sales/ReturnOrderDetail.tsx:407 +#: src/pages/sales/ReturnOrderDetail.tsx:412 #: src/tables/sales/ReturnOrderTable.tsx:154 #: src/tables/sales/ReturnOrderTable.tsx:167 msgid "Add Return Order" msgstr "Retourorder toevoegen" -#: src/pages/sales/ReturnOrderDetail.tsx:416 +#: src/pages/sales/ReturnOrderDetail.tsx:421 msgid "Issue Return Order" msgstr "Issue retour order" -#: src/pages/sales/ReturnOrderDetail.tsx:424 +#: src/pages/sales/ReturnOrderDetail.tsx:429 msgid "Cancel Return Order" msgstr "Annuleer retour order" -#: src/pages/sales/ReturnOrderDetail.tsx:432 +#: src/pages/sales/ReturnOrderDetail.tsx:437 msgid "Hold Return Order" msgstr "Retour order vasthouden" -#: src/pages/sales/ReturnOrderDetail.tsx:440 +#: src/pages/sales/ReturnOrderDetail.tsx:445 msgid "Complete Return Order" msgstr "Voltooi retour bestelling" -#: src/pages/sales/SalesOrderDetail.tsx:153 +#: src/pages/sales/SalesOrderDetail.tsx:154 msgid "Completed Shipments" msgstr "Voltooide Verzendingen" -#: src/pages/sales/SalesOrderDetail.tsx:188 -#: src/pages/sales/SalesOrderShipmentDetail.tsx:170 +#: src/pages/sales/SalesOrderDetail.tsx:189 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:168 msgid "Shipping Address" msgstr "" -#: src/pages/sales/SalesOrderDetail.tsx:316 +#: src/pages/sales/SalesOrderDetail.tsx:317 msgid "Edit Sales Order" msgstr "Verkooporder bewerken" -#: src/pages/sales/SalesOrderDetail.tsx:338 +#: src/pages/sales/SalesOrderDetail.tsx:339 #: src/tables/sales/SalesOrderTable.tsx:108 #: src/tables/sales/SalesOrderTable.tsx:121 msgid "Add Sales Order" msgstr "Voeg Verkooporder toe" -#: src/pages/sales/SalesOrderDetail.tsx:396 +#: src/pages/sales/SalesOrderDetail.tsx:397 #: src/tables/sales/SalesOrderTable.tsx:147 msgid "Shipments" msgstr "Zending" -#: src/pages/sales/SalesOrderDetail.tsx:443 +#: src/pages/sales/SalesOrderDetail.tsx:448 msgid "Issue Sales Order" msgstr "Verkooporder uitgeven" -#: src/pages/sales/SalesOrderDetail.tsx:451 +#: src/pages/sales/SalesOrderDetail.tsx:456 msgid "Cancel Sales Order" msgstr "Verkooporder annuleren" -#: src/pages/sales/SalesOrderDetail.tsx:459 +#: src/pages/sales/SalesOrderDetail.tsx:464 msgid "Hold Sales Order" msgstr "Bestelling vasthouden" -#: src/pages/sales/SalesOrderDetail.tsx:467 +#: src/pages/sales/SalesOrderDetail.tsx:472 msgid "Ship Sales Order" msgstr "Verkooporder verzenden" -#: src/pages/sales/SalesOrderDetail.tsx:469 +#: src/pages/sales/SalesOrderDetail.tsx:474 msgid "Ship this order?" msgstr "Deze bestelling verzenden?" -#: src/pages/sales/SalesOrderDetail.tsx:470 +#: src/pages/sales/SalesOrderDetail.tsx:475 msgid "Order shipped" msgstr "Bestelling verzonden" -#: src/pages/sales/SalesOrderDetail.tsx:478 +#: src/pages/sales/SalesOrderDetail.tsx:483 msgid "Complete Sales Order" msgstr "Verkooporder voltooien" -#: src/pages/sales/SalesOrderDetail.tsx:523 +#: src/pages/sales/SalesOrderDetail.tsx:528 msgid "Ship Order" msgstr "Bestelling verzenden" -#: src/pages/sales/SalesOrderShipmentDetail.tsx:142 -#: src/tables/sales/SalesOrderShipmentTable.tsx:135 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:140 +#: src/tables/sales/SalesOrderShipmentTable.tsx:156 msgid "Shipment Reference" msgstr "Verzending referentie" -#: src/pages/sales/SalesOrderShipmentDetail.tsx:148 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:146 msgid "Tracking Number" msgstr "Tracking nummer" -#: src/pages/sales/SalesOrderShipmentDetail.tsx:156 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:154 msgid "Invoice Number" msgstr "Factuur nummer" -#: src/pages/sales/SalesOrderShipmentDetail.tsx:191 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:189 msgid "Allocated Items" msgstr "Toegewezen items" -#: src/pages/sales/SalesOrderShipmentDetail.tsx:196 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:194 msgid "Checked By" msgstr "" -#: src/pages/sales/SalesOrderShipmentDetail.tsx:202 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:200 msgid "Not checked" msgstr "" -#: src/pages/sales/SalesOrderShipmentDetail.tsx:208 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:206 #: src/tables/ColumnRenderers.tsx:518 #: src/tables/sales/SalesOrderAllocationTable.tsx:182 -#: src/tables/sales/SalesOrderShipmentTable.tsx:168 +#: src/tables/sales/SalesOrderShipmentTable.tsx:189 msgid "Shipment Date" msgstr "Verzenddatum" @@ -8366,108 +8464,82 @@ msgstr "Verzenddatum" #~ msgid "Assigned Items" #~ msgstr "Assigned Items" -#: src/pages/sales/SalesOrderShipmentDetail.tsx:216 -#: src/tables/sales/SalesOrderShipmentTable.tsx:172 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:214 +#: src/tables/sales/SalesOrderShipmentTable.tsx:193 msgid "Delivery Date" msgstr "Levering datum" -#: src/pages/sales/SalesOrderShipmentDetail.tsx:255 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:253 msgid "Shipment Details" msgstr "Verzending details" -#: src/pages/sales/SalesOrderShipmentDetail.tsx:294 -#: src/pages/sales/SalesOrderShipmentDetail.tsx:438 -#: src/tables/sales/SalesOrderShipmentTable.tsx:90 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:292 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:406 +#: src/tables/sales/SalesOrderShipmentTable.tsx:97 msgid "Edit Shipment" msgstr "Bewerk verzending" -#: src/pages/sales/SalesOrderShipmentDetail.tsx:301 -#: src/pages/sales/SalesOrderShipmentDetail.tsx:457 -#: src/tables/sales/SalesOrderShipmentTable.tsx:82 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:299 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:425 +#: src/tables/sales/SalesOrderShipmentTable.tsx:89 msgid "Cancel Shipment" msgstr "Verzending annuleren" -#: src/pages/sales/SalesOrderShipmentDetail.tsx:314 -#: src/tables/sales/SalesOrderShipmentTable.tsx:98 -#: src/tables/sales/SalesOrderShipmentTable.tsx:193 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:312 +#: src/tables/sales/SalesOrderShipmentTable.tsx:119 +#: src/tables/sales/SalesOrderShipmentTable.tsx:238 msgid "Complete Shipment" msgstr "Zending voltooien" -#: src/pages/sales/SalesOrderShipmentDetail.tsx:326 -#: src/pages/sales/SalesOrderShipmentDetail.tsx:328 -msgid "Check Shipment" -msgstr "" - -#: src/pages/sales/SalesOrderShipmentDetail.tsx:329 -msgid "Marking the shipment as checked indicates that you have verified that all items included in this shipment are correct" -msgstr "" - #: src/pages/sales/SalesOrderShipmentDetail.tsx:339 -msgid "Shipment marked as checked" -msgstr "" - -#: src/pages/sales/SalesOrderShipmentDetail.tsx:346 -#: src/pages/sales/SalesOrderShipmentDetail.tsx:348 -msgid "Uncheck Shipment" -msgstr "" - -#: src/pages/sales/SalesOrderShipmentDetail.tsx:349 -msgid "Marking the shipment as unchecked indicates that the shipment requires further verification" -msgstr "" - -#: src/pages/sales/SalesOrderShipmentDetail.tsx:359 -msgid "Shipment marked as unchecked" -msgstr "" - -#: src/pages/sales/SalesOrderShipmentDetail.tsx:371 #: src/tables/part/PartPurchaseOrdersTable.tsx:122 msgid "Pending" msgstr "In behandeling" -#: src/pages/sales/SalesOrderShipmentDetail.tsx:377 -#: src/tables/sales/SalesOrderShipmentTable.tsx:147 -#: src/tables/sales/SalesOrderShipmentTable.tsx:254 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:345 +#: src/tables/sales/SalesOrderShipmentTable.tsx:168 +#: src/tables/sales/SalesOrderShipmentTable.tsx:299 msgid "Checked" msgstr "" -#: src/pages/sales/SalesOrderShipmentDetail.tsx:383 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:351 msgid "Not Checked" msgstr "" -#: src/pages/sales/SalesOrderShipmentDetail.tsx:389 -#: src/tables/sales/SalesOrderShipmentTable.tsx:154 -#: src/tables/sales/SalesOrderShipmentTable.tsx:259 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:357 +#: src/tables/sales/SalesOrderShipmentTable.tsx:175 +#: src/tables/sales/SalesOrderShipmentTable.tsx:304 msgid "Shipped" msgstr "Verzonden" -#: src/pages/sales/SalesOrderShipmentDetail.tsx:395 -#: src/tables/sales/SalesOrderShipmentTable.tsx:161 -#: src/tables/sales/SalesOrderShipmentTable.tsx:264 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:363 +#: src/tables/sales/SalesOrderShipmentTable.tsx:182 +#: src/tables/sales/SalesOrderShipmentTable.tsx:309 #: src/tables/settings/EmailTable.tsx:31 msgid "Delivered" msgstr "Geleverd" -#: src/pages/sales/SalesOrderShipmentDetail.tsx:410 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:378 msgid "Send Shipment" msgstr "Verzending verzenden" -#: src/pages/sales/SalesOrderShipmentDetail.tsx:433 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:401 msgid "Shipment Actions" msgstr "Verzending acties" -#: src/pages/sales/SalesOrderShipmentDetail.tsx:442 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:410 msgid "Check" msgstr "" -#: src/pages/sales/SalesOrderShipmentDetail.tsx:443 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:411 msgid "Mark shipment as checked" msgstr "" -#: src/pages/sales/SalesOrderShipmentDetail.tsx:449 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:417 msgid "Uncheck" msgstr "" -#: src/pages/sales/SalesOrderShipmentDetail.tsx:450 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:418 msgid "Mark shipment as unchecked" msgstr "" @@ -8775,13 +8847,6 @@ msgstr "Fout bij het laden van iconen pakket van de server" msgid "Part is not active" msgstr "Onderdeel is niet actief" -#: src/tables/ColumnRenderers.tsx:73 -#: src/tables/bom/BomTable.tsx:657 -#: src/tables/part/PartParameterTable.tsx:227 -#: src/tables/part/PartTestTemplateTable.tsx:258 -msgid "Part is Locked" -msgstr "Onderdeel is vergrendeld" - #: src/tables/ColumnRenderers.tsx:78 msgid "You are subscribed to notifications for this part" msgstr "U bent geabonneerd op meldingen van dit onderdeel" @@ -9219,13 +9284,13 @@ msgstr "Virtueel deel" #~ msgstr "Show asssmbled items" #: src/tables/bom/BomTable.tsx:315 -#: src/tables/build/BuildLineTable.tsx:276 +#: src/tables/build/BuildLineTable.tsx:277 #: src/tables/part/PartTable.tsx:145 msgid "External stock" msgstr "Externe voorraad" #: src/tables/bom/BomTable.tsx:323 -#: src/tables/build/BuildLineTable.tsx:239 +#: src/tables/build/BuildLineTable.tsx:240 msgid "Includes substitute stock" msgstr "Inclusief vervangend voorraad" @@ -9234,7 +9299,7 @@ msgstr "Inclusief vervangend voorraad" #~ msgstr "Edit Bom Item" #: src/tables/bom/BomTable.tsx:332 -#: src/tables/build/BuildLineTable.tsx:249 +#: src/tables/build/BuildLineTable.tsx:250 #: src/tables/sales/SalesOrderLineItemTable.tsx:166 msgid "Includes variant stock" msgstr "Bevat variant voorraad" @@ -9272,8 +9337,8 @@ msgid "Stock Information" msgstr "Voorraad informatie" #: src/tables/bom/BomTable.tsx:399 -#: src/tables/build/BuildLineTable.tsx:496 -#: src/tables/build/BuildLineTable.tsx:537 +#: src/tables/build/BuildLineTable.tsx:497 +#: src/tables/build/BuildLineTable.tsx:538 msgid "Consumable item" msgstr "Verbruiksartikel" @@ -9282,7 +9347,7 @@ msgid "No available stock" msgstr "Geen beschikbare voorraad" #: src/tables/bom/BomTable.tsx:420 -#: src/tables/build/BuildLineTable.tsx:213 +#: src/tables/build/BuildLineTable.tsx:214 msgid "Show testable items" msgstr "Getest items weergeven" @@ -9291,7 +9356,7 @@ msgid "Show trackable items" msgstr "Traceerbare items tonen" #: src/tables/bom/BomTable.tsx:430 -#: src/tables/build/BuildLineTable.tsx:208 +#: src/tables/build/BuildLineTable.tsx:209 msgid "Show assembled items" msgstr "Gecreëerde items weergeven" @@ -9335,7 +9400,7 @@ msgstr "Toon items die variant vervanging toestaan" #: src/tables/bom/BomTable.tsx:464 #: src/tables/bom/UsedInTable.tsx:85 -#: src/tables/build/BuildLineTable.tsx:202 +#: src/tables/build/BuildLineTable.tsx:203 msgid "Optional" msgstr "Optioneel" @@ -9345,7 +9410,7 @@ msgid "Show optional items" msgstr "Optionele items weergeven" #: src/tables/bom/BomTable.tsx:469 -#: src/tables/build/BuildLineTable.tsx:197 +#: src/tables/build/BuildLineTable.tsx:198 msgid "Consumable" msgstr "Verbruiksartikelen" @@ -9420,6 +9485,7 @@ msgid "Add a single BOM item" msgstr "" #: src/tables/bom/BomTable.tsx:637 +#: src/tables/general/ParameterTable.tsx:206 #: src/tables/part/PartTable.tsx:546 msgid "Import from File" msgstr "" @@ -9433,8 +9499,8 @@ msgid "Bill of materials cannot be edited, as the part is locked" msgstr "Factuur van materialen kan niet worden bewerkt, omdat het onderdeel is vergrendeld" #: src/tables/bom/UsedInTable.tsx:34 -#: src/tables/build/BuildLineTable.tsx:207 -#: src/tables/part/ParametricPartTable.tsx:364 +#: src/tables/build/BuildLineTable.tsx:208 +#: src/tables/part/ParametricPartTable.tsx:29 #: src/tables/part/PartBuildAllocationsTable.tsx:60 #: src/tables/part/PartTable.tsx:209 #: src/tables/stock/StockItemTable.tsx:333 @@ -9455,11 +9521,11 @@ msgstr "Volgbaar" msgid "Show trackable assemblies" msgstr "Traceerbare items tonen" -#: src/tables/build/BuildAllocatedStockTable.tsx:67 +#: src/tables/build/BuildAllocatedStockTable.tsx:64 msgid "Allocated to Output" msgstr "Toegewezen aan uitvoer" -#: src/tables/build/BuildAllocatedStockTable.tsx:68 +#: src/tables/build/BuildAllocatedStockTable.tsx:65 msgid "Show items allocated to a build output" msgstr "Toon items toegewezen aan bouwuitvoer" @@ -9472,50 +9538,68 @@ msgstr "Toon items toegewezen aan bouwuitvoer" #~ msgid "Include orders for part variants" #~ msgstr "Include orders for part variants" -#: src/tables/build/BuildAllocatedStockTable.tsx:97 +#: src/tables/build/BuildAllocatedStockTable.tsx:94 #: src/tables/part/PartBuildAllocationsTable.tsx:84 #: src/tables/part/PartPurchaseOrdersTable.tsx:132 #: src/tables/part/PartSalesAllocationsTable.tsx:69 #: src/tables/sales/SalesOrderAllocationTable.tsx:122 -#: src/tables/sales/SalesOrderShipmentTable.tsx:130 +#: src/tables/sales/SalesOrderShipmentTable.tsx:151 msgid "Order Status" msgstr "Status van bestelling" +#: src/tables/build/BuildAllocatedStockTable.tsx:164 +#: src/tables/build/BuildLineTable.tsx:651 +msgid "Edit Stock Allocation" +msgstr "Wijzig voorraadtoewijzing" + #: src/tables/build/BuildAllocatedStockTable.tsx:164 #~ msgid "Edit Build Item" #~ msgstr "Edit Build Item" -#: src/tables/build/BuildAllocatedStockTable.tsx:167 -#: src/tables/build/BuildLineTable.tsx:650 -msgid "Edit Stock Allocation" -msgstr "Wijzig voorraadtoewijzing" - #: src/tables/build/BuildAllocatedStockTable.tsx:174 #~ msgid "Delete Build Item" #~ msgstr "Delete Build Item" +#: src/tables/build/BuildAllocatedStockTable.tsx:177 +#: src/tables/build/BuildLineTable.tsx:664 +#: src/tables/sales/SalesOrderAllocationTable.tsx:218 +msgid "Remove Allocated Stock" +msgstr "" + #: src/tables/build/BuildAllocatedStockTable.tsx:180 #: src/tables/build/BuildLineTable.tsx:663 -msgid "Delete Stock Allocation" -msgstr "Verwijder voorraadtoewijzing" +#~ msgid "Delete Stock Allocation" +#~ msgstr "Delete Stock Allocation" -#: src/tables/build/BuildAllocatedStockTable.tsx:239 +#: src/tables/build/BuildAllocatedStockTable.tsx:182 +#: src/tables/build/BuildLineTable.tsx:669 +#: src/tables/sales/SalesOrderAllocationTable.tsx:221 +msgid "Are you sure you want to remove this allocated stock from the order?" +msgstr "" + +#: src/tables/build/BuildAllocatedStockTable.tsx:242 msgid "Consume" msgstr "Verbruik" +#: src/tables/build/BuildAllocatedStockTable.tsx:259 +#: src/tables/build/BuildLineTable.tsx:112 +#: src/tables/sales/SalesOrderAllocationTable.tsx:248 +msgid "Remove allocated stock" +msgstr "" + #: src/tables/build/BuildLineTable.tsx:59 #~ msgid "Show lines with available stock" #~ msgstr "Show lines with available stock" -#: src/tables/build/BuildLineTable.tsx:120 +#: src/tables/build/BuildLineTable.tsx:121 msgid "View Stock Item" msgstr "Voorraad item weergeven" -#: src/tables/build/BuildLineTable.tsx:183 +#: src/tables/build/BuildLineTable.tsx:184 msgid "Show fully allocated lines" msgstr "Toon volledig toegewezen lijnen" -#: src/tables/build/BuildLineTable.tsx:188 +#: src/tables/build/BuildLineTable.tsx:189 msgid "Show fully consumed lines" msgstr "Toon volledig verbruikte lijnen" @@ -9523,124 +9607,124 @@ msgstr "Toon volledig verbruikte lijnen" #~ msgid "Show allocated lines" #~ msgstr "Show allocated lines" -#: src/tables/build/BuildLineTable.tsx:193 +#: src/tables/build/BuildLineTable.tsx:194 msgid "Show items with sufficient available stock" msgstr "" -#: src/tables/build/BuildLineTable.tsx:198 +#: src/tables/build/BuildLineTable.tsx:199 msgid "Show consumable lines" msgstr "Toon verbruikte items" -#: src/tables/build/BuildLineTable.tsx:203 +#: src/tables/build/BuildLineTable.tsx:204 msgid "Show optional lines" msgstr "Toon optionele regels" -#: src/tables/build/BuildLineTable.tsx:212 +#: src/tables/build/BuildLineTable.tsx:213 #: src/tables/part/PartTable.tsx:233 msgid "Testable" msgstr "Testbaar" -#: src/tables/build/BuildLineTable.tsx:217 +#: src/tables/build/BuildLineTable.tsx:218 #: src/tables/stock/StockItemTable.tsx:388 msgid "Tracked" msgstr "Gevolgd" -#: src/tables/build/BuildLineTable.tsx:218 +#: src/tables/build/BuildLineTable.tsx:219 msgid "Show tracked lines" msgstr "Toon gevolgde lijnen" -#: src/tables/build/BuildLineTable.tsx:223 +#: src/tables/build/BuildLineTable.tsx:224 msgid "Show items with stock on order" msgstr "" -#: src/tables/build/BuildLineTable.tsx:258 +#: src/tables/build/BuildLineTable.tsx:259 #: src/tables/sales/SalesOrderLineItemTable.tsx:172 msgid "In production" msgstr "In productie" -#: src/tables/build/BuildLineTable.tsx:286 +#: src/tables/build/BuildLineTable.tsx:287 msgid "Insufficient stock" msgstr "Onvoldoende voorraad" -#: src/tables/build/BuildLineTable.tsx:302 +#: src/tables/build/BuildLineTable.tsx:303 #: src/tables/sales/SalesOrderLineItemTable.tsx:160 #: src/tables/stock/StockItemTable.tsx:191 msgid "No stock available" msgstr "Geen voorraad beschikbaar" -#: src/tables/build/BuildLineTable.tsx:375 +#: src/tables/build/BuildLineTable.tsx:376 msgid "Gets Inherited" msgstr "Wordt overgenomen" -#: src/tables/build/BuildLineTable.tsx:388 +#: src/tables/build/BuildLineTable.tsx:389 msgid "Unit Quantity" msgstr "Eenheid hoeveelheid" -#: src/tables/build/BuildLineTable.tsx:415 +#: src/tables/build/BuildLineTable.tsx:416 msgid "Setup Quantity" msgstr "Totale hoeveelheid" -#: src/tables/build/BuildLineTable.tsx:424 +#: src/tables/build/BuildLineTable.tsx:425 msgid "Attrition" msgstr "Attriatie" -#: src/tables/build/BuildLineTable.tsx:432 +#: src/tables/build/BuildLineTable.tsx:433 msgid "Rounding Multiple" msgstr "Afronding meerdere" -#: src/tables/build/BuildLineTable.tsx:441 +#: src/tables/build/BuildLineTable.tsx:442 msgid "BOM Information" msgstr "BOM Information" -#: src/tables/build/BuildLineTable.tsx:515 +#: src/tables/build/BuildLineTable.tsx:516 #: src/tables/part/PartBuildAllocationsTable.tsx:102 msgid "Fully allocated" msgstr "Volledig toegewezen" -#: src/tables/build/BuildLineTable.tsx:563 +#: src/tables/build/BuildLineTable.tsx:564 #: src/tables/sales/SalesOrderLineItemTable.tsx:311 msgid "Create Build Order" msgstr "Maak bouw Order" -#: src/tables/build/BuildLineTable.tsx:592 +#: src/tables/build/BuildLineTable.tsx:593 msgid "Auto allocation in progress" msgstr "Automatische toewijzing in uitvoering" -#: src/tables/build/BuildLineTable.tsx:595 -#: src/tables/build/BuildLineTable.tsx:802 +#: src/tables/build/BuildLineTable.tsx:596 +#: src/tables/build/BuildLineTable.tsx:809 msgid "Auto Allocate Stock" msgstr "Automatisch voorraad toewijzen" -#: src/tables/build/BuildLineTable.tsx:596 +#: src/tables/build/BuildLineTable.tsx:597 msgid "Automatically allocate stock to this build according to the selected options" msgstr "Voorraad automatisch toewijzen aan deze build volgens de geselecteerde opties" -#: src/tables/build/BuildLineTable.tsx:616 -#: src/tables/build/BuildLineTable.tsx:630 -#: src/tables/build/BuildLineTable.tsx:751 -#: src/tables/build/BuildLineTable.tsx:852 +#: src/tables/build/BuildLineTable.tsx:617 +#: src/tables/build/BuildLineTable.tsx:631 +#: src/tables/build/BuildLineTable.tsx:758 +#: src/tables/build/BuildLineTable.tsx:859 #: src/tables/build/BuildOutputTable.tsx:355 #: src/tables/build/BuildOutputTable.tsx:360 msgid "Deallocate Stock" msgstr "Voorraad ongedaan maken" -#: src/tables/build/BuildLineTable.tsx:632 +#: src/tables/build/BuildLineTable.tsx:633 msgid "Deallocate all untracked stock for this build order" msgstr "Maak de toewijzing van alle niet bijgehouden voorraad voor deze bouworder ongedaan" -#: src/tables/build/BuildLineTable.tsx:634 +#: src/tables/build/BuildLineTable.tsx:635 msgid "Deallocate stock from the selected line item" msgstr "Maak de toewijzing van voorraad van het geselecteerde regelitem ongedaan" -#: src/tables/build/BuildLineTable.tsx:638 +#: src/tables/build/BuildLineTable.tsx:639 msgid "Stock has been deallocated" msgstr "De voorraad is ongedaan gemaakt" -#: src/tables/build/BuildLineTable.tsx:771 +#: src/tables/build/BuildLineTable.tsx:778 msgid "Build Stock" msgstr "Bouw voorraad" -#: src/tables/build/BuildLineTable.tsx:784 +#: src/tables/build/BuildLineTable.tsx:791 #: src/tables/sales/SalesOrderLineItemTable.tsx:487 msgid "View Part" msgstr "Onderdeel weergeven" @@ -9739,7 +9823,7 @@ msgid "Serialize Build Output" msgstr "Serialiseren Build uitvoer" #: src/tables/build/BuildOutputTable.tsx:405 -#: src/tables/part/PartTestResultTable.tsx:310 +#: src/tables/part/PartTestResultTable.tsx:318 #: src/tables/stock/StockItemTable.tsx:328 msgid "Filter by stock status" msgstr "Filter op voorraad status" @@ -9964,8 +10048,8 @@ msgid "View Item" msgstr "Item bekijken" #: src/tables/general/ExtraLineItemTable.tsx:95 -#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:299 -#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:403 +#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:300 +#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:405 #: src/tables/sales/ReturnOrderLineItemTable.tsx:83 #: src/tables/sales/ReturnOrderLineItemTable.tsx:187 #: src/tables/sales/SalesOrderLineItemTable.tsx:252 @@ -9974,14 +10058,14 @@ msgid "Add Line Item" msgstr "Regel item toevoegen" #: src/tables/general/ExtraLineItemTable.tsx:108 -#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:320 +#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:322 #: src/tables/sales/ReturnOrderLineItemTable.tsx:96 #: src/tables/sales/SalesOrderLineItemTable.tsx:271 msgid "Edit Line Item" msgstr "Regel item bewerken" #: src/tables/general/ExtraLineItemTable.tsx:117 -#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:329 +#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:331 #: src/tables/sales/ReturnOrderLineItemTable.tsx:105 #: src/tables/sales/SalesOrderLineItemTable.tsx:280 msgid "Delete Line Item" @@ -9991,6 +10075,137 @@ msgstr "Regel item verwijderen" msgid "Add Extra Line Item" msgstr "Extra regel item toevoegen" +#: src/tables/general/ParameterTable.tsx:88 +msgid "Internal Units" +msgstr "Interne eenheden" + +#: src/tables/general/ParameterTable.tsx:108 +#: src/tables/general/ParameterTable.tsx:123 +msgid "Updated By" +msgstr "Bijgewerkt Door" + +#: src/tables/general/ParameterTable.tsx:118 +msgid "Show parameters for enabled templates" +msgstr "" + +#: src/tables/general/ParameterTable.tsx:124 +msgid "Filter by user who last updated the parameter" +msgstr "Filter op gebruiker die de parameter voor het laatst heeft bijgewerkt" + +#: src/tables/general/ParameterTable.tsx:154 +msgid "Import Parameters" +msgstr "" + +#: src/tables/general/ParameterTable.tsx:164 +#: src/tables/general/ParametricDataTable.tsx:261 +#: src/tables/general/ParametricDataTable.tsx:392 +msgid "Add Parameter" +msgstr "Parameter toevoegen" + +#: src/tables/general/ParameterTable.tsx:175 +#: src/tables/general/ParameterTable.tsx:222 +#: src/tables/general/ParametricDataTable.tsx:285 +msgid "Edit Parameter" +msgstr "Parameter bewerken" + +#: src/tables/general/ParameterTable.tsx:183 +#: src/tables/general/ParameterTable.tsx:230 +msgid "Delete Parameter" +msgstr "Parameter verwijderen" + +#: src/tables/general/ParameterTable.tsx:191 +msgid "Add Parameters" +msgstr "" + +#: src/tables/general/ParameterTable.tsx:197 +msgid "Create Parameter" +msgstr "" + +#: src/tables/general/ParameterTable.tsx:199 +msgid "Create a new parameter" +msgstr "" + +#: src/tables/general/ParameterTable.tsx:208 +msgid "Import parameters from a file" +msgstr "" + +#: src/tables/general/ParameterTemplateTable.tsx:48 +#: src/tables/general/ParameterTemplateTable.tsx:197 +msgid "Add Parameter Template" +msgstr "Parameter sjabloon toevoegen" + +#: src/tables/general/ParameterTemplateTable.tsx:64 +msgid "Duplicate Parameter Template" +msgstr "Dupliceer parameter sjabloon" + +#: src/tables/general/ParameterTemplateTable.tsx:78 +msgid "Delete Parameter Template" +msgstr "Parameter sjabloon verwijderen" + +#: src/tables/general/ParameterTemplateTable.tsx:85 +msgid "Edit Parameter Template" +msgstr "Parameter sjabloon bewerken" + +#: src/tables/general/ParameterTemplateTable.tsx:138 +msgid "Checkbox" +msgstr "Selectievakje" + +#: src/tables/general/ParameterTemplateTable.tsx:139 +msgid "Show checkbox templates" +msgstr "Toon selectie vak sjabloon" + +#: src/tables/general/ParameterTemplateTable.tsx:143 +msgid "Has choices" +msgstr "Heeft keuzes" + +#: src/tables/general/ParameterTemplateTable.tsx:144 +msgid "Show templates with choices" +msgstr "Toon sjablonen met keuzes" + +#: src/tables/general/ParameterTemplateTable.tsx:148 +#: src/tables/part/PartTable.tsx:245 +msgid "Has Units" +msgstr "Heeft eenheden" + +#: src/tables/general/ParameterTemplateTable.tsx:149 +msgid "Show templates with units" +msgstr "Toon sjablonen met eenheden" + +#: src/tables/general/ParameterTemplateTable.tsx:154 +msgid "Show enabled templates" +msgstr "" + +#: src/tables/general/ParameterTemplateTable.tsx:158 +#: src/tables/settings/ImportSessionTable.tsx:111 +#: src/tables/settings/TemplateTable.tsx:368 +msgid "Model Type" +msgstr "Model type" + +#: src/tables/general/ParameterTemplateTable.tsx:159 +msgid "Filter by model type" +msgstr "" + +#: src/tables/general/ParametricDataTable.tsx:79 +msgid "Click to edit" +msgstr "Klik om te bewerken" + +#: src/tables/general/ParametricDataTableFilters.tsx:36 +msgid "True" +msgstr "Waar" + +#: src/tables/general/ParametricDataTableFilters.tsx:37 +msgid "False" +msgstr "Onjuist" + +#: src/tables/general/ParametricDataTableFilters.tsx:47 +#: src/tables/general/ParametricDataTableFilters.tsx:80 +msgid "Select a choice" +msgstr "Selecteer een keuze" + +#: src/tables/general/ParametricDataTableFilters.tsx:100 +msgid "Enter a value" +msgstr "Voer een waarde in." + #: src/tables/machine/MachineListTable.tsx:133 msgid "Machine restarted" msgstr "Machine is herstart" @@ -10071,7 +10286,7 @@ msgid "Initialized" msgstr "Geïnitialiseerd" #: src/tables/machine/MachineListTable.tsx:410 -#: src/tables/machine/MachineTypeTable.tsx:307 +#: src/tables/machine/MachineTypeTable.tsx:305 msgid "No errors reported" msgstr "Geen fouten gerapporteerd" @@ -10132,15 +10347,15 @@ msgstr "Ingebouwde stuurprogramma" #~ msgid "Machine type information" #~ msgstr "Machine type information" -#: src/tables/machine/MachineTypeTable.tsx:128 +#: src/tables/machine/MachineTypeTable.tsx:126 msgid "Not Found" msgstr "Niet gevonden" -#: src/tables/machine/MachineTypeTable.tsx:131 +#: src/tables/machine/MachineTypeTable.tsx:129 msgid "Machine type not found." msgstr "Machinetype niet gevonden." -#: src/tables/machine/MachineTypeTable.tsx:141 +#: src/tables/machine/MachineTypeTable.tsx:139 msgid "Machine Type Information" msgstr "Machine type gegevens" @@ -10148,34 +10363,34 @@ msgstr "Machine type gegevens" #~ msgid "Available drivers" #~ msgstr "Available drivers" -#: src/tables/machine/MachineTypeTable.tsx:156 -#: src/tables/machine/MachineTypeTable.tsx:255 +#: src/tables/machine/MachineTypeTable.tsx:154 +#: src/tables/machine/MachineTypeTable.tsx:253 msgid "Slug" msgstr "Korte naam" -#: src/tables/machine/MachineTypeTable.tsx:167 -#: src/tables/machine/MachineTypeTable.tsx:276 +#: src/tables/machine/MachineTypeTable.tsx:165 +#: src/tables/machine/MachineTypeTable.tsx:274 msgid "Provider plugin" msgstr "Partner plug-in" -#: src/tables/machine/MachineTypeTable.tsx:179 -#: src/tables/machine/MachineTypeTable.tsx:288 +#: src/tables/machine/MachineTypeTable.tsx:177 +#: src/tables/machine/MachineTypeTable.tsx:286 msgid "Provider file" msgstr "Provider bestand" -#: src/tables/machine/MachineTypeTable.tsx:194 +#: src/tables/machine/MachineTypeTable.tsx:192 msgid "Available Drivers" msgstr "Beschikbare stuurprogramma's" -#: src/tables/machine/MachineTypeTable.tsx:234 +#: src/tables/machine/MachineTypeTable.tsx:232 msgid "Machine driver not found." msgstr "Machine driver is niet gevonden." -#: src/tables/machine/MachineTypeTable.tsx:242 +#: src/tables/machine/MachineTypeTable.tsx:240 msgid "Machine driver information" msgstr "Informatie Machine stuurprogramma" -#: src/tables/machine/MachineTypeTable.tsx:262 +#: src/tables/machine/MachineTypeTable.tsx:260 msgid "Machine type" msgstr "Machine type" @@ -10187,15 +10402,15 @@ msgstr "Machine type" #~ msgid "Machine driver detail" #~ msgstr "Machine driver detail" -#: src/tables/machine/MachineTypeTable.tsx:362 +#: src/tables/machine/MachineTypeTable.tsx:360 msgid "Builtin type" msgstr "Ingebouwde type" -#: src/tables/machine/MachineTypeTable.tsx:371 +#: src/tables/machine/MachineTypeTable.tsx:369 msgid "Machine Type Detail" msgstr "Machinetype detail" -#: src/tables/machine/MachineTypeTable.tsx:381 +#: src/tables/machine/MachineTypeTable.tsx:379 msgid "Machine Driver Detail" msgstr "Machine stuurprogramma details" @@ -10213,52 +10428,31 @@ msgstr "Meldingen" msgid "Message" msgstr "Bericht" -#: src/tables/part/ParametricPartTable.tsx:78 -msgid "Click to edit" -msgstr "Klik om te bewerken" +#: src/tables/part/ParametricPartTable.tsx:20 +msgid "Show active parts" +msgstr "Actieve onderdelen weergeven" + +#: src/tables/part/ParametricPartTable.tsx:25 +msgid "Show locked parts" +msgstr "Toon vergrendelde onderdelen" + +#: src/tables/part/ParametricPartTable.tsx:30 +msgid "Show assembly parts" +msgstr "Toon assemblage onderdelen" #: src/tables/part/ParametricPartTable.tsx:82 #~ msgid "Edit parameter" #~ msgstr "Edit parameter" #: src/tables/part/ParametricPartTable.tsx:244 -msgid "Add Part Parameter" -msgstr "Onderdeel parameter toevoegen" +#~ msgid "Add Part Parameter" +#~ msgstr "Add Part Parameter" #: src/tables/part/ParametricPartTable.tsx:258 #: src/tables/part/PartParameterTable.tsx:164 #: src/tables/part/PartParameterTable.tsx:187 -msgid "Edit Part Parameter" -msgstr "Onderdeel parameter bewerken" - -#: src/tables/part/ParametricPartTable.tsx:355 -msgid "Show active parts" -msgstr "Actieve onderdelen weergeven" - -#: src/tables/part/ParametricPartTable.tsx:360 -msgid "Show locked parts" -msgstr "Toon vergrendelde onderdelen" - -#: src/tables/part/ParametricPartTable.tsx:365 -msgid "Show assembly parts" -msgstr "Toon assemblage onderdelen" - -#: src/tables/part/ParametricPartTableFilters.tsx:36 -msgid "True" -msgstr "Waar" - -#: src/tables/part/ParametricPartTableFilters.tsx:37 -msgid "False" -msgstr "Onjuist" - -#: src/tables/part/ParametricPartTableFilters.tsx:47 -#: src/tables/part/ParametricPartTableFilters.tsx:80 -msgid "Select a choice" -msgstr "Selecteer een keuze" - -#: src/tables/part/ParametricPartTableFilters.tsx:100 -msgid "Enter a value" -msgstr "Voer een waarde in." +#~ msgid "Edit Part Parameter" +#~ msgstr "Edit Part Parameter" #: src/tables/part/PartBuildAllocationsTable.tsx:64 msgid "Assembly IPN" @@ -10273,7 +10467,7 @@ msgid "Required Stock" msgstr "Vereiste voorraad" #: src/tables/part/PartBuildAllocationsTable.tsx:124 -#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:381 +#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:383 msgid "View Build Order" msgstr "Bekijk bouwopdracht" @@ -10332,85 +10526,22 @@ msgstr "Categorie parameter bewerken" msgid "Delete Category Parameter" msgstr "Verwijder categorie parameter" -#: src/tables/part/PartCategoryTemplateTable.tsx:87 -msgid "Parameter Template" -msgstr "Parameter sjabloon" - #: src/tables/part/PartCategoryTemplateTable.tsx:93 #~ msgid "[{0}]" #~ msgstr "[{0}]" -#: src/tables/part/PartParameterTable.tsx:108 -msgid "Internal Units" -msgstr "Interne eenheden" - -#: src/tables/part/PartParameterTable.tsx:128 -#: src/tables/part/PartParameterTable.tsx:138 -msgid "Updated By" -msgstr "Bijgewerkt Door" - -#: src/tables/part/PartParameterTable.tsx:139 -msgid "Filter by user who last updated the parameter" -msgstr "Filter op gebruiker die de parameter voor het laatst heeft bijgewerkt" - #: src/tables/part/PartParameterTable.tsx:148 -msgid "New Part Parameter" -msgstr "Nieuwe onderdeel parameter" +#~ msgid "New Part Parameter" +#~ msgstr "New Part Parameter" #: src/tables/part/PartParameterTable.tsx:173 #: src/tables/part/PartParameterTable.tsx:195 -msgid "Delete Part Parameter" -msgstr "Onderdeel parameter verwijderen" +#~ msgid "Delete Part Parameter" +#~ msgstr "Delete Part Parameter" #: src/tables/part/PartParameterTable.tsx:213 -msgid "Add parameter" -msgstr "Parameter toevoegen" - -#: src/tables/part/PartParameterTable.tsx:232 -msgid "Part parameters cannot be edited, as the part is locked" -msgstr "Onderdeel parameters kunnen niet worden bewerkt, omdat het onderdeel is vergrendeld" - -#: src/tables/part/PartParameterTemplateTable.tsx:36 -msgid "Checkbox" -msgstr "Selectievakje" - -#: src/tables/part/PartParameterTemplateTable.tsx:37 -msgid "Show checkbox templates" -msgstr "Toon selectie vak sjabloon" - -#: src/tables/part/PartParameterTemplateTable.tsx:41 -msgid "Has choices" -msgstr "Heeft keuzes" - -#: src/tables/part/PartParameterTemplateTable.tsx:42 -msgid "Show templates with choices" -msgstr "Toon sjablonen met keuzes" - -#: src/tables/part/PartParameterTemplateTable.tsx:46 -#: src/tables/part/PartTable.tsx:245 -msgid "Has Units" -msgstr "Heeft eenheden" - -#: src/tables/part/PartParameterTemplateTable.tsx:47 -msgid "Show templates with units" -msgstr "Toon sjablonen met eenheden" - -#: src/tables/part/PartParameterTemplateTable.tsx:91 -#: src/tables/part/PartParameterTemplateTable.tsx:166 -msgid "Add Parameter Template" -msgstr "Parameter sjabloon toevoegen" - -#: src/tables/part/PartParameterTemplateTable.tsx:105 -msgid "Duplicate Parameter Template" -msgstr "Dupliceer parameter sjabloon" - -#: src/tables/part/PartParameterTemplateTable.tsx:117 -msgid "Edit Parameter Template" -msgstr "Parameter sjabloon bewerken" - -#: src/tables/part/PartParameterTemplateTable.tsx:128 -msgid "Delete Parameter Template" -msgstr "Parameter sjabloon verwijderen" +#~ msgid "Add parameter" +#~ msgstr "Add parameter" #: src/tables/part/PartParameterTemplateTable.tsx:141 #~ msgid "Add parameter template" @@ -10430,7 +10561,7 @@ msgid "Show received items" msgstr "Toon ontvangen items" #: src/tables/part/PartSalesAllocationsTable.tsx:90 -#: src/tables/sales/SalesOrderShipmentTable.tsx:218 +#: src/tables/sales/SalesOrderShipmentTable.tsx:263 msgid "View Sales Order" msgstr "Bekijk verkooporder" @@ -10617,8 +10748,8 @@ msgstr "" #: src/tables/part/PartTestResultTable.tsx:103 #: src/tables/part/PartTestResultTable.tsx:181 -#: src/tables/part/PartTestResultTable.tsx:320 -#: src/tables/part/PartTestResultTable.tsx:334 +#: src/tables/part/PartTestResultTable.tsx:328 +#: src/tables/part/PartTestResultTable.tsx:342 #: src/tables/stock/StockItemTestResultTable.tsx:296 #: src/tables/stock/StockItemTestResultTable.tsx:368 #: src/tables/stock/StockItemTestResultTable.tsx:429 @@ -10643,7 +10774,7 @@ msgstr "Test resultaten toegevoegd" msgid "No Result" msgstr "Geen resultaat" -#: src/tables/part/PartTestResultTable.tsx:298 +#: src/tables/part/PartTestResultTable.tsx:306 msgid "Show build outputs currently in production" msgstr "Toon bouw outputs die momenteel in productie zijn" @@ -11013,36 +11144,45 @@ msgstr "Geïnstalleerd" #~ msgid "Parameter updated" #~ msgstr "Parameter updated" -#: src/tables/purchasing/ManufacturerPartParameterTable.tsx:63 -#: src/tables/purchasing/ManufacturerPartParameterTable.tsx:112 -msgid "Add Parameter" -msgstr "Parameter toevoegen" - #: src/tables/purchasing/ManufacturerPartParameterTable.tsx:73 #~ msgid "Parameter deleted" #~ msgstr "Parameter deleted" -#: src/tables/purchasing/ManufacturerPartParameterTable.tsx:74 -msgid "Edit Parameter" -msgstr "Parameter bewerken" - #: src/tables/purchasing/ManufacturerPartParameterTable.tsx:74 #~ msgid "Are you sure you want to delete this parameter?" #~ msgstr "Are you sure you want to delete this parameter?" -#: src/tables/purchasing/ManufacturerPartParameterTable.tsx:82 -msgid "Delete Parameter" -msgstr "Parameter verwijderen" - -#: src/tables/purchasing/ManufacturerPartTable.tsx:63 -#~ msgid "Create Manufacturer Part" -#~ msgstr "Create Manufacturer Part" - +#: src/tables/purchasing/ManufacturerPartParametricTable.tsx:34 #: src/tables/purchasing/ManufacturerPartTable.tsx:82 #: src/tables/purchasing/SupplierPartTable.tsx:99 msgid "MPN" msgstr "MPN" +#: src/tables/purchasing/ManufacturerPartParametricTable.tsx:44 +#: src/tables/purchasing/ManufacturerPartTable.tsx:134 +#: src/tables/purchasing/SupplierPartTable.tsx:220 +msgid "Active Part" +msgstr "Actief deel" + +#: src/tables/purchasing/ManufacturerPartParametricTable.tsx:45 +#: src/tables/purchasing/ManufacturerPartTable.tsx:135 +msgid "Show manufacturer parts for active internal parts." +msgstr "" + +#: src/tables/purchasing/ManufacturerPartParametricTable.tsx:50 +#: src/tables/purchasing/ManufacturerPartTable.tsx:140 +msgid "Active Manufacturer" +msgstr "" + +#: src/tables/purchasing/ManufacturerPartParametricTable.tsx:51 +#: src/tables/purchasing/ManufacturerPartTable.tsx:142 +msgid "Show manufacturer parts for active manufacturers." +msgstr "" + +#: src/tables/purchasing/ManufacturerPartTable.tsx:63 +#~ msgid "Create Manufacturer Part" +#~ msgstr "Create Manufacturer Part" + #: src/tables/purchasing/ManufacturerPartTable.tsx:100 #~ msgid "Manufacturer part updated" #~ msgstr "Manufacturer part updated" @@ -11055,25 +11195,8 @@ msgstr "MPN" #~ msgid "Are you sure you want to remove this manufacturer part?" #~ msgstr "Are you sure you want to remove this manufacturer part?" -#: src/tables/purchasing/ManufacturerPartTable.tsx:134 -#: src/tables/purchasing/SupplierPartTable.tsx:220 -msgid "Active Part" -msgstr "Actief deel" - -#: src/tables/purchasing/ManufacturerPartTable.tsx:135 -msgid "Show manufacturer parts for active internal parts." -msgstr "" - -#: src/tables/purchasing/ManufacturerPartTable.tsx:140 -msgid "Active Manufacturer" -msgstr "" - -#: src/tables/purchasing/ManufacturerPartTable.tsx:142 -msgid "Show manufacturer parts for active manufacturers." -msgstr "" - #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:115 -#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:397 +#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:399 msgid "Import Line Items" msgstr "Importeer regelitems" @@ -11099,11 +11222,11 @@ msgstr "Toon regelitems die zijn ontvangen" #~ msgid "Add line item" #~ msgstr "Add line item" -#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:350 +#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:352 msgid "Receive line item" msgstr "Ontvang artikel items" -#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:414 +#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:416 msgid "Receive items" msgstr "Items ontvangen" @@ -11201,25 +11324,25 @@ msgid "Not shipped" msgstr "Niet verzonden" #: src/tables/sales/SalesOrderAllocationTable.tsx:211 -#: src/tables/sales/SalesOrderAllocationTable.tsx:229 +#: src/tables/sales/SalesOrderAllocationTable.tsx:235 msgid "Edit Allocation" msgstr "Bewerk voorraadtoewijzing" #: src/tables/sales/SalesOrderAllocationTable.tsx:218 #: src/tables/sales/SalesOrderAllocationTable.tsx:241 -msgid "Delete Allocation" -msgstr "Verwijder toewijzing" +#~ msgid "Delete Allocation" +#~ msgstr "Delete Allocation" -#: src/tables/sales/SalesOrderAllocationTable.tsx:252 -#: src/tables/sales/SalesOrderAllocationTable.tsx:253 +#: src/tables/sales/SalesOrderAllocationTable.tsx:261 +#: src/tables/sales/SalesOrderAllocationTable.tsx:262 msgid "View Shipment" msgstr "Verzending weergeven" -#: src/tables/sales/SalesOrderAllocationTable.tsx:308 +#: src/tables/sales/SalesOrderAllocationTable.tsx:317 msgid "Assign to Shipment" msgstr "Toewijzen aan zending" -#: src/tables/sales/SalesOrderAllocationTable.tsx:324 +#: src/tables/sales/SalesOrderAllocationTable.tsx:333 msgid "Assign to shipment" msgstr "Toewijzen aan zending" @@ -11259,35 +11382,35 @@ msgstr "Bestel voorraad" #~ msgid "Delete Shipment" #~ msgstr "Delete Shipment" -#: src/tables/sales/SalesOrderShipmentTable.tsx:72 +#: src/tables/sales/SalesOrderShipmentTable.tsx:79 msgid "Create Shipment" msgstr "Zending aanmaken" -#: src/tables/sales/SalesOrderShipmentTable.tsx:143 +#: src/tables/sales/SalesOrderShipmentTable.tsx:164 msgid "Items" msgstr "Artikelen" -#: src/tables/sales/SalesOrderShipmentTable.tsx:203 +#: src/tables/sales/SalesOrderShipmentTable.tsx:248 msgid "Edit shipment" msgstr "Verzending bewerken" -#: src/tables/sales/SalesOrderShipmentTable.tsx:211 +#: src/tables/sales/SalesOrderShipmentTable.tsx:256 msgid "Cancel shipment" msgstr "Verzending annuleren" -#: src/tables/sales/SalesOrderShipmentTable.tsx:241 +#: src/tables/sales/SalesOrderShipmentTable.tsx:286 msgid "Add shipment" msgstr "Voeg verzending toe" -#: src/tables/sales/SalesOrderShipmentTable.tsx:255 +#: src/tables/sales/SalesOrderShipmentTable.tsx:300 msgid "Show shipments which have been checked" msgstr "" -#: src/tables/sales/SalesOrderShipmentTable.tsx:260 +#: src/tables/sales/SalesOrderShipmentTable.tsx:305 msgid "Show shipments which have been shipped" msgstr "Toon verzendingen die zijn verzonden" -#: src/tables/sales/SalesOrderShipmentTable.tsx:265 +#: src/tables/sales/SalesOrderShipmentTable.tsx:310 msgid "Show shipments which have been delivered" msgstr "Toon verzendingen die afgeleverd zijn" @@ -11621,11 +11744,6 @@ msgstr "Geüpload" msgid "Imported Rows" msgstr "Geïmporteerde regels" -#: src/tables/settings/ImportSessionTable.tsx:111 -#: src/tables/settings/TemplateTable.tsx:368 -msgid "Model Type" -msgstr "Model type" - #: src/tables/settings/ImportSessionTable.tsx:112 #: src/tables/settings/TemplateTable.tsx:369 msgid "Filter by target model type" diff --git a/src/frontend/src/locales/no/messages.po b/src/frontend/src/locales/no/messages.po index a7383ab471..018e691cde 100644 --- a/src/frontend/src/locales/no/messages.po +++ b/src/frontend/src/locales/no/messages.po @@ -8,7 +8,7 @@ msgstr "" "Language: no\n" "Project-Id-Version: inventree\n" "Report-Msgid-Bugs-To: \n" -"PO-Revision-Date: 2025-11-19 19:39\n" +"PO-Revision-Date: 2025-12-07 07:36\n" "Last-Translator: \n" "Language-Team: Norwegian\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" @@ -30,7 +30,7 @@ msgid "Edit" msgstr "Rediger" #: lib/components/RowActions.tsx:56 -#: src/components/forms/ApiForm.tsx:735 +#: src/components/forms/ApiForm.tsx:754 #: src/components/items/ActionDropdown.tsx:257 #: src/components/items/RoleTable.tsx:155 #: src/hooks/UseForm.tsx:164 @@ -56,24 +56,24 @@ msgstr "Avbryt" #: lib/components/RowActions.tsx:136 #: src/components/nav/NavigationDrawer.tsx:190 -#: src/forms/PurchaseOrderForms.tsx:802 +#: src/forms/PurchaseOrderForms.tsx:854 #: src/forms/StockForms.tsx:796 #: src/forms/StockForms.tsx:843 -#: src/forms/StockForms.tsx:889 -#: src/forms/StockForms.tsx:928 -#: src/forms/StockForms.tsx:964 -#: src/forms/StockForms.tsx:1050 +#: src/forms/StockForms.tsx:896 +#: src/forms/StockForms.tsx:942 +#: src/forms/StockForms.tsx:980 +#: src/forms/StockForms.tsx:1066 #: src/pages/Index/Settings/AccountSettings/MFASettings.tsx:962 msgid "Actions" msgstr "Handlinger" #: lib/components/SearchInput.tsx:34 -#: src/components/forms/fields/RelatedModelField.tsx:408 +#: src/components/forms/fields/RelatedModelField.tsx:479 #: src/components/nav/Header.tsx:169 #: src/components/wizards/ImportPartWizard.tsx:200 #: src/components/wizards/ImportPartWizard.tsx:233 -#: src/pages/Index/Settings/UserSettings.tsx:74 -#: src/pages/part/PartDetail.tsx:1155 +#: src/pages/Index/Settings/UserSettings.tsx:75 +#: src/pages/part/PartDetail.tsx:1176 msgid "Search" msgstr "Søk" @@ -95,7 +95,7 @@ msgstr "Ja" msgid "No" msgstr "Nei" -#: lib/enums/ModelInformation.tsx:28 +#: lib/enums/ModelInformation.tsx:29 #: src/components/wizards/OrderPartsWizard.tsx:279 #: src/forms/BuildForms.tsx:332 #: src/forms/BuildForms.tsx:407 @@ -103,208 +103,234 @@ msgstr "Nei" #: src/forms/BuildForms.tsx:630 #: src/forms/BuildForms.tsx:793 #: src/forms/BuildForms.tsx:896 -#: src/forms/PurchaseOrderForms.tsx:798 +#: src/forms/PurchaseOrderForms.tsx:850 #: src/forms/ReturnOrderForms.tsx:242 -#: src/forms/SalesOrderForms.tsx:305 +#: src/forms/SalesOrderForms.tsx:384 #: src/forms/StockForms.tsx:360 #: src/forms/StockForms.tsx:791 #: src/forms/StockForms.tsx:838 -#: src/forms/StockForms.tsx:884 -#: src/forms/StockForms.tsx:923 -#: src/forms/StockForms.tsx:959 -#: src/forms/StockForms.tsx:1002 -#: src/forms/StockForms.tsx:1046 -#: src/forms/StockForms.tsx:1094 -#: src/forms/StockForms.tsx:1138 -#: src/pages/build/BuildDetail.tsx:200 -#: src/pages/part/PartDetail.tsx:1207 +#: src/forms/StockForms.tsx:891 +#: src/forms/StockForms.tsx:937 +#: src/forms/StockForms.tsx:975 +#: src/forms/StockForms.tsx:1018 +#: src/forms/StockForms.tsx:1062 +#: src/forms/StockForms.tsx:1110 +#: src/forms/StockForms.tsx:1154 +#: src/pages/build/BuildDetail.tsx:201 +#: src/pages/part/PartDetail.tsx:1228 #: src/tables/ColumnRenderers.tsx:91 +#: src/tables/part/PartTestResultTable.tsx:247 #: src/tables/part/RelatedPartTable.tsx:53 #: src/tables/stock/StockTrackingTable.tsx:87 msgid "Part" msgstr "Del" -#: lib/enums/ModelInformation.tsx:29 +#: lib/enums/ModelInformation.tsx:30 #: lib/enums/Roles.tsx:35 #: src/components/nav/NavigationDrawer.tsx:70 #: src/defaults/links.tsx:36 -#: src/pages/Index/Settings/SystemSettings.tsx:190 -#: src/pages/part/CategoryDetail.tsx:132 -#: src/pages/part/CategoryDetail.tsx:277 -#: src/pages/part/CategoryDetail.tsx:323 -#: src/pages/part/CategoryDetail.tsx:354 -#: src/pages/part/PartDetail.tsx:965 +#: src/pages/Index/Settings/SystemSettings.tsx:197 +#: src/pages/part/CategoryDetail.tsx:135 +#: src/pages/part/CategoryDetail.tsx:285 +#: src/pages/part/CategoryDetail.tsx:340 +#: src/pages/part/CategoryDetail.tsx:371 +#: src/pages/part/PartDetail.tsx:978 msgid "Parts" msgstr "Deler" #: lib/enums/ModelInformation.tsx:37 #: src/pages/Index/Settings/AdminCenter/PartParameterPanel.tsx:13 -msgid "Part Parameter Template" -msgstr "Mal for Delparameter" +#~ msgid "Part Parameter Template" +#~ msgstr "Part Parameter Template" #: lib/enums/ModelInformation.tsx:38 -msgid "Part Parameter Templates" -msgstr "Maler for Delparameter" +#~ msgid "Part Parameter Templates" +#~ msgstr "Part Parameter Templates" + +#: lib/enums/ModelInformation.tsx:39 +msgid "Parameter" +msgstr "" + +#: lib/enums/ModelInformation.tsx:40 +#: src/components/panels/ParametersPanel.tsx:19 +#: src/components/wizards/ImportPartWizard.tsx:807 +#: src/pages/Index/Settings/AdminCenter/Index.tsx:195 +#: src/pages/Index/Settings/SystemSettings.tsx:191 +#: src/pages/part/PartDetail.tsx:943 +msgid "Parameters" +msgstr "Parametere" #: lib/enums/ModelInformation.tsx:45 -msgid "Part Test Template" +#: src/tables/part/PartCategoryTemplateTable.tsx:87 +msgid "Parameter Template" msgstr "" #: lib/enums/ModelInformation.tsx:46 -msgid "Part Test Templates" +#: src/pages/Index/Settings/AdminCenter/ParameterPanel.tsx:13 +msgid "Parameter Templates" msgstr "" #: lib/enums/ModelInformation.tsx:52 +msgid "Part Test Template" +msgstr "" + +#: lib/enums/ModelInformation.tsx:53 +msgid "Part Test Templates" +msgstr "" + +#: lib/enums/ModelInformation.tsx:59 #: src/components/wizards/OrderPartsWizard.tsx:290 -#: src/pages/company/SupplierPartDetail.tsx:413 +#: src/pages/company/SupplierPartDetail.tsx:418 #: src/pages/stock/StockDetail.tsx:289 -#: src/tables/build/BuildAllocatedStockTable.tsx:155 +#: src/tables/build/BuildAllocatedStockTable.tsx:152 #: src/tables/part/PartPurchaseOrdersTable.tsx:50 +#: src/tables/purchasing/SupplierPartParametricTable.tsx:29 #: src/tables/purchasing/SupplierPartTable.tsx:83 #: src/tables/stock/StockItemTable.tsx:247 msgid "Supplier Part" msgstr "Leverandørdel" -#: lib/enums/ModelInformation.tsx:53 -#: src/pages/purchasing/PurchasingIndex.tsx:92 +#: lib/enums/ModelInformation.tsx:60 +#: src/pages/purchasing/PurchasingIndex.tsx:128 msgid "Supplier Parts" msgstr "Leverandørdeler" -#: lib/enums/ModelInformation.tsx:61 -#: src/pages/company/ManufacturerPartDetail.tsx:297 -#: src/pages/company/SupplierPartDetail.tsx:161 +#: lib/enums/ModelInformation.tsx:69 +#: src/pages/company/ManufacturerPartDetail.tsx:288 +#: src/pages/company/SupplierPartDetail.tsx:162 #: src/tables/part/PartPurchaseOrdersTable.tsx:56 #: src/tables/stock/StockItemTable.tsx:253 msgid "Manufacturer Part" msgstr "Produsentdel" -#: lib/enums/ModelInformation.tsx:62 -#: src/pages/purchasing/PurchasingIndex.tsx:109 +#: lib/enums/ModelInformation.tsx:70 +#: src/pages/purchasing/PurchasingIndex.tsx:177 msgid "Manufacturer Parts" msgstr "Produsentdeler" -#: lib/enums/ModelInformation.tsx:70 -#: src/pages/part/CategoryDetail.tsx:354 +#: lib/enums/ModelInformation.tsx:79 +#: src/pages/part/CategoryDetail.tsx:371 #: src/tables/Filter.tsx:389 msgid "Part Category" msgstr "Delkategori" -#: lib/enums/ModelInformation.tsx:71 +#: lib/enums/ModelInformation.tsx:80 #: lib/enums/Roles.tsx:37 -#: src/pages/part/CategoryDetail.tsx:271 -#: src/pages/part/CategoryDetail.tsx:345 -#: src/pages/part/PartDetail.tsx:1196 +#: src/pages/part/CategoryDetail.tsx:279 +#: src/pages/part/CategoryDetail.tsx:362 +#: src/pages/part/PartDetail.tsx:1217 msgid "Part Categories" msgstr "Delkategorier" -#: lib/enums/ModelInformation.tsx:79 +#: lib/enums/ModelInformation.tsx:88 #: src/forms/BuildForms.tsx:473 #: src/forms/BuildForms.tsx:633 #: src/forms/BuildForms.tsx:794 -#: src/forms/SalesOrderForms.tsx:307 +#: src/forms/SalesOrderForms.tsx:386 #: src/pages/stock/StockDetail.tsx:1005 -#: src/tables/part/PartTestResultTable.tsx:248 +#: src/tables/part/PartTestResultTable.tsx:256 #: src/tables/stock/StockTrackingTable.tsx:48 #: src/tables/stock/StockTrackingTable.tsx:55 msgid "Stock Item" msgstr "Lagervare" -#: lib/enums/ModelInformation.tsx:80 +#: lib/enums/ModelInformation.tsx:89 #: lib/enums/Roles.tsx:45 -#: src/pages/company/CompanyDetail.tsx:210 -#: src/pages/part/CategoryDetail.tsx:291 +#: src/pages/company/CompanyDetail.tsx:211 +#: src/pages/part/CategoryDetail.tsx:314 #: src/pages/part/PartStockHistoryDetail.tsx:101 #: src/pages/stock/LocationDetail.tsx:121 #: src/pages/stock/LocationDetail.tsx:180 msgid "Stock Items" msgstr "Lagervarer" -#: lib/enums/ModelInformation.tsx:88 +#: lib/enums/ModelInformation.tsx:98 #: lib/enums/Roles.tsx:47 #: src/pages/stock/LocationDetail.tsx:420 msgid "Stock Location" msgstr "Lagerplassering" -#: lib/enums/ModelInformation.tsx:89 +#: lib/enums/ModelInformation.tsx:99 #: src/pages/stock/LocationDetail.tsx:174 #: src/pages/stock/LocationDetail.tsx:412 #: src/pages/stock/StockDetail.tsx:996 msgid "Stock Locations" msgstr "Lagerplasseringer" -#: lib/enums/ModelInformation.tsx:97 +#: lib/enums/ModelInformation.tsx:108 msgid "Stock Location Type" msgstr "" -#: lib/enums/ModelInformation.tsx:98 +#: lib/enums/ModelInformation.tsx:109 msgid "Stock Location Types" msgstr "" -#: lib/enums/ModelInformation.tsx:103 -#: src/pages/Index/Settings/SystemSettings.tsx:248 -#: src/pages/part/PartDetail.tsx:911 +#: lib/enums/ModelInformation.tsx:114 +#: src/pages/Index/Settings/SystemSettings.tsx:254 +#: src/pages/part/PartDetail.tsx:900 msgid "Stock History" msgstr "Lagerhistorikk" -#: lib/enums/ModelInformation.tsx:104 +#: lib/enums/ModelInformation.tsx:115 msgid "Stock Histories" msgstr "Lagerhistorikk" -#: lib/enums/ModelInformation.tsx:109 +#: lib/enums/ModelInformation.tsx:120 msgid "Build" msgstr "Produksjon" -#: lib/enums/ModelInformation.tsx:110 +#: lib/enums/ModelInformation.tsx:121 msgid "Builds" msgstr "Produksjoner" -#: lib/enums/ModelInformation.tsx:118 +#: lib/enums/ModelInformation.tsx:130 msgid "Build Line" msgstr "" -#: lib/enums/ModelInformation.tsx:119 +#: lib/enums/ModelInformation.tsx:131 msgid "Build Lines" msgstr "" -#: lib/enums/ModelInformation.tsx:126 +#: lib/enums/ModelInformation.tsx:138 msgid "Build Item" msgstr "" -#: lib/enums/ModelInformation.tsx:127 +#: lib/enums/ModelInformation.tsx:139 msgid "Build Items" msgstr "" -#: lib/enums/ModelInformation.tsx:132 -#: src/pages/company/CompanyDetail.tsx:340 +#: lib/enums/ModelInformation.tsx:144 +#: src/pages/company/CompanyDetail.tsx:345 #: src/tables/company/CompanyTable.tsx:47 #: src/tables/company/ContactTable.tsx:67 +#: src/tables/company/ParametricCompanyTable.tsx:18 msgid "Company" msgstr "Firma" -#: lib/enums/ModelInformation.tsx:133 +#: lib/enums/ModelInformation.tsx:145 msgid "Companies" msgstr "Firma" -#: lib/enums/ModelInformation.tsx:140 -#: src/pages/build/BuildDetail.tsx:316 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:253 -#: src/pages/sales/ReturnOrderDetail.tsx:231 -#: src/pages/sales/SalesOrderDetail.tsx:224 +#: lib/enums/ModelInformation.tsx:152 +#: src/pages/build/BuildDetail.tsx:317 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:254 +#: src/pages/sales/ReturnOrderDetail.tsx:232 +#: src/pages/sales/SalesOrderDetail.tsx:225 #: src/tables/ColumnRenderers.tsx:362 #: src/tables/Filter.tsx:286 #: src/tables/TableHoverCard.tsx:101 msgid "Project Code" msgstr "Prosjektkode" -#: lib/enums/ModelInformation.tsx:141 +#: lib/enums/ModelInformation.tsx:153 #: src/pages/Index/Settings/AdminCenter/Index.tsx:172 msgid "Project Codes" msgstr "Prosjektkoder" -#: lib/enums/ModelInformation.tsx:147 +#: lib/enums/ModelInformation.tsx:159 #: src/components/wizards/OrderPartsWizard.tsx:338 #: src/pages/part/pricing/PurchaseHistoryPanel.tsx:33 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:550 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:555 #: src/pages/stock/StockDetail.tsx:352 #: src/tables/part/PartPurchaseOrdersTable.tsx:32 #: src/tables/stock/StockItemTable.tsx:239 @@ -312,117 +338,117 @@ msgstr "Prosjektkoder" msgid "Purchase Order" msgstr "Innkjøpsordre" -#: lib/enums/ModelInformation.tsx:148 +#: lib/enums/ModelInformation.tsx:160 #: lib/enums/Roles.tsx:39 #: src/defaults/actions.tsx:104 -#: src/pages/Index/Settings/SystemSettings.tsx:283 -#: src/pages/company/CompanyDetail.tsx:203 -#: src/pages/company/SupplierPartDetail.tsx:266 -#: src/pages/part/PartDetail.tsx:875 -#: src/pages/purchasing/PurchasingIndex.tsx:60 +#: src/pages/Index/Settings/SystemSettings.tsx:289 +#: src/pages/company/CompanyDetail.tsx:204 +#: src/pages/company/SupplierPartDetail.tsx:267 +#: src/pages/part/PartDetail.tsx:864 +#: src/pages/purchasing/PurchasingIndex.tsx:66 msgid "Purchase Orders" msgstr "Innkjøpsordrer" -#: lib/enums/ModelInformation.tsx:156 +#: lib/enums/ModelInformation.tsx:169 msgid "Purchase Order Line" msgstr "Ordrelinje for innkjøpsordre" -#: lib/enums/ModelInformation.tsx:157 +#: lib/enums/ModelInformation.tsx:170 msgid "Purchase Order Lines" msgstr "Ordrelinjer for innkjøpsordre" -#: lib/enums/ModelInformation.tsx:162 -#: src/pages/build/BuildDetail.tsx:289 +#: lib/enums/ModelInformation.tsx:175 +#: src/pages/build/BuildDetail.tsx:290 #: src/pages/part/pricing/SaleHistoryPanel.tsx:24 -#: src/pages/sales/SalesOrderDetail.tsx:614 -#: src/pages/sales/SalesOrderShipmentDetail.tsx:105 -#: src/pages/sales/SalesOrderShipmentDetail.tsx:478 +#: src/pages/sales/SalesOrderDetail.tsx:619 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:103 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:446 #: src/pages/stock/StockDetail.tsx:361 #: src/tables/part/PartSalesAllocationsTable.tsx:41 #: src/tables/sales/SalesOrderAllocationTable.tsx:110 -#: src/tables/sales/SalesOrderShipmentTable.tsx:122 +#: src/tables/sales/SalesOrderShipmentTable.tsx:143 #: src/tables/stock/StockTrackingTable.tsx:131 msgid "Sales Order" msgstr "Salgsordre" -#: lib/enums/ModelInformation.tsx:163 +#: lib/enums/ModelInformation.tsx:176 #: lib/enums/Roles.tsx:43 #: src/defaults/actions.tsx:114 -#: src/pages/Index/Settings/SystemSettings.tsx:299 -#: src/pages/company/CompanyDetail.tsx:223 -#: src/pages/part/PartDetail.tsx:887 -#: src/pages/sales/SalesIndex.tsx:84 +#: src/pages/Index/Settings/SystemSettings.tsx:305 +#: src/pages/company/CompanyDetail.tsx:224 +#: src/pages/part/PartDetail.tsx:876 +#: src/pages/sales/SalesIndex.tsx:53 msgid "Sales Orders" msgstr "Salgsordrer" -#: lib/enums/ModelInformation.tsx:171 -#: src/pages/sales/SalesOrderShipmentDetail.tsx:477 +#: lib/enums/ModelInformation.tsx:185 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:445 msgid "Sales Order Shipment" msgstr "Salgsordreforsendelse" -#: lib/enums/ModelInformation.tsx:172 +#: lib/enums/ModelInformation.tsx:186 msgid "Sales Order Shipments" msgstr "Salgsordreforsendelser" -#: lib/enums/ModelInformation.tsx:179 -#: src/pages/sales/ReturnOrderDetail.tsx:549 +#: lib/enums/ModelInformation.tsx:194 +#: src/pages/sales/ReturnOrderDetail.tsx:554 #: src/tables/stock/StockTrackingTable.tsx:142 msgid "Return Order" msgstr "Returordre" -#: lib/enums/ModelInformation.tsx:180 +#: lib/enums/ModelInformation.tsx:195 #: lib/enums/Roles.tsx:41 #: src/defaults/actions.tsx:125 -#: src/pages/Index/Settings/SystemSettings.tsx:316 -#: src/pages/company/CompanyDetail.tsx:230 -#: src/pages/part/PartDetail.tsx:894 -#: src/pages/sales/SalesIndex.tsx:117 +#: src/pages/Index/Settings/SystemSettings.tsx:322 +#: src/pages/company/CompanyDetail.tsx:231 +#: src/pages/part/PartDetail.tsx:883 +#: src/pages/sales/SalesIndex.tsx:99 msgid "Return Orders" msgstr "Returordrer" -#: lib/enums/ModelInformation.tsx:188 +#: lib/enums/ModelInformation.tsx:204 msgid "Return Order Line Item" msgstr "" -#: lib/enums/ModelInformation.tsx:189 +#: lib/enums/ModelInformation.tsx:205 msgid "Return Order Line Items" msgstr "" -#: lib/enums/ModelInformation.tsx:194 +#: lib/enums/ModelInformation.tsx:210 #: src/tables/company/AddressTable.tsx:52 msgid "Address" msgstr "Adresse" -#: lib/enums/ModelInformation.tsx:195 -#: src/pages/company/CompanyDetail.tsx:264 +#: lib/enums/ModelInformation.tsx:211 +#: src/pages/company/CompanyDetail.tsx:265 msgid "Addresses" msgstr "Adresser" -#: lib/enums/ModelInformation.tsx:201 +#: lib/enums/ModelInformation.tsx:217 #: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:89 #: src/pages/core/UserDetail.tsx:135 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:229 -#: src/pages/sales/ReturnOrderDetail.tsx:207 -#: src/pages/sales/SalesOrderDetail.tsx:200 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:230 +#: src/pages/sales/ReturnOrderDetail.tsx:208 +#: src/pages/sales/SalesOrderDetail.tsx:201 msgid "Contact" msgstr "Kontakt" -#: lib/enums/ModelInformation.tsx:202 -#: src/pages/company/CompanyDetail.tsx:258 +#: lib/enums/ModelInformation.tsx:218 +#: src/pages/company/CompanyDetail.tsx:259 #: src/pages/core/CoreIndex.tsx:33 msgid "Contacts" msgstr "Kontakter" -#: lib/enums/ModelInformation.tsx:208 +#: lib/enums/ModelInformation.tsx:224 #: src/tables/ColumnRenderers.tsx:444 msgid "Owner" msgstr "Eier" -#: lib/enums/ModelInformation.tsx:209 +#: lib/enums/ModelInformation.tsx:225 msgid "Owners" msgstr "Eiere" -#: lib/enums/ModelInformation.tsx:215 +#: lib/enums/ModelInformation.tsx:231 #: src/pages/Auth/ChangePassword.tsx:36 #: src/pages/core/UserDetail.tsx:220 #: src/tables/ColumnRenderers.tsx:395 @@ -437,7 +463,7 @@ msgstr "Eiere" msgid "User" msgstr "Bruker" -#: lib/enums/ModelInformation.tsx:216 +#: lib/enums/ModelInformation.tsx:232 #: src/components/nav/NavigationDrawer.tsx:105 #: src/pages/Index/Settings/AdminCenter/UserManagementPanel.tsx:15 #: src/pages/core/CoreIndex.tsx:21 @@ -445,12 +471,12 @@ msgstr "Bruker" msgid "Users" msgstr "Brukere" -#: lib/enums/ModelInformation.tsx:222 +#: lib/enums/ModelInformation.tsx:238 #: src/pages/core/GroupDetail.tsx:78 msgid "Group" msgstr "" -#: lib/enums/ModelInformation.tsx:223 +#: lib/enums/ModelInformation.tsx:239 #: src/components/nav/NavigationDrawer.tsx:111 #: src/pages/Index/Settings/AdminCenter/UserManagementPanel.tsx:23 #: src/pages/core/CoreIndex.tsx:27 @@ -460,64 +486,64 @@ msgstr "" msgid "Groups" msgstr "Grupper" -#: lib/enums/ModelInformation.tsx:230 +#: lib/enums/ModelInformation.tsx:246 msgid "Import Session" msgstr "" -#: lib/enums/ModelInformation.tsx:231 +#: lib/enums/ModelInformation.tsx:247 msgid "Import Sessions" msgstr "" -#: lib/enums/ModelInformation.tsx:238 +#: lib/enums/ModelInformation.tsx:254 msgid "Label Template" msgstr "" -#: lib/enums/ModelInformation.tsx:239 +#: lib/enums/ModelInformation.tsx:255 #: src/pages/Index/Settings/AdminCenter/Index.tsx:209 msgid "Label Templates" msgstr "" -#: lib/enums/ModelInformation.tsx:246 +#: lib/enums/ModelInformation.tsx:262 msgid "Report Template" msgstr "" -#: lib/enums/ModelInformation.tsx:247 +#: lib/enums/ModelInformation.tsx:263 #: src/pages/Index/Settings/AdminCenter/Index.tsx:215 msgid "Report Templates" msgstr "" -#: lib/enums/ModelInformation.tsx:254 +#: lib/enums/ModelInformation.tsx:270 #: src/components/plugins/PluginDrawer.tsx:145 msgid "Plugin Configuration" msgstr "" -#: lib/enums/ModelInformation.tsx:255 +#: lib/enums/ModelInformation.tsx:271 msgid "Plugin Configurations" msgstr "" -#: lib/enums/ModelInformation.tsx:262 +#: lib/enums/ModelInformation.tsx:278 msgid "Content Type" msgstr "" -#: lib/enums/ModelInformation.tsx:263 +#: lib/enums/ModelInformation.tsx:279 msgid "Content Types" msgstr "" -#: lib/enums/ModelInformation.tsx:268 +#: lib/enums/ModelInformation.tsx:284 msgid "Selection List" msgstr "" -#: lib/enums/ModelInformation.tsx:269 -#: src/pages/Index/Settings/AdminCenter/PartParameterPanel.tsx:21 +#: lib/enums/ModelInformation.tsx:285 +#: src/pages/Index/Settings/AdminCenter/ParameterPanel.tsx:21 msgid "Selection Lists" msgstr "" -#: lib/enums/ModelInformation.tsx:275 +#: lib/enums/ModelInformation.tsx:291 #: src/components/barcodes/BarcodeInput.tsx:114 #: src/components/dashboard/DashboardLayout.tsx:281 #: src/components/editors/NotesEditor.tsx:74 #: src/components/editors/TemplateEditor/TemplateEditor.tsx:158 -#: src/components/forms/fields/ApiFormField.tsx:273 +#: src/components/forms/fields/ApiFormField.tsx:237 #: src/components/forms/fields/TableField.tsx:45 #: src/components/importer/ImportDataSelector.tsx:192 #: src/components/importer/ImporterColumnSelector.tsx:234 @@ -528,7 +554,7 @@ msgstr "" #: src/components/nav/SearchDrawer.tsx:572 #: src/components/settings/SettingList.tsx:139 #: src/components/wizards/ImportPartWizard.tsx:574 -#: src/components/wizards/ImportPartWizard.tsx:718 +#: src/components/wizards/ImportPartWizard.tsx:719 #: src/forms/BomForms.tsx:69 #: src/functions/auth.tsx:643 #: src/pages/ErrorPage.tsx:11 @@ -547,9 +573,9 @@ msgstr "" msgid "Error" msgstr "Feil" -#: lib/enums/ModelInformation.tsx:276 +#: lib/enums/ModelInformation.tsx:292 #: src/tables/machine/MachineListTable.tsx:402 -#: src/tables/machine/MachineTypeTable.tsx:299 +#: src/tables/machine/MachineTypeTable.tsx:297 msgid "Errors" msgstr "" @@ -559,10 +585,10 @@ msgstr "" #: lib/enums/Roles.tsx:33 #: src/defaults/actions.tsx:135 -#: src/pages/Index/Settings/SystemSettings.tsx:264 -#: src/pages/build/BuildIndex.tsx:75 -#: src/pages/part/PartDetail.tsx:904 -#: src/pages/sales/SalesOrderDetail.tsx:421 +#: src/pages/Index/Settings/SystemSettings.tsx:270 +#: src/pages/build/BuildIndex.tsx:67 +#: src/pages/part/PartDetail.tsx:893 +#: src/pages/sales/SalesOrderDetail.tsx:422 msgid "Build Orders" msgstr "Produksjonsordrer" @@ -639,39 +665,39 @@ msgstr "Skann eller skriv strekkodedata" msgid "Enter barcode data" msgstr "" -#: src/components/barcodes/BarcodeScanDialog.tsx:49 -#: src/components/buttons/ScanButton.tsx:15 +#: src/components/barcodes/BarcodeScanDialog.tsx:56 +#: src/components/buttons/ScanButton.tsx:27 #: src/components/nav/NavigationDrawer.tsx:122 -#: src/forms/PurchaseOrderForms.tsx:457 -#: src/forms/PurchaseOrderForms.tsx:563 +#: src/forms/PurchaseOrderForms.tsx:509 +#: src/forms/PurchaseOrderForms.tsx:615 msgid "Scan Barcode" msgstr "Skann strekkode" -#: src/components/barcodes/BarcodeScanDialog.tsx:105 +#: src/components/barcodes/BarcodeScanDialog.tsx:121 msgid "No matching item found" msgstr "" -#: src/components/barcodes/BarcodeScanDialog.tsx:134 +#: src/components/barcodes/BarcodeScanDialog.tsx:150 msgid "Barcode does not match the expected model type" msgstr "" -#: src/components/barcodes/BarcodeScanDialog.tsx:145 +#: src/components/barcodes/BarcodeScanDialog.tsx:161 #: src/components/editors/NotesEditor.tsx:84 #: src/components/editors/NotesEditor.tsx:118 -#: src/components/forms/ApiForm.tsx:465 +#: src/components/forms/ApiForm.tsx:484 #: src/components/wizards/ImportPartWizard.tsx:566 -#: src/components/wizards/ImportPartWizard.tsx:690 +#: src/components/wizards/ImportPartWizard.tsx:691 #: src/pages/Index/Settings/AdminCenter/CurrencyManagementPanel.tsx:45 #: src/tables/bom/BomTable.tsx:548 #: src/tables/settings/PendingTasksTable.tsx:68 msgid "Success" msgstr "Suksess" -#: src/components/barcodes/BarcodeScanDialog.tsx:151 +#: src/components/barcodes/BarcodeScanDialog.tsx:167 msgid "Failed to handle barcode" msgstr "" -#: src/components/barcodes/BarcodeScanDialog.tsx:167 +#: src/components/barcodes/BarcodeScanDialog.tsx:183 #: src/pages/Index/Scan.tsx:129 msgid "Failed to scan barcode" msgstr "" @@ -714,10 +740,10 @@ msgstr "" #: src/components/barcodes/QRCode.tsx:179 #: src/pages/part/PartDetail.tsx:521 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:222 -#: src/pages/sales/ReturnOrderDetail.tsx:188 -#: src/pages/sales/SalesOrderDetail.tsx:181 -#: src/pages/sales/SalesOrderShipmentDetail.tsx:122 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:223 +#: src/pages/sales/ReturnOrderDetail.tsx:189 +#: src/pages/sales/SalesOrderDetail.tsx:182 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:120 #: src/pages/stock/StockDetail.tsx:186 msgid "Link" msgstr "Lenke" @@ -728,7 +754,7 @@ msgstr "" #: src/components/barcodes/QRCode.tsx:205 #: src/components/items/ActionDropdown.tsx:192 -#: src/forms/PurchaseOrderForms.tsx:554 +#: src/forms/PurchaseOrderForms.tsx:606 msgid "Unlink Barcode" msgstr "Fjern strekkodekobling" @@ -829,14 +855,14 @@ msgstr "" #~ msgid "Scan QR code" #~ msgstr "Scan QR code" -#: src/components/buttons/ScanButton.tsx:19 -msgid "Open Barcode Scanner" -msgstr "" - #: src/components/buttons/ScanButton.tsx:20 #~ msgid "Open QR code scanner" #~ msgstr "Open QR code scanner" +#: src/components/buttons/ScanButton.tsx:32 +msgid "Open Barcode Scanner" +msgstr "" + #: src/components/buttons/SpotlightButton.tsx:12 msgid "Open spotlight" msgstr "" @@ -1059,7 +1085,7 @@ msgid "Show the number of sales orders which are assigned to you" msgstr "" #: src/components/dashboard/DashboardWidgetLibrary.tsx:129 -#: src/pages/sales/SalesIndex.tsx:105 +#: src/pages/sales/SalesIndex.tsx:87 msgid "Pending Shipments" msgstr "" @@ -1210,12 +1236,18 @@ msgid "Remove the associated image from this item?" msgstr "" #: src/components/details/DetailsImage.tsx:83 -#: src/forms/StockForms.tsx:888 +#: src/forms/StockForms.tsx:895 #: src/pages/Index/Settings/AccountSettings/MFASettings.tsx:324 #: src/pages/Index/Settings/AccountSettings/MFASettings.tsx:415 #: src/pages/Index/Settings/AccountSettings/MFASettings.tsx:884 #: src/pages/Index/Settings/AccountSettings/MFASettings.tsx:903 #: src/pages/Index/Settings/AccountSettings/SecurityContent.tsx:254 +#: src/tables/build/BuildAllocatedStockTable.tsx:178 +#: src/tables/build/BuildAllocatedStockTable.tsx:258 +#: src/tables/build/BuildLineTable.tsx:111 +#: src/tables/build/BuildLineTable.tsx:665 +#: src/tables/sales/SalesOrderAllocationTable.tsx:224 +#: src/tables/sales/SalesOrderAllocationTable.tsx:247 msgid "Remove" msgstr "Fjern" @@ -1241,12 +1273,12 @@ msgid "Upload Error" msgstr "Opplastningsfeil" #: src/components/details/DetailsImage.tsx:250 -#: src/components/forms/fields/TextField.tsx:65 +#: src/components/forms/fields/AutoFillRightSection.tsx:34 msgid "Clear" msgstr "" #: src/components/details/DetailsImage.tsx:256 -#: src/components/forms/ApiForm.tsx:677 +#: src/components/forms/ApiForm.tsx:696 #: src/contexts/ThemeContext.tsx:44 #: src/pages/Index/Settings/AccountSettings/MFASettings.tsx:149 #: src/pages/Index/Settings/AccountSettings/MFASettings.tsx:568 @@ -1499,8 +1531,8 @@ msgstr "" msgid "A server error occurred" msgstr "" -#: src/components/forms/ApiForm.tsx:103 -#: src/components/forms/ApiForm.tsx:594 +#: src/components/forms/ApiForm.tsx:107 +#: src/components/forms/ApiForm.tsx:613 msgid "Form Error" msgstr "Skjemafeil" @@ -1508,11 +1540,11 @@ msgstr "Skjemafeil" #~ msgid "Form Errors Exist" #~ msgstr "Form Errors Exist" -#: src/components/forms/ApiForm.tsx:604 +#: src/components/forms/ApiForm.tsx:623 msgid "Errors exist for one or more form fields" msgstr "" -#: src/components/forms/ApiForm.tsx:715 +#: src/components/forms/ApiForm.tsx:734 #: src/hooks/UseForm.tsx:133 #: src/tables/plugin/PluginListTable.tsx:204 msgid "Update" @@ -1698,15 +1730,14 @@ msgstr "Vert" #: src/components/forms/InstanceOptions.tsx:124 #: src/components/plugins/PluginDrawer.tsx:68 #: src/pages/Index/Settings/AdminCenter/UnitManagementPanel.tsx:19 -#: src/pages/part/CategoryDetail.tsx:88 +#: src/pages/part/CategoryDetail.tsx:91 #: src/pages/part/PartDetail.tsx:446 #: src/pages/stock/LocationDetail.tsx:82 #: src/tables/machine/MachineTypeTable.tsx:67 -#: src/tables/machine/MachineTypeTable.tsx:151 -#: src/tables/machine/MachineTypeTable.tsx:254 -#: src/tables/machine/MachineTypeTable.tsx:357 +#: src/tables/machine/MachineTypeTable.tsx:149 +#: src/tables/machine/MachineTypeTable.tsx:252 +#: src/tables/machine/MachineTypeTable.tsx:355 #: src/tables/plugin/PluginErrorTable.tsx:33 -#: src/tables/purchasing/ManufacturerPartParameterTable.tsx:36 #: src/tables/settings/ApiTokenTable.tsx:57 #: src/tables/settings/GroupTable.tsx:95 #: src/tables/settings/GroupTable.tsx:148 @@ -1769,7 +1800,7 @@ msgstr "" #~ msgstr "State: <0>worker ({0}), <1>plugins{1}" #: src/components/forms/InstanceOptions.tsx:118 -#: src/pages/Index/Settings/SystemSettings.tsx:45 +#: src/pages/Index/Settings/SystemSettings.tsx:46 msgid "Server" msgstr "Server" @@ -1793,6 +1824,8 @@ msgid "Plugins" msgstr "Utvidelser" #: src/components/forms/InstanceOptions.tsx:143 +#: src/tables/general/ParameterTemplateTable.tsx:153 +#: src/tables/general/ParameterTemplateTable.tsx:188 #: src/tables/part/PartTestTemplateTable.tsx:117 #: src/tables/settings/TemplateTable.tsx:251 #: src/tables/settings/TemplateTable.tsx:362 @@ -1817,10 +1850,14 @@ msgstr "Stoppet" msgid "Running" msgstr "" -#: src/components/forms/fields/ApiFormField.tsx:233 +#: src/components/forms/fields/ApiFormField.tsx:197 msgid "Select file to upload" msgstr "" +#: src/components/forms/fields/AutoFillRightSection.tsx:47 +msgid "Accept suggested value" +msgstr "" + #: src/components/forms/fields/DateField.tsx:76 msgid "Select date" msgstr "" @@ -1853,13 +1890,13 @@ msgstr "" msgid "{0} icons" msgstr "" -#: src/components/forms/fields/RelatedModelField.tsx:409 +#: src/components/forms/fields/RelatedModelField.tsx:480 #: src/components/modals/AboutInvenTreeModal.tsx:96 #: src/pages/Index/Settings/AccountSettings/SecurityContent.tsx:383 msgid "Loading" msgstr "Laster" -#: src/components/forms/fields/RelatedModelField.tsx:411 +#: src/components/forms/fields/RelatedModelField.tsx:482 msgid "No results found" msgstr "Ingen resultater funnet" @@ -1875,10 +1912,6 @@ msgstr "" msgid "Add new row" msgstr "" -#: src/components/forms/fields/TextField.tsx:82 -msgid "Accept suggested value" -msgstr "" - #: src/components/images/DetailsImage.tsx:252 #~ msgid "Select image" #~ msgstr "Select image" @@ -2036,7 +2069,7 @@ msgstr "" #: src/components/importer/ImporterDrawer.tsx:109 #: src/components/modals/AboutInvenTreeModal.tsx:205 #: src/components/modals/ServerInfoModal.tsx:134 -#: src/components/wizards/ImportPartWizard.tsx:772 +#: src/components/wizards/ImportPartWizard.tsx:773 #: src/forms/BomForms.tsx:132 #: src/pages/Index/Settings/AccountSettings/MFASettings.tsx:685 msgid "Close" @@ -2199,7 +2232,7 @@ msgid "Change" msgstr "Endre" #: src/components/items/RoleTable.tsx:150 -#: src/forms/StockForms.tsx:927 +#: src/forms/StockForms.tsx:941 #: src/tables/stock/StockItemTestResultTable.tsx:367 msgid "Add" msgstr "Legg til" @@ -2222,11 +2255,11 @@ msgstr "" #: src/components/items/TransferList.tsx:161 #: src/components/render/Stock.tsx:102 -#: src/pages/part/PartDetail.tsx:994 +#: src/pages/part/PartDetail.tsx:1009 #: src/pages/stock/StockDetail.tsx:265 #: src/pages/stock/StockDetail.tsx:942 -#: src/tables/build/BuildAllocatedStockTable.tsx:135 -#: src/tables/build/BuildLineTable.tsx:192 +#: src/tables/build/BuildAllocatedStockTable.tsx:132 +#: src/tables/build/BuildLineTable.tsx:193 #: src/tables/part/PartTable.tsx:137 #: src/tables/stock/StockItemTable.tsx:182 #: src/tables/stock/StockItemTable.tsx:343 @@ -2373,7 +2406,7 @@ msgid "Database" msgstr "Database" #: src/components/modals/ServerInfoModal.tsx:49 -#: src/components/nav/Alerts.tsx:118 +#: src/components/nav/Alerts.tsx:120 msgid "Debug Mode" msgstr "Feilsøkingsmodus" @@ -2414,7 +2447,7 @@ msgid "Issues detected" msgstr "Problemer oppdaget" #: src/components/modals/ServerInfoModal.tsx:102 -#: src/components/nav/Alerts.tsx:125 +#: src/components/nav/Alerts.tsx:127 msgid "Background Worker" msgstr "Bakgrunnsarbeider" @@ -2436,7 +2469,7 @@ msgstr "E-Post-Innstillinger" #~ msgstr "Email settings not configured" #: src/components/modals/ServerInfoModal.tsx:120 -#: src/components/nav/Alerts.tsx:141 +#: src/components/nav/Alerts.tsx:143 msgid "Email settings not configured." msgstr "" @@ -2444,43 +2477,47 @@ msgstr "" msgid "Alerts" msgstr "" -#: src/components/nav/Alerts.tsx:120 +#: src/components/nav/Alerts.tsx:97 +msgid "No issues detected" +msgstr "" + +#: src/components/nav/Alerts.tsx:122 msgid "The server is running in debug mode." msgstr "" -#: src/components/nav/Alerts.tsx:127 +#: src/components/nav/Alerts.tsx:129 msgid "The background worker process is not running." msgstr "" -#: src/components/nav/Alerts.tsx:132 +#: src/components/nav/Alerts.tsx:134 msgid "Server Restart" msgstr "" -#: src/components/nav/Alerts.tsx:134 +#: src/components/nav/Alerts.tsx:136 msgid "The server requires a restart to apply changes." msgstr "" -#: src/components/nav/Alerts.tsx:139 +#: src/components/nav/Alerts.tsx:141 msgid "Email settings" msgstr "" -#: src/components/nav/Alerts.tsx:146 +#: src/components/nav/Alerts.tsx:148 msgid "Database Migrations" msgstr "" -#: src/components/nav/Alerts.tsx:148 +#: src/components/nav/Alerts.tsx:150 msgid "There are pending database migrations." msgstr "" -#: src/components/nav/Alerts.tsx:163 +#: src/components/nav/Alerts.tsx:165 msgid "Learn more about {code}" msgstr "" #: src/components/nav/Header.tsx:188 #: src/components/nav/NavigationDrawer.tsx:134 #: src/components/nav/NotificationDrawer.tsx:181 -#: src/pages/Index/Settings/SystemSettings.tsx:121 -#: src/pages/Index/Settings/UserSettings.tsx:106 +#: src/pages/Index/Settings/SystemSettings.tsx:122 +#: src/pages/Index/Settings/UserSettings.tsx:107 #: src/pages/Notifications.tsx:45 #: src/pages/Notifications.tsx:130 msgid "Notifications" @@ -2511,8 +2548,8 @@ msgstr "Innstillinger" #: src/components/nav/NavigationDrawer.tsx:140 #: src/components/nav/SettingsHeader.tsx:40 #: src/defaults/actions.tsx:92 -#: src/pages/Index/Settings/UserSettings.tsx:141 -#: src/pages/Index/Settings/UserSettings.tsx:145 +#: src/pages/Index/Settings/UserSettings.tsx:142 +#: src/pages/Index/Settings/UserSettings.tsx:146 msgid "User Settings" msgstr "" @@ -2529,8 +2566,8 @@ msgstr "" #: src/components/nav/NavigationDrawer.tsx:146 #: src/components/nav/SettingsHeader.tsx:41 #: src/defaults/actions.tsx:144 -#: src/pages/Index/Settings/SystemSettings.tsx:348 -#: src/pages/Index/Settings/SystemSettings.tsx:353 +#: src/pages/Index/Settings/SystemSettings.tsx:354 +#: src/pages/Index/Settings/SystemSettings.tsx:359 msgid "System Settings" msgstr "Systeminnstillinger" @@ -2577,11 +2614,11 @@ msgstr "Logg ut" #: src/components/nav/NavigationDrawer.tsx:77 #: src/components/render/Part.tsx:36 -#: src/components/wizards/ImportPartWizard.tsx:807 +#: src/components/wizards/ImportPartWizard.tsx:808 #: src/defaults/links.tsx:42 #: src/forms/StockForms.tsx:794 -#: src/pages/Index/Settings/SystemSettings.tsx:224 -#: src/pages/part/PartDetail.tsx:804 +#: src/pages/Index/Settings/SystemSettings.tsx:230 +#: src/pages/part/PartDetail.tsx:793 #: src/pages/stock/LocationDetail.tsx:390 #: src/pages/stock/LocationDetail.tsx:420 #: src/pages/stock/StockDetail.tsx:642 @@ -2591,29 +2628,29 @@ msgstr "Lagerbeholdning" #: src/components/nav/NavigationDrawer.tsx:84 #: src/defaults/links.tsx:48 -#: src/pages/build/BuildDetail.tsx:748 -#: src/pages/build/BuildIndex.tsx:102 +#: src/pages/build/BuildDetail.tsx:753 +#: src/pages/build/BuildIndex.tsx:101 msgid "Manufacturing" msgstr "" #: src/components/nav/NavigationDrawer.tsx:91 #: src/defaults/links.tsx:54 #: src/pages/company/ManufacturerDetail.tsx:9 -#: src/pages/company/ManufacturerPartDetail.tsx:276 +#: src/pages/company/ManufacturerPartDetail.tsx:267 #: src/pages/company/SupplierDetail.tsx:9 -#: src/pages/company/SupplierPartDetail.tsx:360 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:553 -#: src/pages/purchasing/PurchasingIndex.tsx:122 +#: src/pages/company/SupplierPartDetail.tsx:365 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:558 +#: src/pages/purchasing/PurchasingIndex.tsx:212 msgid "Purchasing" msgstr "Innkjøp" #: src/components/nav/NavigationDrawer.tsx:98 #: src/defaults/links.tsx:60 #: src/pages/company/CustomerDetail.tsx:9 -#: src/pages/sales/ReturnOrderDetail.tsx:554 -#: src/pages/sales/SalesIndex.tsx:153 -#: src/pages/sales/SalesOrderDetail.tsx:619 -#: src/pages/sales/SalesOrderShipmentDetail.tsx:480 +#: src/pages/sales/ReturnOrderDetail.tsx:559 +#: src/pages/sales/SalesIndex.tsx:168 +#: src/pages/sales/SalesOrderDetail.tsx:624 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:448 msgid "Sales" msgstr "Salg" @@ -2667,21 +2704,21 @@ msgid "Remove search group" msgstr "" #: src/components/nav/SearchDrawer.tsx:288 -#: src/pages/company/ManufacturerPartDetail.tsx:192 -#: src/pages/part/PartDetail.tsx:862 +#: src/pages/company/ManufacturerPartDetail.tsx:179 +#: src/pages/part/PartDetail.tsx:851 #: src/pages/part/PartSupplierDetail.tsx:15 -#: src/pages/purchasing/PurchasingIndex.tsx:81 +#: src/pages/purchasing/PurchasingIndex.tsx:100 msgid "Suppliers" msgstr "Leverandører" #: src/components/nav/SearchDrawer.tsx:298 #: src/pages/part/PartSupplierDetail.tsx:23 -#: src/pages/purchasing/PurchasingIndex.tsx:98 +#: src/pages/purchasing/PurchasingIndex.tsx:149 msgid "Manufacturers" msgstr "Produsenter" #: src/components/nav/SearchDrawer.tsx:308 -#: src/pages/sales/SalesIndex.tsx:138 +#: src/pages/sales/SalesIndex.tsx:133 msgid "Customers" msgstr "Kunder" @@ -2772,21 +2809,21 @@ msgstr "" #: src/components/plugins/PluginDrawer.tsx:73 #: src/forms/selectionListFields.tsx:102 -#: src/pages/build/BuildDetail.tsx:250 -#: src/pages/company/CompanyDetail.tsx:93 -#: src/pages/company/ManufacturerPartDetail.tsx:93 -#: src/pages/company/ManufacturerPartDetail.tsx:120 -#: src/pages/company/SupplierPartDetail.tsx:145 -#: src/pages/part/CategoryDetail.tsx:108 +#: src/pages/build/BuildDetail.tsx:251 +#: src/pages/company/CompanyDetail.tsx:94 +#: src/pages/company/ManufacturerPartDetail.tsx:92 +#: src/pages/company/ManufacturerPartDetail.tsx:119 +#: src/pages/company/SupplierPartDetail.tsx:146 +#: src/pages/part/CategoryDetail.tsx:111 #: src/pages/part/PartDetail.tsx:460 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:162 -#: src/pages/sales/ReturnOrderDetail.tsx:129 -#: src/pages/sales/SalesOrderDetail.tsx:119 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:163 +#: src/pages/sales/ReturnOrderDetail.tsx:130 +#: src/pages/sales/SalesOrderDetail.tsx:120 #: src/pages/stock/LocationDetail.tsx:102 #: src/tables/ColumnRenderers.tsx:278 -#: src/tables/build/BuildAllocatedStockTable.tsx:91 -#: src/tables/machine/MachineTypeTable.tsx:161 -#: src/tables/machine/MachineTypeTable.tsx:257 +#: src/tables/build/BuildAllocatedStockTable.tsx:88 +#: src/tables/machine/MachineTypeTable.tsx:159 +#: src/tables/machine/MachineTypeTable.tsx:255 #: src/tables/plugin/PluginListTable.tsx:110 msgid "Description" msgstr "Beskrivelse" @@ -2814,7 +2851,7 @@ msgstr "Dato" #: src/tables/company/CompanyTable.tsx:91 #: src/tables/machine/MachineListTable.tsx:384 #: src/tables/machine/MachineListTable.tsx:799 -#: src/tables/part/ParametricPartTable.tsx:354 +#: src/tables/part/ParametricPartTable.tsx:19 #: src/tables/part/PartTable.tsx:197 #: src/tables/part/PartVariantTable.tsx:15 #: src/tables/plugin/PluginListTable.tsx:96 @@ -2836,8 +2873,8 @@ msgid "Installation Path" msgstr "" #: src/components/plugins/PluginDrawer.tsx:116 -#: src/tables/machine/MachineTypeTable.tsx:184 -#: src/tables/machine/MachineTypeTable.tsx:293 +#: src/tables/machine/MachineTypeTable.tsx:182 +#: src/tables/machine/MachineTypeTable.tsx:291 #: src/tables/plugin/PluginListTable.tsx:101 #: src/tables/plugin/PluginListTable.tsx:417 msgid "Builtin" @@ -2849,8 +2886,8 @@ msgstr "" #: src/components/plugins/PluginDrawer.tsx:133 #: src/pages/Index/Settings/AdminCenter/PluginManagementPanel.tsx:55 -#: src/pages/Index/Settings/SystemSettings.tsx:331 -#: src/pages/Index/Settings/UserSettings.tsx:128 +#: src/pages/Index/Settings/SystemSettings.tsx:337 +#: src/pages/Index/Settings/UserSettings.tsx:129 msgid "Plugin Settings" msgstr "Innstillinger for Utvidelser" @@ -2911,7 +2948,7 @@ msgstr "" #~ msgid "Unknown model: {model}" #~ msgstr "Unknown model: {model}" -#: src/components/render/Instance.tsx:249 +#: src/components/render/Instance.tsx:247 msgid "Unknown model: {model_name}" msgstr "" @@ -2939,10 +2976,10 @@ msgstr "Forsendelse" #: src/components/render/Part.tsx:28 #: src/components/render/Plugin.tsx:17 #: src/components/render/User.tsx:37 -#: src/pages/company/CompanyDetail.tsx:323 -#: src/pages/company/SupplierPartDetail.tsx:373 +#: src/pages/company/CompanyDetail.tsx:328 +#: src/pages/company/SupplierPartDetail.tsx:378 #: src/pages/core/UserDetail.tsx:211 -#: src/pages/part/PartDetail.tsx:1027 +#: src/pages/part/PartDetail.tsx:1048 #: src/tables/ColumnRenderers.tsx:410 msgid "Inactive" msgstr "" @@ -2962,11 +2999,11 @@ msgstr "Ingen lagerbeholdning" #: src/components/render/Part.tsx:47 #: src/components/wizards/OrderPartsWizard.tsx:135 -#: src/pages/company/SupplierPartDetail.tsx:197 -#: src/pages/company/SupplierPartDetail.tsx:394 -#: src/pages/part/PartDetail.tsx:1015 +#: src/pages/company/SupplierPartDetail.tsx:198 +#: src/pages/company/SupplierPartDetail.tsx:399 +#: src/pages/part/PartDetail.tsx:1030 #: src/tables/bom/BomTable.tsx:444 -#: src/tables/build/BuildLineTable.tsx:222 +#: src/tables/build/BuildLineTable.tsx:223 #: src/tables/part/PartTable.tsx:108 msgid "On Order" msgstr "I bestilling" @@ -2974,9 +3011,9 @@ msgstr "I bestilling" #: src/components/render/Part.tsx:55 #: src/components/wizards/OrderPartsWizard.tsx:141 #: src/pages/part/PartDetail.tsx:587 -#: src/pages/part/PartDetail.tsx:1021 +#: src/pages/part/PartDetail.tsx:1036 #: src/pages/stock/StockDetail.tsx:925 -#: src/tables/part/PartTestResultTable.tsx:297 +#: src/tables/part/PartTestResultTable.tsx:305 #: src/tables/stock/StockItemTable.tsx:359 msgid "In Production" msgstr "Under produksjon" @@ -2987,7 +3024,7 @@ msgid "Details" msgstr "Detaljer" #: src/components/render/Part.tsx:112 -#: src/components/wizards/ImportPartWizard.tsx:806 +#: src/components/wizards/ImportPartWizard.tsx:807 #: src/pages/part/PartDetail.tsx:487 #: src/tables/ColumnRenderers.tsx:233 #: src/tables/ColumnRenderers.tsx:242 @@ -3000,16 +3037,16 @@ msgstr "Kategori" #: src/components/render/Stock.tsx:114 #: src/components/render/Stock.tsx:132 #: src/forms/BuildForms.tsx:795 -#: src/forms/PurchaseOrderForms.tsx:595 +#: src/forms/PurchaseOrderForms.tsx:647 #: src/forms/StockForms.tsx:792 #: src/forms/StockForms.tsx:839 -#: src/forms/StockForms.tsx:885 -#: src/forms/StockForms.tsx:924 -#: src/forms/StockForms.tsx:960 -#: src/forms/StockForms.tsx:1003 -#: src/forms/StockForms.tsx:1047 -#: src/forms/StockForms.tsx:1095 -#: src/forms/StockForms.tsx:1139 +#: src/forms/StockForms.tsx:892 +#: src/forms/StockForms.tsx:938 +#: src/forms/StockForms.tsx:976 +#: src/forms/StockForms.tsx:1019 +#: src/forms/StockForms.tsx:1063 +#: src/forms/StockForms.tsx:1111 +#: src/forms/StockForms.tsx:1155 #: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:88 #: src/pages/core/UserDetail.tsx:158 #: src/pages/stock/StockDetail.tsx:298 @@ -3023,7 +3060,7 @@ msgstr "" #: src/components/render/Stock.tsx:99 #: src/pages/stock/StockDetail.tsx:198 #: src/pages/stock/StockDetail.tsx:930 -#: src/tables/build/BuildAllocatedStockTable.tsx:121 +#: src/tables/build/BuildAllocatedStockTable.tsx:118 #: src/tables/build/BuildOutputTable.tsx:107 #: src/tables/sales/SalesOrderAllocationTable.tsx:142 msgid "Serial Number" @@ -3034,9 +3071,9 @@ msgstr "Serienummer" #: src/forms/BuildForms.tsx:240 #: src/forms/BuildForms.tsx:634 #: src/forms/BuildForms.tsx:797 -#: src/forms/PurchaseOrderForms.tsx:801 +#: src/forms/PurchaseOrderForms.tsx:853 #: src/forms/ReturnOrderForms.tsx:243 -#: src/forms/SalesOrderForms.tsx:308 +#: src/forms/SalesOrderForms.tsx:387 #: src/forms/StockForms.tsx:841 #: src/pages/part/PartStockHistoryDetail.tsx:56 #: src/pages/part/PartStockHistoryDetail.tsx:210 @@ -3046,9 +3083,9 @@ msgstr "Serienummer" #: src/pages/part/pricing/PriceBreakPanel.tsx:172 #: src/pages/stock/StockDetail.tsx:258 #: src/pages/stock/StockDetail.tsx:936 -#: src/tables/build/BuildLineTable.tsx:86 +#: src/tables/build/BuildLineTable.tsx:83 #: src/tables/part/PartPurchaseOrdersTable.tsx:94 -#: src/tables/part/PartTestResultTable.tsx:269 +#: src/tables/part/PartTestResultTable.tsx:277 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:175 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:206 #: src/tables/purchasing/SupplierPriceBreakTable.tsx:69 @@ -3063,14 +3100,14 @@ msgstr "Antall" #: src/forms/BuildForms.tsx:474 #: src/forms/StockForms.tsx:793 #: src/forms/StockForms.tsx:840 -#: src/forms/StockForms.tsx:886 -#: src/forms/StockForms.tsx:925 -#: src/forms/StockForms.tsx:961 -#: src/forms/StockForms.tsx:1004 -#: src/forms/StockForms.tsx:1048 -#: src/forms/StockForms.tsx:1096 -#: src/forms/StockForms.tsx:1140 -#: src/tables/build/BuildLineTable.tsx:96 +#: src/forms/StockForms.tsx:893 +#: src/forms/StockForms.tsx:939 +#: src/forms/StockForms.tsx:977 +#: src/forms/StockForms.tsx:1020 +#: src/forms/StockForms.tsx:1064 +#: src/forms/StockForms.tsx:1112 +#: src/forms/StockForms.tsx:1156 +#: src/tables/build/BuildLineTable.tsx:93 msgid "Batch" msgstr "" @@ -3306,10 +3343,6 @@ msgstr "" #~ msgid "Part category updated" #~ msgstr "Part category updated" -#: src/components/tables/part/PartParameterTable.tsx:41 -#~ msgid "Parameter" -#~ msgstr "Parameter" - #: src/components/tables/part/PartParameterTable.tsx:114 #~ msgid "Part parameter updated" #~ msgstr "Part parameter updated" @@ -3571,15 +3604,16 @@ msgid "Already Imported" msgstr "" #: src/components/wizards/ImportPartWizard.tsx:205 -#: src/pages/company/CompanyDetail.tsx:136 +#: src/pages/company/CompanyDetail.tsx:137 #: src/pages/company/SupplierDetail.tsx:8 -#: src/pages/company/SupplierPartDetail.tsx:130 -#: src/pages/company/SupplierPartDetail.tsx:235 -#: src/pages/company/SupplierPartDetail.tsx:364 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:156 +#: src/pages/company/SupplierPartDetail.tsx:131 +#: src/pages/company/SupplierPartDetail.tsx:236 +#: src/pages/company/SupplierPartDetail.tsx:369 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:157 #: src/tables/Filter.tsx:360 #: src/tables/company/CompanyTable.tsx:96 #: src/tables/part/PartPurchaseOrdersTable.tsx:43 +#: src/tables/purchasing/PurchaseOrderParametricTable.tsx:34 #: src/tables/purchasing/PurchaseOrderTable.tsx:109 #: src/tables/purchasing/SupplierPriceBreakTable.tsx:40 msgid "Supplier" @@ -3648,7 +3682,7 @@ msgid "Next" msgstr "" #: src/components/wizards/ImportPartWizard.tsx:540 -#: src/pages/part/PartDetail.tsx:1046 +#: src/pages/part/PartDetail.tsx:1067 #: src/tables/part/PartTable.tsx:408 msgid "Edit Part" msgstr "Rediger del" @@ -3669,28 +3703,28 @@ msgstr "" msgid "Import" msgstr "" -#: src/components/wizards/ImportPartWizard.tsx:691 +#: src/components/wizards/ImportPartWizard.tsx:692 msgid "Parameters created successfully!" msgstr "" -#: src/components/wizards/ImportPartWizard.tsx:719 +#: src/components/wizards/ImportPartWizard.tsx:720 msgid "Failed to create parameters, please fix the errors and try again" msgstr "" #. placeholder {0}: supplierPart?.supplier -#: src/components/wizards/ImportPartWizard.tsx:739 +#: src/components/wizards/ImportPartWizard.tsx:740 msgid "Part imported successfully from supplier {0}." msgstr "" -#: src/components/wizards/ImportPartWizard.tsx:752 +#: src/components/wizards/ImportPartWizard.tsx:753 msgid "Open Part" msgstr "" -#: src/components/wizards/ImportPartWizard.tsx:759 +#: src/components/wizards/ImportPartWizard.tsx:760 msgid "Open Supplier Part" msgstr "" -#: src/components/wizards/ImportPartWizard.tsx:766 +#: src/components/wizards/ImportPartWizard.tsx:767 msgid "Open Manufacturer Part" msgstr "" @@ -3699,25 +3733,19 @@ msgstr "" #~ msgid "Import Part" #~ msgstr "Import Part" -#: src/components/wizards/ImportPartWizard.tsx:802 +#: src/components/wizards/ImportPartWizard.tsx:803 msgid "Import Supplier Part" msgstr "" -#: src/components/wizards/ImportPartWizard.tsx:804 +#: src/components/wizards/ImportPartWizard.tsx:805 msgid "Search Supplier Part" msgstr "" -#: src/components/wizards/ImportPartWizard.tsx:806 -#: src/pages/company/ManufacturerPartDetail.tsx:166 -#: src/pages/part/PartDetail.tsx:793 -msgid "Parameters" -msgstr "Parametere" - -#: src/components/wizards/ImportPartWizard.tsx:806 +#: src/components/wizards/ImportPartWizard.tsx:807 msgid "Confirm import" msgstr "" -#: src/components/wizards/ImportPartWizard.tsx:808 +#: src/components/wizards/ImportPartWizard.tsx:809 msgid "Done" msgstr "" @@ -3738,24 +3766,24 @@ msgid "Sales Requirements" msgstr "" #: src/components/wizards/OrderPartsWizard.tsx:129 -#: src/forms/StockForms.tsx:887 -#: src/forms/StockForms.tsx:926 -#: src/forms/StockForms.tsx:962 -#: src/forms/StockForms.tsx:1005 -#: src/forms/StockForms.tsx:1049 -#: src/forms/StockForms.tsx:1097 -#: src/forms/StockForms.tsx:1141 -#: src/pages/company/SupplierPartDetail.tsx:190 -#: src/pages/company/SupplierPartDetail.tsx:378 +#: src/forms/StockForms.tsx:894 +#: src/forms/StockForms.tsx:940 +#: src/forms/StockForms.tsx:978 +#: src/forms/StockForms.tsx:1021 +#: src/forms/StockForms.tsx:1065 +#: src/forms/StockForms.tsx:1113 +#: src/forms/StockForms.tsx:1157 +#: src/pages/company/SupplierPartDetail.tsx:191 +#: src/pages/company/SupplierPartDetail.tsx:383 #: src/pages/part/PartDetail.tsx:534 -#: src/pages/part/PartDetail.tsx:984 +#: src/pages/part/PartDetail.tsx:999 #: src/tables/Filter.tsx:92 #: src/tables/purchasing/SupplierPartTable.tsx:230 msgid "In Stock" msgstr "På lager" #: src/components/wizards/OrderPartsWizard.tsx:146 -#: src/tables/build/BuildLineTable.tsx:404 +#: src/tables/build/BuildLineTable.tsx:405 msgid "Required Quantity" msgstr "" @@ -3847,7 +3875,7 @@ msgid "Please correct the errors in the selected parts" msgstr "" #: src/components/wizards/OrderPartsWizard.tsx:587 -#: src/tables/build/BuildLineTable.tsx:815 +#: src/tables/build/BuildLineTable.tsx:822 #: src/tables/part/PartTable.tsx:522 #: src/tables/sales/SalesOrderLineItemTable.tsx:370 msgid "Order Parts" @@ -4349,9 +4377,9 @@ msgstr "" #: src/forms/BuildForms.tsx:333 #: src/forms/BuildForms.tsx:408 #: src/forms/BuildForms.tsx:685 -#: src/tables/build/BuildAllocatedStockTable.tsx:150 +#: src/tables/build/BuildAllocatedStockTable.tsx:147 #: src/tables/build/BuildOutputTable.tsx:582 -#: src/tables/part/PartTestResultTable.tsx:272 +#: src/tables/part/PartTestResultTable.tsx:280 msgid "Build Output" msgstr "" @@ -4362,22 +4390,22 @@ msgstr "" #: src/forms/BuildForms.tsx:336 #: src/forms/BuildForms.tsx:411 #: src/forms/BuildForms.tsx:475 -#: src/forms/PurchaseOrderForms.tsx:717 +#: src/forms/PurchaseOrderForms.tsx:769 #: src/forms/ReturnOrderForms.tsx:197 #: src/forms/ReturnOrderForms.tsx:244 #: src/forms/StockForms.tsx:712 #: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:87 -#: src/pages/build/BuildDetail.tsx:222 +#: src/pages/build/BuildDetail.tsx:223 #: src/pages/core/UserDetail.tsx:151 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:168 -#: src/pages/sales/ReturnOrderDetail.tsx:135 -#: src/pages/sales/SalesOrderDetail.tsx:125 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:169 +#: src/pages/sales/ReturnOrderDetail.tsx:136 +#: src/pages/sales/SalesOrderDetail.tsx:126 #: src/pages/stock/StockDetail.tsx:170 #: src/tables/Filter.tsx:274 #: src/tables/build/BuildOutputTable.tsx:404 #: src/tables/machine/MachineListTable.tsx:387 #: src/tables/part/PartPurchaseOrdersTable.tsx:38 -#: src/tables/part/PartTestResultTable.tsx:309 +#: src/tables/part/PartTestResultTable.tsx:317 #: src/tables/sales/ReturnOrderLineItemTable.tsx:138 #: src/tables/sales/ReturnOrderLineItemTable.tsx:176 #: src/tables/settings/CustomStateTable.tsx:79 @@ -4443,18 +4471,19 @@ msgid "Build outputs have been cancelled" msgstr "" #: src/forms/BuildForms.tsx:631 -#: src/pages/build/BuildDetail.tsx:207 -#: src/pages/company/ManufacturerPartDetail.tsx:85 -#: src/pages/company/SupplierPartDetail.tsx:96 +#: src/pages/build/BuildDetail.tsx:208 +#: src/pages/company/ManufacturerPartDetail.tsx:84 +#: src/pages/company/SupplierPartDetail.tsx:97 #: src/pages/part/PartDetail.tsx:453 #: src/pages/stock/StockDetail.tsx:153 #: src/tables/bom/BomTable.tsx:134 #: src/tables/bom/UsedInTable.tsx:40 -#: src/tables/build/BuildAllocatedStockTable.tsx:108 -#: src/tables/build/BuildLineTable.tsx:336 +#: src/tables/build/BuildAllocatedStockTable.tsx:105 +#: src/tables/build/BuildLineTable.tsx:337 #: src/tables/build/BuildOrderTable.tsx:79 #: src/tables/part/PartSalesAllocationsTable.tsx:61 #: src/tables/part/RelatedPartTable.tsx:73 +#: src/tables/purchasing/ManufacturerPartParametricTable.tsx:21 #: src/tables/purchasing/ManufacturerPartTable.tsx:69 #: src/tables/purchasing/SupplierPartTable.tsx:70 #: src/tables/sales/SalesOrderAllocationTable.tsx:135 @@ -4466,47 +4495,47 @@ msgstr "IPN" #: src/forms/BuildForms.tsx:632 #: src/forms/BuildForms.tsx:796 #: src/forms/BuildForms.tsx:897 -#: src/forms/SalesOrderForms.tsx:306 -#: src/tables/build/BuildAllocatedStockTable.tsx:139 -#: src/tables/build/BuildLineTable.tsx:182 +#: src/forms/SalesOrderForms.tsx:385 +#: src/tables/build/BuildAllocatedStockTable.tsx:136 +#: src/tables/build/BuildLineTable.tsx:183 #: src/tables/sales/SalesOrderLineItemTable.tsx:342 #: src/tables/stock/StockItemTable.tsx:338 msgid "Allocated" msgstr "Tildelt" #: src/forms/BuildForms.tsx:667 -#: src/forms/SalesOrderForms.tsx:295 -#: src/pages/build/BuildDetail.tsx:108 -#: src/pages/build/BuildDetail.tsx:326 +#: src/forms/SalesOrderForms.tsx:374 +#: src/pages/build/BuildDetail.tsx:109 +#: src/pages/build/BuildDetail.tsx:327 msgid "Source Location" msgstr "" #: src/forms/BuildForms.tsx:668 -#: src/forms/SalesOrderForms.tsx:296 +#: src/forms/SalesOrderForms.tsx:375 msgid "Select the source location for the stock allocation" msgstr "" #: src/forms/BuildForms.tsx:700 -#: src/forms/SalesOrderForms.tsx:336 -#: src/tables/build/BuildLineTable.tsx:574 -#: src/tables/build/BuildLineTable.tsx:731 -#: src/tables/build/BuildLineTable.tsx:830 +#: src/forms/SalesOrderForms.tsx:415 +#: src/tables/build/BuildLineTable.tsx:575 +#: src/tables/build/BuildLineTable.tsx:738 +#: src/tables/build/BuildLineTable.tsx:837 #: src/tables/sales/SalesOrderLineItemTable.tsx:380 #: src/tables/sales/SalesOrderLineItemTable.tsx:406 msgid "Allocate Stock" msgstr "Tildel lagerbeholdning" #: src/forms/BuildForms.tsx:703 -#: src/forms/SalesOrderForms.tsx:341 +#: src/forms/SalesOrderForms.tsx:420 msgid "Stock items allocated" msgstr "" #: src/forms/BuildForms.tsx:816 #: src/forms/BuildForms.tsx:917 -#: src/tables/build/BuildAllocatedStockTable.tsx:240 -#: src/tables/build/BuildAllocatedStockTable.tsx:272 -#: src/tables/build/BuildLineTable.tsx:741 -#: src/tables/build/BuildLineTable.tsx:864 +#: src/tables/build/BuildAllocatedStockTable.tsx:243 +#: src/tables/build/BuildAllocatedStockTable.tsx:279 +#: src/tables/build/BuildLineTable.tsx:748 +#: src/tables/build/BuildLineTable.tsx:871 msgid "Consume Stock" msgstr "" @@ -4521,21 +4550,21 @@ msgstr "" #~ msgstr "Stock items consumed" #: src/forms/BuildForms.tsx:853 -#: src/tables/build/BuildLineTable.tsx:514 +#: src/tables/build/BuildLineTable.tsx:515 #: src/tables/part/PartBuildAllocationsTable.tsx:101 msgid "Fully consumed" msgstr "" #: src/forms/BuildForms.tsx:898 -#: src/tables/build/BuildLineTable.tsx:187 +#: src/tables/build/BuildLineTable.tsx:188 #: src/tables/stock/StockItemTable.tsx:367 msgid "Consumed" msgstr "" -#: src/forms/CommonForms.tsx:88 -#: src/forms/PurchaseOrderForms.tsx:125 +#: src/forms/CommonForms.tsx:92 +#: src/forms/PurchaseOrderForms.tsx:176 #: src/forms/ReturnOrderForms.tsx:138 -#: src/forms/SalesOrderForms.tsx:164 +#: src/forms/SalesOrderForms.tsx:185 msgid "Select project code for this line item" msgstr "" @@ -4543,16 +4572,16 @@ msgstr "" #~ msgid "Company updated" #~ msgstr "Company updated" -#: src/forms/PartForms.tsx:85 -#: src/forms/PartForms.tsx:207 -#: src/pages/part/CategoryDetail.tsx:124 +#: src/forms/PartForms.tsx:99 +#: src/forms/PartForms.tsx:228 +#: src/pages/part/CategoryDetail.tsx:127 #: src/pages/part/PartDetail.tsx:668 #: src/tables/part/PartCategoryTable.tsx:94 #: src/tables/part/PartTable.tsx:325 msgid "Subscribed" msgstr "" -#: src/forms/PartForms.tsx:86 +#: src/forms/PartForms.tsx:100 msgid "Subscribe to notifications for this part" msgstr "" @@ -4564,40 +4593,24 @@ msgstr "" #~ msgid "Part updated" #~ msgstr "Part updated" -#: src/forms/PartForms.tsx:193 +#: src/forms/PartForms.tsx:214 msgid "Parent part category" msgstr "Overordnet del-kategori" -#: src/forms/PartForms.tsx:208 +#: src/forms/PartForms.tsx:229 msgid "Subscribe to notifications for this category" msgstr "" -#: src/forms/PurchaseOrderForms.tsx:388 -msgid "Assign Batch Code and Serial Numbers" -msgstr "" - -#: src/forms/PurchaseOrderForms.tsx:390 -msgid "Assign Batch Code" -msgstr "" - -#: src/forms/PurchaseOrderForms.tsx:410 -msgid "Choose Location" -msgstr "" - -#: src/forms/PurchaseOrderForms.tsx:418 -msgid "Item Destination selected" -msgstr "" - #: src/forms/PurchaseOrderForms.tsx:421 #~ msgid "Assign Batch Code{0}" #~ msgstr "Assign Batch Code{0}" -#: src/forms/PurchaseOrderForms.tsx:428 -msgid "Part category default location selected" +#: src/forms/PurchaseOrderForms.tsx:440 +msgid "Assign Batch Code and Serial Numbers" msgstr "" -#: src/forms/PurchaseOrderForms.tsx:438 -msgid "Received stock location selected" +#: src/forms/PurchaseOrderForms.tsx:442 +msgid "Assign Batch Code" msgstr "" #: src/forms/PurchaseOrderForms.tsx:444 @@ -4605,115 +4618,131 @@ msgstr "" #~ msgid "Remove item from list" #~ msgstr "Remove item from list" -#: src/forms/PurchaseOrderForms.tsx:446 +#: src/forms/PurchaseOrderForms.tsx:462 +msgid "Choose Location" +msgstr "" + +#: src/forms/PurchaseOrderForms.tsx:470 +msgid "Item Destination selected" +msgstr "" + +#: src/forms/PurchaseOrderForms.tsx:480 +msgid "Part category default location selected" +msgstr "" + +#: src/forms/PurchaseOrderForms.tsx:490 +msgid "Received stock location selected" +msgstr "" + +#: src/forms/PurchaseOrderForms.tsx:498 msgid "Default location selected" msgstr "" -#: src/forms/PurchaseOrderForms.tsx:507 +#: src/forms/PurchaseOrderForms.tsx:559 msgid "Set Location" msgstr "" -#: src/forms/PurchaseOrderForms.tsx:524 -msgid "Set Expiry Date" -msgstr "" - -#: src/forms/PurchaseOrderForms.tsx:532 -#: src/forms/StockForms.tsx:693 -msgid "Adjust Packaging" -msgstr "" - -#: src/forms/PurchaseOrderForms.tsx:540 -#: src/forms/StockForms.tsx:684 -#: src/hooks/UseStockAdjustActions.tsx:148 -msgid "Change Status" -msgstr "" - -#: src/forms/PurchaseOrderForms.tsx:546 -msgid "Add Note" -msgstr "" - #: src/forms/PurchaseOrderForms.tsx:566 #~ msgid "Serial numbers" #~ msgstr "Serial numbers" +#: src/forms/PurchaseOrderForms.tsx:576 +msgid "Set Expiry Date" +msgstr "" + #: src/forms/PurchaseOrderForms.tsx:582 #~ msgid "Store at line item destination" #~ msgstr "Store at line item destination" -#: src/forms/PurchaseOrderForms.tsx:610 -msgid "Store at default location" +#: src/forms/PurchaseOrderForms.tsx:584 +#: src/forms/StockForms.tsx:693 +msgid "Adjust Packaging" msgstr "" -#: src/forms/PurchaseOrderForms.tsx:625 -msgid "Store at line item destination " +#: src/forms/PurchaseOrderForms.tsx:592 +#: src/forms/StockForms.tsx:684 +#: src/hooks/UseStockAdjustActions.tsx:148 +msgid "Change Status" msgstr "" -#: src/forms/PurchaseOrderForms.tsx:637 -msgid "Store with already received stock" +#: src/forms/PurchaseOrderForms.tsx:598 +msgid "Add Note" msgstr "" #: src/forms/PurchaseOrderForms.tsx:658 #~ msgid "Receive line items" #~ msgstr "Receive line items" -#: src/forms/PurchaseOrderForms.tsx:661 -#: src/pages/build/BuildDetail.tsx:340 +#: src/forms/PurchaseOrderForms.tsx:662 +msgid "Store at default location" +msgstr "" + +#: src/forms/PurchaseOrderForms.tsx:677 +msgid "Store at line item destination " +msgstr "" + +#: src/forms/PurchaseOrderForms.tsx:689 +msgid "Store with already received stock" +msgstr "" + +#: src/forms/PurchaseOrderForms.tsx:713 +#: src/pages/build/BuildDetail.tsx:341 #: src/pages/stock/StockDetail.tsx:280 #: src/pages/stock/StockDetail.tsx:952 #: src/tables/Filter.tsx:83 -#: src/tables/build/BuildAllocatedStockTable.tsx:128 +#: src/tables/build/BuildAllocatedStockTable.tsx:125 #: src/tables/build/BuildOutputTable.tsx:112 -#: src/tables/part/PartTestResultTable.tsx:260 -#: src/tables/part/PartTestResultTable.tsx:281 +#: src/tables/part/PartTestResultTable.tsx:268 +#: src/tables/part/PartTestResultTable.tsx:289 #: src/tables/sales/SalesOrderAllocationTable.tsx:149 msgid "Batch Code" msgstr "" -#: src/forms/PurchaseOrderForms.tsx:662 +#: src/forms/PurchaseOrderForms.tsx:714 msgid "Enter batch code for received items" msgstr "" -#: src/forms/PurchaseOrderForms.tsx:675 +#: src/forms/PurchaseOrderForms.tsx:727 #: src/forms/StockForms.tsx:218 msgid "Serial Numbers" msgstr "Serienumre" -#: src/forms/PurchaseOrderForms.tsx:676 +#: src/forms/PurchaseOrderForms.tsx:728 msgid "Enter serial numbers for received items" msgstr "" -#: src/forms/PurchaseOrderForms.tsx:690 +#: src/forms/PurchaseOrderForms.tsx:742 #: src/pages/stock/StockDetail.tsx:382 #: src/tables/stock/StockItemTable.tsx:294 msgid "Expiry Date" msgstr "Utløpsdato" -#: src/forms/PurchaseOrderForms.tsx:691 +#: src/forms/PurchaseOrderForms.tsx:743 msgid "Enter an expiry date for received items" msgstr "" -#: src/forms/PurchaseOrderForms.tsx:703 +#: src/forms/PurchaseOrderForms.tsx:755 #: src/forms/StockForms.tsx:728 -#: src/pages/company/SupplierPartDetail.tsx:172 -#: src/pages/company/SupplierPartDetail.tsx:236 +#: src/pages/company/SupplierPartDetail.tsx:173 +#: src/pages/company/SupplierPartDetail.tsx:237 #: src/pages/stock/StockDetail.tsx:419 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:227 msgid "Packaging" msgstr "" -#: src/forms/PurchaseOrderForms.tsx:727 -#: src/pages/company/SupplierPartDetail.tsx:120 +#: src/forms/PurchaseOrderForms.tsx:779 +#: src/pages/company/SupplierPartDetail.tsx:121 #: src/tables/ColumnRenderers.tsx:332 msgid "Note" msgstr "" -#: src/forms/PurchaseOrderForms.tsx:799 -#: src/pages/company/SupplierPartDetail.tsx:138 +#: src/forms/PurchaseOrderForms.tsx:851 +#: src/pages/company/SupplierPartDetail.tsx:139 #: src/tables/purchasing/SupplierPriceBreakTable.tsx:49 msgid "SKU" msgstr "" -#: src/forms/PurchaseOrderForms.tsx:800 +#: src/forms/PurchaseOrderForms.tsx:852 #: src/tables/part/PartPurchaseOrdersTable.tsx:127 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:213 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:283 @@ -4721,11 +4750,11 @@ msgstr "" msgid "Received" msgstr "Mottatt" -#: src/forms/PurchaseOrderForms.tsx:817 +#: src/forms/PurchaseOrderForms.tsx:869 msgid "Receive Line Items" msgstr "" -#: src/forms/PurchaseOrderForms.tsx:823 +#: src/forms/PurchaseOrderForms.tsx:875 msgid "Items received" msgstr "" @@ -4737,7 +4766,35 @@ msgstr "" msgid "Item received into stock" msgstr "" -#: src/forms/SalesOrderForms.tsx:401 +#: src/forms/SalesOrderForms.tsx:208 +#: src/forms/SalesOrderForms.tsx:210 +#: src/tables/sales/SalesOrderShipmentTable.tsx:215 +msgid "Check Shipment" +msgstr "" + +#: src/forms/SalesOrderForms.tsx:211 +msgid "Marking the shipment as checked indicates that you have verified that all items included in this shipment are correct" +msgstr "" + +#: src/forms/SalesOrderForms.tsx:221 +msgid "Shipment marked as checked" +msgstr "" + +#: src/forms/SalesOrderForms.tsx:236 +#: src/forms/SalesOrderForms.tsx:238 +#: src/tables/sales/SalesOrderShipmentTable.tsx:228 +msgid "Uncheck Shipment" +msgstr "" + +#: src/forms/SalesOrderForms.tsx:239 +msgid "Marking the shipment as unchecked indicates that the shipment requires further verification" +msgstr "" + +#: src/forms/SalesOrderForms.tsx:249 +msgid "Shipment marked as unchecked" +msgstr "" + +#: src/forms/SalesOrderForms.tsx:480 msgid "Leave blank to use the order address" msgstr "" @@ -4792,150 +4849,150 @@ msgstr "" msgid "Return" msgstr "" -#: src/forms/StockForms.tsx:963 +#: src/forms/StockForms.tsx:979 #: src/pages/Index/Scan.tsx:182 msgid "Count" msgstr "Tell" -#: src/forms/StockForms.tsx:1246 +#: src/forms/StockForms.tsx:1262 #: src/hooks/UseStockAdjustActions.tsx:108 msgid "Add Stock" msgstr "" -#: src/forms/StockForms.tsx:1247 +#: src/forms/StockForms.tsx:1263 msgid "Stock added" msgstr "" -#: src/forms/StockForms.tsx:1250 +#: src/forms/StockForms.tsx:1266 msgid "Increase the quantity of the selected stock items by a given amount." msgstr "" -#: src/forms/StockForms.tsx:1261 +#: src/forms/StockForms.tsx:1277 #: src/hooks/UseStockAdjustActions.tsx:118 msgid "Remove Stock" msgstr "" -#: src/forms/StockForms.tsx:1262 +#: src/forms/StockForms.tsx:1278 msgid "Stock removed" msgstr "" -#: src/forms/StockForms.tsx:1265 +#: src/forms/StockForms.tsx:1281 msgid "Decrease the quantity of the selected stock items by a given amount." msgstr "" -#: src/forms/StockForms.tsx:1276 +#: src/forms/StockForms.tsx:1292 #: src/hooks/UseStockAdjustActions.tsx:128 msgid "Transfer Stock" msgstr "Overfør lager" -#: src/forms/StockForms.tsx:1277 +#: src/forms/StockForms.tsx:1293 msgid "Stock transferred" msgstr "" -#: src/forms/StockForms.tsx:1280 +#: src/forms/StockForms.tsx:1296 msgid "Transfer selected items to the specified location." msgstr "" -#: src/forms/StockForms.tsx:1291 +#: src/forms/StockForms.tsx:1307 #: src/hooks/UseStockAdjustActions.tsx:168 msgid "Return Stock" msgstr "" -#: src/forms/StockForms.tsx:1292 +#: src/forms/StockForms.tsx:1308 msgid "Stock returned" msgstr "" -#: src/forms/StockForms.tsx:1295 +#: src/forms/StockForms.tsx:1311 msgid "Return selected items into stock, to the specified location." msgstr "" -#: src/forms/StockForms.tsx:1306 +#: src/forms/StockForms.tsx:1322 #: src/hooks/UseStockAdjustActions.tsx:98 msgid "Count Stock" msgstr "Tell beholdning" -#: src/forms/StockForms.tsx:1307 +#: src/forms/StockForms.tsx:1323 msgid "Stock counted" msgstr "" -#: src/forms/StockForms.tsx:1310 +#: src/forms/StockForms.tsx:1326 msgid "Count the selected stock items, and adjust the quantity accordingly." msgstr "" -#: src/forms/StockForms.tsx:1321 +#: src/forms/StockForms.tsx:1337 msgid "Change Stock Status" msgstr "" -#: src/forms/StockForms.tsx:1322 +#: src/forms/StockForms.tsx:1338 msgid "Stock status changed" msgstr "" -#: src/forms/StockForms.tsx:1325 +#: src/forms/StockForms.tsx:1341 msgid "Change the status of the selected stock items." msgstr "" -#: src/forms/StockForms.tsx:1336 +#: src/forms/StockForms.tsx:1352 #: src/hooks/UseStockAdjustActions.tsx:138 msgid "Merge Stock" msgstr "" -#: src/forms/StockForms.tsx:1337 +#: src/forms/StockForms.tsx:1353 msgid "Stock merged" msgstr "" -#: src/forms/StockForms.tsx:1339 +#: src/forms/StockForms.tsx:1355 msgid "Merge Stock Items" msgstr "" -#: src/forms/StockForms.tsx:1341 +#: src/forms/StockForms.tsx:1357 msgid "Merge operation cannot be reversed" msgstr "" -#: src/forms/StockForms.tsx:1342 +#: src/forms/StockForms.tsx:1358 msgid "Tracking information may be lost when merging items" msgstr "" -#: src/forms/StockForms.tsx:1343 +#: src/forms/StockForms.tsx:1359 msgid "Supplier information may be lost when merging items" msgstr "" -#: src/forms/StockForms.tsx:1361 +#: src/forms/StockForms.tsx:1377 msgid "Assign Stock to Customer" msgstr "" -#: src/forms/StockForms.tsx:1362 +#: src/forms/StockForms.tsx:1378 msgid "Stock assigned to customer" msgstr "" -#: src/forms/StockForms.tsx:1372 +#: src/forms/StockForms.tsx:1388 msgid "Delete Stock Items" msgstr "" -#: src/forms/StockForms.tsx:1373 +#: src/forms/StockForms.tsx:1389 msgid "Stock deleted" msgstr "" -#: src/forms/StockForms.tsx:1376 +#: src/forms/StockForms.tsx:1392 msgid "This operation will permanently delete the selected stock items." msgstr "" -#: src/forms/StockForms.tsx:1385 +#: src/forms/StockForms.tsx:1401 msgid "Parent stock location" msgstr "" -#: src/forms/StockForms.tsx:1512 +#: src/forms/StockForms.tsx:1528 msgid "Find Serial Number" msgstr "" -#: src/forms/StockForms.tsx:1523 +#: src/forms/StockForms.tsx:1539 msgid "No matching items" msgstr "" -#: src/forms/StockForms.tsx:1529 +#: src/forms/StockForms.tsx:1545 msgid "Multiple matching items" msgstr "" -#: src/forms/StockForms.tsx:1538 +#: src/forms/StockForms.tsx:1554 msgid "Invalid response from server" msgstr "" @@ -4953,7 +5010,6 @@ msgstr "" #: src/tables/FilterSelectDrawer.tsx:137 #: src/tables/FilterSelectDrawer.tsx:149 #: src/tables/part/PartTestResultTable.tsx:206 -#: src/tables/purchasing/ManufacturerPartParameterTable.tsx:42 #: src/tables/stock/StockItemTestResultTable.tsx:207 msgid "Value" msgstr "Verdi" @@ -5244,7 +5300,7 @@ msgid "Delete selected stock items" msgstr "" #: src/hooks/UseStockAdjustActions.tsx:205 -#: src/pages/part/PartDetail.tsx:1137 +#: src/pages/part/PartDetail.tsx:1158 msgid "Stock Actions" msgstr "Lagerhandlinger" @@ -5932,6 +5988,9 @@ msgstr "" #: src/pages/Index/Settings/AccountSettings/MFASettings.tsx:310 #: src/pages/Index/Settings/AccountSettings/MFASettings.tsx:401 +#: src/tables/build/BuildAllocatedStockTable.tsx:181 +#: src/tables/build/BuildLineTable.tsx:668 +#: src/tables/sales/SalesOrderAllocationTable.tsx:220 msgid "Confirm Removal" msgstr "" @@ -6394,30 +6453,34 @@ msgid "Email Messages" msgstr "" #: src/pages/Index/Settings/AdminCenter/HomePanel.tsx:22 -msgid "Active Alerts" -msgstr "" +#~ msgid "Active Alerts" +#~ msgstr "Active Alerts" #: src/pages/Index/Settings/AdminCenter/HomePanel.tsx:27 -msgid "Inactive Alerts" +#~ msgid "Inactive Alerts" +#~ msgstr "Inactive Alerts" + +#: src/pages/Index/Settings/AdminCenter/HomePanel.tsx:36 +msgid "System Status" msgstr "" -#: src/pages/Index/Settings/AdminCenter/HomePanel.tsx:38 +#: src/pages/Index/Settings/AdminCenter/HomePanel.tsx:47 msgid "Admin Center Information" msgstr "" -#: src/pages/Index/Settings/AdminCenter/HomePanel.tsx:44 +#: src/pages/Index/Settings/AdminCenter/HomePanel.tsx:53 msgid "The home panel (and the whole Admin Center) is a new feature starting with the new UI and was previously (before 1.0) not available." msgstr "" -#: src/pages/Index/Settings/AdminCenter/HomePanel.tsx:51 +#: src/pages/Index/Settings/AdminCenter/HomePanel.tsx:60 msgid "The admin center provides a centralized location for all administration functionality and is meant to replace all interaction with the (django) backend admin interface." msgstr "" -#: src/pages/Index/Settings/AdminCenter/HomePanel.tsx:58 +#: src/pages/Index/Settings/AdminCenter/HomePanel.tsx:67 msgid "Please open feature requests (after checking the tracker) for any existing backend admin functionality you are missing in this UI. The backend admin interface should be used carefully and seldom." msgstr "" -#: src/pages/Index/Settings/AdminCenter/HomePanel.tsx:76 +#: src/pages/Index/Settings/AdminCenter/HomePanel.tsx:85 msgid "Quick Actions" msgstr "" @@ -6476,11 +6539,11 @@ msgstr "Egendefinerte enheter" #: src/pages/Index/Settings/AdminCenter/Index.tsx:195 #: src/pages/part/CategoryDetail.tsx:313 -msgid "Part Parameters" -msgstr "Delparametere" +#~ msgid "Part Parameters" +#~ msgstr "Part Parameters" #: src/pages/Index/Settings/AdminCenter/Index.tsx:202 -#: src/pages/part/CategoryDetail.tsx:306 +#: src/pages/part/CategoryDetail.tsx:329 msgid "Category Parameters" msgstr "" @@ -6494,7 +6557,7 @@ msgstr "" #: src/pages/Index/Settings/AdminCenter/Index.tsx:235 #: src/pages/Index/Settings/AdminCenter/MachineManagementPanel.tsx:52 -#: src/tables/machine/MachineTypeTable.tsx:325 +#: src/tables/machine/MachineTypeTable.tsx:323 msgid "Machines" msgstr "" @@ -6507,8 +6570,8 @@ msgid "Data Management" msgstr "" #: src/pages/Index/Settings/AdminCenter/Index.tsx:270 -#: src/pages/Index/Settings/SystemSettings.tsx:175 -#: src/pages/Index/Settings/UserSettings.tsx:118 +#: src/pages/Index/Settings/SystemSettings.tsx:176 +#: src/pages/Index/Settings/UserSettings.tsx:119 msgid "Reporting" msgstr "Rapportering" @@ -6709,11 +6772,11 @@ msgstr "" msgid "The settings below are specific to each available plugin" msgstr "" -#: src/pages/Index/Settings/SystemSettings.tsx:77 +#: src/pages/Index/Settings/SystemSettings.tsx:78 msgid "Authentication" msgstr "" -#: src/pages/Index/Settings/SystemSettings.tsx:103 +#: src/pages/Index/Settings/SystemSettings.tsx:104 msgid "Barcodes" msgstr "Strekkoder" @@ -6725,12 +6788,12 @@ msgstr "Strekkoder" #~ msgid "This panel is a placeholder." #~ msgstr "This panel is a placeholder." -#: src/pages/Index/Settings/SystemSettings.tsx:127 -#: src/pages/Index/Settings/UserSettings.tsx:112 +#: src/pages/Index/Settings/SystemSettings.tsx:128 +#: src/pages/Index/Settings/UserSettings.tsx:113 msgid "The settings below are specific to each available notification method" msgstr "" -#: src/pages/Index/Settings/SystemSettings.tsx:133 +#: src/pages/Index/Settings/SystemSettings.tsx:134 msgid "Pricing" msgstr "Prising" @@ -6738,7 +6801,7 @@ msgstr "Prising" #~ msgid "Exchange Rates" #~ msgstr "Exchange Rates" -#: src/pages/Index/Settings/SystemSettings.tsx:169 +#: src/pages/Index/Settings/SystemSettings.tsx:170 msgid "Labels" msgstr "Etiketter" @@ -6790,15 +6853,15 @@ msgstr "Marker som ulest" #~ msgid "Delete notifications" #~ msgstr "Delete notifications" -#: src/pages/build/BuildDetail.tsx:69 +#: src/pages/build/BuildDetail.tsx:70 msgid "No Required Items" msgstr "" -#: src/pages/build/BuildDetail.tsx:71 +#: src/pages/build/BuildDetail.tsx:72 msgid "This build order does not have any required items." msgstr "" -#: src/pages/build/BuildDetail.tsx:72 +#: src/pages/build/BuildDetail.tsx:73 msgid "The assembled part may not have a Bill of Materials (BOM) defined, or the BOM is empty." msgstr "" @@ -6826,7 +6889,7 @@ msgstr "" #~ msgid "Build Order updated" #~ msgstr "Build Order updated" -#: src/pages/build/BuildDetail.tsx:215 +#: src/pages/build/BuildDetail.tsx:216 #: src/pages/part/PartDetail.tsx:480 #: src/pages/stock/StockDetail.tsx:161 #: src/tables/bom/UsedInTable.tsx:44 @@ -6843,10 +6906,10 @@ msgstr "" #~ msgid "Duplicate build order" #~ msgstr "Duplicate build order" -#: src/pages/build/BuildDetail.tsx:228 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:174 -#: src/pages/sales/ReturnOrderDetail.tsx:141 -#: src/pages/sales/SalesOrderDetail.tsx:131 +#: src/pages/build/BuildDetail.tsx:229 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:175 +#: src/pages/sales/ReturnOrderDetail.tsx:142 +#: src/pages/sales/SalesOrderDetail.tsx:132 #: src/pages/stock/StockDetail.tsx:176 msgid "Custom Status" msgstr "" @@ -6855,9 +6918,9 @@ msgstr "" #~ msgid "Delete build order" #~ msgstr "Delete build order" -#: src/pages/build/BuildDetail.tsx:237 -#: src/pages/build/BuildDetail.tsx:723 -#: src/pages/build/BuildIndex.tsx:28 +#: src/pages/build/BuildDetail.tsx:238 +#: src/pages/build/BuildDetail.tsx:728 +#: src/pages/build/BuildIndex.tsx:34 #: src/pages/stock/LocationDetail.tsx:140 #: src/tables/build/BuildOrderTable.tsx:123 #: src/tables/build/BuildOrderTable.tsx:183 @@ -6865,57 +6928,57 @@ msgstr "" msgid "External" msgstr "" -#: src/pages/build/BuildDetail.tsx:244 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:141 -#: src/pages/sales/ReturnOrderDetail.tsx:108 -#: src/pages/sales/SalesOrderDetail.tsx:98 +#: src/pages/build/BuildDetail.tsx:245 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:142 +#: src/pages/sales/ReturnOrderDetail.tsx:109 +#: src/pages/sales/SalesOrderDetail.tsx:99 #: src/tables/ColumnRenderers.tsx:321 -#: src/tables/build/BuildAllocatedStockTable.tsx:115 -#: src/tables/build/BuildLineTable.tsx:352 +#: src/tables/build/BuildAllocatedStockTable.tsx:112 +#: src/tables/build/BuildLineTable.tsx:353 msgid "Reference" msgstr "" -#: src/pages/build/BuildDetail.tsx:258 +#: src/pages/build/BuildDetail.tsx:259 msgid "Parent Build" msgstr "" -#: src/pages/build/BuildDetail.tsx:269 +#: src/pages/build/BuildDetail.tsx:270 msgid "Build Quantity" msgstr "" -#: src/pages/build/BuildDetail.tsx:275 +#: src/pages/build/BuildDetail.tsx:276 #: src/pages/part/PartDetail.tsx:598 #: src/tables/bom/BomTable.tsx:365 #: src/tables/bom/BomTable.tsx:407 msgid "Can Build" msgstr "Kan Produsere" -#: src/pages/build/BuildDetail.tsx:284 -#: src/pages/build/BuildDetail.tsx:474 +#: src/pages/build/BuildDetail.tsx:285 +#: src/pages/build/BuildDetail.tsx:475 msgid "Completed Outputs" msgstr "Fullførte artikler" -#: src/pages/build/BuildDetail.tsx:301 +#: src/pages/build/BuildDetail.tsx:302 #: src/tables/Filter.tsx:381 #: src/tables/build/BuildOrderTable.tsx:143 msgid "Issued By" msgstr "" -#: src/pages/build/BuildDetail.tsx:309 +#: src/pages/build/BuildDetail.tsx:310 #: src/pages/part/PartDetail.tsx:691 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:261 -#: src/pages/sales/ReturnOrderDetail.tsx:239 -#: src/pages/sales/SalesOrderDetail.tsx:232 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:262 +#: src/pages/sales/ReturnOrderDetail.tsx:240 +#: src/pages/sales/SalesOrderDetail.tsx:233 #: src/tables/ColumnRenderers.tsx:464 #: src/tables/Filter.tsx:319 msgid "Responsible" msgstr "Ansvarlig" -#: src/pages/build/BuildDetail.tsx:327 +#: src/pages/build/BuildDetail.tsx:328 msgid "Any location" msgstr "" -#: src/pages/build/BuildDetail.tsx:334 +#: src/pages/build/BuildDetail.tsx:335 msgid "Destination Location" msgstr "" @@ -6924,24 +6987,24 @@ msgstr "" #~ msgid "Test Statistics" #~ msgstr "Test Statistics" -#: src/pages/build/BuildDetail.tsx:350 +#: src/pages/build/BuildDetail.tsx:351 #: src/tables/settings/ApiTokenTable.tsx:97 #: src/tables/settings/PendingTasksTable.tsx:41 msgid "Created" msgstr "Opprettet" -#: src/pages/build/BuildDetail.tsx:358 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:286 -#: src/pages/sales/ReturnOrderDetail.tsx:265 -#: src/pages/sales/SalesOrderDetail.tsx:257 +#: src/pages/build/BuildDetail.tsx:359 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:287 +#: src/pages/sales/ReturnOrderDetail.tsx:266 +#: src/pages/sales/SalesOrderDetail.tsx:258 #: src/tables/ColumnRenderers.tsx:486 msgid "Start Date" msgstr "" -#: src/pages/build/BuildDetail.tsx:366 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:294 -#: src/pages/sales/ReturnOrderDetail.tsx:273 -#: src/pages/sales/SalesOrderDetail.tsx:265 +#: src/pages/build/BuildDetail.tsx:367 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:295 +#: src/pages/sales/ReturnOrderDetail.tsx:274 +#: src/pages/sales/SalesOrderDetail.tsx:266 #: src/tables/ColumnRenderers.tsx:494 #: src/tables/part/PartPurchaseOrdersTable.tsx:101 #: src/tables/sales/ReturnOrderLineItemTable.tsx:154 @@ -6954,185 +7017,185 @@ msgstr "Måldato" #~ msgstr "Reporting Actions" #: src/pages/build/BuildDetail.tsx:374 +#~ msgid "Print build report" +#~ msgstr "Print build report" + +#: src/pages/build/BuildDetail.tsx:375 #: src/tables/build/BuildOrderTable.tsx:93 #: src/tables/sales/SalesOrderLineItemTable.tsx:347 msgid "Completed" msgstr "" -#: src/pages/build/BuildDetail.tsx:374 -#~ msgid "Print build report" -#~ msgstr "Print build report" - -#: src/pages/build/BuildDetail.tsx:410 +#: src/pages/build/BuildDetail.tsx:411 msgid "Build Details" msgstr "Produksjonsdetaljer" -#: src/pages/build/BuildDetail.tsx:416 +#: src/pages/build/BuildDetail.tsx:417 msgid "Required Parts" msgstr "" -#: src/pages/build/BuildDetail.tsx:428 -#: src/pages/sales/SalesOrderDetail.tsx:407 -#: src/pages/sales/SalesOrderShipmentDetail.tsx:261 +#: src/pages/build/BuildDetail.tsx:429 +#: src/pages/sales/SalesOrderDetail.tsx:408 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:259 #: src/tables/part/PartSalesAllocationsTable.tsx:73 msgid "Allocated Stock" msgstr "" -#: src/pages/build/BuildDetail.tsx:444 +#: src/pages/build/BuildDetail.tsx:445 msgid "Consumed Stock" msgstr "Brukt lagerbeholdning" -#: src/pages/build/BuildDetail.tsx:461 +#: src/pages/build/BuildDetail.tsx:462 msgid "Incomplete Outputs" msgstr "Ufullstendige artikler" -#: src/pages/build/BuildDetail.tsx:489 +#: src/pages/build/BuildDetail.tsx:490 msgid "External Orders" msgstr "" -#: src/pages/build/BuildDetail.tsx:503 +#: src/pages/build/BuildDetail.tsx:504 msgid "Child Build Orders" msgstr "Underordnede Produksjonsordrer" -#: src/pages/build/BuildDetail.tsx:513 -#: src/pages/part/PartDetail.tsx:937 +#: src/pages/build/BuildDetail.tsx:514 +#: src/pages/part/PartDetail.tsx:926 #: src/pages/stock/StockDetail.tsx:587 #: src/tables/build/BuildOutputTable.tsx:654 #: src/tables/stock/StockItemTestResultTable.tsx:173 msgid "Test Results" msgstr "" -#: src/pages/build/BuildDetail.tsx:550 +#: src/pages/build/BuildDetail.tsx:555 msgid "Edit Build Order" msgstr "Rediger produksjonsordre" -#: src/pages/build/BuildDetail.tsx:572 +#: src/pages/build/BuildDetail.tsx:577 #: src/tables/build/BuildOrderTable.tsx:207 #: src/tables/build/BuildOrderTable.tsx:223 msgid "Add Build Order" msgstr "Legg til produksjonsordre" -#: src/pages/build/BuildDetail.tsx:582 +#: src/pages/build/BuildDetail.tsx:587 msgid "Cancel Build Order" msgstr "" -#: src/pages/build/BuildDetail.tsx:584 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:416 -#: src/pages/sales/ReturnOrderDetail.tsx:427 -#: src/pages/sales/SalesOrderDetail.tsx:454 +#: src/pages/build/BuildDetail.tsx:589 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:421 +#: src/pages/sales/ReturnOrderDetail.tsx:432 +#: src/pages/sales/SalesOrderDetail.tsx:459 msgid "Order cancelled" msgstr "" -#: src/pages/build/BuildDetail.tsx:585 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:415 -#: src/pages/sales/ReturnOrderDetail.tsx:426 -#: src/pages/sales/SalesOrderDetail.tsx:453 +#: src/pages/build/BuildDetail.tsx:590 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:420 +#: src/pages/sales/ReturnOrderDetail.tsx:431 +#: src/pages/sales/SalesOrderDetail.tsx:458 msgid "Cancel this order" msgstr "" -#: src/pages/build/BuildDetail.tsx:594 +#: src/pages/build/BuildDetail.tsx:599 msgid "Hold Build Order" msgstr "" -#: src/pages/build/BuildDetail.tsx:596 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:423 -#: src/pages/sales/ReturnOrderDetail.tsx:434 -#: src/pages/sales/SalesOrderDetail.tsx:461 +#: src/pages/build/BuildDetail.tsx:601 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:428 +#: src/pages/sales/ReturnOrderDetail.tsx:439 +#: src/pages/sales/SalesOrderDetail.tsx:466 msgid "Place this order on hold" msgstr "" -#: src/pages/build/BuildDetail.tsx:597 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:424 -#: src/pages/sales/ReturnOrderDetail.tsx:435 -#: src/pages/sales/SalesOrderDetail.tsx:462 +#: src/pages/build/BuildDetail.tsx:602 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:429 +#: src/pages/sales/ReturnOrderDetail.tsx:440 +#: src/pages/sales/SalesOrderDetail.tsx:467 msgid "Order placed on hold" msgstr "" -#: src/pages/build/BuildDetail.tsx:602 +#: src/pages/build/BuildDetail.tsx:607 msgid "Issue Build Order" msgstr "" -#: src/pages/build/BuildDetail.tsx:604 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:407 -#: src/pages/sales/ReturnOrderDetail.tsx:418 -#: src/pages/sales/SalesOrderDetail.tsx:445 +#: src/pages/build/BuildDetail.tsx:609 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:412 +#: src/pages/sales/ReturnOrderDetail.tsx:423 +#: src/pages/sales/SalesOrderDetail.tsx:450 msgid "Issue this order" msgstr "" -#: src/pages/build/BuildDetail.tsx:605 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:408 -#: src/pages/sales/ReturnOrderDetail.tsx:419 -#: src/pages/sales/SalesOrderDetail.tsx:446 +#: src/pages/build/BuildDetail.tsx:610 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:413 +#: src/pages/sales/ReturnOrderDetail.tsx:424 +#: src/pages/sales/SalesOrderDetail.tsx:451 msgid "Order issued" msgstr "" -#: src/pages/build/BuildDetail.tsx:624 +#: src/pages/build/BuildDetail.tsx:629 msgid "Complete Build Order" msgstr "" -#: src/pages/build/BuildDetail.tsx:630 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:436 -#: src/pages/sales/ReturnOrderDetail.tsx:442 -#: src/pages/sales/SalesOrderDetail.tsx:480 +#: src/pages/build/BuildDetail.tsx:635 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:441 +#: src/pages/sales/ReturnOrderDetail.tsx:447 +#: src/pages/sales/SalesOrderDetail.tsx:485 msgid "Mark this order as complete" msgstr "" -#: src/pages/build/BuildDetail.tsx:633 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:430 -#: src/pages/sales/ReturnOrderDetail.tsx:443 -#: src/pages/sales/SalesOrderDetail.tsx:481 +#: src/pages/build/BuildDetail.tsx:638 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:435 +#: src/pages/sales/ReturnOrderDetail.tsx:448 +#: src/pages/sales/SalesOrderDetail.tsx:486 msgid "Order completed" msgstr "" -#: src/pages/build/BuildDetail.tsx:660 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:459 -#: src/pages/sales/ReturnOrderDetail.tsx:470 -#: src/pages/sales/SalesOrderDetail.tsx:516 +#: src/pages/build/BuildDetail.tsx:665 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:464 +#: src/pages/sales/ReturnOrderDetail.tsx:475 +#: src/pages/sales/SalesOrderDetail.tsx:521 msgid "Issue Order" msgstr "" -#: src/pages/build/BuildDetail.tsx:667 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:466 -#: src/pages/sales/ReturnOrderDetail.tsx:477 -#: src/pages/sales/SalesOrderDetail.tsx:530 +#: src/pages/build/BuildDetail.tsx:672 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:471 +#: src/pages/sales/ReturnOrderDetail.tsx:482 +#: src/pages/sales/SalesOrderDetail.tsx:535 msgid "Complete Order" msgstr "" -#: src/pages/build/BuildDetail.tsx:686 +#: src/pages/build/BuildDetail.tsx:691 msgid "Build Order Actions" msgstr "Produksjonsordre-handlinger" -#: src/pages/build/BuildDetail.tsx:691 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:489 -#: src/pages/sales/ReturnOrderDetail.tsx:500 -#: src/pages/sales/SalesOrderDetail.tsx:554 +#: src/pages/build/BuildDetail.tsx:696 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:494 +#: src/pages/sales/ReturnOrderDetail.tsx:505 +#: src/pages/sales/SalesOrderDetail.tsx:559 msgid "Edit order" msgstr "" -#: src/pages/build/BuildDetail.tsx:695 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:497 -#: src/pages/sales/ReturnOrderDetail.tsx:506 -#: src/pages/sales/SalesOrderDetail.tsx:559 -msgid "Duplicate order" -msgstr "" - -#: src/pages/build/BuildDetail.tsx:699 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:500 +#: src/pages/build/BuildDetail.tsx:700 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:502 #: src/pages/sales/ReturnOrderDetail.tsx:511 -#: src/pages/sales/SalesOrderDetail.tsx:562 -msgid "Hold order" +#: src/pages/sales/SalesOrderDetail.tsx:564 +msgid "Duplicate order" msgstr "" #: src/pages/build/BuildDetail.tsx:704 #: src/pages/purchasing/PurchaseOrderDetail.tsx:505 #: src/pages/sales/ReturnOrderDetail.tsx:516 #: src/pages/sales/SalesOrderDetail.tsx:567 +msgid "Hold order" +msgstr "" + +#: src/pages/build/BuildDetail.tsx:709 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:510 +#: src/pages/sales/ReturnOrderDetail.tsx:521 +#: src/pages/sales/SalesOrderDetail.tsx:572 msgid "Cancel order" msgstr "" -#: src/pages/build/BuildDetail.tsx:742 +#: src/pages/build/BuildDetail.tsx:747 #: src/pages/stock/StockDetail.tsx:344 -#: src/tables/build/BuildAllocatedStockTable.tsx:85 +#: src/tables/build/BuildAllocatedStockTable.tsx:82 #: src/tables/part/PartBuildAllocationsTable.tsx:45 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:157 #: src/tables/stock/StockTrackingTable.tsx:109 @@ -7143,7 +7206,7 @@ msgstr "" #~ msgid "Build order created" #~ msgstr "Build order created" -#: src/pages/build/BuildIndex.tsx:29 +#: src/pages/build/BuildIndex.tsx:35 #: src/tables/build/BuildOrderTable.tsx:184 msgid "Show external build orders" msgstr "" @@ -7152,61 +7215,82 @@ msgstr "" #~ msgid "New Build Order" #~ msgstr "New Build Order" -#: src/pages/build/BuildIndex.tsx:83 -#: src/pages/purchasing/PurchasingIndex.tsx:69 -#: src/pages/sales/SalesIndex.tsx:92 -#: src/pages/sales/SalesIndex.tsx:125 +#: src/pages/build/BuildIndex.tsx:74 +#: src/pages/part/CategoryDetail.tsx:292 +#: src/pages/purchasing/PurchasingIndex.tsx:74 +#: src/pages/purchasing/PurchasingIndex.tsx:107 +#: src/pages/purchasing/PurchasingIndex.tsx:135 +#: src/pages/purchasing/PurchasingIndex.tsx:156 +#: src/pages/purchasing/PurchasingIndex.tsx:184 +#: src/pages/sales/SalesIndex.tsx:61 +#: src/pages/sales/SalesIndex.tsx:107 +#: src/pages/sales/SalesIndex.tsx:140 msgid "Table View" msgstr "" -#: src/pages/build/BuildIndex.tsx:86 -#: src/pages/purchasing/PurchasingIndex.tsx:72 -#: src/pages/sales/SalesIndex.tsx:95 -#: src/pages/sales/SalesIndex.tsx:128 +#: src/pages/build/BuildIndex.tsx:80 +#: src/pages/purchasing/PurchasingIndex.tsx:80 +#: src/pages/sales/SalesIndex.tsx:67 +#: src/pages/sales/SalesIndex.tsx:113 msgid "Calendar View" msgstr "" -#: src/pages/company/CompanyDetail.tsx:99 +#: src/pages/build/BuildIndex.tsx:86 +#: src/pages/part/CategoryDetail.tsx:306 +#: src/pages/purchasing/PurchasingIndex.tsx:92 +#: src/pages/purchasing/PurchasingIndex.tsx:118 +#: src/pages/purchasing/PurchasingIndex.tsx:141 +#: src/pages/purchasing/PurchasingIndex.tsx:167 +#: src/pages/purchasing/PurchasingIndex.tsx:190 +#: src/pages/sales/SalesIndex.tsx:79 +#: src/pages/sales/SalesIndex.tsx:125 +#: src/pages/sales/SalesIndex.tsx:151 +msgid "Parametric View" +msgstr "" + +#: src/pages/company/CompanyDetail.tsx:100 msgid "Website" msgstr "Nettside" -#: src/pages/company/CompanyDetail.tsx:107 +#: src/pages/company/CompanyDetail.tsx:108 msgid "Phone Number" msgstr "" -#: src/pages/company/CompanyDetail.tsx:114 +#: src/pages/company/CompanyDetail.tsx:115 msgid "Email Address" msgstr "" -#: src/pages/company/CompanyDetail.tsx:121 +#: src/pages/company/CompanyDetail.tsx:122 msgid "Tax ID" msgstr "" -#: src/pages/company/CompanyDetail.tsx:131 +#: src/pages/company/CompanyDetail.tsx:132 msgid "Default Currency" msgstr "" -#: src/pages/company/CompanyDetail.tsx:142 +#: src/pages/company/CompanyDetail.tsx:143 #: src/pages/company/ManufacturerDetail.tsx:8 -#: src/pages/company/ManufacturerPartDetail.tsx:104 -#: src/pages/company/ManufacturerPartDetail.tsx:280 -#: src/pages/company/SupplierPartDetail.tsx:152 +#: src/pages/company/ManufacturerPartDetail.tsx:103 +#: src/pages/company/ManufacturerPartDetail.tsx:271 +#: src/pages/company/SupplierPartDetail.tsx:153 #: src/tables/Filter.tsx:347 #: src/tables/company/CompanyTable.tsx:101 #: src/tables/purchasing/SupplierPartTable.tsx:89 msgid "Manufacturer" msgstr "Produsent" -#: src/pages/company/CompanyDetail.tsx:148 +#: src/pages/company/CompanyDetail.tsx:149 #: src/pages/company/CustomerDetail.tsx:8 #: src/pages/part/pricing/SaleHistoryPanel.tsx:31 -#: src/pages/sales/ReturnOrderDetail.tsx:123 -#: src/pages/sales/SalesOrderDetail.tsx:113 -#: src/pages/sales/SalesOrderShipmentDetail.tsx:113 +#: src/pages/sales/ReturnOrderDetail.tsx:124 +#: src/pages/sales/SalesOrderDetail.tsx:114 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:111 #: src/pages/stock/StockDetail.tsx:370 #: src/tables/company/CompanyTable.tsx:106 +#: src/tables/sales/ReturnOrderParametricTable.tsx:32 #: src/tables/sales/ReturnOrderTable.tsx:108 -#: src/tables/sales/SalesOrderShipmentTable.tsx:111 +#: src/tables/sales/SalesOrderParametricTable.tsx:32 +#: src/tables/sales/SalesOrderShipmentTable.tsx:132 #: src/tables/sales/SalesOrderTable.tsx:133 #: src/tables/stock/StockTrackingTable.tsx:153 msgid "Customer" @@ -7216,11 +7300,11 @@ msgstr "Kunde" #~ msgid "Edit company" #~ msgstr "Edit company" -#: src/pages/company/CompanyDetail.tsx:181 +#: src/pages/company/CompanyDetail.tsx:182 msgid "Company Details" msgstr "" -#: src/pages/company/CompanyDetail.tsx:187 +#: src/pages/company/CompanyDetail.tsx:188 msgid "Supplied Parts" msgstr "Leverte Deler" @@ -7228,79 +7312,79 @@ msgstr "Leverte Deler" #~ msgid "Delete company" #~ msgstr "Delete company" -#: src/pages/company/CompanyDetail.tsx:194 +#: src/pages/company/CompanyDetail.tsx:195 msgid "Manufactured Parts" msgstr "Produserte deler" -#: src/pages/company/CompanyDetail.tsx:241 +#: src/pages/company/CompanyDetail.tsx:242 msgid "Assigned Stock" msgstr "Tildelt lagerbeholdning" -#: src/pages/company/CompanyDetail.tsx:282 +#: src/pages/company/CompanyDetail.tsx:287 #: src/tables/company/CompanyTable.tsx:82 msgid "Edit Company" msgstr "Rediger Bedrift" -#: src/pages/company/CompanyDetail.tsx:290 +#: src/pages/company/CompanyDetail.tsx:295 msgid "Delete Company" msgstr "" -#: src/pages/company/CompanyDetail.tsx:305 +#: src/pages/company/CompanyDetail.tsx:310 msgid "Company Actions" msgstr "Bedriftshandlinger" -#: src/pages/company/ManufacturerPartDetail.tsx:78 -#: src/pages/company/SupplierPartDetail.tsx:89 +#: src/pages/company/ManufacturerPartDetail.tsx:77 +#: src/pages/company/SupplierPartDetail.tsx:90 msgid "Internal Part" msgstr "" -#: src/pages/company/ManufacturerPartDetail.tsx:112 +#: src/pages/company/ManufacturerPartDetail.tsx:111 msgid "Manufacturer Part Number" msgstr "Produsentens delenummer" -#: src/pages/company/ManufacturerPartDetail.tsx:129 -#: src/pages/company/SupplierPartDetail.tsx:113 +#: src/pages/company/ManufacturerPartDetail.tsx:128 +#: src/pages/company/SupplierPartDetail.tsx:114 msgid "External Link" msgstr "" -#: src/pages/company/ManufacturerPartDetail.tsx:148 -#: src/pages/company/SupplierPartDetail.tsx:232 +#: src/pages/company/ManufacturerPartDetail.tsx:147 +#: src/pages/company/SupplierPartDetail.tsx:233 #: src/pages/part/PartDetail.tsx:787 msgid "Part Details" msgstr "" -#: src/pages/company/ManufacturerPartDetail.tsx:151 +#: src/pages/company/ManufacturerPartDetail.tsx:150 msgid "Manufacturer Details" msgstr "" -#: src/pages/company/ManufacturerPartDetail.tsx:160 +#: src/pages/company/ManufacturerPartDetail.tsx:159 msgid "Manufacturer Part Details" msgstr "" -#: src/pages/company/ManufacturerPartDetail.tsx:178 -#: src/pages/company/SupplierPartDetail.tsx:252 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:381 +#: src/pages/company/ManufacturerPartDetail.tsx:165 +#: src/pages/company/SupplierPartDetail.tsx:253 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:382 msgid "Received Stock" msgstr "Mottatt lagerbeholdning" -#: src/pages/company/ManufacturerPartDetail.tsx:220 +#: src/pages/company/ManufacturerPartDetail.tsx:211 #: src/tables/purchasing/ManufacturerPartTable.tsx:108 msgid "Edit Manufacturer Part" msgstr "Rediger produsentdel" -#: src/pages/company/ManufacturerPartDetail.tsx:227 +#: src/pages/company/ManufacturerPartDetail.tsx:218 #: src/tables/purchasing/ManufacturerPartTable.tsx:96 #: src/tables/purchasing/ManufacturerPartTable.tsx:115 #: src/tables/purchasing/ManufacturerPartTable.tsx:156 msgid "Add Manufacturer Part" msgstr "" -#: src/pages/company/ManufacturerPartDetail.tsx:239 +#: src/pages/company/ManufacturerPartDetail.tsx:230 #: src/tables/purchasing/ManufacturerPartTable.tsx:126 msgid "Delete Manufacturer Part" msgstr "Slett produsentdel" -#: src/pages/company/ManufacturerPartDetail.tsx:254 +#: src/pages/company/ManufacturerPartDetail.tsx:245 msgid "Manufacturer Part Actions" msgstr "" @@ -7308,12 +7392,12 @@ msgstr "" #~ msgid "ManufacturerPart" #~ msgstr "ManufacturerPart" -#: src/pages/company/SupplierPartDetail.tsx:104 +#: src/pages/company/SupplierPartDetail.tsx:105 #: src/tables/part/RelatedPartTable.tsx:82 msgid "Part Description" msgstr "Delbeskrivelse" -#: src/pages/company/SupplierPartDetail.tsx:179 +#: src/pages/company/SupplierPartDetail.tsx:180 #: src/tables/part/PartPurchaseOrdersTable.tsx:73 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:191 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:233 @@ -7321,50 +7405,50 @@ msgstr "Delbeskrivelse" msgid "Pack Quantity" msgstr "Pakkeantall" -#: src/pages/company/SupplierPartDetail.tsx:204 +#: src/pages/company/SupplierPartDetail.tsx:205 msgid "Supplier Availability" msgstr "" -#: src/pages/company/SupplierPartDetail.tsx:212 +#: src/pages/company/SupplierPartDetail.tsx:213 msgid "Availability Updated" msgstr "" -#: src/pages/company/SupplierPartDetail.tsx:237 +#: src/pages/company/SupplierPartDetail.tsx:238 msgid "Availability" msgstr "" -#: src/pages/company/SupplierPartDetail.tsx:246 +#: src/pages/company/SupplierPartDetail.tsx:247 msgid "Supplier Part Details" msgstr "" -#: src/pages/company/SupplierPartDetail.tsx:279 +#: src/pages/company/SupplierPartDetail.tsx:280 #: src/pages/part/PartPricingPanel.tsx:113 #: src/pages/part/pricing/PricingOverviewPanel.tsx:239 msgid "Supplier Pricing" msgstr "" -#: src/pages/company/SupplierPartDetail.tsx:308 +#: src/pages/company/SupplierPartDetail.tsx:313 msgid "Supplier Part Actions" msgstr "" -#: src/pages/company/SupplierPartDetail.tsx:332 +#: src/pages/company/SupplierPartDetail.tsx:337 #: src/tables/purchasing/SupplierPartTable.tsx:244 msgid "Edit Supplier Part" msgstr "Rediger Leverandørdel" -#: src/pages/company/SupplierPartDetail.tsx:340 +#: src/pages/company/SupplierPartDetail.tsx:345 #: src/tables/purchasing/SupplierPartTable.tsx:264 msgid "Delete Supplier Part" msgstr "Slett Leverandørdel" -#: src/pages/company/SupplierPartDetail.tsx:348 +#: src/pages/company/SupplierPartDetail.tsx:353 #: src/tables/purchasing/SupplierPartTable.tsx:172 #: src/tables/purchasing/SupplierPartTable.tsx:251 msgid "Add Supplier Part" msgstr "Legg til leverandørdel" -#: src/pages/company/SupplierPartDetail.tsx:388 -#: src/pages/part/PartDetail.tsx:1003 +#: src/pages/company/SupplierPartDetail.tsx:393 +#: src/pages/part/PartDetail.tsx:1018 msgid "No Stock" msgstr "" @@ -7411,83 +7495,83 @@ msgstr "" msgid "Basic user" msgstr "" -#: src/pages/part/CategoryDetail.tsx:100 +#: src/pages/part/CategoryDetail.tsx:103 #: src/pages/stock/LocationDetail.tsx:94 #: src/tables/settings/ErrorTable.tsx:63 #: src/tables/settings/ErrorTable.tsx:108 msgid "Path" msgstr "Sti" -#: src/pages/part/CategoryDetail.tsx:116 +#: src/pages/part/CategoryDetail.tsx:119 msgid "Parent Category" msgstr "" -#: src/pages/part/CategoryDetail.tsx:139 -#: src/pages/part/CategoryDetail.tsx:271 +#: src/pages/part/CategoryDetail.tsx:142 +#: src/pages/part/CategoryDetail.tsx:279 msgid "Subcategories" msgstr "" -#: src/pages/part/CategoryDetail.tsx:146 +#: src/pages/part/CategoryDetail.tsx:149 #: src/pages/stock/LocationDetail.tsx:134 #: src/tables/part/PartCategoryTable.tsx:89 #: src/tables/stock/StockLocationTable.tsx:43 msgid "Structural" msgstr "Strukturell" -#: src/pages/part/CategoryDetail.tsx:152 +#: src/pages/part/CategoryDetail.tsx:155 msgid "Parent default location" msgstr "" -#: src/pages/part/CategoryDetail.tsx:159 +#: src/pages/part/CategoryDetail.tsx:162 msgid "Default location" msgstr "" -#: src/pages/part/CategoryDetail.tsx:170 +#: src/pages/part/CategoryDetail.tsx:173 msgid "Top level part category" msgstr "" -#: src/pages/part/CategoryDetail.tsx:180 -#: src/pages/part/CategoryDetail.tsx:248 +#: src/pages/part/CategoryDetail.tsx:183 +#: src/pages/part/CategoryDetail.tsx:251 #: src/tables/part/PartCategoryTable.tsx:122 msgid "Edit Part Category" msgstr "" -#: src/pages/part/CategoryDetail.tsx:189 +#: src/pages/part/CategoryDetail.tsx:192 msgid "Move items to parent category" msgstr "" -#: src/pages/part/CategoryDetail.tsx:193 +#: src/pages/part/CategoryDetail.tsx:196 #: src/pages/stock/LocationDetail.tsx:226 msgid "Delete items" msgstr "" -#: src/pages/part/CategoryDetail.tsx:201 -#: src/pages/part/CategoryDetail.tsx:253 +#: src/pages/part/CategoryDetail.tsx:204 +#: src/pages/part/CategoryDetail.tsx:256 msgid "Delete Part Category" msgstr "" -#: src/pages/part/CategoryDetail.tsx:204 +#: src/pages/part/CategoryDetail.tsx:207 msgid "Parts Action" msgstr "" -#: src/pages/part/CategoryDetail.tsx:205 +#: src/pages/part/CategoryDetail.tsx:208 msgid "Action for parts in this category" msgstr "" -#: src/pages/part/CategoryDetail.tsx:211 +#: src/pages/part/CategoryDetail.tsx:214 msgid "Child Categories Action" msgstr "" -#: src/pages/part/CategoryDetail.tsx:212 +#: src/pages/part/CategoryDetail.tsx:215 msgid "Action for child categories in this category" msgstr "" -#: src/pages/part/CategoryDetail.tsx:244 +#: src/pages/part/CategoryDetail.tsx:247 #: src/tables/part/PartCategoryTable.tsx:143 msgid "Category Actions" msgstr "" -#: src/pages/part/CategoryDetail.tsx:265 +#: src/pages/part/CategoryDetail.tsx:273 msgid "Category Details" msgstr "" @@ -7585,7 +7669,6 @@ msgid "Category Default Location" msgstr "" #: src/pages/part/PartDetail.tsx:507 -#: src/tables/purchasing/ManufacturerPartParameterTable.tsx:48 msgid "Units" msgstr "Enheter" @@ -7600,7 +7683,7 @@ msgstr "Nøkkelord" #: src/pages/part/PartDetail.tsx:542 #: src/tables/bom/BomTable.tsx:439 -#: src/tables/build/BuildLineTable.tsx:305 +#: src/tables/build/BuildLineTable.tsx:306 #: src/tables/part/PartTable.tsx:319 #: src/tables/sales/SalesOrderLineItemTable.tsx:138 msgid "Available Stock" @@ -7608,7 +7691,7 @@ msgstr "" #: src/pages/part/PartDetail.tsx:548 #: src/tables/bom/BomTable.tsx:341 -#: src/tables/build/BuildLineTable.tsx:267 +#: src/tables/build/BuildLineTable.tsx:268 #: src/tables/sales/SalesOrderLineItemTable.tsx:180 msgid "On order" msgstr "I bestilling" @@ -7634,7 +7717,7 @@ msgstr "" #~ msgstr "Scheduling" #: src/pages/part/PartDetail.tsx:620 -#: src/tables/part/ParametricPartTable.tsx:359 +#: src/tables/part/ParametricPartTable.tsx:24 #: src/tables/part/PartTable.tsx:203 msgid "Locked" msgstr "" @@ -7671,16 +7754,16 @@ msgid "Saleable Part" msgstr "" #: src/pages/part/PartDetail.tsx:663 -#: src/pages/part/PartDetail.tsx:1033 +#: src/pages/part/PartDetail.tsx:1054 #: src/tables/bom/BomTable.tsx:150 #: src/tables/bom/BomTable.tsx:434 msgid "Virtual Part" msgstr "" #: src/pages/part/PartDetail.tsx:678 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:271 -#: src/pages/sales/ReturnOrderDetail.tsx:249 -#: src/pages/sales/SalesOrderDetail.tsx:242 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:272 +#: src/pages/sales/ReturnOrderDetail.tsx:250 +#: src/pages/sales/SalesOrderDetail.tsx:243 #: src/tables/ColumnRenderers.tsx:502 msgid "Creation Date" msgstr "Opprettelsesdato" @@ -7718,35 +7801,46 @@ msgstr "" msgid "Select Part Revision" msgstr "" -#: src/pages/part/PartDetail.tsx:823 +#: src/pages/part/PartDetail.tsx:812 msgid "Variants" msgstr "Varianter" -#: src/pages/part/PartDetail.tsx:830 +#: src/pages/part/PartDetail.tsx:819 #: src/pages/stock/StockDetail.tsx:542 msgid "Allocations" msgstr "Tildelinger" -#: src/pages/part/PartDetail.tsx:837 +#: src/pages/part/PartDetail.tsx:826 msgid "Bill of Materials" msgstr "Stykkliste (BOM)" -#: src/pages/part/PartDetail.tsx:849 +#: src/pages/part/PartDetail.tsx:838 msgid "Used In" msgstr "Brukt i" -#: src/pages/part/PartDetail.tsx:856 +#: src/pages/part/PartDetail.tsx:845 msgid "Part Pricing" msgstr "" -#: src/pages/part/PartDetail.tsx:926 +#: src/pages/part/PartDetail.tsx:915 msgid "Test Templates" msgstr "Testmaler" -#: src/pages/part/PartDetail.tsx:948 +#: src/pages/part/PartDetail.tsx:937 msgid "Related Parts" msgstr "Relaterte Deler" +#: src/pages/part/PartDetail.tsx:949 +#: src/tables/ColumnRenderers.tsx:73 +#: src/tables/bom/BomTable.tsx:657 +#: src/tables/part/PartTestTemplateTable.tsx:258 +msgid "Part is Locked" +msgstr "" + +#: src/pages/part/PartDetail.tsx:954 +msgid "Part parameters cannot be edited, as the part is locked" +msgstr "" + #: src/pages/part/PartDetail.tsx:956 #~ msgid "Count part stock" #~ msgstr "Count part stock" @@ -7755,42 +7849,46 @@ msgstr "Relaterte Deler" #~ msgid "Transfer part stock" #~ msgstr "Transfer part stock" -#: src/pages/part/PartDetail.tsx:1009 +#: src/pages/part/PartDetail.tsx:1024 #: src/tables/part/PartTestTemplateTable.tsx:112 #: src/tables/stock/StockItemTestResultTable.tsx:404 msgid "Required" msgstr "" -#: src/pages/part/PartDetail.tsx:1058 +#: src/pages/part/PartDetail.tsx:1042 +msgid "Deficit" +msgstr "" + +#: src/pages/part/PartDetail.tsx:1079 #: src/tables/part/PartTable.tsx:396 #: src/tables/part/PartTable.tsx:449 msgid "Add Part" msgstr "" -#: src/pages/part/PartDetail.tsx:1072 +#: src/pages/part/PartDetail.tsx:1093 msgid "Delete Part" msgstr "" -#: src/pages/part/PartDetail.tsx:1081 +#: src/pages/part/PartDetail.tsx:1102 msgid "Deleting this part cannot be reversed" msgstr "" -#: src/pages/part/PartDetail.tsx:1143 +#: src/pages/part/PartDetail.tsx:1164 #: src/pages/stock/StockDetail.tsx:883 msgid "Order" msgstr "" -#: src/pages/part/PartDetail.tsx:1144 +#: src/pages/part/PartDetail.tsx:1165 #: src/pages/stock/StockDetail.tsx:884 -#: src/tables/build/BuildLineTable.tsx:761 +#: src/tables/build/BuildLineTable.tsx:768 msgid "Order Stock" msgstr "" -#: src/pages/part/PartDetail.tsx:1156 +#: src/pages/part/PartDetail.tsx:1177 msgid "Search by serial number" msgstr "" -#: src/pages/part/PartDetail.tsx:1164 +#: src/pages/part/PartDetail.tsx:1185 #: src/tables/part/PartTable.tsx:506 msgid "Part Actions" msgstr "Delhandlinger" @@ -8039,7 +8137,7 @@ msgstr "" #: src/pages/part/pricing/PricingOverviewPanel.tsx:288 #: src/pages/stock/StockDetail.tsx:426 -#: src/tables/part/PartParameterTable.tsx:121 +#: src/tables/general/ParameterTable.tsx:101 #: src/tables/stock/StockItemTable.tsx:300 msgid "Last Updated" msgstr "" @@ -8107,17 +8205,17 @@ msgstr "" msgid "Variant Part" msgstr "" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:89 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:90 msgid "Edit Purchase Order" msgstr "" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:125 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:126 #: src/tables/purchasing/PurchaseOrderTable.tsx:154 #: src/tables/purchasing/PurchaseOrderTable.tsx:167 msgid "Add Purchase Order" msgstr "" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:147 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:148 msgid "Supplier Reference" msgstr "" @@ -8127,20 +8225,20 @@ msgstr "" #~ msgid "Order Currency," #~ msgstr "Order Currency," -#: src/pages/purchasing/PurchaseOrderDetail.tsx:187 -#: src/pages/sales/ReturnOrderDetail.tsx:160 -#: src/pages/sales/SalesOrderDetail.tsx:144 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:188 +#: src/pages/sales/ReturnOrderDetail.tsx:161 +#: src/pages/sales/SalesOrderDetail.tsx:145 msgid "Completed Line Items" msgstr "" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:196 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:197 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:272 msgid "Destination" msgstr "Destinasjon" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:202 -#: src/pages/sales/ReturnOrderDetail.tsx:167 -#: src/pages/sales/SalesOrderDetail.tsx:161 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:203 +#: src/pages/sales/ReturnOrderDetail.tsx:168 +#: src/pages/sales/SalesOrderDetail.tsx:162 msgid "Order Currency" msgstr "" @@ -8150,97 +8248,97 @@ msgstr "" #~ msgid "Created On" #~ msgstr "Created On" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:208 -#: src/pages/sales/ReturnOrderDetail.tsx:174 -#: src/pages/sales/SalesOrderDetail.tsx:167 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:209 +#: src/pages/sales/ReturnOrderDetail.tsx:175 +#: src/pages/sales/SalesOrderDetail.tsx:168 msgid "Total Cost" msgstr "" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:237 -#: src/pages/sales/ReturnOrderDetail.tsx:215 -#: src/pages/sales/SalesOrderDetail.tsx:208 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:238 +#: src/pages/sales/ReturnOrderDetail.tsx:216 +#: src/pages/sales/SalesOrderDetail.tsx:209 msgid "Contact Email" msgstr "" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:245 -#: src/pages/sales/ReturnOrderDetail.tsx:223 -#: src/pages/sales/SalesOrderDetail.tsx:216 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:246 +#: src/pages/sales/ReturnOrderDetail.tsx:224 +#: src/pages/sales/SalesOrderDetail.tsx:217 msgid "Contact Phone" msgstr "" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:278 -#: src/pages/sales/ReturnOrderDetail.tsx:257 -#: src/pages/sales/SalesOrderDetail.tsx:249 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:279 +#: src/pages/sales/ReturnOrderDetail.tsx:258 +#: src/pages/sales/SalesOrderDetail.tsx:250 msgid "Issue Date" msgstr "" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:303 -#: src/pages/sales/ReturnOrderDetail.tsx:281 -#: src/pages/sales/SalesOrderDetail.tsx:272 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:304 +#: src/pages/sales/ReturnOrderDetail.tsx:282 +#: src/pages/sales/SalesOrderDetail.tsx:273 #: src/tables/ColumnRenderers.tsx:510 #: src/tables/build/BuildOrderTable.tsx:137 #: src/tables/part/PartPurchaseOrdersTable.tsx:106 msgid "Completion Date" msgstr "" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:333 -#: src/pages/sales/ReturnOrderDetail.tsx:311 -#: src/pages/sales/SalesOrderDetail.tsx:349 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:334 +#: src/pages/sales/ReturnOrderDetail.tsx:312 +#: src/pages/sales/SalesOrderDetail.tsx:350 msgid "Order Details" msgstr "Ordredetaljer" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:339 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:348 -#: src/pages/sales/ReturnOrderDetail.tsx:153 -#: src/pages/sales/ReturnOrderDetail.tsx:317 -#: src/pages/sales/ReturnOrderDetail.tsx:326 -#: src/pages/sales/SalesOrderDetail.tsx:355 -#: src/pages/sales/SalesOrderDetail.tsx:364 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:340 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:349 +#: src/pages/sales/ReturnOrderDetail.tsx:154 +#: src/pages/sales/ReturnOrderDetail.tsx:318 +#: src/pages/sales/ReturnOrderDetail.tsx:327 +#: src/pages/sales/SalesOrderDetail.tsx:356 +#: src/pages/sales/SalesOrderDetail.tsx:365 msgid "Line Items" msgstr "Ordrelinjer" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:363 -#: src/pages/sales/ReturnOrderDetail.tsx:341 -#: src/pages/sales/SalesOrderDetail.tsx:378 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:364 +#: src/pages/sales/ReturnOrderDetail.tsx:342 +#: src/pages/sales/SalesOrderDetail.tsx:379 msgid "Extra Line Items" msgstr "" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:405 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:410 msgid "Issue Purchase Order" msgstr "" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:413 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:418 msgid "Cancel Purchase Order" msgstr "" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:421 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:426 msgid "Hold Purchase Order" msgstr "" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:429 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:434 msgid "Complete Purchase Order" msgstr "" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:485 -#: src/pages/sales/ReturnOrderDetail.tsx:496 -#: src/pages/sales/SalesOrderDetail.tsx:549 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:490 +#: src/pages/sales/ReturnOrderDetail.tsx:501 +#: src/pages/sales/SalesOrderDetail.tsx:554 msgid "Order Actions" msgstr "Ordrehandlinger" -#: src/pages/sales/ReturnOrderDetail.tsx:114 -#: src/pages/sales/SalesOrderDetail.tsx:104 -#: src/pages/sales/SalesOrderShipmentDetail.tsx:134 +#: src/pages/sales/ReturnOrderDetail.tsx:115 +#: src/pages/sales/SalesOrderDetail.tsx:105 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:132 #: src/tables/sales/SalesOrderTable.tsx:141 msgid "Customer Reference" msgstr "Kundereferanse" -#: src/pages/sales/ReturnOrderDetail.tsx:195 +#: src/pages/sales/ReturnOrderDetail.tsx:196 msgid "Return Address" msgstr "" -#: src/pages/sales/ReturnOrderDetail.tsx:201 -#: src/pages/sales/SalesOrderDetail.tsx:194 -#: src/pages/sales/SalesOrderShipmentDetail.tsx:181 +#: src/pages/sales/ReturnOrderDetail.tsx:202 +#: src/pages/sales/SalesOrderDetail.tsx:195 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:179 msgid "Not specified" msgstr "" @@ -8248,117 +8346,117 @@ msgstr "" #~ msgid "Order canceled" #~ msgstr "Order canceled" -#: src/pages/sales/ReturnOrderDetail.tsx:389 +#: src/pages/sales/ReturnOrderDetail.tsx:394 msgid "Edit Return Order" msgstr "" -#: src/pages/sales/ReturnOrderDetail.tsx:407 +#: src/pages/sales/ReturnOrderDetail.tsx:412 #: src/tables/sales/ReturnOrderTable.tsx:154 #: src/tables/sales/ReturnOrderTable.tsx:167 msgid "Add Return Order" msgstr "" -#: src/pages/sales/ReturnOrderDetail.tsx:416 +#: src/pages/sales/ReturnOrderDetail.tsx:421 msgid "Issue Return Order" msgstr "" -#: src/pages/sales/ReturnOrderDetail.tsx:424 +#: src/pages/sales/ReturnOrderDetail.tsx:429 msgid "Cancel Return Order" msgstr "" -#: src/pages/sales/ReturnOrderDetail.tsx:432 +#: src/pages/sales/ReturnOrderDetail.tsx:437 msgid "Hold Return Order" msgstr "" -#: src/pages/sales/ReturnOrderDetail.tsx:440 +#: src/pages/sales/ReturnOrderDetail.tsx:445 msgid "Complete Return Order" msgstr "" -#: src/pages/sales/SalesOrderDetail.tsx:153 +#: src/pages/sales/SalesOrderDetail.tsx:154 msgid "Completed Shipments" msgstr "Fullførte forsendelser" -#: src/pages/sales/SalesOrderDetail.tsx:188 -#: src/pages/sales/SalesOrderShipmentDetail.tsx:170 +#: src/pages/sales/SalesOrderDetail.tsx:189 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:168 msgid "Shipping Address" msgstr "" -#: src/pages/sales/SalesOrderDetail.tsx:316 +#: src/pages/sales/SalesOrderDetail.tsx:317 msgid "Edit Sales Order" msgstr "" -#: src/pages/sales/SalesOrderDetail.tsx:338 +#: src/pages/sales/SalesOrderDetail.tsx:339 #: src/tables/sales/SalesOrderTable.tsx:108 #: src/tables/sales/SalesOrderTable.tsx:121 msgid "Add Sales Order" msgstr "" -#: src/pages/sales/SalesOrderDetail.tsx:396 +#: src/pages/sales/SalesOrderDetail.tsx:397 #: src/tables/sales/SalesOrderTable.tsx:147 msgid "Shipments" msgstr "" -#: src/pages/sales/SalesOrderDetail.tsx:443 +#: src/pages/sales/SalesOrderDetail.tsx:448 msgid "Issue Sales Order" msgstr "" -#: src/pages/sales/SalesOrderDetail.tsx:451 +#: src/pages/sales/SalesOrderDetail.tsx:456 msgid "Cancel Sales Order" msgstr "" -#: src/pages/sales/SalesOrderDetail.tsx:459 +#: src/pages/sales/SalesOrderDetail.tsx:464 msgid "Hold Sales Order" msgstr "" -#: src/pages/sales/SalesOrderDetail.tsx:467 +#: src/pages/sales/SalesOrderDetail.tsx:472 msgid "Ship Sales Order" msgstr "" -#: src/pages/sales/SalesOrderDetail.tsx:469 +#: src/pages/sales/SalesOrderDetail.tsx:474 msgid "Ship this order?" msgstr "" -#: src/pages/sales/SalesOrderDetail.tsx:470 +#: src/pages/sales/SalesOrderDetail.tsx:475 msgid "Order shipped" msgstr "" -#: src/pages/sales/SalesOrderDetail.tsx:478 +#: src/pages/sales/SalesOrderDetail.tsx:483 msgid "Complete Sales Order" msgstr "" -#: src/pages/sales/SalesOrderDetail.tsx:523 +#: src/pages/sales/SalesOrderDetail.tsx:528 msgid "Ship Order" msgstr "" -#: src/pages/sales/SalesOrderShipmentDetail.tsx:142 -#: src/tables/sales/SalesOrderShipmentTable.tsx:135 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:140 +#: src/tables/sales/SalesOrderShipmentTable.tsx:156 msgid "Shipment Reference" msgstr "" -#: src/pages/sales/SalesOrderShipmentDetail.tsx:148 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:146 msgid "Tracking Number" msgstr "" -#: src/pages/sales/SalesOrderShipmentDetail.tsx:156 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:154 msgid "Invoice Number" msgstr "" -#: src/pages/sales/SalesOrderShipmentDetail.tsx:191 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:189 msgid "Allocated Items" msgstr "" -#: src/pages/sales/SalesOrderShipmentDetail.tsx:196 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:194 msgid "Checked By" msgstr "" -#: src/pages/sales/SalesOrderShipmentDetail.tsx:202 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:200 msgid "Not checked" msgstr "" -#: src/pages/sales/SalesOrderShipmentDetail.tsx:208 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:206 #: src/tables/ColumnRenderers.tsx:518 #: src/tables/sales/SalesOrderAllocationTable.tsx:182 -#: src/tables/sales/SalesOrderShipmentTable.tsx:168 +#: src/tables/sales/SalesOrderShipmentTable.tsx:189 msgid "Shipment Date" msgstr "" @@ -8366,108 +8464,82 @@ msgstr "" #~ msgid "Assigned Items" #~ msgstr "Assigned Items" -#: src/pages/sales/SalesOrderShipmentDetail.tsx:216 -#: src/tables/sales/SalesOrderShipmentTable.tsx:172 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:214 +#: src/tables/sales/SalesOrderShipmentTable.tsx:193 msgid "Delivery Date" msgstr "" -#: src/pages/sales/SalesOrderShipmentDetail.tsx:255 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:253 msgid "Shipment Details" msgstr "" -#: src/pages/sales/SalesOrderShipmentDetail.tsx:294 -#: src/pages/sales/SalesOrderShipmentDetail.tsx:438 -#: src/tables/sales/SalesOrderShipmentTable.tsx:90 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:292 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:406 +#: src/tables/sales/SalesOrderShipmentTable.tsx:97 msgid "Edit Shipment" msgstr "" -#: src/pages/sales/SalesOrderShipmentDetail.tsx:301 -#: src/pages/sales/SalesOrderShipmentDetail.tsx:457 -#: src/tables/sales/SalesOrderShipmentTable.tsx:82 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:299 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:425 +#: src/tables/sales/SalesOrderShipmentTable.tsx:89 msgid "Cancel Shipment" msgstr "" -#: src/pages/sales/SalesOrderShipmentDetail.tsx:314 -#: src/tables/sales/SalesOrderShipmentTable.tsx:98 -#: src/tables/sales/SalesOrderShipmentTable.tsx:193 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:312 +#: src/tables/sales/SalesOrderShipmentTable.tsx:119 +#: src/tables/sales/SalesOrderShipmentTable.tsx:238 msgid "Complete Shipment" msgstr "" -#: src/pages/sales/SalesOrderShipmentDetail.tsx:326 -#: src/pages/sales/SalesOrderShipmentDetail.tsx:328 -msgid "Check Shipment" -msgstr "" - -#: src/pages/sales/SalesOrderShipmentDetail.tsx:329 -msgid "Marking the shipment as checked indicates that you have verified that all items included in this shipment are correct" -msgstr "" - #: src/pages/sales/SalesOrderShipmentDetail.tsx:339 -msgid "Shipment marked as checked" -msgstr "" - -#: src/pages/sales/SalesOrderShipmentDetail.tsx:346 -#: src/pages/sales/SalesOrderShipmentDetail.tsx:348 -msgid "Uncheck Shipment" -msgstr "" - -#: src/pages/sales/SalesOrderShipmentDetail.tsx:349 -msgid "Marking the shipment as unchecked indicates that the shipment requires further verification" -msgstr "" - -#: src/pages/sales/SalesOrderShipmentDetail.tsx:359 -msgid "Shipment marked as unchecked" -msgstr "" - -#: src/pages/sales/SalesOrderShipmentDetail.tsx:371 #: src/tables/part/PartPurchaseOrdersTable.tsx:122 msgid "Pending" msgstr "" -#: src/pages/sales/SalesOrderShipmentDetail.tsx:377 -#: src/tables/sales/SalesOrderShipmentTable.tsx:147 -#: src/tables/sales/SalesOrderShipmentTable.tsx:254 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:345 +#: src/tables/sales/SalesOrderShipmentTable.tsx:168 +#: src/tables/sales/SalesOrderShipmentTable.tsx:299 msgid "Checked" msgstr "" -#: src/pages/sales/SalesOrderShipmentDetail.tsx:383 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:351 msgid "Not Checked" msgstr "" -#: src/pages/sales/SalesOrderShipmentDetail.tsx:389 -#: src/tables/sales/SalesOrderShipmentTable.tsx:154 -#: src/tables/sales/SalesOrderShipmentTable.tsx:259 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:357 +#: src/tables/sales/SalesOrderShipmentTable.tsx:175 +#: src/tables/sales/SalesOrderShipmentTable.tsx:304 msgid "Shipped" msgstr "" -#: src/pages/sales/SalesOrderShipmentDetail.tsx:395 -#: src/tables/sales/SalesOrderShipmentTable.tsx:161 -#: src/tables/sales/SalesOrderShipmentTable.tsx:264 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:363 +#: src/tables/sales/SalesOrderShipmentTable.tsx:182 +#: src/tables/sales/SalesOrderShipmentTable.tsx:309 #: src/tables/settings/EmailTable.tsx:31 msgid "Delivered" msgstr "" -#: src/pages/sales/SalesOrderShipmentDetail.tsx:410 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:378 msgid "Send Shipment" msgstr "" -#: src/pages/sales/SalesOrderShipmentDetail.tsx:433 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:401 msgid "Shipment Actions" msgstr "" -#: src/pages/sales/SalesOrderShipmentDetail.tsx:442 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:410 msgid "Check" msgstr "" -#: src/pages/sales/SalesOrderShipmentDetail.tsx:443 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:411 msgid "Mark shipment as checked" msgstr "" -#: src/pages/sales/SalesOrderShipmentDetail.tsx:449 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:417 msgid "Uncheck" msgstr "" -#: src/pages/sales/SalesOrderShipmentDetail.tsx:450 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:418 msgid "Mark shipment as unchecked" msgstr "" @@ -8775,13 +8847,6 @@ msgstr "" msgid "Part is not active" msgstr "" -#: src/tables/ColumnRenderers.tsx:73 -#: src/tables/bom/BomTable.tsx:657 -#: src/tables/part/PartParameterTable.tsx:227 -#: src/tables/part/PartTestTemplateTable.tsx:258 -msgid "Part is Locked" -msgstr "" - #: src/tables/ColumnRenderers.tsx:78 msgid "You are subscribed to notifications for this part" msgstr "" @@ -9219,13 +9284,13 @@ msgstr "" #~ msgstr "Show asssmbled items" #: src/tables/bom/BomTable.tsx:315 -#: src/tables/build/BuildLineTable.tsx:276 +#: src/tables/build/BuildLineTable.tsx:277 #: src/tables/part/PartTable.tsx:145 msgid "External stock" msgstr "" #: src/tables/bom/BomTable.tsx:323 -#: src/tables/build/BuildLineTable.tsx:239 +#: src/tables/build/BuildLineTable.tsx:240 msgid "Includes substitute stock" msgstr "Inkluderer erstatningsbeholdning" @@ -9234,7 +9299,7 @@ msgstr "Inkluderer erstatningsbeholdning" #~ msgstr "Edit Bom Item" #: src/tables/bom/BomTable.tsx:332 -#: src/tables/build/BuildLineTable.tsx:249 +#: src/tables/build/BuildLineTable.tsx:250 #: src/tables/sales/SalesOrderLineItemTable.tsx:166 msgid "Includes variant stock" msgstr "Inkluderer variantbeholdning" @@ -9272,8 +9337,8 @@ msgid "Stock Information" msgstr "Lagerinformasjon" #: src/tables/bom/BomTable.tsx:399 -#: src/tables/build/BuildLineTable.tsx:496 -#: src/tables/build/BuildLineTable.tsx:537 +#: src/tables/build/BuildLineTable.tsx:497 +#: src/tables/build/BuildLineTable.tsx:538 msgid "Consumable item" msgstr "Forbruksvare" @@ -9282,7 +9347,7 @@ msgid "No available stock" msgstr "" #: src/tables/bom/BomTable.tsx:420 -#: src/tables/build/BuildLineTable.tsx:213 +#: src/tables/build/BuildLineTable.tsx:214 msgid "Show testable items" msgstr "" @@ -9291,7 +9356,7 @@ msgid "Show trackable items" msgstr "Vis sporbare deler" #: src/tables/bom/BomTable.tsx:430 -#: src/tables/build/BuildLineTable.tsx:208 +#: src/tables/build/BuildLineTable.tsx:209 msgid "Show assembled items" msgstr "" @@ -9335,7 +9400,7 @@ msgstr "" #: src/tables/bom/BomTable.tsx:464 #: src/tables/bom/UsedInTable.tsx:85 -#: src/tables/build/BuildLineTable.tsx:202 +#: src/tables/build/BuildLineTable.tsx:203 msgid "Optional" msgstr "Valgfritt" @@ -9345,7 +9410,7 @@ msgid "Show optional items" msgstr "Vis valgfrie elementer" #: src/tables/bom/BomTable.tsx:469 -#: src/tables/build/BuildLineTable.tsx:197 +#: src/tables/build/BuildLineTable.tsx:198 msgid "Consumable" msgstr "Forbruksvare" @@ -9420,6 +9485,7 @@ msgid "Add a single BOM item" msgstr "" #: src/tables/bom/BomTable.tsx:637 +#: src/tables/general/ParameterTable.tsx:206 #: src/tables/part/PartTable.tsx:546 msgid "Import from File" msgstr "" @@ -9433,8 +9499,8 @@ msgid "Bill of materials cannot be edited, as the part is locked" msgstr "" #: src/tables/bom/UsedInTable.tsx:34 -#: src/tables/build/BuildLineTable.tsx:207 -#: src/tables/part/ParametricPartTable.tsx:364 +#: src/tables/build/BuildLineTable.tsx:208 +#: src/tables/part/ParametricPartTable.tsx:29 #: src/tables/part/PartBuildAllocationsTable.tsx:60 #: src/tables/part/PartTable.tsx:209 #: src/tables/stock/StockItemTable.tsx:333 @@ -9455,11 +9521,11 @@ msgstr "Sporbar" msgid "Show trackable assemblies" msgstr "Vis sporbare sammenstillinger" -#: src/tables/build/BuildAllocatedStockTable.tsx:67 +#: src/tables/build/BuildAllocatedStockTable.tsx:64 msgid "Allocated to Output" msgstr "" -#: src/tables/build/BuildAllocatedStockTable.tsx:68 +#: src/tables/build/BuildAllocatedStockTable.tsx:65 msgid "Show items allocated to a build output" msgstr "" @@ -9472,50 +9538,68 @@ msgstr "" #~ msgid "Include orders for part variants" #~ msgstr "Include orders for part variants" -#: src/tables/build/BuildAllocatedStockTable.tsx:97 +#: src/tables/build/BuildAllocatedStockTable.tsx:94 #: src/tables/part/PartBuildAllocationsTable.tsx:84 #: src/tables/part/PartPurchaseOrdersTable.tsx:132 #: src/tables/part/PartSalesAllocationsTable.tsx:69 #: src/tables/sales/SalesOrderAllocationTable.tsx:122 -#: src/tables/sales/SalesOrderShipmentTable.tsx:130 +#: src/tables/sales/SalesOrderShipmentTable.tsx:151 msgid "Order Status" msgstr "" +#: src/tables/build/BuildAllocatedStockTable.tsx:164 +#: src/tables/build/BuildLineTable.tsx:651 +msgid "Edit Stock Allocation" +msgstr "" + #: src/tables/build/BuildAllocatedStockTable.tsx:164 #~ msgid "Edit Build Item" #~ msgstr "Edit Build Item" -#: src/tables/build/BuildAllocatedStockTable.tsx:167 -#: src/tables/build/BuildLineTable.tsx:650 -msgid "Edit Stock Allocation" -msgstr "" - #: src/tables/build/BuildAllocatedStockTable.tsx:174 #~ msgid "Delete Build Item" #~ msgstr "Delete Build Item" -#: src/tables/build/BuildAllocatedStockTable.tsx:180 -#: src/tables/build/BuildLineTable.tsx:663 -msgid "Delete Stock Allocation" +#: src/tables/build/BuildAllocatedStockTable.tsx:177 +#: src/tables/build/BuildLineTable.tsx:664 +#: src/tables/sales/SalesOrderAllocationTable.tsx:218 +msgid "Remove Allocated Stock" msgstr "" -#: src/tables/build/BuildAllocatedStockTable.tsx:239 +#: src/tables/build/BuildAllocatedStockTable.tsx:180 +#: src/tables/build/BuildLineTable.tsx:663 +#~ msgid "Delete Stock Allocation" +#~ msgstr "Delete Stock Allocation" + +#: src/tables/build/BuildAllocatedStockTable.tsx:182 +#: src/tables/build/BuildLineTable.tsx:669 +#: src/tables/sales/SalesOrderAllocationTable.tsx:221 +msgid "Are you sure you want to remove this allocated stock from the order?" +msgstr "" + +#: src/tables/build/BuildAllocatedStockTable.tsx:242 msgid "Consume" msgstr "" +#: src/tables/build/BuildAllocatedStockTable.tsx:259 +#: src/tables/build/BuildLineTable.tsx:112 +#: src/tables/sales/SalesOrderAllocationTable.tsx:248 +msgid "Remove allocated stock" +msgstr "" + #: src/tables/build/BuildLineTable.tsx:59 #~ msgid "Show lines with available stock" #~ msgstr "Show lines with available stock" -#: src/tables/build/BuildLineTable.tsx:120 +#: src/tables/build/BuildLineTable.tsx:121 msgid "View Stock Item" msgstr "" -#: src/tables/build/BuildLineTable.tsx:183 +#: src/tables/build/BuildLineTable.tsx:184 msgid "Show fully allocated lines" msgstr "" -#: src/tables/build/BuildLineTable.tsx:188 +#: src/tables/build/BuildLineTable.tsx:189 msgid "Show fully consumed lines" msgstr "" @@ -9523,124 +9607,124 @@ msgstr "" #~ msgid "Show allocated lines" #~ msgstr "Show allocated lines" -#: src/tables/build/BuildLineTable.tsx:193 +#: src/tables/build/BuildLineTable.tsx:194 msgid "Show items with sufficient available stock" msgstr "" -#: src/tables/build/BuildLineTable.tsx:198 +#: src/tables/build/BuildLineTable.tsx:199 msgid "Show consumable lines" msgstr "" -#: src/tables/build/BuildLineTable.tsx:203 +#: src/tables/build/BuildLineTable.tsx:204 msgid "Show optional lines" msgstr "" -#: src/tables/build/BuildLineTable.tsx:212 +#: src/tables/build/BuildLineTable.tsx:213 #: src/tables/part/PartTable.tsx:233 msgid "Testable" msgstr "" -#: src/tables/build/BuildLineTable.tsx:217 +#: src/tables/build/BuildLineTable.tsx:218 #: src/tables/stock/StockItemTable.tsx:388 msgid "Tracked" msgstr "Spores" -#: src/tables/build/BuildLineTable.tsx:218 +#: src/tables/build/BuildLineTable.tsx:219 msgid "Show tracked lines" msgstr "" -#: src/tables/build/BuildLineTable.tsx:223 +#: src/tables/build/BuildLineTable.tsx:224 msgid "Show items with stock on order" msgstr "" -#: src/tables/build/BuildLineTable.tsx:258 +#: src/tables/build/BuildLineTable.tsx:259 #: src/tables/sales/SalesOrderLineItemTable.tsx:172 msgid "In production" msgstr "" -#: src/tables/build/BuildLineTable.tsx:286 +#: src/tables/build/BuildLineTable.tsx:287 msgid "Insufficient stock" msgstr "" -#: src/tables/build/BuildLineTable.tsx:302 +#: src/tables/build/BuildLineTable.tsx:303 #: src/tables/sales/SalesOrderLineItemTable.tsx:160 #: src/tables/stock/StockItemTable.tsx:191 msgid "No stock available" msgstr "Ingen lagerbeholdning tilgjengelig" -#: src/tables/build/BuildLineTable.tsx:375 +#: src/tables/build/BuildLineTable.tsx:376 msgid "Gets Inherited" msgstr "" -#: src/tables/build/BuildLineTable.tsx:388 +#: src/tables/build/BuildLineTable.tsx:389 msgid "Unit Quantity" msgstr "" -#: src/tables/build/BuildLineTable.tsx:415 +#: src/tables/build/BuildLineTable.tsx:416 msgid "Setup Quantity" msgstr "" -#: src/tables/build/BuildLineTable.tsx:424 +#: src/tables/build/BuildLineTable.tsx:425 msgid "Attrition" msgstr "" -#: src/tables/build/BuildLineTable.tsx:432 +#: src/tables/build/BuildLineTable.tsx:433 msgid "Rounding Multiple" msgstr "" -#: src/tables/build/BuildLineTable.tsx:441 +#: src/tables/build/BuildLineTable.tsx:442 msgid "BOM Information" msgstr "" -#: src/tables/build/BuildLineTable.tsx:515 +#: src/tables/build/BuildLineTable.tsx:516 #: src/tables/part/PartBuildAllocationsTable.tsx:102 msgid "Fully allocated" msgstr "" -#: src/tables/build/BuildLineTable.tsx:563 +#: src/tables/build/BuildLineTable.tsx:564 #: src/tables/sales/SalesOrderLineItemTable.tsx:311 msgid "Create Build Order" msgstr "" -#: src/tables/build/BuildLineTable.tsx:592 +#: src/tables/build/BuildLineTable.tsx:593 msgid "Auto allocation in progress" msgstr "" -#: src/tables/build/BuildLineTable.tsx:595 -#: src/tables/build/BuildLineTable.tsx:802 +#: src/tables/build/BuildLineTable.tsx:596 +#: src/tables/build/BuildLineTable.tsx:809 msgid "Auto Allocate Stock" msgstr "" -#: src/tables/build/BuildLineTable.tsx:596 +#: src/tables/build/BuildLineTable.tsx:597 msgid "Automatically allocate stock to this build according to the selected options" msgstr "" -#: src/tables/build/BuildLineTable.tsx:616 -#: src/tables/build/BuildLineTable.tsx:630 -#: src/tables/build/BuildLineTable.tsx:751 -#: src/tables/build/BuildLineTable.tsx:852 +#: src/tables/build/BuildLineTable.tsx:617 +#: src/tables/build/BuildLineTable.tsx:631 +#: src/tables/build/BuildLineTable.tsx:758 +#: src/tables/build/BuildLineTable.tsx:859 #: src/tables/build/BuildOutputTable.tsx:355 #: src/tables/build/BuildOutputTable.tsx:360 msgid "Deallocate Stock" msgstr "" -#: src/tables/build/BuildLineTable.tsx:632 +#: src/tables/build/BuildLineTable.tsx:633 msgid "Deallocate all untracked stock for this build order" msgstr "" -#: src/tables/build/BuildLineTable.tsx:634 +#: src/tables/build/BuildLineTable.tsx:635 msgid "Deallocate stock from the selected line item" msgstr "" -#: src/tables/build/BuildLineTable.tsx:638 +#: src/tables/build/BuildLineTable.tsx:639 msgid "Stock has been deallocated" msgstr "" -#: src/tables/build/BuildLineTable.tsx:771 +#: src/tables/build/BuildLineTable.tsx:778 msgid "Build Stock" msgstr "" -#: src/tables/build/BuildLineTable.tsx:784 +#: src/tables/build/BuildLineTable.tsx:791 #: src/tables/sales/SalesOrderLineItemTable.tsx:487 msgid "View Part" msgstr "" @@ -9739,7 +9823,7 @@ msgid "Serialize Build Output" msgstr "" #: src/tables/build/BuildOutputTable.tsx:405 -#: src/tables/part/PartTestResultTable.tsx:310 +#: src/tables/part/PartTestResultTable.tsx:318 #: src/tables/stock/StockItemTable.tsx:328 msgid "Filter by stock status" msgstr "Filtrer etter lagerstatus" @@ -9964,8 +10048,8 @@ msgid "View Item" msgstr "" #: src/tables/general/ExtraLineItemTable.tsx:95 -#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:299 -#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:403 +#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:300 +#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:405 #: src/tables/sales/ReturnOrderLineItemTable.tsx:83 #: src/tables/sales/ReturnOrderLineItemTable.tsx:187 #: src/tables/sales/SalesOrderLineItemTable.tsx:252 @@ -9974,14 +10058,14 @@ msgid "Add Line Item" msgstr "Legg til ordrelinje" #: src/tables/general/ExtraLineItemTable.tsx:108 -#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:320 +#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:322 #: src/tables/sales/ReturnOrderLineItemTable.tsx:96 #: src/tables/sales/SalesOrderLineItemTable.tsx:271 msgid "Edit Line Item" msgstr "Rediger ordrelinje" #: src/tables/general/ExtraLineItemTable.tsx:117 -#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:329 +#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:331 #: src/tables/sales/ReturnOrderLineItemTable.tsx:105 #: src/tables/sales/SalesOrderLineItemTable.tsx:280 msgid "Delete Line Item" @@ -9991,6 +10075,137 @@ msgstr "" msgid "Add Extra Line Item" msgstr "" +#: src/tables/general/ParameterTable.tsx:88 +msgid "Internal Units" +msgstr "" + +#: src/tables/general/ParameterTable.tsx:108 +#: src/tables/general/ParameterTable.tsx:123 +msgid "Updated By" +msgstr "" + +#: src/tables/general/ParameterTable.tsx:118 +msgid "Show parameters for enabled templates" +msgstr "" + +#: src/tables/general/ParameterTable.tsx:124 +msgid "Filter by user who last updated the parameter" +msgstr "" + +#: src/tables/general/ParameterTable.tsx:154 +msgid "Import Parameters" +msgstr "" + +#: src/tables/general/ParameterTable.tsx:164 +#: src/tables/general/ParametricDataTable.tsx:261 +#: src/tables/general/ParametricDataTable.tsx:392 +msgid "Add Parameter" +msgstr "" + +#: src/tables/general/ParameterTable.tsx:175 +#: src/tables/general/ParameterTable.tsx:222 +#: src/tables/general/ParametricDataTable.tsx:285 +msgid "Edit Parameter" +msgstr "" + +#: src/tables/general/ParameterTable.tsx:183 +#: src/tables/general/ParameterTable.tsx:230 +msgid "Delete Parameter" +msgstr "" + +#: src/tables/general/ParameterTable.tsx:191 +msgid "Add Parameters" +msgstr "" + +#: src/tables/general/ParameterTable.tsx:197 +msgid "Create Parameter" +msgstr "" + +#: src/tables/general/ParameterTable.tsx:199 +msgid "Create a new parameter" +msgstr "" + +#: src/tables/general/ParameterTable.tsx:208 +msgid "Import parameters from a file" +msgstr "" + +#: src/tables/general/ParameterTemplateTable.tsx:48 +#: src/tables/general/ParameterTemplateTable.tsx:197 +msgid "Add Parameter Template" +msgstr "" + +#: src/tables/general/ParameterTemplateTable.tsx:64 +msgid "Duplicate Parameter Template" +msgstr "" + +#: src/tables/general/ParameterTemplateTable.tsx:78 +msgid "Delete Parameter Template" +msgstr "Slett parametermal" + +#: src/tables/general/ParameterTemplateTable.tsx:85 +msgid "Edit Parameter Template" +msgstr "Rediger parametermal" + +#: src/tables/general/ParameterTemplateTable.tsx:138 +msgid "Checkbox" +msgstr "Sjekkboks" + +#: src/tables/general/ParameterTemplateTable.tsx:139 +msgid "Show checkbox templates" +msgstr "Vis sjekkboks-maler" + +#: src/tables/general/ParameterTemplateTable.tsx:143 +msgid "Has choices" +msgstr "Har valg" + +#: src/tables/general/ParameterTemplateTable.tsx:144 +msgid "Show templates with choices" +msgstr "Vis maler med valg" + +#: src/tables/general/ParameterTemplateTable.tsx:148 +#: src/tables/part/PartTable.tsx:245 +msgid "Has Units" +msgstr "Har enheter" + +#: src/tables/general/ParameterTemplateTable.tsx:149 +msgid "Show templates with units" +msgstr "Vis maler med enheter" + +#: src/tables/general/ParameterTemplateTable.tsx:154 +msgid "Show enabled templates" +msgstr "" + +#: src/tables/general/ParameterTemplateTable.tsx:158 +#: src/tables/settings/ImportSessionTable.tsx:111 +#: src/tables/settings/TemplateTable.tsx:368 +msgid "Model Type" +msgstr "" + +#: src/tables/general/ParameterTemplateTable.tsx:159 +msgid "Filter by model type" +msgstr "" + +#: src/tables/general/ParametricDataTable.tsx:79 +msgid "Click to edit" +msgstr "" + +#: src/tables/general/ParametricDataTableFilters.tsx:36 +msgid "True" +msgstr "" + +#: src/tables/general/ParametricDataTableFilters.tsx:37 +msgid "False" +msgstr "" + +#: src/tables/general/ParametricDataTableFilters.tsx:47 +#: src/tables/general/ParametricDataTableFilters.tsx:80 +msgid "Select a choice" +msgstr "" + +#: src/tables/general/ParametricDataTableFilters.tsx:100 +msgid "Enter a value" +msgstr "" + #: src/tables/machine/MachineListTable.tsx:133 msgid "Machine restarted" msgstr "" @@ -10071,7 +10286,7 @@ msgid "Initialized" msgstr "" #: src/tables/machine/MachineListTable.tsx:410 -#: src/tables/machine/MachineTypeTable.tsx:307 +#: src/tables/machine/MachineTypeTable.tsx:305 msgid "No errors reported" msgstr "" @@ -10132,15 +10347,15 @@ msgstr "" #~ msgid "Machine type information" #~ msgstr "Machine type information" -#: src/tables/machine/MachineTypeTable.tsx:128 +#: src/tables/machine/MachineTypeTable.tsx:126 msgid "Not Found" msgstr "" -#: src/tables/machine/MachineTypeTable.tsx:131 +#: src/tables/machine/MachineTypeTable.tsx:129 msgid "Machine type not found." msgstr "" -#: src/tables/machine/MachineTypeTable.tsx:141 +#: src/tables/machine/MachineTypeTable.tsx:139 msgid "Machine Type Information" msgstr "" @@ -10148,34 +10363,34 @@ msgstr "" #~ msgid "Available drivers" #~ msgstr "Available drivers" -#: src/tables/machine/MachineTypeTable.tsx:156 -#: src/tables/machine/MachineTypeTable.tsx:255 +#: src/tables/machine/MachineTypeTable.tsx:154 +#: src/tables/machine/MachineTypeTable.tsx:253 msgid "Slug" msgstr "" -#: src/tables/machine/MachineTypeTable.tsx:167 -#: src/tables/machine/MachineTypeTable.tsx:276 +#: src/tables/machine/MachineTypeTable.tsx:165 +#: src/tables/machine/MachineTypeTable.tsx:274 msgid "Provider plugin" msgstr "" -#: src/tables/machine/MachineTypeTable.tsx:179 -#: src/tables/machine/MachineTypeTable.tsx:288 +#: src/tables/machine/MachineTypeTable.tsx:177 +#: src/tables/machine/MachineTypeTable.tsx:286 msgid "Provider file" msgstr "" -#: src/tables/machine/MachineTypeTable.tsx:194 +#: src/tables/machine/MachineTypeTable.tsx:192 msgid "Available Drivers" msgstr "" -#: src/tables/machine/MachineTypeTable.tsx:234 +#: src/tables/machine/MachineTypeTable.tsx:232 msgid "Machine driver not found." msgstr "" -#: src/tables/machine/MachineTypeTable.tsx:242 +#: src/tables/machine/MachineTypeTable.tsx:240 msgid "Machine driver information" msgstr "" -#: src/tables/machine/MachineTypeTable.tsx:262 +#: src/tables/machine/MachineTypeTable.tsx:260 msgid "Machine type" msgstr "" @@ -10187,15 +10402,15 @@ msgstr "" #~ msgid "Machine driver detail" #~ msgstr "Machine driver detail" -#: src/tables/machine/MachineTypeTable.tsx:362 +#: src/tables/machine/MachineTypeTable.tsx:360 msgid "Builtin type" msgstr "" -#: src/tables/machine/MachineTypeTable.tsx:371 +#: src/tables/machine/MachineTypeTable.tsx:369 msgid "Machine Type Detail" msgstr "" -#: src/tables/machine/MachineTypeTable.tsx:381 +#: src/tables/machine/MachineTypeTable.tsx:379 msgid "Machine Driver Detail" msgstr "" @@ -10213,8 +10428,16 @@ msgstr "Varsel" msgid "Message" msgstr "Melding" -#: src/tables/part/ParametricPartTable.tsx:78 -msgid "Click to edit" +#: src/tables/part/ParametricPartTable.tsx:20 +msgid "Show active parts" +msgstr "" + +#: src/tables/part/ParametricPartTable.tsx:25 +msgid "Show locked parts" +msgstr "" + +#: src/tables/part/ParametricPartTable.tsx:30 +msgid "Show assembly parts" msgstr "" #: src/tables/part/ParametricPartTable.tsx:82 @@ -10222,43 +10445,14 @@ msgstr "" #~ msgstr "Edit parameter" #: src/tables/part/ParametricPartTable.tsx:244 -msgid "Add Part Parameter" -msgstr "" +#~ msgid "Add Part Parameter" +#~ msgstr "Add Part Parameter" #: src/tables/part/ParametricPartTable.tsx:258 #: src/tables/part/PartParameterTable.tsx:164 #: src/tables/part/PartParameterTable.tsx:187 -msgid "Edit Part Parameter" -msgstr "Rediger del-parameter" - -#: src/tables/part/ParametricPartTable.tsx:355 -msgid "Show active parts" -msgstr "" - -#: src/tables/part/ParametricPartTable.tsx:360 -msgid "Show locked parts" -msgstr "" - -#: src/tables/part/ParametricPartTable.tsx:365 -msgid "Show assembly parts" -msgstr "" - -#: src/tables/part/ParametricPartTableFilters.tsx:36 -msgid "True" -msgstr "" - -#: src/tables/part/ParametricPartTableFilters.tsx:37 -msgid "False" -msgstr "" - -#: src/tables/part/ParametricPartTableFilters.tsx:47 -#: src/tables/part/ParametricPartTableFilters.tsx:80 -msgid "Select a choice" -msgstr "" - -#: src/tables/part/ParametricPartTableFilters.tsx:100 -msgid "Enter a value" -msgstr "" +#~ msgid "Edit Part Parameter" +#~ msgstr "Edit Part Parameter" #: src/tables/part/PartBuildAllocationsTable.tsx:64 msgid "Assembly IPN" @@ -10273,7 +10467,7 @@ msgid "Required Stock" msgstr "" #: src/tables/part/PartBuildAllocationsTable.tsx:124 -#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:381 +#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:383 msgid "View Build Order" msgstr "" @@ -10332,85 +10526,22 @@ msgstr "" msgid "Delete Category Parameter" msgstr "" -#: src/tables/part/PartCategoryTemplateTable.tsx:87 -msgid "Parameter Template" -msgstr "" - #: src/tables/part/PartCategoryTemplateTable.tsx:93 #~ msgid "[{0}]" #~ msgstr "[{0}]" -#: src/tables/part/PartParameterTable.tsx:108 -msgid "Internal Units" -msgstr "" - -#: src/tables/part/PartParameterTable.tsx:128 -#: src/tables/part/PartParameterTable.tsx:138 -msgid "Updated By" -msgstr "" - -#: src/tables/part/PartParameterTable.tsx:139 -msgid "Filter by user who last updated the parameter" -msgstr "" - #: src/tables/part/PartParameterTable.tsx:148 -msgid "New Part Parameter" -msgstr "" +#~ msgid "New Part Parameter" +#~ msgstr "New Part Parameter" #: src/tables/part/PartParameterTable.tsx:173 #: src/tables/part/PartParameterTable.tsx:195 -msgid "Delete Part Parameter" -msgstr "Slett del-parameter" +#~ msgid "Delete Part Parameter" +#~ msgstr "Delete Part Parameter" #: src/tables/part/PartParameterTable.tsx:213 -msgid "Add parameter" -msgstr "Legg til parameter" - -#: src/tables/part/PartParameterTable.tsx:232 -msgid "Part parameters cannot be edited, as the part is locked" -msgstr "" - -#: src/tables/part/PartParameterTemplateTable.tsx:36 -msgid "Checkbox" -msgstr "Sjekkboks" - -#: src/tables/part/PartParameterTemplateTable.tsx:37 -msgid "Show checkbox templates" -msgstr "Vis sjekkboks-maler" - -#: src/tables/part/PartParameterTemplateTable.tsx:41 -msgid "Has choices" -msgstr "Har valg" - -#: src/tables/part/PartParameterTemplateTable.tsx:42 -msgid "Show templates with choices" -msgstr "Vis maler med valg" - -#: src/tables/part/PartParameterTemplateTable.tsx:46 -#: src/tables/part/PartTable.tsx:245 -msgid "Has Units" -msgstr "Har enheter" - -#: src/tables/part/PartParameterTemplateTable.tsx:47 -msgid "Show templates with units" -msgstr "Vis maler med enheter" - -#: src/tables/part/PartParameterTemplateTable.tsx:91 -#: src/tables/part/PartParameterTemplateTable.tsx:166 -msgid "Add Parameter Template" -msgstr "" - -#: src/tables/part/PartParameterTemplateTable.tsx:105 -msgid "Duplicate Parameter Template" -msgstr "" - -#: src/tables/part/PartParameterTemplateTable.tsx:117 -msgid "Edit Parameter Template" -msgstr "Rediger parametermal" - -#: src/tables/part/PartParameterTemplateTable.tsx:128 -msgid "Delete Parameter Template" -msgstr "Slett parametermal" +#~ msgid "Add parameter" +#~ msgstr "Add parameter" #: src/tables/part/PartParameterTemplateTable.tsx:141 #~ msgid "Add parameter template" @@ -10430,7 +10561,7 @@ msgid "Show received items" msgstr "" #: src/tables/part/PartSalesAllocationsTable.tsx:90 -#: src/tables/sales/SalesOrderShipmentTable.tsx:218 +#: src/tables/sales/SalesOrderShipmentTable.tsx:263 msgid "View Sales Order" msgstr "" @@ -10617,8 +10748,8 @@ msgstr "" #: src/tables/part/PartTestResultTable.tsx:103 #: src/tables/part/PartTestResultTable.tsx:181 -#: src/tables/part/PartTestResultTable.tsx:320 -#: src/tables/part/PartTestResultTable.tsx:334 +#: src/tables/part/PartTestResultTable.tsx:328 +#: src/tables/part/PartTestResultTable.tsx:342 #: src/tables/stock/StockItemTestResultTable.tsx:296 #: src/tables/stock/StockItemTestResultTable.tsx:368 #: src/tables/stock/StockItemTestResultTable.tsx:429 @@ -10643,7 +10774,7 @@ msgstr "" msgid "No Result" msgstr "" -#: src/tables/part/PartTestResultTable.tsx:298 +#: src/tables/part/PartTestResultTable.tsx:306 msgid "Show build outputs currently in production" msgstr "" @@ -11013,36 +11144,45 @@ msgstr "Installert" #~ msgid "Parameter updated" #~ msgstr "Parameter updated" -#: src/tables/purchasing/ManufacturerPartParameterTable.tsx:63 -#: src/tables/purchasing/ManufacturerPartParameterTable.tsx:112 -msgid "Add Parameter" -msgstr "" - #: src/tables/purchasing/ManufacturerPartParameterTable.tsx:73 #~ msgid "Parameter deleted" #~ msgstr "Parameter deleted" -#: src/tables/purchasing/ManufacturerPartParameterTable.tsx:74 -msgid "Edit Parameter" -msgstr "" - #: src/tables/purchasing/ManufacturerPartParameterTable.tsx:74 #~ msgid "Are you sure you want to delete this parameter?" #~ msgstr "Are you sure you want to delete this parameter?" -#: src/tables/purchasing/ManufacturerPartParameterTable.tsx:82 -msgid "Delete Parameter" +#: src/tables/purchasing/ManufacturerPartParametricTable.tsx:34 +#: src/tables/purchasing/ManufacturerPartTable.tsx:82 +#: src/tables/purchasing/SupplierPartTable.tsx:99 +msgid "MPN" +msgstr "MPN" + +#: src/tables/purchasing/ManufacturerPartParametricTable.tsx:44 +#: src/tables/purchasing/ManufacturerPartTable.tsx:134 +#: src/tables/purchasing/SupplierPartTable.tsx:220 +msgid "Active Part" +msgstr "" + +#: src/tables/purchasing/ManufacturerPartParametricTable.tsx:45 +#: src/tables/purchasing/ManufacturerPartTable.tsx:135 +msgid "Show manufacturer parts for active internal parts." +msgstr "" + +#: src/tables/purchasing/ManufacturerPartParametricTable.tsx:50 +#: src/tables/purchasing/ManufacturerPartTable.tsx:140 +msgid "Active Manufacturer" +msgstr "" + +#: src/tables/purchasing/ManufacturerPartParametricTable.tsx:51 +#: src/tables/purchasing/ManufacturerPartTable.tsx:142 +msgid "Show manufacturer parts for active manufacturers." msgstr "" #: src/tables/purchasing/ManufacturerPartTable.tsx:63 #~ msgid "Create Manufacturer Part" #~ msgstr "Create Manufacturer Part" -#: src/tables/purchasing/ManufacturerPartTable.tsx:82 -#: src/tables/purchasing/SupplierPartTable.tsx:99 -msgid "MPN" -msgstr "MPN" - #: src/tables/purchasing/ManufacturerPartTable.tsx:100 #~ msgid "Manufacturer part updated" #~ msgstr "Manufacturer part updated" @@ -11055,25 +11195,8 @@ msgstr "MPN" #~ msgid "Are you sure you want to remove this manufacturer part?" #~ msgstr "Are you sure you want to remove this manufacturer part?" -#: src/tables/purchasing/ManufacturerPartTable.tsx:134 -#: src/tables/purchasing/SupplierPartTable.tsx:220 -msgid "Active Part" -msgstr "" - -#: src/tables/purchasing/ManufacturerPartTable.tsx:135 -msgid "Show manufacturer parts for active internal parts." -msgstr "" - -#: src/tables/purchasing/ManufacturerPartTable.tsx:140 -msgid "Active Manufacturer" -msgstr "" - -#: src/tables/purchasing/ManufacturerPartTable.tsx:142 -msgid "Show manufacturer parts for active manufacturers." -msgstr "" - #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:115 -#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:397 +#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:399 msgid "Import Line Items" msgstr "" @@ -11099,11 +11222,11 @@ msgstr "" #~ msgid "Add line item" #~ msgstr "Add line item" -#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:350 +#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:352 msgid "Receive line item" msgstr "Motta ordrelinje" -#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:414 +#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:416 msgid "Receive items" msgstr "Motta artikler" @@ -11201,25 +11324,25 @@ msgid "Not shipped" msgstr "Ikke sendt" #: src/tables/sales/SalesOrderAllocationTable.tsx:211 -#: src/tables/sales/SalesOrderAllocationTable.tsx:229 +#: src/tables/sales/SalesOrderAllocationTable.tsx:235 msgid "Edit Allocation" msgstr "" #: src/tables/sales/SalesOrderAllocationTable.tsx:218 #: src/tables/sales/SalesOrderAllocationTable.tsx:241 -msgid "Delete Allocation" -msgstr "" +#~ msgid "Delete Allocation" +#~ msgstr "Delete Allocation" -#: src/tables/sales/SalesOrderAllocationTable.tsx:252 -#: src/tables/sales/SalesOrderAllocationTable.tsx:253 +#: src/tables/sales/SalesOrderAllocationTable.tsx:261 +#: src/tables/sales/SalesOrderAllocationTable.tsx:262 msgid "View Shipment" msgstr "" -#: src/tables/sales/SalesOrderAllocationTable.tsx:308 +#: src/tables/sales/SalesOrderAllocationTable.tsx:317 msgid "Assign to Shipment" msgstr "" -#: src/tables/sales/SalesOrderAllocationTable.tsx:324 +#: src/tables/sales/SalesOrderAllocationTable.tsx:333 msgid "Assign to shipment" msgstr "" @@ -11259,35 +11382,35 @@ msgstr "" #~ msgid "Delete Shipment" #~ msgstr "Delete Shipment" -#: src/tables/sales/SalesOrderShipmentTable.tsx:72 +#: src/tables/sales/SalesOrderShipmentTable.tsx:79 msgid "Create Shipment" msgstr "" -#: src/tables/sales/SalesOrderShipmentTable.tsx:143 +#: src/tables/sales/SalesOrderShipmentTable.tsx:164 msgid "Items" msgstr "" -#: src/tables/sales/SalesOrderShipmentTable.tsx:203 +#: src/tables/sales/SalesOrderShipmentTable.tsx:248 msgid "Edit shipment" msgstr "" -#: src/tables/sales/SalesOrderShipmentTable.tsx:211 +#: src/tables/sales/SalesOrderShipmentTable.tsx:256 msgid "Cancel shipment" msgstr "" -#: src/tables/sales/SalesOrderShipmentTable.tsx:241 +#: src/tables/sales/SalesOrderShipmentTable.tsx:286 msgid "Add shipment" msgstr "" -#: src/tables/sales/SalesOrderShipmentTable.tsx:255 +#: src/tables/sales/SalesOrderShipmentTable.tsx:300 msgid "Show shipments which have been checked" msgstr "" -#: src/tables/sales/SalesOrderShipmentTable.tsx:260 +#: src/tables/sales/SalesOrderShipmentTable.tsx:305 msgid "Show shipments which have been shipped" msgstr "" -#: src/tables/sales/SalesOrderShipmentTable.tsx:265 +#: src/tables/sales/SalesOrderShipmentTable.tsx:310 msgid "Show shipments which have been delivered" msgstr "" @@ -11621,11 +11744,6 @@ msgstr "Lastet opp" msgid "Imported Rows" msgstr "" -#: src/tables/settings/ImportSessionTable.tsx:111 -#: src/tables/settings/TemplateTable.tsx:368 -msgid "Model Type" -msgstr "" - #: src/tables/settings/ImportSessionTable.tsx:112 #: src/tables/settings/TemplateTable.tsx:369 msgid "Filter by target model type" diff --git a/src/frontend/src/locales/pl/messages.po b/src/frontend/src/locales/pl/messages.po index 38015a234d..ca7c811430 100644 --- a/src/frontend/src/locales/pl/messages.po +++ b/src/frontend/src/locales/pl/messages.po @@ -8,7 +8,7 @@ msgstr "" "Language: pl\n" "Project-Id-Version: inventree\n" "Report-Msgid-Bugs-To: \n" -"PO-Revision-Date: 2025-11-19 19:39\n" +"PO-Revision-Date: 2025-12-07 07:36\n" "Last-Translator: \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" @@ -30,7 +30,7 @@ msgid "Edit" msgstr "Edytuj" #: lib/components/RowActions.tsx:56 -#: src/components/forms/ApiForm.tsx:735 +#: src/components/forms/ApiForm.tsx:754 #: src/components/items/ActionDropdown.tsx:257 #: src/components/items/RoleTable.tsx:155 #: src/hooks/UseForm.tsx:164 @@ -56,24 +56,24 @@ msgstr "Anuluj" #: lib/components/RowActions.tsx:136 #: src/components/nav/NavigationDrawer.tsx:190 -#: src/forms/PurchaseOrderForms.tsx:802 +#: src/forms/PurchaseOrderForms.tsx:854 #: src/forms/StockForms.tsx:796 #: src/forms/StockForms.tsx:843 -#: src/forms/StockForms.tsx:889 -#: src/forms/StockForms.tsx:928 -#: src/forms/StockForms.tsx:964 -#: src/forms/StockForms.tsx:1050 +#: src/forms/StockForms.tsx:896 +#: src/forms/StockForms.tsx:942 +#: src/forms/StockForms.tsx:980 +#: src/forms/StockForms.tsx:1066 #: src/pages/Index/Settings/AccountSettings/MFASettings.tsx:962 msgid "Actions" msgstr "Akcje" #: lib/components/SearchInput.tsx:34 -#: src/components/forms/fields/RelatedModelField.tsx:408 +#: src/components/forms/fields/RelatedModelField.tsx:479 #: src/components/nav/Header.tsx:169 #: src/components/wizards/ImportPartWizard.tsx:200 #: src/components/wizards/ImportPartWizard.tsx:233 -#: src/pages/Index/Settings/UserSettings.tsx:74 -#: src/pages/part/PartDetail.tsx:1155 +#: src/pages/Index/Settings/UserSettings.tsx:75 +#: src/pages/part/PartDetail.tsx:1176 msgid "Search" msgstr "Szukaj" @@ -95,7 +95,7 @@ msgstr "Tak" msgid "No" msgstr "Nie" -#: lib/enums/ModelInformation.tsx:28 +#: lib/enums/ModelInformation.tsx:29 #: src/components/wizards/OrderPartsWizard.tsx:279 #: src/forms/BuildForms.tsx:332 #: src/forms/BuildForms.tsx:407 @@ -103,208 +103,234 @@ msgstr "Nie" #: src/forms/BuildForms.tsx:630 #: src/forms/BuildForms.tsx:793 #: src/forms/BuildForms.tsx:896 -#: src/forms/PurchaseOrderForms.tsx:798 +#: src/forms/PurchaseOrderForms.tsx:850 #: src/forms/ReturnOrderForms.tsx:242 -#: src/forms/SalesOrderForms.tsx:305 +#: src/forms/SalesOrderForms.tsx:384 #: src/forms/StockForms.tsx:360 #: src/forms/StockForms.tsx:791 #: src/forms/StockForms.tsx:838 -#: src/forms/StockForms.tsx:884 -#: src/forms/StockForms.tsx:923 -#: src/forms/StockForms.tsx:959 -#: src/forms/StockForms.tsx:1002 -#: src/forms/StockForms.tsx:1046 -#: src/forms/StockForms.tsx:1094 -#: src/forms/StockForms.tsx:1138 -#: src/pages/build/BuildDetail.tsx:200 -#: src/pages/part/PartDetail.tsx:1207 +#: src/forms/StockForms.tsx:891 +#: src/forms/StockForms.tsx:937 +#: src/forms/StockForms.tsx:975 +#: src/forms/StockForms.tsx:1018 +#: src/forms/StockForms.tsx:1062 +#: src/forms/StockForms.tsx:1110 +#: src/forms/StockForms.tsx:1154 +#: src/pages/build/BuildDetail.tsx:201 +#: src/pages/part/PartDetail.tsx:1228 #: src/tables/ColumnRenderers.tsx:91 +#: src/tables/part/PartTestResultTable.tsx:247 #: src/tables/part/RelatedPartTable.tsx:53 #: src/tables/stock/StockTrackingTable.tsx:87 msgid "Part" msgstr "Komponent" -#: lib/enums/ModelInformation.tsx:29 +#: lib/enums/ModelInformation.tsx:30 #: lib/enums/Roles.tsx:35 #: src/components/nav/NavigationDrawer.tsx:70 #: src/defaults/links.tsx:36 -#: src/pages/Index/Settings/SystemSettings.tsx:190 -#: src/pages/part/CategoryDetail.tsx:132 -#: src/pages/part/CategoryDetail.tsx:277 -#: src/pages/part/CategoryDetail.tsx:323 -#: src/pages/part/CategoryDetail.tsx:354 -#: src/pages/part/PartDetail.tsx:965 +#: src/pages/Index/Settings/SystemSettings.tsx:197 +#: src/pages/part/CategoryDetail.tsx:135 +#: src/pages/part/CategoryDetail.tsx:285 +#: src/pages/part/CategoryDetail.tsx:340 +#: src/pages/part/CategoryDetail.tsx:371 +#: src/pages/part/PartDetail.tsx:978 msgid "Parts" msgstr "Komponenty" #: lib/enums/ModelInformation.tsx:37 #: src/pages/Index/Settings/AdminCenter/PartParameterPanel.tsx:13 -msgid "Part Parameter Template" -msgstr "" +#~ msgid "Part Parameter Template" +#~ msgstr "Part Parameter Template" #: lib/enums/ModelInformation.tsx:38 -msgid "Part Parameter Templates" +#~ msgid "Part Parameter Templates" +#~ msgstr "Part Parameter Templates" + +#: lib/enums/ModelInformation.tsx:39 +msgid "Parameter" +msgstr "" + +#: lib/enums/ModelInformation.tsx:40 +#: src/components/panels/ParametersPanel.tsx:19 +#: src/components/wizards/ImportPartWizard.tsx:807 +#: src/pages/Index/Settings/AdminCenter/Index.tsx:195 +#: src/pages/Index/Settings/SystemSettings.tsx:191 +#: src/pages/part/PartDetail.tsx:943 +msgid "Parameters" msgstr "" #: lib/enums/ModelInformation.tsx:45 -msgid "Part Test Template" +#: src/tables/part/PartCategoryTemplateTable.tsx:87 +msgid "Parameter Template" msgstr "" #: lib/enums/ModelInformation.tsx:46 -msgid "Part Test Templates" +#: src/pages/Index/Settings/AdminCenter/ParameterPanel.tsx:13 +msgid "Parameter Templates" msgstr "" #: lib/enums/ModelInformation.tsx:52 +msgid "Part Test Template" +msgstr "" + +#: lib/enums/ModelInformation.tsx:53 +msgid "Part Test Templates" +msgstr "" + +#: lib/enums/ModelInformation.tsx:59 #: src/components/wizards/OrderPartsWizard.tsx:290 -#: src/pages/company/SupplierPartDetail.tsx:413 +#: src/pages/company/SupplierPartDetail.tsx:418 #: src/pages/stock/StockDetail.tsx:289 -#: src/tables/build/BuildAllocatedStockTable.tsx:155 +#: src/tables/build/BuildAllocatedStockTable.tsx:152 #: src/tables/part/PartPurchaseOrdersTable.tsx:50 +#: src/tables/purchasing/SupplierPartParametricTable.tsx:29 #: src/tables/purchasing/SupplierPartTable.tsx:83 #: src/tables/stock/StockItemTable.tsx:247 msgid "Supplier Part" msgstr "Część dostawcy" -#: lib/enums/ModelInformation.tsx:53 -#: src/pages/purchasing/PurchasingIndex.tsx:92 +#: lib/enums/ModelInformation.tsx:60 +#: src/pages/purchasing/PurchasingIndex.tsx:128 msgid "Supplier Parts" msgstr "Części dostawcy" -#: lib/enums/ModelInformation.tsx:61 -#: src/pages/company/ManufacturerPartDetail.tsx:297 -#: src/pages/company/SupplierPartDetail.tsx:161 +#: lib/enums/ModelInformation.tsx:69 +#: src/pages/company/ManufacturerPartDetail.tsx:288 +#: src/pages/company/SupplierPartDetail.tsx:162 #: src/tables/part/PartPurchaseOrdersTable.tsx:56 #: src/tables/stock/StockItemTable.tsx:253 msgid "Manufacturer Part" msgstr "Część Producenta" -#: lib/enums/ModelInformation.tsx:62 -#: src/pages/purchasing/PurchasingIndex.tsx:109 +#: lib/enums/ModelInformation.tsx:70 +#: src/pages/purchasing/PurchasingIndex.tsx:177 msgid "Manufacturer Parts" msgstr "Części producenta" -#: lib/enums/ModelInformation.tsx:70 -#: src/pages/part/CategoryDetail.tsx:354 +#: lib/enums/ModelInformation.tsx:79 +#: src/pages/part/CategoryDetail.tsx:371 #: src/tables/Filter.tsx:389 msgid "Part Category" msgstr "Kategoria części" -#: lib/enums/ModelInformation.tsx:71 +#: lib/enums/ModelInformation.tsx:80 #: lib/enums/Roles.tsx:37 -#: src/pages/part/CategoryDetail.tsx:271 -#: src/pages/part/CategoryDetail.tsx:345 -#: src/pages/part/PartDetail.tsx:1196 +#: src/pages/part/CategoryDetail.tsx:279 +#: src/pages/part/CategoryDetail.tsx:362 +#: src/pages/part/PartDetail.tsx:1217 msgid "Part Categories" msgstr "Kategorie części" -#: lib/enums/ModelInformation.tsx:79 +#: lib/enums/ModelInformation.tsx:88 #: src/forms/BuildForms.tsx:473 #: src/forms/BuildForms.tsx:633 #: src/forms/BuildForms.tsx:794 -#: src/forms/SalesOrderForms.tsx:307 +#: src/forms/SalesOrderForms.tsx:386 #: src/pages/stock/StockDetail.tsx:1005 -#: src/tables/part/PartTestResultTable.tsx:248 +#: src/tables/part/PartTestResultTable.tsx:256 #: src/tables/stock/StockTrackingTable.tsx:48 #: src/tables/stock/StockTrackingTable.tsx:55 msgid "Stock Item" msgstr "Element magazynowy" -#: lib/enums/ModelInformation.tsx:80 +#: lib/enums/ModelInformation.tsx:89 #: lib/enums/Roles.tsx:45 -#: src/pages/company/CompanyDetail.tsx:210 -#: src/pages/part/CategoryDetail.tsx:291 +#: src/pages/company/CompanyDetail.tsx:211 +#: src/pages/part/CategoryDetail.tsx:314 #: src/pages/part/PartStockHistoryDetail.tsx:101 #: src/pages/stock/LocationDetail.tsx:121 #: src/pages/stock/LocationDetail.tsx:180 msgid "Stock Items" msgstr "Elementy magazynowe" -#: lib/enums/ModelInformation.tsx:88 +#: lib/enums/ModelInformation.tsx:98 #: lib/enums/Roles.tsx:47 #: src/pages/stock/LocationDetail.tsx:420 msgid "Stock Location" msgstr "Lokacja stanu" -#: lib/enums/ModelInformation.tsx:89 +#: lib/enums/ModelInformation.tsx:99 #: src/pages/stock/LocationDetail.tsx:174 #: src/pages/stock/LocationDetail.tsx:412 #: src/pages/stock/StockDetail.tsx:996 msgid "Stock Locations" msgstr "Lokacje stanów" -#: lib/enums/ModelInformation.tsx:97 +#: lib/enums/ModelInformation.tsx:108 msgid "Stock Location Type" msgstr "" -#: lib/enums/ModelInformation.tsx:98 +#: lib/enums/ModelInformation.tsx:109 msgid "Stock Location Types" msgstr "" -#: lib/enums/ModelInformation.tsx:103 -#: src/pages/Index/Settings/SystemSettings.tsx:248 -#: src/pages/part/PartDetail.tsx:911 +#: lib/enums/ModelInformation.tsx:114 +#: src/pages/Index/Settings/SystemSettings.tsx:254 +#: src/pages/part/PartDetail.tsx:900 msgid "Stock History" msgstr "Historia magazynu" -#: lib/enums/ModelInformation.tsx:104 +#: lib/enums/ModelInformation.tsx:115 msgid "Stock Histories" msgstr "Historia magazynu" -#: lib/enums/ModelInformation.tsx:109 +#: lib/enums/ModelInformation.tsx:120 msgid "Build" msgstr "Kompilacja" -#: lib/enums/ModelInformation.tsx:110 +#: lib/enums/ModelInformation.tsx:121 msgid "Builds" msgstr "Kompilacje" -#: lib/enums/ModelInformation.tsx:118 +#: lib/enums/ModelInformation.tsx:130 msgid "Build Line" msgstr "" -#: lib/enums/ModelInformation.tsx:119 +#: lib/enums/ModelInformation.tsx:131 msgid "Build Lines" msgstr "" -#: lib/enums/ModelInformation.tsx:126 +#: lib/enums/ModelInformation.tsx:138 msgid "Build Item" msgstr "" -#: lib/enums/ModelInformation.tsx:127 +#: lib/enums/ModelInformation.tsx:139 msgid "Build Items" msgstr "" -#: lib/enums/ModelInformation.tsx:132 -#: src/pages/company/CompanyDetail.tsx:340 +#: lib/enums/ModelInformation.tsx:144 +#: src/pages/company/CompanyDetail.tsx:345 #: src/tables/company/CompanyTable.tsx:47 #: src/tables/company/ContactTable.tsx:67 +#: src/tables/company/ParametricCompanyTable.tsx:18 msgid "Company" msgstr "Firma" -#: lib/enums/ModelInformation.tsx:133 +#: lib/enums/ModelInformation.tsx:145 msgid "Companies" msgstr "Firmy" -#: lib/enums/ModelInformation.tsx:140 -#: src/pages/build/BuildDetail.tsx:316 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:253 -#: src/pages/sales/ReturnOrderDetail.tsx:231 -#: src/pages/sales/SalesOrderDetail.tsx:224 +#: lib/enums/ModelInformation.tsx:152 +#: src/pages/build/BuildDetail.tsx:317 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:254 +#: src/pages/sales/ReturnOrderDetail.tsx:232 +#: src/pages/sales/SalesOrderDetail.tsx:225 #: src/tables/ColumnRenderers.tsx:362 #: src/tables/Filter.tsx:286 #: src/tables/TableHoverCard.tsx:101 msgid "Project Code" msgstr "Kod projektu" -#: lib/enums/ModelInformation.tsx:141 +#: lib/enums/ModelInformation.tsx:153 #: src/pages/Index/Settings/AdminCenter/Index.tsx:172 msgid "Project Codes" msgstr "Kody projektu" -#: lib/enums/ModelInformation.tsx:147 +#: lib/enums/ModelInformation.tsx:159 #: src/components/wizards/OrderPartsWizard.tsx:338 #: src/pages/part/pricing/PurchaseHistoryPanel.tsx:33 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:550 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:555 #: src/pages/stock/StockDetail.tsx:352 #: src/tables/part/PartPurchaseOrdersTable.tsx:32 #: src/tables/stock/StockItemTable.tsx:239 @@ -312,117 +338,117 @@ msgstr "Kody projektu" msgid "Purchase Order" msgstr "Zlecenie zakupu" -#: lib/enums/ModelInformation.tsx:148 +#: lib/enums/ModelInformation.tsx:160 #: lib/enums/Roles.tsx:39 #: src/defaults/actions.tsx:104 -#: src/pages/Index/Settings/SystemSettings.tsx:283 -#: src/pages/company/CompanyDetail.tsx:203 -#: src/pages/company/SupplierPartDetail.tsx:266 -#: src/pages/part/PartDetail.tsx:875 -#: src/pages/purchasing/PurchasingIndex.tsx:60 +#: src/pages/Index/Settings/SystemSettings.tsx:289 +#: src/pages/company/CompanyDetail.tsx:204 +#: src/pages/company/SupplierPartDetail.tsx:267 +#: src/pages/part/PartDetail.tsx:864 +#: src/pages/purchasing/PurchasingIndex.tsx:66 msgid "Purchase Orders" msgstr "Zlecenia zakupu" -#: lib/enums/ModelInformation.tsx:156 +#: lib/enums/ModelInformation.tsx:169 msgid "Purchase Order Line" msgstr "Pozycja zlecenia zakupu" -#: lib/enums/ModelInformation.tsx:157 +#: lib/enums/ModelInformation.tsx:170 msgid "Purchase Order Lines" msgstr "Pozycje zlecenia zakupu" -#: lib/enums/ModelInformation.tsx:162 -#: src/pages/build/BuildDetail.tsx:289 +#: lib/enums/ModelInformation.tsx:175 +#: src/pages/build/BuildDetail.tsx:290 #: src/pages/part/pricing/SaleHistoryPanel.tsx:24 -#: src/pages/sales/SalesOrderDetail.tsx:614 -#: src/pages/sales/SalesOrderShipmentDetail.tsx:105 -#: src/pages/sales/SalesOrderShipmentDetail.tsx:478 +#: src/pages/sales/SalesOrderDetail.tsx:619 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:103 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:446 #: src/pages/stock/StockDetail.tsx:361 #: src/tables/part/PartSalesAllocationsTable.tsx:41 #: src/tables/sales/SalesOrderAllocationTable.tsx:110 -#: src/tables/sales/SalesOrderShipmentTable.tsx:122 +#: src/tables/sales/SalesOrderShipmentTable.tsx:143 #: src/tables/stock/StockTrackingTable.tsx:131 msgid "Sales Order" msgstr "Zlecenie sprzedaży" -#: lib/enums/ModelInformation.tsx:163 +#: lib/enums/ModelInformation.tsx:176 #: lib/enums/Roles.tsx:43 #: src/defaults/actions.tsx:114 -#: src/pages/Index/Settings/SystemSettings.tsx:299 -#: src/pages/company/CompanyDetail.tsx:223 -#: src/pages/part/PartDetail.tsx:887 -#: src/pages/sales/SalesIndex.tsx:84 +#: src/pages/Index/Settings/SystemSettings.tsx:305 +#: src/pages/company/CompanyDetail.tsx:224 +#: src/pages/part/PartDetail.tsx:876 +#: src/pages/sales/SalesIndex.tsx:53 msgid "Sales Orders" msgstr "Zlecenia Sprzedaży" -#: lib/enums/ModelInformation.tsx:171 -#: src/pages/sales/SalesOrderShipmentDetail.tsx:477 +#: lib/enums/ModelInformation.tsx:185 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:445 msgid "Sales Order Shipment" msgstr "" -#: lib/enums/ModelInformation.tsx:172 +#: lib/enums/ModelInformation.tsx:186 msgid "Sales Order Shipments" msgstr "" -#: lib/enums/ModelInformation.tsx:179 -#: src/pages/sales/ReturnOrderDetail.tsx:549 +#: lib/enums/ModelInformation.tsx:194 +#: src/pages/sales/ReturnOrderDetail.tsx:554 #: src/tables/stock/StockTrackingTable.tsx:142 msgid "Return Order" msgstr "" -#: lib/enums/ModelInformation.tsx:180 +#: lib/enums/ModelInformation.tsx:195 #: lib/enums/Roles.tsx:41 #: src/defaults/actions.tsx:125 -#: src/pages/Index/Settings/SystemSettings.tsx:316 -#: src/pages/company/CompanyDetail.tsx:230 -#: src/pages/part/PartDetail.tsx:894 -#: src/pages/sales/SalesIndex.tsx:117 +#: src/pages/Index/Settings/SystemSettings.tsx:322 +#: src/pages/company/CompanyDetail.tsx:231 +#: src/pages/part/PartDetail.tsx:883 +#: src/pages/sales/SalesIndex.tsx:99 msgid "Return Orders" msgstr "" -#: lib/enums/ModelInformation.tsx:188 +#: lib/enums/ModelInformation.tsx:204 msgid "Return Order Line Item" msgstr "" -#: lib/enums/ModelInformation.tsx:189 +#: lib/enums/ModelInformation.tsx:205 msgid "Return Order Line Items" msgstr "" -#: lib/enums/ModelInformation.tsx:194 +#: lib/enums/ModelInformation.tsx:210 #: src/tables/company/AddressTable.tsx:52 msgid "Address" msgstr "Adres" -#: lib/enums/ModelInformation.tsx:195 -#: src/pages/company/CompanyDetail.tsx:264 +#: lib/enums/ModelInformation.tsx:211 +#: src/pages/company/CompanyDetail.tsx:265 msgid "Addresses" msgstr "Adresy" -#: lib/enums/ModelInformation.tsx:201 +#: lib/enums/ModelInformation.tsx:217 #: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:89 #: src/pages/core/UserDetail.tsx:135 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:229 -#: src/pages/sales/ReturnOrderDetail.tsx:207 -#: src/pages/sales/SalesOrderDetail.tsx:200 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:230 +#: src/pages/sales/ReturnOrderDetail.tsx:208 +#: src/pages/sales/SalesOrderDetail.tsx:201 msgid "Contact" msgstr "Kontakt" -#: lib/enums/ModelInformation.tsx:202 -#: src/pages/company/CompanyDetail.tsx:258 +#: lib/enums/ModelInformation.tsx:218 +#: src/pages/company/CompanyDetail.tsx:259 #: src/pages/core/CoreIndex.tsx:33 msgid "Contacts" msgstr "Kontakty" -#: lib/enums/ModelInformation.tsx:208 +#: lib/enums/ModelInformation.tsx:224 #: src/tables/ColumnRenderers.tsx:444 msgid "Owner" msgstr "Właściciel" -#: lib/enums/ModelInformation.tsx:209 +#: lib/enums/ModelInformation.tsx:225 msgid "Owners" msgstr "Właściciele" -#: lib/enums/ModelInformation.tsx:215 +#: lib/enums/ModelInformation.tsx:231 #: src/pages/Auth/ChangePassword.tsx:36 #: src/pages/core/UserDetail.tsx:220 #: src/tables/ColumnRenderers.tsx:395 @@ -437,7 +463,7 @@ msgstr "Właściciele" msgid "User" msgstr "Użytkownik" -#: lib/enums/ModelInformation.tsx:216 +#: lib/enums/ModelInformation.tsx:232 #: src/components/nav/NavigationDrawer.tsx:105 #: src/pages/Index/Settings/AdminCenter/UserManagementPanel.tsx:15 #: src/pages/core/CoreIndex.tsx:21 @@ -445,12 +471,12 @@ msgstr "Użytkownik" msgid "Users" msgstr "Użytkownicy" -#: lib/enums/ModelInformation.tsx:222 +#: lib/enums/ModelInformation.tsx:238 #: src/pages/core/GroupDetail.tsx:78 msgid "Group" msgstr "Grupa" -#: lib/enums/ModelInformation.tsx:223 +#: lib/enums/ModelInformation.tsx:239 #: src/components/nav/NavigationDrawer.tsx:111 #: src/pages/Index/Settings/AdminCenter/UserManagementPanel.tsx:23 #: src/pages/core/CoreIndex.tsx:27 @@ -460,64 +486,64 @@ msgstr "Grupa" msgid "Groups" msgstr "Grupy" -#: lib/enums/ModelInformation.tsx:230 +#: lib/enums/ModelInformation.tsx:246 msgid "Import Session" msgstr "Importuj sesje" -#: lib/enums/ModelInformation.tsx:231 +#: lib/enums/ModelInformation.tsx:247 msgid "Import Sessions" msgstr "Importuj sesje" -#: lib/enums/ModelInformation.tsx:238 +#: lib/enums/ModelInformation.tsx:254 msgid "Label Template" msgstr "Szablon etykiety" -#: lib/enums/ModelInformation.tsx:239 +#: lib/enums/ModelInformation.tsx:255 #: src/pages/Index/Settings/AdminCenter/Index.tsx:209 msgid "Label Templates" msgstr "Szablony etykiet" -#: lib/enums/ModelInformation.tsx:246 +#: lib/enums/ModelInformation.tsx:262 msgid "Report Template" msgstr "Szablon Raportu" -#: lib/enums/ModelInformation.tsx:247 +#: lib/enums/ModelInformation.tsx:263 #: src/pages/Index/Settings/AdminCenter/Index.tsx:215 msgid "Report Templates" msgstr "Szablony raportów" -#: lib/enums/ModelInformation.tsx:254 +#: lib/enums/ModelInformation.tsx:270 #: src/components/plugins/PluginDrawer.tsx:145 msgid "Plugin Configuration" msgstr "Konfiguracja wtyczki" -#: lib/enums/ModelInformation.tsx:255 +#: lib/enums/ModelInformation.tsx:271 msgid "Plugin Configurations" msgstr "Konfiguracje wtyczki" -#: lib/enums/ModelInformation.tsx:262 +#: lib/enums/ModelInformation.tsx:278 msgid "Content Type" msgstr "Typ zawartości" -#: lib/enums/ModelInformation.tsx:263 +#: lib/enums/ModelInformation.tsx:279 msgid "Content Types" msgstr "Typy zawartości" -#: lib/enums/ModelInformation.tsx:268 +#: lib/enums/ModelInformation.tsx:284 msgid "Selection List" msgstr "" -#: lib/enums/ModelInformation.tsx:269 -#: src/pages/Index/Settings/AdminCenter/PartParameterPanel.tsx:21 +#: lib/enums/ModelInformation.tsx:285 +#: src/pages/Index/Settings/AdminCenter/ParameterPanel.tsx:21 msgid "Selection Lists" msgstr "" -#: lib/enums/ModelInformation.tsx:275 +#: lib/enums/ModelInformation.tsx:291 #: src/components/barcodes/BarcodeInput.tsx:114 #: src/components/dashboard/DashboardLayout.tsx:281 #: src/components/editors/NotesEditor.tsx:74 #: src/components/editors/TemplateEditor/TemplateEditor.tsx:158 -#: src/components/forms/fields/ApiFormField.tsx:273 +#: src/components/forms/fields/ApiFormField.tsx:237 #: src/components/forms/fields/TableField.tsx:45 #: src/components/importer/ImportDataSelector.tsx:192 #: src/components/importer/ImporterColumnSelector.tsx:234 @@ -528,7 +554,7 @@ msgstr "" #: src/components/nav/SearchDrawer.tsx:572 #: src/components/settings/SettingList.tsx:139 #: src/components/wizards/ImportPartWizard.tsx:574 -#: src/components/wizards/ImportPartWizard.tsx:718 +#: src/components/wizards/ImportPartWizard.tsx:719 #: src/forms/BomForms.tsx:69 #: src/functions/auth.tsx:643 #: src/pages/ErrorPage.tsx:11 @@ -547,9 +573,9 @@ msgstr "" msgid "Error" msgstr "Błąd" -#: lib/enums/ModelInformation.tsx:276 +#: lib/enums/ModelInformation.tsx:292 #: src/tables/machine/MachineListTable.tsx:402 -#: src/tables/machine/MachineTypeTable.tsx:299 +#: src/tables/machine/MachineTypeTable.tsx:297 msgid "Errors" msgstr "" @@ -559,10 +585,10 @@ msgstr "" #: lib/enums/Roles.tsx:33 #: src/defaults/actions.tsx:135 -#: src/pages/Index/Settings/SystemSettings.tsx:264 -#: src/pages/build/BuildIndex.tsx:75 -#: src/pages/part/PartDetail.tsx:904 -#: src/pages/sales/SalesOrderDetail.tsx:421 +#: src/pages/Index/Settings/SystemSettings.tsx:270 +#: src/pages/build/BuildIndex.tsx:67 +#: src/pages/part/PartDetail.tsx:893 +#: src/pages/sales/SalesOrderDetail.tsx:422 msgid "Build Orders" msgstr "Zlecenia wykonania" @@ -639,39 +665,39 @@ msgstr "" msgid "Enter barcode data" msgstr "" -#: src/components/barcodes/BarcodeScanDialog.tsx:49 -#: src/components/buttons/ScanButton.tsx:15 +#: src/components/barcodes/BarcodeScanDialog.tsx:56 +#: src/components/buttons/ScanButton.tsx:27 #: src/components/nav/NavigationDrawer.tsx:122 -#: src/forms/PurchaseOrderForms.tsx:457 -#: src/forms/PurchaseOrderForms.tsx:563 +#: src/forms/PurchaseOrderForms.tsx:509 +#: src/forms/PurchaseOrderForms.tsx:615 msgid "Scan Barcode" msgstr "Zeskanuj kod kreskowy" -#: src/components/barcodes/BarcodeScanDialog.tsx:105 +#: src/components/barcodes/BarcodeScanDialog.tsx:121 msgid "No matching item found" msgstr "" -#: src/components/barcodes/BarcodeScanDialog.tsx:134 +#: src/components/barcodes/BarcodeScanDialog.tsx:150 msgid "Barcode does not match the expected model type" msgstr "" -#: src/components/barcodes/BarcodeScanDialog.tsx:145 +#: src/components/barcodes/BarcodeScanDialog.tsx:161 #: src/components/editors/NotesEditor.tsx:84 #: src/components/editors/NotesEditor.tsx:118 -#: src/components/forms/ApiForm.tsx:465 +#: src/components/forms/ApiForm.tsx:484 #: src/components/wizards/ImportPartWizard.tsx:566 -#: src/components/wizards/ImportPartWizard.tsx:690 +#: src/components/wizards/ImportPartWizard.tsx:691 #: src/pages/Index/Settings/AdminCenter/CurrencyManagementPanel.tsx:45 #: src/tables/bom/BomTable.tsx:548 #: src/tables/settings/PendingTasksTable.tsx:68 msgid "Success" msgstr "Sukces" -#: src/components/barcodes/BarcodeScanDialog.tsx:151 +#: src/components/barcodes/BarcodeScanDialog.tsx:167 msgid "Failed to handle barcode" msgstr "" -#: src/components/barcodes/BarcodeScanDialog.tsx:167 +#: src/components/barcodes/BarcodeScanDialog.tsx:183 #: src/pages/Index/Scan.tsx:129 msgid "Failed to scan barcode" msgstr "" @@ -714,10 +740,10 @@ msgstr "" #: src/components/barcodes/QRCode.tsx:179 #: src/pages/part/PartDetail.tsx:521 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:222 -#: src/pages/sales/ReturnOrderDetail.tsx:188 -#: src/pages/sales/SalesOrderDetail.tsx:181 -#: src/pages/sales/SalesOrderShipmentDetail.tsx:122 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:223 +#: src/pages/sales/ReturnOrderDetail.tsx:189 +#: src/pages/sales/SalesOrderDetail.tsx:182 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:120 #: src/pages/stock/StockDetail.tsx:186 msgid "Link" msgstr "" @@ -728,7 +754,7 @@ msgstr "" #: src/components/barcodes/QRCode.tsx:205 #: src/components/items/ActionDropdown.tsx:192 -#: src/forms/PurchaseOrderForms.tsx:554 +#: src/forms/PurchaseOrderForms.tsx:606 msgid "Unlink Barcode" msgstr "Odłącz Kod Kreskowy" @@ -829,14 +855,14 @@ msgstr "" #~ msgid "Scan QR code" #~ msgstr "Scan QR code" -#: src/components/buttons/ScanButton.tsx:19 -msgid "Open Barcode Scanner" -msgstr "" - #: src/components/buttons/ScanButton.tsx:20 #~ msgid "Open QR code scanner" #~ msgstr "Open QR code scanner" +#: src/components/buttons/ScanButton.tsx:32 +msgid "Open Barcode Scanner" +msgstr "" + #: src/components/buttons/SpotlightButton.tsx:12 msgid "Open spotlight" msgstr "" @@ -1059,7 +1085,7 @@ msgid "Show the number of sales orders which are assigned to you" msgstr "" #: src/components/dashboard/DashboardWidgetLibrary.tsx:129 -#: src/pages/sales/SalesIndex.tsx:105 +#: src/pages/sales/SalesIndex.tsx:87 msgid "Pending Shipments" msgstr "" @@ -1210,12 +1236,18 @@ msgid "Remove the associated image from this item?" msgstr "Usunąć powiązany obrazek z tego elementu?" #: src/components/details/DetailsImage.tsx:83 -#: src/forms/StockForms.tsx:888 +#: src/forms/StockForms.tsx:895 #: src/pages/Index/Settings/AccountSettings/MFASettings.tsx:324 #: src/pages/Index/Settings/AccountSettings/MFASettings.tsx:415 #: src/pages/Index/Settings/AccountSettings/MFASettings.tsx:884 #: src/pages/Index/Settings/AccountSettings/MFASettings.tsx:903 #: src/pages/Index/Settings/AccountSettings/SecurityContent.tsx:254 +#: src/tables/build/BuildAllocatedStockTable.tsx:178 +#: src/tables/build/BuildAllocatedStockTable.tsx:258 +#: src/tables/build/BuildLineTable.tsx:111 +#: src/tables/build/BuildLineTable.tsx:665 +#: src/tables/sales/SalesOrderAllocationTable.tsx:224 +#: src/tables/sales/SalesOrderAllocationTable.tsx:247 msgid "Remove" msgstr "Usuń" @@ -1241,12 +1273,12 @@ msgid "Upload Error" msgstr "" #: src/components/details/DetailsImage.tsx:250 -#: src/components/forms/fields/TextField.tsx:65 +#: src/components/forms/fields/AutoFillRightSection.tsx:34 msgid "Clear" msgstr "Wyczyść" #: src/components/details/DetailsImage.tsx:256 -#: src/components/forms/ApiForm.tsx:677 +#: src/components/forms/ApiForm.tsx:696 #: src/contexts/ThemeContext.tsx:44 #: src/pages/Index/Settings/AccountSettings/MFASettings.tsx:149 #: src/pages/Index/Settings/AccountSettings/MFASettings.tsx:568 @@ -1499,8 +1531,8 @@ msgstr "Błąd serwera" msgid "A server error occurred" msgstr "Wystąpił błąd serwera" -#: src/components/forms/ApiForm.tsx:103 -#: src/components/forms/ApiForm.tsx:594 +#: src/components/forms/ApiForm.tsx:107 +#: src/components/forms/ApiForm.tsx:613 msgid "Form Error" msgstr "Błąd formularza" @@ -1508,11 +1540,11 @@ msgstr "Błąd formularza" #~ msgid "Form Errors Exist" #~ msgstr "Form Errors Exist" -#: src/components/forms/ApiForm.tsx:604 +#: src/components/forms/ApiForm.tsx:623 msgid "Errors exist for one or more form fields" msgstr "Istnieją błędy dla jednego lub więcej pól formularzy" -#: src/components/forms/ApiForm.tsx:715 +#: src/components/forms/ApiForm.tsx:734 #: src/hooks/UseForm.tsx:133 #: src/tables/plugin/PluginListTable.tsx:204 msgid "Update" @@ -1698,15 +1730,14 @@ msgstr "Host" #: src/components/forms/InstanceOptions.tsx:124 #: src/components/plugins/PluginDrawer.tsx:68 #: src/pages/Index/Settings/AdminCenter/UnitManagementPanel.tsx:19 -#: src/pages/part/CategoryDetail.tsx:88 +#: src/pages/part/CategoryDetail.tsx:91 #: src/pages/part/PartDetail.tsx:446 #: src/pages/stock/LocationDetail.tsx:82 #: src/tables/machine/MachineTypeTable.tsx:67 -#: src/tables/machine/MachineTypeTable.tsx:151 -#: src/tables/machine/MachineTypeTable.tsx:254 -#: src/tables/machine/MachineTypeTable.tsx:357 +#: src/tables/machine/MachineTypeTable.tsx:149 +#: src/tables/machine/MachineTypeTable.tsx:252 +#: src/tables/machine/MachineTypeTable.tsx:355 #: src/tables/plugin/PluginErrorTable.tsx:33 -#: src/tables/purchasing/ManufacturerPartParameterTable.tsx:36 #: src/tables/settings/ApiTokenTable.tsx:57 #: src/tables/settings/GroupTable.tsx:95 #: src/tables/settings/GroupTable.tsx:148 @@ -1769,7 +1800,7 @@ msgstr "" #~ msgstr "State: <0>worker ({0}), <1>plugins{1}" #: src/components/forms/InstanceOptions.tsx:118 -#: src/pages/Index/Settings/SystemSettings.tsx:45 +#: src/pages/Index/Settings/SystemSettings.tsx:46 msgid "Server" msgstr "Serwer" @@ -1793,6 +1824,8 @@ msgid "Plugins" msgstr "Wtyczki" #: src/components/forms/InstanceOptions.tsx:143 +#: src/tables/general/ParameterTemplateTable.tsx:153 +#: src/tables/general/ParameterTemplateTable.tsx:188 #: src/tables/part/PartTestTemplateTable.tsx:117 #: src/tables/settings/TemplateTable.tsx:251 #: src/tables/settings/TemplateTable.tsx:362 @@ -1817,10 +1850,14 @@ msgstr "" msgid "Running" msgstr "" -#: src/components/forms/fields/ApiFormField.tsx:233 +#: src/components/forms/fields/ApiFormField.tsx:197 msgid "Select file to upload" msgstr "" +#: src/components/forms/fields/AutoFillRightSection.tsx:47 +msgid "Accept suggested value" +msgstr "" + #: src/components/forms/fields/DateField.tsx:76 msgid "Select date" msgstr "" @@ -1853,13 +1890,13 @@ msgstr "Wybierz paczkę" msgid "{0} icons" msgstr "{0} ikon(y)" -#: src/components/forms/fields/RelatedModelField.tsx:409 +#: src/components/forms/fields/RelatedModelField.tsx:480 #: src/components/modals/AboutInvenTreeModal.tsx:96 #: src/pages/Index/Settings/AccountSettings/SecurityContent.tsx:383 msgid "Loading" msgstr "Wczytuję" -#: src/components/forms/fields/RelatedModelField.tsx:411 +#: src/components/forms/fields/RelatedModelField.tsx:482 msgid "No results found" msgstr "Nie znaleziono wyników" @@ -1875,10 +1912,6 @@ msgstr "Brak wpisów" msgid "Add new row" msgstr "" -#: src/components/forms/fields/TextField.tsx:82 -msgid "Accept suggested value" -msgstr "" - #: src/components/images/DetailsImage.tsx:252 #~ msgid "Select image" #~ msgstr "Select image" @@ -2036,7 +2069,7 @@ msgstr "Dane zostały zaimportowane" #: src/components/importer/ImporterDrawer.tsx:109 #: src/components/modals/AboutInvenTreeModal.tsx:205 #: src/components/modals/ServerInfoModal.tsx:134 -#: src/components/wizards/ImportPartWizard.tsx:772 +#: src/components/wizards/ImportPartWizard.tsx:773 #: src/forms/BomForms.tsx:132 #: src/pages/Index/Settings/AccountSettings/MFASettings.tsx:685 msgid "Close" @@ -2199,7 +2232,7 @@ msgid "Change" msgstr "" #: src/components/items/RoleTable.tsx:150 -#: src/forms/StockForms.tsx:927 +#: src/forms/StockForms.tsx:941 #: src/tables/stock/StockItemTestResultTable.tsx:367 msgid "Add" msgstr "Dodaj" @@ -2222,11 +2255,11 @@ msgstr "" #: src/components/items/TransferList.tsx:161 #: src/components/render/Stock.tsx:102 -#: src/pages/part/PartDetail.tsx:994 +#: src/pages/part/PartDetail.tsx:1009 #: src/pages/stock/StockDetail.tsx:265 #: src/pages/stock/StockDetail.tsx:942 -#: src/tables/build/BuildAllocatedStockTable.tsx:135 -#: src/tables/build/BuildLineTable.tsx:192 +#: src/tables/build/BuildAllocatedStockTable.tsx:132 +#: src/tables/build/BuildLineTable.tsx:193 #: src/tables/part/PartTable.tsx:137 #: src/tables/stock/StockItemTable.tsx:182 #: src/tables/stock/StockItemTable.tsx:343 @@ -2373,7 +2406,7 @@ msgid "Database" msgstr "Baza danych" #: src/components/modals/ServerInfoModal.tsx:49 -#: src/components/nav/Alerts.tsx:118 +#: src/components/nav/Alerts.tsx:120 msgid "Debug Mode" msgstr "Tryb Debugowania" @@ -2414,7 +2447,7 @@ msgid "Issues detected" msgstr "Wykryto problemy" #: src/components/modals/ServerInfoModal.tsx:102 -#: src/components/nav/Alerts.tsx:125 +#: src/components/nav/Alerts.tsx:127 msgid "Background Worker" msgstr "Proces w tle" @@ -2436,7 +2469,7 @@ msgstr "Ustawienia poczty e-mail" #~ msgstr "Email settings not configured" #: src/components/modals/ServerInfoModal.tsx:120 -#: src/components/nav/Alerts.tsx:141 +#: src/components/nav/Alerts.tsx:143 msgid "Email settings not configured." msgstr "" @@ -2444,43 +2477,47 @@ msgstr "" msgid "Alerts" msgstr "" -#: src/components/nav/Alerts.tsx:120 +#: src/components/nav/Alerts.tsx:97 +msgid "No issues detected" +msgstr "" + +#: src/components/nav/Alerts.tsx:122 msgid "The server is running in debug mode." msgstr "" -#: src/components/nav/Alerts.tsx:127 +#: src/components/nav/Alerts.tsx:129 msgid "The background worker process is not running." msgstr "" -#: src/components/nav/Alerts.tsx:132 +#: src/components/nav/Alerts.tsx:134 msgid "Server Restart" msgstr "" -#: src/components/nav/Alerts.tsx:134 +#: src/components/nav/Alerts.tsx:136 msgid "The server requires a restart to apply changes." msgstr "" -#: src/components/nav/Alerts.tsx:139 +#: src/components/nav/Alerts.tsx:141 msgid "Email settings" msgstr "" -#: src/components/nav/Alerts.tsx:146 +#: src/components/nav/Alerts.tsx:148 msgid "Database Migrations" msgstr "" -#: src/components/nav/Alerts.tsx:148 +#: src/components/nav/Alerts.tsx:150 msgid "There are pending database migrations." msgstr "" -#: src/components/nav/Alerts.tsx:163 +#: src/components/nav/Alerts.tsx:165 msgid "Learn more about {code}" msgstr "" #: src/components/nav/Header.tsx:188 #: src/components/nav/NavigationDrawer.tsx:134 #: src/components/nav/NotificationDrawer.tsx:181 -#: src/pages/Index/Settings/SystemSettings.tsx:121 -#: src/pages/Index/Settings/UserSettings.tsx:106 +#: src/pages/Index/Settings/SystemSettings.tsx:122 +#: src/pages/Index/Settings/UserSettings.tsx:107 #: src/pages/Notifications.tsx:45 #: src/pages/Notifications.tsx:130 msgid "Notifications" @@ -2511,8 +2548,8 @@ msgstr "Ustawienia" #: src/components/nav/NavigationDrawer.tsx:140 #: src/components/nav/SettingsHeader.tsx:40 #: src/defaults/actions.tsx:92 -#: src/pages/Index/Settings/UserSettings.tsx:141 -#: src/pages/Index/Settings/UserSettings.tsx:145 +#: src/pages/Index/Settings/UserSettings.tsx:142 +#: src/pages/Index/Settings/UserSettings.tsx:146 msgid "User Settings" msgstr "" @@ -2529,8 +2566,8 @@ msgstr "" #: src/components/nav/NavigationDrawer.tsx:146 #: src/components/nav/SettingsHeader.tsx:41 #: src/defaults/actions.tsx:144 -#: src/pages/Index/Settings/SystemSettings.tsx:348 -#: src/pages/Index/Settings/SystemSettings.tsx:353 +#: src/pages/Index/Settings/SystemSettings.tsx:354 +#: src/pages/Index/Settings/SystemSettings.tsx:359 msgid "System Settings" msgstr "Ustawienia systemowe" @@ -2577,11 +2614,11 @@ msgstr "Wyloguj się" #: src/components/nav/NavigationDrawer.tsx:77 #: src/components/render/Part.tsx:36 -#: src/components/wizards/ImportPartWizard.tsx:807 +#: src/components/wizards/ImportPartWizard.tsx:808 #: src/defaults/links.tsx:42 #: src/forms/StockForms.tsx:794 -#: src/pages/Index/Settings/SystemSettings.tsx:224 -#: src/pages/part/PartDetail.tsx:804 +#: src/pages/Index/Settings/SystemSettings.tsx:230 +#: src/pages/part/PartDetail.tsx:793 #: src/pages/stock/LocationDetail.tsx:390 #: src/pages/stock/LocationDetail.tsx:420 #: src/pages/stock/StockDetail.tsx:642 @@ -2591,29 +2628,29 @@ msgstr "Stan" #: src/components/nav/NavigationDrawer.tsx:84 #: src/defaults/links.tsx:48 -#: src/pages/build/BuildDetail.tsx:748 -#: src/pages/build/BuildIndex.tsx:102 +#: src/pages/build/BuildDetail.tsx:753 +#: src/pages/build/BuildIndex.tsx:101 msgid "Manufacturing" msgstr "" #: src/components/nav/NavigationDrawer.tsx:91 #: src/defaults/links.tsx:54 #: src/pages/company/ManufacturerDetail.tsx:9 -#: src/pages/company/ManufacturerPartDetail.tsx:276 +#: src/pages/company/ManufacturerPartDetail.tsx:267 #: src/pages/company/SupplierDetail.tsx:9 -#: src/pages/company/SupplierPartDetail.tsx:360 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:553 -#: src/pages/purchasing/PurchasingIndex.tsx:122 +#: src/pages/company/SupplierPartDetail.tsx:365 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:558 +#: src/pages/purchasing/PurchasingIndex.tsx:212 msgid "Purchasing" msgstr "Zakupy" #: src/components/nav/NavigationDrawer.tsx:98 #: src/defaults/links.tsx:60 #: src/pages/company/CustomerDetail.tsx:9 -#: src/pages/sales/ReturnOrderDetail.tsx:554 -#: src/pages/sales/SalesIndex.tsx:153 -#: src/pages/sales/SalesOrderDetail.tsx:619 -#: src/pages/sales/SalesOrderShipmentDetail.tsx:480 +#: src/pages/sales/ReturnOrderDetail.tsx:559 +#: src/pages/sales/SalesIndex.tsx:168 +#: src/pages/sales/SalesOrderDetail.tsx:624 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:448 msgid "Sales" msgstr "Sprzedaże" @@ -2667,21 +2704,21 @@ msgid "Remove search group" msgstr "" #: src/components/nav/SearchDrawer.tsx:288 -#: src/pages/company/ManufacturerPartDetail.tsx:192 -#: src/pages/part/PartDetail.tsx:862 +#: src/pages/company/ManufacturerPartDetail.tsx:179 +#: src/pages/part/PartDetail.tsx:851 #: src/pages/part/PartSupplierDetail.tsx:15 -#: src/pages/purchasing/PurchasingIndex.tsx:81 +#: src/pages/purchasing/PurchasingIndex.tsx:100 msgid "Suppliers" msgstr "" #: src/components/nav/SearchDrawer.tsx:298 #: src/pages/part/PartSupplierDetail.tsx:23 -#: src/pages/purchasing/PurchasingIndex.tsx:98 +#: src/pages/purchasing/PurchasingIndex.tsx:149 msgid "Manufacturers" msgstr "" #: src/components/nav/SearchDrawer.tsx:308 -#: src/pages/sales/SalesIndex.tsx:138 +#: src/pages/sales/SalesIndex.tsx:133 msgid "Customers" msgstr "" @@ -2772,21 +2809,21 @@ msgstr "" #: src/components/plugins/PluginDrawer.tsx:73 #: src/forms/selectionListFields.tsx:102 -#: src/pages/build/BuildDetail.tsx:250 -#: src/pages/company/CompanyDetail.tsx:93 -#: src/pages/company/ManufacturerPartDetail.tsx:93 -#: src/pages/company/ManufacturerPartDetail.tsx:120 -#: src/pages/company/SupplierPartDetail.tsx:145 -#: src/pages/part/CategoryDetail.tsx:108 +#: src/pages/build/BuildDetail.tsx:251 +#: src/pages/company/CompanyDetail.tsx:94 +#: src/pages/company/ManufacturerPartDetail.tsx:92 +#: src/pages/company/ManufacturerPartDetail.tsx:119 +#: src/pages/company/SupplierPartDetail.tsx:146 +#: src/pages/part/CategoryDetail.tsx:111 #: src/pages/part/PartDetail.tsx:460 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:162 -#: src/pages/sales/ReturnOrderDetail.tsx:129 -#: src/pages/sales/SalesOrderDetail.tsx:119 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:163 +#: src/pages/sales/ReturnOrderDetail.tsx:130 +#: src/pages/sales/SalesOrderDetail.tsx:120 #: src/pages/stock/LocationDetail.tsx:102 #: src/tables/ColumnRenderers.tsx:278 -#: src/tables/build/BuildAllocatedStockTable.tsx:91 -#: src/tables/machine/MachineTypeTable.tsx:161 -#: src/tables/machine/MachineTypeTable.tsx:257 +#: src/tables/build/BuildAllocatedStockTable.tsx:88 +#: src/tables/machine/MachineTypeTable.tsx:159 +#: src/tables/machine/MachineTypeTable.tsx:255 #: src/tables/plugin/PluginListTable.tsx:110 msgid "Description" msgstr "" @@ -2814,7 +2851,7 @@ msgstr "" #: src/tables/company/CompanyTable.tsx:91 #: src/tables/machine/MachineListTable.tsx:384 #: src/tables/machine/MachineListTable.tsx:799 -#: src/tables/part/ParametricPartTable.tsx:354 +#: src/tables/part/ParametricPartTable.tsx:19 #: src/tables/part/PartTable.tsx:197 #: src/tables/part/PartVariantTable.tsx:15 #: src/tables/plugin/PluginListTable.tsx:96 @@ -2836,8 +2873,8 @@ msgid "Installation Path" msgstr "" #: src/components/plugins/PluginDrawer.tsx:116 -#: src/tables/machine/MachineTypeTable.tsx:184 -#: src/tables/machine/MachineTypeTable.tsx:293 +#: src/tables/machine/MachineTypeTable.tsx:182 +#: src/tables/machine/MachineTypeTable.tsx:291 #: src/tables/plugin/PluginListTable.tsx:101 #: src/tables/plugin/PluginListTable.tsx:417 msgid "Builtin" @@ -2849,8 +2886,8 @@ msgstr "" #: src/components/plugins/PluginDrawer.tsx:133 #: src/pages/Index/Settings/AdminCenter/PluginManagementPanel.tsx:55 -#: src/pages/Index/Settings/SystemSettings.tsx:331 -#: src/pages/Index/Settings/UserSettings.tsx:128 +#: src/pages/Index/Settings/SystemSettings.tsx:337 +#: src/pages/Index/Settings/UserSettings.tsx:129 msgid "Plugin Settings" msgstr "Ustawienia wtyczki" @@ -2911,7 +2948,7 @@ msgstr "" #~ msgid "Unknown model: {model}" #~ msgstr "Unknown model: {model}" -#: src/components/render/Instance.tsx:249 +#: src/components/render/Instance.tsx:247 msgid "Unknown model: {model_name}" msgstr "" @@ -2939,10 +2976,10 @@ msgstr "Wysyłka" #: src/components/render/Part.tsx:28 #: src/components/render/Plugin.tsx:17 #: src/components/render/User.tsx:37 -#: src/pages/company/CompanyDetail.tsx:323 -#: src/pages/company/SupplierPartDetail.tsx:373 +#: src/pages/company/CompanyDetail.tsx:328 +#: src/pages/company/SupplierPartDetail.tsx:378 #: src/pages/core/UserDetail.tsx:211 -#: src/pages/part/PartDetail.tsx:1027 +#: src/pages/part/PartDetail.tsx:1048 #: src/tables/ColumnRenderers.tsx:410 msgid "Inactive" msgstr "Nieaktywny" @@ -2962,11 +2999,11 @@ msgstr "Brak w magazynie" #: src/components/render/Part.tsx:47 #: src/components/wizards/OrderPartsWizard.tsx:135 -#: src/pages/company/SupplierPartDetail.tsx:197 -#: src/pages/company/SupplierPartDetail.tsx:394 -#: src/pages/part/PartDetail.tsx:1015 +#: src/pages/company/SupplierPartDetail.tsx:198 +#: src/pages/company/SupplierPartDetail.tsx:399 +#: src/pages/part/PartDetail.tsx:1030 #: src/tables/bom/BomTable.tsx:444 -#: src/tables/build/BuildLineTable.tsx:222 +#: src/tables/build/BuildLineTable.tsx:223 #: src/tables/part/PartTable.tsx:108 msgid "On Order" msgstr "" @@ -2974,9 +3011,9 @@ msgstr "" #: src/components/render/Part.tsx:55 #: src/components/wizards/OrderPartsWizard.tsx:141 #: src/pages/part/PartDetail.tsx:587 -#: src/pages/part/PartDetail.tsx:1021 +#: src/pages/part/PartDetail.tsx:1036 #: src/pages/stock/StockDetail.tsx:925 -#: src/tables/part/PartTestResultTable.tsx:297 +#: src/tables/part/PartTestResultTable.tsx:305 #: src/tables/stock/StockItemTable.tsx:359 msgid "In Production" msgstr "" @@ -2987,7 +3024,7 @@ msgid "Details" msgstr "" #: src/components/render/Part.tsx:112 -#: src/components/wizards/ImportPartWizard.tsx:806 +#: src/components/wizards/ImportPartWizard.tsx:807 #: src/pages/part/PartDetail.tsx:487 #: src/tables/ColumnRenderers.tsx:233 #: src/tables/ColumnRenderers.tsx:242 @@ -3000,16 +3037,16 @@ msgstr "" #: src/components/render/Stock.tsx:114 #: src/components/render/Stock.tsx:132 #: src/forms/BuildForms.tsx:795 -#: src/forms/PurchaseOrderForms.tsx:595 +#: src/forms/PurchaseOrderForms.tsx:647 #: src/forms/StockForms.tsx:792 #: src/forms/StockForms.tsx:839 -#: src/forms/StockForms.tsx:885 -#: src/forms/StockForms.tsx:924 -#: src/forms/StockForms.tsx:960 -#: src/forms/StockForms.tsx:1003 -#: src/forms/StockForms.tsx:1047 -#: src/forms/StockForms.tsx:1095 -#: src/forms/StockForms.tsx:1139 +#: src/forms/StockForms.tsx:892 +#: src/forms/StockForms.tsx:938 +#: src/forms/StockForms.tsx:976 +#: src/forms/StockForms.tsx:1019 +#: src/forms/StockForms.tsx:1063 +#: src/forms/StockForms.tsx:1111 +#: src/forms/StockForms.tsx:1155 #: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:88 #: src/pages/core/UserDetail.tsx:158 #: src/pages/stock/StockDetail.tsx:298 @@ -3023,7 +3060,7 @@ msgstr "Lokalizacja" #: src/components/render/Stock.tsx:99 #: src/pages/stock/StockDetail.tsx:198 #: src/pages/stock/StockDetail.tsx:930 -#: src/tables/build/BuildAllocatedStockTable.tsx:121 +#: src/tables/build/BuildAllocatedStockTable.tsx:118 #: src/tables/build/BuildOutputTable.tsx:107 #: src/tables/sales/SalesOrderAllocationTable.tsx:142 msgid "Serial Number" @@ -3034,9 +3071,9 @@ msgstr "Numer seryjny" #: src/forms/BuildForms.tsx:240 #: src/forms/BuildForms.tsx:634 #: src/forms/BuildForms.tsx:797 -#: src/forms/PurchaseOrderForms.tsx:801 +#: src/forms/PurchaseOrderForms.tsx:853 #: src/forms/ReturnOrderForms.tsx:243 -#: src/forms/SalesOrderForms.tsx:308 +#: src/forms/SalesOrderForms.tsx:387 #: src/forms/StockForms.tsx:841 #: src/pages/part/PartStockHistoryDetail.tsx:56 #: src/pages/part/PartStockHistoryDetail.tsx:210 @@ -3046,9 +3083,9 @@ msgstr "Numer seryjny" #: src/pages/part/pricing/PriceBreakPanel.tsx:172 #: src/pages/stock/StockDetail.tsx:258 #: src/pages/stock/StockDetail.tsx:936 -#: src/tables/build/BuildLineTable.tsx:86 +#: src/tables/build/BuildLineTable.tsx:83 #: src/tables/part/PartPurchaseOrdersTable.tsx:94 -#: src/tables/part/PartTestResultTable.tsx:269 +#: src/tables/part/PartTestResultTable.tsx:277 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:175 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:206 #: src/tables/purchasing/SupplierPriceBreakTable.tsx:69 @@ -3063,14 +3100,14 @@ msgstr "Ilość" #: src/forms/BuildForms.tsx:474 #: src/forms/StockForms.tsx:793 #: src/forms/StockForms.tsx:840 -#: src/forms/StockForms.tsx:886 -#: src/forms/StockForms.tsx:925 -#: src/forms/StockForms.tsx:961 -#: src/forms/StockForms.tsx:1004 -#: src/forms/StockForms.tsx:1048 -#: src/forms/StockForms.tsx:1096 -#: src/forms/StockForms.tsx:1140 -#: src/tables/build/BuildLineTable.tsx:96 +#: src/forms/StockForms.tsx:893 +#: src/forms/StockForms.tsx:939 +#: src/forms/StockForms.tsx:977 +#: src/forms/StockForms.tsx:1020 +#: src/forms/StockForms.tsx:1064 +#: src/forms/StockForms.tsx:1112 +#: src/forms/StockForms.tsx:1156 +#: src/tables/build/BuildLineTable.tsx:93 msgid "Batch" msgstr "" @@ -3306,10 +3343,6 @@ msgstr "Nie podano ustawień" #~ msgid "Part category updated" #~ msgstr "Part category updated" -#: src/components/tables/part/PartParameterTable.tsx:41 -#~ msgid "Parameter" -#~ msgstr "Parameter" - #: src/components/tables/part/PartParameterTable.tsx:114 #~ msgid "Part parameter updated" #~ msgstr "Part parameter updated" @@ -3571,15 +3604,16 @@ msgid "Already Imported" msgstr "" #: src/components/wizards/ImportPartWizard.tsx:205 -#: src/pages/company/CompanyDetail.tsx:136 +#: src/pages/company/CompanyDetail.tsx:137 #: src/pages/company/SupplierDetail.tsx:8 -#: src/pages/company/SupplierPartDetail.tsx:130 -#: src/pages/company/SupplierPartDetail.tsx:235 -#: src/pages/company/SupplierPartDetail.tsx:364 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:156 +#: src/pages/company/SupplierPartDetail.tsx:131 +#: src/pages/company/SupplierPartDetail.tsx:236 +#: src/pages/company/SupplierPartDetail.tsx:369 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:157 #: src/tables/Filter.tsx:360 #: src/tables/company/CompanyTable.tsx:96 #: src/tables/part/PartPurchaseOrdersTable.tsx:43 +#: src/tables/purchasing/PurchaseOrderParametricTable.tsx:34 #: src/tables/purchasing/PurchaseOrderTable.tsx:109 #: src/tables/purchasing/SupplierPriceBreakTable.tsx:40 msgid "Supplier" @@ -3648,7 +3682,7 @@ msgid "Next" msgstr "" #: src/components/wizards/ImportPartWizard.tsx:540 -#: src/pages/part/PartDetail.tsx:1046 +#: src/pages/part/PartDetail.tsx:1067 #: src/tables/part/PartTable.tsx:408 msgid "Edit Part" msgstr "" @@ -3669,28 +3703,28 @@ msgstr "" msgid "Import" msgstr "" -#: src/components/wizards/ImportPartWizard.tsx:691 +#: src/components/wizards/ImportPartWizard.tsx:692 msgid "Parameters created successfully!" msgstr "" -#: src/components/wizards/ImportPartWizard.tsx:719 +#: src/components/wizards/ImportPartWizard.tsx:720 msgid "Failed to create parameters, please fix the errors and try again" msgstr "" #. placeholder {0}: supplierPart?.supplier -#: src/components/wizards/ImportPartWizard.tsx:739 +#: src/components/wizards/ImportPartWizard.tsx:740 msgid "Part imported successfully from supplier {0}." msgstr "" -#: src/components/wizards/ImportPartWizard.tsx:752 +#: src/components/wizards/ImportPartWizard.tsx:753 msgid "Open Part" msgstr "" -#: src/components/wizards/ImportPartWizard.tsx:759 +#: src/components/wizards/ImportPartWizard.tsx:760 msgid "Open Supplier Part" msgstr "" -#: src/components/wizards/ImportPartWizard.tsx:766 +#: src/components/wizards/ImportPartWizard.tsx:767 msgid "Open Manufacturer Part" msgstr "" @@ -3699,25 +3733,19 @@ msgstr "" #~ msgid "Import Part" #~ msgstr "Import Part" -#: src/components/wizards/ImportPartWizard.tsx:802 +#: src/components/wizards/ImportPartWizard.tsx:803 msgid "Import Supplier Part" msgstr "" -#: src/components/wizards/ImportPartWizard.tsx:804 +#: src/components/wizards/ImportPartWizard.tsx:805 msgid "Search Supplier Part" msgstr "" -#: src/components/wizards/ImportPartWizard.tsx:806 -#: src/pages/company/ManufacturerPartDetail.tsx:166 -#: src/pages/part/PartDetail.tsx:793 -msgid "Parameters" -msgstr "" - -#: src/components/wizards/ImportPartWizard.tsx:806 +#: src/components/wizards/ImportPartWizard.tsx:807 msgid "Confirm import" msgstr "" -#: src/components/wizards/ImportPartWizard.tsx:808 +#: src/components/wizards/ImportPartWizard.tsx:809 msgid "Done" msgstr "" @@ -3738,24 +3766,24 @@ msgid "Sales Requirements" msgstr "" #: src/components/wizards/OrderPartsWizard.tsx:129 -#: src/forms/StockForms.tsx:887 -#: src/forms/StockForms.tsx:926 -#: src/forms/StockForms.tsx:962 -#: src/forms/StockForms.tsx:1005 -#: src/forms/StockForms.tsx:1049 -#: src/forms/StockForms.tsx:1097 -#: src/forms/StockForms.tsx:1141 -#: src/pages/company/SupplierPartDetail.tsx:190 -#: src/pages/company/SupplierPartDetail.tsx:378 +#: src/forms/StockForms.tsx:894 +#: src/forms/StockForms.tsx:940 +#: src/forms/StockForms.tsx:978 +#: src/forms/StockForms.tsx:1021 +#: src/forms/StockForms.tsx:1065 +#: src/forms/StockForms.tsx:1113 +#: src/forms/StockForms.tsx:1157 +#: src/pages/company/SupplierPartDetail.tsx:191 +#: src/pages/company/SupplierPartDetail.tsx:383 #: src/pages/part/PartDetail.tsx:534 -#: src/pages/part/PartDetail.tsx:984 +#: src/pages/part/PartDetail.tsx:999 #: src/tables/Filter.tsx:92 #: src/tables/purchasing/SupplierPartTable.tsx:230 msgid "In Stock" msgstr "Na stanie" #: src/components/wizards/OrderPartsWizard.tsx:146 -#: src/tables/build/BuildLineTable.tsx:404 +#: src/tables/build/BuildLineTable.tsx:405 msgid "Required Quantity" msgstr "" @@ -3847,7 +3875,7 @@ msgid "Please correct the errors in the selected parts" msgstr "" #: src/components/wizards/OrderPartsWizard.tsx:587 -#: src/tables/build/BuildLineTable.tsx:815 +#: src/tables/build/BuildLineTable.tsx:822 #: src/tables/part/PartTable.tsx:522 #: src/tables/sales/SalesOrderLineItemTable.tsx:370 msgid "Order Parts" @@ -4349,9 +4377,9 @@ msgstr "" #: src/forms/BuildForms.tsx:333 #: src/forms/BuildForms.tsx:408 #: src/forms/BuildForms.tsx:685 -#: src/tables/build/BuildAllocatedStockTable.tsx:150 +#: src/tables/build/BuildAllocatedStockTable.tsx:147 #: src/tables/build/BuildOutputTable.tsx:582 -#: src/tables/part/PartTestResultTable.tsx:272 +#: src/tables/part/PartTestResultTable.tsx:280 msgid "Build Output" msgstr "" @@ -4362,22 +4390,22 @@ msgstr "" #: src/forms/BuildForms.tsx:336 #: src/forms/BuildForms.tsx:411 #: src/forms/BuildForms.tsx:475 -#: src/forms/PurchaseOrderForms.tsx:717 +#: src/forms/PurchaseOrderForms.tsx:769 #: src/forms/ReturnOrderForms.tsx:197 #: src/forms/ReturnOrderForms.tsx:244 #: src/forms/StockForms.tsx:712 #: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:87 -#: src/pages/build/BuildDetail.tsx:222 +#: src/pages/build/BuildDetail.tsx:223 #: src/pages/core/UserDetail.tsx:151 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:168 -#: src/pages/sales/ReturnOrderDetail.tsx:135 -#: src/pages/sales/SalesOrderDetail.tsx:125 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:169 +#: src/pages/sales/ReturnOrderDetail.tsx:136 +#: src/pages/sales/SalesOrderDetail.tsx:126 #: src/pages/stock/StockDetail.tsx:170 #: src/tables/Filter.tsx:274 #: src/tables/build/BuildOutputTable.tsx:404 #: src/tables/machine/MachineListTable.tsx:387 #: src/tables/part/PartPurchaseOrdersTable.tsx:38 -#: src/tables/part/PartTestResultTable.tsx:309 +#: src/tables/part/PartTestResultTable.tsx:317 #: src/tables/sales/ReturnOrderLineItemTable.tsx:138 #: src/tables/sales/ReturnOrderLineItemTable.tsx:176 #: src/tables/settings/CustomStateTable.tsx:79 @@ -4443,18 +4471,19 @@ msgid "Build outputs have been cancelled" msgstr "" #: src/forms/BuildForms.tsx:631 -#: src/pages/build/BuildDetail.tsx:207 -#: src/pages/company/ManufacturerPartDetail.tsx:85 -#: src/pages/company/SupplierPartDetail.tsx:96 +#: src/pages/build/BuildDetail.tsx:208 +#: src/pages/company/ManufacturerPartDetail.tsx:84 +#: src/pages/company/SupplierPartDetail.tsx:97 #: src/pages/part/PartDetail.tsx:453 #: src/pages/stock/StockDetail.tsx:153 #: src/tables/bom/BomTable.tsx:134 #: src/tables/bom/UsedInTable.tsx:40 -#: src/tables/build/BuildAllocatedStockTable.tsx:108 -#: src/tables/build/BuildLineTable.tsx:336 +#: src/tables/build/BuildAllocatedStockTable.tsx:105 +#: src/tables/build/BuildLineTable.tsx:337 #: src/tables/build/BuildOrderTable.tsx:79 #: src/tables/part/PartSalesAllocationsTable.tsx:61 #: src/tables/part/RelatedPartTable.tsx:73 +#: src/tables/purchasing/ManufacturerPartParametricTable.tsx:21 #: src/tables/purchasing/ManufacturerPartTable.tsx:69 #: src/tables/purchasing/SupplierPartTable.tsx:70 #: src/tables/sales/SalesOrderAllocationTable.tsx:135 @@ -4466,47 +4495,47 @@ msgstr "" #: src/forms/BuildForms.tsx:632 #: src/forms/BuildForms.tsx:796 #: src/forms/BuildForms.tsx:897 -#: src/forms/SalesOrderForms.tsx:306 -#: src/tables/build/BuildAllocatedStockTable.tsx:139 -#: src/tables/build/BuildLineTable.tsx:182 +#: src/forms/SalesOrderForms.tsx:385 +#: src/tables/build/BuildAllocatedStockTable.tsx:136 +#: src/tables/build/BuildLineTable.tsx:183 #: src/tables/sales/SalesOrderLineItemTable.tsx:342 #: src/tables/stock/StockItemTable.tsx:338 msgid "Allocated" msgstr "" #: src/forms/BuildForms.tsx:667 -#: src/forms/SalesOrderForms.tsx:295 -#: src/pages/build/BuildDetail.tsx:108 -#: src/pages/build/BuildDetail.tsx:326 +#: src/forms/SalesOrderForms.tsx:374 +#: src/pages/build/BuildDetail.tsx:109 +#: src/pages/build/BuildDetail.tsx:327 msgid "Source Location" msgstr "" #: src/forms/BuildForms.tsx:668 -#: src/forms/SalesOrderForms.tsx:296 +#: src/forms/SalesOrderForms.tsx:375 msgid "Select the source location for the stock allocation" msgstr "" #: src/forms/BuildForms.tsx:700 -#: src/forms/SalesOrderForms.tsx:336 -#: src/tables/build/BuildLineTable.tsx:574 -#: src/tables/build/BuildLineTable.tsx:731 -#: src/tables/build/BuildLineTable.tsx:830 +#: src/forms/SalesOrderForms.tsx:415 +#: src/tables/build/BuildLineTable.tsx:575 +#: src/tables/build/BuildLineTable.tsx:738 +#: src/tables/build/BuildLineTable.tsx:837 #: src/tables/sales/SalesOrderLineItemTable.tsx:380 #: src/tables/sales/SalesOrderLineItemTable.tsx:406 msgid "Allocate Stock" msgstr "" #: src/forms/BuildForms.tsx:703 -#: src/forms/SalesOrderForms.tsx:341 +#: src/forms/SalesOrderForms.tsx:420 msgid "Stock items allocated" msgstr "" #: src/forms/BuildForms.tsx:816 #: src/forms/BuildForms.tsx:917 -#: src/tables/build/BuildAllocatedStockTable.tsx:240 -#: src/tables/build/BuildAllocatedStockTable.tsx:272 -#: src/tables/build/BuildLineTable.tsx:741 -#: src/tables/build/BuildLineTable.tsx:864 +#: src/tables/build/BuildAllocatedStockTable.tsx:243 +#: src/tables/build/BuildAllocatedStockTable.tsx:279 +#: src/tables/build/BuildLineTable.tsx:748 +#: src/tables/build/BuildLineTable.tsx:871 msgid "Consume Stock" msgstr "" @@ -4521,21 +4550,21 @@ msgstr "" #~ msgstr "Stock items consumed" #: src/forms/BuildForms.tsx:853 -#: src/tables/build/BuildLineTable.tsx:514 +#: src/tables/build/BuildLineTable.tsx:515 #: src/tables/part/PartBuildAllocationsTable.tsx:101 msgid "Fully consumed" msgstr "" #: src/forms/BuildForms.tsx:898 -#: src/tables/build/BuildLineTable.tsx:187 +#: src/tables/build/BuildLineTable.tsx:188 #: src/tables/stock/StockItemTable.tsx:367 msgid "Consumed" msgstr "" -#: src/forms/CommonForms.tsx:88 -#: src/forms/PurchaseOrderForms.tsx:125 +#: src/forms/CommonForms.tsx:92 +#: src/forms/PurchaseOrderForms.tsx:176 #: src/forms/ReturnOrderForms.tsx:138 -#: src/forms/SalesOrderForms.tsx:164 +#: src/forms/SalesOrderForms.tsx:185 msgid "Select project code for this line item" msgstr "" @@ -4543,16 +4572,16 @@ msgstr "" #~ msgid "Company updated" #~ msgstr "Company updated" -#: src/forms/PartForms.tsx:85 -#: src/forms/PartForms.tsx:207 -#: src/pages/part/CategoryDetail.tsx:124 +#: src/forms/PartForms.tsx:99 +#: src/forms/PartForms.tsx:228 +#: src/pages/part/CategoryDetail.tsx:127 #: src/pages/part/PartDetail.tsx:668 #: src/tables/part/PartCategoryTable.tsx:94 #: src/tables/part/PartTable.tsx:325 msgid "Subscribed" msgstr "" -#: src/forms/PartForms.tsx:86 +#: src/forms/PartForms.tsx:100 msgid "Subscribe to notifications for this part" msgstr "" @@ -4564,40 +4593,24 @@ msgstr "" #~ msgid "Part updated" #~ msgstr "Part updated" -#: src/forms/PartForms.tsx:193 +#: src/forms/PartForms.tsx:214 msgid "Parent part category" msgstr "Kategoria części nadrzędnej" -#: src/forms/PartForms.tsx:208 +#: src/forms/PartForms.tsx:229 msgid "Subscribe to notifications for this category" msgstr "" -#: src/forms/PurchaseOrderForms.tsx:388 -msgid "Assign Batch Code and Serial Numbers" -msgstr "" - -#: src/forms/PurchaseOrderForms.tsx:390 -msgid "Assign Batch Code" -msgstr "" - -#: src/forms/PurchaseOrderForms.tsx:410 -msgid "Choose Location" -msgstr "Wybierz lokalizację" - -#: src/forms/PurchaseOrderForms.tsx:418 -msgid "Item Destination selected" -msgstr "" - #: src/forms/PurchaseOrderForms.tsx:421 #~ msgid "Assign Batch Code{0}" #~ msgstr "Assign Batch Code{0}" -#: src/forms/PurchaseOrderForms.tsx:428 -msgid "Part category default location selected" +#: src/forms/PurchaseOrderForms.tsx:440 +msgid "Assign Batch Code and Serial Numbers" msgstr "" -#: src/forms/PurchaseOrderForms.tsx:438 -msgid "Received stock location selected" +#: src/forms/PurchaseOrderForms.tsx:442 +msgid "Assign Batch Code" msgstr "" #: src/forms/PurchaseOrderForms.tsx:444 @@ -4605,115 +4618,131 @@ msgstr "" #~ msgid "Remove item from list" #~ msgstr "Remove item from list" -#: src/forms/PurchaseOrderForms.tsx:446 +#: src/forms/PurchaseOrderForms.tsx:462 +msgid "Choose Location" +msgstr "Wybierz lokalizację" + +#: src/forms/PurchaseOrderForms.tsx:470 +msgid "Item Destination selected" +msgstr "" + +#: src/forms/PurchaseOrderForms.tsx:480 +msgid "Part category default location selected" +msgstr "" + +#: src/forms/PurchaseOrderForms.tsx:490 +msgid "Received stock location selected" +msgstr "" + +#: src/forms/PurchaseOrderForms.tsx:498 msgid "Default location selected" msgstr "Wybrano domyślną lokalizację" -#: src/forms/PurchaseOrderForms.tsx:507 +#: src/forms/PurchaseOrderForms.tsx:559 msgid "Set Location" msgstr "Ustaw lokalizację" -#: src/forms/PurchaseOrderForms.tsx:524 -msgid "Set Expiry Date" -msgstr "" - -#: src/forms/PurchaseOrderForms.tsx:532 -#: src/forms/StockForms.tsx:693 -msgid "Adjust Packaging" -msgstr "Dostosuj opakowanie" - -#: src/forms/PurchaseOrderForms.tsx:540 -#: src/forms/StockForms.tsx:684 -#: src/hooks/UseStockAdjustActions.tsx:148 -msgid "Change Status" -msgstr "Zmień status" - -#: src/forms/PurchaseOrderForms.tsx:546 -msgid "Add Note" -msgstr "Dodaj notatkę" - #: src/forms/PurchaseOrderForms.tsx:566 #~ msgid "Serial numbers" #~ msgstr "Serial numbers" +#: src/forms/PurchaseOrderForms.tsx:576 +msgid "Set Expiry Date" +msgstr "" + #: src/forms/PurchaseOrderForms.tsx:582 #~ msgid "Store at line item destination" #~ msgstr "Store at line item destination" -#: src/forms/PurchaseOrderForms.tsx:610 -msgid "Store at default location" -msgstr "Zapisz w domyślnej lokalizacji" +#: src/forms/PurchaseOrderForms.tsx:584 +#: src/forms/StockForms.tsx:693 +msgid "Adjust Packaging" +msgstr "Dostosuj opakowanie" -#: src/forms/PurchaseOrderForms.tsx:625 -msgid "Store at line item destination " -msgstr "" +#: src/forms/PurchaseOrderForms.tsx:592 +#: src/forms/StockForms.tsx:684 +#: src/hooks/UseStockAdjustActions.tsx:148 +msgid "Change Status" +msgstr "Zmień status" -#: src/forms/PurchaseOrderForms.tsx:637 -msgid "Store with already received stock" -msgstr "" +#: src/forms/PurchaseOrderForms.tsx:598 +msgid "Add Note" +msgstr "Dodaj notatkę" #: src/forms/PurchaseOrderForms.tsx:658 #~ msgid "Receive line items" #~ msgstr "Receive line items" -#: src/forms/PurchaseOrderForms.tsx:661 -#: src/pages/build/BuildDetail.tsx:340 +#: src/forms/PurchaseOrderForms.tsx:662 +msgid "Store at default location" +msgstr "Zapisz w domyślnej lokalizacji" + +#: src/forms/PurchaseOrderForms.tsx:677 +msgid "Store at line item destination " +msgstr "" + +#: src/forms/PurchaseOrderForms.tsx:689 +msgid "Store with already received stock" +msgstr "" + +#: src/forms/PurchaseOrderForms.tsx:713 +#: src/pages/build/BuildDetail.tsx:341 #: src/pages/stock/StockDetail.tsx:280 #: src/pages/stock/StockDetail.tsx:952 #: src/tables/Filter.tsx:83 -#: src/tables/build/BuildAllocatedStockTable.tsx:128 +#: src/tables/build/BuildAllocatedStockTable.tsx:125 #: src/tables/build/BuildOutputTable.tsx:112 -#: src/tables/part/PartTestResultTable.tsx:260 -#: src/tables/part/PartTestResultTable.tsx:281 +#: src/tables/part/PartTestResultTable.tsx:268 +#: src/tables/part/PartTestResultTable.tsx:289 #: src/tables/sales/SalesOrderAllocationTable.tsx:149 msgid "Batch Code" msgstr "Kod partii" -#: src/forms/PurchaseOrderForms.tsx:662 +#: src/forms/PurchaseOrderForms.tsx:714 msgid "Enter batch code for received items" msgstr "" -#: src/forms/PurchaseOrderForms.tsx:675 +#: src/forms/PurchaseOrderForms.tsx:727 #: src/forms/StockForms.tsx:218 msgid "Serial Numbers" msgstr "Numery seryjne" -#: src/forms/PurchaseOrderForms.tsx:676 +#: src/forms/PurchaseOrderForms.tsx:728 msgid "Enter serial numbers for received items" msgstr "" -#: src/forms/PurchaseOrderForms.tsx:690 +#: src/forms/PurchaseOrderForms.tsx:742 #: src/pages/stock/StockDetail.tsx:382 #: src/tables/stock/StockItemTable.tsx:294 msgid "Expiry Date" msgstr "" -#: src/forms/PurchaseOrderForms.tsx:691 +#: src/forms/PurchaseOrderForms.tsx:743 msgid "Enter an expiry date for received items" msgstr "" -#: src/forms/PurchaseOrderForms.tsx:703 +#: src/forms/PurchaseOrderForms.tsx:755 #: src/forms/StockForms.tsx:728 -#: src/pages/company/SupplierPartDetail.tsx:172 -#: src/pages/company/SupplierPartDetail.tsx:236 +#: src/pages/company/SupplierPartDetail.tsx:173 +#: src/pages/company/SupplierPartDetail.tsx:237 #: src/pages/stock/StockDetail.tsx:419 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:227 msgid "Packaging" msgstr "Opakowanie" -#: src/forms/PurchaseOrderForms.tsx:727 -#: src/pages/company/SupplierPartDetail.tsx:120 +#: src/forms/PurchaseOrderForms.tsx:779 +#: src/pages/company/SupplierPartDetail.tsx:121 #: src/tables/ColumnRenderers.tsx:332 msgid "Note" msgstr "Notatka" -#: src/forms/PurchaseOrderForms.tsx:799 -#: src/pages/company/SupplierPartDetail.tsx:138 +#: src/forms/PurchaseOrderForms.tsx:851 +#: src/pages/company/SupplierPartDetail.tsx:139 #: src/tables/purchasing/SupplierPriceBreakTable.tsx:49 msgid "SKU" msgstr "SKU" -#: src/forms/PurchaseOrderForms.tsx:800 +#: src/forms/PurchaseOrderForms.tsx:852 #: src/tables/part/PartPurchaseOrdersTable.tsx:127 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:213 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:283 @@ -4721,11 +4750,11 @@ msgstr "SKU" msgid "Received" msgstr "Otrzymano" -#: src/forms/PurchaseOrderForms.tsx:817 +#: src/forms/PurchaseOrderForms.tsx:869 msgid "Receive Line Items" msgstr "" -#: src/forms/PurchaseOrderForms.tsx:823 +#: src/forms/PurchaseOrderForms.tsx:875 msgid "Items received" msgstr "" @@ -4737,7 +4766,35 @@ msgstr "" msgid "Item received into stock" msgstr "" -#: src/forms/SalesOrderForms.tsx:401 +#: src/forms/SalesOrderForms.tsx:208 +#: src/forms/SalesOrderForms.tsx:210 +#: src/tables/sales/SalesOrderShipmentTable.tsx:215 +msgid "Check Shipment" +msgstr "" + +#: src/forms/SalesOrderForms.tsx:211 +msgid "Marking the shipment as checked indicates that you have verified that all items included in this shipment are correct" +msgstr "" + +#: src/forms/SalesOrderForms.tsx:221 +msgid "Shipment marked as checked" +msgstr "" + +#: src/forms/SalesOrderForms.tsx:236 +#: src/forms/SalesOrderForms.tsx:238 +#: src/tables/sales/SalesOrderShipmentTable.tsx:228 +msgid "Uncheck Shipment" +msgstr "" + +#: src/forms/SalesOrderForms.tsx:239 +msgid "Marking the shipment as unchecked indicates that the shipment requires further verification" +msgstr "" + +#: src/forms/SalesOrderForms.tsx:249 +msgid "Shipment marked as unchecked" +msgstr "" + +#: src/forms/SalesOrderForms.tsx:480 msgid "Leave blank to use the order address" msgstr "" @@ -4792,150 +4849,150 @@ msgstr "Przenieś" msgid "Return" msgstr "" -#: src/forms/StockForms.tsx:963 +#: src/forms/StockForms.tsx:979 #: src/pages/Index/Scan.tsx:182 msgid "Count" msgstr "Ilość" -#: src/forms/StockForms.tsx:1246 +#: src/forms/StockForms.tsx:1262 #: src/hooks/UseStockAdjustActions.tsx:108 msgid "Add Stock" msgstr "Dodaj stan" -#: src/forms/StockForms.tsx:1247 +#: src/forms/StockForms.tsx:1263 msgid "Stock added" msgstr "" -#: src/forms/StockForms.tsx:1250 +#: src/forms/StockForms.tsx:1266 msgid "Increase the quantity of the selected stock items by a given amount." msgstr "" -#: src/forms/StockForms.tsx:1261 +#: src/forms/StockForms.tsx:1277 #: src/hooks/UseStockAdjustActions.tsx:118 msgid "Remove Stock" msgstr "Usuń stan" -#: src/forms/StockForms.tsx:1262 +#: src/forms/StockForms.tsx:1278 msgid "Stock removed" msgstr "" -#: src/forms/StockForms.tsx:1265 +#: src/forms/StockForms.tsx:1281 msgid "Decrease the quantity of the selected stock items by a given amount." msgstr "" -#: src/forms/StockForms.tsx:1276 +#: src/forms/StockForms.tsx:1292 #: src/hooks/UseStockAdjustActions.tsx:128 msgid "Transfer Stock" msgstr "Przenieś stan" -#: src/forms/StockForms.tsx:1277 +#: src/forms/StockForms.tsx:1293 msgid "Stock transferred" msgstr "" -#: src/forms/StockForms.tsx:1280 +#: src/forms/StockForms.tsx:1296 msgid "Transfer selected items to the specified location." msgstr "" -#: src/forms/StockForms.tsx:1291 +#: src/forms/StockForms.tsx:1307 #: src/hooks/UseStockAdjustActions.tsx:168 msgid "Return Stock" msgstr "" -#: src/forms/StockForms.tsx:1292 +#: src/forms/StockForms.tsx:1308 msgid "Stock returned" msgstr "" -#: src/forms/StockForms.tsx:1295 +#: src/forms/StockForms.tsx:1311 msgid "Return selected items into stock, to the specified location." msgstr "" -#: src/forms/StockForms.tsx:1306 +#: src/forms/StockForms.tsx:1322 #: src/hooks/UseStockAdjustActions.tsx:98 msgid "Count Stock" msgstr "Policz stan" -#: src/forms/StockForms.tsx:1307 +#: src/forms/StockForms.tsx:1323 msgid "Stock counted" msgstr "" -#: src/forms/StockForms.tsx:1310 +#: src/forms/StockForms.tsx:1326 msgid "Count the selected stock items, and adjust the quantity accordingly." msgstr "" -#: src/forms/StockForms.tsx:1321 +#: src/forms/StockForms.tsx:1337 msgid "Change Stock Status" msgstr "Zmień status stanu magazynowego" -#: src/forms/StockForms.tsx:1322 +#: src/forms/StockForms.tsx:1338 msgid "Stock status changed" msgstr "" -#: src/forms/StockForms.tsx:1325 +#: src/forms/StockForms.tsx:1341 msgid "Change the status of the selected stock items." msgstr "" -#: src/forms/StockForms.tsx:1336 +#: src/forms/StockForms.tsx:1352 #: src/hooks/UseStockAdjustActions.tsx:138 msgid "Merge Stock" msgstr "" -#: src/forms/StockForms.tsx:1337 +#: src/forms/StockForms.tsx:1353 msgid "Stock merged" msgstr "" -#: src/forms/StockForms.tsx:1339 +#: src/forms/StockForms.tsx:1355 msgid "Merge Stock Items" msgstr "" -#: src/forms/StockForms.tsx:1341 +#: src/forms/StockForms.tsx:1357 msgid "Merge operation cannot be reversed" msgstr "" -#: src/forms/StockForms.tsx:1342 +#: src/forms/StockForms.tsx:1358 msgid "Tracking information may be lost when merging items" msgstr "" -#: src/forms/StockForms.tsx:1343 +#: src/forms/StockForms.tsx:1359 msgid "Supplier information may be lost when merging items" msgstr "" -#: src/forms/StockForms.tsx:1361 +#: src/forms/StockForms.tsx:1377 msgid "Assign Stock to Customer" msgstr "" -#: src/forms/StockForms.tsx:1362 +#: src/forms/StockForms.tsx:1378 msgid "Stock assigned to customer" msgstr "" -#: src/forms/StockForms.tsx:1372 +#: src/forms/StockForms.tsx:1388 msgid "Delete Stock Items" msgstr "" -#: src/forms/StockForms.tsx:1373 +#: src/forms/StockForms.tsx:1389 msgid "Stock deleted" msgstr "" -#: src/forms/StockForms.tsx:1376 +#: src/forms/StockForms.tsx:1392 msgid "This operation will permanently delete the selected stock items." msgstr "" -#: src/forms/StockForms.tsx:1385 +#: src/forms/StockForms.tsx:1401 msgid "Parent stock location" msgstr "" -#: src/forms/StockForms.tsx:1512 +#: src/forms/StockForms.tsx:1528 msgid "Find Serial Number" msgstr "" -#: src/forms/StockForms.tsx:1523 +#: src/forms/StockForms.tsx:1539 msgid "No matching items" msgstr "" -#: src/forms/StockForms.tsx:1529 +#: src/forms/StockForms.tsx:1545 msgid "Multiple matching items" msgstr "" -#: src/forms/StockForms.tsx:1538 +#: src/forms/StockForms.tsx:1554 msgid "Invalid response from server" msgstr "" @@ -4953,7 +5010,6 @@ msgstr "" #: src/tables/FilterSelectDrawer.tsx:137 #: src/tables/FilterSelectDrawer.tsx:149 #: src/tables/part/PartTestResultTable.tsx:206 -#: src/tables/purchasing/ManufacturerPartParameterTable.tsx:42 #: src/tables/stock/StockItemTestResultTable.tsx:207 msgid "Value" msgstr "" @@ -5244,7 +5300,7 @@ msgid "Delete selected stock items" msgstr "" #: src/hooks/UseStockAdjustActions.tsx:205 -#: src/pages/part/PartDetail.tsx:1137 +#: src/pages/part/PartDetail.tsx:1158 msgid "Stock Actions" msgstr "" @@ -5932,6 +5988,9 @@ msgstr "" #: src/pages/Index/Settings/AccountSettings/MFASettings.tsx:310 #: src/pages/Index/Settings/AccountSettings/MFASettings.tsx:401 +#: src/tables/build/BuildAllocatedStockTable.tsx:181 +#: src/tables/build/BuildLineTable.tsx:668 +#: src/tables/sales/SalesOrderAllocationTable.tsx:220 msgid "Confirm Removal" msgstr "" @@ -6394,30 +6453,34 @@ msgid "Email Messages" msgstr "" #: src/pages/Index/Settings/AdminCenter/HomePanel.tsx:22 -msgid "Active Alerts" -msgstr "" +#~ msgid "Active Alerts" +#~ msgstr "Active Alerts" #: src/pages/Index/Settings/AdminCenter/HomePanel.tsx:27 -msgid "Inactive Alerts" +#~ msgid "Inactive Alerts" +#~ msgstr "Inactive Alerts" + +#: src/pages/Index/Settings/AdminCenter/HomePanel.tsx:36 +msgid "System Status" msgstr "" -#: src/pages/Index/Settings/AdminCenter/HomePanel.tsx:38 +#: src/pages/Index/Settings/AdminCenter/HomePanel.tsx:47 msgid "Admin Center Information" msgstr "" -#: src/pages/Index/Settings/AdminCenter/HomePanel.tsx:44 +#: src/pages/Index/Settings/AdminCenter/HomePanel.tsx:53 msgid "The home panel (and the whole Admin Center) is a new feature starting with the new UI and was previously (before 1.0) not available." msgstr "" -#: src/pages/Index/Settings/AdminCenter/HomePanel.tsx:51 +#: src/pages/Index/Settings/AdminCenter/HomePanel.tsx:60 msgid "The admin center provides a centralized location for all administration functionality and is meant to replace all interaction with the (django) backend admin interface." msgstr "" -#: src/pages/Index/Settings/AdminCenter/HomePanel.tsx:58 +#: src/pages/Index/Settings/AdminCenter/HomePanel.tsx:67 msgid "Please open feature requests (after checking the tracker) for any existing backend admin functionality you are missing in this UI. The backend admin interface should be used carefully and seldom." msgstr "" -#: src/pages/Index/Settings/AdminCenter/HomePanel.tsx:76 +#: src/pages/Index/Settings/AdminCenter/HomePanel.tsx:85 msgid "Quick Actions" msgstr "" @@ -6476,11 +6539,11 @@ msgstr "Jednostki niestandardowe" #: src/pages/Index/Settings/AdminCenter/Index.tsx:195 #: src/pages/part/CategoryDetail.tsx:313 -msgid "Part Parameters" -msgstr "Parametry części" +#~ msgid "Part Parameters" +#~ msgstr "Part Parameters" #: src/pages/Index/Settings/AdminCenter/Index.tsx:202 -#: src/pages/part/CategoryDetail.tsx:306 +#: src/pages/part/CategoryDetail.tsx:329 msgid "Category Parameters" msgstr "Parametry kategorii" @@ -6494,7 +6557,7 @@ msgstr "" #: src/pages/Index/Settings/AdminCenter/Index.tsx:235 #: src/pages/Index/Settings/AdminCenter/MachineManagementPanel.tsx:52 -#: src/tables/machine/MachineTypeTable.tsx:325 +#: src/tables/machine/MachineTypeTable.tsx:323 msgid "Machines" msgstr "Maszyny" @@ -6507,8 +6570,8 @@ msgid "Data Management" msgstr "" #: src/pages/Index/Settings/AdminCenter/Index.tsx:270 -#: src/pages/Index/Settings/SystemSettings.tsx:175 -#: src/pages/Index/Settings/UserSettings.tsx:118 +#: src/pages/Index/Settings/SystemSettings.tsx:176 +#: src/pages/Index/Settings/UserSettings.tsx:119 msgid "Reporting" msgstr "Raportowanie" @@ -6709,11 +6772,11 @@ msgstr "" msgid "The settings below are specific to each available plugin" msgstr "" -#: src/pages/Index/Settings/SystemSettings.tsx:77 +#: src/pages/Index/Settings/SystemSettings.tsx:78 msgid "Authentication" msgstr "" -#: src/pages/Index/Settings/SystemSettings.tsx:103 +#: src/pages/Index/Settings/SystemSettings.tsx:104 msgid "Barcodes" msgstr "Kody kreskowe" @@ -6725,12 +6788,12 @@ msgstr "Kody kreskowe" #~ msgid "This panel is a placeholder." #~ msgstr "This panel is a placeholder." -#: src/pages/Index/Settings/SystemSettings.tsx:127 -#: src/pages/Index/Settings/UserSettings.tsx:112 +#: src/pages/Index/Settings/SystemSettings.tsx:128 +#: src/pages/Index/Settings/UserSettings.tsx:113 msgid "The settings below are specific to each available notification method" msgstr "" -#: src/pages/Index/Settings/SystemSettings.tsx:133 +#: src/pages/Index/Settings/SystemSettings.tsx:134 msgid "Pricing" msgstr "Cennik" @@ -6738,7 +6801,7 @@ msgstr "Cennik" #~ msgid "Exchange Rates" #~ msgstr "Exchange Rates" -#: src/pages/Index/Settings/SystemSettings.tsx:169 +#: src/pages/Index/Settings/SystemSettings.tsx:170 msgid "Labels" msgstr "Etykiety" @@ -6790,15 +6853,15 @@ msgstr "" #~ msgid "Delete notifications" #~ msgstr "Delete notifications" -#: src/pages/build/BuildDetail.tsx:69 +#: src/pages/build/BuildDetail.tsx:70 msgid "No Required Items" msgstr "" -#: src/pages/build/BuildDetail.tsx:71 +#: src/pages/build/BuildDetail.tsx:72 msgid "This build order does not have any required items." msgstr "" -#: src/pages/build/BuildDetail.tsx:72 +#: src/pages/build/BuildDetail.tsx:73 msgid "The assembled part may not have a Bill of Materials (BOM) defined, or the BOM is empty." msgstr "" @@ -6826,7 +6889,7 @@ msgstr "" #~ msgid "Build Order updated" #~ msgstr "Build Order updated" -#: src/pages/build/BuildDetail.tsx:215 +#: src/pages/build/BuildDetail.tsx:216 #: src/pages/part/PartDetail.tsx:480 #: src/pages/stock/StockDetail.tsx:161 #: src/tables/bom/UsedInTable.tsx:44 @@ -6843,10 +6906,10 @@ msgstr "" #~ msgid "Duplicate build order" #~ msgstr "Duplicate build order" -#: src/pages/build/BuildDetail.tsx:228 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:174 -#: src/pages/sales/ReturnOrderDetail.tsx:141 -#: src/pages/sales/SalesOrderDetail.tsx:131 +#: src/pages/build/BuildDetail.tsx:229 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:175 +#: src/pages/sales/ReturnOrderDetail.tsx:142 +#: src/pages/sales/SalesOrderDetail.tsx:132 #: src/pages/stock/StockDetail.tsx:176 msgid "Custom Status" msgstr "" @@ -6855,9 +6918,9 @@ msgstr "" #~ msgid "Delete build order" #~ msgstr "Delete build order" -#: src/pages/build/BuildDetail.tsx:237 -#: src/pages/build/BuildDetail.tsx:723 -#: src/pages/build/BuildIndex.tsx:28 +#: src/pages/build/BuildDetail.tsx:238 +#: src/pages/build/BuildDetail.tsx:728 +#: src/pages/build/BuildIndex.tsx:34 #: src/pages/stock/LocationDetail.tsx:140 #: src/tables/build/BuildOrderTable.tsx:123 #: src/tables/build/BuildOrderTable.tsx:183 @@ -6865,57 +6928,57 @@ msgstr "" msgid "External" msgstr "" -#: src/pages/build/BuildDetail.tsx:244 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:141 -#: src/pages/sales/ReturnOrderDetail.tsx:108 -#: src/pages/sales/SalesOrderDetail.tsx:98 +#: src/pages/build/BuildDetail.tsx:245 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:142 +#: src/pages/sales/ReturnOrderDetail.tsx:109 +#: src/pages/sales/SalesOrderDetail.tsx:99 #: src/tables/ColumnRenderers.tsx:321 -#: src/tables/build/BuildAllocatedStockTable.tsx:115 -#: src/tables/build/BuildLineTable.tsx:352 +#: src/tables/build/BuildAllocatedStockTable.tsx:112 +#: src/tables/build/BuildLineTable.tsx:353 msgid "Reference" msgstr "" -#: src/pages/build/BuildDetail.tsx:258 +#: src/pages/build/BuildDetail.tsx:259 msgid "Parent Build" msgstr "" -#: src/pages/build/BuildDetail.tsx:269 +#: src/pages/build/BuildDetail.tsx:270 msgid "Build Quantity" msgstr "" -#: src/pages/build/BuildDetail.tsx:275 +#: src/pages/build/BuildDetail.tsx:276 #: src/pages/part/PartDetail.tsx:598 #: src/tables/bom/BomTable.tsx:365 #: src/tables/bom/BomTable.tsx:407 msgid "Can Build" msgstr "" -#: src/pages/build/BuildDetail.tsx:284 -#: src/pages/build/BuildDetail.tsx:474 +#: src/pages/build/BuildDetail.tsx:285 +#: src/pages/build/BuildDetail.tsx:475 msgid "Completed Outputs" msgstr "" -#: src/pages/build/BuildDetail.tsx:301 +#: src/pages/build/BuildDetail.tsx:302 #: src/tables/Filter.tsx:381 #: src/tables/build/BuildOrderTable.tsx:143 msgid "Issued By" msgstr "" -#: src/pages/build/BuildDetail.tsx:309 +#: src/pages/build/BuildDetail.tsx:310 #: src/pages/part/PartDetail.tsx:691 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:261 -#: src/pages/sales/ReturnOrderDetail.tsx:239 -#: src/pages/sales/SalesOrderDetail.tsx:232 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:262 +#: src/pages/sales/ReturnOrderDetail.tsx:240 +#: src/pages/sales/SalesOrderDetail.tsx:233 #: src/tables/ColumnRenderers.tsx:464 #: src/tables/Filter.tsx:319 msgid "Responsible" msgstr "" -#: src/pages/build/BuildDetail.tsx:327 +#: src/pages/build/BuildDetail.tsx:328 msgid "Any location" msgstr "" -#: src/pages/build/BuildDetail.tsx:334 +#: src/pages/build/BuildDetail.tsx:335 msgid "Destination Location" msgstr "" @@ -6924,24 +6987,24 @@ msgstr "" #~ msgid "Test Statistics" #~ msgstr "Test Statistics" -#: src/pages/build/BuildDetail.tsx:350 +#: src/pages/build/BuildDetail.tsx:351 #: src/tables/settings/ApiTokenTable.tsx:97 #: src/tables/settings/PendingTasksTable.tsx:41 msgid "Created" msgstr "" -#: src/pages/build/BuildDetail.tsx:358 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:286 -#: src/pages/sales/ReturnOrderDetail.tsx:265 -#: src/pages/sales/SalesOrderDetail.tsx:257 +#: src/pages/build/BuildDetail.tsx:359 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:287 +#: src/pages/sales/ReturnOrderDetail.tsx:266 +#: src/pages/sales/SalesOrderDetail.tsx:258 #: src/tables/ColumnRenderers.tsx:486 msgid "Start Date" msgstr "" -#: src/pages/build/BuildDetail.tsx:366 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:294 -#: src/pages/sales/ReturnOrderDetail.tsx:273 -#: src/pages/sales/SalesOrderDetail.tsx:265 +#: src/pages/build/BuildDetail.tsx:367 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:295 +#: src/pages/sales/ReturnOrderDetail.tsx:274 +#: src/pages/sales/SalesOrderDetail.tsx:266 #: src/tables/ColumnRenderers.tsx:494 #: src/tables/part/PartPurchaseOrdersTable.tsx:101 #: src/tables/sales/ReturnOrderLineItemTable.tsx:154 @@ -6954,185 +7017,185 @@ msgstr "" #~ msgstr "Reporting Actions" #: src/pages/build/BuildDetail.tsx:374 +#~ msgid "Print build report" +#~ msgstr "Print build report" + +#: src/pages/build/BuildDetail.tsx:375 #: src/tables/build/BuildOrderTable.tsx:93 #: src/tables/sales/SalesOrderLineItemTable.tsx:347 msgid "Completed" msgstr "" -#: src/pages/build/BuildDetail.tsx:374 -#~ msgid "Print build report" -#~ msgstr "Print build report" - -#: src/pages/build/BuildDetail.tsx:410 +#: src/pages/build/BuildDetail.tsx:411 msgid "Build Details" msgstr "" -#: src/pages/build/BuildDetail.tsx:416 +#: src/pages/build/BuildDetail.tsx:417 msgid "Required Parts" msgstr "" -#: src/pages/build/BuildDetail.tsx:428 -#: src/pages/sales/SalesOrderDetail.tsx:407 -#: src/pages/sales/SalesOrderShipmentDetail.tsx:261 +#: src/pages/build/BuildDetail.tsx:429 +#: src/pages/sales/SalesOrderDetail.tsx:408 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:259 #: src/tables/part/PartSalesAllocationsTable.tsx:73 msgid "Allocated Stock" msgstr "" -#: src/pages/build/BuildDetail.tsx:444 +#: src/pages/build/BuildDetail.tsx:445 msgid "Consumed Stock" msgstr "" -#: src/pages/build/BuildDetail.tsx:461 +#: src/pages/build/BuildDetail.tsx:462 msgid "Incomplete Outputs" msgstr "" -#: src/pages/build/BuildDetail.tsx:489 +#: src/pages/build/BuildDetail.tsx:490 msgid "External Orders" msgstr "" -#: src/pages/build/BuildDetail.tsx:503 +#: src/pages/build/BuildDetail.tsx:504 msgid "Child Build Orders" msgstr "" -#: src/pages/build/BuildDetail.tsx:513 -#: src/pages/part/PartDetail.tsx:937 +#: src/pages/build/BuildDetail.tsx:514 +#: src/pages/part/PartDetail.tsx:926 #: src/pages/stock/StockDetail.tsx:587 #: src/tables/build/BuildOutputTable.tsx:654 #: src/tables/stock/StockItemTestResultTable.tsx:173 msgid "Test Results" msgstr "" -#: src/pages/build/BuildDetail.tsx:550 +#: src/pages/build/BuildDetail.tsx:555 msgid "Edit Build Order" msgstr "" -#: src/pages/build/BuildDetail.tsx:572 +#: src/pages/build/BuildDetail.tsx:577 #: src/tables/build/BuildOrderTable.tsx:207 #: src/tables/build/BuildOrderTable.tsx:223 msgid "Add Build Order" msgstr "" -#: src/pages/build/BuildDetail.tsx:582 +#: src/pages/build/BuildDetail.tsx:587 msgid "Cancel Build Order" msgstr "" -#: src/pages/build/BuildDetail.tsx:584 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:416 -#: src/pages/sales/ReturnOrderDetail.tsx:427 -#: src/pages/sales/SalesOrderDetail.tsx:454 +#: src/pages/build/BuildDetail.tsx:589 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:421 +#: src/pages/sales/ReturnOrderDetail.tsx:432 +#: src/pages/sales/SalesOrderDetail.tsx:459 msgid "Order cancelled" msgstr "" -#: src/pages/build/BuildDetail.tsx:585 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:415 -#: src/pages/sales/ReturnOrderDetail.tsx:426 -#: src/pages/sales/SalesOrderDetail.tsx:453 +#: src/pages/build/BuildDetail.tsx:590 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:420 +#: src/pages/sales/ReturnOrderDetail.tsx:431 +#: src/pages/sales/SalesOrderDetail.tsx:458 msgid "Cancel this order" msgstr "" -#: src/pages/build/BuildDetail.tsx:594 +#: src/pages/build/BuildDetail.tsx:599 msgid "Hold Build Order" msgstr "" -#: src/pages/build/BuildDetail.tsx:596 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:423 -#: src/pages/sales/ReturnOrderDetail.tsx:434 -#: src/pages/sales/SalesOrderDetail.tsx:461 +#: src/pages/build/BuildDetail.tsx:601 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:428 +#: src/pages/sales/ReturnOrderDetail.tsx:439 +#: src/pages/sales/SalesOrderDetail.tsx:466 msgid "Place this order on hold" msgstr "" -#: src/pages/build/BuildDetail.tsx:597 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:424 -#: src/pages/sales/ReturnOrderDetail.tsx:435 -#: src/pages/sales/SalesOrderDetail.tsx:462 +#: src/pages/build/BuildDetail.tsx:602 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:429 +#: src/pages/sales/ReturnOrderDetail.tsx:440 +#: src/pages/sales/SalesOrderDetail.tsx:467 msgid "Order placed on hold" msgstr "" -#: src/pages/build/BuildDetail.tsx:602 +#: src/pages/build/BuildDetail.tsx:607 msgid "Issue Build Order" msgstr "" -#: src/pages/build/BuildDetail.tsx:604 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:407 -#: src/pages/sales/ReturnOrderDetail.tsx:418 -#: src/pages/sales/SalesOrderDetail.tsx:445 +#: src/pages/build/BuildDetail.tsx:609 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:412 +#: src/pages/sales/ReturnOrderDetail.tsx:423 +#: src/pages/sales/SalesOrderDetail.tsx:450 msgid "Issue this order" msgstr "" -#: src/pages/build/BuildDetail.tsx:605 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:408 -#: src/pages/sales/ReturnOrderDetail.tsx:419 -#: src/pages/sales/SalesOrderDetail.tsx:446 +#: src/pages/build/BuildDetail.tsx:610 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:413 +#: src/pages/sales/ReturnOrderDetail.tsx:424 +#: src/pages/sales/SalesOrderDetail.tsx:451 msgid "Order issued" msgstr "" -#: src/pages/build/BuildDetail.tsx:624 +#: src/pages/build/BuildDetail.tsx:629 msgid "Complete Build Order" msgstr "" -#: src/pages/build/BuildDetail.tsx:630 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:436 -#: src/pages/sales/ReturnOrderDetail.tsx:442 -#: src/pages/sales/SalesOrderDetail.tsx:480 +#: src/pages/build/BuildDetail.tsx:635 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:441 +#: src/pages/sales/ReturnOrderDetail.tsx:447 +#: src/pages/sales/SalesOrderDetail.tsx:485 msgid "Mark this order as complete" msgstr "" -#: src/pages/build/BuildDetail.tsx:633 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:430 -#: src/pages/sales/ReturnOrderDetail.tsx:443 -#: src/pages/sales/SalesOrderDetail.tsx:481 +#: src/pages/build/BuildDetail.tsx:638 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:435 +#: src/pages/sales/ReturnOrderDetail.tsx:448 +#: src/pages/sales/SalesOrderDetail.tsx:486 msgid "Order completed" msgstr "" -#: src/pages/build/BuildDetail.tsx:660 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:459 -#: src/pages/sales/ReturnOrderDetail.tsx:470 -#: src/pages/sales/SalesOrderDetail.tsx:516 +#: src/pages/build/BuildDetail.tsx:665 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:464 +#: src/pages/sales/ReturnOrderDetail.tsx:475 +#: src/pages/sales/SalesOrderDetail.tsx:521 msgid "Issue Order" msgstr "" -#: src/pages/build/BuildDetail.tsx:667 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:466 -#: src/pages/sales/ReturnOrderDetail.tsx:477 -#: src/pages/sales/SalesOrderDetail.tsx:530 +#: src/pages/build/BuildDetail.tsx:672 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:471 +#: src/pages/sales/ReturnOrderDetail.tsx:482 +#: src/pages/sales/SalesOrderDetail.tsx:535 msgid "Complete Order" msgstr "" -#: src/pages/build/BuildDetail.tsx:686 +#: src/pages/build/BuildDetail.tsx:691 msgid "Build Order Actions" msgstr "" -#: src/pages/build/BuildDetail.tsx:691 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:489 -#: src/pages/sales/ReturnOrderDetail.tsx:500 -#: src/pages/sales/SalesOrderDetail.tsx:554 +#: src/pages/build/BuildDetail.tsx:696 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:494 +#: src/pages/sales/ReturnOrderDetail.tsx:505 +#: src/pages/sales/SalesOrderDetail.tsx:559 msgid "Edit order" msgstr "" -#: src/pages/build/BuildDetail.tsx:695 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:497 -#: src/pages/sales/ReturnOrderDetail.tsx:506 -#: src/pages/sales/SalesOrderDetail.tsx:559 -msgid "Duplicate order" -msgstr "" - -#: src/pages/build/BuildDetail.tsx:699 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:500 +#: src/pages/build/BuildDetail.tsx:700 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:502 #: src/pages/sales/ReturnOrderDetail.tsx:511 -#: src/pages/sales/SalesOrderDetail.tsx:562 -msgid "Hold order" +#: src/pages/sales/SalesOrderDetail.tsx:564 +msgid "Duplicate order" msgstr "" #: src/pages/build/BuildDetail.tsx:704 #: src/pages/purchasing/PurchaseOrderDetail.tsx:505 #: src/pages/sales/ReturnOrderDetail.tsx:516 #: src/pages/sales/SalesOrderDetail.tsx:567 +msgid "Hold order" +msgstr "" + +#: src/pages/build/BuildDetail.tsx:709 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:510 +#: src/pages/sales/ReturnOrderDetail.tsx:521 +#: src/pages/sales/SalesOrderDetail.tsx:572 msgid "Cancel order" msgstr "" -#: src/pages/build/BuildDetail.tsx:742 +#: src/pages/build/BuildDetail.tsx:747 #: src/pages/stock/StockDetail.tsx:344 -#: src/tables/build/BuildAllocatedStockTable.tsx:85 +#: src/tables/build/BuildAllocatedStockTable.tsx:82 #: src/tables/part/PartBuildAllocationsTable.tsx:45 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:157 #: src/tables/stock/StockTrackingTable.tsx:109 @@ -7143,7 +7206,7 @@ msgstr "" #~ msgid "Build order created" #~ msgstr "Build order created" -#: src/pages/build/BuildIndex.tsx:29 +#: src/pages/build/BuildIndex.tsx:35 #: src/tables/build/BuildOrderTable.tsx:184 msgid "Show external build orders" msgstr "" @@ -7152,61 +7215,82 @@ msgstr "" #~ msgid "New Build Order" #~ msgstr "New Build Order" -#: src/pages/build/BuildIndex.tsx:83 -#: src/pages/purchasing/PurchasingIndex.tsx:69 -#: src/pages/sales/SalesIndex.tsx:92 -#: src/pages/sales/SalesIndex.tsx:125 +#: src/pages/build/BuildIndex.tsx:74 +#: src/pages/part/CategoryDetail.tsx:292 +#: src/pages/purchasing/PurchasingIndex.tsx:74 +#: src/pages/purchasing/PurchasingIndex.tsx:107 +#: src/pages/purchasing/PurchasingIndex.tsx:135 +#: src/pages/purchasing/PurchasingIndex.tsx:156 +#: src/pages/purchasing/PurchasingIndex.tsx:184 +#: src/pages/sales/SalesIndex.tsx:61 +#: src/pages/sales/SalesIndex.tsx:107 +#: src/pages/sales/SalesIndex.tsx:140 msgid "Table View" msgstr "" -#: src/pages/build/BuildIndex.tsx:86 -#: src/pages/purchasing/PurchasingIndex.tsx:72 -#: src/pages/sales/SalesIndex.tsx:95 -#: src/pages/sales/SalesIndex.tsx:128 +#: src/pages/build/BuildIndex.tsx:80 +#: src/pages/purchasing/PurchasingIndex.tsx:80 +#: src/pages/sales/SalesIndex.tsx:67 +#: src/pages/sales/SalesIndex.tsx:113 msgid "Calendar View" msgstr "" -#: src/pages/company/CompanyDetail.tsx:99 +#: src/pages/build/BuildIndex.tsx:86 +#: src/pages/part/CategoryDetail.tsx:306 +#: src/pages/purchasing/PurchasingIndex.tsx:92 +#: src/pages/purchasing/PurchasingIndex.tsx:118 +#: src/pages/purchasing/PurchasingIndex.tsx:141 +#: src/pages/purchasing/PurchasingIndex.tsx:167 +#: src/pages/purchasing/PurchasingIndex.tsx:190 +#: src/pages/sales/SalesIndex.tsx:79 +#: src/pages/sales/SalesIndex.tsx:125 +#: src/pages/sales/SalesIndex.tsx:151 +msgid "Parametric View" +msgstr "" + +#: src/pages/company/CompanyDetail.tsx:100 msgid "Website" msgstr "Strona internetowa" -#: src/pages/company/CompanyDetail.tsx:107 +#: src/pages/company/CompanyDetail.tsx:108 msgid "Phone Number" msgstr "" -#: src/pages/company/CompanyDetail.tsx:114 +#: src/pages/company/CompanyDetail.tsx:115 msgid "Email Address" msgstr "" -#: src/pages/company/CompanyDetail.tsx:121 +#: src/pages/company/CompanyDetail.tsx:122 msgid "Tax ID" msgstr "" -#: src/pages/company/CompanyDetail.tsx:131 +#: src/pages/company/CompanyDetail.tsx:132 msgid "Default Currency" msgstr "" -#: src/pages/company/CompanyDetail.tsx:142 +#: src/pages/company/CompanyDetail.tsx:143 #: src/pages/company/ManufacturerDetail.tsx:8 -#: src/pages/company/ManufacturerPartDetail.tsx:104 -#: src/pages/company/ManufacturerPartDetail.tsx:280 -#: src/pages/company/SupplierPartDetail.tsx:152 +#: src/pages/company/ManufacturerPartDetail.tsx:103 +#: src/pages/company/ManufacturerPartDetail.tsx:271 +#: src/pages/company/SupplierPartDetail.tsx:153 #: src/tables/Filter.tsx:347 #: src/tables/company/CompanyTable.tsx:101 #: src/tables/purchasing/SupplierPartTable.tsx:89 msgid "Manufacturer" msgstr "" -#: src/pages/company/CompanyDetail.tsx:148 +#: src/pages/company/CompanyDetail.tsx:149 #: src/pages/company/CustomerDetail.tsx:8 #: src/pages/part/pricing/SaleHistoryPanel.tsx:31 -#: src/pages/sales/ReturnOrderDetail.tsx:123 -#: src/pages/sales/SalesOrderDetail.tsx:113 -#: src/pages/sales/SalesOrderShipmentDetail.tsx:113 +#: src/pages/sales/ReturnOrderDetail.tsx:124 +#: src/pages/sales/SalesOrderDetail.tsx:114 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:111 #: src/pages/stock/StockDetail.tsx:370 #: src/tables/company/CompanyTable.tsx:106 +#: src/tables/sales/ReturnOrderParametricTable.tsx:32 #: src/tables/sales/ReturnOrderTable.tsx:108 -#: src/tables/sales/SalesOrderShipmentTable.tsx:111 +#: src/tables/sales/SalesOrderParametricTable.tsx:32 +#: src/tables/sales/SalesOrderShipmentTable.tsx:132 #: src/tables/sales/SalesOrderTable.tsx:133 #: src/tables/stock/StockTrackingTable.tsx:153 msgid "Customer" @@ -7216,11 +7300,11 @@ msgstr "" #~ msgid "Edit company" #~ msgstr "Edit company" -#: src/pages/company/CompanyDetail.tsx:181 +#: src/pages/company/CompanyDetail.tsx:182 msgid "Company Details" msgstr "" -#: src/pages/company/CompanyDetail.tsx:187 +#: src/pages/company/CompanyDetail.tsx:188 msgid "Supplied Parts" msgstr "" @@ -7228,79 +7312,79 @@ msgstr "" #~ msgid "Delete company" #~ msgstr "Delete company" -#: src/pages/company/CompanyDetail.tsx:194 +#: src/pages/company/CompanyDetail.tsx:195 msgid "Manufactured Parts" msgstr "" -#: src/pages/company/CompanyDetail.tsx:241 +#: src/pages/company/CompanyDetail.tsx:242 msgid "Assigned Stock" msgstr "" -#: src/pages/company/CompanyDetail.tsx:282 +#: src/pages/company/CompanyDetail.tsx:287 #: src/tables/company/CompanyTable.tsx:82 msgid "Edit Company" msgstr "" -#: src/pages/company/CompanyDetail.tsx:290 +#: src/pages/company/CompanyDetail.tsx:295 msgid "Delete Company" msgstr "" -#: src/pages/company/CompanyDetail.tsx:305 +#: src/pages/company/CompanyDetail.tsx:310 msgid "Company Actions" msgstr "" -#: src/pages/company/ManufacturerPartDetail.tsx:78 -#: src/pages/company/SupplierPartDetail.tsx:89 +#: src/pages/company/ManufacturerPartDetail.tsx:77 +#: src/pages/company/SupplierPartDetail.tsx:90 msgid "Internal Part" msgstr "" -#: src/pages/company/ManufacturerPartDetail.tsx:112 +#: src/pages/company/ManufacturerPartDetail.tsx:111 msgid "Manufacturer Part Number" msgstr "" -#: src/pages/company/ManufacturerPartDetail.tsx:129 -#: src/pages/company/SupplierPartDetail.tsx:113 +#: src/pages/company/ManufacturerPartDetail.tsx:128 +#: src/pages/company/SupplierPartDetail.tsx:114 msgid "External Link" msgstr "" -#: src/pages/company/ManufacturerPartDetail.tsx:148 -#: src/pages/company/SupplierPartDetail.tsx:232 +#: src/pages/company/ManufacturerPartDetail.tsx:147 +#: src/pages/company/SupplierPartDetail.tsx:233 #: src/pages/part/PartDetail.tsx:787 msgid "Part Details" msgstr "" -#: src/pages/company/ManufacturerPartDetail.tsx:151 +#: src/pages/company/ManufacturerPartDetail.tsx:150 msgid "Manufacturer Details" msgstr "" -#: src/pages/company/ManufacturerPartDetail.tsx:160 +#: src/pages/company/ManufacturerPartDetail.tsx:159 msgid "Manufacturer Part Details" msgstr "" -#: src/pages/company/ManufacturerPartDetail.tsx:178 -#: src/pages/company/SupplierPartDetail.tsx:252 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:381 +#: src/pages/company/ManufacturerPartDetail.tsx:165 +#: src/pages/company/SupplierPartDetail.tsx:253 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:382 msgid "Received Stock" msgstr "" -#: src/pages/company/ManufacturerPartDetail.tsx:220 +#: src/pages/company/ManufacturerPartDetail.tsx:211 #: src/tables/purchasing/ManufacturerPartTable.tsx:108 msgid "Edit Manufacturer Part" msgstr "" -#: src/pages/company/ManufacturerPartDetail.tsx:227 +#: src/pages/company/ManufacturerPartDetail.tsx:218 #: src/tables/purchasing/ManufacturerPartTable.tsx:96 #: src/tables/purchasing/ManufacturerPartTable.tsx:115 #: src/tables/purchasing/ManufacturerPartTable.tsx:156 msgid "Add Manufacturer Part" msgstr "" -#: src/pages/company/ManufacturerPartDetail.tsx:239 +#: src/pages/company/ManufacturerPartDetail.tsx:230 #: src/tables/purchasing/ManufacturerPartTable.tsx:126 msgid "Delete Manufacturer Part" msgstr "" -#: src/pages/company/ManufacturerPartDetail.tsx:254 +#: src/pages/company/ManufacturerPartDetail.tsx:245 msgid "Manufacturer Part Actions" msgstr "" @@ -7308,12 +7392,12 @@ msgstr "" #~ msgid "ManufacturerPart" #~ msgstr "ManufacturerPart" -#: src/pages/company/SupplierPartDetail.tsx:104 +#: src/pages/company/SupplierPartDetail.tsx:105 #: src/tables/part/RelatedPartTable.tsx:82 msgid "Part Description" msgstr "" -#: src/pages/company/SupplierPartDetail.tsx:179 +#: src/pages/company/SupplierPartDetail.tsx:180 #: src/tables/part/PartPurchaseOrdersTable.tsx:73 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:191 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:233 @@ -7321,50 +7405,50 @@ msgstr "" msgid "Pack Quantity" msgstr "" -#: src/pages/company/SupplierPartDetail.tsx:204 +#: src/pages/company/SupplierPartDetail.tsx:205 msgid "Supplier Availability" msgstr "" -#: src/pages/company/SupplierPartDetail.tsx:212 +#: src/pages/company/SupplierPartDetail.tsx:213 msgid "Availability Updated" msgstr "" -#: src/pages/company/SupplierPartDetail.tsx:237 +#: src/pages/company/SupplierPartDetail.tsx:238 msgid "Availability" msgstr "" -#: src/pages/company/SupplierPartDetail.tsx:246 +#: src/pages/company/SupplierPartDetail.tsx:247 msgid "Supplier Part Details" msgstr "" -#: src/pages/company/SupplierPartDetail.tsx:279 +#: src/pages/company/SupplierPartDetail.tsx:280 #: src/pages/part/PartPricingPanel.tsx:113 #: src/pages/part/pricing/PricingOverviewPanel.tsx:239 msgid "Supplier Pricing" msgstr "" -#: src/pages/company/SupplierPartDetail.tsx:308 +#: src/pages/company/SupplierPartDetail.tsx:313 msgid "Supplier Part Actions" msgstr "" -#: src/pages/company/SupplierPartDetail.tsx:332 +#: src/pages/company/SupplierPartDetail.tsx:337 #: src/tables/purchasing/SupplierPartTable.tsx:244 msgid "Edit Supplier Part" msgstr "" -#: src/pages/company/SupplierPartDetail.tsx:340 +#: src/pages/company/SupplierPartDetail.tsx:345 #: src/tables/purchasing/SupplierPartTable.tsx:264 msgid "Delete Supplier Part" msgstr "" -#: src/pages/company/SupplierPartDetail.tsx:348 +#: src/pages/company/SupplierPartDetail.tsx:353 #: src/tables/purchasing/SupplierPartTable.tsx:172 #: src/tables/purchasing/SupplierPartTable.tsx:251 msgid "Add Supplier Part" msgstr "" -#: src/pages/company/SupplierPartDetail.tsx:388 -#: src/pages/part/PartDetail.tsx:1003 +#: src/pages/company/SupplierPartDetail.tsx:393 +#: src/pages/part/PartDetail.tsx:1018 msgid "No Stock" msgstr "" @@ -7411,83 +7495,83 @@ msgstr "" msgid "Basic user" msgstr "" -#: src/pages/part/CategoryDetail.tsx:100 +#: src/pages/part/CategoryDetail.tsx:103 #: src/pages/stock/LocationDetail.tsx:94 #: src/tables/settings/ErrorTable.tsx:63 #: src/tables/settings/ErrorTable.tsx:108 msgid "Path" msgstr "" -#: src/pages/part/CategoryDetail.tsx:116 +#: src/pages/part/CategoryDetail.tsx:119 msgid "Parent Category" msgstr "" -#: src/pages/part/CategoryDetail.tsx:139 -#: src/pages/part/CategoryDetail.tsx:271 +#: src/pages/part/CategoryDetail.tsx:142 +#: src/pages/part/CategoryDetail.tsx:279 msgid "Subcategories" msgstr "" -#: src/pages/part/CategoryDetail.tsx:146 +#: src/pages/part/CategoryDetail.tsx:149 #: src/pages/stock/LocationDetail.tsx:134 #: src/tables/part/PartCategoryTable.tsx:89 #: src/tables/stock/StockLocationTable.tsx:43 msgid "Structural" msgstr "" -#: src/pages/part/CategoryDetail.tsx:152 +#: src/pages/part/CategoryDetail.tsx:155 msgid "Parent default location" msgstr "" -#: src/pages/part/CategoryDetail.tsx:159 +#: src/pages/part/CategoryDetail.tsx:162 msgid "Default location" msgstr "" -#: src/pages/part/CategoryDetail.tsx:170 +#: src/pages/part/CategoryDetail.tsx:173 msgid "Top level part category" msgstr "" -#: src/pages/part/CategoryDetail.tsx:180 -#: src/pages/part/CategoryDetail.tsx:248 +#: src/pages/part/CategoryDetail.tsx:183 +#: src/pages/part/CategoryDetail.tsx:251 #: src/tables/part/PartCategoryTable.tsx:122 msgid "Edit Part Category" msgstr "" -#: src/pages/part/CategoryDetail.tsx:189 +#: src/pages/part/CategoryDetail.tsx:192 msgid "Move items to parent category" msgstr "" -#: src/pages/part/CategoryDetail.tsx:193 +#: src/pages/part/CategoryDetail.tsx:196 #: src/pages/stock/LocationDetail.tsx:226 msgid "Delete items" msgstr "" -#: src/pages/part/CategoryDetail.tsx:201 -#: src/pages/part/CategoryDetail.tsx:253 +#: src/pages/part/CategoryDetail.tsx:204 +#: src/pages/part/CategoryDetail.tsx:256 msgid "Delete Part Category" msgstr "" -#: src/pages/part/CategoryDetail.tsx:204 +#: src/pages/part/CategoryDetail.tsx:207 msgid "Parts Action" msgstr "" -#: src/pages/part/CategoryDetail.tsx:205 +#: src/pages/part/CategoryDetail.tsx:208 msgid "Action for parts in this category" msgstr "" -#: src/pages/part/CategoryDetail.tsx:211 +#: src/pages/part/CategoryDetail.tsx:214 msgid "Child Categories Action" msgstr "" -#: src/pages/part/CategoryDetail.tsx:212 +#: src/pages/part/CategoryDetail.tsx:215 msgid "Action for child categories in this category" msgstr "" -#: src/pages/part/CategoryDetail.tsx:244 +#: src/pages/part/CategoryDetail.tsx:247 #: src/tables/part/PartCategoryTable.tsx:143 msgid "Category Actions" msgstr "" -#: src/pages/part/CategoryDetail.tsx:265 +#: src/pages/part/CategoryDetail.tsx:273 msgid "Category Details" msgstr "" @@ -7585,7 +7669,6 @@ msgid "Category Default Location" msgstr "" #: src/pages/part/PartDetail.tsx:507 -#: src/tables/purchasing/ManufacturerPartParameterTable.tsx:48 msgid "Units" msgstr "" @@ -7600,7 +7683,7 @@ msgstr "" #: src/pages/part/PartDetail.tsx:542 #: src/tables/bom/BomTable.tsx:439 -#: src/tables/build/BuildLineTable.tsx:305 +#: src/tables/build/BuildLineTable.tsx:306 #: src/tables/part/PartTable.tsx:319 #: src/tables/sales/SalesOrderLineItemTable.tsx:138 msgid "Available Stock" @@ -7608,7 +7691,7 @@ msgstr "" #: src/pages/part/PartDetail.tsx:548 #: src/tables/bom/BomTable.tsx:341 -#: src/tables/build/BuildLineTable.tsx:267 +#: src/tables/build/BuildLineTable.tsx:268 #: src/tables/sales/SalesOrderLineItemTable.tsx:180 msgid "On order" msgstr "" @@ -7634,7 +7717,7 @@ msgstr "" #~ msgstr "Scheduling" #: src/pages/part/PartDetail.tsx:620 -#: src/tables/part/ParametricPartTable.tsx:359 +#: src/tables/part/ParametricPartTable.tsx:24 #: src/tables/part/PartTable.tsx:203 msgid "Locked" msgstr "" @@ -7671,16 +7754,16 @@ msgid "Saleable Part" msgstr "" #: src/pages/part/PartDetail.tsx:663 -#: src/pages/part/PartDetail.tsx:1033 +#: src/pages/part/PartDetail.tsx:1054 #: src/tables/bom/BomTable.tsx:150 #: src/tables/bom/BomTable.tsx:434 msgid "Virtual Part" msgstr "" #: src/pages/part/PartDetail.tsx:678 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:271 -#: src/pages/sales/ReturnOrderDetail.tsx:249 -#: src/pages/sales/SalesOrderDetail.tsx:242 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:272 +#: src/pages/sales/ReturnOrderDetail.tsx:250 +#: src/pages/sales/SalesOrderDetail.tsx:243 #: src/tables/ColumnRenderers.tsx:502 msgid "Creation Date" msgstr "" @@ -7718,35 +7801,46 @@ msgstr "" msgid "Select Part Revision" msgstr "" -#: src/pages/part/PartDetail.tsx:823 +#: src/pages/part/PartDetail.tsx:812 msgid "Variants" msgstr "" -#: src/pages/part/PartDetail.tsx:830 +#: src/pages/part/PartDetail.tsx:819 #: src/pages/stock/StockDetail.tsx:542 msgid "Allocations" msgstr "" -#: src/pages/part/PartDetail.tsx:837 +#: src/pages/part/PartDetail.tsx:826 msgid "Bill of Materials" msgstr "" -#: src/pages/part/PartDetail.tsx:849 +#: src/pages/part/PartDetail.tsx:838 msgid "Used In" msgstr "" -#: src/pages/part/PartDetail.tsx:856 +#: src/pages/part/PartDetail.tsx:845 msgid "Part Pricing" msgstr "" -#: src/pages/part/PartDetail.tsx:926 +#: src/pages/part/PartDetail.tsx:915 msgid "Test Templates" msgstr "" -#: src/pages/part/PartDetail.tsx:948 +#: src/pages/part/PartDetail.tsx:937 msgid "Related Parts" msgstr "" +#: src/pages/part/PartDetail.tsx:949 +#: src/tables/ColumnRenderers.tsx:73 +#: src/tables/bom/BomTable.tsx:657 +#: src/tables/part/PartTestTemplateTable.tsx:258 +msgid "Part is Locked" +msgstr "" + +#: src/pages/part/PartDetail.tsx:954 +msgid "Part parameters cannot be edited, as the part is locked" +msgstr "" + #: src/pages/part/PartDetail.tsx:956 #~ msgid "Count part stock" #~ msgstr "Count part stock" @@ -7755,42 +7849,46 @@ msgstr "" #~ msgid "Transfer part stock" #~ msgstr "Transfer part stock" -#: src/pages/part/PartDetail.tsx:1009 +#: src/pages/part/PartDetail.tsx:1024 #: src/tables/part/PartTestTemplateTable.tsx:112 #: src/tables/stock/StockItemTestResultTable.tsx:404 msgid "Required" msgstr "" -#: src/pages/part/PartDetail.tsx:1058 +#: src/pages/part/PartDetail.tsx:1042 +msgid "Deficit" +msgstr "" + +#: src/pages/part/PartDetail.tsx:1079 #: src/tables/part/PartTable.tsx:396 #: src/tables/part/PartTable.tsx:449 msgid "Add Part" msgstr "" -#: src/pages/part/PartDetail.tsx:1072 +#: src/pages/part/PartDetail.tsx:1093 msgid "Delete Part" msgstr "" -#: src/pages/part/PartDetail.tsx:1081 +#: src/pages/part/PartDetail.tsx:1102 msgid "Deleting this part cannot be reversed" msgstr "" -#: src/pages/part/PartDetail.tsx:1143 +#: src/pages/part/PartDetail.tsx:1164 #: src/pages/stock/StockDetail.tsx:883 msgid "Order" msgstr "" -#: src/pages/part/PartDetail.tsx:1144 +#: src/pages/part/PartDetail.tsx:1165 #: src/pages/stock/StockDetail.tsx:884 -#: src/tables/build/BuildLineTable.tsx:761 +#: src/tables/build/BuildLineTable.tsx:768 msgid "Order Stock" msgstr "" -#: src/pages/part/PartDetail.tsx:1156 +#: src/pages/part/PartDetail.tsx:1177 msgid "Search by serial number" msgstr "" -#: src/pages/part/PartDetail.tsx:1164 +#: src/pages/part/PartDetail.tsx:1185 #: src/tables/part/PartTable.tsx:506 msgid "Part Actions" msgstr "" @@ -8039,7 +8137,7 @@ msgstr "" #: src/pages/part/pricing/PricingOverviewPanel.tsx:288 #: src/pages/stock/StockDetail.tsx:426 -#: src/tables/part/PartParameterTable.tsx:121 +#: src/tables/general/ParameterTable.tsx:101 #: src/tables/stock/StockItemTable.tsx:300 msgid "Last Updated" msgstr "" @@ -8107,17 +8205,17 @@ msgstr "" msgid "Variant Part" msgstr "" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:89 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:90 msgid "Edit Purchase Order" msgstr "" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:125 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:126 #: src/tables/purchasing/PurchaseOrderTable.tsx:154 #: src/tables/purchasing/PurchaseOrderTable.tsx:167 msgid "Add Purchase Order" msgstr "" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:147 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:148 msgid "Supplier Reference" msgstr "" @@ -8127,20 +8225,20 @@ msgstr "" #~ msgid "Order Currency," #~ msgstr "Order Currency," -#: src/pages/purchasing/PurchaseOrderDetail.tsx:187 -#: src/pages/sales/ReturnOrderDetail.tsx:160 -#: src/pages/sales/SalesOrderDetail.tsx:144 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:188 +#: src/pages/sales/ReturnOrderDetail.tsx:161 +#: src/pages/sales/SalesOrderDetail.tsx:145 msgid "Completed Line Items" msgstr "" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:196 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:197 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:272 msgid "Destination" msgstr "" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:202 -#: src/pages/sales/ReturnOrderDetail.tsx:167 -#: src/pages/sales/SalesOrderDetail.tsx:161 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:203 +#: src/pages/sales/ReturnOrderDetail.tsx:168 +#: src/pages/sales/SalesOrderDetail.tsx:162 msgid "Order Currency" msgstr "" @@ -8150,97 +8248,97 @@ msgstr "" #~ msgid "Created On" #~ msgstr "Created On" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:208 -#: src/pages/sales/ReturnOrderDetail.tsx:174 -#: src/pages/sales/SalesOrderDetail.tsx:167 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:209 +#: src/pages/sales/ReturnOrderDetail.tsx:175 +#: src/pages/sales/SalesOrderDetail.tsx:168 msgid "Total Cost" msgstr "" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:237 -#: src/pages/sales/ReturnOrderDetail.tsx:215 -#: src/pages/sales/SalesOrderDetail.tsx:208 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:238 +#: src/pages/sales/ReturnOrderDetail.tsx:216 +#: src/pages/sales/SalesOrderDetail.tsx:209 msgid "Contact Email" msgstr "" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:245 -#: src/pages/sales/ReturnOrderDetail.tsx:223 -#: src/pages/sales/SalesOrderDetail.tsx:216 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:246 +#: src/pages/sales/ReturnOrderDetail.tsx:224 +#: src/pages/sales/SalesOrderDetail.tsx:217 msgid "Contact Phone" msgstr "" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:278 -#: src/pages/sales/ReturnOrderDetail.tsx:257 -#: src/pages/sales/SalesOrderDetail.tsx:249 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:279 +#: src/pages/sales/ReturnOrderDetail.tsx:258 +#: src/pages/sales/SalesOrderDetail.tsx:250 msgid "Issue Date" msgstr "" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:303 -#: src/pages/sales/ReturnOrderDetail.tsx:281 -#: src/pages/sales/SalesOrderDetail.tsx:272 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:304 +#: src/pages/sales/ReturnOrderDetail.tsx:282 +#: src/pages/sales/SalesOrderDetail.tsx:273 #: src/tables/ColumnRenderers.tsx:510 #: src/tables/build/BuildOrderTable.tsx:137 #: src/tables/part/PartPurchaseOrdersTable.tsx:106 msgid "Completion Date" msgstr "" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:333 -#: src/pages/sales/ReturnOrderDetail.tsx:311 -#: src/pages/sales/SalesOrderDetail.tsx:349 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:334 +#: src/pages/sales/ReturnOrderDetail.tsx:312 +#: src/pages/sales/SalesOrderDetail.tsx:350 msgid "Order Details" msgstr "" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:339 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:348 -#: src/pages/sales/ReturnOrderDetail.tsx:153 -#: src/pages/sales/ReturnOrderDetail.tsx:317 -#: src/pages/sales/ReturnOrderDetail.tsx:326 -#: src/pages/sales/SalesOrderDetail.tsx:355 -#: src/pages/sales/SalesOrderDetail.tsx:364 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:340 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:349 +#: src/pages/sales/ReturnOrderDetail.tsx:154 +#: src/pages/sales/ReturnOrderDetail.tsx:318 +#: src/pages/sales/ReturnOrderDetail.tsx:327 +#: src/pages/sales/SalesOrderDetail.tsx:356 +#: src/pages/sales/SalesOrderDetail.tsx:365 msgid "Line Items" msgstr "" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:363 -#: src/pages/sales/ReturnOrderDetail.tsx:341 -#: src/pages/sales/SalesOrderDetail.tsx:378 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:364 +#: src/pages/sales/ReturnOrderDetail.tsx:342 +#: src/pages/sales/SalesOrderDetail.tsx:379 msgid "Extra Line Items" msgstr "" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:405 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:410 msgid "Issue Purchase Order" msgstr "" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:413 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:418 msgid "Cancel Purchase Order" msgstr "" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:421 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:426 msgid "Hold Purchase Order" msgstr "" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:429 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:434 msgid "Complete Purchase Order" msgstr "" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:485 -#: src/pages/sales/ReturnOrderDetail.tsx:496 -#: src/pages/sales/SalesOrderDetail.tsx:549 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:490 +#: src/pages/sales/ReturnOrderDetail.tsx:501 +#: src/pages/sales/SalesOrderDetail.tsx:554 msgid "Order Actions" msgstr "" -#: src/pages/sales/ReturnOrderDetail.tsx:114 -#: src/pages/sales/SalesOrderDetail.tsx:104 -#: src/pages/sales/SalesOrderShipmentDetail.tsx:134 +#: src/pages/sales/ReturnOrderDetail.tsx:115 +#: src/pages/sales/SalesOrderDetail.tsx:105 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:132 #: src/tables/sales/SalesOrderTable.tsx:141 msgid "Customer Reference" msgstr "" -#: src/pages/sales/ReturnOrderDetail.tsx:195 +#: src/pages/sales/ReturnOrderDetail.tsx:196 msgid "Return Address" msgstr "" -#: src/pages/sales/ReturnOrderDetail.tsx:201 -#: src/pages/sales/SalesOrderDetail.tsx:194 -#: src/pages/sales/SalesOrderShipmentDetail.tsx:181 +#: src/pages/sales/ReturnOrderDetail.tsx:202 +#: src/pages/sales/SalesOrderDetail.tsx:195 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:179 msgid "Not specified" msgstr "" @@ -8248,117 +8346,117 @@ msgstr "" #~ msgid "Order canceled" #~ msgstr "Order canceled" -#: src/pages/sales/ReturnOrderDetail.tsx:389 +#: src/pages/sales/ReturnOrderDetail.tsx:394 msgid "Edit Return Order" msgstr "" -#: src/pages/sales/ReturnOrderDetail.tsx:407 +#: src/pages/sales/ReturnOrderDetail.tsx:412 #: src/tables/sales/ReturnOrderTable.tsx:154 #: src/tables/sales/ReturnOrderTable.tsx:167 msgid "Add Return Order" msgstr "" -#: src/pages/sales/ReturnOrderDetail.tsx:416 +#: src/pages/sales/ReturnOrderDetail.tsx:421 msgid "Issue Return Order" msgstr "" -#: src/pages/sales/ReturnOrderDetail.tsx:424 +#: src/pages/sales/ReturnOrderDetail.tsx:429 msgid "Cancel Return Order" msgstr "" -#: src/pages/sales/ReturnOrderDetail.tsx:432 +#: src/pages/sales/ReturnOrderDetail.tsx:437 msgid "Hold Return Order" msgstr "" -#: src/pages/sales/ReturnOrderDetail.tsx:440 +#: src/pages/sales/ReturnOrderDetail.tsx:445 msgid "Complete Return Order" msgstr "" -#: src/pages/sales/SalesOrderDetail.tsx:153 +#: src/pages/sales/SalesOrderDetail.tsx:154 msgid "Completed Shipments" msgstr "" -#: src/pages/sales/SalesOrderDetail.tsx:188 -#: src/pages/sales/SalesOrderShipmentDetail.tsx:170 +#: src/pages/sales/SalesOrderDetail.tsx:189 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:168 msgid "Shipping Address" msgstr "" -#: src/pages/sales/SalesOrderDetail.tsx:316 +#: src/pages/sales/SalesOrderDetail.tsx:317 msgid "Edit Sales Order" msgstr "" -#: src/pages/sales/SalesOrderDetail.tsx:338 +#: src/pages/sales/SalesOrderDetail.tsx:339 #: src/tables/sales/SalesOrderTable.tsx:108 #: src/tables/sales/SalesOrderTable.tsx:121 msgid "Add Sales Order" msgstr "" -#: src/pages/sales/SalesOrderDetail.tsx:396 +#: src/pages/sales/SalesOrderDetail.tsx:397 #: src/tables/sales/SalesOrderTable.tsx:147 msgid "Shipments" msgstr "" -#: src/pages/sales/SalesOrderDetail.tsx:443 +#: src/pages/sales/SalesOrderDetail.tsx:448 msgid "Issue Sales Order" msgstr "" -#: src/pages/sales/SalesOrderDetail.tsx:451 +#: src/pages/sales/SalesOrderDetail.tsx:456 msgid "Cancel Sales Order" msgstr "" -#: src/pages/sales/SalesOrderDetail.tsx:459 +#: src/pages/sales/SalesOrderDetail.tsx:464 msgid "Hold Sales Order" msgstr "" -#: src/pages/sales/SalesOrderDetail.tsx:467 +#: src/pages/sales/SalesOrderDetail.tsx:472 msgid "Ship Sales Order" msgstr "" -#: src/pages/sales/SalesOrderDetail.tsx:469 +#: src/pages/sales/SalesOrderDetail.tsx:474 msgid "Ship this order?" msgstr "" -#: src/pages/sales/SalesOrderDetail.tsx:470 +#: src/pages/sales/SalesOrderDetail.tsx:475 msgid "Order shipped" msgstr "" -#: src/pages/sales/SalesOrderDetail.tsx:478 +#: src/pages/sales/SalesOrderDetail.tsx:483 msgid "Complete Sales Order" msgstr "" -#: src/pages/sales/SalesOrderDetail.tsx:523 +#: src/pages/sales/SalesOrderDetail.tsx:528 msgid "Ship Order" msgstr "" -#: src/pages/sales/SalesOrderShipmentDetail.tsx:142 -#: src/tables/sales/SalesOrderShipmentTable.tsx:135 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:140 +#: src/tables/sales/SalesOrderShipmentTable.tsx:156 msgid "Shipment Reference" msgstr "" -#: src/pages/sales/SalesOrderShipmentDetail.tsx:148 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:146 msgid "Tracking Number" msgstr "" -#: src/pages/sales/SalesOrderShipmentDetail.tsx:156 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:154 msgid "Invoice Number" msgstr "" -#: src/pages/sales/SalesOrderShipmentDetail.tsx:191 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:189 msgid "Allocated Items" msgstr "" -#: src/pages/sales/SalesOrderShipmentDetail.tsx:196 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:194 msgid "Checked By" msgstr "" -#: src/pages/sales/SalesOrderShipmentDetail.tsx:202 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:200 msgid "Not checked" msgstr "" -#: src/pages/sales/SalesOrderShipmentDetail.tsx:208 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:206 #: src/tables/ColumnRenderers.tsx:518 #: src/tables/sales/SalesOrderAllocationTable.tsx:182 -#: src/tables/sales/SalesOrderShipmentTable.tsx:168 +#: src/tables/sales/SalesOrderShipmentTable.tsx:189 msgid "Shipment Date" msgstr "" @@ -8366,108 +8464,82 @@ msgstr "" #~ msgid "Assigned Items" #~ msgstr "Assigned Items" -#: src/pages/sales/SalesOrderShipmentDetail.tsx:216 -#: src/tables/sales/SalesOrderShipmentTable.tsx:172 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:214 +#: src/tables/sales/SalesOrderShipmentTable.tsx:193 msgid "Delivery Date" msgstr "" -#: src/pages/sales/SalesOrderShipmentDetail.tsx:255 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:253 msgid "Shipment Details" msgstr "" -#: src/pages/sales/SalesOrderShipmentDetail.tsx:294 -#: src/pages/sales/SalesOrderShipmentDetail.tsx:438 -#: src/tables/sales/SalesOrderShipmentTable.tsx:90 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:292 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:406 +#: src/tables/sales/SalesOrderShipmentTable.tsx:97 msgid "Edit Shipment" msgstr "" -#: src/pages/sales/SalesOrderShipmentDetail.tsx:301 -#: src/pages/sales/SalesOrderShipmentDetail.tsx:457 -#: src/tables/sales/SalesOrderShipmentTable.tsx:82 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:299 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:425 +#: src/tables/sales/SalesOrderShipmentTable.tsx:89 msgid "Cancel Shipment" msgstr "" -#: src/pages/sales/SalesOrderShipmentDetail.tsx:314 -#: src/tables/sales/SalesOrderShipmentTable.tsx:98 -#: src/tables/sales/SalesOrderShipmentTable.tsx:193 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:312 +#: src/tables/sales/SalesOrderShipmentTable.tsx:119 +#: src/tables/sales/SalesOrderShipmentTable.tsx:238 msgid "Complete Shipment" msgstr "" -#: src/pages/sales/SalesOrderShipmentDetail.tsx:326 -#: src/pages/sales/SalesOrderShipmentDetail.tsx:328 -msgid "Check Shipment" -msgstr "" - -#: src/pages/sales/SalesOrderShipmentDetail.tsx:329 -msgid "Marking the shipment as checked indicates that you have verified that all items included in this shipment are correct" -msgstr "" - #: src/pages/sales/SalesOrderShipmentDetail.tsx:339 -msgid "Shipment marked as checked" -msgstr "" - -#: src/pages/sales/SalesOrderShipmentDetail.tsx:346 -#: src/pages/sales/SalesOrderShipmentDetail.tsx:348 -msgid "Uncheck Shipment" -msgstr "" - -#: src/pages/sales/SalesOrderShipmentDetail.tsx:349 -msgid "Marking the shipment as unchecked indicates that the shipment requires further verification" -msgstr "" - -#: src/pages/sales/SalesOrderShipmentDetail.tsx:359 -msgid "Shipment marked as unchecked" -msgstr "" - -#: src/pages/sales/SalesOrderShipmentDetail.tsx:371 #: src/tables/part/PartPurchaseOrdersTable.tsx:122 msgid "Pending" msgstr "" -#: src/pages/sales/SalesOrderShipmentDetail.tsx:377 -#: src/tables/sales/SalesOrderShipmentTable.tsx:147 -#: src/tables/sales/SalesOrderShipmentTable.tsx:254 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:345 +#: src/tables/sales/SalesOrderShipmentTable.tsx:168 +#: src/tables/sales/SalesOrderShipmentTable.tsx:299 msgid "Checked" msgstr "" -#: src/pages/sales/SalesOrderShipmentDetail.tsx:383 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:351 msgid "Not Checked" msgstr "" -#: src/pages/sales/SalesOrderShipmentDetail.tsx:389 -#: src/tables/sales/SalesOrderShipmentTable.tsx:154 -#: src/tables/sales/SalesOrderShipmentTable.tsx:259 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:357 +#: src/tables/sales/SalesOrderShipmentTable.tsx:175 +#: src/tables/sales/SalesOrderShipmentTable.tsx:304 msgid "Shipped" msgstr "" -#: src/pages/sales/SalesOrderShipmentDetail.tsx:395 -#: src/tables/sales/SalesOrderShipmentTable.tsx:161 -#: src/tables/sales/SalesOrderShipmentTable.tsx:264 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:363 +#: src/tables/sales/SalesOrderShipmentTable.tsx:182 +#: src/tables/sales/SalesOrderShipmentTable.tsx:309 #: src/tables/settings/EmailTable.tsx:31 msgid "Delivered" msgstr "" -#: src/pages/sales/SalesOrderShipmentDetail.tsx:410 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:378 msgid "Send Shipment" msgstr "" -#: src/pages/sales/SalesOrderShipmentDetail.tsx:433 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:401 msgid "Shipment Actions" msgstr "" -#: src/pages/sales/SalesOrderShipmentDetail.tsx:442 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:410 msgid "Check" msgstr "" -#: src/pages/sales/SalesOrderShipmentDetail.tsx:443 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:411 msgid "Mark shipment as checked" msgstr "" -#: src/pages/sales/SalesOrderShipmentDetail.tsx:449 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:417 msgid "Uncheck" msgstr "" -#: src/pages/sales/SalesOrderShipmentDetail.tsx:450 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:418 msgid "Mark shipment as unchecked" msgstr "" @@ -8775,13 +8847,6 @@ msgstr "" msgid "Part is not active" msgstr "Część nie jest aktywna" -#: src/tables/ColumnRenderers.tsx:73 -#: src/tables/bom/BomTable.tsx:657 -#: src/tables/part/PartParameterTable.tsx:227 -#: src/tables/part/PartTestTemplateTable.tsx:258 -msgid "Part is Locked" -msgstr "" - #: src/tables/ColumnRenderers.tsx:78 msgid "You are subscribed to notifications for this part" msgstr "" @@ -9219,13 +9284,13 @@ msgstr "" #~ msgstr "Show asssmbled items" #: src/tables/bom/BomTable.tsx:315 -#: src/tables/build/BuildLineTable.tsx:276 +#: src/tables/build/BuildLineTable.tsx:277 #: src/tables/part/PartTable.tsx:145 msgid "External stock" msgstr "" #: src/tables/bom/BomTable.tsx:323 -#: src/tables/build/BuildLineTable.tsx:239 +#: src/tables/build/BuildLineTable.tsx:240 msgid "Includes substitute stock" msgstr "" @@ -9234,7 +9299,7 @@ msgstr "" #~ msgstr "Edit Bom Item" #: src/tables/bom/BomTable.tsx:332 -#: src/tables/build/BuildLineTable.tsx:249 +#: src/tables/build/BuildLineTable.tsx:250 #: src/tables/sales/SalesOrderLineItemTable.tsx:166 msgid "Includes variant stock" msgstr "" @@ -9272,8 +9337,8 @@ msgid "Stock Information" msgstr "" #: src/tables/bom/BomTable.tsx:399 -#: src/tables/build/BuildLineTable.tsx:496 -#: src/tables/build/BuildLineTable.tsx:537 +#: src/tables/build/BuildLineTable.tsx:497 +#: src/tables/build/BuildLineTable.tsx:538 msgid "Consumable item" msgstr "" @@ -9282,7 +9347,7 @@ msgid "No available stock" msgstr "" #: src/tables/bom/BomTable.tsx:420 -#: src/tables/build/BuildLineTable.tsx:213 +#: src/tables/build/BuildLineTable.tsx:214 msgid "Show testable items" msgstr "" @@ -9291,7 +9356,7 @@ msgid "Show trackable items" msgstr "" #: src/tables/bom/BomTable.tsx:430 -#: src/tables/build/BuildLineTable.tsx:208 +#: src/tables/build/BuildLineTable.tsx:209 msgid "Show assembled items" msgstr "" @@ -9335,7 +9400,7 @@ msgstr "" #: src/tables/bom/BomTable.tsx:464 #: src/tables/bom/UsedInTable.tsx:85 -#: src/tables/build/BuildLineTable.tsx:202 +#: src/tables/build/BuildLineTable.tsx:203 msgid "Optional" msgstr "" @@ -9345,7 +9410,7 @@ msgid "Show optional items" msgstr "" #: src/tables/bom/BomTable.tsx:469 -#: src/tables/build/BuildLineTable.tsx:197 +#: src/tables/build/BuildLineTable.tsx:198 msgid "Consumable" msgstr "" @@ -9420,6 +9485,7 @@ msgid "Add a single BOM item" msgstr "" #: src/tables/bom/BomTable.tsx:637 +#: src/tables/general/ParameterTable.tsx:206 #: src/tables/part/PartTable.tsx:546 msgid "Import from File" msgstr "" @@ -9433,8 +9499,8 @@ msgid "Bill of materials cannot be edited, as the part is locked" msgstr "" #: src/tables/bom/UsedInTable.tsx:34 -#: src/tables/build/BuildLineTable.tsx:207 -#: src/tables/part/ParametricPartTable.tsx:364 +#: src/tables/build/BuildLineTable.tsx:208 +#: src/tables/part/ParametricPartTable.tsx:29 #: src/tables/part/PartBuildAllocationsTable.tsx:60 #: src/tables/part/PartTable.tsx:209 #: src/tables/stock/StockItemTable.tsx:333 @@ -9455,11 +9521,11 @@ msgstr "" msgid "Show trackable assemblies" msgstr "" -#: src/tables/build/BuildAllocatedStockTable.tsx:67 +#: src/tables/build/BuildAllocatedStockTable.tsx:64 msgid "Allocated to Output" msgstr "" -#: src/tables/build/BuildAllocatedStockTable.tsx:68 +#: src/tables/build/BuildAllocatedStockTable.tsx:65 msgid "Show items allocated to a build output" msgstr "" @@ -9472,50 +9538,68 @@ msgstr "" #~ msgid "Include orders for part variants" #~ msgstr "Include orders for part variants" -#: src/tables/build/BuildAllocatedStockTable.tsx:97 +#: src/tables/build/BuildAllocatedStockTable.tsx:94 #: src/tables/part/PartBuildAllocationsTable.tsx:84 #: src/tables/part/PartPurchaseOrdersTable.tsx:132 #: src/tables/part/PartSalesAllocationsTable.tsx:69 #: src/tables/sales/SalesOrderAllocationTable.tsx:122 -#: src/tables/sales/SalesOrderShipmentTable.tsx:130 +#: src/tables/sales/SalesOrderShipmentTable.tsx:151 msgid "Order Status" msgstr "" +#: src/tables/build/BuildAllocatedStockTable.tsx:164 +#: src/tables/build/BuildLineTable.tsx:651 +msgid "Edit Stock Allocation" +msgstr "" + #: src/tables/build/BuildAllocatedStockTable.tsx:164 #~ msgid "Edit Build Item" #~ msgstr "Edit Build Item" -#: src/tables/build/BuildAllocatedStockTable.tsx:167 -#: src/tables/build/BuildLineTable.tsx:650 -msgid "Edit Stock Allocation" -msgstr "" - #: src/tables/build/BuildAllocatedStockTable.tsx:174 #~ msgid "Delete Build Item" #~ msgstr "Delete Build Item" -#: src/tables/build/BuildAllocatedStockTable.tsx:180 -#: src/tables/build/BuildLineTable.tsx:663 -msgid "Delete Stock Allocation" +#: src/tables/build/BuildAllocatedStockTable.tsx:177 +#: src/tables/build/BuildLineTable.tsx:664 +#: src/tables/sales/SalesOrderAllocationTable.tsx:218 +msgid "Remove Allocated Stock" msgstr "" -#: src/tables/build/BuildAllocatedStockTable.tsx:239 +#: src/tables/build/BuildAllocatedStockTable.tsx:180 +#: src/tables/build/BuildLineTable.tsx:663 +#~ msgid "Delete Stock Allocation" +#~ msgstr "Delete Stock Allocation" + +#: src/tables/build/BuildAllocatedStockTable.tsx:182 +#: src/tables/build/BuildLineTable.tsx:669 +#: src/tables/sales/SalesOrderAllocationTable.tsx:221 +msgid "Are you sure you want to remove this allocated stock from the order?" +msgstr "" + +#: src/tables/build/BuildAllocatedStockTable.tsx:242 msgid "Consume" msgstr "" +#: src/tables/build/BuildAllocatedStockTable.tsx:259 +#: src/tables/build/BuildLineTable.tsx:112 +#: src/tables/sales/SalesOrderAllocationTable.tsx:248 +msgid "Remove allocated stock" +msgstr "" + #: src/tables/build/BuildLineTable.tsx:59 #~ msgid "Show lines with available stock" #~ msgstr "Show lines with available stock" -#: src/tables/build/BuildLineTable.tsx:120 +#: src/tables/build/BuildLineTable.tsx:121 msgid "View Stock Item" msgstr "" -#: src/tables/build/BuildLineTable.tsx:183 +#: src/tables/build/BuildLineTable.tsx:184 msgid "Show fully allocated lines" msgstr "" -#: src/tables/build/BuildLineTable.tsx:188 +#: src/tables/build/BuildLineTable.tsx:189 msgid "Show fully consumed lines" msgstr "" @@ -9523,124 +9607,124 @@ msgstr "" #~ msgid "Show allocated lines" #~ msgstr "Show allocated lines" -#: src/tables/build/BuildLineTable.tsx:193 +#: src/tables/build/BuildLineTable.tsx:194 msgid "Show items with sufficient available stock" msgstr "" -#: src/tables/build/BuildLineTable.tsx:198 +#: src/tables/build/BuildLineTable.tsx:199 msgid "Show consumable lines" msgstr "" -#: src/tables/build/BuildLineTable.tsx:203 +#: src/tables/build/BuildLineTable.tsx:204 msgid "Show optional lines" msgstr "" -#: src/tables/build/BuildLineTable.tsx:212 +#: src/tables/build/BuildLineTable.tsx:213 #: src/tables/part/PartTable.tsx:233 msgid "Testable" msgstr "" -#: src/tables/build/BuildLineTable.tsx:217 +#: src/tables/build/BuildLineTable.tsx:218 #: src/tables/stock/StockItemTable.tsx:388 msgid "Tracked" msgstr "" -#: src/tables/build/BuildLineTable.tsx:218 +#: src/tables/build/BuildLineTable.tsx:219 msgid "Show tracked lines" msgstr "" -#: src/tables/build/BuildLineTable.tsx:223 +#: src/tables/build/BuildLineTable.tsx:224 msgid "Show items with stock on order" msgstr "" -#: src/tables/build/BuildLineTable.tsx:258 +#: src/tables/build/BuildLineTable.tsx:259 #: src/tables/sales/SalesOrderLineItemTable.tsx:172 msgid "In production" msgstr "" -#: src/tables/build/BuildLineTable.tsx:286 +#: src/tables/build/BuildLineTable.tsx:287 msgid "Insufficient stock" msgstr "" -#: src/tables/build/BuildLineTable.tsx:302 +#: src/tables/build/BuildLineTable.tsx:303 #: src/tables/sales/SalesOrderLineItemTable.tsx:160 #: src/tables/stock/StockItemTable.tsx:191 msgid "No stock available" msgstr "" -#: src/tables/build/BuildLineTable.tsx:375 +#: src/tables/build/BuildLineTable.tsx:376 msgid "Gets Inherited" msgstr "" -#: src/tables/build/BuildLineTable.tsx:388 +#: src/tables/build/BuildLineTable.tsx:389 msgid "Unit Quantity" msgstr "" -#: src/tables/build/BuildLineTable.tsx:415 +#: src/tables/build/BuildLineTable.tsx:416 msgid "Setup Quantity" msgstr "" -#: src/tables/build/BuildLineTable.tsx:424 +#: src/tables/build/BuildLineTable.tsx:425 msgid "Attrition" msgstr "" -#: src/tables/build/BuildLineTable.tsx:432 +#: src/tables/build/BuildLineTable.tsx:433 msgid "Rounding Multiple" msgstr "" -#: src/tables/build/BuildLineTable.tsx:441 +#: src/tables/build/BuildLineTable.tsx:442 msgid "BOM Information" msgstr "" -#: src/tables/build/BuildLineTable.tsx:515 +#: src/tables/build/BuildLineTable.tsx:516 #: src/tables/part/PartBuildAllocationsTable.tsx:102 msgid "Fully allocated" msgstr "" -#: src/tables/build/BuildLineTable.tsx:563 +#: src/tables/build/BuildLineTable.tsx:564 #: src/tables/sales/SalesOrderLineItemTable.tsx:311 msgid "Create Build Order" msgstr "" -#: src/tables/build/BuildLineTable.tsx:592 +#: src/tables/build/BuildLineTable.tsx:593 msgid "Auto allocation in progress" msgstr "" -#: src/tables/build/BuildLineTable.tsx:595 -#: src/tables/build/BuildLineTable.tsx:802 +#: src/tables/build/BuildLineTable.tsx:596 +#: src/tables/build/BuildLineTable.tsx:809 msgid "Auto Allocate Stock" msgstr "" -#: src/tables/build/BuildLineTable.tsx:596 +#: src/tables/build/BuildLineTable.tsx:597 msgid "Automatically allocate stock to this build according to the selected options" msgstr "" -#: src/tables/build/BuildLineTable.tsx:616 -#: src/tables/build/BuildLineTable.tsx:630 -#: src/tables/build/BuildLineTable.tsx:751 -#: src/tables/build/BuildLineTable.tsx:852 +#: src/tables/build/BuildLineTable.tsx:617 +#: src/tables/build/BuildLineTable.tsx:631 +#: src/tables/build/BuildLineTable.tsx:758 +#: src/tables/build/BuildLineTable.tsx:859 #: src/tables/build/BuildOutputTable.tsx:355 #: src/tables/build/BuildOutputTable.tsx:360 msgid "Deallocate Stock" msgstr "" -#: src/tables/build/BuildLineTable.tsx:632 +#: src/tables/build/BuildLineTable.tsx:633 msgid "Deallocate all untracked stock for this build order" msgstr "" -#: src/tables/build/BuildLineTable.tsx:634 +#: src/tables/build/BuildLineTable.tsx:635 msgid "Deallocate stock from the selected line item" msgstr "" -#: src/tables/build/BuildLineTable.tsx:638 +#: src/tables/build/BuildLineTable.tsx:639 msgid "Stock has been deallocated" msgstr "" -#: src/tables/build/BuildLineTable.tsx:771 +#: src/tables/build/BuildLineTable.tsx:778 msgid "Build Stock" msgstr "" -#: src/tables/build/BuildLineTable.tsx:784 +#: src/tables/build/BuildLineTable.tsx:791 #: src/tables/sales/SalesOrderLineItemTable.tsx:487 msgid "View Part" msgstr "" @@ -9739,7 +9823,7 @@ msgid "Serialize Build Output" msgstr "" #: src/tables/build/BuildOutputTable.tsx:405 -#: src/tables/part/PartTestResultTable.tsx:310 +#: src/tables/part/PartTestResultTable.tsx:318 #: src/tables/stock/StockItemTable.tsx:328 msgid "Filter by stock status" msgstr "" @@ -9964,8 +10048,8 @@ msgid "View Item" msgstr "" #: src/tables/general/ExtraLineItemTable.tsx:95 -#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:299 -#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:403 +#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:300 +#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:405 #: src/tables/sales/ReturnOrderLineItemTable.tsx:83 #: src/tables/sales/ReturnOrderLineItemTable.tsx:187 #: src/tables/sales/SalesOrderLineItemTable.tsx:252 @@ -9974,14 +10058,14 @@ msgid "Add Line Item" msgstr "" #: src/tables/general/ExtraLineItemTable.tsx:108 -#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:320 +#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:322 #: src/tables/sales/ReturnOrderLineItemTable.tsx:96 #: src/tables/sales/SalesOrderLineItemTable.tsx:271 msgid "Edit Line Item" msgstr "" #: src/tables/general/ExtraLineItemTable.tsx:117 -#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:329 +#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:331 #: src/tables/sales/ReturnOrderLineItemTable.tsx:105 #: src/tables/sales/SalesOrderLineItemTable.tsx:280 msgid "Delete Line Item" @@ -9991,6 +10075,137 @@ msgstr "" msgid "Add Extra Line Item" msgstr "" +#: src/tables/general/ParameterTable.tsx:88 +msgid "Internal Units" +msgstr "" + +#: src/tables/general/ParameterTable.tsx:108 +#: src/tables/general/ParameterTable.tsx:123 +msgid "Updated By" +msgstr "" + +#: src/tables/general/ParameterTable.tsx:118 +msgid "Show parameters for enabled templates" +msgstr "" + +#: src/tables/general/ParameterTable.tsx:124 +msgid "Filter by user who last updated the parameter" +msgstr "" + +#: src/tables/general/ParameterTable.tsx:154 +msgid "Import Parameters" +msgstr "" + +#: src/tables/general/ParameterTable.tsx:164 +#: src/tables/general/ParametricDataTable.tsx:261 +#: src/tables/general/ParametricDataTable.tsx:392 +msgid "Add Parameter" +msgstr "" + +#: src/tables/general/ParameterTable.tsx:175 +#: src/tables/general/ParameterTable.tsx:222 +#: src/tables/general/ParametricDataTable.tsx:285 +msgid "Edit Parameter" +msgstr "" + +#: src/tables/general/ParameterTable.tsx:183 +#: src/tables/general/ParameterTable.tsx:230 +msgid "Delete Parameter" +msgstr "" + +#: src/tables/general/ParameterTable.tsx:191 +msgid "Add Parameters" +msgstr "" + +#: src/tables/general/ParameterTable.tsx:197 +msgid "Create Parameter" +msgstr "" + +#: src/tables/general/ParameterTable.tsx:199 +msgid "Create a new parameter" +msgstr "" + +#: src/tables/general/ParameterTable.tsx:208 +msgid "Import parameters from a file" +msgstr "" + +#: src/tables/general/ParameterTemplateTable.tsx:48 +#: src/tables/general/ParameterTemplateTable.tsx:197 +msgid "Add Parameter Template" +msgstr "" + +#: src/tables/general/ParameterTemplateTable.tsx:64 +msgid "Duplicate Parameter Template" +msgstr "" + +#: src/tables/general/ParameterTemplateTable.tsx:78 +msgid "Delete Parameter Template" +msgstr "" + +#: src/tables/general/ParameterTemplateTable.tsx:85 +msgid "Edit Parameter Template" +msgstr "" + +#: src/tables/general/ParameterTemplateTable.tsx:138 +msgid "Checkbox" +msgstr "" + +#: src/tables/general/ParameterTemplateTable.tsx:139 +msgid "Show checkbox templates" +msgstr "" + +#: src/tables/general/ParameterTemplateTable.tsx:143 +msgid "Has choices" +msgstr "" + +#: src/tables/general/ParameterTemplateTable.tsx:144 +msgid "Show templates with choices" +msgstr "" + +#: src/tables/general/ParameterTemplateTable.tsx:148 +#: src/tables/part/PartTable.tsx:245 +msgid "Has Units" +msgstr "" + +#: src/tables/general/ParameterTemplateTable.tsx:149 +msgid "Show templates with units" +msgstr "" + +#: src/tables/general/ParameterTemplateTable.tsx:154 +msgid "Show enabled templates" +msgstr "" + +#: src/tables/general/ParameterTemplateTable.tsx:158 +#: src/tables/settings/ImportSessionTable.tsx:111 +#: src/tables/settings/TemplateTable.tsx:368 +msgid "Model Type" +msgstr "" + +#: src/tables/general/ParameterTemplateTable.tsx:159 +msgid "Filter by model type" +msgstr "" + +#: src/tables/general/ParametricDataTable.tsx:79 +msgid "Click to edit" +msgstr "" + +#: src/tables/general/ParametricDataTableFilters.tsx:36 +msgid "True" +msgstr "" + +#: src/tables/general/ParametricDataTableFilters.tsx:37 +msgid "False" +msgstr "" + +#: src/tables/general/ParametricDataTableFilters.tsx:47 +#: src/tables/general/ParametricDataTableFilters.tsx:80 +msgid "Select a choice" +msgstr "" + +#: src/tables/general/ParametricDataTableFilters.tsx:100 +msgid "Enter a value" +msgstr "" + #: src/tables/machine/MachineListTable.tsx:133 msgid "Machine restarted" msgstr "" @@ -10071,7 +10286,7 @@ msgid "Initialized" msgstr "" #: src/tables/machine/MachineListTable.tsx:410 -#: src/tables/machine/MachineTypeTable.tsx:307 +#: src/tables/machine/MachineTypeTable.tsx:305 msgid "No errors reported" msgstr "" @@ -10132,15 +10347,15 @@ msgstr "" #~ msgid "Machine type information" #~ msgstr "Machine type information" -#: src/tables/machine/MachineTypeTable.tsx:128 +#: src/tables/machine/MachineTypeTable.tsx:126 msgid "Not Found" msgstr "" -#: src/tables/machine/MachineTypeTable.tsx:131 +#: src/tables/machine/MachineTypeTable.tsx:129 msgid "Machine type not found." msgstr "" -#: src/tables/machine/MachineTypeTable.tsx:141 +#: src/tables/machine/MachineTypeTable.tsx:139 msgid "Machine Type Information" msgstr "" @@ -10148,34 +10363,34 @@ msgstr "" #~ msgid "Available drivers" #~ msgstr "Available drivers" -#: src/tables/machine/MachineTypeTable.tsx:156 -#: src/tables/machine/MachineTypeTable.tsx:255 +#: src/tables/machine/MachineTypeTable.tsx:154 +#: src/tables/machine/MachineTypeTable.tsx:253 msgid "Slug" msgstr "" -#: src/tables/machine/MachineTypeTable.tsx:167 -#: src/tables/machine/MachineTypeTable.tsx:276 +#: src/tables/machine/MachineTypeTable.tsx:165 +#: src/tables/machine/MachineTypeTable.tsx:274 msgid "Provider plugin" msgstr "" -#: src/tables/machine/MachineTypeTable.tsx:179 -#: src/tables/machine/MachineTypeTable.tsx:288 +#: src/tables/machine/MachineTypeTable.tsx:177 +#: src/tables/machine/MachineTypeTable.tsx:286 msgid "Provider file" msgstr "" -#: src/tables/machine/MachineTypeTable.tsx:194 +#: src/tables/machine/MachineTypeTable.tsx:192 msgid "Available Drivers" msgstr "" -#: src/tables/machine/MachineTypeTable.tsx:234 +#: src/tables/machine/MachineTypeTable.tsx:232 msgid "Machine driver not found." msgstr "" -#: src/tables/machine/MachineTypeTable.tsx:242 +#: src/tables/machine/MachineTypeTable.tsx:240 msgid "Machine driver information" msgstr "" -#: src/tables/machine/MachineTypeTable.tsx:262 +#: src/tables/machine/MachineTypeTable.tsx:260 msgid "Machine type" msgstr "" @@ -10187,15 +10402,15 @@ msgstr "" #~ msgid "Machine driver detail" #~ msgstr "Machine driver detail" -#: src/tables/machine/MachineTypeTable.tsx:362 +#: src/tables/machine/MachineTypeTable.tsx:360 msgid "Builtin type" msgstr "" -#: src/tables/machine/MachineTypeTable.tsx:371 +#: src/tables/machine/MachineTypeTable.tsx:369 msgid "Machine Type Detail" msgstr "" -#: src/tables/machine/MachineTypeTable.tsx:381 +#: src/tables/machine/MachineTypeTable.tsx:379 msgid "Machine Driver Detail" msgstr "" @@ -10213,8 +10428,16 @@ msgstr "Powiadomienie" msgid "Message" msgstr "" -#: src/tables/part/ParametricPartTable.tsx:78 -msgid "Click to edit" +#: src/tables/part/ParametricPartTable.tsx:20 +msgid "Show active parts" +msgstr "" + +#: src/tables/part/ParametricPartTable.tsx:25 +msgid "Show locked parts" +msgstr "" + +#: src/tables/part/ParametricPartTable.tsx:30 +msgid "Show assembly parts" msgstr "" #: src/tables/part/ParametricPartTable.tsx:82 @@ -10222,43 +10445,14 @@ msgstr "" #~ msgstr "Edit parameter" #: src/tables/part/ParametricPartTable.tsx:244 -msgid "Add Part Parameter" -msgstr "" +#~ msgid "Add Part Parameter" +#~ msgstr "Add Part Parameter" #: src/tables/part/ParametricPartTable.tsx:258 #: src/tables/part/PartParameterTable.tsx:164 #: src/tables/part/PartParameterTable.tsx:187 -msgid "Edit Part Parameter" -msgstr "" - -#: src/tables/part/ParametricPartTable.tsx:355 -msgid "Show active parts" -msgstr "" - -#: src/tables/part/ParametricPartTable.tsx:360 -msgid "Show locked parts" -msgstr "" - -#: src/tables/part/ParametricPartTable.tsx:365 -msgid "Show assembly parts" -msgstr "" - -#: src/tables/part/ParametricPartTableFilters.tsx:36 -msgid "True" -msgstr "" - -#: src/tables/part/ParametricPartTableFilters.tsx:37 -msgid "False" -msgstr "" - -#: src/tables/part/ParametricPartTableFilters.tsx:47 -#: src/tables/part/ParametricPartTableFilters.tsx:80 -msgid "Select a choice" -msgstr "" - -#: src/tables/part/ParametricPartTableFilters.tsx:100 -msgid "Enter a value" -msgstr "" +#~ msgid "Edit Part Parameter" +#~ msgstr "Edit Part Parameter" #: src/tables/part/PartBuildAllocationsTable.tsx:64 msgid "Assembly IPN" @@ -10273,7 +10467,7 @@ msgid "Required Stock" msgstr "" #: src/tables/part/PartBuildAllocationsTable.tsx:124 -#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:381 +#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:383 msgid "View Build Order" msgstr "" @@ -10332,85 +10526,22 @@ msgstr "" msgid "Delete Category Parameter" msgstr "" -#: src/tables/part/PartCategoryTemplateTable.tsx:87 -msgid "Parameter Template" -msgstr "" - #: src/tables/part/PartCategoryTemplateTable.tsx:93 #~ msgid "[{0}]" #~ msgstr "[{0}]" -#: src/tables/part/PartParameterTable.tsx:108 -msgid "Internal Units" -msgstr "" - -#: src/tables/part/PartParameterTable.tsx:128 -#: src/tables/part/PartParameterTable.tsx:138 -msgid "Updated By" -msgstr "" - -#: src/tables/part/PartParameterTable.tsx:139 -msgid "Filter by user who last updated the parameter" -msgstr "" - #: src/tables/part/PartParameterTable.tsx:148 -msgid "New Part Parameter" -msgstr "" +#~ msgid "New Part Parameter" +#~ msgstr "New Part Parameter" #: src/tables/part/PartParameterTable.tsx:173 #: src/tables/part/PartParameterTable.tsx:195 -msgid "Delete Part Parameter" -msgstr "" +#~ msgid "Delete Part Parameter" +#~ msgstr "Delete Part Parameter" #: src/tables/part/PartParameterTable.tsx:213 -msgid "Add parameter" -msgstr "" - -#: src/tables/part/PartParameterTable.tsx:232 -msgid "Part parameters cannot be edited, as the part is locked" -msgstr "" - -#: src/tables/part/PartParameterTemplateTable.tsx:36 -msgid "Checkbox" -msgstr "" - -#: src/tables/part/PartParameterTemplateTable.tsx:37 -msgid "Show checkbox templates" -msgstr "" - -#: src/tables/part/PartParameterTemplateTable.tsx:41 -msgid "Has choices" -msgstr "" - -#: src/tables/part/PartParameterTemplateTable.tsx:42 -msgid "Show templates with choices" -msgstr "" - -#: src/tables/part/PartParameterTemplateTable.tsx:46 -#: src/tables/part/PartTable.tsx:245 -msgid "Has Units" -msgstr "" - -#: src/tables/part/PartParameterTemplateTable.tsx:47 -msgid "Show templates with units" -msgstr "" - -#: src/tables/part/PartParameterTemplateTable.tsx:91 -#: src/tables/part/PartParameterTemplateTable.tsx:166 -msgid "Add Parameter Template" -msgstr "" - -#: src/tables/part/PartParameterTemplateTable.tsx:105 -msgid "Duplicate Parameter Template" -msgstr "" - -#: src/tables/part/PartParameterTemplateTable.tsx:117 -msgid "Edit Parameter Template" -msgstr "" - -#: src/tables/part/PartParameterTemplateTable.tsx:128 -msgid "Delete Parameter Template" -msgstr "" +#~ msgid "Add parameter" +#~ msgstr "Add parameter" #: src/tables/part/PartParameterTemplateTable.tsx:141 #~ msgid "Add parameter template" @@ -10430,7 +10561,7 @@ msgid "Show received items" msgstr "" #: src/tables/part/PartSalesAllocationsTable.tsx:90 -#: src/tables/sales/SalesOrderShipmentTable.tsx:218 +#: src/tables/sales/SalesOrderShipmentTable.tsx:263 msgid "View Sales Order" msgstr "" @@ -10617,8 +10748,8 @@ msgstr "" #: src/tables/part/PartTestResultTable.tsx:103 #: src/tables/part/PartTestResultTable.tsx:181 -#: src/tables/part/PartTestResultTable.tsx:320 -#: src/tables/part/PartTestResultTable.tsx:334 +#: src/tables/part/PartTestResultTable.tsx:328 +#: src/tables/part/PartTestResultTable.tsx:342 #: src/tables/stock/StockItemTestResultTable.tsx:296 #: src/tables/stock/StockItemTestResultTable.tsx:368 #: src/tables/stock/StockItemTestResultTable.tsx:429 @@ -10643,7 +10774,7 @@ msgstr "" msgid "No Result" msgstr "" -#: src/tables/part/PartTestResultTable.tsx:298 +#: src/tables/part/PartTestResultTable.tsx:306 msgid "Show build outputs currently in production" msgstr "" @@ -11013,36 +11144,45 @@ msgstr "" #~ msgid "Parameter updated" #~ msgstr "Parameter updated" -#: src/tables/purchasing/ManufacturerPartParameterTable.tsx:63 -#: src/tables/purchasing/ManufacturerPartParameterTable.tsx:112 -msgid "Add Parameter" -msgstr "" - #: src/tables/purchasing/ManufacturerPartParameterTable.tsx:73 #~ msgid "Parameter deleted" #~ msgstr "Parameter deleted" -#: src/tables/purchasing/ManufacturerPartParameterTable.tsx:74 -msgid "Edit Parameter" -msgstr "" - #: src/tables/purchasing/ManufacturerPartParameterTable.tsx:74 #~ msgid "Are you sure you want to delete this parameter?" #~ msgstr "Are you sure you want to delete this parameter?" -#: src/tables/purchasing/ManufacturerPartParameterTable.tsx:82 -msgid "Delete Parameter" +#: src/tables/purchasing/ManufacturerPartParametricTable.tsx:34 +#: src/tables/purchasing/ManufacturerPartTable.tsx:82 +#: src/tables/purchasing/SupplierPartTable.tsx:99 +msgid "MPN" +msgstr "" + +#: src/tables/purchasing/ManufacturerPartParametricTable.tsx:44 +#: src/tables/purchasing/ManufacturerPartTable.tsx:134 +#: src/tables/purchasing/SupplierPartTable.tsx:220 +msgid "Active Part" +msgstr "" + +#: src/tables/purchasing/ManufacturerPartParametricTable.tsx:45 +#: src/tables/purchasing/ManufacturerPartTable.tsx:135 +msgid "Show manufacturer parts for active internal parts." +msgstr "" + +#: src/tables/purchasing/ManufacturerPartParametricTable.tsx:50 +#: src/tables/purchasing/ManufacturerPartTable.tsx:140 +msgid "Active Manufacturer" +msgstr "" + +#: src/tables/purchasing/ManufacturerPartParametricTable.tsx:51 +#: src/tables/purchasing/ManufacturerPartTable.tsx:142 +msgid "Show manufacturer parts for active manufacturers." msgstr "" #: src/tables/purchasing/ManufacturerPartTable.tsx:63 #~ msgid "Create Manufacturer Part" #~ msgstr "Create Manufacturer Part" -#: src/tables/purchasing/ManufacturerPartTable.tsx:82 -#: src/tables/purchasing/SupplierPartTable.tsx:99 -msgid "MPN" -msgstr "" - #: src/tables/purchasing/ManufacturerPartTable.tsx:100 #~ msgid "Manufacturer part updated" #~ msgstr "Manufacturer part updated" @@ -11055,25 +11195,8 @@ msgstr "" #~ msgid "Are you sure you want to remove this manufacturer part?" #~ msgstr "Are you sure you want to remove this manufacturer part?" -#: src/tables/purchasing/ManufacturerPartTable.tsx:134 -#: src/tables/purchasing/SupplierPartTable.tsx:220 -msgid "Active Part" -msgstr "" - -#: src/tables/purchasing/ManufacturerPartTable.tsx:135 -msgid "Show manufacturer parts for active internal parts." -msgstr "" - -#: src/tables/purchasing/ManufacturerPartTable.tsx:140 -msgid "Active Manufacturer" -msgstr "" - -#: src/tables/purchasing/ManufacturerPartTable.tsx:142 -msgid "Show manufacturer parts for active manufacturers." -msgstr "" - #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:115 -#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:397 +#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:399 msgid "Import Line Items" msgstr "" @@ -11099,11 +11222,11 @@ msgstr "" #~ msgid "Add line item" #~ msgstr "Add line item" -#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:350 +#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:352 msgid "Receive line item" msgstr "" -#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:414 +#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:416 msgid "Receive items" msgstr "" @@ -11201,25 +11324,25 @@ msgid "Not shipped" msgstr "" #: src/tables/sales/SalesOrderAllocationTable.tsx:211 -#: src/tables/sales/SalesOrderAllocationTable.tsx:229 +#: src/tables/sales/SalesOrderAllocationTable.tsx:235 msgid "Edit Allocation" msgstr "" #: src/tables/sales/SalesOrderAllocationTable.tsx:218 #: src/tables/sales/SalesOrderAllocationTable.tsx:241 -msgid "Delete Allocation" -msgstr "" +#~ msgid "Delete Allocation" +#~ msgstr "Delete Allocation" -#: src/tables/sales/SalesOrderAllocationTable.tsx:252 -#: src/tables/sales/SalesOrderAllocationTable.tsx:253 +#: src/tables/sales/SalesOrderAllocationTable.tsx:261 +#: src/tables/sales/SalesOrderAllocationTable.tsx:262 msgid "View Shipment" msgstr "" -#: src/tables/sales/SalesOrderAllocationTable.tsx:308 +#: src/tables/sales/SalesOrderAllocationTable.tsx:317 msgid "Assign to Shipment" msgstr "" -#: src/tables/sales/SalesOrderAllocationTable.tsx:324 +#: src/tables/sales/SalesOrderAllocationTable.tsx:333 msgid "Assign to shipment" msgstr "" @@ -11259,35 +11382,35 @@ msgstr "" #~ msgid "Delete Shipment" #~ msgstr "Delete Shipment" -#: src/tables/sales/SalesOrderShipmentTable.tsx:72 +#: src/tables/sales/SalesOrderShipmentTable.tsx:79 msgid "Create Shipment" msgstr "" -#: src/tables/sales/SalesOrderShipmentTable.tsx:143 +#: src/tables/sales/SalesOrderShipmentTable.tsx:164 msgid "Items" msgstr "" -#: src/tables/sales/SalesOrderShipmentTable.tsx:203 +#: src/tables/sales/SalesOrderShipmentTable.tsx:248 msgid "Edit shipment" msgstr "" -#: src/tables/sales/SalesOrderShipmentTable.tsx:211 +#: src/tables/sales/SalesOrderShipmentTable.tsx:256 msgid "Cancel shipment" msgstr "" -#: src/tables/sales/SalesOrderShipmentTable.tsx:241 +#: src/tables/sales/SalesOrderShipmentTable.tsx:286 msgid "Add shipment" msgstr "" -#: src/tables/sales/SalesOrderShipmentTable.tsx:255 +#: src/tables/sales/SalesOrderShipmentTable.tsx:300 msgid "Show shipments which have been checked" msgstr "" -#: src/tables/sales/SalesOrderShipmentTable.tsx:260 +#: src/tables/sales/SalesOrderShipmentTable.tsx:305 msgid "Show shipments which have been shipped" msgstr "" -#: src/tables/sales/SalesOrderShipmentTable.tsx:265 +#: src/tables/sales/SalesOrderShipmentTable.tsx:310 msgid "Show shipments which have been delivered" msgstr "" @@ -11621,11 +11744,6 @@ msgstr "" msgid "Imported Rows" msgstr "" -#: src/tables/settings/ImportSessionTable.tsx:111 -#: src/tables/settings/TemplateTable.tsx:368 -msgid "Model Type" -msgstr "" - #: src/tables/settings/ImportSessionTable.tsx:112 #: src/tables/settings/TemplateTable.tsx:369 msgid "Filter by target model type" diff --git a/src/frontend/src/locales/pt/messages.po b/src/frontend/src/locales/pt/messages.po index 28b0206b86..6db436bb8c 100644 --- a/src/frontend/src/locales/pt/messages.po +++ b/src/frontend/src/locales/pt/messages.po @@ -8,7 +8,7 @@ msgstr "" "Language: pt\n" "Project-Id-Version: inventree\n" "Report-Msgid-Bugs-To: \n" -"PO-Revision-Date: 2025-11-19 19:39\n" +"PO-Revision-Date: 2025-12-07 07:36\n" "Last-Translator: \n" "Language-Team: Portuguese\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" @@ -30,7 +30,7 @@ msgid "Edit" msgstr "Editar" #: lib/components/RowActions.tsx:56 -#: src/components/forms/ApiForm.tsx:735 +#: src/components/forms/ApiForm.tsx:754 #: src/components/items/ActionDropdown.tsx:257 #: src/components/items/RoleTable.tsx:155 #: src/hooks/UseForm.tsx:164 @@ -56,24 +56,24 @@ msgstr "Cancelar" #: lib/components/RowActions.tsx:136 #: src/components/nav/NavigationDrawer.tsx:190 -#: src/forms/PurchaseOrderForms.tsx:802 +#: src/forms/PurchaseOrderForms.tsx:854 #: src/forms/StockForms.tsx:796 #: src/forms/StockForms.tsx:843 -#: src/forms/StockForms.tsx:889 -#: src/forms/StockForms.tsx:928 -#: src/forms/StockForms.tsx:964 -#: src/forms/StockForms.tsx:1050 +#: src/forms/StockForms.tsx:896 +#: src/forms/StockForms.tsx:942 +#: src/forms/StockForms.tsx:980 +#: src/forms/StockForms.tsx:1066 #: src/pages/Index/Settings/AccountSettings/MFASettings.tsx:962 msgid "Actions" msgstr "Ações" #: lib/components/SearchInput.tsx:34 -#: src/components/forms/fields/RelatedModelField.tsx:408 +#: src/components/forms/fields/RelatedModelField.tsx:479 #: src/components/nav/Header.tsx:169 #: src/components/wizards/ImportPartWizard.tsx:200 #: src/components/wizards/ImportPartWizard.tsx:233 -#: src/pages/Index/Settings/UserSettings.tsx:74 -#: src/pages/part/PartDetail.tsx:1155 +#: src/pages/Index/Settings/UserSettings.tsx:75 +#: src/pages/part/PartDetail.tsx:1176 msgid "Search" msgstr "Buscar" @@ -95,7 +95,7 @@ msgstr "Sim" msgid "No" msgstr "Não" -#: lib/enums/ModelInformation.tsx:28 +#: lib/enums/ModelInformation.tsx:29 #: src/components/wizards/OrderPartsWizard.tsx:279 #: src/forms/BuildForms.tsx:332 #: src/forms/BuildForms.tsx:407 @@ -103,208 +103,234 @@ msgstr "Não" #: src/forms/BuildForms.tsx:630 #: src/forms/BuildForms.tsx:793 #: src/forms/BuildForms.tsx:896 -#: src/forms/PurchaseOrderForms.tsx:798 +#: src/forms/PurchaseOrderForms.tsx:850 #: src/forms/ReturnOrderForms.tsx:242 -#: src/forms/SalesOrderForms.tsx:305 +#: src/forms/SalesOrderForms.tsx:384 #: src/forms/StockForms.tsx:360 #: src/forms/StockForms.tsx:791 #: src/forms/StockForms.tsx:838 -#: src/forms/StockForms.tsx:884 -#: src/forms/StockForms.tsx:923 -#: src/forms/StockForms.tsx:959 -#: src/forms/StockForms.tsx:1002 -#: src/forms/StockForms.tsx:1046 -#: src/forms/StockForms.tsx:1094 -#: src/forms/StockForms.tsx:1138 -#: src/pages/build/BuildDetail.tsx:200 -#: src/pages/part/PartDetail.tsx:1207 +#: src/forms/StockForms.tsx:891 +#: src/forms/StockForms.tsx:937 +#: src/forms/StockForms.tsx:975 +#: src/forms/StockForms.tsx:1018 +#: src/forms/StockForms.tsx:1062 +#: src/forms/StockForms.tsx:1110 +#: src/forms/StockForms.tsx:1154 +#: src/pages/build/BuildDetail.tsx:201 +#: src/pages/part/PartDetail.tsx:1228 #: src/tables/ColumnRenderers.tsx:91 +#: src/tables/part/PartTestResultTable.tsx:247 #: src/tables/part/RelatedPartTable.tsx:53 #: src/tables/stock/StockTrackingTable.tsx:87 msgid "Part" msgstr "Peça" -#: lib/enums/ModelInformation.tsx:29 +#: lib/enums/ModelInformation.tsx:30 #: lib/enums/Roles.tsx:35 #: src/components/nav/NavigationDrawer.tsx:70 #: src/defaults/links.tsx:36 -#: src/pages/Index/Settings/SystemSettings.tsx:190 -#: src/pages/part/CategoryDetail.tsx:132 -#: src/pages/part/CategoryDetail.tsx:277 -#: src/pages/part/CategoryDetail.tsx:323 -#: src/pages/part/CategoryDetail.tsx:354 -#: src/pages/part/PartDetail.tsx:965 +#: src/pages/Index/Settings/SystemSettings.tsx:197 +#: src/pages/part/CategoryDetail.tsx:135 +#: src/pages/part/CategoryDetail.tsx:285 +#: src/pages/part/CategoryDetail.tsx:340 +#: src/pages/part/CategoryDetail.tsx:371 +#: src/pages/part/PartDetail.tsx:978 msgid "Parts" msgstr "Peças" #: lib/enums/ModelInformation.tsx:37 #: src/pages/Index/Settings/AdminCenter/PartParameterPanel.tsx:13 -msgid "Part Parameter Template" -msgstr "Modelo de Parâmetro da Peça" +#~ msgid "Part Parameter Template" +#~ msgstr "Part Parameter Template" #: lib/enums/ModelInformation.tsx:38 -msgid "Part Parameter Templates" -msgstr "Modelos de Parâmetro da Peça" +#~ msgid "Part Parameter Templates" +#~ msgstr "Part Parameter Templates" + +#: lib/enums/ModelInformation.tsx:39 +msgid "Parameter" +msgstr "" + +#: lib/enums/ModelInformation.tsx:40 +#: src/components/panels/ParametersPanel.tsx:19 +#: src/components/wizards/ImportPartWizard.tsx:807 +#: src/pages/Index/Settings/AdminCenter/Index.tsx:195 +#: src/pages/Index/Settings/SystemSettings.tsx:191 +#: src/pages/part/PartDetail.tsx:943 +msgid "Parameters" +msgstr "Parâmetros" #: lib/enums/ModelInformation.tsx:45 +#: src/tables/part/PartCategoryTemplateTable.tsx:87 +msgid "Parameter Template" +msgstr "Modelo do Parâmetro" + +#: lib/enums/ModelInformation.tsx:46 +#: src/pages/Index/Settings/AdminCenter/ParameterPanel.tsx:13 +msgid "Parameter Templates" +msgstr "" + +#: lib/enums/ModelInformation.tsx:52 msgid "Part Test Template" msgstr "Modelos de Teste da Peça" -#: lib/enums/ModelInformation.tsx:46 +#: lib/enums/ModelInformation.tsx:53 msgid "Part Test Templates" msgstr "Modelos de Teste da Peça" -#: lib/enums/ModelInformation.tsx:52 +#: lib/enums/ModelInformation.tsx:59 #: src/components/wizards/OrderPartsWizard.tsx:290 -#: src/pages/company/SupplierPartDetail.tsx:413 +#: src/pages/company/SupplierPartDetail.tsx:418 #: src/pages/stock/StockDetail.tsx:289 -#: src/tables/build/BuildAllocatedStockTable.tsx:155 +#: src/tables/build/BuildAllocatedStockTable.tsx:152 #: src/tables/part/PartPurchaseOrdersTable.tsx:50 +#: src/tables/purchasing/SupplierPartParametricTable.tsx:29 #: src/tables/purchasing/SupplierPartTable.tsx:83 #: src/tables/stock/StockItemTable.tsx:247 msgid "Supplier Part" msgstr "Fornecedor da Peça" -#: lib/enums/ModelInformation.tsx:53 -#: src/pages/purchasing/PurchasingIndex.tsx:92 +#: lib/enums/ModelInformation.tsx:60 +#: src/pages/purchasing/PurchasingIndex.tsx:128 msgid "Supplier Parts" msgstr "Peças de fornecedor" -#: lib/enums/ModelInformation.tsx:61 -#: src/pages/company/ManufacturerPartDetail.tsx:297 -#: src/pages/company/SupplierPartDetail.tsx:161 +#: lib/enums/ModelInformation.tsx:69 +#: src/pages/company/ManufacturerPartDetail.tsx:288 +#: src/pages/company/SupplierPartDetail.tsx:162 #: src/tables/part/PartPurchaseOrdersTable.tsx:56 #: src/tables/stock/StockItemTable.tsx:253 msgid "Manufacturer Part" msgstr "Fabricante da peça" -#: lib/enums/ModelInformation.tsx:62 -#: src/pages/purchasing/PurchasingIndex.tsx:109 +#: lib/enums/ModelInformation.tsx:70 +#: src/pages/purchasing/PurchasingIndex.tsx:177 msgid "Manufacturer Parts" msgstr "Peças do fabricante" -#: lib/enums/ModelInformation.tsx:70 -#: src/pages/part/CategoryDetail.tsx:354 +#: lib/enums/ModelInformation.tsx:79 +#: src/pages/part/CategoryDetail.tsx:371 #: src/tables/Filter.tsx:389 msgid "Part Category" msgstr "Categoria da peça" -#: lib/enums/ModelInformation.tsx:71 +#: lib/enums/ModelInformation.tsx:80 #: lib/enums/Roles.tsx:37 -#: src/pages/part/CategoryDetail.tsx:271 -#: src/pages/part/CategoryDetail.tsx:345 -#: src/pages/part/PartDetail.tsx:1196 +#: src/pages/part/CategoryDetail.tsx:279 +#: src/pages/part/CategoryDetail.tsx:362 +#: src/pages/part/PartDetail.tsx:1217 msgid "Part Categories" msgstr "Categorias da Peça" -#: lib/enums/ModelInformation.tsx:79 +#: lib/enums/ModelInformation.tsx:88 #: src/forms/BuildForms.tsx:473 #: src/forms/BuildForms.tsx:633 #: src/forms/BuildForms.tsx:794 -#: src/forms/SalesOrderForms.tsx:307 +#: src/forms/SalesOrderForms.tsx:386 #: src/pages/stock/StockDetail.tsx:1005 -#: src/tables/part/PartTestResultTable.tsx:248 +#: src/tables/part/PartTestResultTable.tsx:256 #: src/tables/stock/StockTrackingTable.tsx:48 #: src/tables/stock/StockTrackingTable.tsx:55 msgid "Stock Item" msgstr "Item de Estoque" -#: lib/enums/ModelInformation.tsx:80 +#: lib/enums/ModelInformation.tsx:89 #: lib/enums/Roles.tsx:45 -#: src/pages/company/CompanyDetail.tsx:210 -#: src/pages/part/CategoryDetail.tsx:291 +#: src/pages/company/CompanyDetail.tsx:211 +#: src/pages/part/CategoryDetail.tsx:314 #: src/pages/part/PartStockHistoryDetail.tsx:101 #: src/pages/stock/LocationDetail.tsx:121 #: src/pages/stock/LocationDetail.tsx:180 msgid "Stock Items" msgstr "Itens de Estoque" -#: lib/enums/ModelInformation.tsx:88 +#: lib/enums/ModelInformation.tsx:98 #: lib/enums/Roles.tsx:47 #: src/pages/stock/LocationDetail.tsx:420 msgid "Stock Location" msgstr "Localização de Stock" -#: lib/enums/ModelInformation.tsx:89 +#: lib/enums/ModelInformation.tsx:99 #: src/pages/stock/LocationDetail.tsx:174 #: src/pages/stock/LocationDetail.tsx:412 #: src/pages/stock/StockDetail.tsx:996 msgid "Stock Locations" msgstr "Localizações de Stock" -#: lib/enums/ModelInformation.tsx:97 +#: lib/enums/ModelInformation.tsx:108 msgid "Stock Location Type" msgstr "Tipo de Local de Estoque" -#: lib/enums/ModelInformation.tsx:98 +#: lib/enums/ModelInformation.tsx:109 msgid "Stock Location Types" msgstr "Tipo de Local de Estoque" -#: lib/enums/ModelInformation.tsx:103 -#: src/pages/Index/Settings/SystemSettings.tsx:248 -#: src/pages/part/PartDetail.tsx:911 +#: lib/enums/ModelInformation.tsx:114 +#: src/pages/Index/Settings/SystemSettings.tsx:254 +#: src/pages/part/PartDetail.tsx:900 msgid "Stock History" msgstr "Histórico de Estoque" -#: lib/enums/ModelInformation.tsx:104 +#: lib/enums/ModelInformation.tsx:115 msgid "Stock Histories" msgstr "Histórico de Estoque" -#: lib/enums/ModelInformation.tsx:109 +#: lib/enums/ModelInformation.tsx:120 msgid "Build" msgstr "Produção" -#: lib/enums/ModelInformation.tsx:110 +#: lib/enums/ModelInformation.tsx:121 msgid "Builds" msgstr "Produções" -#: lib/enums/ModelInformation.tsx:118 +#: lib/enums/ModelInformation.tsx:130 msgid "Build Line" msgstr "Linha de produção" -#: lib/enums/ModelInformation.tsx:119 +#: lib/enums/ModelInformation.tsx:131 msgid "Build Lines" msgstr "Linhas de produção" -#: lib/enums/ModelInformation.tsx:126 +#: lib/enums/ModelInformation.tsx:138 msgid "Build Item" msgstr "" -#: lib/enums/ModelInformation.tsx:127 +#: lib/enums/ModelInformation.tsx:139 msgid "Build Items" msgstr "" -#: lib/enums/ModelInformation.tsx:132 -#: src/pages/company/CompanyDetail.tsx:340 +#: lib/enums/ModelInformation.tsx:144 +#: src/pages/company/CompanyDetail.tsx:345 #: src/tables/company/CompanyTable.tsx:47 #: src/tables/company/ContactTable.tsx:67 +#: src/tables/company/ParametricCompanyTable.tsx:18 msgid "Company" msgstr "Empresa" -#: lib/enums/ModelInformation.tsx:133 +#: lib/enums/ModelInformation.tsx:145 msgid "Companies" msgstr "Empresas" -#: lib/enums/ModelInformation.tsx:140 -#: src/pages/build/BuildDetail.tsx:316 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:253 -#: src/pages/sales/ReturnOrderDetail.tsx:231 -#: src/pages/sales/SalesOrderDetail.tsx:224 +#: lib/enums/ModelInformation.tsx:152 +#: src/pages/build/BuildDetail.tsx:317 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:254 +#: src/pages/sales/ReturnOrderDetail.tsx:232 +#: src/pages/sales/SalesOrderDetail.tsx:225 #: src/tables/ColumnRenderers.tsx:362 #: src/tables/Filter.tsx:286 #: src/tables/TableHoverCard.tsx:101 msgid "Project Code" msgstr "Código do projeto" -#: lib/enums/ModelInformation.tsx:141 +#: lib/enums/ModelInformation.tsx:153 #: src/pages/Index/Settings/AdminCenter/Index.tsx:172 msgid "Project Codes" msgstr "Códigos do Projeto" -#: lib/enums/ModelInformation.tsx:147 +#: lib/enums/ModelInformation.tsx:159 #: src/components/wizards/OrderPartsWizard.tsx:338 #: src/pages/part/pricing/PurchaseHistoryPanel.tsx:33 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:550 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:555 #: src/pages/stock/StockDetail.tsx:352 #: src/tables/part/PartPurchaseOrdersTable.tsx:32 #: src/tables/stock/StockItemTable.tsx:239 @@ -312,117 +338,117 @@ msgstr "Códigos do Projeto" msgid "Purchase Order" msgstr "Pedido de Compra" -#: lib/enums/ModelInformation.tsx:148 +#: lib/enums/ModelInformation.tsx:160 #: lib/enums/Roles.tsx:39 #: src/defaults/actions.tsx:104 -#: src/pages/Index/Settings/SystemSettings.tsx:283 -#: src/pages/company/CompanyDetail.tsx:203 -#: src/pages/company/SupplierPartDetail.tsx:266 -#: src/pages/part/PartDetail.tsx:875 -#: src/pages/purchasing/PurchasingIndex.tsx:60 +#: src/pages/Index/Settings/SystemSettings.tsx:289 +#: src/pages/company/CompanyDetail.tsx:204 +#: src/pages/company/SupplierPartDetail.tsx:267 +#: src/pages/part/PartDetail.tsx:864 +#: src/pages/purchasing/PurchasingIndex.tsx:66 msgid "Purchase Orders" msgstr "Pedidos de compra" -#: lib/enums/ModelInformation.tsx:156 +#: lib/enums/ModelInformation.tsx:169 msgid "Purchase Order Line" msgstr "Pedido de compra da linha" -#: lib/enums/ModelInformation.tsx:157 +#: lib/enums/ModelInformation.tsx:170 msgid "Purchase Order Lines" msgstr "Pedido de compra das linhas" -#: lib/enums/ModelInformation.tsx:162 -#: src/pages/build/BuildDetail.tsx:289 +#: lib/enums/ModelInformation.tsx:175 +#: src/pages/build/BuildDetail.tsx:290 #: src/pages/part/pricing/SaleHistoryPanel.tsx:24 -#: src/pages/sales/SalesOrderDetail.tsx:614 -#: src/pages/sales/SalesOrderShipmentDetail.tsx:105 -#: src/pages/sales/SalesOrderShipmentDetail.tsx:478 +#: src/pages/sales/SalesOrderDetail.tsx:619 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:103 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:446 #: src/pages/stock/StockDetail.tsx:361 #: src/tables/part/PartSalesAllocationsTable.tsx:41 #: src/tables/sales/SalesOrderAllocationTable.tsx:110 -#: src/tables/sales/SalesOrderShipmentTable.tsx:122 +#: src/tables/sales/SalesOrderShipmentTable.tsx:143 #: src/tables/stock/StockTrackingTable.tsx:131 msgid "Sales Order" msgstr "Pedido de Venda" -#: lib/enums/ModelInformation.tsx:163 +#: lib/enums/ModelInformation.tsx:176 #: lib/enums/Roles.tsx:43 #: src/defaults/actions.tsx:114 -#: src/pages/Index/Settings/SystemSettings.tsx:299 -#: src/pages/company/CompanyDetail.tsx:223 -#: src/pages/part/PartDetail.tsx:887 -#: src/pages/sales/SalesIndex.tsx:84 +#: src/pages/Index/Settings/SystemSettings.tsx:305 +#: src/pages/company/CompanyDetail.tsx:224 +#: src/pages/part/PartDetail.tsx:876 +#: src/pages/sales/SalesIndex.tsx:53 msgid "Sales Orders" msgstr "Pedidos de vendas" -#: lib/enums/ModelInformation.tsx:171 -#: src/pages/sales/SalesOrderShipmentDetail.tsx:477 +#: lib/enums/ModelInformation.tsx:185 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:445 msgid "Sales Order Shipment" msgstr "Envio do Pedido de Venda" -#: lib/enums/ModelInformation.tsx:172 +#: lib/enums/ModelInformation.tsx:186 msgid "Sales Order Shipments" msgstr "Envios dos Pedidos de Vendas" -#: lib/enums/ModelInformation.tsx:179 -#: src/pages/sales/ReturnOrderDetail.tsx:549 +#: lib/enums/ModelInformation.tsx:194 +#: src/pages/sales/ReturnOrderDetail.tsx:554 #: src/tables/stock/StockTrackingTable.tsx:142 msgid "Return Order" msgstr "Pedido de Devolução" -#: lib/enums/ModelInformation.tsx:180 +#: lib/enums/ModelInformation.tsx:195 #: lib/enums/Roles.tsx:41 #: src/defaults/actions.tsx:125 -#: src/pages/Index/Settings/SystemSettings.tsx:316 -#: src/pages/company/CompanyDetail.tsx:230 -#: src/pages/part/PartDetail.tsx:894 -#: src/pages/sales/SalesIndex.tsx:117 +#: src/pages/Index/Settings/SystemSettings.tsx:322 +#: src/pages/company/CompanyDetail.tsx:231 +#: src/pages/part/PartDetail.tsx:883 +#: src/pages/sales/SalesIndex.tsx:99 msgid "Return Orders" msgstr "Pedidos de Devolução" -#: lib/enums/ModelInformation.tsx:188 +#: lib/enums/ModelInformation.tsx:204 msgid "Return Order Line Item" msgstr "" -#: lib/enums/ModelInformation.tsx:189 +#: lib/enums/ModelInformation.tsx:205 msgid "Return Order Line Items" msgstr "" -#: lib/enums/ModelInformation.tsx:194 +#: lib/enums/ModelInformation.tsx:210 #: src/tables/company/AddressTable.tsx:52 msgid "Address" msgstr "Endereço" -#: lib/enums/ModelInformation.tsx:195 -#: src/pages/company/CompanyDetail.tsx:264 +#: lib/enums/ModelInformation.tsx:211 +#: src/pages/company/CompanyDetail.tsx:265 msgid "Addresses" msgstr "Endereços" -#: lib/enums/ModelInformation.tsx:201 +#: lib/enums/ModelInformation.tsx:217 #: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:89 #: src/pages/core/UserDetail.tsx:135 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:229 -#: src/pages/sales/ReturnOrderDetail.tsx:207 -#: src/pages/sales/SalesOrderDetail.tsx:200 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:230 +#: src/pages/sales/ReturnOrderDetail.tsx:208 +#: src/pages/sales/SalesOrderDetail.tsx:201 msgid "Contact" msgstr "Contato" -#: lib/enums/ModelInformation.tsx:202 -#: src/pages/company/CompanyDetail.tsx:258 +#: lib/enums/ModelInformation.tsx:218 +#: src/pages/company/CompanyDetail.tsx:259 #: src/pages/core/CoreIndex.tsx:33 msgid "Contacts" msgstr "Contatos" -#: lib/enums/ModelInformation.tsx:208 +#: lib/enums/ModelInformation.tsx:224 #: src/tables/ColumnRenderers.tsx:444 msgid "Owner" msgstr "Proprietário" -#: lib/enums/ModelInformation.tsx:209 +#: lib/enums/ModelInformation.tsx:225 msgid "Owners" msgstr "Proprietários" -#: lib/enums/ModelInformation.tsx:215 +#: lib/enums/ModelInformation.tsx:231 #: src/pages/Auth/ChangePassword.tsx:36 #: src/pages/core/UserDetail.tsx:220 #: src/tables/ColumnRenderers.tsx:395 @@ -437,7 +463,7 @@ msgstr "Proprietários" msgid "User" msgstr "Utilizador" -#: lib/enums/ModelInformation.tsx:216 +#: lib/enums/ModelInformation.tsx:232 #: src/components/nav/NavigationDrawer.tsx:105 #: src/pages/Index/Settings/AdminCenter/UserManagementPanel.tsx:15 #: src/pages/core/CoreIndex.tsx:21 @@ -445,12 +471,12 @@ msgstr "Utilizador" msgid "Users" msgstr "Utilizadores" -#: lib/enums/ModelInformation.tsx:222 +#: lib/enums/ModelInformation.tsx:238 #: src/pages/core/GroupDetail.tsx:78 msgid "Group" msgstr "" -#: lib/enums/ModelInformation.tsx:223 +#: lib/enums/ModelInformation.tsx:239 #: src/components/nav/NavigationDrawer.tsx:111 #: src/pages/Index/Settings/AdminCenter/UserManagementPanel.tsx:23 #: src/pages/core/CoreIndex.tsx:27 @@ -460,64 +486,64 @@ msgstr "" msgid "Groups" msgstr "Grupos" -#: lib/enums/ModelInformation.tsx:230 +#: lib/enums/ModelInformation.tsx:246 msgid "Import Session" msgstr "" -#: lib/enums/ModelInformation.tsx:231 +#: lib/enums/ModelInformation.tsx:247 msgid "Import Sessions" msgstr "" -#: lib/enums/ModelInformation.tsx:238 +#: lib/enums/ModelInformation.tsx:254 msgid "Label Template" msgstr "Modelo de Etiqueta" -#: lib/enums/ModelInformation.tsx:239 +#: lib/enums/ModelInformation.tsx:255 #: src/pages/Index/Settings/AdminCenter/Index.tsx:209 msgid "Label Templates" msgstr "Modelos de Etiqueta" -#: lib/enums/ModelInformation.tsx:246 +#: lib/enums/ModelInformation.tsx:262 msgid "Report Template" msgstr "Modelo de relatório" -#: lib/enums/ModelInformation.tsx:247 +#: lib/enums/ModelInformation.tsx:263 #: src/pages/Index/Settings/AdminCenter/Index.tsx:215 msgid "Report Templates" msgstr "Modelos de relatório" -#: lib/enums/ModelInformation.tsx:254 +#: lib/enums/ModelInformation.tsx:270 #: src/components/plugins/PluginDrawer.tsx:145 msgid "Plugin Configuration" msgstr "Configuração de Extensão" -#: lib/enums/ModelInformation.tsx:255 +#: lib/enums/ModelInformation.tsx:271 msgid "Plugin Configurations" msgstr "Configurações de Extensões" -#: lib/enums/ModelInformation.tsx:262 +#: lib/enums/ModelInformation.tsx:278 msgid "Content Type" msgstr "" -#: lib/enums/ModelInformation.tsx:263 +#: lib/enums/ModelInformation.tsx:279 msgid "Content Types" msgstr "" -#: lib/enums/ModelInformation.tsx:268 +#: lib/enums/ModelInformation.tsx:284 msgid "Selection List" msgstr "" -#: lib/enums/ModelInformation.tsx:269 -#: src/pages/Index/Settings/AdminCenter/PartParameterPanel.tsx:21 +#: lib/enums/ModelInformation.tsx:285 +#: src/pages/Index/Settings/AdminCenter/ParameterPanel.tsx:21 msgid "Selection Lists" msgstr "" -#: lib/enums/ModelInformation.tsx:275 +#: lib/enums/ModelInformation.tsx:291 #: src/components/barcodes/BarcodeInput.tsx:114 #: src/components/dashboard/DashboardLayout.tsx:281 #: src/components/editors/NotesEditor.tsx:74 #: src/components/editors/TemplateEditor/TemplateEditor.tsx:158 -#: src/components/forms/fields/ApiFormField.tsx:273 +#: src/components/forms/fields/ApiFormField.tsx:237 #: src/components/forms/fields/TableField.tsx:45 #: src/components/importer/ImportDataSelector.tsx:192 #: src/components/importer/ImporterColumnSelector.tsx:234 @@ -528,7 +554,7 @@ msgstr "" #: src/components/nav/SearchDrawer.tsx:572 #: src/components/settings/SettingList.tsx:139 #: src/components/wizards/ImportPartWizard.tsx:574 -#: src/components/wizards/ImportPartWizard.tsx:718 +#: src/components/wizards/ImportPartWizard.tsx:719 #: src/forms/BomForms.tsx:69 #: src/functions/auth.tsx:643 #: src/pages/ErrorPage.tsx:11 @@ -547,9 +573,9 @@ msgstr "" msgid "Error" msgstr "Erro" -#: lib/enums/ModelInformation.tsx:276 +#: lib/enums/ModelInformation.tsx:292 #: src/tables/machine/MachineListTable.tsx:402 -#: src/tables/machine/MachineTypeTable.tsx:299 +#: src/tables/machine/MachineTypeTable.tsx:297 msgid "Errors" msgstr "Erros" @@ -559,10 +585,10 @@ msgstr "" #: lib/enums/Roles.tsx:33 #: src/defaults/actions.tsx:135 -#: src/pages/Index/Settings/SystemSettings.tsx:264 -#: src/pages/build/BuildIndex.tsx:75 -#: src/pages/part/PartDetail.tsx:904 -#: src/pages/sales/SalesOrderDetail.tsx:421 +#: src/pages/Index/Settings/SystemSettings.tsx:270 +#: src/pages/build/BuildIndex.tsx:67 +#: src/pages/part/PartDetail.tsx:893 +#: src/pages/sales/SalesOrderDetail.tsx:422 msgid "Build Orders" msgstr "Ordens de Produções" @@ -639,39 +665,39 @@ msgstr "" msgid "Enter barcode data" msgstr "" -#: src/components/barcodes/BarcodeScanDialog.tsx:49 -#: src/components/buttons/ScanButton.tsx:15 +#: src/components/barcodes/BarcodeScanDialog.tsx:56 +#: src/components/buttons/ScanButton.tsx:27 #: src/components/nav/NavigationDrawer.tsx:122 -#: src/forms/PurchaseOrderForms.tsx:457 -#: src/forms/PurchaseOrderForms.tsx:563 +#: src/forms/PurchaseOrderForms.tsx:509 +#: src/forms/PurchaseOrderForms.tsx:615 msgid "Scan Barcode" msgstr "Ler Código de Barras" -#: src/components/barcodes/BarcodeScanDialog.tsx:105 +#: src/components/barcodes/BarcodeScanDialog.tsx:121 msgid "No matching item found" msgstr "" -#: src/components/barcodes/BarcodeScanDialog.tsx:134 +#: src/components/barcodes/BarcodeScanDialog.tsx:150 msgid "Barcode does not match the expected model type" msgstr "" -#: src/components/barcodes/BarcodeScanDialog.tsx:145 +#: src/components/barcodes/BarcodeScanDialog.tsx:161 #: src/components/editors/NotesEditor.tsx:84 #: src/components/editors/NotesEditor.tsx:118 -#: src/components/forms/ApiForm.tsx:465 +#: src/components/forms/ApiForm.tsx:484 #: src/components/wizards/ImportPartWizard.tsx:566 -#: src/components/wizards/ImportPartWizard.tsx:690 +#: src/components/wizards/ImportPartWizard.tsx:691 #: src/pages/Index/Settings/AdminCenter/CurrencyManagementPanel.tsx:45 #: src/tables/bom/BomTable.tsx:548 #: src/tables/settings/PendingTasksTable.tsx:68 msgid "Success" msgstr "Sucesso" -#: src/components/barcodes/BarcodeScanDialog.tsx:151 +#: src/components/barcodes/BarcodeScanDialog.tsx:167 msgid "Failed to handle barcode" msgstr "" -#: src/components/barcodes/BarcodeScanDialog.tsx:167 +#: src/components/barcodes/BarcodeScanDialog.tsx:183 #: src/pages/Index/Scan.tsx:129 msgid "Failed to scan barcode" msgstr "" @@ -714,10 +740,10 @@ msgstr "" #: src/components/barcodes/QRCode.tsx:179 #: src/pages/part/PartDetail.tsx:521 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:222 -#: src/pages/sales/ReturnOrderDetail.tsx:188 -#: src/pages/sales/SalesOrderDetail.tsx:181 -#: src/pages/sales/SalesOrderShipmentDetail.tsx:122 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:223 +#: src/pages/sales/ReturnOrderDetail.tsx:189 +#: src/pages/sales/SalesOrderDetail.tsx:182 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:120 #: src/pages/stock/StockDetail.tsx:186 msgid "Link" msgstr "Ligação" @@ -728,7 +754,7 @@ msgstr "" #: src/components/barcodes/QRCode.tsx:205 #: src/components/items/ActionDropdown.tsx:192 -#: src/forms/PurchaseOrderForms.tsx:554 +#: src/forms/PurchaseOrderForms.tsx:606 msgid "Unlink Barcode" msgstr "Desatribuir Código de Barras" @@ -829,14 +855,14 @@ msgstr "" #~ msgid "Scan QR code" #~ msgstr "Scan QR code" -#: src/components/buttons/ScanButton.tsx:19 -msgid "Open Barcode Scanner" -msgstr "" - #: src/components/buttons/ScanButton.tsx:20 #~ msgid "Open QR code scanner" #~ msgstr "Open QR code scanner" +#: src/components/buttons/ScanButton.tsx:32 +msgid "Open Barcode Scanner" +msgstr "" + #: src/components/buttons/SpotlightButton.tsx:12 msgid "Open spotlight" msgstr "Abrir Destaques" @@ -1059,7 +1085,7 @@ msgid "Show the number of sales orders which are assigned to you" msgstr "" #: src/components/dashboard/DashboardWidgetLibrary.tsx:129 -#: src/pages/sales/SalesIndex.tsx:105 +#: src/pages/sales/SalesIndex.tsx:87 msgid "Pending Shipments" msgstr "" @@ -1210,12 +1236,18 @@ msgid "Remove the associated image from this item?" msgstr "Remover a imagem associada a este item?" #: src/components/details/DetailsImage.tsx:83 -#: src/forms/StockForms.tsx:888 +#: src/forms/StockForms.tsx:895 #: src/pages/Index/Settings/AccountSettings/MFASettings.tsx:324 #: src/pages/Index/Settings/AccountSettings/MFASettings.tsx:415 #: src/pages/Index/Settings/AccountSettings/MFASettings.tsx:884 #: src/pages/Index/Settings/AccountSettings/MFASettings.tsx:903 #: src/pages/Index/Settings/AccountSettings/SecurityContent.tsx:254 +#: src/tables/build/BuildAllocatedStockTable.tsx:178 +#: src/tables/build/BuildAllocatedStockTable.tsx:258 +#: src/tables/build/BuildLineTable.tsx:111 +#: src/tables/build/BuildLineTable.tsx:665 +#: src/tables/sales/SalesOrderAllocationTable.tsx:224 +#: src/tables/sales/SalesOrderAllocationTable.tsx:247 msgid "Remove" msgstr "Eliminar" @@ -1241,12 +1273,12 @@ msgid "Upload Error" msgstr "Erro ao enviar" #: src/components/details/DetailsImage.tsx:250 -#: src/components/forms/fields/TextField.tsx:65 +#: src/components/forms/fields/AutoFillRightSection.tsx:34 msgid "Clear" msgstr "Apagar" #: src/components/details/DetailsImage.tsx:256 -#: src/components/forms/ApiForm.tsx:677 +#: src/components/forms/ApiForm.tsx:696 #: src/contexts/ThemeContext.tsx:44 #: src/pages/Index/Settings/AccountSettings/MFASettings.tsx:149 #: src/pages/Index/Settings/AccountSettings/MFASettings.tsx:568 @@ -1500,8 +1532,8 @@ msgstr "" msgid "A server error occurred" msgstr "" -#: src/components/forms/ApiForm.tsx:103 -#: src/components/forms/ApiForm.tsx:594 +#: src/components/forms/ApiForm.tsx:107 +#: src/components/forms/ApiForm.tsx:613 msgid "Form Error" msgstr "Erro de formulário" @@ -1509,11 +1541,11 @@ msgstr "Erro de formulário" #~ msgid "Form Errors Exist" #~ msgstr "Form Errors Exist" -#: src/components/forms/ApiForm.tsx:604 +#: src/components/forms/ApiForm.tsx:623 msgid "Errors exist for one or more form fields" msgstr "" -#: src/components/forms/ApiForm.tsx:715 +#: src/components/forms/ApiForm.tsx:734 #: src/hooks/UseForm.tsx:133 #: src/tables/plugin/PluginListTable.tsx:204 msgid "Update" @@ -1699,15 +1731,14 @@ msgstr "Servidor" #: src/components/forms/InstanceOptions.tsx:124 #: src/components/plugins/PluginDrawer.tsx:68 #: src/pages/Index/Settings/AdminCenter/UnitManagementPanel.tsx:19 -#: src/pages/part/CategoryDetail.tsx:88 +#: src/pages/part/CategoryDetail.tsx:91 #: src/pages/part/PartDetail.tsx:446 #: src/pages/stock/LocationDetail.tsx:82 #: src/tables/machine/MachineTypeTable.tsx:67 -#: src/tables/machine/MachineTypeTable.tsx:151 -#: src/tables/machine/MachineTypeTable.tsx:254 -#: src/tables/machine/MachineTypeTable.tsx:357 +#: src/tables/machine/MachineTypeTable.tsx:149 +#: src/tables/machine/MachineTypeTable.tsx:252 +#: src/tables/machine/MachineTypeTable.tsx:355 #: src/tables/plugin/PluginErrorTable.tsx:33 -#: src/tables/purchasing/ManufacturerPartParameterTable.tsx:36 #: src/tables/settings/ApiTokenTable.tsx:57 #: src/tables/settings/GroupTable.tsx:95 #: src/tables/settings/GroupTable.tsx:148 @@ -1770,7 +1801,7 @@ msgstr "" #~ msgstr "State: <0>worker ({0}), <1>plugins{1}" #: src/components/forms/InstanceOptions.tsx:118 -#: src/pages/Index/Settings/SystemSettings.tsx:45 +#: src/pages/Index/Settings/SystemSettings.tsx:46 msgid "Server" msgstr "Servidor" @@ -1794,6 +1825,8 @@ msgid "Plugins" msgstr "Extensões" #: src/components/forms/InstanceOptions.tsx:143 +#: src/tables/general/ParameterTemplateTable.tsx:153 +#: src/tables/general/ParameterTemplateTable.tsx:188 #: src/tables/part/PartTestTemplateTable.tsx:117 #: src/tables/settings/TemplateTable.tsx:251 #: src/tables/settings/TemplateTable.tsx:362 @@ -1818,10 +1851,14 @@ msgstr "Parado" msgid "Running" msgstr "" -#: src/components/forms/fields/ApiFormField.tsx:233 +#: src/components/forms/fields/ApiFormField.tsx:197 msgid "Select file to upload" msgstr "" +#: src/components/forms/fields/AutoFillRightSection.tsx:47 +msgid "Accept suggested value" +msgstr "" + #: src/components/forms/fields/DateField.tsx:76 msgid "Select date" msgstr "" @@ -1854,13 +1891,13 @@ msgstr "" msgid "{0} icons" msgstr "" -#: src/components/forms/fields/RelatedModelField.tsx:409 +#: src/components/forms/fields/RelatedModelField.tsx:480 #: src/components/modals/AboutInvenTreeModal.tsx:96 #: src/pages/Index/Settings/AccountSettings/SecurityContent.tsx:383 msgid "Loading" msgstr "A carregar" -#: src/components/forms/fields/RelatedModelField.tsx:411 +#: src/components/forms/fields/RelatedModelField.tsx:482 msgid "No results found" msgstr "Nenhum resultado encontrado" @@ -1876,10 +1913,6 @@ msgstr "Nenhuma entrada disponível" msgid "Add new row" msgstr "" -#: src/components/forms/fields/TextField.tsx:82 -msgid "Accept suggested value" -msgstr "" - #: src/components/images/DetailsImage.tsx:252 #~ msgid "Select image" #~ msgstr "Select image" @@ -2037,7 +2070,7 @@ msgstr "" #: src/components/importer/ImporterDrawer.tsx:109 #: src/components/modals/AboutInvenTreeModal.tsx:205 #: src/components/modals/ServerInfoModal.tsx:134 -#: src/components/wizards/ImportPartWizard.tsx:772 +#: src/components/wizards/ImportPartWizard.tsx:773 #: src/forms/BomForms.tsx:132 #: src/pages/Index/Settings/AccountSettings/MFASettings.tsx:685 msgid "Close" @@ -2200,7 +2233,7 @@ msgid "Change" msgstr "" #: src/components/items/RoleTable.tsx:150 -#: src/forms/StockForms.tsx:927 +#: src/forms/StockForms.tsx:941 #: src/tables/stock/StockItemTestResultTable.tsx:367 msgid "Add" msgstr "Adicionar" @@ -2223,11 +2256,11 @@ msgstr "" #: src/components/items/TransferList.tsx:161 #: src/components/render/Stock.tsx:102 -#: src/pages/part/PartDetail.tsx:994 +#: src/pages/part/PartDetail.tsx:1009 #: src/pages/stock/StockDetail.tsx:265 #: src/pages/stock/StockDetail.tsx:942 -#: src/tables/build/BuildAllocatedStockTable.tsx:135 -#: src/tables/build/BuildLineTable.tsx:192 +#: src/tables/build/BuildAllocatedStockTable.tsx:132 +#: src/tables/build/BuildLineTable.tsx:193 #: src/tables/part/PartTable.tsx:137 #: src/tables/stock/StockItemTable.tsx:182 #: src/tables/stock/StockItemTable.tsx:343 @@ -2374,7 +2407,7 @@ msgid "Database" msgstr "Base de dados" #: src/components/modals/ServerInfoModal.tsx:49 -#: src/components/nav/Alerts.tsx:118 +#: src/components/nav/Alerts.tsx:120 msgid "Debug Mode" msgstr "Modo de depuração" @@ -2415,7 +2448,7 @@ msgid "Issues detected" msgstr "Problemas detectados" #: src/components/modals/ServerInfoModal.tsx:102 -#: src/components/nav/Alerts.tsx:125 +#: src/components/nav/Alerts.tsx:127 msgid "Background Worker" msgstr "Trabalhador em segundo plano" @@ -2437,7 +2470,7 @@ msgstr "Configurações de Email" #~ msgstr "Email settings not configured" #: src/components/modals/ServerInfoModal.tsx:120 -#: src/components/nav/Alerts.tsx:141 +#: src/components/nav/Alerts.tsx:143 msgid "Email settings not configured." msgstr "" @@ -2445,43 +2478,47 @@ msgstr "" msgid "Alerts" msgstr "" -#: src/components/nav/Alerts.tsx:120 +#: src/components/nav/Alerts.tsx:97 +msgid "No issues detected" +msgstr "" + +#: src/components/nav/Alerts.tsx:122 msgid "The server is running in debug mode." msgstr "" -#: src/components/nav/Alerts.tsx:127 +#: src/components/nav/Alerts.tsx:129 msgid "The background worker process is not running." msgstr "" -#: src/components/nav/Alerts.tsx:132 +#: src/components/nav/Alerts.tsx:134 msgid "Server Restart" msgstr "" -#: src/components/nav/Alerts.tsx:134 +#: src/components/nav/Alerts.tsx:136 msgid "The server requires a restart to apply changes." msgstr "" -#: src/components/nav/Alerts.tsx:139 +#: src/components/nav/Alerts.tsx:141 msgid "Email settings" msgstr "" -#: src/components/nav/Alerts.tsx:146 +#: src/components/nav/Alerts.tsx:148 msgid "Database Migrations" msgstr "" -#: src/components/nav/Alerts.tsx:148 +#: src/components/nav/Alerts.tsx:150 msgid "There are pending database migrations." msgstr "" -#: src/components/nav/Alerts.tsx:163 +#: src/components/nav/Alerts.tsx:165 msgid "Learn more about {code}" msgstr "" #: src/components/nav/Header.tsx:188 #: src/components/nav/NavigationDrawer.tsx:134 #: src/components/nav/NotificationDrawer.tsx:181 -#: src/pages/Index/Settings/SystemSettings.tsx:121 -#: src/pages/Index/Settings/UserSettings.tsx:106 +#: src/pages/Index/Settings/SystemSettings.tsx:122 +#: src/pages/Index/Settings/UserSettings.tsx:107 #: src/pages/Notifications.tsx:45 #: src/pages/Notifications.tsx:130 msgid "Notifications" @@ -2512,8 +2549,8 @@ msgstr "Configurações" #: src/components/nav/NavigationDrawer.tsx:140 #: src/components/nav/SettingsHeader.tsx:40 #: src/defaults/actions.tsx:92 -#: src/pages/Index/Settings/UserSettings.tsx:141 -#: src/pages/Index/Settings/UserSettings.tsx:145 +#: src/pages/Index/Settings/UserSettings.tsx:142 +#: src/pages/Index/Settings/UserSettings.tsx:146 msgid "User Settings" msgstr "" @@ -2530,8 +2567,8 @@ msgstr "" #: src/components/nav/NavigationDrawer.tsx:146 #: src/components/nav/SettingsHeader.tsx:41 #: src/defaults/actions.tsx:144 -#: src/pages/Index/Settings/SystemSettings.tsx:348 -#: src/pages/Index/Settings/SystemSettings.tsx:353 +#: src/pages/Index/Settings/SystemSettings.tsx:354 +#: src/pages/Index/Settings/SystemSettings.tsx:359 msgid "System Settings" msgstr "Definições de Sistema" @@ -2578,11 +2615,11 @@ msgstr "Encerrar sessão" #: src/components/nav/NavigationDrawer.tsx:77 #: src/components/render/Part.tsx:36 -#: src/components/wizards/ImportPartWizard.tsx:807 +#: src/components/wizards/ImportPartWizard.tsx:808 #: src/defaults/links.tsx:42 #: src/forms/StockForms.tsx:794 -#: src/pages/Index/Settings/SystemSettings.tsx:224 -#: src/pages/part/PartDetail.tsx:804 +#: src/pages/Index/Settings/SystemSettings.tsx:230 +#: src/pages/part/PartDetail.tsx:793 #: src/pages/stock/LocationDetail.tsx:390 #: src/pages/stock/LocationDetail.tsx:420 #: src/pages/stock/StockDetail.tsx:642 @@ -2592,29 +2629,29 @@ msgstr "Estoque" #: src/components/nav/NavigationDrawer.tsx:84 #: src/defaults/links.tsx:48 -#: src/pages/build/BuildDetail.tsx:748 -#: src/pages/build/BuildIndex.tsx:102 +#: src/pages/build/BuildDetail.tsx:753 +#: src/pages/build/BuildIndex.tsx:101 msgid "Manufacturing" msgstr "" #: src/components/nav/NavigationDrawer.tsx:91 #: src/defaults/links.tsx:54 #: src/pages/company/ManufacturerDetail.tsx:9 -#: src/pages/company/ManufacturerPartDetail.tsx:276 +#: src/pages/company/ManufacturerPartDetail.tsx:267 #: src/pages/company/SupplierDetail.tsx:9 -#: src/pages/company/SupplierPartDetail.tsx:360 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:553 -#: src/pages/purchasing/PurchasingIndex.tsx:122 +#: src/pages/company/SupplierPartDetail.tsx:365 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:558 +#: src/pages/purchasing/PurchasingIndex.tsx:212 msgid "Purchasing" msgstr "Comprando" #: src/components/nav/NavigationDrawer.tsx:98 #: src/defaults/links.tsx:60 #: src/pages/company/CustomerDetail.tsx:9 -#: src/pages/sales/ReturnOrderDetail.tsx:554 -#: src/pages/sales/SalesIndex.tsx:153 -#: src/pages/sales/SalesOrderDetail.tsx:619 -#: src/pages/sales/SalesOrderShipmentDetail.tsx:480 +#: src/pages/sales/ReturnOrderDetail.tsx:559 +#: src/pages/sales/SalesIndex.tsx:168 +#: src/pages/sales/SalesOrderDetail.tsx:624 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:448 msgid "Sales" msgstr "Vendas" @@ -2668,21 +2705,21 @@ msgid "Remove search group" msgstr "" #: src/components/nav/SearchDrawer.tsx:288 -#: src/pages/company/ManufacturerPartDetail.tsx:192 -#: src/pages/part/PartDetail.tsx:862 +#: src/pages/company/ManufacturerPartDetail.tsx:179 +#: src/pages/part/PartDetail.tsx:851 #: src/pages/part/PartSupplierDetail.tsx:15 -#: src/pages/purchasing/PurchasingIndex.tsx:81 +#: src/pages/purchasing/PurchasingIndex.tsx:100 msgid "Suppliers" msgstr "Fornecedores" #: src/components/nav/SearchDrawer.tsx:298 #: src/pages/part/PartSupplierDetail.tsx:23 -#: src/pages/purchasing/PurchasingIndex.tsx:98 +#: src/pages/purchasing/PurchasingIndex.tsx:149 msgid "Manufacturers" msgstr "Fabricantes" #: src/components/nav/SearchDrawer.tsx:308 -#: src/pages/sales/SalesIndex.tsx:138 +#: src/pages/sales/SalesIndex.tsx:133 msgid "Customers" msgstr "Clientes" @@ -2773,21 +2810,21 @@ msgstr "" #: src/components/plugins/PluginDrawer.tsx:73 #: src/forms/selectionListFields.tsx:102 -#: src/pages/build/BuildDetail.tsx:250 -#: src/pages/company/CompanyDetail.tsx:93 -#: src/pages/company/ManufacturerPartDetail.tsx:93 -#: src/pages/company/ManufacturerPartDetail.tsx:120 -#: src/pages/company/SupplierPartDetail.tsx:145 -#: src/pages/part/CategoryDetail.tsx:108 +#: src/pages/build/BuildDetail.tsx:251 +#: src/pages/company/CompanyDetail.tsx:94 +#: src/pages/company/ManufacturerPartDetail.tsx:92 +#: src/pages/company/ManufacturerPartDetail.tsx:119 +#: src/pages/company/SupplierPartDetail.tsx:146 +#: src/pages/part/CategoryDetail.tsx:111 #: src/pages/part/PartDetail.tsx:460 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:162 -#: src/pages/sales/ReturnOrderDetail.tsx:129 -#: src/pages/sales/SalesOrderDetail.tsx:119 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:163 +#: src/pages/sales/ReturnOrderDetail.tsx:130 +#: src/pages/sales/SalesOrderDetail.tsx:120 #: src/pages/stock/LocationDetail.tsx:102 #: src/tables/ColumnRenderers.tsx:278 -#: src/tables/build/BuildAllocatedStockTable.tsx:91 -#: src/tables/machine/MachineTypeTable.tsx:161 -#: src/tables/machine/MachineTypeTable.tsx:257 +#: src/tables/build/BuildAllocatedStockTable.tsx:88 +#: src/tables/machine/MachineTypeTable.tsx:159 +#: src/tables/machine/MachineTypeTable.tsx:255 #: src/tables/plugin/PluginListTable.tsx:110 msgid "Description" msgstr "Descrição" @@ -2815,7 +2852,7 @@ msgstr "Data" #: src/tables/company/CompanyTable.tsx:91 #: src/tables/machine/MachineListTable.tsx:384 #: src/tables/machine/MachineListTable.tsx:799 -#: src/tables/part/ParametricPartTable.tsx:354 +#: src/tables/part/ParametricPartTable.tsx:19 #: src/tables/part/PartTable.tsx:197 #: src/tables/part/PartVariantTable.tsx:15 #: src/tables/plugin/PluginListTable.tsx:96 @@ -2837,8 +2874,8 @@ msgid "Installation Path" msgstr "Caminho de Instalação" #: src/components/plugins/PluginDrawer.tsx:116 -#: src/tables/machine/MachineTypeTable.tsx:184 -#: src/tables/machine/MachineTypeTable.tsx:293 +#: src/tables/machine/MachineTypeTable.tsx:182 +#: src/tables/machine/MachineTypeTable.tsx:291 #: src/tables/plugin/PluginListTable.tsx:101 #: src/tables/plugin/PluginListTable.tsx:417 msgid "Builtin" @@ -2850,8 +2887,8 @@ msgstr "Pacote" #: src/components/plugins/PluginDrawer.tsx:133 #: src/pages/Index/Settings/AdminCenter/PluginManagementPanel.tsx:55 -#: src/pages/Index/Settings/SystemSettings.tsx:331 -#: src/pages/Index/Settings/UserSettings.tsx:128 +#: src/pages/Index/Settings/SystemSettings.tsx:337 +#: src/pages/Index/Settings/UserSettings.tsx:129 msgid "Plugin Settings" msgstr "Configurações da Extensão" @@ -2912,7 +2949,7 @@ msgstr "" #~ msgid "Unknown model: {model}" #~ msgstr "Unknown model: {model}" -#: src/components/render/Instance.tsx:249 +#: src/components/render/Instance.tsx:247 msgid "Unknown model: {model_name}" msgstr "" @@ -2940,10 +2977,10 @@ msgstr "Envios" #: src/components/render/Part.tsx:28 #: src/components/render/Plugin.tsx:17 #: src/components/render/User.tsx:37 -#: src/pages/company/CompanyDetail.tsx:323 -#: src/pages/company/SupplierPartDetail.tsx:373 +#: src/pages/company/CompanyDetail.tsx:328 +#: src/pages/company/SupplierPartDetail.tsx:378 #: src/pages/core/UserDetail.tsx:211 -#: src/pages/part/PartDetail.tsx:1027 +#: src/pages/part/PartDetail.tsx:1048 #: src/tables/ColumnRenderers.tsx:410 msgid "Inactive" msgstr "Inativo" @@ -2963,11 +3000,11 @@ msgstr "Sem Estoque" #: src/components/render/Part.tsx:47 #: src/components/wizards/OrderPartsWizard.tsx:135 -#: src/pages/company/SupplierPartDetail.tsx:197 -#: src/pages/company/SupplierPartDetail.tsx:394 -#: src/pages/part/PartDetail.tsx:1015 +#: src/pages/company/SupplierPartDetail.tsx:198 +#: src/pages/company/SupplierPartDetail.tsx:399 +#: src/pages/part/PartDetail.tsx:1030 #: src/tables/bom/BomTable.tsx:444 -#: src/tables/build/BuildLineTable.tsx:222 +#: src/tables/build/BuildLineTable.tsx:223 #: src/tables/part/PartTable.tsx:108 msgid "On Order" msgstr "No Pedido" @@ -2975,9 +3012,9 @@ msgstr "No Pedido" #: src/components/render/Part.tsx:55 #: src/components/wizards/OrderPartsWizard.tsx:141 #: src/pages/part/PartDetail.tsx:587 -#: src/pages/part/PartDetail.tsx:1021 +#: src/pages/part/PartDetail.tsx:1036 #: src/pages/stock/StockDetail.tsx:925 -#: src/tables/part/PartTestResultTable.tsx:297 +#: src/tables/part/PartTestResultTable.tsx:305 #: src/tables/stock/StockItemTable.tsx:359 msgid "In Production" msgstr "Em Produção" @@ -2988,7 +3025,7 @@ msgid "Details" msgstr "Detalhes" #: src/components/render/Part.tsx:112 -#: src/components/wizards/ImportPartWizard.tsx:806 +#: src/components/wizards/ImportPartWizard.tsx:807 #: src/pages/part/PartDetail.tsx:487 #: src/tables/ColumnRenderers.tsx:233 #: src/tables/ColumnRenderers.tsx:242 @@ -3001,16 +3038,16 @@ msgstr "Categoria" #: src/components/render/Stock.tsx:114 #: src/components/render/Stock.tsx:132 #: src/forms/BuildForms.tsx:795 -#: src/forms/PurchaseOrderForms.tsx:595 +#: src/forms/PurchaseOrderForms.tsx:647 #: src/forms/StockForms.tsx:792 #: src/forms/StockForms.tsx:839 -#: src/forms/StockForms.tsx:885 -#: src/forms/StockForms.tsx:924 -#: src/forms/StockForms.tsx:960 -#: src/forms/StockForms.tsx:1003 -#: src/forms/StockForms.tsx:1047 -#: src/forms/StockForms.tsx:1095 -#: src/forms/StockForms.tsx:1139 +#: src/forms/StockForms.tsx:892 +#: src/forms/StockForms.tsx:938 +#: src/forms/StockForms.tsx:976 +#: src/forms/StockForms.tsx:1019 +#: src/forms/StockForms.tsx:1063 +#: src/forms/StockForms.tsx:1111 +#: src/forms/StockForms.tsx:1155 #: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:88 #: src/pages/core/UserDetail.tsx:158 #: src/pages/stock/StockDetail.tsx:298 @@ -3024,7 +3061,7 @@ msgstr "Localização" #: src/components/render/Stock.tsx:99 #: src/pages/stock/StockDetail.tsx:198 #: src/pages/stock/StockDetail.tsx:930 -#: src/tables/build/BuildAllocatedStockTable.tsx:121 +#: src/tables/build/BuildAllocatedStockTable.tsx:118 #: src/tables/build/BuildOutputTable.tsx:107 #: src/tables/sales/SalesOrderAllocationTable.tsx:142 msgid "Serial Number" @@ -3035,9 +3072,9 @@ msgstr "Número de Série" #: src/forms/BuildForms.tsx:240 #: src/forms/BuildForms.tsx:634 #: src/forms/BuildForms.tsx:797 -#: src/forms/PurchaseOrderForms.tsx:801 +#: src/forms/PurchaseOrderForms.tsx:853 #: src/forms/ReturnOrderForms.tsx:243 -#: src/forms/SalesOrderForms.tsx:308 +#: src/forms/SalesOrderForms.tsx:387 #: src/forms/StockForms.tsx:841 #: src/pages/part/PartStockHistoryDetail.tsx:56 #: src/pages/part/PartStockHistoryDetail.tsx:210 @@ -3047,9 +3084,9 @@ msgstr "Número de Série" #: src/pages/part/pricing/PriceBreakPanel.tsx:172 #: src/pages/stock/StockDetail.tsx:258 #: src/pages/stock/StockDetail.tsx:936 -#: src/tables/build/BuildLineTable.tsx:86 +#: src/tables/build/BuildLineTable.tsx:83 #: src/tables/part/PartPurchaseOrdersTable.tsx:94 -#: src/tables/part/PartTestResultTable.tsx:269 +#: src/tables/part/PartTestResultTable.tsx:277 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:175 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:206 #: src/tables/purchasing/SupplierPriceBreakTable.tsx:69 @@ -3064,14 +3101,14 @@ msgstr "Quantidade" #: src/forms/BuildForms.tsx:474 #: src/forms/StockForms.tsx:793 #: src/forms/StockForms.tsx:840 -#: src/forms/StockForms.tsx:886 -#: src/forms/StockForms.tsx:925 -#: src/forms/StockForms.tsx:961 -#: src/forms/StockForms.tsx:1004 -#: src/forms/StockForms.tsx:1048 -#: src/forms/StockForms.tsx:1096 -#: src/forms/StockForms.tsx:1140 -#: src/tables/build/BuildLineTable.tsx:96 +#: src/forms/StockForms.tsx:893 +#: src/forms/StockForms.tsx:939 +#: src/forms/StockForms.tsx:977 +#: src/forms/StockForms.tsx:1020 +#: src/forms/StockForms.tsx:1064 +#: src/forms/StockForms.tsx:1112 +#: src/forms/StockForms.tsx:1156 +#: src/tables/build/BuildLineTable.tsx:93 msgid "Batch" msgstr "Lote" @@ -3307,10 +3344,6 @@ msgstr "Nenhuma configuração especificada" #~ msgid "Part category updated" #~ msgstr "Part category updated" -#: src/components/tables/part/PartParameterTable.tsx:41 -#~ msgid "Parameter" -#~ msgstr "Parameter" - #: src/components/tables/part/PartParameterTable.tsx:114 #~ msgid "Part parameter updated" #~ msgstr "Part parameter updated" @@ -3572,15 +3605,16 @@ msgid "Already Imported" msgstr "" #: src/components/wizards/ImportPartWizard.tsx:205 -#: src/pages/company/CompanyDetail.tsx:136 +#: src/pages/company/CompanyDetail.tsx:137 #: src/pages/company/SupplierDetail.tsx:8 -#: src/pages/company/SupplierPartDetail.tsx:130 -#: src/pages/company/SupplierPartDetail.tsx:235 -#: src/pages/company/SupplierPartDetail.tsx:364 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:156 +#: src/pages/company/SupplierPartDetail.tsx:131 +#: src/pages/company/SupplierPartDetail.tsx:236 +#: src/pages/company/SupplierPartDetail.tsx:369 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:157 #: src/tables/Filter.tsx:360 #: src/tables/company/CompanyTable.tsx:96 #: src/tables/part/PartPurchaseOrdersTable.tsx:43 +#: src/tables/purchasing/PurchaseOrderParametricTable.tsx:34 #: src/tables/purchasing/PurchaseOrderTable.tsx:109 #: src/tables/purchasing/SupplierPriceBreakTable.tsx:40 msgid "Supplier" @@ -3649,7 +3683,7 @@ msgid "Next" msgstr "" #: src/components/wizards/ImportPartWizard.tsx:540 -#: src/pages/part/PartDetail.tsx:1046 +#: src/pages/part/PartDetail.tsx:1067 #: src/tables/part/PartTable.tsx:408 msgid "Edit Part" msgstr "Editar Peça" @@ -3670,28 +3704,28 @@ msgstr "" msgid "Import" msgstr "" -#: src/components/wizards/ImportPartWizard.tsx:691 +#: src/components/wizards/ImportPartWizard.tsx:692 msgid "Parameters created successfully!" msgstr "" -#: src/components/wizards/ImportPartWizard.tsx:719 +#: src/components/wizards/ImportPartWizard.tsx:720 msgid "Failed to create parameters, please fix the errors and try again" msgstr "" #. placeholder {0}: supplierPart?.supplier -#: src/components/wizards/ImportPartWizard.tsx:739 +#: src/components/wizards/ImportPartWizard.tsx:740 msgid "Part imported successfully from supplier {0}." msgstr "" -#: src/components/wizards/ImportPartWizard.tsx:752 +#: src/components/wizards/ImportPartWizard.tsx:753 msgid "Open Part" msgstr "" -#: src/components/wizards/ImportPartWizard.tsx:759 +#: src/components/wizards/ImportPartWizard.tsx:760 msgid "Open Supplier Part" msgstr "" -#: src/components/wizards/ImportPartWizard.tsx:766 +#: src/components/wizards/ImportPartWizard.tsx:767 msgid "Open Manufacturer Part" msgstr "" @@ -3700,25 +3734,19 @@ msgstr "" #~ msgid "Import Part" #~ msgstr "Import Part" -#: src/components/wizards/ImportPartWizard.tsx:802 +#: src/components/wizards/ImportPartWizard.tsx:803 msgid "Import Supplier Part" msgstr "" -#: src/components/wizards/ImportPartWizard.tsx:804 +#: src/components/wizards/ImportPartWizard.tsx:805 msgid "Search Supplier Part" msgstr "" -#: src/components/wizards/ImportPartWizard.tsx:806 -#: src/pages/company/ManufacturerPartDetail.tsx:166 -#: src/pages/part/PartDetail.tsx:793 -msgid "Parameters" -msgstr "Parâmetros" - -#: src/components/wizards/ImportPartWizard.tsx:806 +#: src/components/wizards/ImportPartWizard.tsx:807 msgid "Confirm import" msgstr "" -#: src/components/wizards/ImportPartWizard.tsx:808 +#: src/components/wizards/ImportPartWizard.tsx:809 msgid "Done" msgstr "" @@ -3739,24 +3767,24 @@ msgid "Sales Requirements" msgstr "" #: src/components/wizards/OrderPartsWizard.tsx:129 -#: src/forms/StockForms.tsx:887 -#: src/forms/StockForms.tsx:926 -#: src/forms/StockForms.tsx:962 -#: src/forms/StockForms.tsx:1005 -#: src/forms/StockForms.tsx:1049 -#: src/forms/StockForms.tsx:1097 -#: src/forms/StockForms.tsx:1141 -#: src/pages/company/SupplierPartDetail.tsx:190 -#: src/pages/company/SupplierPartDetail.tsx:378 +#: src/forms/StockForms.tsx:894 +#: src/forms/StockForms.tsx:940 +#: src/forms/StockForms.tsx:978 +#: src/forms/StockForms.tsx:1021 +#: src/forms/StockForms.tsx:1065 +#: src/forms/StockForms.tsx:1113 +#: src/forms/StockForms.tsx:1157 +#: src/pages/company/SupplierPartDetail.tsx:191 +#: src/pages/company/SupplierPartDetail.tsx:383 #: src/pages/part/PartDetail.tsx:534 -#: src/pages/part/PartDetail.tsx:984 +#: src/pages/part/PartDetail.tsx:999 #: src/tables/Filter.tsx:92 #: src/tables/purchasing/SupplierPartTable.tsx:230 msgid "In Stock" msgstr "Em Estoque" #: src/components/wizards/OrderPartsWizard.tsx:146 -#: src/tables/build/BuildLineTable.tsx:404 +#: src/tables/build/BuildLineTable.tsx:405 msgid "Required Quantity" msgstr "" @@ -3848,7 +3876,7 @@ msgid "Please correct the errors in the selected parts" msgstr "" #: src/components/wizards/OrderPartsWizard.tsx:587 -#: src/tables/build/BuildLineTable.tsx:815 +#: src/tables/build/BuildLineTable.tsx:822 #: src/tables/part/PartTable.tsx:522 #: src/tables/sales/SalesOrderLineItemTable.tsx:370 msgid "Order Parts" @@ -4350,9 +4378,9 @@ msgstr "" #: src/forms/BuildForms.tsx:333 #: src/forms/BuildForms.tsx:408 #: src/forms/BuildForms.tsx:685 -#: src/tables/build/BuildAllocatedStockTable.tsx:150 +#: src/tables/build/BuildAllocatedStockTable.tsx:147 #: src/tables/build/BuildOutputTable.tsx:582 -#: src/tables/part/PartTestResultTable.tsx:272 +#: src/tables/part/PartTestResultTable.tsx:280 msgid "Build Output" msgstr "Saída da Produção" @@ -4363,22 +4391,22 @@ msgstr "" #: src/forms/BuildForms.tsx:336 #: src/forms/BuildForms.tsx:411 #: src/forms/BuildForms.tsx:475 -#: src/forms/PurchaseOrderForms.tsx:717 +#: src/forms/PurchaseOrderForms.tsx:769 #: src/forms/ReturnOrderForms.tsx:197 #: src/forms/ReturnOrderForms.tsx:244 #: src/forms/StockForms.tsx:712 #: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:87 -#: src/pages/build/BuildDetail.tsx:222 +#: src/pages/build/BuildDetail.tsx:223 #: src/pages/core/UserDetail.tsx:151 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:168 -#: src/pages/sales/ReturnOrderDetail.tsx:135 -#: src/pages/sales/SalesOrderDetail.tsx:125 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:169 +#: src/pages/sales/ReturnOrderDetail.tsx:136 +#: src/pages/sales/SalesOrderDetail.tsx:126 #: src/pages/stock/StockDetail.tsx:170 #: src/tables/Filter.tsx:274 #: src/tables/build/BuildOutputTable.tsx:404 #: src/tables/machine/MachineListTable.tsx:387 #: src/tables/part/PartPurchaseOrdersTable.tsx:38 -#: src/tables/part/PartTestResultTable.tsx:309 +#: src/tables/part/PartTestResultTable.tsx:317 #: src/tables/sales/ReturnOrderLineItemTable.tsx:138 #: src/tables/sales/ReturnOrderLineItemTable.tsx:176 #: src/tables/settings/CustomStateTable.tsx:79 @@ -4444,18 +4472,19 @@ msgid "Build outputs have been cancelled" msgstr "Os Pedidos de produção foram cancelados" #: src/forms/BuildForms.tsx:631 -#: src/pages/build/BuildDetail.tsx:207 -#: src/pages/company/ManufacturerPartDetail.tsx:85 -#: src/pages/company/SupplierPartDetail.tsx:96 +#: src/pages/build/BuildDetail.tsx:208 +#: src/pages/company/ManufacturerPartDetail.tsx:84 +#: src/pages/company/SupplierPartDetail.tsx:97 #: src/pages/part/PartDetail.tsx:453 #: src/pages/stock/StockDetail.tsx:153 #: src/tables/bom/BomTable.tsx:134 #: src/tables/bom/UsedInTable.tsx:40 -#: src/tables/build/BuildAllocatedStockTable.tsx:108 -#: src/tables/build/BuildLineTable.tsx:336 +#: src/tables/build/BuildAllocatedStockTable.tsx:105 +#: src/tables/build/BuildLineTable.tsx:337 #: src/tables/build/BuildOrderTable.tsx:79 #: src/tables/part/PartSalesAllocationsTable.tsx:61 #: src/tables/part/RelatedPartTable.tsx:73 +#: src/tables/purchasing/ManufacturerPartParametricTable.tsx:21 #: src/tables/purchasing/ManufacturerPartTable.tsx:69 #: src/tables/purchasing/SupplierPartTable.tsx:70 #: src/tables/sales/SalesOrderAllocationTable.tsx:135 @@ -4467,47 +4496,47 @@ msgstr "IPN" #: src/forms/BuildForms.tsx:632 #: src/forms/BuildForms.tsx:796 #: src/forms/BuildForms.tsx:897 -#: src/forms/SalesOrderForms.tsx:306 -#: src/tables/build/BuildAllocatedStockTable.tsx:139 -#: src/tables/build/BuildLineTable.tsx:182 +#: src/forms/SalesOrderForms.tsx:385 +#: src/tables/build/BuildAllocatedStockTable.tsx:136 +#: src/tables/build/BuildLineTable.tsx:183 #: src/tables/sales/SalesOrderLineItemTable.tsx:342 #: src/tables/stock/StockItemTable.tsx:338 msgid "Allocated" msgstr "Alocado" #: src/forms/BuildForms.tsx:667 -#: src/forms/SalesOrderForms.tsx:295 -#: src/pages/build/BuildDetail.tsx:108 -#: src/pages/build/BuildDetail.tsx:326 +#: src/forms/SalesOrderForms.tsx:374 +#: src/pages/build/BuildDetail.tsx:109 +#: src/pages/build/BuildDetail.tsx:327 msgid "Source Location" msgstr "Localização de Origem" #: src/forms/BuildForms.tsx:668 -#: src/forms/SalesOrderForms.tsx:296 +#: src/forms/SalesOrderForms.tsx:375 msgid "Select the source location for the stock allocation" msgstr "" #: src/forms/BuildForms.tsx:700 -#: src/forms/SalesOrderForms.tsx:336 -#: src/tables/build/BuildLineTable.tsx:574 -#: src/tables/build/BuildLineTable.tsx:731 -#: src/tables/build/BuildLineTable.tsx:830 +#: src/forms/SalesOrderForms.tsx:415 +#: src/tables/build/BuildLineTable.tsx:575 +#: src/tables/build/BuildLineTable.tsx:738 +#: src/tables/build/BuildLineTable.tsx:837 #: src/tables/sales/SalesOrderLineItemTable.tsx:380 #: src/tables/sales/SalesOrderLineItemTable.tsx:406 msgid "Allocate Stock" msgstr "Alocar estoque" #: src/forms/BuildForms.tsx:703 -#: src/forms/SalesOrderForms.tsx:341 +#: src/forms/SalesOrderForms.tsx:420 msgid "Stock items allocated" msgstr "" #: src/forms/BuildForms.tsx:816 #: src/forms/BuildForms.tsx:917 -#: src/tables/build/BuildAllocatedStockTable.tsx:240 -#: src/tables/build/BuildAllocatedStockTable.tsx:272 -#: src/tables/build/BuildLineTable.tsx:741 -#: src/tables/build/BuildLineTable.tsx:864 +#: src/tables/build/BuildAllocatedStockTable.tsx:243 +#: src/tables/build/BuildAllocatedStockTable.tsx:279 +#: src/tables/build/BuildLineTable.tsx:748 +#: src/tables/build/BuildLineTable.tsx:871 msgid "Consume Stock" msgstr "" @@ -4522,21 +4551,21 @@ msgstr "" #~ msgstr "Stock items consumed" #: src/forms/BuildForms.tsx:853 -#: src/tables/build/BuildLineTable.tsx:514 +#: src/tables/build/BuildLineTable.tsx:515 #: src/tables/part/PartBuildAllocationsTable.tsx:101 msgid "Fully consumed" msgstr "" #: src/forms/BuildForms.tsx:898 -#: src/tables/build/BuildLineTable.tsx:187 +#: src/tables/build/BuildLineTable.tsx:188 #: src/tables/stock/StockItemTable.tsx:367 msgid "Consumed" msgstr "" -#: src/forms/CommonForms.tsx:88 -#: src/forms/PurchaseOrderForms.tsx:125 +#: src/forms/CommonForms.tsx:92 +#: src/forms/PurchaseOrderForms.tsx:176 #: src/forms/ReturnOrderForms.tsx:138 -#: src/forms/SalesOrderForms.tsx:164 +#: src/forms/SalesOrderForms.tsx:185 msgid "Select project code for this line item" msgstr "" @@ -4544,16 +4573,16 @@ msgstr "" #~ msgid "Company updated" #~ msgstr "Company updated" -#: src/forms/PartForms.tsx:85 -#: src/forms/PartForms.tsx:207 -#: src/pages/part/CategoryDetail.tsx:124 +#: src/forms/PartForms.tsx:99 +#: src/forms/PartForms.tsx:228 +#: src/pages/part/CategoryDetail.tsx:127 #: src/pages/part/PartDetail.tsx:668 #: src/tables/part/PartCategoryTable.tsx:94 #: src/tables/part/PartTable.tsx:325 msgid "Subscribed" msgstr "" -#: src/forms/PartForms.tsx:86 +#: src/forms/PartForms.tsx:100 msgid "Subscribe to notifications for this part" msgstr "" @@ -4565,156 +4594,156 @@ msgstr "" #~ msgid "Part updated" #~ msgstr "Part updated" -#: src/forms/PartForms.tsx:193 +#: src/forms/PartForms.tsx:214 msgid "Parent part category" msgstr "Categoria parente da peça" -#: src/forms/PartForms.tsx:208 +#: src/forms/PartForms.tsx:229 msgid "Subscribe to notifications for this category" msgstr "" -#: src/forms/PurchaseOrderForms.tsx:388 -msgid "Assign Batch Code and Serial Numbers" -msgstr "" - -#: src/forms/PurchaseOrderForms.tsx:390 -msgid "Assign Batch Code" -msgstr "" - -#: src/forms/PurchaseOrderForms.tsx:410 -msgid "Choose Location" -msgstr "Escolher Localização" - -#: src/forms/PurchaseOrderForms.tsx:418 -msgid "Item Destination selected" -msgstr "Destino do item selecionado" - #: src/forms/PurchaseOrderForms.tsx:421 #~ msgid "Assign Batch Code{0}" #~ msgstr "Assign Batch Code{0}" -#: src/forms/PurchaseOrderForms.tsx:428 -msgid "Part category default location selected" -msgstr "Localização padrão da categoria de peça selecionada" +#: src/forms/PurchaseOrderForms.tsx:440 +msgid "Assign Batch Code and Serial Numbers" +msgstr "" -#: src/forms/PurchaseOrderForms.tsx:438 -msgid "Received stock location selected" -msgstr "Localização do estoque recebido selecionada" +#: src/forms/PurchaseOrderForms.tsx:442 +msgid "Assign Batch Code" +msgstr "" #: src/forms/PurchaseOrderForms.tsx:444 #: src/forms/StockForms.tsx:428 #~ msgid "Remove item from list" #~ msgstr "Remove item from list" -#: src/forms/PurchaseOrderForms.tsx:446 +#: src/forms/PurchaseOrderForms.tsx:462 +msgid "Choose Location" +msgstr "Escolher Localização" + +#: src/forms/PurchaseOrderForms.tsx:470 +msgid "Item Destination selected" +msgstr "Destino do item selecionado" + +#: src/forms/PurchaseOrderForms.tsx:480 +msgid "Part category default location selected" +msgstr "Localização padrão da categoria de peça selecionada" + +#: src/forms/PurchaseOrderForms.tsx:490 +msgid "Received stock location selected" +msgstr "Localização do estoque recebido selecionada" + +#: src/forms/PurchaseOrderForms.tsx:498 msgid "Default location selected" msgstr "Localização padrão selecionada" -#: src/forms/PurchaseOrderForms.tsx:507 +#: src/forms/PurchaseOrderForms.tsx:559 msgid "Set Location" msgstr "Definir localização" -#: src/forms/PurchaseOrderForms.tsx:524 -msgid "Set Expiry Date" -msgstr "" - -#: src/forms/PurchaseOrderForms.tsx:532 -#: src/forms/StockForms.tsx:693 -msgid "Adjust Packaging" -msgstr "" - -#: src/forms/PurchaseOrderForms.tsx:540 -#: src/forms/StockForms.tsx:684 -#: src/hooks/UseStockAdjustActions.tsx:148 -msgid "Change Status" -msgstr "Alterar Estado" - -#: src/forms/PurchaseOrderForms.tsx:546 -msgid "Add Note" -msgstr "" - #: src/forms/PurchaseOrderForms.tsx:566 #~ msgid "Serial numbers" #~ msgstr "Serial numbers" +#: src/forms/PurchaseOrderForms.tsx:576 +msgid "Set Expiry Date" +msgstr "" + #: src/forms/PurchaseOrderForms.tsx:582 #~ msgid "Store at line item destination" #~ msgstr "Store at line item destination" -#: src/forms/PurchaseOrderForms.tsx:610 -msgid "Store at default location" -msgstr "Armazenar no local padrão" - -#: src/forms/PurchaseOrderForms.tsx:625 -msgid "Store at line item destination " +#: src/forms/PurchaseOrderForms.tsx:584 +#: src/forms/StockForms.tsx:693 +msgid "Adjust Packaging" msgstr "" -#: src/forms/PurchaseOrderForms.tsx:637 -msgid "Store with already received stock" -msgstr "Armazenar com estoque já recebido" +#: src/forms/PurchaseOrderForms.tsx:592 +#: src/forms/StockForms.tsx:684 +#: src/hooks/UseStockAdjustActions.tsx:148 +msgid "Change Status" +msgstr "Alterar Estado" + +#: src/forms/PurchaseOrderForms.tsx:598 +msgid "Add Note" +msgstr "" #: src/forms/PurchaseOrderForms.tsx:658 #~ msgid "Receive line items" #~ msgstr "Receive line items" -#: src/forms/PurchaseOrderForms.tsx:661 -#: src/pages/build/BuildDetail.tsx:340 +#: src/forms/PurchaseOrderForms.tsx:662 +msgid "Store at default location" +msgstr "Armazenar no local padrão" + +#: src/forms/PurchaseOrderForms.tsx:677 +msgid "Store at line item destination " +msgstr "" + +#: src/forms/PurchaseOrderForms.tsx:689 +msgid "Store with already received stock" +msgstr "Armazenar com estoque já recebido" + +#: src/forms/PurchaseOrderForms.tsx:713 +#: src/pages/build/BuildDetail.tsx:341 #: src/pages/stock/StockDetail.tsx:280 #: src/pages/stock/StockDetail.tsx:952 #: src/tables/Filter.tsx:83 -#: src/tables/build/BuildAllocatedStockTable.tsx:128 +#: src/tables/build/BuildAllocatedStockTable.tsx:125 #: src/tables/build/BuildOutputTable.tsx:112 -#: src/tables/part/PartTestResultTable.tsx:260 -#: src/tables/part/PartTestResultTable.tsx:281 +#: src/tables/part/PartTestResultTable.tsx:268 +#: src/tables/part/PartTestResultTable.tsx:289 #: src/tables/sales/SalesOrderAllocationTable.tsx:149 msgid "Batch Code" msgstr "Código de Lote" -#: src/forms/PurchaseOrderForms.tsx:662 +#: src/forms/PurchaseOrderForms.tsx:714 msgid "Enter batch code for received items" msgstr "" -#: src/forms/PurchaseOrderForms.tsx:675 +#: src/forms/PurchaseOrderForms.tsx:727 #: src/forms/StockForms.tsx:218 msgid "Serial Numbers" msgstr "Números de Série" -#: src/forms/PurchaseOrderForms.tsx:676 +#: src/forms/PurchaseOrderForms.tsx:728 msgid "Enter serial numbers for received items" msgstr "" -#: src/forms/PurchaseOrderForms.tsx:690 +#: src/forms/PurchaseOrderForms.tsx:742 #: src/pages/stock/StockDetail.tsx:382 #: src/tables/stock/StockItemTable.tsx:294 msgid "Expiry Date" msgstr "" -#: src/forms/PurchaseOrderForms.tsx:691 +#: src/forms/PurchaseOrderForms.tsx:743 msgid "Enter an expiry date for received items" msgstr "" -#: src/forms/PurchaseOrderForms.tsx:703 +#: src/forms/PurchaseOrderForms.tsx:755 #: src/forms/StockForms.tsx:728 -#: src/pages/company/SupplierPartDetail.tsx:172 -#: src/pages/company/SupplierPartDetail.tsx:236 +#: src/pages/company/SupplierPartDetail.tsx:173 +#: src/pages/company/SupplierPartDetail.tsx:237 #: src/pages/stock/StockDetail.tsx:419 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:227 msgid "Packaging" msgstr "Embalagem" -#: src/forms/PurchaseOrderForms.tsx:727 -#: src/pages/company/SupplierPartDetail.tsx:120 +#: src/forms/PurchaseOrderForms.tsx:779 +#: src/pages/company/SupplierPartDetail.tsx:121 #: src/tables/ColumnRenderers.tsx:332 msgid "Note" msgstr "Nota" -#: src/forms/PurchaseOrderForms.tsx:799 -#: src/pages/company/SupplierPartDetail.tsx:138 +#: src/forms/PurchaseOrderForms.tsx:851 +#: src/pages/company/SupplierPartDetail.tsx:139 #: src/tables/purchasing/SupplierPriceBreakTable.tsx:49 msgid "SKU" msgstr "SKU" -#: src/forms/PurchaseOrderForms.tsx:800 +#: src/forms/PurchaseOrderForms.tsx:852 #: src/tables/part/PartPurchaseOrdersTable.tsx:127 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:213 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:283 @@ -4722,11 +4751,11 @@ msgstr "SKU" msgid "Received" msgstr "Recebido" -#: src/forms/PurchaseOrderForms.tsx:817 +#: src/forms/PurchaseOrderForms.tsx:869 msgid "Receive Line Items" msgstr "Receber item de linha" -#: src/forms/PurchaseOrderForms.tsx:823 +#: src/forms/PurchaseOrderForms.tsx:875 msgid "Items received" msgstr "" @@ -4738,7 +4767,35 @@ msgstr "" msgid "Item received into stock" msgstr "" -#: src/forms/SalesOrderForms.tsx:401 +#: src/forms/SalesOrderForms.tsx:208 +#: src/forms/SalesOrderForms.tsx:210 +#: src/tables/sales/SalesOrderShipmentTable.tsx:215 +msgid "Check Shipment" +msgstr "" + +#: src/forms/SalesOrderForms.tsx:211 +msgid "Marking the shipment as checked indicates that you have verified that all items included in this shipment are correct" +msgstr "" + +#: src/forms/SalesOrderForms.tsx:221 +msgid "Shipment marked as checked" +msgstr "" + +#: src/forms/SalesOrderForms.tsx:236 +#: src/forms/SalesOrderForms.tsx:238 +#: src/tables/sales/SalesOrderShipmentTable.tsx:228 +msgid "Uncheck Shipment" +msgstr "" + +#: src/forms/SalesOrderForms.tsx:239 +msgid "Marking the shipment as unchecked indicates that the shipment requires further verification" +msgstr "" + +#: src/forms/SalesOrderForms.tsx:249 +msgid "Shipment marked as unchecked" +msgstr "" + +#: src/forms/SalesOrderForms.tsx:480 msgid "Leave blank to use the order address" msgstr "" @@ -4793,150 +4850,150 @@ msgstr "Mover" msgid "Return" msgstr "" -#: src/forms/StockForms.tsx:963 +#: src/forms/StockForms.tsx:979 #: src/pages/Index/Scan.tsx:182 msgid "Count" msgstr "Contar" -#: src/forms/StockForms.tsx:1246 +#: src/forms/StockForms.tsx:1262 #: src/hooks/UseStockAdjustActions.tsx:108 msgid "Add Stock" msgstr "Adicionar Estoque" -#: src/forms/StockForms.tsx:1247 +#: src/forms/StockForms.tsx:1263 msgid "Stock added" msgstr "" -#: src/forms/StockForms.tsx:1250 +#: src/forms/StockForms.tsx:1266 msgid "Increase the quantity of the selected stock items by a given amount." msgstr "" -#: src/forms/StockForms.tsx:1261 +#: src/forms/StockForms.tsx:1277 #: src/hooks/UseStockAdjustActions.tsx:118 msgid "Remove Stock" msgstr "Remover Estoque" -#: src/forms/StockForms.tsx:1262 +#: src/forms/StockForms.tsx:1278 msgid "Stock removed" msgstr "" -#: src/forms/StockForms.tsx:1265 +#: src/forms/StockForms.tsx:1281 msgid "Decrease the quantity of the selected stock items by a given amount." msgstr "" -#: src/forms/StockForms.tsx:1276 +#: src/forms/StockForms.tsx:1292 #: src/hooks/UseStockAdjustActions.tsx:128 msgid "Transfer Stock" msgstr "Transferir Estoque" -#: src/forms/StockForms.tsx:1277 +#: src/forms/StockForms.tsx:1293 msgid "Stock transferred" msgstr "" -#: src/forms/StockForms.tsx:1280 +#: src/forms/StockForms.tsx:1296 msgid "Transfer selected items to the specified location." msgstr "" -#: src/forms/StockForms.tsx:1291 +#: src/forms/StockForms.tsx:1307 #: src/hooks/UseStockAdjustActions.tsx:168 msgid "Return Stock" msgstr "" -#: src/forms/StockForms.tsx:1292 +#: src/forms/StockForms.tsx:1308 msgid "Stock returned" msgstr "" -#: src/forms/StockForms.tsx:1295 +#: src/forms/StockForms.tsx:1311 msgid "Return selected items into stock, to the specified location." msgstr "" -#: src/forms/StockForms.tsx:1306 +#: src/forms/StockForms.tsx:1322 #: src/hooks/UseStockAdjustActions.tsx:98 msgid "Count Stock" msgstr "Contar Estoque" -#: src/forms/StockForms.tsx:1307 +#: src/forms/StockForms.tsx:1323 msgid "Stock counted" msgstr "" -#: src/forms/StockForms.tsx:1310 +#: src/forms/StockForms.tsx:1326 msgid "Count the selected stock items, and adjust the quantity accordingly." msgstr "" -#: src/forms/StockForms.tsx:1321 +#: src/forms/StockForms.tsx:1337 msgid "Change Stock Status" msgstr "Alterar estado do Estoque" -#: src/forms/StockForms.tsx:1322 +#: src/forms/StockForms.tsx:1338 msgid "Stock status changed" msgstr "" -#: src/forms/StockForms.tsx:1325 +#: src/forms/StockForms.tsx:1341 msgid "Change the status of the selected stock items." msgstr "" -#: src/forms/StockForms.tsx:1336 +#: src/forms/StockForms.tsx:1352 #: src/hooks/UseStockAdjustActions.tsx:138 msgid "Merge Stock" msgstr "Mesclar Estoque" -#: src/forms/StockForms.tsx:1337 +#: src/forms/StockForms.tsx:1353 msgid "Stock merged" msgstr "" -#: src/forms/StockForms.tsx:1339 +#: src/forms/StockForms.tsx:1355 msgid "Merge Stock Items" msgstr "" -#: src/forms/StockForms.tsx:1341 +#: src/forms/StockForms.tsx:1357 msgid "Merge operation cannot be reversed" msgstr "" -#: src/forms/StockForms.tsx:1342 +#: src/forms/StockForms.tsx:1358 msgid "Tracking information may be lost when merging items" msgstr "" -#: src/forms/StockForms.tsx:1343 +#: src/forms/StockForms.tsx:1359 msgid "Supplier information may be lost when merging items" msgstr "" -#: src/forms/StockForms.tsx:1361 +#: src/forms/StockForms.tsx:1377 msgid "Assign Stock to Customer" msgstr "" -#: src/forms/StockForms.tsx:1362 +#: src/forms/StockForms.tsx:1378 msgid "Stock assigned to customer" msgstr "" -#: src/forms/StockForms.tsx:1372 +#: src/forms/StockForms.tsx:1388 msgid "Delete Stock Items" msgstr "Excluir Itens de Estoque" -#: src/forms/StockForms.tsx:1373 +#: src/forms/StockForms.tsx:1389 msgid "Stock deleted" msgstr "" -#: src/forms/StockForms.tsx:1376 +#: src/forms/StockForms.tsx:1392 msgid "This operation will permanently delete the selected stock items." msgstr "" -#: src/forms/StockForms.tsx:1385 +#: src/forms/StockForms.tsx:1401 msgid "Parent stock location" msgstr "Localização parente de Estoque" -#: src/forms/StockForms.tsx:1512 +#: src/forms/StockForms.tsx:1528 msgid "Find Serial Number" msgstr "" -#: src/forms/StockForms.tsx:1523 +#: src/forms/StockForms.tsx:1539 msgid "No matching items" msgstr "" -#: src/forms/StockForms.tsx:1529 +#: src/forms/StockForms.tsx:1545 msgid "Multiple matching items" msgstr "" -#: src/forms/StockForms.tsx:1538 +#: src/forms/StockForms.tsx:1554 msgid "Invalid response from server" msgstr "" @@ -4954,7 +5011,6 @@ msgstr "" #: src/tables/FilterSelectDrawer.tsx:137 #: src/tables/FilterSelectDrawer.tsx:149 #: src/tables/part/PartTestResultTable.tsx:206 -#: src/tables/purchasing/ManufacturerPartParameterTable.tsx:42 #: src/tables/stock/StockItemTestResultTable.tsx:207 msgid "Value" msgstr "Valor" @@ -5245,7 +5301,7 @@ msgid "Delete selected stock items" msgstr "" #: src/hooks/UseStockAdjustActions.tsx:205 -#: src/pages/part/PartDetail.tsx:1137 +#: src/pages/part/PartDetail.tsx:1158 msgid "Stock Actions" msgstr "Ações de Estoque" @@ -5933,6 +5989,9 @@ msgstr "" #: src/pages/Index/Settings/AccountSettings/MFASettings.tsx:310 #: src/pages/Index/Settings/AccountSettings/MFASettings.tsx:401 +#: src/tables/build/BuildAllocatedStockTable.tsx:181 +#: src/tables/build/BuildLineTable.tsx:668 +#: src/tables/sales/SalesOrderAllocationTable.tsx:220 msgid "Confirm Removal" msgstr "" @@ -6395,30 +6454,34 @@ msgid "Email Messages" msgstr "" #: src/pages/Index/Settings/AdminCenter/HomePanel.tsx:22 -msgid "Active Alerts" -msgstr "" +#~ msgid "Active Alerts" +#~ msgstr "Active Alerts" #: src/pages/Index/Settings/AdminCenter/HomePanel.tsx:27 -msgid "Inactive Alerts" +#~ msgid "Inactive Alerts" +#~ msgstr "Inactive Alerts" + +#: src/pages/Index/Settings/AdminCenter/HomePanel.tsx:36 +msgid "System Status" msgstr "" -#: src/pages/Index/Settings/AdminCenter/HomePanel.tsx:38 +#: src/pages/Index/Settings/AdminCenter/HomePanel.tsx:47 msgid "Admin Center Information" msgstr "" -#: src/pages/Index/Settings/AdminCenter/HomePanel.tsx:44 +#: src/pages/Index/Settings/AdminCenter/HomePanel.tsx:53 msgid "The home panel (and the whole Admin Center) is a new feature starting with the new UI and was previously (before 1.0) not available." msgstr "" -#: src/pages/Index/Settings/AdminCenter/HomePanel.tsx:51 +#: src/pages/Index/Settings/AdminCenter/HomePanel.tsx:60 msgid "The admin center provides a centralized location for all administration functionality and is meant to replace all interaction with the (django) backend admin interface." msgstr "" -#: src/pages/Index/Settings/AdminCenter/HomePanel.tsx:58 +#: src/pages/Index/Settings/AdminCenter/HomePanel.tsx:67 msgid "Please open feature requests (after checking the tracker) for any existing backend admin functionality you are missing in this UI. The backend admin interface should be used carefully and seldom." msgstr "" -#: src/pages/Index/Settings/AdminCenter/HomePanel.tsx:76 +#: src/pages/Index/Settings/AdminCenter/HomePanel.tsx:85 msgid "Quick Actions" msgstr "" @@ -6477,11 +6540,11 @@ msgstr "Unidades Personalizadas" #: src/pages/Index/Settings/AdminCenter/Index.tsx:195 #: src/pages/part/CategoryDetail.tsx:313 -msgid "Part Parameters" -msgstr "Parâmetros da Peça" +#~ msgid "Part Parameters" +#~ msgstr "Part Parameters" #: src/pages/Index/Settings/AdminCenter/Index.tsx:202 -#: src/pages/part/CategoryDetail.tsx:306 +#: src/pages/part/CategoryDetail.tsx:329 msgid "Category Parameters" msgstr "Parâmetros de Categoria" @@ -6495,7 +6558,7 @@ msgstr "" #: src/pages/Index/Settings/AdminCenter/Index.tsx:235 #: src/pages/Index/Settings/AdminCenter/MachineManagementPanel.tsx:52 -#: src/tables/machine/MachineTypeTable.tsx:325 +#: src/tables/machine/MachineTypeTable.tsx:323 msgid "Machines" msgstr "Máquinas" @@ -6508,8 +6571,8 @@ msgid "Data Management" msgstr "" #: src/pages/Index/Settings/AdminCenter/Index.tsx:270 -#: src/pages/Index/Settings/SystemSettings.tsx:175 -#: src/pages/Index/Settings/UserSettings.tsx:118 +#: src/pages/Index/Settings/SystemSettings.tsx:176 +#: src/pages/Index/Settings/UserSettings.tsx:119 msgid "Reporting" msgstr "Relatórios" @@ -6710,11 +6773,11 @@ msgstr "" msgid "The settings below are specific to each available plugin" msgstr "" -#: src/pages/Index/Settings/SystemSettings.tsx:77 +#: src/pages/Index/Settings/SystemSettings.tsx:78 msgid "Authentication" msgstr "" -#: src/pages/Index/Settings/SystemSettings.tsx:103 +#: src/pages/Index/Settings/SystemSettings.tsx:104 msgid "Barcodes" msgstr "Códigos de barras" @@ -6726,12 +6789,12 @@ msgstr "Códigos de barras" #~ msgid "This panel is a placeholder." #~ msgstr "This panel is a placeholder." -#: src/pages/Index/Settings/SystemSettings.tsx:127 -#: src/pages/Index/Settings/UserSettings.tsx:112 +#: src/pages/Index/Settings/SystemSettings.tsx:128 +#: src/pages/Index/Settings/UserSettings.tsx:113 msgid "The settings below are specific to each available notification method" msgstr "" -#: src/pages/Index/Settings/SystemSettings.tsx:133 +#: src/pages/Index/Settings/SystemSettings.tsx:134 msgid "Pricing" msgstr "Preços" @@ -6739,7 +6802,7 @@ msgstr "Preços" #~ msgid "Exchange Rates" #~ msgstr "Exchange Rates" -#: src/pages/Index/Settings/SystemSettings.tsx:169 +#: src/pages/Index/Settings/SystemSettings.tsx:170 msgid "Labels" msgstr "Etiquetas" @@ -6791,15 +6854,15 @@ msgstr "Marcar como não lido" #~ msgid "Delete notifications" #~ msgstr "Delete notifications" -#: src/pages/build/BuildDetail.tsx:69 +#: src/pages/build/BuildDetail.tsx:70 msgid "No Required Items" msgstr "" -#: src/pages/build/BuildDetail.tsx:71 +#: src/pages/build/BuildDetail.tsx:72 msgid "This build order does not have any required items." msgstr "" -#: src/pages/build/BuildDetail.tsx:72 +#: src/pages/build/BuildDetail.tsx:73 msgid "The assembled part may not have a Bill of Materials (BOM) defined, or the BOM is empty." msgstr "" @@ -6827,7 +6890,7 @@ msgstr "" #~ msgid "Build Order updated" #~ msgstr "Build Order updated" -#: src/pages/build/BuildDetail.tsx:215 +#: src/pages/build/BuildDetail.tsx:216 #: src/pages/part/PartDetail.tsx:480 #: src/pages/stock/StockDetail.tsx:161 #: src/tables/bom/UsedInTable.tsx:44 @@ -6844,10 +6907,10 @@ msgstr "Revisão" #~ msgid "Duplicate build order" #~ msgstr "Duplicate build order" -#: src/pages/build/BuildDetail.tsx:228 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:174 -#: src/pages/sales/ReturnOrderDetail.tsx:141 -#: src/pages/sales/SalesOrderDetail.tsx:131 +#: src/pages/build/BuildDetail.tsx:229 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:175 +#: src/pages/sales/ReturnOrderDetail.tsx:142 +#: src/pages/sales/SalesOrderDetail.tsx:132 #: src/pages/stock/StockDetail.tsx:176 msgid "Custom Status" msgstr "" @@ -6856,9 +6919,9 @@ msgstr "" #~ msgid "Delete build order" #~ msgstr "Delete build order" -#: src/pages/build/BuildDetail.tsx:237 -#: src/pages/build/BuildDetail.tsx:723 -#: src/pages/build/BuildIndex.tsx:28 +#: src/pages/build/BuildDetail.tsx:238 +#: src/pages/build/BuildDetail.tsx:728 +#: src/pages/build/BuildIndex.tsx:34 #: src/pages/stock/LocationDetail.tsx:140 #: src/tables/build/BuildOrderTable.tsx:123 #: src/tables/build/BuildOrderTable.tsx:183 @@ -6866,57 +6929,57 @@ msgstr "" msgid "External" msgstr "Externos" -#: src/pages/build/BuildDetail.tsx:244 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:141 -#: src/pages/sales/ReturnOrderDetail.tsx:108 -#: src/pages/sales/SalesOrderDetail.tsx:98 +#: src/pages/build/BuildDetail.tsx:245 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:142 +#: src/pages/sales/ReturnOrderDetail.tsx:109 +#: src/pages/sales/SalesOrderDetail.tsx:99 #: src/tables/ColumnRenderers.tsx:321 -#: src/tables/build/BuildAllocatedStockTable.tsx:115 -#: src/tables/build/BuildLineTable.tsx:352 +#: src/tables/build/BuildAllocatedStockTable.tsx:112 +#: src/tables/build/BuildLineTable.tsx:353 msgid "Reference" msgstr "Referência" -#: src/pages/build/BuildDetail.tsx:258 +#: src/pages/build/BuildDetail.tsx:259 msgid "Parent Build" msgstr "Produção Parente" -#: src/pages/build/BuildDetail.tsx:269 +#: src/pages/build/BuildDetail.tsx:270 msgid "Build Quantity" msgstr "Quantidade de Produção" -#: src/pages/build/BuildDetail.tsx:275 +#: src/pages/build/BuildDetail.tsx:276 #: src/pages/part/PartDetail.tsx:598 #: src/tables/bom/BomTable.tsx:365 #: src/tables/bom/BomTable.tsx:407 msgid "Can Build" msgstr "Pode Produzir" -#: src/pages/build/BuildDetail.tsx:284 -#: src/pages/build/BuildDetail.tsx:474 +#: src/pages/build/BuildDetail.tsx:285 +#: src/pages/build/BuildDetail.tsx:475 msgid "Completed Outputs" msgstr "Saídas Concluídas" -#: src/pages/build/BuildDetail.tsx:301 +#: src/pages/build/BuildDetail.tsx:302 #: src/tables/Filter.tsx:381 #: src/tables/build/BuildOrderTable.tsx:143 msgid "Issued By" msgstr "Emitido por" -#: src/pages/build/BuildDetail.tsx:309 +#: src/pages/build/BuildDetail.tsx:310 #: src/pages/part/PartDetail.tsx:691 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:261 -#: src/pages/sales/ReturnOrderDetail.tsx:239 -#: src/pages/sales/SalesOrderDetail.tsx:232 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:262 +#: src/pages/sales/ReturnOrderDetail.tsx:240 +#: src/pages/sales/SalesOrderDetail.tsx:233 #: src/tables/ColumnRenderers.tsx:464 #: src/tables/Filter.tsx:319 msgid "Responsible" msgstr "Responsável" -#: src/pages/build/BuildDetail.tsx:327 +#: src/pages/build/BuildDetail.tsx:328 msgid "Any location" msgstr "Qualquer localização" -#: src/pages/build/BuildDetail.tsx:334 +#: src/pages/build/BuildDetail.tsx:335 msgid "Destination Location" msgstr "Local de Destino" @@ -6925,24 +6988,24 @@ msgstr "Local de Destino" #~ msgid "Test Statistics" #~ msgstr "Test Statistics" -#: src/pages/build/BuildDetail.tsx:350 +#: src/pages/build/BuildDetail.tsx:351 #: src/tables/settings/ApiTokenTable.tsx:97 #: src/tables/settings/PendingTasksTable.tsx:41 msgid "Created" msgstr "Criado" -#: src/pages/build/BuildDetail.tsx:358 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:286 -#: src/pages/sales/ReturnOrderDetail.tsx:265 -#: src/pages/sales/SalesOrderDetail.tsx:257 +#: src/pages/build/BuildDetail.tsx:359 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:287 +#: src/pages/sales/ReturnOrderDetail.tsx:266 +#: src/pages/sales/SalesOrderDetail.tsx:258 #: src/tables/ColumnRenderers.tsx:486 msgid "Start Date" msgstr "" -#: src/pages/build/BuildDetail.tsx:366 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:294 -#: src/pages/sales/ReturnOrderDetail.tsx:273 -#: src/pages/sales/SalesOrderDetail.tsx:265 +#: src/pages/build/BuildDetail.tsx:367 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:295 +#: src/pages/sales/ReturnOrderDetail.tsx:274 +#: src/pages/sales/SalesOrderDetail.tsx:266 #: src/tables/ColumnRenderers.tsx:494 #: src/tables/part/PartPurchaseOrdersTable.tsx:101 #: src/tables/sales/ReturnOrderLineItemTable.tsx:154 @@ -6955,185 +7018,185 @@ msgstr "Data alvo" #~ msgstr "Reporting Actions" #: src/pages/build/BuildDetail.tsx:374 +#~ msgid "Print build report" +#~ msgstr "Print build report" + +#: src/pages/build/BuildDetail.tsx:375 #: src/tables/build/BuildOrderTable.tsx:93 #: src/tables/sales/SalesOrderLineItemTable.tsx:347 msgid "Completed" msgstr "Concluído" -#: src/pages/build/BuildDetail.tsx:374 -#~ msgid "Print build report" -#~ msgstr "Print build report" - -#: src/pages/build/BuildDetail.tsx:410 +#: src/pages/build/BuildDetail.tsx:411 msgid "Build Details" msgstr "Detalhes da Produção" -#: src/pages/build/BuildDetail.tsx:416 +#: src/pages/build/BuildDetail.tsx:417 msgid "Required Parts" msgstr "" -#: src/pages/build/BuildDetail.tsx:428 -#: src/pages/sales/SalesOrderDetail.tsx:407 -#: src/pages/sales/SalesOrderShipmentDetail.tsx:261 +#: src/pages/build/BuildDetail.tsx:429 +#: src/pages/sales/SalesOrderDetail.tsx:408 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:259 #: src/tables/part/PartSalesAllocationsTable.tsx:73 msgid "Allocated Stock" msgstr "" -#: src/pages/build/BuildDetail.tsx:444 +#: src/pages/build/BuildDetail.tsx:445 msgid "Consumed Stock" msgstr "Estoque Consumido" -#: src/pages/build/BuildDetail.tsx:461 +#: src/pages/build/BuildDetail.tsx:462 msgid "Incomplete Outputs" msgstr "Saídas Incompletas" -#: src/pages/build/BuildDetail.tsx:489 +#: src/pages/build/BuildDetail.tsx:490 msgid "External Orders" msgstr "" -#: src/pages/build/BuildDetail.tsx:503 +#: src/pages/build/BuildDetail.tsx:504 msgid "Child Build Orders" msgstr "Pedido de Produção Filho" -#: src/pages/build/BuildDetail.tsx:513 -#: src/pages/part/PartDetail.tsx:937 +#: src/pages/build/BuildDetail.tsx:514 +#: src/pages/part/PartDetail.tsx:926 #: src/pages/stock/StockDetail.tsx:587 #: src/tables/build/BuildOutputTable.tsx:654 #: src/tables/stock/StockItemTestResultTable.tsx:173 msgid "Test Results" msgstr "Resultados do teste" -#: src/pages/build/BuildDetail.tsx:550 +#: src/pages/build/BuildDetail.tsx:555 msgid "Edit Build Order" msgstr "Editar Pedido de Produção" -#: src/pages/build/BuildDetail.tsx:572 +#: src/pages/build/BuildDetail.tsx:577 #: src/tables/build/BuildOrderTable.tsx:207 #: src/tables/build/BuildOrderTable.tsx:223 msgid "Add Build Order" msgstr "Novo Pedido de Produção" -#: src/pages/build/BuildDetail.tsx:582 +#: src/pages/build/BuildDetail.tsx:587 msgid "Cancel Build Order" msgstr "Cancelar Pedido de Produção" -#: src/pages/build/BuildDetail.tsx:584 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:416 -#: src/pages/sales/ReturnOrderDetail.tsx:427 -#: src/pages/sales/SalesOrderDetail.tsx:454 +#: src/pages/build/BuildDetail.tsx:589 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:421 +#: src/pages/sales/ReturnOrderDetail.tsx:432 +#: src/pages/sales/SalesOrderDetail.tsx:459 msgid "Order cancelled" msgstr "" -#: src/pages/build/BuildDetail.tsx:585 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:415 -#: src/pages/sales/ReturnOrderDetail.tsx:426 -#: src/pages/sales/SalesOrderDetail.tsx:453 +#: src/pages/build/BuildDetail.tsx:590 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:420 +#: src/pages/sales/ReturnOrderDetail.tsx:431 +#: src/pages/sales/SalesOrderDetail.tsx:458 msgid "Cancel this order" msgstr "" -#: src/pages/build/BuildDetail.tsx:594 +#: src/pages/build/BuildDetail.tsx:599 msgid "Hold Build Order" msgstr "" -#: src/pages/build/BuildDetail.tsx:596 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:423 -#: src/pages/sales/ReturnOrderDetail.tsx:434 -#: src/pages/sales/SalesOrderDetail.tsx:461 +#: src/pages/build/BuildDetail.tsx:601 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:428 +#: src/pages/sales/ReturnOrderDetail.tsx:439 +#: src/pages/sales/SalesOrderDetail.tsx:466 msgid "Place this order on hold" msgstr "" -#: src/pages/build/BuildDetail.tsx:597 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:424 -#: src/pages/sales/ReturnOrderDetail.tsx:435 -#: src/pages/sales/SalesOrderDetail.tsx:462 +#: src/pages/build/BuildDetail.tsx:602 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:429 +#: src/pages/sales/ReturnOrderDetail.tsx:440 +#: src/pages/sales/SalesOrderDetail.tsx:467 msgid "Order placed on hold" msgstr "" -#: src/pages/build/BuildDetail.tsx:602 +#: src/pages/build/BuildDetail.tsx:607 msgid "Issue Build Order" msgstr "" -#: src/pages/build/BuildDetail.tsx:604 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:407 -#: src/pages/sales/ReturnOrderDetail.tsx:418 -#: src/pages/sales/SalesOrderDetail.tsx:445 +#: src/pages/build/BuildDetail.tsx:609 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:412 +#: src/pages/sales/ReturnOrderDetail.tsx:423 +#: src/pages/sales/SalesOrderDetail.tsx:450 msgid "Issue this order" msgstr "" -#: src/pages/build/BuildDetail.tsx:605 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:408 -#: src/pages/sales/ReturnOrderDetail.tsx:419 -#: src/pages/sales/SalesOrderDetail.tsx:446 +#: src/pages/build/BuildDetail.tsx:610 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:413 +#: src/pages/sales/ReturnOrderDetail.tsx:424 +#: src/pages/sales/SalesOrderDetail.tsx:451 msgid "Order issued" msgstr "" -#: src/pages/build/BuildDetail.tsx:624 +#: src/pages/build/BuildDetail.tsx:629 msgid "Complete Build Order" msgstr "" -#: src/pages/build/BuildDetail.tsx:630 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:436 -#: src/pages/sales/ReturnOrderDetail.tsx:442 -#: src/pages/sales/SalesOrderDetail.tsx:480 +#: src/pages/build/BuildDetail.tsx:635 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:441 +#: src/pages/sales/ReturnOrderDetail.tsx:447 +#: src/pages/sales/SalesOrderDetail.tsx:485 msgid "Mark this order as complete" msgstr "" -#: src/pages/build/BuildDetail.tsx:633 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:430 -#: src/pages/sales/ReturnOrderDetail.tsx:443 -#: src/pages/sales/SalesOrderDetail.tsx:481 +#: src/pages/build/BuildDetail.tsx:638 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:435 +#: src/pages/sales/ReturnOrderDetail.tsx:448 +#: src/pages/sales/SalesOrderDetail.tsx:486 msgid "Order completed" msgstr "" -#: src/pages/build/BuildDetail.tsx:660 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:459 -#: src/pages/sales/ReturnOrderDetail.tsx:470 -#: src/pages/sales/SalesOrderDetail.tsx:516 +#: src/pages/build/BuildDetail.tsx:665 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:464 +#: src/pages/sales/ReturnOrderDetail.tsx:475 +#: src/pages/sales/SalesOrderDetail.tsx:521 msgid "Issue Order" msgstr "" -#: src/pages/build/BuildDetail.tsx:667 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:466 -#: src/pages/sales/ReturnOrderDetail.tsx:477 -#: src/pages/sales/SalesOrderDetail.tsx:530 +#: src/pages/build/BuildDetail.tsx:672 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:471 +#: src/pages/sales/ReturnOrderDetail.tsx:482 +#: src/pages/sales/SalesOrderDetail.tsx:535 msgid "Complete Order" msgstr "" -#: src/pages/build/BuildDetail.tsx:686 +#: src/pages/build/BuildDetail.tsx:691 msgid "Build Order Actions" msgstr "Ações do Pedido de Produção" -#: src/pages/build/BuildDetail.tsx:691 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:489 -#: src/pages/sales/ReturnOrderDetail.tsx:500 -#: src/pages/sales/SalesOrderDetail.tsx:554 +#: src/pages/build/BuildDetail.tsx:696 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:494 +#: src/pages/sales/ReturnOrderDetail.tsx:505 +#: src/pages/sales/SalesOrderDetail.tsx:559 msgid "Edit order" msgstr "" -#: src/pages/build/BuildDetail.tsx:695 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:497 -#: src/pages/sales/ReturnOrderDetail.tsx:506 -#: src/pages/sales/SalesOrderDetail.tsx:559 -msgid "Duplicate order" -msgstr "" - -#: src/pages/build/BuildDetail.tsx:699 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:500 +#: src/pages/build/BuildDetail.tsx:700 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:502 #: src/pages/sales/ReturnOrderDetail.tsx:511 -#: src/pages/sales/SalesOrderDetail.tsx:562 -msgid "Hold order" +#: src/pages/sales/SalesOrderDetail.tsx:564 +msgid "Duplicate order" msgstr "" #: src/pages/build/BuildDetail.tsx:704 #: src/pages/purchasing/PurchaseOrderDetail.tsx:505 #: src/pages/sales/ReturnOrderDetail.tsx:516 #: src/pages/sales/SalesOrderDetail.tsx:567 +msgid "Hold order" +msgstr "" + +#: src/pages/build/BuildDetail.tsx:709 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:510 +#: src/pages/sales/ReturnOrderDetail.tsx:521 +#: src/pages/sales/SalesOrderDetail.tsx:572 msgid "Cancel order" msgstr "Cancelar pedido" -#: src/pages/build/BuildDetail.tsx:742 +#: src/pages/build/BuildDetail.tsx:747 #: src/pages/stock/StockDetail.tsx:344 -#: src/tables/build/BuildAllocatedStockTable.tsx:85 +#: src/tables/build/BuildAllocatedStockTable.tsx:82 #: src/tables/part/PartBuildAllocationsTable.tsx:45 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:157 #: src/tables/stock/StockTrackingTable.tsx:109 @@ -7144,7 +7207,7 @@ msgstr "Ordem de Produção" #~ msgid "Build order created" #~ msgstr "Build order created" -#: src/pages/build/BuildIndex.tsx:29 +#: src/pages/build/BuildIndex.tsx:35 #: src/tables/build/BuildOrderTable.tsx:184 msgid "Show external build orders" msgstr "" @@ -7153,61 +7216,82 @@ msgstr "" #~ msgid "New Build Order" #~ msgstr "New Build Order" -#: src/pages/build/BuildIndex.tsx:83 -#: src/pages/purchasing/PurchasingIndex.tsx:69 -#: src/pages/sales/SalesIndex.tsx:92 -#: src/pages/sales/SalesIndex.tsx:125 +#: src/pages/build/BuildIndex.tsx:74 +#: src/pages/part/CategoryDetail.tsx:292 +#: src/pages/purchasing/PurchasingIndex.tsx:74 +#: src/pages/purchasing/PurchasingIndex.tsx:107 +#: src/pages/purchasing/PurchasingIndex.tsx:135 +#: src/pages/purchasing/PurchasingIndex.tsx:156 +#: src/pages/purchasing/PurchasingIndex.tsx:184 +#: src/pages/sales/SalesIndex.tsx:61 +#: src/pages/sales/SalesIndex.tsx:107 +#: src/pages/sales/SalesIndex.tsx:140 msgid "Table View" msgstr "" -#: src/pages/build/BuildIndex.tsx:86 -#: src/pages/purchasing/PurchasingIndex.tsx:72 -#: src/pages/sales/SalesIndex.tsx:95 -#: src/pages/sales/SalesIndex.tsx:128 +#: src/pages/build/BuildIndex.tsx:80 +#: src/pages/purchasing/PurchasingIndex.tsx:80 +#: src/pages/sales/SalesIndex.tsx:67 +#: src/pages/sales/SalesIndex.tsx:113 msgid "Calendar View" msgstr "" -#: src/pages/company/CompanyDetail.tsx:99 +#: src/pages/build/BuildIndex.tsx:86 +#: src/pages/part/CategoryDetail.tsx:306 +#: src/pages/purchasing/PurchasingIndex.tsx:92 +#: src/pages/purchasing/PurchasingIndex.tsx:118 +#: src/pages/purchasing/PurchasingIndex.tsx:141 +#: src/pages/purchasing/PurchasingIndex.tsx:167 +#: src/pages/purchasing/PurchasingIndex.tsx:190 +#: src/pages/sales/SalesIndex.tsx:79 +#: src/pages/sales/SalesIndex.tsx:125 +#: src/pages/sales/SalesIndex.tsx:151 +msgid "Parametric View" +msgstr "" + +#: src/pages/company/CompanyDetail.tsx:100 msgid "Website" msgstr "Site" -#: src/pages/company/CompanyDetail.tsx:107 +#: src/pages/company/CompanyDetail.tsx:108 msgid "Phone Number" msgstr "Número de Telefone" -#: src/pages/company/CompanyDetail.tsx:114 +#: src/pages/company/CompanyDetail.tsx:115 msgid "Email Address" msgstr "Endereço de Email" -#: src/pages/company/CompanyDetail.tsx:121 +#: src/pages/company/CompanyDetail.tsx:122 msgid "Tax ID" msgstr "" -#: src/pages/company/CompanyDetail.tsx:131 +#: src/pages/company/CompanyDetail.tsx:132 msgid "Default Currency" msgstr "Moeda Padrão" -#: src/pages/company/CompanyDetail.tsx:142 +#: src/pages/company/CompanyDetail.tsx:143 #: src/pages/company/ManufacturerDetail.tsx:8 -#: src/pages/company/ManufacturerPartDetail.tsx:104 -#: src/pages/company/ManufacturerPartDetail.tsx:280 -#: src/pages/company/SupplierPartDetail.tsx:152 +#: src/pages/company/ManufacturerPartDetail.tsx:103 +#: src/pages/company/ManufacturerPartDetail.tsx:271 +#: src/pages/company/SupplierPartDetail.tsx:153 #: src/tables/Filter.tsx:347 #: src/tables/company/CompanyTable.tsx:101 #: src/tables/purchasing/SupplierPartTable.tsx:89 msgid "Manufacturer" msgstr "Fabricante" -#: src/pages/company/CompanyDetail.tsx:148 +#: src/pages/company/CompanyDetail.tsx:149 #: src/pages/company/CustomerDetail.tsx:8 #: src/pages/part/pricing/SaleHistoryPanel.tsx:31 -#: src/pages/sales/ReturnOrderDetail.tsx:123 -#: src/pages/sales/SalesOrderDetail.tsx:113 -#: src/pages/sales/SalesOrderShipmentDetail.tsx:113 +#: src/pages/sales/ReturnOrderDetail.tsx:124 +#: src/pages/sales/SalesOrderDetail.tsx:114 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:111 #: src/pages/stock/StockDetail.tsx:370 #: src/tables/company/CompanyTable.tsx:106 +#: src/tables/sales/ReturnOrderParametricTable.tsx:32 #: src/tables/sales/ReturnOrderTable.tsx:108 -#: src/tables/sales/SalesOrderShipmentTable.tsx:111 +#: src/tables/sales/SalesOrderParametricTable.tsx:32 +#: src/tables/sales/SalesOrderShipmentTable.tsx:132 #: src/tables/sales/SalesOrderTable.tsx:133 #: src/tables/stock/StockTrackingTable.tsx:153 msgid "Customer" @@ -7217,11 +7301,11 @@ msgstr "Cliente" #~ msgid "Edit company" #~ msgstr "Edit company" -#: src/pages/company/CompanyDetail.tsx:181 +#: src/pages/company/CompanyDetail.tsx:182 msgid "Company Details" msgstr "" -#: src/pages/company/CompanyDetail.tsx:187 +#: src/pages/company/CompanyDetail.tsx:188 msgid "Supplied Parts" msgstr "Peças fornecidas" @@ -7229,79 +7313,79 @@ msgstr "Peças fornecidas" #~ msgid "Delete company" #~ msgstr "Delete company" -#: src/pages/company/CompanyDetail.tsx:194 +#: src/pages/company/CompanyDetail.tsx:195 msgid "Manufactured Parts" msgstr "Peças Fabricadas" -#: src/pages/company/CompanyDetail.tsx:241 +#: src/pages/company/CompanyDetail.tsx:242 msgid "Assigned Stock" msgstr "Estoque Atribuído" -#: src/pages/company/CompanyDetail.tsx:282 +#: src/pages/company/CompanyDetail.tsx:287 #: src/tables/company/CompanyTable.tsx:82 msgid "Edit Company" msgstr "Editar Empresa" -#: src/pages/company/CompanyDetail.tsx:290 +#: src/pages/company/CompanyDetail.tsx:295 msgid "Delete Company" msgstr "" -#: src/pages/company/CompanyDetail.tsx:305 +#: src/pages/company/CompanyDetail.tsx:310 msgid "Company Actions" msgstr "Ações da Empresa" -#: src/pages/company/ManufacturerPartDetail.tsx:78 -#: src/pages/company/SupplierPartDetail.tsx:89 +#: src/pages/company/ManufacturerPartDetail.tsx:77 +#: src/pages/company/SupplierPartDetail.tsx:90 msgid "Internal Part" msgstr "Peça Interna" -#: src/pages/company/ManufacturerPartDetail.tsx:112 +#: src/pages/company/ManufacturerPartDetail.tsx:111 msgid "Manufacturer Part Number" msgstr "Número da Peça do Fabricante" -#: src/pages/company/ManufacturerPartDetail.tsx:129 -#: src/pages/company/SupplierPartDetail.tsx:113 +#: src/pages/company/ManufacturerPartDetail.tsx:128 +#: src/pages/company/SupplierPartDetail.tsx:114 msgid "External Link" msgstr "Link Externo" -#: src/pages/company/ManufacturerPartDetail.tsx:148 -#: src/pages/company/SupplierPartDetail.tsx:232 +#: src/pages/company/ManufacturerPartDetail.tsx:147 +#: src/pages/company/SupplierPartDetail.tsx:233 #: src/pages/part/PartDetail.tsx:787 msgid "Part Details" msgstr "Detalhes da Peça" -#: src/pages/company/ManufacturerPartDetail.tsx:151 +#: src/pages/company/ManufacturerPartDetail.tsx:150 msgid "Manufacturer Details" msgstr "Detalhes do Fabricante" -#: src/pages/company/ManufacturerPartDetail.tsx:160 +#: src/pages/company/ManufacturerPartDetail.tsx:159 msgid "Manufacturer Part Details" msgstr "Detalhes da Peça do Fabricante" -#: src/pages/company/ManufacturerPartDetail.tsx:178 -#: src/pages/company/SupplierPartDetail.tsx:252 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:381 +#: src/pages/company/ManufacturerPartDetail.tsx:165 +#: src/pages/company/SupplierPartDetail.tsx:253 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:382 msgid "Received Stock" msgstr "Estoque Recebido" -#: src/pages/company/ManufacturerPartDetail.tsx:220 +#: src/pages/company/ManufacturerPartDetail.tsx:211 #: src/tables/purchasing/ManufacturerPartTable.tsx:108 msgid "Edit Manufacturer Part" msgstr "Editar Peça do Fabricante" -#: src/pages/company/ManufacturerPartDetail.tsx:227 +#: src/pages/company/ManufacturerPartDetail.tsx:218 #: src/tables/purchasing/ManufacturerPartTable.tsx:96 #: src/tables/purchasing/ManufacturerPartTable.tsx:115 #: src/tables/purchasing/ManufacturerPartTable.tsx:156 msgid "Add Manufacturer Part" msgstr "Adicionar Peça do Fabricante" -#: src/pages/company/ManufacturerPartDetail.tsx:239 +#: src/pages/company/ManufacturerPartDetail.tsx:230 #: src/tables/purchasing/ManufacturerPartTable.tsx:126 msgid "Delete Manufacturer Part" msgstr "Excluir Peça do Fabricante" -#: src/pages/company/ManufacturerPartDetail.tsx:254 +#: src/pages/company/ManufacturerPartDetail.tsx:245 msgid "Manufacturer Part Actions" msgstr "Ações da Peça do Fabricante" @@ -7309,12 +7393,12 @@ msgstr "Ações da Peça do Fabricante" #~ msgid "ManufacturerPart" #~ msgstr "ManufacturerPart" -#: src/pages/company/SupplierPartDetail.tsx:104 +#: src/pages/company/SupplierPartDetail.tsx:105 #: src/tables/part/RelatedPartTable.tsx:82 msgid "Part Description" msgstr "Descrição da Peça" -#: src/pages/company/SupplierPartDetail.tsx:179 +#: src/pages/company/SupplierPartDetail.tsx:180 #: src/tables/part/PartPurchaseOrdersTable.tsx:73 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:191 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:233 @@ -7322,50 +7406,50 @@ msgstr "Descrição da Peça" msgid "Pack Quantity" msgstr "Quantidade embalada" -#: src/pages/company/SupplierPartDetail.tsx:204 +#: src/pages/company/SupplierPartDetail.tsx:205 msgid "Supplier Availability" msgstr "Disponibilidade do Fornecedor" -#: src/pages/company/SupplierPartDetail.tsx:212 +#: src/pages/company/SupplierPartDetail.tsx:213 msgid "Availability Updated" msgstr "Disponibilidade Atualizada" -#: src/pages/company/SupplierPartDetail.tsx:237 +#: src/pages/company/SupplierPartDetail.tsx:238 msgid "Availability" msgstr "Disponibilidade" -#: src/pages/company/SupplierPartDetail.tsx:246 +#: src/pages/company/SupplierPartDetail.tsx:247 msgid "Supplier Part Details" msgstr "Detalhes da Peça do Fornecedor" -#: src/pages/company/SupplierPartDetail.tsx:279 +#: src/pages/company/SupplierPartDetail.tsx:280 #: src/pages/part/PartPricingPanel.tsx:113 #: src/pages/part/pricing/PricingOverviewPanel.tsx:239 msgid "Supplier Pricing" msgstr "Preço do Fornecedor" -#: src/pages/company/SupplierPartDetail.tsx:308 +#: src/pages/company/SupplierPartDetail.tsx:313 msgid "Supplier Part Actions" msgstr "Ações do Fornecedor da Peça" -#: src/pages/company/SupplierPartDetail.tsx:332 +#: src/pages/company/SupplierPartDetail.tsx:337 #: src/tables/purchasing/SupplierPartTable.tsx:244 msgid "Edit Supplier Part" msgstr "Editar Fornecedor da Peça" -#: src/pages/company/SupplierPartDetail.tsx:340 +#: src/pages/company/SupplierPartDetail.tsx:345 #: src/tables/purchasing/SupplierPartTable.tsx:264 msgid "Delete Supplier Part" msgstr "Excluir Fornecedor da Peça" -#: src/pages/company/SupplierPartDetail.tsx:348 +#: src/pages/company/SupplierPartDetail.tsx:353 #: src/tables/purchasing/SupplierPartTable.tsx:172 #: src/tables/purchasing/SupplierPartTable.tsx:251 msgid "Add Supplier Part" msgstr "Adicionar Fornecedor da Peça" -#: src/pages/company/SupplierPartDetail.tsx:388 -#: src/pages/part/PartDetail.tsx:1003 +#: src/pages/company/SupplierPartDetail.tsx:393 +#: src/pages/part/PartDetail.tsx:1018 msgid "No Stock" msgstr "Sem Estoque" @@ -7412,83 +7496,83 @@ msgstr "" msgid "Basic user" msgstr "" -#: src/pages/part/CategoryDetail.tsx:100 +#: src/pages/part/CategoryDetail.tsx:103 #: src/pages/stock/LocationDetail.tsx:94 #: src/tables/settings/ErrorTable.tsx:63 #: src/tables/settings/ErrorTable.tsx:108 msgid "Path" msgstr "Caminho" -#: src/pages/part/CategoryDetail.tsx:116 +#: src/pages/part/CategoryDetail.tsx:119 msgid "Parent Category" msgstr "Categoria Parente" -#: src/pages/part/CategoryDetail.tsx:139 -#: src/pages/part/CategoryDetail.tsx:271 +#: src/pages/part/CategoryDetail.tsx:142 +#: src/pages/part/CategoryDetail.tsx:279 msgid "Subcategories" msgstr "Sub-categorias" -#: src/pages/part/CategoryDetail.tsx:146 +#: src/pages/part/CategoryDetail.tsx:149 #: src/pages/stock/LocationDetail.tsx:134 #: src/tables/part/PartCategoryTable.tsx:89 #: src/tables/stock/StockLocationTable.tsx:43 msgid "Structural" msgstr "Estrutural" -#: src/pages/part/CategoryDetail.tsx:152 +#: src/pages/part/CategoryDetail.tsx:155 msgid "Parent default location" msgstr "Armazenar na localização Parente" -#: src/pages/part/CategoryDetail.tsx:159 +#: src/pages/part/CategoryDetail.tsx:162 msgid "Default location" msgstr "Localização predefinida" -#: src/pages/part/CategoryDetail.tsx:170 +#: src/pages/part/CategoryDetail.tsx:173 msgid "Top level part category" msgstr "Categoria da peça de nível superior" -#: src/pages/part/CategoryDetail.tsx:180 -#: src/pages/part/CategoryDetail.tsx:248 +#: src/pages/part/CategoryDetail.tsx:183 +#: src/pages/part/CategoryDetail.tsx:251 #: src/tables/part/PartCategoryTable.tsx:122 msgid "Edit Part Category" msgstr "Editar Categoria da Peça" -#: src/pages/part/CategoryDetail.tsx:189 +#: src/pages/part/CategoryDetail.tsx:192 msgid "Move items to parent category" msgstr "" -#: src/pages/part/CategoryDetail.tsx:193 +#: src/pages/part/CategoryDetail.tsx:196 #: src/pages/stock/LocationDetail.tsx:226 msgid "Delete items" msgstr "Eliminar itens" -#: src/pages/part/CategoryDetail.tsx:201 -#: src/pages/part/CategoryDetail.tsx:253 +#: src/pages/part/CategoryDetail.tsx:204 +#: src/pages/part/CategoryDetail.tsx:256 msgid "Delete Part Category" msgstr "Definir Categoria da Peça" -#: src/pages/part/CategoryDetail.tsx:204 +#: src/pages/part/CategoryDetail.tsx:207 msgid "Parts Action" msgstr "Ações da peça" -#: src/pages/part/CategoryDetail.tsx:205 +#: src/pages/part/CategoryDetail.tsx:208 msgid "Action for parts in this category" msgstr "Ações para peças nesta categoria" -#: src/pages/part/CategoryDetail.tsx:211 +#: src/pages/part/CategoryDetail.tsx:214 msgid "Child Categories Action" msgstr "Ações para Categorias Filhas" -#: src/pages/part/CategoryDetail.tsx:212 +#: src/pages/part/CategoryDetail.tsx:215 msgid "Action for child categories in this category" msgstr "Ações para Caregorias Filhas nesta Categoria" -#: src/pages/part/CategoryDetail.tsx:244 +#: src/pages/part/CategoryDetail.tsx:247 #: src/tables/part/PartCategoryTable.tsx:143 msgid "Category Actions" msgstr "Ações da Categoria" -#: src/pages/part/CategoryDetail.tsx:265 +#: src/pages/part/CategoryDetail.tsx:273 msgid "Category Details" msgstr "Detalhes da Categoria" @@ -7586,7 +7670,6 @@ msgid "Category Default Location" msgstr "Localização padrão da Categoria" #: src/pages/part/PartDetail.tsx:507 -#: src/tables/purchasing/ManufacturerPartParameterTable.tsx:48 msgid "Units" msgstr "Unidades" @@ -7601,7 +7684,7 @@ msgstr "Palavras-chave" #: src/pages/part/PartDetail.tsx:542 #: src/tables/bom/BomTable.tsx:439 -#: src/tables/build/BuildLineTable.tsx:305 +#: src/tables/build/BuildLineTable.tsx:306 #: src/tables/part/PartTable.tsx:319 #: src/tables/sales/SalesOrderLineItemTable.tsx:138 msgid "Available Stock" @@ -7609,7 +7692,7 @@ msgstr "Estoque Disponível" #: src/pages/part/PartDetail.tsx:548 #: src/tables/bom/BomTable.tsx:341 -#: src/tables/build/BuildLineTable.tsx:267 +#: src/tables/build/BuildLineTable.tsx:268 #: src/tables/sales/SalesOrderLineItemTable.tsx:180 msgid "On order" msgstr "Na ordem" @@ -7635,7 +7718,7 @@ msgstr "Estoque Mínimo" #~ msgstr "Scheduling" #: src/pages/part/PartDetail.tsx:620 -#: src/tables/part/ParametricPartTable.tsx:359 +#: src/tables/part/ParametricPartTable.tsx:24 #: src/tables/part/PartTable.tsx:203 msgid "Locked" msgstr "" @@ -7672,16 +7755,16 @@ msgid "Saleable Part" msgstr "Peça vendível" #: src/pages/part/PartDetail.tsx:663 -#: src/pages/part/PartDetail.tsx:1033 +#: src/pages/part/PartDetail.tsx:1054 #: src/tables/bom/BomTable.tsx:150 #: src/tables/bom/BomTable.tsx:434 msgid "Virtual Part" msgstr "Peça virtual" #: src/pages/part/PartDetail.tsx:678 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:271 -#: src/pages/sales/ReturnOrderDetail.tsx:249 -#: src/pages/sales/SalesOrderDetail.tsx:242 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:272 +#: src/pages/sales/ReturnOrderDetail.tsx:250 +#: src/pages/sales/SalesOrderDetail.tsx:243 #: src/tables/ColumnRenderers.tsx:502 msgid "Creation Date" msgstr "Data de Criação" @@ -7719,35 +7802,46 @@ msgstr "" msgid "Select Part Revision" msgstr "" -#: src/pages/part/PartDetail.tsx:823 +#: src/pages/part/PartDetail.tsx:812 msgid "Variants" msgstr "Variantes" -#: src/pages/part/PartDetail.tsx:830 +#: src/pages/part/PartDetail.tsx:819 #: src/pages/stock/StockDetail.tsx:542 msgid "Allocations" msgstr "Alocações" -#: src/pages/part/PartDetail.tsx:837 +#: src/pages/part/PartDetail.tsx:826 msgid "Bill of Materials" msgstr "Lista de Materiais" -#: src/pages/part/PartDetail.tsx:849 +#: src/pages/part/PartDetail.tsx:838 msgid "Used In" msgstr "Utilizado em" -#: src/pages/part/PartDetail.tsx:856 +#: src/pages/part/PartDetail.tsx:845 msgid "Part Pricing" msgstr "Preço da Peça" -#: src/pages/part/PartDetail.tsx:926 +#: src/pages/part/PartDetail.tsx:915 msgid "Test Templates" msgstr "Modelos de Teste" -#: src/pages/part/PartDetail.tsx:948 +#: src/pages/part/PartDetail.tsx:937 msgid "Related Parts" msgstr "Peças Relacionadas" +#: src/pages/part/PartDetail.tsx:949 +#: src/tables/ColumnRenderers.tsx:73 +#: src/tables/bom/BomTable.tsx:657 +#: src/tables/part/PartTestTemplateTable.tsx:258 +msgid "Part is Locked" +msgstr "" + +#: src/pages/part/PartDetail.tsx:954 +msgid "Part parameters cannot be edited, as the part is locked" +msgstr "" + #: src/pages/part/PartDetail.tsx:956 #~ msgid "Count part stock" #~ msgstr "Count part stock" @@ -7756,42 +7850,46 @@ msgstr "Peças Relacionadas" #~ msgid "Transfer part stock" #~ msgstr "Transfer part stock" -#: src/pages/part/PartDetail.tsx:1009 +#: src/pages/part/PartDetail.tsx:1024 #: src/tables/part/PartTestTemplateTable.tsx:112 #: src/tables/stock/StockItemTestResultTable.tsx:404 msgid "Required" msgstr "Obrigatório" -#: src/pages/part/PartDetail.tsx:1058 +#: src/pages/part/PartDetail.tsx:1042 +msgid "Deficit" +msgstr "" + +#: src/pages/part/PartDetail.tsx:1079 #: src/tables/part/PartTable.tsx:396 #: src/tables/part/PartTable.tsx:449 msgid "Add Part" msgstr "Adicionar Peça" -#: src/pages/part/PartDetail.tsx:1072 +#: src/pages/part/PartDetail.tsx:1093 msgid "Delete Part" msgstr "Excluir Peça" -#: src/pages/part/PartDetail.tsx:1081 +#: src/pages/part/PartDetail.tsx:1102 msgid "Deleting this part cannot be reversed" msgstr "A exclusão desta parte não pode ser revertida" -#: src/pages/part/PartDetail.tsx:1143 +#: src/pages/part/PartDetail.tsx:1164 #: src/pages/stock/StockDetail.tsx:883 msgid "Order" msgstr "" -#: src/pages/part/PartDetail.tsx:1144 +#: src/pages/part/PartDetail.tsx:1165 #: src/pages/stock/StockDetail.tsx:884 -#: src/tables/build/BuildLineTable.tsx:761 +#: src/tables/build/BuildLineTable.tsx:768 msgid "Order Stock" msgstr "Encomendar Estoque" -#: src/pages/part/PartDetail.tsx:1156 +#: src/pages/part/PartDetail.tsx:1177 msgid "Search by serial number" msgstr "" -#: src/pages/part/PartDetail.tsx:1164 +#: src/pages/part/PartDetail.tsx:1185 #: src/tables/part/PartTable.tsx:506 msgid "Part Actions" msgstr "Ações da Peça" @@ -8040,7 +8138,7 @@ msgstr "Preço de Compra" #: src/pages/part/pricing/PricingOverviewPanel.tsx:288 #: src/pages/stock/StockDetail.tsx:426 -#: src/tables/part/PartParameterTable.tsx:121 +#: src/tables/general/ParameterTable.tsx:101 #: src/tables/stock/StockItemTable.tsx:300 msgid "Last Updated" msgstr "Última Atualização" @@ -8108,17 +8206,17 @@ msgstr "Preço do fornecedor" msgid "Variant Part" msgstr "Peça Variante" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:89 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:90 msgid "Edit Purchase Order" msgstr "Editar ordem de compra" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:125 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:126 #: src/tables/purchasing/PurchaseOrderTable.tsx:154 #: src/tables/purchasing/PurchaseOrderTable.tsx:167 msgid "Add Purchase Order" msgstr "Adicionar Ordem de Compra" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:147 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:148 msgid "Supplier Reference" msgstr "Referencia do fornecedor" @@ -8128,20 +8226,20 @@ msgstr "Referencia do fornecedor" #~ msgid "Order Currency," #~ msgstr "Order Currency," -#: src/pages/purchasing/PurchaseOrderDetail.tsx:187 -#: src/pages/sales/ReturnOrderDetail.tsx:160 -#: src/pages/sales/SalesOrderDetail.tsx:144 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:188 +#: src/pages/sales/ReturnOrderDetail.tsx:161 +#: src/pages/sales/SalesOrderDetail.tsx:145 msgid "Completed Line Items" msgstr "Itens de Linha Concluídos" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:196 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:197 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:272 msgid "Destination" msgstr "Destino" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:202 -#: src/pages/sales/ReturnOrderDetail.tsx:167 -#: src/pages/sales/SalesOrderDetail.tsx:161 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:203 +#: src/pages/sales/ReturnOrderDetail.tsx:168 +#: src/pages/sales/SalesOrderDetail.tsx:162 msgid "Order Currency" msgstr "Moeda do pedido" @@ -8151,97 +8249,97 @@ msgstr "Moeda do pedido" #~ msgid "Created On" #~ msgstr "Created On" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:208 -#: src/pages/sales/ReturnOrderDetail.tsx:174 -#: src/pages/sales/SalesOrderDetail.tsx:167 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:209 +#: src/pages/sales/ReturnOrderDetail.tsx:175 +#: src/pages/sales/SalesOrderDetail.tsx:168 msgid "Total Cost" msgstr "Custo Total" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:237 -#: src/pages/sales/ReturnOrderDetail.tsx:215 -#: src/pages/sales/SalesOrderDetail.tsx:208 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:238 +#: src/pages/sales/ReturnOrderDetail.tsx:216 +#: src/pages/sales/SalesOrderDetail.tsx:209 msgid "Contact Email" msgstr "" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:245 -#: src/pages/sales/ReturnOrderDetail.tsx:223 -#: src/pages/sales/SalesOrderDetail.tsx:216 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:246 +#: src/pages/sales/ReturnOrderDetail.tsx:224 +#: src/pages/sales/SalesOrderDetail.tsx:217 msgid "Contact Phone" msgstr "" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:278 -#: src/pages/sales/ReturnOrderDetail.tsx:257 -#: src/pages/sales/SalesOrderDetail.tsx:249 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:279 +#: src/pages/sales/ReturnOrderDetail.tsx:258 +#: src/pages/sales/SalesOrderDetail.tsx:250 msgid "Issue Date" msgstr "" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:303 -#: src/pages/sales/ReturnOrderDetail.tsx:281 -#: src/pages/sales/SalesOrderDetail.tsx:272 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:304 +#: src/pages/sales/ReturnOrderDetail.tsx:282 +#: src/pages/sales/SalesOrderDetail.tsx:273 #: src/tables/ColumnRenderers.tsx:510 #: src/tables/build/BuildOrderTable.tsx:137 #: src/tables/part/PartPurchaseOrdersTable.tsx:106 msgid "Completion Date" msgstr "" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:333 -#: src/pages/sales/ReturnOrderDetail.tsx:311 -#: src/pages/sales/SalesOrderDetail.tsx:349 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:334 +#: src/pages/sales/ReturnOrderDetail.tsx:312 +#: src/pages/sales/SalesOrderDetail.tsx:350 msgid "Order Details" msgstr "Detalhes do pedido" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:339 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:348 -#: src/pages/sales/ReturnOrderDetail.tsx:153 -#: src/pages/sales/ReturnOrderDetail.tsx:317 -#: src/pages/sales/ReturnOrderDetail.tsx:326 -#: src/pages/sales/SalesOrderDetail.tsx:355 -#: src/pages/sales/SalesOrderDetail.tsx:364 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:340 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:349 +#: src/pages/sales/ReturnOrderDetail.tsx:154 +#: src/pages/sales/ReturnOrderDetail.tsx:318 +#: src/pages/sales/ReturnOrderDetail.tsx:327 +#: src/pages/sales/SalesOrderDetail.tsx:356 +#: src/pages/sales/SalesOrderDetail.tsx:365 msgid "Line Items" msgstr "Itens de linha" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:363 -#: src/pages/sales/ReturnOrderDetail.tsx:341 -#: src/pages/sales/SalesOrderDetail.tsx:378 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:364 +#: src/pages/sales/ReturnOrderDetail.tsx:342 +#: src/pages/sales/SalesOrderDetail.tsx:379 msgid "Extra Line Items" msgstr "" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:405 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:410 msgid "Issue Purchase Order" msgstr "" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:413 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:418 msgid "Cancel Purchase Order" msgstr "" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:421 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:426 msgid "Hold Purchase Order" msgstr "" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:429 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:434 msgid "Complete Purchase Order" msgstr "" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:485 -#: src/pages/sales/ReturnOrderDetail.tsx:496 -#: src/pages/sales/SalesOrderDetail.tsx:549 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:490 +#: src/pages/sales/ReturnOrderDetail.tsx:501 +#: src/pages/sales/SalesOrderDetail.tsx:554 msgid "Order Actions" msgstr "Ações do Pedido" -#: src/pages/sales/ReturnOrderDetail.tsx:114 -#: src/pages/sales/SalesOrderDetail.tsx:104 -#: src/pages/sales/SalesOrderShipmentDetail.tsx:134 +#: src/pages/sales/ReturnOrderDetail.tsx:115 +#: src/pages/sales/SalesOrderDetail.tsx:105 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:132 #: src/tables/sales/SalesOrderTable.tsx:141 msgid "Customer Reference" msgstr "Referência do Cliente" -#: src/pages/sales/ReturnOrderDetail.tsx:195 +#: src/pages/sales/ReturnOrderDetail.tsx:196 msgid "Return Address" msgstr "" -#: src/pages/sales/ReturnOrderDetail.tsx:201 -#: src/pages/sales/SalesOrderDetail.tsx:194 -#: src/pages/sales/SalesOrderShipmentDetail.tsx:181 +#: src/pages/sales/ReturnOrderDetail.tsx:202 +#: src/pages/sales/SalesOrderDetail.tsx:195 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:179 msgid "Not specified" msgstr "" @@ -8249,117 +8347,117 @@ msgstr "" #~ msgid "Order canceled" #~ msgstr "Order canceled" -#: src/pages/sales/ReturnOrderDetail.tsx:389 +#: src/pages/sales/ReturnOrderDetail.tsx:394 msgid "Edit Return Order" msgstr "Editar Pedido de Devolução" -#: src/pages/sales/ReturnOrderDetail.tsx:407 +#: src/pages/sales/ReturnOrderDetail.tsx:412 #: src/tables/sales/ReturnOrderTable.tsx:154 #: src/tables/sales/ReturnOrderTable.tsx:167 msgid "Add Return Order" msgstr "Novo Pedido de Devolução" -#: src/pages/sales/ReturnOrderDetail.tsx:416 +#: src/pages/sales/ReturnOrderDetail.tsx:421 msgid "Issue Return Order" msgstr "" -#: src/pages/sales/ReturnOrderDetail.tsx:424 +#: src/pages/sales/ReturnOrderDetail.tsx:429 msgid "Cancel Return Order" msgstr "" -#: src/pages/sales/ReturnOrderDetail.tsx:432 +#: src/pages/sales/ReturnOrderDetail.tsx:437 msgid "Hold Return Order" msgstr "" -#: src/pages/sales/ReturnOrderDetail.tsx:440 +#: src/pages/sales/ReturnOrderDetail.tsx:445 msgid "Complete Return Order" msgstr "" -#: src/pages/sales/SalesOrderDetail.tsx:153 +#: src/pages/sales/SalesOrderDetail.tsx:154 msgid "Completed Shipments" msgstr "Envios concluídos" -#: src/pages/sales/SalesOrderDetail.tsx:188 -#: src/pages/sales/SalesOrderShipmentDetail.tsx:170 +#: src/pages/sales/SalesOrderDetail.tsx:189 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:168 msgid "Shipping Address" msgstr "" -#: src/pages/sales/SalesOrderDetail.tsx:316 +#: src/pages/sales/SalesOrderDetail.tsx:317 msgid "Edit Sales Order" msgstr "Editar Pedido de Venda" -#: src/pages/sales/SalesOrderDetail.tsx:338 +#: src/pages/sales/SalesOrderDetail.tsx:339 #: src/tables/sales/SalesOrderTable.tsx:108 #: src/tables/sales/SalesOrderTable.tsx:121 msgid "Add Sales Order" msgstr "Novo Pedido de Venda" -#: src/pages/sales/SalesOrderDetail.tsx:396 +#: src/pages/sales/SalesOrderDetail.tsx:397 #: src/tables/sales/SalesOrderTable.tsx:147 msgid "Shipments" msgstr "" -#: src/pages/sales/SalesOrderDetail.tsx:443 +#: src/pages/sales/SalesOrderDetail.tsx:448 msgid "Issue Sales Order" msgstr "" -#: src/pages/sales/SalesOrderDetail.tsx:451 +#: src/pages/sales/SalesOrderDetail.tsx:456 msgid "Cancel Sales Order" msgstr "" -#: src/pages/sales/SalesOrderDetail.tsx:459 +#: src/pages/sales/SalesOrderDetail.tsx:464 msgid "Hold Sales Order" msgstr "" -#: src/pages/sales/SalesOrderDetail.tsx:467 +#: src/pages/sales/SalesOrderDetail.tsx:472 msgid "Ship Sales Order" msgstr "" -#: src/pages/sales/SalesOrderDetail.tsx:469 +#: src/pages/sales/SalesOrderDetail.tsx:474 msgid "Ship this order?" msgstr "" -#: src/pages/sales/SalesOrderDetail.tsx:470 +#: src/pages/sales/SalesOrderDetail.tsx:475 msgid "Order shipped" msgstr "" -#: src/pages/sales/SalesOrderDetail.tsx:478 +#: src/pages/sales/SalesOrderDetail.tsx:483 msgid "Complete Sales Order" msgstr "" -#: src/pages/sales/SalesOrderDetail.tsx:523 +#: src/pages/sales/SalesOrderDetail.tsx:528 msgid "Ship Order" msgstr "" -#: src/pages/sales/SalesOrderShipmentDetail.tsx:142 -#: src/tables/sales/SalesOrderShipmentTable.tsx:135 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:140 +#: src/tables/sales/SalesOrderShipmentTable.tsx:156 msgid "Shipment Reference" msgstr "" -#: src/pages/sales/SalesOrderShipmentDetail.tsx:148 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:146 msgid "Tracking Number" msgstr "" -#: src/pages/sales/SalesOrderShipmentDetail.tsx:156 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:154 msgid "Invoice Number" msgstr "" -#: src/pages/sales/SalesOrderShipmentDetail.tsx:191 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:189 msgid "Allocated Items" msgstr "" -#: src/pages/sales/SalesOrderShipmentDetail.tsx:196 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:194 msgid "Checked By" msgstr "" -#: src/pages/sales/SalesOrderShipmentDetail.tsx:202 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:200 msgid "Not checked" msgstr "" -#: src/pages/sales/SalesOrderShipmentDetail.tsx:208 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:206 #: src/tables/ColumnRenderers.tsx:518 #: src/tables/sales/SalesOrderAllocationTable.tsx:182 -#: src/tables/sales/SalesOrderShipmentTable.tsx:168 +#: src/tables/sales/SalesOrderShipmentTable.tsx:189 msgid "Shipment Date" msgstr "Data de Envio" @@ -8367,108 +8465,82 @@ msgstr "Data de Envio" #~ msgid "Assigned Items" #~ msgstr "Assigned Items" -#: src/pages/sales/SalesOrderShipmentDetail.tsx:216 -#: src/tables/sales/SalesOrderShipmentTable.tsx:172 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:214 +#: src/tables/sales/SalesOrderShipmentTable.tsx:193 msgid "Delivery Date" msgstr "" -#: src/pages/sales/SalesOrderShipmentDetail.tsx:255 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:253 msgid "Shipment Details" msgstr "" -#: src/pages/sales/SalesOrderShipmentDetail.tsx:294 -#: src/pages/sales/SalesOrderShipmentDetail.tsx:438 -#: src/tables/sales/SalesOrderShipmentTable.tsx:90 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:292 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:406 +#: src/tables/sales/SalesOrderShipmentTable.tsx:97 msgid "Edit Shipment" msgstr "" -#: src/pages/sales/SalesOrderShipmentDetail.tsx:301 -#: src/pages/sales/SalesOrderShipmentDetail.tsx:457 -#: src/tables/sales/SalesOrderShipmentTable.tsx:82 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:299 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:425 +#: src/tables/sales/SalesOrderShipmentTable.tsx:89 msgid "Cancel Shipment" msgstr "" -#: src/pages/sales/SalesOrderShipmentDetail.tsx:314 -#: src/tables/sales/SalesOrderShipmentTable.tsx:98 -#: src/tables/sales/SalesOrderShipmentTable.tsx:193 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:312 +#: src/tables/sales/SalesOrderShipmentTable.tsx:119 +#: src/tables/sales/SalesOrderShipmentTable.tsx:238 msgid "Complete Shipment" msgstr "" -#: src/pages/sales/SalesOrderShipmentDetail.tsx:326 -#: src/pages/sales/SalesOrderShipmentDetail.tsx:328 -msgid "Check Shipment" -msgstr "" - -#: src/pages/sales/SalesOrderShipmentDetail.tsx:329 -msgid "Marking the shipment as checked indicates that you have verified that all items included in this shipment are correct" -msgstr "" - #: src/pages/sales/SalesOrderShipmentDetail.tsx:339 -msgid "Shipment marked as checked" -msgstr "" - -#: src/pages/sales/SalesOrderShipmentDetail.tsx:346 -#: src/pages/sales/SalesOrderShipmentDetail.tsx:348 -msgid "Uncheck Shipment" -msgstr "" - -#: src/pages/sales/SalesOrderShipmentDetail.tsx:349 -msgid "Marking the shipment as unchecked indicates that the shipment requires further verification" -msgstr "" - -#: src/pages/sales/SalesOrderShipmentDetail.tsx:359 -msgid "Shipment marked as unchecked" -msgstr "" - -#: src/pages/sales/SalesOrderShipmentDetail.tsx:371 #: src/tables/part/PartPurchaseOrdersTable.tsx:122 msgid "Pending" msgstr "" -#: src/pages/sales/SalesOrderShipmentDetail.tsx:377 -#: src/tables/sales/SalesOrderShipmentTable.tsx:147 -#: src/tables/sales/SalesOrderShipmentTable.tsx:254 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:345 +#: src/tables/sales/SalesOrderShipmentTable.tsx:168 +#: src/tables/sales/SalesOrderShipmentTable.tsx:299 msgid "Checked" msgstr "" -#: src/pages/sales/SalesOrderShipmentDetail.tsx:383 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:351 msgid "Not Checked" msgstr "" -#: src/pages/sales/SalesOrderShipmentDetail.tsx:389 -#: src/tables/sales/SalesOrderShipmentTable.tsx:154 -#: src/tables/sales/SalesOrderShipmentTable.tsx:259 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:357 +#: src/tables/sales/SalesOrderShipmentTable.tsx:175 +#: src/tables/sales/SalesOrderShipmentTable.tsx:304 msgid "Shipped" msgstr "" -#: src/pages/sales/SalesOrderShipmentDetail.tsx:395 -#: src/tables/sales/SalesOrderShipmentTable.tsx:161 -#: src/tables/sales/SalesOrderShipmentTable.tsx:264 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:363 +#: src/tables/sales/SalesOrderShipmentTable.tsx:182 +#: src/tables/sales/SalesOrderShipmentTable.tsx:309 #: src/tables/settings/EmailTable.tsx:31 msgid "Delivered" msgstr "" -#: src/pages/sales/SalesOrderShipmentDetail.tsx:410 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:378 msgid "Send Shipment" msgstr "" -#: src/pages/sales/SalesOrderShipmentDetail.tsx:433 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:401 msgid "Shipment Actions" msgstr "" -#: src/pages/sales/SalesOrderShipmentDetail.tsx:442 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:410 msgid "Check" msgstr "" -#: src/pages/sales/SalesOrderShipmentDetail.tsx:443 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:411 msgid "Mark shipment as checked" msgstr "" -#: src/pages/sales/SalesOrderShipmentDetail.tsx:449 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:417 msgid "Uncheck" msgstr "" -#: src/pages/sales/SalesOrderShipmentDetail.tsx:450 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:418 msgid "Mark shipment as unchecked" msgstr "" @@ -8776,13 +8848,6 @@ msgstr "" msgid "Part is not active" msgstr "A peça não está ativa" -#: src/tables/ColumnRenderers.tsx:73 -#: src/tables/bom/BomTable.tsx:657 -#: src/tables/part/PartParameterTable.tsx:227 -#: src/tables/part/PartTestTemplateTable.tsx:258 -msgid "Part is Locked" -msgstr "" - #: src/tables/ColumnRenderers.tsx:78 msgid "You are subscribed to notifications for this part" msgstr "" @@ -9220,13 +9285,13 @@ msgstr "" #~ msgstr "Show asssmbled items" #: src/tables/bom/BomTable.tsx:315 -#: src/tables/build/BuildLineTable.tsx:276 +#: src/tables/build/BuildLineTable.tsx:277 #: src/tables/part/PartTable.tsx:145 msgid "External stock" msgstr "Estoque externo" #: src/tables/bom/BomTable.tsx:323 -#: src/tables/build/BuildLineTable.tsx:239 +#: src/tables/build/BuildLineTable.tsx:240 msgid "Includes substitute stock" msgstr "Inclui substitutos de estoque" @@ -9235,7 +9300,7 @@ msgstr "Inclui substitutos de estoque" #~ msgstr "Edit Bom Item" #: src/tables/bom/BomTable.tsx:332 -#: src/tables/build/BuildLineTable.tsx:249 +#: src/tables/build/BuildLineTable.tsx:250 #: src/tables/sales/SalesOrderLineItemTable.tsx:166 msgid "Includes variant stock" msgstr "Inclui estoque variante" @@ -9273,8 +9338,8 @@ msgid "Stock Information" msgstr "Informação do Estoque" #: src/tables/bom/BomTable.tsx:399 -#: src/tables/build/BuildLineTable.tsx:496 -#: src/tables/build/BuildLineTable.tsx:537 +#: src/tables/build/BuildLineTable.tsx:497 +#: src/tables/build/BuildLineTable.tsx:538 msgid "Consumable item" msgstr "Item Consumível" @@ -9283,7 +9348,7 @@ msgid "No available stock" msgstr "" #: src/tables/bom/BomTable.tsx:420 -#: src/tables/build/BuildLineTable.tsx:213 +#: src/tables/build/BuildLineTable.tsx:214 msgid "Show testable items" msgstr "" @@ -9292,7 +9357,7 @@ msgid "Show trackable items" msgstr "Mostrar partes rastreáveis" #: src/tables/bom/BomTable.tsx:430 -#: src/tables/build/BuildLineTable.tsx:208 +#: src/tables/build/BuildLineTable.tsx:209 msgid "Show assembled items" msgstr "" @@ -9336,7 +9401,7 @@ msgstr "" #: src/tables/bom/BomTable.tsx:464 #: src/tables/bom/UsedInTable.tsx:85 -#: src/tables/build/BuildLineTable.tsx:202 +#: src/tables/build/BuildLineTable.tsx:203 msgid "Optional" msgstr "Opcional" @@ -9346,7 +9411,7 @@ msgid "Show optional items" msgstr "Mostrar itens opcionais" #: src/tables/bom/BomTable.tsx:469 -#: src/tables/build/BuildLineTable.tsx:197 +#: src/tables/build/BuildLineTable.tsx:198 msgid "Consumable" msgstr "Consumível" @@ -9421,6 +9486,7 @@ msgid "Add a single BOM item" msgstr "" #: src/tables/bom/BomTable.tsx:637 +#: src/tables/general/ParameterTable.tsx:206 #: src/tables/part/PartTable.tsx:546 msgid "Import from File" msgstr "" @@ -9434,8 +9500,8 @@ msgid "Bill of materials cannot be edited, as the part is locked" msgstr "" #: src/tables/bom/UsedInTable.tsx:34 -#: src/tables/build/BuildLineTable.tsx:207 -#: src/tables/part/ParametricPartTable.tsx:364 +#: src/tables/build/BuildLineTable.tsx:208 +#: src/tables/part/ParametricPartTable.tsx:29 #: src/tables/part/PartBuildAllocationsTable.tsx:60 #: src/tables/part/PartTable.tsx:209 #: src/tables/stock/StockItemTable.tsx:333 @@ -9456,11 +9522,11 @@ msgstr "Rastreável" msgid "Show trackable assemblies" msgstr "Mostrar montagens rastreáveis" -#: src/tables/build/BuildAllocatedStockTable.tsx:67 +#: src/tables/build/BuildAllocatedStockTable.tsx:64 msgid "Allocated to Output" msgstr "" -#: src/tables/build/BuildAllocatedStockTable.tsx:68 +#: src/tables/build/BuildAllocatedStockTable.tsx:65 msgid "Show items allocated to a build output" msgstr "" @@ -9473,50 +9539,68 @@ msgstr "" #~ msgid "Include orders for part variants" #~ msgstr "Include orders for part variants" -#: src/tables/build/BuildAllocatedStockTable.tsx:97 +#: src/tables/build/BuildAllocatedStockTable.tsx:94 #: src/tables/part/PartBuildAllocationsTable.tsx:84 #: src/tables/part/PartPurchaseOrdersTable.tsx:132 #: src/tables/part/PartSalesAllocationsTable.tsx:69 #: src/tables/sales/SalesOrderAllocationTable.tsx:122 -#: src/tables/sales/SalesOrderShipmentTable.tsx:130 +#: src/tables/sales/SalesOrderShipmentTable.tsx:151 msgid "Order Status" msgstr "" +#: src/tables/build/BuildAllocatedStockTable.tsx:164 +#: src/tables/build/BuildLineTable.tsx:651 +msgid "Edit Stock Allocation" +msgstr "" + #: src/tables/build/BuildAllocatedStockTable.tsx:164 #~ msgid "Edit Build Item" #~ msgstr "Edit Build Item" -#: src/tables/build/BuildAllocatedStockTable.tsx:167 -#: src/tables/build/BuildLineTable.tsx:650 -msgid "Edit Stock Allocation" -msgstr "" - #: src/tables/build/BuildAllocatedStockTable.tsx:174 #~ msgid "Delete Build Item" #~ msgstr "Delete Build Item" -#: src/tables/build/BuildAllocatedStockTable.tsx:180 -#: src/tables/build/BuildLineTable.tsx:663 -msgid "Delete Stock Allocation" +#: src/tables/build/BuildAllocatedStockTable.tsx:177 +#: src/tables/build/BuildLineTable.tsx:664 +#: src/tables/sales/SalesOrderAllocationTable.tsx:218 +msgid "Remove Allocated Stock" msgstr "" -#: src/tables/build/BuildAllocatedStockTable.tsx:239 +#: src/tables/build/BuildAllocatedStockTable.tsx:180 +#: src/tables/build/BuildLineTable.tsx:663 +#~ msgid "Delete Stock Allocation" +#~ msgstr "Delete Stock Allocation" + +#: src/tables/build/BuildAllocatedStockTable.tsx:182 +#: src/tables/build/BuildLineTable.tsx:669 +#: src/tables/sales/SalesOrderAllocationTable.tsx:221 +msgid "Are you sure you want to remove this allocated stock from the order?" +msgstr "" + +#: src/tables/build/BuildAllocatedStockTable.tsx:242 msgid "Consume" msgstr "" +#: src/tables/build/BuildAllocatedStockTable.tsx:259 +#: src/tables/build/BuildLineTable.tsx:112 +#: src/tables/sales/SalesOrderAllocationTable.tsx:248 +msgid "Remove allocated stock" +msgstr "" + #: src/tables/build/BuildLineTable.tsx:59 #~ msgid "Show lines with available stock" #~ msgstr "Show lines with available stock" -#: src/tables/build/BuildLineTable.tsx:120 +#: src/tables/build/BuildLineTable.tsx:121 msgid "View Stock Item" msgstr "" -#: src/tables/build/BuildLineTable.tsx:183 +#: src/tables/build/BuildLineTable.tsx:184 msgid "Show fully allocated lines" msgstr "" -#: src/tables/build/BuildLineTable.tsx:188 +#: src/tables/build/BuildLineTable.tsx:189 msgid "Show fully consumed lines" msgstr "" @@ -9524,124 +9608,124 @@ msgstr "" #~ msgid "Show allocated lines" #~ msgstr "Show allocated lines" -#: src/tables/build/BuildLineTable.tsx:193 +#: src/tables/build/BuildLineTable.tsx:194 msgid "Show items with sufficient available stock" msgstr "" -#: src/tables/build/BuildLineTable.tsx:198 +#: src/tables/build/BuildLineTable.tsx:199 msgid "Show consumable lines" msgstr "Mostrar linhas de consumíveis" -#: src/tables/build/BuildLineTable.tsx:203 +#: src/tables/build/BuildLineTable.tsx:204 msgid "Show optional lines" msgstr "Mostrar itens opcionais" -#: src/tables/build/BuildLineTable.tsx:212 +#: src/tables/build/BuildLineTable.tsx:213 #: src/tables/part/PartTable.tsx:233 msgid "Testable" msgstr "" -#: src/tables/build/BuildLineTable.tsx:217 +#: src/tables/build/BuildLineTable.tsx:218 #: src/tables/stock/StockItemTable.tsx:388 msgid "Tracked" msgstr "Rastreado" -#: src/tables/build/BuildLineTable.tsx:218 +#: src/tables/build/BuildLineTable.tsx:219 msgid "Show tracked lines" msgstr "Mostrar linhas rastreadas" -#: src/tables/build/BuildLineTable.tsx:223 +#: src/tables/build/BuildLineTable.tsx:224 msgid "Show items with stock on order" msgstr "" -#: src/tables/build/BuildLineTable.tsx:258 +#: src/tables/build/BuildLineTable.tsx:259 #: src/tables/sales/SalesOrderLineItemTable.tsx:172 msgid "In production" msgstr "Em produção" -#: src/tables/build/BuildLineTable.tsx:286 +#: src/tables/build/BuildLineTable.tsx:287 msgid "Insufficient stock" msgstr "" -#: src/tables/build/BuildLineTable.tsx:302 +#: src/tables/build/BuildLineTable.tsx:303 #: src/tables/sales/SalesOrderLineItemTable.tsx:160 #: src/tables/stock/StockItemTable.tsx:191 msgid "No stock available" msgstr "Nenhum estoque disponível" -#: src/tables/build/BuildLineTable.tsx:375 +#: src/tables/build/BuildLineTable.tsx:376 msgid "Gets Inherited" msgstr "" -#: src/tables/build/BuildLineTable.tsx:388 +#: src/tables/build/BuildLineTable.tsx:389 msgid "Unit Quantity" msgstr "Quantidade Unitária" -#: src/tables/build/BuildLineTable.tsx:415 +#: src/tables/build/BuildLineTable.tsx:416 msgid "Setup Quantity" msgstr "" -#: src/tables/build/BuildLineTable.tsx:424 +#: src/tables/build/BuildLineTable.tsx:425 msgid "Attrition" msgstr "" -#: src/tables/build/BuildLineTable.tsx:432 +#: src/tables/build/BuildLineTable.tsx:433 msgid "Rounding Multiple" msgstr "" -#: src/tables/build/BuildLineTable.tsx:441 +#: src/tables/build/BuildLineTable.tsx:442 msgid "BOM Information" msgstr "" -#: src/tables/build/BuildLineTable.tsx:515 +#: src/tables/build/BuildLineTable.tsx:516 #: src/tables/part/PartBuildAllocationsTable.tsx:102 msgid "Fully allocated" msgstr "" -#: src/tables/build/BuildLineTable.tsx:563 +#: src/tables/build/BuildLineTable.tsx:564 #: src/tables/sales/SalesOrderLineItemTable.tsx:311 msgid "Create Build Order" msgstr "" -#: src/tables/build/BuildLineTable.tsx:592 +#: src/tables/build/BuildLineTable.tsx:593 msgid "Auto allocation in progress" msgstr "" -#: src/tables/build/BuildLineTable.tsx:595 -#: src/tables/build/BuildLineTable.tsx:802 +#: src/tables/build/BuildLineTable.tsx:596 +#: src/tables/build/BuildLineTable.tsx:809 msgid "Auto Allocate Stock" msgstr "" -#: src/tables/build/BuildLineTable.tsx:596 +#: src/tables/build/BuildLineTable.tsx:597 msgid "Automatically allocate stock to this build according to the selected options" msgstr "" -#: src/tables/build/BuildLineTable.tsx:616 -#: src/tables/build/BuildLineTable.tsx:630 -#: src/tables/build/BuildLineTable.tsx:751 -#: src/tables/build/BuildLineTable.tsx:852 +#: src/tables/build/BuildLineTable.tsx:617 +#: src/tables/build/BuildLineTable.tsx:631 +#: src/tables/build/BuildLineTable.tsx:758 +#: src/tables/build/BuildLineTable.tsx:859 #: src/tables/build/BuildOutputTable.tsx:355 #: src/tables/build/BuildOutputTable.tsx:360 msgid "Deallocate Stock" msgstr "" -#: src/tables/build/BuildLineTable.tsx:632 +#: src/tables/build/BuildLineTable.tsx:633 msgid "Deallocate all untracked stock for this build order" msgstr "" -#: src/tables/build/BuildLineTable.tsx:634 +#: src/tables/build/BuildLineTable.tsx:635 msgid "Deallocate stock from the selected line item" msgstr "" -#: src/tables/build/BuildLineTable.tsx:638 +#: src/tables/build/BuildLineTable.tsx:639 msgid "Stock has been deallocated" msgstr "" -#: src/tables/build/BuildLineTable.tsx:771 +#: src/tables/build/BuildLineTable.tsx:778 msgid "Build Stock" msgstr "Produzir Estoque" -#: src/tables/build/BuildLineTable.tsx:784 +#: src/tables/build/BuildLineTable.tsx:791 #: src/tables/sales/SalesOrderLineItemTable.tsx:487 msgid "View Part" msgstr "" @@ -9740,7 +9824,7 @@ msgid "Serialize Build Output" msgstr "" #: src/tables/build/BuildOutputTable.tsx:405 -#: src/tables/part/PartTestResultTable.tsx:310 +#: src/tables/part/PartTestResultTable.tsx:318 #: src/tables/stock/StockItemTable.tsx:328 msgid "Filter by stock status" msgstr "Filtrar por estado do estoque" @@ -9965,8 +10049,8 @@ msgid "View Item" msgstr "" #: src/tables/general/ExtraLineItemTable.tsx:95 -#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:299 -#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:403 +#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:300 +#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:405 #: src/tables/sales/ReturnOrderLineItemTable.tsx:83 #: src/tables/sales/ReturnOrderLineItemTable.tsx:187 #: src/tables/sales/SalesOrderLineItemTable.tsx:252 @@ -9975,14 +10059,14 @@ msgid "Add Line Item" msgstr "Adicionar item de linha" #: src/tables/general/ExtraLineItemTable.tsx:108 -#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:320 +#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:322 #: src/tables/sales/ReturnOrderLineItemTable.tsx:96 #: src/tables/sales/SalesOrderLineItemTable.tsx:271 msgid "Edit Line Item" msgstr "Editar item de linha" #: src/tables/general/ExtraLineItemTable.tsx:117 -#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:329 +#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:331 #: src/tables/sales/ReturnOrderLineItemTable.tsx:105 #: src/tables/sales/SalesOrderLineItemTable.tsx:280 msgid "Delete Line Item" @@ -9992,6 +10076,137 @@ msgstr "Excluir Item da Linha" msgid "Add Extra Line Item" msgstr "" +#: src/tables/general/ParameterTable.tsx:88 +msgid "Internal Units" +msgstr "Unidades Internas" + +#: src/tables/general/ParameterTable.tsx:108 +#: src/tables/general/ParameterTable.tsx:123 +msgid "Updated By" +msgstr "" + +#: src/tables/general/ParameterTable.tsx:118 +msgid "Show parameters for enabled templates" +msgstr "" + +#: src/tables/general/ParameterTable.tsx:124 +msgid "Filter by user who last updated the parameter" +msgstr "" + +#: src/tables/general/ParameterTable.tsx:154 +msgid "Import Parameters" +msgstr "" + +#: src/tables/general/ParameterTable.tsx:164 +#: src/tables/general/ParametricDataTable.tsx:261 +#: src/tables/general/ParametricDataTable.tsx:392 +msgid "Add Parameter" +msgstr "Adicionar Parâmetro" + +#: src/tables/general/ParameterTable.tsx:175 +#: src/tables/general/ParameterTable.tsx:222 +#: src/tables/general/ParametricDataTable.tsx:285 +msgid "Edit Parameter" +msgstr "Editar Parâmetro" + +#: src/tables/general/ParameterTable.tsx:183 +#: src/tables/general/ParameterTable.tsx:230 +msgid "Delete Parameter" +msgstr "Excluir Parâmetro" + +#: src/tables/general/ParameterTable.tsx:191 +msgid "Add Parameters" +msgstr "" + +#: src/tables/general/ParameterTable.tsx:197 +msgid "Create Parameter" +msgstr "" + +#: src/tables/general/ParameterTable.tsx:199 +msgid "Create a new parameter" +msgstr "" + +#: src/tables/general/ParameterTable.tsx:208 +msgid "Import parameters from a file" +msgstr "" + +#: src/tables/general/ParameterTemplateTable.tsx:48 +#: src/tables/general/ParameterTemplateTable.tsx:197 +msgid "Add Parameter Template" +msgstr "Adicionar modelo de Parâmetro" + +#: src/tables/general/ParameterTemplateTable.tsx:64 +msgid "Duplicate Parameter Template" +msgstr "" + +#: src/tables/general/ParameterTemplateTable.tsx:78 +msgid "Delete Parameter Template" +msgstr "Excluir Modelo de Parâmetro" + +#: src/tables/general/ParameterTemplateTable.tsx:85 +msgid "Edit Parameter Template" +msgstr "Editar Modelo de Parâmetro" + +#: src/tables/general/ParameterTemplateTable.tsx:138 +msgid "Checkbox" +msgstr "Caixa de seleção" + +#: src/tables/general/ParameterTemplateTable.tsx:139 +msgid "Show checkbox templates" +msgstr "Mostrar modelos da caixa de seleção" + +#: src/tables/general/ParameterTemplateTable.tsx:143 +msgid "Has choices" +msgstr "Possui escolhas" + +#: src/tables/general/ParameterTemplateTable.tsx:144 +msgid "Show templates with choices" +msgstr "Mostrar modelos com escolhas" + +#: src/tables/general/ParameterTemplateTable.tsx:148 +#: src/tables/part/PartTable.tsx:245 +msgid "Has Units" +msgstr "Possui unidades" + +#: src/tables/general/ParameterTemplateTable.tsx:149 +msgid "Show templates with units" +msgstr "Mostrar modelos com escolhas" + +#: src/tables/general/ParameterTemplateTable.tsx:154 +msgid "Show enabled templates" +msgstr "" + +#: src/tables/general/ParameterTemplateTable.tsx:158 +#: src/tables/settings/ImportSessionTable.tsx:111 +#: src/tables/settings/TemplateTable.tsx:368 +msgid "Model Type" +msgstr "Tipo de Modelo" + +#: src/tables/general/ParameterTemplateTable.tsx:159 +msgid "Filter by model type" +msgstr "" + +#: src/tables/general/ParametricDataTable.tsx:79 +msgid "Click to edit" +msgstr "" + +#: src/tables/general/ParametricDataTableFilters.tsx:36 +msgid "True" +msgstr "" + +#: src/tables/general/ParametricDataTableFilters.tsx:37 +msgid "False" +msgstr "" + +#: src/tables/general/ParametricDataTableFilters.tsx:47 +#: src/tables/general/ParametricDataTableFilters.tsx:80 +msgid "Select a choice" +msgstr "" + +#: src/tables/general/ParametricDataTableFilters.tsx:100 +msgid "Enter a value" +msgstr "" + #: src/tables/machine/MachineListTable.tsx:133 msgid "Machine restarted" msgstr "Máquina reiniciada" @@ -10072,7 +10287,7 @@ msgid "Initialized" msgstr "Inicializado" #: src/tables/machine/MachineListTable.tsx:410 -#: src/tables/machine/MachineTypeTable.tsx:307 +#: src/tables/machine/MachineTypeTable.tsx:305 msgid "No errors reported" msgstr "Não há erros relatados" @@ -10133,15 +10348,15 @@ msgstr "Controlador embutido" #~ msgid "Machine type information" #~ msgstr "Machine type information" -#: src/tables/machine/MachineTypeTable.tsx:128 +#: src/tables/machine/MachineTypeTable.tsx:126 msgid "Not Found" msgstr "" -#: src/tables/machine/MachineTypeTable.tsx:131 +#: src/tables/machine/MachineTypeTable.tsx:129 msgid "Machine type not found." msgstr "Tipo de máquina não encontrado." -#: src/tables/machine/MachineTypeTable.tsx:141 +#: src/tables/machine/MachineTypeTable.tsx:139 msgid "Machine Type Information" msgstr "" @@ -10149,34 +10364,34 @@ msgstr "" #~ msgid "Available drivers" #~ msgstr "Available drivers" -#: src/tables/machine/MachineTypeTable.tsx:156 -#: src/tables/machine/MachineTypeTable.tsx:255 +#: src/tables/machine/MachineTypeTable.tsx:154 +#: src/tables/machine/MachineTypeTable.tsx:253 msgid "Slug" msgstr "Lesma" -#: src/tables/machine/MachineTypeTable.tsx:167 -#: src/tables/machine/MachineTypeTable.tsx:276 +#: src/tables/machine/MachineTypeTable.tsx:165 +#: src/tables/machine/MachineTypeTable.tsx:274 msgid "Provider plugin" msgstr "Extensão do Provedor" -#: src/tables/machine/MachineTypeTable.tsx:179 -#: src/tables/machine/MachineTypeTable.tsx:288 +#: src/tables/machine/MachineTypeTable.tsx:177 +#: src/tables/machine/MachineTypeTable.tsx:286 msgid "Provider file" msgstr "Arquivo do Provedor" -#: src/tables/machine/MachineTypeTable.tsx:194 +#: src/tables/machine/MachineTypeTable.tsx:192 msgid "Available Drivers" msgstr "" -#: src/tables/machine/MachineTypeTable.tsx:234 +#: src/tables/machine/MachineTypeTable.tsx:232 msgid "Machine driver not found." msgstr "Controlador da máquina não encontrado." -#: src/tables/machine/MachineTypeTable.tsx:242 +#: src/tables/machine/MachineTypeTable.tsx:240 msgid "Machine driver information" msgstr "Informação do controlador da máquina" -#: src/tables/machine/MachineTypeTable.tsx:262 +#: src/tables/machine/MachineTypeTable.tsx:260 msgid "Machine type" msgstr "Tipo de Máquina" @@ -10188,15 +10403,15 @@ msgstr "Tipo de Máquina" #~ msgid "Machine driver detail" #~ msgstr "Machine driver detail" -#: src/tables/machine/MachineTypeTable.tsx:362 +#: src/tables/machine/MachineTypeTable.tsx:360 msgid "Builtin type" msgstr "Tipo embutido" -#: src/tables/machine/MachineTypeTable.tsx:371 +#: src/tables/machine/MachineTypeTable.tsx:369 msgid "Machine Type Detail" msgstr "" -#: src/tables/machine/MachineTypeTable.tsx:381 +#: src/tables/machine/MachineTypeTable.tsx:379 msgid "Machine Driver Detail" msgstr "" @@ -10214,8 +10429,16 @@ msgstr "Notificação" msgid "Message" msgstr "Mensagem" -#: src/tables/part/ParametricPartTable.tsx:78 -msgid "Click to edit" +#: src/tables/part/ParametricPartTable.tsx:20 +msgid "Show active parts" +msgstr "" + +#: src/tables/part/ParametricPartTable.tsx:25 +msgid "Show locked parts" +msgstr "" + +#: src/tables/part/ParametricPartTable.tsx:30 +msgid "Show assembly parts" msgstr "" #: src/tables/part/ParametricPartTable.tsx:82 @@ -10223,43 +10446,14 @@ msgstr "" #~ msgstr "Edit parameter" #: src/tables/part/ParametricPartTable.tsx:244 -msgid "Add Part Parameter" -msgstr "Adicionar Parâmetro da Peça" +#~ msgid "Add Part Parameter" +#~ msgstr "Add Part Parameter" #: src/tables/part/ParametricPartTable.tsx:258 #: src/tables/part/PartParameterTable.tsx:164 #: src/tables/part/PartParameterTable.tsx:187 -msgid "Edit Part Parameter" -msgstr "Editar Parâmetro da Peça" - -#: src/tables/part/ParametricPartTable.tsx:355 -msgid "Show active parts" -msgstr "" - -#: src/tables/part/ParametricPartTable.tsx:360 -msgid "Show locked parts" -msgstr "" - -#: src/tables/part/ParametricPartTable.tsx:365 -msgid "Show assembly parts" -msgstr "" - -#: src/tables/part/ParametricPartTableFilters.tsx:36 -msgid "True" -msgstr "" - -#: src/tables/part/ParametricPartTableFilters.tsx:37 -msgid "False" -msgstr "" - -#: src/tables/part/ParametricPartTableFilters.tsx:47 -#: src/tables/part/ParametricPartTableFilters.tsx:80 -msgid "Select a choice" -msgstr "" - -#: src/tables/part/ParametricPartTableFilters.tsx:100 -msgid "Enter a value" -msgstr "" +#~ msgid "Edit Part Parameter" +#~ msgstr "Edit Part Parameter" #: src/tables/part/PartBuildAllocationsTable.tsx:64 msgid "Assembly IPN" @@ -10274,7 +10468,7 @@ msgid "Required Stock" msgstr "" #: src/tables/part/PartBuildAllocationsTable.tsx:124 -#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:381 +#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:383 msgid "View Build Order" msgstr "" @@ -10333,85 +10527,22 @@ msgstr "Editar Parâmetro da Categoria" msgid "Delete Category Parameter" msgstr "Excluir Parâmetro da Categoria" -#: src/tables/part/PartCategoryTemplateTable.tsx:87 -msgid "Parameter Template" -msgstr "Modelo do Parâmetro" - #: src/tables/part/PartCategoryTemplateTable.tsx:93 #~ msgid "[{0}]" #~ msgstr "[{0}]" -#: src/tables/part/PartParameterTable.tsx:108 -msgid "Internal Units" -msgstr "Unidades Internas" - -#: src/tables/part/PartParameterTable.tsx:128 -#: src/tables/part/PartParameterTable.tsx:138 -msgid "Updated By" -msgstr "" - -#: src/tables/part/PartParameterTable.tsx:139 -msgid "Filter by user who last updated the parameter" -msgstr "" - #: src/tables/part/PartParameterTable.tsx:148 -msgid "New Part Parameter" -msgstr "Novo Parâmetro da Peça" +#~ msgid "New Part Parameter" +#~ msgstr "New Part Parameter" #: src/tables/part/PartParameterTable.tsx:173 #: src/tables/part/PartParameterTable.tsx:195 -msgid "Delete Part Parameter" -msgstr "Excluir Parâmetro da Peça" +#~ msgid "Delete Part Parameter" +#~ msgstr "Delete Part Parameter" #: src/tables/part/PartParameterTable.tsx:213 -msgid "Add parameter" -msgstr "Adicionar parâmetro" - -#: src/tables/part/PartParameterTable.tsx:232 -msgid "Part parameters cannot be edited, as the part is locked" -msgstr "" - -#: src/tables/part/PartParameterTemplateTable.tsx:36 -msgid "Checkbox" -msgstr "Caixa de seleção" - -#: src/tables/part/PartParameterTemplateTable.tsx:37 -msgid "Show checkbox templates" -msgstr "Mostrar modelos da caixa de seleção" - -#: src/tables/part/PartParameterTemplateTable.tsx:41 -msgid "Has choices" -msgstr "Possui escolhas" - -#: src/tables/part/PartParameterTemplateTable.tsx:42 -msgid "Show templates with choices" -msgstr "Mostrar modelos com escolhas" - -#: src/tables/part/PartParameterTemplateTable.tsx:46 -#: src/tables/part/PartTable.tsx:245 -msgid "Has Units" -msgstr "Possui unidades" - -#: src/tables/part/PartParameterTemplateTable.tsx:47 -msgid "Show templates with units" -msgstr "Mostrar modelos com escolhas" - -#: src/tables/part/PartParameterTemplateTable.tsx:91 -#: src/tables/part/PartParameterTemplateTable.tsx:166 -msgid "Add Parameter Template" -msgstr "Adicionar modelo de Parâmetro" - -#: src/tables/part/PartParameterTemplateTable.tsx:105 -msgid "Duplicate Parameter Template" -msgstr "" - -#: src/tables/part/PartParameterTemplateTable.tsx:117 -msgid "Edit Parameter Template" -msgstr "Editar Modelo de Parâmetro" - -#: src/tables/part/PartParameterTemplateTable.tsx:128 -msgid "Delete Parameter Template" -msgstr "Excluir Modelo de Parâmetro" +#~ msgid "Add parameter" +#~ msgstr "Add parameter" #: src/tables/part/PartParameterTemplateTable.tsx:141 #~ msgid "Add parameter template" @@ -10431,7 +10562,7 @@ msgid "Show received items" msgstr "" #: src/tables/part/PartSalesAllocationsTable.tsx:90 -#: src/tables/sales/SalesOrderShipmentTable.tsx:218 +#: src/tables/sales/SalesOrderShipmentTable.tsx:263 msgid "View Sales Order" msgstr "" @@ -10618,8 +10749,8 @@ msgstr "" #: src/tables/part/PartTestResultTable.tsx:103 #: src/tables/part/PartTestResultTable.tsx:181 -#: src/tables/part/PartTestResultTable.tsx:320 -#: src/tables/part/PartTestResultTable.tsx:334 +#: src/tables/part/PartTestResultTable.tsx:328 +#: src/tables/part/PartTestResultTable.tsx:342 #: src/tables/stock/StockItemTestResultTable.tsx:296 #: src/tables/stock/StockItemTestResultTable.tsx:368 #: src/tables/stock/StockItemTestResultTable.tsx:429 @@ -10644,7 +10775,7 @@ msgstr "" msgid "No Result" msgstr "Sem Resultado" -#: src/tables/part/PartTestResultTable.tsx:298 +#: src/tables/part/PartTestResultTable.tsx:306 msgid "Show build outputs currently in production" msgstr "" @@ -11014,36 +11145,45 @@ msgstr "Instalado" #~ msgid "Parameter updated" #~ msgstr "Parameter updated" -#: src/tables/purchasing/ManufacturerPartParameterTable.tsx:63 -#: src/tables/purchasing/ManufacturerPartParameterTable.tsx:112 -msgid "Add Parameter" -msgstr "Adicionar Parâmetro" - #: src/tables/purchasing/ManufacturerPartParameterTable.tsx:73 #~ msgid "Parameter deleted" #~ msgstr "Parameter deleted" -#: src/tables/purchasing/ManufacturerPartParameterTable.tsx:74 -msgid "Edit Parameter" -msgstr "Editar Parâmetro" - #: src/tables/purchasing/ManufacturerPartParameterTable.tsx:74 #~ msgid "Are you sure you want to delete this parameter?" #~ msgstr "Are you sure you want to delete this parameter?" -#: src/tables/purchasing/ManufacturerPartParameterTable.tsx:82 -msgid "Delete Parameter" -msgstr "Excluir Parâmetro" - -#: src/tables/purchasing/ManufacturerPartTable.tsx:63 -#~ msgid "Create Manufacturer Part" -#~ msgstr "Create Manufacturer Part" - +#: src/tables/purchasing/ManufacturerPartParametricTable.tsx:34 #: src/tables/purchasing/ManufacturerPartTable.tsx:82 #: src/tables/purchasing/SupplierPartTable.tsx:99 msgid "MPN" msgstr "MPN" +#: src/tables/purchasing/ManufacturerPartParametricTable.tsx:44 +#: src/tables/purchasing/ManufacturerPartTable.tsx:134 +#: src/tables/purchasing/SupplierPartTable.tsx:220 +msgid "Active Part" +msgstr "Peça Ativa" + +#: src/tables/purchasing/ManufacturerPartParametricTable.tsx:45 +#: src/tables/purchasing/ManufacturerPartTable.tsx:135 +msgid "Show manufacturer parts for active internal parts." +msgstr "" + +#: src/tables/purchasing/ManufacturerPartParametricTable.tsx:50 +#: src/tables/purchasing/ManufacturerPartTable.tsx:140 +msgid "Active Manufacturer" +msgstr "" + +#: src/tables/purchasing/ManufacturerPartParametricTable.tsx:51 +#: src/tables/purchasing/ManufacturerPartTable.tsx:142 +msgid "Show manufacturer parts for active manufacturers." +msgstr "" + +#: src/tables/purchasing/ManufacturerPartTable.tsx:63 +#~ msgid "Create Manufacturer Part" +#~ msgstr "Create Manufacturer Part" + #: src/tables/purchasing/ManufacturerPartTable.tsx:100 #~ msgid "Manufacturer part updated" #~ msgstr "Manufacturer part updated" @@ -11056,25 +11196,8 @@ msgstr "MPN" #~ msgid "Are you sure you want to remove this manufacturer part?" #~ msgstr "Are you sure you want to remove this manufacturer part?" -#: src/tables/purchasing/ManufacturerPartTable.tsx:134 -#: src/tables/purchasing/SupplierPartTable.tsx:220 -msgid "Active Part" -msgstr "Peça Ativa" - -#: src/tables/purchasing/ManufacturerPartTable.tsx:135 -msgid "Show manufacturer parts for active internal parts." -msgstr "" - -#: src/tables/purchasing/ManufacturerPartTable.tsx:140 -msgid "Active Manufacturer" -msgstr "" - -#: src/tables/purchasing/ManufacturerPartTable.tsx:142 -msgid "Show manufacturer parts for active manufacturers." -msgstr "" - #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:115 -#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:397 +#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:399 msgid "Import Line Items" msgstr "" @@ -11100,11 +11223,11 @@ msgstr "" #~ msgid "Add line item" #~ msgstr "Add line item" -#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:350 +#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:352 msgid "Receive line item" msgstr "Receber item de linha" -#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:414 +#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:416 msgid "Receive items" msgstr "Receber itens" @@ -11202,25 +11325,25 @@ msgid "Not shipped" msgstr "" #: src/tables/sales/SalesOrderAllocationTable.tsx:211 -#: src/tables/sales/SalesOrderAllocationTable.tsx:229 +#: src/tables/sales/SalesOrderAllocationTable.tsx:235 msgid "Edit Allocation" msgstr "" #: src/tables/sales/SalesOrderAllocationTable.tsx:218 #: src/tables/sales/SalesOrderAllocationTable.tsx:241 -msgid "Delete Allocation" -msgstr "" +#~ msgid "Delete Allocation" +#~ msgstr "Delete Allocation" -#: src/tables/sales/SalesOrderAllocationTable.tsx:252 -#: src/tables/sales/SalesOrderAllocationTable.tsx:253 +#: src/tables/sales/SalesOrderAllocationTable.tsx:261 +#: src/tables/sales/SalesOrderAllocationTable.tsx:262 msgid "View Shipment" msgstr "" -#: src/tables/sales/SalesOrderAllocationTable.tsx:308 +#: src/tables/sales/SalesOrderAllocationTable.tsx:317 msgid "Assign to Shipment" msgstr "" -#: src/tables/sales/SalesOrderAllocationTable.tsx:324 +#: src/tables/sales/SalesOrderAllocationTable.tsx:333 msgid "Assign to shipment" msgstr "" @@ -11260,35 +11383,35 @@ msgstr "Encomendar Estoque" #~ msgid "Delete Shipment" #~ msgstr "Delete Shipment" -#: src/tables/sales/SalesOrderShipmentTable.tsx:72 +#: src/tables/sales/SalesOrderShipmentTable.tsx:79 msgid "Create Shipment" msgstr "" -#: src/tables/sales/SalesOrderShipmentTable.tsx:143 +#: src/tables/sales/SalesOrderShipmentTable.tsx:164 msgid "Items" msgstr "" -#: src/tables/sales/SalesOrderShipmentTable.tsx:203 +#: src/tables/sales/SalesOrderShipmentTable.tsx:248 msgid "Edit shipment" msgstr "" -#: src/tables/sales/SalesOrderShipmentTable.tsx:211 +#: src/tables/sales/SalesOrderShipmentTable.tsx:256 msgid "Cancel shipment" msgstr "" -#: src/tables/sales/SalesOrderShipmentTable.tsx:241 +#: src/tables/sales/SalesOrderShipmentTable.tsx:286 msgid "Add shipment" msgstr "" -#: src/tables/sales/SalesOrderShipmentTable.tsx:255 +#: src/tables/sales/SalesOrderShipmentTable.tsx:300 msgid "Show shipments which have been checked" msgstr "" -#: src/tables/sales/SalesOrderShipmentTable.tsx:260 +#: src/tables/sales/SalesOrderShipmentTable.tsx:305 msgid "Show shipments which have been shipped" msgstr "" -#: src/tables/sales/SalesOrderShipmentTable.tsx:265 +#: src/tables/sales/SalesOrderShipmentTable.tsx:310 msgid "Show shipments which have been delivered" msgstr "" @@ -11622,11 +11745,6 @@ msgstr "" msgid "Imported Rows" msgstr "" -#: src/tables/settings/ImportSessionTable.tsx:111 -#: src/tables/settings/TemplateTable.tsx:368 -msgid "Model Type" -msgstr "Tipo de Modelo" - #: src/tables/settings/ImportSessionTable.tsx:112 #: src/tables/settings/TemplateTable.tsx:369 msgid "Filter by target model type" diff --git a/src/frontend/src/locales/pt_BR/messages.po b/src/frontend/src/locales/pt_BR/messages.po index 9d4dbfca1f..3541429a6f 100644 --- a/src/frontend/src/locales/pt_BR/messages.po +++ b/src/frontend/src/locales/pt_BR/messages.po @@ -8,7 +8,7 @@ msgstr "" "Language: pt\n" "Project-Id-Version: inventree\n" "Report-Msgid-Bugs-To: \n" -"PO-Revision-Date: 2025-11-19 19:39\n" +"PO-Revision-Date: 2025-12-07 07:36\n" "Last-Translator: \n" "Language-Team: Portuguese, Brazilian\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" @@ -30,7 +30,7 @@ msgid "Edit" msgstr "Editar" #: lib/components/RowActions.tsx:56 -#: src/components/forms/ApiForm.tsx:735 +#: src/components/forms/ApiForm.tsx:754 #: src/components/items/ActionDropdown.tsx:257 #: src/components/items/RoleTable.tsx:155 #: src/hooks/UseForm.tsx:164 @@ -56,24 +56,24 @@ msgstr "Cancelar" #: lib/components/RowActions.tsx:136 #: src/components/nav/NavigationDrawer.tsx:190 -#: src/forms/PurchaseOrderForms.tsx:802 +#: src/forms/PurchaseOrderForms.tsx:854 #: src/forms/StockForms.tsx:796 #: src/forms/StockForms.tsx:843 -#: src/forms/StockForms.tsx:889 -#: src/forms/StockForms.tsx:928 -#: src/forms/StockForms.tsx:964 -#: src/forms/StockForms.tsx:1050 +#: src/forms/StockForms.tsx:896 +#: src/forms/StockForms.tsx:942 +#: src/forms/StockForms.tsx:980 +#: src/forms/StockForms.tsx:1066 #: src/pages/Index/Settings/AccountSettings/MFASettings.tsx:962 msgid "Actions" msgstr "Ações" #: lib/components/SearchInput.tsx:34 -#: src/components/forms/fields/RelatedModelField.tsx:408 +#: src/components/forms/fields/RelatedModelField.tsx:479 #: src/components/nav/Header.tsx:169 #: src/components/wizards/ImportPartWizard.tsx:200 #: src/components/wizards/ImportPartWizard.tsx:233 -#: src/pages/Index/Settings/UserSettings.tsx:74 -#: src/pages/part/PartDetail.tsx:1155 +#: src/pages/Index/Settings/UserSettings.tsx:75 +#: src/pages/part/PartDetail.tsx:1176 msgid "Search" msgstr "Buscar" @@ -95,7 +95,7 @@ msgstr "Sim" msgid "No" msgstr "Não" -#: lib/enums/ModelInformation.tsx:28 +#: lib/enums/ModelInformation.tsx:29 #: src/components/wizards/OrderPartsWizard.tsx:279 #: src/forms/BuildForms.tsx:332 #: src/forms/BuildForms.tsx:407 @@ -103,208 +103,234 @@ msgstr "Não" #: src/forms/BuildForms.tsx:630 #: src/forms/BuildForms.tsx:793 #: src/forms/BuildForms.tsx:896 -#: src/forms/PurchaseOrderForms.tsx:798 +#: src/forms/PurchaseOrderForms.tsx:850 #: src/forms/ReturnOrderForms.tsx:242 -#: src/forms/SalesOrderForms.tsx:305 +#: src/forms/SalesOrderForms.tsx:384 #: src/forms/StockForms.tsx:360 #: src/forms/StockForms.tsx:791 #: src/forms/StockForms.tsx:838 -#: src/forms/StockForms.tsx:884 -#: src/forms/StockForms.tsx:923 -#: src/forms/StockForms.tsx:959 -#: src/forms/StockForms.tsx:1002 -#: src/forms/StockForms.tsx:1046 -#: src/forms/StockForms.tsx:1094 -#: src/forms/StockForms.tsx:1138 -#: src/pages/build/BuildDetail.tsx:200 -#: src/pages/part/PartDetail.tsx:1207 +#: src/forms/StockForms.tsx:891 +#: src/forms/StockForms.tsx:937 +#: src/forms/StockForms.tsx:975 +#: src/forms/StockForms.tsx:1018 +#: src/forms/StockForms.tsx:1062 +#: src/forms/StockForms.tsx:1110 +#: src/forms/StockForms.tsx:1154 +#: src/pages/build/BuildDetail.tsx:201 +#: src/pages/part/PartDetail.tsx:1228 #: src/tables/ColumnRenderers.tsx:91 +#: src/tables/part/PartTestResultTable.tsx:247 #: src/tables/part/RelatedPartTable.tsx:53 #: src/tables/stock/StockTrackingTable.tsx:87 msgid "Part" msgstr "Peça" -#: lib/enums/ModelInformation.tsx:29 +#: lib/enums/ModelInformation.tsx:30 #: lib/enums/Roles.tsx:35 #: src/components/nav/NavigationDrawer.tsx:70 #: src/defaults/links.tsx:36 -#: src/pages/Index/Settings/SystemSettings.tsx:190 -#: src/pages/part/CategoryDetail.tsx:132 -#: src/pages/part/CategoryDetail.tsx:277 -#: src/pages/part/CategoryDetail.tsx:323 -#: src/pages/part/CategoryDetail.tsx:354 -#: src/pages/part/PartDetail.tsx:965 +#: src/pages/Index/Settings/SystemSettings.tsx:197 +#: src/pages/part/CategoryDetail.tsx:135 +#: src/pages/part/CategoryDetail.tsx:285 +#: src/pages/part/CategoryDetail.tsx:340 +#: src/pages/part/CategoryDetail.tsx:371 +#: src/pages/part/PartDetail.tsx:978 msgid "Parts" msgstr "Peças" #: lib/enums/ModelInformation.tsx:37 #: src/pages/Index/Settings/AdminCenter/PartParameterPanel.tsx:13 -msgid "Part Parameter Template" -msgstr "Modelo de Parâmetro de Peça" +#~ msgid "Part Parameter Template" +#~ msgstr "Part Parameter Template" #: lib/enums/ModelInformation.tsx:38 -msgid "Part Parameter Templates" -msgstr "Modelos de Parâmetro de Peça" +#~ msgid "Part Parameter Templates" +#~ msgstr "Part Parameter Templates" + +#: lib/enums/ModelInformation.tsx:39 +msgid "Parameter" +msgstr "" + +#: lib/enums/ModelInformation.tsx:40 +#: src/components/panels/ParametersPanel.tsx:19 +#: src/components/wizards/ImportPartWizard.tsx:807 +#: src/pages/Index/Settings/AdminCenter/Index.tsx:195 +#: src/pages/Index/Settings/SystemSettings.tsx:191 +#: src/pages/part/PartDetail.tsx:943 +msgid "Parameters" +msgstr "Parâmetros" #: lib/enums/ModelInformation.tsx:45 +#: src/tables/part/PartCategoryTemplateTable.tsx:87 +msgid "Parameter Template" +msgstr "Template de parâmetro" + +#: lib/enums/ModelInformation.tsx:46 +#: src/pages/Index/Settings/AdminCenter/ParameterPanel.tsx:13 +msgid "Parameter Templates" +msgstr "" + +#: lib/enums/ModelInformation.tsx:52 msgid "Part Test Template" msgstr "Modelo de Teste de Peça" -#: lib/enums/ModelInformation.tsx:46 +#: lib/enums/ModelInformation.tsx:53 msgid "Part Test Templates" msgstr "Teste de Modelos de Peças" -#: lib/enums/ModelInformation.tsx:52 +#: lib/enums/ModelInformation.tsx:59 #: src/components/wizards/OrderPartsWizard.tsx:290 -#: src/pages/company/SupplierPartDetail.tsx:413 +#: src/pages/company/SupplierPartDetail.tsx:418 #: src/pages/stock/StockDetail.tsx:289 -#: src/tables/build/BuildAllocatedStockTable.tsx:155 +#: src/tables/build/BuildAllocatedStockTable.tsx:152 #: src/tables/part/PartPurchaseOrdersTable.tsx:50 +#: src/tables/purchasing/SupplierPartParametricTable.tsx:29 #: src/tables/purchasing/SupplierPartTable.tsx:83 #: src/tables/stock/StockItemTable.tsx:247 msgid "Supplier Part" msgstr "Fornecedor da Peça" -#: lib/enums/ModelInformation.tsx:53 -#: src/pages/purchasing/PurchasingIndex.tsx:92 +#: lib/enums/ModelInformation.tsx:60 +#: src/pages/purchasing/PurchasingIndex.tsx:128 msgid "Supplier Parts" msgstr "Peças do Fornecedor" -#: lib/enums/ModelInformation.tsx:61 -#: src/pages/company/ManufacturerPartDetail.tsx:297 -#: src/pages/company/SupplierPartDetail.tsx:161 +#: lib/enums/ModelInformation.tsx:69 +#: src/pages/company/ManufacturerPartDetail.tsx:288 +#: src/pages/company/SupplierPartDetail.tsx:162 #: src/tables/part/PartPurchaseOrdersTable.tsx:56 #: src/tables/stock/StockItemTable.tsx:253 msgid "Manufacturer Part" msgstr "Fabricante da peça" -#: lib/enums/ModelInformation.tsx:62 -#: src/pages/purchasing/PurchasingIndex.tsx:109 +#: lib/enums/ModelInformation.tsx:70 +#: src/pages/purchasing/PurchasingIndex.tsx:177 msgid "Manufacturer Parts" msgstr "Peças do Fabricante" -#: lib/enums/ModelInformation.tsx:70 -#: src/pages/part/CategoryDetail.tsx:354 +#: lib/enums/ModelInformation.tsx:79 +#: src/pages/part/CategoryDetail.tsx:371 #: src/tables/Filter.tsx:389 msgid "Part Category" msgstr "Categoria da Peça" -#: lib/enums/ModelInformation.tsx:71 +#: lib/enums/ModelInformation.tsx:80 #: lib/enums/Roles.tsx:37 -#: src/pages/part/CategoryDetail.tsx:271 -#: src/pages/part/CategoryDetail.tsx:345 -#: src/pages/part/PartDetail.tsx:1196 +#: src/pages/part/CategoryDetail.tsx:279 +#: src/pages/part/CategoryDetail.tsx:362 +#: src/pages/part/PartDetail.tsx:1217 msgid "Part Categories" msgstr "Categorias de Peça" -#: lib/enums/ModelInformation.tsx:79 +#: lib/enums/ModelInformation.tsx:88 #: src/forms/BuildForms.tsx:473 #: src/forms/BuildForms.tsx:633 #: src/forms/BuildForms.tsx:794 -#: src/forms/SalesOrderForms.tsx:307 +#: src/forms/SalesOrderForms.tsx:386 #: src/pages/stock/StockDetail.tsx:1005 -#: src/tables/part/PartTestResultTable.tsx:248 +#: src/tables/part/PartTestResultTable.tsx:256 #: src/tables/stock/StockTrackingTable.tsx:48 #: src/tables/stock/StockTrackingTable.tsx:55 msgid "Stock Item" msgstr "Item de estoque" -#: lib/enums/ModelInformation.tsx:80 +#: lib/enums/ModelInformation.tsx:89 #: lib/enums/Roles.tsx:45 -#: src/pages/company/CompanyDetail.tsx:210 -#: src/pages/part/CategoryDetail.tsx:291 +#: src/pages/company/CompanyDetail.tsx:211 +#: src/pages/part/CategoryDetail.tsx:314 #: src/pages/part/PartStockHistoryDetail.tsx:101 #: src/pages/stock/LocationDetail.tsx:121 #: src/pages/stock/LocationDetail.tsx:180 msgid "Stock Items" msgstr "Itens de Estoque" -#: lib/enums/ModelInformation.tsx:88 +#: lib/enums/ModelInformation.tsx:98 #: lib/enums/Roles.tsx:47 #: src/pages/stock/LocationDetail.tsx:420 msgid "Stock Location" msgstr "Localização do estoque" -#: lib/enums/ModelInformation.tsx:89 +#: lib/enums/ModelInformation.tsx:99 #: src/pages/stock/LocationDetail.tsx:174 #: src/pages/stock/LocationDetail.tsx:412 #: src/pages/stock/StockDetail.tsx:996 msgid "Stock Locations" msgstr "Locais de estoque" -#: lib/enums/ModelInformation.tsx:97 +#: lib/enums/ModelInformation.tsx:108 msgid "Stock Location Type" msgstr "Categoria de Localização de Estoque" -#: lib/enums/ModelInformation.tsx:98 +#: lib/enums/ModelInformation.tsx:109 msgid "Stock Location Types" msgstr "Categoria de Localização de Estoque" -#: lib/enums/ModelInformation.tsx:103 -#: src/pages/Index/Settings/SystemSettings.tsx:248 -#: src/pages/part/PartDetail.tsx:911 +#: lib/enums/ModelInformation.tsx:114 +#: src/pages/Index/Settings/SystemSettings.tsx:254 +#: src/pages/part/PartDetail.tsx:900 msgid "Stock History" msgstr "Histórico de estoque" -#: lib/enums/ModelInformation.tsx:104 +#: lib/enums/ModelInformation.tsx:115 msgid "Stock Histories" msgstr "Históricos de estoque" -#: lib/enums/ModelInformation.tsx:109 +#: lib/enums/ModelInformation.tsx:120 msgid "Build" msgstr "Produzir" -#: lib/enums/ModelInformation.tsx:110 +#: lib/enums/ModelInformation.tsx:121 msgid "Builds" msgstr "Compilações" -#: lib/enums/ModelInformation.tsx:118 +#: lib/enums/ModelInformation.tsx:130 msgid "Build Line" msgstr "Linha de Produção" -#: lib/enums/ModelInformation.tsx:119 +#: lib/enums/ModelInformation.tsx:131 msgid "Build Lines" msgstr "Linhas de Produção" -#: lib/enums/ModelInformation.tsx:126 +#: lib/enums/ModelInformation.tsx:138 msgid "Build Item" msgstr "Criar item" -#: lib/enums/ModelInformation.tsx:127 +#: lib/enums/ModelInformation.tsx:139 msgid "Build Items" msgstr "Criar itens" -#: lib/enums/ModelInformation.tsx:132 -#: src/pages/company/CompanyDetail.tsx:340 +#: lib/enums/ModelInformation.tsx:144 +#: src/pages/company/CompanyDetail.tsx:345 #: src/tables/company/CompanyTable.tsx:47 #: src/tables/company/ContactTable.tsx:67 +#: src/tables/company/ParametricCompanyTable.tsx:18 msgid "Company" msgstr "Empresa" -#: lib/enums/ModelInformation.tsx:133 +#: lib/enums/ModelInformation.tsx:145 msgid "Companies" msgstr "Empresas" -#: lib/enums/ModelInformation.tsx:140 -#: src/pages/build/BuildDetail.tsx:316 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:253 -#: src/pages/sales/ReturnOrderDetail.tsx:231 -#: src/pages/sales/SalesOrderDetail.tsx:224 +#: lib/enums/ModelInformation.tsx:152 +#: src/pages/build/BuildDetail.tsx:317 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:254 +#: src/pages/sales/ReturnOrderDetail.tsx:232 +#: src/pages/sales/SalesOrderDetail.tsx:225 #: src/tables/ColumnRenderers.tsx:362 #: src/tables/Filter.tsx:286 #: src/tables/TableHoverCard.tsx:101 msgid "Project Code" msgstr "Código do Projeto" -#: lib/enums/ModelInformation.tsx:141 +#: lib/enums/ModelInformation.tsx:153 #: src/pages/Index/Settings/AdminCenter/Index.tsx:172 msgid "Project Codes" msgstr "Códigos de Projeto" -#: lib/enums/ModelInformation.tsx:147 +#: lib/enums/ModelInformation.tsx:159 #: src/components/wizards/OrderPartsWizard.tsx:338 #: src/pages/part/pricing/PurchaseHistoryPanel.tsx:33 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:550 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:555 #: src/pages/stock/StockDetail.tsx:352 #: src/tables/part/PartPurchaseOrdersTable.tsx:32 #: src/tables/stock/StockItemTable.tsx:239 @@ -312,117 +338,117 @@ msgstr "Códigos de Projeto" msgid "Purchase Order" msgstr "Pedido de Compra" -#: lib/enums/ModelInformation.tsx:148 +#: lib/enums/ModelInformation.tsx:160 #: lib/enums/Roles.tsx:39 #: src/defaults/actions.tsx:104 -#: src/pages/Index/Settings/SystemSettings.tsx:283 -#: src/pages/company/CompanyDetail.tsx:203 -#: src/pages/company/SupplierPartDetail.tsx:266 -#: src/pages/part/PartDetail.tsx:875 -#: src/pages/purchasing/PurchasingIndex.tsx:60 +#: src/pages/Index/Settings/SystemSettings.tsx:289 +#: src/pages/company/CompanyDetail.tsx:204 +#: src/pages/company/SupplierPartDetail.tsx:267 +#: src/pages/part/PartDetail.tsx:864 +#: src/pages/purchasing/PurchasingIndex.tsx:66 msgid "Purchase Orders" msgstr "Pedidos de compra" -#: lib/enums/ModelInformation.tsx:156 +#: lib/enums/ModelInformation.tsx:169 msgid "Purchase Order Line" msgstr "Linha do Pedido de Compra" -#: lib/enums/ModelInformation.tsx:157 +#: lib/enums/ModelInformation.tsx:170 msgid "Purchase Order Lines" msgstr "Linhas do Pedido de Compra" -#: lib/enums/ModelInformation.tsx:162 -#: src/pages/build/BuildDetail.tsx:289 +#: lib/enums/ModelInformation.tsx:175 +#: src/pages/build/BuildDetail.tsx:290 #: src/pages/part/pricing/SaleHistoryPanel.tsx:24 -#: src/pages/sales/SalesOrderDetail.tsx:614 -#: src/pages/sales/SalesOrderShipmentDetail.tsx:105 -#: src/pages/sales/SalesOrderShipmentDetail.tsx:478 +#: src/pages/sales/SalesOrderDetail.tsx:619 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:103 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:446 #: src/pages/stock/StockDetail.tsx:361 #: src/tables/part/PartSalesAllocationsTable.tsx:41 #: src/tables/sales/SalesOrderAllocationTable.tsx:110 -#: src/tables/sales/SalesOrderShipmentTable.tsx:122 +#: src/tables/sales/SalesOrderShipmentTable.tsx:143 #: src/tables/stock/StockTrackingTable.tsx:131 msgid "Sales Order" msgstr "Pedido de Venda" -#: lib/enums/ModelInformation.tsx:163 +#: lib/enums/ModelInformation.tsx:176 #: lib/enums/Roles.tsx:43 #: src/defaults/actions.tsx:114 -#: src/pages/Index/Settings/SystemSettings.tsx:299 -#: src/pages/company/CompanyDetail.tsx:223 -#: src/pages/part/PartDetail.tsx:887 -#: src/pages/sales/SalesIndex.tsx:84 +#: src/pages/Index/Settings/SystemSettings.tsx:305 +#: src/pages/company/CompanyDetail.tsx:224 +#: src/pages/part/PartDetail.tsx:876 +#: src/pages/sales/SalesIndex.tsx:53 msgid "Sales Orders" msgstr "Pedidos de vendas" -#: lib/enums/ModelInformation.tsx:171 -#: src/pages/sales/SalesOrderShipmentDetail.tsx:477 +#: lib/enums/ModelInformation.tsx:185 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:445 msgid "Sales Order Shipment" msgstr "Envio do Pedido Venda" -#: lib/enums/ModelInformation.tsx:172 +#: lib/enums/ModelInformation.tsx:186 msgid "Sales Order Shipments" msgstr "Envios do Pedido Venda" -#: lib/enums/ModelInformation.tsx:179 -#: src/pages/sales/ReturnOrderDetail.tsx:549 +#: lib/enums/ModelInformation.tsx:194 +#: src/pages/sales/ReturnOrderDetail.tsx:554 #: src/tables/stock/StockTrackingTable.tsx:142 msgid "Return Order" msgstr "Pedido de Devolução" -#: lib/enums/ModelInformation.tsx:180 +#: lib/enums/ModelInformation.tsx:195 #: lib/enums/Roles.tsx:41 #: src/defaults/actions.tsx:125 -#: src/pages/Index/Settings/SystemSettings.tsx:316 -#: src/pages/company/CompanyDetail.tsx:230 -#: src/pages/part/PartDetail.tsx:894 -#: src/pages/sales/SalesIndex.tsx:117 +#: src/pages/Index/Settings/SystemSettings.tsx:322 +#: src/pages/company/CompanyDetail.tsx:231 +#: src/pages/part/PartDetail.tsx:883 +#: src/pages/sales/SalesIndex.tsx:99 msgid "Return Orders" msgstr "Pedidos de Devolução" -#: lib/enums/ModelInformation.tsx:188 +#: lib/enums/ModelInformation.tsx:204 msgid "Return Order Line Item" msgstr "Devolver item do pedido" -#: lib/enums/ModelInformation.tsx:189 +#: lib/enums/ModelInformation.tsx:205 msgid "Return Order Line Items" msgstr "Devolver item do pedido" -#: lib/enums/ModelInformation.tsx:194 +#: lib/enums/ModelInformation.tsx:210 #: src/tables/company/AddressTable.tsx:52 msgid "Address" msgstr "Endereço" -#: lib/enums/ModelInformation.tsx:195 -#: src/pages/company/CompanyDetail.tsx:264 +#: lib/enums/ModelInformation.tsx:211 +#: src/pages/company/CompanyDetail.tsx:265 msgid "Addresses" msgstr "Endereços" -#: lib/enums/ModelInformation.tsx:201 +#: lib/enums/ModelInformation.tsx:217 #: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:89 #: src/pages/core/UserDetail.tsx:135 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:229 -#: src/pages/sales/ReturnOrderDetail.tsx:207 -#: src/pages/sales/SalesOrderDetail.tsx:200 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:230 +#: src/pages/sales/ReturnOrderDetail.tsx:208 +#: src/pages/sales/SalesOrderDetail.tsx:201 msgid "Contact" msgstr "Contato" -#: lib/enums/ModelInformation.tsx:202 -#: src/pages/company/CompanyDetail.tsx:258 +#: lib/enums/ModelInformation.tsx:218 +#: src/pages/company/CompanyDetail.tsx:259 #: src/pages/core/CoreIndex.tsx:33 msgid "Contacts" msgstr "Contatos" -#: lib/enums/ModelInformation.tsx:208 +#: lib/enums/ModelInformation.tsx:224 #: src/tables/ColumnRenderers.tsx:444 msgid "Owner" msgstr "Proprietário" -#: lib/enums/ModelInformation.tsx:209 +#: lib/enums/ModelInformation.tsx:225 msgid "Owners" msgstr "Proprietários" -#: lib/enums/ModelInformation.tsx:215 +#: lib/enums/ModelInformation.tsx:231 #: src/pages/Auth/ChangePassword.tsx:36 #: src/pages/core/UserDetail.tsx:220 #: src/tables/ColumnRenderers.tsx:395 @@ -437,7 +463,7 @@ msgstr "Proprietários" msgid "User" msgstr "Usuário" -#: lib/enums/ModelInformation.tsx:216 +#: lib/enums/ModelInformation.tsx:232 #: src/components/nav/NavigationDrawer.tsx:105 #: src/pages/Index/Settings/AdminCenter/UserManagementPanel.tsx:15 #: src/pages/core/CoreIndex.tsx:21 @@ -445,12 +471,12 @@ msgstr "Usuário" msgid "Users" msgstr "Usuários" -#: lib/enums/ModelInformation.tsx:222 +#: lib/enums/ModelInformation.tsx:238 #: src/pages/core/GroupDetail.tsx:78 msgid "Group" msgstr "Grupo" -#: lib/enums/ModelInformation.tsx:223 +#: lib/enums/ModelInformation.tsx:239 #: src/components/nav/NavigationDrawer.tsx:111 #: src/pages/Index/Settings/AdminCenter/UserManagementPanel.tsx:23 #: src/pages/core/CoreIndex.tsx:27 @@ -460,64 +486,64 @@ msgstr "Grupo" msgid "Groups" msgstr "Grupos" -#: lib/enums/ModelInformation.tsx:230 +#: lib/enums/ModelInformation.tsx:246 msgid "Import Session" msgstr "Importar Sessão" -#: lib/enums/ModelInformation.tsx:231 +#: lib/enums/ModelInformation.tsx:247 msgid "Import Sessions" msgstr "Importar Sessões" -#: lib/enums/ModelInformation.tsx:238 +#: lib/enums/ModelInformation.tsx:254 msgid "Label Template" msgstr "Modelo de Etiqueta" -#: lib/enums/ModelInformation.tsx:239 +#: lib/enums/ModelInformation.tsx:255 #: src/pages/Index/Settings/AdminCenter/Index.tsx:209 msgid "Label Templates" msgstr "Modelos de Etiqueta" -#: lib/enums/ModelInformation.tsx:246 +#: lib/enums/ModelInformation.tsx:262 msgid "Report Template" msgstr "Modelo de Relatório" -#: lib/enums/ModelInformation.tsx:247 +#: lib/enums/ModelInformation.tsx:263 #: src/pages/Index/Settings/AdminCenter/Index.tsx:215 msgid "Report Templates" msgstr "Modelos de Relatório" -#: lib/enums/ModelInformation.tsx:254 +#: lib/enums/ModelInformation.tsx:270 #: src/components/plugins/PluginDrawer.tsx:145 msgid "Plugin Configuration" msgstr "Configuração de Plugin" -#: lib/enums/ModelInformation.tsx:255 +#: lib/enums/ModelInformation.tsx:271 msgid "Plugin Configurations" msgstr "Configurações de Plugins" -#: lib/enums/ModelInformation.tsx:262 +#: lib/enums/ModelInformation.tsx:278 msgid "Content Type" msgstr "Categoria de conteúdo" -#: lib/enums/ModelInformation.tsx:263 +#: lib/enums/ModelInformation.tsx:279 msgid "Content Types" msgstr "Categorias de conteúdo" -#: lib/enums/ModelInformation.tsx:268 +#: lib/enums/ModelInformation.tsx:284 msgid "Selection List" msgstr "Lista de seleção" -#: lib/enums/ModelInformation.tsx:269 -#: src/pages/Index/Settings/AdminCenter/PartParameterPanel.tsx:21 +#: lib/enums/ModelInformation.tsx:285 +#: src/pages/Index/Settings/AdminCenter/ParameterPanel.tsx:21 msgid "Selection Lists" msgstr "Listas de Seleção" -#: lib/enums/ModelInformation.tsx:275 +#: lib/enums/ModelInformation.tsx:291 #: src/components/barcodes/BarcodeInput.tsx:114 #: src/components/dashboard/DashboardLayout.tsx:281 #: src/components/editors/NotesEditor.tsx:74 #: src/components/editors/TemplateEditor/TemplateEditor.tsx:158 -#: src/components/forms/fields/ApiFormField.tsx:273 +#: src/components/forms/fields/ApiFormField.tsx:237 #: src/components/forms/fields/TableField.tsx:45 #: src/components/importer/ImportDataSelector.tsx:192 #: src/components/importer/ImporterColumnSelector.tsx:234 @@ -528,7 +554,7 @@ msgstr "Listas de Seleção" #: src/components/nav/SearchDrawer.tsx:572 #: src/components/settings/SettingList.tsx:139 #: src/components/wizards/ImportPartWizard.tsx:574 -#: src/components/wizards/ImportPartWizard.tsx:718 +#: src/components/wizards/ImportPartWizard.tsx:719 #: src/forms/BomForms.tsx:69 #: src/functions/auth.tsx:643 #: src/pages/ErrorPage.tsx:11 @@ -547,9 +573,9 @@ msgstr "Listas de Seleção" msgid "Error" msgstr "Erro" -#: lib/enums/ModelInformation.tsx:276 +#: lib/enums/ModelInformation.tsx:292 #: src/tables/machine/MachineListTable.tsx:402 -#: src/tables/machine/MachineTypeTable.tsx:299 +#: src/tables/machine/MachineTypeTable.tsx:297 msgid "Errors" msgstr "Erros" @@ -559,10 +585,10 @@ msgstr "Admin" #: lib/enums/Roles.tsx:33 #: src/defaults/actions.tsx:135 -#: src/pages/Index/Settings/SystemSettings.tsx:264 -#: src/pages/build/BuildIndex.tsx:75 -#: src/pages/part/PartDetail.tsx:904 -#: src/pages/sales/SalesOrderDetail.tsx:421 +#: src/pages/Index/Settings/SystemSettings.tsx:270 +#: src/pages/build/BuildIndex.tsx:67 +#: src/pages/part/PartDetail.tsx:893 +#: src/pages/sales/SalesOrderDetail.tsx:422 msgid "Build Orders" msgstr "Ordens de Produções" @@ -639,39 +665,39 @@ msgstr "Digitalizar ou inserir dados com código de barras" msgid "Enter barcode data" msgstr "Digitar informações do código de barras" -#: src/components/barcodes/BarcodeScanDialog.tsx:49 -#: src/components/buttons/ScanButton.tsx:15 +#: src/components/barcodes/BarcodeScanDialog.tsx:56 +#: src/components/buttons/ScanButton.tsx:27 #: src/components/nav/NavigationDrawer.tsx:122 -#: src/forms/PurchaseOrderForms.tsx:457 -#: src/forms/PurchaseOrderForms.tsx:563 +#: src/forms/PurchaseOrderForms.tsx:509 +#: src/forms/PurchaseOrderForms.tsx:615 msgid "Scan Barcode" msgstr "Ler Código de Barras" -#: src/components/barcodes/BarcodeScanDialog.tsx:105 +#: src/components/barcodes/BarcodeScanDialog.tsx:121 msgid "No matching item found" msgstr "Nenhum item correspondente encontrado" -#: src/components/barcodes/BarcodeScanDialog.tsx:134 +#: src/components/barcodes/BarcodeScanDialog.tsx:150 msgid "Barcode does not match the expected model type" msgstr "" -#: src/components/barcodes/BarcodeScanDialog.tsx:145 +#: src/components/barcodes/BarcodeScanDialog.tsx:161 #: src/components/editors/NotesEditor.tsx:84 #: src/components/editors/NotesEditor.tsx:118 -#: src/components/forms/ApiForm.tsx:465 +#: src/components/forms/ApiForm.tsx:484 #: src/components/wizards/ImportPartWizard.tsx:566 -#: src/components/wizards/ImportPartWizard.tsx:690 +#: src/components/wizards/ImportPartWizard.tsx:691 #: src/pages/Index/Settings/AdminCenter/CurrencyManagementPanel.tsx:45 #: src/tables/bom/BomTable.tsx:548 #: src/tables/settings/PendingTasksTable.tsx:68 msgid "Success" msgstr "Sucesso" -#: src/components/barcodes/BarcodeScanDialog.tsx:151 +#: src/components/barcodes/BarcodeScanDialog.tsx:167 msgid "Failed to handle barcode" msgstr "" -#: src/components/barcodes/BarcodeScanDialog.tsx:167 +#: src/components/barcodes/BarcodeScanDialog.tsx:183 #: src/pages/Index/Scan.tsx:129 msgid "Failed to scan barcode" msgstr "Falha ao escanear código de barras" @@ -714,10 +740,10 @@ msgstr "Falha ao escanear código de barras" #: src/components/barcodes/QRCode.tsx:179 #: src/pages/part/PartDetail.tsx:521 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:222 -#: src/pages/sales/ReturnOrderDetail.tsx:188 -#: src/pages/sales/SalesOrderDetail.tsx:181 -#: src/pages/sales/SalesOrderShipmentDetail.tsx:122 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:223 +#: src/pages/sales/ReturnOrderDetail.tsx:189 +#: src/pages/sales/SalesOrderDetail.tsx:182 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:120 #: src/pages/stock/StockDetail.tsx:186 msgid "Link" msgstr "Link" @@ -728,7 +754,7 @@ msgstr "Isto irá remover o link com o código de barras associado" #: src/components/barcodes/QRCode.tsx:205 #: src/components/items/ActionDropdown.tsx:192 -#: src/forms/PurchaseOrderForms.tsx:554 +#: src/forms/PurchaseOrderForms.tsx:606 msgid "Unlink Barcode" msgstr "Desvincular Código de Barras" @@ -829,14 +855,14 @@ msgstr "Você será redirecionado para o provedor para outras ações." #~ msgid "Scan QR code" #~ msgstr "Scan QR code" -#: src/components/buttons/ScanButton.tsx:19 -msgid "Open Barcode Scanner" -msgstr "Abrir Leitor de Código QR" - #: src/components/buttons/ScanButton.tsx:20 #~ msgid "Open QR code scanner" #~ msgstr "Open QR code scanner" +#: src/components/buttons/ScanButton.tsx:32 +msgid "Open Barcode Scanner" +msgstr "Abrir Leitor de Código QR" + #: src/components/buttons/SpotlightButton.tsx:12 msgid "Open spotlight" msgstr "Abrir spotlight" @@ -1059,7 +1085,7 @@ msgid "Show the number of sales orders which are assigned to you" msgstr "" #: src/components/dashboard/DashboardWidgetLibrary.tsx:129 -#: src/pages/sales/SalesIndex.tsx:105 +#: src/pages/sales/SalesIndex.tsx:87 msgid "Pending Shipments" msgstr "" @@ -1210,12 +1236,18 @@ msgid "Remove the associated image from this item?" msgstr "Remover imagem associada a este item?" #: src/components/details/DetailsImage.tsx:83 -#: src/forms/StockForms.tsx:888 +#: src/forms/StockForms.tsx:895 #: src/pages/Index/Settings/AccountSettings/MFASettings.tsx:324 #: src/pages/Index/Settings/AccountSettings/MFASettings.tsx:415 #: src/pages/Index/Settings/AccountSettings/MFASettings.tsx:884 #: src/pages/Index/Settings/AccountSettings/MFASettings.tsx:903 #: src/pages/Index/Settings/AccountSettings/SecurityContent.tsx:254 +#: src/tables/build/BuildAllocatedStockTable.tsx:178 +#: src/tables/build/BuildAllocatedStockTable.tsx:258 +#: src/tables/build/BuildLineTable.tsx:111 +#: src/tables/build/BuildLineTable.tsx:665 +#: src/tables/sales/SalesOrderAllocationTable.tsx:224 +#: src/tables/sales/SalesOrderAllocationTable.tsx:247 msgid "Remove" msgstr "Remover" @@ -1241,12 +1273,12 @@ msgid "Upload Error" msgstr "Erro no carregamento" #: src/components/details/DetailsImage.tsx:250 -#: src/components/forms/fields/TextField.tsx:65 +#: src/components/forms/fields/AutoFillRightSection.tsx:34 msgid "Clear" msgstr "Limpar" #: src/components/details/DetailsImage.tsx:256 -#: src/components/forms/ApiForm.tsx:677 +#: src/components/forms/ApiForm.tsx:696 #: src/contexts/ThemeContext.tsx:44 #: src/pages/Index/Settings/AccountSettings/MFASettings.tsx:149 #: src/pages/Index/Settings/AccountSettings/MFASettings.tsx:568 @@ -1499,8 +1531,8 @@ msgstr "Erro de servidor" msgid "A server error occurred" msgstr "Ocorreu um erro no servidor" -#: src/components/forms/ApiForm.tsx:103 -#: src/components/forms/ApiForm.tsx:594 +#: src/components/forms/ApiForm.tsx:107 +#: src/components/forms/ApiForm.tsx:613 msgid "Form Error" msgstr "Erro no formulário" @@ -1508,11 +1540,11 @@ msgstr "Erro no formulário" #~ msgid "Form Errors Exist" #~ msgstr "Form Errors Exist" -#: src/components/forms/ApiForm.tsx:604 +#: src/components/forms/ApiForm.tsx:623 msgid "Errors exist for one or more form fields" msgstr "Existem erros para um ou mais campos de formulário" -#: src/components/forms/ApiForm.tsx:715 +#: src/components/forms/ApiForm.tsx:734 #: src/hooks/UseForm.tsx:133 #: src/tables/plugin/PluginListTable.tsx:204 msgid "Update" @@ -1698,15 +1730,14 @@ msgstr "Servidor" #: src/components/forms/InstanceOptions.tsx:124 #: src/components/plugins/PluginDrawer.tsx:68 #: src/pages/Index/Settings/AdminCenter/UnitManagementPanel.tsx:19 -#: src/pages/part/CategoryDetail.tsx:88 +#: src/pages/part/CategoryDetail.tsx:91 #: src/pages/part/PartDetail.tsx:446 #: src/pages/stock/LocationDetail.tsx:82 #: src/tables/machine/MachineTypeTable.tsx:67 -#: src/tables/machine/MachineTypeTable.tsx:151 -#: src/tables/machine/MachineTypeTable.tsx:254 -#: src/tables/machine/MachineTypeTable.tsx:357 +#: src/tables/machine/MachineTypeTable.tsx:149 +#: src/tables/machine/MachineTypeTable.tsx:252 +#: src/tables/machine/MachineTypeTable.tsx:355 #: src/tables/plugin/PluginErrorTable.tsx:33 -#: src/tables/purchasing/ManufacturerPartParameterTable.tsx:36 #: src/tables/settings/ApiTokenTable.tsx:57 #: src/tables/settings/GroupTable.tsx:95 #: src/tables/settings/GroupTable.tsx:148 @@ -1769,7 +1800,7 @@ msgstr "Salvar seleção de host" #~ msgstr "State: <0>worker ({0}), <1>plugins{1}" #: src/components/forms/InstanceOptions.tsx:118 -#: src/pages/Index/Settings/SystemSettings.tsx:45 +#: src/pages/Index/Settings/SystemSettings.tsx:46 msgid "Server" msgstr "Servidor" @@ -1793,6 +1824,8 @@ msgid "Plugins" msgstr "Extensões" #: src/components/forms/InstanceOptions.tsx:143 +#: src/tables/general/ParameterTemplateTable.tsx:153 +#: src/tables/general/ParameterTemplateTable.tsx:188 #: src/tables/part/PartTestTemplateTable.tsx:117 #: src/tables/settings/TemplateTable.tsx:251 #: src/tables/settings/TemplateTable.tsx:362 @@ -1817,10 +1850,14 @@ msgstr "Parado" msgid "Running" msgstr "Em execução" -#: src/components/forms/fields/ApiFormField.tsx:233 +#: src/components/forms/fields/ApiFormField.tsx:197 msgid "Select file to upload" msgstr "" +#: src/components/forms/fields/AutoFillRightSection.tsx:47 +msgid "Accept suggested value" +msgstr "" + #: src/components/forms/fields/DateField.tsx:76 msgid "Select date" msgstr "" @@ -1853,13 +1890,13 @@ msgstr "Selecione o pacote" msgid "{0} icons" msgstr "Ícones {0}" -#: src/components/forms/fields/RelatedModelField.tsx:409 +#: src/components/forms/fields/RelatedModelField.tsx:480 #: src/components/modals/AboutInvenTreeModal.tsx:96 #: src/pages/Index/Settings/AccountSettings/SecurityContent.tsx:383 msgid "Loading" msgstr "Carregando" -#: src/components/forms/fields/RelatedModelField.tsx:411 +#: src/components/forms/fields/RelatedModelField.tsx:482 msgid "No results found" msgstr "Nenhum resultado encontrado" @@ -1875,10 +1912,6 @@ msgstr "Não há itens disponíveis" msgid "Add new row" msgstr "Adicionar nova linha" -#: src/components/forms/fields/TextField.tsx:82 -msgid "Accept suggested value" -msgstr "" - #: src/components/images/DetailsImage.tsx:252 #~ msgid "Select image" #~ msgstr "Select image" @@ -2036,7 +2069,7 @@ msgstr "Dados importados com sucesso" #: src/components/importer/ImporterDrawer.tsx:109 #: src/components/modals/AboutInvenTreeModal.tsx:205 #: src/components/modals/ServerInfoModal.tsx:134 -#: src/components/wizards/ImportPartWizard.tsx:772 +#: src/components/wizards/ImportPartWizard.tsx:773 #: src/forms/BomForms.tsx:132 #: src/pages/Index/Settings/AccountSettings/MFASettings.tsx:685 msgid "Close" @@ -2199,7 +2232,7 @@ msgid "Change" msgstr "Alterar" #: src/components/items/RoleTable.tsx:150 -#: src/forms/StockForms.tsx:927 +#: src/forms/StockForms.tsx:941 #: src/tables/stock/StockItemTestResultTable.tsx:367 msgid "Add" msgstr "Adicionar" @@ -2222,11 +2255,11 @@ msgstr "Nenhum item" #: src/components/items/TransferList.tsx:161 #: src/components/render/Stock.tsx:102 -#: src/pages/part/PartDetail.tsx:994 +#: src/pages/part/PartDetail.tsx:1009 #: src/pages/stock/StockDetail.tsx:265 #: src/pages/stock/StockDetail.tsx:942 -#: src/tables/build/BuildAllocatedStockTable.tsx:135 -#: src/tables/build/BuildLineTable.tsx:192 +#: src/tables/build/BuildAllocatedStockTable.tsx:132 +#: src/tables/build/BuildLineTable.tsx:193 #: src/tables/part/PartTable.tsx:137 #: src/tables/stock/StockItemTable.tsx:182 #: src/tables/stock/StockItemTable.tsx:343 @@ -2373,7 +2406,7 @@ msgid "Database" msgstr "Banco de Dados" #: src/components/modals/ServerInfoModal.tsx:49 -#: src/components/nav/Alerts.tsx:118 +#: src/components/nav/Alerts.tsx:120 msgid "Debug Mode" msgstr "Modo de depuração" @@ -2414,7 +2447,7 @@ msgid "Issues detected" msgstr "Problemas detectados" #: src/components/modals/ServerInfoModal.tsx:102 -#: src/components/nav/Alerts.tsx:125 +#: src/components/nav/Alerts.tsx:127 msgid "Background Worker" msgstr "Trabalhador em Segundo Plano" @@ -2436,7 +2469,7 @@ msgstr "Configurações de Email" #~ msgstr "Email settings not configured" #: src/components/modals/ServerInfoModal.tsx:120 -#: src/components/nav/Alerts.tsx:141 +#: src/components/nav/Alerts.tsx:143 msgid "Email settings not configured." msgstr "Definições de e-mail não configuradas." @@ -2444,43 +2477,47 @@ msgstr "Definições de e-mail não configuradas." msgid "Alerts" msgstr "Alertas" -#: src/components/nav/Alerts.tsx:120 +#: src/components/nav/Alerts.tsx:97 +msgid "No issues detected" +msgstr "" + +#: src/components/nav/Alerts.tsx:122 msgid "The server is running in debug mode." msgstr "O servidor está executando no modo de depuração." -#: src/components/nav/Alerts.tsx:127 +#: src/components/nav/Alerts.tsx:129 msgid "The background worker process is not running." msgstr "" -#: src/components/nav/Alerts.tsx:132 +#: src/components/nav/Alerts.tsx:134 msgid "Server Restart" msgstr "Reiniciar Servidor" -#: src/components/nav/Alerts.tsx:134 +#: src/components/nav/Alerts.tsx:136 msgid "The server requires a restart to apply changes." msgstr "O servidor precisa reiniciar para aplicar as alterações." -#: src/components/nav/Alerts.tsx:139 +#: src/components/nav/Alerts.tsx:141 msgid "Email settings" msgstr "Configurações de e-mail" -#: src/components/nav/Alerts.tsx:146 +#: src/components/nav/Alerts.tsx:148 msgid "Database Migrations" msgstr "" -#: src/components/nav/Alerts.tsx:148 +#: src/components/nav/Alerts.tsx:150 msgid "There are pending database migrations." msgstr "" -#: src/components/nav/Alerts.tsx:163 +#: src/components/nav/Alerts.tsx:165 msgid "Learn more about {code}" msgstr "Saiba mais sobre {code}" #: src/components/nav/Header.tsx:188 #: src/components/nav/NavigationDrawer.tsx:134 #: src/components/nav/NotificationDrawer.tsx:181 -#: src/pages/Index/Settings/SystemSettings.tsx:121 -#: src/pages/Index/Settings/UserSettings.tsx:106 +#: src/pages/Index/Settings/SystemSettings.tsx:122 +#: src/pages/Index/Settings/UserSettings.tsx:107 #: src/pages/Notifications.tsx:45 #: src/pages/Notifications.tsx:130 msgid "Notifications" @@ -2511,8 +2548,8 @@ msgstr "Configurações" #: src/components/nav/NavigationDrawer.tsx:140 #: src/components/nav/SettingsHeader.tsx:40 #: src/defaults/actions.tsx:92 -#: src/pages/Index/Settings/UserSettings.tsx:141 -#: src/pages/Index/Settings/UserSettings.tsx:145 +#: src/pages/Index/Settings/UserSettings.tsx:142 +#: src/pages/Index/Settings/UserSettings.tsx:146 msgid "User Settings" msgstr "Configurações de usuário" @@ -2529,8 +2566,8 @@ msgstr "Configurações de usuário" #: src/components/nav/NavigationDrawer.tsx:146 #: src/components/nav/SettingsHeader.tsx:41 #: src/defaults/actions.tsx:144 -#: src/pages/Index/Settings/SystemSettings.tsx:348 -#: src/pages/Index/Settings/SystemSettings.tsx:353 +#: src/pages/Index/Settings/SystemSettings.tsx:354 +#: src/pages/Index/Settings/SystemSettings.tsx:359 msgid "System Settings" msgstr "Configurações do Sistema" @@ -2577,11 +2614,11 @@ msgstr "Sair" #: src/components/nav/NavigationDrawer.tsx:77 #: src/components/render/Part.tsx:36 -#: src/components/wizards/ImportPartWizard.tsx:807 +#: src/components/wizards/ImportPartWizard.tsx:808 #: src/defaults/links.tsx:42 #: src/forms/StockForms.tsx:794 -#: src/pages/Index/Settings/SystemSettings.tsx:224 -#: src/pages/part/PartDetail.tsx:804 +#: src/pages/Index/Settings/SystemSettings.tsx:230 +#: src/pages/part/PartDetail.tsx:793 #: src/pages/stock/LocationDetail.tsx:390 #: src/pages/stock/LocationDetail.tsx:420 #: src/pages/stock/StockDetail.tsx:642 @@ -2591,29 +2628,29 @@ msgstr "Estoque" #: src/components/nav/NavigationDrawer.tsx:84 #: src/defaults/links.tsx:48 -#: src/pages/build/BuildDetail.tsx:748 -#: src/pages/build/BuildIndex.tsx:102 +#: src/pages/build/BuildDetail.tsx:753 +#: src/pages/build/BuildIndex.tsx:101 msgid "Manufacturing" msgstr "Fabricantes" #: src/components/nav/NavigationDrawer.tsx:91 #: src/defaults/links.tsx:54 #: src/pages/company/ManufacturerDetail.tsx:9 -#: src/pages/company/ManufacturerPartDetail.tsx:276 +#: src/pages/company/ManufacturerPartDetail.tsx:267 #: src/pages/company/SupplierDetail.tsx:9 -#: src/pages/company/SupplierPartDetail.tsx:360 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:553 -#: src/pages/purchasing/PurchasingIndex.tsx:122 +#: src/pages/company/SupplierPartDetail.tsx:365 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:558 +#: src/pages/purchasing/PurchasingIndex.tsx:212 msgid "Purchasing" msgstr "Comprando" #: src/components/nav/NavigationDrawer.tsx:98 #: src/defaults/links.tsx:60 #: src/pages/company/CustomerDetail.tsx:9 -#: src/pages/sales/ReturnOrderDetail.tsx:554 -#: src/pages/sales/SalesIndex.tsx:153 -#: src/pages/sales/SalesOrderDetail.tsx:619 -#: src/pages/sales/SalesOrderShipmentDetail.tsx:480 +#: src/pages/sales/ReturnOrderDetail.tsx:559 +#: src/pages/sales/SalesIndex.tsx:168 +#: src/pages/sales/SalesOrderDetail.tsx:624 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:448 msgid "Sales" msgstr "Vendas" @@ -2667,21 +2704,21 @@ msgid "Remove search group" msgstr "" #: src/components/nav/SearchDrawer.tsx:288 -#: src/pages/company/ManufacturerPartDetail.tsx:192 -#: src/pages/part/PartDetail.tsx:862 +#: src/pages/company/ManufacturerPartDetail.tsx:179 +#: src/pages/part/PartDetail.tsx:851 #: src/pages/part/PartSupplierDetail.tsx:15 -#: src/pages/purchasing/PurchasingIndex.tsx:81 +#: src/pages/purchasing/PurchasingIndex.tsx:100 msgid "Suppliers" msgstr "Fornecedores" #: src/components/nav/SearchDrawer.tsx:298 #: src/pages/part/PartSupplierDetail.tsx:23 -#: src/pages/purchasing/PurchasingIndex.tsx:98 +#: src/pages/purchasing/PurchasingIndex.tsx:149 msgid "Manufacturers" msgstr "Fabricantes" #: src/components/nav/SearchDrawer.tsx:308 -#: src/pages/sales/SalesIndex.tsx:138 +#: src/pages/sales/SalesIndex.tsx:133 msgid "Customers" msgstr "Clientes" @@ -2772,21 +2809,21 @@ msgstr "" #: src/components/plugins/PluginDrawer.tsx:73 #: src/forms/selectionListFields.tsx:102 -#: src/pages/build/BuildDetail.tsx:250 -#: src/pages/company/CompanyDetail.tsx:93 -#: src/pages/company/ManufacturerPartDetail.tsx:93 -#: src/pages/company/ManufacturerPartDetail.tsx:120 -#: src/pages/company/SupplierPartDetail.tsx:145 -#: src/pages/part/CategoryDetail.tsx:108 +#: src/pages/build/BuildDetail.tsx:251 +#: src/pages/company/CompanyDetail.tsx:94 +#: src/pages/company/ManufacturerPartDetail.tsx:92 +#: src/pages/company/ManufacturerPartDetail.tsx:119 +#: src/pages/company/SupplierPartDetail.tsx:146 +#: src/pages/part/CategoryDetail.tsx:111 #: src/pages/part/PartDetail.tsx:460 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:162 -#: src/pages/sales/ReturnOrderDetail.tsx:129 -#: src/pages/sales/SalesOrderDetail.tsx:119 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:163 +#: src/pages/sales/ReturnOrderDetail.tsx:130 +#: src/pages/sales/SalesOrderDetail.tsx:120 #: src/pages/stock/LocationDetail.tsx:102 #: src/tables/ColumnRenderers.tsx:278 -#: src/tables/build/BuildAllocatedStockTable.tsx:91 -#: src/tables/machine/MachineTypeTable.tsx:161 -#: src/tables/machine/MachineTypeTable.tsx:257 +#: src/tables/build/BuildAllocatedStockTable.tsx:88 +#: src/tables/machine/MachineTypeTable.tsx:159 +#: src/tables/machine/MachineTypeTable.tsx:255 #: src/tables/plugin/PluginListTable.tsx:110 msgid "Description" msgstr "Descrição" @@ -2814,7 +2851,7 @@ msgstr "Data" #: src/tables/company/CompanyTable.tsx:91 #: src/tables/machine/MachineListTable.tsx:384 #: src/tables/machine/MachineListTable.tsx:799 -#: src/tables/part/ParametricPartTable.tsx:354 +#: src/tables/part/ParametricPartTable.tsx:19 #: src/tables/part/PartTable.tsx:197 #: src/tables/part/PartVariantTable.tsx:15 #: src/tables/plugin/PluginListTable.tsx:96 @@ -2836,8 +2873,8 @@ msgid "Installation Path" msgstr "Caminho da Instalação" #: src/components/plugins/PluginDrawer.tsx:116 -#: src/tables/machine/MachineTypeTable.tsx:184 -#: src/tables/machine/MachineTypeTable.tsx:293 +#: src/tables/machine/MachineTypeTable.tsx:182 +#: src/tables/machine/MachineTypeTable.tsx:291 #: src/tables/plugin/PluginListTable.tsx:101 #: src/tables/plugin/PluginListTable.tsx:417 msgid "Builtin" @@ -2849,8 +2886,8 @@ msgstr "Pacote" #: src/components/plugins/PluginDrawer.tsx:133 #: src/pages/Index/Settings/AdminCenter/PluginManagementPanel.tsx:55 -#: src/pages/Index/Settings/SystemSettings.tsx:331 -#: src/pages/Index/Settings/UserSettings.tsx:128 +#: src/pages/Index/Settings/SystemSettings.tsx:337 +#: src/pages/Index/Settings/UserSettings.tsx:129 msgid "Plugin Settings" msgstr "Configurações da Extensão" @@ -2911,7 +2948,7 @@ msgstr "" #~ msgid "Unknown model: {model}" #~ msgstr "Unknown model: {model}" -#: src/components/render/Instance.tsx:249 +#: src/components/render/Instance.tsx:247 msgid "Unknown model: {model_name}" msgstr "" @@ -2939,10 +2976,10 @@ msgstr "Remessa" #: src/components/render/Part.tsx:28 #: src/components/render/Plugin.tsx:17 #: src/components/render/User.tsx:37 -#: src/pages/company/CompanyDetail.tsx:323 -#: src/pages/company/SupplierPartDetail.tsx:373 +#: src/pages/company/CompanyDetail.tsx:328 +#: src/pages/company/SupplierPartDetail.tsx:378 #: src/pages/core/UserDetail.tsx:211 -#: src/pages/part/PartDetail.tsx:1027 +#: src/pages/part/PartDetail.tsx:1048 #: src/tables/ColumnRenderers.tsx:410 msgid "Inactive" msgstr "Inativo" @@ -2962,11 +2999,11 @@ msgstr "Sem Estoque" #: src/components/render/Part.tsx:47 #: src/components/wizards/OrderPartsWizard.tsx:135 -#: src/pages/company/SupplierPartDetail.tsx:197 -#: src/pages/company/SupplierPartDetail.tsx:394 -#: src/pages/part/PartDetail.tsx:1015 +#: src/pages/company/SupplierPartDetail.tsx:198 +#: src/pages/company/SupplierPartDetail.tsx:399 +#: src/pages/part/PartDetail.tsx:1030 #: src/tables/bom/BomTable.tsx:444 -#: src/tables/build/BuildLineTable.tsx:222 +#: src/tables/build/BuildLineTable.tsx:223 #: src/tables/part/PartTable.tsx:108 msgid "On Order" msgstr "No pedido" @@ -2974,9 +3011,9 @@ msgstr "No pedido" #: src/components/render/Part.tsx:55 #: src/components/wizards/OrderPartsWizard.tsx:141 #: src/pages/part/PartDetail.tsx:587 -#: src/pages/part/PartDetail.tsx:1021 +#: src/pages/part/PartDetail.tsx:1036 #: src/pages/stock/StockDetail.tsx:925 -#: src/tables/part/PartTestResultTable.tsx:297 +#: src/tables/part/PartTestResultTable.tsx:305 #: src/tables/stock/StockItemTable.tsx:359 msgid "In Production" msgstr "Em Produção" @@ -2987,7 +3024,7 @@ msgid "Details" msgstr "Detalhes" #: src/components/render/Part.tsx:112 -#: src/components/wizards/ImportPartWizard.tsx:806 +#: src/components/wizards/ImportPartWizard.tsx:807 #: src/pages/part/PartDetail.tsx:487 #: src/tables/ColumnRenderers.tsx:233 #: src/tables/ColumnRenderers.tsx:242 @@ -3000,16 +3037,16 @@ msgstr "Categoria" #: src/components/render/Stock.tsx:114 #: src/components/render/Stock.tsx:132 #: src/forms/BuildForms.tsx:795 -#: src/forms/PurchaseOrderForms.tsx:595 +#: src/forms/PurchaseOrderForms.tsx:647 #: src/forms/StockForms.tsx:792 #: src/forms/StockForms.tsx:839 -#: src/forms/StockForms.tsx:885 -#: src/forms/StockForms.tsx:924 -#: src/forms/StockForms.tsx:960 -#: src/forms/StockForms.tsx:1003 -#: src/forms/StockForms.tsx:1047 -#: src/forms/StockForms.tsx:1095 -#: src/forms/StockForms.tsx:1139 +#: src/forms/StockForms.tsx:892 +#: src/forms/StockForms.tsx:938 +#: src/forms/StockForms.tsx:976 +#: src/forms/StockForms.tsx:1019 +#: src/forms/StockForms.tsx:1063 +#: src/forms/StockForms.tsx:1111 +#: src/forms/StockForms.tsx:1155 #: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:88 #: src/pages/core/UserDetail.tsx:158 #: src/pages/stock/StockDetail.tsx:298 @@ -3023,7 +3060,7 @@ msgstr "Localização" #: src/components/render/Stock.tsx:99 #: src/pages/stock/StockDetail.tsx:198 #: src/pages/stock/StockDetail.tsx:930 -#: src/tables/build/BuildAllocatedStockTable.tsx:121 +#: src/tables/build/BuildAllocatedStockTable.tsx:118 #: src/tables/build/BuildOutputTable.tsx:107 #: src/tables/sales/SalesOrderAllocationTable.tsx:142 msgid "Serial Number" @@ -3034,9 +3071,9 @@ msgstr "Número de Série" #: src/forms/BuildForms.tsx:240 #: src/forms/BuildForms.tsx:634 #: src/forms/BuildForms.tsx:797 -#: src/forms/PurchaseOrderForms.tsx:801 +#: src/forms/PurchaseOrderForms.tsx:853 #: src/forms/ReturnOrderForms.tsx:243 -#: src/forms/SalesOrderForms.tsx:308 +#: src/forms/SalesOrderForms.tsx:387 #: src/forms/StockForms.tsx:841 #: src/pages/part/PartStockHistoryDetail.tsx:56 #: src/pages/part/PartStockHistoryDetail.tsx:210 @@ -3046,9 +3083,9 @@ msgstr "Número de Série" #: src/pages/part/pricing/PriceBreakPanel.tsx:172 #: src/pages/stock/StockDetail.tsx:258 #: src/pages/stock/StockDetail.tsx:936 -#: src/tables/build/BuildLineTable.tsx:86 +#: src/tables/build/BuildLineTable.tsx:83 #: src/tables/part/PartPurchaseOrdersTable.tsx:94 -#: src/tables/part/PartTestResultTable.tsx:269 +#: src/tables/part/PartTestResultTable.tsx:277 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:175 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:206 #: src/tables/purchasing/SupplierPriceBreakTable.tsx:69 @@ -3063,14 +3100,14 @@ msgstr "Quantidade" #: src/forms/BuildForms.tsx:474 #: src/forms/StockForms.tsx:793 #: src/forms/StockForms.tsx:840 -#: src/forms/StockForms.tsx:886 -#: src/forms/StockForms.tsx:925 -#: src/forms/StockForms.tsx:961 -#: src/forms/StockForms.tsx:1004 -#: src/forms/StockForms.tsx:1048 -#: src/forms/StockForms.tsx:1096 -#: src/forms/StockForms.tsx:1140 -#: src/tables/build/BuildLineTable.tsx:96 +#: src/forms/StockForms.tsx:893 +#: src/forms/StockForms.tsx:939 +#: src/forms/StockForms.tsx:977 +#: src/forms/StockForms.tsx:1020 +#: src/forms/StockForms.tsx:1064 +#: src/forms/StockForms.tsx:1112 +#: src/forms/StockForms.tsx:1156 +#: src/tables/build/BuildLineTable.tsx:93 msgid "Batch" msgstr "Lote" @@ -3306,10 +3343,6 @@ msgstr "Nenhuma configuração especificada" #~ msgid "Part category updated" #~ msgstr "Part category updated" -#: src/components/tables/part/PartParameterTable.tsx:41 -#~ msgid "Parameter" -#~ msgstr "Parameter" - #: src/components/tables/part/PartParameterTable.tsx:114 #~ msgid "Part parameter updated" #~ msgstr "Part parameter updated" @@ -3571,15 +3604,16 @@ msgid "Already Imported" msgstr "" #: src/components/wizards/ImportPartWizard.tsx:205 -#: src/pages/company/CompanyDetail.tsx:136 +#: src/pages/company/CompanyDetail.tsx:137 #: src/pages/company/SupplierDetail.tsx:8 -#: src/pages/company/SupplierPartDetail.tsx:130 -#: src/pages/company/SupplierPartDetail.tsx:235 -#: src/pages/company/SupplierPartDetail.tsx:364 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:156 +#: src/pages/company/SupplierPartDetail.tsx:131 +#: src/pages/company/SupplierPartDetail.tsx:236 +#: src/pages/company/SupplierPartDetail.tsx:369 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:157 #: src/tables/Filter.tsx:360 #: src/tables/company/CompanyTable.tsx:96 #: src/tables/part/PartPurchaseOrdersTable.tsx:43 +#: src/tables/purchasing/PurchaseOrderParametricTable.tsx:34 #: src/tables/purchasing/PurchaseOrderTable.tsx:109 #: src/tables/purchasing/SupplierPriceBreakTable.tsx:40 msgid "Supplier" @@ -3648,7 +3682,7 @@ msgid "Next" msgstr "" #: src/components/wizards/ImportPartWizard.tsx:540 -#: src/pages/part/PartDetail.tsx:1046 +#: src/pages/part/PartDetail.tsx:1067 #: src/tables/part/PartTable.tsx:408 msgid "Edit Part" msgstr "Editar Peça" @@ -3669,28 +3703,28 @@ msgstr "" msgid "Import" msgstr "" -#: src/components/wizards/ImportPartWizard.tsx:691 +#: src/components/wizards/ImportPartWizard.tsx:692 msgid "Parameters created successfully!" msgstr "" -#: src/components/wizards/ImportPartWizard.tsx:719 +#: src/components/wizards/ImportPartWizard.tsx:720 msgid "Failed to create parameters, please fix the errors and try again" msgstr "" #. placeholder {0}: supplierPart?.supplier -#: src/components/wizards/ImportPartWizard.tsx:739 +#: src/components/wizards/ImportPartWizard.tsx:740 msgid "Part imported successfully from supplier {0}." msgstr "" -#: src/components/wizards/ImportPartWizard.tsx:752 +#: src/components/wizards/ImportPartWizard.tsx:753 msgid "Open Part" msgstr "" -#: src/components/wizards/ImportPartWizard.tsx:759 +#: src/components/wizards/ImportPartWizard.tsx:760 msgid "Open Supplier Part" msgstr "" -#: src/components/wizards/ImportPartWizard.tsx:766 +#: src/components/wizards/ImportPartWizard.tsx:767 msgid "Open Manufacturer Part" msgstr "" @@ -3699,25 +3733,19 @@ msgstr "" #~ msgid "Import Part" #~ msgstr "Import Part" -#: src/components/wizards/ImportPartWizard.tsx:802 +#: src/components/wizards/ImportPartWizard.tsx:803 msgid "Import Supplier Part" msgstr "" -#: src/components/wizards/ImportPartWizard.tsx:804 +#: src/components/wizards/ImportPartWizard.tsx:805 msgid "Search Supplier Part" msgstr "" -#: src/components/wizards/ImportPartWizard.tsx:806 -#: src/pages/company/ManufacturerPartDetail.tsx:166 -#: src/pages/part/PartDetail.tsx:793 -msgid "Parameters" -msgstr "Parâmetros" - -#: src/components/wizards/ImportPartWizard.tsx:806 +#: src/components/wizards/ImportPartWizard.tsx:807 msgid "Confirm import" msgstr "" -#: src/components/wizards/ImportPartWizard.tsx:808 +#: src/components/wizards/ImportPartWizard.tsx:809 msgid "Done" msgstr "" @@ -3738,24 +3766,24 @@ msgid "Sales Requirements" msgstr "" #: src/components/wizards/OrderPartsWizard.tsx:129 -#: src/forms/StockForms.tsx:887 -#: src/forms/StockForms.tsx:926 -#: src/forms/StockForms.tsx:962 -#: src/forms/StockForms.tsx:1005 -#: src/forms/StockForms.tsx:1049 -#: src/forms/StockForms.tsx:1097 -#: src/forms/StockForms.tsx:1141 -#: src/pages/company/SupplierPartDetail.tsx:190 -#: src/pages/company/SupplierPartDetail.tsx:378 +#: src/forms/StockForms.tsx:894 +#: src/forms/StockForms.tsx:940 +#: src/forms/StockForms.tsx:978 +#: src/forms/StockForms.tsx:1021 +#: src/forms/StockForms.tsx:1065 +#: src/forms/StockForms.tsx:1113 +#: src/forms/StockForms.tsx:1157 +#: src/pages/company/SupplierPartDetail.tsx:191 +#: src/pages/company/SupplierPartDetail.tsx:383 #: src/pages/part/PartDetail.tsx:534 -#: src/pages/part/PartDetail.tsx:984 +#: src/pages/part/PartDetail.tsx:999 #: src/tables/Filter.tsx:92 #: src/tables/purchasing/SupplierPartTable.tsx:230 msgid "In Stock" msgstr "Em Estoque" #: src/components/wizards/OrderPartsWizard.tsx:146 -#: src/tables/build/BuildLineTable.tsx:404 +#: src/tables/build/BuildLineTable.tsx:405 msgid "Required Quantity" msgstr "" @@ -3847,7 +3875,7 @@ msgid "Please correct the errors in the selected parts" msgstr "" #: src/components/wizards/OrderPartsWizard.tsx:587 -#: src/tables/build/BuildLineTable.tsx:815 +#: src/tables/build/BuildLineTable.tsx:822 #: src/tables/part/PartTable.tsx:522 #: src/tables/sales/SalesOrderLineItemTable.tsx:370 msgid "Order Parts" @@ -4349,9 +4377,9 @@ msgstr "" #: src/forms/BuildForms.tsx:333 #: src/forms/BuildForms.tsx:408 #: src/forms/BuildForms.tsx:685 -#: src/tables/build/BuildAllocatedStockTable.tsx:150 +#: src/tables/build/BuildAllocatedStockTable.tsx:147 #: src/tables/build/BuildOutputTable.tsx:582 -#: src/tables/part/PartTestResultTable.tsx:272 +#: src/tables/part/PartTestResultTable.tsx:280 msgid "Build Output" msgstr "Saída da Produção" @@ -4362,22 +4390,22 @@ msgstr "" #: src/forms/BuildForms.tsx:336 #: src/forms/BuildForms.tsx:411 #: src/forms/BuildForms.tsx:475 -#: src/forms/PurchaseOrderForms.tsx:717 +#: src/forms/PurchaseOrderForms.tsx:769 #: src/forms/ReturnOrderForms.tsx:197 #: src/forms/ReturnOrderForms.tsx:244 #: src/forms/StockForms.tsx:712 #: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:87 -#: src/pages/build/BuildDetail.tsx:222 +#: src/pages/build/BuildDetail.tsx:223 #: src/pages/core/UserDetail.tsx:151 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:168 -#: src/pages/sales/ReturnOrderDetail.tsx:135 -#: src/pages/sales/SalesOrderDetail.tsx:125 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:169 +#: src/pages/sales/ReturnOrderDetail.tsx:136 +#: src/pages/sales/SalesOrderDetail.tsx:126 #: src/pages/stock/StockDetail.tsx:170 #: src/tables/Filter.tsx:274 #: src/tables/build/BuildOutputTable.tsx:404 #: src/tables/machine/MachineListTable.tsx:387 #: src/tables/part/PartPurchaseOrdersTable.tsx:38 -#: src/tables/part/PartTestResultTable.tsx:309 +#: src/tables/part/PartTestResultTable.tsx:317 #: src/tables/sales/ReturnOrderLineItemTable.tsx:138 #: src/tables/sales/ReturnOrderLineItemTable.tsx:176 #: src/tables/settings/CustomStateTable.tsx:79 @@ -4443,18 +4471,19 @@ msgid "Build outputs have been cancelled" msgstr "Saídas de produção foram canceladas" #: src/forms/BuildForms.tsx:631 -#: src/pages/build/BuildDetail.tsx:207 -#: src/pages/company/ManufacturerPartDetail.tsx:85 -#: src/pages/company/SupplierPartDetail.tsx:96 +#: src/pages/build/BuildDetail.tsx:208 +#: src/pages/company/ManufacturerPartDetail.tsx:84 +#: src/pages/company/SupplierPartDetail.tsx:97 #: src/pages/part/PartDetail.tsx:453 #: src/pages/stock/StockDetail.tsx:153 #: src/tables/bom/BomTable.tsx:134 #: src/tables/bom/UsedInTable.tsx:40 -#: src/tables/build/BuildAllocatedStockTable.tsx:108 -#: src/tables/build/BuildLineTable.tsx:336 +#: src/tables/build/BuildAllocatedStockTable.tsx:105 +#: src/tables/build/BuildLineTable.tsx:337 #: src/tables/build/BuildOrderTable.tsx:79 #: src/tables/part/PartSalesAllocationsTable.tsx:61 #: src/tables/part/RelatedPartTable.tsx:73 +#: src/tables/purchasing/ManufacturerPartParametricTable.tsx:21 #: src/tables/purchasing/ManufacturerPartTable.tsx:69 #: src/tables/purchasing/SupplierPartTable.tsx:70 #: src/tables/sales/SalesOrderAllocationTable.tsx:135 @@ -4466,47 +4495,47 @@ msgstr "IPN" #: src/forms/BuildForms.tsx:632 #: src/forms/BuildForms.tsx:796 #: src/forms/BuildForms.tsx:897 -#: src/forms/SalesOrderForms.tsx:306 -#: src/tables/build/BuildAllocatedStockTable.tsx:139 -#: src/tables/build/BuildLineTable.tsx:182 +#: src/forms/SalesOrderForms.tsx:385 +#: src/tables/build/BuildAllocatedStockTable.tsx:136 +#: src/tables/build/BuildLineTable.tsx:183 #: src/tables/sales/SalesOrderLineItemTable.tsx:342 #: src/tables/stock/StockItemTable.tsx:338 msgid "Allocated" msgstr "Alocado" #: src/forms/BuildForms.tsx:667 -#: src/forms/SalesOrderForms.tsx:295 -#: src/pages/build/BuildDetail.tsx:108 -#: src/pages/build/BuildDetail.tsx:326 +#: src/forms/SalesOrderForms.tsx:374 +#: src/pages/build/BuildDetail.tsx:109 +#: src/pages/build/BuildDetail.tsx:327 msgid "Source Location" msgstr "Local de Origem" #: src/forms/BuildForms.tsx:668 -#: src/forms/SalesOrderForms.tsx:296 +#: src/forms/SalesOrderForms.tsx:375 msgid "Select the source location for the stock allocation" msgstr "Selecione o local de origem para alocação de estoque" #: src/forms/BuildForms.tsx:700 -#: src/forms/SalesOrderForms.tsx:336 -#: src/tables/build/BuildLineTable.tsx:574 -#: src/tables/build/BuildLineTable.tsx:731 -#: src/tables/build/BuildLineTable.tsx:830 +#: src/forms/SalesOrderForms.tsx:415 +#: src/tables/build/BuildLineTable.tsx:575 +#: src/tables/build/BuildLineTable.tsx:738 +#: src/tables/build/BuildLineTable.tsx:837 #: src/tables/sales/SalesOrderLineItemTable.tsx:380 #: src/tables/sales/SalesOrderLineItemTable.tsx:406 msgid "Allocate Stock" msgstr "Alocar Estoque" #: src/forms/BuildForms.tsx:703 -#: src/forms/SalesOrderForms.tsx:341 +#: src/forms/SalesOrderForms.tsx:420 msgid "Stock items allocated" msgstr "Itens de estoque alocados" #: src/forms/BuildForms.tsx:816 #: src/forms/BuildForms.tsx:917 -#: src/tables/build/BuildAllocatedStockTable.tsx:240 -#: src/tables/build/BuildAllocatedStockTable.tsx:272 -#: src/tables/build/BuildLineTable.tsx:741 -#: src/tables/build/BuildLineTable.tsx:864 +#: src/tables/build/BuildAllocatedStockTable.tsx:243 +#: src/tables/build/BuildAllocatedStockTable.tsx:279 +#: src/tables/build/BuildLineTable.tsx:748 +#: src/tables/build/BuildLineTable.tsx:871 msgid "Consume Stock" msgstr "" @@ -4521,21 +4550,21 @@ msgstr "" #~ msgstr "Stock items consumed" #: src/forms/BuildForms.tsx:853 -#: src/tables/build/BuildLineTable.tsx:514 +#: src/tables/build/BuildLineTable.tsx:515 #: src/tables/part/PartBuildAllocationsTable.tsx:101 msgid "Fully consumed" msgstr "" #: src/forms/BuildForms.tsx:898 -#: src/tables/build/BuildLineTable.tsx:187 +#: src/tables/build/BuildLineTable.tsx:188 #: src/tables/stock/StockItemTable.tsx:367 msgid "Consumed" msgstr "" -#: src/forms/CommonForms.tsx:88 -#: src/forms/PurchaseOrderForms.tsx:125 +#: src/forms/CommonForms.tsx:92 +#: src/forms/PurchaseOrderForms.tsx:176 #: src/forms/ReturnOrderForms.tsx:138 -#: src/forms/SalesOrderForms.tsx:164 +#: src/forms/SalesOrderForms.tsx:185 msgid "Select project code for this line item" msgstr "" @@ -4543,16 +4572,16 @@ msgstr "" #~ msgid "Company updated" #~ msgstr "Company updated" -#: src/forms/PartForms.tsx:85 -#: src/forms/PartForms.tsx:207 -#: src/pages/part/CategoryDetail.tsx:124 +#: src/forms/PartForms.tsx:99 +#: src/forms/PartForms.tsx:228 +#: src/pages/part/CategoryDetail.tsx:127 #: src/pages/part/PartDetail.tsx:668 #: src/tables/part/PartCategoryTable.tsx:94 #: src/tables/part/PartTable.tsx:325 msgid "Subscribed" msgstr "Inscrito" -#: src/forms/PartForms.tsx:86 +#: src/forms/PartForms.tsx:100 msgid "Subscribe to notifications for this part" msgstr "" @@ -4564,156 +4593,156 @@ msgstr "" #~ msgid "Part updated" #~ msgstr "Part updated" -#: src/forms/PartForms.tsx:193 +#: src/forms/PartForms.tsx:214 msgid "Parent part category" msgstr "Categoria de peça parental" -#: src/forms/PartForms.tsx:208 +#: src/forms/PartForms.tsx:229 msgid "Subscribe to notifications for this category" msgstr "" -#: src/forms/PurchaseOrderForms.tsx:388 -msgid "Assign Batch Code and Serial Numbers" -msgstr "" - -#: src/forms/PurchaseOrderForms.tsx:390 -msgid "Assign Batch Code" -msgstr "" - -#: src/forms/PurchaseOrderForms.tsx:410 -msgid "Choose Location" -msgstr "Escolher local" - -#: src/forms/PurchaseOrderForms.tsx:418 -msgid "Item Destination selected" -msgstr "Destino do item selecionado" - #: src/forms/PurchaseOrderForms.tsx:421 #~ msgid "Assign Batch Code{0}" #~ msgstr "Assign Batch Code{0}" -#: src/forms/PurchaseOrderForms.tsx:428 -msgid "Part category default location selected" -msgstr "Localização padrão da categoria de peça selecionada" +#: src/forms/PurchaseOrderForms.tsx:440 +msgid "Assign Batch Code and Serial Numbers" +msgstr "" -#: src/forms/PurchaseOrderForms.tsx:438 -msgid "Received stock location selected" -msgstr "Localização do estoque recebida selecionada" +#: src/forms/PurchaseOrderForms.tsx:442 +msgid "Assign Batch Code" +msgstr "" #: src/forms/PurchaseOrderForms.tsx:444 #: src/forms/StockForms.tsx:428 #~ msgid "Remove item from list" #~ msgstr "Remove item from list" -#: src/forms/PurchaseOrderForms.tsx:446 +#: src/forms/PurchaseOrderForms.tsx:462 +msgid "Choose Location" +msgstr "Escolher local" + +#: src/forms/PurchaseOrderForms.tsx:470 +msgid "Item Destination selected" +msgstr "Destino do item selecionado" + +#: src/forms/PurchaseOrderForms.tsx:480 +msgid "Part category default location selected" +msgstr "Localização padrão da categoria de peça selecionada" + +#: src/forms/PurchaseOrderForms.tsx:490 +msgid "Received stock location selected" +msgstr "Localização do estoque recebida selecionada" + +#: src/forms/PurchaseOrderForms.tsx:498 msgid "Default location selected" msgstr "Localização padrão selecionada" -#: src/forms/PurchaseOrderForms.tsx:507 +#: src/forms/PurchaseOrderForms.tsx:559 msgid "Set Location" msgstr "Definir Localização" -#: src/forms/PurchaseOrderForms.tsx:524 -msgid "Set Expiry Date" -msgstr "" - -#: src/forms/PurchaseOrderForms.tsx:532 -#: src/forms/StockForms.tsx:693 -msgid "Adjust Packaging" -msgstr "Ajustar Pacotes" - -#: src/forms/PurchaseOrderForms.tsx:540 -#: src/forms/StockForms.tsx:684 -#: src/hooks/UseStockAdjustActions.tsx:148 -msgid "Change Status" -msgstr "Alterar Status" - -#: src/forms/PurchaseOrderForms.tsx:546 -msgid "Add Note" -msgstr "Adicionar observação" - #: src/forms/PurchaseOrderForms.tsx:566 #~ msgid "Serial numbers" #~ msgstr "Serial numbers" +#: src/forms/PurchaseOrderForms.tsx:576 +msgid "Set Expiry Date" +msgstr "" + #: src/forms/PurchaseOrderForms.tsx:582 #~ msgid "Store at line item destination" #~ msgstr "Store at line item destination" -#: src/forms/PurchaseOrderForms.tsx:610 -msgid "Store at default location" -msgstr "Armazenar no local padrão" +#: src/forms/PurchaseOrderForms.tsx:584 +#: src/forms/StockForms.tsx:693 +msgid "Adjust Packaging" +msgstr "Ajustar Pacotes" -#: src/forms/PurchaseOrderForms.tsx:625 -msgid "Store at line item destination " -msgstr "" +#: src/forms/PurchaseOrderForms.tsx:592 +#: src/forms/StockForms.tsx:684 +#: src/hooks/UseStockAdjustActions.tsx:148 +msgid "Change Status" +msgstr "Alterar Status" -#: src/forms/PurchaseOrderForms.tsx:637 -msgid "Store with already received stock" -msgstr "Armazenar com estoque já recebido" +#: src/forms/PurchaseOrderForms.tsx:598 +msgid "Add Note" +msgstr "Adicionar observação" #: src/forms/PurchaseOrderForms.tsx:658 #~ msgid "Receive line items" #~ msgstr "Receive line items" -#: src/forms/PurchaseOrderForms.tsx:661 -#: src/pages/build/BuildDetail.tsx:340 +#: src/forms/PurchaseOrderForms.tsx:662 +msgid "Store at default location" +msgstr "Armazenar no local padrão" + +#: src/forms/PurchaseOrderForms.tsx:677 +msgid "Store at line item destination " +msgstr "" + +#: src/forms/PurchaseOrderForms.tsx:689 +msgid "Store with already received stock" +msgstr "Armazenar com estoque já recebido" + +#: src/forms/PurchaseOrderForms.tsx:713 +#: src/pages/build/BuildDetail.tsx:341 #: src/pages/stock/StockDetail.tsx:280 #: src/pages/stock/StockDetail.tsx:952 #: src/tables/Filter.tsx:83 -#: src/tables/build/BuildAllocatedStockTable.tsx:128 +#: src/tables/build/BuildAllocatedStockTable.tsx:125 #: src/tables/build/BuildOutputTable.tsx:112 -#: src/tables/part/PartTestResultTable.tsx:260 -#: src/tables/part/PartTestResultTable.tsx:281 +#: src/tables/part/PartTestResultTable.tsx:268 +#: src/tables/part/PartTestResultTable.tsx:289 #: src/tables/sales/SalesOrderAllocationTable.tsx:149 msgid "Batch Code" msgstr "Código de Lote" -#: src/forms/PurchaseOrderForms.tsx:662 +#: src/forms/PurchaseOrderForms.tsx:714 msgid "Enter batch code for received items" msgstr "" -#: src/forms/PurchaseOrderForms.tsx:675 +#: src/forms/PurchaseOrderForms.tsx:727 #: src/forms/StockForms.tsx:218 msgid "Serial Numbers" msgstr "Números de Série" -#: src/forms/PurchaseOrderForms.tsx:676 +#: src/forms/PurchaseOrderForms.tsx:728 msgid "Enter serial numbers for received items" msgstr "" -#: src/forms/PurchaseOrderForms.tsx:690 +#: src/forms/PurchaseOrderForms.tsx:742 #: src/pages/stock/StockDetail.tsx:382 #: src/tables/stock/StockItemTable.tsx:294 msgid "Expiry Date" msgstr "Data de Validade" -#: src/forms/PurchaseOrderForms.tsx:691 +#: src/forms/PurchaseOrderForms.tsx:743 msgid "Enter an expiry date for received items" msgstr "" -#: src/forms/PurchaseOrderForms.tsx:703 +#: src/forms/PurchaseOrderForms.tsx:755 #: src/forms/StockForms.tsx:728 -#: src/pages/company/SupplierPartDetail.tsx:172 -#: src/pages/company/SupplierPartDetail.tsx:236 +#: src/pages/company/SupplierPartDetail.tsx:173 +#: src/pages/company/SupplierPartDetail.tsx:237 #: src/pages/stock/StockDetail.tsx:419 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:227 msgid "Packaging" msgstr "Embalagem" -#: src/forms/PurchaseOrderForms.tsx:727 -#: src/pages/company/SupplierPartDetail.tsx:120 +#: src/forms/PurchaseOrderForms.tsx:779 +#: src/pages/company/SupplierPartDetail.tsx:121 #: src/tables/ColumnRenderers.tsx:332 msgid "Note" msgstr "Anotação" -#: src/forms/PurchaseOrderForms.tsx:799 -#: src/pages/company/SupplierPartDetail.tsx:138 +#: src/forms/PurchaseOrderForms.tsx:851 +#: src/pages/company/SupplierPartDetail.tsx:139 #: src/tables/purchasing/SupplierPriceBreakTable.tsx:49 msgid "SKU" msgstr "Código (SKU)" -#: src/forms/PurchaseOrderForms.tsx:800 +#: src/forms/PurchaseOrderForms.tsx:852 #: src/tables/part/PartPurchaseOrdersTable.tsx:127 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:213 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:283 @@ -4721,11 +4750,11 @@ msgstr "Código (SKU)" msgid "Received" msgstr "Recebido" -#: src/forms/PurchaseOrderForms.tsx:817 +#: src/forms/PurchaseOrderForms.tsx:869 msgid "Receive Line Items" msgstr "Excluir Itens de Linha" -#: src/forms/PurchaseOrderForms.tsx:823 +#: src/forms/PurchaseOrderForms.tsx:875 msgid "Items received" msgstr "Itens Recebidos" @@ -4737,7 +4766,35 @@ msgstr "Receber Itens" msgid "Item received into stock" msgstr "Ítem recebido em estoque" -#: src/forms/SalesOrderForms.tsx:401 +#: src/forms/SalesOrderForms.tsx:208 +#: src/forms/SalesOrderForms.tsx:210 +#: src/tables/sales/SalesOrderShipmentTable.tsx:215 +msgid "Check Shipment" +msgstr "" + +#: src/forms/SalesOrderForms.tsx:211 +msgid "Marking the shipment as checked indicates that you have verified that all items included in this shipment are correct" +msgstr "" + +#: src/forms/SalesOrderForms.tsx:221 +msgid "Shipment marked as checked" +msgstr "" + +#: src/forms/SalesOrderForms.tsx:236 +#: src/forms/SalesOrderForms.tsx:238 +#: src/tables/sales/SalesOrderShipmentTable.tsx:228 +msgid "Uncheck Shipment" +msgstr "" + +#: src/forms/SalesOrderForms.tsx:239 +msgid "Marking the shipment as unchecked indicates that the shipment requires further verification" +msgstr "" + +#: src/forms/SalesOrderForms.tsx:249 +msgid "Shipment marked as unchecked" +msgstr "" + +#: src/forms/SalesOrderForms.tsx:480 msgid "Leave blank to use the order address" msgstr "" @@ -4792,150 +4849,150 @@ msgstr "Mover" msgid "Return" msgstr "Voltar" -#: src/forms/StockForms.tsx:963 +#: src/forms/StockForms.tsx:979 #: src/pages/Index/Scan.tsx:182 msgid "Count" msgstr "Contar" -#: src/forms/StockForms.tsx:1246 +#: src/forms/StockForms.tsx:1262 #: src/hooks/UseStockAdjustActions.tsx:108 msgid "Add Stock" msgstr "Adicionar Estoque" -#: src/forms/StockForms.tsx:1247 +#: src/forms/StockForms.tsx:1263 msgid "Stock added" msgstr "Estoque adicionado" -#: src/forms/StockForms.tsx:1250 +#: src/forms/StockForms.tsx:1266 msgid "Increase the quantity of the selected stock items by a given amount." msgstr "" -#: src/forms/StockForms.tsx:1261 +#: src/forms/StockForms.tsx:1277 #: src/hooks/UseStockAdjustActions.tsx:118 msgid "Remove Stock" msgstr "Remover Estoque" -#: src/forms/StockForms.tsx:1262 +#: src/forms/StockForms.tsx:1278 msgid "Stock removed" msgstr "Estoque removido" -#: src/forms/StockForms.tsx:1265 +#: src/forms/StockForms.tsx:1281 msgid "Decrease the quantity of the selected stock items by a given amount." msgstr "" -#: src/forms/StockForms.tsx:1276 +#: src/forms/StockForms.tsx:1292 #: src/hooks/UseStockAdjustActions.tsx:128 msgid "Transfer Stock" msgstr "Transferir Estoque" -#: src/forms/StockForms.tsx:1277 +#: src/forms/StockForms.tsx:1293 msgid "Stock transferred" msgstr "Estoque transferido" -#: src/forms/StockForms.tsx:1280 +#: src/forms/StockForms.tsx:1296 msgid "Transfer selected items to the specified location." msgstr "" -#: src/forms/StockForms.tsx:1291 +#: src/forms/StockForms.tsx:1307 #: src/hooks/UseStockAdjustActions.tsx:168 msgid "Return Stock" msgstr "" -#: src/forms/StockForms.tsx:1292 +#: src/forms/StockForms.tsx:1308 msgid "Stock returned" msgstr "" -#: src/forms/StockForms.tsx:1295 +#: src/forms/StockForms.tsx:1311 msgid "Return selected items into stock, to the specified location." msgstr "" -#: src/forms/StockForms.tsx:1306 +#: src/forms/StockForms.tsx:1322 #: src/hooks/UseStockAdjustActions.tsx:98 msgid "Count Stock" msgstr "Contar Estoque" -#: src/forms/StockForms.tsx:1307 +#: src/forms/StockForms.tsx:1323 msgid "Stock counted" msgstr "" -#: src/forms/StockForms.tsx:1310 +#: src/forms/StockForms.tsx:1326 msgid "Count the selected stock items, and adjust the quantity accordingly." msgstr "" -#: src/forms/StockForms.tsx:1321 +#: src/forms/StockForms.tsx:1337 msgid "Change Stock Status" msgstr "Mudar estado do estoque" -#: src/forms/StockForms.tsx:1322 +#: src/forms/StockForms.tsx:1338 msgid "Stock status changed" msgstr "" -#: src/forms/StockForms.tsx:1325 +#: src/forms/StockForms.tsx:1341 msgid "Change the status of the selected stock items." msgstr "" -#: src/forms/StockForms.tsx:1336 +#: src/forms/StockForms.tsx:1352 #: src/hooks/UseStockAdjustActions.tsx:138 msgid "Merge Stock" msgstr "Mesclar estoque" -#: src/forms/StockForms.tsx:1337 +#: src/forms/StockForms.tsx:1353 msgid "Stock merged" msgstr "" -#: src/forms/StockForms.tsx:1339 +#: src/forms/StockForms.tsx:1355 msgid "Merge Stock Items" msgstr "" -#: src/forms/StockForms.tsx:1341 +#: src/forms/StockForms.tsx:1357 msgid "Merge operation cannot be reversed" msgstr "" -#: src/forms/StockForms.tsx:1342 +#: src/forms/StockForms.tsx:1358 msgid "Tracking information may be lost when merging items" msgstr "" -#: src/forms/StockForms.tsx:1343 +#: src/forms/StockForms.tsx:1359 msgid "Supplier information may be lost when merging items" msgstr "" -#: src/forms/StockForms.tsx:1361 +#: src/forms/StockForms.tsx:1377 msgid "Assign Stock to Customer" msgstr "" -#: src/forms/StockForms.tsx:1362 +#: src/forms/StockForms.tsx:1378 msgid "Stock assigned to customer" msgstr "" -#: src/forms/StockForms.tsx:1372 +#: src/forms/StockForms.tsx:1388 msgid "Delete Stock Items" msgstr "Excluir Item de Estoque" -#: src/forms/StockForms.tsx:1373 +#: src/forms/StockForms.tsx:1389 msgid "Stock deleted" msgstr "Estoque excluído" -#: src/forms/StockForms.tsx:1376 +#: src/forms/StockForms.tsx:1392 msgid "This operation will permanently delete the selected stock items." msgstr "" -#: src/forms/StockForms.tsx:1385 +#: src/forms/StockForms.tsx:1401 msgid "Parent stock location" msgstr "Local de estoque pai" -#: src/forms/StockForms.tsx:1512 +#: src/forms/StockForms.tsx:1528 msgid "Find Serial Number" msgstr "Encontrar Número de Série" -#: src/forms/StockForms.tsx:1523 +#: src/forms/StockForms.tsx:1539 msgid "No matching items" msgstr "Nenhum item correspondente" -#: src/forms/StockForms.tsx:1529 +#: src/forms/StockForms.tsx:1545 msgid "Multiple matching items" msgstr "Vários itens correspondentes" -#: src/forms/StockForms.tsx:1538 +#: src/forms/StockForms.tsx:1554 msgid "Invalid response from server" msgstr "Resposta inválida do servidor" @@ -4953,7 +5010,6 @@ msgstr "" #: src/tables/FilterSelectDrawer.tsx:137 #: src/tables/FilterSelectDrawer.tsx:149 #: src/tables/part/PartTestResultTable.tsx:206 -#: src/tables/purchasing/ManufacturerPartParameterTable.tsx:42 #: src/tables/stock/StockItemTestResultTable.tsx:207 msgid "Value" msgstr "Valor" @@ -5244,7 +5300,7 @@ msgid "Delete selected stock items" msgstr "" #: src/hooks/UseStockAdjustActions.tsx:205 -#: src/pages/part/PartDetail.tsx:1137 +#: src/pages/part/PartDetail.tsx:1158 msgid "Stock Actions" msgstr "Ações de Estoque" @@ -5932,6 +5988,9 @@ msgstr "" #: src/pages/Index/Settings/AccountSettings/MFASettings.tsx:310 #: src/pages/Index/Settings/AccountSettings/MFASettings.tsx:401 +#: src/tables/build/BuildAllocatedStockTable.tsx:181 +#: src/tables/build/BuildLineTable.tsx:668 +#: src/tables/sales/SalesOrderAllocationTable.tsx:220 msgid "Confirm Removal" msgstr "" @@ -6394,30 +6453,34 @@ msgid "Email Messages" msgstr "" #: src/pages/Index/Settings/AdminCenter/HomePanel.tsx:22 -msgid "Active Alerts" -msgstr "" +#~ msgid "Active Alerts" +#~ msgstr "Active Alerts" #: src/pages/Index/Settings/AdminCenter/HomePanel.tsx:27 -msgid "Inactive Alerts" +#~ msgid "Inactive Alerts" +#~ msgstr "Inactive Alerts" + +#: src/pages/Index/Settings/AdminCenter/HomePanel.tsx:36 +msgid "System Status" msgstr "" -#: src/pages/Index/Settings/AdminCenter/HomePanel.tsx:38 +#: src/pages/Index/Settings/AdminCenter/HomePanel.tsx:47 msgid "Admin Center Information" msgstr "" -#: src/pages/Index/Settings/AdminCenter/HomePanel.tsx:44 +#: src/pages/Index/Settings/AdminCenter/HomePanel.tsx:53 msgid "The home panel (and the whole Admin Center) is a new feature starting with the new UI and was previously (before 1.0) not available." msgstr "" -#: src/pages/Index/Settings/AdminCenter/HomePanel.tsx:51 +#: src/pages/Index/Settings/AdminCenter/HomePanel.tsx:60 msgid "The admin center provides a centralized location for all administration functionality and is meant to replace all interaction with the (django) backend admin interface." msgstr "" -#: src/pages/Index/Settings/AdminCenter/HomePanel.tsx:58 +#: src/pages/Index/Settings/AdminCenter/HomePanel.tsx:67 msgid "Please open feature requests (after checking the tracker) for any existing backend admin functionality you are missing in this UI. The backend admin interface should be used carefully and seldom." msgstr "" -#: src/pages/Index/Settings/AdminCenter/HomePanel.tsx:76 +#: src/pages/Index/Settings/AdminCenter/HomePanel.tsx:85 msgid "Quick Actions" msgstr "" @@ -6476,11 +6539,11 @@ msgstr "Unidades personalizadas" #: src/pages/Index/Settings/AdminCenter/Index.tsx:195 #: src/pages/part/CategoryDetail.tsx:313 -msgid "Part Parameters" -msgstr "Parâmetros da Peça" +#~ msgid "Part Parameters" +#~ msgstr "Part Parameters" #: src/pages/Index/Settings/AdminCenter/Index.tsx:202 -#: src/pages/part/CategoryDetail.tsx:306 +#: src/pages/part/CategoryDetail.tsx:329 msgid "Category Parameters" msgstr "Parâmetros de Categoria" @@ -6494,7 +6557,7 @@ msgstr "Tipo de Localização" #: src/pages/Index/Settings/AdminCenter/Index.tsx:235 #: src/pages/Index/Settings/AdminCenter/MachineManagementPanel.tsx:52 -#: src/tables/machine/MachineTypeTable.tsx:325 +#: src/tables/machine/MachineTypeTable.tsx:323 msgid "Machines" msgstr "Máquinas" @@ -6507,8 +6570,8 @@ msgid "Data Management" msgstr "" #: src/pages/Index/Settings/AdminCenter/Index.tsx:270 -#: src/pages/Index/Settings/SystemSettings.tsx:175 -#: src/pages/Index/Settings/UserSettings.tsx:118 +#: src/pages/Index/Settings/SystemSettings.tsx:176 +#: src/pages/Index/Settings/UserSettings.tsx:119 msgid "Reporting" msgstr "Relatórios" @@ -6709,11 +6772,11 @@ msgstr "Tokens" msgid "The settings below are specific to each available plugin" msgstr "" -#: src/pages/Index/Settings/SystemSettings.tsx:77 +#: src/pages/Index/Settings/SystemSettings.tsx:78 msgid "Authentication" msgstr "Autenticação" -#: src/pages/Index/Settings/SystemSettings.tsx:103 +#: src/pages/Index/Settings/SystemSettings.tsx:104 msgid "Barcodes" msgstr "Códigos de barras" @@ -6725,12 +6788,12 @@ msgstr "Códigos de barras" #~ msgid "This panel is a placeholder." #~ msgstr "This panel is a placeholder." -#: src/pages/Index/Settings/SystemSettings.tsx:127 -#: src/pages/Index/Settings/UserSettings.tsx:112 +#: src/pages/Index/Settings/SystemSettings.tsx:128 +#: src/pages/Index/Settings/UserSettings.tsx:113 msgid "The settings below are specific to each available notification method" msgstr "" -#: src/pages/Index/Settings/SystemSettings.tsx:133 +#: src/pages/Index/Settings/SystemSettings.tsx:134 msgid "Pricing" msgstr "Preços" @@ -6738,7 +6801,7 @@ msgstr "Preços" #~ msgid "Exchange Rates" #~ msgstr "Exchange Rates" -#: src/pages/Index/Settings/SystemSettings.tsx:169 +#: src/pages/Index/Settings/SystemSettings.tsx:170 msgid "Labels" msgstr "Etiquetas" @@ -6790,15 +6853,15 @@ msgstr "Marcar como não lido" #~ msgid "Delete notifications" #~ msgstr "Delete notifications" -#: src/pages/build/BuildDetail.tsx:69 +#: src/pages/build/BuildDetail.tsx:70 msgid "No Required Items" msgstr "" -#: src/pages/build/BuildDetail.tsx:71 +#: src/pages/build/BuildDetail.tsx:72 msgid "This build order does not have any required items." msgstr "" -#: src/pages/build/BuildDetail.tsx:72 +#: src/pages/build/BuildDetail.tsx:73 msgid "The assembled part may not have a Bill of Materials (BOM) defined, or the BOM is empty." msgstr "" @@ -6826,7 +6889,7 @@ msgstr "" #~ msgid "Build Order updated" #~ msgstr "Build Order updated" -#: src/pages/build/BuildDetail.tsx:215 +#: src/pages/build/BuildDetail.tsx:216 #: src/pages/part/PartDetail.tsx:480 #: src/pages/stock/StockDetail.tsx:161 #: src/tables/bom/UsedInTable.tsx:44 @@ -6843,10 +6906,10 @@ msgstr "Revisão" #~ msgid "Duplicate build order" #~ msgstr "Duplicate build order" -#: src/pages/build/BuildDetail.tsx:228 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:174 -#: src/pages/sales/ReturnOrderDetail.tsx:141 -#: src/pages/sales/SalesOrderDetail.tsx:131 +#: src/pages/build/BuildDetail.tsx:229 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:175 +#: src/pages/sales/ReturnOrderDetail.tsx:142 +#: src/pages/sales/SalesOrderDetail.tsx:132 #: src/pages/stock/StockDetail.tsx:176 msgid "Custom Status" msgstr "Status Personalizado" @@ -6855,9 +6918,9 @@ msgstr "Status Personalizado" #~ msgid "Delete build order" #~ msgstr "Delete build order" -#: src/pages/build/BuildDetail.tsx:237 -#: src/pages/build/BuildDetail.tsx:723 -#: src/pages/build/BuildIndex.tsx:28 +#: src/pages/build/BuildDetail.tsx:238 +#: src/pages/build/BuildDetail.tsx:728 +#: src/pages/build/BuildIndex.tsx:34 #: src/pages/stock/LocationDetail.tsx:140 #: src/tables/build/BuildOrderTable.tsx:123 #: src/tables/build/BuildOrderTable.tsx:183 @@ -6865,57 +6928,57 @@ msgstr "Status Personalizado" msgid "External" msgstr "Externo" -#: src/pages/build/BuildDetail.tsx:244 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:141 -#: src/pages/sales/ReturnOrderDetail.tsx:108 -#: src/pages/sales/SalesOrderDetail.tsx:98 +#: src/pages/build/BuildDetail.tsx:245 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:142 +#: src/pages/sales/ReturnOrderDetail.tsx:109 +#: src/pages/sales/SalesOrderDetail.tsx:99 #: src/tables/ColumnRenderers.tsx:321 -#: src/tables/build/BuildAllocatedStockTable.tsx:115 -#: src/tables/build/BuildLineTable.tsx:352 +#: src/tables/build/BuildAllocatedStockTable.tsx:112 +#: src/tables/build/BuildLineTable.tsx:353 msgid "Reference" msgstr "Referência" -#: src/pages/build/BuildDetail.tsx:258 +#: src/pages/build/BuildDetail.tsx:259 msgid "Parent Build" msgstr "Produção Pai" -#: src/pages/build/BuildDetail.tsx:269 +#: src/pages/build/BuildDetail.tsx:270 msgid "Build Quantity" msgstr "Quantidade de Produção" -#: src/pages/build/BuildDetail.tsx:275 +#: src/pages/build/BuildDetail.tsx:276 #: src/pages/part/PartDetail.tsx:598 #: src/tables/bom/BomTable.tsx:365 #: src/tables/bom/BomTable.tsx:407 msgid "Can Build" msgstr "Pode Produzir" -#: src/pages/build/BuildDetail.tsx:284 -#: src/pages/build/BuildDetail.tsx:474 +#: src/pages/build/BuildDetail.tsx:285 +#: src/pages/build/BuildDetail.tsx:475 msgid "Completed Outputs" msgstr "Saídas Completas" -#: src/pages/build/BuildDetail.tsx:301 +#: src/pages/build/BuildDetail.tsx:302 #: src/tables/Filter.tsx:381 #: src/tables/build/BuildOrderTable.tsx:143 msgid "Issued By" msgstr "Emitido por" -#: src/pages/build/BuildDetail.tsx:309 +#: src/pages/build/BuildDetail.tsx:310 #: src/pages/part/PartDetail.tsx:691 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:261 -#: src/pages/sales/ReturnOrderDetail.tsx:239 -#: src/pages/sales/SalesOrderDetail.tsx:232 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:262 +#: src/pages/sales/ReturnOrderDetail.tsx:240 +#: src/pages/sales/SalesOrderDetail.tsx:233 #: src/tables/ColumnRenderers.tsx:464 #: src/tables/Filter.tsx:319 msgid "Responsible" msgstr "Responsável" -#: src/pages/build/BuildDetail.tsx:327 +#: src/pages/build/BuildDetail.tsx:328 msgid "Any location" msgstr "Qualquer local" -#: src/pages/build/BuildDetail.tsx:334 +#: src/pages/build/BuildDetail.tsx:335 msgid "Destination Location" msgstr "Local de Destino" @@ -6924,24 +6987,24 @@ msgstr "Local de Destino" #~ msgid "Test Statistics" #~ msgstr "Test Statistics" -#: src/pages/build/BuildDetail.tsx:350 +#: src/pages/build/BuildDetail.tsx:351 #: src/tables/settings/ApiTokenTable.tsx:97 #: src/tables/settings/PendingTasksTable.tsx:41 msgid "Created" msgstr "Criado" -#: src/pages/build/BuildDetail.tsx:358 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:286 -#: src/pages/sales/ReturnOrderDetail.tsx:265 -#: src/pages/sales/SalesOrderDetail.tsx:257 +#: src/pages/build/BuildDetail.tsx:359 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:287 +#: src/pages/sales/ReturnOrderDetail.tsx:266 +#: src/pages/sales/SalesOrderDetail.tsx:258 #: src/tables/ColumnRenderers.tsx:486 msgid "Start Date" msgstr "" -#: src/pages/build/BuildDetail.tsx:366 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:294 -#: src/pages/sales/ReturnOrderDetail.tsx:273 -#: src/pages/sales/SalesOrderDetail.tsx:265 +#: src/pages/build/BuildDetail.tsx:367 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:295 +#: src/pages/sales/ReturnOrderDetail.tsx:274 +#: src/pages/sales/SalesOrderDetail.tsx:266 #: src/tables/ColumnRenderers.tsx:494 #: src/tables/part/PartPurchaseOrdersTable.tsx:101 #: src/tables/sales/ReturnOrderLineItemTable.tsx:154 @@ -6954,185 +7017,185 @@ msgstr "Data Prevista" #~ msgstr "Reporting Actions" #: src/pages/build/BuildDetail.tsx:374 +#~ msgid "Print build report" +#~ msgstr "Print build report" + +#: src/pages/build/BuildDetail.tsx:375 #: src/tables/build/BuildOrderTable.tsx:93 #: src/tables/sales/SalesOrderLineItemTable.tsx:347 msgid "Completed" msgstr "Concluído" -#: src/pages/build/BuildDetail.tsx:374 -#~ msgid "Print build report" -#~ msgstr "Print build report" - -#: src/pages/build/BuildDetail.tsx:410 +#: src/pages/build/BuildDetail.tsx:411 msgid "Build Details" msgstr "Detalhes da Produção" -#: src/pages/build/BuildDetail.tsx:416 +#: src/pages/build/BuildDetail.tsx:417 msgid "Required Parts" msgstr "" -#: src/pages/build/BuildDetail.tsx:428 -#: src/pages/sales/SalesOrderDetail.tsx:407 -#: src/pages/sales/SalesOrderShipmentDetail.tsx:261 +#: src/pages/build/BuildDetail.tsx:429 +#: src/pages/sales/SalesOrderDetail.tsx:408 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:259 #: src/tables/part/PartSalesAllocationsTable.tsx:73 msgid "Allocated Stock" msgstr "Estoque Alocado" -#: src/pages/build/BuildDetail.tsx:444 +#: src/pages/build/BuildDetail.tsx:445 msgid "Consumed Stock" msgstr "Estoque Consumido" -#: src/pages/build/BuildDetail.tsx:461 +#: src/pages/build/BuildDetail.tsx:462 msgid "Incomplete Outputs" msgstr "Saídas Incompletas" -#: src/pages/build/BuildDetail.tsx:489 +#: src/pages/build/BuildDetail.tsx:490 msgid "External Orders" msgstr "" -#: src/pages/build/BuildDetail.tsx:503 +#: src/pages/build/BuildDetail.tsx:504 msgid "Child Build Orders" msgstr "Pedido de Produção Filhos" -#: src/pages/build/BuildDetail.tsx:513 -#: src/pages/part/PartDetail.tsx:937 +#: src/pages/build/BuildDetail.tsx:514 +#: src/pages/part/PartDetail.tsx:926 #: src/pages/stock/StockDetail.tsx:587 #: src/tables/build/BuildOutputTable.tsx:654 #: src/tables/stock/StockItemTestResultTable.tsx:173 msgid "Test Results" msgstr "Resultados do teste" -#: src/pages/build/BuildDetail.tsx:550 +#: src/pages/build/BuildDetail.tsx:555 msgid "Edit Build Order" msgstr "Editar Pedido de Produção" -#: src/pages/build/BuildDetail.tsx:572 +#: src/pages/build/BuildDetail.tsx:577 #: src/tables/build/BuildOrderTable.tsx:207 #: src/tables/build/BuildOrderTable.tsx:223 msgid "Add Build Order" msgstr "Adicionar Pedido de Produção" -#: src/pages/build/BuildDetail.tsx:582 +#: src/pages/build/BuildDetail.tsx:587 msgid "Cancel Build Order" msgstr "Cancelar Pedido de Produção" -#: src/pages/build/BuildDetail.tsx:584 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:416 -#: src/pages/sales/ReturnOrderDetail.tsx:427 -#: src/pages/sales/SalesOrderDetail.tsx:454 +#: src/pages/build/BuildDetail.tsx:589 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:421 +#: src/pages/sales/ReturnOrderDetail.tsx:432 +#: src/pages/sales/SalesOrderDetail.tsx:459 msgid "Order cancelled" msgstr "Pedido cancelado" -#: src/pages/build/BuildDetail.tsx:585 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:415 -#: src/pages/sales/ReturnOrderDetail.tsx:426 -#: src/pages/sales/SalesOrderDetail.tsx:453 +#: src/pages/build/BuildDetail.tsx:590 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:420 +#: src/pages/sales/ReturnOrderDetail.tsx:431 +#: src/pages/sales/SalesOrderDetail.tsx:458 msgid "Cancel this order" msgstr "Cancelar este pedido" -#: src/pages/build/BuildDetail.tsx:594 +#: src/pages/build/BuildDetail.tsx:599 msgid "Hold Build Order" msgstr "Manter Pedido de Produção" -#: src/pages/build/BuildDetail.tsx:596 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:423 -#: src/pages/sales/ReturnOrderDetail.tsx:434 -#: src/pages/sales/SalesOrderDetail.tsx:461 +#: src/pages/build/BuildDetail.tsx:601 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:428 +#: src/pages/sales/ReturnOrderDetail.tsx:439 +#: src/pages/sales/SalesOrderDetail.tsx:466 msgid "Place this order on hold" msgstr "Colocar este pedido em espera" -#: src/pages/build/BuildDetail.tsx:597 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:424 -#: src/pages/sales/ReturnOrderDetail.tsx:435 -#: src/pages/sales/SalesOrderDetail.tsx:462 +#: src/pages/build/BuildDetail.tsx:602 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:429 +#: src/pages/sales/ReturnOrderDetail.tsx:440 +#: src/pages/sales/SalesOrderDetail.tsx:467 msgid "Order placed on hold" msgstr "Pedido colocado em espera" -#: src/pages/build/BuildDetail.tsx:602 +#: src/pages/build/BuildDetail.tsx:607 msgid "Issue Build Order" msgstr "Pedido de produção vencido" -#: src/pages/build/BuildDetail.tsx:604 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:407 -#: src/pages/sales/ReturnOrderDetail.tsx:418 -#: src/pages/sales/SalesOrderDetail.tsx:445 +#: src/pages/build/BuildDetail.tsx:609 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:412 +#: src/pages/sales/ReturnOrderDetail.tsx:423 +#: src/pages/sales/SalesOrderDetail.tsx:450 msgid "Issue this order" msgstr "Cancelar este pedido" -#: src/pages/build/BuildDetail.tsx:605 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:408 -#: src/pages/sales/ReturnOrderDetail.tsx:419 -#: src/pages/sales/SalesOrderDetail.tsx:446 +#: src/pages/build/BuildDetail.tsx:610 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:413 +#: src/pages/sales/ReturnOrderDetail.tsx:424 +#: src/pages/sales/SalesOrderDetail.tsx:451 msgid "Order issued" msgstr "Problemas com o pedido" -#: src/pages/build/BuildDetail.tsx:624 +#: src/pages/build/BuildDetail.tsx:629 msgid "Complete Build Order" msgstr "Completar Pedido de Produção" -#: src/pages/build/BuildDetail.tsx:630 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:436 -#: src/pages/sales/ReturnOrderDetail.tsx:442 -#: src/pages/sales/SalesOrderDetail.tsx:480 +#: src/pages/build/BuildDetail.tsx:635 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:441 +#: src/pages/sales/ReturnOrderDetail.tsx:447 +#: src/pages/sales/SalesOrderDetail.tsx:485 msgid "Mark this order as complete" msgstr "Marcar este pedido como completo" -#: src/pages/build/BuildDetail.tsx:633 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:430 -#: src/pages/sales/ReturnOrderDetail.tsx:443 -#: src/pages/sales/SalesOrderDetail.tsx:481 +#: src/pages/build/BuildDetail.tsx:638 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:435 +#: src/pages/sales/ReturnOrderDetail.tsx:448 +#: src/pages/sales/SalesOrderDetail.tsx:486 msgid "Order completed" msgstr "Pedido concluído" -#: src/pages/build/BuildDetail.tsx:660 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:459 -#: src/pages/sales/ReturnOrderDetail.tsx:470 -#: src/pages/sales/SalesOrderDetail.tsx:516 +#: src/pages/build/BuildDetail.tsx:665 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:464 +#: src/pages/sales/ReturnOrderDetail.tsx:475 +#: src/pages/sales/SalesOrderDetail.tsx:521 msgid "Issue Order" msgstr "Emitir Pedido" -#: src/pages/build/BuildDetail.tsx:667 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:466 -#: src/pages/sales/ReturnOrderDetail.tsx:477 -#: src/pages/sales/SalesOrderDetail.tsx:530 +#: src/pages/build/BuildDetail.tsx:672 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:471 +#: src/pages/sales/ReturnOrderDetail.tsx:482 +#: src/pages/sales/SalesOrderDetail.tsx:535 msgid "Complete Order" msgstr "Completar Pedido" -#: src/pages/build/BuildDetail.tsx:686 +#: src/pages/build/BuildDetail.tsx:691 msgid "Build Order Actions" msgstr "Ações do Pedido de Produção" -#: src/pages/build/BuildDetail.tsx:691 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:489 -#: src/pages/sales/ReturnOrderDetail.tsx:500 -#: src/pages/sales/SalesOrderDetail.tsx:554 +#: src/pages/build/BuildDetail.tsx:696 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:494 +#: src/pages/sales/ReturnOrderDetail.tsx:505 +#: src/pages/sales/SalesOrderDetail.tsx:559 msgid "Edit order" msgstr "Editar pedido" -#: src/pages/build/BuildDetail.tsx:695 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:497 -#: src/pages/sales/ReturnOrderDetail.tsx:506 -#: src/pages/sales/SalesOrderDetail.tsx:559 +#: src/pages/build/BuildDetail.tsx:700 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:502 +#: src/pages/sales/ReturnOrderDetail.tsx:511 +#: src/pages/sales/SalesOrderDetail.tsx:564 msgid "Duplicate order" msgstr "Duplicar pedido" -#: src/pages/build/BuildDetail.tsx:699 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:500 -#: src/pages/sales/ReturnOrderDetail.tsx:511 -#: src/pages/sales/SalesOrderDetail.tsx:562 -msgid "Hold order" -msgstr "Manter ordem" - #: src/pages/build/BuildDetail.tsx:704 #: src/pages/purchasing/PurchaseOrderDetail.tsx:505 #: src/pages/sales/ReturnOrderDetail.tsx:516 #: src/pages/sales/SalesOrderDetail.tsx:567 +msgid "Hold order" +msgstr "Manter ordem" + +#: src/pages/build/BuildDetail.tsx:709 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:510 +#: src/pages/sales/ReturnOrderDetail.tsx:521 +#: src/pages/sales/SalesOrderDetail.tsx:572 msgid "Cancel order" msgstr "Cancelar pedido" -#: src/pages/build/BuildDetail.tsx:742 +#: src/pages/build/BuildDetail.tsx:747 #: src/pages/stock/StockDetail.tsx:344 -#: src/tables/build/BuildAllocatedStockTable.tsx:85 +#: src/tables/build/BuildAllocatedStockTable.tsx:82 #: src/tables/part/PartBuildAllocationsTable.tsx:45 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:157 #: src/tables/stock/StockTrackingTable.tsx:109 @@ -7143,7 +7206,7 @@ msgstr "Ondem de Produção" #~ msgid "Build order created" #~ msgstr "Build order created" -#: src/pages/build/BuildIndex.tsx:29 +#: src/pages/build/BuildIndex.tsx:35 #: src/tables/build/BuildOrderTable.tsx:184 msgid "Show external build orders" msgstr "" @@ -7152,61 +7215,82 @@ msgstr "" #~ msgid "New Build Order" #~ msgstr "New Build Order" -#: src/pages/build/BuildIndex.tsx:83 -#: src/pages/purchasing/PurchasingIndex.tsx:69 -#: src/pages/sales/SalesIndex.tsx:92 -#: src/pages/sales/SalesIndex.tsx:125 +#: src/pages/build/BuildIndex.tsx:74 +#: src/pages/part/CategoryDetail.tsx:292 +#: src/pages/purchasing/PurchasingIndex.tsx:74 +#: src/pages/purchasing/PurchasingIndex.tsx:107 +#: src/pages/purchasing/PurchasingIndex.tsx:135 +#: src/pages/purchasing/PurchasingIndex.tsx:156 +#: src/pages/purchasing/PurchasingIndex.tsx:184 +#: src/pages/sales/SalesIndex.tsx:61 +#: src/pages/sales/SalesIndex.tsx:107 +#: src/pages/sales/SalesIndex.tsx:140 msgid "Table View" msgstr "" -#: src/pages/build/BuildIndex.tsx:86 -#: src/pages/purchasing/PurchasingIndex.tsx:72 -#: src/pages/sales/SalesIndex.tsx:95 -#: src/pages/sales/SalesIndex.tsx:128 +#: src/pages/build/BuildIndex.tsx:80 +#: src/pages/purchasing/PurchasingIndex.tsx:80 +#: src/pages/sales/SalesIndex.tsx:67 +#: src/pages/sales/SalesIndex.tsx:113 msgid "Calendar View" msgstr "" -#: src/pages/company/CompanyDetail.tsx:99 +#: src/pages/build/BuildIndex.tsx:86 +#: src/pages/part/CategoryDetail.tsx:306 +#: src/pages/purchasing/PurchasingIndex.tsx:92 +#: src/pages/purchasing/PurchasingIndex.tsx:118 +#: src/pages/purchasing/PurchasingIndex.tsx:141 +#: src/pages/purchasing/PurchasingIndex.tsx:167 +#: src/pages/purchasing/PurchasingIndex.tsx:190 +#: src/pages/sales/SalesIndex.tsx:79 +#: src/pages/sales/SalesIndex.tsx:125 +#: src/pages/sales/SalesIndex.tsx:151 +msgid "Parametric View" +msgstr "" + +#: src/pages/company/CompanyDetail.tsx:100 msgid "Website" msgstr "Página Web" -#: src/pages/company/CompanyDetail.tsx:107 +#: src/pages/company/CompanyDetail.tsx:108 msgid "Phone Number" msgstr "Número de telefone" -#: src/pages/company/CompanyDetail.tsx:114 +#: src/pages/company/CompanyDetail.tsx:115 msgid "Email Address" msgstr "Endereço de e-mail" -#: src/pages/company/CompanyDetail.tsx:121 +#: src/pages/company/CompanyDetail.tsx:122 msgid "Tax ID" msgstr "" -#: src/pages/company/CompanyDetail.tsx:131 +#: src/pages/company/CompanyDetail.tsx:132 msgid "Default Currency" msgstr "Moeda Padrão" -#: src/pages/company/CompanyDetail.tsx:142 +#: src/pages/company/CompanyDetail.tsx:143 #: src/pages/company/ManufacturerDetail.tsx:8 -#: src/pages/company/ManufacturerPartDetail.tsx:104 -#: src/pages/company/ManufacturerPartDetail.tsx:280 -#: src/pages/company/SupplierPartDetail.tsx:152 +#: src/pages/company/ManufacturerPartDetail.tsx:103 +#: src/pages/company/ManufacturerPartDetail.tsx:271 +#: src/pages/company/SupplierPartDetail.tsx:153 #: src/tables/Filter.tsx:347 #: src/tables/company/CompanyTable.tsx:101 #: src/tables/purchasing/SupplierPartTable.tsx:89 msgid "Manufacturer" msgstr "Fabricante" -#: src/pages/company/CompanyDetail.tsx:148 +#: src/pages/company/CompanyDetail.tsx:149 #: src/pages/company/CustomerDetail.tsx:8 #: src/pages/part/pricing/SaleHistoryPanel.tsx:31 -#: src/pages/sales/ReturnOrderDetail.tsx:123 -#: src/pages/sales/SalesOrderDetail.tsx:113 -#: src/pages/sales/SalesOrderShipmentDetail.tsx:113 +#: src/pages/sales/ReturnOrderDetail.tsx:124 +#: src/pages/sales/SalesOrderDetail.tsx:114 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:111 #: src/pages/stock/StockDetail.tsx:370 #: src/tables/company/CompanyTable.tsx:106 +#: src/tables/sales/ReturnOrderParametricTable.tsx:32 #: src/tables/sales/ReturnOrderTable.tsx:108 -#: src/tables/sales/SalesOrderShipmentTable.tsx:111 +#: src/tables/sales/SalesOrderParametricTable.tsx:32 +#: src/tables/sales/SalesOrderShipmentTable.tsx:132 #: src/tables/sales/SalesOrderTable.tsx:133 #: src/tables/stock/StockTrackingTable.tsx:153 msgid "Customer" @@ -7216,11 +7300,11 @@ msgstr "Cliente" #~ msgid "Edit company" #~ msgstr "Edit company" -#: src/pages/company/CompanyDetail.tsx:181 +#: src/pages/company/CompanyDetail.tsx:182 msgid "Company Details" msgstr "Detalhes da Empresa" -#: src/pages/company/CompanyDetail.tsx:187 +#: src/pages/company/CompanyDetail.tsx:188 msgid "Supplied Parts" msgstr "Peças Fornecidas" @@ -7228,79 +7312,79 @@ msgstr "Peças Fornecidas" #~ msgid "Delete company" #~ msgstr "Delete company" -#: src/pages/company/CompanyDetail.tsx:194 +#: src/pages/company/CompanyDetail.tsx:195 msgid "Manufactured Parts" msgstr "Peças Fabricadas" -#: src/pages/company/CompanyDetail.tsx:241 +#: src/pages/company/CompanyDetail.tsx:242 msgid "Assigned Stock" msgstr "Estoque Atribuído" -#: src/pages/company/CompanyDetail.tsx:282 +#: src/pages/company/CompanyDetail.tsx:287 #: src/tables/company/CompanyTable.tsx:82 msgid "Edit Company" msgstr "Editar Empresa" -#: src/pages/company/CompanyDetail.tsx:290 +#: src/pages/company/CompanyDetail.tsx:295 msgid "Delete Company" msgstr "Excluir Empresa" -#: src/pages/company/CompanyDetail.tsx:305 +#: src/pages/company/CompanyDetail.tsx:310 msgid "Company Actions" msgstr "Ações da Empresa" -#: src/pages/company/ManufacturerPartDetail.tsx:78 -#: src/pages/company/SupplierPartDetail.tsx:89 +#: src/pages/company/ManufacturerPartDetail.tsx:77 +#: src/pages/company/SupplierPartDetail.tsx:90 msgid "Internal Part" msgstr "Peça Interna" -#: src/pages/company/ManufacturerPartDetail.tsx:112 +#: src/pages/company/ManufacturerPartDetail.tsx:111 msgid "Manufacturer Part Number" msgstr "Número de Peça do Fabricante" -#: src/pages/company/ManufacturerPartDetail.tsx:129 -#: src/pages/company/SupplierPartDetail.tsx:113 +#: src/pages/company/ManufacturerPartDetail.tsx:128 +#: src/pages/company/SupplierPartDetail.tsx:114 msgid "External Link" msgstr "Link Externo" -#: src/pages/company/ManufacturerPartDetail.tsx:148 -#: src/pages/company/SupplierPartDetail.tsx:232 +#: src/pages/company/ManufacturerPartDetail.tsx:147 +#: src/pages/company/SupplierPartDetail.tsx:233 #: src/pages/part/PartDetail.tsx:787 msgid "Part Details" msgstr "Detalhes da Peça" -#: src/pages/company/ManufacturerPartDetail.tsx:151 +#: src/pages/company/ManufacturerPartDetail.tsx:150 msgid "Manufacturer Details" msgstr "Detalhes do Fabricante" -#: src/pages/company/ManufacturerPartDetail.tsx:160 +#: src/pages/company/ManufacturerPartDetail.tsx:159 msgid "Manufacturer Part Details" msgstr "Detalhes de peça do Fabricante" -#: src/pages/company/ManufacturerPartDetail.tsx:178 -#: src/pages/company/SupplierPartDetail.tsx:252 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:381 +#: src/pages/company/ManufacturerPartDetail.tsx:165 +#: src/pages/company/SupplierPartDetail.tsx:253 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:382 msgid "Received Stock" msgstr "Estoque Recebido" -#: src/pages/company/ManufacturerPartDetail.tsx:220 +#: src/pages/company/ManufacturerPartDetail.tsx:211 #: src/tables/purchasing/ManufacturerPartTable.tsx:108 msgid "Edit Manufacturer Part" msgstr "Editar Peça do Fabricante" -#: src/pages/company/ManufacturerPartDetail.tsx:227 +#: src/pages/company/ManufacturerPartDetail.tsx:218 #: src/tables/purchasing/ManufacturerPartTable.tsx:96 #: src/tables/purchasing/ManufacturerPartTable.tsx:115 #: src/tables/purchasing/ManufacturerPartTable.tsx:156 msgid "Add Manufacturer Part" msgstr "Adicionar Peça do Fabricante" -#: src/pages/company/ManufacturerPartDetail.tsx:239 +#: src/pages/company/ManufacturerPartDetail.tsx:230 #: src/tables/purchasing/ManufacturerPartTable.tsx:126 msgid "Delete Manufacturer Part" msgstr "Excluir Peça do Fabricante" -#: src/pages/company/ManufacturerPartDetail.tsx:254 +#: src/pages/company/ManufacturerPartDetail.tsx:245 msgid "Manufacturer Part Actions" msgstr "Ações de peça do Fabricante" @@ -7308,12 +7392,12 @@ msgstr "Ações de peça do Fabricante" #~ msgid "ManufacturerPart" #~ msgstr "ManufacturerPart" -#: src/pages/company/SupplierPartDetail.tsx:104 +#: src/pages/company/SupplierPartDetail.tsx:105 #: src/tables/part/RelatedPartTable.tsx:82 msgid "Part Description" msgstr "Descrição da Peça" -#: src/pages/company/SupplierPartDetail.tsx:179 +#: src/pages/company/SupplierPartDetail.tsx:180 #: src/tables/part/PartPurchaseOrdersTable.tsx:73 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:191 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:233 @@ -7321,50 +7405,50 @@ msgstr "Descrição da Peça" msgid "Pack Quantity" msgstr "Quantidade de embalagens" -#: src/pages/company/SupplierPartDetail.tsx:204 +#: src/pages/company/SupplierPartDetail.tsx:205 msgid "Supplier Availability" msgstr "Disponibilidade do fornecedor" -#: src/pages/company/SupplierPartDetail.tsx:212 +#: src/pages/company/SupplierPartDetail.tsx:213 msgid "Availability Updated" msgstr "Disponibilidade Atualizada" -#: src/pages/company/SupplierPartDetail.tsx:237 +#: src/pages/company/SupplierPartDetail.tsx:238 msgid "Availability" msgstr "Disponibilidade" -#: src/pages/company/SupplierPartDetail.tsx:246 +#: src/pages/company/SupplierPartDetail.tsx:247 msgid "Supplier Part Details" msgstr "Detalhes de Peça do Fornecedor" -#: src/pages/company/SupplierPartDetail.tsx:279 +#: src/pages/company/SupplierPartDetail.tsx:280 #: src/pages/part/PartPricingPanel.tsx:113 #: src/pages/part/pricing/PricingOverviewPanel.tsx:239 msgid "Supplier Pricing" msgstr "Preço do fornecedor" -#: src/pages/company/SupplierPartDetail.tsx:308 +#: src/pages/company/SupplierPartDetail.tsx:313 msgid "Supplier Part Actions" msgstr "Ações de Peças do Fornecedor" -#: src/pages/company/SupplierPartDetail.tsx:332 +#: src/pages/company/SupplierPartDetail.tsx:337 #: src/tables/purchasing/SupplierPartTable.tsx:244 msgid "Edit Supplier Part" msgstr "Editar Peça do Fornecedor" -#: src/pages/company/SupplierPartDetail.tsx:340 +#: src/pages/company/SupplierPartDetail.tsx:345 #: src/tables/purchasing/SupplierPartTable.tsx:264 msgid "Delete Supplier Part" msgstr "Excluir Peça do Fornecedor" -#: src/pages/company/SupplierPartDetail.tsx:348 +#: src/pages/company/SupplierPartDetail.tsx:353 #: src/tables/purchasing/SupplierPartTable.tsx:172 #: src/tables/purchasing/SupplierPartTable.tsx:251 msgid "Add Supplier Part" msgstr "Adicionar Peça do Fornecedor" -#: src/pages/company/SupplierPartDetail.tsx:388 -#: src/pages/part/PartDetail.tsx:1003 +#: src/pages/company/SupplierPartDetail.tsx:393 +#: src/pages/part/PartDetail.tsx:1018 msgid "No Stock" msgstr "Sem Estoque" @@ -7411,83 +7495,83 @@ msgstr "Detalhes do Usuário" msgid "Basic user" msgstr "Usuário básico" -#: src/pages/part/CategoryDetail.tsx:100 +#: src/pages/part/CategoryDetail.tsx:103 #: src/pages/stock/LocationDetail.tsx:94 #: src/tables/settings/ErrorTable.tsx:63 #: src/tables/settings/ErrorTable.tsx:108 msgid "Path" msgstr "Caminho" -#: src/pages/part/CategoryDetail.tsx:116 +#: src/pages/part/CategoryDetail.tsx:119 msgid "Parent Category" msgstr "Categoria Pai" -#: src/pages/part/CategoryDetail.tsx:139 -#: src/pages/part/CategoryDetail.tsx:271 +#: src/pages/part/CategoryDetail.tsx:142 +#: src/pages/part/CategoryDetail.tsx:279 msgid "Subcategories" msgstr "Sub-categorias" -#: src/pages/part/CategoryDetail.tsx:146 +#: src/pages/part/CategoryDetail.tsx:149 #: src/pages/stock/LocationDetail.tsx:134 #: src/tables/part/PartCategoryTable.tsx:89 #: src/tables/stock/StockLocationTable.tsx:43 msgid "Structural" msgstr "Estrutural" -#: src/pages/part/CategoryDetail.tsx:152 +#: src/pages/part/CategoryDetail.tsx:155 msgid "Parent default location" msgstr "Localização padrão do pai" -#: src/pages/part/CategoryDetail.tsx:159 +#: src/pages/part/CategoryDetail.tsx:162 msgid "Default location" msgstr "Local Padrão" -#: src/pages/part/CategoryDetail.tsx:170 +#: src/pages/part/CategoryDetail.tsx:173 msgid "Top level part category" msgstr "Categoria de peça de nível superior" -#: src/pages/part/CategoryDetail.tsx:180 -#: src/pages/part/CategoryDetail.tsx:248 +#: src/pages/part/CategoryDetail.tsx:183 +#: src/pages/part/CategoryDetail.tsx:251 #: src/tables/part/PartCategoryTable.tsx:122 msgid "Edit Part Category" msgstr "Editar Categoria da Peça" -#: src/pages/part/CategoryDetail.tsx:189 +#: src/pages/part/CategoryDetail.tsx:192 msgid "Move items to parent category" msgstr "" -#: src/pages/part/CategoryDetail.tsx:193 +#: src/pages/part/CategoryDetail.tsx:196 #: src/pages/stock/LocationDetail.tsx:226 msgid "Delete items" msgstr "Apagar items" -#: src/pages/part/CategoryDetail.tsx:201 -#: src/pages/part/CategoryDetail.tsx:253 +#: src/pages/part/CategoryDetail.tsx:204 +#: src/pages/part/CategoryDetail.tsx:256 msgid "Delete Part Category" msgstr "Excluir Categoria de Peça" -#: src/pages/part/CategoryDetail.tsx:204 +#: src/pages/part/CategoryDetail.tsx:207 msgid "Parts Action" msgstr "Ações da Peça" -#: src/pages/part/CategoryDetail.tsx:205 +#: src/pages/part/CategoryDetail.tsx:208 msgid "Action for parts in this category" msgstr "Ação para peças nesta categoria" -#: src/pages/part/CategoryDetail.tsx:211 +#: src/pages/part/CategoryDetail.tsx:214 msgid "Child Categories Action" msgstr "Ação de Categorias Filhas" -#: src/pages/part/CategoryDetail.tsx:212 +#: src/pages/part/CategoryDetail.tsx:215 msgid "Action for child categories in this category" msgstr "Ação para categorias filhas desta categoria" -#: src/pages/part/CategoryDetail.tsx:244 +#: src/pages/part/CategoryDetail.tsx:247 #: src/tables/part/PartCategoryTable.tsx:143 msgid "Category Actions" msgstr "Ações de Categoria" -#: src/pages/part/CategoryDetail.tsx:265 +#: src/pages/part/CategoryDetail.tsx:273 msgid "Category Details" msgstr "Detalhes da categoria" @@ -7585,7 +7669,6 @@ msgid "Category Default Location" msgstr "Localização padrão da categoria" #: src/pages/part/PartDetail.tsx:507 -#: src/tables/purchasing/ManufacturerPartParameterTable.tsx:48 msgid "Units" msgstr "Unidades" @@ -7600,7 +7683,7 @@ msgstr "Palavras-chave" #: src/pages/part/PartDetail.tsx:542 #: src/tables/bom/BomTable.tsx:439 -#: src/tables/build/BuildLineTable.tsx:305 +#: src/tables/build/BuildLineTable.tsx:306 #: src/tables/part/PartTable.tsx:319 #: src/tables/sales/SalesOrderLineItemTable.tsx:138 msgid "Available Stock" @@ -7608,7 +7691,7 @@ msgstr "Estoque Disponível" #: src/pages/part/PartDetail.tsx:548 #: src/tables/bom/BomTable.tsx:341 -#: src/tables/build/BuildLineTable.tsx:267 +#: src/tables/build/BuildLineTable.tsx:268 #: src/tables/sales/SalesOrderLineItemTable.tsx:180 msgid "On order" msgstr "No pedido" @@ -7634,7 +7717,7 @@ msgstr "Estoque Mínimo" #~ msgstr "Scheduling" #: src/pages/part/PartDetail.tsx:620 -#: src/tables/part/ParametricPartTable.tsx:359 +#: src/tables/part/ParametricPartTable.tsx:24 #: src/tables/part/PartTable.tsx:203 msgid "Locked" msgstr "Bloqueado" @@ -7671,16 +7754,16 @@ msgid "Saleable Part" msgstr "Parte vendível" #: src/pages/part/PartDetail.tsx:663 -#: src/pages/part/PartDetail.tsx:1033 +#: src/pages/part/PartDetail.tsx:1054 #: src/tables/bom/BomTable.tsx:150 #: src/tables/bom/BomTable.tsx:434 msgid "Virtual Part" msgstr "Parte Virtual" #: src/pages/part/PartDetail.tsx:678 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:271 -#: src/pages/sales/ReturnOrderDetail.tsx:249 -#: src/pages/sales/SalesOrderDetail.tsx:242 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:272 +#: src/pages/sales/ReturnOrderDetail.tsx:250 +#: src/pages/sales/SalesOrderDetail.tsx:243 #: src/tables/ColumnRenderers.tsx:502 msgid "Creation Date" msgstr "Criado em" @@ -7718,35 +7801,46 @@ msgstr "Último Número de Série" msgid "Select Part Revision" msgstr "Selecionar Revisão de Parte" -#: src/pages/part/PartDetail.tsx:823 +#: src/pages/part/PartDetail.tsx:812 msgid "Variants" msgstr "Variantes" -#: src/pages/part/PartDetail.tsx:830 +#: src/pages/part/PartDetail.tsx:819 #: src/pages/stock/StockDetail.tsx:542 msgid "Allocations" msgstr "Alocações" -#: src/pages/part/PartDetail.tsx:837 +#: src/pages/part/PartDetail.tsx:826 msgid "Bill of Materials" msgstr "Lista de Materiais" -#: src/pages/part/PartDetail.tsx:849 +#: src/pages/part/PartDetail.tsx:838 msgid "Used In" msgstr "Usado em" -#: src/pages/part/PartDetail.tsx:856 +#: src/pages/part/PartDetail.tsx:845 msgid "Part Pricing" msgstr "Preço de Peça" -#: src/pages/part/PartDetail.tsx:926 +#: src/pages/part/PartDetail.tsx:915 msgid "Test Templates" msgstr "Testar Modelos" -#: src/pages/part/PartDetail.tsx:948 +#: src/pages/part/PartDetail.tsx:937 msgid "Related Parts" msgstr "Peças Relacionadas" +#: src/pages/part/PartDetail.tsx:949 +#: src/tables/ColumnRenderers.tsx:73 +#: src/tables/bom/BomTable.tsx:657 +#: src/tables/part/PartTestTemplateTable.tsx:258 +msgid "Part is Locked" +msgstr "" + +#: src/pages/part/PartDetail.tsx:954 +msgid "Part parameters cannot be edited, as the part is locked" +msgstr "Os parâmetros da peça não podem ser editados, pois a peça está bloqueada" + #: src/pages/part/PartDetail.tsx:956 #~ msgid "Count part stock" #~ msgstr "Count part stock" @@ -7755,42 +7849,46 @@ msgstr "Peças Relacionadas" #~ msgid "Transfer part stock" #~ msgstr "Transfer part stock" -#: src/pages/part/PartDetail.tsx:1009 +#: src/pages/part/PartDetail.tsx:1024 #: src/tables/part/PartTestTemplateTable.tsx:112 #: src/tables/stock/StockItemTestResultTable.tsx:404 msgid "Required" msgstr "Obrigatório" -#: src/pages/part/PartDetail.tsx:1058 +#: src/pages/part/PartDetail.tsx:1042 +msgid "Deficit" +msgstr "" + +#: src/pages/part/PartDetail.tsx:1079 #: src/tables/part/PartTable.tsx:396 #: src/tables/part/PartTable.tsx:449 msgid "Add Part" msgstr "Adicionar Parte" -#: src/pages/part/PartDetail.tsx:1072 +#: src/pages/part/PartDetail.tsx:1093 msgid "Delete Part" msgstr "Excluir Peça" -#: src/pages/part/PartDetail.tsx:1081 +#: src/pages/part/PartDetail.tsx:1102 msgid "Deleting this part cannot be reversed" msgstr "Excluir esta peça não é reversível" -#: src/pages/part/PartDetail.tsx:1143 +#: src/pages/part/PartDetail.tsx:1164 #: src/pages/stock/StockDetail.tsx:883 msgid "Order" msgstr "Pedido" -#: src/pages/part/PartDetail.tsx:1144 +#: src/pages/part/PartDetail.tsx:1165 #: src/pages/stock/StockDetail.tsx:884 -#: src/tables/build/BuildLineTable.tsx:761 +#: src/tables/build/BuildLineTable.tsx:768 msgid "Order Stock" msgstr "Pedir estoque" -#: src/pages/part/PartDetail.tsx:1156 +#: src/pages/part/PartDetail.tsx:1177 msgid "Search by serial number" msgstr "" -#: src/pages/part/PartDetail.tsx:1164 +#: src/pages/part/PartDetail.tsx:1185 #: src/tables/part/PartTable.tsx:506 msgid "Part Actions" msgstr "Ações da Peça" @@ -8039,7 +8137,7 @@ msgstr "Preço de Compra" #: src/pages/part/pricing/PricingOverviewPanel.tsx:288 #: src/pages/stock/StockDetail.tsx:426 -#: src/tables/part/PartParameterTable.tsx:121 +#: src/tables/general/ParameterTable.tsx:101 #: src/tables/stock/StockItemTable.tsx:300 msgid "Last Updated" msgstr "Última Atualização" @@ -8107,17 +8205,17 @@ msgstr "Preço do fornecedor" msgid "Variant Part" msgstr "Peça Variante" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:89 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:90 msgid "Edit Purchase Order" msgstr "Editar Pedido de Compra" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:125 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:126 #: src/tables/purchasing/PurchaseOrderTable.tsx:154 #: src/tables/purchasing/PurchaseOrderTable.tsx:167 msgid "Add Purchase Order" msgstr "Adicionar Ordem de Compra" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:147 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:148 msgid "Supplier Reference" msgstr "Referencia do fornecedor" @@ -8127,20 +8225,20 @@ msgstr "Referencia do fornecedor" #~ msgid "Order Currency," #~ msgstr "Order Currency," -#: src/pages/purchasing/PurchaseOrderDetail.tsx:187 -#: src/pages/sales/ReturnOrderDetail.tsx:160 -#: src/pages/sales/SalesOrderDetail.tsx:144 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:188 +#: src/pages/sales/ReturnOrderDetail.tsx:161 +#: src/pages/sales/SalesOrderDetail.tsx:145 msgid "Completed Line Items" msgstr "Itens de Linha Concluídos" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:196 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:197 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:272 msgid "Destination" msgstr "Destino" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:202 -#: src/pages/sales/ReturnOrderDetail.tsx:167 -#: src/pages/sales/SalesOrderDetail.tsx:161 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:203 +#: src/pages/sales/ReturnOrderDetail.tsx:168 +#: src/pages/sales/SalesOrderDetail.tsx:162 msgid "Order Currency" msgstr "Moeda do pedido" @@ -8150,97 +8248,97 @@ msgstr "Moeda do pedido" #~ msgid "Created On" #~ msgstr "Created On" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:208 -#: src/pages/sales/ReturnOrderDetail.tsx:174 -#: src/pages/sales/SalesOrderDetail.tsx:167 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:209 +#: src/pages/sales/ReturnOrderDetail.tsx:175 +#: src/pages/sales/SalesOrderDetail.tsx:168 msgid "Total Cost" msgstr "Custo Total" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:237 -#: src/pages/sales/ReturnOrderDetail.tsx:215 -#: src/pages/sales/SalesOrderDetail.tsx:208 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:238 +#: src/pages/sales/ReturnOrderDetail.tsx:216 +#: src/pages/sales/SalesOrderDetail.tsx:209 msgid "Contact Email" msgstr "" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:245 -#: src/pages/sales/ReturnOrderDetail.tsx:223 -#: src/pages/sales/SalesOrderDetail.tsx:216 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:246 +#: src/pages/sales/ReturnOrderDetail.tsx:224 +#: src/pages/sales/SalesOrderDetail.tsx:217 msgid "Contact Phone" msgstr "" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:278 -#: src/pages/sales/ReturnOrderDetail.tsx:257 -#: src/pages/sales/SalesOrderDetail.tsx:249 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:279 +#: src/pages/sales/ReturnOrderDetail.tsx:258 +#: src/pages/sales/SalesOrderDetail.tsx:250 msgid "Issue Date" msgstr "" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:303 -#: src/pages/sales/ReturnOrderDetail.tsx:281 -#: src/pages/sales/SalesOrderDetail.tsx:272 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:304 +#: src/pages/sales/ReturnOrderDetail.tsx:282 +#: src/pages/sales/SalesOrderDetail.tsx:273 #: src/tables/ColumnRenderers.tsx:510 #: src/tables/build/BuildOrderTable.tsx:137 #: src/tables/part/PartPurchaseOrdersTable.tsx:106 msgid "Completion Date" msgstr "" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:333 -#: src/pages/sales/ReturnOrderDetail.tsx:311 -#: src/pages/sales/SalesOrderDetail.tsx:349 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:334 +#: src/pages/sales/ReturnOrderDetail.tsx:312 +#: src/pages/sales/SalesOrderDetail.tsx:350 msgid "Order Details" msgstr "Detalhes do pedido" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:339 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:348 -#: src/pages/sales/ReturnOrderDetail.tsx:153 -#: src/pages/sales/ReturnOrderDetail.tsx:317 -#: src/pages/sales/ReturnOrderDetail.tsx:326 -#: src/pages/sales/SalesOrderDetail.tsx:355 -#: src/pages/sales/SalesOrderDetail.tsx:364 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:340 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:349 +#: src/pages/sales/ReturnOrderDetail.tsx:154 +#: src/pages/sales/ReturnOrderDetail.tsx:318 +#: src/pages/sales/ReturnOrderDetail.tsx:327 +#: src/pages/sales/SalesOrderDetail.tsx:356 +#: src/pages/sales/SalesOrderDetail.tsx:365 msgid "Line Items" msgstr "Itens de linha" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:363 -#: src/pages/sales/ReturnOrderDetail.tsx:341 -#: src/pages/sales/SalesOrderDetail.tsx:378 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:364 +#: src/pages/sales/ReturnOrderDetail.tsx:342 +#: src/pages/sales/SalesOrderDetail.tsx:379 msgid "Extra Line Items" msgstr "Itens de linha extra" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:405 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:410 msgid "Issue Purchase Order" msgstr "Emitir Pedido de Compra" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:413 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:418 msgid "Cancel Purchase Order" msgstr "Cancelar Pedido de Compra" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:421 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:426 msgid "Hold Purchase Order" msgstr "Reter pedido de compra" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:429 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:434 msgid "Complete Purchase Order" msgstr "Concluir Pedido de Compra" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:485 -#: src/pages/sales/ReturnOrderDetail.tsx:496 -#: src/pages/sales/SalesOrderDetail.tsx:549 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:490 +#: src/pages/sales/ReturnOrderDetail.tsx:501 +#: src/pages/sales/SalesOrderDetail.tsx:554 msgid "Order Actions" msgstr "Ações de Pedido" -#: src/pages/sales/ReturnOrderDetail.tsx:114 -#: src/pages/sales/SalesOrderDetail.tsx:104 -#: src/pages/sales/SalesOrderShipmentDetail.tsx:134 +#: src/pages/sales/ReturnOrderDetail.tsx:115 +#: src/pages/sales/SalesOrderDetail.tsx:105 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:132 #: src/tables/sales/SalesOrderTable.tsx:141 msgid "Customer Reference" msgstr "Referência do Cliente" -#: src/pages/sales/ReturnOrderDetail.tsx:195 +#: src/pages/sales/ReturnOrderDetail.tsx:196 msgid "Return Address" msgstr "" -#: src/pages/sales/ReturnOrderDetail.tsx:201 -#: src/pages/sales/SalesOrderDetail.tsx:194 -#: src/pages/sales/SalesOrderShipmentDetail.tsx:181 +#: src/pages/sales/ReturnOrderDetail.tsx:202 +#: src/pages/sales/SalesOrderDetail.tsx:195 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:179 msgid "Not specified" msgstr "" @@ -8248,117 +8346,117 @@ msgstr "" #~ msgid "Order canceled" #~ msgstr "Order canceled" -#: src/pages/sales/ReturnOrderDetail.tsx:389 +#: src/pages/sales/ReturnOrderDetail.tsx:394 msgid "Edit Return Order" msgstr "Editar Pedido de Devolução" -#: src/pages/sales/ReturnOrderDetail.tsx:407 +#: src/pages/sales/ReturnOrderDetail.tsx:412 #: src/tables/sales/ReturnOrderTable.tsx:154 #: src/tables/sales/ReturnOrderTable.tsx:167 msgid "Add Return Order" msgstr "Adicionar Pedido de Devolução" -#: src/pages/sales/ReturnOrderDetail.tsx:416 +#: src/pages/sales/ReturnOrderDetail.tsx:421 msgid "Issue Return Order" msgstr "Emitir Pedido de Devolução" -#: src/pages/sales/ReturnOrderDetail.tsx:424 +#: src/pages/sales/ReturnOrderDetail.tsx:429 msgid "Cancel Return Order" msgstr "Cancelar Pedido de Devolução" -#: src/pages/sales/ReturnOrderDetail.tsx:432 +#: src/pages/sales/ReturnOrderDetail.tsx:437 msgid "Hold Return Order" msgstr "Adicionar Pedido de Devolução" -#: src/pages/sales/ReturnOrderDetail.tsx:440 +#: src/pages/sales/ReturnOrderDetail.tsx:445 msgid "Complete Return Order" msgstr "Completar Pedido de Devolução" -#: src/pages/sales/SalesOrderDetail.tsx:153 +#: src/pages/sales/SalesOrderDetail.tsx:154 msgid "Completed Shipments" msgstr "Envios Concluídos" -#: src/pages/sales/SalesOrderDetail.tsx:188 -#: src/pages/sales/SalesOrderShipmentDetail.tsx:170 +#: src/pages/sales/SalesOrderDetail.tsx:189 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:168 msgid "Shipping Address" msgstr "" -#: src/pages/sales/SalesOrderDetail.tsx:316 +#: src/pages/sales/SalesOrderDetail.tsx:317 msgid "Edit Sales Order" msgstr "Editar Pedido de Venda" -#: src/pages/sales/SalesOrderDetail.tsx:338 +#: src/pages/sales/SalesOrderDetail.tsx:339 #: src/tables/sales/SalesOrderTable.tsx:108 #: src/tables/sales/SalesOrderTable.tsx:121 msgid "Add Sales Order" msgstr "Adicionar Pedido de Vendas" -#: src/pages/sales/SalesOrderDetail.tsx:396 +#: src/pages/sales/SalesOrderDetail.tsx:397 #: src/tables/sales/SalesOrderTable.tsx:147 msgid "Shipments" msgstr "Envios" -#: src/pages/sales/SalesOrderDetail.tsx:443 +#: src/pages/sales/SalesOrderDetail.tsx:448 msgid "Issue Sales Order" msgstr "Emitir Pedido de Venda" -#: src/pages/sales/SalesOrderDetail.tsx:451 +#: src/pages/sales/SalesOrderDetail.tsx:456 msgid "Cancel Sales Order" msgstr "Cancelar Pedido de Venda" -#: src/pages/sales/SalesOrderDetail.tsx:459 +#: src/pages/sales/SalesOrderDetail.tsx:464 msgid "Hold Sales Order" msgstr "Adicionar Pedido de Vendas" -#: src/pages/sales/SalesOrderDetail.tsx:467 +#: src/pages/sales/SalesOrderDetail.tsx:472 msgid "Ship Sales Order" msgstr "" -#: src/pages/sales/SalesOrderDetail.tsx:469 +#: src/pages/sales/SalesOrderDetail.tsx:474 msgid "Ship this order?" msgstr "" -#: src/pages/sales/SalesOrderDetail.tsx:470 +#: src/pages/sales/SalesOrderDetail.tsx:475 msgid "Order shipped" msgstr "" -#: src/pages/sales/SalesOrderDetail.tsx:478 +#: src/pages/sales/SalesOrderDetail.tsx:483 msgid "Complete Sales Order" msgstr "Concluir Pedido de Venda" -#: src/pages/sales/SalesOrderDetail.tsx:523 +#: src/pages/sales/SalesOrderDetail.tsx:528 msgid "Ship Order" msgstr "Ordem de envio" -#: src/pages/sales/SalesOrderShipmentDetail.tsx:142 -#: src/tables/sales/SalesOrderShipmentTable.tsx:135 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:140 +#: src/tables/sales/SalesOrderShipmentTable.tsx:156 msgid "Shipment Reference" msgstr "Referência de Remessa" -#: src/pages/sales/SalesOrderShipmentDetail.tsx:148 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:146 msgid "Tracking Number" msgstr "" -#: src/pages/sales/SalesOrderShipmentDetail.tsx:156 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:154 msgid "Invoice Number" msgstr "" -#: src/pages/sales/SalesOrderShipmentDetail.tsx:191 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:189 msgid "Allocated Items" msgstr "" -#: src/pages/sales/SalesOrderShipmentDetail.tsx:196 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:194 msgid "Checked By" msgstr "" -#: src/pages/sales/SalesOrderShipmentDetail.tsx:202 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:200 msgid "Not checked" msgstr "" -#: src/pages/sales/SalesOrderShipmentDetail.tsx:208 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:206 #: src/tables/ColumnRenderers.tsx:518 #: src/tables/sales/SalesOrderAllocationTable.tsx:182 -#: src/tables/sales/SalesOrderShipmentTable.tsx:168 +#: src/tables/sales/SalesOrderShipmentTable.tsx:189 msgid "Shipment Date" msgstr "Data de envio" @@ -8366,108 +8464,82 @@ msgstr "Data de envio" #~ msgid "Assigned Items" #~ msgstr "Assigned Items" -#: src/pages/sales/SalesOrderShipmentDetail.tsx:216 -#: src/tables/sales/SalesOrderShipmentTable.tsx:172 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:214 +#: src/tables/sales/SalesOrderShipmentTable.tsx:193 msgid "Delivery Date" msgstr "Data de Entrega" -#: src/pages/sales/SalesOrderShipmentDetail.tsx:255 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:253 msgid "Shipment Details" msgstr "" -#: src/pages/sales/SalesOrderShipmentDetail.tsx:294 -#: src/pages/sales/SalesOrderShipmentDetail.tsx:438 -#: src/tables/sales/SalesOrderShipmentTable.tsx:90 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:292 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:406 +#: src/tables/sales/SalesOrderShipmentTable.tsx:97 msgid "Edit Shipment" msgstr "Editar Remessa" -#: src/pages/sales/SalesOrderShipmentDetail.tsx:301 -#: src/pages/sales/SalesOrderShipmentDetail.tsx:457 -#: src/tables/sales/SalesOrderShipmentTable.tsx:82 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:299 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:425 +#: src/tables/sales/SalesOrderShipmentTable.tsx:89 msgid "Cancel Shipment" msgstr "Cancelar Envio" -#: src/pages/sales/SalesOrderShipmentDetail.tsx:314 -#: src/tables/sales/SalesOrderShipmentTable.tsx:98 -#: src/tables/sales/SalesOrderShipmentTable.tsx:193 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:312 +#: src/tables/sales/SalesOrderShipmentTable.tsx:119 +#: src/tables/sales/SalesOrderShipmentTable.tsx:238 msgid "Complete Shipment" msgstr "Remessa Completa" -#: src/pages/sales/SalesOrderShipmentDetail.tsx:326 -#: src/pages/sales/SalesOrderShipmentDetail.tsx:328 -msgid "Check Shipment" -msgstr "" - -#: src/pages/sales/SalesOrderShipmentDetail.tsx:329 -msgid "Marking the shipment as checked indicates that you have verified that all items included in this shipment are correct" -msgstr "" - #: src/pages/sales/SalesOrderShipmentDetail.tsx:339 -msgid "Shipment marked as checked" -msgstr "" - -#: src/pages/sales/SalesOrderShipmentDetail.tsx:346 -#: src/pages/sales/SalesOrderShipmentDetail.tsx:348 -msgid "Uncheck Shipment" -msgstr "" - -#: src/pages/sales/SalesOrderShipmentDetail.tsx:349 -msgid "Marking the shipment as unchecked indicates that the shipment requires further verification" -msgstr "" - -#: src/pages/sales/SalesOrderShipmentDetail.tsx:359 -msgid "Shipment marked as unchecked" -msgstr "" - -#: src/pages/sales/SalesOrderShipmentDetail.tsx:371 #: src/tables/part/PartPurchaseOrdersTable.tsx:122 msgid "Pending" msgstr "Pendentes" -#: src/pages/sales/SalesOrderShipmentDetail.tsx:377 -#: src/tables/sales/SalesOrderShipmentTable.tsx:147 -#: src/tables/sales/SalesOrderShipmentTable.tsx:254 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:345 +#: src/tables/sales/SalesOrderShipmentTable.tsx:168 +#: src/tables/sales/SalesOrderShipmentTable.tsx:299 msgid "Checked" msgstr "" -#: src/pages/sales/SalesOrderShipmentDetail.tsx:383 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:351 msgid "Not Checked" msgstr "" -#: src/pages/sales/SalesOrderShipmentDetail.tsx:389 -#: src/tables/sales/SalesOrderShipmentTable.tsx:154 -#: src/tables/sales/SalesOrderShipmentTable.tsx:259 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:357 +#: src/tables/sales/SalesOrderShipmentTable.tsx:175 +#: src/tables/sales/SalesOrderShipmentTable.tsx:304 msgid "Shipped" msgstr "Enviado" -#: src/pages/sales/SalesOrderShipmentDetail.tsx:395 -#: src/tables/sales/SalesOrderShipmentTable.tsx:161 -#: src/tables/sales/SalesOrderShipmentTable.tsx:264 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:363 +#: src/tables/sales/SalesOrderShipmentTable.tsx:182 +#: src/tables/sales/SalesOrderShipmentTable.tsx:309 #: src/tables/settings/EmailTable.tsx:31 msgid "Delivered" msgstr "Entregue" -#: src/pages/sales/SalesOrderShipmentDetail.tsx:410 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:378 msgid "Send Shipment" msgstr "" -#: src/pages/sales/SalesOrderShipmentDetail.tsx:433 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:401 msgid "Shipment Actions" msgstr "" -#: src/pages/sales/SalesOrderShipmentDetail.tsx:442 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:410 msgid "Check" msgstr "" -#: src/pages/sales/SalesOrderShipmentDetail.tsx:443 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:411 msgid "Mark shipment as checked" msgstr "" -#: src/pages/sales/SalesOrderShipmentDetail.tsx:449 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:417 msgid "Uncheck" msgstr "" -#: src/pages/sales/SalesOrderShipmentDetail.tsx:450 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:418 msgid "Mark shipment as unchecked" msgstr "" @@ -8775,13 +8847,6 @@ msgstr "" msgid "Part is not active" msgstr "Peça inativa" -#: src/tables/ColumnRenderers.tsx:73 -#: src/tables/bom/BomTable.tsx:657 -#: src/tables/part/PartParameterTable.tsx:227 -#: src/tables/part/PartTestTemplateTable.tsx:258 -msgid "Part is Locked" -msgstr "" - #: src/tables/ColumnRenderers.tsx:78 msgid "You are subscribed to notifications for this part" msgstr "" @@ -9219,13 +9284,13 @@ msgstr "" #~ msgstr "Show asssmbled items" #: src/tables/bom/BomTable.tsx:315 -#: src/tables/build/BuildLineTable.tsx:276 +#: src/tables/build/BuildLineTable.tsx:277 #: src/tables/part/PartTable.tsx:145 msgid "External stock" msgstr "Estoque externo" #: src/tables/bom/BomTable.tsx:323 -#: src/tables/build/BuildLineTable.tsx:239 +#: src/tables/build/BuildLineTable.tsx:240 msgid "Includes substitute stock" msgstr "Incluir estoque de substitutos" @@ -9234,7 +9299,7 @@ msgstr "Incluir estoque de substitutos" #~ msgstr "Edit Bom Item" #: src/tables/bom/BomTable.tsx:332 -#: src/tables/build/BuildLineTable.tsx:249 +#: src/tables/build/BuildLineTable.tsx:250 #: src/tables/sales/SalesOrderLineItemTable.tsx:166 msgid "Includes variant stock" msgstr "Incluir estoque de variantes" @@ -9272,8 +9337,8 @@ msgid "Stock Information" msgstr "Informação do Estoque" #: src/tables/bom/BomTable.tsx:399 -#: src/tables/build/BuildLineTable.tsx:496 -#: src/tables/build/BuildLineTable.tsx:537 +#: src/tables/build/BuildLineTable.tsx:497 +#: src/tables/build/BuildLineTable.tsx:538 msgid "Consumable item" msgstr "Item Consumível" @@ -9282,7 +9347,7 @@ msgid "No available stock" msgstr "Estoque não disponível" #: src/tables/bom/BomTable.tsx:420 -#: src/tables/build/BuildLineTable.tsx:213 +#: src/tables/build/BuildLineTable.tsx:214 msgid "Show testable items" msgstr "Mostrar itens testáveis" @@ -9291,7 +9356,7 @@ msgid "Show trackable items" msgstr "Mostrar itens rastreáveis" #: src/tables/bom/BomTable.tsx:430 -#: src/tables/build/BuildLineTable.tsx:208 +#: src/tables/build/BuildLineTable.tsx:209 msgid "Show assembled items" msgstr "Mostrar itens montados" @@ -9335,7 +9400,7 @@ msgstr "Mostrar itens que permitem a substituição de variantes" #: src/tables/bom/BomTable.tsx:464 #: src/tables/bom/UsedInTable.tsx:85 -#: src/tables/build/BuildLineTable.tsx:202 +#: src/tables/build/BuildLineTable.tsx:203 msgid "Optional" msgstr "Opcional" @@ -9345,7 +9410,7 @@ msgid "Show optional items" msgstr "Mostrar itens opcionais" #: src/tables/bom/BomTable.tsx:469 -#: src/tables/build/BuildLineTable.tsx:197 +#: src/tables/build/BuildLineTable.tsx:198 msgid "Consumable" msgstr "Consumível" @@ -9420,6 +9485,7 @@ msgid "Add a single BOM item" msgstr "" #: src/tables/bom/BomTable.tsx:637 +#: src/tables/general/ParameterTable.tsx:206 #: src/tables/part/PartTable.tsx:546 msgid "Import from File" msgstr "" @@ -9433,8 +9499,8 @@ msgid "Bill of materials cannot be edited, as the part is locked" msgstr "A lista de materiais não pode ser editada, pois está bloqueada" #: src/tables/bom/UsedInTable.tsx:34 -#: src/tables/build/BuildLineTable.tsx:207 -#: src/tables/part/ParametricPartTable.tsx:364 +#: src/tables/build/BuildLineTable.tsx:208 +#: src/tables/part/ParametricPartTable.tsx:29 #: src/tables/part/PartBuildAllocationsTable.tsx:60 #: src/tables/part/PartTable.tsx:209 #: src/tables/stock/StockItemTable.tsx:333 @@ -9455,11 +9521,11 @@ msgstr "Rastreável" msgid "Show trackable assemblies" msgstr "Mostrar montagens rastreáveis" -#: src/tables/build/BuildAllocatedStockTable.tsx:67 +#: src/tables/build/BuildAllocatedStockTable.tsx:64 msgid "Allocated to Output" msgstr "Alocado para saída" -#: src/tables/build/BuildAllocatedStockTable.tsx:68 +#: src/tables/build/BuildAllocatedStockTable.tsx:65 msgid "Show items allocated to a build output" msgstr "Mostrar itens alocados a uma saída da compilação" @@ -9472,50 +9538,68 @@ msgstr "Mostrar itens alocados a uma saída da compilação" #~ msgid "Include orders for part variants" #~ msgstr "Include orders for part variants" -#: src/tables/build/BuildAllocatedStockTable.tsx:97 +#: src/tables/build/BuildAllocatedStockTable.tsx:94 #: src/tables/part/PartBuildAllocationsTable.tsx:84 #: src/tables/part/PartPurchaseOrdersTable.tsx:132 #: src/tables/part/PartSalesAllocationsTable.tsx:69 #: src/tables/sales/SalesOrderAllocationTable.tsx:122 -#: src/tables/sales/SalesOrderShipmentTable.tsx:130 +#: src/tables/sales/SalesOrderShipmentTable.tsx:151 msgid "Order Status" msgstr "Situação do pedido" +#: src/tables/build/BuildAllocatedStockTable.tsx:164 +#: src/tables/build/BuildLineTable.tsx:651 +msgid "Edit Stock Allocation" +msgstr "" + #: src/tables/build/BuildAllocatedStockTable.tsx:164 #~ msgid "Edit Build Item" #~ msgstr "Edit Build Item" -#: src/tables/build/BuildAllocatedStockTable.tsx:167 -#: src/tables/build/BuildLineTable.tsx:650 -msgid "Edit Stock Allocation" -msgstr "" - #: src/tables/build/BuildAllocatedStockTable.tsx:174 #~ msgid "Delete Build Item" #~ msgstr "Delete Build Item" -#: src/tables/build/BuildAllocatedStockTable.tsx:180 -#: src/tables/build/BuildLineTable.tsx:663 -msgid "Delete Stock Allocation" +#: src/tables/build/BuildAllocatedStockTable.tsx:177 +#: src/tables/build/BuildLineTable.tsx:664 +#: src/tables/sales/SalesOrderAllocationTable.tsx:218 +msgid "Remove Allocated Stock" msgstr "" -#: src/tables/build/BuildAllocatedStockTable.tsx:239 +#: src/tables/build/BuildAllocatedStockTable.tsx:180 +#: src/tables/build/BuildLineTable.tsx:663 +#~ msgid "Delete Stock Allocation" +#~ msgstr "Delete Stock Allocation" + +#: src/tables/build/BuildAllocatedStockTable.tsx:182 +#: src/tables/build/BuildLineTable.tsx:669 +#: src/tables/sales/SalesOrderAllocationTable.tsx:221 +msgid "Are you sure you want to remove this allocated stock from the order?" +msgstr "" + +#: src/tables/build/BuildAllocatedStockTable.tsx:242 msgid "Consume" msgstr "" +#: src/tables/build/BuildAllocatedStockTable.tsx:259 +#: src/tables/build/BuildLineTable.tsx:112 +#: src/tables/sales/SalesOrderAllocationTable.tsx:248 +msgid "Remove allocated stock" +msgstr "" + #: src/tables/build/BuildLineTable.tsx:59 #~ msgid "Show lines with available stock" #~ msgstr "Show lines with available stock" -#: src/tables/build/BuildLineTable.tsx:120 +#: src/tables/build/BuildLineTable.tsx:121 msgid "View Stock Item" msgstr "" -#: src/tables/build/BuildLineTable.tsx:183 +#: src/tables/build/BuildLineTable.tsx:184 msgid "Show fully allocated lines" msgstr "" -#: src/tables/build/BuildLineTable.tsx:188 +#: src/tables/build/BuildLineTable.tsx:189 msgid "Show fully consumed lines" msgstr "" @@ -9523,124 +9607,124 @@ msgstr "" #~ msgid "Show allocated lines" #~ msgstr "Show allocated lines" -#: src/tables/build/BuildLineTable.tsx:193 +#: src/tables/build/BuildLineTable.tsx:194 msgid "Show items with sufficient available stock" msgstr "" -#: src/tables/build/BuildLineTable.tsx:198 +#: src/tables/build/BuildLineTable.tsx:199 msgid "Show consumable lines" msgstr "Mostrar linhas consumíveis" -#: src/tables/build/BuildLineTable.tsx:203 +#: src/tables/build/BuildLineTable.tsx:204 msgid "Show optional lines" msgstr "Mostrar linhas opcionais" -#: src/tables/build/BuildLineTable.tsx:212 +#: src/tables/build/BuildLineTable.tsx:213 #: src/tables/part/PartTable.tsx:233 msgid "Testable" msgstr "Testável" -#: src/tables/build/BuildLineTable.tsx:217 +#: src/tables/build/BuildLineTable.tsx:218 #: src/tables/stock/StockItemTable.tsx:388 msgid "Tracked" msgstr "Monitorado" -#: src/tables/build/BuildLineTable.tsx:218 +#: src/tables/build/BuildLineTable.tsx:219 msgid "Show tracked lines" msgstr "Mostrar itens monitorados" -#: src/tables/build/BuildLineTable.tsx:223 +#: src/tables/build/BuildLineTable.tsx:224 msgid "Show items with stock on order" msgstr "" -#: src/tables/build/BuildLineTable.tsx:258 +#: src/tables/build/BuildLineTable.tsx:259 #: src/tables/sales/SalesOrderLineItemTable.tsx:172 msgid "In production" msgstr "Em produção" -#: src/tables/build/BuildLineTable.tsx:286 +#: src/tables/build/BuildLineTable.tsx:287 msgid "Insufficient stock" msgstr "Estoque insuficiente" -#: src/tables/build/BuildLineTable.tsx:302 +#: src/tables/build/BuildLineTable.tsx:303 #: src/tables/sales/SalesOrderLineItemTable.tsx:160 #: src/tables/stock/StockItemTable.tsx:191 msgid "No stock available" msgstr "Nenhum estoque disponível" -#: src/tables/build/BuildLineTable.tsx:375 +#: src/tables/build/BuildLineTable.tsx:376 msgid "Gets Inherited" msgstr "Obtém herdados" -#: src/tables/build/BuildLineTable.tsx:388 +#: src/tables/build/BuildLineTable.tsx:389 msgid "Unit Quantity" msgstr "Quantidade Unitária" -#: src/tables/build/BuildLineTable.tsx:415 +#: src/tables/build/BuildLineTable.tsx:416 msgid "Setup Quantity" msgstr "" -#: src/tables/build/BuildLineTable.tsx:424 +#: src/tables/build/BuildLineTable.tsx:425 msgid "Attrition" msgstr "" -#: src/tables/build/BuildLineTable.tsx:432 +#: src/tables/build/BuildLineTable.tsx:433 msgid "Rounding Multiple" msgstr "" -#: src/tables/build/BuildLineTable.tsx:441 +#: src/tables/build/BuildLineTable.tsx:442 msgid "BOM Information" msgstr "" -#: src/tables/build/BuildLineTable.tsx:515 +#: src/tables/build/BuildLineTable.tsx:516 #: src/tables/part/PartBuildAllocationsTable.tsx:102 msgid "Fully allocated" msgstr "" -#: src/tables/build/BuildLineTable.tsx:563 +#: src/tables/build/BuildLineTable.tsx:564 #: src/tables/sales/SalesOrderLineItemTable.tsx:311 msgid "Create Build Order" msgstr "Criar Pedido de Produção" -#: src/tables/build/BuildLineTable.tsx:592 +#: src/tables/build/BuildLineTable.tsx:593 msgid "Auto allocation in progress" msgstr "Alocação automática em progresso" -#: src/tables/build/BuildLineTable.tsx:595 -#: src/tables/build/BuildLineTable.tsx:802 +#: src/tables/build/BuildLineTable.tsx:596 +#: src/tables/build/BuildLineTable.tsx:809 msgid "Auto Allocate Stock" msgstr "Estoque alocado automaticamente" -#: src/tables/build/BuildLineTable.tsx:596 +#: src/tables/build/BuildLineTable.tsx:597 msgid "Automatically allocate stock to this build according to the selected options" msgstr "Alocar automaticamente o estoque desta compilação conforme as opções selecionadas" -#: src/tables/build/BuildLineTable.tsx:616 -#: src/tables/build/BuildLineTable.tsx:630 -#: src/tables/build/BuildLineTable.tsx:751 -#: src/tables/build/BuildLineTable.tsx:852 +#: src/tables/build/BuildLineTable.tsx:617 +#: src/tables/build/BuildLineTable.tsx:631 +#: src/tables/build/BuildLineTable.tsx:758 +#: src/tables/build/BuildLineTable.tsx:859 #: src/tables/build/BuildOutputTable.tsx:355 #: src/tables/build/BuildOutputTable.tsx:360 msgid "Deallocate Stock" msgstr "Desalocar estoque" -#: src/tables/build/BuildLineTable.tsx:632 +#: src/tables/build/BuildLineTable.tsx:633 msgid "Deallocate all untracked stock for this build order" msgstr "Desalocar todo estoque não rastreado para esta ordem de compilação" -#: src/tables/build/BuildLineTable.tsx:634 +#: src/tables/build/BuildLineTable.tsx:635 msgid "Deallocate stock from the selected line item" msgstr "Desalocar estoque do item de linha selecionado" -#: src/tables/build/BuildLineTable.tsx:638 +#: src/tables/build/BuildLineTable.tsx:639 msgid "Stock has been deallocated" msgstr "O estoque foi distribuído" -#: src/tables/build/BuildLineTable.tsx:771 +#: src/tables/build/BuildLineTable.tsx:778 msgid "Build Stock" msgstr "Estoque de Produção" -#: src/tables/build/BuildLineTable.tsx:784 +#: src/tables/build/BuildLineTable.tsx:791 #: src/tables/sales/SalesOrderLineItemTable.tsx:487 msgid "View Part" msgstr "" @@ -9739,7 +9823,7 @@ msgid "Serialize Build Output" msgstr "" #: src/tables/build/BuildOutputTable.tsx:405 -#: src/tables/part/PartTestResultTable.tsx:310 +#: src/tables/part/PartTestResultTable.tsx:318 #: src/tables/stock/StockItemTable.tsx:328 msgid "Filter by stock status" msgstr "Filtrar por estado do estoque" @@ -9964,8 +10048,8 @@ msgid "View Item" msgstr "" #: src/tables/general/ExtraLineItemTable.tsx:95 -#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:299 -#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:403 +#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:300 +#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:405 #: src/tables/sales/ReturnOrderLineItemTable.tsx:83 #: src/tables/sales/ReturnOrderLineItemTable.tsx:187 #: src/tables/sales/SalesOrderLineItemTable.tsx:252 @@ -9974,14 +10058,14 @@ msgid "Add Line Item" msgstr "Adicionar Item de Linha" #: src/tables/general/ExtraLineItemTable.tsx:108 -#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:320 +#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:322 #: src/tables/sales/ReturnOrderLineItemTable.tsx:96 #: src/tables/sales/SalesOrderLineItemTable.tsx:271 msgid "Edit Line Item" msgstr "Editar Item de Linha" #: src/tables/general/ExtraLineItemTable.tsx:117 -#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:329 +#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:331 #: src/tables/sales/ReturnOrderLineItemTable.tsx:105 #: src/tables/sales/SalesOrderLineItemTable.tsx:280 msgid "Delete Line Item" @@ -9991,6 +10075,137 @@ msgstr "Excluir Item de Linha" msgid "Add Extra Line Item" msgstr "Adicionar Item de Linha Extra" +#: src/tables/general/ParameterTable.tsx:88 +msgid "Internal Units" +msgstr "Unidades Internas" + +#: src/tables/general/ParameterTable.tsx:108 +#: src/tables/general/ParameterTable.tsx:123 +msgid "Updated By" +msgstr "Atualizado Por" + +#: src/tables/general/ParameterTable.tsx:118 +msgid "Show parameters for enabled templates" +msgstr "" + +#: src/tables/general/ParameterTable.tsx:124 +msgid "Filter by user who last updated the parameter" +msgstr "" + +#: src/tables/general/ParameterTable.tsx:154 +msgid "Import Parameters" +msgstr "" + +#: src/tables/general/ParameterTable.tsx:164 +#: src/tables/general/ParametricDataTable.tsx:261 +#: src/tables/general/ParametricDataTable.tsx:392 +msgid "Add Parameter" +msgstr "Adicionar Parâmetro" + +#: src/tables/general/ParameterTable.tsx:175 +#: src/tables/general/ParameterTable.tsx:222 +#: src/tables/general/ParametricDataTable.tsx:285 +msgid "Edit Parameter" +msgstr "Editar Parâmetro" + +#: src/tables/general/ParameterTable.tsx:183 +#: src/tables/general/ParameterTable.tsx:230 +msgid "Delete Parameter" +msgstr "Excluir Parâmetro" + +#: src/tables/general/ParameterTable.tsx:191 +msgid "Add Parameters" +msgstr "" + +#: src/tables/general/ParameterTable.tsx:197 +msgid "Create Parameter" +msgstr "" + +#: src/tables/general/ParameterTable.tsx:199 +msgid "Create a new parameter" +msgstr "" + +#: src/tables/general/ParameterTable.tsx:208 +msgid "Import parameters from a file" +msgstr "" + +#: src/tables/general/ParameterTemplateTable.tsx:48 +#: src/tables/general/ParameterTemplateTable.tsx:197 +msgid "Add Parameter Template" +msgstr "Adicionar Modelo de Parâmetro" + +#: src/tables/general/ParameterTemplateTable.tsx:64 +msgid "Duplicate Parameter Template" +msgstr "" + +#: src/tables/general/ParameterTemplateTable.tsx:78 +msgid "Delete Parameter Template" +msgstr "Excluir Modelo de Parâmetro" + +#: src/tables/general/ParameterTemplateTable.tsx:85 +msgid "Edit Parameter Template" +msgstr "Edital Modelo de Parâmetro" + +#: src/tables/general/ParameterTemplateTable.tsx:138 +msgid "Checkbox" +msgstr "Caixa de seleção" + +#: src/tables/general/ParameterTemplateTable.tsx:139 +msgid "Show checkbox templates" +msgstr "Mostrar modelos da caixa de seleção" + +#: src/tables/general/ParameterTemplateTable.tsx:143 +msgid "Has choices" +msgstr "Tem escolhas" + +#: src/tables/general/ParameterTemplateTable.tsx:144 +msgid "Show templates with choices" +msgstr "Mostrar modelos com escolhas" + +#: src/tables/general/ParameterTemplateTable.tsx:148 +#: src/tables/part/PartTable.tsx:245 +msgid "Has Units" +msgstr "Possui unidades" + +#: src/tables/general/ParameterTemplateTable.tsx:149 +msgid "Show templates with units" +msgstr "Mostrar modelos com unidades" + +#: src/tables/general/ParameterTemplateTable.tsx:154 +msgid "Show enabled templates" +msgstr "" + +#: src/tables/general/ParameterTemplateTable.tsx:158 +#: src/tables/settings/ImportSessionTable.tsx:111 +#: src/tables/settings/TemplateTable.tsx:368 +msgid "Model Type" +msgstr "Tipo de Modelo" + +#: src/tables/general/ParameterTemplateTable.tsx:159 +msgid "Filter by model type" +msgstr "" + +#: src/tables/general/ParametricDataTable.tsx:79 +msgid "Click to edit" +msgstr "Clique para editar" + +#: src/tables/general/ParametricDataTableFilters.tsx:36 +msgid "True" +msgstr "Verdadeiro" + +#: src/tables/general/ParametricDataTableFilters.tsx:37 +msgid "False" +msgstr "Falso" + +#: src/tables/general/ParametricDataTableFilters.tsx:47 +#: src/tables/general/ParametricDataTableFilters.tsx:80 +msgid "Select a choice" +msgstr "Selecione uma opção" + +#: src/tables/general/ParametricDataTableFilters.tsx:100 +msgid "Enter a value" +msgstr "Digite o valor" + #: src/tables/machine/MachineListTable.tsx:133 msgid "Machine restarted" msgstr "Máquina reiniciada" @@ -10071,7 +10286,7 @@ msgid "Initialized" msgstr "Inicializado" #: src/tables/machine/MachineListTable.tsx:410 -#: src/tables/machine/MachineTypeTable.tsx:307 +#: src/tables/machine/MachineTypeTable.tsx:305 msgid "No errors reported" msgstr "Sem erros reportados" @@ -10132,15 +10347,15 @@ msgstr "Driver integrado" #~ msgid "Machine type information" #~ msgstr "Machine type information" -#: src/tables/machine/MachineTypeTable.tsx:128 +#: src/tables/machine/MachineTypeTable.tsx:126 msgid "Not Found" msgstr "Não Encontrado" -#: src/tables/machine/MachineTypeTable.tsx:131 +#: src/tables/machine/MachineTypeTable.tsx:129 msgid "Machine type not found." msgstr "Tipo de máquina não encontrado." -#: src/tables/machine/MachineTypeTable.tsx:141 +#: src/tables/machine/MachineTypeTable.tsx:139 msgid "Machine Type Information" msgstr "" @@ -10148,34 +10363,34 @@ msgstr "" #~ msgid "Available drivers" #~ msgstr "Available drivers" -#: src/tables/machine/MachineTypeTable.tsx:156 -#: src/tables/machine/MachineTypeTable.tsx:255 +#: src/tables/machine/MachineTypeTable.tsx:154 +#: src/tables/machine/MachineTypeTable.tsx:253 msgid "Slug" msgstr "" -#: src/tables/machine/MachineTypeTable.tsx:167 -#: src/tables/machine/MachineTypeTable.tsx:276 +#: src/tables/machine/MachineTypeTable.tsx:165 +#: src/tables/machine/MachineTypeTable.tsx:274 msgid "Provider plugin" msgstr "Plugin de provedor" -#: src/tables/machine/MachineTypeTable.tsx:179 -#: src/tables/machine/MachineTypeTable.tsx:288 +#: src/tables/machine/MachineTypeTable.tsx:177 +#: src/tables/machine/MachineTypeTable.tsx:286 msgid "Provider file" msgstr "Arquivo do provedor" -#: src/tables/machine/MachineTypeTable.tsx:194 +#: src/tables/machine/MachineTypeTable.tsx:192 msgid "Available Drivers" msgstr "" -#: src/tables/machine/MachineTypeTable.tsx:234 +#: src/tables/machine/MachineTypeTable.tsx:232 msgid "Machine driver not found." msgstr "Tipo de máquina não encontrado." -#: src/tables/machine/MachineTypeTable.tsx:242 +#: src/tables/machine/MachineTypeTable.tsx:240 msgid "Machine driver information" msgstr "Informação do driver da máquina" -#: src/tables/machine/MachineTypeTable.tsx:262 +#: src/tables/machine/MachineTypeTable.tsx:260 msgid "Machine type" msgstr "Tipo de máquina" @@ -10187,15 +10402,15 @@ msgstr "Tipo de máquina" #~ msgid "Machine driver detail" #~ msgstr "Machine driver detail" -#: src/tables/machine/MachineTypeTable.tsx:362 +#: src/tables/machine/MachineTypeTable.tsx:360 msgid "Builtin type" msgstr "Tipo integrado" -#: src/tables/machine/MachineTypeTable.tsx:371 +#: src/tables/machine/MachineTypeTable.tsx:369 msgid "Machine Type Detail" msgstr "" -#: src/tables/machine/MachineTypeTable.tsx:381 +#: src/tables/machine/MachineTypeTable.tsx:379 msgid "Machine Driver Detail" msgstr "" @@ -10213,52 +10428,31 @@ msgstr "Notificação" msgid "Message" msgstr "Mensagem" -#: src/tables/part/ParametricPartTable.tsx:78 -msgid "Click to edit" -msgstr "Clique para editar" +#: src/tables/part/ParametricPartTable.tsx:20 +msgid "Show active parts" +msgstr "Mostrar partes ativas" + +#: src/tables/part/ParametricPartTable.tsx:25 +msgid "Show locked parts" +msgstr "Mostrar partes bloqueadas" + +#: src/tables/part/ParametricPartTable.tsx:30 +msgid "Show assembly parts" +msgstr "Mostrar peças de montagem" #: src/tables/part/ParametricPartTable.tsx:82 #~ msgid "Edit parameter" #~ msgstr "Edit parameter" #: src/tables/part/ParametricPartTable.tsx:244 -msgid "Add Part Parameter" -msgstr "Adicionar parâmetro de peça" +#~ msgid "Add Part Parameter" +#~ msgstr "Add Part Parameter" #: src/tables/part/ParametricPartTable.tsx:258 #: src/tables/part/PartParameterTable.tsx:164 #: src/tables/part/PartParameterTable.tsx:187 -msgid "Edit Part Parameter" -msgstr "Editar Parâmetro da Peça" - -#: src/tables/part/ParametricPartTable.tsx:355 -msgid "Show active parts" -msgstr "Mostrar partes ativas" - -#: src/tables/part/ParametricPartTable.tsx:360 -msgid "Show locked parts" -msgstr "Mostrar partes bloqueadas" - -#: src/tables/part/ParametricPartTable.tsx:365 -msgid "Show assembly parts" -msgstr "Mostrar peças de montagem" - -#: src/tables/part/ParametricPartTableFilters.tsx:36 -msgid "True" -msgstr "Verdadeiro" - -#: src/tables/part/ParametricPartTableFilters.tsx:37 -msgid "False" -msgstr "Falso" - -#: src/tables/part/ParametricPartTableFilters.tsx:47 -#: src/tables/part/ParametricPartTableFilters.tsx:80 -msgid "Select a choice" -msgstr "Selecione uma opção" - -#: src/tables/part/ParametricPartTableFilters.tsx:100 -msgid "Enter a value" -msgstr "Digite o valor" +#~ msgid "Edit Part Parameter" +#~ msgstr "Edit Part Parameter" #: src/tables/part/PartBuildAllocationsTable.tsx:64 msgid "Assembly IPN" @@ -10273,7 +10467,7 @@ msgid "Required Stock" msgstr "" #: src/tables/part/PartBuildAllocationsTable.tsx:124 -#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:381 +#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:383 msgid "View Build Order" msgstr "" @@ -10332,85 +10526,22 @@ msgstr "Editar parâmetro de categoria" msgid "Delete Category Parameter" msgstr "Deletar parâmetro de categoria" -#: src/tables/part/PartCategoryTemplateTable.tsx:87 -msgid "Parameter Template" -msgstr "Template de parâmetro" - #: src/tables/part/PartCategoryTemplateTable.tsx:93 #~ msgid "[{0}]" #~ msgstr "[{0}]" -#: src/tables/part/PartParameterTable.tsx:108 -msgid "Internal Units" -msgstr "Unidades Internas" - -#: src/tables/part/PartParameterTable.tsx:128 -#: src/tables/part/PartParameterTable.tsx:138 -msgid "Updated By" -msgstr "Atualizado Por" - -#: src/tables/part/PartParameterTable.tsx:139 -msgid "Filter by user who last updated the parameter" -msgstr "" - #: src/tables/part/PartParameterTable.tsx:148 -msgid "New Part Parameter" -msgstr "Novo Parâmetro de Peça" +#~ msgid "New Part Parameter" +#~ msgstr "New Part Parameter" #: src/tables/part/PartParameterTable.tsx:173 #: src/tables/part/PartParameterTable.tsx:195 -msgid "Delete Part Parameter" -msgstr "Apagar Parâmetro da Peça" +#~ msgid "Delete Part Parameter" +#~ msgstr "Delete Part Parameter" #: src/tables/part/PartParameterTable.tsx:213 -msgid "Add parameter" -msgstr "Adiciona parâmetro" - -#: src/tables/part/PartParameterTable.tsx:232 -msgid "Part parameters cannot be edited, as the part is locked" -msgstr "Os parâmetros da peça não podem ser editados, pois a peça está bloqueada" - -#: src/tables/part/PartParameterTemplateTable.tsx:36 -msgid "Checkbox" -msgstr "Caixa de seleção" - -#: src/tables/part/PartParameterTemplateTable.tsx:37 -msgid "Show checkbox templates" -msgstr "Mostrar modelos da caixa de seleção" - -#: src/tables/part/PartParameterTemplateTable.tsx:41 -msgid "Has choices" -msgstr "Tem escolhas" - -#: src/tables/part/PartParameterTemplateTable.tsx:42 -msgid "Show templates with choices" -msgstr "Mostrar modelos com escolhas" - -#: src/tables/part/PartParameterTemplateTable.tsx:46 -#: src/tables/part/PartTable.tsx:245 -msgid "Has Units" -msgstr "Possui unidades" - -#: src/tables/part/PartParameterTemplateTable.tsx:47 -msgid "Show templates with units" -msgstr "Mostrar modelos com unidades" - -#: src/tables/part/PartParameterTemplateTable.tsx:91 -#: src/tables/part/PartParameterTemplateTable.tsx:166 -msgid "Add Parameter Template" -msgstr "Adicionar Modelo de Parâmetro" - -#: src/tables/part/PartParameterTemplateTable.tsx:105 -msgid "Duplicate Parameter Template" -msgstr "" - -#: src/tables/part/PartParameterTemplateTable.tsx:117 -msgid "Edit Parameter Template" -msgstr "Edital Modelo de Parâmetro" - -#: src/tables/part/PartParameterTemplateTable.tsx:128 -msgid "Delete Parameter Template" -msgstr "Excluir Modelo de Parâmetro" +#~ msgid "Add parameter" +#~ msgstr "Add parameter" #: src/tables/part/PartParameterTemplateTable.tsx:141 #~ msgid "Add parameter template" @@ -10430,7 +10561,7 @@ msgid "Show received items" msgstr "Mostrar itens recebidos" #: src/tables/part/PartSalesAllocationsTable.tsx:90 -#: src/tables/sales/SalesOrderShipmentTable.tsx:218 +#: src/tables/sales/SalesOrderShipmentTable.tsx:263 msgid "View Sales Order" msgstr "" @@ -10617,8 +10748,8 @@ msgstr "" #: src/tables/part/PartTestResultTable.tsx:103 #: src/tables/part/PartTestResultTable.tsx:181 -#: src/tables/part/PartTestResultTable.tsx:320 -#: src/tables/part/PartTestResultTable.tsx:334 +#: src/tables/part/PartTestResultTable.tsx:328 +#: src/tables/part/PartTestResultTable.tsx:342 #: src/tables/stock/StockItemTestResultTable.tsx:296 #: src/tables/stock/StockItemTestResultTable.tsx:368 #: src/tables/stock/StockItemTestResultTable.tsx:429 @@ -10643,7 +10774,7 @@ msgstr "" msgid "No Result" msgstr "Nenhum resultado" -#: src/tables/part/PartTestResultTable.tsx:298 +#: src/tables/part/PartTestResultTable.tsx:306 msgid "Show build outputs currently in production" msgstr "Mostrar saídas de compilação atualmente em produção" @@ -11013,36 +11144,45 @@ msgstr "Instalado" #~ msgid "Parameter updated" #~ msgstr "Parameter updated" -#: src/tables/purchasing/ManufacturerPartParameterTable.tsx:63 -#: src/tables/purchasing/ManufacturerPartParameterTable.tsx:112 -msgid "Add Parameter" -msgstr "Adicionar Parâmetro" - #: src/tables/purchasing/ManufacturerPartParameterTable.tsx:73 #~ msgid "Parameter deleted" #~ msgstr "Parameter deleted" -#: src/tables/purchasing/ManufacturerPartParameterTable.tsx:74 -msgid "Edit Parameter" -msgstr "Editar Parâmetro" - #: src/tables/purchasing/ManufacturerPartParameterTable.tsx:74 #~ msgid "Are you sure you want to delete this parameter?" #~ msgstr "Are you sure you want to delete this parameter?" -#: src/tables/purchasing/ManufacturerPartParameterTable.tsx:82 -msgid "Delete Parameter" -msgstr "Excluir Parâmetro" - -#: src/tables/purchasing/ManufacturerPartTable.tsx:63 -#~ msgid "Create Manufacturer Part" -#~ msgstr "Create Manufacturer Part" - +#: src/tables/purchasing/ManufacturerPartParametricTable.tsx:34 #: src/tables/purchasing/ManufacturerPartTable.tsx:82 #: src/tables/purchasing/SupplierPartTable.tsx:99 msgid "MPN" msgstr "MPN" +#: src/tables/purchasing/ManufacturerPartParametricTable.tsx:44 +#: src/tables/purchasing/ManufacturerPartTable.tsx:134 +#: src/tables/purchasing/SupplierPartTable.tsx:220 +msgid "Active Part" +msgstr "Parte ativa" + +#: src/tables/purchasing/ManufacturerPartParametricTable.tsx:45 +#: src/tables/purchasing/ManufacturerPartTable.tsx:135 +msgid "Show manufacturer parts for active internal parts." +msgstr "" + +#: src/tables/purchasing/ManufacturerPartParametricTable.tsx:50 +#: src/tables/purchasing/ManufacturerPartTable.tsx:140 +msgid "Active Manufacturer" +msgstr "" + +#: src/tables/purchasing/ManufacturerPartParametricTable.tsx:51 +#: src/tables/purchasing/ManufacturerPartTable.tsx:142 +msgid "Show manufacturer parts for active manufacturers." +msgstr "" + +#: src/tables/purchasing/ManufacturerPartTable.tsx:63 +#~ msgid "Create Manufacturer Part" +#~ msgstr "Create Manufacturer Part" + #: src/tables/purchasing/ManufacturerPartTable.tsx:100 #~ msgid "Manufacturer part updated" #~ msgstr "Manufacturer part updated" @@ -11055,25 +11195,8 @@ msgstr "MPN" #~ msgid "Are you sure you want to remove this manufacturer part?" #~ msgstr "Are you sure you want to remove this manufacturer part?" -#: src/tables/purchasing/ManufacturerPartTable.tsx:134 -#: src/tables/purchasing/SupplierPartTable.tsx:220 -msgid "Active Part" -msgstr "Parte ativa" - -#: src/tables/purchasing/ManufacturerPartTable.tsx:135 -msgid "Show manufacturer parts for active internal parts." -msgstr "" - -#: src/tables/purchasing/ManufacturerPartTable.tsx:140 -msgid "Active Manufacturer" -msgstr "" - -#: src/tables/purchasing/ManufacturerPartTable.tsx:142 -msgid "Show manufacturer parts for active manufacturers." -msgstr "" - #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:115 -#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:397 +#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:399 msgid "Import Line Items" msgstr "Importar Itens da Linha" @@ -11099,11 +11222,11 @@ msgstr "" #~ msgid "Add line item" #~ msgstr "Add line item" -#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:350 +#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:352 msgid "Receive line item" msgstr "Receber item de linha" -#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:414 +#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:416 msgid "Receive items" msgstr "Receber itens" @@ -11201,25 +11324,25 @@ msgid "Not shipped" msgstr "" #: src/tables/sales/SalesOrderAllocationTable.tsx:211 -#: src/tables/sales/SalesOrderAllocationTable.tsx:229 +#: src/tables/sales/SalesOrderAllocationTable.tsx:235 msgid "Edit Allocation" msgstr "" #: src/tables/sales/SalesOrderAllocationTable.tsx:218 #: src/tables/sales/SalesOrderAllocationTable.tsx:241 -msgid "Delete Allocation" -msgstr "" +#~ msgid "Delete Allocation" +#~ msgstr "Delete Allocation" -#: src/tables/sales/SalesOrderAllocationTable.tsx:252 -#: src/tables/sales/SalesOrderAllocationTable.tsx:253 +#: src/tables/sales/SalesOrderAllocationTable.tsx:261 +#: src/tables/sales/SalesOrderAllocationTable.tsx:262 msgid "View Shipment" msgstr "" -#: src/tables/sales/SalesOrderAllocationTable.tsx:308 +#: src/tables/sales/SalesOrderAllocationTable.tsx:317 msgid "Assign to Shipment" msgstr "" -#: src/tables/sales/SalesOrderAllocationTable.tsx:324 +#: src/tables/sales/SalesOrderAllocationTable.tsx:333 msgid "Assign to shipment" msgstr "" @@ -11259,35 +11382,35 @@ msgstr "Encomendar estoque" #~ msgid "Delete Shipment" #~ msgstr "Delete Shipment" -#: src/tables/sales/SalesOrderShipmentTable.tsx:72 +#: src/tables/sales/SalesOrderShipmentTable.tsx:79 msgid "Create Shipment" msgstr "Criar Remessa" -#: src/tables/sales/SalesOrderShipmentTable.tsx:143 +#: src/tables/sales/SalesOrderShipmentTable.tsx:164 msgid "Items" msgstr "Itens" -#: src/tables/sales/SalesOrderShipmentTable.tsx:203 +#: src/tables/sales/SalesOrderShipmentTable.tsx:248 msgid "Edit shipment" msgstr "" -#: src/tables/sales/SalesOrderShipmentTable.tsx:211 +#: src/tables/sales/SalesOrderShipmentTable.tsx:256 msgid "Cancel shipment" msgstr "Cancelar envio" -#: src/tables/sales/SalesOrderShipmentTable.tsx:241 +#: src/tables/sales/SalesOrderShipmentTable.tsx:286 msgid "Add shipment" msgstr "Adicionar Remessa" -#: src/tables/sales/SalesOrderShipmentTable.tsx:255 +#: src/tables/sales/SalesOrderShipmentTable.tsx:300 msgid "Show shipments which have been checked" msgstr "" -#: src/tables/sales/SalesOrderShipmentTable.tsx:260 +#: src/tables/sales/SalesOrderShipmentTable.tsx:305 msgid "Show shipments which have been shipped" msgstr "" -#: src/tables/sales/SalesOrderShipmentTable.tsx:265 +#: src/tables/sales/SalesOrderShipmentTable.tsx:310 msgid "Show shipments which have been delivered" msgstr "" @@ -11621,11 +11744,6 @@ msgstr "" msgid "Imported Rows" msgstr "Linhas Importadas" -#: src/tables/settings/ImportSessionTable.tsx:111 -#: src/tables/settings/TemplateTable.tsx:368 -msgid "Model Type" -msgstr "Tipo de Modelo" - #: src/tables/settings/ImportSessionTable.tsx:112 #: src/tables/settings/TemplateTable.tsx:369 msgid "Filter by target model type" diff --git a/src/frontend/src/locales/ro/messages.po b/src/frontend/src/locales/ro/messages.po index 1d7f87d4a7..a121585bb0 100644 --- a/src/frontend/src/locales/ro/messages.po +++ b/src/frontend/src/locales/ro/messages.po @@ -8,7 +8,7 @@ msgstr "" "Language: ro\n" "Project-Id-Version: inventree\n" "Report-Msgid-Bugs-To: \n" -"PO-Revision-Date: 2025-11-19 19:39\n" +"PO-Revision-Date: 2025-12-07 07:36\n" "Last-Translator: \n" "Language-Team: Romanian\n" "Plural-Forms: nplurals=3; plural=(n==1 ? 0 : (n==0 || (n%100>0 && n%100<20)) ? 1 : 2);\n" @@ -30,7 +30,7 @@ msgid "Edit" msgstr "" #: lib/components/RowActions.tsx:56 -#: src/components/forms/ApiForm.tsx:735 +#: src/components/forms/ApiForm.tsx:754 #: src/components/items/ActionDropdown.tsx:257 #: src/components/items/RoleTable.tsx:155 #: src/hooks/UseForm.tsx:164 @@ -56,24 +56,24 @@ msgstr "" #: lib/components/RowActions.tsx:136 #: src/components/nav/NavigationDrawer.tsx:190 -#: src/forms/PurchaseOrderForms.tsx:802 +#: src/forms/PurchaseOrderForms.tsx:854 #: src/forms/StockForms.tsx:796 #: src/forms/StockForms.tsx:843 -#: src/forms/StockForms.tsx:889 -#: src/forms/StockForms.tsx:928 -#: src/forms/StockForms.tsx:964 -#: src/forms/StockForms.tsx:1050 +#: src/forms/StockForms.tsx:896 +#: src/forms/StockForms.tsx:942 +#: src/forms/StockForms.tsx:980 +#: src/forms/StockForms.tsx:1066 #: src/pages/Index/Settings/AccountSettings/MFASettings.tsx:962 msgid "Actions" msgstr "" #: lib/components/SearchInput.tsx:34 -#: src/components/forms/fields/RelatedModelField.tsx:408 +#: src/components/forms/fields/RelatedModelField.tsx:479 #: src/components/nav/Header.tsx:169 #: src/components/wizards/ImportPartWizard.tsx:200 #: src/components/wizards/ImportPartWizard.tsx:233 -#: src/pages/Index/Settings/UserSettings.tsx:74 -#: src/pages/part/PartDetail.tsx:1155 +#: src/pages/Index/Settings/UserSettings.tsx:75 +#: src/pages/part/PartDetail.tsx:1176 msgid "Search" msgstr "" @@ -95,7 +95,7 @@ msgstr "" msgid "No" msgstr "" -#: lib/enums/ModelInformation.tsx:28 +#: lib/enums/ModelInformation.tsx:29 #: src/components/wizards/OrderPartsWizard.tsx:279 #: src/forms/BuildForms.tsx:332 #: src/forms/BuildForms.tsx:407 @@ -103,208 +103,234 @@ msgstr "" #: src/forms/BuildForms.tsx:630 #: src/forms/BuildForms.tsx:793 #: src/forms/BuildForms.tsx:896 -#: src/forms/PurchaseOrderForms.tsx:798 +#: src/forms/PurchaseOrderForms.tsx:850 #: src/forms/ReturnOrderForms.tsx:242 -#: src/forms/SalesOrderForms.tsx:305 +#: src/forms/SalesOrderForms.tsx:384 #: src/forms/StockForms.tsx:360 #: src/forms/StockForms.tsx:791 #: src/forms/StockForms.tsx:838 -#: src/forms/StockForms.tsx:884 -#: src/forms/StockForms.tsx:923 -#: src/forms/StockForms.tsx:959 -#: src/forms/StockForms.tsx:1002 -#: src/forms/StockForms.tsx:1046 -#: src/forms/StockForms.tsx:1094 -#: src/forms/StockForms.tsx:1138 -#: src/pages/build/BuildDetail.tsx:200 -#: src/pages/part/PartDetail.tsx:1207 +#: src/forms/StockForms.tsx:891 +#: src/forms/StockForms.tsx:937 +#: src/forms/StockForms.tsx:975 +#: src/forms/StockForms.tsx:1018 +#: src/forms/StockForms.tsx:1062 +#: src/forms/StockForms.tsx:1110 +#: src/forms/StockForms.tsx:1154 +#: src/pages/build/BuildDetail.tsx:201 +#: src/pages/part/PartDetail.tsx:1228 #: src/tables/ColumnRenderers.tsx:91 +#: src/tables/part/PartTestResultTable.tsx:247 #: src/tables/part/RelatedPartTable.tsx:53 #: src/tables/stock/StockTrackingTable.tsx:87 msgid "Part" msgstr "" -#: lib/enums/ModelInformation.tsx:29 +#: lib/enums/ModelInformation.tsx:30 #: lib/enums/Roles.tsx:35 #: src/components/nav/NavigationDrawer.tsx:70 #: src/defaults/links.tsx:36 -#: src/pages/Index/Settings/SystemSettings.tsx:190 -#: src/pages/part/CategoryDetail.tsx:132 -#: src/pages/part/CategoryDetail.tsx:277 -#: src/pages/part/CategoryDetail.tsx:323 -#: src/pages/part/CategoryDetail.tsx:354 -#: src/pages/part/PartDetail.tsx:965 +#: src/pages/Index/Settings/SystemSettings.tsx:197 +#: src/pages/part/CategoryDetail.tsx:135 +#: src/pages/part/CategoryDetail.tsx:285 +#: src/pages/part/CategoryDetail.tsx:340 +#: src/pages/part/CategoryDetail.tsx:371 +#: src/pages/part/PartDetail.tsx:978 msgid "Parts" msgstr "" #: lib/enums/ModelInformation.tsx:37 #: src/pages/Index/Settings/AdminCenter/PartParameterPanel.tsx:13 -msgid "Part Parameter Template" -msgstr "" +#~ msgid "Part Parameter Template" +#~ msgstr "Part Parameter Template" #: lib/enums/ModelInformation.tsx:38 -msgid "Part Parameter Templates" +#~ msgid "Part Parameter Templates" +#~ msgstr "Part Parameter Templates" + +#: lib/enums/ModelInformation.tsx:39 +msgid "Parameter" +msgstr "" + +#: lib/enums/ModelInformation.tsx:40 +#: src/components/panels/ParametersPanel.tsx:19 +#: src/components/wizards/ImportPartWizard.tsx:807 +#: src/pages/Index/Settings/AdminCenter/Index.tsx:195 +#: src/pages/Index/Settings/SystemSettings.tsx:191 +#: src/pages/part/PartDetail.tsx:943 +msgid "Parameters" msgstr "" #: lib/enums/ModelInformation.tsx:45 -msgid "Part Test Template" +#: src/tables/part/PartCategoryTemplateTable.tsx:87 +msgid "Parameter Template" msgstr "" #: lib/enums/ModelInformation.tsx:46 -msgid "Part Test Templates" +#: src/pages/Index/Settings/AdminCenter/ParameterPanel.tsx:13 +msgid "Parameter Templates" msgstr "" #: lib/enums/ModelInformation.tsx:52 +msgid "Part Test Template" +msgstr "" + +#: lib/enums/ModelInformation.tsx:53 +msgid "Part Test Templates" +msgstr "" + +#: lib/enums/ModelInformation.tsx:59 #: src/components/wizards/OrderPartsWizard.tsx:290 -#: src/pages/company/SupplierPartDetail.tsx:413 +#: src/pages/company/SupplierPartDetail.tsx:418 #: src/pages/stock/StockDetail.tsx:289 -#: src/tables/build/BuildAllocatedStockTable.tsx:155 +#: src/tables/build/BuildAllocatedStockTable.tsx:152 #: src/tables/part/PartPurchaseOrdersTable.tsx:50 +#: src/tables/purchasing/SupplierPartParametricTable.tsx:29 #: src/tables/purchasing/SupplierPartTable.tsx:83 #: src/tables/stock/StockItemTable.tsx:247 msgid "Supplier Part" msgstr "" -#: lib/enums/ModelInformation.tsx:53 -#: src/pages/purchasing/PurchasingIndex.tsx:92 +#: lib/enums/ModelInformation.tsx:60 +#: src/pages/purchasing/PurchasingIndex.tsx:128 msgid "Supplier Parts" msgstr "" -#: lib/enums/ModelInformation.tsx:61 -#: src/pages/company/ManufacturerPartDetail.tsx:297 -#: src/pages/company/SupplierPartDetail.tsx:161 +#: lib/enums/ModelInformation.tsx:69 +#: src/pages/company/ManufacturerPartDetail.tsx:288 +#: src/pages/company/SupplierPartDetail.tsx:162 #: src/tables/part/PartPurchaseOrdersTable.tsx:56 #: src/tables/stock/StockItemTable.tsx:253 msgid "Manufacturer Part" msgstr "" -#: lib/enums/ModelInformation.tsx:62 -#: src/pages/purchasing/PurchasingIndex.tsx:109 +#: lib/enums/ModelInformation.tsx:70 +#: src/pages/purchasing/PurchasingIndex.tsx:177 msgid "Manufacturer Parts" msgstr "" -#: lib/enums/ModelInformation.tsx:70 -#: src/pages/part/CategoryDetail.tsx:354 +#: lib/enums/ModelInformation.tsx:79 +#: src/pages/part/CategoryDetail.tsx:371 #: src/tables/Filter.tsx:389 msgid "Part Category" msgstr "" -#: lib/enums/ModelInformation.tsx:71 +#: lib/enums/ModelInformation.tsx:80 #: lib/enums/Roles.tsx:37 -#: src/pages/part/CategoryDetail.tsx:271 -#: src/pages/part/CategoryDetail.tsx:345 -#: src/pages/part/PartDetail.tsx:1196 +#: src/pages/part/CategoryDetail.tsx:279 +#: src/pages/part/CategoryDetail.tsx:362 +#: src/pages/part/PartDetail.tsx:1217 msgid "Part Categories" msgstr "" -#: lib/enums/ModelInformation.tsx:79 +#: lib/enums/ModelInformation.tsx:88 #: src/forms/BuildForms.tsx:473 #: src/forms/BuildForms.tsx:633 #: src/forms/BuildForms.tsx:794 -#: src/forms/SalesOrderForms.tsx:307 +#: src/forms/SalesOrderForms.tsx:386 #: src/pages/stock/StockDetail.tsx:1005 -#: src/tables/part/PartTestResultTable.tsx:248 +#: src/tables/part/PartTestResultTable.tsx:256 #: src/tables/stock/StockTrackingTable.tsx:48 #: src/tables/stock/StockTrackingTable.tsx:55 msgid "Stock Item" msgstr "" -#: lib/enums/ModelInformation.tsx:80 +#: lib/enums/ModelInformation.tsx:89 #: lib/enums/Roles.tsx:45 -#: src/pages/company/CompanyDetail.tsx:210 -#: src/pages/part/CategoryDetail.tsx:291 +#: src/pages/company/CompanyDetail.tsx:211 +#: src/pages/part/CategoryDetail.tsx:314 #: src/pages/part/PartStockHistoryDetail.tsx:101 #: src/pages/stock/LocationDetail.tsx:121 #: src/pages/stock/LocationDetail.tsx:180 msgid "Stock Items" msgstr "" -#: lib/enums/ModelInformation.tsx:88 +#: lib/enums/ModelInformation.tsx:98 #: lib/enums/Roles.tsx:47 #: src/pages/stock/LocationDetail.tsx:420 msgid "Stock Location" msgstr "" -#: lib/enums/ModelInformation.tsx:89 +#: lib/enums/ModelInformation.tsx:99 #: src/pages/stock/LocationDetail.tsx:174 #: src/pages/stock/LocationDetail.tsx:412 #: src/pages/stock/StockDetail.tsx:996 msgid "Stock Locations" msgstr "" -#: lib/enums/ModelInformation.tsx:97 +#: lib/enums/ModelInformation.tsx:108 msgid "Stock Location Type" msgstr "" -#: lib/enums/ModelInformation.tsx:98 +#: lib/enums/ModelInformation.tsx:109 msgid "Stock Location Types" msgstr "" -#: lib/enums/ModelInformation.tsx:103 -#: src/pages/Index/Settings/SystemSettings.tsx:248 -#: src/pages/part/PartDetail.tsx:911 +#: lib/enums/ModelInformation.tsx:114 +#: src/pages/Index/Settings/SystemSettings.tsx:254 +#: src/pages/part/PartDetail.tsx:900 msgid "Stock History" msgstr "" -#: lib/enums/ModelInformation.tsx:104 +#: lib/enums/ModelInformation.tsx:115 msgid "Stock Histories" msgstr "" -#: lib/enums/ModelInformation.tsx:109 +#: lib/enums/ModelInformation.tsx:120 msgid "Build" msgstr "" -#: lib/enums/ModelInformation.tsx:110 +#: lib/enums/ModelInformation.tsx:121 msgid "Builds" msgstr "" -#: lib/enums/ModelInformation.tsx:118 +#: lib/enums/ModelInformation.tsx:130 msgid "Build Line" msgstr "" -#: lib/enums/ModelInformation.tsx:119 +#: lib/enums/ModelInformation.tsx:131 msgid "Build Lines" msgstr "" -#: lib/enums/ModelInformation.tsx:126 +#: lib/enums/ModelInformation.tsx:138 msgid "Build Item" msgstr "" -#: lib/enums/ModelInformation.tsx:127 +#: lib/enums/ModelInformation.tsx:139 msgid "Build Items" msgstr "" -#: lib/enums/ModelInformation.tsx:132 -#: src/pages/company/CompanyDetail.tsx:340 +#: lib/enums/ModelInformation.tsx:144 +#: src/pages/company/CompanyDetail.tsx:345 #: src/tables/company/CompanyTable.tsx:47 #: src/tables/company/ContactTable.tsx:67 +#: src/tables/company/ParametricCompanyTable.tsx:18 msgid "Company" msgstr "" -#: lib/enums/ModelInformation.tsx:133 +#: lib/enums/ModelInformation.tsx:145 msgid "Companies" msgstr "" -#: lib/enums/ModelInformation.tsx:140 -#: src/pages/build/BuildDetail.tsx:316 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:253 -#: src/pages/sales/ReturnOrderDetail.tsx:231 -#: src/pages/sales/SalesOrderDetail.tsx:224 +#: lib/enums/ModelInformation.tsx:152 +#: src/pages/build/BuildDetail.tsx:317 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:254 +#: src/pages/sales/ReturnOrderDetail.tsx:232 +#: src/pages/sales/SalesOrderDetail.tsx:225 #: src/tables/ColumnRenderers.tsx:362 #: src/tables/Filter.tsx:286 #: src/tables/TableHoverCard.tsx:101 msgid "Project Code" msgstr "" -#: lib/enums/ModelInformation.tsx:141 +#: lib/enums/ModelInformation.tsx:153 #: src/pages/Index/Settings/AdminCenter/Index.tsx:172 msgid "Project Codes" msgstr "" -#: lib/enums/ModelInformation.tsx:147 +#: lib/enums/ModelInformation.tsx:159 #: src/components/wizards/OrderPartsWizard.tsx:338 #: src/pages/part/pricing/PurchaseHistoryPanel.tsx:33 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:550 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:555 #: src/pages/stock/StockDetail.tsx:352 #: src/tables/part/PartPurchaseOrdersTable.tsx:32 #: src/tables/stock/StockItemTable.tsx:239 @@ -312,117 +338,117 @@ msgstr "" msgid "Purchase Order" msgstr "" -#: lib/enums/ModelInformation.tsx:148 +#: lib/enums/ModelInformation.tsx:160 #: lib/enums/Roles.tsx:39 #: src/defaults/actions.tsx:104 -#: src/pages/Index/Settings/SystemSettings.tsx:283 -#: src/pages/company/CompanyDetail.tsx:203 -#: src/pages/company/SupplierPartDetail.tsx:266 -#: src/pages/part/PartDetail.tsx:875 -#: src/pages/purchasing/PurchasingIndex.tsx:60 +#: src/pages/Index/Settings/SystemSettings.tsx:289 +#: src/pages/company/CompanyDetail.tsx:204 +#: src/pages/company/SupplierPartDetail.tsx:267 +#: src/pages/part/PartDetail.tsx:864 +#: src/pages/purchasing/PurchasingIndex.tsx:66 msgid "Purchase Orders" msgstr "" -#: lib/enums/ModelInformation.tsx:156 +#: lib/enums/ModelInformation.tsx:169 msgid "Purchase Order Line" msgstr "" -#: lib/enums/ModelInformation.tsx:157 +#: lib/enums/ModelInformation.tsx:170 msgid "Purchase Order Lines" msgstr "" -#: lib/enums/ModelInformation.tsx:162 -#: src/pages/build/BuildDetail.tsx:289 +#: lib/enums/ModelInformation.tsx:175 +#: src/pages/build/BuildDetail.tsx:290 #: src/pages/part/pricing/SaleHistoryPanel.tsx:24 -#: src/pages/sales/SalesOrderDetail.tsx:614 -#: src/pages/sales/SalesOrderShipmentDetail.tsx:105 -#: src/pages/sales/SalesOrderShipmentDetail.tsx:478 +#: src/pages/sales/SalesOrderDetail.tsx:619 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:103 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:446 #: src/pages/stock/StockDetail.tsx:361 #: src/tables/part/PartSalesAllocationsTable.tsx:41 #: src/tables/sales/SalesOrderAllocationTable.tsx:110 -#: src/tables/sales/SalesOrderShipmentTable.tsx:122 +#: src/tables/sales/SalesOrderShipmentTable.tsx:143 #: src/tables/stock/StockTrackingTable.tsx:131 msgid "Sales Order" msgstr "" -#: lib/enums/ModelInformation.tsx:163 +#: lib/enums/ModelInformation.tsx:176 #: lib/enums/Roles.tsx:43 #: src/defaults/actions.tsx:114 -#: src/pages/Index/Settings/SystemSettings.tsx:299 -#: src/pages/company/CompanyDetail.tsx:223 -#: src/pages/part/PartDetail.tsx:887 -#: src/pages/sales/SalesIndex.tsx:84 +#: src/pages/Index/Settings/SystemSettings.tsx:305 +#: src/pages/company/CompanyDetail.tsx:224 +#: src/pages/part/PartDetail.tsx:876 +#: src/pages/sales/SalesIndex.tsx:53 msgid "Sales Orders" msgstr "" -#: lib/enums/ModelInformation.tsx:171 -#: src/pages/sales/SalesOrderShipmentDetail.tsx:477 +#: lib/enums/ModelInformation.tsx:185 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:445 msgid "Sales Order Shipment" msgstr "" -#: lib/enums/ModelInformation.tsx:172 +#: lib/enums/ModelInformation.tsx:186 msgid "Sales Order Shipments" msgstr "" -#: lib/enums/ModelInformation.tsx:179 -#: src/pages/sales/ReturnOrderDetail.tsx:549 +#: lib/enums/ModelInformation.tsx:194 +#: src/pages/sales/ReturnOrderDetail.tsx:554 #: src/tables/stock/StockTrackingTable.tsx:142 msgid "Return Order" msgstr "" -#: lib/enums/ModelInformation.tsx:180 +#: lib/enums/ModelInformation.tsx:195 #: lib/enums/Roles.tsx:41 #: src/defaults/actions.tsx:125 -#: src/pages/Index/Settings/SystemSettings.tsx:316 -#: src/pages/company/CompanyDetail.tsx:230 -#: src/pages/part/PartDetail.tsx:894 -#: src/pages/sales/SalesIndex.tsx:117 +#: src/pages/Index/Settings/SystemSettings.tsx:322 +#: src/pages/company/CompanyDetail.tsx:231 +#: src/pages/part/PartDetail.tsx:883 +#: src/pages/sales/SalesIndex.tsx:99 msgid "Return Orders" msgstr "" -#: lib/enums/ModelInformation.tsx:188 +#: lib/enums/ModelInformation.tsx:204 msgid "Return Order Line Item" msgstr "" -#: lib/enums/ModelInformation.tsx:189 +#: lib/enums/ModelInformation.tsx:205 msgid "Return Order Line Items" msgstr "" -#: lib/enums/ModelInformation.tsx:194 +#: lib/enums/ModelInformation.tsx:210 #: src/tables/company/AddressTable.tsx:52 msgid "Address" msgstr "" -#: lib/enums/ModelInformation.tsx:195 -#: src/pages/company/CompanyDetail.tsx:264 +#: lib/enums/ModelInformation.tsx:211 +#: src/pages/company/CompanyDetail.tsx:265 msgid "Addresses" msgstr "" -#: lib/enums/ModelInformation.tsx:201 +#: lib/enums/ModelInformation.tsx:217 #: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:89 #: src/pages/core/UserDetail.tsx:135 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:229 -#: src/pages/sales/ReturnOrderDetail.tsx:207 -#: src/pages/sales/SalesOrderDetail.tsx:200 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:230 +#: src/pages/sales/ReturnOrderDetail.tsx:208 +#: src/pages/sales/SalesOrderDetail.tsx:201 msgid "Contact" msgstr "" -#: lib/enums/ModelInformation.tsx:202 -#: src/pages/company/CompanyDetail.tsx:258 +#: lib/enums/ModelInformation.tsx:218 +#: src/pages/company/CompanyDetail.tsx:259 #: src/pages/core/CoreIndex.tsx:33 msgid "Contacts" msgstr "" -#: lib/enums/ModelInformation.tsx:208 +#: lib/enums/ModelInformation.tsx:224 #: src/tables/ColumnRenderers.tsx:444 msgid "Owner" msgstr "" -#: lib/enums/ModelInformation.tsx:209 +#: lib/enums/ModelInformation.tsx:225 msgid "Owners" msgstr "" -#: lib/enums/ModelInformation.tsx:215 +#: lib/enums/ModelInformation.tsx:231 #: src/pages/Auth/ChangePassword.tsx:36 #: src/pages/core/UserDetail.tsx:220 #: src/tables/ColumnRenderers.tsx:395 @@ -437,7 +463,7 @@ msgstr "" msgid "User" msgstr "" -#: lib/enums/ModelInformation.tsx:216 +#: lib/enums/ModelInformation.tsx:232 #: src/components/nav/NavigationDrawer.tsx:105 #: src/pages/Index/Settings/AdminCenter/UserManagementPanel.tsx:15 #: src/pages/core/CoreIndex.tsx:21 @@ -445,12 +471,12 @@ msgstr "" msgid "Users" msgstr "" -#: lib/enums/ModelInformation.tsx:222 +#: lib/enums/ModelInformation.tsx:238 #: src/pages/core/GroupDetail.tsx:78 msgid "Group" msgstr "" -#: lib/enums/ModelInformation.tsx:223 +#: lib/enums/ModelInformation.tsx:239 #: src/components/nav/NavigationDrawer.tsx:111 #: src/pages/Index/Settings/AdminCenter/UserManagementPanel.tsx:23 #: src/pages/core/CoreIndex.tsx:27 @@ -460,64 +486,64 @@ msgstr "" msgid "Groups" msgstr "" -#: lib/enums/ModelInformation.tsx:230 +#: lib/enums/ModelInformation.tsx:246 msgid "Import Session" msgstr "" -#: lib/enums/ModelInformation.tsx:231 +#: lib/enums/ModelInformation.tsx:247 msgid "Import Sessions" msgstr "" -#: lib/enums/ModelInformation.tsx:238 +#: lib/enums/ModelInformation.tsx:254 msgid "Label Template" msgstr "" -#: lib/enums/ModelInformation.tsx:239 +#: lib/enums/ModelInformation.tsx:255 #: src/pages/Index/Settings/AdminCenter/Index.tsx:209 msgid "Label Templates" msgstr "" -#: lib/enums/ModelInformation.tsx:246 +#: lib/enums/ModelInformation.tsx:262 msgid "Report Template" msgstr "" -#: lib/enums/ModelInformation.tsx:247 +#: lib/enums/ModelInformation.tsx:263 #: src/pages/Index/Settings/AdminCenter/Index.tsx:215 msgid "Report Templates" msgstr "" -#: lib/enums/ModelInformation.tsx:254 +#: lib/enums/ModelInformation.tsx:270 #: src/components/plugins/PluginDrawer.tsx:145 msgid "Plugin Configuration" msgstr "" -#: lib/enums/ModelInformation.tsx:255 +#: lib/enums/ModelInformation.tsx:271 msgid "Plugin Configurations" msgstr "" -#: lib/enums/ModelInformation.tsx:262 +#: lib/enums/ModelInformation.tsx:278 msgid "Content Type" msgstr "" -#: lib/enums/ModelInformation.tsx:263 +#: lib/enums/ModelInformation.tsx:279 msgid "Content Types" msgstr "" -#: lib/enums/ModelInformation.tsx:268 +#: lib/enums/ModelInformation.tsx:284 msgid "Selection List" msgstr "" -#: lib/enums/ModelInformation.tsx:269 -#: src/pages/Index/Settings/AdminCenter/PartParameterPanel.tsx:21 +#: lib/enums/ModelInformation.tsx:285 +#: src/pages/Index/Settings/AdminCenter/ParameterPanel.tsx:21 msgid "Selection Lists" msgstr "" -#: lib/enums/ModelInformation.tsx:275 +#: lib/enums/ModelInformation.tsx:291 #: src/components/barcodes/BarcodeInput.tsx:114 #: src/components/dashboard/DashboardLayout.tsx:281 #: src/components/editors/NotesEditor.tsx:74 #: src/components/editors/TemplateEditor/TemplateEditor.tsx:158 -#: src/components/forms/fields/ApiFormField.tsx:273 +#: src/components/forms/fields/ApiFormField.tsx:237 #: src/components/forms/fields/TableField.tsx:45 #: src/components/importer/ImportDataSelector.tsx:192 #: src/components/importer/ImporterColumnSelector.tsx:234 @@ -528,7 +554,7 @@ msgstr "" #: src/components/nav/SearchDrawer.tsx:572 #: src/components/settings/SettingList.tsx:139 #: src/components/wizards/ImportPartWizard.tsx:574 -#: src/components/wizards/ImportPartWizard.tsx:718 +#: src/components/wizards/ImportPartWizard.tsx:719 #: src/forms/BomForms.tsx:69 #: src/functions/auth.tsx:643 #: src/pages/ErrorPage.tsx:11 @@ -547,9 +573,9 @@ msgstr "" msgid "Error" msgstr "" -#: lib/enums/ModelInformation.tsx:276 +#: lib/enums/ModelInformation.tsx:292 #: src/tables/machine/MachineListTable.tsx:402 -#: src/tables/machine/MachineTypeTable.tsx:299 +#: src/tables/machine/MachineTypeTable.tsx:297 msgid "Errors" msgstr "" @@ -559,10 +585,10 @@ msgstr "" #: lib/enums/Roles.tsx:33 #: src/defaults/actions.tsx:135 -#: src/pages/Index/Settings/SystemSettings.tsx:264 -#: src/pages/build/BuildIndex.tsx:75 -#: src/pages/part/PartDetail.tsx:904 -#: src/pages/sales/SalesOrderDetail.tsx:421 +#: src/pages/Index/Settings/SystemSettings.tsx:270 +#: src/pages/build/BuildIndex.tsx:67 +#: src/pages/part/PartDetail.tsx:893 +#: src/pages/sales/SalesOrderDetail.tsx:422 msgid "Build Orders" msgstr "" @@ -639,39 +665,39 @@ msgstr "" msgid "Enter barcode data" msgstr "" -#: src/components/barcodes/BarcodeScanDialog.tsx:49 -#: src/components/buttons/ScanButton.tsx:15 +#: src/components/barcodes/BarcodeScanDialog.tsx:56 +#: src/components/buttons/ScanButton.tsx:27 #: src/components/nav/NavigationDrawer.tsx:122 -#: src/forms/PurchaseOrderForms.tsx:457 -#: src/forms/PurchaseOrderForms.tsx:563 +#: src/forms/PurchaseOrderForms.tsx:509 +#: src/forms/PurchaseOrderForms.tsx:615 msgid "Scan Barcode" msgstr "" -#: src/components/barcodes/BarcodeScanDialog.tsx:105 +#: src/components/barcodes/BarcodeScanDialog.tsx:121 msgid "No matching item found" msgstr "" -#: src/components/barcodes/BarcodeScanDialog.tsx:134 +#: src/components/barcodes/BarcodeScanDialog.tsx:150 msgid "Barcode does not match the expected model type" msgstr "" -#: src/components/barcodes/BarcodeScanDialog.tsx:145 +#: src/components/barcodes/BarcodeScanDialog.tsx:161 #: src/components/editors/NotesEditor.tsx:84 #: src/components/editors/NotesEditor.tsx:118 -#: src/components/forms/ApiForm.tsx:465 +#: src/components/forms/ApiForm.tsx:484 #: src/components/wizards/ImportPartWizard.tsx:566 -#: src/components/wizards/ImportPartWizard.tsx:690 +#: src/components/wizards/ImportPartWizard.tsx:691 #: src/pages/Index/Settings/AdminCenter/CurrencyManagementPanel.tsx:45 #: src/tables/bom/BomTable.tsx:548 #: src/tables/settings/PendingTasksTable.tsx:68 msgid "Success" msgstr "" -#: src/components/barcodes/BarcodeScanDialog.tsx:151 +#: src/components/barcodes/BarcodeScanDialog.tsx:167 msgid "Failed to handle barcode" msgstr "" -#: src/components/barcodes/BarcodeScanDialog.tsx:167 +#: src/components/barcodes/BarcodeScanDialog.tsx:183 #: src/pages/Index/Scan.tsx:129 msgid "Failed to scan barcode" msgstr "" @@ -714,10 +740,10 @@ msgstr "" #: src/components/barcodes/QRCode.tsx:179 #: src/pages/part/PartDetail.tsx:521 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:222 -#: src/pages/sales/ReturnOrderDetail.tsx:188 -#: src/pages/sales/SalesOrderDetail.tsx:181 -#: src/pages/sales/SalesOrderShipmentDetail.tsx:122 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:223 +#: src/pages/sales/ReturnOrderDetail.tsx:189 +#: src/pages/sales/SalesOrderDetail.tsx:182 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:120 #: src/pages/stock/StockDetail.tsx:186 msgid "Link" msgstr "" @@ -728,7 +754,7 @@ msgstr "" #: src/components/barcodes/QRCode.tsx:205 #: src/components/items/ActionDropdown.tsx:192 -#: src/forms/PurchaseOrderForms.tsx:554 +#: src/forms/PurchaseOrderForms.tsx:606 msgid "Unlink Barcode" msgstr "" @@ -829,14 +855,14 @@ msgstr "" #~ msgid "Scan QR code" #~ msgstr "Scan QR code" -#: src/components/buttons/ScanButton.tsx:19 -msgid "Open Barcode Scanner" -msgstr "" - #: src/components/buttons/ScanButton.tsx:20 #~ msgid "Open QR code scanner" #~ msgstr "Open QR code scanner" +#: src/components/buttons/ScanButton.tsx:32 +msgid "Open Barcode Scanner" +msgstr "" + #: src/components/buttons/SpotlightButton.tsx:12 msgid "Open spotlight" msgstr "" @@ -1059,7 +1085,7 @@ msgid "Show the number of sales orders which are assigned to you" msgstr "" #: src/components/dashboard/DashboardWidgetLibrary.tsx:129 -#: src/pages/sales/SalesIndex.tsx:105 +#: src/pages/sales/SalesIndex.tsx:87 msgid "Pending Shipments" msgstr "" @@ -1210,12 +1236,18 @@ msgid "Remove the associated image from this item?" msgstr "" #: src/components/details/DetailsImage.tsx:83 -#: src/forms/StockForms.tsx:888 +#: src/forms/StockForms.tsx:895 #: src/pages/Index/Settings/AccountSettings/MFASettings.tsx:324 #: src/pages/Index/Settings/AccountSettings/MFASettings.tsx:415 #: src/pages/Index/Settings/AccountSettings/MFASettings.tsx:884 #: src/pages/Index/Settings/AccountSettings/MFASettings.tsx:903 #: src/pages/Index/Settings/AccountSettings/SecurityContent.tsx:254 +#: src/tables/build/BuildAllocatedStockTable.tsx:178 +#: src/tables/build/BuildAllocatedStockTable.tsx:258 +#: src/tables/build/BuildLineTable.tsx:111 +#: src/tables/build/BuildLineTable.tsx:665 +#: src/tables/sales/SalesOrderAllocationTable.tsx:224 +#: src/tables/sales/SalesOrderAllocationTable.tsx:247 msgid "Remove" msgstr "" @@ -1241,12 +1273,12 @@ msgid "Upload Error" msgstr "" #: src/components/details/DetailsImage.tsx:250 -#: src/components/forms/fields/TextField.tsx:65 +#: src/components/forms/fields/AutoFillRightSection.tsx:34 msgid "Clear" msgstr "" #: src/components/details/DetailsImage.tsx:256 -#: src/components/forms/ApiForm.tsx:677 +#: src/components/forms/ApiForm.tsx:696 #: src/contexts/ThemeContext.tsx:44 #: src/pages/Index/Settings/AccountSettings/MFASettings.tsx:149 #: src/pages/Index/Settings/AccountSettings/MFASettings.tsx:568 @@ -1499,8 +1531,8 @@ msgstr "" msgid "A server error occurred" msgstr "" -#: src/components/forms/ApiForm.tsx:103 -#: src/components/forms/ApiForm.tsx:594 +#: src/components/forms/ApiForm.tsx:107 +#: src/components/forms/ApiForm.tsx:613 msgid "Form Error" msgstr "" @@ -1508,11 +1540,11 @@ msgstr "" #~ msgid "Form Errors Exist" #~ msgstr "Form Errors Exist" -#: src/components/forms/ApiForm.tsx:604 +#: src/components/forms/ApiForm.tsx:623 msgid "Errors exist for one or more form fields" msgstr "" -#: src/components/forms/ApiForm.tsx:715 +#: src/components/forms/ApiForm.tsx:734 #: src/hooks/UseForm.tsx:133 #: src/tables/plugin/PluginListTable.tsx:204 msgid "Update" @@ -1582,7 +1614,7 @@ msgstr "" #: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:64 #: src/pages/core/UserDetail.tsx:48 msgid "Username" -msgstr "" +msgstr "Nume utilizator" #: src/components/forms/AuthenticationForm.tsx:136 #~ msgid "I will use username and password" @@ -1591,7 +1623,7 @@ msgstr "" #: src/components/forms/AuthenticationForm.tsx:138 #: src/components/forms/AuthenticationForm.tsx:298 msgid "Your username" -msgstr "" +msgstr "Introdu numele de utilizator" #: src/components/forms/AuthenticationForm.tsx:143 #: src/components/forms/AuthenticationForm.tsx:311 @@ -1627,7 +1659,7 @@ msgstr "" #: src/components/forms/AuthenticationForm.tsx:192 msgid "Use username and password" -msgstr "" +msgstr "Utilizați numele de utilizator și parola" #: src/components/forms/AuthenticationForm.tsx:201 msgid "Log In" @@ -1698,15 +1730,14 @@ msgstr "" #: src/components/forms/InstanceOptions.tsx:124 #: src/components/plugins/PluginDrawer.tsx:68 #: src/pages/Index/Settings/AdminCenter/UnitManagementPanel.tsx:19 -#: src/pages/part/CategoryDetail.tsx:88 +#: src/pages/part/CategoryDetail.tsx:91 #: src/pages/part/PartDetail.tsx:446 #: src/pages/stock/LocationDetail.tsx:82 #: src/tables/machine/MachineTypeTable.tsx:67 -#: src/tables/machine/MachineTypeTable.tsx:151 -#: src/tables/machine/MachineTypeTable.tsx:254 -#: src/tables/machine/MachineTypeTable.tsx:357 +#: src/tables/machine/MachineTypeTable.tsx:149 +#: src/tables/machine/MachineTypeTable.tsx:252 +#: src/tables/machine/MachineTypeTable.tsx:355 #: src/tables/plugin/PluginErrorTable.tsx:33 -#: src/tables/purchasing/ManufacturerPartParameterTable.tsx:36 #: src/tables/settings/ApiTokenTable.tsx:57 #: src/tables/settings/GroupTable.tsx:95 #: src/tables/settings/GroupTable.tsx:148 @@ -1769,7 +1800,7 @@ msgstr "" #~ msgstr "State: <0>worker ({0}), <1>plugins{1}" #: src/components/forms/InstanceOptions.tsx:118 -#: src/pages/Index/Settings/SystemSettings.tsx:45 +#: src/pages/Index/Settings/SystemSettings.tsx:46 msgid "Server" msgstr "" @@ -1793,6 +1824,8 @@ msgid "Plugins" msgstr "" #: src/components/forms/InstanceOptions.tsx:143 +#: src/tables/general/ParameterTemplateTable.tsx:153 +#: src/tables/general/ParameterTemplateTable.tsx:188 #: src/tables/part/PartTestTemplateTable.tsx:117 #: src/tables/settings/TemplateTable.tsx:251 #: src/tables/settings/TemplateTable.tsx:362 @@ -1817,10 +1850,14 @@ msgstr "" msgid "Running" msgstr "" -#: src/components/forms/fields/ApiFormField.tsx:233 +#: src/components/forms/fields/ApiFormField.tsx:197 msgid "Select file to upload" msgstr "" +#: src/components/forms/fields/AutoFillRightSection.tsx:47 +msgid "Accept suggested value" +msgstr "" + #: src/components/forms/fields/DateField.tsx:76 msgid "Select date" msgstr "" @@ -1853,13 +1890,13 @@ msgstr "" msgid "{0} icons" msgstr "" -#: src/components/forms/fields/RelatedModelField.tsx:409 +#: src/components/forms/fields/RelatedModelField.tsx:480 #: src/components/modals/AboutInvenTreeModal.tsx:96 #: src/pages/Index/Settings/AccountSettings/SecurityContent.tsx:383 msgid "Loading" msgstr "" -#: src/components/forms/fields/RelatedModelField.tsx:411 +#: src/components/forms/fields/RelatedModelField.tsx:482 msgid "No results found" msgstr "" @@ -1875,10 +1912,6 @@ msgstr "" msgid "Add new row" msgstr "" -#: src/components/forms/fields/TextField.tsx:82 -msgid "Accept suggested value" -msgstr "" - #: src/components/images/DetailsImage.tsx:252 #~ msgid "Select image" #~ msgstr "Select image" @@ -2036,7 +2069,7 @@ msgstr "" #: src/components/importer/ImporterDrawer.tsx:109 #: src/components/modals/AboutInvenTreeModal.tsx:205 #: src/components/modals/ServerInfoModal.tsx:134 -#: src/components/wizards/ImportPartWizard.tsx:772 +#: src/components/wizards/ImportPartWizard.tsx:773 #: src/forms/BomForms.tsx:132 #: src/pages/Index/Settings/AccountSettings/MFASettings.tsx:685 msgid "Close" @@ -2199,7 +2232,7 @@ msgid "Change" msgstr "" #: src/components/items/RoleTable.tsx:150 -#: src/forms/StockForms.tsx:927 +#: src/forms/StockForms.tsx:941 #: src/tables/stock/StockItemTestResultTable.tsx:367 msgid "Add" msgstr "" @@ -2222,11 +2255,11 @@ msgstr "" #: src/components/items/TransferList.tsx:161 #: src/components/render/Stock.tsx:102 -#: src/pages/part/PartDetail.tsx:994 +#: src/pages/part/PartDetail.tsx:1009 #: src/pages/stock/StockDetail.tsx:265 #: src/pages/stock/StockDetail.tsx:942 -#: src/tables/build/BuildAllocatedStockTable.tsx:135 -#: src/tables/build/BuildLineTable.tsx:192 +#: src/tables/build/BuildAllocatedStockTable.tsx:132 +#: src/tables/build/BuildLineTable.tsx:193 #: src/tables/part/PartTable.tsx:137 #: src/tables/stock/StockItemTable.tsx:182 #: src/tables/stock/StockItemTable.tsx:343 @@ -2373,7 +2406,7 @@ msgid "Database" msgstr "" #: src/components/modals/ServerInfoModal.tsx:49 -#: src/components/nav/Alerts.tsx:118 +#: src/components/nav/Alerts.tsx:120 msgid "Debug Mode" msgstr "" @@ -2414,7 +2447,7 @@ msgid "Issues detected" msgstr "" #: src/components/modals/ServerInfoModal.tsx:102 -#: src/components/nav/Alerts.tsx:125 +#: src/components/nav/Alerts.tsx:127 msgid "Background Worker" msgstr "" @@ -2436,7 +2469,7 @@ msgstr "" #~ msgstr "Email settings not configured" #: src/components/modals/ServerInfoModal.tsx:120 -#: src/components/nav/Alerts.tsx:141 +#: src/components/nav/Alerts.tsx:143 msgid "Email settings not configured." msgstr "" @@ -2444,43 +2477,47 @@ msgstr "" msgid "Alerts" msgstr "" -#: src/components/nav/Alerts.tsx:120 +#: src/components/nav/Alerts.tsx:97 +msgid "No issues detected" +msgstr "" + +#: src/components/nav/Alerts.tsx:122 msgid "The server is running in debug mode." msgstr "" -#: src/components/nav/Alerts.tsx:127 +#: src/components/nav/Alerts.tsx:129 msgid "The background worker process is not running." msgstr "" -#: src/components/nav/Alerts.tsx:132 +#: src/components/nav/Alerts.tsx:134 msgid "Server Restart" msgstr "" -#: src/components/nav/Alerts.tsx:134 +#: src/components/nav/Alerts.tsx:136 msgid "The server requires a restart to apply changes." msgstr "" -#: src/components/nav/Alerts.tsx:139 +#: src/components/nav/Alerts.tsx:141 msgid "Email settings" msgstr "" -#: src/components/nav/Alerts.tsx:146 +#: src/components/nav/Alerts.tsx:148 msgid "Database Migrations" msgstr "" -#: src/components/nav/Alerts.tsx:148 +#: src/components/nav/Alerts.tsx:150 msgid "There are pending database migrations." msgstr "" -#: src/components/nav/Alerts.tsx:163 +#: src/components/nav/Alerts.tsx:165 msgid "Learn more about {code}" msgstr "" #: src/components/nav/Header.tsx:188 #: src/components/nav/NavigationDrawer.tsx:134 #: src/components/nav/NotificationDrawer.tsx:181 -#: src/pages/Index/Settings/SystemSettings.tsx:121 -#: src/pages/Index/Settings/UserSettings.tsx:106 +#: src/pages/Index/Settings/SystemSettings.tsx:122 +#: src/pages/Index/Settings/UserSettings.tsx:107 #: src/pages/Notifications.tsx:45 #: src/pages/Notifications.tsx:130 msgid "Notifications" @@ -2511,8 +2548,8 @@ msgstr "" #: src/components/nav/NavigationDrawer.tsx:140 #: src/components/nav/SettingsHeader.tsx:40 #: src/defaults/actions.tsx:92 -#: src/pages/Index/Settings/UserSettings.tsx:141 -#: src/pages/Index/Settings/UserSettings.tsx:145 +#: src/pages/Index/Settings/UserSettings.tsx:142 +#: src/pages/Index/Settings/UserSettings.tsx:146 msgid "User Settings" msgstr "" @@ -2529,8 +2566,8 @@ msgstr "" #: src/components/nav/NavigationDrawer.tsx:146 #: src/components/nav/SettingsHeader.tsx:41 #: src/defaults/actions.tsx:144 -#: src/pages/Index/Settings/SystemSettings.tsx:348 -#: src/pages/Index/Settings/SystemSettings.tsx:353 +#: src/pages/Index/Settings/SystemSettings.tsx:354 +#: src/pages/Index/Settings/SystemSettings.tsx:359 msgid "System Settings" msgstr "" @@ -2577,11 +2614,11 @@ msgstr "" #: src/components/nav/NavigationDrawer.tsx:77 #: src/components/render/Part.tsx:36 -#: src/components/wizards/ImportPartWizard.tsx:807 +#: src/components/wizards/ImportPartWizard.tsx:808 #: src/defaults/links.tsx:42 #: src/forms/StockForms.tsx:794 -#: src/pages/Index/Settings/SystemSettings.tsx:224 -#: src/pages/part/PartDetail.tsx:804 +#: src/pages/Index/Settings/SystemSettings.tsx:230 +#: src/pages/part/PartDetail.tsx:793 #: src/pages/stock/LocationDetail.tsx:390 #: src/pages/stock/LocationDetail.tsx:420 #: src/pages/stock/StockDetail.tsx:642 @@ -2591,29 +2628,29 @@ msgstr "" #: src/components/nav/NavigationDrawer.tsx:84 #: src/defaults/links.tsx:48 -#: src/pages/build/BuildDetail.tsx:748 -#: src/pages/build/BuildIndex.tsx:102 +#: src/pages/build/BuildDetail.tsx:753 +#: src/pages/build/BuildIndex.tsx:101 msgid "Manufacturing" msgstr "" #: src/components/nav/NavigationDrawer.tsx:91 #: src/defaults/links.tsx:54 #: src/pages/company/ManufacturerDetail.tsx:9 -#: src/pages/company/ManufacturerPartDetail.tsx:276 +#: src/pages/company/ManufacturerPartDetail.tsx:267 #: src/pages/company/SupplierDetail.tsx:9 -#: src/pages/company/SupplierPartDetail.tsx:360 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:553 -#: src/pages/purchasing/PurchasingIndex.tsx:122 +#: src/pages/company/SupplierPartDetail.tsx:365 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:558 +#: src/pages/purchasing/PurchasingIndex.tsx:212 msgid "Purchasing" msgstr "" #: src/components/nav/NavigationDrawer.tsx:98 #: src/defaults/links.tsx:60 #: src/pages/company/CustomerDetail.tsx:9 -#: src/pages/sales/ReturnOrderDetail.tsx:554 -#: src/pages/sales/SalesIndex.tsx:153 -#: src/pages/sales/SalesOrderDetail.tsx:619 -#: src/pages/sales/SalesOrderShipmentDetail.tsx:480 +#: src/pages/sales/ReturnOrderDetail.tsx:559 +#: src/pages/sales/SalesIndex.tsx:168 +#: src/pages/sales/SalesOrderDetail.tsx:624 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:448 msgid "Sales" msgstr "" @@ -2667,21 +2704,21 @@ msgid "Remove search group" msgstr "" #: src/components/nav/SearchDrawer.tsx:288 -#: src/pages/company/ManufacturerPartDetail.tsx:192 -#: src/pages/part/PartDetail.tsx:862 +#: src/pages/company/ManufacturerPartDetail.tsx:179 +#: src/pages/part/PartDetail.tsx:851 #: src/pages/part/PartSupplierDetail.tsx:15 -#: src/pages/purchasing/PurchasingIndex.tsx:81 +#: src/pages/purchasing/PurchasingIndex.tsx:100 msgid "Suppliers" msgstr "" #: src/components/nav/SearchDrawer.tsx:298 #: src/pages/part/PartSupplierDetail.tsx:23 -#: src/pages/purchasing/PurchasingIndex.tsx:98 +#: src/pages/purchasing/PurchasingIndex.tsx:149 msgid "Manufacturers" msgstr "" #: src/components/nav/SearchDrawer.tsx:308 -#: src/pages/sales/SalesIndex.tsx:138 +#: src/pages/sales/SalesIndex.tsx:133 msgid "Customers" msgstr "" @@ -2772,21 +2809,21 @@ msgstr "" #: src/components/plugins/PluginDrawer.tsx:73 #: src/forms/selectionListFields.tsx:102 -#: src/pages/build/BuildDetail.tsx:250 -#: src/pages/company/CompanyDetail.tsx:93 -#: src/pages/company/ManufacturerPartDetail.tsx:93 -#: src/pages/company/ManufacturerPartDetail.tsx:120 -#: src/pages/company/SupplierPartDetail.tsx:145 -#: src/pages/part/CategoryDetail.tsx:108 +#: src/pages/build/BuildDetail.tsx:251 +#: src/pages/company/CompanyDetail.tsx:94 +#: src/pages/company/ManufacturerPartDetail.tsx:92 +#: src/pages/company/ManufacturerPartDetail.tsx:119 +#: src/pages/company/SupplierPartDetail.tsx:146 +#: src/pages/part/CategoryDetail.tsx:111 #: src/pages/part/PartDetail.tsx:460 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:162 -#: src/pages/sales/ReturnOrderDetail.tsx:129 -#: src/pages/sales/SalesOrderDetail.tsx:119 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:163 +#: src/pages/sales/ReturnOrderDetail.tsx:130 +#: src/pages/sales/SalesOrderDetail.tsx:120 #: src/pages/stock/LocationDetail.tsx:102 #: src/tables/ColumnRenderers.tsx:278 -#: src/tables/build/BuildAllocatedStockTable.tsx:91 -#: src/tables/machine/MachineTypeTable.tsx:161 -#: src/tables/machine/MachineTypeTable.tsx:257 +#: src/tables/build/BuildAllocatedStockTable.tsx:88 +#: src/tables/machine/MachineTypeTable.tsx:159 +#: src/tables/machine/MachineTypeTable.tsx:255 #: src/tables/plugin/PluginListTable.tsx:110 msgid "Description" msgstr "" @@ -2814,7 +2851,7 @@ msgstr "" #: src/tables/company/CompanyTable.tsx:91 #: src/tables/machine/MachineListTable.tsx:384 #: src/tables/machine/MachineListTable.tsx:799 -#: src/tables/part/ParametricPartTable.tsx:354 +#: src/tables/part/ParametricPartTable.tsx:19 #: src/tables/part/PartTable.tsx:197 #: src/tables/part/PartVariantTable.tsx:15 #: src/tables/plugin/PluginListTable.tsx:96 @@ -2836,8 +2873,8 @@ msgid "Installation Path" msgstr "" #: src/components/plugins/PluginDrawer.tsx:116 -#: src/tables/machine/MachineTypeTable.tsx:184 -#: src/tables/machine/MachineTypeTable.tsx:293 +#: src/tables/machine/MachineTypeTable.tsx:182 +#: src/tables/machine/MachineTypeTable.tsx:291 #: src/tables/plugin/PluginListTable.tsx:101 #: src/tables/plugin/PluginListTable.tsx:417 msgid "Builtin" @@ -2849,8 +2886,8 @@ msgstr "" #: src/components/plugins/PluginDrawer.tsx:133 #: src/pages/Index/Settings/AdminCenter/PluginManagementPanel.tsx:55 -#: src/pages/Index/Settings/SystemSettings.tsx:331 -#: src/pages/Index/Settings/UserSettings.tsx:128 +#: src/pages/Index/Settings/SystemSettings.tsx:337 +#: src/pages/Index/Settings/UserSettings.tsx:129 msgid "Plugin Settings" msgstr "" @@ -2911,7 +2948,7 @@ msgstr "" #~ msgid "Unknown model: {model}" #~ msgstr "Unknown model: {model}" -#: src/components/render/Instance.tsx:249 +#: src/components/render/Instance.tsx:247 msgid "Unknown model: {model_name}" msgstr "" @@ -2939,10 +2976,10 @@ msgstr "" #: src/components/render/Part.tsx:28 #: src/components/render/Plugin.tsx:17 #: src/components/render/User.tsx:37 -#: src/pages/company/CompanyDetail.tsx:323 -#: src/pages/company/SupplierPartDetail.tsx:373 +#: src/pages/company/CompanyDetail.tsx:328 +#: src/pages/company/SupplierPartDetail.tsx:378 #: src/pages/core/UserDetail.tsx:211 -#: src/pages/part/PartDetail.tsx:1027 +#: src/pages/part/PartDetail.tsx:1048 #: src/tables/ColumnRenderers.tsx:410 msgid "Inactive" msgstr "" @@ -2962,11 +2999,11 @@ msgstr "" #: src/components/render/Part.tsx:47 #: src/components/wizards/OrderPartsWizard.tsx:135 -#: src/pages/company/SupplierPartDetail.tsx:197 -#: src/pages/company/SupplierPartDetail.tsx:394 -#: src/pages/part/PartDetail.tsx:1015 +#: src/pages/company/SupplierPartDetail.tsx:198 +#: src/pages/company/SupplierPartDetail.tsx:399 +#: src/pages/part/PartDetail.tsx:1030 #: src/tables/bom/BomTable.tsx:444 -#: src/tables/build/BuildLineTable.tsx:222 +#: src/tables/build/BuildLineTable.tsx:223 #: src/tables/part/PartTable.tsx:108 msgid "On Order" msgstr "" @@ -2974,9 +3011,9 @@ msgstr "" #: src/components/render/Part.tsx:55 #: src/components/wizards/OrderPartsWizard.tsx:141 #: src/pages/part/PartDetail.tsx:587 -#: src/pages/part/PartDetail.tsx:1021 +#: src/pages/part/PartDetail.tsx:1036 #: src/pages/stock/StockDetail.tsx:925 -#: src/tables/part/PartTestResultTable.tsx:297 +#: src/tables/part/PartTestResultTable.tsx:305 #: src/tables/stock/StockItemTable.tsx:359 msgid "In Production" msgstr "" @@ -2987,7 +3024,7 @@ msgid "Details" msgstr "" #: src/components/render/Part.tsx:112 -#: src/components/wizards/ImportPartWizard.tsx:806 +#: src/components/wizards/ImportPartWizard.tsx:807 #: src/pages/part/PartDetail.tsx:487 #: src/tables/ColumnRenderers.tsx:233 #: src/tables/ColumnRenderers.tsx:242 @@ -3000,16 +3037,16 @@ msgstr "" #: src/components/render/Stock.tsx:114 #: src/components/render/Stock.tsx:132 #: src/forms/BuildForms.tsx:795 -#: src/forms/PurchaseOrderForms.tsx:595 +#: src/forms/PurchaseOrderForms.tsx:647 #: src/forms/StockForms.tsx:792 #: src/forms/StockForms.tsx:839 -#: src/forms/StockForms.tsx:885 -#: src/forms/StockForms.tsx:924 -#: src/forms/StockForms.tsx:960 -#: src/forms/StockForms.tsx:1003 -#: src/forms/StockForms.tsx:1047 -#: src/forms/StockForms.tsx:1095 -#: src/forms/StockForms.tsx:1139 +#: src/forms/StockForms.tsx:892 +#: src/forms/StockForms.tsx:938 +#: src/forms/StockForms.tsx:976 +#: src/forms/StockForms.tsx:1019 +#: src/forms/StockForms.tsx:1063 +#: src/forms/StockForms.tsx:1111 +#: src/forms/StockForms.tsx:1155 #: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:88 #: src/pages/core/UserDetail.tsx:158 #: src/pages/stock/StockDetail.tsx:298 @@ -3023,7 +3060,7 @@ msgstr "" #: src/components/render/Stock.tsx:99 #: src/pages/stock/StockDetail.tsx:198 #: src/pages/stock/StockDetail.tsx:930 -#: src/tables/build/BuildAllocatedStockTable.tsx:121 +#: src/tables/build/BuildAllocatedStockTable.tsx:118 #: src/tables/build/BuildOutputTable.tsx:107 #: src/tables/sales/SalesOrderAllocationTable.tsx:142 msgid "Serial Number" @@ -3034,9 +3071,9 @@ msgstr "" #: src/forms/BuildForms.tsx:240 #: src/forms/BuildForms.tsx:634 #: src/forms/BuildForms.tsx:797 -#: src/forms/PurchaseOrderForms.tsx:801 +#: src/forms/PurchaseOrderForms.tsx:853 #: src/forms/ReturnOrderForms.tsx:243 -#: src/forms/SalesOrderForms.tsx:308 +#: src/forms/SalesOrderForms.tsx:387 #: src/forms/StockForms.tsx:841 #: src/pages/part/PartStockHistoryDetail.tsx:56 #: src/pages/part/PartStockHistoryDetail.tsx:210 @@ -3046,9 +3083,9 @@ msgstr "" #: src/pages/part/pricing/PriceBreakPanel.tsx:172 #: src/pages/stock/StockDetail.tsx:258 #: src/pages/stock/StockDetail.tsx:936 -#: src/tables/build/BuildLineTable.tsx:86 +#: src/tables/build/BuildLineTable.tsx:83 #: src/tables/part/PartPurchaseOrdersTable.tsx:94 -#: src/tables/part/PartTestResultTable.tsx:269 +#: src/tables/part/PartTestResultTable.tsx:277 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:175 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:206 #: src/tables/purchasing/SupplierPriceBreakTable.tsx:69 @@ -3063,14 +3100,14 @@ msgstr "" #: src/forms/BuildForms.tsx:474 #: src/forms/StockForms.tsx:793 #: src/forms/StockForms.tsx:840 -#: src/forms/StockForms.tsx:886 -#: src/forms/StockForms.tsx:925 -#: src/forms/StockForms.tsx:961 -#: src/forms/StockForms.tsx:1004 -#: src/forms/StockForms.tsx:1048 -#: src/forms/StockForms.tsx:1096 -#: src/forms/StockForms.tsx:1140 -#: src/tables/build/BuildLineTable.tsx:96 +#: src/forms/StockForms.tsx:893 +#: src/forms/StockForms.tsx:939 +#: src/forms/StockForms.tsx:977 +#: src/forms/StockForms.tsx:1020 +#: src/forms/StockForms.tsx:1064 +#: src/forms/StockForms.tsx:1112 +#: src/forms/StockForms.tsx:1156 +#: src/tables/build/BuildLineTable.tsx:93 msgid "Batch" msgstr "" @@ -3306,10 +3343,6 @@ msgstr "" #~ msgid "Part category updated" #~ msgstr "Part category updated" -#: src/components/tables/part/PartParameterTable.tsx:41 -#~ msgid "Parameter" -#~ msgstr "Parameter" - #: src/components/tables/part/PartParameterTable.tsx:114 #~ msgid "Part parameter updated" #~ msgstr "Part parameter updated" @@ -3571,15 +3604,16 @@ msgid "Already Imported" msgstr "" #: src/components/wizards/ImportPartWizard.tsx:205 -#: src/pages/company/CompanyDetail.tsx:136 +#: src/pages/company/CompanyDetail.tsx:137 #: src/pages/company/SupplierDetail.tsx:8 -#: src/pages/company/SupplierPartDetail.tsx:130 -#: src/pages/company/SupplierPartDetail.tsx:235 -#: src/pages/company/SupplierPartDetail.tsx:364 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:156 +#: src/pages/company/SupplierPartDetail.tsx:131 +#: src/pages/company/SupplierPartDetail.tsx:236 +#: src/pages/company/SupplierPartDetail.tsx:369 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:157 #: src/tables/Filter.tsx:360 #: src/tables/company/CompanyTable.tsx:96 #: src/tables/part/PartPurchaseOrdersTable.tsx:43 +#: src/tables/purchasing/PurchaseOrderParametricTable.tsx:34 #: src/tables/purchasing/PurchaseOrderTable.tsx:109 #: src/tables/purchasing/SupplierPriceBreakTable.tsx:40 msgid "Supplier" @@ -3648,7 +3682,7 @@ msgid "Next" msgstr "" #: src/components/wizards/ImportPartWizard.tsx:540 -#: src/pages/part/PartDetail.tsx:1046 +#: src/pages/part/PartDetail.tsx:1067 #: src/tables/part/PartTable.tsx:408 msgid "Edit Part" msgstr "" @@ -3669,28 +3703,28 @@ msgstr "" msgid "Import" msgstr "" -#: src/components/wizards/ImportPartWizard.tsx:691 +#: src/components/wizards/ImportPartWizard.tsx:692 msgid "Parameters created successfully!" msgstr "" -#: src/components/wizards/ImportPartWizard.tsx:719 +#: src/components/wizards/ImportPartWizard.tsx:720 msgid "Failed to create parameters, please fix the errors and try again" msgstr "" #. placeholder {0}: supplierPart?.supplier -#: src/components/wizards/ImportPartWizard.tsx:739 +#: src/components/wizards/ImportPartWizard.tsx:740 msgid "Part imported successfully from supplier {0}." msgstr "" -#: src/components/wizards/ImportPartWizard.tsx:752 +#: src/components/wizards/ImportPartWizard.tsx:753 msgid "Open Part" msgstr "" -#: src/components/wizards/ImportPartWizard.tsx:759 +#: src/components/wizards/ImportPartWizard.tsx:760 msgid "Open Supplier Part" msgstr "" -#: src/components/wizards/ImportPartWizard.tsx:766 +#: src/components/wizards/ImportPartWizard.tsx:767 msgid "Open Manufacturer Part" msgstr "" @@ -3699,25 +3733,19 @@ msgstr "" #~ msgid "Import Part" #~ msgstr "Import Part" -#: src/components/wizards/ImportPartWizard.tsx:802 +#: src/components/wizards/ImportPartWizard.tsx:803 msgid "Import Supplier Part" msgstr "" -#: src/components/wizards/ImportPartWizard.tsx:804 +#: src/components/wizards/ImportPartWizard.tsx:805 msgid "Search Supplier Part" msgstr "" -#: src/components/wizards/ImportPartWizard.tsx:806 -#: src/pages/company/ManufacturerPartDetail.tsx:166 -#: src/pages/part/PartDetail.tsx:793 -msgid "Parameters" -msgstr "" - -#: src/components/wizards/ImportPartWizard.tsx:806 +#: src/components/wizards/ImportPartWizard.tsx:807 msgid "Confirm import" msgstr "" -#: src/components/wizards/ImportPartWizard.tsx:808 +#: src/components/wizards/ImportPartWizard.tsx:809 msgid "Done" msgstr "" @@ -3738,24 +3766,24 @@ msgid "Sales Requirements" msgstr "" #: src/components/wizards/OrderPartsWizard.tsx:129 -#: src/forms/StockForms.tsx:887 -#: src/forms/StockForms.tsx:926 -#: src/forms/StockForms.tsx:962 -#: src/forms/StockForms.tsx:1005 -#: src/forms/StockForms.tsx:1049 -#: src/forms/StockForms.tsx:1097 -#: src/forms/StockForms.tsx:1141 -#: src/pages/company/SupplierPartDetail.tsx:190 -#: src/pages/company/SupplierPartDetail.tsx:378 +#: src/forms/StockForms.tsx:894 +#: src/forms/StockForms.tsx:940 +#: src/forms/StockForms.tsx:978 +#: src/forms/StockForms.tsx:1021 +#: src/forms/StockForms.tsx:1065 +#: src/forms/StockForms.tsx:1113 +#: src/forms/StockForms.tsx:1157 +#: src/pages/company/SupplierPartDetail.tsx:191 +#: src/pages/company/SupplierPartDetail.tsx:383 #: src/pages/part/PartDetail.tsx:534 -#: src/pages/part/PartDetail.tsx:984 +#: src/pages/part/PartDetail.tsx:999 #: src/tables/Filter.tsx:92 #: src/tables/purchasing/SupplierPartTable.tsx:230 msgid "In Stock" msgstr "" #: src/components/wizards/OrderPartsWizard.tsx:146 -#: src/tables/build/BuildLineTable.tsx:404 +#: src/tables/build/BuildLineTable.tsx:405 msgid "Required Quantity" msgstr "" @@ -3847,7 +3875,7 @@ msgid "Please correct the errors in the selected parts" msgstr "" #: src/components/wizards/OrderPartsWizard.tsx:587 -#: src/tables/build/BuildLineTable.tsx:815 +#: src/tables/build/BuildLineTable.tsx:822 #: src/tables/part/PartTable.tsx:522 #: src/tables/sales/SalesOrderLineItemTable.tsx:370 msgid "Order Parts" @@ -4349,9 +4377,9 @@ msgstr "" #: src/forms/BuildForms.tsx:333 #: src/forms/BuildForms.tsx:408 #: src/forms/BuildForms.tsx:685 -#: src/tables/build/BuildAllocatedStockTable.tsx:150 +#: src/tables/build/BuildAllocatedStockTable.tsx:147 #: src/tables/build/BuildOutputTable.tsx:582 -#: src/tables/part/PartTestResultTable.tsx:272 +#: src/tables/part/PartTestResultTable.tsx:280 msgid "Build Output" msgstr "" @@ -4362,22 +4390,22 @@ msgstr "" #: src/forms/BuildForms.tsx:336 #: src/forms/BuildForms.tsx:411 #: src/forms/BuildForms.tsx:475 -#: src/forms/PurchaseOrderForms.tsx:717 +#: src/forms/PurchaseOrderForms.tsx:769 #: src/forms/ReturnOrderForms.tsx:197 #: src/forms/ReturnOrderForms.tsx:244 #: src/forms/StockForms.tsx:712 #: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:87 -#: src/pages/build/BuildDetail.tsx:222 +#: src/pages/build/BuildDetail.tsx:223 #: src/pages/core/UserDetail.tsx:151 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:168 -#: src/pages/sales/ReturnOrderDetail.tsx:135 -#: src/pages/sales/SalesOrderDetail.tsx:125 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:169 +#: src/pages/sales/ReturnOrderDetail.tsx:136 +#: src/pages/sales/SalesOrderDetail.tsx:126 #: src/pages/stock/StockDetail.tsx:170 #: src/tables/Filter.tsx:274 #: src/tables/build/BuildOutputTable.tsx:404 #: src/tables/machine/MachineListTable.tsx:387 #: src/tables/part/PartPurchaseOrdersTable.tsx:38 -#: src/tables/part/PartTestResultTable.tsx:309 +#: src/tables/part/PartTestResultTable.tsx:317 #: src/tables/sales/ReturnOrderLineItemTable.tsx:138 #: src/tables/sales/ReturnOrderLineItemTable.tsx:176 #: src/tables/settings/CustomStateTable.tsx:79 @@ -4443,18 +4471,19 @@ msgid "Build outputs have been cancelled" msgstr "" #: src/forms/BuildForms.tsx:631 -#: src/pages/build/BuildDetail.tsx:207 -#: src/pages/company/ManufacturerPartDetail.tsx:85 -#: src/pages/company/SupplierPartDetail.tsx:96 +#: src/pages/build/BuildDetail.tsx:208 +#: src/pages/company/ManufacturerPartDetail.tsx:84 +#: src/pages/company/SupplierPartDetail.tsx:97 #: src/pages/part/PartDetail.tsx:453 #: src/pages/stock/StockDetail.tsx:153 #: src/tables/bom/BomTable.tsx:134 #: src/tables/bom/UsedInTable.tsx:40 -#: src/tables/build/BuildAllocatedStockTable.tsx:108 -#: src/tables/build/BuildLineTable.tsx:336 +#: src/tables/build/BuildAllocatedStockTable.tsx:105 +#: src/tables/build/BuildLineTable.tsx:337 #: src/tables/build/BuildOrderTable.tsx:79 #: src/tables/part/PartSalesAllocationsTable.tsx:61 #: src/tables/part/RelatedPartTable.tsx:73 +#: src/tables/purchasing/ManufacturerPartParametricTable.tsx:21 #: src/tables/purchasing/ManufacturerPartTable.tsx:69 #: src/tables/purchasing/SupplierPartTable.tsx:70 #: src/tables/sales/SalesOrderAllocationTable.tsx:135 @@ -4466,47 +4495,47 @@ msgstr "" #: src/forms/BuildForms.tsx:632 #: src/forms/BuildForms.tsx:796 #: src/forms/BuildForms.tsx:897 -#: src/forms/SalesOrderForms.tsx:306 -#: src/tables/build/BuildAllocatedStockTable.tsx:139 -#: src/tables/build/BuildLineTable.tsx:182 +#: src/forms/SalesOrderForms.tsx:385 +#: src/tables/build/BuildAllocatedStockTable.tsx:136 +#: src/tables/build/BuildLineTable.tsx:183 #: src/tables/sales/SalesOrderLineItemTable.tsx:342 #: src/tables/stock/StockItemTable.tsx:338 msgid "Allocated" msgstr "" #: src/forms/BuildForms.tsx:667 -#: src/forms/SalesOrderForms.tsx:295 -#: src/pages/build/BuildDetail.tsx:108 -#: src/pages/build/BuildDetail.tsx:326 +#: src/forms/SalesOrderForms.tsx:374 +#: src/pages/build/BuildDetail.tsx:109 +#: src/pages/build/BuildDetail.tsx:327 msgid "Source Location" msgstr "" #: src/forms/BuildForms.tsx:668 -#: src/forms/SalesOrderForms.tsx:296 +#: src/forms/SalesOrderForms.tsx:375 msgid "Select the source location for the stock allocation" msgstr "" #: src/forms/BuildForms.tsx:700 -#: src/forms/SalesOrderForms.tsx:336 -#: src/tables/build/BuildLineTable.tsx:574 -#: src/tables/build/BuildLineTable.tsx:731 -#: src/tables/build/BuildLineTable.tsx:830 +#: src/forms/SalesOrderForms.tsx:415 +#: src/tables/build/BuildLineTable.tsx:575 +#: src/tables/build/BuildLineTable.tsx:738 +#: src/tables/build/BuildLineTable.tsx:837 #: src/tables/sales/SalesOrderLineItemTable.tsx:380 #: src/tables/sales/SalesOrderLineItemTable.tsx:406 msgid "Allocate Stock" msgstr "" #: src/forms/BuildForms.tsx:703 -#: src/forms/SalesOrderForms.tsx:341 +#: src/forms/SalesOrderForms.tsx:420 msgid "Stock items allocated" msgstr "" #: src/forms/BuildForms.tsx:816 #: src/forms/BuildForms.tsx:917 -#: src/tables/build/BuildAllocatedStockTable.tsx:240 -#: src/tables/build/BuildAllocatedStockTable.tsx:272 -#: src/tables/build/BuildLineTable.tsx:741 -#: src/tables/build/BuildLineTable.tsx:864 +#: src/tables/build/BuildAllocatedStockTable.tsx:243 +#: src/tables/build/BuildAllocatedStockTable.tsx:279 +#: src/tables/build/BuildLineTable.tsx:748 +#: src/tables/build/BuildLineTable.tsx:871 msgid "Consume Stock" msgstr "" @@ -4521,21 +4550,21 @@ msgstr "" #~ msgstr "Stock items consumed" #: src/forms/BuildForms.tsx:853 -#: src/tables/build/BuildLineTable.tsx:514 +#: src/tables/build/BuildLineTable.tsx:515 #: src/tables/part/PartBuildAllocationsTable.tsx:101 msgid "Fully consumed" msgstr "" #: src/forms/BuildForms.tsx:898 -#: src/tables/build/BuildLineTable.tsx:187 +#: src/tables/build/BuildLineTable.tsx:188 #: src/tables/stock/StockItemTable.tsx:367 msgid "Consumed" msgstr "" -#: src/forms/CommonForms.tsx:88 -#: src/forms/PurchaseOrderForms.tsx:125 +#: src/forms/CommonForms.tsx:92 +#: src/forms/PurchaseOrderForms.tsx:176 #: src/forms/ReturnOrderForms.tsx:138 -#: src/forms/SalesOrderForms.tsx:164 +#: src/forms/SalesOrderForms.tsx:185 msgid "Select project code for this line item" msgstr "" @@ -4543,16 +4572,16 @@ msgstr "" #~ msgid "Company updated" #~ msgstr "Company updated" -#: src/forms/PartForms.tsx:85 -#: src/forms/PartForms.tsx:207 -#: src/pages/part/CategoryDetail.tsx:124 +#: src/forms/PartForms.tsx:99 +#: src/forms/PartForms.tsx:228 +#: src/pages/part/CategoryDetail.tsx:127 #: src/pages/part/PartDetail.tsx:668 #: src/tables/part/PartCategoryTable.tsx:94 #: src/tables/part/PartTable.tsx:325 msgid "Subscribed" msgstr "" -#: src/forms/PartForms.tsx:86 +#: src/forms/PartForms.tsx:100 msgid "Subscribe to notifications for this part" msgstr "" @@ -4564,40 +4593,24 @@ msgstr "" #~ msgid "Part updated" #~ msgstr "Part updated" -#: src/forms/PartForms.tsx:193 +#: src/forms/PartForms.tsx:214 msgid "Parent part category" msgstr "" -#: src/forms/PartForms.tsx:208 +#: src/forms/PartForms.tsx:229 msgid "Subscribe to notifications for this category" msgstr "" -#: src/forms/PurchaseOrderForms.tsx:388 -msgid "Assign Batch Code and Serial Numbers" -msgstr "" - -#: src/forms/PurchaseOrderForms.tsx:390 -msgid "Assign Batch Code" -msgstr "" - -#: src/forms/PurchaseOrderForms.tsx:410 -msgid "Choose Location" -msgstr "" - -#: src/forms/PurchaseOrderForms.tsx:418 -msgid "Item Destination selected" -msgstr "" - #: src/forms/PurchaseOrderForms.tsx:421 #~ msgid "Assign Batch Code{0}" #~ msgstr "Assign Batch Code{0}" -#: src/forms/PurchaseOrderForms.tsx:428 -msgid "Part category default location selected" +#: src/forms/PurchaseOrderForms.tsx:440 +msgid "Assign Batch Code and Serial Numbers" msgstr "" -#: src/forms/PurchaseOrderForms.tsx:438 -msgid "Received stock location selected" +#: src/forms/PurchaseOrderForms.tsx:442 +msgid "Assign Batch Code" msgstr "" #: src/forms/PurchaseOrderForms.tsx:444 @@ -4605,115 +4618,131 @@ msgstr "" #~ msgid "Remove item from list" #~ msgstr "Remove item from list" -#: src/forms/PurchaseOrderForms.tsx:446 +#: src/forms/PurchaseOrderForms.tsx:462 +msgid "Choose Location" +msgstr "" + +#: src/forms/PurchaseOrderForms.tsx:470 +msgid "Item Destination selected" +msgstr "" + +#: src/forms/PurchaseOrderForms.tsx:480 +msgid "Part category default location selected" +msgstr "" + +#: src/forms/PurchaseOrderForms.tsx:490 +msgid "Received stock location selected" +msgstr "" + +#: src/forms/PurchaseOrderForms.tsx:498 msgid "Default location selected" msgstr "" -#: src/forms/PurchaseOrderForms.tsx:507 +#: src/forms/PurchaseOrderForms.tsx:559 msgid "Set Location" msgstr "" -#: src/forms/PurchaseOrderForms.tsx:524 -msgid "Set Expiry Date" -msgstr "" - -#: src/forms/PurchaseOrderForms.tsx:532 -#: src/forms/StockForms.tsx:693 -msgid "Adjust Packaging" -msgstr "" - -#: src/forms/PurchaseOrderForms.tsx:540 -#: src/forms/StockForms.tsx:684 -#: src/hooks/UseStockAdjustActions.tsx:148 -msgid "Change Status" -msgstr "" - -#: src/forms/PurchaseOrderForms.tsx:546 -msgid "Add Note" -msgstr "" - #: src/forms/PurchaseOrderForms.tsx:566 #~ msgid "Serial numbers" #~ msgstr "Serial numbers" +#: src/forms/PurchaseOrderForms.tsx:576 +msgid "Set Expiry Date" +msgstr "" + #: src/forms/PurchaseOrderForms.tsx:582 #~ msgid "Store at line item destination" #~ msgstr "Store at line item destination" -#: src/forms/PurchaseOrderForms.tsx:610 -msgid "Store at default location" +#: src/forms/PurchaseOrderForms.tsx:584 +#: src/forms/StockForms.tsx:693 +msgid "Adjust Packaging" msgstr "" -#: src/forms/PurchaseOrderForms.tsx:625 -msgid "Store at line item destination " +#: src/forms/PurchaseOrderForms.tsx:592 +#: src/forms/StockForms.tsx:684 +#: src/hooks/UseStockAdjustActions.tsx:148 +msgid "Change Status" msgstr "" -#: src/forms/PurchaseOrderForms.tsx:637 -msgid "Store with already received stock" +#: src/forms/PurchaseOrderForms.tsx:598 +msgid "Add Note" msgstr "" #: src/forms/PurchaseOrderForms.tsx:658 #~ msgid "Receive line items" #~ msgstr "Receive line items" -#: src/forms/PurchaseOrderForms.tsx:661 -#: src/pages/build/BuildDetail.tsx:340 +#: src/forms/PurchaseOrderForms.tsx:662 +msgid "Store at default location" +msgstr "" + +#: src/forms/PurchaseOrderForms.tsx:677 +msgid "Store at line item destination " +msgstr "" + +#: src/forms/PurchaseOrderForms.tsx:689 +msgid "Store with already received stock" +msgstr "" + +#: src/forms/PurchaseOrderForms.tsx:713 +#: src/pages/build/BuildDetail.tsx:341 #: src/pages/stock/StockDetail.tsx:280 #: src/pages/stock/StockDetail.tsx:952 #: src/tables/Filter.tsx:83 -#: src/tables/build/BuildAllocatedStockTable.tsx:128 +#: src/tables/build/BuildAllocatedStockTable.tsx:125 #: src/tables/build/BuildOutputTable.tsx:112 -#: src/tables/part/PartTestResultTable.tsx:260 -#: src/tables/part/PartTestResultTable.tsx:281 +#: src/tables/part/PartTestResultTable.tsx:268 +#: src/tables/part/PartTestResultTable.tsx:289 #: src/tables/sales/SalesOrderAllocationTable.tsx:149 msgid "Batch Code" msgstr "" -#: src/forms/PurchaseOrderForms.tsx:662 +#: src/forms/PurchaseOrderForms.tsx:714 msgid "Enter batch code for received items" msgstr "" -#: src/forms/PurchaseOrderForms.tsx:675 +#: src/forms/PurchaseOrderForms.tsx:727 #: src/forms/StockForms.tsx:218 msgid "Serial Numbers" msgstr "" -#: src/forms/PurchaseOrderForms.tsx:676 +#: src/forms/PurchaseOrderForms.tsx:728 msgid "Enter serial numbers for received items" msgstr "" -#: src/forms/PurchaseOrderForms.tsx:690 +#: src/forms/PurchaseOrderForms.tsx:742 #: src/pages/stock/StockDetail.tsx:382 #: src/tables/stock/StockItemTable.tsx:294 msgid "Expiry Date" msgstr "" -#: src/forms/PurchaseOrderForms.tsx:691 +#: src/forms/PurchaseOrderForms.tsx:743 msgid "Enter an expiry date for received items" msgstr "" -#: src/forms/PurchaseOrderForms.tsx:703 +#: src/forms/PurchaseOrderForms.tsx:755 #: src/forms/StockForms.tsx:728 -#: src/pages/company/SupplierPartDetail.tsx:172 -#: src/pages/company/SupplierPartDetail.tsx:236 +#: src/pages/company/SupplierPartDetail.tsx:173 +#: src/pages/company/SupplierPartDetail.tsx:237 #: src/pages/stock/StockDetail.tsx:419 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:227 msgid "Packaging" msgstr "" -#: src/forms/PurchaseOrderForms.tsx:727 -#: src/pages/company/SupplierPartDetail.tsx:120 +#: src/forms/PurchaseOrderForms.tsx:779 +#: src/pages/company/SupplierPartDetail.tsx:121 #: src/tables/ColumnRenderers.tsx:332 msgid "Note" msgstr "" -#: src/forms/PurchaseOrderForms.tsx:799 -#: src/pages/company/SupplierPartDetail.tsx:138 +#: src/forms/PurchaseOrderForms.tsx:851 +#: src/pages/company/SupplierPartDetail.tsx:139 #: src/tables/purchasing/SupplierPriceBreakTable.tsx:49 msgid "SKU" msgstr "" -#: src/forms/PurchaseOrderForms.tsx:800 +#: src/forms/PurchaseOrderForms.tsx:852 #: src/tables/part/PartPurchaseOrdersTable.tsx:127 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:213 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:283 @@ -4721,11 +4750,11 @@ msgstr "" msgid "Received" msgstr "" -#: src/forms/PurchaseOrderForms.tsx:817 +#: src/forms/PurchaseOrderForms.tsx:869 msgid "Receive Line Items" msgstr "" -#: src/forms/PurchaseOrderForms.tsx:823 +#: src/forms/PurchaseOrderForms.tsx:875 msgid "Items received" msgstr "" @@ -4737,7 +4766,35 @@ msgstr "" msgid "Item received into stock" msgstr "" -#: src/forms/SalesOrderForms.tsx:401 +#: src/forms/SalesOrderForms.tsx:208 +#: src/forms/SalesOrderForms.tsx:210 +#: src/tables/sales/SalesOrderShipmentTable.tsx:215 +msgid "Check Shipment" +msgstr "" + +#: src/forms/SalesOrderForms.tsx:211 +msgid "Marking the shipment as checked indicates that you have verified that all items included in this shipment are correct" +msgstr "" + +#: src/forms/SalesOrderForms.tsx:221 +msgid "Shipment marked as checked" +msgstr "" + +#: src/forms/SalesOrderForms.tsx:236 +#: src/forms/SalesOrderForms.tsx:238 +#: src/tables/sales/SalesOrderShipmentTable.tsx:228 +msgid "Uncheck Shipment" +msgstr "" + +#: src/forms/SalesOrderForms.tsx:239 +msgid "Marking the shipment as unchecked indicates that the shipment requires further verification" +msgstr "" + +#: src/forms/SalesOrderForms.tsx:249 +msgid "Shipment marked as unchecked" +msgstr "" + +#: src/forms/SalesOrderForms.tsx:480 msgid "Leave blank to use the order address" msgstr "" @@ -4792,150 +4849,150 @@ msgstr "" msgid "Return" msgstr "" -#: src/forms/StockForms.tsx:963 +#: src/forms/StockForms.tsx:979 #: src/pages/Index/Scan.tsx:182 msgid "Count" msgstr "" -#: src/forms/StockForms.tsx:1246 +#: src/forms/StockForms.tsx:1262 #: src/hooks/UseStockAdjustActions.tsx:108 msgid "Add Stock" msgstr "" -#: src/forms/StockForms.tsx:1247 +#: src/forms/StockForms.tsx:1263 msgid "Stock added" msgstr "" -#: src/forms/StockForms.tsx:1250 +#: src/forms/StockForms.tsx:1266 msgid "Increase the quantity of the selected stock items by a given amount." msgstr "" -#: src/forms/StockForms.tsx:1261 +#: src/forms/StockForms.tsx:1277 #: src/hooks/UseStockAdjustActions.tsx:118 msgid "Remove Stock" msgstr "" -#: src/forms/StockForms.tsx:1262 +#: src/forms/StockForms.tsx:1278 msgid "Stock removed" msgstr "" -#: src/forms/StockForms.tsx:1265 +#: src/forms/StockForms.tsx:1281 msgid "Decrease the quantity of the selected stock items by a given amount." msgstr "" -#: src/forms/StockForms.tsx:1276 +#: src/forms/StockForms.tsx:1292 #: src/hooks/UseStockAdjustActions.tsx:128 msgid "Transfer Stock" msgstr "" -#: src/forms/StockForms.tsx:1277 +#: src/forms/StockForms.tsx:1293 msgid "Stock transferred" msgstr "" -#: src/forms/StockForms.tsx:1280 +#: src/forms/StockForms.tsx:1296 msgid "Transfer selected items to the specified location." msgstr "" -#: src/forms/StockForms.tsx:1291 +#: src/forms/StockForms.tsx:1307 #: src/hooks/UseStockAdjustActions.tsx:168 msgid "Return Stock" msgstr "" -#: src/forms/StockForms.tsx:1292 +#: src/forms/StockForms.tsx:1308 msgid "Stock returned" msgstr "" -#: src/forms/StockForms.tsx:1295 +#: src/forms/StockForms.tsx:1311 msgid "Return selected items into stock, to the specified location." msgstr "" -#: src/forms/StockForms.tsx:1306 +#: src/forms/StockForms.tsx:1322 #: src/hooks/UseStockAdjustActions.tsx:98 msgid "Count Stock" msgstr "" -#: src/forms/StockForms.tsx:1307 +#: src/forms/StockForms.tsx:1323 msgid "Stock counted" msgstr "" -#: src/forms/StockForms.tsx:1310 +#: src/forms/StockForms.tsx:1326 msgid "Count the selected stock items, and adjust the quantity accordingly." msgstr "" -#: src/forms/StockForms.tsx:1321 +#: src/forms/StockForms.tsx:1337 msgid "Change Stock Status" msgstr "" -#: src/forms/StockForms.tsx:1322 +#: src/forms/StockForms.tsx:1338 msgid "Stock status changed" msgstr "" -#: src/forms/StockForms.tsx:1325 +#: src/forms/StockForms.tsx:1341 msgid "Change the status of the selected stock items." msgstr "" -#: src/forms/StockForms.tsx:1336 +#: src/forms/StockForms.tsx:1352 #: src/hooks/UseStockAdjustActions.tsx:138 msgid "Merge Stock" msgstr "" -#: src/forms/StockForms.tsx:1337 +#: src/forms/StockForms.tsx:1353 msgid "Stock merged" msgstr "" -#: src/forms/StockForms.tsx:1339 +#: src/forms/StockForms.tsx:1355 msgid "Merge Stock Items" msgstr "" -#: src/forms/StockForms.tsx:1341 +#: src/forms/StockForms.tsx:1357 msgid "Merge operation cannot be reversed" msgstr "" -#: src/forms/StockForms.tsx:1342 +#: src/forms/StockForms.tsx:1358 msgid "Tracking information may be lost when merging items" msgstr "" -#: src/forms/StockForms.tsx:1343 +#: src/forms/StockForms.tsx:1359 msgid "Supplier information may be lost when merging items" msgstr "" -#: src/forms/StockForms.tsx:1361 +#: src/forms/StockForms.tsx:1377 msgid "Assign Stock to Customer" msgstr "" -#: src/forms/StockForms.tsx:1362 +#: src/forms/StockForms.tsx:1378 msgid "Stock assigned to customer" msgstr "" -#: src/forms/StockForms.tsx:1372 +#: src/forms/StockForms.tsx:1388 msgid "Delete Stock Items" msgstr "" -#: src/forms/StockForms.tsx:1373 +#: src/forms/StockForms.tsx:1389 msgid "Stock deleted" msgstr "" -#: src/forms/StockForms.tsx:1376 +#: src/forms/StockForms.tsx:1392 msgid "This operation will permanently delete the selected stock items." msgstr "" -#: src/forms/StockForms.tsx:1385 +#: src/forms/StockForms.tsx:1401 msgid "Parent stock location" msgstr "" -#: src/forms/StockForms.tsx:1512 +#: src/forms/StockForms.tsx:1528 msgid "Find Serial Number" msgstr "" -#: src/forms/StockForms.tsx:1523 +#: src/forms/StockForms.tsx:1539 msgid "No matching items" msgstr "" -#: src/forms/StockForms.tsx:1529 +#: src/forms/StockForms.tsx:1545 msgid "Multiple matching items" msgstr "" -#: src/forms/StockForms.tsx:1538 +#: src/forms/StockForms.tsx:1554 msgid "Invalid response from server" msgstr "" @@ -4953,7 +5010,6 @@ msgstr "" #: src/tables/FilterSelectDrawer.tsx:137 #: src/tables/FilterSelectDrawer.tsx:149 #: src/tables/part/PartTestResultTable.tsx:206 -#: src/tables/purchasing/ManufacturerPartParameterTable.tsx:42 #: src/tables/stock/StockItemTestResultTable.tsx:207 msgid "Value" msgstr "" @@ -5244,7 +5300,7 @@ msgid "Delete selected stock items" msgstr "" #: src/hooks/UseStockAdjustActions.tsx:205 -#: src/pages/part/PartDetail.tsx:1137 +#: src/pages/part/PartDetail.tsx:1158 msgid "Stock Actions" msgstr "" @@ -5799,7 +5855,7 @@ msgstr "" #: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:65 #: src/pages/core/UserDetail.tsx:55 msgid "First Name" -msgstr "" +msgstr "Prenume" #: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:66 #: src/pages/core/UserDetail.tsx:63 @@ -5932,6 +5988,9 @@ msgstr "" #: src/pages/Index/Settings/AccountSettings/MFASettings.tsx:310 #: src/pages/Index/Settings/AccountSettings/MFASettings.tsx:401 +#: src/tables/build/BuildAllocatedStockTable.tsx:181 +#: src/tables/build/BuildLineTable.tsx:668 +#: src/tables/sales/SalesOrderAllocationTable.tsx:220 msgid "Confirm Removal" msgstr "" @@ -6394,30 +6453,34 @@ msgid "Email Messages" msgstr "" #: src/pages/Index/Settings/AdminCenter/HomePanel.tsx:22 -msgid "Active Alerts" -msgstr "" +#~ msgid "Active Alerts" +#~ msgstr "Active Alerts" #: src/pages/Index/Settings/AdminCenter/HomePanel.tsx:27 -msgid "Inactive Alerts" +#~ msgid "Inactive Alerts" +#~ msgstr "Inactive Alerts" + +#: src/pages/Index/Settings/AdminCenter/HomePanel.tsx:36 +msgid "System Status" msgstr "" -#: src/pages/Index/Settings/AdminCenter/HomePanel.tsx:38 +#: src/pages/Index/Settings/AdminCenter/HomePanel.tsx:47 msgid "Admin Center Information" msgstr "" -#: src/pages/Index/Settings/AdminCenter/HomePanel.tsx:44 +#: src/pages/Index/Settings/AdminCenter/HomePanel.tsx:53 msgid "The home panel (and the whole Admin Center) is a new feature starting with the new UI and was previously (before 1.0) not available." msgstr "" -#: src/pages/Index/Settings/AdminCenter/HomePanel.tsx:51 +#: src/pages/Index/Settings/AdminCenter/HomePanel.tsx:60 msgid "The admin center provides a centralized location for all administration functionality and is meant to replace all interaction with the (django) backend admin interface." msgstr "" -#: src/pages/Index/Settings/AdminCenter/HomePanel.tsx:58 +#: src/pages/Index/Settings/AdminCenter/HomePanel.tsx:67 msgid "Please open feature requests (after checking the tracker) for any existing backend admin functionality you are missing in this UI. The backend admin interface should be used carefully and seldom." msgstr "" -#: src/pages/Index/Settings/AdminCenter/HomePanel.tsx:76 +#: src/pages/Index/Settings/AdminCenter/HomePanel.tsx:85 msgid "Quick Actions" msgstr "" @@ -6476,11 +6539,11 @@ msgstr "" #: src/pages/Index/Settings/AdminCenter/Index.tsx:195 #: src/pages/part/CategoryDetail.tsx:313 -msgid "Part Parameters" -msgstr "" +#~ msgid "Part Parameters" +#~ msgstr "Part Parameters" #: src/pages/Index/Settings/AdminCenter/Index.tsx:202 -#: src/pages/part/CategoryDetail.tsx:306 +#: src/pages/part/CategoryDetail.tsx:329 msgid "Category Parameters" msgstr "" @@ -6494,7 +6557,7 @@ msgstr "" #: src/pages/Index/Settings/AdminCenter/Index.tsx:235 #: src/pages/Index/Settings/AdminCenter/MachineManagementPanel.tsx:52 -#: src/tables/machine/MachineTypeTable.tsx:325 +#: src/tables/machine/MachineTypeTable.tsx:323 msgid "Machines" msgstr "" @@ -6507,8 +6570,8 @@ msgid "Data Management" msgstr "" #: src/pages/Index/Settings/AdminCenter/Index.tsx:270 -#: src/pages/Index/Settings/SystemSettings.tsx:175 -#: src/pages/Index/Settings/UserSettings.tsx:118 +#: src/pages/Index/Settings/SystemSettings.tsx:176 +#: src/pages/Index/Settings/UserSettings.tsx:119 msgid "Reporting" msgstr "" @@ -6709,11 +6772,11 @@ msgstr "" msgid "The settings below are specific to each available plugin" msgstr "" -#: src/pages/Index/Settings/SystemSettings.tsx:77 +#: src/pages/Index/Settings/SystemSettings.tsx:78 msgid "Authentication" msgstr "" -#: src/pages/Index/Settings/SystemSettings.tsx:103 +#: src/pages/Index/Settings/SystemSettings.tsx:104 msgid "Barcodes" msgstr "" @@ -6725,12 +6788,12 @@ msgstr "" #~ msgid "This panel is a placeholder." #~ msgstr "This panel is a placeholder." -#: src/pages/Index/Settings/SystemSettings.tsx:127 -#: src/pages/Index/Settings/UserSettings.tsx:112 +#: src/pages/Index/Settings/SystemSettings.tsx:128 +#: src/pages/Index/Settings/UserSettings.tsx:113 msgid "The settings below are specific to each available notification method" msgstr "" -#: src/pages/Index/Settings/SystemSettings.tsx:133 +#: src/pages/Index/Settings/SystemSettings.tsx:134 msgid "Pricing" msgstr "" @@ -6738,7 +6801,7 @@ msgstr "" #~ msgid "Exchange Rates" #~ msgstr "Exchange Rates" -#: src/pages/Index/Settings/SystemSettings.tsx:169 +#: src/pages/Index/Settings/SystemSettings.tsx:170 msgid "Labels" msgstr "" @@ -6790,15 +6853,15 @@ msgstr "" #~ msgid "Delete notifications" #~ msgstr "Delete notifications" -#: src/pages/build/BuildDetail.tsx:69 +#: src/pages/build/BuildDetail.tsx:70 msgid "No Required Items" msgstr "" -#: src/pages/build/BuildDetail.tsx:71 +#: src/pages/build/BuildDetail.tsx:72 msgid "This build order does not have any required items." msgstr "" -#: src/pages/build/BuildDetail.tsx:72 +#: src/pages/build/BuildDetail.tsx:73 msgid "The assembled part may not have a Bill of Materials (BOM) defined, or the BOM is empty." msgstr "" @@ -6826,7 +6889,7 @@ msgstr "" #~ msgid "Build Order updated" #~ msgstr "Build Order updated" -#: src/pages/build/BuildDetail.tsx:215 +#: src/pages/build/BuildDetail.tsx:216 #: src/pages/part/PartDetail.tsx:480 #: src/pages/stock/StockDetail.tsx:161 #: src/tables/bom/UsedInTable.tsx:44 @@ -6843,10 +6906,10 @@ msgstr "" #~ msgid "Duplicate build order" #~ msgstr "Duplicate build order" -#: src/pages/build/BuildDetail.tsx:228 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:174 -#: src/pages/sales/ReturnOrderDetail.tsx:141 -#: src/pages/sales/SalesOrderDetail.tsx:131 +#: src/pages/build/BuildDetail.tsx:229 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:175 +#: src/pages/sales/ReturnOrderDetail.tsx:142 +#: src/pages/sales/SalesOrderDetail.tsx:132 #: src/pages/stock/StockDetail.tsx:176 msgid "Custom Status" msgstr "" @@ -6855,9 +6918,9 @@ msgstr "" #~ msgid "Delete build order" #~ msgstr "Delete build order" -#: src/pages/build/BuildDetail.tsx:237 -#: src/pages/build/BuildDetail.tsx:723 -#: src/pages/build/BuildIndex.tsx:28 +#: src/pages/build/BuildDetail.tsx:238 +#: src/pages/build/BuildDetail.tsx:728 +#: src/pages/build/BuildIndex.tsx:34 #: src/pages/stock/LocationDetail.tsx:140 #: src/tables/build/BuildOrderTable.tsx:123 #: src/tables/build/BuildOrderTable.tsx:183 @@ -6865,57 +6928,57 @@ msgstr "" msgid "External" msgstr "" -#: src/pages/build/BuildDetail.tsx:244 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:141 -#: src/pages/sales/ReturnOrderDetail.tsx:108 -#: src/pages/sales/SalesOrderDetail.tsx:98 +#: src/pages/build/BuildDetail.tsx:245 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:142 +#: src/pages/sales/ReturnOrderDetail.tsx:109 +#: src/pages/sales/SalesOrderDetail.tsx:99 #: src/tables/ColumnRenderers.tsx:321 -#: src/tables/build/BuildAllocatedStockTable.tsx:115 -#: src/tables/build/BuildLineTable.tsx:352 +#: src/tables/build/BuildAllocatedStockTable.tsx:112 +#: src/tables/build/BuildLineTable.tsx:353 msgid "Reference" msgstr "" -#: src/pages/build/BuildDetail.tsx:258 +#: src/pages/build/BuildDetail.tsx:259 msgid "Parent Build" msgstr "" -#: src/pages/build/BuildDetail.tsx:269 +#: src/pages/build/BuildDetail.tsx:270 msgid "Build Quantity" msgstr "" -#: src/pages/build/BuildDetail.tsx:275 +#: src/pages/build/BuildDetail.tsx:276 #: src/pages/part/PartDetail.tsx:598 #: src/tables/bom/BomTable.tsx:365 #: src/tables/bom/BomTable.tsx:407 msgid "Can Build" msgstr "" -#: src/pages/build/BuildDetail.tsx:284 -#: src/pages/build/BuildDetail.tsx:474 +#: src/pages/build/BuildDetail.tsx:285 +#: src/pages/build/BuildDetail.tsx:475 msgid "Completed Outputs" msgstr "" -#: src/pages/build/BuildDetail.tsx:301 +#: src/pages/build/BuildDetail.tsx:302 #: src/tables/Filter.tsx:381 #: src/tables/build/BuildOrderTable.tsx:143 msgid "Issued By" msgstr "" -#: src/pages/build/BuildDetail.tsx:309 +#: src/pages/build/BuildDetail.tsx:310 #: src/pages/part/PartDetail.tsx:691 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:261 -#: src/pages/sales/ReturnOrderDetail.tsx:239 -#: src/pages/sales/SalesOrderDetail.tsx:232 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:262 +#: src/pages/sales/ReturnOrderDetail.tsx:240 +#: src/pages/sales/SalesOrderDetail.tsx:233 #: src/tables/ColumnRenderers.tsx:464 #: src/tables/Filter.tsx:319 msgid "Responsible" msgstr "" -#: src/pages/build/BuildDetail.tsx:327 +#: src/pages/build/BuildDetail.tsx:328 msgid "Any location" msgstr "" -#: src/pages/build/BuildDetail.tsx:334 +#: src/pages/build/BuildDetail.tsx:335 msgid "Destination Location" msgstr "" @@ -6924,24 +6987,24 @@ msgstr "" #~ msgid "Test Statistics" #~ msgstr "Test Statistics" -#: src/pages/build/BuildDetail.tsx:350 +#: src/pages/build/BuildDetail.tsx:351 #: src/tables/settings/ApiTokenTable.tsx:97 #: src/tables/settings/PendingTasksTable.tsx:41 msgid "Created" msgstr "" -#: src/pages/build/BuildDetail.tsx:358 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:286 -#: src/pages/sales/ReturnOrderDetail.tsx:265 -#: src/pages/sales/SalesOrderDetail.tsx:257 +#: src/pages/build/BuildDetail.tsx:359 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:287 +#: src/pages/sales/ReturnOrderDetail.tsx:266 +#: src/pages/sales/SalesOrderDetail.tsx:258 #: src/tables/ColumnRenderers.tsx:486 msgid "Start Date" msgstr "" -#: src/pages/build/BuildDetail.tsx:366 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:294 -#: src/pages/sales/ReturnOrderDetail.tsx:273 -#: src/pages/sales/SalesOrderDetail.tsx:265 +#: src/pages/build/BuildDetail.tsx:367 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:295 +#: src/pages/sales/ReturnOrderDetail.tsx:274 +#: src/pages/sales/SalesOrderDetail.tsx:266 #: src/tables/ColumnRenderers.tsx:494 #: src/tables/part/PartPurchaseOrdersTable.tsx:101 #: src/tables/sales/ReturnOrderLineItemTable.tsx:154 @@ -6954,185 +7017,185 @@ msgstr "" #~ msgstr "Reporting Actions" #: src/pages/build/BuildDetail.tsx:374 +#~ msgid "Print build report" +#~ msgstr "Print build report" + +#: src/pages/build/BuildDetail.tsx:375 #: src/tables/build/BuildOrderTable.tsx:93 #: src/tables/sales/SalesOrderLineItemTable.tsx:347 msgid "Completed" msgstr "" -#: src/pages/build/BuildDetail.tsx:374 -#~ msgid "Print build report" -#~ msgstr "Print build report" - -#: src/pages/build/BuildDetail.tsx:410 +#: src/pages/build/BuildDetail.tsx:411 msgid "Build Details" msgstr "" -#: src/pages/build/BuildDetail.tsx:416 +#: src/pages/build/BuildDetail.tsx:417 msgid "Required Parts" msgstr "" -#: src/pages/build/BuildDetail.tsx:428 -#: src/pages/sales/SalesOrderDetail.tsx:407 -#: src/pages/sales/SalesOrderShipmentDetail.tsx:261 +#: src/pages/build/BuildDetail.tsx:429 +#: src/pages/sales/SalesOrderDetail.tsx:408 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:259 #: src/tables/part/PartSalesAllocationsTable.tsx:73 msgid "Allocated Stock" msgstr "" -#: src/pages/build/BuildDetail.tsx:444 +#: src/pages/build/BuildDetail.tsx:445 msgid "Consumed Stock" msgstr "" -#: src/pages/build/BuildDetail.tsx:461 +#: src/pages/build/BuildDetail.tsx:462 msgid "Incomplete Outputs" msgstr "" -#: src/pages/build/BuildDetail.tsx:489 +#: src/pages/build/BuildDetail.tsx:490 msgid "External Orders" msgstr "" -#: src/pages/build/BuildDetail.tsx:503 +#: src/pages/build/BuildDetail.tsx:504 msgid "Child Build Orders" msgstr "" -#: src/pages/build/BuildDetail.tsx:513 -#: src/pages/part/PartDetail.tsx:937 +#: src/pages/build/BuildDetail.tsx:514 +#: src/pages/part/PartDetail.tsx:926 #: src/pages/stock/StockDetail.tsx:587 #: src/tables/build/BuildOutputTable.tsx:654 #: src/tables/stock/StockItemTestResultTable.tsx:173 msgid "Test Results" msgstr "" -#: src/pages/build/BuildDetail.tsx:550 +#: src/pages/build/BuildDetail.tsx:555 msgid "Edit Build Order" msgstr "" -#: src/pages/build/BuildDetail.tsx:572 +#: src/pages/build/BuildDetail.tsx:577 #: src/tables/build/BuildOrderTable.tsx:207 #: src/tables/build/BuildOrderTable.tsx:223 msgid "Add Build Order" msgstr "" -#: src/pages/build/BuildDetail.tsx:582 +#: src/pages/build/BuildDetail.tsx:587 msgid "Cancel Build Order" msgstr "" -#: src/pages/build/BuildDetail.tsx:584 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:416 -#: src/pages/sales/ReturnOrderDetail.tsx:427 -#: src/pages/sales/SalesOrderDetail.tsx:454 +#: src/pages/build/BuildDetail.tsx:589 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:421 +#: src/pages/sales/ReturnOrderDetail.tsx:432 +#: src/pages/sales/SalesOrderDetail.tsx:459 msgid "Order cancelled" msgstr "" -#: src/pages/build/BuildDetail.tsx:585 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:415 -#: src/pages/sales/ReturnOrderDetail.tsx:426 -#: src/pages/sales/SalesOrderDetail.tsx:453 +#: src/pages/build/BuildDetail.tsx:590 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:420 +#: src/pages/sales/ReturnOrderDetail.tsx:431 +#: src/pages/sales/SalesOrderDetail.tsx:458 msgid "Cancel this order" msgstr "" -#: src/pages/build/BuildDetail.tsx:594 +#: src/pages/build/BuildDetail.tsx:599 msgid "Hold Build Order" msgstr "" -#: src/pages/build/BuildDetail.tsx:596 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:423 -#: src/pages/sales/ReturnOrderDetail.tsx:434 -#: src/pages/sales/SalesOrderDetail.tsx:461 +#: src/pages/build/BuildDetail.tsx:601 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:428 +#: src/pages/sales/ReturnOrderDetail.tsx:439 +#: src/pages/sales/SalesOrderDetail.tsx:466 msgid "Place this order on hold" msgstr "" -#: src/pages/build/BuildDetail.tsx:597 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:424 -#: src/pages/sales/ReturnOrderDetail.tsx:435 -#: src/pages/sales/SalesOrderDetail.tsx:462 +#: src/pages/build/BuildDetail.tsx:602 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:429 +#: src/pages/sales/ReturnOrderDetail.tsx:440 +#: src/pages/sales/SalesOrderDetail.tsx:467 msgid "Order placed on hold" msgstr "" -#: src/pages/build/BuildDetail.tsx:602 +#: src/pages/build/BuildDetail.tsx:607 msgid "Issue Build Order" msgstr "" -#: src/pages/build/BuildDetail.tsx:604 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:407 -#: src/pages/sales/ReturnOrderDetail.tsx:418 -#: src/pages/sales/SalesOrderDetail.tsx:445 +#: src/pages/build/BuildDetail.tsx:609 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:412 +#: src/pages/sales/ReturnOrderDetail.tsx:423 +#: src/pages/sales/SalesOrderDetail.tsx:450 msgid "Issue this order" msgstr "" -#: src/pages/build/BuildDetail.tsx:605 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:408 -#: src/pages/sales/ReturnOrderDetail.tsx:419 -#: src/pages/sales/SalesOrderDetail.tsx:446 +#: src/pages/build/BuildDetail.tsx:610 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:413 +#: src/pages/sales/ReturnOrderDetail.tsx:424 +#: src/pages/sales/SalesOrderDetail.tsx:451 msgid "Order issued" msgstr "" -#: src/pages/build/BuildDetail.tsx:624 +#: src/pages/build/BuildDetail.tsx:629 msgid "Complete Build Order" msgstr "" -#: src/pages/build/BuildDetail.tsx:630 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:436 -#: src/pages/sales/ReturnOrderDetail.tsx:442 -#: src/pages/sales/SalesOrderDetail.tsx:480 +#: src/pages/build/BuildDetail.tsx:635 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:441 +#: src/pages/sales/ReturnOrderDetail.tsx:447 +#: src/pages/sales/SalesOrderDetail.tsx:485 msgid "Mark this order as complete" msgstr "" -#: src/pages/build/BuildDetail.tsx:633 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:430 -#: src/pages/sales/ReturnOrderDetail.tsx:443 -#: src/pages/sales/SalesOrderDetail.tsx:481 +#: src/pages/build/BuildDetail.tsx:638 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:435 +#: src/pages/sales/ReturnOrderDetail.tsx:448 +#: src/pages/sales/SalesOrderDetail.tsx:486 msgid "Order completed" msgstr "" -#: src/pages/build/BuildDetail.tsx:660 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:459 -#: src/pages/sales/ReturnOrderDetail.tsx:470 -#: src/pages/sales/SalesOrderDetail.tsx:516 +#: src/pages/build/BuildDetail.tsx:665 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:464 +#: src/pages/sales/ReturnOrderDetail.tsx:475 +#: src/pages/sales/SalesOrderDetail.tsx:521 msgid "Issue Order" msgstr "" -#: src/pages/build/BuildDetail.tsx:667 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:466 -#: src/pages/sales/ReturnOrderDetail.tsx:477 -#: src/pages/sales/SalesOrderDetail.tsx:530 +#: src/pages/build/BuildDetail.tsx:672 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:471 +#: src/pages/sales/ReturnOrderDetail.tsx:482 +#: src/pages/sales/SalesOrderDetail.tsx:535 msgid "Complete Order" msgstr "" -#: src/pages/build/BuildDetail.tsx:686 +#: src/pages/build/BuildDetail.tsx:691 msgid "Build Order Actions" msgstr "" -#: src/pages/build/BuildDetail.tsx:691 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:489 -#: src/pages/sales/ReturnOrderDetail.tsx:500 -#: src/pages/sales/SalesOrderDetail.tsx:554 +#: src/pages/build/BuildDetail.tsx:696 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:494 +#: src/pages/sales/ReturnOrderDetail.tsx:505 +#: src/pages/sales/SalesOrderDetail.tsx:559 msgid "Edit order" msgstr "" -#: src/pages/build/BuildDetail.tsx:695 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:497 -#: src/pages/sales/ReturnOrderDetail.tsx:506 -#: src/pages/sales/SalesOrderDetail.tsx:559 -msgid "Duplicate order" -msgstr "" - -#: src/pages/build/BuildDetail.tsx:699 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:500 +#: src/pages/build/BuildDetail.tsx:700 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:502 #: src/pages/sales/ReturnOrderDetail.tsx:511 -#: src/pages/sales/SalesOrderDetail.tsx:562 -msgid "Hold order" +#: src/pages/sales/SalesOrderDetail.tsx:564 +msgid "Duplicate order" msgstr "" #: src/pages/build/BuildDetail.tsx:704 #: src/pages/purchasing/PurchaseOrderDetail.tsx:505 #: src/pages/sales/ReturnOrderDetail.tsx:516 #: src/pages/sales/SalesOrderDetail.tsx:567 +msgid "Hold order" +msgstr "" + +#: src/pages/build/BuildDetail.tsx:709 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:510 +#: src/pages/sales/ReturnOrderDetail.tsx:521 +#: src/pages/sales/SalesOrderDetail.tsx:572 msgid "Cancel order" msgstr "" -#: src/pages/build/BuildDetail.tsx:742 +#: src/pages/build/BuildDetail.tsx:747 #: src/pages/stock/StockDetail.tsx:344 -#: src/tables/build/BuildAllocatedStockTable.tsx:85 +#: src/tables/build/BuildAllocatedStockTable.tsx:82 #: src/tables/part/PartBuildAllocationsTable.tsx:45 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:157 #: src/tables/stock/StockTrackingTable.tsx:109 @@ -7143,7 +7206,7 @@ msgstr "" #~ msgid "Build order created" #~ msgstr "Build order created" -#: src/pages/build/BuildIndex.tsx:29 +#: src/pages/build/BuildIndex.tsx:35 #: src/tables/build/BuildOrderTable.tsx:184 msgid "Show external build orders" msgstr "" @@ -7152,61 +7215,82 @@ msgstr "" #~ msgid "New Build Order" #~ msgstr "New Build Order" -#: src/pages/build/BuildIndex.tsx:83 -#: src/pages/purchasing/PurchasingIndex.tsx:69 -#: src/pages/sales/SalesIndex.tsx:92 -#: src/pages/sales/SalesIndex.tsx:125 +#: src/pages/build/BuildIndex.tsx:74 +#: src/pages/part/CategoryDetail.tsx:292 +#: src/pages/purchasing/PurchasingIndex.tsx:74 +#: src/pages/purchasing/PurchasingIndex.tsx:107 +#: src/pages/purchasing/PurchasingIndex.tsx:135 +#: src/pages/purchasing/PurchasingIndex.tsx:156 +#: src/pages/purchasing/PurchasingIndex.tsx:184 +#: src/pages/sales/SalesIndex.tsx:61 +#: src/pages/sales/SalesIndex.tsx:107 +#: src/pages/sales/SalesIndex.tsx:140 msgid "Table View" msgstr "" -#: src/pages/build/BuildIndex.tsx:86 -#: src/pages/purchasing/PurchasingIndex.tsx:72 -#: src/pages/sales/SalesIndex.tsx:95 -#: src/pages/sales/SalesIndex.tsx:128 +#: src/pages/build/BuildIndex.tsx:80 +#: src/pages/purchasing/PurchasingIndex.tsx:80 +#: src/pages/sales/SalesIndex.tsx:67 +#: src/pages/sales/SalesIndex.tsx:113 msgid "Calendar View" msgstr "" -#: src/pages/company/CompanyDetail.tsx:99 +#: src/pages/build/BuildIndex.tsx:86 +#: src/pages/part/CategoryDetail.tsx:306 +#: src/pages/purchasing/PurchasingIndex.tsx:92 +#: src/pages/purchasing/PurchasingIndex.tsx:118 +#: src/pages/purchasing/PurchasingIndex.tsx:141 +#: src/pages/purchasing/PurchasingIndex.tsx:167 +#: src/pages/purchasing/PurchasingIndex.tsx:190 +#: src/pages/sales/SalesIndex.tsx:79 +#: src/pages/sales/SalesIndex.tsx:125 +#: src/pages/sales/SalesIndex.tsx:151 +msgid "Parametric View" +msgstr "" + +#: src/pages/company/CompanyDetail.tsx:100 msgid "Website" msgstr "" -#: src/pages/company/CompanyDetail.tsx:107 +#: src/pages/company/CompanyDetail.tsx:108 msgid "Phone Number" msgstr "" -#: src/pages/company/CompanyDetail.tsx:114 +#: src/pages/company/CompanyDetail.tsx:115 msgid "Email Address" msgstr "" -#: src/pages/company/CompanyDetail.tsx:121 +#: src/pages/company/CompanyDetail.tsx:122 msgid "Tax ID" msgstr "" -#: src/pages/company/CompanyDetail.tsx:131 +#: src/pages/company/CompanyDetail.tsx:132 msgid "Default Currency" msgstr "" -#: src/pages/company/CompanyDetail.tsx:142 +#: src/pages/company/CompanyDetail.tsx:143 #: src/pages/company/ManufacturerDetail.tsx:8 -#: src/pages/company/ManufacturerPartDetail.tsx:104 -#: src/pages/company/ManufacturerPartDetail.tsx:280 -#: src/pages/company/SupplierPartDetail.tsx:152 +#: src/pages/company/ManufacturerPartDetail.tsx:103 +#: src/pages/company/ManufacturerPartDetail.tsx:271 +#: src/pages/company/SupplierPartDetail.tsx:153 #: src/tables/Filter.tsx:347 #: src/tables/company/CompanyTable.tsx:101 #: src/tables/purchasing/SupplierPartTable.tsx:89 msgid "Manufacturer" msgstr "" -#: src/pages/company/CompanyDetail.tsx:148 +#: src/pages/company/CompanyDetail.tsx:149 #: src/pages/company/CustomerDetail.tsx:8 #: src/pages/part/pricing/SaleHistoryPanel.tsx:31 -#: src/pages/sales/ReturnOrderDetail.tsx:123 -#: src/pages/sales/SalesOrderDetail.tsx:113 -#: src/pages/sales/SalesOrderShipmentDetail.tsx:113 +#: src/pages/sales/ReturnOrderDetail.tsx:124 +#: src/pages/sales/SalesOrderDetail.tsx:114 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:111 #: src/pages/stock/StockDetail.tsx:370 #: src/tables/company/CompanyTable.tsx:106 +#: src/tables/sales/ReturnOrderParametricTable.tsx:32 #: src/tables/sales/ReturnOrderTable.tsx:108 -#: src/tables/sales/SalesOrderShipmentTable.tsx:111 +#: src/tables/sales/SalesOrderParametricTable.tsx:32 +#: src/tables/sales/SalesOrderShipmentTable.tsx:132 #: src/tables/sales/SalesOrderTable.tsx:133 #: src/tables/stock/StockTrackingTable.tsx:153 msgid "Customer" @@ -7216,11 +7300,11 @@ msgstr "" #~ msgid "Edit company" #~ msgstr "Edit company" -#: src/pages/company/CompanyDetail.tsx:181 +#: src/pages/company/CompanyDetail.tsx:182 msgid "Company Details" msgstr "" -#: src/pages/company/CompanyDetail.tsx:187 +#: src/pages/company/CompanyDetail.tsx:188 msgid "Supplied Parts" msgstr "" @@ -7228,79 +7312,79 @@ msgstr "" #~ msgid "Delete company" #~ msgstr "Delete company" -#: src/pages/company/CompanyDetail.tsx:194 +#: src/pages/company/CompanyDetail.tsx:195 msgid "Manufactured Parts" msgstr "" -#: src/pages/company/CompanyDetail.tsx:241 +#: src/pages/company/CompanyDetail.tsx:242 msgid "Assigned Stock" msgstr "" -#: src/pages/company/CompanyDetail.tsx:282 +#: src/pages/company/CompanyDetail.tsx:287 #: src/tables/company/CompanyTable.tsx:82 msgid "Edit Company" msgstr "" -#: src/pages/company/CompanyDetail.tsx:290 +#: src/pages/company/CompanyDetail.tsx:295 msgid "Delete Company" msgstr "" -#: src/pages/company/CompanyDetail.tsx:305 +#: src/pages/company/CompanyDetail.tsx:310 msgid "Company Actions" msgstr "" -#: src/pages/company/ManufacturerPartDetail.tsx:78 -#: src/pages/company/SupplierPartDetail.tsx:89 +#: src/pages/company/ManufacturerPartDetail.tsx:77 +#: src/pages/company/SupplierPartDetail.tsx:90 msgid "Internal Part" msgstr "" -#: src/pages/company/ManufacturerPartDetail.tsx:112 +#: src/pages/company/ManufacturerPartDetail.tsx:111 msgid "Manufacturer Part Number" msgstr "" -#: src/pages/company/ManufacturerPartDetail.tsx:129 -#: src/pages/company/SupplierPartDetail.tsx:113 +#: src/pages/company/ManufacturerPartDetail.tsx:128 +#: src/pages/company/SupplierPartDetail.tsx:114 msgid "External Link" msgstr "" -#: src/pages/company/ManufacturerPartDetail.tsx:148 -#: src/pages/company/SupplierPartDetail.tsx:232 +#: src/pages/company/ManufacturerPartDetail.tsx:147 +#: src/pages/company/SupplierPartDetail.tsx:233 #: src/pages/part/PartDetail.tsx:787 msgid "Part Details" msgstr "" -#: src/pages/company/ManufacturerPartDetail.tsx:151 +#: src/pages/company/ManufacturerPartDetail.tsx:150 msgid "Manufacturer Details" msgstr "" -#: src/pages/company/ManufacturerPartDetail.tsx:160 +#: src/pages/company/ManufacturerPartDetail.tsx:159 msgid "Manufacturer Part Details" msgstr "" -#: src/pages/company/ManufacturerPartDetail.tsx:178 -#: src/pages/company/SupplierPartDetail.tsx:252 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:381 +#: src/pages/company/ManufacturerPartDetail.tsx:165 +#: src/pages/company/SupplierPartDetail.tsx:253 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:382 msgid "Received Stock" msgstr "" -#: src/pages/company/ManufacturerPartDetail.tsx:220 +#: src/pages/company/ManufacturerPartDetail.tsx:211 #: src/tables/purchasing/ManufacturerPartTable.tsx:108 msgid "Edit Manufacturer Part" msgstr "" -#: src/pages/company/ManufacturerPartDetail.tsx:227 +#: src/pages/company/ManufacturerPartDetail.tsx:218 #: src/tables/purchasing/ManufacturerPartTable.tsx:96 #: src/tables/purchasing/ManufacturerPartTable.tsx:115 #: src/tables/purchasing/ManufacturerPartTable.tsx:156 msgid "Add Manufacturer Part" msgstr "" -#: src/pages/company/ManufacturerPartDetail.tsx:239 +#: src/pages/company/ManufacturerPartDetail.tsx:230 #: src/tables/purchasing/ManufacturerPartTable.tsx:126 msgid "Delete Manufacturer Part" msgstr "" -#: src/pages/company/ManufacturerPartDetail.tsx:254 +#: src/pages/company/ManufacturerPartDetail.tsx:245 msgid "Manufacturer Part Actions" msgstr "" @@ -7308,12 +7392,12 @@ msgstr "" #~ msgid "ManufacturerPart" #~ msgstr "ManufacturerPart" -#: src/pages/company/SupplierPartDetail.tsx:104 +#: src/pages/company/SupplierPartDetail.tsx:105 #: src/tables/part/RelatedPartTable.tsx:82 msgid "Part Description" msgstr "" -#: src/pages/company/SupplierPartDetail.tsx:179 +#: src/pages/company/SupplierPartDetail.tsx:180 #: src/tables/part/PartPurchaseOrdersTable.tsx:73 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:191 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:233 @@ -7321,50 +7405,50 @@ msgstr "" msgid "Pack Quantity" msgstr "" -#: src/pages/company/SupplierPartDetail.tsx:204 +#: src/pages/company/SupplierPartDetail.tsx:205 msgid "Supplier Availability" msgstr "" -#: src/pages/company/SupplierPartDetail.tsx:212 +#: src/pages/company/SupplierPartDetail.tsx:213 msgid "Availability Updated" msgstr "" -#: src/pages/company/SupplierPartDetail.tsx:237 +#: src/pages/company/SupplierPartDetail.tsx:238 msgid "Availability" msgstr "" -#: src/pages/company/SupplierPartDetail.tsx:246 +#: src/pages/company/SupplierPartDetail.tsx:247 msgid "Supplier Part Details" msgstr "" -#: src/pages/company/SupplierPartDetail.tsx:279 +#: src/pages/company/SupplierPartDetail.tsx:280 #: src/pages/part/PartPricingPanel.tsx:113 #: src/pages/part/pricing/PricingOverviewPanel.tsx:239 msgid "Supplier Pricing" msgstr "" -#: src/pages/company/SupplierPartDetail.tsx:308 +#: src/pages/company/SupplierPartDetail.tsx:313 msgid "Supplier Part Actions" msgstr "" -#: src/pages/company/SupplierPartDetail.tsx:332 +#: src/pages/company/SupplierPartDetail.tsx:337 #: src/tables/purchasing/SupplierPartTable.tsx:244 msgid "Edit Supplier Part" msgstr "" -#: src/pages/company/SupplierPartDetail.tsx:340 +#: src/pages/company/SupplierPartDetail.tsx:345 #: src/tables/purchasing/SupplierPartTable.tsx:264 msgid "Delete Supplier Part" msgstr "" -#: src/pages/company/SupplierPartDetail.tsx:348 +#: src/pages/company/SupplierPartDetail.tsx:353 #: src/tables/purchasing/SupplierPartTable.tsx:172 #: src/tables/purchasing/SupplierPartTable.tsx:251 msgid "Add Supplier Part" msgstr "" -#: src/pages/company/SupplierPartDetail.tsx:388 -#: src/pages/part/PartDetail.tsx:1003 +#: src/pages/company/SupplierPartDetail.tsx:393 +#: src/pages/part/PartDetail.tsx:1018 msgid "No Stock" msgstr "" @@ -7411,83 +7495,83 @@ msgstr "" msgid "Basic user" msgstr "" -#: src/pages/part/CategoryDetail.tsx:100 +#: src/pages/part/CategoryDetail.tsx:103 #: src/pages/stock/LocationDetail.tsx:94 #: src/tables/settings/ErrorTable.tsx:63 #: src/tables/settings/ErrorTable.tsx:108 msgid "Path" msgstr "" -#: src/pages/part/CategoryDetail.tsx:116 +#: src/pages/part/CategoryDetail.tsx:119 msgid "Parent Category" msgstr "" -#: src/pages/part/CategoryDetail.tsx:139 -#: src/pages/part/CategoryDetail.tsx:271 +#: src/pages/part/CategoryDetail.tsx:142 +#: src/pages/part/CategoryDetail.tsx:279 msgid "Subcategories" msgstr "" -#: src/pages/part/CategoryDetail.tsx:146 +#: src/pages/part/CategoryDetail.tsx:149 #: src/pages/stock/LocationDetail.tsx:134 #: src/tables/part/PartCategoryTable.tsx:89 #: src/tables/stock/StockLocationTable.tsx:43 msgid "Structural" msgstr "" -#: src/pages/part/CategoryDetail.tsx:152 +#: src/pages/part/CategoryDetail.tsx:155 msgid "Parent default location" msgstr "" -#: src/pages/part/CategoryDetail.tsx:159 +#: src/pages/part/CategoryDetail.tsx:162 msgid "Default location" msgstr "" -#: src/pages/part/CategoryDetail.tsx:170 +#: src/pages/part/CategoryDetail.tsx:173 msgid "Top level part category" msgstr "" -#: src/pages/part/CategoryDetail.tsx:180 -#: src/pages/part/CategoryDetail.tsx:248 +#: src/pages/part/CategoryDetail.tsx:183 +#: src/pages/part/CategoryDetail.tsx:251 #: src/tables/part/PartCategoryTable.tsx:122 msgid "Edit Part Category" msgstr "" -#: src/pages/part/CategoryDetail.tsx:189 +#: src/pages/part/CategoryDetail.tsx:192 msgid "Move items to parent category" msgstr "" -#: src/pages/part/CategoryDetail.tsx:193 +#: src/pages/part/CategoryDetail.tsx:196 #: src/pages/stock/LocationDetail.tsx:226 msgid "Delete items" msgstr "" -#: src/pages/part/CategoryDetail.tsx:201 -#: src/pages/part/CategoryDetail.tsx:253 +#: src/pages/part/CategoryDetail.tsx:204 +#: src/pages/part/CategoryDetail.tsx:256 msgid "Delete Part Category" msgstr "" -#: src/pages/part/CategoryDetail.tsx:204 +#: src/pages/part/CategoryDetail.tsx:207 msgid "Parts Action" msgstr "" -#: src/pages/part/CategoryDetail.tsx:205 +#: src/pages/part/CategoryDetail.tsx:208 msgid "Action for parts in this category" msgstr "" -#: src/pages/part/CategoryDetail.tsx:211 +#: src/pages/part/CategoryDetail.tsx:214 msgid "Child Categories Action" msgstr "" -#: src/pages/part/CategoryDetail.tsx:212 +#: src/pages/part/CategoryDetail.tsx:215 msgid "Action for child categories in this category" msgstr "" -#: src/pages/part/CategoryDetail.tsx:244 +#: src/pages/part/CategoryDetail.tsx:247 #: src/tables/part/PartCategoryTable.tsx:143 msgid "Category Actions" msgstr "" -#: src/pages/part/CategoryDetail.tsx:265 +#: src/pages/part/CategoryDetail.tsx:273 msgid "Category Details" msgstr "" @@ -7585,7 +7669,6 @@ msgid "Category Default Location" msgstr "" #: src/pages/part/PartDetail.tsx:507 -#: src/tables/purchasing/ManufacturerPartParameterTable.tsx:48 msgid "Units" msgstr "" @@ -7600,7 +7683,7 @@ msgstr "" #: src/pages/part/PartDetail.tsx:542 #: src/tables/bom/BomTable.tsx:439 -#: src/tables/build/BuildLineTable.tsx:305 +#: src/tables/build/BuildLineTable.tsx:306 #: src/tables/part/PartTable.tsx:319 #: src/tables/sales/SalesOrderLineItemTable.tsx:138 msgid "Available Stock" @@ -7608,7 +7691,7 @@ msgstr "" #: src/pages/part/PartDetail.tsx:548 #: src/tables/bom/BomTable.tsx:341 -#: src/tables/build/BuildLineTable.tsx:267 +#: src/tables/build/BuildLineTable.tsx:268 #: src/tables/sales/SalesOrderLineItemTable.tsx:180 msgid "On order" msgstr "" @@ -7634,7 +7717,7 @@ msgstr "" #~ msgstr "Scheduling" #: src/pages/part/PartDetail.tsx:620 -#: src/tables/part/ParametricPartTable.tsx:359 +#: src/tables/part/ParametricPartTable.tsx:24 #: src/tables/part/PartTable.tsx:203 msgid "Locked" msgstr "" @@ -7671,16 +7754,16 @@ msgid "Saleable Part" msgstr "" #: src/pages/part/PartDetail.tsx:663 -#: src/pages/part/PartDetail.tsx:1033 +#: src/pages/part/PartDetail.tsx:1054 #: src/tables/bom/BomTable.tsx:150 #: src/tables/bom/BomTable.tsx:434 msgid "Virtual Part" msgstr "" #: src/pages/part/PartDetail.tsx:678 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:271 -#: src/pages/sales/ReturnOrderDetail.tsx:249 -#: src/pages/sales/SalesOrderDetail.tsx:242 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:272 +#: src/pages/sales/ReturnOrderDetail.tsx:250 +#: src/pages/sales/SalesOrderDetail.tsx:243 #: src/tables/ColumnRenderers.tsx:502 msgid "Creation Date" msgstr "" @@ -7718,35 +7801,46 @@ msgstr "" msgid "Select Part Revision" msgstr "" -#: src/pages/part/PartDetail.tsx:823 +#: src/pages/part/PartDetail.tsx:812 msgid "Variants" msgstr "" -#: src/pages/part/PartDetail.tsx:830 +#: src/pages/part/PartDetail.tsx:819 #: src/pages/stock/StockDetail.tsx:542 msgid "Allocations" msgstr "" -#: src/pages/part/PartDetail.tsx:837 +#: src/pages/part/PartDetail.tsx:826 msgid "Bill of Materials" msgstr "" -#: src/pages/part/PartDetail.tsx:849 +#: src/pages/part/PartDetail.tsx:838 msgid "Used In" msgstr "" -#: src/pages/part/PartDetail.tsx:856 +#: src/pages/part/PartDetail.tsx:845 msgid "Part Pricing" msgstr "" -#: src/pages/part/PartDetail.tsx:926 +#: src/pages/part/PartDetail.tsx:915 msgid "Test Templates" msgstr "" -#: src/pages/part/PartDetail.tsx:948 +#: src/pages/part/PartDetail.tsx:937 msgid "Related Parts" msgstr "" +#: src/pages/part/PartDetail.tsx:949 +#: src/tables/ColumnRenderers.tsx:73 +#: src/tables/bom/BomTable.tsx:657 +#: src/tables/part/PartTestTemplateTable.tsx:258 +msgid "Part is Locked" +msgstr "" + +#: src/pages/part/PartDetail.tsx:954 +msgid "Part parameters cannot be edited, as the part is locked" +msgstr "" + #: src/pages/part/PartDetail.tsx:956 #~ msgid "Count part stock" #~ msgstr "Count part stock" @@ -7755,42 +7849,46 @@ msgstr "" #~ msgid "Transfer part stock" #~ msgstr "Transfer part stock" -#: src/pages/part/PartDetail.tsx:1009 +#: src/pages/part/PartDetail.tsx:1024 #: src/tables/part/PartTestTemplateTable.tsx:112 #: src/tables/stock/StockItemTestResultTable.tsx:404 msgid "Required" msgstr "" -#: src/pages/part/PartDetail.tsx:1058 +#: src/pages/part/PartDetail.tsx:1042 +msgid "Deficit" +msgstr "" + +#: src/pages/part/PartDetail.tsx:1079 #: src/tables/part/PartTable.tsx:396 #: src/tables/part/PartTable.tsx:449 msgid "Add Part" msgstr "" -#: src/pages/part/PartDetail.tsx:1072 +#: src/pages/part/PartDetail.tsx:1093 msgid "Delete Part" msgstr "" -#: src/pages/part/PartDetail.tsx:1081 +#: src/pages/part/PartDetail.tsx:1102 msgid "Deleting this part cannot be reversed" msgstr "" -#: src/pages/part/PartDetail.tsx:1143 +#: src/pages/part/PartDetail.tsx:1164 #: src/pages/stock/StockDetail.tsx:883 msgid "Order" msgstr "" -#: src/pages/part/PartDetail.tsx:1144 +#: src/pages/part/PartDetail.tsx:1165 #: src/pages/stock/StockDetail.tsx:884 -#: src/tables/build/BuildLineTable.tsx:761 +#: src/tables/build/BuildLineTable.tsx:768 msgid "Order Stock" msgstr "" -#: src/pages/part/PartDetail.tsx:1156 +#: src/pages/part/PartDetail.tsx:1177 msgid "Search by serial number" msgstr "" -#: src/pages/part/PartDetail.tsx:1164 +#: src/pages/part/PartDetail.tsx:1185 #: src/tables/part/PartTable.tsx:506 msgid "Part Actions" msgstr "" @@ -8039,7 +8137,7 @@ msgstr "" #: src/pages/part/pricing/PricingOverviewPanel.tsx:288 #: src/pages/stock/StockDetail.tsx:426 -#: src/tables/part/PartParameterTable.tsx:121 +#: src/tables/general/ParameterTable.tsx:101 #: src/tables/stock/StockItemTable.tsx:300 msgid "Last Updated" msgstr "" @@ -8107,17 +8205,17 @@ msgstr "" msgid "Variant Part" msgstr "" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:89 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:90 msgid "Edit Purchase Order" msgstr "" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:125 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:126 #: src/tables/purchasing/PurchaseOrderTable.tsx:154 #: src/tables/purchasing/PurchaseOrderTable.tsx:167 msgid "Add Purchase Order" msgstr "" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:147 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:148 msgid "Supplier Reference" msgstr "" @@ -8127,20 +8225,20 @@ msgstr "" #~ msgid "Order Currency," #~ msgstr "Order Currency," -#: src/pages/purchasing/PurchaseOrderDetail.tsx:187 -#: src/pages/sales/ReturnOrderDetail.tsx:160 -#: src/pages/sales/SalesOrderDetail.tsx:144 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:188 +#: src/pages/sales/ReturnOrderDetail.tsx:161 +#: src/pages/sales/SalesOrderDetail.tsx:145 msgid "Completed Line Items" msgstr "" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:196 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:197 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:272 msgid "Destination" msgstr "" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:202 -#: src/pages/sales/ReturnOrderDetail.tsx:167 -#: src/pages/sales/SalesOrderDetail.tsx:161 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:203 +#: src/pages/sales/ReturnOrderDetail.tsx:168 +#: src/pages/sales/SalesOrderDetail.tsx:162 msgid "Order Currency" msgstr "" @@ -8150,97 +8248,97 @@ msgstr "" #~ msgid "Created On" #~ msgstr "Created On" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:208 -#: src/pages/sales/ReturnOrderDetail.tsx:174 -#: src/pages/sales/SalesOrderDetail.tsx:167 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:209 +#: src/pages/sales/ReturnOrderDetail.tsx:175 +#: src/pages/sales/SalesOrderDetail.tsx:168 msgid "Total Cost" msgstr "" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:237 -#: src/pages/sales/ReturnOrderDetail.tsx:215 -#: src/pages/sales/SalesOrderDetail.tsx:208 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:238 +#: src/pages/sales/ReturnOrderDetail.tsx:216 +#: src/pages/sales/SalesOrderDetail.tsx:209 msgid "Contact Email" msgstr "" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:245 -#: src/pages/sales/ReturnOrderDetail.tsx:223 -#: src/pages/sales/SalesOrderDetail.tsx:216 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:246 +#: src/pages/sales/ReturnOrderDetail.tsx:224 +#: src/pages/sales/SalesOrderDetail.tsx:217 msgid "Contact Phone" msgstr "" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:278 -#: src/pages/sales/ReturnOrderDetail.tsx:257 -#: src/pages/sales/SalesOrderDetail.tsx:249 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:279 +#: src/pages/sales/ReturnOrderDetail.tsx:258 +#: src/pages/sales/SalesOrderDetail.tsx:250 msgid "Issue Date" msgstr "" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:303 -#: src/pages/sales/ReturnOrderDetail.tsx:281 -#: src/pages/sales/SalesOrderDetail.tsx:272 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:304 +#: src/pages/sales/ReturnOrderDetail.tsx:282 +#: src/pages/sales/SalesOrderDetail.tsx:273 #: src/tables/ColumnRenderers.tsx:510 #: src/tables/build/BuildOrderTable.tsx:137 #: src/tables/part/PartPurchaseOrdersTable.tsx:106 msgid "Completion Date" msgstr "" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:333 -#: src/pages/sales/ReturnOrderDetail.tsx:311 -#: src/pages/sales/SalesOrderDetail.tsx:349 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:334 +#: src/pages/sales/ReturnOrderDetail.tsx:312 +#: src/pages/sales/SalesOrderDetail.tsx:350 msgid "Order Details" msgstr "" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:339 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:348 -#: src/pages/sales/ReturnOrderDetail.tsx:153 -#: src/pages/sales/ReturnOrderDetail.tsx:317 -#: src/pages/sales/ReturnOrderDetail.tsx:326 -#: src/pages/sales/SalesOrderDetail.tsx:355 -#: src/pages/sales/SalesOrderDetail.tsx:364 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:340 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:349 +#: src/pages/sales/ReturnOrderDetail.tsx:154 +#: src/pages/sales/ReturnOrderDetail.tsx:318 +#: src/pages/sales/ReturnOrderDetail.tsx:327 +#: src/pages/sales/SalesOrderDetail.tsx:356 +#: src/pages/sales/SalesOrderDetail.tsx:365 msgid "Line Items" msgstr "" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:363 -#: src/pages/sales/ReturnOrderDetail.tsx:341 -#: src/pages/sales/SalesOrderDetail.tsx:378 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:364 +#: src/pages/sales/ReturnOrderDetail.tsx:342 +#: src/pages/sales/SalesOrderDetail.tsx:379 msgid "Extra Line Items" msgstr "" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:405 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:410 msgid "Issue Purchase Order" msgstr "" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:413 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:418 msgid "Cancel Purchase Order" msgstr "" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:421 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:426 msgid "Hold Purchase Order" msgstr "" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:429 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:434 msgid "Complete Purchase Order" msgstr "" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:485 -#: src/pages/sales/ReturnOrderDetail.tsx:496 -#: src/pages/sales/SalesOrderDetail.tsx:549 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:490 +#: src/pages/sales/ReturnOrderDetail.tsx:501 +#: src/pages/sales/SalesOrderDetail.tsx:554 msgid "Order Actions" msgstr "" -#: src/pages/sales/ReturnOrderDetail.tsx:114 -#: src/pages/sales/SalesOrderDetail.tsx:104 -#: src/pages/sales/SalesOrderShipmentDetail.tsx:134 +#: src/pages/sales/ReturnOrderDetail.tsx:115 +#: src/pages/sales/SalesOrderDetail.tsx:105 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:132 #: src/tables/sales/SalesOrderTable.tsx:141 msgid "Customer Reference" msgstr "" -#: src/pages/sales/ReturnOrderDetail.tsx:195 +#: src/pages/sales/ReturnOrderDetail.tsx:196 msgid "Return Address" msgstr "" -#: src/pages/sales/ReturnOrderDetail.tsx:201 -#: src/pages/sales/SalesOrderDetail.tsx:194 -#: src/pages/sales/SalesOrderShipmentDetail.tsx:181 +#: src/pages/sales/ReturnOrderDetail.tsx:202 +#: src/pages/sales/SalesOrderDetail.tsx:195 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:179 msgid "Not specified" msgstr "" @@ -8248,117 +8346,117 @@ msgstr "" #~ msgid "Order canceled" #~ msgstr "Order canceled" -#: src/pages/sales/ReturnOrderDetail.tsx:389 +#: src/pages/sales/ReturnOrderDetail.tsx:394 msgid "Edit Return Order" msgstr "" -#: src/pages/sales/ReturnOrderDetail.tsx:407 +#: src/pages/sales/ReturnOrderDetail.tsx:412 #: src/tables/sales/ReturnOrderTable.tsx:154 #: src/tables/sales/ReturnOrderTable.tsx:167 msgid "Add Return Order" msgstr "" -#: src/pages/sales/ReturnOrderDetail.tsx:416 +#: src/pages/sales/ReturnOrderDetail.tsx:421 msgid "Issue Return Order" msgstr "" -#: src/pages/sales/ReturnOrderDetail.tsx:424 +#: src/pages/sales/ReturnOrderDetail.tsx:429 msgid "Cancel Return Order" msgstr "" -#: src/pages/sales/ReturnOrderDetail.tsx:432 +#: src/pages/sales/ReturnOrderDetail.tsx:437 msgid "Hold Return Order" msgstr "" -#: src/pages/sales/ReturnOrderDetail.tsx:440 +#: src/pages/sales/ReturnOrderDetail.tsx:445 msgid "Complete Return Order" msgstr "" -#: src/pages/sales/SalesOrderDetail.tsx:153 +#: src/pages/sales/SalesOrderDetail.tsx:154 msgid "Completed Shipments" msgstr "" -#: src/pages/sales/SalesOrderDetail.tsx:188 -#: src/pages/sales/SalesOrderShipmentDetail.tsx:170 +#: src/pages/sales/SalesOrderDetail.tsx:189 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:168 msgid "Shipping Address" msgstr "" -#: src/pages/sales/SalesOrderDetail.tsx:316 +#: src/pages/sales/SalesOrderDetail.tsx:317 msgid "Edit Sales Order" msgstr "" -#: src/pages/sales/SalesOrderDetail.tsx:338 +#: src/pages/sales/SalesOrderDetail.tsx:339 #: src/tables/sales/SalesOrderTable.tsx:108 #: src/tables/sales/SalesOrderTable.tsx:121 msgid "Add Sales Order" msgstr "" -#: src/pages/sales/SalesOrderDetail.tsx:396 +#: src/pages/sales/SalesOrderDetail.tsx:397 #: src/tables/sales/SalesOrderTable.tsx:147 msgid "Shipments" msgstr "" -#: src/pages/sales/SalesOrderDetail.tsx:443 +#: src/pages/sales/SalesOrderDetail.tsx:448 msgid "Issue Sales Order" msgstr "" -#: src/pages/sales/SalesOrderDetail.tsx:451 +#: src/pages/sales/SalesOrderDetail.tsx:456 msgid "Cancel Sales Order" msgstr "" -#: src/pages/sales/SalesOrderDetail.tsx:459 +#: src/pages/sales/SalesOrderDetail.tsx:464 msgid "Hold Sales Order" msgstr "" -#: src/pages/sales/SalesOrderDetail.tsx:467 +#: src/pages/sales/SalesOrderDetail.tsx:472 msgid "Ship Sales Order" msgstr "" -#: src/pages/sales/SalesOrderDetail.tsx:469 +#: src/pages/sales/SalesOrderDetail.tsx:474 msgid "Ship this order?" msgstr "" -#: src/pages/sales/SalesOrderDetail.tsx:470 +#: src/pages/sales/SalesOrderDetail.tsx:475 msgid "Order shipped" msgstr "" -#: src/pages/sales/SalesOrderDetail.tsx:478 +#: src/pages/sales/SalesOrderDetail.tsx:483 msgid "Complete Sales Order" msgstr "" -#: src/pages/sales/SalesOrderDetail.tsx:523 +#: src/pages/sales/SalesOrderDetail.tsx:528 msgid "Ship Order" msgstr "" -#: src/pages/sales/SalesOrderShipmentDetail.tsx:142 -#: src/tables/sales/SalesOrderShipmentTable.tsx:135 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:140 +#: src/tables/sales/SalesOrderShipmentTable.tsx:156 msgid "Shipment Reference" msgstr "" -#: src/pages/sales/SalesOrderShipmentDetail.tsx:148 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:146 msgid "Tracking Number" msgstr "" -#: src/pages/sales/SalesOrderShipmentDetail.tsx:156 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:154 msgid "Invoice Number" msgstr "" -#: src/pages/sales/SalesOrderShipmentDetail.tsx:191 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:189 msgid "Allocated Items" msgstr "" -#: src/pages/sales/SalesOrderShipmentDetail.tsx:196 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:194 msgid "Checked By" msgstr "" -#: src/pages/sales/SalesOrderShipmentDetail.tsx:202 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:200 msgid "Not checked" msgstr "" -#: src/pages/sales/SalesOrderShipmentDetail.tsx:208 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:206 #: src/tables/ColumnRenderers.tsx:518 #: src/tables/sales/SalesOrderAllocationTable.tsx:182 -#: src/tables/sales/SalesOrderShipmentTable.tsx:168 +#: src/tables/sales/SalesOrderShipmentTable.tsx:189 msgid "Shipment Date" msgstr "" @@ -8366,108 +8464,82 @@ msgstr "" #~ msgid "Assigned Items" #~ msgstr "Assigned Items" -#: src/pages/sales/SalesOrderShipmentDetail.tsx:216 -#: src/tables/sales/SalesOrderShipmentTable.tsx:172 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:214 +#: src/tables/sales/SalesOrderShipmentTable.tsx:193 msgid "Delivery Date" msgstr "" -#: src/pages/sales/SalesOrderShipmentDetail.tsx:255 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:253 msgid "Shipment Details" msgstr "" -#: src/pages/sales/SalesOrderShipmentDetail.tsx:294 -#: src/pages/sales/SalesOrderShipmentDetail.tsx:438 -#: src/tables/sales/SalesOrderShipmentTable.tsx:90 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:292 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:406 +#: src/tables/sales/SalesOrderShipmentTable.tsx:97 msgid "Edit Shipment" msgstr "" -#: src/pages/sales/SalesOrderShipmentDetail.tsx:301 -#: src/pages/sales/SalesOrderShipmentDetail.tsx:457 -#: src/tables/sales/SalesOrderShipmentTable.tsx:82 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:299 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:425 +#: src/tables/sales/SalesOrderShipmentTable.tsx:89 msgid "Cancel Shipment" msgstr "" -#: src/pages/sales/SalesOrderShipmentDetail.tsx:314 -#: src/tables/sales/SalesOrderShipmentTable.tsx:98 -#: src/tables/sales/SalesOrderShipmentTable.tsx:193 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:312 +#: src/tables/sales/SalesOrderShipmentTable.tsx:119 +#: src/tables/sales/SalesOrderShipmentTable.tsx:238 msgid "Complete Shipment" msgstr "" -#: src/pages/sales/SalesOrderShipmentDetail.tsx:326 -#: src/pages/sales/SalesOrderShipmentDetail.tsx:328 -msgid "Check Shipment" -msgstr "" - -#: src/pages/sales/SalesOrderShipmentDetail.tsx:329 -msgid "Marking the shipment as checked indicates that you have verified that all items included in this shipment are correct" -msgstr "" - #: src/pages/sales/SalesOrderShipmentDetail.tsx:339 -msgid "Shipment marked as checked" -msgstr "" - -#: src/pages/sales/SalesOrderShipmentDetail.tsx:346 -#: src/pages/sales/SalesOrderShipmentDetail.tsx:348 -msgid "Uncheck Shipment" -msgstr "" - -#: src/pages/sales/SalesOrderShipmentDetail.tsx:349 -msgid "Marking the shipment as unchecked indicates that the shipment requires further verification" -msgstr "" - -#: src/pages/sales/SalesOrderShipmentDetail.tsx:359 -msgid "Shipment marked as unchecked" -msgstr "" - -#: src/pages/sales/SalesOrderShipmentDetail.tsx:371 #: src/tables/part/PartPurchaseOrdersTable.tsx:122 msgid "Pending" msgstr "" -#: src/pages/sales/SalesOrderShipmentDetail.tsx:377 -#: src/tables/sales/SalesOrderShipmentTable.tsx:147 -#: src/tables/sales/SalesOrderShipmentTable.tsx:254 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:345 +#: src/tables/sales/SalesOrderShipmentTable.tsx:168 +#: src/tables/sales/SalesOrderShipmentTable.tsx:299 msgid "Checked" msgstr "" -#: src/pages/sales/SalesOrderShipmentDetail.tsx:383 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:351 msgid "Not Checked" msgstr "" -#: src/pages/sales/SalesOrderShipmentDetail.tsx:389 -#: src/tables/sales/SalesOrderShipmentTable.tsx:154 -#: src/tables/sales/SalesOrderShipmentTable.tsx:259 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:357 +#: src/tables/sales/SalesOrderShipmentTable.tsx:175 +#: src/tables/sales/SalesOrderShipmentTable.tsx:304 msgid "Shipped" msgstr "" -#: src/pages/sales/SalesOrderShipmentDetail.tsx:395 -#: src/tables/sales/SalesOrderShipmentTable.tsx:161 -#: src/tables/sales/SalesOrderShipmentTable.tsx:264 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:363 +#: src/tables/sales/SalesOrderShipmentTable.tsx:182 +#: src/tables/sales/SalesOrderShipmentTable.tsx:309 #: src/tables/settings/EmailTable.tsx:31 msgid "Delivered" msgstr "" -#: src/pages/sales/SalesOrderShipmentDetail.tsx:410 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:378 msgid "Send Shipment" msgstr "" -#: src/pages/sales/SalesOrderShipmentDetail.tsx:433 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:401 msgid "Shipment Actions" msgstr "" -#: src/pages/sales/SalesOrderShipmentDetail.tsx:442 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:410 msgid "Check" msgstr "" -#: src/pages/sales/SalesOrderShipmentDetail.tsx:443 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:411 msgid "Mark shipment as checked" msgstr "" -#: src/pages/sales/SalesOrderShipmentDetail.tsx:449 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:417 msgid "Uncheck" msgstr "" -#: src/pages/sales/SalesOrderShipmentDetail.tsx:450 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:418 msgid "Mark shipment as unchecked" msgstr "" @@ -8775,13 +8847,6 @@ msgstr "" msgid "Part is not active" msgstr "" -#: src/tables/ColumnRenderers.tsx:73 -#: src/tables/bom/BomTable.tsx:657 -#: src/tables/part/PartParameterTable.tsx:227 -#: src/tables/part/PartTestTemplateTable.tsx:258 -msgid "Part is Locked" -msgstr "" - #: src/tables/ColumnRenderers.tsx:78 msgid "You are subscribed to notifications for this part" msgstr "" @@ -9219,13 +9284,13 @@ msgstr "" #~ msgstr "Show asssmbled items" #: src/tables/bom/BomTable.tsx:315 -#: src/tables/build/BuildLineTable.tsx:276 +#: src/tables/build/BuildLineTable.tsx:277 #: src/tables/part/PartTable.tsx:145 msgid "External stock" msgstr "" #: src/tables/bom/BomTable.tsx:323 -#: src/tables/build/BuildLineTable.tsx:239 +#: src/tables/build/BuildLineTable.tsx:240 msgid "Includes substitute stock" msgstr "" @@ -9234,7 +9299,7 @@ msgstr "" #~ msgstr "Edit Bom Item" #: src/tables/bom/BomTable.tsx:332 -#: src/tables/build/BuildLineTable.tsx:249 +#: src/tables/build/BuildLineTable.tsx:250 #: src/tables/sales/SalesOrderLineItemTable.tsx:166 msgid "Includes variant stock" msgstr "" @@ -9272,8 +9337,8 @@ msgid "Stock Information" msgstr "" #: src/tables/bom/BomTable.tsx:399 -#: src/tables/build/BuildLineTable.tsx:496 -#: src/tables/build/BuildLineTable.tsx:537 +#: src/tables/build/BuildLineTable.tsx:497 +#: src/tables/build/BuildLineTable.tsx:538 msgid "Consumable item" msgstr "" @@ -9282,7 +9347,7 @@ msgid "No available stock" msgstr "" #: src/tables/bom/BomTable.tsx:420 -#: src/tables/build/BuildLineTable.tsx:213 +#: src/tables/build/BuildLineTable.tsx:214 msgid "Show testable items" msgstr "" @@ -9291,7 +9356,7 @@ msgid "Show trackable items" msgstr "" #: src/tables/bom/BomTable.tsx:430 -#: src/tables/build/BuildLineTable.tsx:208 +#: src/tables/build/BuildLineTable.tsx:209 msgid "Show assembled items" msgstr "" @@ -9335,7 +9400,7 @@ msgstr "" #: src/tables/bom/BomTable.tsx:464 #: src/tables/bom/UsedInTable.tsx:85 -#: src/tables/build/BuildLineTable.tsx:202 +#: src/tables/build/BuildLineTable.tsx:203 msgid "Optional" msgstr "" @@ -9345,7 +9410,7 @@ msgid "Show optional items" msgstr "" #: src/tables/bom/BomTable.tsx:469 -#: src/tables/build/BuildLineTable.tsx:197 +#: src/tables/build/BuildLineTable.tsx:198 msgid "Consumable" msgstr "" @@ -9420,6 +9485,7 @@ msgid "Add a single BOM item" msgstr "" #: src/tables/bom/BomTable.tsx:637 +#: src/tables/general/ParameterTable.tsx:206 #: src/tables/part/PartTable.tsx:546 msgid "Import from File" msgstr "" @@ -9433,8 +9499,8 @@ msgid "Bill of materials cannot be edited, as the part is locked" msgstr "" #: src/tables/bom/UsedInTable.tsx:34 -#: src/tables/build/BuildLineTable.tsx:207 -#: src/tables/part/ParametricPartTable.tsx:364 +#: src/tables/build/BuildLineTable.tsx:208 +#: src/tables/part/ParametricPartTable.tsx:29 #: src/tables/part/PartBuildAllocationsTable.tsx:60 #: src/tables/part/PartTable.tsx:209 #: src/tables/stock/StockItemTable.tsx:333 @@ -9455,11 +9521,11 @@ msgstr "" msgid "Show trackable assemblies" msgstr "" -#: src/tables/build/BuildAllocatedStockTable.tsx:67 +#: src/tables/build/BuildAllocatedStockTable.tsx:64 msgid "Allocated to Output" msgstr "" -#: src/tables/build/BuildAllocatedStockTable.tsx:68 +#: src/tables/build/BuildAllocatedStockTable.tsx:65 msgid "Show items allocated to a build output" msgstr "" @@ -9472,50 +9538,68 @@ msgstr "" #~ msgid "Include orders for part variants" #~ msgstr "Include orders for part variants" -#: src/tables/build/BuildAllocatedStockTable.tsx:97 +#: src/tables/build/BuildAllocatedStockTable.tsx:94 #: src/tables/part/PartBuildAllocationsTable.tsx:84 #: src/tables/part/PartPurchaseOrdersTable.tsx:132 #: src/tables/part/PartSalesAllocationsTable.tsx:69 #: src/tables/sales/SalesOrderAllocationTable.tsx:122 -#: src/tables/sales/SalesOrderShipmentTable.tsx:130 +#: src/tables/sales/SalesOrderShipmentTable.tsx:151 msgid "Order Status" msgstr "" +#: src/tables/build/BuildAllocatedStockTable.tsx:164 +#: src/tables/build/BuildLineTable.tsx:651 +msgid "Edit Stock Allocation" +msgstr "" + #: src/tables/build/BuildAllocatedStockTable.tsx:164 #~ msgid "Edit Build Item" #~ msgstr "Edit Build Item" -#: src/tables/build/BuildAllocatedStockTable.tsx:167 -#: src/tables/build/BuildLineTable.tsx:650 -msgid "Edit Stock Allocation" -msgstr "" - #: src/tables/build/BuildAllocatedStockTable.tsx:174 #~ msgid "Delete Build Item" #~ msgstr "Delete Build Item" -#: src/tables/build/BuildAllocatedStockTable.tsx:180 -#: src/tables/build/BuildLineTable.tsx:663 -msgid "Delete Stock Allocation" +#: src/tables/build/BuildAllocatedStockTable.tsx:177 +#: src/tables/build/BuildLineTable.tsx:664 +#: src/tables/sales/SalesOrderAllocationTable.tsx:218 +msgid "Remove Allocated Stock" msgstr "" -#: src/tables/build/BuildAllocatedStockTable.tsx:239 +#: src/tables/build/BuildAllocatedStockTable.tsx:180 +#: src/tables/build/BuildLineTable.tsx:663 +#~ msgid "Delete Stock Allocation" +#~ msgstr "Delete Stock Allocation" + +#: src/tables/build/BuildAllocatedStockTable.tsx:182 +#: src/tables/build/BuildLineTable.tsx:669 +#: src/tables/sales/SalesOrderAllocationTable.tsx:221 +msgid "Are you sure you want to remove this allocated stock from the order?" +msgstr "" + +#: src/tables/build/BuildAllocatedStockTable.tsx:242 msgid "Consume" msgstr "" +#: src/tables/build/BuildAllocatedStockTable.tsx:259 +#: src/tables/build/BuildLineTable.tsx:112 +#: src/tables/sales/SalesOrderAllocationTable.tsx:248 +msgid "Remove allocated stock" +msgstr "" + #: src/tables/build/BuildLineTable.tsx:59 #~ msgid "Show lines with available stock" #~ msgstr "Show lines with available stock" -#: src/tables/build/BuildLineTable.tsx:120 +#: src/tables/build/BuildLineTable.tsx:121 msgid "View Stock Item" msgstr "" -#: src/tables/build/BuildLineTable.tsx:183 +#: src/tables/build/BuildLineTable.tsx:184 msgid "Show fully allocated lines" msgstr "" -#: src/tables/build/BuildLineTable.tsx:188 +#: src/tables/build/BuildLineTable.tsx:189 msgid "Show fully consumed lines" msgstr "" @@ -9523,124 +9607,124 @@ msgstr "" #~ msgid "Show allocated lines" #~ msgstr "Show allocated lines" -#: src/tables/build/BuildLineTable.tsx:193 +#: src/tables/build/BuildLineTable.tsx:194 msgid "Show items with sufficient available stock" msgstr "" -#: src/tables/build/BuildLineTable.tsx:198 +#: src/tables/build/BuildLineTable.tsx:199 msgid "Show consumable lines" msgstr "" -#: src/tables/build/BuildLineTable.tsx:203 +#: src/tables/build/BuildLineTable.tsx:204 msgid "Show optional lines" msgstr "" -#: src/tables/build/BuildLineTable.tsx:212 +#: src/tables/build/BuildLineTable.tsx:213 #: src/tables/part/PartTable.tsx:233 msgid "Testable" msgstr "" -#: src/tables/build/BuildLineTable.tsx:217 +#: src/tables/build/BuildLineTable.tsx:218 #: src/tables/stock/StockItemTable.tsx:388 msgid "Tracked" msgstr "" -#: src/tables/build/BuildLineTable.tsx:218 +#: src/tables/build/BuildLineTable.tsx:219 msgid "Show tracked lines" msgstr "" -#: src/tables/build/BuildLineTable.tsx:223 +#: src/tables/build/BuildLineTable.tsx:224 msgid "Show items with stock on order" msgstr "" -#: src/tables/build/BuildLineTable.tsx:258 +#: src/tables/build/BuildLineTable.tsx:259 #: src/tables/sales/SalesOrderLineItemTable.tsx:172 msgid "In production" msgstr "" -#: src/tables/build/BuildLineTable.tsx:286 +#: src/tables/build/BuildLineTable.tsx:287 msgid "Insufficient stock" msgstr "" -#: src/tables/build/BuildLineTable.tsx:302 +#: src/tables/build/BuildLineTable.tsx:303 #: src/tables/sales/SalesOrderLineItemTable.tsx:160 #: src/tables/stock/StockItemTable.tsx:191 msgid "No stock available" msgstr "" -#: src/tables/build/BuildLineTable.tsx:375 +#: src/tables/build/BuildLineTable.tsx:376 msgid "Gets Inherited" msgstr "" -#: src/tables/build/BuildLineTable.tsx:388 +#: src/tables/build/BuildLineTable.tsx:389 msgid "Unit Quantity" msgstr "" -#: src/tables/build/BuildLineTable.tsx:415 +#: src/tables/build/BuildLineTable.tsx:416 msgid "Setup Quantity" msgstr "" -#: src/tables/build/BuildLineTable.tsx:424 +#: src/tables/build/BuildLineTable.tsx:425 msgid "Attrition" msgstr "" -#: src/tables/build/BuildLineTable.tsx:432 +#: src/tables/build/BuildLineTable.tsx:433 msgid "Rounding Multiple" msgstr "" -#: src/tables/build/BuildLineTable.tsx:441 +#: src/tables/build/BuildLineTable.tsx:442 msgid "BOM Information" msgstr "" -#: src/tables/build/BuildLineTable.tsx:515 +#: src/tables/build/BuildLineTable.tsx:516 #: src/tables/part/PartBuildAllocationsTable.tsx:102 msgid "Fully allocated" msgstr "" -#: src/tables/build/BuildLineTable.tsx:563 +#: src/tables/build/BuildLineTable.tsx:564 #: src/tables/sales/SalesOrderLineItemTable.tsx:311 msgid "Create Build Order" msgstr "" -#: src/tables/build/BuildLineTable.tsx:592 +#: src/tables/build/BuildLineTable.tsx:593 msgid "Auto allocation in progress" msgstr "" -#: src/tables/build/BuildLineTable.tsx:595 -#: src/tables/build/BuildLineTable.tsx:802 +#: src/tables/build/BuildLineTable.tsx:596 +#: src/tables/build/BuildLineTable.tsx:809 msgid "Auto Allocate Stock" msgstr "" -#: src/tables/build/BuildLineTable.tsx:596 +#: src/tables/build/BuildLineTable.tsx:597 msgid "Automatically allocate stock to this build according to the selected options" msgstr "" -#: src/tables/build/BuildLineTable.tsx:616 -#: src/tables/build/BuildLineTable.tsx:630 -#: src/tables/build/BuildLineTable.tsx:751 -#: src/tables/build/BuildLineTable.tsx:852 +#: src/tables/build/BuildLineTable.tsx:617 +#: src/tables/build/BuildLineTable.tsx:631 +#: src/tables/build/BuildLineTable.tsx:758 +#: src/tables/build/BuildLineTable.tsx:859 #: src/tables/build/BuildOutputTable.tsx:355 #: src/tables/build/BuildOutputTable.tsx:360 msgid "Deallocate Stock" msgstr "" -#: src/tables/build/BuildLineTable.tsx:632 +#: src/tables/build/BuildLineTable.tsx:633 msgid "Deallocate all untracked stock for this build order" msgstr "" -#: src/tables/build/BuildLineTable.tsx:634 +#: src/tables/build/BuildLineTable.tsx:635 msgid "Deallocate stock from the selected line item" msgstr "" -#: src/tables/build/BuildLineTable.tsx:638 +#: src/tables/build/BuildLineTable.tsx:639 msgid "Stock has been deallocated" msgstr "" -#: src/tables/build/BuildLineTable.tsx:771 +#: src/tables/build/BuildLineTable.tsx:778 msgid "Build Stock" msgstr "" -#: src/tables/build/BuildLineTable.tsx:784 +#: src/tables/build/BuildLineTable.tsx:791 #: src/tables/sales/SalesOrderLineItemTable.tsx:487 msgid "View Part" msgstr "" @@ -9739,7 +9823,7 @@ msgid "Serialize Build Output" msgstr "" #: src/tables/build/BuildOutputTable.tsx:405 -#: src/tables/part/PartTestResultTable.tsx:310 +#: src/tables/part/PartTestResultTable.tsx:318 #: src/tables/stock/StockItemTable.tsx:328 msgid "Filter by stock status" msgstr "" @@ -9964,8 +10048,8 @@ msgid "View Item" msgstr "" #: src/tables/general/ExtraLineItemTable.tsx:95 -#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:299 -#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:403 +#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:300 +#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:405 #: src/tables/sales/ReturnOrderLineItemTable.tsx:83 #: src/tables/sales/ReturnOrderLineItemTable.tsx:187 #: src/tables/sales/SalesOrderLineItemTable.tsx:252 @@ -9974,14 +10058,14 @@ msgid "Add Line Item" msgstr "" #: src/tables/general/ExtraLineItemTable.tsx:108 -#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:320 +#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:322 #: src/tables/sales/ReturnOrderLineItemTable.tsx:96 #: src/tables/sales/SalesOrderLineItemTable.tsx:271 msgid "Edit Line Item" msgstr "" #: src/tables/general/ExtraLineItemTable.tsx:117 -#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:329 +#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:331 #: src/tables/sales/ReturnOrderLineItemTable.tsx:105 #: src/tables/sales/SalesOrderLineItemTable.tsx:280 msgid "Delete Line Item" @@ -9991,6 +10075,137 @@ msgstr "" msgid "Add Extra Line Item" msgstr "" +#: src/tables/general/ParameterTable.tsx:88 +msgid "Internal Units" +msgstr "" + +#: src/tables/general/ParameterTable.tsx:108 +#: src/tables/general/ParameterTable.tsx:123 +msgid "Updated By" +msgstr "" + +#: src/tables/general/ParameterTable.tsx:118 +msgid "Show parameters for enabled templates" +msgstr "" + +#: src/tables/general/ParameterTable.tsx:124 +msgid "Filter by user who last updated the parameter" +msgstr "" + +#: src/tables/general/ParameterTable.tsx:154 +msgid "Import Parameters" +msgstr "" + +#: src/tables/general/ParameterTable.tsx:164 +#: src/tables/general/ParametricDataTable.tsx:261 +#: src/tables/general/ParametricDataTable.tsx:392 +msgid "Add Parameter" +msgstr "" + +#: src/tables/general/ParameterTable.tsx:175 +#: src/tables/general/ParameterTable.tsx:222 +#: src/tables/general/ParametricDataTable.tsx:285 +msgid "Edit Parameter" +msgstr "" + +#: src/tables/general/ParameterTable.tsx:183 +#: src/tables/general/ParameterTable.tsx:230 +msgid "Delete Parameter" +msgstr "" + +#: src/tables/general/ParameterTable.tsx:191 +msgid "Add Parameters" +msgstr "" + +#: src/tables/general/ParameterTable.tsx:197 +msgid "Create Parameter" +msgstr "" + +#: src/tables/general/ParameterTable.tsx:199 +msgid "Create a new parameter" +msgstr "" + +#: src/tables/general/ParameterTable.tsx:208 +msgid "Import parameters from a file" +msgstr "" + +#: src/tables/general/ParameterTemplateTable.tsx:48 +#: src/tables/general/ParameterTemplateTable.tsx:197 +msgid "Add Parameter Template" +msgstr "" + +#: src/tables/general/ParameterTemplateTable.tsx:64 +msgid "Duplicate Parameter Template" +msgstr "" + +#: src/tables/general/ParameterTemplateTable.tsx:78 +msgid "Delete Parameter Template" +msgstr "" + +#: src/tables/general/ParameterTemplateTable.tsx:85 +msgid "Edit Parameter Template" +msgstr "" + +#: src/tables/general/ParameterTemplateTable.tsx:138 +msgid "Checkbox" +msgstr "" + +#: src/tables/general/ParameterTemplateTable.tsx:139 +msgid "Show checkbox templates" +msgstr "" + +#: src/tables/general/ParameterTemplateTable.tsx:143 +msgid "Has choices" +msgstr "" + +#: src/tables/general/ParameterTemplateTable.tsx:144 +msgid "Show templates with choices" +msgstr "" + +#: src/tables/general/ParameterTemplateTable.tsx:148 +#: src/tables/part/PartTable.tsx:245 +msgid "Has Units" +msgstr "" + +#: src/tables/general/ParameterTemplateTable.tsx:149 +msgid "Show templates with units" +msgstr "" + +#: src/tables/general/ParameterTemplateTable.tsx:154 +msgid "Show enabled templates" +msgstr "" + +#: src/tables/general/ParameterTemplateTable.tsx:158 +#: src/tables/settings/ImportSessionTable.tsx:111 +#: src/tables/settings/TemplateTable.tsx:368 +msgid "Model Type" +msgstr "" + +#: src/tables/general/ParameterTemplateTable.tsx:159 +msgid "Filter by model type" +msgstr "" + +#: src/tables/general/ParametricDataTable.tsx:79 +msgid "Click to edit" +msgstr "" + +#: src/tables/general/ParametricDataTableFilters.tsx:36 +msgid "True" +msgstr "" + +#: src/tables/general/ParametricDataTableFilters.tsx:37 +msgid "False" +msgstr "" + +#: src/tables/general/ParametricDataTableFilters.tsx:47 +#: src/tables/general/ParametricDataTableFilters.tsx:80 +msgid "Select a choice" +msgstr "" + +#: src/tables/general/ParametricDataTableFilters.tsx:100 +msgid "Enter a value" +msgstr "" + #: src/tables/machine/MachineListTable.tsx:133 msgid "Machine restarted" msgstr "" @@ -10071,7 +10286,7 @@ msgid "Initialized" msgstr "" #: src/tables/machine/MachineListTable.tsx:410 -#: src/tables/machine/MachineTypeTable.tsx:307 +#: src/tables/machine/MachineTypeTable.tsx:305 msgid "No errors reported" msgstr "" @@ -10132,15 +10347,15 @@ msgstr "" #~ msgid "Machine type information" #~ msgstr "Machine type information" -#: src/tables/machine/MachineTypeTable.tsx:128 +#: src/tables/machine/MachineTypeTable.tsx:126 msgid "Not Found" msgstr "" -#: src/tables/machine/MachineTypeTable.tsx:131 +#: src/tables/machine/MachineTypeTable.tsx:129 msgid "Machine type not found." msgstr "" -#: src/tables/machine/MachineTypeTable.tsx:141 +#: src/tables/machine/MachineTypeTable.tsx:139 msgid "Machine Type Information" msgstr "" @@ -10148,34 +10363,34 @@ msgstr "" #~ msgid "Available drivers" #~ msgstr "Available drivers" -#: src/tables/machine/MachineTypeTable.tsx:156 -#: src/tables/machine/MachineTypeTable.tsx:255 +#: src/tables/machine/MachineTypeTable.tsx:154 +#: src/tables/machine/MachineTypeTable.tsx:253 msgid "Slug" msgstr "" -#: src/tables/machine/MachineTypeTable.tsx:167 -#: src/tables/machine/MachineTypeTable.tsx:276 +#: src/tables/machine/MachineTypeTable.tsx:165 +#: src/tables/machine/MachineTypeTable.tsx:274 msgid "Provider plugin" msgstr "" -#: src/tables/machine/MachineTypeTable.tsx:179 -#: src/tables/machine/MachineTypeTable.tsx:288 +#: src/tables/machine/MachineTypeTable.tsx:177 +#: src/tables/machine/MachineTypeTable.tsx:286 msgid "Provider file" msgstr "" -#: src/tables/machine/MachineTypeTable.tsx:194 +#: src/tables/machine/MachineTypeTable.tsx:192 msgid "Available Drivers" msgstr "" -#: src/tables/machine/MachineTypeTable.tsx:234 +#: src/tables/machine/MachineTypeTable.tsx:232 msgid "Machine driver not found." msgstr "" -#: src/tables/machine/MachineTypeTable.tsx:242 +#: src/tables/machine/MachineTypeTable.tsx:240 msgid "Machine driver information" msgstr "" -#: src/tables/machine/MachineTypeTable.tsx:262 +#: src/tables/machine/MachineTypeTable.tsx:260 msgid "Machine type" msgstr "" @@ -10187,15 +10402,15 @@ msgstr "" #~ msgid "Machine driver detail" #~ msgstr "Machine driver detail" -#: src/tables/machine/MachineTypeTable.tsx:362 +#: src/tables/machine/MachineTypeTable.tsx:360 msgid "Builtin type" msgstr "" -#: src/tables/machine/MachineTypeTable.tsx:371 +#: src/tables/machine/MachineTypeTable.tsx:369 msgid "Machine Type Detail" msgstr "" -#: src/tables/machine/MachineTypeTable.tsx:381 +#: src/tables/machine/MachineTypeTable.tsx:379 msgid "Machine Driver Detail" msgstr "" @@ -10213,8 +10428,16 @@ msgstr "" msgid "Message" msgstr "" -#: src/tables/part/ParametricPartTable.tsx:78 -msgid "Click to edit" +#: src/tables/part/ParametricPartTable.tsx:20 +msgid "Show active parts" +msgstr "" + +#: src/tables/part/ParametricPartTable.tsx:25 +msgid "Show locked parts" +msgstr "" + +#: src/tables/part/ParametricPartTable.tsx:30 +msgid "Show assembly parts" msgstr "" #: src/tables/part/ParametricPartTable.tsx:82 @@ -10222,43 +10445,14 @@ msgstr "" #~ msgstr "Edit parameter" #: src/tables/part/ParametricPartTable.tsx:244 -msgid "Add Part Parameter" -msgstr "" +#~ msgid "Add Part Parameter" +#~ msgstr "Add Part Parameter" #: src/tables/part/ParametricPartTable.tsx:258 #: src/tables/part/PartParameterTable.tsx:164 #: src/tables/part/PartParameterTable.tsx:187 -msgid "Edit Part Parameter" -msgstr "" - -#: src/tables/part/ParametricPartTable.tsx:355 -msgid "Show active parts" -msgstr "" - -#: src/tables/part/ParametricPartTable.tsx:360 -msgid "Show locked parts" -msgstr "" - -#: src/tables/part/ParametricPartTable.tsx:365 -msgid "Show assembly parts" -msgstr "" - -#: src/tables/part/ParametricPartTableFilters.tsx:36 -msgid "True" -msgstr "" - -#: src/tables/part/ParametricPartTableFilters.tsx:37 -msgid "False" -msgstr "" - -#: src/tables/part/ParametricPartTableFilters.tsx:47 -#: src/tables/part/ParametricPartTableFilters.tsx:80 -msgid "Select a choice" -msgstr "" - -#: src/tables/part/ParametricPartTableFilters.tsx:100 -msgid "Enter a value" -msgstr "" +#~ msgid "Edit Part Parameter" +#~ msgstr "Edit Part Parameter" #: src/tables/part/PartBuildAllocationsTable.tsx:64 msgid "Assembly IPN" @@ -10273,7 +10467,7 @@ msgid "Required Stock" msgstr "" #: src/tables/part/PartBuildAllocationsTable.tsx:124 -#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:381 +#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:383 msgid "View Build Order" msgstr "" @@ -10332,85 +10526,22 @@ msgstr "" msgid "Delete Category Parameter" msgstr "" -#: src/tables/part/PartCategoryTemplateTable.tsx:87 -msgid "Parameter Template" -msgstr "" - #: src/tables/part/PartCategoryTemplateTable.tsx:93 #~ msgid "[{0}]" #~ msgstr "[{0}]" -#: src/tables/part/PartParameterTable.tsx:108 -msgid "Internal Units" -msgstr "" - -#: src/tables/part/PartParameterTable.tsx:128 -#: src/tables/part/PartParameterTable.tsx:138 -msgid "Updated By" -msgstr "" - -#: src/tables/part/PartParameterTable.tsx:139 -msgid "Filter by user who last updated the parameter" -msgstr "" - #: src/tables/part/PartParameterTable.tsx:148 -msgid "New Part Parameter" -msgstr "" +#~ msgid "New Part Parameter" +#~ msgstr "New Part Parameter" #: src/tables/part/PartParameterTable.tsx:173 #: src/tables/part/PartParameterTable.tsx:195 -msgid "Delete Part Parameter" -msgstr "" +#~ msgid "Delete Part Parameter" +#~ msgstr "Delete Part Parameter" #: src/tables/part/PartParameterTable.tsx:213 -msgid "Add parameter" -msgstr "" - -#: src/tables/part/PartParameterTable.tsx:232 -msgid "Part parameters cannot be edited, as the part is locked" -msgstr "" - -#: src/tables/part/PartParameterTemplateTable.tsx:36 -msgid "Checkbox" -msgstr "" - -#: src/tables/part/PartParameterTemplateTable.tsx:37 -msgid "Show checkbox templates" -msgstr "" - -#: src/tables/part/PartParameterTemplateTable.tsx:41 -msgid "Has choices" -msgstr "" - -#: src/tables/part/PartParameterTemplateTable.tsx:42 -msgid "Show templates with choices" -msgstr "" - -#: src/tables/part/PartParameterTemplateTable.tsx:46 -#: src/tables/part/PartTable.tsx:245 -msgid "Has Units" -msgstr "" - -#: src/tables/part/PartParameterTemplateTable.tsx:47 -msgid "Show templates with units" -msgstr "" - -#: src/tables/part/PartParameterTemplateTable.tsx:91 -#: src/tables/part/PartParameterTemplateTable.tsx:166 -msgid "Add Parameter Template" -msgstr "" - -#: src/tables/part/PartParameterTemplateTable.tsx:105 -msgid "Duplicate Parameter Template" -msgstr "" - -#: src/tables/part/PartParameterTemplateTable.tsx:117 -msgid "Edit Parameter Template" -msgstr "" - -#: src/tables/part/PartParameterTemplateTable.tsx:128 -msgid "Delete Parameter Template" -msgstr "" +#~ msgid "Add parameter" +#~ msgstr "Add parameter" #: src/tables/part/PartParameterTemplateTable.tsx:141 #~ msgid "Add parameter template" @@ -10430,7 +10561,7 @@ msgid "Show received items" msgstr "" #: src/tables/part/PartSalesAllocationsTable.tsx:90 -#: src/tables/sales/SalesOrderShipmentTable.tsx:218 +#: src/tables/sales/SalesOrderShipmentTable.tsx:263 msgid "View Sales Order" msgstr "" @@ -10617,8 +10748,8 @@ msgstr "" #: src/tables/part/PartTestResultTable.tsx:103 #: src/tables/part/PartTestResultTable.tsx:181 -#: src/tables/part/PartTestResultTable.tsx:320 -#: src/tables/part/PartTestResultTable.tsx:334 +#: src/tables/part/PartTestResultTable.tsx:328 +#: src/tables/part/PartTestResultTable.tsx:342 #: src/tables/stock/StockItemTestResultTable.tsx:296 #: src/tables/stock/StockItemTestResultTable.tsx:368 #: src/tables/stock/StockItemTestResultTable.tsx:429 @@ -10643,7 +10774,7 @@ msgstr "" msgid "No Result" msgstr "" -#: src/tables/part/PartTestResultTable.tsx:298 +#: src/tables/part/PartTestResultTable.tsx:306 msgid "Show build outputs currently in production" msgstr "" @@ -11013,36 +11144,45 @@ msgstr "" #~ msgid "Parameter updated" #~ msgstr "Parameter updated" -#: src/tables/purchasing/ManufacturerPartParameterTable.tsx:63 -#: src/tables/purchasing/ManufacturerPartParameterTable.tsx:112 -msgid "Add Parameter" -msgstr "" - #: src/tables/purchasing/ManufacturerPartParameterTable.tsx:73 #~ msgid "Parameter deleted" #~ msgstr "Parameter deleted" -#: src/tables/purchasing/ManufacturerPartParameterTable.tsx:74 -msgid "Edit Parameter" -msgstr "" - #: src/tables/purchasing/ManufacturerPartParameterTable.tsx:74 #~ msgid "Are you sure you want to delete this parameter?" #~ msgstr "Are you sure you want to delete this parameter?" -#: src/tables/purchasing/ManufacturerPartParameterTable.tsx:82 -msgid "Delete Parameter" +#: src/tables/purchasing/ManufacturerPartParametricTable.tsx:34 +#: src/tables/purchasing/ManufacturerPartTable.tsx:82 +#: src/tables/purchasing/SupplierPartTable.tsx:99 +msgid "MPN" +msgstr "" + +#: src/tables/purchasing/ManufacturerPartParametricTable.tsx:44 +#: src/tables/purchasing/ManufacturerPartTable.tsx:134 +#: src/tables/purchasing/SupplierPartTable.tsx:220 +msgid "Active Part" +msgstr "" + +#: src/tables/purchasing/ManufacturerPartParametricTable.tsx:45 +#: src/tables/purchasing/ManufacturerPartTable.tsx:135 +msgid "Show manufacturer parts for active internal parts." +msgstr "" + +#: src/tables/purchasing/ManufacturerPartParametricTable.tsx:50 +#: src/tables/purchasing/ManufacturerPartTable.tsx:140 +msgid "Active Manufacturer" +msgstr "" + +#: src/tables/purchasing/ManufacturerPartParametricTable.tsx:51 +#: src/tables/purchasing/ManufacturerPartTable.tsx:142 +msgid "Show manufacturer parts for active manufacturers." msgstr "" #: src/tables/purchasing/ManufacturerPartTable.tsx:63 #~ msgid "Create Manufacturer Part" #~ msgstr "Create Manufacturer Part" -#: src/tables/purchasing/ManufacturerPartTable.tsx:82 -#: src/tables/purchasing/SupplierPartTable.tsx:99 -msgid "MPN" -msgstr "" - #: src/tables/purchasing/ManufacturerPartTable.tsx:100 #~ msgid "Manufacturer part updated" #~ msgstr "Manufacturer part updated" @@ -11055,25 +11195,8 @@ msgstr "" #~ msgid "Are you sure you want to remove this manufacturer part?" #~ msgstr "Are you sure you want to remove this manufacturer part?" -#: src/tables/purchasing/ManufacturerPartTable.tsx:134 -#: src/tables/purchasing/SupplierPartTable.tsx:220 -msgid "Active Part" -msgstr "" - -#: src/tables/purchasing/ManufacturerPartTable.tsx:135 -msgid "Show manufacturer parts for active internal parts." -msgstr "" - -#: src/tables/purchasing/ManufacturerPartTable.tsx:140 -msgid "Active Manufacturer" -msgstr "" - -#: src/tables/purchasing/ManufacturerPartTable.tsx:142 -msgid "Show manufacturer parts for active manufacturers." -msgstr "" - #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:115 -#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:397 +#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:399 msgid "Import Line Items" msgstr "" @@ -11099,11 +11222,11 @@ msgstr "" #~ msgid "Add line item" #~ msgstr "Add line item" -#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:350 +#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:352 msgid "Receive line item" msgstr "" -#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:414 +#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:416 msgid "Receive items" msgstr "" @@ -11201,25 +11324,25 @@ msgid "Not shipped" msgstr "" #: src/tables/sales/SalesOrderAllocationTable.tsx:211 -#: src/tables/sales/SalesOrderAllocationTable.tsx:229 +#: src/tables/sales/SalesOrderAllocationTable.tsx:235 msgid "Edit Allocation" msgstr "" #: src/tables/sales/SalesOrderAllocationTable.tsx:218 #: src/tables/sales/SalesOrderAllocationTable.tsx:241 -msgid "Delete Allocation" -msgstr "" +#~ msgid "Delete Allocation" +#~ msgstr "Delete Allocation" -#: src/tables/sales/SalesOrderAllocationTable.tsx:252 -#: src/tables/sales/SalesOrderAllocationTable.tsx:253 +#: src/tables/sales/SalesOrderAllocationTable.tsx:261 +#: src/tables/sales/SalesOrderAllocationTable.tsx:262 msgid "View Shipment" msgstr "" -#: src/tables/sales/SalesOrderAllocationTable.tsx:308 +#: src/tables/sales/SalesOrderAllocationTable.tsx:317 msgid "Assign to Shipment" msgstr "" -#: src/tables/sales/SalesOrderAllocationTable.tsx:324 +#: src/tables/sales/SalesOrderAllocationTable.tsx:333 msgid "Assign to shipment" msgstr "" @@ -11259,35 +11382,35 @@ msgstr "" #~ msgid "Delete Shipment" #~ msgstr "Delete Shipment" -#: src/tables/sales/SalesOrderShipmentTable.tsx:72 +#: src/tables/sales/SalesOrderShipmentTable.tsx:79 msgid "Create Shipment" msgstr "" -#: src/tables/sales/SalesOrderShipmentTable.tsx:143 +#: src/tables/sales/SalesOrderShipmentTable.tsx:164 msgid "Items" msgstr "" -#: src/tables/sales/SalesOrderShipmentTable.tsx:203 +#: src/tables/sales/SalesOrderShipmentTable.tsx:248 msgid "Edit shipment" msgstr "" -#: src/tables/sales/SalesOrderShipmentTable.tsx:211 +#: src/tables/sales/SalesOrderShipmentTable.tsx:256 msgid "Cancel shipment" msgstr "" -#: src/tables/sales/SalesOrderShipmentTable.tsx:241 +#: src/tables/sales/SalesOrderShipmentTable.tsx:286 msgid "Add shipment" msgstr "" -#: src/tables/sales/SalesOrderShipmentTable.tsx:255 +#: src/tables/sales/SalesOrderShipmentTable.tsx:300 msgid "Show shipments which have been checked" msgstr "" -#: src/tables/sales/SalesOrderShipmentTable.tsx:260 +#: src/tables/sales/SalesOrderShipmentTable.tsx:305 msgid "Show shipments which have been shipped" msgstr "" -#: src/tables/sales/SalesOrderShipmentTable.tsx:265 +#: src/tables/sales/SalesOrderShipmentTable.tsx:310 msgid "Show shipments which have been delivered" msgstr "" @@ -11621,11 +11744,6 @@ msgstr "" msgid "Imported Rows" msgstr "" -#: src/tables/settings/ImportSessionTable.tsx:111 -#: src/tables/settings/TemplateTable.tsx:368 -msgid "Model Type" -msgstr "" - #: src/tables/settings/ImportSessionTable.tsx:112 #: src/tables/settings/TemplateTable.tsx:369 msgid "Filter by target model type" diff --git a/src/frontend/src/locales/ru/messages.po b/src/frontend/src/locales/ru/messages.po index c7bec7243f..d4f75fbf5b 100644 --- a/src/frontend/src/locales/ru/messages.po +++ b/src/frontend/src/locales/ru/messages.po @@ -8,7 +8,7 @@ msgstr "" "Language: ru\n" "Project-Id-Version: inventree\n" "Report-Msgid-Bugs-To: \n" -"PO-Revision-Date: 2025-11-19 19:39\n" +"PO-Revision-Date: 2025-12-07 07:36\n" "Last-Translator: \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" @@ -30,7 +30,7 @@ msgid "Edit" msgstr "Редактировать" #: lib/components/RowActions.tsx:56 -#: src/components/forms/ApiForm.tsx:735 +#: src/components/forms/ApiForm.tsx:754 #: src/components/items/ActionDropdown.tsx:257 #: src/components/items/RoleTable.tsx:155 #: src/hooks/UseForm.tsx:164 @@ -56,24 +56,24 @@ msgstr "Отменить" #: lib/components/RowActions.tsx:136 #: src/components/nav/NavigationDrawer.tsx:190 -#: src/forms/PurchaseOrderForms.tsx:802 +#: src/forms/PurchaseOrderForms.tsx:854 #: src/forms/StockForms.tsx:796 #: src/forms/StockForms.tsx:843 -#: src/forms/StockForms.tsx:889 -#: src/forms/StockForms.tsx:928 -#: src/forms/StockForms.tsx:964 -#: src/forms/StockForms.tsx:1050 +#: src/forms/StockForms.tsx:896 +#: src/forms/StockForms.tsx:942 +#: src/forms/StockForms.tsx:980 +#: src/forms/StockForms.tsx:1066 #: src/pages/Index/Settings/AccountSettings/MFASettings.tsx:962 msgid "Actions" msgstr "Действия" #: lib/components/SearchInput.tsx:34 -#: src/components/forms/fields/RelatedModelField.tsx:408 +#: src/components/forms/fields/RelatedModelField.tsx:479 #: src/components/nav/Header.tsx:169 #: src/components/wizards/ImportPartWizard.tsx:200 #: src/components/wizards/ImportPartWizard.tsx:233 -#: src/pages/Index/Settings/UserSettings.tsx:74 -#: src/pages/part/PartDetail.tsx:1155 +#: src/pages/Index/Settings/UserSettings.tsx:75 +#: src/pages/part/PartDetail.tsx:1176 msgid "Search" msgstr "Поиск" @@ -95,7 +95,7 @@ msgstr "Да" msgid "No" msgstr "Нет" -#: lib/enums/ModelInformation.tsx:28 +#: lib/enums/ModelInformation.tsx:29 #: src/components/wizards/OrderPartsWizard.tsx:279 #: src/forms/BuildForms.tsx:332 #: src/forms/BuildForms.tsx:407 @@ -103,208 +103,234 @@ msgstr "Нет" #: src/forms/BuildForms.tsx:630 #: src/forms/BuildForms.tsx:793 #: src/forms/BuildForms.tsx:896 -#: src/forms/PurchaseOrderForms.tsx:798 +#: src/forms/PurchaseOrderForms.tsx:850 #: src/forms/ReturnOrderForms.tsx:242 -#: src/forms/SalesOrderForms.tsx:305 +#: src/forms/SalesOrderForms.tsx:384 #: src/forms/StockForms.tsx:360 #: src/forms/StockForms.tsx:791 #: src/forms/StockForms.tsx:838 -#: src/forms/StockForms.tsx:884 -#: src/forms/StockForms.tsx:923 -#: src/forms/StockForms.tsx:959 -#: src/forms/StockForms.tsx:1002 -#: src/forms/StockForms.tsx:1046 -#: src/forms/StockForms.tsx:1094 -#: src/forms/StockForms.tsx:1138 -#: src/pages/build/BuildDetail.tsx:200 -#: src/pages/part/PartDetail.tsx:1207 +#: src/forms/StockForms.tsx:891 +#: src/forms/StockForms.tsx:937 +#: src/forms/StockForms.tsx:975 +#: src/forms/StockForms.tsx:1018 +#: src/forms/StockForms.tsx:1062 +#: src/forms/StockForms.tsx:1110 +#: src/forms/StockForms.tsx:1154 +#: src/pages/build/BuildDetail.tsx:201 +#: src/pages/part/PartDetail.tsx:1228 #: src/tables/ColumnRenderers.tsx:91 +#: src/tables/part/PartTestResultTable.tsx:247 #: src/tables/part/RelatedPartTable.tsx:53 #: src/tables/stock/StockTrackingTable.tsx:87 msgid "Part" msgstr "Деталь" -#: lib/enums/ModelInformation.tsx:29 +#: lib/enums/ModelInformation.tsx:30 #: lib/enums/Roles.tsx:35 #: src/components/nav/NavigationDrawer.tsx:70 #: src/defaults/links.tsx:36 -#: src/pages/Index/Settings/SystemSettings.tsx:190 -#: src/pages/part/CategoryDetail.tsx:132 -#: src/pages/part/CategoryDetail.tsx:277 -#: src/pages/part/CategoryDetail.tsx:323 -#: src/pages/part/CategoryDetail.tsx:354 -#: src/pages/part/PartDetail.tsx:965 +#: src/pages/Index/Settings/SystemSettings.tsx:197 +#: src/pages/part/CategoryDetail.tsx:135 +#: src/pages/part/CategoryDetail.tsx:285 +#: src/pages/part/CategoryDetail.tsx:340 +#: src/pages/part/CategoryDetail.tsx:371 +#: src/pages/part/PartDetail.tsx:978 msgid "Parts" msgstr "Детали" #: lib/enums/ModelInformation.tsx:37 #: src/pages/Index/Settings/AdminCenter/PartParameterPanel.tsx:13 -msgid "Part Parameter Template" -msgstr "Шаблон параметров деталей" +#~ msgid "Part Parameter Template" +#~ msgstr "Part Parameter Template" #: lib/enums/ModelInformation.tsx:38 -msgid "Part Parameter Templates" -msgstr "Шаблоны параметров деталей" +#~ msgid "Part Parameter Templates" +#~ msgstr "Part Parameter Templates" + +#: lib/enums/ModelInformation.tsx:39 +msgid "Parameter" +msgstr "" + +#: lib/enums/ModelInformation.tsx:40 +#: src/components/panels/ParametersPanel.tsx:19 +#: src/components/wizards/ImportPartWizard.tsx:807 +#: src/pages/Index/Settings/AdminCenter/Index.tsx:195 +#: src/pages/Index/Settings/SystemSettings.tsx:191 +#: src/pages/part/PartDetail.tsx:943 +msgid "Parameters" +msgstr "Параметры" #: lib/enums/ModelInformation.tsx:45 +#: src/tables/part/PartCategoryTemplateTable.tsx:87 +msgid "Parameter Template" +msgstr "Шаблон параметра" + +#: lib/enums/ModelInformation.tsx:46 +#: src/pages/Index/Settings/AdminCenter/ParameterPanel.tsx:13 +msgid "Parameter Templates" +msgstr "" + +#: lib/enums/ModelInformation.tsx:52 msgid "Part Test Template" msgstr "Шаблон теста детали" -#: lib/enums/ModelInformation.tsx:46 +#: lib/enums/ModelInformation.tsx:53 msgid "Part Test Templates" msgstr "Шаблоны тестов детали" -#: lib/enums/ModelInformation.tsx:52 +#: lib/enums/ModelInformation.tsx:59 #: src/components/wizards/OrderPartsWizard.tsx:290 -#: src/pages/company/SupplierPartDetail.tsx:413 +#: src/pages/company/SupplierPartDetail.tsx:418 #: src/pages/stock/StockDetail.tsx:289 -#: src/tables/build/BuildAllocatedStockTable.tsx:155 +#: src/tables/build/BuildAllocatedStockTable.tsx:152 #: src/tables/part/PartPurchaseOrdersTable.tsx:50 +#: src/tables/purchasing/SupplierPartParametricTable.tsx:29 #: src/tables/purchasing/SupplierPartTable.tsx:83 #: src/tables/stock/StockItemTable.tsx:247 msgid "Supplier Part" msgstr "Деталь поставщика" -#: lib/enums/ModelInformation.tsx:53 -#: src/pages/purchasing/PurchasingIndex.tsx:92 +#: lib/enums/ModelInformation.tsx:60 +#: src/pages/purchasing/PurchasingIndex.tsx:128 msgid "Supplier Parts" msgstr "Детали поставщиков" -#: lib/enums/ModelInformation.tsx:61 -#: src/pages/company/ManufacturerPartDetail.tsx:297 -#: src/pages/company/SupplierPartDetail.tsx:161 +#: lib/enums/ModelInformation.tsx:69 +#: src/pages/company/ManufacturerPartDetail.tsx:288 +#: src/pages/company/SupplierPartDetail.tsx:162 #: src/tables/part/PartPurchaseOrdersTable.tsx:56 #: src/tables/stock/StockItemTable.tsx:253 msgid "Manufacturer Part" msgstr "Деталь производителя" -#: lib/enums/ModelInformation.tsx:62 -#: src/pages/purchasing/PurchasingIndex.tsx:109 +#: lib/enums/ModelInformation.tsx:70 +#: src/pages/purchasing/PurchasingIndex.tsx:177 msgid "Manufacturer Parts" msgstr "Детали производителей" -#: lib/enums/ModelInformation.tsx:70 -#: src/pages/part/CategoryDetail.tsx:354 +#: lib/enums/ModelInformation.tsx:79 +#: src/pages/part/CategoryDetail.tsx:371 #: src/tables/Filter.tsx:389 msgid "Part Category" msgstr "Категория детали" -#: lib/enums/ModelInformation.tsx:71 +#: lib/enums/ModelInformation.tsx:80 #: lib/enums/Roles.tsx:37 -#: src/pages/part/CategoryDetail.tsx:271 -#: src/pages/part/CategoryDetail.tsx:345 -#: src/pages/part/PartDetail.tsx:1196 +#: src/pages/part/CategoryDetail.tsx:279 +#: src/pages/part/CategoryDetail.tsx:362 +#: src/pages/part/PartDetail.tsx:1217 msgid "Part Categories" msgstr "Категории деталей" -#: lib/enums/ModelInformation.tsx:79 +#: lib/enums/ModelInformation.tsx:88 #: src/forms/BuildForms.tsx:473 #: src/forms/BuildForms.tsx:633 #: src/forms/BuildForms.tsx:794 -#: src/forms/SalesOrderForms.tsx:307 +#: src/forms/SalesOrderForms.tsx:386 #: src/pages/stock/StockDetail.tsx:1005 -#: src/tables/part/PartTestResultTable.tsx:248 +#: src/tables/part/PartTestResultTable.tsx:256 #: src/tables/stock/StockTrackingTable.tsx:48 #: src/tables/stock/StockTrackingTable.tsx:55 msgid "Stock Item" msgstr "Складская позиция" -#: lib/enums/ModelInformation.tsx:80 +#: lib/enums/ModelInformation.tsx:89 #: lib/enums/Roles.tsx:45 -#: src/pages/company/CompanyDetail.tsx:210 -#: src/pages/part/CategoryDetail.tsx:291 +#: src/pages/company/CompanyDetail.tsx:211 +#: src/pages/part/CategoryDetail.tsx:314 #: src/pages/part/PartStockHistoryDetail.tsx:101 #: src/pages/stock/LocationDetail.tsx:121 #: src/pages/stock/LocationDetail.tsx:180 msgid "Stock Items" msgstr "Складские позиции" -#: lib/enums/ModelInformation.tsx:88 +#: lib/enums/ModelInformation.tsx:98 #: lib/enums/Roles.tsx:47 #: src/pages/stock/LocationDetail.tsx:420 msgid "Stock Location" msgstr "Место хранения" -#: lib/enums/ModelInformation.tsx:89 +#: lib/enums/ModelInformation.tsx:99 #: src/pages/stock/LocationDetail.tsx:174 #: src/pages/stock/LocationDetail.tsx:412 #: src/pages/stock/StockDetail.tsx:996 msgid "Stock Locations" msgstr "Места хранения" -#: lib/enums/ModelInformation.tsx:97 +#: lib/enums/ModelInformation.tsx:108 msgid "Stock Location Type" msgstr "Тип места хранения" -#: lib/enums/ModelInformation.tsx:98 +#: lib/enums/ModelInformation.tsx:109 msgid "Stock Location Types" msgstr "Типы места хранения" -#: lib/enums/ModelInformation.tsx:103 -#: src/pages/Index/Settings/SystemSettings.tsx:248 -#: src/pages/part/PartDetail.tsx:911 +#: lib/enums/ModelInformation.tsx:114 +#: src/pages/Index/Settings/SystemSettings.tsx:254 +#: src/pages/part/PartDetail.tsx:900 msgid "Stock History" msgstr "История склада" -#: lib/enums/ModelInformation.tsx:104 +#: lib/enums/ModelInformation.tsx:115 msgid "Stock Histories" msgstr "История складов" -#: lib/enums/ModelInformation.tsx:109 +#: lib/enums/ModelInformation.tsx:120 msgid "Build" msgstr "Сборка" -#: lib/enums/ModelInformation.tsx:110 +#: lib/enums/ModelInformation.tsx:121 msgid "Builds" msgstr "Производство" -#: lib/enums/ModelInformation.tsx:118 +#: lib/enums/ModelInformation.tsx:130 msgid "Build Line" msgstr "Линия производства" -#: lib/enums/ModelInformation.tsx:119 +#: lib/enums/ModelInformation.tsx:131 msgid "Build Lines" msgstr "Линия производства" -#: lib/enums/ModelInformation.tsx:126 +#: lib/enums/ModelInformation.tsx:138 msgid "Build Item" msgstr "Товар производства" -#: lib/enums/ModelInformation.tsx:127 +#: lib/enums/ModelInformation.tsx:139 msgid "Build Items" msgstr "Товары производства" -#: lib/enums/ModelInformation.tsx:132 -#: src/pages/company/CompanyDetail.tsx:340 +#: lib/enums/ModelInformation.tsx:144 +#: src/pages/company/CompanyDetail.tsx:345 #: src/tables/company/CompanyTable.tsx:47 #: src/tables/company/ContactTable.tsx:67 +#: src/tables/company/ParametricCompanyTable.tsx:18 msgid "Company" msgstr "Компания" -#: lib/enums/ModelInformation.tsx:133 +#: lib/enums/ModelInformation.tsx:145 msgid "Companies" msgstr "Компании" -#: lib/enums/ModelInformation.tsx:140 -#: src/pages/build/BuildDetail.tsx:316 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:253 -#: src/pages/sales/ReturnOrderDetail.tsx:231 -#: src/pages/sales/SalesOrderDetail.tsx:224 +#: lib/enums/ModelInformation.tsx:152 +#: src/pages/build/BuildDetail.tsx:317 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:254 +#: src/pages/sales/ReturnOrderDetail.tsx:232 +#: src/pages/sales/SalesOrderDetail.tsx:225 #: src/tables/ColumnRenderers.tsx:362 #: src/tables/Filter.tsx:286 #: src/tables/TableHoverCard.tsx:101 msgid "Project Code" msgstr "Код проекта" -#: lib/enums/ModelInformation.tsx:141 +#: lib/enums/ModelInformation.tsx:153 #: src/pages/Index/Settings/AdminCenter/Index.tsx:172 msgid "Project Codes" msgstr "Коды проекта" -#: lib/enums/ModelInformation.tsx:147 +#: lib/enums/ModelInformation.tsx:159 #: src/components/wizards/OrderPartsWizard.tsx:338 #: src/pages/part/pricing/PurchaseHistoryPanel.tsx:33 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:550 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:555 #: src/pages/stock/StockDetail.tsx:352 #: src/tables/part/PartPurchaseOrdersTable.tsx:32 #: src/tables/stock/StockItemTable.tsx:239 @@ -312,117 +338,117 @@ msgstr "Коды проекта" msgid "Purchase Order" msgstr "Заказ на закупку" -#: lib/enums/ModelInformation.tsx:148 +#: lib/enums/ModelInformation.tsx:160 #: lib/enums/Roles.tsx:39 #: src/defaults/actions.tsx:104 -#: src/pages/Index/Settings/SystemSettings.tsx:283 -#: src/pages/company/CompanyDetail.tsx:203 -#: src/pages/company/SupplierPartDetail.tsx:266 -#: src/pages/part/PartDetail.tsx:875 -#: src/pages/purchasing/PurchasingIndex.tsx:60 +#: src/pages/Index/Settings/SystemSettings.tsx:289 +#: src/pages/company/CompanyDetail.tsx:204 +#: src/pages/company/SupplierPartDetail.tsx:267 +#: src/pages/part/PartDetail.tsx:864 +#: src/pages/purchasing/PurchasingIndex.tsx:66 msgid "Purchase Orders" msgstr "Заказы на закупку" -#: lib/enums/ModelInformation.tsx:156 +#: lib/enums/ModelInformation.tsx:169 msgid "Purchase Order Line" msgstr "Позиция заказа на закупку" -#: lib/enums/ModelInformation.tsx:157 +#: lib/enums/ModelInformation.tsx:170 msgid "Purchase Order Lines" msgstr "Позиции заказа на закупку" -#: lib/enums/ModelInformation.tsx:162 -#: src/pages/build/BuildDetail.tsx:289 +#: lib/enums/ModelInformation.tsx:175 +#: src/pages/build/BuildDetail.tsx:290 #: src/pages/part/pricing/SaleHistoryPanel.tsx:24 -#: src/pages/sales/SalesOrderDetail.tsx:614 -#: src/pages/sales/SalesOrderShipmentDetail.tsx:105 -#: src/pages/sales/SalesOrderShipmentDetail.tsx:478 +#: src/pages/sales/SalesOrderDetail.tsx:619 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:103 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:446 #: src/pages/stock/StockDetail.tsx:361 #: src/tables/part/PartSalesAllocationsTable.tsx:41 #: src/tables/sales/SalesOrderAllocationTable.tsx:110 -#: src/tables/sales/SalesOrderShipmentTable.tsx:122 +#: src/tables/sales/SalesOrderShipmentTable.tsx:143 #: src/tables/stock/StockTrackingTable.tsx:131 msgid "Sales Order" msgstr "Заказ на продажу" -#: lib/enums/ModelInformation.tsx:163 +#: lib/enums/ModelInformation.tsx:176 #: lib/enums/Roles.tsx:43 #: src/defaults/actions.tsx:114 -#: src/pages/Index/Settings/SystemSettings.tsx:299 -#: src/pages/company/CompanyDetail.tsx:223 -#: src/pages/part/PartDetail.tsx:887 -#: src/pages/sales/SalesIndex.tsx:84 +#: src/pages/Index/Settings/SystemSettings.tsx:305 +#: src/pages/company/CompanyDetail.tsx:224 +#: src/pages/part/PartDetail.tsx:876 +#: src/pages/sales/SalesIndex.tsx:53 msgid "Sales Orders" msgstr "Заказы на продажу" -#: lib/enums/ModelInformation.tsx:171 -#: src/pages/sales/SalesOrderShipmentDetail.tsx:477 +#: lib/enums/ModelInformation.tsx:185 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:445 msgid "Sales Order Shipment" msgstr "Отправка заказа на продажу" -#: lib/enums/ModelInformation.tsx:172 +#: lib/enums/ModelInformation.tsx:186 msgid "Sales Order Shipments" msgstr "Отгрузка заказа на продажу" -#: lib/enums/ModelInformation.tsx:179 -#: src/pages/sales/ReturnOrderDetail.tsx:549 +#: lib/enums/ModelInformation.tsx:194 +#: src/pages/sales/ReturnOrderDetail.tsx:554 #: src/tables/stock/StockTrackingTable.tsx:142 msgid "Return Order" msgstr "Заказ на возврат" -#: lib/enums/ModelInformation.tsx:180 +#: lib/enums/ModelInformation.tsx:195 #: lib/enums/Roles.tsx:41 #: src/defaults/actions.tsx:125 -#: src/pages/Index/Settings/SystemSettings.tsx:316 -#: src/pages/company/CompanyDetail.tsx:230 -#: src/pages/part/PartDetail.tsx:894 -#: src/pages/sales/SalesIndex.tsx:117 +#: src/pages/Index/Settings/SystemSettings.tsx:322 +#: src/pages/company/CompanyDetail.tsx:231 +#: src/pages/part/PartDetail.tsx:883 +#: src/pages/sales/SalesIndex.tsx:99 msgid "Return Orders" msgstr "Заказы на возврат" -#: lib/enums/ModelInformation.tsx:188 +#: lib/enums/ModelInformation.tsx:204 msgid "Return Order Line Item" msgstr "Позиция заказа на возврат" -#: lib/enums/ModelInformation.tsx:189 +#: lib/enums/ModelInformation.tsx:205 msgid "Return Order Line Items" msgstr "Позиции заказа на возврат" -#: lib/enums/ModelInformation.tsx:194 +#: lib/enums/ModelInformation.tsx:210 #: src/tables/company/AddressTable.tsx:52 msgid "Address" msgstr "Адрес" -#: lib/enums/ModelInformation.tsx:195 -#: src/pages/company/CompanyDetail.tsx:264 +#: lib/enums/ModelInformation.tsx:211 +#: src/pages/company/CompanyDetail.tsx:265 msgid "Addresses" msgstr "Адреса" -#: lib/enums/ModelInformation.tsx:201 +#: lib/enums/ModelInformation.tsx:217 #: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:89 #: src/pages/core/UserDetail.tsx:135 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:229 -#: src/pages/sales/ReturnOrderDetail.tsx:207 -#: src/pages/sales/SalesOrderDetail.tsx:200 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:230 +#: src/pages/sales/ReturnOrderDetail.tsx:208 +#: src/pages/sales/SalesOrderDetail.tsx:201 msgid "Contact" msgstr "Контакт" -#: lib/enums/ModelInformation.tsx:202 -#: src/pages/company/CompanyDetail.tsx:258 +#: lib/enums/ModelInformation.tsx:218 +#: src/pages/company/CompanyDetail.tsx:259 #: src/pages/core/CoreIndex.tsx:33 msgid "Contacts" msgstr "Контакты" -#: lib/enums/ModelInformation.tsx:208 +#: lib/enums/ModelInformation.tsx:224 #: src/tables/ColumnRenderers.tsx:444 msgid "Owner" msgstr "Владелец" -#: lib/enums/ModelInformation.tsx:209 +#: lib/enums/ModelInformation.tsx:225 msgid "Owners" msgstr "Владельцы" -#: lib/enums/ModelInformation.tsx:215 +#: lib/enums/ModelInformation.tsx:231 #: src/pages/Auth/ChangePassword.tsx:36 #: src/pages/core/UserDetail.tsx:220 #: src/tables/ColumnRenderers.tsx:395 @@ -437,7 +463,7 @@ msgstr "Владельцы" msgid "User" msgstr "Пользователь" -#: lib/enums/ModelInformation.tsx:216 +#: lib/enums/ModelInformation.tsx:232 #: src/components/nav/NavigationDrawer.tsx:105 #: src/pages/Index/Settings/AdminCenter/UserManagementPanel.tsx:15 #: src/pages/core/CoreIndex.tsx:21 @@ -445,12 +471,12 @@ msgstr "Пользователь" msgid "Users" msgstr "Пользователи" -#: lib/enums/ModelInformation.tsx:222 +#: lib/enums/ModelInformation.tsx:238 #: src/pages/core/GroupDetail.tsx:78 msgid "Group" msgstr "Группа" -#: lib/enums/ModelInformation.tsx:223 +#: lib/enums/ModelInformation.tsx:239 #: src/components/nav/NavigationDrawer.tsx:111 #: src/pages/Index/Settings/AdminCenter/UserManagementPanel.tsx:23 #: src/pages/core/CoreIndex.tsx:27 @@ -460,64 +486,64 @@ msgstr "Группа" msgid "Groups" msgstr "Группы" -#: lib/enums/ModelInformation.tsx:230 +#: lib/enums/ModelInformation.tsx:246 msgid "Import Session" msgstr "Сессия импорта" -#: lib/enums/ModelInformation.tsx:231 +#: lib/enums/ModelInformation.tsx:247 msgid "Import Sessions" msgstr "Сессии импорта" -#: lib/enums/ModelInformation.tsx:238 +#: lib/enums/ModelInformation.tsx:254 msgid "Label Template" msgstr "Шаблон этикетки" -#: lib/enums/ModelInformation.tsx:239 +#: lib/enums/ModelInformation.tsx:255 #: src/pages/Index/Settings/AdminCenter/Index.tsx:209 msgid "Label Templates" msgstr "Шаблоны этикеток" -#: lib/enums/ModelInformation.tsx:246 +#: lib/enums/ModelInformation.tsx:262 msgid "Report Template" msgstr "Шаблон отчёта" -#: lib/enums/ModelInformation.tsx:247 +#: lib/enums/ModelInformation.tsx:263 #: src/pages/Index/Settings/AdminCenter/Index.tsx:215 msgid "Report Templates" msgstr "Шаблоны отчётов" -#: lib/enums/ModelInformation.tsx:254 +#: lib/enums/ModelInformation.tsx:270 #: src/components/plugins/PluginDrawer.tsx:145 msgid "Plugin Configuration" msgstr "Настройка плагина" -#: lib/enums/ModelInformation.tsx:255 +#: lib/enums/ModelInformation.tsx:271 msgid "Plugin Configurations" msgstr "Настройки плагинов" -#: lib/enums/ModelInformation.tsx:262 +#: lib/enums/ModelInformation.tsx:278 msgid "Content Type" msgstr "Тип контента" -#: lib/enums/ModelInformation.tsx:263 +#: lib/enums/ModelInformation.tsx:279 msgid "Content Types" msgstr "Типы контента" -#: lib/enums/ModelInformation.tsx:268 +#: lib/enums/ModelInformation.tsx:284 msgid "Selection List" msgstr "Список выбора" -#: lib/enums/ModelInformation.tsx:269 -#: src/pages/Index/Settings/AdminCenter/PartParameterPanel.tsx:21 +#: lib/enums/ModelInformation.tsx:285 +#: src/pages/Index/Settings/AdminCenter/ParameterPanel.tsx:21 msgid "Selection Lists" msgstr "Списки выбора" -#: lib/enums/ModelInformation.tsx:275 +#: lib/enums/ModelInformation.tsx:291 #: src/components/barcodes/BarcodeInput.tsx:114 #: src/components/dashboard/DashboardLayout.tsx:281 #: src/components/editors/NotesEditor.tsx:74 #: src/components/editors/TemplateEditor/TemplateEditor.tsx:158 -#: src/components/forms/fields/ApiFormField.tsx:273 +#: src/components/forms/fields/ApiFormField.tsx:237 #: src/components/forms/fields/TableField.tsx:45 #: src/components/importer/ImportDataSelector.tsx:192 #: src/components/importer/ImporterColumnSelector.tsx:234 @@ -528,7 +554,7 @@ msgstr "Списки выбора" #: src/components/nav/SearchDrawer.tsx:572 #: src/components/settings/SettingList.tsx:139 #: src/components/wizards/ImportPartWizard.tsx:574 -#: src/components/wizards/ImportPartWizard.tsx:718 +#: src/components/wizards/ImportPartWizard.tsx:719 #: src/forms/BomForms.tsx:69 #: src/functions/auth.tsx:643 #: src/pages/ErrorPage.tsx:11 @@ -547,9 +573,9 @@ msgstr "Списки выбора" msgid "Error" msgstr "Ошибка" -#: lib/enums/ModelInformation.tsx:276 +#: lib/enums/ModelInformation.tsx:292 #: src/tables/machine/MachineListTable.tsx:402 -#: src/tables/machine/MachineTypeTable.tsx:299 +#: src/tables/machine/MachineTypeTable.tsx:297 msgid "Errors" msgstr "Ошибки" @@ -559,10 +585,10 @@ msgstr "Администрирование пользователей" #: lib/enums/Roles.tsx:33 #: src/defaults/actions.tsx:135 -#: src/pages/Index/Settings/SystemSettings.tsx:264 -#: src/pages/build/BuildIndex.tsx:75 -#: src/pages/part/PartDetail.tsx:904 -#: src/pages/sales/SalesOrderDetail.tsx:421 +#: src/pages/Index/Settings/SystemSettings.tsx:270 +#: src/pages/build/BuildIndex.tsx:67 +#: src/pages/part/PartDetail.tsx:893 +#: src/pages/sales/SalesOrderDetail.tsx:422 msgid "Build Orders" msgstr "Заказы на сборку" @@ -639,39 +665,39 @@ msgstr "Отсканируйте штрихкод или введите данн msgid "Enter barcode data" msgstr "Введите данные штрихкода" -#: src/components/barcodes/BarcodeScanDialog.tsx:49 -#: src/components/buttons/ScanButton.tsx:15 +#: src/components/barcodes/BarcodeScanDialog.tsx:56 +#: src/components/buttons/ScanButton.tsx:27 #: src/components/nav/NavigationDrawer.tsx:122 -#: src/forms/PurchaseOrderForms.tsx:457 -#: src/forms/PurchaseOrderForms.tsx:563 +#: src/forms/PurchaseOrderForms.tsx:509 +#: src/forms/PurchaseOrderForms.tsx:615 msgid "Scan Barcode" msgstr "Сканировать штрихкод" -#: src/components/barcodes/BarcodeScanDialog.tsx:105 +#: src/components/barcodes/BarcodeScanDialog.tsx:121 msgid "No matching item found" msgstr "Подходящих элементов не найдено" -#: src/components/barcodes/BarcodeScanDialog.tsx:134 +#: src/components/barcodes/BarcodeScanDialog.tsx:150 msgid "Barcode does not match the expected model type" msgstr "Штрихкод не соответствует ожидаемому типу модели" -#: src/components/barcodes/BarcodeScanDialog.tsx:145 +#: src/components/barcodes/BarcodeScanDialog.tsx:161 #: src/components/editors/NotesEditor.tsx:84 #: src/components/editors/NotesEditor.tsx:118 -#: src/components/forms/ApiForm.tsx:465 +#: src/components/forms/ApiForm.tsx:484 #: src/components/wizards/ImportPartWizard.tsx:566 -#: src/components/wizards/ImportPartWizard.tsx:690 +#: src/components/wizards/ImportPartWizard.tsx:691 #: src/pages/Index/Settings/AdminCenter/CurrencyManagementPanel.tsx:45 #: src/tables/bom/BomTable.tsx:548 #: src/tables/settings/PendingTasksTable.tsx:68 msgid "Success" msgstr "Успешно" -#: src/components/barcodes/BarcodeScanDialog.tsx:151 +#: src/components/barcodes/BarcodeScanDialog.tsx:167 msgid "Failed to handle barcode" msgstr "Не удалось обработать штрихкод" -#: src/components/barcodes/BarcodeScanDialog.tsx:167 +#: src/components/barcodes/BarcodeScanDialog.tsx:183 #: src/pages/Index/Scan.tsx:129 msgid "Failed to scan barcode" msgstr "Ошибка сканирования штрихкода" @@ -714,10 +740,10 @@ msgstr "Не удалось привязать штрихкод" #: src/components/barcodes/QRCode.tsx:179 #: src/pages/part/PartDetail.tsx:521 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:222 -#: src/pages/sales/ReturnOrderDetail.tsx:188 -#: src/pages/sales/SalesOrderDetail.tsx:181 -#: src/pages/sales/SalesOrderShipmentDetail.tsx:122 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:223 +#: src/pages/sales/ReturnOrderDetail.tsx:189 +#: src/pages/sales/SalesOrderDetail.tsx:182 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:120 #: src/pages/stock/StockDetail.tsx:186 msgid "Link" msgstr "Ссылка" @@ -728,7 +754,7 @@ msgstr "Это удалит ссылку на связанный штрих-ко #: src/components/barcodes/QRCode.tsx:205 #: src/components/items/ActionDropdown.tsx:192 -#: src/forms/PurchaseOrderForms.tsx:554 +#: src/forms/PurchaseOrderForms.tsx:606 msgid "Unlink Barcode" msgstr "Отвязать штрихкод" @@ -829,14 +855,14 @@ msgstr "Вы будете перенаправлены на сайт поста #~ msgid "Scan QR code" #~ msgstr "Scan QR code" -#: src/components/buttons/ScanButton.tsx:19 -msgid "Open Barcode Scanner" -msgstr "Открыть сканер штрих-кодов" - #: src/components/buttons/ScanButton.tsx:20 #~ msgid "Open QR code scanner" #~ msgstr "Open QR code scanner" +#: src/components/buttons/ScanButton.tsx:32 +msgid "Open Barcode Scanner" +msgstr "Открыть сканер штрих-кодов" + #: src/components/buttons/SpotlightButton.tsx:12 msgid "Open spotlight" msgstr "Открыть всплывающее окно" @@ -1059,13 +1085,13 @@ msgid "Show the number of sales orders which are assigned to you" msgstr "Количество назначенных вам заказов на продажу" #: src/components/dashboard/DashboardWidgetLibrary.tsx:129 -#: src/pages/sales/SalesIndex.tsx:105 +#: src/pages/sales/SalesIndex.tsx:87 msgid "Pending Shipments" -msgstr "" +msgstr "Ожидающие отгрузки" #: src/components/dashboard/DashboardWidgetLibrary.tsx:131 msgid "Show the number of pending sales order shipments" -msgstr "" +msgstr "Показать количество необработанных отгрузок по заказам на продажу" #: src/components/dashboard/DashboardWidgetLibrary.tsx:136 msgid "Active Purchase Orders" @@ -1210,12 +1236,18 @@ msgid "Remove the associated image from this item?" msgstr "Удалить связанное изображение?" #: src/components/details/DetailsImage.tsx:83 -#: src/forms/StockForms.tsx:888 +#: src/forms/StockForms.tsx:895 #: src/pages/Index/Settings/AccountSettings/MFASettings.tsx:324 #: src/pages/Index/Settings/AccountSettings/MFASettings.tsx:415 #: src/pages/Index/Settings/AccountSettings/MFASettings.tsx:884 #: src/pages/Index/Settings/AccountSettings/MFASettings.tsx:903 #: src/pages/Index/Settings/AccountSettings/SecurityContent.tsx:254 +#: src/tables/build/BuildAllocatedStockTable.tsx:178 +#: src/tables/build/BuildAllocatedStockTable.tsx:258 +#: src/tables/build/BuildLineTable.tsx:111 +#: src/tables/build/BuildLineTable.tsx:665 +#: src/tables/sales/SalesOrderAllocationTable.tsx:224 +#: src/tables/sales/SalesOrderAllocationTable.tsx:247 msgid "Remove" msgstr "Удалить" @@ -1241,12 +1273,12 @@ msgid "Upload Error" msgstr "Ошибка загрузки" #: src/components/details/DetailsImage.tsx:250 -#: src/components/forms/fields/TextField.tsx:65 +#: src/components/forms/fields/AutoFillRightSection.tsx:34 msgid "Clear" msgstr "Очистить" #: src/components/details/DetailsImage.tsx:256 -#: src/components/forms/ApiForm.tsx:677 +#: src/components/forms/ApiForm.tsx:696 #: src/contexts/ThemeContext.tsx:44 #: src/pages/Index/Settings/AccountSettings/MFASettings.tsx:149 #: src/pages/Index/Settings/AccountSettings/MFASettings.tsx:568 @@ -1420,7 +1452,7 @@ msgstr "Предварительный просмотр успешно обно #: src/components/editors/TemplateEditor/TemplateEditor.tsx:236 msgid "An unknown error occurred while rendering the preview." -msgstr "" +msgstr "Произошла неизвестная ошибка при отображении предварительного просмотра." #: src/components/editors/TemplateEditor/TemplateEditor.tsx:263 #~ msgid "Save & Reload preview" @@ -1499,8 +1531,8 @@ msgstr "Ошибка сервера" msgid "A server error occurred" msgstr "Произошла ошибка сервера" -#: src/components/forms/ApiForm.tsx:103 -#: src/components/forms/ApiForm.tsx:594 +#: src/components/forms/ApiForm.tsx:107 +#: src/components/forms/ApiForm.tsx:613 msgid "Form Error" msgstr "Ошибка формы" @@ -1508,11 +1540,11 @@ msgstr "Ошибка формы" #~ msgid "Form Errors Exist" #~ msgstr "Form Errors Exist" -#: src/components/forms/ApiForm.tsx:604 +#: src/components/forms/ApiForm.tsx:623 msgid "Errors exist for one or more form fields" msgstr "Существуют ошибки для одного или нескольких полей формы" -#: src/components/forms/ApiForm.tsx:715 +#: src/components/forms/ApiForm.tsx:734 #: src/hooks/UseForm.tsx:133 #: src/tables/plugin/PluginListTable.tsx:204 msgid "Update" @@ -1698,15 +1730,14 @@ msgstr "Узел" #: src/components/forms/InstanceOptions.tsx:124 #: src/components/plugins/PluginDrawer.tsx:68 #: src/pages/Index/Settings/AdminCenter/UnitManagementPanel.tsx:19 -#: src/pages/part/CategoryDetail.tsx:88 +#: src/pages/part/CategoryDetail.tsx:91 #: src/pages/part/PartDetail.tsx:446 #: src/pages/stock/LocationDetail.tsx:82 #: src/tables/machine/MachineTypeTable.tsx:67 -#: src/tables/machine/MachineTypeTable.tsx:151 -#: src/tables/machine/MachineTypeTable.tsx:254 -#: src/tables/machine/MachineTypeTable.tsx:357 +#: src/tables/machine/MachineTypeTable.tsx:149 +#: src/tables/machine/MachineTypeTable.tsx:252 +#: src/tables/machine/MachineTypeTable.tsx:355 #: src/tables/plugin/PluginErrorTable.tsx:33 -#: src/tables/purchasing/ManufacturerPartParameterTable.tsx:36 #: src/tables/settings/ApiTokenTable.tsx:57 #: src/tables/settings/GroupTable.tsx:95 #: src/tables/settings/GroupTable.tsx:148 @@ -1769,7 +1800,7 @@ msgstr "Сохранить выбор хоста" #~ msgstr "State: <0>worker ({0}), <1>plugins{1}" #: src/components/forms/InstanceOptions.tsx:118 -#: src/pages/Index/Settings/SystemSettings.tsx:45 +#: src/pages/Index/Settings/SystemSettings.tsx:46 msgid "Server" msgstr "Сервер" @@ -1793,6 +1824,8 @@ msgid "Plugins" msgstr "Плагины" #: src/components/forms/InstanceOptions.tsx:143 +#: src/tables/general/ParameterTemplateTable.tsx:153 +#: src/tables/general/ParameterTemplateTable.tsx:188 #: src/tables/part/PartTestTemplateTable.tsx:117 #: src/tables/settings/TemplateTable.tsx:251 #: src/tables/settings/TemplateTable.tsx:362 @@ -1817,10 +1850,14 @@ msgstr "Остановлен" msgid "Running" msgstr "Работает" -#: src/components/forms/fields/ApiFormField.tsx:233 +#: src/components/forms/fields/ApiFormField.tsx:197 msgid "Select file to upload" msgstr "Выберите файл для загрузки" +#: src/components/forms/fields/AutoFillRightSection.tsx:47 +msgid "Accept suggested value" +msgstr "Принять предложенное значение" + #: src/components/forms/fields/DateField.tsx:76 msgid "Select date" msgstr "Выберите дату" @@ -1853,13 +1890,13 @@ msgstr "Выбрать набор" msgid "{0} icons" msgstr "{0} значков" -#: src/components/forms/fields/RelatedModelField.tsx:409 +#: src/components/forms/fields/RelatedModelField.tsx:480 #: src/components/modals/AboutInvenTreeModal.tsx:96 #: src/pages/Index/Settings/AccountSettings/SecurityContent.tsx:383 msgid "Loading" msgstr "Загрузка" -#: src/components/forms/fields/RelatedModelField.tsx:411 +#: src/components/forms/fields/RelatedModelField.tsx:482 msgid "No results found" msgstr "Ничего не найдено" @@ -1875,10 +1912,6 @@ msgstr "Нет доступных записей" msgid "Add new row" msgstr "Добавить строку" -#: src/components/forms/fields/TextField.tsx:82 -msgid "Accept suggested value" -msgstr "" - #: src/components/images/DetailsImage.tsx:252 #~ msgid "Select image" #~ msgstr "Select image" @@ -2036,7 +2069,7 @@ msgstr "Данные успешно импортированы" #: src/components/importer/ImporterDrawer.tsx:109 #: src/components/modals/AboutInvenTreeModal.tsx:205 #: src/components/modals/ServerInfoModal.tsx:134 -#: src/components/wizards/ImportPartWizard.tsx:772 +#: src/components/wizards/ImportPartWizard.tsx:773 #: src/forms/BomForms.tsx:132 #: src/pages/Index/Settings/AccountSettings/MFASettings.tsx:685 msgid "Close" @@ -2199,7 +2232,7 @@ msgid "Change" msgstr "Редактировать" #: src/components/items/RoleTable.tsx:150 -#: src/forms/StockForms.tsx:927 +#: src/forms/StockForms.tsx:941 #: src/tables/stock/StockItemTestResultTable.tsx:367 msgid "Add" msgstr "Добавить" @@ -2222,11 +2255,11 @@ msgstr "Нет элементов" #: src/components/items/TransferList.tsx:161 #: src/components/render/Stock.tsx:102 -#: src/pages/part/PartDetail.tsx:994 +#: src/pages/part/PartDetail.tsx:1009 #: src/pages/stock/StockDetail.tsx:265 #: src/pages/stock/StockDetail.tsx:942 -#: src/tables/build/BuildAllocatedStockTable.tsx:135 -#: src/tables/build/BuildLineTable.tsx:192 +#: src/tables/build/BuildAllocatedStockTable.tsx:132 +#: src/tables/build/BuildLineTable.tsx:193 #: src/tables/part/PartTable.tsx:137 #: src/tables/stock/StockItemTable.tsx:182 #: src/tables/stock/StockItemTable.tsx:343 @@ -2373,7 +2406,7 @@ msgid "Database" msgstr "База данных" #: src/components/modals/ServerInfoModal.tsx:49 -#: src/components/nav/Alerts.tsx:118 +#: src/components/nav/Alerts.tsx:120 msgid "Debug Mode" msgstr "Режим отладки" @@ -2414,7 +2447,7 @@ msgid "Issues detected" msgstr "Обнаружены проблемы" #: src/components/modals/ServerInfoModal.tsx:102 -#: src/components/nav/Alerts.tsx:125 +#: src/components/nav/Alerts.tsx:127 msgid "Background Worker" msgstr "Фоновый процесс" @@ -2436,7 +2469,7 @@ msgstr "Настройки Email" #~ msgstr "Email settings not configured" #: src/components/modals/ServerInfoModal.tsx:120 -#: src/components/nav/Alerts.tsx:141 +#: src/components/nav/Alerts.tsx:143 msgid "Email settings not configured." msgstr "Электронная почта не настроена." @@ -2444,43 +2477,47 @@ msgstr "Электронная почта не настроена." msgid "Alerts" msgstr "Предупреждения" -#: src/components/nav/Alerts.tsx:120 +#: src/components/nav/Alerts.tsx:97 +msgid "No issues detected" +msgstr "" + +#: src/components/nav/Alerts.tsx:122 msgid "The server is running in debug mode." msgstr "Сервер запущен в режиме отладки." -#: src/components/nav/Alerts.tsx:127 +#: src/components/nav/Alerts.tsx:129 msgid "The background worker process is not running." msgstr "Фоновый рабочий процесс не запущен." -#: src/components/nav/Alerts.tsx:132 +#: src/components/nav/Alerts.tsx:134 msgid "Server Restart" msgstr "Перезапуск сервера" -#: src/components/nav/Alerts.tsx:134 +#: src/components/nav/Alerts.tsx:136 msgid "The server requires a restart to apply changes." msgstr "Для применения изменений необходим перезапуск сервера." -#: src/components/nav/Alerts.tsx:139 +#: src/components/nav/Alerts.tsx:141 msgid "Email settings" msgstr "Настройка электронной почты" -#: src/components/nav/Alerts.tsx:146 +#: src/components/nav/Alerts.tsx:148 msgid "Database Migrations" msgstr "Миграции базы данных" -#: src/components/nav/Alerts.tsx:148 +#: src/components/nav/Alerts.tsx:150 msgid "There are pending database migrations." msgstr "Требуется применить миграции базы данных." -#: src/components/nav/Alerts.tsx:163 +#: src/components/nav/Alerts.tsx:165 msgid "Learn more about {code}" msgstr "Подробнее о {code}" #: src/components/nav/Header.tsx:188 #: src/components/nav/NavigationDrawer.tsx:134 #: src/components/nav/NotificationDrawer.tsx:181 -#: src/pages/Index/Settings/SystemSettings.tsx:121 -#: src/pages/Index/Settings/UserSettings.tsx:106 +#: src/pages/Index/Settings/SystemSettings.tsx:122 +#: src/pages/Index/Settings/UserSettings.tsx:107 #: src/pages/Notifications.tsx:45 #: src/pages/Notifications.tsx:130 msgid "Notifications" @@ -2511,8 +2548,8 @@ msgstr "Настройки" #: src/components/nav/NavigationDrawer.tsx:140 #: src/components/nav/SettingsHeader.tsx:40 #: src/defaults/actions.tsx:92 -#: src/pages/Index/Settings/UserSettings.tsx:141 -#: src/pages/Index/Settings/UserSettings.tsx:145 +#: src/pages/Index/Settings/UserSettings.tsx:142 +#: src/pages/Index/Settings/UserSettings.tsx:146 msgid "User Settings" msgstr "Пользовательские настройки" @@ -2529,8 +2566,8 @@ msgstr "Пользовательские настройки" #: src/components/nav/NavigationDrawer.tsx:146 #: src/components/nav/SettingsHeader.tsx:41 #: src/defaults/actions.tsx:144 -#: src/pages/Index/Settings/SystemSettings.tsx:348 -#: src/pages/Index/Settings/SystemSettings.tsx:353 +#: src/pages/Index/Settings/SystemSettings.tsx:354 +#: src/pages/Index/Settings/SystemSettings.tsx:359 msgid "System Settings" msgstr "Системные настройки" @@ -2577,11 +2614,11 @@ msgstr "Выход" #: src/components/nav/NavigationDrawer.tsx:77 #: src/components/render/Part.tsx:36 -#: src/components/wizards/ImportPartWizard.tsx:807 +#: src/components/wizards/ImportPartWizard.tsx:808 #: src/defaults/links.tsx:42 #: src/forms/StockForms.tsx:794 -#: src/pages/Index/Settings/SystemSettings.tsx:224 -#: src/pages/part/PartDetail.tsx:804 +#: src/pages/Index/Settings/SystemSettings.tsx:230 +#: src/pages/part/PartDetail.tsx:793 #: src/pages/stock/LocationDetail.tsx:390 #: src/pages/stock/LocationDetail.tsx:420 #: src/pages/stock/StockDetail.tsx:642 @@ -2591,29 +2628,29 @@ msgstr "Склад" #: src/components/nav/NavigationDrawer.tsx:84 #: src/defaults/links.tsx:48 -#: src/pages/build/BuildDetail.tsx:748 -#: src/pages/build/BuildIndex.tsx:102 +#: src/pages/build/BuildDetail.tsx:753 +#: src/pages/build/BuildIndex.tsx:101 msgid "Manufacturing" msgstr "Производство" #: src/components/nav/NavigationDrawer.tsx:91 #: src/defaults/links.tsx:54 #: src/pages/company/ManufacturerDetail.tsx:9 -#: src/pages/company/ManufacturerPartDetail.tsx:276 +#: src/pages/company/ManufacturerPartDetail.tsx:267 #: src/pages/company/SupplierDetail.tsx:9 -#: src/pages/company/SupplierPartDetail.tsx:360 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:553 -#: src/pages/purchasing/PurchasingIndex.tsx:122 +#: src/pages/company/SupplierPartDetail.tsx:365 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:558 +#: src/pages/purchasing/PurchasingIndex.tsx:212 msgid "Purchasing" msgstr "Закупки" #: src/components/nav/NavigationDrawer.tsx:98 #: src/defaults/links.tsx:60 #: src/pages/company/CustomerDetail.tsx:9 -#: src/pages/sales/ReturnOrderDetail.tsx:554 -#: src/pages/sales/SalesIndex.tsx:153 -#: src/pages/sales/SalesOrderDetail.tsx:619 -#: src/pages/sales/SalesOrderShipmentDetail.tsx:480 +#: src/pages/sales/ReturnOrderDetail.tsx:559 +#: src/pages/sales/SalesIndex.tsx:168 +#: src/pages/sales/SalesOrderDetail.tsx:624 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:448 msgid "Sales" msgstr "Продажи" @@ -2667,21 +2704,21 @@ msgid "Remove search group" msgstr "Удалить группу из поиска" #: src/components/nav/SearchDrawer.tsx:288 -#: src/pages/company/ManufacturerPartDetail.tsx:192 -#: src/pages/part/PartDetail.tsx:862 +#: src/pages/company/ManufacturerPartDetail.tsx:179 +#: src/pages/part/PartDetail.tsx:851 #: src/pages/part/PartSupplierDetail.tsx:15 -#: src/pages/purchasing/PurchasingIndex.tsx:81 +#: src/pages/purchasing/PurchasingIndex.tsx:100 msgid "Suppliers" msgstr "Поставщики" #: src/components/nav/SearchDrawer.tsx:298 #: src/pages/part/PartSupplierDetail.tsx:23 -#: src/pages/purchasing/PurchasingIndex.tsx:98 +#: src/pages/purchasing/PurchasingIndex.tsx:149 msgid "Manufacturers" msgstr "Производители" #: src/components/nav/SearchDrawer.tsx:308 -#: src/pages/sales/SalesIndex.tsx:138 +#: src/pages/sales/SalesIndex.tsx:133 msgid "Customers" msgstr "Покупатели" @@ -2772,21 +2809,21 @@ msgstr "Информация о плагине" #: src/components/plugins/PluginDrawer.tsx:73 #: src/forms/selectionListFields.tsx:102 -#: src/pages/build/BuildDetail.tsx:250 -#: src/pages/company/CompanyDetail.tsx:93 -#: src/pages/company/ManufacturerPartDetail.tsx:93 -#: src/pages/company/ManufacturerPartDetail.tsx:120 -#: src/pages/company/SupplierPartDetail.tsx:145 -#: src/pages/part/CategoryDetail.tsx:108 +#: src/pages/build/BuildDetail.tsx:251 +#: src/pages/company/CompanyDetail.tsx:94 +#: src/pages/company/ManufacturerPartDetail.tsx:92 +#: src/pages/company/ManufacturerPartDetail.tsx:119 +#: src/pages/company/SupplierPartDetail.tsx:146 +#: src/pages/part/CategoryDetail.tsx:111 #: src/pages/part/PartDetail.tsx:460 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:162 -#: src/pages/sales/ReturnOrderDetail.tsx:129 -#: src/pages/sales/SalesOrderDetail.tsx:119 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:163 +#: src/pages/sales/ReturnOrderDetail.tsx:130 +#: src/pages/sales/SalesOrderDetail.tsx:120 #: src/pages/stock/LocationDetail.tsx:102 #: src/tables/ColumnRenderers.tsx:278 -#: src/tables/build/BuildAllocatedStockTable.tsx:91 -#: src/tables/machine/MachineTypeTable.tsx:161 -#: src/tables/machine/MachineTypeTable.tsx:257 +#: src/tables/build/BuildAllocatedStockTable.tsx:88 +#: src/tables/machine/MachineTypeTable.tsx:159 +#: src/tables/machine/MachineTypeTable.tsx:255 #: src/tables/plugin/PluginListTable.tsx:110 msgid "Description" msgstr "Описание" @@ -2814,7 +2851,7 @@ msgstr "Дата" #: src/tables/company/CompanyTable.tsx:91 #: src/tables/machine/MachineListTable.tsx:384 #: src/tables/machine/MachineListTable.tsx:799 -#: src/tables/part/ParametricPartTable.tsx:354 +#: src/tables/part/ParametricPartTable.tsx:19 #: src/tables/part/PartTable.tsx:197 #: src/tables/part/PartVariantTable.tsx:15 #: src/tables/plugin/PluginListTable.tsx:96 @@ -2836,8 +2873,8 @@ msgid "Installation Path" msgstr "Путь установки" #: src/components/plugins/PluginDrawer.tsx:116 -#: src/tables/machine/MachineTypeTable.tsx:184 -#: src/tables/machine/MachineTypeTable.tsx:293 +#: src/tables/machine/MachineTypeTable.tsx:182 +#: src/tables/machine/MachineTypeTable.tsx:291 #: src/tables/plugin/PluginListTable.tsx:101 #: src/tables/plugin/PluginListTable.tsx:417 msgid "Builtin" @@ -2849,8 +2886,8 @@ msgstr "Пакет" #: src/components/plugins/PluginDrawer.tsx:133 #: src/pages/Index/Settings/AdminCenter/PluginManagementPanel.tsx:55 -#: src/pages/Index/Settings/SystemSettings.tsx:331 -#: src/pages/Index/Settings/UserSettings.tsx:128 +#: src/pages/Index/Settings/SystemSettings.tsx:337 +#: src/pages/Index/Settings/UserSettings.tsx:129 msgid "Plugin Settings" msgstr "Настройки плагинов" @@ -2911,7 +2948,7 @@ msgstr "Произошла ошибка при загрузке содержим #~ msgid "Unknown model: {model}" #~ msgstr "Unknown model: {model}" -#: src/components/render/Instance.tsx:249 +#: src/components/render/Instance.tsx:247 msgid "Unknown model: {model_name}" msgstr "Неизвестная модель: {model_name}" @@ -2939,10 +2976,10 @@ msgstr "Отгрузка" #: src/components/render/Part.tsx:28 #: src/components/render/Plugin.tsx:17 #: src/components/render/User.tsx:37 -#: src/pages/company/CompanyDetail.tsx:323 -#: src/pages/company/SupplierPartDetail.tsx:373 +#: src/pages/company/CompanyDetail.tsx:328 +#: src/pages/company/SupplierPartDetail.tsx:378 #: src/pages/core/UserDetail.tsx:211 -#: src/pages/part/PartDetail.tsx:1027 +#: src/pages/part/PartDetail.tsx:1048 #: src/tables/ColumnRenderers.tsx:410 msgid "Inactive" msgstr "Неактивный" @@ -2962,11 +2999,11 @@ msgstr "Нет склада" #: src/components/render/Part.tsx:47 #: src/components/wizards/OrderPartsWizard.tsx:135 -#: src/pages/company/SupplierPartDetail.tsx:197 -#: src/pages/company/SupplierPartDetail.tsx:394 -#: src/pages/part/PartDetail.tsx:1015 +#: src/pages/company/SupplierPartDetail.tsx:198 +#: src/pages/company/SupplierPartDetail.tsx:399 +#: src/pages/part/PartDetail.tsx:1030 #: src/tables/bom/BomTable.tsx:444 -#: src/tables/build/BuildLineTable.tsx:222 +#: src/tables/build/BuildLineTable.tsx:223 #: src/tables/part/PartTable.tsx:108 msgid "On Order" msgstr "В заказе" @@ -2974,9 +3011,9 @@ msgstr "В заказе" #: src/components/render/Part.tsx:55 #: src/components/wizards/OrderPartsWizard.tsx:141 #: src/pages/part/PartDetail.tsx:587 -#: src/pages/part/PartDetail.tsx:1021 +#: src/pages/part/PartDetail.tsx:1036 #: src/pages/stock/StockDetail.tsx:925 -#: src/tables/part/PartTestResultTable.tsx:297 +#: src/tables/part/PartTestResultTable.tsx:305 #: src/tables/stock/StockItemTable.tsx:359 msgid "In Production" msgstr "В производстве" @@ -2987,7 +3024,7 @@ msgid "Details" msgstr "Сведения" #: src/components/render/Part.tsx:112 -#: src/components/wizards/ImportPartWizard.tsx:806 +#: src/components/wizards/ImportPartWizard.tsx:807 #: src/pages/part/PartDetail.tsx:487 #: src/tables/ColumnRenderers.tsx:233 #: src/tables/ColumnRenderers.tsx:242 @@ -3000,16 +3037,16 @@ msgstr "Категория" #: src/components/render/Stock.tsx:114 #: src/components/render/Stock.tsx:132 #: src/forms/BuildForms.tsx:795 -#: src/forms/PurchaseOrderForms.tsx:595 +#: src/forms/PurchaseOrderForms.tsx:647 #: src/forms/StockForms.tsx:792 #: src/forms/StockForms.tsx:839 -#: src/forms/StockForms.tsx:885 -#: src/forms/StockForms.tsx:924 -#: src/forms/StockForms.tsx:960 -#: src/forms/StockForms.tsx:1003 -#: src/forms/StockForms.tsx:1047 -#: src/forms/StockForms.tsx:1095 -#: src/forms/StockForms.tsx:1139 +#: src/forms/StockForms.tsx:892 +#: src/forms/StockForms.tsx:938 +#: src/forms/StockForms.tsx:976 +#: src/forms/StockForms.tsx:1019 +#: src/forms/StockForms.tsx:1063 +#: src/forms/StockForms.tsx:1111 +#: src/forms/StockForms.tsx:1155 #: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:88 #: src/pages/core/UserDetail.tsx:158 #: src/pages/stock/StockDetail.tsx:298 @@ -3023,7 +3060,7 @@ msgstr "Расположение" #: src/components/render/Stock.tsx:99 #: src/pages/stock/StockDetail.tsx:198 #: src/pages/stock/StockDetail.tsx:930 -#: src/tables/build/BuildAllocatedStockTable.tsx:121 +#: src/tables/build/BuildAllocatedStockTable.tsx:118 #: src/tables/build/BuildOutputTable.tsx:107 #: src/tables/sales/SalesOrderAllocationTable.tsx:142 msgid "Serial Number" @@ -3034,9 +3071,9 @@ msgstr "Серийный номер" #: src/forms/BuildForms.tsx:240 #: src/forms/BuildForms.tsx:634 #: src/forms/BuildForms.tsx:797 -#: src/forms/PurchaseOrderForms.tsx:801 +#: src/forms/PurchaseOrderForms.tsx:853 #: src/forms/ReturnOrderForms.tsx:243 -#: src/forms/SalesOrderForms.tsx:308 +#: src/forms/SalesOrderForms.tsx:387 #: src/forms/StockForms.tsx:841 #: src/pages/part/PartStockHistoryDetail.tsx:56 #: src/pages/part/PartStockHistoryDetail.tsx:210 @@ -3046,9 +3083,9 @@ msgstr "Серийный номер" #: src/pages/part/pricing/PriceBreakPanel.tsx:172 #: src/pages/stock/StockDetail.tsx:258 #: src/pages/stock/StockDetail.tsx:936 -#: src/tables/build/BuildLineTable.tsx:86 +#: src/tables/build/BuildLineTable.tsx:83 #: src/tables/part/PartPurchaseOrdersTable.tsx:94 -#: src/tables/part/PartTestResultTable.tsx:269 +#: src/tables/part/PartTestResultTable.tsx:277 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:175 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:206 #: src/tables/purchasing/SupplierPriceBreakTable.tsx:69 @@ -3063,14 +3100,14 @@ msgstr "Количество" #: src/forms/BuildForms.tsx:474 #: src/forms/StockForms.tsx:793 #: src/forms/StockForms.tsx:840 -#: src/forms/StockForms.tsx:886 -#: src/forms/StockForms.tsx:925 -#: src/forms/StockForms.tsx:961 -#: src/forms/StockForms.tsx:1004 -#: src/forms/StockForms.tsx:1048 -#: src/forms/StockForms.tsx:1096 -#: src/forms/StockForms.tsx:1140 -#: src/tables/build/BuildLineTable.tsx:96 +#: src/forms/StockForms.tsx:893 +#: src/forms/StockForms.tsx:939 +#: src/forms/StockForms.tsx:977 +#: src/forms/StockForms.tsx:1020 +#: src/forms/StockForms.tsx:1064 +#: src/forms/StockForms.tsx:1112 +#: src/forms/StockForms.tsx:1156 +#: src/tables/build/BuildLineTable.tsx:93 msgid "Batch" msgstr "Партия" @@ -3088,7 +3125,7 @@ msgstr "Источник" #: src/components/settings/QuickAction.tsx:47 msgid "Act" -msgstr "" +msgstr "Акт" #: src/components/settings/QuickAction.tsx:73 #: src/components/settings/QuickAction.tsx:113 @@ -3106,55 +3143,55 @@ msgstr "Создать состояние" #: src/components/settings/QuickAction.tsx:85 msgid "Open an Issue" -msgstr "" +msgstr "Сообщить о проблеме" #: src/components/settings/QuickAction.tsx:86 msgid "Report a bug or request a feature on GitHub" -msgstr "" +msgstr "Сообщить об ошибке или запросить возможность на GitHub" #: src/components/settings/QuickAction.tsx:88 msgid "Open Issue" -msgstr "" +msgstr "Открыть обращение" #: src/components/settings/QuickAction.tsx:97 msgid "Add New Group" -msgstr "" +msgstr "Добавить новую группу" #: src/components/settings/QuickAction.tsx:98 msgid "Create a new group to manage your users" -msgstr "" +msgstr "Создать новую группу для управления вашими пользователями" #: src/components/settings/QuickAction.tsx:100 msgid "New Group" -msgstr "" +msgstr "Новая Группа" #: src/components/settings/QuickAction.tsx:105 msgid "Add New User" -msgstr "" +msgstr "Добавить нового пользователя" #: src/components/settings/QuickAction.tsx:106 msgid "Create a new user to manage your groups" -msgstr "" +msgstr "Создайте нового пользователя для управления вашими группами" #: src/components/settings/QuickAction.tsx:108 msgid "New User" -msgstr "" +msgstr "Новый пользователь" #: src/components/settings/QuickAction.tsx:114 msgid "Create a new project code to organize your items" -msgstr "" +msgstr "Создайте новый код проекта, чтобы упорядочить ваши элементы" #: src/components/settings/QuickAction.tsx:116 msgid "Add Code" -msgstr "" +msgstr "Добавить код" #: src/components/settings/QuickAction.tsx:121 msgid "Add Custom State" -msgstr "" +msgstr "Добавить пользовательский статус" #: src/components/settings/QuickAction.tsx:122 msgid "Create a new custom state for your workflow" -msgstr "" +msgstr "Создайте новый пользовательский статус для вашего рабочего процесса" #: src/components/settings/SettingItem.tsx:47 #: src/components/settings/SettingItem.tsx:100 @@ -3192,7 +3229,7 @@ msgstr "Настройки отсутствуют" #: src/components/settings/SettingList.tsx:152 msgid "There are no configurable settings available" -msgstr "" +msgstr "Нет доступных настраиваемых параметров" #: src/components/settings/SettingList.tsx:189 msgid "No settings specified" @@ -3306,10 +3343,6 @@ msgstr "Настройки не указаны" #~ msgid "Part category updated" #~ msgstr "Part category updated" -#: src/components/tables/part/PartParameterTable.tsx:41 -#~ msgid "Parameter" -#~ msgstr "Parameter" - #: src/components/tables/part/PartParameterTable.tsx:114 #~ msgid "Part parameter updated" #~ msgstr "Part parameter updated" @@ -3564,22 +3597,23 @@ msgstr "Точное совпадение" #: src/components/wizards/ImportPartWizard.tsx:112 msgid "Current part" -msgstr "" +msgstr "Текущая деталь" #: src/components/wizards/ImportPartWizard.tsx:118 msgid "Already Imported" msgstr "Уже импортировано" #: src/components/wizards/ImportPartWizard.tsx:205 -#: src/pages/company/CompanyDetail.tsx:136 +#: src/pages/company/CompanyDetail.tsx:137 #: src/pages/company/SupplierDetail.tsx:8 -#: src/pages/company/SupplierPartDetail.tsx:130 -#: src/pages/company/SupplierPartDetail.tsx:235 -#: src/pages/company/SupplierPartDetail.tsx:364 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:156 +#: src/pages/company/SupplierPartDetail.tsx:131 +#: src/pages/company/SupplierPartDetail.tsx:236 +#: src/pages/company/SupplierPartDetail.tsx:369 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:157 #: src/tables/Filter.tsx:360 #: src/tables/company/CompanyTable.tsx:96 #: src/tables/part/PartPurchaseOrdersTable.tsx:43 +#: src/tables/purchasing/PurchaseOrderParametricTable.tsx:34 #: src/tables/purchasing/PurchaseOrderTable.tsx:109 #: src/tables/purchasing/SupplierPriceBreakTable.tsx:40 msgid "Supplier" @@ -3592,11 +3626,11 @@ msgstr "Загрузка..." #: src/components/wizards/ImportPartWizard.tsx:223 msgid "Error fetching suppliers" -msgstr "" +msgstr "Ошибка при получении списка поставщиков" #: src/components/wizards/ImportPartWizard.tsx:224 msgid "Select supplier" -msgstr "" +msgstr "Выберите поставщика" #. placeholder {0}: searchResults.length #: src/components/wizards/ImportPartWizard.tsx:246 @@ -3605,159 +3639,153 @@ msgstr "Найдено результатов {0}" #: src/components/wizards/ImportPartWizard.tsx:259 msgid "Import this part" -msgstr "" +msgstr "Импортировать эту деталь" #: src/components/wizards/ImportPartWizard.tsx:313 msgid "Are you sure you want to import this part into the selected category now?" -msgstr "" +msgstr "Вы уверены, что хотите импортировать эту деталь в выбранную категорию прямо сейчас?" #: src/components/wizards/ImportPartWizard.tsx:326 msgid "Import Now" -msgstr "" +msgstr "Импортировать сейчас" #: src/components/wizards/ImportPartWizard.tsx:372 msgid "Select and edit the parameters you want to add to this part." -msgstr "" +msgstr "Выберите и отредактируйте параметры, которые вы хотите добавить к этой детали." #: src/components/wizards/ImportPartWizard.tsx:379 msgid "Default category parameters" -msgstr "" +msgstr "Параметры категории по умолчанию" #: src/components/wizards/ImportPartWizard.tsx:391 msgid "Other parameters" -msgstr "" +msgstr "Прочие параметры" #: src/components/wizards/ImportPartWizard.tsx:446 msgid "Add a new parameter" -msgstr "" +msgstr "Добавить новый параметр" #: src/components/wizards/ImportPartWizard.tsx:468 msgid "Skip" -msgstr "" +msgstr "Пропустить" #: src/components/wizards/ImportPartWizard.tsx:476 msgid "Create Parameters" -msgstr "" +msgstr "Создать параметры" #: src/components/wizards/ImportPartWizard.tsx:493 msgid "Create initial stock for the imported part." -msgstr "" +msgstr "Создать начальный запас для импортированной детали." #: src/components/wizards/ImportPartWizard.tsx:511 msgid "Next" -msgstr "" +msgstr "Далее" #: src/components/wizards/ImportPartWizard.tsx:540 -#: src/pages/part/PartDetail.tsx:1046 +#: src/pages/part/PartDetail.tsx:1067 #: src/tables/part/PartTable.tsx:408 msgid "Edit Part" msgstr "Редактировать деталь" #: src/components/wizards/ImportPartWizard.tsx:567 msgid "Part imported successfully!" -msgstr "" +msgstr "Деталь успешно импортирована!" #: src/components/wizards/ImportPartWizard.tsx:576 msgid "Failed to import part: " -msgstr "" +msgstr "Не удалось импортировать деталь: " #: src/components/wizards/ImportPartWizard.tsx:641 msgid "Are you sure, you want to import the supplier and manufacturer part into this part?" -msgstr "" +msgstr "Вы уверены, что хотите импортировать поставщика и производителя в эту деталь?" #: src/components/wizards/ImportPartWizard.tsx:655 msgid "Import" -msgstr "" +msgstr "Импорт" -#: src/components/wizards/ImportPartWizard.tsx:691 +#: src/components/wizards/ImportPartWizard.tsx:692 msgid "Parameters created successfully!" -msgstr "" +msgstr "Параметры успешно созданы!" -#: src/components/wizards/ImportPartWizard.tsx:719 +#: src/components/wizards/ImportPartWizard.tsx:720 msgid "Failed to create parameters, please fix the errors and try again" -msgstr "" +msgstr "Не удалось создать параметры, исправьте ошибки и попробуйте снова" #. placeholder {0}: supplierPart?.supplier -#: src/components/wizards/ImportPartWizard.tsx:739 +#: src/components/wizards/ImportPartWizard.tsx:740 msgid "Part imported successfully from supplier {0}." -msgstr "" +msgstr "Деталь успешно импортирована от поставщика {0}." -#: src/components/wizards/ImportPartWizard.tsx:752 +#: src/components/wizards/ImportPartWizard.tsx:753 msgid "Open Part" -msgstr "" +msgstr "Открыть деталь" -#: src/components/wizards/ImportPartWizard.tsx:759 +#: src/components/wizards/ImportPartWizard.tsx:760 msgid "Open Supplier Part" -msgstr "" +msgstr "Открыть позицию поставщика" -#: src/components/wizards/ImportPartWizard.tsx:766 +#: src/components/wizards/ImportPartWizard.tsx:767 msgid "Open Manufacturer Part" -msgstr "" +msgstr "Открыть позицию производителя" #: src/components/wizards/ImportPartWizard.tsx:797 #: src/tables/part/PartTable.tsx:499 #~ msgid "Import Part" #~ msgstr "Import Part" -#: src/components/wizards/ImportPartWizard.tsx:802 +#: src/components/wizards/ImportPartWizard.tsx:803 msgid "Import Supplier Part" -msgstr "" +msgstr "Импортировать позицию поставщика" -#: src/components/wizards/ImportPartWizard.tsx:804 +#: src/components/wizards/ImportPartWizard.tsx:805 msgid "Search Supplier Part" -msgstr "" +msgstr "Позиция поставщика" -#: src/components/wizards/ImportPartWizard.tsx:806 -#: src/pages/company/ManufacturerPartDetail.tsx:166 -#: src/pages/part/PartDetail.tsx:793 -msgid "Parameters" -msgstr "Параметры" - -#: src/components/wizards/ImportPartWizard.tsx:806 +#: src/components/wizards/ImportPartWizard.tsx:807 msgid "Confirm import" -msgstr "" +msgstr "Подтвердить импорт" -#: src/components/wizards/ImportPartWizard.tsx:808 +#: src/components/wizards/ImportPartWizard.tsx:809 msgid "Done" -msgstr "" +msgstr "Готово" #: src/components/wizards/OrderPartsWizard.tsx:75 msgid "Error fetching part requirements" -msgstr "" +msgstr "Ошибка получения требований к детали" #: src/components/wizards/OrderPartsWizard.tsx:113 msgid "Requirements" -msgstr "" +msgstr "Требования" #: src/components/wizards/OrderPartsWizard.tsx:117 msgid "Build Requirements" -msgstr "" +msgstr "Требования сборки" #: src/components/wizards/OrderPartsWizard.tsx:123 msgid "Sales Requirements" -msgstr "" +msgstr "Требования продаж" #: src/components/wizards/OrderPartsWizard.tsx:129 -#: src/forms/StockForms.tsx:887 -#: src/forms/StockForms.tsx:926 -#: src/forms/StockForms.tsx:962 -#: src/forms/StockForms.tsx:1005 -#: src/forms/StockForms.tsx:1049 -#: src/forms/StockForms.tsx:1097 -#: src/forms/StockForms.tsx:1141 -#: src/pages/company/SupplierPartDetail.tsx:190 -#: src/pages/company/SupplierPartDetail.tsx:378 +#: src/forms/StockForms.tsx:894 +#: src/forms/StockForms.tsx:940 +#: src/forms/StockForms.tsx:978 +#: src/forms/StockForms.tsx:1021 +#: src/forms/StockForms.tsx:1065 +#: src/forms/StockForms.tsx:1113 +#: src/forms/StockForms.tsx:1157 +#: src/pages/company/SupplierPartDetail.tsx:191 +#: src/pages/company/SupplierPartDetail.tsx:383 #: src/pages/part/PartDetail.tsx:534 -#: src/pages/part/PartDetail.tsx:984 +#: src/pages/part/PartDetail.tsx:999 #: src/tables/Filter.tsx:92 #: src/tables/purchasing/SupplierPartTable.tsx:230 msgid "In Stock" msgstr "На складе" #: src/components/wizards/OrderPartsWizard.tsx:146 -#: src/tables/build/BuildLineTable.tsx:404 +#: src/tables/build/BuildLineTable.tsx:405 msgid "Required Quantity" -msgstr "" +msgstr "Требуемое количество" #: src/components/wizards/OrderPartsWizard.tsx:203 msgid "New Purchase Order" @@ -3791,7 +3819,7 @@ msgstr "Выберите деталь поставщика" #: src/components/wizards/OrderPartsWizard.tsx:323 msgid "Copy supplier part number" -msgstr "" +msgstr "Скопировать номер детали поставщика" #: src/components/wizards/OrderPartsWizard.tsx:326 msgid "New supplier part" @@ -3847,7 +3875,7 @@ msgid "Please correct the errors in the selected parts" msgstr "Исправьте ошибки в выбранных деталях" #: src/components/wizards/OrderPartsWizard.tsx:587 -#: src/tables/build/BuildLineTable.tsx:815 +#: src/tables/build/BuildLineTable.tsx:822 #: src/tables/part/PartTable.tsx:522 #: src/tables/sales/SalesOrderLineItemTable.tsx:370 msgid "Order Parts" @@ -4055,27 +4083,27 @@ msgstr "Сканировать штрихкод или QR-код" #: src/defaults/actions.tsx:94 msgid "Go to your user settings" -msgstr "" +msgstr "Перейти к настройкам пользователя" #: src/defaults/actions.tsx:105 msgid "Go to Purchase Orders" -msgstr "" +msgstr "Перейти к заказам на закупку" #: src/defaults/actions.tsx:115 msgid "Go to Sales Orders" -msgstr "" +msgstr "Перейти к заказам на продажу" #: src/defaults/actions.tsx:126 msgid "Go to Return Orders" -msgstr "" +msgstr "Перейти к заказам на возврат" #: src/defaults/actions.tsx:136 msgid "Go to Build Orders" -msgstr "" +msgstr "Перейти к заказам на сборку" #: src/defaults/actions.tsx:145 msgid "Go to System Settings" -msgstr "" +msgstr "Перейти к системным настройкам" #: src/defaults/actions.tsx:154 msgid "Go to the Admin Center" @@ -4349,35 +4377,35 @@ msgstr "Замена создана" #: src/forms/BuildForms.tsx:333 #: src/forms/BuildForms.tsx:408 #: src/forms/BuildForms.tsx:685 -#: src/tables/build/BuildAllocatedStockTable.tsx:150 +#: src/tables/build/BuildAllocatedStockTable.tsx:147 #: src/tables/build/BuildOutputTable.tsx:582 -#: src/tables/part/PartTestResultTable.tsx:272 +#: src/tables/part/PartTestResultTable.tsx:280 msgid "Build Output" msgstr "Продукция" #: src/forms/BuildForms.tsx:334 msgid "Quantity to Complete" -msgstr "" +msgstr "Количество для завершения" #: src/forms/BuildForms.tsx:336 #: src/forms/BuildForms.tsx:411 #: src/forms/BuildForms.tsx:475 -#: src/forms/PurchaseOrderForms.tsx:717 +#: src/forms/PurchaseOrderForms.tsx:769 #: src/forms/ReturnOrderForms.tsx:197 #: src/forms/ReturnOrderForms.tsx:244 #: src/forms/StockForms.tsx:712 #: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:87 -#: src/pages/build/BuildDetail.tsx:222 +#: src/pages/build/BuildDetail.tsx:223 #: src/pages/core/UserDetail.tsx:151 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:168 -#: src/pages/sales/ReturnOrderDetail.tsx:135 -#: src/pages/sales/SalesOrderDetail.tsx:125 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:169 +#: src/pages/sales/ReturnOrderDetail.tsx:136 +#: src/pages/sales/SalesOrderDetail.tsx:126 #: src/pages/stock/StockDetail.tsx:170 #: src/tables/Filter.tsx:274 #: src/tables/build/BuildOutputTable.tsx:404 #: src/tables/machine/MachineListTable.tsx:387 #: src/tables/part/PartPurchaseOrdersTable.tsx:38 -#: src/tables/part/PartTestResultTable.tsx:309 +#: src/tables/part/PartTestResultTable.tsx:317 #: src/tables/sales/ReturnOrderLineItemTable.tsx:138 #: src/tables/sales/ReturnOrderLineItemTable.tsx:176 #: src/tables/settings/CustomStateTable.tsx:79 @@ -4402,7 +4430,7 @@ msgstr "Производство завершено" #: src/forms/BuildForms.tsx:409 msgid "Quantity to Scrap" -msgstr "" +msgstr "Количество для списания" #: src/forms/BuildForms.tsx:429 #: src/forms/BuildForms.tsx:431 @@ -4443,18 +4471,19 @@ msgid "Build outputs have been cancelled" msgstr "Производство отменено" #: src/forms/BuildForms.tsx:631 -#: src/pages/build/BuildDetail.tsx:207 -#: src/pages/company/ManufacturerPartDetail.tsx:85 -#: src/pages/company/SupplierPartDetail.tsx:96 +#: src/pages/build/BuildDetail.tsx:208 +#: src/pages/company/ManufacturerPartDetail.tsx:84 +#: src/pages/company/SupplierPartDetail.tsx:97 #: src/pages/part/PartDetail.tsx:453 #: src/pages/stock/StockDetail.tsx:153 #: src/tables/bom/BomTable.tsx:134 #: src/tables/bom/UsedInTable.tsx:40 -#: src/tables/build/BuildAllocatedStockTable.tsx:108 -#: src/tables/build/BuildLineTable.tsx:336 +#: src/tables/build/BuildAllocatedStockTable.tsx:105 +#: src/tables/build/BuildLineTable.tsx:337 #: src/tables/build/BuildOrderTable.tsx:79 #: src/tables/part/PartSalesAllocationsTable.tsx:61 #: src/tables/part/RelatedPartTable.tsx:73 +#: src/tables/purchasing/ManufacturerPartParametricTable.tsx:21 #: src/tables/purchasing/ManufacturerPartTable.tsx:69 #: src/tables/purchasing/SupplierPartTable.tsx:70 #: src/tables/sales/SalesOrderAllocationTable.tsx:135 @@ -4466,54 +4495,54 @@ msgstr "Внутренний артикул" #: src/forms/BuildForms.tsx:632 #: src/forms/BuildForms.tsx:796 #: src/forms/BuildForms.tsx:897 -#: src/forms/SalesOrderForms.tsx:306 -#: src/tables/build/BuildAllocatedStockTable.tsx:139 -#: src/tables/build/BuildLineTable.tsx:182 +#: src/forms/SalesOrderForms.tsx:385 +#: src/tables/build/BuildAllocatedStockTable.tsx:136 +#: src/tables/build/BuildLineTable.tsx:183 #: src/tables/sales/SalesOrderLineItemTable.tsx:342 #: src/tables/stock/StockItemTable.tsx:338 msgid "Allocated" msgstr "Зарезервировано" #: src/forms/BuildForms.tsx:667 -#: src/forms/SalesOrderForms.tsx:295 -#: src/pages/build/BuildDetail.tsx:108 -#: src/pages/build/BuildDetail.tsx:326 +#: src/forms/SalesOrderForms.tsx:374 +#: src/pages/build/BuildDetail.tsx:109 +#: src/pages/build/BuildDetail.tsx:327 msgid "Source Location" msgstr "Место хранения комплектующих" #: src/forms/BuildForms.tsx:668 -#: src/forms/SalesOrderForms.tsx:296 +#: src/forms/SalesOrderForms.tsx:375 msgid "Select the source location for the stock allocation" msgstr "Выберите исходное расположение для распределения запасов" #: src/forms/BuildForms.tsx:700 -#: src/forms/SalesOrderForms.tsx:336 -#: src/tables/build/BuildLineTable.tsx:574 -#: src/tables/build/BuildLineTable.tsx:731 -#: src/tables/build/BuildLineTable.tsx:830 +#: src/forms/SalesOrderForms.tsx:415 +#: src/tables/build/BuildLineTable.tsx:575 +#: src/tables/build/BuildLineTable.tsx:738 +#: src/tables/build/BuildLineTable.tsx:837 #: src/tables/sales/SalesOrderLineItemTable.tsx:380 #: src/tables/sales/SalesOrderLineItemTable.tsx:406 msgid "Allocate Stock" msgstr "Зарезервировать остатки" #: src/forms/BuildForms.tsx:703 -#: src/forms/SalesOrderForms.tsx:341 +#: src/forms/SalesOrderForms.tsx:420 msgid "Stock items allocated" msgstr "Запасы назначены" #: src/forms/BuildForms.tsx:816 #: src/forms/BuildForms.tsx:917 -#: src/tables/build/BuildAllocatedStockTable.tsx:240 -#: src/tables/build/BuildAllocatedStockTable.tsx:272 -#: src/tables/build/BuildLineTable.tsx:741 -#: src/tables/build/BuildLineTable.tsx:864 +#: src/tables/build/BuildAllocatedStockTable.tsx:243 +#: src/tables/build/BuildAllocatedStockTable.tsx:279 +#: src/tables/build/BuildLineTable.tsx:748 +#: src/tables/build/BuildLineTable.tsx:871 msgid "Consume Stock" -msgstr "" +msgstr "Израсходовать запасы" #: src/forms/BuildForms.tsx:817 #: src/forms/BuildForms.tsx:918 msgid "Stock items scheduled to be consumed" -msgstr "" +msgstr "Складские позиции, запланированные к расходованию" #: src/forms/BuildForms.tsx:817 #: src/forms/BuildForms.tsx:918 @@ -4521,38 +4550,38 @@ msgstr "" #~ msgstr "Stock items consumed" #: src/forms/BuildForms.tsx:853 -#: src/tables/build/BuildLineTable.tsx:514 +#: src/tables/build/BuildLineTable.tsx:515 #: src/tables/part/PartBuildAllocationsTable.tsx:101 msgid "Fully consumed" -msgstr "" +msgstr "Полностью израсходовано" #: src/forms/BuildForms.tsx:898 -#: src/tables/build/BuildLineTable.tsx:187 +#: src/tables/build/BuildLineTable.tsx:188 #: src/tables/stock/StockItemTable.tsx:367 msgid "Consumed" msgstr "Израсходовано" -#: src/forms/CommonForms.tsx:88 -#: src/forms/PurchaseOrderForms.tsx:125 +#: src/forms/CommonForms.tsx:92 +#: src/forms/PurchaseOrderForms.tsx:176 #: src/forms/ReturnOrderForms.tsx:138 -#: src/forms/SalesOrderForms.tsx:164 +#: src/forms/SalesOrderForms.tsx:185 msgid "Select project code for this line item" -msgstr "" +msgstr "Выберите код проекта для этой позиции" #: src/forms/CompanyForms.tsx:150 #~ msgid "Company updated" #~ msgstr "Company updated" -#: src/forms/PartForms.tsx:85 -#: src/forms/PartForms.tsx:207 -#: src/pages/part/CategoryDetail.tsx:124 +#: src/forms/PartForms.tsx:99 +#: src/forms/PartForms.tsx:228 +#: src/pages/part/CategoryDetail.tsx:127 #: src/pages/part/PartDetail.tsx:668 #: src/tables/part/PartCategoryTable.tsx:94 #: src/tables/part/PartTable.tsx:325 msgid "Subscribed" msgstr "Получать уведомления" -#: src/forms/PartForms.tsx:86 +#: src/forms/PartForms.tsx:100 msgid "Subscribe to notifications for this part" msgstr "Подписаться на уведомления для этой детали" @@ -4564,156 +4593,156 @@ msgstr "Подписаться на уведомления для этой де #~ msgid "Part updated" #~ msgstr "Part updated" -#: src/forms/PartForms.tsx:193 +#: src/forms/PartForms.tsx:214 msgid "Parent part category" msgstr "Родительская категория" -#: src/forms/PartForms.tsx:208 +#: src/forms/PartForms.tsx:229 msgid "Subscribe to notifications for this category" msgstr "Подписаться на уведомления для этой категории" -#: src/forms/PurchaseOrderForms.tsx:388 -msgid "Assign Batch Code and Serial Numbers" -msgstr "Назначить код партии и серийные номера" - -#: src/forms/PurchaseOrderForms.tsx:390 -msgid "Assign Batch Code" -msgstr "Назначить код партии" - -#: src/forms/PurchaseOrderForms.tsx:410 -msgid "Choose Location" -msgstr "Выберите место хранения" - -#: src/forms/PurchaseOrderForms.tsx:418 -msgid "Item Destination selected" -msgstr "Пункт назначения товара выбран" - #: src/forms/PurchaseOrderForms.tsx:421 #~ msgid "Assign Batch Code{0}" #~ msgstr "Assign Batch Code{0}" -#: src/forms/PurchaseOrderForms.tsx:428 -msgid "Part category default location selected" -msgstr "Выбрано расположение категории по умолчанию" +#: src/forms/PurchaseOrderForms.tsx:440 +msgid "Assign Batch Code and Serial Numbers" +msgstr "Назначить код партии и серийные номера" -#: src/forms/PurchaseOrderForms.tsx:438 -msgid "Received stock location selected" -msgstr "Выбрано место получения запасов" +#: src/forms/PurchaseOrderForms.tsx:442 +msgid "Assign Batch Code" +msgstr "Назначить код партии" #: src/forms/PurchaseOrderForms.tsx:444 #: src/forms/StockForms.tsx:428 #~ msgid "Remove item from list" #~ msgstr "Remove item from list" -#: src/forms/PurchaseOrderForms.tsx:446 +#: src/forms/PurchaseOrderForms.tsx:462 +msgid "Choose Location" +msgstr "Выберите место хранения" + +#: src/forms/PurchaseOrderForms.tsx:470 +msgid "Item Destination selected" +msgstr "Пункт назначения товара выбран" + +#: src/forms/PurchaseOrderForms.tsx:480 +msgid "Part category default location selected" +msgstr "Выбрано расположение категории по умолчанию" + +#: src/forms/PurchaseOrderForms.tsx:490 +msgid "Received stock location selected" +msgstr "Выбрано место получения запасов" + +#: src/forms/PurchaseOrderForms.tsx:498 msgid "Default location selected" msgstr "Выбрано местоположение по умолчанию" -#: src/forms/PurchaseOrderForms.tsx:507 +#: src/forms/PurchaseOrderForms.tsx:559 msgid "Set Location" msgstr "Задать место хранения" -#: src/forms/PurchaseOrderForms.tsx:524 -msgid "Set Expiry Date" -msgstr "Задать срок годности" - -#: src/forms/PurchaseOrderForms.tsx:532 -#: src/forms/StockForms.tsx:693 -msgid "Adjust Packaging" -msgstr "Настройка упаковки" - -#: src/forms/PurchaseOrderForms.tsx:540 -#: src/forms/StockForms.tsx:684 -#: src/hooks/UseStockAdjustActions.tsx:148 -msgid "Change Status" -msgstr "Изменить статус" - -#: src/forms/PurchaseOrderForms.tsx:546 -msgid "Add Note" -msgstr "Добавить заметку" - #: src/forms/PurchaseOrderForms.tsx:566 #~ msgid "Serial numbers" #~ msgstr "Serial numbers" +#: src/forms/PurchaseOrderForms.tsx:576 +msgid "Set Expiry Date" +msgstr "Задать срок годности" + #: src/forms/PurchaseOrderForms.tsx:582 #~ msgid "Store at line item destination" #~ msgstr "Store at line item destination" -#: src/forms/PurchaseOrderForms.tsx:610 -msgid "Store at default location" -msgstr "Использовать место хранения по умолчанию" +#: src/forms/PurchaseOrderForms.tsx:584 +#: src/forms/StockForms.tsx:693 +msgid "Adjust Packaging" +msgstr "Настройка упаковки" -#: src/forms/PurchaseOrderForms.tsx:625 -msgid "Store at line item destination " -msgstr "Использовать место хранения позиции заказа " +#: src/forms/PurchaseOrderForms.tsx:592 +#: src/forms/StockForms.tsx:684 +#: src/hooks/UseStockAdjustActions.tsx:148 +msgid "Change Status" +msgstr "Изменить статус" -#: src/forms/PurchaseOrderForms.tsx:637 -msgid "Store with already received stock" -msgstr "Использовать место хранения уже полученных запасов" +#: src/forms/PurchaseOrderForms.tsx:598 +msgid "Add Note" +msgstr "Добавить заметку" #: src/forms/PurchaseOrderForms.tsx:658 #~ msgid "Receive line items" #~ msgstr "Receive line items" -#: src/forms/PurchaseOrderForms.tsx:661 -#: src/pages/build/BuildDetail.tsx:340 +#: src/forms/PurchaseOrderForms.tsx:662 +msgid "Store at default location" +msgstr "Использовать место хранения по умолчанию" + +#: src/forms/PurchaseOrderForms.tsx:677 +msgid "Store at line item destination " +msgstr "Использовать место хранения позиции заказа " + +#: src/forms/PurchaseOrderForms.tsx:689 +msgid "Store with already received stock" +msgstr "Использовать место хранения уже полученных запасов" + +#: src/forms/PurchaseOrderForms.tsx:713 +#: src/pages/build/BuildDetail.tsx:341 #: src/pages/stock/StockDetail.tsx:280 #: src/pages/stock/StockDetail.tsx:952 #: src/tables/Filter.tsx:83 -#: src/tables/build/BuildAllocatedStockTable.tsx:128 +#: src/tables/build/BuildAllocatedStockTable.tsx:125 #: src/tables/build/BuildOutputTable.tsx:112 -#: src/tables/part/PartTestResultTable.tsx:260 -#: src/tables/part/PartTestResultTable.tsx:281 +#: src/tables/part/PartTestResultTable.tsx:268 +#: src/tables/part/PartTestResultTable.tsx:289 #: src/tables/sales/SalesOrderAllocationTable.tsx:149 msgid "Batch Code" msgstr "Код партии" -#: src/forms/PurchaseOrderForms.tsx:662 +#: src/forms/PurchaseOrderForms.tsx:714 msgid "Enter batch code for received items" msgstr "Введите код партии для полученных запасов" -#: src/forms/PurchaseOrderForms.tsx:675 +#: src/forms/PurchaseOrderForms.tsx:727 #: src/forms/StockForms.tsx:218 msgid "Serial Numbers" msgstr "Серийные номера" -#: src/forms/PurchaseOrderForms.tsx:676 +#: src/forms/PurchaseOrderForms.tsx:728 msgid "Enter serial numbers for received items" msgstr "Введите серийные номера для полученных запасов" -#: src/forms/PurchaseOrderForms.tsx:690 +#: src/forms/PurchaseOrderForms.tsx:742 #: src/pages/stock/StockDetail.tsx:382 #: src/tables/stock/StockItemTable.tsx:294 msgid "Expiry Date" msgstr "Срок годности" -#: src/forms/PurchaseOrderForms.tsx:691 +#: src/forms/PurchaseOrderForms.tsx:743 msgid "Enter an expiry date for received items" msgstr "Введите дату истечения срока годности полученных элементов" -#: src/forms/PurchaseOrderForms.tsx:703 +#: src/forms/PurchaseOrderForms.tsx:755 #: src/forms/StockForms.tsx:728 -#: src/pages/company/SupplierPartDetail.tsx:172 -#: src/pages/company/SupplierPartDetail.tsx:236 +#: src/pages/company/SupplierPartDetail.tsx:173 +#: src/pages/company/SupplierPartDetail.tsx:237 #: src/pages/stock/StockDetail.tsx:419 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:227 msgid "Packaging" msgstr "Упаковка" -#: src/forms/PurchaseOrderForms.tsx:727 -#: src/pages/company/SupplierPartDetail.tsx:120 +#: src/forms/PurchaseOrderForms.tsx:779 +#: src/pages/company/SupplierPartDetail.tsx:121 #: src/tables/ColumnRenderers.tsx:332 msgid "Note" msgstr "Заметка" -#: src/forms/PurchaseOrderForms.tsx:799 -#: src/pages/company/SupplierPartDetail.tsx:138 +#: src/forms/PurchaseOrderForms.tsx:851 +#: src/pages/company/SupplierPartDetail.tsx:139 #: src/tables/purchasing/SupplierPriceBreakTable.tsx:49 msgid "SKU" msgstr "Артикул поставщика" -#: src/forms/PurchaseOrderForms.tsx:800 +#: src/forms/PurchaseOrderForms.tsx:852 #: src/tables/part/PartPurchaseOrdersTable.tsx:127 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:213 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:283 @@ -4721,11 +4750,11 @@ msgstr "Артикул поставщика" msgid "Received" msgstr "Получено" -#: src/forms/PurchaseOrderForms.tsx:817 +#: src/forms/PurchaseOrderForms.tsx:869 msgid "Receive Line Items" msgstr "Получить позиции" -#: src/forms/PurchaseOrderForms.tsx:823 +#: src/forms/PurchaseOrderForms.tsx:875 msgid "Items received" msgstr "Элементы получены" @@ -4737,9 +4766,37 @@ msgstr "Возврат позиций" msgid "Item received into stock" msgstr "Товар получен на складе" -#: src/forms/SalesOrderForms.tsx:401 +#: src/forms/SalesOrderForms.tsx:208 +#: src/forms/SalesOrderForms.tsx:210 +#: src/tables/sales/SalesOrderShipmentTable.tsx:215 +msgid "Check Shipment" +msgstr "Проверить отправку" + +#: src/forms/SalesOrderForms.tsx:211 +msgid "Marking the shipment as checked indicates that you have verified that all items included in this shipment are correct" +msgstr "Отметка отправления как проверенного означает, что вы проверили корректность всех предметов, включённых в эту отправку" + +#: src/forms/SalesOrderForms.tsx:221 +msgid "Shipment marked as checked" +msgstr "Отправление отмечено как проверенное" + +#: src/forms/SalesOrderForms.tsx:236 +#: src/forms/SalesOrderForms.tsx:238 +#: src/tables/sales/SalesOrderShipmentTable.tsx:228 +msgid "Uncheck Shipment" +msgstr "Снять отметку проверки с отправки" + +#: src/forms/SalesOrderForms.tsx:239 +msgid "Marking the shipment as unchecked indicates that the shipment requires further verification" +msgstr "Отметка отправления как непроверенного означает, что требуется дополнительная проверка" + +#: src/forms/SalesOrderForms.tsx:249 +msgid "Shipment marked as unchecked" +msgstr "Отправление отмечено как непроверенное" + +#: src/forms/SalesOrderForms.tsx:480 msgid "Leave blank to use the order address" -msgstr "" +msgstr "Оставьте поле пустым, чтобы использовать адрес заказа" #: src/forms/StockForms.tsx:110 #~ msgid "Create Stock Item" @@ -4790,152 +4847,152 @@ msgstr "Переместить" #: src/forms/StockForms.tsx:842 msgid "Return" -msgstr "" +msgstr "Возврат" -#: src/forms/StockForms.tsx:963 +#: src/forms/StockForms.tsx:979 #: src/pages/Index/Scan.tsx:182 msgid "Count" msgstr "Количество" -#: src/forms/StockForms.tsx:1246 +#: src/forms/StockForms.tsx:1262 #: src/hooks/UseStockAdjustActions.tsx:108 msgid "Add Stock" msgstr "Увеличить склад" -#: src/forms/StockForms.tsx:1247 +#: src/forms/StockForms.tsx:1263 msgid "Stock added" msgstr "Запас добавлен" -#: src/forms/StockForms.tsx:1250 +#: src/forms/StockForms.tsx:1266 msgid "Increase the quantity of the selected stock items by a given amount." -msgstr "" +msgstr "Увеличить количество выбранных складских позиций на указанную величину." -#: src/forms/StockForms.tsx:1261 +#: src/forms/StockForms.tsx:1277 #: src/hooks/UseStockAdjustActions.tsx:118 msgid "Remove Stock" msgstr "Уменьшить склад" -#: src/forms/StockForms.tsx:1262 +#: src/forms/StockForms.tsx:1278 msgid "Stock removed" msgstr "Запас удален" -#: src/forms/StockForms.tsx:1265 +#: src/forms/StockForms.tsx:1281 msgid "Decrease the quantity of the selected stock items by a given amount." -msgstr "" +msgstr "Уменьшить количество выбранных складских позиций на указанную величину." -#: src/forms/StockForms.tsx:1276 +#: src/forms/StockForms.tsx:1292 #: src/hooks/UseStockAdjustActions.tsx:128 msgid "Transfer Stock" msgstr "Переместить склад" -#: src/forms/StockForms.tsx:1277 +#: src/forms/StockForms.tsx:1293 msgid "Stock transferred" msgstr "Запас перемещен" -#: src/forms/StockForms.tsx:1280 +#: src/forms/StockForms.tsx:1296 msgid "Transfer selected items to the specified location." -msgstr "" +msgstr "Переместить выбранные позиции в указанное место хранения." -#: src/forms/StockForms.tsx:1291 +#: src/forms/StockForms.tsx:1307 #: src/hooks/UseStockAdjustActions.tsx:168 msgid "Return Stock" -msgstr "" +msgstr "Возврат запасов" -#: src/forms/StockForms.tsx:1292 +#: src/forms/StockForms.tsx:1308 msgid "Stock returned" -msgstr "" +msgstr "Запасы возвращены" -#: src/forms/StockForms.tsx:1295 +#: src/forms/StockForms.tsx:1311 msgid "Return selected items into stock, to the specified location." -msgstr "" +msgstr "Вернуть выбранные позиции на склад, в указанное место хранения." -#: src/forms/StockForms.tsx:1306 +#: src/forms/StockForms.tsx:1322 #: src/hooks/UseStockAdjustActions.tsx:98 msgid "Count Stock" msgstr "Подсчёт склада" -#: src/forms/StockForms.tsx:1307 +#: src/forms/StockForms.tsx:1323 msgid "Stock counted" msgstr "Запас посчитан" -#: src/forms/StockForms.tsx:1310 +#: src/forms/StockForms.tsx:1326 msgid "Count the selected stock items, and adjust the quantity accordingly." -msgstr "" +msgstr "Произвести инвентаризацию выбранных складских позиций и скорректировать количество соответствующим образом." -#: src/forms/StockForms.tsx:1321 +#: src/forms/StockForms.tsx:1337 msgid "Change Stock Status" msgstr "Изменить статус запасов" -#: src/forms/StockForms.tsx:1322 +#: src/forms/StockForms.tsx:1338 msgid "Stock status changed" msgstr "Состояние запаса изменено" -#: src/forms/StockForms.tsx:1325 +#: src/forms/StockForms.tsx:1341 msgid "Change the status of the selected stock items." -msgstr "" +msgstr "Изменить статус выбранных складских позиций." -#: src/forms/StockForms.tsx:1336 +#: src/forms/StockForms.tsx:1352 #: src/hooks/UseStockAdjustActions.tsx:138 msgid "Merge Stock" msgstr "Объединить склад" -#: src/forms/StockForms.tsx:1337 +#: src/forms/StockForms.tsx:1353 msgid "Stock merged" msgstr "Запасы объединены" -#: src/forms/StockForms.tsx:1339 +#: src/forms/StockForms.tsx:1355 msgid "Merge Stock Items" msgstr "Объединить складские позиции" -#: src/forms/StockForms.tsx:1341 +#: src/forms/StockForms.tsx:1357 msgid "Merge operation cannot be reversed" msgstr "Операция объединения не может быть отменена" -#: src/forms/StockForms.tsx:1342 +#: src/forms/StockForms.tsx:1358 msgid "Tracking information may be lost when merging items" msgstr "При объединении позиций информация об отслеживании может быть потеряна" -#: src/forms/StockForms.tsx:1343 +#: src/forms/StockForms.tsx:1359 msgid "Supplier information may be lost when merging items" msgstr "При объединении может быть потеряна информация о поставщиках" -#: src/forms/StockForms.tsx:1361 +#: src/forms/StockForms.tsx:1377 msgid "Assign Stock to Customer" msgstr "Передать запас клиенту" -#: src/forms/StockForms.tsx:1362 +#: src/forms/StockForms.tsx:1378 msgid "Stock assigned to customer" msgstr "Запас передан клиенту" -#: src/forms/StockForms.tsx:1372 +#: src/forms/StockForms.tsx:1388 msgid "Delete Stock Items" msgstr "Удалить складскую позицию" -#: src/forms/StockForms.tsx:1373 +#: src/forms/StockForms.tsx:1389 msgid "Stock deleted" msgstr "Запас удален" -#: src/forms/StockForms.tsx:1376 +#: src/forms/StockForms.tsx:1392 msgid "This operation will permanently delete the selected stock items." -msgstr "" +msgstr "Эта операция необратимо удалит выбранные складские позиции." -#: src/forms/StockForms.tsx:1385 +#: src/forms/StockForms.tsx:1401 msgid "Parent stock location" msgstr "Расположение основного склада" -#: src/forms/StockForms.tsx:1512 +#: src/forms/StockForms.tsx:1528 msgid "Find Serial Number" msgstr "Поиск по серийному номеру" -#: src/forms/StockForms.tsx:1523 +#: src/forms/StockForms.tsx:1539 msgid "No matching items" msgstr "Нет подходящих элементов" -#: src/forms/StockForms.tsx:1529 +#: src/forms/StockForms.tsx:1545 msgid "Multiple matching items" msgstr "Несколько подходящих элементов" -#: src/forms/StockForms.tsx:1538 +#: src/forms/StockForms.tsx:1554 msgid "Invalid response from server" msgstr "Неверный ответ сервера" @@ -4953,7 +5010,6 @@ msgstr "Список вариантов для выбора" #: src/tables/FilterSelectDrawer.tsx:137 #: src/tables/FilterSelectDrawer.tsx:149 #: src/tables/part/PartTestResultTable.tsx:206 -#: src/tables/purchasing/ManufacturerPartParameterTable.tsx:42 #: src/tables/stock/StockItemTestResultTable.tsx:207 msgid "Value" msgstr "Значение" @@ -5018,7 +5074,7 @@ msgstr "На сервере есть конфликтующие сессии д #: src/functions/auth.tsx:142 msgid "No response from server." -msgstr "" +msgstr "Нет ответа от сервера." #: src/functions/auth.tsx:142 #~ msgid "Found an existing login - using it to log you in." @@ -5233,7 +5289,7 @@ msgstr "Передать складские позиции клиенту" #: src/hooks/UseStockAdjustActions.tsx:170 msgid "Return selected items into stock" -msgstr "" +msgstr "Вернуть выбранные товары на склад" #: src/hooks/UseStockAdjustActions.tsx:178 msgid "Delete Stock" @@ -5244,7 +5300,7 @@ msgid "Delete selected stock items" msgstr "Удалить выбранные складские позиции" #: src/hooks/UseStockAdjustActions.tsx:205 -#: src/pages/part/PartDetail.tsx:1137 +#: src/pages/part/PartDetail.tsx:1158 msgid "Stock Actions" msgstr "Действия со складом" @@ -5338,7 +5394,7 @@ msgstr "Код TOTP" #: src/pages/Auth/MFA.tsx:35 msgid "Enter one of your codes: {mfa_types}" -msgstr "" +msgstr "Введите один из ваших кодов: {mfa_types}" #: src/pages/Auth/MFA.tsx:42 msgid "Remember this device" @@ -5879,32 +5935,32 @@ msgstr "{0}" #: src/pages/Index/Settings/AccountSettings/MFASettings.tsx:103 msgid "Reauthentication Succeeded" -msgstr "" +msgstr "Повторная аутентификация прошла успешно" #: src/pages/Index/Settings/AccountSettings/MFASettings.tsx:104 msgid "You have been reauthenticated successfully." -msgstr "" +msgstr "Вы успешно повторно прошли аутентификацию." #: src/pages/Index/Settings/AccountSettings/MFASettings.tsx:112 msgid "Error during reauthentication" -msgstr "" +msgstr "Ошибка при повторной аутентификации" #: src/pages/Index/Settings/AccountSettings/MFASettings.tsx:115 msgid "Reauthentication Failed" -msgstr "" +msgstr "Повторная аутентификация не удалась" #: src/pages/Index/Settings/AccountSettings/MFASettings.tsx:116 msgid "Failed to reauthenticate" -msgstr "" +msgstr "Не удалось повторно пройти аутентификацию" #: src/pages/Index/Settings/AccountSettings/MFASettings.tsx:131 #: src/pages/Index/Settings/AccountSettings/MFASettings.tsx:171 msgid "Reauthenticate" -msgstr "" +msgstr "Пройти повторную аутентификацию" #: src/pages/Index/Settings/AccountSettings/MFASettings.tsx:133 msgid "Reauthentiction is required to continue." -msgstr "" +msgstr "Для продолжения необходима повторная аутентификация." #: src/pages/Index/Settings/AccountSettings/MFASettings.tsx:195 msgid "Enter your password" @@ -5912,76 +5968,79 @@ msgstr "Введите пароль" #: src/pages/Index/Settings/AccountSettings/MFASettings.tsx:219 msgid "Enter one of your TOTP codes" -msgstr "" +msgstr "Введите один из ваших кодов TOTP" #: src/pages/Index/Settings/AccountSettings/MFASettings.tsx:271 msgid "WebAuthn Credential Removed" -msgstr "" +msgstr "Учётные данные WebAuthn удалены" #: src/pages/Index/Settings/AccountSettings/MFASettings.tsx:272 msgid "WebAuthn credential removed successfully." -msgstr "" +msgstr "Учётные данные WebAuthn успешно удалены." #: src/pages/Index/Settings/AccountSettings/MFASettings.tsx:281 msgid "Error removing WebAuthn credential" -msgstr "" +msgstr "Ошибка при удалении учётных данных WebAuthn" #: src/pages/Index/Settings/AccountSettings/MFASettings.tsx:302 msgid "Remove WebAuthn Credential" -msgstr "" +msgstr "Удалить учётные данные WebAuthn" #: src/pages/Index/Settings/AccountSettings/MFASettings.tsx:310 #: src/pages/Index/Settings/AccountSettings/MFASettings.tsx:401 +#: src/tables/build/BuildAllocatedStockTable.tsx:181 +#: src/tables/build/BuildLineTable.tsx:668 +#: src/tables/sales/SalesOrderAllocationTable.tsx:220 msgid "Confirm Removal" -msgstr "" +msgstr "Подтвердить удаление" #: src/pages/Index/Settings/AccountSettings/MFASettings.tsx:312 msgid "Confirm removal of webauth credential" -msgstr "" +msgstr "Подтвердите удаление учётных данных WebAuthn" #: src/pages/Index/Settings/AccountSettings/MFASettings.tsx:364 msgid "TOTP Removed" -msgstr "" +msgstr "Код TOTP удалён" #: src/pages/Index/Settings/AccountSettings/MFASettings.tsx:365 msgid "TOTP token removed successfully." -msgstr "" +msgstr "Токен TOTP успешно удалён." #: src/pages/Index/Settings/AccountSettings/MFASettings.tsx:375 msgid "Error removing TOTP token" -msgstr "" +msgstr "Ошибка при удалении токена TOTP" #: src/pages/Index/Settings/AccountSettings/MFASettings.tsx:394 msgid "Remove TOTP Token" -msgstr "" +msgstr "Удалить токен TOTP" #: src/pages/Index/Settings/AccountSettings/MFASettings.tsx:403 msgid "Confirm removal of TOTP code" -msgstr "" +msgstr "Подтвердите удаление кода TOTP" #: src/pages/Index/Settings/AccountSettings/MFASettings.tsx:463 msgid "TOTP Already Registered" -msgstr "" +msgstr "TOTP уже зарегистрирован" #: src/pages/Index/Settings/AccountSettings/MFASettings.tsx:464 msgid "A TOTP token is already registered for this account." -msgstr "" +msgstr "Для этой учётной записи уже зарегистрирован токен TOTP." #: src/pages/Index/Settings/AccountSettings/MFASettings.tsx:479 msgid "Error Fetching TOTP Registration" -msgstr "" +msgstr "Ошибка при получении регистрации TOTP" #: src/pages/Index/Settings/AccountSettings/MFASettings.tsx:480 msgid "An unexpected error occurred while fetching TOTP registration data." -msgstr "" +msgstr "Произошла непредвиденная ошибка при получении данных регистрации TOTP." #: src/pages/Index/Settings/AccountSettings/MFASettings.tsx:522 msgid "TOTP Registered" -msgstr "" +msgstr "TOTP зарегистрирован" #: src/pages/Index/Settings/AccountSettings/MFASettings.tsx:523 msgid "TOTP token registered successfully." -msgstr "" +msgstr "Токен TOTP успешно зарегистрирован." #: src/pages/Index/Settings/AccountSettings/MFASettings.tsx:532 msgid "Error registering TOTP token" @@ -5993,7 +6052,7 @@ msgstr "Зарегестрировать токен TOTP" #: src/pages/Index/Settings/AccountSettings/MFASettings.tsx:596 msgid "Error fetching recovery codes" -msgstr "" +msgstr "Ошибка при получении резервных кодов" #: src/pages/Index/Settings/AccountSettings/MFASettings.tsx:632 #: src/pages/Index/Settings/AccountSettings/MFASettings.tsx:648 @@ -6003,43 +6062,43 @@ msgstr "Коды восстановления" #: src/pages/Index/Settings/AccountSettings/MFASettings.tsx:650 msgid "The following one time recovery codes are available for use" -msgstr "" +msgstr "Доступны следующие одноразовые резервные коды" #: src/pages/Index/Settings/AccountSettings/MFASettings.tsx:667 msgid "Copy recovery codes to clipboard" -msgstr "" +msgstr "Скопировать резервные коды в буфер обмена" #: src/pages/Index/Settings/AccountSettings/MFASettings.tsx:677 msgid "No Unused Codes" -msgstr "" +msgstr "Нет неиспользованных кодов" #: src/pages/Index/Settings/AccountSettings/MFASettings.tsx:679 msgid "There are no available recovery codes" -msgstr "" +msgstr "Доступных резервных кодов нет" #: src/pages/Index/Settings/AccountSettings/MFASettings.tsx:768 msgid "WebAuthn Registered" -msgstr "" +msgstr "WebAuthn зарегистрирован" #: src/pages/Index/Settings/AccountSettings/MFASettings.tsx:769 msgid "WebAuthn credential registered successfully" -msgstr "" +msgstr "Учётные данные WebAuthn успешно зарегистрированы" #: src/pages/Index/Settings/AccountSettings/MFASettings.tsx:778 msgid "Error registering WebAuthn credential" -msgstr "" +msgstr "Ошибка при регистрации учётных данных WebAuthn" #: src/pages/Index/Settings/AccountSettings/MFASettings.tsx:781 msgid "WebAuthn Registration Failed" -msgstr "" +msgstr "Регистрация WebAuthn не удалась" #: src/pages/Index/Settings/AccountSettings/MFASettings.tsx:782 msgid "Failed to register WebAuthn credential" -msgstr "" +msgstr "Не удалось зарегистрировать учётные данные WebAuthn" #: src/pages/Index/Settings/AccountSettings/MFASettings.tsx:805 msgid "Error fetching WebAuthn registration" -msgstr "" +msgstr "Ошибка при получении регистрации WebAuthn" #: src/pages/Index/Settings/AccountSettings/MFASettings.tsx:845 msgid "TOTP" @@ -6055,11 +6114,11 @@ msgstr "Коды восстановления доступа используя #: src/pages/Index/Settings/AccountSettings/MFASettings.tsx:859 msgid "WebAuthn" -msgstr "" +msgstr "WebAuthn" #: src/pages/Index/Settings/AccountSettings/MFASettings.tsx:860 msgid "Web Authentication (WebAuthn) is a web standard for secure authentication" -msgstr "" +msgstr "Web-аутентификация (WebAuthn) — это веб-стандарт для безопасной аутентификации" #: src/pages/Index/Settings/AccountSettings/MFASettings.tsx:956 msgid "Last used at" @@ -6081,15 +6140,15 @@ msgstr "Токены многофакторной аутентификации #: src/pages/Index/Settings/AccountSettings/MFASettings.tsx:979 msgid "Register Authentication Method" -msgstr "" +msgstr "Зарегистрировать метод аутентификации" #: src/pages/Index/Settings/AccountSettings/MFASettings.tsx:995 msgid "No MFA Methods Available" -msgstr "" +msgstr "Нет доступных методов MFA" #: src/pages/Index/Settings/AccountSettings/MFASettings.tsx:999 msgid "There are no MFA methods available for configuration" -msgstr "" +msgstr "Нет доступных методов MFA для настройки" #: src/pages/Index/Settings/AccountSettings/QrRegistrationForm.tsx:27 msgid "Secret" @@ -6141,7 +6200,7 @@ msgstr "Токены доступа" #: src/pages/Index/Settings/AccountSettings/SecurityContent.tsx:94 msgid "Session Information" -msgstr "" +msgstr "Информация о сессии" #: src/pages/Index/Settings/AccountSettings/SecurityContent.tsx:132 #: src/tables/general/BarcodeScanTable.tsx:60 @@ -6153,7 +6212,7 @@ msgstr "Метка времени" #: src/pages/Index/Settings/AccountSettings/SecurityContent.tsx:133 msgid "Method" -msgstr "" +msgstr "Метод" #: src/pages/Index/Settings/AccountSettings/SecurityContent.tsx:176 msgid "Error while updating email" @@ -6394,32 +6453,36 @@ msgid "Email Messages" msgstr "Сообщения электронной почты" #: src/pages/Index/Settings/AdminCenter/HomePanel.tsx:22 -msgid "Active Alerts" -msgstr "" +#~ msgid "Active Alerts" +#~ msgstr "Active Alerts" #: src/pages/Index/Settings/AdminCenter/HomePanel.tsx:27 -msgid "Inactive Alerts" +#~ msgid "Inactive Alerts" +#~ msgstr "Inactive Alerts" + +#: src/pages/Index/Settings/AdminCenter/HomePanel.tsx:36 +msgid "System Status" msgstr "" -#: src/pages/Index/Settings/AdminCenter/HomePanel.tsx:38 +#: src/pages/Index/Settings/AdminCenter/HomePanel.tsx:47 msgid "Admin Center Information" msgstr "Информация об админ центре" -#: src/pages/Index/Settings/AdminCenter/HomePanel.tsx:44 +#: src/pages/Index/Settings/AdminCenter/HomePanel.tsx:53 msgid "The home panel (and the whole Admin Center) is a new feature starting with the new UI and was previously (before 1.0) not available." -msgstr "" +msgstr "Домашняя панель (как и весь Центр администрирования) — это новая функция, появившаяся вместе с новым интерфейсом и ранее (до версии 1.0) была недоступна." -#: src/pages/Index/Settings/AdminCenter/HomePanel.tsx:51 +#: src/pages/Index/Settings/AdminCenter/HomePanel.tsx:60 msgid "The admin center provides a centralized location for all administration functionality and is meant to replace all interaction with the (django) backend admin interface." -msgstr "" +msgstr "Центр администрирования предоставляет единое место для всех административных функций и предназначен для полного замещения взаимодействия с административным интерфейсом (Django) бекэнда." -#: src/pages/Index/Settings/AdminCenter/HomePanel.tsx:58 +#: src/pages/Index/Settings/AdminCenter/HomePanel.tsx:67 msgid "Please open feature requests (after checking the tracker) for any existing backend admin functionality you are missing in this UI. The backend admin interface should be used carefully and seldom." -msgstr "" +msgstr "Пожалуйста, создавайте запросы на новые функции (после проверки трекера), если в данном интерфейсе вам не хватает какой-то функциональности административной панели бекэнда. Интерфейс административной панели бекэнда следует использовать осторожно и как можно реже." -#: src/pages/Index/Settings/AdminCenter/HomePanel.tsx:76 +#: src/pages/Index/Settings/AdminCenter/HomePanel.tsx:85 msgid "Quick Actions" -msgstr "" +msgstr "Быстрые действия" #: src/pages/Index/Settings/AdminCenter/Index.tsx:107 #~ msgid "User Management" @@ -6427,7 +6490,7 @@ msgstr "" #: src/pages/Index/Settings/AdminCenter/Index.tsx:115 msgid "Home" -msgstr "" +msgstr "Главная" #: src/pages/Index/Settings/AdminCenter/Index.tsx:122 msgid "Users / Access" @@ -6476,11 +6539,11 @@ msgstr "Единицы измерения" #: src/pages/Index/Settings/AdminCenter/Index.tsx:195 #: src/pages/part/CategoryDetail.tsx:313 -msgid "Part Parameters" -msgstr "Параметры деталей" +#~ msgid "Part Parameters" +#~ msgstr "Part Parameters" #: src/pages/Index/Settings/AdminCenter/Index.tsx:202 -#: src/pages/part/CategoryDetail.tsx:306 +#: src/pages/part/CategoryDetail.tsx:329 msgid "Category Parameters" msgstr "Параметры категории" @@ -6494,7 +6557,7 @@ msgstr "Типы мест хранения" #: src/pages/Index/Settings/AdminCenter/Index.tsx:235 #: src/pages/Index/Settings/AdminCenter/MachineManagementPanel.tsx:52 -#: src/tables/machine/MachineTypeTable.tsx:325 +#: src/tables/machine/MachineTypeTable.tsx:323 msgid "Machines" msgstr "Оборудование" @@ -6507,8 +6570,8 @@ msgid "Data Management" msgstr "Управление данными" #: src/pages/Index/Settings/AdminCenter/Index.tsx:270 -#: src/pages/Index/Settings/SystemSettings.tsx:175 -#: src/pages/Index/Settings/UserSettings.tsx:118 +#: src/pages/Index/Settings/SystemSettings.tsx:176 +#: src/pages/Index/Settings/UserSettings.tsx:119 msgid "Reporting" msgstr "Отчёты" @@ -6538,7 +6601,7 @@ msgstr "Расширенные настройки" #: src/pages/Index/Settings/AdminCenter/MachineManagementPanel.tsx:60 msgid "Machine Drivers" -msgstr "" +msgstr "Драйверы машин" #: src/pages/Index/Settings/AdminCenter/MachineManagementPanel.tsx:62 #~ msgid "There are no machine registry errors." @@ -6707,13 +6770,13 @@ msgstr "Токены" #: src/pages/Index/Settings/PluginSettingsGroup.tsx:99 msgid "The settings below are specific to each available plugin" -msgstr "" +msgstr "Настройки ниже специфичны для каждого доступного плагина" -#: src/pages/Index/Settings/SystemSettings.tsx:77 +#: src/pages/Index/Settings/SystemSettings.tsx:78 msgid "Authentication" msgstr "Аутентификация" -#: src/pages/Index/Settings/SystemSettings.tsx:103 +#: src/pages/Index/Settings/SystemSettings.tsx:104 msgid "Barcodes" msgstr "Штрих-коды" @@ -6725,12 +6788,12 @@ msgstr "Штрих-коды" #~ msgid "This panel is a placeholder." #~ msgstr "This panel is a placeholder." -#: src/pages/Index/Settings/SystemSettings.tsx:127 -#: src/pages/Index/Settings/UserSettings.tsx:112 +#: src/pages/Index/Settings/SystemSettings.tsx:128 +#: src/pages/Index/Settings/UserSettings.tsx:113 msgid "The settings below are specific to each available notification method" -msgstr "" +msgstr "Настройки ниже специфичны для каждого доступного метода уведомлений" -#: src/pages/Index/Settings/SystemSettings.tsx:133 +#: src/pages/Index/Settings/SystemSettings.tsx:134 msgid "Pricing" msgstr "Цены" @@ -6738,7 +6801,7 @@ msgstr "Цены" #~ msgid "Exchange Rates" #~ msgstr "Exchange Rates" -#: src/pages/Index/Settings/SystemSettings.tsx:169 +#: src/pages/Index/Settings/SystemSettings.tsx:170 msgid "Labels" msgstr "Метки" @@ -6790,15 +6853,15 @@ msgstr "Пометить как непрочитанное" #~ msgid "Delete notifications" #~ msgstr "Delete notifications" -#: src/pages/build/BuildDetail.tsx:69 +#: src/pages/build/BuildDetail.tsx:70 msgid "No Required Items" msgstr "Детали не требуются" -#: src/pages/build/BuildDetail.tsx:71 +#: src/pages/build/BuildDetail.tsx:72 msgid "This build order does not have any required items." msgstr "Для заказа на сборку не требуется никаких деталей." -#: src/pages/build/BuildDetail.tsx:72 +#: src/pages/build/BuildDetail.tsx:73 msgid "The assembled part may not have a Bill of Materials (BOM) defined, or the BOM is empty." msgstr "У собираемой детали возможно не задана спецификация, или спецификация пустая." @@ -6826,7 +6889,7 @@ msgstr "У собираемой детали возможно не задана #~ msgid "Build Order updated" #~ msgstr "Build Order updated" -#: src/pages/build/BuildDetail.tsx:215 +#: src/pages/build/BuildDetail.tsx:216 #: src/pages/part/PartDetail.tsx:480 #: src/pages/stock/StockDetail.tsx:161 #: src/tables/bom/UsedInTable.tsx:44 @@ -6843,10 +6906,10 @@ msgstr "Ревизия" #~ msgid "Duplicate build order" #~ msgstr "Duplicate build order" -#: src/pages/build/BuildDetail.tsx:228 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:174 -#: src/pages/sales/ReturnOrderDetail.tsx:141 -#: src/pages/sales/SalesOrderDetail.tsx:131 +#: src/pages/build/BuildDetail.tsx:229 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:175 +#: src/pages/sales/ReturnOrderDetail.tsx:142 +#: src/pages/sales/SalesOrderDetail.tsx:132 #: src/pages/stock/StockDetail.tsx:176 msgid "Custom Status" msgstr "Пользовательский статус" @@ -6855,9 +6918,9 @@ msgstr "Пользовательский статус" #~ msgid "Delete build order" #~ msgstr "Delete build order" -#: src/pages/build/BuildDetail.tsx:237 -#: src/pages/build/BuildDetail.tsx:723 -#: src/pages/build/BuildIndex.tsx:28 +#: src/pages/build/BuildDetail.tsx:238 +#: src/pages/build/BuildDetail.tsx:728 +#: src/pages/build/BuildIndex.tsx:34 #: src/pages/stock/LocationDetail.tsx:140 #: src/tables/build/BuildOrderTable.tsx:123 #: src/tables/build/BuildOrderTable.tsx:183 @@ -6865,57 +6928,57 @@ msgstr "Пользовательский статус" msgid "External" msgstr "Сторонний" -#: src/pages/build/BuildDetail.tsx:244 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:141 -#: src/pages/sales/ReturnOrderDetail.tsx:108 -#: src/pages/sales/SalesOrderDetail.tsx:98 +#: src/pages/build/BuildDetail.tsx:245 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:142 +#: src/pages/sales/ReturnOrderDetail.tsx:109 +#: src/pages/sales/SalesOrderDetail.tsx:99 #: src/tables/ColumnRenderers.tsx:321 -#: src/tables/build/BuildAllocatedStockTable.tsx:115 -#: src/tables/build/BuildLineTable.tsx:352 +#: src/tables/build/BuildAllocatedStockTable.tsx:112 +#: src/tables/build/BuildLineTable.tsx:353 msgid "Reference" msgstr "Ссылка" -#: src/pages/build/BuildDetail.tsx:258 +#: src/pages/build/BuildDetail.tsx:259 msgid "Parent Build" msgstr "Родительский заказ" -#: src/pages/build/BuildDetail.tsx:269 +#: src/pages/build/BuildDetail.tsx:270 msgid "Build Quantity" msgstr "Количество производимых деталей" -#: src/pages/build/BuildDetail.tsx:275 +#: src/pages/build/BuildDetail.tsx:276 #: src/pages/part/PartDetail.tsx:598 #: src/tables/bom/BomTable.tsx:365 #: src/tables/bom/BomTable.tsx:407 msgid "Can Build" msgstr "Можно произвести" -#: src/pages/build/BuildDetail.tsx:284 -#: src/pages/build/BuildDetail.tsx:474 +#: src/pages/build/BuildDetail.tsx:285 +#: src/pages/build/BuildDetail.tsx:475 msgid "Completed Outputs" msgstr "Завершённая продукция" -#: src/pages/build/BuildDetail.tsx:301 +#: src/pages/build/BuildDetail.tsx:302 #: src/tables/Filter.tsx:381 #: src/tables/build/BuildOrderTable.tsx:143 msgid "Issued By" msgstr "Создал" -#: src/pages/build/BuildDetail.tsx:309 +#: src/pages/build/BuildDetail.tsx:310 #: src/pages/part/PartDetail.tsx:691 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:261 -#: src/pages/sales/ReturnOrderDetail.tsx:239 -#: src/pages/sales/SalesOrderDetail.tsx:232 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:262 +#: src/pages/sales/ReturnOrderDetail.tsx:240 +#: src/pages/sales/SalesOrderDetail.tsx:233 #: src/tables/ColumnRenderers.tsx:464 #: src/tables/Filter.tsx:319 msgid "Responsible" msgstr "Ответственный" -#: src/pages/build/BuildDetail.tsx:327 +#: src/pages/build/BuildDetail.tsx:328 msgid "Any location" msgstr "Любое расположение" -#: src/pages/build/BuildDetail.tsx:334 +#: src/pages/build/BuildDetail.tsx:335 msgid "Destination Location" msgstr "Место назначения" @@ -6924,24 +6987,24 @@ msgstr "Место назначения" #~ msgid "Test Statistics" #~ msgstr "Test Statistics" -#: src/pages/build/BuildDetail.tsx:350 +#: src/pages/build/BuildDetail.tsx:351 #: src/tables/settings/ApiTokenTable.tsx:97 #: src/tables/settings/PendingTasksTable.tsx:41 msgid "Created" msgstr "Создано" -#: src/pages/build/BuildDetail.tsx:358 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:286 -#: src/pages/sales/ReturnOrderDetail.tsx:265 -#: src/pages/sales/SalesOrderDetail.tsx:257 +#: src/pages/build/BuildDetail.tsx:359 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:287 +#: src/pages/sales/ReturnOrderDetail.tsx:266 +#: src/pages/sales/SalesOrderDetail.tsx:258 #: src/tables/ColumnRenderers.tsx:486 msgid "Start Date" msgstr "Начальная дата" -#: src/pages/build/BuildDetail.tsx:366 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:294 -#: src/pages/sales/ReturnOrderDetail.tsx:273 -#: src/pages/sales/SalesOrderDetail.tsx:265 +#: src/pages/build/BuildDetail.tsx:367 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:295 +#: src/pages/sales/ReturnOrderDetail.tsx:274 +#: src/pages/sales/SalesOrderDetail.tsx:266 #: src/tables/ColumnRenderers.tsx:494 #: src/tables/part/PartPurchaseOrdersTable.tsx:101 #: src/tables/sales/ReturnOrderLineItemTable.tsx:154 @@ -6954,185 +7017,185 @@ msgstr "Целевая дата" #~ msgstr "Reporting Actions" #: src/pages/build/BuildDetail.tsx:374 +#~ msgid "Print build report" +#~ msgstr "Print build report" + +#: src/pages/build/BuildDetail.tsx:375 #: src/tables/build/BuildOrderTable.tsx:93 #: src/tables/sales/SalesOrderLineItemTable.tsx:347 msgid "Completed" msgstr "Завершено" -#: src/pages/build/BuildDetail.tsx:374 -#~ msgid "Print build report" -#~ msgstr "Print build report" - -#: src/pages/build/BuildDetail.tsx:410 +#: src/pages/build/BuildDetail.tsx:411 msgid "Build Details" msgstr "Сведения о заказе" -#: src/pages/build/BuildDetail.tsx:416 +#: src/pages/build/BuildDetail.tsx:417 msgid "Required Parts" msgstr "Необходимые детали" -#: src/pages/build/BuildDetail.tsx:428 -#: src/pages/sales/SalesOrderDetail.tsx:407 -#: src/pages/sales/SalesOrderShipmentDetail.tsx:261 +#: src/pages/build/BuildDetail.tsx:429 +#: src/pages/sales/SalesOrderDetail.tsx:408 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:259 #: src/tables/part/PartSalesAllocationsTable.tsx:73 msgid "Allocated Stock" msgstr "Зарезервированные остатки" -#: src/pages/build/BuildDetail.tsx:444 +#: src/pages/build/BuildDetail.tsx:445 msgid "Consumed Stock" msgstr "Израсходованные остатки" -#: src/pages/build/BuildDetail.tsx:461 +#: src/pages/build/BuildDetail.tsx:462 msgid "Incomplete Outputs" msgstr "Незавершённая продукция" -#: src/pages/build/BuildDetail.tsx:489 +#: src/pages/build/BuildDetail.tsx:490 msgid "External Orders" msgstr "Сторонние заказы" -#: src/pages/build/BuildDetail.tsx:503 +#: src/pages/build/BuildDetail.tsx:504 msgid "Child Build Orders" msgstr "Дочерние заказы на сборку" -#: src/pages/build/BuildDetail.tsx:513 -#: src/pages/part/PartDetail.tsx:937 +#: src/pages/build/BuildDetail.tsx:514 +#: src/pages/part/PartDetail.tsx:926 #: src/pages/stock/StockDetail.tsx:587 #: src/tables/build/BuildOutputTable.tsx:654 #: src/tables/stock/StockItemTestResultTable.tsx:173 msgid "Test Results" msgstr "Результаты тестов" -#: src/pages/build/BuildDetail.tsx:550 +#: src/pages/build/BuildDetail.tsx:555 msgid "Edit Build Order" msgstr "Редактировать заказ на производство" -#: src/pages/build/BuildDetail.tsx:572 +#: src/pages/build/BuildDetail.tsx:577 #: src/tables/build/BuildOrderTable.tsx:207 #: src/tables/build/BuildOrderTable.tsx:223 msgid "Add Build Order" msgstr "Создать заказ на сборку" -#: src/pages/build/BuildDetail.tsx:582 +#: src/pages/build/BuildDetail.tsx:587 msgid "Cancel Build Order" msgstr "Отменить заказ для производства" -#: src/pages/build/BuildDetail.tsx:584 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:416 -#: src/pages/sales/ReturnOrderDetail.tsx:427 -#: src/pages/sales/SalesOrderDetail.tsx:454 +#: src/pages/build/BuildDetail.tsx:589 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:421 +#: src/pages/sales/ReturnOrderDetail.tsx:432 +#: src/pages/sales/SalesOrderDetail.tsx:459 msgid "Order cancelled" msgstr "Заказ отменён" -#: src/pages/build/BuildDetail.tsx:585 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:415 -#: src/pages/sales/ReturnOrderDetail.tsx:426 -#: src/pages/sales/SalesOrderDetail.tsx:453 +#: src/pages/build/BuildDetail.tsx:590 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:420 +#: src/pages/sales/ReturnOrderDetail.tsx:431 +#: src/pages/sales/SalesOrderDetail.tsx:458 msgid "Cancel this order" msgstr "Отменить заказ" -#: src/pages/build/BuildDetail.tsx:594 +#: src/pages/build/BuildDetail.tsx:599 msgid "Hold Build Order" msgstr "Отложить заказ на сборку" -#: src/pages/build/BuildDetail.tsx:596 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:423 -#: src/pages/sales/ReturnOrderDetail.tsx:434 -#: src/pages/sales/SalesOrderDetail.tsx:461 +#: src/pages/build/BuildDetail.tsx:601 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:428 +#: src/pages/sales/ReturnOrderDetail.tsx:439 +#: src/pages/sales/SalesOrderDetail.tsx:466 msgid "Place this order on hold" msgstr "Отложите этот заказ" -#: src/pages/build/BuildDetail.tsx:597 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:424 -#: src/pages/sales/ReturnOrderDetail.tsx:435 -#: src/pages/sales/SalesOrderDetail.tsx:462 +#: src/pages/build/BuildDetail.tsx:602 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:429 +#: src/pages/sales/ReturnOrderDetail.tsx:440 +#: src/pages/sales/SalesOrderDetail.tsx:467 msgid "Order placed on hold" msgstr "Заказ отложен" -#: src/pages/build/BuildDetail.tsx:602 +#: src/pages/build/BuildDetail.tsx:607 msgid "Issue Build Order" msgstr "Оформить заказ на сборку" -#: src/pages/build/BuildDetail.tsx:604 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:407 -#: src/pages/sales/ReturnOrderDetail.tsx:418 -#: src/pages/sales/SalesOrderDetail.tsx:445 +#: src/pages/build/BuildDetail.tsx:609 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:412 +#: src/pages/sales/ReturnOrderDetail.tsx:423 +#: src/pages/sales/SalesOrderDetail.tsx:450 msgid "Issue this order" msgstr "Оформить данный заказ" -#: src/pages/build/BuildDetail.tsx:605 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:408 -#: src/pages/sales/ReturnOrderDetail.tsx:419 -#: src/pages/sales/SalesOrderDetail.tsx:446 +#: src/pages/build/BuildDetail.tsx:610 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:413 +#: src/pages/sales/ReturnOrderDetail.tsx:424 +#: src/pages/sales/SalesOrderDetail.tsx:451 msgid "Order issued" msgstr "Заказ оформлен" -#: src/pages/build/BuildDetail.tsx:624 +#: src/pages/build/BuildDetail.tsx:629 msgid "Complete Build Order" msgstr "Завершить заказ на сборку" -#: src/pages/build/BuildDetail.tsx:630 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:436 -#: src/pages/sales/ReturnOrderDetail.tsx:442 -#: src/pages/sales/SalesOrderDetail.tsx:480 +#: src/pages/build/BuildDetail.tsx:635 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:441 +#: src/pages/sales/ReturnOrderDetail.tsx:447 +#: src/pages/sales/SalesOrderDetail.tsx:485 msgid "Mark this order as complete" msgstr "Отметить данный заказ как завершённый" -#: src/pages/build/BuildDetail.tsx:633 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:430 -#: src/pages/sales/ReturnOrderDetail.tsx:443 -#: src/pages/sales/SalesOrderDetail.tsx:481 +#: src/pages/build/BuildDetail.tsx:638 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:435 +#: src/pages/sales/ReturnOrderDetail.tsx:448 +#: src/pages/sales/SalesOrderDetail.tsx:486 msgid "Order completed" msgstr "Заказ завершён" -#: src/pages/build/BuildDetail.tsx:660 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:459 -#: src/pages/sales/ReturnOrderDetail.tsx:470 -#: src/pages/sales/SalesOrderDetail.tsx:516 +#: src/pages/build/BuildDetail.tsx:665 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:464 +#: src/pages/sales/ReturnOrderDetail.tsx:475 +#: src/pages/sales/SalesOrderDetail.tsx:521 msgid "Issue Order" msgstr "Оформить заказ" -#: src/pages/build/BuildDetail.tsx:667 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:466 -#: src/pages/sales/ReturnOrderDetail.tsx:477 -#: src/pages/sales/SalesOrderDetail.tsx:530 +#: src/pages/build/BuildDetail.tsx:672 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:471 +#: src/pages/sales/ReturnOrderDetail.tsx:482 +#: src/pages/sales/SalesOrderDetail.tsx:535 msgid "Complete Order" msgstr "Завершить заказ" -#: src/pages/build/BuildDetail.tsx:686 +#: src/pages/build/BuildDetail.tsx:691 msgid "Build Order Actions" msgstr "Действия с заказом на сборку" -#: src/pages/build/BuildDetail.tsx:691 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:489 -#: src/pages/sales/ReturnOrderDetail.tsx:500 -#: src/pages/sales/SalesOrderDetail.tsx:554 +#: src/pages/build/BuildDetail.tsx:696 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:494 +#: src/pages/sales/ReturnOrderDetail.tsx:505 +#: src/pages/sales/SalesOrderDetail.tsx:559 msgid "Edit order" msgstr "Редактировать заказ" -#: src/pages/build/BuildDetail.tsx:695 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:497 -#: src/pages/sales/ReturnOrderDetail.tsx:506 -#: src/pages/sales/SalesOrderDetail.tsx:559 +#: src/pages/build/BuildDetail.tsx:700 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:502 +#: src/pages/sales/ReturnOrderDetail.tsx:511 +#: src/pages/sales/SalesOrderDetail.tsx:564 msgid "Duplicate order" msgstr "Дублировать заказ" -#: src/pages/build/BuildDetail.tsx:699 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:500 -#: src/pages/sales/ReturnOrderDetail.tsx:511 -#: src/pages/sales/SalesOrderDetail.tsx:562 -msgid "Hold order" -msgstr "Отложить заказ" - #: src/pages/build/BuildDetail.tsx:704 #: src/pages/purchasing/PurchaseOrderDetail.tsx:505 #: src/pages/sales/ReturnOrderDetail.tsx:516 #: src/pages/sales/SalesOrderDetail.tsx:567 +msgid "Hold order" +msgstr "Отложить заказ" + +#: src/pages/build/BuildDetail.tsx:709 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:510 +#: src/pages/sales/ReturnOrderDetail.tsx:521 +#: src/pages/sales/SalesOrderDetail.tsx:572 msgid "Cancel order" msgstr "Отменить заказ" -#: src/pages/build/BuildDetail.tsx:742 +#: src/pages/build/BuildDetail.tsx:747 #: src/pages/stock/StockDetail.tsx:344 -#: src/tables/build/BuildAllocatedStockTable.tsx:85 +#: src/tables/build/BuildAllocatedStockTable.tsx:82 #: src/tables/part/PartBuildAllocationsTable.tsx:45 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:157 #: src/tables/stock/StockTrackingTable.tsx:109 @@ -7143,7 +7206,7 @@ msgstr "Заказ на сборку" #~ msgid "Build order created" #~ msgstr "Build order created" -#: src/pages/build/BuildIndex.tsx:29 +#: src/pages/build/BuildIndex.tsx:35 #: src/tables/build/BuildOrderTable.tsx:184 msgid "Show external build orders" msgstr "Показать сторонние заказы на сборку" @@ -7152,61 +7215,82 @@ msgstr "Показать сторонние заказы на сборку" #~ msgid "New Build Order" #~ msgstr "New Build Order" -#: src/pages/build/BuildIndex.tsx:83 -#: src/pages/purchasing/PurchasingIndex.tsx:69 -#: src/pages/sales/SalesIndex.tsx:92 -#: src/pages/sales/SalesIndex.tsx:125 +#: src/pages/build/BuildIndex.tsx:74 +#: src/pages/part/CategoryDetail.tsx:292 +#: src/pages/purchasing/PurchasingIndex.tsx:74 +#: src/pages/purchasing/PurchasingIndex.tsx:107 +#: src/pages/purchasing/PurchasingIndex.tsx:135 +#: src/pages/purchasing/PurchasingIndex.tsx:156 +#: src/pages/purchasing/PurchasingIndex.tsx:184 +#: src/pages/sales/SalesIndex.tsx:61 +#: src/pages/sales/SalesIndex.tsx:107 +#: src/pages/sales/SalesIndex.tsx:140 msgid "Table View" msgstr "В виде таблицы" -#: src/pages/build/BuildIndex.tsx:86 -#: src/pages/purchasing/PurchasingIndex.tsx:72 -#: src/pages/sales/SalesIndex.tsx:95 -#: src/pages/sales/SalesIndex.tsx:128 +#: src/pages/build/BuildIndex.tsx:80 +#: src/pages/purchasing/PurchasingIndex.tsx:80 +#: src/pages/sales/SalesIndex.tsx:67 +#: src/pages/sales/SalesIndex.tsx:113 msgid "Calendar View" msgstr "В виде календаря" -#: src/pages/company/CompanyDetail.tsx:99 +#: src/pages/build/BuildIndex.tsx:86 +#: src/pages/part/CategoryDetail.tsx:306 +#: src/pages/purchasing/PurchasingIndex.tsx:92 +#: src/pages/purchasing/PurchasingIndex.tsx:118 +#: src/pages/purchasing/PurchasingIndex.tsx:141 +#: src/pages/purchasing/PurchasingIndex.tsx:167 +#: src/pages/purchasing/PurchasingIndex.tsx:190 +#: src/pages/sales/SalesIndex.tsx:79 +#: src/pages/sales/SalesIndex.tsx:125 +#: src/pages/sales/SalesIndex.tsx:151 +msgid "Parametric View" +msgstr "" + +#: src/pages/company/CompanyDetail.tsx:100 msgid "Website" msgstr "Веб-сайт" -#: src/pages/company/CompanyDetail.tsx:107 +#: src/pages/company/CompanyDetail.tsx:108 msgid "Phone Number" msgstr "Номер телефона" -#: src/pages/company/CompanyDetail.tsx:114 +#: src/pages/company/CompanyDetail.tsx:115 msgid "Email Address" msgstr "Адрес электронной почты" -#: src/pages/company/CompanyDetail.tsx:121 +#: src/pages/company/CompanyDetail.tsx:122 msgid "Tax ID" -msgstr "" +msgstr "Налоговый номер" -#: src/pages/company/CompanyDetail.tsx:131 +#: src/pages/company/CompanyDetail.tsx:132 msgid "Default Currency" msgstr "Валюта по умолчанию" -#: src/pages/company/CompanyDetail.tsx:142 +#: src/pages/company/CompanyDetail.tsx:143 #: src/pages/company/ManufacturerDetail.tsx:8 -#: src/pages/company/ManufacturerPartDetail.tsx:104 -#: src/pages/company/ManufacturerPartDetail.tsx:280 -#: src/pages/company/SupplierPartDetail.tsx:152 +#: src/pages/company/ManufacturerPartDetail.tsx:103 +#: src/pages/company/ManufacturerPartDetail.tsx:271 +#: src/pages/company/SupplierPartDetail.tsx:153 #: src/tables/Filter.tsx:347 #: src/tables/company/CompanyTable.tsx:101 #: src/tables/purchasing/SupplierPartTable.tsx:89 msgid "Manufacturer" msgstr "Производитель" -#: src/pages/company/CompanyDetail.tsx:148 +#: src/pages/company/CompanyDetail.tsx:149 #: src/pages/company/CustomerDetail.tsx:8 #: src/pages/part/pricing/SaleHistoryPanel.tsx:31 -#: src/pages/sales/ReturnOrderDetail.tsx:123 -#: src/pages/sales/SalesOrderDetail.tsx:113 -#: src/pages/sales/SalesOrderShipmentDetail.tsx:113 +#: src/pages/sales/ReturnOrderDetail.tsx:124 +#: src/pages/sales/SalesOrderDetail.tsx:114 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:111 #: src/pages/stock/StockDetail.tsx:370 #: src/tables/company/CompanyTable.tsx:106 +#: src/tables/sales/ReturnOrderParametricTable.tsx:32 #: src/tables/sales/ReturnOrderTable.tsx:108 -#: src/tables/sales/SalesOrderShipmentTable.tsx:111 +#: src/tables/sales/SalesOrderParametricTable.tsx:32 +#: src/tables/sales/SalesOrderShipmentTable.tsx:132 #: src/tables/sales/SalesOrderTable.tsx:133 #: src/tables/stock/StockTrackingTable.tsx:153 msgid "Customer" @@ -7216,11 +7300,11 @@ msgstr "Покупатель" #~ msgid "Edit company" #~ msgstr "Edit company" -#: src/pages/company/CompanyDetail.tsx:181 +#: src/pages/company/CompanyDetail.tsx:182 msgid "Company Details" msgstr "Сведения о компании" -#: src/pages/company/CompanyDetail.tsx:187 +#: src/pages/company/CompanyDetail.tsx:188 msgid "Supplied Parts" msgstr "Поставляемые детали" @@ -7228,79 +7312,79 @@ msgstr "Поставляемые детали" #~ msgid "Delete company" #~ msgstr "Delete company" -#: src/pages/company/CompanyDetail.tsx:194 +#: src/pages/company/CompanyDetail.tsx:195 msgid "Manufactured Parts" msgstr "Детали производителя" -#: src/pages/company/CompanyDetail.tsx:241 +#: src/pages/company/CompanyDetail.tsx:242 msgid "Assigned Stock" -msgstr "" +msgstr "Назначенный запас" -#: src/pages/company/CompanyDetail.tsx:282 +#: src/pages/company/CompanyDetail.tsx:287 #: src/tables/company/CompanyTable.tsx:82 msgid "Edit Company" msgstr "Редактирование компании" -#: src/pages/company/CompanyDetail.tsx:290 +#: src/pages/company/CompanyDetail.tsx:295 msgid "Delete Company" msgstr "Удалить компанию" -#: src/pages/company/CompanyDetail.tsx:305 +#: src/pages/company/CompanyDetail.tsx:310 msgid "Company Actions" msgstr "Действия с компанией" -#: src/pages/company/ManufacturerPartDetail.tsx:78 -#: src/pages/company/SupplierPartDetail.tsx:89 +#: src/pages/company/ManufacturerPartDetail.tsx:77 +#: src/pages/company/SupplierPartDetail.tsx:90 msgid "Internal Part" msgstr "Деталь" -#: src/pages/company/ManufacturerPartDetail.tsx:112 +#: src/pages/company/ManufacturerPartDetail.tsx:111 msgid "Manufacturer Part Number" msgstr "Артикул производителя" -#: src/pages/company/ManufacturerPartDetail.tsx:129 -#: src/pages/company/SupplierPartDetail.tsx:113 +#: src/pages/company/ManufacturerPartDetail.tsx:128 +#: src/pages/company/SupplierPartDetail.tsx:114 msgid "External Link" msgstr "Внешняя ссылка" -#: src/pages/company/ManufacturerPartDetail.tsx:148 -#: src/pages/company/SupplierPartDetail.tsx:232 +#: src/pages/company/ManufacturerPartDetail.tsx:147 +#: src/pages/company/SupplierPartDetail.tsx:233 #: src/pages/part/PartDetail.tsx:787 msgid "Part Details" msgstr "Сведения о детали" -#: src/pages/company/ManufacturerPartDetail.tsx:151 +#: src/pages/company/ManufacturerPartDetail.tsx:150 msgid "Manufacturer Details" msgstr "Сведения о производителе" -#: src/pages/company/ManufacturerPartDetail.tsx:160 +#: src/pages/company/ManufacturerPartDetail.tsx:159 msgid "Manufacturer Part Details" msgstr "Сведения о детали производителя" -#: src/pages/company/ManufacturerPartDetail.tsx:178 -#: src/pages/company/SupplierPartDetail.tsx:252 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:381 +#: src/pages/company/ManufacturerPartDetail.tsx:165 +#: src/pages/company/SupplierPartDetail.tsx:253 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:382 msgid "Received Stock" msgstr "Полученные позиции" -#: src/pages/company/ManufacturerPartDetail.tsx:220 +#: src/pages/company/ManufacturerPartDetail.tsx:211 #: src/tables/purchasing/ManufacturerPartTable.tsx:108 msgid "Edit Manufacturer Part" msgstr "Редактировать делать производителя" -#: src/pages/company/ManufacturerPartDetail.tsx:227 +#: src/pages/company/ManufacturerPartDetail.tsx:218 #: src/tables/purchasing/ManufacturerPartTable.tsx:96 #: src/tables/purchasing/ManufacturerPartTable.tsx:115 #: src/tables/purchasing/ManufacturerPartTable.tsx:156 msgid "Add Manufacturer Part" msgstr "Создать деталь производителя" -#: src/pages/company/ManufacturerPartDetail.tsx:239 +#: src/pages/company/ManufacturerPartDetail.tsx:230 #: src/tables/purchasing/ManufacturerPartTable.tsx:126 msgid "Delete Manufacturer Part" msgstr "Удалить деталь производителя" -#: src/pages/company/ManufacturerPartDetail.tsx:254 +#: src/pages/company/ManufacturerPartDetail.tsx:245 msgid "Manufacturer Part Actions" msgstr "Действия с деталью производителя" @@ -7308,12 +7392,12 @@ msgstr "Действия с деталью производителя" #~ msgid "ManufacturerPart" #~ msgstr "ManufacturerPart" -#: src/pages/company/SupplierPartDetail.tsx:104 +#: src/pages/company/SupplierPartDetail.tsx:105 #: src/tables/part/RelatedPartTable.tsx:82 msgid "Part Description" msgstr "Описание детали" -#: src/pages/company/SupplierPartDetail.tsx:179 +#: src/pages/company/SupplierPartDetail.tsx:180 #: src/tables/part/PartPurchaseOrdersTable.tsx:73 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:191 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:233 @@ -7321,50 +7405,50 @@ msgstr "Описание детали" msgid "Pack Quantity" msgstr "Количество в упаковке" -#: src/pages/company/SupplierPartDetail.tsx:204 +#: src/pages/company/SupplierPartDetail.tsx:205 msgid "Supplier Availability" msgstr "Наличие у поставщика" -#: src/pages/company/SupplierPartDetail.tsx:212 +#: src/pages/company/SupplierPartDetail.tsx:213 msgid "Availability Updated" msgstr "Наличие обновлено" -#: src/pages/company/SupplierPartDetail.tsx:237 +#: src/pages/company/SupplierPartDetail.tsx:238 msgid "Availability" msgstr "Наличие" -#: src/pages/company/SupplierPartDetail.tsx:246 +#: src/pages/company/SupplierPartDetail.tsx:247 msgid "Supplier Part Details" msgstr "Сведения о детали поставщика" -#: src/pages/company/SupplierPartDetail.tsx:279 +#: src/pages/company/SupplierPartDetail.tsx:280 #: src/pages/part/PartPricingPanel.tsx:113 #: src/pages/part/pricing/PricingOverviewPanel.tsx:239 msgid "Supplier Pricing" msgstr "Цены закупок" -#: src/pages/company/SupplierPartDetail.tsx:308 +#: src/pages/company/SupplierPartDetail.tsx:313 msgid "Supplier Part Actions" msgstr "Действия с деталью поставщика" -#: src/pages/company/SupplierPartDetail.tsx:332 +#: src/pages/company/SupplierPartDetail.tsx:337 #: src/tables/purchasing/SupplierPartTable.tsx:244 msgid "Edit Supplier Part" msgstr "Редактировать деталь поставщика" -#: src/pages/company/SupplierPartDetail.tsx:340 +#: src/pages/company/SupplierPartDetail.tsx:345 #: src/tables/purchasing/SupplierPartTable.tsx:264 msgid "Delete Supplier Part" msgstr "Удалить деталь поставщика" -#: src/pages/company/SupplierPartDetail.tsx:348 +#: src/pages/company/SupplierPartDetail.tsx:353 #: src/tables/purchasing/SupplierPartTable.tsx:172 #: src/tables/purchasing/SupplierPartTable.tsx:251 msgid "Add Supplier Part" msgstr "Создать деталь поставщика" -#: src/pages/company/SupplierPartDetail.tsx:388 -#: src/pages/part/PartDetail.tsx:1003 +#: src/pages/company/SupplierPartDetail.tsx:393 +#: src/pages/part/PartDetail.tsx:1018 msgid "No Stock" msgstr "Нет на складе" @@ -7411,83 +7495,83 @@ msgstr "Сведения о пользователе" msgid "Basic user" msgstr "Базовый пользователь" -#: src/pages/part/CategoryDetail.tsx:100 +#: src/pages/part/CategoryDetail.tsx:103 #: src/pages/stock/LocationDetail.tsx:94 #: src/tables/settings/ErrorTable.tsx:63 #: src/tables/settings/ErrorTable.tsx:108 msgid "Path" msgstr "Путь" -#: src/pages/part/CategoryDetail.tsx:116 +#: src/pages/part/CategoryDetail.tsx:119 msgid "Parent Category" msgstr "Родительская категория" -#: src/pages/part/CategoryDetail.tsx:139 -#: src/pages/part/CategoryDetail.tsx:271 +#: src/pages/part/CategoryDetail.tsx:142 +#: src/pages/part/CategoryDetail.tsx:279 msgid "Subcategories" msgstr "Подкатегории" -#: src/pages/part/CategoryDetail.tsx:146 +#: src/pages/part/CategoryDetail.tsx:149 #: src/pages/stock/LocationDetail.tsx:134 #: src/tables/part/PartCategoryTable.tsx:89 #: src/tables/stock/StockLocationTable.tsx:43 msgid "Structural" msgstr "Структура" -#: src/pages/part/CategoryDetail.tsx:152 +#: src/pages/part/CategoryDetail.tsx:155 msgid "Parent default location" msgstr "Расположение по умолчанию" -#: src/pages/part/CategoryDetail.tsx:159 +#: src/pages/part/CategoryDetail.tsx:162 msgid "Default location" msgstr "Место хранения по-умолчанию" -#: src/pages/part/CategoryDetail.tsx:170 +#: src/pages/part/CategoryDetail.tsx:173 msgid "Top level part category" msgstr "Категория детали верхнего уровня" -#: src/pages/part/CategoryDetail.tsx:180 -#: src/pages/part/CategoryDetail.tsx:248 +#: src/pages/part/CategoryDetail.tsx:183 +#: src/pages/part/CategoryDetail.tsx:251 #: src/tables/part/PartCategoryTable.tsx:122 msgid "Edit Part Category" msgstr "Редактировать категорию деталей" -#: src/pages/part/CategoryDetail.tsx:189 +#: src/pages/part/CategoryDetail.tsx:192 msgid "Move items to parent category" msgstr "Перенести элементы в родительскую категорию" -#: src/pages/part/CategoryDetail.tsx:193 +#: src/pages/part/CategoryDetail.tsx:196 #: src/pages/stock/LocationDetail.tsx:226 msgid "Delete items" msgstr "Удалить товар" -#: src/pages/part/CategoryDetail.tsx:201 -#: src/pages/part/CategoryDetail.tsx:253 +#: src/pages/part/CategoryDetail.tsx:204 +#: src/pages/part/CategoryDetail.tsx:256 msgid "Delete Part Category" msgstr "Удалить категорию деталей" -#: src/pages/part/CategoryDetail.tsx:204 +#: src/pages/part/CategoryDetail.tsx:207 msgid "Parts Action" msgstr "Действие с деталями" -#: src/pages/part/CategoryDetail.tsx:205 +#: src/pages/part/CategoryDetail.tsx:208 msgid "Action for parts in this category" msgstr "Что делать с деталями этой категории" -#: src/pages/part/CategoryDetail.tsx:211 +#: src/pages/part/CategoryDetail.tsx:214 msgid "Child Categories Action" msgstr "Действие с дочерними категориями" -#: src/pages/part/CategoryDetail.tsx:212 +#: src/pages/part/CategoryDetail.tsx:215 msgid "Action for child categories in this category" msgstr "Что делать с дочерними категориями этой категории" -#: src/pages/part/CategoryDetail.tsx:244 +#: src/pages/part/CategoryDetail.tsx:247 #: src/tables/part/PartCategoryTable.tsx:143 msgid "Category Actions" msgstr "Действия с категорией" -#: src/pages/part/CategoryDetail.tsx:265 +#: src/pages/part/CategoryDetail.tsx:273 msgid "Category Details" msgstr "Сведения о категории" @@ -7515,7 +7599,7 @@ msgstr "Вы хотите утвердить спецификацию для д #: src/pages/part/PartDetail.tsx:187 msgid "Bill of materials scheduled for validation" -msgstr "" +msgstr "Спецификация запланирована для проверки" #: src/pages/part/PartDetail.tsx:187 #~ msgid "BOM validated" @@ -7536,7 +7620,7 @@ msgstr "Спецификация не утверждена" #: src/pages/part/PartDetail.tsx:211 msgid "The Bill of Materials for this part has previously been checked, but requires revalidation" -msgstr "" +msgstr "Спецификация для этой детали ранее была проверена, но требует повторной проверки" #: src/pages/part/PartDetail.tsx:216 msgid "The Bill of Materials for this part has not yet been validated" @@ -7585,7 +7669,6 @@ msgid "Category Default Location" msgstr "Размещение категории по умолчанию" #: src/pages/part/PartDetail.tsx:507 -#: src/tables/purchasing/ManufacturerPartParameterTable.tsx:48 msgid "Units" msgstr "Единица измерения" @@ -7600,7 +7683,7 @@ msgstr "Ключевые слова" #: src/pages/part/PartDetail.tsx:542 #: src/tables/bom/BomTable.tsx:439 -#: src/tables/build/BuildLineTable.tsx:305 +#: src/tables/build/BuildLineTable.tsx:306 #: src/tables/part/PartTable.tsx:319 #: src/tables/sales/SalesOrderLineItemTable.tsx:138 msgid "Available Stock" @@ -7608,7 +7691,7 @@ msgstr "Доступно" #: src/pages/part/PartDetail.tsx:548 #: src/tables/bom/BomTable.tsx:341 -#: src/tables/build/BuildLineTable.tsx:267 +#: src/tables/build/BuildLineTable.tsx:268 #: src/tables/sales/SalesOrderLineItemTable.tsx:180 msgid "On order" msgstr "В заказе" @@ -7634,7 +7717,7 @@ msgstr "Минимальный запас" #~ msgstr "Scheduling" #: src/pages/part/PartDetail.tsx:620 -#: src/tables/part/ParametricPartTable.tsx:359 +#: src/tables/part/ParametricPartTable.tsx:24 #: src/tables/part/PartTable.tsx:203 msgid "Locked" msgstr "Заблокировано" @@ -7671,16 +7754,16 @@ msgid "Saleable Part" msgstr "Можно продавать" #: src/pages/part/PartDetail.tsx:663 -#: src/pages/part/PartDetail.tsx:1033 +#: src/pages/part/PartDetail.tsx:1054 #: src/tables/bom/BomTable.tsx:150 #: src/tables/bom/BomTable.tsx:434 msgid "Virtual Part" msgstr "Виртуальная деталь" #: src/pages/part/PartDetail.tsx:678 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:271 -#: src/pages/sales/ReturnOrderDetail.tsx:249 -#: src/pages/sales/SalesOrderDetail.tsx:242 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:272 +#: src/pages/sales/ReturnOrderDetail.tsx:250 +#: src/pages/sales/SalesOrderDetail.tsx:243 #: src/tables/ColumnRenderers.tsx:502 msgid "Creation Date" msgstr "Дата создания" @@ -7716,37 +7799,48 @@ msgstr "Последний серийный номер" #: src/pages/part/PartDetail.tsx:757 msgid "Select Part Revision" -msgstr "" +msgstr "Выберите ревизию детали" -#: src/pages/part/PartDetail.tsx:823 +#: src/pages/part/PartDetail.tsx:812 msgid "Variants" msgstr "Разновидности" -#: src/pages/part/PartDetail.tsx:830 +#: src/pages/part/PartDetail.tsx:819 #: src/pages/stock/StockDetail.tsx:542 msgid "Allocations" msgstr "Резервирование" -#: src/pages/part/PartDetail.tsx:837 +#: src/pages/part/PartDetail.tsx:826 msgid "Bill of Materials" msgstr "Спецификация" -#: src/pages/part/PartDetail.tsx:849 +#: src/pages/part/PartDetail.tsx:838 msgid "Used In" msgstr "Используется в" -#: src/pages/part/PartDetail.tsx:856 +#: src/pages/part/PartDetail.tsx:845 msgid "Part Pricing" msgstr "Цены на деталь" -#: src/pages/part/PartDetail.tsx:926 +#: src/pages/part/PartDetail.tsx:915 msgid "Test Templates" msgstr "Шаблоны тестов" -#: src/pages/part/PartDetail.tsx:948 +#: src/pages/part/PartDetail.tsx:937 msgid "Related Parts" msgstr "Связанные детали" +#: src/pages/part/PartDetail.tsx:949 +#: src/tables/ColumnRenderers.tsx:73 +#: src/tables/bom/BomTable.tsx:657 +#: src/tables/part/PartTestTemplateTable.tsx:258 +msgid "Part is Locked" +msgstr "Деталь заблокирована" + +#: src/pages/part/PartDetail.tsx:954 +msgid "Part parameters cannot be edited, as the part is locked" +msgstr "Параметры детали нельзя редактировать, поскольку деталь заблокирована" + #: src/pages/part/PartDetail.tsx:956 #~ msgid "Count part stock" #~ msgstr "Count part stock" @@ -7755,42 +7849,46 @@ msgstr "Связанные детали" #~ msgid "Transfer part stock" #~ msgstr "Transfer part stock" -#: src/pages/part/PartDetail.tsx:1009 +#: src/pages/part/PartDetail.tsx:1024 #: src/tables/part/PartTestTemplateTable.tsx:112 #: src/tables/stock/StockItemTestResultTable.tsx:404 msgid "Required" msgstr "Требуется" -#: src/pages/part/PartDetail.tsx:1058 +#: src/pages/part/PartDetail.tsx:1042 +msgid "Deficit" +msgstr "" + +#: src/pages/part/PartDetail.tsx:1079 #: src/tables/part/PartTable.tsx:396 #: src/tables/part/PartTable.tsx:449 msgid "Add Part" msgstr "Создать деталь" -#: src/pages/part/PartDetail.tsx:1072 +#: src/pages/part/PartDetail.tsx:1093 msgid "Delete Part" msgstr "Удалить деталь" -#: src/pages/part/PartDetail.tsx:1081 +#: src/pages/part/PartDetail.tsx:1102 msgid "Deleting this part cannot be reversed" msgstr "Удаление этой детали нельзя отменить" -#: src/pages/part/PartDetail.tsx:1143 +#: src/pages/part/PartDetail.tsx:1164 #: src/pages/stock/StockDetail.tsx:883 msgid "Order" msgstr "Закупить" -#: src/pages/part/PartDetail.tsx:1144 +#: src/pages/part/PartDetail.tsx:1165 #: src/pages/stock/StockDetail.tsx:884 -#: src/tables/build/BuildLineTable.tsx:761 +#: src/tables/build/BuildLineTable.tsx:768 msgid "Order Stock" msgstr "Закупить на склад" -#: src/pages/part/PartDetail.tsx:1156 +#: src/pages/part/PartDetail.tsx:1177 msgid "Search by serial number" msgstr "Поиск по серийному номеру" -#: src/pages/part/PartDetail.tsx:1164 +#: src/pages/part/PartDetail.tsx:1185 #: src/tables/part/PartTable.tsx:506 msgid "Part Actions" msgstr "Действия с деталью" @@ -7991,7 +8089,7 @@ msgstr "Удалить цену со скидкой" #: src/pages/part/pricing/PriceBreakPanel.tsx:95 msgid "Price Break" -msgstr "" +msgstr "Градация цены" #: src/pages/part/pricing/PriceBreakPanel.tsx:171 msgid "Price" @@ -8039,7 +8137,7 @@ msgstr "Закупочные цены" #: src/pages/part/pricing/PricingOverviewPanel.tsx:288 #: src/pages/stock/StockDetail.tsx:426 -#: src/tables/part/PartParameterTable.tsx:121 +#: src/tables/general/ParameterTable.tsx:101 #: src/tables/stock/StockItemTable.tsx:300 msgid "Last Updated" msgstr "Последнее обновление" @@ -8107,17 +8205,17 @@ msgstr "Цена у поставщика" msgid "Variant Part" msgstr "Разновидности детали" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:89 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:90 msgid "Edit Purchase Order" msgstr "Редактирование заказа на закупку" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:125 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:126 #: src/tables/purchasing/PurchaseOrderTable.tsx:154 #: src/tables/purchasing/PurchaseOrderTable.tsx:167 msgid "Add Purchase Order" msgstr "Создать заказ на закупку" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:147 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:148 msgid "Supplier Reference" msgstr "Номер у поставщика" @@ -8127,20 +8225,20 @@ msgstr "Номер у поставщика" #~ msgid "Order Currency," #~ msgstr "Order Currency," -#: src/pages/purchasing/PurchaseOrderDetail.tsx:187 -#: src/pages/sales/ReturnOrderDetail.tsx:160 -#: src/pages/sales/SalesOrderDetail.tsx:144 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:188 +#: src/pages/sales/ReturnOrderDetail.tsx:161 +#: src/pages/sales/SalesOrderDetail.tsx:145 msgid "Completed Line Items" msgstr "Завершенные позиции" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:196 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:197 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:272 msgid "Destination" msgstr "Место хранения" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:202 -#: src/pages/sales/ReturnOrderDetail.tsx:167 -#: src/pages/sales/SalesOrderDetail.tsx:161 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:203 +#: src/pages/sales/ReturnOrderDetail.tsx:168 +#: src/pages/sales/SalesOrderDetail.tsx:162 msgid "Order Currency" msgstr "Валюта заказа" @@ -8150,215 +8248,215 @@ msgstr "Валюта заказа" #~ msgid "Created On" #~ msgstr "Created On" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:208 -#: src/pages/sales/ReturnOrderDetail.tsx:174 -#: src/pages/sales/SalesOrderDetail.tsx:167 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:209 +#: src/pages/sales/ReturnOrderDetail.tsx:175 +#: src/pages/sales/SalesOrderDetail.tsx:168 msgid "Total Cost" msgstr "Общая стоимость" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:237 -#: src/pages/sales/ReturnOrderDetail.tsx:215 -#: src/pages/sales/SalesOrderDetail.tsx:208 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:238 +#: src/pages/sales/ReturnOrderDetail.tsx:216 +#: src/pages/sales/SalesOrderDetail.tsx:209 msgid "Contact Email" msgstr "Электронная почта контакта" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:245 -#: src/pages/sales/ReturnOrderDetail.tsx:223 -#: src/pages/sales/SalesOrderDetail.tsx:216 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:246 +#: src/pages/sales/ReturnOrderDetail.tsx:224 +#: src/pages/sales/SalesOrderDetail.tsx:217 msgid "Contact Phone" msgstr "Телефон контакта" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:278 -#: src/pages/sales/ReturnOrderDetail.tsx:257 -#: src/pages/sales/SalesOrderDetail.tsx:249 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:279 +#: src/pages/sales/ReturnOrderDetail.tsx:258 +#: src/pages/sales/SalesOrderDetail.tsx:250 msgid "Issue Date" msgstr "Дата оформления" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:303 -#: src/pages/sales/ReturnOrderDetail.tsx:281 -#: src/pages/sales/SalesOrderDetail.tsx:272 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:304 +#: src/pages/sales/ReturnOrderDetail.tsx:282 +#: src/pages/sales/SalesOrderDetail.tsx:273 #: src/tables/ColumnRenderers.tsx:510 #: src/tables/build/BuildOrderTable.tsx:137 #: src/tables/part/PartPurchaseOrdersTable.tsx:106 msgid "Completion Date" msgstr "Дата завершения" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:333 -#: src/pages/sales/ReturnOrderDetail.tsx:311 -#: src/pages/sales/SalesOrderDetail.tsx:349 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:334 +#: src/pages/sales/ReturnOrderDetail.tsx:312 +#: src/pages/sales/SalesOrderDetail.tsx:350 msgid "Order Details" msgstr "Сведения о заказе" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:339 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:348 -#: src/pages/sales/ReturnOrderDetail.tsx:153 -#: src/pages/sales/ReturnOrderDetail.tsx:317 -#: src/pages/sales/ReturnOrderDetail.tsx:326 -#: src/pages/sales/SalesOrderDetail.tsx:355 -#: src/pages/sales/SalesOrderDetail.tsx:364 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:340 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:349 +#: src/pages/sales/ReturnOrderDetail.tsx:154 +#: src/pages/sales/ReturnOrderDetail.tsx:318 +#: src/pages/sales/ReturnOrderDetail.tsx:327 +#: src/pages/sales/SalesOrderDetail.tsx:356 +#: src/pages/sales/SalesOrderDetail.tsx:365 msgid "Line Items" msgstr "Позиции" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:363 -#: src/pages/sales/ReturnOrderDetail.tsx:341 -#: src/pages/sales/SalesOrderDetail.tsx:378 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:364 +#: src/pages/sales/ReturnOrderDetail.tsx:342 +#: src/pages/sales/SalesOrderDetail.tsx:379 msgid "Extra Line Items" msgstr "Дополнительные позиции" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:405 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:410 msgid "Issue Purchase Order" msgstr "Оформить заказ на закупку" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:413 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:418 msgid "Cancel Purchase Order" msgstr "Отмена заказа на закупку" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:421 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:426 msgid "Hold Purchase Order" msgstr "Отложить заказ на закупку" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:429 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:434 msgid "Complete Purchase Order" msgstr "Завершить заказ на закупку" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:485 -#: src/pages/sales/ReturnOrderDetail.tsx:496 -#: src/pages/sales/SalesOrderDetail.tsx:549 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:490 +#: src/pages/sales/ReturnOrderDetail.tsx:501 +#: src/pages/sales/SalesOrderDetail.tsx:554 msgid "Order Actions" msgstr "Действия с заказом" -#: src/pages/sales/ReturnOrderDetail.tsx:114 -#: src/pages/sales/SalesOrderDetail.tsx:104 -#: src/pages/sales/SalesOrderShipmentDetail.tsx:134 +#: src/pages/sales/ReturnOrderDetail.tsx:115 +#: src/pages/sales/SalesOrderDetail.tsx:105 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:132 #: src/tables/sales/SalesOrderTable.tsx:141 msgid "Customer Reference" msgstr "Номер у клиента" -#: src/pages/sales/ReturnOrderDetail.tsx:195 +#: src/pages/sales/ReturnOrderDetail.tsx:196 msgid "Return Address" -msgstr "" +msgstr "Обратный адрес" -#: src/pages/sales/ReturnOrderDetail.tsx:201 -#: src/pages/sales/SalesOrderDetail.tsx:194 -#: src/pages/sales/SalesOrderShipmentDetail.tsx:181 +#: src/pages/sales/ReturnOrderDetail.tsx:202 +#: src/pages/sales/SalesOrderDetail.tsx:195 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:179 msgid "Not specified" -msgstr "" +msgstr "Не указано" #: src/pages/sales/ReturnOrderDetail.tsx:349 #~ msgid "Order canceled" #~ msgstr "Order canceled" -#: src/pages/sales/ReturnOrderDetail.tsx:389 +#: src/pages/sales/ReturnOrderDetail.tsx:394 msgid "Edit Return Order" msgstr "Редактировать заказ на возврат" -#: src/pages/sales/ReturnOrderDetail.tsx:407 +#: src/pages/sales/ReturnOrderDetail.tsx:412 #: src/tables/sales/ReturnOrderTable.tsx:154 #: src/tables/sales/ReturnOrderTable.tsx:167 msgid "Add Return Order" msgstr "Создать заказ на возврат" -#: src/pages/sales/ReturnOrderDetail.tsx:416 +#: src/pages/sales/ReturnOrderDetail.tsx:421 msgid "Issue Return Order" msgstr "Оформить заказ на возврат" -#: src/pages/sales/ReturnOrderDetail.tsx:424 +#: src/pages/sales/ReturnOrderDetail.tsx:429 msgid "Cancel Return Order" msgstr "Отменить заказ на возврат" -#: src/pages/sales/ReturnOrderDetail.tsx:432 +#: src/pages/sales/ReturnOrderDetail.tsx:437 msgid "Hold Return Order" msgstr "Отложить заказ на возврат" -#: src/pages/sales/ReturnOrderDetail.tsx:440 +#: src/pages/sales/ReturnOrderDetail.tsx:445 msgid "Complete Return Order" msgstr "Завершить заказ на возврат" -#: src/pages/sales/SalesOrderDetail.tsx:153 +#: src/pages/sales/SalesOrderDetail.tsx:154 msgid "Completed Shipments" msgstr "Доставлено" -#: src/pages/sales/SalesOrderDetail.tsx:188 -#: src/pages/sales/SalesOrderShipmentDetail.tsx:170 +#: src/pages/sales/SalesOrderDetail.tsx:189 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:168 msgid "Shipping Address" -msgstr "" +msgstr "Адрес доставки" -#: src/pages/sales/SalesOrderDetail.tsx:316 +#: src/pages/sales/SalesOrderDetail.tsx:317 msgid "Edit Sales Order" msgstr "Редактировать заказ на продажу" -#: src/pages/sales/SalesOrderDetail.tsx:338 +#: src/pages/sales/SalesOrderDetail.tsx:339 #: src/tables/sales/SalesOrderTable.tsx:108 #: src/tables/sales/SalesOrderTable.tsx:121 msgid "Add Sales Order" msgstr "Создать заказ на продажу" -#: src/pages/sales/SalesOrderDetail.tsx:396 +#: src/pages/sales/SalesOrderDetail.tsx:397 #: src/tables/sales/SalesOrderTable.tsx:147 msgid "Shipments" msgstr "Доставка" -#: src/pages/sales/SalesOrderDetail.tsx:443 +#: src/pages/sales/SalesOrderDetail.tsx:448 msgid "Issue Sales Order" msgstr "Оформить заказ на продажу" -#: src/pages/sales/SalesOrderDetail.tsx:451 +#: src/pages/sales/SalesOrderDetail.tsx:456 msgid "Cancel Sales Order" msgstr "Отменить заказ на продажу" -#: src/pages/sales/SalesOrderDetail.tsx:459 +#: src/pages/sales/SalesOrderDetail.tsx:464 msgid "Hold Sales Order" msgstr "Отложить заказ на продажу" -#: src/pages/sales/SalesOrderDetail.tsx:467 +#: src/pages/sales/SalesOrderDetail.tsx:472 msgid "Ship Sales Order" -msgstr "" +msgstr "Отгрузить заказ на продажу" -#: src/pages/sales/SalesOrderDetail.tsx:469 +#: src/pages/sales/SalesOrderDetail.tsx:474 msgid "Ship this order?" -msgstr "" +msgstr "Отгрузить этот заказ?" -#: src/pages/sales/SalesOrderDetail.tsx:470 +#: src/pages/sales/SalesOrderDetail.tsx:475 msgid "Order shipped" msgstr "Заказ отгружен" -#: src/pages/sales/SalesOrderDetail.tsx:478 +#: src/pages/sales/SalesOrderDetail.tsx:483 msgid "Complete Sales Order" msgstr "Завершить заказ на продажу" -#: src/pages/sales/SalesOrderDetail.tsx:523 +#: src/pages/sales/SalesOrderDetail.tsx:528 msgid "Ship Order" msgstr "Отгрузить заказ" -#: src/pages/sales/SalesOrderShipmentDetail.tsx:142 -#: src/tables/sales/SalesOrderShipmentTable.tsx:135 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:140 +#: src/tables/sales/SalesOrderShipmentTable.tsx:156 msgid "Shipment Reference" -msgstr "" +msgstr "Референс отправления" -#: src/pages/sales/SalesOrderShipmentDetail.tsx:148 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:146 msgid "Tracking Number" msgstr "Номер отслеживания" -#: src/pages/sales/SalesOrderShipmentDetail.tsx:156 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:154 msgid "Invoice Number" msgstr "Номер счета" -#: src/pages/sales/SalesOrderShipmentDetail.tsx:191 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:189 msgid "Allocated Items" msgstr "Выбранные запасы" -#: src/pages/sales/SalesOrderShipmentDetail.tsx:196 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:194 msgid "Checked By" -msgstr "" +msgstr "Проверил" -#: src/pages/sales/SalesOrderShipmentDetail.tsx:202 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:200 msgid "Not checked" -msgstr "" +msgstr "Не проверено" -#: src/pages/sales/SalesOrderShipmentDetail.tsx:208 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:206 #: src/tables/ColumnRenderers.tsx:518 #: src/tables/sales/SalesOrderAllocationTable.tsx:182 -#: src/tables/sales/SalesOrderShipmentTable.tsx:168 +#: src/tables/sales/SalesOrderShipmentTable.tsx:189 msgid "Shipment Date" msgstr "Дата отгрузки" @@ -8366,119 +8464,93 @@ msgstr "Дата отгрузки" #~ msgid "Assigned Items" #~ msgstr "Assigned Items" -#: src/pages/sales/SalesOrderShipmentDetail.tsx:216 -#: src/tables/sales/SalesOrderShipmentTable.tsx:172 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:214 +#: src/tables/sales/SalesOrderShipmentTable.tsx:193 msgid "Delivery Date" msgstr "Дата доставки" -#: src/pages/sales/SalesOrderShipmentDetail.tsx:255 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:253 msgid "Shipment Details" msgstr "Данные отгрузки" -#: src/pages/sales/SalesOrderShipmentDetail.tsx:294 -#: src/pages/sales/SalesOrderShipmentDetail.tsx:438 -#: src/tables/sales/SalesOrderShipmentTable.tsx:90 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:292 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:406 +#: src/tables/sales/SalesOrderShipmentTable.tsx:97 msgid "Edit Shipment" -msgstr "" +msgstr "Редактировать отправку" -#: src/pages/sales/SalesOrderShipmentDetail.tsx:301 -#: src/pages/sales/SalesOrderShipmentDetail.tsx:457 -#: src/tables/sales/SalesOrderShipmentTable.tsx:82 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:299 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:425 +#: src/tables/sales/SalesOrderShipmentTable.tsx:89 msgid "Cancel Shipment" msgstr "Отменить отгрузку" -#: src/pages/sales/SalesOrderShipmentDetail.tsx:314 -#: src/tables/sales/SalesOrderShipmentTable.tsx:98 -#: src/tables/sales/SalesOrderShipmentTable.tsx:193 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:312 +#: src/tables/sales/SalesOrderShipmentTable.tsx:119 +#: src/tables/sales/SalesOrderShipmentTable.tsx:238 msgid "Complete Shipment" -msgstr "" - -#: src/pages/sales/SalesOrderShipmentDetail.tsx:326 -#: src/pages/sales/SalesOrderShipmentDetail.tsx:328 -msgid "Check Shipment" -msgstr "" - -#: src/pages/sales/SalesOrderShipmentDetail.tsx:329 -msgid "Marking the shipment as checked indicates that you have verified that all items included in this shipment are correct" -msgstr "" +msgstr "Завершить отправку" #: src/pages/sales/SalesOrderShipmentDetail.tsx:339 -msgid "Shipment marked as checked" -msgstr "" - -#: src/pages/sales/SalesOrderShipmentDetail.tsx:346 -#: src/pages/sales/SalesOrderShipmentDetail.tsx:348 -msgid "Uncheck Shipment" -msgstr "" - -#: src/pages/sales/SalesOrderShipmentDetail.tsx:349 -msgid "Marking the shipment as unchecked indicates that the shipment requires further verification" -msgstr "" - -#: src/pages/sales/SalesOrderShipmentDetail.tsx:359 -msgid "Shipment marked as unchecked" -msgstr "" - -#: src/pages/sales/SalesOrderShipmentDetail.tsx:371 #: src/tables/part/PartPurchaseOrdersTable.tsx:122 msgid "Pending" msgstr "В обработке" -#: src/pages/sales/SalesOrderShipmentDetail.tsx:377 -#: src/tables/sales/SalesOrderShipmentTable.tsx:147 -#: src/tables/sales/SalesOrderShipmentTable.tsx:254 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:345 +#: src/tables/sales/SalesOrderShipmentTable.tsx:168 +#: src/tables/sales/SalesOrderShipmentTable.tsx:299 msgid "Checked" -msgstr "" +msgstr "Проверено" -#: src/pages/sales/SalesOrderShipmentDetail.tsx:383 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:351 msgid "Not Checked" -msgstr "" +msgstr "Не проверено" -#: src/pages/sales/SalesOrderShipmentDetail.tsx:389 -#: src/tables/sales/SalesOrderShipmentTable.tsx:154 -#: src/tables/sales/SalesOrderShipmentTable.tsx:259 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:357 +#: src/tables/sales/SalesOrderShipmentTable.tsx:175 +#: src/tables/sales/SalesOrderShipmentTable.tsx:304 msgid "Shipped" -msgstr "" +msgstr "Отгружено" -#: src/pages/sales/SalesOrderShipmentDetail.tsx:395 -#: src/tables/sales/SalesOrderShipmentTable.tsx:161 -#: src/tables/sales/SalesOrderShipmentTable.tsx:264 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:363 +#: src/tables/sales/SalesOrderShipmentTable.tsx:182 +#: src/tables/sales/SalesOrderShipmentTable.tsx:309 #: src/tables/settings/EmailTable.tsx:31 msgid "Delivered" msgstr "Доставлено" -#: src/pages/sales/SalesOrderShipmentDetail.tsx:410 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:378 msgid "Send Shipment" msgstr "Отправить отгрузку" -#: src/pages/sales/SalesOrderShipmentDetail.tsx:433 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:401 msgid "Shipment Actions" msgstr "Действия с отгрузкой" -#: src/pages/sales/SalesOrderShipmentDetail.tsx:442 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:410 msgid "Check" -msgstr "" +msgstr "Проверить" -#: src/pages/sales/SalesOrderShipmentDetail.tsx:443 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:411 msgid "Mark shipment as checked" -msgstr "" +msgstr "Отметить отправку как проверенную" -#: src/pages/sales/SalesOrderShipmentDetail.tsx:449 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:417 msgid "Uncheck" -msgstr "" +msgstr "Снять отметку" -#: src/pages/sales/SalesOrderShipmentDetail.tsx:450 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:418 msgid "Mark shipment as unchecked" -msgstr "" +msgstr "Отметить отправку как непроверенную" #: src/pages/stock/LocationDetail.tsx:110 msgid "Parent Location" -msgstr "" +msgstr "Родительское местоположение" #: src/pages/stock/LocationDetail.tsx:128 #: src/pages/stock/LocationDetail.tsx:174 msgid "Sublocations" -msgstr "" +msgstr "Дочерние местоположения" #: src/pages/stock/LocationDetail.tsx:146 #: src/tables/stock/StockLocationTable.tsx:57 @@ -8495,7 +8567,7 @@ msgstr "Сведения о месте" #: src/pages/stock/LocationDetail.tsx:194 msgid "Default Parts" -msgstr "" +msgstr "Детали по умолчанию" #: src/pages/stock/LocationDetail.tsx:213 #: src/pages/stock/LocationDetail.tsx:374 @@ -8505,20 +8577,20 @@ msgstr "Редактировать место хранения" #: src/pages/stock/LocationDetail.tsx:222 msgid "Move items to parent location" -msgstr "" +msgstr "Переместить элементы в родительское местоположение" #: src/pages/stock/LocationDetail.tsx:234 #: src/pages/stock/LocationDetail.tsx:379 msgid "Delete Stock Location" -msgstr "" +msgstr "Удалить место хранения" #: src/pages/stock/LocationDetail.tsx:237 msgid "Items Action" -msgstr "" +msgstr "Действия с элементами" #: src/pages/stock/LocationDetail.tsx:239 msgid "Action for stock items in this location" -msgstr "" +msgstr "Действия для складских элементов в этом месте" #: src/pages/stock/LocationDetail.tsx:243 #~ msgid "Child Locations Action" @@ -8526,37 +8598,37 @@ msgstr "" #: src/pages/stock/LocationDetail.tsx:244 msgid "Locations Action" -msgstr "" +msgstr "Действия с местоположениями" #: src/pages/stock/LocationDetail.tsx:246 msgid "Action for child locations in this location" -msgstr "" +msgstr "Действия для дочерних местоположений в этом месте" #: src/pages/stock/LocationDetail.tsx:280 msgid "Scan Stock Item" -msgstr "" +msgstr "Сканировать складской элемент" #: src/pages/stock/LocationDetail.tsx:298 #: src/pages/stock/StockDetail.tsx:812 msgid "Scanned stock item into location" -msgstr "" +msgstr "Сканированный элемент помещён в местоположение" #: src/pages/stock/LocationDetail.tsx:304 #: src/pages/stock/StockDetail.tsx:818 msgid "Error scanning stock item" -msgstr "" +msgstr "Ошибка при сканировании складского элемента" #: src/pages/stock/LocationDetail.tsx:311 msgid "Scan Stock Location" -msgstr "" +msgstr "Сканировать место хранения" #: src/pages/stock/LocationDetail.tsx:323 msgid "Scanned stock location into location" -msgstr "" +msgstr "Сканированное место хранения помещено в местоположение" #: src/pages/stock/LocationDetail.tsx:329 msgid "Error scanning stock location" -msgstr "" +msgstr "Ошибка при сканировании места хранения" #: src/pages/stock/LocationDetail.tsx:370 #: src/tables/stock/StockLocationTable.tsx:142 @@ -8605,7 +8677,7 @@ msgstr "Зарезервировано в заказах" #: src/pages/stock/StockDetail.tsx:305 msgid "Installed In" -msgstr "" +msgstr "Установлено в" #: src/pages/stock/StockDetail.tsx:325 msgid "Parent Item" @@ -8617,7 +8689,7 @@ msgstr "Запас-родитель" #: src/pages/stock/StockDetail.tsx:335 msgid "Consumed By" -msgstr "" +msgstr "Израсходовано для" #: src/pages/stock/StockDetail.tsx:432 msgid "Last Stocktake" @@ -8641,11 +8713,11 @@ msgstr "Движение остатков" #: src/pages/stock/StockDetail.tsx:601 msgid "Installed Items" -msgstr "" +msgstr "Установленные элементы" #: src/pages/stock/StockDetail.tsx:608 msgid "Child Items" -msgstr "" +msgstr "Дочерние элементы" #: src/pages/stock/StockDetail.tsx:661 msgid "Edit Stock Item" @@ -8668,7 +8740,7 @@ msgstr "Редактировать складскую позицию" #: src/pages/stock/StockDetail.tsx:703 msgid "Items Created" -msgstr "" +msgstr "Созданные элементы" #: src/pages/stock/StockDetail.tsx:704 msgid "Created {n} stock items" @@ -8701,15 +8773,15 @@ msgstr "Запасу присвоен серийный номер" #: src/pages/stock/StockDetail.tsx:794 msgid "Scan Into Location" -msgstr "" +msgstr "Сканировать в местоположение" #: src/pages/stock/StockDetail.tsx:852 msgid "Scan into location" -msgstr "" +msgstr "Сканировать в местоположение" #: src/pages/stock/StockDetail.tsx:854 msgid "Scan this item into a location" -msgstr "" +msgstr "Отсканируйте этот элемент для помещения в местоположение" #: src/pages/stock/StockDetail.tsx:866 msgid "Stock Operations" @@ -8722,11 +8794,11 @@ msgstr "Действия со складом" #: src/pages/stock/StockDetail.tsx:871 #: src/tables/build/BuildOutputTable.tsx:522 msgid "Serialize" -msgstr "" +msgstr "Сериализовать" #: src/pages/stock/StockDetail.tsx:872 msgid "Serialize stock" -msgstr "" +msgstr "Сериализовать запас" #: src/pages/stock/StockDetail.tsx:890 #~ msgid "Return from customer" @@ -8734,7 +8806,7 @@ msgstr "" #: src/pages/stock/StockDetail.tsx:897 msgid "Stock Item Actions" -msgstr "" +msgstr "Действия со складским элементом" #: src/pages/stock/StockDetail.tsx:900 #~ msgid "Transfer" @@ -8775,13 +8847,6 @@ msgstr "Ошибка загрузки пакета значков с серве msgid "Part is not active" msgstr "Деталь не активна" -#: src/tables/ColumnRenderers.tsx:73 -#: src/tables/bom/BomTable.tsx:657 -#: src/tables/part/PartParameterTable.tsx:227 -#: src/tables/part/PartTestTemplateTable.tsx:258 -msgid "Part is Locked" -msgstr "Деталь заблокирована" - #: src/tables/ColumnRenderers.tsx:78 msgid "You are subscribed to notifications for this part" msgstr "Вы подписаны на получение уведомлений для этой детали" @@ -8837,7 +8902,7 @@ msgstr "Фильтр по коду партии" #: src/tables/Filter.tsx:93 msgid "Show items which are in stock" -msgstr "" +msgstr "Показать элементы, которые в наличии" #: src/tables/Filter.tsx:100 msgid "Is Serialized" @@ -8894,7 +8959,7 @@ msgstr "Показать незавершённые элементы" #: src/tables/Filter.tsx:153 msgid "Show overdue items" -msgstr "" +msgstr "Показать просроченные элементы" #: src/tables/Filter.tsx:160 msgid "Minimum Date" @@ -8990,7 +9055,7 @@ msgstr "Включая разновидности" #: src/tables/Filter.tsx:265 msgid "Include results for part variants" -msgstr "" +msgstr "Включить результаты для вариантов деталей" #: src/tables/Filter.tsx:275 #: src/tables/part/PartPurchaseOrdersTable.tsx:133 @@ -9013,11 +9078,11 @@ msgstr "Фильтр по пользователю" #: src/tables/Filter.tsx:348 msgid "Filter by manufacturer" -msgstr "" +msgstr "Фильтр по производителю" #: src/tables/Filter.tsx:361 msgid "Filter by supplier" -msgstr "" +msgstr "Фильтр по поставщику" #: src/tables/Filter.tsx:374 msgid "Filter by user who created the order" @@ -9131,7 +9196,7 @@ msgstr "Показать сведения" #: src/tables/InvenTreeTable.tsx:694 msgid "View {model}" -msgstr "" +msgstr "Просмотреть {model}" #: src/tables/InvenTreeTable.tsx:712 #~ msgid "Table filters" @@ -9177,7 +9242,7 @@ msgstr "Обновить данные" #: src/tables/InvenTreeTableHeader.tsx:272 msgid "Active Filters" -msgstr "" +msgstr "Активные фильтры" #: src/tables/TableHoverCard.tsx:35 #~ msgid "item-{idx}" @@ -9212,32 +9277,32 @@ msgstr "Замены" #: src/tables/sales/SalesOrderLineItemTable.tsx:199 #: src/tables/sales/SalesOrderLineItemTable.tsx:216 msgid "Virtual part" -msgstr "" +msgstr "Виртуальная деталь" #: src/tables/bom/BomTable.tsx:310 #~ msgid "Show asssmbled items" #~ msgstr "Show asssmbled items" #: src/tables/bom/BomTable.tsx:315 -#: src/tables/build/BuildLineTable.tsx:276 +#: src/tables/build/BuildLineTable.tsx:277 #: src/tables/part/PartTable.tsx:145 msgid "External stock" msgstr "Сторонний склад" #: src/tables/bom/BomTable.tsx:323 -#: src/tables/build/BuildLineTable.tsx:239 +#: src/tables/build/BuildLineTable.tsx:240 msgid "Includes substitute stock" -msgstr "" +msgstr "Включает запас заменителей" #: src/tables/bom/BomTable.tsx:331 #~ msgid "Edit Bom Item" #~ msgstr "Edit Bom Item" #: src/tables/bom/BomTable.tsx:332 -#: src/tables/build/BuildLineTable.tsx:249 +#: src/tables/build/BuildLineTable.tsx:250 #: src/tables/sales/SalesOrderLineItemTable.tsx:166 msgid "Includes variant stock" -msgstr "" +msgstr "Включает запас вариантов" #: src/tables/bom/BomTable.tsx:333 #~ msgid "Bom item updated" @@ -9250,7 +9315,7 @@ msgstr "" #: src/tables/bom/BomTable.tsx:349 #: src/tables/part/PartTable.tsx:114 msgid "Building" -msgstr "" +msgstr "Сборка" #: src/tables/bom/BomTable.tsx:349 #~ msgid "Bom item deleted" @@ -9272,17 +9337,17 @@ msgid "Stock Information" msgstr "Информация о складе" #: src/tables/bom/BomTable.tsx:399 -#: src/tables/build/BuildLineTable.tsx:496 -#: src/tables/build/BuildLineTable.tsx:537 +#: src/tables/build/BuildLineTable.tsx:497 +#: src/tables/build/BuildLineTable.tsx:538 msgid "Consumable item" -msgstr "" +msgstr "Расходный материал" #: src/tables/bom/BomTable.tsx:402 msgid "No available stock" msgstr "Нет на складе" #: src/tables/bom/BomTable.tsx:420 -#: src/tables/build/BuildLineTable.tsx:213 +#: src/tables/build/BuildLineTable.tsx:214 msgid "Show testable items" msgstr "Показать тестируемые элементы" @@ -9291,13 +9356,13 @@ msgid "Show trackable items" msgstr "Показать отслеживаемые позиции" #: src/tables/bom/BomTable.tsx:430 -#: src/tables/build/BuildLineTable.tsx:208 +#: src/tables/build/BuildLineTable.tsx:209 msgid "Show assembled items" msgstr "Показать сборные детали" #: src/tables/bom/BomTable.tsx:435 msgid "Show virtual items" -msgstr "" +msgstr "Показать виртуальные элементы" #: src/tables/bom/BomTable.tsx:440 msgid "Show items with available stock" @@ -9335,7 +9400,7 @@ msgstr "Показать элементы, в которых разрешено #: src/tables/bom/BomTable.tsx:464 #: src/tables/bom/UsedInTable.tsx:85 -#: src/tables/build/BuildLineTable.tsx:202 +#: src/tables/build/BuildLineTable.tsx:203 msgid "Optional" msgstr "Необязательно" @@ -9345,7 +9410,7 @@ msgid "Show optional items" msgstr "Показать необязательные элементы" #: src/tables/bom/BomTable.tsx:469 -#: src/tables/build/BuildLineTable.tsx:197 +#: src/tables/build/BuildLineTable.tsx:198 msgid "Consumable" msgstr "Расходник" @@ -9413,13 +9478,14 @@ msgstr "Редактировать варианты замены" #: src/tables/bom/BomTable.tsx:625 msgid "Add BOM Items" -msgstr "" +msgstr "Добавить позиции спецификации" #: src/tables/bom/BomTable.tsx:633 msgid "Add a single BOM item" -msgstr "" +msgstr "Добавить одну позицию спецификации" #: src/tables/bom/BomTable.tsx:637 +#: src/tables/general/ParameterTable.tsx:206 #: src/tables/part/PartTable.tsx:546 msgid "Import from File" msgstr "Импорт из файла" @@ -9433,8 +9499,8 @@ msgid "Bill of materials cannot be edited, as the part is locked" msgstr "Невозможно отредактировать спецификацию, поскольку деталь заблокирована" #: src/tables/bom/UsedInTable.tsx:34 -#: src/tables/build/BuildLineTable.tsx:207 -#: src/tables/part/ParametricPartTable.tsx:364 +#: src/tables/build/BuildLineTable.tsx:208 +#: src/tables/part/ParametricPartTable.tsx:29 #: src/tables/part/PartBuildAllocationsTable.tsx:60 #: src/tables/part/PartTable.tsx:209 #: src/tables/stock/StockItemTable.tsx:333 @@ -9443,7 +9509,7 @@ msgstr "Сборная деталь" #: src/tables/bom/UsedInTable.tsx:91 msgid "Show active assemblies" -msgstr "" +msgstr "Показать активные сборки" #: src/tables/bom/UsedInTable.tsx:95 #: src/tables/part/PartTable.tsx:239 @@ -9453,13 +9519,13 @@ msgstr "Отслеживаемая" #: src/tables/bom/UsedInTable.tsx:96 msgid "Show trackable assemblies" -msgstr "" +msgstr "Показать отслеживаемые сборки" -#: src/tables/build/BuildAllocatedStockTable.tsx:67 +#: src/tables/build/BuildAllocatedStockTable.tsx:64 msgid "Allocated to Output" msgstr "Зарезервировано" -#: src/tables/build/BuildAllocatedStockTable.tsx:68 +#: src/tables/build/BuildAllocatedStockTable.tsx:65 msgid "Show items allocated to a build output" msgstr "Показать позиции, зарезервированные для продукции" @@ -9472,175 +9538,193 @@ msgstr "Показать позиции, зарезервированные дл #~ msgid "Include orders for part variants" #~ msgstr "Include orders for part variants" -#: src/tables/build/BuildAllocatedStockTable.tsx:97 +#: src/tables/build/BuildAllocatedStockTable.tsx:94 #: src/tables/part/PartBuildAllocationsTable.tsx:84 #: src/tables/part/PartPurchaseOrdersTable.tsx:132 #: src/tables/part/PartSalesAllocationsTable.tsx:69 #: src/tables/sales/SalesOrderAllocationTable.tsx:122 -#: src/tables/sales/SalesOrderShipmentTable.tsx:130 +#: src/tables/sales/SalesOrderShipmentTable.tsx:151 msgid "Order Status" msgstr "Статус заказа" +#: src/tables/build/BuildAllocatedStockTable.tsx:164 +#: src/tables/build/BuildLineTable.tsx:651 +msgid "Edit Stock Allocation" +msgstr "Редактировать распределение запаса" + #: src/tables/build/BuildAllocatedStockTable.tsx:164 #~ msgid "Edit Build Item" #~ msgstr "Edit Build Item" -#: src/tables/build/BuildAllocatedStockTable.tsx:167 -#: src/tables/build/BuildLineTable.tsx:650 -msgid "Edit Stock Allocation" -msgstr "" - #: src/tables/build/BuildAllocatedStockTable.tsx:174 #~ msgid "Delete Build Item" #~ msgstr "Delete Build Item" +#: src/tables/build/BuildAllocatedStockTable.tsx:177 +#: src/tables/build/BuildLineTable.tsx:664 +#: src/tables/sales/SalesOrderAllocationTable.tsx:218 +msgid "Remove Allocated Stock" +msgstr "Удалить распределённый запас" + #: src/tables/build/BuildAllocatedStockTable.tsx:180 #: src/tables/build/BuildLineTable.tsx:663 -msgid "Delete Stock Allocation" -msgstr "" +#~ msgid "Delete Stock Allocation" +#~ msgstr "Delete Stock Allocation" -#: src/tables/build/BuildAllocatedStockTable.tsx:239 +#: src/tables/build/BuildAllocatedStockTable.tsx:182 +#: src/tables/build/BuildLineTable.tsx:669 +#: src/tables/sales/SalesOrderAllocationTable.tsx:221 +msgid "Are you sure you want to remove this allocated stock from the order?" +msgstr "Вы уверены, что хотите удалить этот распределённый запас из заказа?" + +#: src/tables/build/BuildAllocatedStockTable.tsx:242 msgid "Consume" -msgstr "" +msgstr "Израсходовать" + +#: src/tables/build/BuildAllocatedStockTable.tsx:259 +#: src/tables/build/BuildLineTable.tsx:112 +#: src/tables/sales/SalesOrderAllocationTable.tsx:248 +msgid "Remove allocated stock" +msgstr "Удалить распределённый запас" #: src/tables/build/BuildLineTable.tsx:59 #~ msgid "Show lines with available stock" #~ msgstr "Show lines with available stock" -#: src/tables/build/BuildLineTable.tsx:120 +#: src/tables/build/BuildLineTable.tsx:121 msgid "View Stock Item" msgstr "Показать складскую позицию" -#: src/tables/build/BuildLineTable.tsx:183 +#: src/tables/build/BuildLineTable.tsx:184 msgid "Show fully allocated lines" -msgstr "" +msgstr "Показать полностью распределённые строки" -#: src/tables/build/BuildLineTable.tsx:188 +#: src/tables/build/BuildLineTable.tsx:189 msgid "Show fully consumed lines" -msgstr "" +msgstr "Показать полностью израсходованные строки" #: src/tables/build/BuildLineTable.tsx:189 #~ msgid "Show allocated lines" #~ msgstr "Show allocated lines" -#: src/tables/build/BuildLineTable.tsx:193 +#: src/tables/build/BuildLineTable.tsx:194 msgid "Show items with sufficient available stock" -msgstr "" +msgstr "Показать элементы с достаточным доступным запасом" -#: src/tables/build/BuildLineTable.tsx:198 +#: src/tables/build/BuildLineTable.tsx:199 msgid "Show consumable lines" -msgstr "" +msgstr "Показать строки расходных материалов" -#: src/tables/build/BuildLineTable.tsx:203 +#: src/tables/build/BuildLineTable.tsx:204 msgid "Show optional lines" -msgstr "" +msgstr "Показать необязательные строки" -#: src/tables/build/BuildLineTable.tsx:212 +#: src/tables/build/BuildLineTable.tsx:213 #: src/tables/part/PartTable.tsx:233 msgid "Testable" msgstr "Тестируемая" -#: src/tables/build/BuildLineTable.tsx:217 +#: src/tables/build/BuildLineTable.tsx:218 #: src/tables/stock/StockItemTable.tsx:388 msgid "Tracked" -msgstr "" +msgstr "Отслеживаемый" -#: src/tables/build/BuildLineTable.tsx:218 +#: src/tables/build/BuildLineTable.tsx:219 msgid "Show tracked lines" -msgstr "" +msgstr "Показать отслеживаемые строки" -#: src/tables/build/BuildLineTable.tsx:223 +#: src/tables/build/BuildLineTable.tsx:224 msgid "Show items with stock on order" -msgstr "" +msgstr "Показать элементы с запасом в заказе" -#: src/tables/build/BuildLineTable.tsx:258 +#: src/tables/build/BuildLineTable.tsx:259 #: src/tables/sales/SalesOrderLineItemTable.tsx:172 msgid "In production" -msgstr "" +msgstr "В производстве" -#: src/tables/build/BuildLineTable.tsx:286 +#: src/tables/build/BuildLineTable.tsx:287 msgid "Insufficient stock" -msgstr "" +msgstr "Недостаточно запаса" -#: src/tables/build/BuildLineTable.tsx:302 +#: src/tables/build/BuildLineTable.tsx:303 #: src/tables/sales/SalesOrderLineItemTable.tsx:160 #: src/tables/stock/StockItemTable.tsx:191 msgid "No stock available" msgstr "Нет на складе" -#: src/tables/build/BuildLineTable.tsx:375 +#: src/tables/build/BuildLineTable.tsx:376 msgid "Gets Inherited" -msgstr "" +msgstr "Наследуется" -#: src/tables/build/BuildLineTable.tsx:388 +#: src/tables/build/BuildLineTable.tsx:389 msgid "Unit Quantity" -msgstr "" +msgstr "Количество единиц" -#: src/tables/build/BuildLineTable.tsx:415 +#: src/tables/build/BuildLineTable.tsx:416 msgid "Setup Quantity" -msgstr "" +msgstr "Количество для настройки" -#: src/tables/build/BuildLineTable.tsx:424 +#: src/tables/build/BuildLineTable.tsx:425 msgid "Attrition" -msgstr "" +msgstr "Потери" -#: src/tables/build/BuildLineTable.tsx:432 +#: src/tables/build/BuildLineTable.tsx:433 msgid "Rounding Multiple" -msgstr "" +msgstr "Кратность округления" -#: src/tables/build/BuildLineTable.tsx:441 +#: src/tables/build/BuildLineTable.tsx:442 msgid "BOM Information" -msgstr "" +msgstr "Информация о спецификации" -#: src/tables/build/BuildLineTable.tsx:515 +#: src/tables/build/BuildLineTable.tsx:516 #: src/tables/part/PartBuildAllocationsTable.tsx:102 msgid "Fully allocated" -msgstr "" +msgstr "Полностью распределено" -#: src/tables/build/BuildLineTable.tsx:563 +#: src/tables/build/BuildLineTable.tsx:564 #: src/tables/sales/SalesOrderLineItemTable.tsx:311 msgid "Create Build Order" msgstr "Создать заказ на сборку" -#: src/tables/build/BuildLineTable.tsx:592 +#: src/tables/build/BuildLineTable.tsx:593 msgid "Auto allocation in progress" msgstr "Выполняется автоматическое распределение" -#: src/tables/build/BuildLineTable.tsx:595 -#: src/tables/build/BuildLineTable.tsx:802 +#: src/tables/build/BuildLineTable.tsx:596 +#: src/tables/build/BuildLineTable.tsx:809 msgid "Auto Allocate Stock" msgstr "Автоматическое резервирование остатков" -#: src/tables/build/BuildLineTable.tsx:596 +#: src/tables/build/BuildLineTable.tsx:597 msgid "Automatically allocate stock to this build according to the selected options" msgstr "Автоматически выделять запасы на эту сборку в соответствии с выбранными параметрами" -#: src/tables/build/BuildLineTable.tsx:616 -#: src/tables/build/BuildLineTable.tsx:630 -#: src/tables/build/BuildLineTable.tsx:751 -#: src/tables/build/BuildLineTable.tsx:852 +#: src/tables/build/BuildLineTable.tsx:617 +#: src/tables/build/BuildLineTable.tsx:631 +#: src/tables/build/BuildLineTable.tsx:758 +#: src/tables/build/BuildLineTable.tsx:859 #: src/tables/build/BuildOutputTable.tsx:355 #: src/tables/build/BuildOutputTable.tsx:360 msgid "Deallocate Stock" msgstr "Отменить резервирование остатков" -#: src/tables/build/BuildLineTable.tsx:632 +#: src/tables/build/BuildLineTable.tsx:633 msgid "Deallocate all untracked stock for this build order" msgstr "Начислить все неотслеживаемые запасы для этого заказа на сборку" -#: src/tables/build/BuildLineTable.tsx:634 +#: src/tables/build/BuildLineTable.tsx:635 msgid "Deallocate stock from the selected line item" msgstr "Отменить резервирование остатков для выбранной позиции" -#: src/tables/build/BuildLineTable.tsx:638 +#: src/tables/build/BuildLineTable.tsx:639 msgid "Stock has been deallocated" msgstr "Склад был распродан" -#: src/tables/build/BuildLineTable.tsx:771 +#: src/tables/build/BuildLineTable.tsx:778 msgid "Build Stock" msgstr "Собрать" -#: src/tables/build/BuildLineTable.tsx:784 +#: src/tables/build/BuildLineTable.tsx:791 #: src/tables/sales/SalesOrderLineItemTable.tsx:487 msgid "View Part" msgstr "Показать деталь" @@ -9719,7 +9803,7 @@ msgstr "Создать продукцию" #: src/tables/build/BuildOutputTable.tsx:293 msgid "Build output created" -msgstr "" +msgstr "Продукция создана" #: src/tables/build/BuildOutputTable.tsx:304 #~ msgid "Edit build output" @@ -9736,10 +9820,10 @@ msgstr "Это действие отменит резервирование вс #: src/tables/build/BuildOutputTable.tsx:387 msgid "Serialize Build Output" -msgstr "" +msgstr "Сериализовать продукцию" #: src/tables/build/BuildOutputTable.tsx:405 -#: src/tables/part/PartTestResultTable.tsx:310 +#: src/tables/part/PartTestResultTable.tsx:318 #: src/tables/stock/StockItemTable.tsx:328 msgid "Filter by stock status" msgstr "Фильтр по статусу склада" @@ -9778,7 +9862,7 @@ msgstr "Отменить резервирование остатков для в #: src/tables/build/BuildOutputTable.tsx:523 msgid "Serialize build output" -msgstr "" +msgstr "Сериализовать продукцию" #: src/tables/build/BuildOutputTable.tsx:534 msgid "Complete build output" @@ -9844,19 +9928,19 @@ msgstr "Создать компанию" #: src/tables/company/CompanyTable.tsx:92 msgid "Show active companies" -msgstr "" +msgstr "Показать активные компании" #: src/tables/company/CompanyTable.tsx:97 msgid "Show companies which are suppliers" -msgstr "" +msgstr "Показать компании, которые являются поставщиками" #: src/tables/company/CompanyTable.tsx:102 msgid "Show companies which are manufacturers" -msgstr "" +msgstr "Показать компании, которые являются производителями" #: src/tables/company/CompanyTable.tsx:107 msgid "Show companies which are customers" -msgstr "" +msgstr "Показать компании, которые являются клиентами" #: src/tables/company/ContactTable.tsx:99 msgid "Edit Contact" @@ -9964,8 +10048,8 @@ msgid "View Item" msgstr "Показать элемент" #: src/tables/general/ExtraLineItemTable.tsx:95 -#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:299 -#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:403 +#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:300 +#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:405 #: src/tables/sales/ReturnOrderLineItemTable.tsx:83 #: src/tables/sales/ReturnOrderLineItemTable.tsx:187 #: src/tables/sales/SalesOrderLineItemTable.tsx:252 @@ -9974,14 +10058,14 @@ msgid "Add Line Item" msgstr "Создать позицию" #: src/tables/general/ExtraLineItemTable.tsx:108 -#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:320 +#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:322 #: src/tables/sales/ReturnOrderLineItemTable.tsx:96 #: src/tables/sales/SalesOrderLineItemTable.tsx:271 msgid "Edit Line Item" msgstr "Редактировать позицию" #: src/tables/general/ExtraLineItemTable.tsx:117 -#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:329 +#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:331 #: src/tables/sales/ReturnOrderLineItemTable.tsx:105 #: src/tables/sales/SalesOrderLineItemTable.tsx:280 msgid "Delete Line Item" @@ -9991,6 +10075,137 @@ msgstr "Удалить позицию" msgid "Add Extra Line Item" msgstr "Создать дополнительные позиции" +#: src/tables/general/ParameterTable.tsx:88 +msgid "Internal Units" +msgstr "Внутренние ед. измерения" + +#: src/tables/general/ParameterTable.tsx:108 +#: src/tables/general/ParameterTable.tsx:123 +msgid "Updated By" +msgstr "Кем обновлено" + +#: src/tables/general/ParameterTable.tsx:118 +msgid "Show parameters for enabled templates" +msgstr "" + +#: src/tables/general/ParameterTable.tsx:124 +msgid "Filter by user who last updated the parameter" +msgstr "Фильтр по пользователю, который последний обновил параметр" + +#: src/tables/general/ParameterTable.tsx:154 +msgid "Import Parameters" +msgstr "" + +#: src/tables/general/ParameterTable.tsx:164 +#: src/tables/general/ParametricDataTable.tsx:261 +#: src/tables/general/ParametricDataTable.tsx:392 +msgid "Add Parameter" +msgstr "Создать параметр" + +#: src/tables/general/ParameterTable.tsx:175 +#: src/tables/general/ParameterTable.tsx:222 +#: src/tables/general/ParametricDataTable.tsx:285 +msgid "Edit Parameter" +msgstr "Редактировать параметр" + +#: src/tables/general/ParameterTable.tsx:183 +#: src/tables/general/ParameterTable.tsx:230 +msgid "Delete Parameter" +msgstr "Удалить параметр" + +#: src/tables/general/ParameterTable.tsx:191 +msgid "Add Parameters" +msgstr "" + +#: src/tables/general/ParameterTable.tsx:197 +msgid "Create Parameter" +msgstr "" + +#: src/tables/general/ParameterTable.tsx:199 +msgid "Create a new parameter" +msgstr "" + +#: src/tables/general/ParameterTable.tsx:208 +msgid "Import parameters from a file" +msgstr "" + +#: src/tables/general/ParameterTemplateTable.tsx:48 +#: src/tables/general/ParameterTemplateTable.tsx:197 +msgid "Add Parameter Template" +msgstr "Создать шаблон параметра" + +#: src/tables/general/ParameterTemplateTable.tsx:64 +msgid "Duplicate Parameter Template" +msgstr "Дублировать шаблон параметра" + +#: src/tables/general/ParameterTemplateTable.tsx:78 +msgid "Delete Parameter Template" +msgstr "Удалить шаблон параметра" + +#: src/tables/general/ParameterTemplateTable.tsx:85 +msgid "Edit Parameter Template" +msgstr "Редактировать шаблон параметра" + +#: src/tables/general/ParameterTemplateTable.tsx:138 +msgid "Checkbox" +msgstr "Чекбокс" + +#: src/tables/general/ParameterTemplateTable.tsx:139 +msgid "Show checkbox templates" +msgstr "Показать шаблоны-переключатели" + +#: src/tables/general/ParameterTemplateTable.tsx:143 +msgid "Has choices" +msgstr "Есть варианты" + +#: src/tables/general/ParameterTemplateTable.tsx:144 +msgid "Show templates with choices" +msgstr "Показать шаблоны с вариантами" + +#: src/tables/general/ParameterTemplateTable.tsx:148 +#: src/tables/part/PartTable.tsx:245 +msgid "Has Units" +msgstr "Имеет единицу измерения" + +#: src/tables/general/ParameterTemplateTable.tsx:149 +msgid "Show templates with units" +msgstr "Показать шаблоны с единицами измерения" + +#: src/tables/general/ParameterTemplateTable.tsx:154 +msgid "Show enabled templates" +msgstr "" + +#: src/tables/general/ParameterTemplateTable.tsx:158 +#: src/tables/settings/ImportSessionTable.tsx:111 +#: src/tables/settings/TemplateTable.tsx:368 +msgid "Model Type" +msgstr "Тип модели" + +#: src/tables/general/ParameterTemplateTable.tsx:159 +msgid "Filter by model type" +msgstr "" + +#: src/tables/general/ParametricDataTable.tsx:79 +msgid "Click to edit" +msgstr "Нажмите для редактирования" + +#: src/tables/general/ParametricDataTableFilters.tsx:36 +msgid "True" +msgstr "Да" + +#: src/tables/general/ParametricDataTableFilters.tsx:37 +msgid "False" +msgstr "Нет" + +#: src/tables/general/ParametricDataTableFilters.tsx:47 +#: src/tables/general/ParametricDataTableFilters.tsx:80 +msgid "Select a choice" +msgstr "Выберите вариант" + +#: src/tables/general/ParametricDataTableFilters.tsx:100 +msgid "Enter a value" +msgstr "Введите значение" + #: src/tables/machine/MachineListTable.tsx:133 msgid "Machine restarted" msgstr "Оборудование перезагружено" @@ -10018,7 +10233,7 @@ msgstr "Оборудование успешно удалено." #: src/tables/machine/MachineListTable.tsx:255 #: src/tables/machine/MachineListTable.tsx:697 msgid "Are you sure you want to remove this machine?" -msgstr "" +msgstr "Вы уверены, что хотите удалить эту машину?" #: src/tables/machine/MachineListTable.tsx:285 msgid "Machine" @@ -10055,7 +10270,7 @@ msgstr "требуется ручная перезагрузка" #: src/tables/machine/MachineListTable.tsx:343 msgid "General" -msgstr "" +msgstr "Общие" #: src/tables/machine/MachineListTable.tsx:353 #: src/tables/machine/MachineListTable.tsx:804 @@ -10071,13 +10286,13 @@ msgid "Initialized" msgstr "Инициализировано" #: src/tables/machine/MachineListTable.tsx:410 -#: src/tables/machine/MachineTypeTable.tsx:307 +#: src/tables/machine/MachineTypeTable.tsx:305 msgid "No errors reported" msgstr "Ошибки не обнаружены" #: src/tables/machine/MachineListTable.tsx:431 msgid "Properties" -msgstr "" +msgstr "Свойства" #: src/tables/machine/MachineListTable.tsx:494 #~ msgid "Create machine" @@ -10098,15 +10313,15 @@ msgstr "Создать оборудование" #: src/tables/machine/MachineListTable.tsx:691 #: src/tables/machine/MachineListTable.tsx:736 msgid "Delete Machine" -msgstr "" +msgstr "Удалить машину" #: src/tables/machine/MachineListTable.tsx:704 msgid "Edit Machine" -msgstr "" +msgstr "Редактировать машину" #: src/tables/machine/MachineListTable.tsx:718 msgid "Restart Machine" -msgstr "" +msgstr "Перезапустить машину" #: src/tables/machine/MachineListTable.tsx:749 msgid "Add machine" @@ -10122,7 +10337,7 @@ msgstr "Драйвер" #: src/tables/machine/MachineTypeTable.tsx:72 msgid "Driver Type" -msgstr "" +msgstr "Тип драйвера" #: src/tables/machine/MachineTypeTable.tsx:76 msgid "Builtin driver" @@ -10132,15 +10347,15 @@ msgstr "Встроенный драйвер" #~ msgid "Machine type information" #~ msgstr "Machine type information" -#: src/tables/machine/MachineTypeTable.tsx:128 +#: src/tables/machine/MachineTypeTable.tsx:126 msgid "Not Found" msgstr "Не найдено" -#: src/tables/machine/MachineTypeTable.tsx:131 +#: src/tables/machine/MachineTypeTable.tsx:129 msgid "Machine type not found." msgstr "Тип оборудования не найден." -#: src/tables/machine/MachineTypeTable.tsx:141 +#: src/tables/machine/MachineTypeTable.tsx:139 msgid "Machine Type Information" msgstr "Информация о типе оборудования" @@ -10148,34 +10363,34 @@ msgstr "Информация о типе оборудования" #~ msgid "Available drivers" #~ msgstr "Available drivers" -#: src/tables/machine/MachineTypeTable.tsx:156 -#: src/tables/machine/MachineTypeTable.tsx:255 +#: src/tables/machine/MachineTypeTable.tsx:154 +#: src/tables/machine/MachineTypeTable.tsx:253 msgid "Slug" msgstr "Часть URL-адреса" -#: src/tables/machine/MachineTypeTable.tsx:167 -#: src/tables/machine/MachineTypeTable.tsx:276 +#: src/tables/machine/MachineTypeTable.tsx:165 +#: src/tables/machine/MachineTypeTable.tsx:274 msgid "Provider plugin" msgstr "Плагин поставщика" -#: src/tables/machine/MachineTypeTable.tsx:179 -#: src/tables/machine/MachineTypeTable.tsx:288 +#: src/tables/machine/MachineTypeTable.tsx:177 +#: src/tables/machine/MachineTypeTable.tsx:286 msgid "Provider file" msgstr "Файл поставщика" -#: src/tables/machine/MachineTypeTable.tsx:194 +#: src/tables/machine/MachineTypeTable.tsx:192 msgid "Available Drivers" msgstr "Доступные драйверы" -#: src/tables/machine/MachineTypeTable.tsx:234 +#: src/tables/machine/MachineTypeTable.tsx:232 msgid "Machine driver not found." msgstr "Драйвер оборудования не найден." -#: src/tables/machine/MachineTypeTable.tsx:242 +#: src/tables/machine/MachineTypeTable.tsx:240 msgid "Machine driver information" msgstr "Информация о драйвере оборудования" -#: src/tables/machine/MachineTypeTable.tsx:262 +#: src/tables/machine/MachineTypeTable.tsx:260 msgid "Machine type" msgstr "Тип оборудования" @@ -10187,15 +10402,15 @@ msgstr "Тип оборудования" #~ msgid "Machine driver detail" #~ msgstr "Machine driver detail" -#: src/tables/machine/MachineTypeTable.tsx:362 +#: src/tables/machine/MachineTypeTable.tsx:360 msgid "Builtin type" msgstr "Встроенный тип" -#: src/tables/machine/MachineTypeTable.tsx:371 +#: src/tables/machine/MachineTypeTable.tsx:369 msgid "Machine Type Detail" msgstr "Сведения о типе оборудования" -#: src/tables/machine/MachineTypeTable.tsx:381 +#: src/tables/machine/MachineTypeTable.tsx:379 msgid "Machine Driver Detail" msgstr "Сведения о драйвере оборудования" @@ -10213,67 +10428,46 @@ msgstr "Уведомление" msgid "Message" msgstr "Сообщение" -#: src/tables/part/ParametricPartTable.tsx:78 -msgid "Click to edit" -msgstr "Нажмите для редактирования" +#: src/tables/part/ParametricPartTable.tsx:20 +msgid "Show active parts" +msgstr "Показать активные детали" + +#: src/tables/part/ParametricPartTable.tsx:25 +msgid "Show locked parts" +msgstr "Показать заблокированные детали" + +#: src/tables/part/ParametricPartTable.tsx:30 +msgid "Show assembly parts" +msgstr "Показать сборные детали" #: src/tables/part/ParametricPartTable.tsx:82 #~ msgid "Edit parameter" #~ msgstr "Edit parameter" #: src/tables/part/ParametricPartTable.tsx:244 -msgid "Add Part Parameter" -msgstr "Создать параметр детали" +#~ msgid "Add Part Parameter" +#~ msgstr "Add Part Parameter" #: src/tables/part/ParametricPartTable.tsx:258 #: src/tables/part/PartParameterTable.tsx:164 #: src/tables/part/PartParameterTable.tsx:187 -msgid "Edit Part Parameter" -msgstr "Редактировать параметр детали" - -#: src/tables/part/ParametricPartTable.tsx:355 -msgid "Show active parts" -msgstr "Показать активные детали" - -#: src/tables/part/ParametricPartTable.tsx:360 -msgid "Show locked parts" -msgstr "Показать заблокированные детали" - -#: src/tables/part/ParametricPartTable.tsx:365 -msgid "Show assembly parts" -msgstr "Показать сборные детали" - -#: src/tables/part/ParametricPartTableFilters.tsx:36 -msgid "True" -msgstr "Да" - -#: src/tables/part/ParametricPartTableFilters.tsx:37 -msgid "False" -msgstr "Нет" - -#: src/tables/part/ParametricPartTableFilters.tsx:47 -#: src/tables/part/ParametricPartTableFilters.tsx:80 -msgid "Select a choice" -msgstr "Выберите вариант" - -#: src/tables/part/ParametricPartTableFilters.tsx:100 -msgid "Enter a value" -msgstr "Введите значение" +#~ msgid "Edit Part Parameter" +#~ msgstr "Edit Part Parameter" #: src/tables/part/PartBuildAllocationsTable.tsx:64 msgid "Assembly IPN" -msgstr "" +msgstr "Внутренний артикул сборки" #: src/tables/part/PartBuildAllocationsTable.tsx:73 msgid "Part IPN" -msgstr "" +msgstr "Внутренний артикул детали" #: src/tables/part/PartBuildAllocationsTable.tsx:91 msgid "Required Stock" msgstr "Требуемый запас" #: src/tables/part/PartBuildAllocationsTable.tsx:124 -#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:381 +#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:383 msgid "View Build Order" msgstr "Показать заказ на сборку" @@ -10332,85 +10526,22 @@ msgstr "Редактировать параметр категории" msgid "Delete Category Parameter" msgstr "Удалить параметр категории" -#: src/tables/part/PartCategoryTemplateTable.tsx:87 -msgid "Parameter Template" -msgstr "Шаблон параметра" - #: src/tables/part/PartCategoryTemplateTable.tsx:93 #~ msgid "[{0}]" #~ msgstr "[{0}]" -#: src/tables/part/PartParameterTable.tsx:108 -msgid "Internal Units" -msgstr "Внутренние ед. измерения" - -#: src/tables/part/PartParameterTable.tsx:128 -#: src/tables/part/PartParameterTable.tsx:138 -msgid "Updated By" -msgstr "" - -#: src/tables/part/PartParameterTable.tsx:139 -msgid "Filter by user who last updated the parameter" -msgstr "" - #: src/tables/part/PartParameterTable.tsx:148 -msgid "New Part Parameter" -msgstr "Создание параметра детали" +#~ msgid "New Part Parameter" +#~ msgstr "New Part Parameter" #: src/tables/part/PartParameterTable.tsx:173 #: src/tables/part/PartParameterTable.tsx:195 -msgid "Delete Part Parameter" -msgstr "Удалить параметр детали" +#~ msgid "Delete Part Parameter" +#~ msgstr "Delete Part Parameter" #: src/tables/part/PartParameterTable.tsx:213 -msgid "Add parameter" -msgstr "Создать параметр" - -#: src/tables/part/PartParameterTable.tsx:232 -msgid "Part parameters cannot be edited, as the part is locked" -msgstr "Параметры детали нельзя редактировать, поскольку деталь заблокирована" - -#: src/tables/part/PartParameterTemplateTable.tsx:36 -msgid "Checkbox" -msgstr "Чекбокс" - -#: src/tables/part/PartParameterTemplateTable.tsx:37 -msgid "Show checkbox templates" -msgstr "Показать шаблоны-переключатели" - -#: src/tables/part/PartParameterTemplateTable.tsx:41 -msgid "Has choices" -msgstr "Есть варианты" - -#: src/tables/part/PartParameterTemplateTable.tsx:42 -msgid "Show templates with choices" -msgstr "Показать шаблоны с вариантами" - -#: src/tables/part/PartParameterTemplateTable.tsx:46 -#: src/tables/part/PartTable.tsx:245 -msgid "Has Units" -msgstr "Имеет единицу измерения" - -#: src/tables/part/PartParameterTemplateTable.tsx:47 -msgid "Show templates with units" -msgstr "Показать шаблоны с единицами измерения" - -#: src/tables/part/PartParameterTemplateTable.tsx:91 -#: src/tables/part/PartParameterTemplateTable.tsx:166 -msgid "Add Parameter Template" -msgstr "Создать шаблон параметра" - -#: src/tables/part/PartParameterTemplateTable.tsx:105 -msgid "Duplicate Parameter Template" -msgstr "" - -#: src/tables/part/PartParameterTemplateTable.tsx:117 -msgid "Edit Parameter Template" -msgstr "Редактировать шаблон параметра" - -#: src/tables/part/PartParameterTemplateTable.tsx:128 -msgid "Delete Parameter Template" -msgstr "Удалить шаблон параметра" +#~ msgid "Add parameter" +#~ msgstr "Add parameter" #: src/tables/part/PartParameterTemplateTable.tsx:141 #~ msgid "Add parameter template" @@ -10423,20 +10554,20 @@ msgstr "Общее количество" #: src/tables/part/PartPurchaseOrdersTable.tsx:123 msgid "Show pending orders" -msgstr "" +msgstr "Показать ожидающие заказы" #: src/tables/part/PartPurchaseOrdersTable.tsx:128 msgid "Show received items" -msgstr "" +msgstr "Показать полученные элементы" #: src/tables/part/PartSalesAllocationsTable.tsx:90 -#: src/tables/sales/SalesOrderShipmentTable.tsx:218 +#: src/tables/sales/SalesOrderShipmentTable.tsx:263 msgid "View Sales Order" msgstr "Показать заказ на продажу" #: src/tables/part/PartTable.tsx:99 msgid "Minimum stock" -msgstr "" +msgstr "Минимальный запас" #: src/tables/part/PartTable.tsx:198 msgid "Filter by part active status" @@ -10452,11 +10583,11 @@ msgstr "Показать сборные детали" #: src/tables/part/PartTable.tsx:215 msgid "BOM Valid" -msgstr "" +msgstr "Спецификация действительна" #: src/tables/part/PartTable.tsx:216 msgid "Filter by parts with a valid BOM" -msgstr "" +msgstr "Фильтр по деталям с действительной спецификацией" #: src/tables/part/PartTable.tsx:222 msgid "Include parts in subcategories" @@ -10472,7 +10603,7 @@ msgstr "Показать тестируемые детали" #: src/tables/part/PartTable.tsx:240 msgid "Filter by trackable attribute" -msgstr "" +msgstr "Фильтр по отслеживаемому атрибуту" #: src/tables/part/PartTable.tsx:246 msgid "Filter by parts which have units" @@ -10488,11 +10619,11 @@ msgstr "Показать детали с заданным внутренним #: src/tables/part/PartTable.tsx:257 msgid "Has Stock" -msgstr "" +msgstr "Есть запас" #: src/tables/part/PartTable.tsx:258 msgid "Filter by parts which have stock" -msgstr "" +msgstr "Фильтр по деталям, имеющим запас" #: src/tables/part/PartTable.tsx:264 msgid "Filter by parts which have low stock" @@ -10540,27 +10671,27 @@ msgstr "Показать детали, которые являются разн #: src/tables/part/PartTable.tsx:303 msgid "Is Revision" -msgstr "" +msgstr "Является ревизией" #: src/tables/part/PartTable.tsx:304 msgid "Filter by parts which are revisions" -msgstr "" +msgstr "Фильтр по деталям, которые являются ревизиями" #: src/tables/part/PartTable.tsx:308 msgid "Has Revisions" -msgstr "" +msgstr "Есть ревизии" #: src/tables/part/PartTable.tsx:309 msgid "Filter by parts which have revisions" -msgstr "" +msgstr "Фильтр по деталям, которые имеют ревизии" #: src/tables/part/PartTable.tsx:314 msgid "Filter by parts which have pricing information" -msgstr "" +msgstr "Фильтр по деталям, которые имеют ценовую информацию" #: src/tables/part/PartTable.tsx:320 msgid "Filter by parts which have available stock" -msgstr "" +msgstr "Фильтр по деталям, которые имеют доступный запас" #: src/tables/part/PartTable.tsx:322 #~ msgid "Has Stocktake" @@ -10576,7 +10707,7 @@ msgstr "Показать детали, на которые пользовате #: src/tables/part/PartTable.tsx:377 msgid "Import Parts" -msgstr "" +msgstr "Импортировать детали" #: src/tables/part/PartTable.tsx:464 #: src/tables/part/PartTable.tsx:512 @@ -10593,7 +10724,7 @@ msgstr "Закупить выбранные детали" #: src/tables/part/PartTable.tsx:534 msgid "Add Parts" -msgstr "Создать деталь" +msgstr "Добавить детали" #: src/tables/part/PartTable.tsx:540 msgid "Create Part" @@ -10609,16 +10740,16 @@ msgstr "Иморт деталей из файла" #: src/tables/part/PartTable.tsx:553 msgid "Import from Supplier" -msgstr "" +msgstr "Импорт от поставщика" #: src/tables/part/PartTable.tsx:555 msgid "Import parts from a supplier plugin" -msgstr "" +msgstr "Импортировать детали из плагина поставщика" #: src/tables/part/PartTestResultTable.tsx:103 #: src/tables/part/PartTestResultTable.tsx:181 -#: src/tables/part/PartTestResultTable.tsx:320 -#: src/tables/part/PartTestResultTable.tsx:334 +#: src/tables/part/PartTestResultTable.tsx:328 +#: src/tables/part/PartTestResultTable.tsx:342 #: src/tables/stock/StockItemTestResultTable.tsx:296 #: src/tables/stock/StockItemTestResultTable.tsx:368 #: src/tables/stock/StockItemTestResultTable.tsx:429 @@ -10632,20 +10763,20 @@ msgstr "Результат тестирования добавлен" #: src/tables/part/PartTestResultTable.tsx:142 msgid "Add Test Results" -msgstr "" +msgstr "Добавить результаты теста" #: src/tables/part/PartTestResultTable.tsx:152 msgid "Test results added" -msgstr "" +msgstr "Результаты теста добавлены" #: src/tables/part/PartTestResultTable.tsx:180 #: src/tables/stock/StockItemTestResultTable.tsx:197 msgid "No Result" msgstr "Нет результатов" -#: src/tables/part/PartTestResultTable.tsx:298 +#: src/tables/part/PartTestResultTable.tsx:306 msgid "Show build outputs currently in production" -msgstr "" +msgstr "Показать продукцию, находящуюся в производстве" #: src/tables/part/PartTestTemplateTable.tsx:56 msgid "Test is defined for a parent template part" @@ -10730,11 +10861,11 @@ msgstr "Шаблоны нельзя редактировать, поскольк #: src/tables/part/PartThumbTable.tsx:222 msgid "Select" -msgstr "" +msgstr "Выбрать" #: src/tables/part/PartVariantTable.tsx:16 msgid "Show active variants" -msgstr "" +msgstr "Показать активные варианты" #: src/tables/part/PartVariantTable.tsx:20 msgid "Template" @@ -10742,15 +10873,15 @@ msgstr "Шаблон" #: src/tables/part/PartVariantTable.tsx:21 msgid "Show template variants" -msgstr "" +msgstr "Показать шаблонные варианты" #: src/tables/part/PartVariantTable.tsx:26 msgid "Show virtual variants" -msgstr "" +msgstr "Показать виртуальные варианты" #: src/tables/part/PartVariantTable.tsx:31 msgid "Show trackable variants" -msgstr "" +msgstr "Показать отслеживаемые варианты" #: src/tables/part/RelatedPartTable.tsx:104 #: src/tables/part/RelatedPartTable.tsx:137 @@ -10784,7 +10915,7 @@ msgstr "Удалить список выбора" #: src/tables/plugin/PluginErrorTable.tsx:29 msgid "Stage" -msgstr "" +msgstr "Этап" #: src/tables/plugin/PluginListTable.tsx:43 msgid "Plugin is active" @@ -11013,36 +11144,45 @@ msgstr "Установлено" #~ msgid "Parameter updated" #~ msgstr "Parameter updated" -#: src/tables/purchasing/ManufacturerPartParameterTable.tsx:63 -#: src/tables/purchasing/ManufacturerPartParameterTable.tsx:112 -msgid "Add Parameter" -msgstr "Создать параметр" - #: src/tables/purchasing/ManufacturerPartParameterTable.tsx:73 #~ msgid "Parameter deleted" #~ msgstr "Parameter deleted" -#: src/tables/purchasing/ManufacturerPartParameterTable.tsx:74 -msgid "Edit Parameter" -msgstr "Редактировать параметр" - #: src/tables/purchasing/ManufacturerPartParameterTable.tsx:74 #~ msgid "Are you sure you want to delete this parameter?" #~ msgstr "Are you sure you want to delete this parameter?" -#: src/tables/purchasing/ManufacturerPartParameterTable.tsx:82 -msgid "Delete Parameter" -msgstr "Удалить параметр" - -#: src/tables/purchasing/ManufacturerPartTable.tsx:63 -#~ msgid "Create Manufacturer Part" -#~ msgstr "Create Manufacturer Part" - +#: src/tables/purchasing/ManufacturerPartParametricTable.tsx:34 #: src/tables/purchasing/ManufacturerPartTable.tsx:82 #: src/tables/purchasing/SupplierPartTable.tsx:99 msgid "MPN" msgstr "Артикул производителя" +#: src/tables/purchasing/ManufacturerPartParametricTable.tsx:44 +#: src/tables/purchasing/ManufacturerPartTable.tsx:134 +#: src/tables/purchasing/SupplierPartTable.tsx:220 +msgid "Active Part" +msgstr "Активная деталь" + +#: src/tables/purchasing/ManufacturerPartParametricTable.tsx:45 +#: src/tables/purchasing/ManufacturerPartTable.tsx:135 +msgid "Show manufacturer parts for active internal parts." +msgstr "Показать части производителя для активных внутренних деталей." + +#: src/tables/purchasing/ManufacturerPartParametricTable.tsx:50 +#: src/tables/purchasing/ManufacturerPartTable.tsx:140 +msgid "Active Manufacturer" +msgstr "Активный производитель" + +#: src/tables/purchasing/ManufacturerPartParametricTable.tsx:51 +#: src/tables/purchasing/ManufacturerPartTable.tsx:142 +msgid "Show manufacturer parts for active manufacturers." +msgstr "Показать части производителя для активных производителей." + +#: src/tables/purchasing/ManufacturerPartTable.tsx:63 +#~ msgid "Create Manufacturer Part" +#~ msgstr "Create Manufacturer Part" + #: src/tables/purchasing/ManufacturerPartTable.tsx:100 #~ msgid "Manufacturer part updated" #~ msgstr "Manufacturer part updated" @@ -11055,25 +11195,8 @@ msgstr "Артикул производителя" #~ msgid "Are you sure you want to remove this manufacturer part?" #~ msgstr "Are you sure you want to remove this manufacturer part?" -#: src/tables/purchasing/ManufacturerPartTable.tsx:134 -#: src/tables/purchasing/SupplierPartTable.tsx:220 -msgid "Active Part" -msgstr "Активная деталь" - -#: src/tables/purchasing/ManufacturerPartTable.tsx:135 -msgid "Show manufacturer parts for active internal parts." -msgstr "" - -#: src/tables/purchasing/ManufacturerPartTable.tsx:140 -msgid "Active Manufacturer" -msgstr "" - -#: src/tables/purchasing/ManufacturerPartTable.tsx:142 -msgid "Show manufacturer parts for active manufacturers." -msgstr "" - #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:115 -#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:397 +#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:399 msgid "Import Line Items" msgstr "Импортировать позиции" @@ -11099,11 +11222,11 @@ msgstr "Показать полученные позиции" #~ msgid "Add line item" #~ msgstr "Add line item" -#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:350 +#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:352 msgid "Receive line item" msgstr "Получить позицию" -#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:414 +#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:416 msgid "Receive items" msgstr "Получить позиции" @@ -11121,7 +11244,7 @@ msgstr "Создать деталь поставщика" #: src/tables/purchasing/SupplierPartTable.tsx:200 msgid "Import supplier part" -msgstr "" +msgstr "Импортировать деталь поставщика" #: src/tables/purchasing/SupplierPartTable.tsx:205 #~ msgid "Supplier part deleted" @@ -11153,15 +11276,15 @@ msgstr "Показать детали поставщиков в наличии" #: src/tables/sales/ReturnOrderLineItemTable.tsx:158 msgid "Received Date" -msgstr "" +msgstr "Дата получения" #: src/tables/sales/ReturnOrderLineItemTable.tsx:172 msgid "Show items which have been received" -msgstr "" +msgstr "Показать полученные элементы" #: src/tables/sales/ReturnOrderLineItemTable.tsx:177 msgid "Filter by line item status" -msgstr "" +msgstr "Фильтр по статусу строки" #: src/tables/sales/ReturnOrderLineItemTable.tsx:195 msgid "Receive selected items" @@ -11169,11 +11292,11 @@ msgstr "Получить выбранные элементы" #: src/tables/sales/ReturnOrderLineItemTable.tsx:230 msgid "Receive Item" -msgstr "" +msgstr "Принять элемент" #: src/tables/sales/SalesOrderAllocationTable.tsx:89 msgid "Show outstanding allocations" -msgstr "" +msgstr "Показать ожидающие распределения" #: src/tables/sales/SalesOrderAllocationTable.tsx:93 msgid "Assigned to Shipment" @@ -11181,7 +11304,7 @@ msgstr "Назначить на доставку" #: src/tables/sales/SalesOrderAllocationTable.tsx:94 msgid "Show allocations assigned to a shipment" -msgstr "" +msgstr "Показать распределения, назначенные отправке" #: src/tables/sales/SalesOrderAllocationTable.tsx:156 msgid "Available Quantity" @@ -11194,32 +11317,32 @@ msgstr "Зарезервированное количество" #: src/tables/sales/SalesOrderAllocationTable.tsx:177 #: src/tables/sales/SalesOrderAllocationTable.tsx:191 msgid "No shipment" -msgstr "" +msgstr "Нет отправки" #: src/tables/sales/SalesOrderAllocationTable.tsx:189 msgid "Not shipped" -msgstr "" +msgstr "Не отправлено" #: src/tables/sales/SalesOrderAllocationTable.tsx:211 -#: src/tables/sales/SalesOrderAllocationTable.tsx:229 +#: src/tables/sales/SalesOrderAllocationTable.tsx:235 msgid "Edit Allocation" msgstr "Редактировать резервирование" #: src/tables/sales/SalesOrderAllocationTable.tsx:218 #: src/tables/sales/SalesOrderAllocationTable.tsx:241 -msgid "Delete Allocation" -msgstr "Отменить резервирование" +#~ msgid "Delete Allocation" +#~ msgstr "Delete Allocation" -#: src/tables/sales/SalesOrderAllocationTable.tsx:252 -#: src/tables/sales/SalesOrderAllocationTable.tsx:253 +#: src/tables/sales/SalesOrderAllocationTable.tsx:261 +#: src/tables/sales/SalesOrderAllocationTable.tsx:262 msgid "View Shipment" msgstr "Показать доставку" -#: src/tables/sales/SalesOrderAllocationTable.tsx:308 +#: src/tables/sales/SalesOrderAllocationTable.tsx:317 msgid "Assign to Shipment" msgstr "Назначить на доставку" -#: src/tables/sales/SalesOrderAllocationTable.tsx:324 +#: src/tables/sales/SalesOrderAllocationTable.tsx:333 msgid "Assign to shipment" msgstr "Назначить на доставку" @@ -11237,59 +11360,59 @@ msgstr "Выделить серийные номера" #: src/tables/sales/SalesOrderLineItemTable.tsx:343 msgid "Show lines which are fully allocated" -msgstr "" +msgstr "Показать строки, которые полностью распределены" #: src/tables/sales/SalesOrderLineItemTable.tsx:348 msgid "Show lines which are completed" -msgstr "" +msgstr "Показать завершённые строки" #: src/tables/sales/SalesOrderLineItemTable.tsx:421 msgid "Allocate serials" -msgstr "" +msgstr "Распределить серийные номера" #: src/tables/sales/SalesOrderLineItemTable.tsx:439 msgid "Build stock" -msgstr "" +msgstr "Собрать запас" #: src/tables/sales/SalesOrderLineItemTable.tsx:457 msgid "Order stock" -msgstr "" +msgstr "Заказать запас" #: src/tables/sales/SalesOrderShipmentTable.tsx:51 #~ msgid "Delete Shipment" #~ msgstr "Delete Shipment" -#: src/tables/sales/SalesOrderShipmentTable.tsx:72 +#: src/tables/sales/SalesOrderShipmentTable.tsx:79 msgid "Create Shipment" -msgstr "" +msgstr "Создать отправку" -#: src/tables/sales/SalesOrderShipmentTable.tsx:143 +#: src/tables/sales/SalesOrderShipmentTable.tsx:164 msgid "Items" -msgstr "" +msgstr "Элементы" -#: src/tables/sales/SalesOrderShipmentTable.tsx:203 +#: src/tables/sales/SalesOrderShipmentTable.tsx:248 msgid "Edit shipment" -msgstr "" +msgstr "Редактировать отправку" -#: src/tables/sales/SalesOrderShipmentTable.tsx:211 +#: src/tables/sales/SalesOrderShipmentTable.tsx:256 msgid "Cancel shipment" -msgstr "" +msgstr "Отменить отправку" -#: src/tables/sales/SalesOrderShipmentTable.tsx:241 +#: src/tables/sales/SalesOrderShipmentTable.tsx:286 msgid "Add shipment" msgstr "Создать доставку" -#: src/tables/sales/SalesOrderShipmentTable.tsx:255 +#: src/tables/sales/SalesOrderShipmentTable.tsx:300 msgid "Show shipments which have been checked" -msgstr "" +msgstr "Показать отправки, которые были проверены" -#: src/tables/sales/SalesOrderShipmentTable.tsx:260 +#: src/tables/sales/SalesOrderShipmentTable.tsx:305 msgid "Show shipments which have been shipped" -msgstr "" +msgstr "Показать отправки, которые были отправлены" -#: src/tables/sales/SalesOrderShipmentTable.tsx:265 +#: src/tables/sales/SalesOrderShipmentTable.tsx:310 msgid "Show shipments which have been delivered" -msgstr "" +msgstr "Показать отправки, которые были доставлены" #: src/tables/settings/ApiTokenTable.tsx:30 #: src/tables/settings/ApiTokenTable.tsx:44 @@ -11312,7 +11435,7 @@ msgstr "Токен" #: src/tables/settings/ApiTokenTable.tsx:78 msgid "In Use" -msgstr "" +msgstr "В использовании" #: src/tables/settings/ApiTokenTable.tsx:87 msgid "Last Seen" @@ -11451,11 +11574,11 @@ msgstr "Электронное письмо успешно отправлено" #: src/tables/settings/EmailTable.tsx:71 msgid "Delete Email" -msgstr "" +msgstr "Удалить электронную почту" #: src/tables/settings/EmailTable.tsx:72 msgid "Email deleted successfully" -msgstr "" +msgstr "Электронное письмо успешно удалено" #: src/tables/settings/EmailTable.tsx:80 msgid "Subject" @@ -11516,15 +11639,15 @@ msgstr "Подробнее об ошибке" #: src/tables/settings/ExportSessionTable.tsx:28 msgid "Output Type" -msgstr "" +msgstr "Тип вывода" #: src/tables/settings/ExportSessionTable.tsx:38 msgid "Exported On" -msgstr "" +msgstr "Экспортировано" #: src/tables/settings/ExportSessionTable.tsx:59 msgid "Delete Output" -msgstr "" +msgstr "Удалить вывод" #: src/tables/settings/FailedTasksTable.tsx:32 #: src/tables/settings/PendingTasksTable.tsx:28 @@ -11621,11 +11744,6 @@ msgstr "Загружено" msgid "Imported Rows" msgstr "Импортированные строки" -#: src/tables/settings/ImportSessionTable.tsx:111 -#: src/tables/settings/TemplateTable.tsx:368 -msgid "Model Type" -msgstr "Тип модели" - #: src/tables/settings/ImportSessionTable.tsx:112 #: src/tables/settings/TemplateTable.tsx:369 msgid "Filter by target model type" @@ -11875,23 +11993,23 @@ msgstr "Ошибка обновления пользователя" #: src/tables/stock/InstalledItemsTable.tsx:38 #: src/tables/stock/InstalledItemsTable.tsx:90 msgid "Install Item" -msgstr "" +msgstr "Установить элемент" #: src/tables/stock/InstalledItemsTable.tsx:40 msgid "Item installed" -msgstr "" +msgstr "Элемент установлен" #: src/tables/stock/InstalledItemsTable.tsx:51 msgid "Uninstall Item" -msgstr "" +msgstr "Удалить элемент" #: src/tables/stock/InstalledItemsTable.tsx:53 msgid "Item uninstalled" -msgstr "" +msgstr "Элемент удалён" #: src/tables/stock/InstalledItemsTable.tsx:108 msgid "Uninstall stock item" -msgstr "" +msgstr "Удалить складской элемент" #: src/tables/stock/LocationTypesTable.tsx:44 #: src/tables/stock/LocationTypesTable.tsx:111 @@ -11932,15 +12050,15 @@ msgstr "Складская позиция израсходована в зака #: src/tables/stock/StockItemTable.tsx:141 msgid "This stock item is unavailable" -msgstr "" +msgstr "Этот складской элемент недоступен" #: src/tables/stock/StockItemTable.tsx:150 msgid "This stock item has expired" -msgstr "" +msgstr "Этот складской элемент просрочен" #: src/tables/stock/StockItemTable.tsx:154 msgid "This stock item is stale" -msgstr "" +msgstr "Этот складской элемент устарел" #: src/tables/stock/StockItemTable.tsx:166 msgid "This stock item is fully allocated" @@ -11952,7 +12070,7 @@ msgstr "Складская позиция частично зарезервир #: src/tables/stock/StockItemTable.tsx:201 msgid "This stock item has been depleted" -msgstr "" +msgstr "Этот складской элемент был израсходован" #: src/tables/stock/StockItemTable.tsx:301 #~ msgid "Show stock for assmebled parts" @@ -11964,7 +12082,7 @@ msgstr "Дата инвентаризации" #: src/tables/stock/StockItemTable.tsx:323 msgid "Show stock for active parts" -msgstr "" +msgstr "Показать запасы для активных деталей" #: src/tables/stock/StockItemTable.tsx:334 msgid "Show stock for assembled parts" @@ -11972,11 +12090,11 @@ msgstr "Показать запасы для собранных частей" #: src/tables/stock/StockItemTable.tsx:339 msgid "Show items which have been allocated" -msgstr "" +msgstr "Показать элементы, которые были распределены" #: src/tables/stock/StockItemTable.tsx:344 msgid "Show items which are available" -msgstr "" +msgstr "Показать доступные элементы" #: src/tables/stock/StockItemTable.tsx:348 #: src/tables/stock/StockLocationTable.tsx:38 @@ -11985,19 +12103,19 @@ msgstr "Включая вложенные склады" #: src/tables/stock/StockItemTable.tsx:349 msgid "Include stock in sublocations" -msgstr "" +msgstr "Включить запасы в подместоположениях" #: src/tables/stock/StockItemTable.tsx:353 msgid "Depleted" -msgstr "" +msgstr "Исчерпан" #: src/tables/stock/StockItemTable.tsx:354 msgid "Show depleted stock items" -msgstr "" +msgstr "Показать исчерпанные складские элементы" #: src/tables/stock/StockItemTable.tsx:360 msgid "Show items which are in production" -msgstr "" +msgstr "Показать элементы, которые в производстве" #: src/tables/stock/StockItemTable.tsx:362 #~ msgid "Include stock items for variant parts" @@ -12009,7 +12127,7 @@ msgstr "Показать элементы, которые были израсх #: src/tables/stock/StockItemTable.tsx:373 msgid "Show stock items which are installed in other items" -msgstr "" +msgstr "Показать складские элементы, установленные в другие элементы" #: src/tables/stock/StockItemTable.tsx:377 msgid "Sent to Customer" @@ -12021,7 +12139,7 @@ msgstr "Показать элементы, которые были отправ #: src/tables/stock/StockItemTable.tsx:389 msgid "Show tracked items" -msgstr "" +msgstr "Показать отслеживаемые элементы" #: src/tables/stock/StockItemTable.tsx:393 msgid "Has Purchase Price" @@ -12037,7 +12155,7 @@ msgstr "Показать элементы, у которых есть цена #: src/tables/stock/StockItemTable.tsx:399 msgid "Show items which have expired" -msgstr "" +msgstr "Показать просроченные элементы" #: src/tables/stock/StockItemTable.tsx:403 #~ msgid "Serial Number GTE" @@ -12045,7 +12163,7 @@ msgstr "" #: src/tables/stock/StockItemTable.tsx:405 msgid "Show items which are stale" -msgstr "" +msgstr "Показать устаревшие элементы" #: src/tables/stock/StockItemTable.tsx:410 msgid "Expired Before" @@ -12161,7 +12279,7 @@ msgstr "Тест" #: src/tables/stock/StockItemTestResultTable.tsx:180 msgid "Test result for installed stock item" -msgstr "" +msgstr "Результат теста для установленного складского элемента" #: src/tables/stock/StockItemTestResultTable.tsx:211 msgid "Attachment" @@ -12215,11 +12333,11 @@ msgstr "Показать результаты обязательных тест #: src/tables/stock/StockItemTestResultTable.tsx:409 msgid "Include Installed" -msgstr "" +msgstr "Включить установленные" #: src/tables/stock/StockItemTestResultTable.tsx:410 msgid "Show results for installed stock items" -msgstr "" +msgstr "Показать результаты для установленных складских элементов" #: src/tables/stock/StockItemTestResultTable.tsx:414 msgid "Passed" diff --git a/src/frontend/src/locales/sk/messages.po b/src/frontend/src/locales/sk/messages.po index b379efc864..30ad5c805c 100644 --- a/src/frontend/src/locales/sk/messages.po +++ b/src/frontend/src/locales/sk/messages.po @@ -8,7 +8,7 @@ msgstr "" "Language: sk\n" "Project-Id-Version: inventree\n" "Report-Msgid-Bugs-To: \n" -"PO-Revision-Date: 2025-11-19 19:39\n" +"PO-Revision-Date: 2025-12-07 07:36\n" "Last-Translator: \n" "Language-Team: Slovak\n" "Plural-Forms: nplurals=4; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 3;\n" @@ -30,7 +30,7 @@ msgid "Edit" msgstr "" #: lib/components/RowActions.tsx:56 -#: src/components/forms/ApiForm.tsx:735 +#: src/components/forms/ApiForm.tsx:754 #: src/components/items/ActionDropdown.tsx:257 #: src/components/items/RoleTable.tsx:155 #: src/hooks/UseForm.tsx:164 @@ -56,24 +56,24 @@ msgstr "" #: lib/components/RowActions.tsx:136 #: src/components/nav/NavigationDrawer.tsx:190 -#: src/forms/PurchaseOrderForms.tsx:802 +#: src/forms/PurchaseOrderForms.tsx:854 #: src/forms/StockForms.tsx:796 #: src/forms/StockForms.tsx:843 -#: src/forms/StockForms.tsx:889 -#: src/forms/StockForms.tsx:928 -#: src/forms/StockForms.tsx:964 -#: src/forms/StockForms.tsx:1050 +#: src/forms/StockForms.tsx:896 +#: src/forms/StockForms.tsx:942 +#: src/forms/StockForms.tsx:980 +#: src/forms/StockForms.tsx:1066 #: src/pages/Index/Settings/AccountSettings/MFASettings.tsx:962 msgid "Actions" msgstr "" #: lib/components/SearchInput.tsx:34 -#: src/components/forms/fields/RelatedModelField.tsx:408 +#: src/components/forms/fields/RelatedModelField.tsx:479 #: src/components/nav/Header.tsx:169 #: src/components/wizards/ImportPartWizard.tsx:200 #: src/components/wizards/ImportPartWizard.tsx:233 -#: src/pages/Index/Settings/UserSettings.tsx:74 -#: src/pages/part/PartDetail.tsx:1155 +#: src/pages/Index/Settings/UserSettings.tsx:75 +#: src/pages/part/PartDetail.tsx:1176 msgid "Search" msgstr "" @@ -95,7 +95,7 @@ msgstr "" msgid "No" msgstr "" -#: lib/enums/ModelInformation.tsx:28 +#: lib/enums/ModelInformation.tsx:29 #: src/components/wizards/OrderPartsWizard.tsx:279 #: src/forms/BuildForms.tsx:332 #: src/forms/BuildForms.tsx:407 @@ -103,208 +103,234 @@ msgstr "" #: src/forms/BuildForms.tsx:630 #: src/forms/BuildForms.tsx:793 #: src/forms/BuildForms.tsx:896 -#: src/forms/PurchaseOrderForms.tsx:798 +#: src/forms/PurchaseOrderForms.tsx:850 #: src/forms/ReturnOrderForms.tsx:242 -#: src/forms/SalesOrderForms.tsx:305 +#: src/forms/SalesOrderForms.tsx:384 #: src/forms/StockForms.tsx:360 #: src/forms/StockForms.tsx:791 #: src/forms/StockForms.tsx:838 -#: src/forms/StockForms.tsx:884 -#: src/forms/StockForms.tsx:923 -#: src/forms/StockForms.tsx:959 -#: src/forms/StockForms.tsx:1002 -#: src/forms/StockForms.tsx:1046 -#: src/forms/StockForms.tsx:1094 -#: src/forms/StockForms.tsx:1138 -#: src/pages/build/BuildDetail.tsx:200 -#: src/pages/part/PartDetail.tsx:1207 +#: src/forms/StockForms.tsx:891 +#: src/forms/StockForms.tsx:937 +#: src/forms/StockForms.tsx:975 +#: src/forms/StockForms.tsx:1018 +#: src/forms/StockForms.tsx:1062 +#: src/forms/StockForms.tsx:1110 +#: src/forms/StockForms.tsx:1154 +#: src/pages/build/BuildDetail.tsx:201 +#: src/pages/part/PartDetail.tsx:1228 #: src/tables/ColumnRenderers.tsx:91 +#: src/tables/part/PartTestResultTable.tsx:247 #: src/tables/part/RelatedPartTable.tsx:53 #: src/tables/stock/StockTrackingTable.tsx:87 msgid "Part" msgstr "" -#: lib/enums/ModelInformation.tsx:29 +#: lib/enums/ModelInformation.tsx:30 #: lib/enums/Roles.tsx:35 #: src/components/nav/NavigationDrawer.tsx:70 #: src/defaults/links.tsx:36 -#: src/pages/Index/Settings/SystemSettings.tsx:190 -#: src/pages/part/CategoryDetail.tsx:132 -#: src/pages/part/CategoryDetail.tsx:277 -#: src/pages/part/CategoryDetail.tsx:323 -#: src/pages/part/CategoryDetail.tsx:354 -#: src/pages/part/PartDetail.tsx:965 +#: src/pages/Index/Settings/SystemSettings.tsx:197 +#: src/pages/part/CategoryDetail.tsx:135 +#: src/pages/part/CategoryDetail.tsx:285 +#: src/pages/part/CategoryDetail.tsx:340 +#: src/pages/part/CategoryDetail.tsx:371 +#: src/pages/part/PartDetail.tsx:978 msgid "Parts" msgstr "" #: lib/enums/ModelInformation.tsx:37 #: src/pages/Index/Settings/AdminCenter/PartParameterPanel.tsx:13 -msgid "Part Parameter Template" -msgstr "" +#~ msgid "Part Parameter Template" +#~ msgstr "Part Parameter Template" #: lib/enums/ModelInformation.tsx:38 -msgid "Part Parameter Templates" +#~ msgid "Part Parameter Templates" +#~ msgstr "Part Parameter Templates" + +#: lib/enums/ModelInformation.tsx:39 +msgid "Parameter" +msgstr "" + +#: lib/enums/ModelInformation.tsx:40 +#: src/components/panels/ParametersPanel.tsx:19 +#: src/components/wizards/ImportPartWizard.tsx:807 +#: src/pages/Index/Settings/AdminCenter/Index.tsx:195 +#: src/pages/Index/Settings/SystemSettings.tsx:191 +#: src/pages/part/PartDetail.tsx:943 +msgid "Parameters" msgstr "" #: lib/enums/ModelInformation.tsx:45 -msgid "Part Test Template" +#: src/tables/part/PartCategoryTemplateTable.tsx:87 +msgid "Parameter Template" msgstr "" #: lib/enums/ModelInformation.tsx:46 -msgid "Part Test Templates" +#: src/pages/Index/Settings/AdminCenter/ParameterPanel.tsx:13 +msgid "Parameter Templates" msgstr "" #: lib/enums/ModelInformation.tsx:52 +msgid "Part Test Template" +msgstr "" + +#: lib/enums/ModelInformation.tsx:53 +msgid "Part Test Templates" +msgstr "" + +#: lib/enums/ModelInformation.tsx:59 #: src/components/wizards/OrderPartsWizard.tsx:290 -#: src/pages/company/SupplierPartDetail.tsx:413 +#: src/pages/company/SupplierPartDetail.tsx:418 #: src/pages/stock/StockDetail.tsx:289 -#: src/tables/build/BuildAllocatedStockTable.tsx:155 +#: src/tables/build/BuildAllocatedStockTable.tsx:152 #: src/tables/part/PartPurchaseOrdersTable.tsx:50 +#: src/tables/purchasing/SupplierPartParametricTable.tsx:29 #: src/tables/purchasing/SupplierPartTable.tsx:83 #: src/tables/stock/StockItemTable.tsx:247 msgid "Supplier Part" msgstr "" -#: lib/enums/ModelInformation.tsx:53 -#: src/pages/purchasing/PurchasingIndex.tsx:92 +#: lib/enums/ModelInformation.tsx:60 +#: src/pages/purchasing/PurchasingIndex.tsx:128 msgid "Supplier Parts" msgstr "" -#: lib/enums/ModelInformation.tsx:61 -#: src/pages/company/ManufacturerPartDetail.tsx:297 -#: src/pages/company/SupplierPartDetail.tsx:161 +#: lib/enums/ModelInformation.tsx:69 +#: src/pages/company/ManufacturerPartDetail.tsx:288 +#: src/pages/company/SupplierPartDetail.tsx:162 #: src/tables/part/PartPurchaseOrdersTable.tsx:56 #: src/tables/stock/StockItemTable.tsx:253 msgid "Manufacturer Part" msgstr "" -#: lib/enums/ModelInformation.tsx:62 -#: src/pages/purchasing/PurchasingIndex.tsx:109 +#: lib/enums/ModelInformation.tsx:70 +#: src/pages/purchasing/PurchasingIndex.tsx:177 msgid "Manufacturer Parts" msgstr "" -#: lib/enums/ModelInformation.tsx:70 -#: src/pages/part/CategoryDetail.tsx:354 +#: lib/enums/ModelInformation.tsx:79 +#: src/pages/part/CategoryDetail.tsx:371 #: src/tables/Filter.tsx:389 msgid "Part Category" msgstr "" -#: lib/enums/ModelInformation.tsx:71 +#: lib/enums/ModelInformation.tsx:80 #: lib/enums/Roles.tsx:37 -#: src/pages/part/CategoryDetail.tsx:271 -#: src/pages/part/CategoryDetail.tsx:345 -#: src/pages/part/PartDetail.tsx:1196 +#: src/pages/part/CategoryDetail.tsx:279 +#: src/pages/part/CategoryDetail.tsx:362 +#: src/pages/part/PartDetail.tsx:1217 msgid "Part Categories" msgstr "" -#: lib/enums/ModelInformation.tsx:79 +#: lib/enums/ModelInformation.tsx:88 #: src/forms/BuildForms.tsx:473 #: src/forms/BuildForms.tsx:633 #: src/forms/BuildForms.tsx:794 -#: src/forms/SalesOrderForms.tsx:307 +#: src/forms/SalesOrderForms.tsx:386 #: src/pages/stock/StockDetail.tsx:1005 -#: src/tables/part/PartTestResultTable.tsx:248 +#: src/tables/part/PartTestResultTable.tsx:256 #: src/tables/stock/StockTrackingTable.tsx:48 #: src/tables/stock/StockTrackingTable.tsx:55 msgid "Stock Item" msgstr "" -#: lib/enums/ModelInformation.tsx:80 +#: lib/enums/ModelInformation.tsx:89 #: lib/enums/Roles.tsx:45 -#: src/pages/company/CompanyDetail.tsx:210 -#: src/pages/part/CategoryDetail.tsx:291 +#: src/pages/company/CompanyDetail.tsx:211 +#: src/pages/part/CategoryDetail.tsx:314 #: src/pages/part/PartStockHistoryDetail.tsx:101 #: src/pages/stock/LocationDetail.tsx:121 #: src/pages/stock/LocationDetail.tsx:180 msgid "Stock Items" msgstr "" -#: lib/enums/ModelInformation.tsx:88 +#: lib/enums/ModelInformation.tsx:98 #: lib/enums/Roles.tsx:47 #: src/pages/stock/LocationDetail.tsx:420 msgid "Stock Location" msgstr "" -#: lib/enums/ModelInformation.tsx:89 +#: lib/enums/ModelInformation.tsx:99 #: src/pages/stock/LocationDetail.tsx:174 #: src/pages/stock/LocationDetail.tsx:412 #: src/pages/stock/StockDetail.tsx:996 msgid "Stock Locations" msgstr "" -#: lib/enums/ModelInformation.tsx:97 +#: lib/enums/ModelInformation.tsx:108 msgid "Stock Location Type" msgstr "" -#: lib/enums/ModelInformation.tsx:98 +#: lib/enums/ModelInformation.tsx:109 msgid "Stock Location Types" msgstr "" -#: lib/enums/ModelInformation.tsx:103 -#: src/pages/Index/Settings/SystemSettings.tsx:248 -#: src/pages/part/PartDetail.tsx:911 +#: lib/enums/ModelInformation.tsx:114 +#: src/pages/Index/Settings/SystemSettings.tsx:254 +#: src/pages/part/PartDetail.tsx:900 msgid "Stock History" msgstr "" -#: lib/enums/ModelInformation.tsx:104 +#: lib/enums/ModelInformation.tsx:115 msgid "Stock Histories" msgstr "" -#: lib/enums/ModelInformation.tsx:109 +#: lib/enums/ModelInformation.tsx:120 msgid "Build" msgstr "" -#: lib/enums/ModelInformation.tsx:110 +#: lib/enums/ModelInformation.tsx:121 msgid "Builds" msgstr "" -#: lib/enums/ModelInformation.tsx:118 +#: lib/enums/ModelInformation.tsx:130 msgid "Build Line" msgstr "" -#: lib/enums/ModelInformation.tsx:119 +#: lib/enums/ModelInformation.tsx:131 msgid "Build Lines" msgstr "" -#: lib/enums/ModelInformation.tsx:126 +#: lib/enums/ModelInformation.tsx:138 msgid "Build Item" msgstr "" -#: lib/enums/ModelInformation.tsx:127 +#: lib/enums/ModelInformation.tsx:139 msgid "Build Items" msgstr "" -#: lib/enums/ModelInformation.tsx:132 -#: src/pages/company/CompanyDetail.tsx:340 +#: lib/enums/ModelInformation.tsx:144 +#: src/pages/company/CompanyDetail.tsx:345 #: src/tables/company/CompanyTable.tsx:47 #: src/tables/company/ContactTable.tsx:67 +#: src/tables/company/ParametricCompanyTable.tsx:18 msgid "Company" msgstr "" -#: lib/enums/ModelInformation.tsx:133 +#: lib/enums/ModelInformation.tsx:145 msgid "Companies" msgstr "" -#: lib/enums/ModelInformation.tsx:140 -#: src/pages/build/BuildDetail.tsx:316 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:253 -#: src/pages/sales/ReturnOrderDetail.tsx:231 -#: src/pages/sales/SalesOrderDetail.tsx:224 +#: lib/enums/ModelInformation.tsx:152 +#: src/pages/build/BuildDetail.tsx:317 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:254 +#: src/pages/sales/ReturnOrderDetail.tsx:232 +#: src/pages/sales/SalesOrderDetail.tsx:225 #: src/tables/ColumnRenderers.tsx:362 #: src/tables/Filter.tsx:286 #: src/tables/TableHoverCard.tsx:101 msgid "Project Code" msgstr "" -#: lib/enums/ModelInformation.tsx:141 +#: lib/enums/ModelInformation.tsx:153 #: src/pages/Index/Settings/AdminCenter/Index.tsx:172 msgid "Project Codes" msgstr "" -#: lib/enums/ModelInformation.tsx:147 +#: lib/enums/ModelInformation.tsx:159 #: src/components/wizards/OrderPartsWizard.tsx:338 #: src/pages/part/pricing/PurchaseHistoryPanel.tsx:33 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:550 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:555 #: src/pages/stock/StockDetail.tsx:352 #: src/tables/part/PartPurchaseOrdersTable.tsx:32 #: src/tables/stock/StockItemTable.tsx:239 @@ -312,117 +338,117 @@ msgstr "" msgid "Purchase Order" msgstr "" -#: lib/enums/ModelInformation.tsx:148 +#: lib/enums/ModelInformation.tsx:160 #: lib/enums/Roles.tsx:39 #: src/defaults/actions.tsx:104 -#: src/pages/Index/Settings/SystemSettings.tsx:283 -#: src/pages/company/CompanyDetail.tsx:203 -#: src/pages/company/SupplierPartDetail.tsx:266 -#: src/pages/part/PartDetail.tsx:875 -#: src/pages/purchasing/PurchasingIndex.tsx:60 +#: src/pages/Index/Settings/SystemSettings.tsx:289 +#: src/pages/company/CompanyDetail.tsx:204 +#: src/pages/company/SupplierPartDetail.tsx:267 +#: src/pages/part/PartDetail.tsx:864 +#: src/pages/purchasing/PurchasingIndex.tsx:66 msgid "Purchase Orders" msgstr "" -#: lib/enums/ModelInformation.tsx:156 +#: lib/enums/ModelInformation.tsx:169 msgid "Purchase Order Line" msgstr "" -#: lib/enums/ModelInformation.tsx:157 +#: lib/enums/ModelInformation.tsx:170 msgid "Purchase Order Lines" msgstr "" -#: lib/enums/ModelInformation.tsx:162 -#: src/pages/build/BuildDetail.tsx:289 +#: lib/enums/ModelInformation.tsx:175 +#: src/pages/build/BuildDetail.tsx:290 #: src/pages/part/pricing/SaleHistoryPanel.tsx:24 -#: src/pages/sales/SalesOrderDetail.tsx:614 -#: src/pages/sales/SalesOrderShipmentDetail.tsx:105 -#: src/pages/sales/SalesOrderShipmentDetail.tsx:478 +#: src/pages/sales/SalesOrderDetail.tsx:619 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:103 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:446 #: src/pages/stock/StockDetail.tsx:361 #: src/tables/part/PartSalesAllocationsTable.tsx:41 #: src/tables/sales/SalesOrderAllocationTable.tsx:110 -#: src/tables/sales/SalesOrderShipmentTable.tsx:122 +#: src/tables/sales/SalesOrderShipmentTable.tsx:143 #: src/tables/stock/StockTrackingTable.tsx:131 msgid "Sales Order" msgstr "" -#: lib/enums/ModelInformation.tsx:163 +#: lib/enums/ModelInformation.tsx:176 #: lib/enums/Roles.tsx:43 #: src/defaults/actions.tsx:114 -#: src/pages/Index/Settings/SystemSettings.tsx:299 -#: src/pages/company/CompanyDetail.tsx:223 -#: src/pages/part/PartDetail.tsx:887 -#: src/pages/sales/SalesIndex.tsx:84 +#: src/pages/Index/Settings/SystemSettings.tsx:305 +#: src/pages/company/CompanyDetail.tsx:224 +#: src/pages/part/PartDetail.tsx:876 +#: src/pages/sales/SalesIndex.tsx:53 msgid "Sales Orders" msgstr "" -#: lib/enums/ModelInformation.tsx:171 -#: src/pages/sales/SalesOrderShipmentDetail.tsx:477 +#: lib/enums/ModelInformation.tsx:185 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:445 msgid "Sales Order Shipment" msgstr "" -#: lib/enums/ModelInformation.tsx:172 +#: lib/enums/ModelInformation.tsx:186 msgid "Sales Order Shipments" msgstr "" -#: lib/enums/ModelInformation.tsx:179 -#: src/pages/sales/ReturnOrderDetail.tsx:549 +#: lib/enums/ModelInformation.tsx:194 +#: src/pages/sales/ReturnOrderDetail.tsx:554 #: src/tables/stock/StockTrackingTable.tsx:142 msgid "Return Order" msgstr "" -#: lib/enums/ModelInformation.tsx:180 +#: lib/enums/ModelInformation.tsx:195 #: lib/enums/Roles.tsx:41 #: src/defaults/actions.tsx:125 -#: src/pages/Index/Settings/SystemSettings.tsx:316 -#: src/pages/company/CompanyDetail.tsx:230 -#: src/pages/part/PartDetail.tsx:894 -#: src/pages/sales/SalesIndex.tsx:117 +#: src/pages/Index/Settings/SystemSettings.tsx:322 +#: src/pages/company/CompanyDetail.tsx:231 +#: src/pages/part/PartDetail.tsx:883 +#: src/pages/sales/SalesIndex.tsx:99 msgid "Return Orders" msgstr "" -#: lib/enums/ModelInformation.tsx:188 +#: lib/enums/ModelInformation.tsx:204 msgid "Return Order Line Item" msgstr "" -#: lib/enums/ModelInformation.tsx:189 +#: lib/enums/ModelInformation.tsx:205 msgid "Return Order Line Items" msgstr "" -#: lib/enums/ModelInformation.tsx:194 +#: lib/enums/ModelInformation.tsx:210 #: src/tables/company/AddressTable.tsx:52 msgid "Address" msgstr "" -#: lib/enums/ModelInformation.tsx:195 -#: src/pages/company/CompanyDetail.tsx:264 +#: lib/enums/ModelInformation.tsx:211 +#: src/pages/company/CompanyDetail.tsx:265 msgid "Addresses" msgstr "" -#: lib/enums/ModelInformation.tsx:201 +#: lib/enums/ModelInformation.tsx:217 #: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:89 #: src/pages/core/UserDetail.tsx:135 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:229 -#: src/pages/sales/ReturnOrderDetail.tsx:207 -#: src/pages/sales/SalesOrderDetail.tsx:200 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:230 +#: src/pages/sales/ReturnOrderDetail.tsx:208 +#: src/pages/sales/SalesOrderDetail.tsx:201 msgid "Contact" msgstr "" -#: lib/enums/ModelInformation.tsx:202 -#: src/pages/company/CompanyDetail.tsx:258 +#: lib/enums/ModelInformation.tsx:218 +#: src/pages/company/CompanyDetail.tsx:259 #: src/pages/core/CoreIndex.tsx:33 msgid "Contacts" msgstr "" -#: lib/enums/ModelInformation.tsx:208 +#: lib/enums/ModelInformation.tsx:224 #: src/tables/ColumnRenderers.tsx:444 msgid "Owner" msgstr "" -#: lib/enums/ModelInformation.tsx:209 +#: lib/enums/ModelInformation.tsx:225 msgid "Owners" msgstr "" -#: lib/enums/ModelInformation.tsx:215 +#: lib/enums/ModelInformation.tsx:231 #: src/pages/Auth/ChangePassword.tsx:36 #: src/pages/core/UserDetail.tsx:220 #: src/tables/ColumnRenderers.tsx:395 @@ -437,7 +463,7 @@ msgstr "" msgid "User" msgstr "" -#: lib/enums/ModelInformation.tsx:216 +#: lib/enums/ModelInformation.tsx:232 #: src/components/nav/NavigationDrawer.tsx:105 #: src/pages/Index/Settings/AdminCenter/UserManagementPanel.tsx:15 #: src/pages/core/CoreIndex.tsx:21 @@ -445,12 +471,12 @@ msgstr "" msgid "Users" msgstr "" -#: lib/enums/ModelInformation.tsx:222 +#: lib/enums/ModelInformation.tsx:238 #: src/pages/core/GroupDetail.tsx:78 msgid "Group" msgstr "" -#: lib/enums/ModelInformation.tsx:223 +#: lib/enums/ModelInformation.tsx:239 #: src/components/nav/NavigationDrawer.tsx:111 #: src/pages/Index/Settings/AdminCenter/UserManagementPanel.tsx:23 #: src/pages/core/CoreIndex.tsx:27 @@ -460,64 +486,64 @@ msgstr "" msgid "Groups" msgstr "" -#: lib/enums/ModelInformation.tsx:230 +#: lib/enums/ModelInformation.tsx:246 msgid "Import Session" msgstr "" -#: lib/enums/ModelInformation.tsx:231 +#: lib/enums/ModelInformation.tsx:247 msgid "Import Sessions" msgstr "" -#: lib/enums/ModelInformation.tsx:238 +#: lib/enums/ModelInformation.tsx:254 msgid "Label Template" msgstr "" -#: lib/enums/ModelInformation.tsx:239 +#: lib/enums/ModelInformation.tsx:255 #: src/pages/Index/Settings/AdminCenter/Index.tsx:209 msgid "Label Templates" msgstr "" -#: lib/enums/ModelInformation.tsx:246 +#: lib/enums/ModelInformation.tsx:262 msgid "Report Template" msgstr "" -#: lib/enums/ModelInformation.tsx:247 +#: lib/enums/ModelInformation.tsx:263 #: src/pages/Index/Settings/AdminCenter/Index.tsx:215 msgid "Report Templates" msgstr "" -#: lib/enums/ModelInformation.tsx:254 +#: lib/enums/ModelInformation.tsx:270 #: src/components/plugins/PluginDrawer.tsx:145 msgid "Plugin Configuration" msgstr "" -#: lib/enums/ModelInformation.tsx:255 +#: lib/enums/ModelInformation.tsx:271 msgid "Plugin Configurations" msgstr "" -#: lib/enums/ModelInformation.tsx:262 +#: lib/enums/ModelInformation.tsx:278 msgid "Content Type" msgstr "" -#: lib/enums/ModelInformation.tsx:263 +#: lib/enums/ModelInformation.tsx:279 msgid "Content Types" msgstr "" -#: lib/enums/ModelInformation.tsx:268 +#: lib/enums/ModelInformation.tsx:284 msgid "Selection List" msgstr "" -#: lib/enums/ModelInformation.tsx:269 -#: src/pages/Index/Settings/AdminCenter/PartParameterPanel.tsx:21 +#: lib/enums/ModelInformation.tsx:285 +#: src/pages/Index/Settings/AdminCenter/ParameterPanel.tsx:21 msgid "Selection Lists" msgstr "" -#: lib/enums/ModelInformation.tsx:275 +#: lib/enums/ModelInformation.tsx:291 #: src/components/barcodes/BarcodeInput.tsx:114 #: src/components/dashboard/DashboardLayout.tsx:281 #: src/components/editors/NotesEditor.tsx:74 #: src/components/editors/TemplateEditor/TemplateEditor.tsx:158 -#: src/components/forms/fields/ApiFormField.tsx:273 +#: src/components/forms/fields/ApiFormField.tsx:237 #: src/components/forms/fields/TableField.tsx:45 #: src/components/importer/ImportDataSelector.tsx:192 #: src/components/importer/ImporterColumnSelector.tsx:234 @@ -528,7 +554,7 @@ msgstr "" #: src/components/nav/SearchDrawer.tsx:572 #: src/components/settings/SettingList.tsx:139 #: src/components/wizards/ImportPartWizard.tsx:574 -#: src/components/wizards/ImportPartWizard.tsx:718 +#: src/components/wizards/ImportPartWizard.tsx:719 #: src/forms/BomForms.tsx:69 #: src/functions/auth.tsx:643 #: src/pages/ErrorPage.tsx:11 @@ -547,9 +573,9 @@ msgstr "" msgid "Error" msgstr "" -#: lib/enums/ModelInformation.tsx:276 +#: lib/enums/ModelInformation.tsx:292 #: src/tables/machine/MachineListTable.tsx:402 -#: src/tables/machine/MachineTypeTable.tsx:299 +#: src/tables/machine/MachineTypeTable.tsx:297 msgid "Errors" msgstr "" @@ -559,10 +585,10 @@ msgstr "" #: lib/enums/Roles.tsx:33 #: src/defaults/actions.tsx:135 -#: src/pages/Index/Settings/SystemSettings.tsx:264 -#: src/pages/build/BuildIndex.tsx:75 -#: src/pages/part/PartDetail.tsx:904 -#: src/pages/sales/SalesOrderDetail.tsx:421 +#: src/pages/Index/Settings/SystemSettings.tsx:270 +#: src/pages/build/BuildIndex.tsx:67 +#: src/pages/part/PartDetail.tsx:893 +#: src/pages/sales/SalesOrderDetail.tsx:422 msgid "Build Orders" msgstr "" @@ -639,39 +665,39 @@ msgstr "" msgid "Enter barcode data" msgstr "" -#: src/components/barcodes/BarcodeScanDialog.tsx:49 -#: src/components/buttons/ScanButton.tsx:15 +#: src/components/barcodes/BarcodeScanDialog.tsx:56 +#: src/components/buttons/ScanButton.tsx:27 #: src/components/nav/NavigationDrawer.tsx:122 -#: src/forms/PurchaseOrderForms.tsx:457 -#: src/forms/PurchaseOrderForms.tsx:563 +#: src/forms/PurchaseOrderForms.tsx:509 +#: src/forms/PurchaseOrderForms.tsx:615 msgid "Scan Barcode" msgstr "" -#: src/components/barcodes/BarcodeScanDialog.tsx:105 +#: src/components/barcodes/BarcodeScanDialog.tsx:121 msgid "No matching item found" msgstr "" -#: src/components/barcodes/BarcodeScanDialog.tsx:134 +#: src/components/barcodes/BarcodeScanDialog.tsx:150 msgid "Barcode does not match the expected model type" msgstr "" -#: src/components/barcodes/BarcodeScanDialog.tsx:145 +#: src/components/barcodes/BarcodeScanDialog.tsx:161 #: src/components/editors/NotesEditor.tsx:84 #: src/components/editors/NotesEditor.tsx:118 -#: src/components/forms/ApiForm.tsx:465 +#: src/components/forms/ApiForm.tsx:484 #: src/components/wizards/ImportPartWizard.tsx:566 -#: src/components/wizards/ImportPartWizard.tsx:690 +#: src/components/wizards/ImportPartWizard.tsx:691 #: src/pages/Index/Settings/AdminCenter/CurrencyManagementPanel.tsx:45 #: src/tables/bom/BomTable.tsx:548 #: src/tables/settings/PendingTasksTable.tsx:68 msgid "Success" msgstr "" -#: src/components/barcodes/BarcodeScanDialog.tsx:151 +#: src/components/barcodes/BarcodeScanDialog.tsx:167 msgid "Failed to handle barcode" msgstr "" -#: src/components/barcodes/BarcodeScanDialog.tsx:167 +#: src/components/barcodes/BarcodeScanDialog.tsx:183 #: src/pages/Index/Scan.tsx:129 msgid "Failed to scan barcode" msgstr "" @@ -714,10 +740,10 @@ msgstr "" #: src/components/barcodes/QRCode.tsx:179 #: src/pages/part/PartDetail.tsx:521 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:222 -#: src/pages/sales/ReturnOrderDetail.tsx:188 -#: src/pages/sales/SalesOrderDetail.tsx:181 -#: src/pages/sales/SalesOrderShipmentDetail.tsx:122 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:223 +#: src/pages/sales/ReturnOrderDetail.tsx:189 +#: src/pages/sales/SalesOrderDetail.tsx:182 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:120 #: src/pages/stock/StockDetail.tsx:186 msgid "Link" msgstr "" @@ -728,7 +754,7 @@ msgstr "" #: src/components/barcodes/QRCode.tsx:205 #: src/components/items/ActionDropdown.tsx:192 -#: src/forms/PurchaseOrderForms.tsx:554 +#: src/forms/PurchaseOrderForms.tsx:606 msgid "Unlink Barcode" msgstr "" @@ -829,14 +855,14 @@ msgstr "" #~ msgid "Scan QR code" #~ msgstr "Scan QR code" -#: src/components/buttons/ScanButton.tsx:19 -msgid "Open Barcode Scanner" -msgstr "" - #: src/components/buttons/ScanButton.tsx:20 #~ msgid "Open QR code scanner" #~ msgstr "Open QR code scanner" +#: src/components/buttons/ScanButton.tsx:32 +msgid "Open Barcode Scanner" +msgstr "" + #: src/components/buttons/SpotlightButton.tsx:12 msgid "Open spotlight" msgstr "" @@ -1059,7 +1085,7 @@ msgid "Show the number of sales orders which are assigned to you" msgstr "" #: src/components/dashboard/DashboardWidgetLibrary.tsx:129 -#: src/pages/sales/SalesIndex.tsx:105 +#: src/pages/sales/SalesIndex.tsx:87 msgid "Pending Shipments" msgstr "" @@ -1210,12 +1236,18 @@ msgid "Remove the associated image from this item?" msgstr "" #: src/components/details/DetailsImage.tsx:83 -#: src/forms/StockForms.tsx:888 +#: src/forms/StockForms.tsx:895 #: src/pages/Index/Settings/AccountSettings/MFASettings.tsx:324 #: src/pages/Index/Settings/AccountSettings/MFASettings.tsx:415 #: src/pages/Index/Settings/AccountSettings/MFASettings.tsx:884 #: src/pages/Index/Settings/AccountSettings/MFASettings.tsx:903 #: src/pages/Index/Settings/AccountSettings/SecurityContent.tsx:254 +#: src/tables/build/BuildAllocatedStockTable.tsx:178 +#: src/tables/build/BuildAllocatedStockTable.tsx:258 +#: src/tables/build/BuildLineTable.tsx:111 +#: src/tables/build/BuildLineTable.tsx:665 +#: src/tables/sales/SalesOrderAllocationTable.tsx:224 +#: src/tables/sales/SalesOrderAllocationTable.tsx:247 msgid "Remove" msgstr "" @@ -1241,12 +1273,12 @@ msgid "Upload Error" msgstr "" #: src/components/details/DetailsImage.tsx:250 -#: src/components/forms/fields/TextField.tsx:65 +#: src/components/forms/fields/AutoFillRightSection.tsx:34 msgid "Clear" msgstr "" #: src/components/details/DetailsImage.tsx:256 -#: src/components/forms/ApiForm.tsx:677 +#: src/components/forms/ApiForm.tsx:696 #: src/contexts/ThemeContext.tsx:44 #: src/pages/Index/Settings/AccountSettings/MFASettings.tsx:149 #: src/pages/Index/Settings/AccountSettings/MFASettings.tsx:568 @@ -1499,8 +1531,8 @@ msgstr "" msgid "A server error occurred" msgstr "" -#: src/components/forms/ApiForm.tsx:103 -#: src/components/forms/ApiForm.tsx:594 +#: src/components/forms/ApiForm.tsx:107 +#: src/components/forms/ApiForm.tsx:613 msgid "Form Error" msgstr "" @@ -1508,11 +1540,11 @@ msgstr "" #~ msgid "Form Errors Exist" #~ msgstr "Form Errors Exist" -#: src/components/forms/ApiForm.tsx:604 +#: src/components/forms/ApiForm.tsx:623 msgid "Errors exist for one or more form fields" msgstr "" -#: src/components/forms/ApiForm.tsx:715 +#: src/components/forms/ApiForm.tsx:734 #: src/hooks/UseForm.tsx:133 #: src/tables/plugin/PluginListTable.tsx:204 msgid "Update" @@ -1698,15 +1730,14 @@ msgstr "" #: src/components/forms/InstanceOptions.tsx:124 #: src/components/plugins/PluginDrawer.tsx:68 #: src/pages/Index/Settings/AdminCenter/UnitManagementPanel.tsx:19 -#: src/pages/part/CategoryDetail.tsx:88 +#: src/pages/part/CategoryDetail.tsx:91 #: src/pages/part/PartDetail.tsx:446 #: src/pages/stock/LocationDetail.tsx:82 #: src/tables/machine/MachineTypeTable.tsx:67 -#: src/tables/machine/MachineTypeTable.tsx:151 -#: src/tables/machine/MachineTypeTable.tsx:254 -#: src/tables/machine/MachineTypeTable.tsx:357 +#: src/tables/machine/MachineTypeTable.tsx:149 +#: src/tables/machine/MachineTypeTable.tsx:252 +#: src/tables/machine/MachineTypeTable.tsx:355 #: src/tables/plugin/PluginErrorTable.tsx:33 -#: src/tables/purchasing/ManufacturerPartParameterTable.tsx:36 #: src/tables/settings/ApiTokenTable.tsx:57 #: src/tables/settings/GroupTable.tsx:95 #: src/tables/settings/GroupTable.tsx:148 @@ -1769,7 +1800,7 @@ msgstr "" #~ msgstr "State: <0>worker ({0}), <1>plugins{1}" #: src/components/forms/InstanceOptions.tsx:118 -#: src/pages/Index/Settings/SystemSettings.tsx:45 +#: src/pages/Index/Settings/SystemSettings.tsx:46 msgid "Server" msgstr "" @@ -1793,6 +1824,8 @@ msgid "Plugins" msgstr "" #: src/components/forms/InstanceOptions.tsx:143 +#: src/tables/general/ParameterTemplateTable.tsx:153 +#: src/tables/general/ParameterTemplateTable.tsx:188 #: src/tables/part/PartTestTemplateTable.tsx:117 #: src/tables/settings/TemplateTable.tsx:251 #: src/tables/settings/TemplateTable.tsx:362 @@ -1817,10 +1850,14 @@ msgstr "" msgid "Running" msgstr "" -#: src/components/forms/fields/ApiFormField.tsx:233 +#: src/components/forms/fields/ApiFormField.tsx:197 msgid "Select file to upload" msgstr "" +#: src/components/forms/fields/AutoFillRightSection.tsx:47 +msgid "Accept suggested value" +msgstr "" + #: src/components/forms/fields/DateField.tsx:76 msgid "Select date" msgstr "" @@ -1853,13 +1890,13 @@ msgstr "" msgid "{0} icons" msgstr "" -#: src/components/forms/fields/RelatedModelField.tsx:409 +#: src/components/forms/fields/RelatedModelField.tsx:480 #: src/components/modals/AboutInvenTreeModal.tsx:96 #: src/pages/Index/Settings/AccountSettings/SecurityContent.tsx:383 msgid "Loading" msgstr "" -#: src/components/forms/fields/RelatedModelField.tsx:411 +#: src/components/forms/fields/RelatedModelField.tsx:482 msgid "No results found" msgstr "" @@ -1875,10 +1912,6 @@ msgstr "" msgid "Add new row" msgstr "" -#: src/components/forms/fields/TextField.tsx:82 -msgid "Accept suggested value" -msgstr "" - #: src/components/images/DetailsImage.tsx:252 #~ msgid "Select image" #~ msgstr "Select image" @@ -2036,7 +2069,7 @@ msgstr "" #: src/components/importer/ImporterDrawer.tsx:109 #: src/components/modals/AboutInvenTreeModal.tsx:205 #: src/components/modals/ServerInfoModal.tsx:134 -#: src/components/wizards/ImportPartWizard.tsx:772 +#: src/components/wizards/ImportPartWizard.tsx:773 #: src/forms/BomForms.tsx:132 #: src/pages/Index/Settings/AccountSettings/MFASettings.tsx:685 msgid "Close" @@ -2199,7 +2232,7 @@ msgid "Change" msgstr "" #: src/components/items/RoleTable.tsx:150 -#: src/forms/StockForms.tsx:927 +#: src/forms/StockForms.tsx:941 #: src/tables/stock/StockItemTestResultTable.tsx:367 msgid "Add" msgstr "" @@ -2222,11 +2255,11 @@ msgstr "" #: src/components/items/TransferList.tsx:161 #: src/components/render/Stock.tsx:102 -#: src/pages/part/PartDetail.tsx:994 +#: src/pages/part/PartDetail.tsx:1009 #: src/pages/stock/StockDetail.tsx:265 #: src/pages/stock/StockDetail.tsx:942 -#: src/tables/build/BuildAllocatedStockTable.tsx:135 -#: src/tables/build/BuildLineTable.tsx:192 +#: src/tables/build/BuildAllocatedStockTable.tsx:132 +#: src/tables/build/BuildLineTable.tsx:193 #: src/tables/part/PartTable.tsx:137 #: src/tables/stock/StockItemTable.tsx:182 #: src/tables/stock/StockItemTable.tsx:343 @@ -2373,7 +2406,7 @@ msgid "Database" msgstr "" #: src/components/modals/ServerInfoModal.tsx:49 -#: src/components/nav/Alerts.tsx:118 +#: src/components/nav/Alerts.tsx:120 msgid "Debug Mode" msgstr "" @@ -2414,7 +2447,7 @@ msgid "Issues detected" msgstr "" #: src/components/modals/ServerInfoModal.tsx:102 -#: src/components/nav/Alerts.tsx:125 +#: src/components/nav/Alerts.tsx:127 msgid "Background Worker" msgstr "" @@ -2436,7 +2469,7 @@ msgstr "" #~ msgstr "Email settings not configured" #: src/components/modals/ServerInfoModal.tsx:120 -#: src/components/nav/Alerts.tsx:141 +#: src/components/nav/Alerts.tsx:143 msgid "Email settings not configured." msgstr "" @@ -2444,43 +2477,47 @@ msgstr "" msgid "Alerts" msgstr "" -#: src/components/nav/Alerts.tsx:120 +#: src/components/nav/Alerts.tsx:97 +msgid "No issues detected" +msgstr "" + +#: src/components/nav/Alerts.tsx:122 msgid "The server is running in debug mode." msgstr "" -#: src/components/nav/Alerts.tsx:127 +#: src/components/nav/Alerts.tsx:129 msgid "The background worker process is not running." msgstr "" -#: src/components/nav/Alerts.tsx:132 +#: src/components/nav/Alerts.tsx:134 msgid "Server Restart" msgstr "" -#: src/components/nav/Alerts.tsx:134 +#: src/components/nav/Alerts.tsx:136 msgid "The server requires a restart to apply changes." msgstr "" -#: src/components/nav/Alerts.tsx:139 +#: src/components/nav/Alerts.tsx:141 msgid "Email settings" msgstr "" -#: src/components/nav/Alerts.tsx:146 +#: src/components/nav/Alerts.tsx:148 msgid "Database Migrations" msgstr "" -#: src/components/nav/Alerts.tsx:148 +#: src/components/nav/Alerts.tsx:150 msgid "There are pending database migrations." msgstr "" -#: src/components/nav/Alerts.tsx:163 +#: src/components/nav/Alerts.tsx:165 msgid "Learn more about {code}" msgstr "" #: src/components/nav/Header.tsx:188 #: src/components/nav/NavigationDrawer.tsx:134 #: src/components/nav/NotificationDrawer.tsx:181 -#: src/pages/Index/Settings/SystemSettings.tsx:121 -#: src/pages/Index/Settings/UserSettings.tsx:106 +#: src/pages/Index/Settings/SystemSettings.tsx:122 +#: src/pages/Index/Settings/UserSettings.tsx:107 #: src/pages/Notifications.tsx:45 #: src/pages/Notifications.tsx:130 msgid "Notifications" @@ -2511,8 +2548,8 @@ msgstr "" #: src/components/nav/NavigationDrawer.tsx:140 #: src/components/nav/SettingsHeader.tsx:40 #: src/defaults/actions.tsx:92 -#: src/pages/Index/Settings/UserSettings.tsx:141 -#: src/pages/Index/Settings/UserSettings.tsx:145 +#: src/pages/Index/Settings/UserSettings.tsx:142 +#: src/pages/Index/Settings/UserSettings.tsx:146 msgid "User Settings" msgstr "" @@ -2529,8 +2566,8 @@ msgstr "" #: src/components/nav/NavigationDrawer.tsx:146 #: src/components/nav/SettingsHeader.tsx:41 #: src/defaults/actions.tsx:144 -#: src/pages/Index/Settings/SystemSettings.tsx:348 -#: src/pages/Index/Settings/SystemSettings.tsx:353 +#: src/pages/Index/Settings/SystemSettings.tsx:354 +#: src/pages/Index/Settings/SystemSettings.tsx:359 msgid "System Settings" msgstr "" @@ -2577,11 +2614,11 @@ msgstr "" #: src/components/nav/NavigationDrawer.tsx:77 #: src/components/render/Part.tsx:36 -#: src/components/wizards/ImportPartWizard.tsx:807 +#: src/components/wizards/ImportPartWizard.tsx:808 #: src/defaults/links.tsx:42 #: src/forms/StockForms.tsx:794 -#: src/pages/Index/Settings/SystemSettings.tsx:224 -#: src/pages/part/PartDetail.tsx:804 +#: src/pages/Index/Settings/SystemSettings.tsx:230 +#: src/pages/part/PartDetail.tsx:793 #: src/pages/stock/LocationDetail.tsx:390 #: src/pages/stock/LocationDetail.tsx:420 #: src/pages/stock/StockDetail.tsx:642 @@ -2591,29 +2628,29 @@ msgstr "" #: src/components/nav/NavigationDrawer.tsx:84 #: src/defaults/links.tsx:48 -#: src/pages/build/BuildDetail.tsx:748 -#: src/pages/build/BuildIndex.tsx:102 +#: src/pages/build/BuildDetail.tsx:753 +#: src/pages/build/BuildIndex.tsx:101 msgid "Manufacturing" msgstr "" #: src/components/nav/NavigationDrawer.tsx:91 #: src/defaults/links.tsx:54 #: src/pages/company/ManufacturerDetail.tsx:9 -#: src/pages/company/ManufacturerPartDetail.tsx:276 +#: src/pages/company/ManufacturerPartDetail.tsx:267 #: src/pages/company/SupplierDetail.tsx:9 -#: src/pages/company/SupplierPartDetail.tsx:360 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:553 -#: src/pages/purchasing/PurchasingIndex.tsx:122 +#: src/pages/company/SupplierPartDetail.tsx:365 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:558 +#: src/pages/purchasing/PurchasingIndex.tsx:212 msgid "Purchasing" msgstr "" #: src/components/nav/NavigationDrawer.tsx:98 #: src/defaults/links.tsx:60 #: src/pages/company/CustomerDetail.tsx:9 -#: src/pages/sales/ReturnOrderDetail.tsx:554 -#: src/pages/sales/SalesIndex.tsx:153 -#: src/pages/sales/SalesOrderDetail.tsx:619 -#: src/pages/sales/SalesOrderShipmentDetail.tsx:480 +#: src/pages/sales/ReturnOrderDetail.tsx:559 +#: src/pages/sales/SalesIndex.tsx:168 +#: src/pages/sales/SalesOrderDetail.tsx:624 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:448 msgid "Sales" msgstr "" @@ -2667,21 +2704,21 @@ msgid "Remove search group" msgstr "" #: src/components/nav/SearchDrawer.tsx:288 -#: src/pages/company/ManufacturerPartDetail.tsx:192 -#: src/pages/part/PartDetail.tsx:862 +#: src/pages/company/ManufacturerPartDetail.tsx:179 +#: src/pages/part/PartDetail.tsx:851 #: src/pages/part/PartSupplierDetail.tsx:15 -#: src/pages/purchasing/PurchasingIndex.tsx:81 +#: src/pages/purchasing/PurchasingIndex.tsx:100 msgid "Suppliers" msgstr "" #: src/components/nav/SearchDrawer.tsx:298 #: src/pages/part/PartSupplierDetail.tsx:23 -#: src/pages/purchasing/PurchasingIndex.tsx:98 +#: src/pages/purchasing/PurchasingIndex.tsx:149 msgid "Manufacturers" msgstr "" #: src/components/nav/SearchDrawer.tsx:308 -#: src/pages/sales/SalesIndex.tsx:138 +#: src/pages/sales/SalesIndex.tsx:133 msgid "Customers" msgstr "" @@ -2772,21 +2809,21 @@ msgstr "" #: src/components/plugins/PluginDrawer.tsx:73 #: src/forms/selectionListFields.tsx:102 -#: src/pages/build/BuildDetail.tsx:250 -#: src/pages/company/CompanyDetail.tsx:93 -#: src/pages/company/ManufacturerPartDetail.tsx:93 -#: src/pages/company/ManufacturerPartDetail.tsx:120 -#: src/pages/company/SupplierPartDetail.tsx:145 -#: src/pages/part/CategoryDetail.tsx:108 +#: src/pages/build/BuildDetail.tsx:251 +#: src/pages/company/CompanyDetail.tsx:94 +#: src/pages/company/ManufacturerPartDetail.tsx:92 +#: src/pages/company/ManufacturerPartDetail.tsx:119 +#: src/pages/company/SupplierPartDetail.tsx:146 +#: src/pages/part/CategoryDetail.tsx:111 #: src/pages/part/PartDetail.tsx:460 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:162 -#: src/pages/sales/ReturnOrderDetail.tsx:129 -#: src/pages/sales/SalesOrderDetail.tsx:119 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:163 +#: src/pages/sales/ReturnOrderDetail.tsx:130 +#: src/pages/sales/SalesOrderDetail.tsx:120 #: src/pages/stock/LocationDetail.tsx:102 #: src/tables/ColumnRenderers.tsx:278 -#: src/tables/build/BuildAllocatedStockTable.tsx:91 -#: src/tables/machine/MachineTypeTable.tsx:161 -#: src/tables/machine/MachineTypeTable.tsx:257 +#: src/tables/build/BuildAllocatedStockTable.tsx:88 +#: src/tables/machine/MachineTypeTable.tsx:159 +#: src/tables/machine/MachineTypeTable.tsx:255 #: src/tables/plugin/PluginListTable.tsx:110 msgid "Description" msgstr "" @@ -2814,7 +2851,7 @@ msgstr "" #: src/tables/company/CompanyTable.tsx:91 #: src/tables/machine/MachineListTable.tsx:384 #: src/tables/machine/MachineListTable.tsx:799 -#: src/tables/part/ParametricPartTable.tsx:354 +#: src/tables/part/ParametricPartTable.tsx:19 #: src/tables/part/PartTable.tsx:197 #: src/tables/part/PartVariantTable.tsx:15 #: src/tables/plugin/PluginListTable.tsx:96 @@ -2836,8 +2873,8 @@ msgid "Installation Path" msgstr "" #: src/components/plugins/PluginDrawer.tsx:116 -#: src/tables/machine/MachineTypeTable.tsx:184 -#: src/tables/machine/MachineTypeTable.tsx:293 +#: src/tables/machine/MachineTypeTable.tsx:182 +#: src/tables/machine/MachineTypeTable.tsx:291 #: src/tables/plugin/PluginListTable.tsx:101 #: src/tables/plugin/PluginListTable.tsx:417 msgid "Builtin" @@ -2849,8 +2886,8 @@ msgstr "" #: src/components/plugins/PluginDrawer.tsx:133 #: src/pages/Index/Settings/AdminCenter/PluginManagementPanel.tsx:55 -#: src/pages/Index/Settings/SystemSettings.tsx:331 -#: src/pages/Index/Settings/UserSettings.tsx:128 +#: src/pages/Index/Settings/SystemSettings.tsx:337 +#: src/pages/Index/Settings/UserSettings.tsx:129 msgid "Plugin Settings" msgstr "" @@ -2911,7 +2948,7 @@ msgstr "" #~ msgid "Unknown model: {model}" #~ msgstr "Unknown model: {model}" -#: src/components/render/Instance.tsx:249 +#: src/components/render/Instance.tsx:247 msgid "Unknown model: {model_name}" msgstr "" @@ -2939,10 +2976,10 @@ msgstr "" #: src/components/render/Part.tsx:28 #: src/components/render/Plugin.tsx:17 #: src/components/render/User.tsx:37 -#: src/pages/company/CompanyDetail.tsx:323 -#: src/pages/company/SupplierPartDetail.tsx:373 +#: src/pages/company/CompanyDetail.tsx:328 +#: src/pages/company/SupplierPartDetail.tsx:378 #: src/pages/core/UserDetail.tsx:211 -#: src/pages/part/PartDetail.tsx:1027 +#: src/pages/part/PartDetail.tsx:1048 #: src/tables/ColumnRenderers.tsx:410 msgid "Inactive" msgstr "" @@ -2962,11 +2999,11 @@ msgstr "" #: src/components/render/Part.tsx:47 #: src/components/wizards/OrderPartsWizard.tsx:135 -#: src/pages/company/SupplierPartDetail.tsx:197 -#: src/pages/company/SupplierPartDetail.tsx:394 -#: src/pages/part/PartDetail.tsx:1015 +#: src/pages/company/SupplierPartDetail.tsx:198 +#: src/pages/company/SupplierPartDetail.tsx:399 +#: src/pages/part/PartDetail.tsx:1030 #: src/tables/bom/BomTable.tsx:444 -#: src/tables/build/BuildLineTable.tsx:222 +#: src/tables/build/BuildLineTable.tsx:223 #: src/tables/part/PartTable.tsx:108 msgid "On Order" msgstr "" @@ -2974,9 +3011,9 @@ msgstr "" #: src/components/render/Part.tsx:55 #: src/components/wizards/OrderPartsWizard.tsx:141 #: src/pages/part/PartDetail.tsx:587 -#: src/pages/part/PartDetail.tsx:1021 +#: src/pages/part/PartDetail.tsx:1036 #: src/pages/stock/StockDetail.tsx:925 -#: src/tables/part/PartTestResultTable.tsx:297 +#: src/tables/part/PartTestResultTable.tsx:305 #: src/tables/stock/StockItemTable.tsx:359 msgid "In Production" msgstr "" @@ -2987,7 +3024,7 @@ msgid "Details" msgstr "" #: src/components/render/Part.tsx:112 -#: src/components/wizards/ImportPartWizard.tsx:806 +#: src/components/wizards/ImportPartWizard.tsx:807 #: src/pages/part/PartDetail.tsx:487 #: src/tables/ColumnRenderers.tsx:233 #: src/tables/ColumnRenderers.tsx:242 @@ -3000,16 +3037,16 @@ msgstr "" #: src/components/render/Stock.tsx:114 #: src/components/render/Stock.tsx:132 #: src/forms/BuildForms.tsx:795 -#: src/forms/PurchaseOrderForms.tsx:595 +#: src/forms/PurchaseOrderForms.tsx:647 #: src/forms/StockForms.tsx:792 #: src/forms/StockForms.tsx:839 -#: src/forms/StockForms.tsx:885 -#: src/forms/StockForms.tsx:924 -#: src/forms/StockForms.tsx:960 -#: src/forms/StockForms.tsx:1003 -#: src/forms/StockForms.tsx:1047 -#: src/forms/StockForms.tsx:1095 -#: src/forms/StockForms.tsx:1139 +#: src/forms/StockForms.tsx:892 +#: src/forms/StockForms.tsx:938 +#: src/forms/StockForms.tsx:976 +#: src/forms/StockForms.tsx:1019 +#: src/forms/StockForms.tsx:1063 +#: src/forms/StockForms.tsx:1111 +#: src/forms/StockForms.tsx:1155 #: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:88 #: src/pages/core/UserDetail.tsx:158 #: src/pages/stock/StockDetail.tsx:298 @@ -3023,7 +3060,7 @@ msgstr "" #: src/components/render/Stock.tsx:99 #: src/pages/stock/StockDetail.tsx:198 #: src/pages/stock/StockDetail.tsx:930 -#: src/tables/build/BuildAllocatedStockTable.tsx:121 +#: src/tables/build/BuildAllocatedStockTable.tsx:118 #: src/tables/build/BuildOutputTable.tsx:107 #: src/tables/sales/SalesOrderAllocationTable.tsx:142 msgid "Serial Number" @@ -3034,9 +3071,9 @@ msgstr "" #: src/forms/BuildForms.tsx:240 #: src/forms/BuildForms.tsx:634 #: src/forms/BuildForms.tsx:797 -#: src/forms/PurchaseOrderForms.tsx:801 +#: src/forms/PurchaseOrderForms.tsx:853 #: src/forms/ReturnOrderForms.tsx:243 -#: src/forms/SalesOrderForms.tsx:308 +#: src/forms/SalesOrderForms.tsx:387 #: src/forms/StockForms.tsx:841 #: src/pages/part/PartStockHistoryDetail.tsx:56 #: src/pages/part/PartStockHistoryDetail.tsx:210 @@ -3046,9 +3083,9 @@ msgstr "" #: src/pages/part/pricing/PriceBreakPanel.tsx:172 #: src/pages/stock/StockDetail.tsx:258 #: src/pages/stock/StockDetail.tsx:936 -#: src/tables/build/BuildLineTable.tsx:86 +#: src/tables/build/BuildLineTable.tsx:83 #: src/tables/part/PartPurchaseOrdersTable.tsx:94 -#: src/tables/part/PartTestResultTable.tsx:269 +#: src/tables/part/PartTestResultTable.tsx:277 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:175 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:206 #: src/tables/purchasing/SupplierPriceBreakTable.tsx:69 @@ -3063,14 +3100,14 @@ msgstr "" #: src/forms/BuildForms.tsx:474 #: src/forms/StockForms.tsx:793 #: src/forms/StockForms.tsx:840 -#: src/forms/StockForms.tsx:886 -#: src/forms/StockForms.tsx:925 -#: src/forms/StockForms.tsx:961 -#: src/forms/StockForms.tsx:1004 -#: src/forms/StockForms.tsx:1048 -#: src/forms/StockForms.tsx:1096 -#: src/forms/StockForms.tsx:1140 -#: src/tables/build/BuildLineTable.tsx:96 +#: src/forms/StockForms.tsx:893 +#: src/forms/StockForms.tsx:939 +#: src/forms/StockForms.tsx:977 +#: src/forms/StockForms.tsx:1020 +#: src/forms/StockForms.tsx:1064 +#: src/forms/StockForms.tsx:1112 +#: src/forms/StockForms.tsx:1156 +#: src/tables/build/BuildLineTable.tsx:93 msgid "Batch" msgstr "" @@ -3306,10 +3343,6 @@ msgstr "" #~ msgid "Part category updated" #~ msgstr "Part category updated" -#: src/components/tables/part/PartParameterTable.tsx:41 -#~ msgid "Parameter" -#~ msgstr "Parameter" - #: src/components/tables/part/PartParameterTable.tsx:114 #~ msgid "Part parameter updated" #~ msgstr "Part parameter updated" @@ -3571,15 +3604,16 @@ msgid "Already Imported" msgstr "" #: src/components/wizards/ImportPartWizard.tsx:205 -#: src/pages/company/CompanyDetail.tsx:136 +#: src/pages/company/CompanyDetail.tsx:137 #: src/pages/company/SupplierDetail.tsx:8 -#: src/pages/company/SupplierPartDetail.tsx:130 -#: src/pages/company/SupplierPartDetail.tsx:235 -#: src/pages/company/SupplierPartDetail.tsx:364 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:156 +#: src/pages/company/SupplierPartDetail.tsx:131 +#: src/pages/company/SupplierPartDetail.tsx:236 +#: src/pages/company/SupplierPartDetail.tsx:369 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:157 #: src/tables/Filter.tsx:360 #: src/tables/company/CompanyTable.tsx:96 #: src/tables/part/PartPurchaseOrdersTable.tsx:43 +#: src/tables/purchasing/PurchaseOrderParametricTable.tsx:34 #: src/tables/purchasing/PurchaseOrderTable.tsx:109 #: src/tables/purchasing/SupplierPriceBreakTable.tsx:40 msgid "Supplier" @@ -3648,7 +3682,7 @@ msgid "Next" msgstr "" #: src/components/wizards/ImportPartWizard.tsx:540 -#: src/pages/part/PartDetail.tsx:1046 +#: src/pages/part/PartDetail.tsx:1067 #: src/tables/part/PartTable.tsx:408 msgid "Edit Part" msgstr "" @@ -3669,28 +3703,28 @@ msgstr "" msgid "Import" msgstr "" -#: src/components/wizards/ImportPartWizard.tsx:691 +#: src/components/wizards/ImportPartWizard.tsx:692 msgid "Parameters created successfully!" msgstr "" -#: src/components/wizards/ImportPartWizard.tsx:719 +#: src/components/wizards/ImportPartWizard.tsx:720 msgid "Failed to create parameters, please fix the errors and try again" msgstr "" #. placeholder {0}: supplierPart?.supplier -#: src/components/wizards/ImportPartWizard.tsx:739 +#: src/components/wizards/ImportPartWizard.tsx:740 msgid "Part imported successfully from supplier {0}." msgstr "" -#: src/components/wizards/ImportPartWizard.tsx:752 +#: src/components/wizards/ImportPartWizard.tsx:753 msgid "Open Part" msgstr "" -#: src/components/wizards/ImportPartWizard.tsx:759 +#: src/components/wizards/ImportPartWizard.tsx:760 msgid "Open Supplier Part" msgstr "" -#: src/components/wizards/ImportPartWizard.tsx:766 +#: src/components/wizards/ImportPartWizard.tsx:767 msgid "Open Manufacturer Part" msgstr "" @@ -3699,25 +3733,19 @@ msgstr "" #~ msgid "Import Part" #~ msgstr "Import Part" -#: src/components/wizards/ImportPartWizard.tsx:802 +#: src/components/wizards/ImportPartWizard.tsx:803 msgid "Import Supplier Part" msgstr "" -#: src/components/wizards/ImportPartWizard.tsx:804 +#: src/components/wizards/ImportPartWizard.tsx:805 msgid "Search Supplier Part" msgstr "" -#: src/components/wizards/ImportPartWizard.tsx:806 -#: src/pages/company/ManufacturerPartDetail.tsx:166 -#: src/pages/part/PartDetail.tsx:793 -msgid "Parameters" -msgstr "" - -#: src/components/wizards/ImportPartWizard.tsx:806 +#: src/components/wizards/ImportPartWizard.tsx:807 msgid "Confirm import" msgstr "" -#: src/components/wizards/ImportPartWizard.tsx:808 +#: src/components/wizards/ImportPartWizard.tsx:809 msgid "Done" msgstr "" @@ -3738,24 +3766,24 @@ msgid "Sales Requirements" msgstr "" #: src/components/wizards/OrderPartsWizard.tsx:129 -#: src/forms/StockForms.tsx:887 -#: src/forms/StockForms.tsx:926 -#: src/forms/StockForms.tsx:962 -#: src/forms/StockForms.tsx:1005 -#: src/forms/StockForms.tsx:1049 -#: src/forms/StockForms.tsx:1097 -#: src/forms/StockForms.tsx:1141 -#: src/pages/company/SupplierPartDetail.tsx:190 -#: src/pages/company/SupplierPartDetail.tsx:378 +#: src/forms/StockForms.tsx:894 +#: src/forms/StockForms.tsx:940 +#: src/forms/StockForms.tsx:978 +#: src/forms/StockForms.tsx:1021 +#: src/forms/StockForms.tsx:1065 +#: src/forms/StockForms.tsx:1113 +#: src/forms/StockForms.tsx:1157 +#: src/pages/company/SupplierPartDetail.tsx:191 +#: src/pages/company/SupplierPartDetail.tsx:383 #: src/pages/part/PartDetail.tsx:534 -#: src/pages/part/PartDetail.tsx:984 +#: src/pages/part/PartDetail.tsx:999 #: src/tables/Filter.tsx:92 #: src/tables/purchasing/SupplierPartTable.tsx:230 msgid "In Stock" msgstr "" #: src/components/wizards/OrderPartsWizard.tsx:146 -#: src/tables/build/BuildLineTable.tsx:404 +#: src/tables/build/BuildLineTable.tsx:405 msgid "Required Quantity" msgstr "" @@ -3847,7 +3875,7 @@ msgid "Please correct the errors in the selected parts" msgstr "" #: src/components/wizards/OrderPartsWizard.tsx:587 -#: src/tables/build/BuildLineTable.tsx:815 +#: src/tables/build/BuildLineTable.tsx:822 #: src/tables/part/PartTable.tsx:522 #: src/tables/sales/SalesOrderLineItemTable.tsx:370 msgid "Order Parts" @@ -4349,9 +4377,9 @@ msgstr "" #: src/forms/BuildForms.tsx:333 #: src/forms/BuildForms.tsx:408 #: src/forms/BuildForms.tsx:685 -#: src/tables/build/BuildAllocatedStockTable.tsx:150 +#: src/tables/build/BuildAllocatedStockTable.tsx:147 #: src/tables/build/BuildOutputTable.tsx:582 -#: src/tables/part/PartTestResultTable.tsx:272 +#: src/tables/part/PartTestResultTable.tsx:280 msgid "Build Output" msgstr "" @@ -4362,22 +4390,22 @@ msgstr "" #: src/forms/BuildForms.tsx:336 #: src/forms/BuildForms.tsx:411 #: src/forms/BuildForms.tsx:475 -#: src/forms/PurchaseOrderForms.tsx:717 +#: src/forms/PurchaseOrderForms.tsx:769 #: src/forms/ReturnOrderForms.tsx:197 #: src/forms/ReturnOrderForms.tsx:244 #: src/forms/StockForms.tsx:712 #: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:87 -#: src/pages/build/BuildDetail.tsx:222 +#: src/pages/build/BuildDetail.tsx:223 #: src/pages/core/UserDetail.tsx:151 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:168 -#: src/pages/sales/ReturnOrderDetail.tsx:135 -#: src/pages/sales/SalesOrderDetail.tsx:125 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:169 +#: src/pages/sales/ReturnOrderDetail.tsx:136 +#: src/pages/sales/SalesOrderDetail.tsx:126 #: src/pages/stock/StockDetail.tsx:170 #: src/tables/Filter.tsx:274 #: src/tables/build/BuildOutputTable.tsx:404 #: src/tables/machine/MachineListTable.tsx:387 #: src/tables/part/PartPurchaseOrdersTable.tsx:38 -#: src/tables/part/PartTestResultTable.tsx:309 +#: src/tables/part/PartTestResultTable.tsx:317 #: src/tables/sales/ReturnOrderLineItemTable.tsx:138 #: src/tables/sales/ReturnOrderLineItemTable.tsx:176 #: src/tables/settings/CustomStateTable.tsx:79 @@ -4443,18 +4471,19 @@ msgid "Build outputs have been cancelled" msgstr "" #: src/forms/BuildForms.tsx:631 -#: src/pages/build/BuildDetail.tsx:207 -#: src/pages/company/ManufacturerPartDetail.tsx:85 -#: src/pages/company/SupplierPartDetail.tsx:96 +#: src/pages/build/BuildDetail.tsx:208 +#: src/pages/company/ManufacturerPartDetail.tsx:84 +#: src/pages/company/SupplierPartDetail.tsx:97 #: src/pages/part/PartDetail.tsx:453 #: src/pages/stock/StockDetail.tsx:153 #: src/tables/bom/BomTable.tsx:134 #: src/tables/bom/UsedInTable.tsx:40 -#: src/tables/build/BuildAllocatedStockTable.tsx:108 -#: src/tables/build/BuildLineTable.tsx:336 +#: src/tables/build/BuildAllocatedStockTable.tsx:105 +#: src/tables/build/BuildLineTable.tsx:337 #: src/tables/build/BuildOrderTable.tsx:79 #: src/tables/part/PartSalesAllocationsTable.tsx:61 #: src/tables/part/RelatedPartTable.tsx:73 +#: src/tables/purchasing/ManufacturerPartParametricTable.tsx:21 #: src/tables/purchasing/ManufacturerPartTable.tsx:69 #: src/tables/purchasing/SupplierPartTable.tsx:70 #: src/tables/sales/SalesOrderAllocationTable.tsx:135 @@ -4466,47 +4495,47 @@ msgstr "" #: src/forms/BuildForms.tsx:632 #: src/forms/BuildForms.tsx:796 #: src/forms/BuildForms.tsx:897 -#: src/forms/SalesOrderForms.tsx:306 -#: src/tables/build/BuildAllocatedStockTable.tsx:139 -#: src/tables/build/BuildLineTable.tsx:182 +#: src/forms/SalesOrderForms.tsx:385 +#: src/tables/build/BuildAllocatedStockTable.tsx:136 +#: src/tables/build/BuildLineTable.tsx:183 #: src/tables/sales/SalesOrderLineItemTable.tsx:342 #: src/tables/stock/StockItemTable.tsx:338 msgid "Allocated" msgstr "" #: src/forms/BuildForms.tsx:667 -#: src/forms/SalesOrderForms.tsx:295 -#: src/pages/build/BuildDetail.tsx:108 -#: src/pages/build/BuildDetail.tsx:326 +#: src/forms/SalesOrderForms.tsx:374 +#: src/pages/build/BuildDetail.tsx:109 +#: src/pages/build/BuildDetail.tsx:327 msgid "Source Location" msgstr "" #: src/forms/BuildForms.tsx:668 -#: src/forms/SalesOrderForms.tsx:296 +#: src/forms/SalesOrderForms.tsx:375 msgid "Select the source location for the stock allocation" msgstr "" #: src/forms/BuildForms.tsx:700 -#: src/forms/SalesOrderForms.tsx:336 -#: src/tables/build/BuildLineTable.tsx:574 -#: src/tables/build/BuildLineTable.tsx:731 -#: src/tables/build/BuildLineTable.tsx:830 +#: src/forms/SalesOrderForms.tsx:415 +#: src/tables/build/BuildLineTable.tsx:575 +#: src/tables/build/BuildLineTable.tsx:738 +#: src/tables/build/BuildLineTable.tsx:837 #: src/tables/sales/SalesOrderLineItemTable.tsx:380 #: src/tables/sales/SalesOrderLineItemTable.tsx:406 msgid "Allocate Stock" msgstr "" #: src/forms/BuildForms.tsx:703 -#: src/forms/SalesOrderForms.tsx:341 +#: src/forms/SalesOrderForms.tsx:420 msgid "Stock items allocated" msgstr "" #: src/forms/BuildForms.tsx:816 #: src/forms/BuildForms.tsx:917 -#: src/tables/build/BuildAllocatedStockTable.tsx:240 -#: src/tables/build/BuildAllocatedStockTable.tsx:272 -#: src/tables/build/BuildLineTable.tsx:741 -#: src/tables/build/BuildLineTable.tsx:864 +#: src/tables/build/BuildAllocatedStockTable.tsx:243 +#: src/tables/build/BuildAllocatedStockTable.tsx:279 +#: src/tables/build/BuildLineTable.tsx:748 +#: src/tables/build/BuildLineTable.tsx:871 msgid "Consume Stock" msgstr "" @@ -4521,21 +4550,21 @@ msgstr "" #~ msgstr "Stock items consumed" #: src/forms/BuildForms.tsx:853 -#: src/tables/build/BuildLineTable.tsx:514 +#: src/tables/build/BuildLineTable.tsx:515 #: src/tables/part/PartBuildAllocationsTable.tsx:101 msgid "Fully consumed" msgstr "" #: src/forms/BuildForms.tsx:898 -#: src/tables/build/BuildLineTable.tsx:187 +#: src/tables/build/BuildLineTable.tsx:188 #: src/tables/stock/StockItemTable.tsx:367 msgid "Consumed" msgstr "" -#: src/forms/CommonForms.tsx:88 -#: src/forms/PurchaseOrderForms.tsx:125 +#: src/forms/CommonForms.tsx:92 +#: src/forms/PurchaseOrderForms.tsx:176 #: src/forms/ReturnOrderForms.tsx:138 -#: src/forms/SalesOrderForms.tsx:164 +#: src/forms/SalesOrderForms.tsx:185 msgid "Select project code for this line item" msgstr "" @@ -4543,16 +4572,16 @@ msgstr "" #~ msgid "Company updated" #~ msgstr "Company updated" -#: src/forms/PartForms.tsx:85 -#: src/forms/PartForms.tsx:207 -#: src/pages/part/CategoryDetail.tsx:124 +#: src/forms/PartForms.tsx:99 +#: src/forms/PartForms.tsx:228 +#: src/pages/part/CategoryDetail.tsx:127 #: src/pages/part/PartDetail.tsx:668 #: src/tables/part/PartCategoryTable.tsx:94 #: src/tables/part/PartTable.tsx:325 msgid "Subscribed" msgstr "" -#: src/forms/PartForms.tsx:86 +#: src/forms/PartForms.tsx:100 msgid "Subscribe to notifications for this part" msgstr "" @@ -4564,40 +4593,24 @@ msgstr "" #~ msgid "Part updated" #~ msgstr "Part updated" -#: src/forms/PartForms.tsx:193 +#: src/forms/PartForms.tsx:214 msgid "Parent part category" msgstr "" -#: src/forms/PartForms.tsx:208 +#: src/forms/PartForms.tsx:229 msgid "Subscribe to notifications for this category" msgstr "" -#: src/forms/PurchaseOrderForms.tsx:388 -msgid "Assign Batch Code and Serial Numbers" -msgstr "" - -#: src/forms/PurchaseOrderForms.tsx:390 -msgid "Assign Batch Code" -msgstr "" - -#: src/forms/PurchaseOrderForms.tsx:410 -msgid "Choose Location" -msgstr "" - -#: src/forms/PurchaseOrderForms.tsx:418 -msgid "Item Destination selected" -msgstr "" - #: src/forms/PurchaseOrderForms.tsx:421 #~ msgid "Assign Batch Code{0}" #~ msgstr "Assign Batch Code{0}" -#: src/forms/PurchaseOrderForms.tsx:428 -msgid "Part category default location selected" +#: src/forms/PurchaseOrderForms.tsx:440 +msgid "Assign Batch Code and Serial Numbers" msgstr "" -#: src/forms/PurchaseOrderForms.tsx:438 -msgid "Received stock location selected" +#: src/forms/PurchaseOrderForms.tsx:442 +msgid "Assign Batch Code" msgstr "" #: src/forms/PurchaseOrderForms.tsx:444 @@ -4605,115 +4618,131 @@ msgstr "" #~ msgid "Remove item from list" #~ msgstr "Remove item from list" -#: src/forms/PurchaseOrderForms.tsx:446 +#: src/forms/PurchaseOrderForms.tsx:462 +msgid "Choose Location" +msgstr "" + +#: src/forms/PurchaseOrderForms.tsx:470 +msgid "Item Destination selected" +msgstr "" + +#: src/forms/PurchaseOrderForms.tsx:480 +msgid "Part category default location selected" +msgstr "" + +#: src/forms/PurchaseOrderForms.tsx:490 +msgid "Received stock location selected" +msgstr "" + +#: src/forms/PurchaseOrderForms.tsx:498 msgid "Default location selected" msgstr "" -#: src/forms/PurchaseOrderForms.tsx:507 +#: src/forms/PurchaseOrderForms.tsx:559 msgid "Set Location" msgstr "" -#: src/forms/PurchaseOrderForms.tsx:524 -msgid "Set Expiry Date" -msgstr "" - -#: src/forms/PurchaseOrderForms.tsx:532 -#: src/forms/StockForms.tsx:693 -msgid "Adjust Packaging" -msgstr "" - -#: src/forms/PurchaseOrderForms.tsx:540 -#: src/forms/StockForms.tsx:684 -#: src/hooks/UseStockAdjustActions.tsx:148 -msgid "Change Status" -msgstr "" - -#: src/forms/PurchaseOrderForms.tsx:546 -msgid "Add Note" -msgstr "" - #: src/forms/PurchaseOrderForms.tsx:566 #~ msgid "Serial numbers" #~ msgstr "Serial numbers" +#: src/forms/PurchaseOrderForms.tsx:576 +msgid "Set Expiry Date" +msgstr "" + #: src/forms/PurchaseOrderForms.tsx:582 #~ msgid "Store at line item destination" #~ msgstr "Store at line item destination" -#: src/forms/PurchaseOrderForms.tsx:610 -msgid "Store at default location" +#: src/forms/PurchaseOrderForms.tsx:584 +#: src/forms/StockForms.tsx:693 +msgid "Adjust Packaging" msgstr "" -#: src/forms/PurchaseOrderForms.tsx:625 -msgid "Store at line item destination " +#: src/forms/PurchaseOrderForms.tsx:592 +#: src/forms/StockForms.tsx:684 +#: src/hooks/UseStockAdjustActions.tsx:148 +msgid "Change Status" msgstr "" -#: src/forms/PurchaseOrderForms.tsx:637 -msgid "Store with already received stock" +#: src/forms/PurchaseOrderForms.tsx:598 +msgid "Add Note" msgstr "" #: src/forms/PurchaseOrderForms.tsx:658 #~ msgid "Receive line items" #~ msgstr "Receive line items" -#: src/forms/PurchaseOrderForms.tsx:661 -#: src/pages/build/BuildDetail.tsx:340 +#: src/forms/PurchaseOrderForms.tsx:662 +msgid "Store at default location" +msgstr "" + +#: src/forms/PurchaseOrderForms.tsx:677 +msgid "Store at line item destination " +msgstr "" + +#: src/forms/PurchaseOrderForms.tsx:689 +msgid "Store with already received stock" +msgstr "" + +#: src/forms/PurchaseOrderForms.tsx:713 +#: src/pages/build/BuildDetail.tsx:341 #: src/pages/stock/StockDetail.tsx:280 #: src/pages/stock/StockDetail.tsx:952 #: src/tables/Filter.tsx:83 -#: src/tables/build/BuildAllocatedStockTable.tsx:128 +#: src/tables/build/BuildAllocatedStockTable.tsx:125 #: src/tables/build/BuildOutputTable.tsx:112 -#: src/tables/part/PartTestResultTable.tsx:260 -#: src/tables/part/PartTestResultTable.tsx:281 +#: src/tables/part/PartTestResultTable.tsx:268 +#: src/tables/part/PartTestResultTable.tsx:289 #: src/tables/sales/SalesOrderAllocationTable.tsx:149 msgid "Batch Code" msgstr "" -#: src/forms/PurchaseOrderForms.tsx:662 +#: src/forms/PurchaseOrderForms.tsx:714 msgid "Enter batch code for received items" msgstr "" -#: src/forms/PurchaseOrderForms.tsx:675 +#: src/forms/PurchaseOrderForms.tsx:727 #: src/forms/StockForms.tsx:218 msgid "Serial Numbers" msgstr "" -#: src/forms/PurchaseOrderForms.tsx:676 +#: src/forms/PurchaseOrderForms.tsx:728 msgid "Enter serial numbers for received items" msgstr "" -#: src/forms/PurchaseOrderForms.tsx:690 +#: src/forms/PurchaseOrderForms.tsx:742 #: src/pages/stock/StockDetail.tsx:382 #: src/tables/stock/StockItemTable.tsx:294 msgid "Expiry Date" msgstr "" -#: src/forms/PurchaseOrderForms.tsx:691 +#: src/forms/PurchaseOrderForms.tsx:743 msgid "Enter an expiry date for received items" msgstr "" -#: src/forms/PurchaseOrderForms.tsx:703 +#: src/forms/PurchaseOrderForms.tsx:755 #: src/forms/StockForms.tsx:728 -#: src/pages/company/SupplierPartDetail.tsx:172 -#: src/pages/company/SupplierPartDetail.tsx:236 +#: src/pages/company/SupplierPartDetail.tsx:173 +#: src/pages/company/SupplierPartDetail.tsx:237 #: src/pages/stock/StockDetail.tsx:419 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:227 msgid "Packaging" msgstr "" -#: src/forms/PurchaseOrderForms.tsx:727 -#: src/pages/company/SupplierPartDetail.tsx:120 +#: src/forms/PurchaseOrderForms.tsx:779 +#: src/pages/company/SupplierPartDetail.tsx:121 #: src/tables/ColumnRenderers.tsx:332 msgid "Note" msgstr "" -#: src/forms/PurchaseOrderForms.tsx:799 -#: src/pages/company/SupplierPartDetail.tsx:138 +#: src/forms/PurchaseOrderForms.tsx:851 +#: src/pages/company/SupplierPartDetail.tsx:139 #: src/tables/purchasing/SupplierPriceBreakTable.tsx:49 msgid "SKU" msgstr "" -#: src/forms/PurchaseOrderForms.tsx:800 +#: src/forms/PurchaseOrderForms.tsx:852 #: src/tables/part/PartPurchaseOrdersTable.tsx:127 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:213 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:283 @@ -4721,11 +4750,11 @@ msgstr "" msgid "Received" msgstr "" -#: src/forms/PurchaseOrderForms.tsx:817 +#: src/forms/PurchaseOrderForms.tsx:869 msgid "Receive Line Items" msgstr "" -#: src/forms/PurchaseOrderForms.tsx:823 +#: src/forms/PurchaseOrderForms.tsx:875 msgid "Items received" msgstr "" @@ -4737,7 +4766,35 @@ msgstr "" msgid "Item received into stock" msgstr "" -#: src/forms/SalesOrderForms.tsx:401 +#: src/forms/SalesOrderForms.tsx:208 +#: src/forms/SalesOrderForms.tsx:210 +#: src/tables/sales/SalesOrderShipmentTable.tsx:215 +msgid "Check Shipment" +msgstr "" + +#: src/forms/SalesOrderForms.tsx:211 +msgid "Marking the shipment as checked indicates that you have verified that all items included in this shipment are correct" +msgstr "" + +#: src/forms/SalesOrderForms.tsx:221 +msgid "Shipment marked as checked" +msgstr "" + +#: src/forms/SalesOrderForms.tsx:236 +#: src/forms/SalesOrderForms.tsx:238 +#: src/tables/sales/SalesOrderShipmentTable.tsx:228 +msgid "Uncheck Shipment" +msgstr "" + +#: src/forms/SalesOrderForms.tsx:239 +msgid "Marking the shipment as unchecked indicates that the shipment requires further verification" +msgstr "" + +#: src/forms/SalesOrderForms.tsx:249 +msgid "Shipment marked as unchecked" +msgstr "" + +#: src/forms/SalesOrderForms.tsx:480 msgid "Leave blank to use the order address" msgstr "" @@ -4792,150 +4849,150 @@ msgstr "" msgid "Return" msgstr "" -#: src/forms/StockForms.tsx:963 +#: src/forms/StockForms.tsx:979 #: src/pages/Index/Scan.tsx:182 msgid "Count" msgstr "" -#: src/forms/StockForms.tsx:1246 +#: src/forms/StockForms.tsx:1262 #: src/hooks/UseStockAdjustActions.tsx:108 msgid "Add Stock" msgstr "" -#: src/forms/StockForms.tsx:1247 +#: src/forms/StockForms.tsx:1263 msgid "Stock added" msgstr "" -#: src/forms/StockForms.tsx:1250 +#: src/forms/StockForms.tsx:1266 msgid "Increase the quantity of the selected stock items by a given amount." msgstr "" -#: src/forms/StockForms.tsx:1261 +#: src/forms/StockForms.tsx:1277 #: src/hooks/UseStockAdjustActions.tsx:118 msgid "Remove Stock" msgstr "" -#: src/forms/StockForms.tsx:1262 +#: src/forms/StockForms.tsx:1278 msgid "Stock removed" msgstr "" -#: src/forms/StockForms.tsx:1265 +#: src/forms/StockForms.tsx:1281 msgid "Decrease the quantity of the selected stock items by a given amount." msgstr "" -#: src/forms/StockForms.tsx:1276 +#: src/forms/StockForms.tsx:1292 #: src/hooks/UseStockAdjustActions.tsx:128 msgid "Transfer Stock" msgstr "" -#: src/forms/StockForms.tsx:1277 +#: src/forms/StockForms.tsx:1293 msgid "Stock transferred" msgstr "" -#: src/forms/StockForms.tsx:1280 +#: src/forms/StockForms.tsx:1296 msgid "Transfer selected items to the specified location." msgstr "" -#: src/forms/StockForms.tsx:1291 +#: src/forms/StockForms.tsx:1307 #: src/hooks/UseStockAdjustActions.tsx:168 msgid "Return Stock" msgstr "" -#: src/forms/StockForms.tsx:1292 +#: src/forms/StockForms.tsx:1308 msgid "Stock returned" msgstr "" -#: src/forms/StockForms.tsx:1295 +#: src/forms/StockForms.tsx:1311 msgid "Return selected items into stock, to the specified location." msgstr "" -#: src/forms/StockForms.tsx:1306 +#: src/forms/StockForms.tsx:1322 #: src/hooks/UseStockAdjustActions.tsx:98 msgid "Count Stock" msgstr "" -#: src/forms/StockForms.tsx:1307 +#: src/forms/StockForms.tsx:1323 msgid "Stock counted" msgstr "" -#: src/forms/StockForms.tsx:1310 +#: src/forms/StockForms.tsx:1326 msgid "Count the selected stock items, and adjust the quantity accordingly." msgstr "" -#: src/forms/StockForms.tsx:1321 +#: src/forms/StockForms.tsx:1337 msgid "Change Stock Status" msgstr "" -#: src/forms/StockForms.tsx:1322 +#: src/forms/StockForms.tsx:1338 msgid "Stock status changed" msgstr "" -#: src/forms/StockForms.tsx:1325 +#: src/forms/StockForms.tsx:1341 msgid "Change the status of the selected stock items." msgstr "" -#: src/forms/StockForms.tsx:1336 +#: src/forms/StockForms.tsx:1352 #: src/hooks/UseStockAdjustActions.tsx:138 msgid "Merge Stock" msgstr "" -#: src/forms/StockForms.tsx:1337 +#: src/forms/StockForms.tsx:1353 msgid "Stock merged" msgstr "" -#: src/forms/StockForms.tsx:1339 +#: src/forms/StockForms.tsx:1355 msgid "Merge Stock Items" msgstr "" -#: src/forms/StockForms.tsx:1341 +#: src/forms/StockForms.tsx:1357 msgid "Merge operation cannot be reversed" msgstr "" -#: src/forms/StockForms.tsx:1342 +#: src/forms/StockForms.tsx:1358 msgid "Tracking information may be lost when merging items" msgstr "" -#: src/forms/StockForms.tsx:1343 +#: src/forms/StockForms.tsx:1359 msgid "Supplier information may be lost when merging items" msgstr "" -#: src/forms/StockForms.tsx:1361 +#: src/forms/StockForms.tsx:1377 msgid "Assign Stock to Customer" msgstr "" -#: src/forms/StockForms.tsx:1362 +#: src/forms/StockForms.tsx:1378 msgid "Stock assigned to customer" msgstr "" -#: src/forms/StockForms.tsx:1372 +#: src/forms/StockForms.tsx:1388 msgid "Delete Stock Items" msgstr "" -#: src/forms/StockForms.tsx:1373 +#: src/forms/StockForms.tsx:1389 msgid "Stock deleted" msgstr "" -#: src/forms/StockForms.tsx:1376 +#: src/forms/StockForms.tsx:1392 msgid "This operation will permanently delete the selected stock items." msgstr "" -#: src/forms/StockForms.tsx:1385 +#: src/forms/StockForms.tsx:1401 msgid "Parent stock location" msgstr "" -#: src/forms/StockForms.tsx:1512 +#: src/forms/StockForms.tsx:1528 msgid "Find Serial Number" msgstr "" -#: src/forms/StockForms.tsx:1523 +#: src/forms/StockForms.tsx:1539 msgid "No matching items" msgstr "" -#: src/forms/StockForms.tsx:1529 +#: src/forms/StockForms.tsx:1545 msgid "Multiple matching items" msgstr "" -#: src/forms/StockForms.tsx:1538 +#: src/forms/StockForms.tsx:1554 msgid "Invalid response from server" msgstr "" @@ -4953,7 +5010,6 @@ msgstr "" #: src/tables/FilterSelectDrawer.tsx:137 #: src/tables/FilterSelectDrawer.tsx:149 #: src/tables/part/PartTestResultTable.tsx:206 -#: src/tables/purchasing/ManufacturerPartParameterTable.tsx:42 #: src/tables/stock/StockItemTestResultTable.tsx:207 msgid "Value" msgstr "" @@ -5244,7 +5300,7 @@ msgid "Delete selected stock items" msgstr "" #: src/hooks/UseStockAdjustActions.tsx:205 -#: src/pages/part/PartDetail.tsx:1137 +#: src/pages/part/PartDetail.tsx:1158 msgid "Stock Actions" msgstr "" @@ -5932,6 +5988,9 @@ msgstr "" #: src/pages/Index/Settings/AccountSettings/MFASettings.tsx:310 #: src/pages/Index/Settings/AccountSettings/MFASettings.tsx:401 +#: src/tables/build/BuildAllocatedStockTable.tsx:181 +#: src/tables/build/BuildLineTable.tsx:668 +#: src/tables/sales/SalesOrderAllocationTable.tsx:220 msgid "Confirm Removal" msgstr "" @@ -6394,30 +6453,34 @@ msgid "Email Messages" msgstr "" #: src/pages/Index/Settings/AdminCenter/HomePanel.tsx:22 -msgid "Active Alerts" -msgstr "" +#~ msgid "Active Alerts" +#~ msgstr "Active Alerts" #: src/pages/Index/Settings/AdminCenter/HomePanel.tsx:27 -msgid "Inactive Alerts" +#~ msgid "Inactive Alerts" +#~ msgstr "Inactive Alerts" + +#: src/pages/Index/Settings/AdminCenter/HomePanel.tsx:36 +msgid "System Status" msgstr "" -#: src/pages/Index/Settings/AdminCenter/HomePanel.tsx:38 +#: src/pages/Index/Settings/AdminCenter/HomePanel.tsx:47 msgid "Admin Center Information" msgstr "" -#: src/pages/Index/Settings/AdminCenter/HomePanel.tsx:44 +#: src/pages/Index/Settings/AdminCenter/HomePanel.tsx:53 msgid "The home panel (and the whole Admin Center) is a new feature starting with the new UI and was previously (before 1.0) not available." msgstr "" -#: src/pages/Index/Settings/AdminCenter/HomePanel.tsx:51 +#: src/pages/Index/Settings/AdminCenter/HomePanel.tsx:60 msgid "The admin center provides a centralized location for all administration functionality and is meant to replace all interaction with the (django) backend admin interface." msgstr "" -#: src/pages/Index/Settings/AdminCenter/HomePanel.tsx:58 +#: src/pages/Index/Settings/AdminCenter/HomePanel.tsx:67 msgid "Please open feature requests (after checking the tracker) for any existing backend admin functionality you are missing in this UI. The backend admin interface should be used carefully and seldom." msgstr "" -#: src/pages/Index/Settings/AdminCenter/HomePanel.tsx:76 +#: src/pages/Index/Settings/AdminCenter/HomePanel.tsx:85 msgid "Quick Actions" msgstr "" @@ -6476,11 +6539,11 @@ msgstr "" #: src/pages/Index/Settings/AdminCenter/Index.tsx:195 #: src/pages/part/CategoryDetail.tsx:313 -msgid "Part Parameters" -msgstr "" +#~ msgid "Part Parameters" +#~ msgstr "Part Parameters" #: src/pages/Index/Settings/AdminCenter/Index.tsx:202 -#: src/pages/part/CategoryDetail.tsx:306 +#: src/pages/part/CategoryDetail.tsx:329 msgid "Category Parameters" msgstr "" @@ -6494,7 +6557,7 @@ msgstr "" #: src/pages/Index/Settings/AdminCenter/Index.tsx:235 #: src/pages/Index/Settings/AdminCenter/MachineManagementPanel.tsx:52 -#: src/tables/machine/MachineTypeTable.tsx:325 +#: src/tables/machine/MachineTypeTable.tsx:323 msgid "Machines" msgstr "" @@ -6507,8 +6570,8 @@ msgid "Data Management" msgstr "" #: src/pages/Index/Settings/AdminCenter/Index.tsx:270 -#: src/pages/Index/Settings/SystemSettings.tsx:175 -#: src/pages/Index/Settings/UserSettings.tsx:118 +#: src/pages/Index/Settings/SystemSettings.tsx:176 +#: src/pages/Index/Settings/UserSettings.tsx:119 msgid "Reporting" msgstr "" @@ -6709,11 +6772,11 @@ msgstr "" msgid "The settings below are specific to each available plugin" msgstr "" -#: src/pages/Index/Settings/SystemSettings.tsx:77 +#: src/pages/Index/Settings/SystemSettings.tsx:78 msgid "Authentication" msgstr "" -#: src/pages/Index/Settings/SystemSettings.tsx:103 +#: src/pages/Index/Settings/SystemSettings.tsx:104 msgid "Barcodes" msgstr "" @@ -6725,12 +6788,12 @@ msgstr "" #~ msgid "This panel is a placeholder." #~ msgstr "This panel is a placeholder." -#: src/pages/Index/Settings/SystemSettings.tsx:127 -#: src/pages/Index/Settings/UserSettings.tsx:112 +#: src/pages/Index/Settings/SystemSettings.tsx:128 +#: src/pages/Index/Settings/UserSettings.tsx:113 msgid "The settings below are specific to each available notification method" msgstr "" -#: src/pages/Index/Settings/SystemSettings.tsx:133 +#: src/pages/Index/Settings/SystemSettings.tsx:134 msgid "Pricing" msgstr "" @@ -6738,7 +6801,7 @@ msgstr "" #~ msgid "Exchange Rates" #~ msgstr "Exchange Rates" -#: src/pages/Index/Settings/SystemSettings.tsx:169 +#: src/pages/Index/Settings/SystemSettings.tsx:170 msgid "Labels" msgstr "" @@ -6790,15 +6853,15 @@ msgstr "" #~ msgid "Delete notifications" #~ msgstr "Delete notifications" -#: src/pages/build/BuildDetail.tsx:69 +#: src/pages/build/BuildDetail.tsx:70 msgid "No Required Items" msgstr "" -#: src/pages/build/BuildDetail.tsx:71 +#: src/pages/build/BuildDetail.tsx:72 msgid "This build order does not have any required items." msgstr "" -#: src/pages/build/BuildDetail.tsx:72 +#: src/pages/build/BuildDetail.tsx:73 msgid "The assembled part may not have a Bill of Materials (BOM) defined, or the BOM is empty." msgstr "" @@ -6826,7 +6889,7 @@ msgstr "" #~ msgid "Build Order updated" #~ msgstr "Build Order updated" -#: src/pages/build/BuildDetail.tsx:215 +#: src/pages/build/BuildDetail.tsx:216 #: src/pages/part/PartDetail.tsx:480 #: src/pages/stock/StockDetail.tsx:161 #: src/tables/bom/UsedInTable.tsx:44 @@ -6843,10 +6906,10 @@ msgstr "" #~ msgid "Duplicate build order" #~ msgstr "Duplicate build order" -#: src/pages/build/BuildDetail.tsx:228 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:174 -#: src/pages/sales/ReturnOrderDetail.tsx:141 -#: src/pages/sales/SalesOrderDetail.tsx:131 +#: src/pages/build/BuildDetail.tsx:229 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:175 +#: src/pages/sales/ReturnOrderDetail.tsx:142 +#: src/pages/sales/SalesOrderDetail.tsx:132 #: src/pages/stock/StockDetail.tsx:176 msgid "Custom Status" msgstr "" @@ -6855,9 +6918,9 @@ msgstr "" #~ msgid "Delete build order" #~ msgstr "Delete build order" -#: src/pages/build/BuildDetail.tsx:237 -#: src/pages/build/BuildDetail.tsx:723 -#: src/pages/build/BuildIndex.tsx:28 +#: src/pages/build/BuildDetail.tsx:238 +#: src/pages/build/BuildDetail.tsx:728 +#: src/pages/build/BuildIndex.tsx:34 #: src/pages/stock/LocationDetail.tsx:140 #: src/tables/build/BuildOrderTable.tsx:123 #: src/tables/build/BuildOrderTable.tsx:183 @@ -6865,57 +6928,57 @@ msgstr "" msgid "External" msgstr "" -#: src/pages/build/BuildDetail.tsx:244 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:141 -#: src/pages/sales/ReturnOrderDetail.tsx:108 -#: src/pages/sales/SalesOrderDetail.tsx:98 +#: src/pages/build/BuildDetail.tsx:245 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:142 +#: src/pages/sales/ReturnOrderDetail.tsx:109 +#: src/pages/sales/SalesOrderDetail.tsx:99 #: src/tables/ColumnRenderers.tsx:321 -#: src/tables/build/BuildAllocatedStockTable.tsx:115 -#: src/tables/build/BuildLineTable.tsx:352 +#: src/tables/build/BuildAllocatedStockTable.tsx:112 +#: src/tables/build/BuildLineTable.tsx:353 msgid "Reference" msgstr "" -#: src/pages/build/BuildDetail.tsx:258 +#: src/pages/build/BuildDetail.tsx:259 msgid "Parent Build" msgstr "" -#: src/pages/build/BuildDetail.tsx:269 +#: src/pages/build/BuildDetail.tsx:270 msgid "Build Quantity" msgstr "" -#: src/pages/build/BuildDetail.tsx:275 +#: src/pages/build/BuildDetail.tsx:276 #: src/pages/part/PartDetail.tsx:598 #: src/tables/bom/BomTable.tsx:365 #: src/tables/bom/BomTable.tsx:407 msgid "Can Build" msgstr "" -#: src/pages/build/BuildDetail.tsx:284 -#: src/pages/build/BuildDetail.tsx:474 +#: src/pages/build/BuildDetail.tsx:285 +#: src/pages/build/BuildDetail.tsx:475 msgid "Completed Outputs" msgstr "" -#: src/pages/build/BuildDetail.tsx:301 +#: src/pages/build/BuildDetail.tsx:302 #: src/tables/Filter.tsx:381 #: src/tables/build/BuildOrderTable.tsx:143 msgid "Issued By" msgstr "" -#: src/pages/build/BuildDetail.tsx:309 +#: src/pages/build/BuildDetail.tsx:310 #: src/pages/part/PartDetail.tsx:691 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:261 -#: src/pages/sales/ReturnOrderDetail.tsx:239 -#: src/pages/sales/SalesOrderDetail.tsx:232 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:262 +#: src/pages/sales/ReturnOrderDetail.tsx:240 +#: src/pages/sales/SalesOrderDetail.tsx:233 #: src/tables/ColumnRenderers.tsx:464 #: src/tables/Filter.tsx:319 msgid "Responsible" msgstr "" -#: src/pages/build/BuildDetail.tsx:327 +#: src/pages/build/BuildDetail.tsx:328 msgid "Any location" msgstr "" -#: src/pages/build/BuildDetail.tsx:334 +#: src/pages/build/BuildDetail.tsx:335 msgid "Destination Location" msgstr "" @@ -6924,24 +6987,24 @@ msgstr "" #~ msgid "Test Statistics" #~ msgstr "Test Statistics" -#: src/pages/build/BuildDetail.tsx:350 +#: src/pages/build/BuildDetail.tsx:351 #: src/tables/settings/ApiTokenTable.tsx:97 #: src/tables/settings/PendingTasksTable.tsx:41 msgid "Created" msgstr "" -#: src/pages/build/BuildDetail.tsx:358 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:286 -#: src/pages/sales/ReturnOrderDetail.tsx:265 -#: src/pages/sales/SalesOrderDetail.tsx:257 +#: src/pages/build/BuildDetail.tsx:359 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:287 +#: src/pages/sales/ReturnOrderDetail.tsx:266 +#: src/pages/sales/SalesOrderDetail.tsx:258 #: src/tables/ColumnRenderers.tsx:486 msgid "Start Date" msgstr "" -#: src/pages/build/BuildDetail.tsx:366 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:294 -#: src/pages/sales/ReturnOrderDetail.tsx:273 -#: src/pages/sales/SalesOrderDetail.tsx:265 +#: src/pages/build/BuildDetail.tsx:367 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:295 +#: src/pages/sales/ReturnOrderDetail.tsx:274 +#: src/pages/sales/SalesOrderDetail.tsx:266 #: src/tables/ColumnRenderers.tsx:494 #: src/tables/part/PartPurchaseOrdersTable.tsx:101 #: src/tables/sales/ReturnOrderLineItemTable.tsx:154 @@ -6954,185 +7017,185 @@ msgstr "" #~ msgstr "Reporting Actions" #: src/pages/build/BuildDetail.tsx:374 +#~ msgid "Print build report" +#~ msgstr "Print build report" + +#: src/pages/build/BuildDetail.tsx:375 #: src/tables/build/BuildOrderTable.tsx:93 #: src/tables/sales/SalesOrderLineItemTable.tsx:347 msgid "Completed" msgstr "" -#: src/pages/build/BuildDetail.tsx:374 -#~ msgid "Print build report" -#~ msgstr "Print build report" - -#: src/pages/build/BuildDetail.tsx:410 +#: src/pages/build/BuildDetail.tsx:411 msgid "Build Details" msgstr "" -#: src/pages/build/BuildDetail.tsx:416 +#: src/pages/build/BuildDetail.tsx:417 msgid "Required Parts" msgstr "" -#: src/pages/build/BuildDetail.tsx:428 -#: src/pages/sales/SalesOrderDetail.tsx:407 -#: src/pages/sales/SalesOrderShipmentDetail.tsx:261 +#: src/pages/build/BuildDetail.tsx:429 +#: src/pages/sales/SalesOrderDetail.tsx:408 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:259 #: src/tables/part/PartSalesAllocationsTable.tsx:73 msgid "Allocated Stock" msgstr "" -#: src/pages/build/BuildDetail.tsx:444 +#: src/pages/build/BuildDetail.tsx:445 msgid "Consumed Stock" msgstr "" -#: src/pages/build/BuildDetail.tsx:461 +#: src/pages/build/BuildDetail.tsx:462 msgid "Incomplete Outputs" msgstr "" -#: src/pages/build/BuildDetail.tsx:489 +#: src/pages/build/BuildDetail.tsx:490 msgid "External Orders" msgstr "" -#: src/pages/build/BuildDetail.tsx:503 +#: src/pages/build/BuildDetail.tsx:504 msgid "Child Build Orders" msgstr "" -#: src/pages/build/BuildDetail.tsx:513 -#: src/pages/part/PartDetail.tsx:937 +#: src/pages/build/BuildDetail.tsx:514 +#: src/pages/part/PartDetail.tsx:926 #: src/pages/stock/StockDetail.tsx:587 #: src/tables/build/BuildOutputTable.tsx:654 #: src/tables/stock/StockItemTestResultTable.tsx:173 msgid "Test Results" msgstr "" -#: src/pages/build/BuildDetail.tsx:550 +#: src/pages/build/BuildDetail.tsx:555 msgid "Edit Build Order" msgstr "" -#: src/pages/build/BuildDetail.tsx:572 +#: src/pages/build/BuildDetail.tsx:577 #: src/tables/build/BuildOrderTable.tsx:207 #: src/tables/build/BuildOrderTable.tsx:223 msgid "Add Build Order" msgstr "" -#: src/pages/build/BuildDetail.tsx:582 +#: src/pages/build/BuildDetail.tsx:587 msgid "Cancel Build Order" msgstr "" -#: src/pages/build/BuildDetail.tsx:584 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:416 -#: src/pages/sales/ReturnOrderDetail.tsx:427 -#: src/pages/sales/SalesOrderDetail.tsx:454 +#: src/pages/build/BuildDetail.tsx:589 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:421 +#: src/pages/sales/ReturnOrderDetail.tsx:432 +#: src/pages/sales/SalesOrderDetail.tsx:459 msgid "Order cancelled" msgstr "" -#: src/pages/build/BuildDetail.tsx:585 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:415 -#: src/pages/sales/ReturnOrderDetail.tsx:426 -#: src/pages/sales/SalesOrderDetail.tsx:453 +#: src/pages/build/BuildDetail.tsx:590 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:420 +#: src/pages/sales/ReturnOrderDetail.tsx:431 +#: src/pages/sales/SalesOrderDetail.tsx:458 msgid "Cancel this order" msgstr "" -#: src/pages/build/BuildDetail.tsx:594 +#: src/pages/build/BuildDetail.tsx:599 msgid "Hold Build Order" msgstr "" -#: src/pages/build/BuildDetail.tsx:596 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:423 -#: src/pages/sales/ReturnOrderDetail.tsx:434 -#: src/pages/sales/SalesOrderDetail.tsx:461 +#: src/pages/build/BuildDetail.tsx:601 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:428 +#: src/pages/sales/ReturnOrderDetail.tsx:439 +#: src/pages/sales/SalesOrderDetail.tsx:466 msgid "Place this order on hold" msgstr "" -#: src/pages/build/BuildDetail.tsx:597 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:424 -#: src/pages/sales/ReturnOrderDetail.tsx:435 -#: src/pages/sales/SalesOrderDetail.tsx:462 +#: src/pages/build/BuildDetail.tsx:602 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:429 +#: src/pages/sales/ReturnOrderDetail.tsx:440 +#: src/pages/sales/SalesOrderDetail.tsx:467 msgid "Order placed on hold" msgstr "" -#: src/pages/build/BuildDetail.tsx:602 +#: src/pages/build/BuildDetail.tsx:607 msgid "Issue Build Order" msgstr "" -#: src/pages/build/BuildDetail.tsx:604 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:407 -#: src/pages/sales/ReturnOrderDetail.tsx:418 -#: src/pages/sales/SalesOrderDetail.tsx:445 +#: src/pages/build/BuildDetail.tsx:609 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:412 +#: src/pages/sales/ReturnOrderDetail.tsx:423 +#: src/pages/sales/SalesOrderDetail.tsx:450 msgid "Issue this order" msgstr "" -#: src/pages/build/BuildDetail.tsx:605 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:408 -#: src/pages/sales/ReturnOrderDetail.tsx:419 -#: src/pages/sales/SalesOrderDetail.tsx:446 +#: src/pages/build/BuildDetail.tsx:610 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:413 +#: src/pages/sales/ReturnOrderDetail.tsx:424 +#: src/pages/sales/SalesOrderDetail.tsx:451 msgid "Order issued" msgstr "" -#: src/pages/build/BuildDetail.tsx:624 +#: src/pages/build/BuildDetail.tsx:629 msgid "Complete Build Order" msgstr "" -#: src/pages/build/BuildDetail.tsx:630 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:436 -#: src/pages/sales/ReturnOrderDetail.tsx:442 -#: src/pages/sales/SalesOrderDetail.tsx:480 +#: src/pages/build/BuildDetail.tsx:635 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:441 +#: src/pages/sales/ReturnOrderDetail.tsx:447 +#: src/pages/sales/SalesOrderDetail.tsx:485 msgid "Mark this order as complete" msgstr "" -#: src/pages/build/BuildDetail.tsx:633 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:430 -#: src/pages/sales/ReturnOrderDetail.tsx:443 -#: src/pages/sales/SalesOrderDetail.tsx:481 +#: src/pages/build/BuildDetail.tsx:638 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:435 +#: src/pages/sales/ReturnOrderDetail.tsx:448 +#: src/pages/sales/SalesOrderDetail.tsx:486 msgid "Order completed" msgstr "" -#: src/pages/build/BuildDetail.tsx:660 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:459 -#: src/pages/sales/ReturnOrderDetail.tsx:470 -#: src/pages/sales/SalesOrderDetail.tsx:516 +#: src/pages/build/BuildDetail.tsx:665 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:464 +#: src/pages/sales/ReturnOrderDetail.tsx:475 +#: src/pages/sales/SalesOrderDetail.tsx:521 msgid "Issue Order" msgstr "" -#: src/pages/build/BuildDetail.tsx:667 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:466 -#: src/pages/sales/ReturnOrderDetail.tsx:477 -#: src/pages/sales/SalesOrderDetail.tsx:530 +#: src/pages/build/BuildDetail.tsx:672 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:471 +#: src/pages/sales/ReturnOrderDetail.tsx:482 +#: src/pages/sales/SalesOrderDetail.tsx:535 msgid "Complete Order" msgstr "" -#: src/pages/build/BuildDetail.tsx:686 +#: src/pages/build/BuildDetail.tsx:691 msgid "Build Order Actions" msgstr "" -#: src/pages/build/BuildDetail.tsx:691 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:489 -#: src/pages/sales/ReturnOrderDetail.tsx:500 -#: src/pages/sales/SalesOrderDetail.tsx:554 +#: src/pages/build/BuildDetail.tsx:696 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:494 +#: src/pages/sales/ReturnOrderDetail.tsx:505 +#: src/pages/sales/SalesOrderDetail.tsx:559 msgid "Edit order" msgstr "" -#: src/pages/build/BuildDetail.tsx:695 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:497 -#: src/pages/sales/ReturnOrderDetail.tsx:506 -#: src/pages/sales/SalesOrderDetail.tsx:559 -msgid "Duplicate order" -msgstr "" - -#: src/pages/build/BuildDetail.tsx:699 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:500 +#: src/pages/build/BuildDetail.tsx:700 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:502 #: src/pages/sales/ReturnOrderDetail.tsx:511 -#: src/pages/sales/SalesOrderDetail.tsx:562 -msgid "Hold order" +#: src/pages/sales/SalesOrderDetail.tsx:564 +msgid "Duplicate order" msgstr "" #: src/pages/build/BuildDetail.tsx:704 #: src/pages/purchasing/PurchaseOrderDetail.tsx:505 #: src/pages/sales/ReturnOrderDetail.tsx:516 #: src/pages/sales/SalesOrderDetail.tsx:567 +msgid "Hold order" +msgstr "" + +#: src/pages/build/BuildDetail.tsx:709 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:510 +#: src/pages/sales/ReturnOrderDetail.tsx:521 +#: src/pages/sales/SalesOrderDetail.tsx:572 msgid "Cancel order" msgstr "" -#: src/pages/build/BuildDetail.tsx:742 +#: src/pages/build/BuildDetail.tsx:747 #: src/pages/stock/StockDetail.tsx:344 -#: src/tables/build/BuildAllocatedStockTable.tsx:85 +#: src/tables/build/BuildAllocatedStockTable.tsx:82 #: src/tables/part/PartBuildAllocationsTable.tsx:45 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:157 #: src/tables/stock/StockTrackingTable.tsx:109 @@ -7143,7 +7206,7 @@ msgstr "" #~ msgid "Build order created" #~ msgstr "Build order created" -#: src/pages/build/BuildIndex.tsx:29 +#: src/pages/build/BuildIndex.tsx:35 #: src/tables/build/BuildOrderTable.tsx:184 msgid "Show external build orders" msgstr "" @@ -7152,61 +7215,82 @@ msgstr "" #~ msgid "New Build Order" #~ msgstr "New Build Order" -#: src/pages/build/BuildIndex.tsx:83 -#: src/pages/purchasing/PurchasingIndex.tsx:69 -#: src/pages/sales/SalesIndex.tsx:92 -#: src/pages/sales/SalesIndex.tsx:125 +#: src/pages/build/BuildIndex.tsx:74 +#: src/pages/part/CategoryDetail.tsx:292 +#: src/pages/purchasing/PurchasingIndex.tsx:74 +#: src/pages/purchasing/PurchasingIndex.tsx:107 +#: src/pages/purchasing/PurchasingIndex.tsx:135 +#: src/pages/purchasing/PurchasingIndex.tsx:156 +#: src/pages/purchasing/PurchasingIndex.tsx:184 +#: src/pages/sales/SalesIndex.tsx:61 +#: src/pages/sales/SalesIndex.tsx:107 +#: src/pages/sales/SalesIndex.tsx:140 msgid "Table View" msgstr "" -#: src/pages/build/BuildIndex.tsx:86 -#: src/pages/purchasing/PurchasingIndex.tsx:72 -#: src/pages/sales/SalesIndex.tsx:95 -#: src/pages/sales/SalesIndex.tsx:128 +#: src/pages/build/BuildIndex.tsx:80 +#: src/pages/purchasing/PurchasingIndex.tsx:80 +#: src/pages/sales/SalesIndex.tsx:67 +#: src/pages/sales/SalesIndex.tsx:113 msgid "Calendar View" msgstr "" -#: src/pages/company/CompanyDetail.tsx:99 +#: src/pages/build/BuildIndex.tsx:86 +#: src/pages/part/CategoryDetail.tsx:306 +#: src/pages/purchasing/PurchasingIndex.tsx:92 +#: src/pages/purchasing/PurchasingIndex.tsx:118 +#: src/pages/purchasing/PurchasingIndex.tsx:141 +#: src/pages/purchasing/PurchasingIndex.tsx:167 +#: src/pages/purchasing/PurchasingIndex.tsx:190 +#: src/pages/sales/SalesIndex.tsx:79 +#: src/pages/sales/SalesIndex.tsx:125 +#: src/pages/sales/SalesIndex.tsx:151 +msgid "Parametric View" +msgstr "" + +#: src/pages/company/CompanyDetail.tsx:100 msgid "Website" msgstr "" -#: src/pages/company/CompanyDetail.tsx:107 +#: src/pages/company/CompanyDetail.tsx:108 msgid "Phone Number" msgstr "" -#: src/pages/company/CompanyDetail.tsx:114 +#: src/pages/company/CompanyDetail.tsx:115 msgid "Email Address" msgstr "" -#: src/pages/company/CompanyDetail.tsx:121 +#: src/pages/company/CompanyDetail.tsx:122 msgid "Tax ID" msgstr "" -#: src/pages/company/CompanyDetail.tsx:131 +#: src/pages/company/CompanyDetail.tsx:132 msgid "Default Currency" msgstr "" -#: src/pages/company/CompanyDetail.tsx:142 +#: src/pages/company/CompanyDetail.tsx:143 #: src/pages/company/ManufacturerDetail.tsx:8 -#: src/pages/company/ManufacturerPartDetail.tsx:104 -#: src/pages/company/ManufacturerPartDetail.tsx:280 -#: src/pages/company/SupplierPartDetail.tsx:152 +#: src/pages/company/ManufacturerPartDetail.tsx:103 +#: src/pages/company/ManufacturerPartDetail.tsx:271 +#: src/pages/company/SupplierPartDetail.tsx:153 #: src/tables/Filter.tsx:347 #: src/tables/company/CompanyTable.tsx:101 #: src/tables/purchasing/SupplierPartTable.tsx:89 msgid "Manufacturer" msgstr "" -#: src/pages/company/CompanyDetail.tsx:148 +#: src/pages/company/CompanyDetail.tsx:149 #: src/pages/company/CustomerDetail.tsx:8 #: src/pages/part/pricing/SaleHistoryPanel.tsx:31 -#: src/pages/sales/ReturnOrderDetail.tsx:123 -#: src/pages/sales/SalesOrderDetail.tsx:113 -#: src/pages/sales/SalesOrderShipmentDetail.tsx:113 +#: src/pages/sales/ReturnOrderDetail.tsx:124 +#: src/pages/sales/SalesOrderDetail.tsx:114 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:111 #: src/pages/stock/StockDetail.tsx:370 #: src/tables/company/CompanyTable.tsx:106 +#: src/tables/sales/ReturnOrderParametricTable.tsx:32 #: src/tables/sales/ReturnOrderTable.tsx:108 -#: src/tables/sales/SalesOrderShipmentTable.tsx:111 +#: src/tables/sales/SalesOrderParametricTable.tsx:32 +#: src/tables/sales/SalesOrderShipmentTable.tsx:132 #: src/tables/sales/SalesOrderTable.tsx:133 #: src/tables/stock/StockTrackingTable.tsx:153 msgid "Customer" @@ -7216,11 +7300,11 @@ msgstr "" #~ msgid "Edit company" #~ msgstr "Edit company" -#: src/pages/company/CompanyDetail.tsx:181 +#: src/pages/company/CompanyDetail.tsx:182 msgid "Company Details" msgstr "" -#: src/pages/company/CompanyDetail.tsx:187 +#: src/pages/company/CompanyDetail.tsx:188 msgid "Supplied Parts" msgstr "" @@ -7228,79 +7312,79 @@ msgstr "" #~ msgid "Delete company" #~ msgstr "Delete company" -#: src/pages/company/CompanyDetail.tsx:194 +#: src/pages/company/CompanyDetail.tsx:195 msgid "Manufactured Parts" msgstr "" -#: src/pages/company/CompanyDetail.tsx:241 +#: src/pages/company/CompanyDetail.tsx:242 msgid "Assigned Stock" msgstr "" -#: src/pages/company/CompanyDetail.tsx:282 +#: src/pages/company/CompanyDetail.tsx:287 #: src/tables/company/CompanyTable.tsx:82 msgid "Edit Company" msgstr "" -#: src/pages/company/CompanyDetail.tsx:290 +#: src/pages/company/CompanyDetail.tsx:295 msgid "Delete Company" msgstr "" -#: src/pages/company/CompanyDetail.tsx:305 +#: src/pages/company/CompanyDetail.tsx:310 msgid "Company Actions" msgstr "" -#: src/pages/company/ManufacturerPartDetail.tsx:78 -#: src/pages/company/SupplierPartDetail.tsx:89 +#: src/pages/company/ManufacturerPartDetail.tsx:77 +#: src/pages/company/SupplierPartDetail.tsx:90 msgid "Internal Part" msgstr "" -#: src/pages/company/ManufacturerPartDetail.tsx:112 +#: src/pages/company/ManufacturerPartDetail.tsx:111 msgid "Manufacturer Part Number" msgstr "" -#: src/pages/company/ManufacturerPartDetail.tsx:129 -#: src/pages/company/SupplierPartDetail.tsx:113 +#: src/pages/company/ManufacturerPartDetail.tsx:128 +#: src/pages/company/SupplierPartDetail.tsx:114 msgid "External Link" msgstr "" -#: src/pages/company/ManufacturerPartDetail.tsx:148 -#: src/pages/company/SupplierPartDetail.tsx:232 +#: src/pages/company/ManufacturerPartDetail.tsx:147 +#: src/pages/company/SupplierPartDetail.tsx:233 #: src/pages/part/PartDetail.tsx:787 msgid "Part Details" msgstr "" -#: src/pages/company/ManufacturerPartDetail.tsx:151 +#: src/pages/company/ManufacturerPartDetail.tsx:150 msgid "Manufacturer Details" msgstr "" -#: src/pages/company/ManufacturerPartDetail.tsx:160 +#: src/pages/company/ManufacturerPartDetail.tsx:159 msgid "Manufacturer Part Details" msgstr "" -#: src/pages/company/ManufacturerPartDetail.tsx:178 -#: src/pages/company/SupplierPartDetail.tsx:252 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:381 +#: src/pages/company/ManufacturerPartDetail.tsx:165 +#: src/pages/company/SupplierPartDetail.tsx:253 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:382 msgid "Received Stock" msgstr "" -#: src/pages/company/ManufacturerPartDetail.tsx:220 +#: src/pages/company/ManufacturerPartDetail.tsx:211 #: src/tables/purchasing/ManufacturerPartTable.tsx:108 msgid "Edit Manufacturer Part" msgstr "" -#: src/pages/company/ManufacturerPartDetail.tsx:227 +#: src/pages/company/ManufacturerPartDetail.tsx:218 #: src/tables/purchasing/ManufacturerPartTable.tsx:96 #: src/tables/purchasing/ManufacturerPartTable.tsx:115 #: src/tables/purchasing/ManufacturerPartTable.tsx:156 msgid "Add Manufacturer Part" msgstr "" -#: src/pages/company/ManufacturerPartDetail.tsx:239 +#: src/pages/company/ManufacturerPartDetail.tsx:230 #: src/tables/purchasing/ManufacturerPartTable.tsx:126 msgid "Delete Manufacturer Part" msgstr "" -#: src/pages/company/ManufacturerPartDetail.tsx:254 +#: src/pages/company/ManufacturerPartDetail.tsx:245 msgid "Manufacturer Part Actions" msgstr "" @@ -7308,12 +7392,12 @@ msgstr "" #~ msgid "ManufacturerPart" #~ msgstr "ManufacturerPart" -#: src/pages/company/SupplierPartDetail.tsx:104 +#: src/pages/company/SupplierPartDetail.tsx:105 #: src/tables/part/RelatedPartTable.tsx:82 msgid "Part Description" msgstr "" -#: src/pages/company/SupplierPartDetail.tsx:179 +#: src/pages/company/SupplierPartDetail.tsx:180 #: src/tables/part/PartPurchaseOrdersTable.tsx:73 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:191 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:233 @@ -7321,50 +7405,50 @@ msgstr "" msgid "Pack Quantity" msgstr "" -#: src/pages/company/SupplierPartDetail.tsx:204 +#: src/pages/company/SupplierPartDetail.tsx:205 msgid "Supplier Availability" msgstr "" -#: src/pages/company/SupplierPartDetail.tsx:212 +#: src/pages/company/SupplierPartDetail.tsx:213 msgid "Availability Updated" msgstr "" -#: src/pages/company/SupplierPartDetail.tsx:237 +#: src/pages/company/SupplierPartDetail.tsx:238 msgid "Availability" msgstr "" -#: src/pages/company/SupplierPartDetail.tsx:246 +#: src/pages/company/SupplierPartDetail.tsx:247 msgid "Supplier Part Details" msgstr "" -#: src/pages/company/SupplierPartDetail.tsx:279 +#: src/pages/company/SupplierPartDetail.tsx:280 #: src/pages/part/PartPricingPanel.tsx:113 #: src/pages/part/pricing/PricingOverviewPanel.tsx:239 msgid "Supplier Pricing" msgstr "" -#: src/pages/company/SupplierPartDetail.tsx:308 +#: src/pages/company/SupplierPartDetail.tsx:313 msgid "Supplier Part Actions" msgstr "" -#: src/pages/company/SupplierPartDetail.tsx:332 +#: src/pages/company/SupplierPartDetail.tsx:337 #: src/tables/purchasing/SupplierPartTable.tsx:244 msgid "Edit Supplier Part" msgstr "" -#: src/pages/company/SupplierPartDetail.tsx:340 +#: src/pages/company/SupplierPartDetail.tsx:345 #: src/tables/purchasing/SupplierPartTable.tsx:264 msgid "Delete Supplier Part" msgstr "" -#: src/pages/company/SupplierPartDetail.tsx:348 +#: src/pages/company/SupplierPartDetail.tsx:353 #: src/tables/purchasing/SupplierPartTable.tsx:172 #: src/tables/purchasing/SupplierPartTable.tsx:251 msgid "Add Supplier Part" msgstr "" -#: src/pages/company/SupplierPartDetail.tsx:388 -#: src/pages/part/PartDetail.tsx:1003 +#: src/pages/company/SupplierPartDetail.tsx:393 +#: src/pages/part/PartDetail.tsx:1018 msgid "No Stock" msgstr "" @@ -7411,83 +7495,83 @@ msgstr "" msgid "Basic user" msgstr "" -#: src/pages/part/CategoryDetail.tsx:100 +#: src/pages/part/CategoryDetail.tsx:103 #: src/pages/stock/LocationDetail.tsx:94 #: src/tables/settings/ErrorTable.tsx:63 #: src/tables/settings/ErrorTable.tsx:108 msgid "Path" msgstr "" -#: src/pages/part/CategoryDetail.tsx:116 +#: src/pages/part/CategoryDetail.tsx:119 msgid "Parent Category" msgstr "" -#: src/pages/part/CategoryDetail.tsx:139 -#: src/pages/part/CategoryDetail.tsx:271 +#: src/pages/part/CategoryDetail.tsx:142 +#: src/pages/part/CategoryDetail.tsx:279 msgid "Subcategories" msgstr "" -#: src/pages/part/CategoryDetail.tsx:146 +#: src/pages/part/CategoryDetail.tsx:149 #: src/pages/stock/LocationDetail.tsx:134 #: src/tables/part/PartCategoryTable.tsx:89 #: src/tables/stock/StockLocationTable.tsx:43 msgid "Structural" msgstr "" -#: src/pages/part/CategoryDetail.tsx:152 +#: src/pages/part/CategoryDetail.tsx:155 msgid "Parent default location" msgstr "" -#: src/pages/part/CategoryDetail.tsx:159 +#: src/pages/part/CategoryDetail.tsx:162 msgid "Default location" msgstr "" -#: src/pages/part/CategoryDetail.tsx:170 +#: src/pages/part/CategoryDetail.tsx:173 msgid "Top level part category" msgstr "" -#: src/pages/part/CategoryDetail.tsx:180 -#: src/pages/part/CategoryDetail.tsx:248 +#: src/pages/part/CategoryDetail.tsx:183 +#: src/pages/part/CategoryDetail.tsx:251 #: src/tables/part/PartCategoryTable.tsx:122 msgid "Edit Part Category" msgstr "" -#: src/pages/part/CategoryDetail.tsx:189 +#: src/pages/part/CategoryDetail.tsx:192 msgid "Move items to parent category" msgstr "" -#: src/pages/part/CategoryDetail.tsx:193 +#: src/pages/part/CategoryDetail.tsx:196 #: src/pages/stock/LocationDetail.tsx:226 msgid "Delete items" msgstr "" -#: src/pages/part/CategoryDetail.tsx:201 -#: src/pages/part/CategoryDetail.tsx:253 +#: src/pages/part/CategoryDetail.tsx:204 +#: src/pages/part/CategoryDetail.tsx:256 msgid "Delete Part Category" msgstr "" -#: src/pages/part/CategoryDetail.tsx:204 +#: src/pages/part/CategoryDetail.tsx:207 msgid "Parts Action" msgstr "" -#: src/pages/part/CategoryDetail.tsx:205 +#: src/pages/part/CategoryDetail.tsx:208 msgid "Action for parts in this category" msgstr "" -#: src/pages/part/CategoryDetail.tsx:211 +#: src/pages/part/CategoryDetail.tsx:214 msgid "Child Categories Action" msgstr "" -#: src/pages/part/CategoryDetail.tsx:212 +#: src/pages/part/CategoryDetail.tsx:215 msgid "Action for child categories in this category" msgstr "" -#: src/pages/part/CategoryDetail.tsx:244 +#: src/pages/part/CategoryDetail.tsx:247 #: src/tables/part/PartCategoryTable.tsx:143 msgid "Category Actions" msgstr "" -#: src/pages/part/CategoryDetail.tsx:265 +#: src/pages/part/CategoryDetail.tsx:273 msgid "Category Details" msgstr "" @@ -7585,7 +7669,6 @@ msgid "Category Default Location" msgstr "" #: src/pages/part/PartDetail.tsx:507 -#: src/tables/purchasing/ManufacturerPartParameterTable.tsx:48 msgid "Units" msgstr "" @@ -7600,7 +7683,7 @@ msgstr "" #: src/pages/part/PartDetail.tsx:542 #: src/tables/bom/BomTable.tsx:439 -#: src/tables/build/BuildLineTable.tsx:305 +#: src/tables/build/BuildLineTable.tsx:306 #: src/tables/part/PartTable.tsx:319 #: src/tables/sales/SalesOrderLineItemTable.tsx:138 msgid "Available Stock" @@ -7608,7 +7691,7 @@ msgstr "" #: src/pages/part/PartDetail.tsx:548 #: src/tables/bom/BomTable.tsx:341 -#: src/tables/build/BuildLineTable.tsx:267 +#: src/tables/build/BuildLineTable.tsx:268 #: src/tables/sales/SalesOrderLineItemTable.tsx:180 msgid "On order" msgstr "" @@ -7634,7 +7717,7 @@ msgstr "" #~ msgstr "Scheduling" #: src/pages/part/PartDetail.tsx:620 -#: src/tables/part/ParametricPartTable.tsx:359 +#: src/tables/part/ParametricPartTable.tsx:24 #: src/tables/part/PartTable.tsx:203 msgid "Locked" msgstr "" @@ -7671,16 +7754,16 @@ msgid "Saleable Part" msgstr "" #: src/pages/part/PartDetail.tsx:663 -#: src/pages/part/PartDetail.tsx:1033 +#: src/pages/part/PartDetail.tsx:1054 #: src/tables/bom/BomTable.tsx:150 #: src/tables/bom/BomTable.tsx:434 msgid "Virtual Part" msgstr "" #: src/pages/part/PartDetail.tsx:678 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:271 -#: src/pages/sales/ReturnOrderDetail.tsx:249 -#: src/pages/sales/SalesOrderDetail.tsx:242 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:272 +#: src/pages/sales/ReturnOrderDetail.tsx:250 +#: src/pages/sales/SalesOrderDetail.tsx:243 #: src/tables/ColumnRenderers.tsx:502 msgid "Creation Date" msgstr "" @@ -7718,35 +7801,46 @@ msgstr "" msgid "Select Part Revision" msgstr "" -#: src/pages/part/PartDetail.tsx:823 +#: src/pages/part/PartDetail.tsx:812 msgid "Variants" msgstr "" -#: src/pages/part/PartDetail.tsx:830 +#: src/pages/part/PartDetail.tsx:819 #: src/pages/stock/StockDetail.tsx:542 msgid "Allocations" msgstr "" -#: src/pages/part/PartDetail.tsx:837 +#: src/pages/part/PartDetail.tsx:826 msgid "Bill of Materials" msgstr "" -#: src/pages/part/PartDetail.tsx:849 +#: src/pages/part/PartDetail.tsx:838 msgid "Used In" msgstr "" -#: src/pages/part/PartDetail.tsx:856 +#: src/pages/part/PartDetail.tsx:845 msgid "Part Pricing" msgstr "" -#: src/pages/part/PartDetail.tsx:926 +#: src/pages/part/PartDetail.tsx:915 msgid "Test Templates" msgstr "" -#: src/pages/part/PartDetail.tsx:948 +#: src/pages/part/PartDetail.tsx:937 msgid "Related Parts" msgstr "" +#: src/pages/part/PartDetail.tsx:949 +#: src/tables/ColumnRenderers.tsx:73 +#: src/tables/bom/BomTable.tsx:657 +#: src/tables/part/PartTestTemplateTable.tsx:258 +msgid "Part is Locked" +msgstr "" + +#: src/pages/part/PartDetail.tsx:954 +msgid "Part parameters cannot be edited, as the part is locked" +msgstr "" + #: src/pages/part/PartDetail.tsx:956 #~ msgid "Count part stock" #~ msgstr "Count part stock" @@ -7755,42 +7849,46 @@ msgstr "" #~ msgid "Transfer part stock" #~ msgstr "Transfer part stock" -#: src/pages/part/PartDetail.tsx:1009 +#: src/pages/part/PartDetail.tsx:1024 #: src/tables/part/PartTestTemplateTable.tsx:112 #: src/tables/stock/StockItemTestResultTable.tsx:404 msgid "Required" msgstr "" -#: src/pages/part/PartDetail.tsx:1058 +#: src/pages/part/PartDetail.tsx:1042 +msgid "Deficit" +msgstr "" + +#: src/pages/part/PartDetail.tsx:1079 #: src/tables/part/PartTable.tsx:396 #: src/tables/part/PartTable.tsx:449 msgid "Add Part" msgstr "" -#: src/pages/part/PartDetail.tsx:1072 +#: src/pages/part/PartDetail.tsx:1093 msgid "Delete Part" msgstr "" -#: src/pages/part/PartDetail.tsx:1081 +#: src/pages/part/PartDetail.tsx:1102 msgid "Deleting this part cannot be reversed" msgstr "" -#: src/pages/part/PartDetail.tsx:1143 +#: src/pages/part/PartDetail.tsx:1164 #: src/pages/stock/StockDetail.tsx:883 msgid "Order" msgstr "" -#: src/pages/part/PartDetail.tsx:1144 +#: src/pages/part/PartDetail.tsx:1165 #: src/pages/stock/StockDetail.tsx:884 -#: src/tables/build/BuildLineTable.tsx:761 +#: src/tables/build/BuildLineTable.tsx:768 msgid "Order Stock" msgstr "" -#: src/pages/part/PartDetail.tsx:1156 +#: src/pages/part/PartDetail.tsx:1177 msgid "Search by serial number" msgstr "" -#: src/pages/part/PartDetail.tsx:1164 +#: src/pages/part/PartDetail.tsx:1185 #: src/tables/part/PartTable.tsx:506 msgid "Part Actions" msgstr "" @@ -8039,7 +8137,7 @@ msgstr "" #: src/pages/part/pricing/PricingOverviewPanel.tsx:288 #: src/pages/stock/StockDetail.tsx:426 -#: src/tables/part/PartParameterTable.tsx:121 +#: src/tables/general/ParameterTable.tsx:101 #: src/tables/stock/StockItemTable.tsx:300 msgid "Last Updated" msgstr "" @@ -8107,17 +8205,17 @@ msgstr "" msgid "Variant Part" msgstr "" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:89 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:90 msgid "Edit Purchase Order" msgstr "" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:125 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:126 #: src/tables/purchasing/PurchaseOrderTable.tsx:154 #: src/tables/purchasing/PurchaseOrderTable.tsx:167 msgid "Add Purchase Order" msgstr "" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:147 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:148 msgid "Supplier Reference" msgstr "" @@ -8127,20 +8225,20 @@ msgstr "" #~ msgid "Order Currency," #~ msgstr "Order Currency," -#: src/pages/purchasing/PurchaseOrderDetail.tsx:187 -#: src/pages/sales/ReturnOrderDetail.tsx:160 -#: src/pages/sales/SalesOrderDetail.tsx:144 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:188 +#: src/pages/sales/ReturnOrderDetail.tsx:161 +#: src/pages/sales/SalesOrderDetail.tsx:145 msgid "Completed Line Items" msgstr "" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:196 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:197 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:272 msgid "Destination" msgstr "" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:202 -#: src/pages/sales/ReturnOrderDetail.tsx:167 -#: src/pages/sales/SalesOrderDetail.tsx:161 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:203 +#: src/pages/sales/ReturnOrderDetail.tsx:168 +#: src/pages/sales/SalesOrderDetail.tsx:162 msgid "Order Currency" msgstr "" @@ -8150,97 +8248,97 @@ msgstr "" #~ msgid "Created On" #~ msgstr "Created On" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:208 -#: src/pages/sales/ReturnOrderDetail.tsx:174 -#: src/pages/sales/SalesOrderDetail.tsx:167 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:209 +#: src/pages/sales/ReturnOrderDetail.tsx:175 +#: src/pages/sales/SalesOrderDetail.tsx:168 msgid "Total Cost" msgstr "" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:237 -#: src/pages/sales/ReturnOrderDetail.tsx:215 -#: src/pages/sales/SalesOrderDetail.tsx:208 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:238 +#: src/pages/sales/ReturnOrderDetail.tsx:216 +#: src/pages/sales/SalesOrderDetail.tsx:209 msgid "Contact Email" msgstr "" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:245 -#: src/pages/sales/ReturnOrderDetail.tsx:223 -#: src/pages/sales/SalesOrderDetail.tsx:216 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:246 +#: src/pages/sales/ReturnOrderDetail.tsx:224 +#: src/pages/sales/SalesOrderDetail.tsx:217 msgid "Contact Phone" msgstr "" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:278 -#: src/pages/sales/ReturnOrderDetail.tsx:257 -#: src/pages/sales/SalesOrderDetail.tsx:249 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:279 +#: src/pages/sales/ReturnOrderDetail.tsx:258 +#: src/pages/sales/SalesOrderDetail.tsx:250 msgid "Issue Date" msgstr "" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:303 -#: src/pages/sales/ReturnOrderDetail.tsx:281 -#: src/pages/sales/SalesOrderDetail.tsx:272 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:304 +#: src/pages/sales/ReturnOrderDetail.tsx:282 +#: src/pages/sales/SalesOrderDetail.tsx:273 #: src/tables/ColumnRenderers.tsx:510 #: src/tables/build/BuildOrderTable.tsx:137 #: src/tables/part/PartPurchaseOrdersTable.tsx:106 msgid "Completion Date" msgstr "" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:333 -#: src/pages/sales/ReturnOrderDetail.tsx:311 -#: src/pages/sales/SalesOrderDetail.tsx:349 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:334 +#: src/pages/sales/ReturnOrderDetail.tsx:312 +#: src/pages/sales/SalesOrderDetail.tsx:350 msgid "Order Details" msgstr "" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:339 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:348 -#: src/pages/sales/ReturnOrderDetail.tsx:153 -#: src/pages/sales/ReturnOrderDetail.tsx:317 -#: src/pages/sales/ReturnOrderDetail.tsx:326 -#: src/pages/sales/SalesOrderDetail.tsx:355 -#: src/pages/sales/SalesOrderDetail.tsx:364 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:340 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:349 +#: src/pages/sales/ReturnOrderDetail.tsx:154 +#: src/pages/sales/ReturnOrderDetail.tsx:318 +#: src/pages/sales/ReturnOrderDetail.tsx:327 +#: src/pages/sales/SalesOrderDetail.tsx:356 +#: src/pages/sales/SalesOrderDetail.tsx:365 msgid "Line Items" msgstr "" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:363 -#: src/pages/sales/ReturnOrderDetail.tsx:341 -#: src/pages/sales/SalesOrderDetail.tsx:378 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:364 +#: src/pages/sales/ReturnOrderDetail.tsx:342 +#: src/pages/sales/SalesOrderDetail.tsx:379 msgid "Extra Line Items" msgstr "" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:405 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:410 msgid "Issue Purchase Order" msgstr "" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:413 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:418 msgid "Cancel Purchase Order" msgstr "" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:421 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:426 msgid "Hold Purchase Order" msgstr "" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:429 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:434 msgid "Complete Purchase Order" msgstr "" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:485 -#: src/pages/sales/ReturnOrderDetail.tsx:496 -#: src/pages/sales/SalesOrderDetail.tsx:549 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:490 +#: src/pages/sales/ReturnOrderDetail.tsx:501 +#: src/pages/sales/SalesOrderDetail.tsx:554 msgid "Order Actions" msgstr "" -#: src/pages/sales/ReturnOrderDetail.tsx:114 -#: src/pages/sales/SalesOrderDetail.tsx:104 -#: src/pages/sales/SalesOrderShipmentDetail.tsx:134 +#: src/pages/sales/ReturnOrderDetail.tsx:115 +#: src/pages/sales/SalesOrderDetail.tsx:105 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:132 #: src/tables/sales/SalesOrderTable.tsx:141 msgid "Customer Reference" msgstr "" -#: src/pages/sales/ReturnOrderDetail.tsx:195 +#: src/pages/sales/ReturnOrderDetail.tsx:196 msgid "Return Address" msgstr "" -#: src/pages/sales/ReturnOrderDetail.tsx:201 -#: src/pages/sales/SalesOrderDetail.tsx:194 -#: src/pages/sales/SalesOrderShipmentDetail.tsx:181 +#: src/pages/sales/ReturnOrderDetail.tsx:202 +#: src/pages/sales/SalesOrderDetail.tsx:195 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:179 msgid "Not specified" msgstr "" @@ -8248,117 +8346,117 @@ msgstr "" #~ msgid "Order canceled" #~ msgstr "Order canceled" -#: src/pages/sales/ReturnOrderDetail.tsx:389 +#: src/pages/sales/ReturnOrderDetail.tsx:394 msgid "Edit Return Order" msgstr "" -#: src/pages/sales/ReturnOrderDetail.tsx:407 +#: src/pages/sales/ReturnOrderDetail.tsx:412 #: src/tables/sales/ReturnOrderTable.tsx:154 #: src/tables/sales/ReturnOrderTable.tsx:167 msgid "Add Return Order" msgstr "" -#: src/pages/sales/ReturnOrderDetail.tsx:416 +#: src/pages/sales/ReturnOrderDetail.tsx:421 msgid "Issue Return Order" msgstr "" -#: src/pages/sales/ReturnOrderDetail.tsx:424 +#: src/pages/sales/ReturnOrderDetail.tsx:429 msgid "Cancel Return Order" msgstr "" -#: src/pages/sales/ReturnOrderDetail.tsx:432 +#: src/pages/sales/ReturnOrderDetail.tsx:437 msgid "Hold Return Order" msgstr "" -#: src/pages/sales/ReturnOrderDetail.tsx:440 +#: src/pages/sales/ReturnOrderDetail.tsx:445 msgid "Complete Return Order" msgstr "" -#: src/pages/sales/SalesOrderDetail.tsx:153 +#: src/pages/sales/SalesOrderDetail.tsx:154 msgid "Completed Shipments" msgstr "" -#: src/pages/sales/SalesOrderDetail.tsx:188 -#: src/pages/sales/SalesOrderShipmentDetail.tsx:170 +#: src/pages/sales/SalesOrderDetail.tsx:189 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:168 msgid "Shipping Address" msgstr "" -#: src/pages/sales/SalesOrderDetail.tsx:316 +#: src/pages/sales/SalesOrderDetail.tsx:317 msgid "Edit Sales Order" msgstr "" -#: src/pages/sales/SalesOrderDetail.tsx:338 +#: src/pages/sales/SalesOrderDetail.tsx:339 #: src/tables/sales/SalesOrderTable.tsx:108 #: src/tables/sales/SalesOrderTable.tsx:121 msgid "Add Sales Order" msgstr "" -#: src/pages/sales/SalesOrderDetail.tsx:396 +#: src/pages/sales/SalesOrderDetail.tsx:397 #: src/tables/sales/SalesOrderTable.tsx:147 msgid "Shipments" msgstr "" -#: src/pages/sales/SalesOrderDetail.tsx:443 +#: src/pages/sales/SalesOrderDetail.tsx:448 msgid "Issue Sales Order" msgstr "" -#: src/pages/sales/SalesOrderDetail.tsx:451 +#: src/pages/sales/SalesOrderDetail.tsx:456 msgid "Cancel Sales Order" msgstr "" -#: src/pages/sales/SalesOrderDetail.tsx:459 +#: src/pages/sales/SalesOrderDetail.tsx:464 msgid "Hold Sales Order" msgstr "" -#: src/pages/sales/SalesOrderDetail.tsx:467 +#: src/pages/sales/SalesOrderDetail.tsx:472 msgid "Ship Sales Order" msgstr "" -#: src/pages/sales/SalesOrderDetail.tsx:469 +#: src/pages/sales/SalesOrderDetail.tsx:474 msgid "Ship this order?" msgstr "" -#: src/pages/sales/SalesOrderDetail.tsx:470 +#: src/pages/sales/SalesOrderDetail.tsx:475 msgid "Order shipped" msgstr "" -#: src/pages/sales/SalesOrderDetail.tsx:478 +#: src/pages/sales/SalesOrderDetail.tsx:483 msgid "Complete Sales Order" msgstr "" -#: src/pages/sales/SalesOrderDetail.tsx:523 +#: src/pages/sales/SalesOrderDetail.tsx:528 msgid "Ship Order" msgstr "" -#: src/pages/sales/SalesOrderShipmentDetail.tsx:142 -#: src/tables/sales/SalesOrderShipmentTable.tsx:135 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:140 +#: src/tables/sales/SalesOrderShipmentTable.tsx:156 msgid "Shipment Reference" msgstr "" -#: src/pages/sales/SalesOrderShipmentDetail.tsx:148 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:146 msgid "Tracking Number" msgstr "" -#: src/pages/sales/SalesOrderShipmentDetail.tsx:156 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:154 msgid "Invoice Number" msgstr "" -#: src/pages/sales/SalesOrderShipmentDetail.tsx:191 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:189 msgid "Allocated Items" msgstr "" -#: src/pages/sales/SalesOrderShipmentDetail.tsx:196 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:194 msgid "Checked By" msgstr "" -#: src/pages/sales/SalesOrderShipmentDetail.tsx:202 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:200 msgid "Not checked" msgstr "" -#: src/pages/sales/SalesOrderShipmentDetail.tsx:208 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:206 #: src/tables/ColumnRenderers.tsx:518 #: src/tables/sales/SalesOrderAllocationTable.tsx:182 -#: src/tables/sales/SalesOrderShipmentTable.tsx:168 +#: src/tables/sales/SalesOrderShipmentTable.tsx:189 msgid "Shipment Date" msgstr "" @@ -8366,108 +8464,82 @@ msgstr "" #~ msgid "Assigned Items" #~ msgstr "Assigned Items" -#: src/pages/sales/SalesOrderShipmentDetail.tsx:216 -#: src/tables/sales/SalesOrderShipmentTable.tsx:172 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:214 +#: src/tables/sales/SalesOrderShipmentTable.tsx:193 msgid "Delivery Date" msgstr "" -#: src/pages/sales/SalesOrderShipmentDetail.tsx:255 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:253 msgid "Shipment Details" msgstr "" -#: src/pages/sales/SalesOrderShipmentDetail.tsx:294 -#: src/pages/sales/SalesOrderShipmentDetail.tsx:438 -#: src/tables/sales/SalesOrderShipmentTable.tsx:90 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:292 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:406 +#: src/tables/sales/SalesOrderShipmentTable.tsx:97 msgid "Edit Shipment" msgstr "" -#: src/pages/sales/SalesOrderShipmentDetail.tsx:301 -#: src/pages/sales/SalesOrderShipmentDetail.tsx:457 -#: src/tables/sales/SalesOrderShipmentTable.tsx:82 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:299 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:425 +#: src/tables/sales/SalesOrderShipmentTable.tsx:89 msgid "Cancel Shipment" msgstr "" -#: src/pages/sales/SalesOrderShipmentDetail.tsx:314 -#: src/tables/sales/SalesOrderShipmentTable.tsx:98 -#: src/tables/sales/SalesOrderShipmentTable.tsx:193 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:312 +#: src/tables/sales/SalesOrderShipmentTable.tsx:119 +#: src/tables/sales/SalesOrderShipmentTable.tsx:238 msgid "Complete Shipment" msgstr "" -#: src/pages/sales/SalesOrderShipmentDetail.tsx:326 -#: src/pages/sales/SalesOrderShipmentDetail.tsx:328 -msgid "Check Shipment" -msgstr "" - -#: src/pages/sales/SalesOrderShipmentDetail.tsx:329 -msgid "Marking the shipment as checked indicates that you have verified that all items included in this shipment are correct" -msgstr "" - #: src/pages/sales/SalesOrderShipmentDetail.tsx:339 -msgid "Shipment marked as checked" -msgstr "" - -#: src/pages/sales/SalesOrderShipmentDetail.tsx:346 -#: src/pages/sales/SalesOrderShipmentDetail.tsx:348 -msgid "Uncheck Shipment" -msgstr "" - -#: src/pages/sales/SalesOrderShipmentDetail.tsx:349 -msgid "Marking the shipment as unchecked indicates that the shipment requires further verification" -msgstr "" - -#: src/pages/sales/SalesOrderShipmentDetail.tsx:359 -msgid "Shipment marked as unchecked" -msgstr "" - -#: src/pages/sales/SalesOrderShipmentDetail.tsx:371 #: src/tables/part/PartPurchaseOrdersTable.tsx:122 msgid "Pending" msgstr "" -#: src/pages/sales/SalesOrderShipmentDetail.tsx:377 -#: src/tables/sales/SalesOrderShipmentTable.tsx:147 -#: src/tables/sales/SalesOrderShipmentTable.tsx:254 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:345 +#: src/tables/sales/SalesOrderShipmentTable.tsx:168 +#: src/tables/sales/SalesOrderShipmentTable.tsx:299 msgid "Checked" msgstr "" -#: src/pages/sales/SalesOrderShipmentDetail.tsx:383 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:351 msgid "Not Checked" msgstr "" -#: src/pages/sales/SalesOrderShipmentDetail.tsx:389 -#: src/tables/sales/SalesOrderShipmentTable.tsx:154 -#: src/tables/sales/SalesOrderShipmentTable.tsx:259 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:357 +#: src/tables/sales/SalesOrderShipmentTable.tsx:175 +#: src/tables/sales/SalesOrderShipmentTable.tsx:304 msgid "Shipped" msgstr "" -#: src/pages/sales/SalesOrderShipmentDetail.tsx:395 -#: src/tables/sales/SalesOrderShipmentTable.tsx:161 -#: src/tables/sales/SalesOrderShipmentTable.tsx:264 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:363 +#: src/tables/sales/SalesOrderShipmentTable.tsx:182 +#: src/tables/sales/SalesOrderShipmentTable.tsx:309 #: src/tables/settings/EmailTable.tsx:31 msgid "Delivered" msgstr "" -#: src/pages/sales/SalesOrderShipmentDetail.tsx:410 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:378 msgid "Send Shipment" msgstr "" -#: src/pages/sales/SalesOrderShipmentDetail.tsx:433 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:401 msgid "Shipment Actions" msgstr "" -#: src/pages/sales/SalesOrderShipmentDetail.tsx:442 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:410 msgid "Check" msgstr "" -#: src/pages/sales/SalesOrderShipmentDetail.tsx:443 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:411 msgid "Mark shipment as checked" msgstr "" -#: src/pages/sales/SalesOrderShipmentDetail.tsx:449 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:417 msgid "Uncheck" msgstr "" -#: src/pages/sales/SalesOrderShipmentDetail.tsx:450 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:418 msgid "Mark shipment as unchecked" msgstr "" @@ -8775,13 +8847,6 @@ msgstr "" msgid "Part is not active" msgstr "" -#: src/tables/ColumnRenderers.tsx:73 -#: src/tables/bom/BomTable.tsx:657 -#: src/tables/part/PartParameterTable.tsx:227 -#: src/tables/part/PartTestTemplateTable.tsx:258 -msgid "Part is Locked" -msgstr "" - #: src/tables/ColumnRenderers.tsx:78 msgid "You are subscribed to notifications for this part" msgstr "" @@ -9219,13 +9284,13 @@ msgstr "" #~ msgstr "Show asssmbled items" #: src/tables/bom/BomTable.tsx:315 -#: src/tables/build/BuildLineTable.tsx:276 +#: src/tables/build/BuildLineTable.tsx:277 #: src/tables/part/PartTable.tsx:145 msgid "External stock" msgstr "" #: src/tables/bom/BomTable.tsx:323 -#: src/tables/build/BuildLineTable.tsx:239 +#: src/tables/build/BuildLineTable.tsx:240 msgid "Includes substitute stock" msgstr "" @@ -9234,7 +9299,7 @@ msgstr "" #~ msgstr "Edit Bom Item" #: src/tables/bom/BomTable.tsx:332 -#: src/tables/build/BuildLineTable.tsx:249 +#: src/tables/build/BuildLineTable.tsx:250 #: src/tables/sales/SalesOrderLineItemTable.tsx:166 msgid "Includes variant stock" msgstr "" @@ -9272,8 +9337,8 @@ msgid "Stock Information" msgstr "" #: src/tables/bom/BomTable.tsx:399 -#: src/tables/build/BuildLineTable.tsx:496 -#: src/tables/build/BuildLineTable.tsx:537 +#: src/tables/build/BuildLineTable.tsx:497 +#: src/tables/build/BuildLineTable.tsx:538 msgid "Consumable item" msgstr "" @@ -9282,7 +9347,7 @@ msgid "No available stock" msgstr "" #: src/tables/bom/BomTable.tsx:420 -#: src/tables/build/BuildLineTable.tsx:213 +#: src/tables/build/BuildLineTable.tsx:214 msgid "Show testable items" msgstr "" @@ -9291,7 +9356,7 @@ msgid "Show trackable items" msgstr "" #: src/tables/bom/BomTable.tsx:430 -#: src/tables/build/BuildLineTable.tsx:208 +#: src/tables/build/BuildLineTable.tsx:209 msgid "Show assembled items" msgstr "" @@ -9335,7 +9400,7 @@ msgstr "" #: src/tables/bom/BomTable.tsx:464 #: src/tables/bom/UsedInTable.tsx:85 -#: src/tables/build/BuildLineTable.tsx:202 +#: src/tables/build/BuildLineTable.tsx:203 msgid "Optional" msgstr "" @@ -9345,7 +9410,7 @@ msgid "Show optional items" msgstr "" #: src/tables/bom/BomTable.tsx:469 -#: src/tables/build/BuildLineTable.tsx:197 +#: src/tables/build/BuildLineTable.tsx:198 msgid "Consumable" msgstr "" @@ -9420,6 +9485,7 @@ msgid "Add a single BOM item" msgstr "" #: src/tables/bom/BomTable.tsx:637 +#: src/tables/general/ParameterTable.tsx:206 #: src/tables/part/PartTable.tsx:546 msgid "Import from File" msgstr "" @@ -9433,8 +9499,8 @@ msgid "Bill of materials cannot be edited, as the part is locked" msgstr "" #: src/tables/bom/UsedInTable.tsx:34 -#: src/tables/build/BuildLineTable.tsx:207 -#: src/tables/part/ParametricPartTable.tsx:364 +#: src/tables/build/BuildLineTable.tsx:208 +#: src/tables/part/ParametricPartTable.tsx:29 #: src/tables/part/PartBuildAllocationsTable.tsx:60 #: src/tables/part/PartTable.tsx:209 #: src/tables/stock/StockItemTable.tsx:333 @@ -9455,11 +9521,11 @@ msgstr "" msgid "Show trackable assemblies" msgstr "" -#: src/tables/build/BuildAllocatedStockTable.tsx:67 +#: src/tables/build/BuildAllocatedStockTable.tsx:64 msgid "Allocated to Output" msgstr "" -#: src/tables/build/BuildAllocatedStockTable.tsx:68 +#: src/tables/build/BuildAllocatedStockTable.tsx:65 msgid "Show items allocated to a build output" msgstr "" @@ -9472,50 +9538,68 @@ msgstr "" #~ msgid "Include orders for part variants" #~ msgstr "Include orders for part variants" -#: src/tables/build/BuildAllocatedStockTable.tsx:97 +#: src/tables/build/BuildAllocatedStockTable.tsx:94 #: src/tables/part/PartBuildAllocationsTable.tsx:84 #: src/tables/part/PartPurchaseOrdersTable.tsx:132 #: src/tables/part/PartSalesAllocationsTable.tsx:69 #: src/tables/sales/SalesOrderAllocationTable.tsx:122 -#: src/tables/sales/SalesOrderShipmentTable.tsx:130 +#: src/tables/sales/SalesOrderShipmentTable.tsx:151 msgid "Order Status" msgstr "" +#: src/tables/build/BuildAllocatedStockTable.tsx:164 +#: src/tables/build/BuildLineTable.tsx:651 +msgid "Edit Stock Allocation" +msgstr "" + #: src/tables/build/BuildAllocatedStockTable.tsx:164 #~ msgid "Edit Build Item" #~ msgstr "Edit Build Item" -#: src/tables/build/BuildAllocatedStockTable.tsx:167 -#: src/tables/build/BuildLineTable.tsx:650 -msgid "Edit Stock Allocation" -msgstr "" - #: src/tables/build/BuildAllocatedStockTable.tsx:174 #~ msgid "Delete Build Item" #~ msgstr "Delete Build Item" -#: src/tables/build/BuildAllocatedStockTable.tsx:180 -#: src/tables/build/BuildLineTable.tsx:663 -msgid "Delete Stock Allocation" +#: src/tables/build/BuildAllocatedStockTable.tsx:177 +#: src/tables/build/BuildLineTable.tsx:664 +#: src/tables/sales/SalesOrderAllocationTable.tsx:218 +msgid "Remove Allocated Stock" msgstr "" -#: src/tables/build/BuildAllocatedStockTable.tsx:239 +#: src/tables/build/BuildAllocatedStockTable.tsx:180 +#: src/tables/build/BuildLineTable.tsx:663 +#~ msgid "Delete Stock Allocation" +#~ msgstr "Delete Stock Allocation" + +#: src/tables/build/BuildAllocatedStockTable.tsx:182 +#: src/tables/build/BuildLineTable.tsx:669 +#: src/tables/sales/SalesOrderAllocationTable.tsx:221 +msgid "Are you sure you want to remove this allocated stock from the order?" +msgstr "" + +#: src/tables/build/BuildAllocatedStockTable.tsx:242 msgid "Consume" msgstr "" +#: src/tables/build/BuildAllocatedStockTable.tsx:259 +#: src/tables/build/BuildLineTable.tsx:112 +#: src/tables/sales/SalesOrderAllocationTable.tsx:248 +msgid "Remove allocated stock" +msgstr "" + #: src/tables/build/BuildLineTable.tsx:59 #~ msgid "Show lines with available stock" #~ msgstr "Show lines with available stock" -#: src/tables/build/BuildLineTable.tsx:120 +#: src/tables/build/BuildLineTable.tsx:121 msgid "View Stock Item" msgstr "" -#: src/tables/build/BuildLineTable.tsx:183 +#: src/tables/build/BuildLineTable.tsx:184 msgid "Show fully allocated lines" msgstr "" -#: src/tables/build/BuildLineTable.tsx:188 +#: src/tables/build/BuildLineTable.tsx:189 msgid "Show fully consumed lines" msgstr "" @@ -9523,124 +9607,124 @@ msgstr "" #~ msgid "Show allocated lines" #~ msgstr "Show allocated lines" -#: src/tables/build/BuildLineTable.tsx:193 +#: src/tables/build/BuildLineTable.tsx:194 msgid "Show items with sufficient available stock" msgstr "" -#: src/tables/build/BuildLineTable.tsx:198 +#: src/tables/build/BuildLineTable.tsx:199 msgid "Show consumable lines" msgstr "" -#: src/tables/build/BuildLineTable.tsx:203 +#: src/tables/build/BuildLineTable.tsx:204 msgid "Show optional lines" msgstr "" -#: src/tables/build/BuildLineTable.tsx:212 +#: src/tables/build/BuildLineTable.tsx:213 #: src/tables/part/PartTable.tsx:233 msgid "Testable" msgstr "" -#: src/tables/build/BuildLineTable.tsx:217 +#: src/tables/build/BuildLineTable.tsx:218 #: src/tables/stock/StockItemTable.tsx:388 msgid "Tracked" msgstr "" -#: src/tables/build/BuildLineTable.tsx:218 +#: src/tables/build/BuildLineTable.tsx:219 msgid "Show tracked lines" msgstr "" -#: src/tables/build/BuildLineTable.tsx:223 +#: src/tables/build/BuildLineTable.tsx:224 msgid "Show items with stock on order" msgstr "" -#: src/tables/build/BuildLineTable.tsx:258 +#: src/tables/build/BuildLineTable.tsx:259 #: src/tables/sales/SalesOrderLineItemTable.tsx:172 msgid "In production" msgstr "" -#: src/tables/build/BuildLineTable.tsx:286 +#: src/tables/build/BuildLineTable.tsx:287 msgid "Insufficient stock" msgstr "" -#: src/tables/build/BuildLineTable.tsx:302 +#: src/tables/build/BuildLineTable.tsx:303 #: src/tables/sales/SalesOrderLineItemTable.tsx:160 #: src/tables/stock/StockItemTable.tsx:191 msgid "No stock available" msgstr "" -#: src/tables/build/BuildLineTable.tsx:375 +#: src/tables/build/BuildLineTable.tsx:376 msgid "Gets Inherited" msgstr "" -#: src/tables/build/BuildLineTable.tsx:388 +#: src/tables/build/BuildLineTable.tsx:389 msgid "Unit Quantity" msgstr "" -#: src/tables/build/BuildLineTable.tsx:415 +#: src/tables/build/BuildLineTable.tsx:416 msgid "Setup Quantity" msgstr "" -#: src/tables/build/BuildLineTable.tsx:424 +#: src/tables/build/BuildLineTable.tsx:425 msgid "Attrition" msgstr "" -#: src/tables/build/BuildLineTable.tsx:432 +#: src/tables/build/BuildLineTable.tsx:433 msgid "Rounding Multiple" msgstr "" -#: src/tables/build/BuildLineTable.tsx:441 +#: src/tables/build/BuildLineTable.tsx:442 msgid "BOM Information" msgstr "" -#: src/tables/build/BuildLineTable.tsx:515 +#: src/tables/build/BuildLineTable.tsx:516 #: src/tables/part/PartBuildAllocationsTable.tsx:102 msgid "Fully allocated" msgstr "" -#: src/tables/build/BuildLineTable.tsx:563 +#: src/tables/build/BuildLineTable.tsx:564 #: src/tables/sales/SalesOrderLineItemTable.tsx:311 msgid "Create Build Order" msgstr "" -#: src/tables/build/BuildLineTable.tsx:592 +#: src/tables/build/BuildLineTable.tsx:593 msgid "Auto allocation in progress" msgstr "" -#: src/tables/build/BuildLineTable.tsx:595 -#: src/tables/build/BuildLineTable.tsx:802 +#: src/tables/build/BuildLineTable.tsx:596 +#: src/tables/build/BuildLineTable.tsx:809 msgid "Auto Allocate Stock" msgstr "" -#: src/tables/build/BuildLineTable.tsx:596 +#: src/tables/build/BuildLineTable.tsx:597 msgid "Automatically allocate stock to this build according to the selected options" msgstr "" -#: src/tables/build/BuildLineTable.tsx:616 -#: src/tables/build/BuildLineTable.tsx:630 -#: src/tables/build/BuildLineTable.tsx:751 -#: src/tables/build/BuildLineTable.tsx:852 +#: src/tables/build/BuildLineTable.tsx:617 +#: src/tables/build/BuildLineTable.tsx:631 +#: src/tables/build/BuildLineTable.tsx:758 +#: src/tables/build/BuildLineTable.tsx:859 #: src/tables/build/BuildOutputTable.tsx:355 #: src/tables/build/BuildOutputTable.tsx:360 msgid "Deallocate Stock" msgstr "" -#: src/tables/build/BuildLineTable.tsx:632 +#: src/tables/build/BuildLineTable.tsx:633 msgid "Deallocate all untracked stock for this build order" msgstr "" -#: src/tables/build/BuildLineTable.tsx:634 +#: src/tables/build/BuildLineTable.tsx:635 msgid "Deallocate stock from the selected line item" msgstr "" -#: src/tables/build/BuildLineTable.tsx:638 +#: src/tables/build/BuildLineTable.tsx:639 msgid "Stock has been deallocated" msgstr "" -#: src/tables/build/BuildLineTable.tsx:771 +#: src/tables/build/BuildLineTable.tsx:778 msgid "Build Stock" msgstr "" -#: src/tables/build/BuildLineTable.tsx:784 +#: src/tables/build/BuildLineTable.tsx:791 #: src/tables/sales/SalesOrderLineItemTable.tsx:487 msgid "View Part" msgstr "" @@ -9739,7 +9823,7 @@ msgid "Serialize Build Output" msgstr "" #: src/tables/build/BuildOutputTable.tsx:405 -#: src/tables/part/PartTestResultTable.tsx:310 +#: src/tables/part/PartTestResultTable.tsx:318 #: src/tables/stock/StockItemTable.tsx:328 msgid "Filter by stock status" msgstr "" @@ -9964,8 +10048,8 @@ msgid "View Item" msgstr "" #: src/tables/general/ExtraLineItemTable.tsx:95 -#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:299 -#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:403 +#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:300 +#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:405 #: src/tables/sales/ReturnOrderLineItemTable.tsx:83 #: src/tables/sales/ReturnOrderLineItemTable.tsx:187 #: src/tables/sales/SalesOrderLineItemTable.tsx:252 @@ -9974,14 +10058,14 @@ msgid "Add Line Item" msgstr "" #: src/tables/general/ExtraLineItemTable.tsx:108 -#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:320 +#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:322 #: src/tables/sales/ReturnOrderLineItemTable.tsx:96 #: src/tables/sales/SalesOrderLineItemTable.tsx:271 msgid "Edit Line Item" msgstr "" #: src/tables/general/ExtraLineItemTable.tsx:117 -#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:329 +#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:331 #: src/tables/sales/ReturnOrderLineItemTable.tsx:105 #: src/tables/sales/SalesOrderLineItemTable.tsx:280 msgid "Delete Line Item" @@ -9991,6 +10075,137 @@ msgstr "" msgid "Add Extra Line Item" msgstr "" +#: src/tables/general/ParameterTable.tsx:88 +msgid "Internal Units" +msgstr "" + +#: src/tables/general/ParameterTable.tsx:108 +#: src/tables/general/ParameterTable.tsx:123 +msgid "Updated By" +msgstr "" + +#: src/tables/general/ParameterTable.tsx:118 +msgid "Show parameters for enabled templates" +msgstr "" + +#: src/tables/general/ParameterTable.tsx:124 +msgid "Filter by user who last updated the parameter" +msgstr "" + +#: src/tables/general/ParameterTable.tsx:154 +msgid "Import Parameters" +msgstr "" + +#: src/tables/general/ParameterTable.tsx:164 +#: src/tables/general/ParametricDataTable.tsx:261 +#: src/tables/general/ParametricDataTable.tsx:392 +msgid "Add Parameter" +msgstr "" + +#: src/tables/general/ParameterTable.tsx:175 +#: src/tables/general/ParameterTable.tsx:222 +#: src/tables/general/ParametricDataTable.tsx:285 +msgid "Edit Parameter" +msgstr "" + +#: src/tables/general/ParameterTable.tsx:183 +#: src/tables/general/ParameterTable.tsx:230 +msgid "Delete Parameter" +msgstr "" + +#: src/tables/general/ParameterTable.tsx:191 +msgid "Add Parameters" +msgstr "" + +#: src/tables/general/ParameterTable.tsx:197 +msgid "Create Parameter" +msgstr "" + +#: src/tables/general/ParameterTable.tsx:199 +msgid "Create a new parameter" +msgstr "" + +#: src/tables/general/ParameterTable.tsx:208 +msgid "Import parameters from a file" +msgstr "" + +#: src/tables/general/ParameterTemplateTable.tsx:48 +#: src/tables/general/ParameterTemplateTable.tsx:197 +msgid "Add Parameter Template" +msgstr "" + +#: src/tables/general/ParameterTemplateTable.tsx:64 +msgid "Duplicate Parameter Template" +msgstr "" + +#: src/tables/general/ParameterTemplateTable.tsx:78 +msgid "Delete Parameter Template" +msgstr "" + +#: src/tables/general/ParameterTemplateTable.tsx:85 +msgid "Edit Parameter Template" +msgstr "" + +#: src/tables/general/ParameterTemplateTable.tsx:138 +msgid "Checkbox" +msgstr "" + +#: src/tables/general/ParameterTemplateTable.tsx:139 +msgid "Show checkbox templates" +msgstr "" + +#: src/tables/general/ParameterTemplateTable.tsx:143 +msgid "Has choices" +msgstr "" + +#: src/tables/general/ParameterTemplateTable.tsx:144 +msgid "Show templates with choices" +msgstr "" + +#: src/tables/general/ParameterTemplateTable.tsx:148 +#: src/tables/part/PartTable.tsx:245 +msgid "Has Units" +msgstr "" + +#: src/tables/general/ParameterTemplateTable.tsx:149 +msgid "Show templates with units" +msgstr "" + +#: src/tables/general/ParameterTemplateTable.tsx:154 +msgid "Show enabled templates" +msgstr "" + +#: src/tables/general/ParameterTemplateTable.tsx:158 +#: src/tables/settings/ImportSessionTable.tsx:111 +#: src/tables/settings/TemplateTable.tsx:368 +msgid "Model Type" +msgstr "" + +#: src/tables/general/ParameterTemplateTable.tsx:159 +msgid "Filter by model type" +msgstr "" + +#: src/tables/general/ParametricDataTable.tsx:79 +msgid "Click to edit" +msgstr "" + +#: src/tables/general/ParametricDataTableFilters.tsx:36 +msgid "True" +msgstr "" + +#: src/tables/general/ParametricDataTableFilters.tsx:37 +msgid "False" +msgstr "" + +#: src/tables/general/ParametricDataTableFilters.tsx:47 +#: src/tables/general/ParametricDataTableFilters.tsx:80 +msgid "Select a choice" +msgstr "" + +#: src/tables/general/ParametricDataTableFilters.tsx:100 +msgid "Enter a value" +msgstr "" + #: src/tables/machine/MachineListTable.tsx:133 msgid "Machine restarted" msgstr "" @@ -10071,7 +10286,7 @@ msgid "Initialized" msgstr "" #: src/tables/machine/MachineListTable.tsx:410 -#: src/tables/machine/MachineTypeTable.tsx:307 +#: src/tables/machine/MachineTypeTable.tsx:305 msgid "No errors reported" msgstr "" @@ -10132,15 +10347,15 @@ msgstr "" #~ msgid "Machine type information" #~ msgstr "Machine type information" -#: src/tables/machine/MachineTypeTable.tsx:128 +#: src/tables/machine/MachineTypeTable.tsx:126 msgid "Not Found" msgstr "" -#: src/tables/machine/MachineTypeTable.tsx:131 +#: src/tables/machine/MachineTypeTable.tsx:129 msgid "Machine type not found." msgstr "" -#: src/tables/machine/MachineTypeTable.tsx:141 +#: src/tables/machine/MachineTypeTable.tsx:139 msgid "Machine Type Information" msgstr "" @@ -10148,34 +10363,34 @@ msgstr "" #~ msgid "Available drivers" #~ msgstr "Available drivers" -#: src/tables/machine/MachineTypeTable.tsx:156 -#: src/tables/machine/MachineTypeTable.tsx:255 +#: src/tables/machine/MachineTypeTable.tsx:154 +#: src/tables/machine/MachineTypeTable.tsx:253 msgid "Slug" msgstr "" -#: src/tables/machine/MachineTypeTable.tsx:167 -#: src/tables/machine/MachineTypeTable.tsx:276 +#: src/tables/machine/MachineTypeTable.tsx:165 +#: src/tables/machine/MachineTypeTable.tsx:274 msgid "Provider plugin" msgstr "" -#: src/tables/machine/MachineTypeTable.tsx:179 -#: src/tables/machine/MachineTypeTable.tsx:288 +#: src/tables/machine/MachineTypeTable.tsx:177 +#: src/tables/machine/MachineTypeTable.tsx:286 msgid "Provider file" msgstr "" -#: src/tables/machine/MachineTypeTable.tsx:194 +#: src/tables/machine/MachineTypeTable.tsx:192 msgid "Available Drivers" msgstr "" -#: src/tables/machine/MachineTypeTable.tsx:234 +#: src/tables/machine/MachineTypeTable.tsx:232 msgid "Machine driver not found." msgstr "" -#: src/tables/machine/MachineTypeTable.tsx:242 +#: src/tables/machine/MachineTypeTable.tsx:240 msgid "Machine driver information" msgstr "" -#: src/tables/machine/MachineTypeTable.tsx:262 +#: src/tables/machine/MachineTypeTable.tsx:260 msgid "Machine type" msgstr "" @@ -10187,15 +10402,15 @@ msgstr "" #~ msgid "Machine driver detail" #~ msgstr "Machine driver detail" -#: src/tables/machine/MachineTypeTable.tsx:362 +#: src/tables/machine/MachineTypeTable.tsx:360 msgid "Builtin type" msgstr "" -#: src/tables/machine/MachineTypeTable.tsx:371 +#: src/tables/machine/MachineTypeTable.tsx:369 msgid "Machine Type Detail" msgstr "" -#: src/tables/machine/MachineTypeTable.tsx:381 +#: src/tables/machine/MachineTypeTable.tsx:379 msgid "Machine Driver Detail" msgstr "" @@ -10213,8 +10428,16 @@ msgstr "" msgid "Message" msgstr "" -#: src/tables/part/ParametricPartTable.tsx:78 -msgid "Click to edit" +#: src/tables/part/ParametricPartTable.tsx:20 +msgid "Show active parts" +msgstr "" + +#: src/tables/part/ParametricPartTable.tsx:25 +msgid "Show locked parts" +msgstr "" + +#: src/tables/part/ParametricPartTable.tsx:30 +msgid "Show assembly parts" msgstr "" #: src/tables/part/ParametricPartTable.tsx:82 @@ -10222,43 +10445,14 @@ msgstr "" #~ msgstr "Edit parameter" #: src/tables/part/ParametricPartTable.tsx:244 -msgid "Add Part Parameter" -msgstr "" +#~ msgid "Add Part Parameter" +#~ msgstr "Add Part Parameter" #: src/tables/part/ParametricPartTable.tsx:258 #: src/tables/part/PartParameterTable.tsx:164 #: src/tables/part/PartParameterTable.tsx:187 -msgid "Edit Part Parameter" -msgstr "" - -#: src/tables/part/ParametricPartTable.tsx:355 -msgid "Show active parts" -msgstr "" - -#: src/tables/part/ParametricPartTable.tsx:360 -msgid "Show locked parts" -msgstr "" - -#: src/tables/part/ParametricPartTable.tsx:365 -msgid "Show assembly parts" -msgstr "" - -#: src/tables/part/ParametricPartTableFilters.tsx:36 -msgid "True" -msgstr "" - -#: src/tables/part/ParametricPartTableFilters.tsx:37 -msgid "False" -msgstr "" - -#: src/tables/part/ParametricPartTableFilters.tsx:47 -#: src/tables/part/ParametricPartTableFilters.tsx:80 -msgid "Select a choice" -msgstr "" - -#: src/tables/part/ParametricPartTableFilters.tsx:100 -msgid "Enter a value" -msgstr "" +#~ msgid "Edit Part Parameter" +#~ msgstr "Edit Part Parameter" #: src/tables/part/PartBuildAllocationsTable.tsx:64 msgid "Assembly IPN" @@ -10273,7 +10467,7 @@ msgid "Required Stock" msgstr "" #: src/tables/part/PartBuildAllocationsTable.tsx:124 -#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:381 +#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:383 msgid "View Build Order" msgstr "" @@ -10332,85 +10526,22 @@ msgstr "" msgid "Delete Category Parameter" msgstr "" -#: src/tables/part/PartCategoryTemplateTable.tsx:87 -msgid "Parameter Template" -msgstr "" - #: src/tables/part/PartCategoryTemplateTable.tsx:93 #~ msgid "[{0}]" #~ msgstr "[{0}]" -#: src/tables/part/PartParameterTable.tsx:108 -msgid "Internal Units" -msgstr "" - -#: src/tables/part/PartParameterTable.tsx:128 -#: src/tables/part/PartParameterTable.tsx:138 -msgid "Updated By" -msgstr "" - -#: src/tables/part/PartParameterTable.tsx:139 -msgid "Filter by user who last updated the parameter" -msgstr "" - #: src/tables/part/PartParameterTable.tsx:148 -msgid "New Part Parameter" -msgstr "" +#~ msgid "New Part Parameter" +#~ msgstr "New Part Parameter" #: src/tables/part/PartParameterTable.tsx:173 #: src/tables/part/PartParameterTable.tsx:195 -msgid "Delete Part Parameter" -msgstr "" +#~ msgid "Delete Part Parameter" +#~ msgstr "Delete Part Parameter" #: src/tables/part/PartParameterTable.tsx:213 -msgid "Add parameter" -msgstr "" - -#: src/tables/part/PartParameterTable.tsx:232 -msgid "Part parameters cannot be edited, as the part is locked" -msgstr "" - -#: src/tables/part/PartParameterTemplateTable.tsx:36 -msgid "Checkbox" -msgstr "" - -#: src/tables/part/PartParameterTemplateTable.tsx:37 -msgid "Show checkbox templates" -msgstr "" - -#: src/tables/part/PartParameterTemplateTable.tsx:41 -msgid "Has choices" -msgstr "" - -#: src/tables/part/PartParameterTemplateTable.tsx:42 -msgid "Show templates with choices" -msgstr "" - -#: src/tables/part/PartParameterTemplateTable.tsx:46 -#: src/tables/part/PartTable.tsx:245 -msgid "Has Units" -msgstr "" - -#: src/tables/part/PartParameterTemplateTable.tsx:47 -msgid "Show templates with units" -msgstr "" - -#: src/tables/part/PartParameterTemplateTable.tsx:91 -#: src/tables/part/PartParameterTemplateTable.tsx:166 -msgid "Add Parameter Template" -msgstr "" - -#: src/tables/part/PartParameterTemplateTable.tsx:105 -msgid "Duplicate Parameter Template" -msgstr "" - -#: src/tables/part/PartParameterTemplateTable.tsx:117 -msgid "Edit Parameter Template" -msgstr "" - -#: src/tables/part/PartParameterTemplateTable.tsx:128 -msgid "Delete Parameter Template" -msgstr "" +#~ msgid "Add parameter" +#~ msgstr "Add parameter" #: src/tables/part/PartParameterTemplateTable.tsx:141 #~ msgid "Add parameter template" @@ -10430,7 +10561,7 @@ msgid "Show received items" msgstr "" #: src/tables/part/PartSalesAllocationsTable.tsx:90 -#: src/tables/sales/SalesOrderShipmentTable.tsx:218 +#: src/tables/sales/SalesOrderShipmentTable.tsx:263 msgid "View Sales Order" msgstr "" @@ -10617,8 +10748,8 @@ msgstr "" #: src/tables/part/PartTestResultTable.tsx:103 #: src/tables/part/PartTestResultTable.tsx:181 -#: src/tables/part/PartTestResultTable.tsx:320 -#: src/tables/part/PartTestResultTable.tsx:334 +#: src/tables/part/PartTestResultTable.tsx:328 +#: src/tables/part/PartTestResultTable.tsx:342 #: src/tables/stock/StockItemTestResultTable.tsx:296 #: src/tables/stock/StockItemTestResultTable.tsx:368 #: src/tables/stock/StockItemTestResultTable.tsx:429 @@ -10643,7 +10774,7 @@ msgstr "" msgid "No Result" msgstr "" -#: src/tables/part/PartTestResultTable.tsx:298 +#: src/tables/part/PartTestResultTable.tsx:306 msgid "Show build outputs currently in production" msgstr "" @@ -11013,36 +11144,45 @@ msgstr "" #~ msgid "Parameter updated" #~ msgstr "Parameter updated" -#: src/tables/purchasing/ManufacturerPartParameterTable.tsx:63 -#: src/tables/purchasing/ManufacturerPartParameterTable.tsx:112 -msgid "Add Parameter" -msgstr "" - #: src/tables/purchasing/ManufacturerPartParameterTable.tsx:73 #~ msgid "Parameter deleted" #~ msgstr "Parameter deleted" -#: src/tables/purchasing/ManufacturerPartParameterTable.tsx:74 -msgid "Edit Parameter" -msgstr "" - #: src/tables/purchasing/ManufacturerPartParameterTable.tsx:74 #~ msgid "Are you sure you want to delete this parameter?" #~ msgstr "Are you sure you want to delete this parameter?" -#: src/tables/purchasing/ManufacturerPartParameterTable.tsx:82 -msgid "Delete Parameter" +#: src/tables/purchasing/ManufacturerPartParametricTable.tsx:34 +#: src/tables/purchasing/ManufacturerPartTable.tsx:82 +#: src/tables/purchasing/SupplierPartTable.tsx:99 +msgid "MPN" +msgstr "" + +#: src/tables/purchasing/ManufacturerPartParametricTable.tsx:44 +#: src/tables/purchasing/ManufacturerPartTable.tsx:134 +#: src/tables/purchasing/SupplierPartTable.tsx:220 +msgid "Active Part" +msgstr "" + +#: src/tables/purchasing/ManufacturerPartParametricTable.tsx:45 +#: src/tables/purchasing/ManufacturerPartTable.tsx:135 +msgid "Show manufacturer parts for active internal parts." +msgstr "" + +#: src/tables/purchasing/ManufacturerPartParametricTable.tsx:50 +#: src/tables/purchasing/ManufacturerPartTable.tsx:140 +msgid "Active Manufacturer" +msgstr "" + +#: src/tables/purchasing/ManufacturerPartParametricTable.tsx:51 +#: src/tables/purchasing/ManufacturerPartTable.tsx:142 +msgid "Show manufacturer parts for active manufacturers." msgstr "" #: src/tables/purchasing/ManufacturerPartTable.tsx:63 #~ msgid "Create Manufacturer Part" #~ msgstr "Create Manufacturer Part" -#: src/tables/purchasing/ManufacturerPartTable.tsx:82 -#: src/tables/purchasing/SupplierPartTable.tsx:99 -msgid "MPN" -msgstr "" - #: src/tables/purchasing/ManufacturerPartTable.tsx:100 #~ msgid "Manufacturer part updated" #~ msgstr "Manufacturer part updated" @@ -11055,25 +11195,8 @@ msgstr "" #~ msgid "Are you sure you want to remove this manufacturer part?" #~ msgstr "Are you sure you want to remove this manufacturer part?" -#: src/tables/purchasing/ManufacturerPartTable.tsx:134 -#: src/tables/purchasing/SupplierPartTable.tsx:220 -msgid "Active Part" -msgstr "" - -#: src/tables/purchasing/ManufacturerPartTable.tsx:135 -msgid "Show manufacturer parts for active internal parts." -msgstr "" - -#: src/tables/purchasing/ManufacturerPartTable.tsx:140 -msgid "Active Manufacturer" -msgstr "" - -#: src/tables/purchasing/ManufacturerPartTable.tsx:142 -msgid "Show manufacturer parts for active manufacturers." -msgstr "" - #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:115 -#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:397 +#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:399 msgid "Import Line Items" msgstr "" @@ -11099,11 +11222,11 @@ msgstr "" #~ msgid "Add line item" #~ msgstr "Add line item" -#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:350 +#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:352 msgid "Receive line item" msgstr "" -#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:414 +#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:416 msgid "Receive items" msgstr "" @@ -11201,25 +11324,25 @@ msgid "Not shipped" msgstr "" #: src/tables/sales/SalesOrderAllocationTable.tsx:211 -#: src/tables/sales/SalesOrderAllocationTable.tsx:229 +#: src/tables/sales/SalesOrderAllocationTable.tsx:235 msgid "Edit Allocation" msgstr "" #: src/tables/sales/SalesOrderAllocationTable.tsx:218 #: src/tables/sales/SalesOrderAllocationTable.tsx:241 -msgid "Delete Allocation" -msgstr "" +#~ msgid "Delete Allocation" +#~ msgstr "Delete Allocation" -#: src/tables/sales/SalesOrderAllocationTable.tsx:252 -#: src/tables/sales/SalesOrderAllocationTable.tsx:253 +#: src/tables/sales/SalesOrderAllocationTable.tsx:261 +#: src/tables/sales/SalesOrderAllocationTable.tsx:262 msgid "View Shipment" msgstr "" -#: src/tables/sales/SalesOrderAllocationTable.tsx:308 +#: src/tables/sales/SalesOrderAllocationTable.tsx:317 msgid "Assign to Shipment" msgstr "" -#: src/tables/sales/SalesOrderAllocationTable.tsx:324 +#: src/tables/sales/SalesOrderAllocationTable.tsx:333 msgid "Assign to shipment" msgstr "" @@ -11259,35 +11382,35 @@ msgstr "" #~ msgid "Delete Shipment" #~ msgstr "Delete Shipment" -#: src/tables/sales/SalesOrderShipmentTable.tsx:72 +#: src/tables/sales/SalesOrderShipmentTable.tsx:79 msgid "Create Shipment" msgstr "" -#: src/tables/sales/SalesOrderShipmentTable.tsx:143 +#: src/tables/sales/SalesOrderShipmentTable.tsx:164 msgid "Items" msgstr "" -#: src/tables/sales/SalesOrderShipmentTable.tsx:203 +#: src/tables/sales/SalesOrderShipmentTable.tsx:248 msgid "Edit shipment" msgstr "" -#: src/tables/sales/SalesOrderShipmentTable.tsx:211 +#: src/tables/sales/SalesOrderShipmentTable.tsx:256 msgid "Cancel shipment" msgstr "" -#: src/tables/sales/SalesOrderShipmentTable.tsx:241 +#: src/tables/sales/SalesOrderShipmentTable.tsx:286 msgid "Add shipment" msgstr "" -#: src/tables/sales/SalesOrderShipmentTable.tsx:255 +#: src/tables/sales/SalesOrderShipmentTable.tsx:300 msgid "Show shipments which have been checked" msgstr "" -#: src/tables/sales/SalesOrderShipmentTable.tsx:260 +#: src/tables/sales/SalesOrderShipmentTable.tsx:305 msgid "Show shipments which have been shipped" msgstr "" -#: src/tables/sales/SalesOrderShipmentTable.tsx:265 +#: src/tables/sales/SalesOrderShipmentTable.tsx:310 msgid "Show shipments which have been delivered" msgstr "" @@ -11621,11 +11744,6 @@ msgstr "" msgid "Imported Rows" msgstr "" -#: src/tables/settings/ImportSessionTable.tsx:111 -#: src/tables/settings/TemplateTable.tsx:368 -msgid "Model Type" -msgstr "" - #: src/tables/settings/ImportSessionTable.tsx:112 #: src/tables/settings/TemplateTable.tsx:369 msgid "Filter by target model type" diff --git a/src/frontend/src/locales/sl/messages.po b/src/frontend/src/locales/sl/messages.po index f9100c1bf8..2f6d4f9a98 100644 --- a/src/frontend/src/locales/sl/messages.po +++ b/src/frontend/src/locales/sl/messages.po @@ -8,7 +8,7 @@ msgstr "" "Language: sl\n" "Project-Id-Version: inventree\n" "Report-Msgid-Bugs-To: \n" -"PO-Revision-Date: 2025-11-19 19:39\n" +"PO-Revision-Date: 2025-12-07 07:36\n" "Last-Translator: \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" @@ -30,7 +30,7 @@ msgid "Edit" msgstr "" #: lib/components/RowActions.tsx:56 -#: src/components/forms/ApiForm.tsx:735 +#: src/components/forms/ApiForm.tsx:754 #: src/components/items/ActionDropdown.tsx:257 #: src/components/items/RoleTable.tsx:155 #: src/hooks/UseForm.tsx:164 @@ -56,24 +56,24 @@ msgstr "" #: lib/components/RowActions.tsx:136 #: src/components/nav/NavigationDrawer.tsx:190 -#: src/forms/PurchaseOrderForms.tsx:802 +#: src/forms/PurchaseOrderForms.tsx:854 #: src/forms/StockForms.tsx:796 #: src/forms/StockForms.tsx:843 -#: src/forms/StockForms.tsx:889 -#: src/forms/StockForms.tsx:928 -#: src/forms/StockForms.tsx:964 -#: src/forms/StockForms.tsx:1050 +#: src/forms/StockForms.tsx:896 +#: src/forms/StockForms.tsx:942 +#: src/forms/StockForms.tsx:980 +#: src/forms/StockForms.tsx:1066 #: src/pages/Index/Settings/AccountSettings/MFASettings.tsx:962 msgid "Actions" msgstr "" #: lib/components/SearchInput.tsx:34 -#: src/components/forms/fields/RelatedModelField.tsx:408 +#: src/components/forms/fields/RelatedModelField.tsx:479 #: src/components/nav/Header.tsx:169 #: src/components/wizards/ImportPartWizard.tsx:200 #: src/components/wizards/ImportPartWizard.tsx:233 -#: src/pages/Index/Settings/UserSettings.tsx:74 -#: src/pages/part/PartDetail.tsx:1155 +#: src/pages/Index/Settings/UserSettings.tsx:75 +#: src/pages/part/PartDetail.tsx:1176 msgid "Search" msgstr "" @@ -95,7 +95,7 @@ msgstr "" msgid "No" msgstr "" -#: lib/enums/ModelInformation.tsx:28 +#: lib/enums/ModelInformation.tsx:29 #: src/components/wizards/OrderPartsWizard.tsx:279 #: src/forms/BuildForms.tsx:332 #: src/forms/BuildForms.tsx:407 @@ -103,208 +103,234 @@ msgstr "" #: src/forms/BuildForms.tsx:630 #: src/forms/BuildForms.tsx:793 #: src/forms/BuildForms.tsx:896 -#: src/forms/PurchaseOrderForms.tsx:798 +#: src/forms/PurchaseOrderForms.tsx:850 #: src/forms/ReturnOrderForms.tsx:242 -#: src/forms/SalesOrderForms.tsx:305 +#: src/forms/SalesOrderForms.tsx:384 #: src/forms/StockForms.tsx:360 #: src/forms/StockForms.tsx:791 #: src/forms/StockForms.tsx:838 -#: src/forms/StockForms.tsx:884 -#: src/forms/StockForms.tsx:923 -#: src/forms/StockForms.tsx:959 -#: src/forms/StockForms.tsx:1002 -#: src/forms/StockForms.tsx:1046 -#: src/forms/StockForms.tsx:1094 -#: src/forms/StockForms.tsx:1138 -#: src/pages/build/BuildDetail.tsx:200 -#: src/pages/part/PartDetail.tsx:1207 +#: src/forms/StockForms.tsx:891 +#: src/forms/StockForms.tsx:937 +#: src/forms/StockForms.tsx:975 +#: src/forms/StockForms.tsx:1018 +#: src/forms/StockForms.tsx:1062 +#: src/forms/StockForms.tsx:1110 +#: src/forms/StockForms.tsx:1154 +#: src/pages/build/BuildDetail.tsx:201 +#: src/pages/part/PartDetail.tsx:1228 #: src/tables/ColumnRenderers.tsx:91 +#: src/tables/part/PartTestResultTable.tsx:247 #: src/tables/part/RelatedPartTable.tsx:53 #: src/tables/stock/StockTrackingTable.tsx:87 msgid "Part" msgstr "" -#: lib/enums/ModelInformation.tsx:29 +#: lib/enums/ModelInformation.tsx:30 #: lib/enums/Roles.tsx:35 #: src/components/nav/NavigationDrawer.tsx:70 #: src/defaults/links.tsx:36 -#: src/pages/Index/Settings/SystemSettings.tsx:190 -#: src/pages/part/CategoryDetail.tsx:132 -#: src/pages/part/CategoryDetail.tsx:277 -#: src/pages/part/CategoryDetail.tsx:323 -#: src/pages/part/CategoryDetail.tsx:354 -#: src/pages/part/PartDetail.tsx:965 +#: src/pages/Index/Settings/SystemSettings.tsx:197 +#: src/pages/part/CategoryDetail.tsx:135 +#: src/pages/part/CategoryDetail.tsx:285 +#: src/pages/part/CategoryDetail.tsx:340 +#: src/pages/part/CategoryDetail.tsx:371 +#: src/pages/part/PartDetail.tsx:978 msgid "Parts" msgstr "" #: lib/enums/ModelInformation.tsx:37 #: src/pages/Index/Settings/AdminCenter/PartParameterPanel.tsx:13 -msgid "Part Parameter Template" -msgstr "" +#~ msgid "Part Parameter Template" +#~ msgstr "Part Parameter Template" #: lib/enums/ModelInformation.tsx:38 -msgid "Part Parameter Templates" +#~ msgid "Part Parameter Templates" +#~ msgstr "Part Parameter Templates" + +#: lib/enums/ModelInformation.tsx:39 +msgid "Parameter" +msgstr "" + +#: lib/enums/ModelInformation.tsx:40 +#: src/components/panels/ParametersPanel.tsx:19 +#: src/components/wizards/ImportPartWizard.tsx:807 +#: src/pages/Index/Settings/AdminCenter/Index.tsx:195 +#: src/pages/Index/Settings/SystemSettings.tsx:191 +#: src/pages/part/PartDetail.tsx:943 +msgid "Parameters" msgstr "" #: lib/enums/ModelInformation.tsx:45 -msgid "Part Test Template" +#: src/tables/part/PartCategoryTemplateTable.tsx:87 +msgid "Parameter Template" msgstr "" #: lib/enums/ModelInformation.tsx:46 -msgid "Part Test Templates" +#: src/pages/Index/Settings/AdminCenter/ParameterPanel.tsx:13 +msgid "Parameter Templates" msgstr "" #: lib/enums/ModelInformation.tsx:52 +msgid "Part Test Template" +msgstr "" + +#: lib/enums/ModelInformation.tsx:53 +msgid "Part Test Templates" +msgstr "" + +#: lib/enums/ModelInformation.tsx:59 #: src/components/wizards/OrderPartsWizard.tsx:290 -#: src/pages/company/SupplierPartDetail.tsx:413 +#: src/pages/company/SupplierPartDetail.tsx:418 #: src/pages/stock/StockDetail.tsx:289 -#: src/tables/build/BuildAllocatedStockTable.tsx:155 +#: src/tables/build/BuildAllocatedStockTable.tsx:152 #: src/tables/part/PartPurchaseOrdersTable.tsx:50 +#: src/tables/purchasing/SupplierPartParametricTable.tsx:29 #: src/tables/purchasing/SupplierPartTable.tsx:83 #: src/tables/stock/StockItemTable.tsx:247 msgid "Supplier Part" msgstr "" -#: lib/enums/ModelInformation.tsx:53 -#: src/pages/purchasing/PurchasingIndex.tsx:92 +#: lib/enums/ModelInformation.tsx:60 +#: src/pages/purchasing/PurchasingIndex.tsx:128 msgid "Supplier Parts" msgstr "" -#: lib/enums/ModelInformation.tsx:61 -#: src/pages/company/ManufacturerPartDetail.tsx:297 -#: src/pages/company/SupplierPartDetail.tsx:161 +#: lib/enums/ModelInformation.tsx:69 +#: src/pages/company/ManufacturerPartDetail.tsx:288 +#: src/pages/company/SupplierPartDetail.tsx:162 #: src/tables/part/PartPurchaseOrdersTable.tsx:56 #: src/tables/stock/StockItemTable.tsx:253 msgid "Manufacturer Part" msgstr "" -#: lib/enums/ModelInformation.tsx:62 -#: src/pages/purchasing/PurchasingIndex.tsx:109 +#: lib/enums/ModelInformation.tsx:70 +#: src/pages/purchasing/PurchasingIndex.tsx:177 msgid "Manufacturer Parts" msgstr "" -#: lib/enums/ModelInformation.tsx:70 -#: src/pages/part/CategoryDetail.tsx:354 +#: lib/enums/ModelInformation.tsx:79 +#: src/pages/part/CategoryDetail.tsx:371 #: src/tables/Filter.tsx:389 msgid "Part Category" msgstr "" -#: lib/enums/ModelInformation.tsx:71 +#: lib/enums/ModelInformation.tsx:80 #: lib/enums/Roles.tsx:37 -#: src/pages/part/CategoryDetail.tsx:271 -#: src/pages/part/CategoryDetail.tsx:345 -#: src/pages/part/PartDetail.tsx:1196 +#: src/pages/part/CategoryDetail.tsx:279 +#: src/pages/part/CategoryDetail.tsx:362 +#: src/pages/part/PartDetail.tsx:1217 msgid "Part Categories" msgstr "" -#: lib/enums/ModelInformation.tsx:79 +#: lib/enums/ModelInformation.tsx:88 #: src/forms/BuildForms.tsx:473 #: src/forms/BuildForms.tsx:633 #: src/forms/BuildForms.tsx:794 -#: src/forms/SalesOrderForms.tsx:307 +#: src/forms/SalesOrderForms.tsx:386 #: src/pages/stock/StockDetail.tsx:1005 -#: src/tables/part/PartTestResultTable.tsx:248 +#: src/tables/part/PartTestResultTable.tsx:256 #: src/tables/stock/StockTrackingTable.tsx:48 #: src/tables/stock/StockTrackingTable.tsx:55 msgid "Stock Item" msgstr "" -#: lib/enums/ModelInformation.tsx:80 +#: lib/enums/ModelInformation.tsx:89 #: lib/enums/Roles.tsx:45 -#: src/pages/company/CompanyDetail.tsx:210 -#: src/pages/part/CategoryDetail.tsx:291 +#: src/pages/company/CompanyDetail.tsx:211 +#: src/pages/part/CategoryDetail.tsx:314 #: src/pages/part/PartStockHistoryDetail.tsx:101 #: src/pages/stock/LocationDetail.tsx:121 #: src/pages/stock/LocationDetail.tsx:180 msgid "Stock Items" msgstr "" -#: lib/enums/ModelInformation.tsx:88 +#: lib/enums/ModelInformation.tsx:98 #: lib/enums/Roles.tsx:47 #: src/pages/stock/LocationDetail.tsx:420 msgid "Stock Location" msgstr "" -#: lib/enums/ModelInformation.tsx:89 +#: lib/enums/ModelInformation.tsx:99 #: src/pages/stock/LocationDetail.tsx:174 #: src/pages/stock/LocationDetail.tsx:412 #: src/pages/stock/StockDetail.tsx:996 msgid "Stock Locations" msgstr "" -#: lib/enums/ModelInformation.tsx:97 +#: lib/enums/ModelInformation.tsx:108 msgid "Stock Location Type" msgstr "" -#: lib/enums/ModelInformation.tsx:98 +#: lib/enums/ModelInformation.tsx:109 msgid "Stock Location Types" msgstr "" -#: lib/enums/ModelInformation.tsx:103 -#: src/pages/Index/Settings/SystemSettings.tsx:248 -#: src/pages/part/PartDetail.tsx:911 +#: lib/enums/ModelInformation.tsx:114 +#: src/pages/Index/Settings/SystemSettings.tsx:254 +#: src/pages/part/PartDetail.tsx:900 msgid "Stock History" msgstr "" -#: lib/enums/ModelInformation.tsx:104 +#: lib/enums/ModelInformation.tsx:115 msgid "Stock Histories" msgstr "" -#: lib/enums/ModelInformation.tsx:109 +#: lib/enums/ModelInformation.tsx:120 msgid "Build" msgstr "" -#: lib/enums/ModelInformation.tsx:110 +#: lib/enums/ModelInformation.tsx:121 msgid "Builds" msgstr "" -#: lib/enums/ModelInformation.tsx:118 +#: lib/enums/ModelInformation.tsx:130 msgid "Build Line" msgstr "" -#: lib/enums/ModelInformation.tsx:119 +#: lib/enums/ModelInformation.tsx:131 msgid "Build Lines" msgstr "" -#: lib/enums/ModelInformation.tsx:126 +#: lib/enums/ModelInformation.tsx:138 msgid "Build Item" msgstr "" -#: lib/enums/ModelInformation.tsx:127 +#: lib/enums/ModelInformation.tsx:139 msgid "Build Items" msgstr "" -#: lib/enums/ModelInformation.tsx:132 -#: src/pages/company/CompanyDetail.tsx:340 +#: lib/enums/ModelInformation.tsx:144 +#: src/pages/company/CompanyDetail.tsx:345 #: src/tables/company/CompanyTable.tsx:47 #: src/tables/company/ContactTable.tsx:67 +#: src/tables/company/ParametricCompanyTable.tsx:18 msgid "Company" msgstr "" -#: lib/enums/ModelInformation.tsx:133 +#: lib/enums/ModelInformation.tsx:145 msgid "Companies" msgstr "" -#: lib/enums/ModelInformation.tsx:140 -#: src/pages/build/BuildDetail.tsx:316 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:253 -#: src/pages/sales/ReturnOrderDetail.tsx:231 -#: src/pages/sales/SalesOrderDetail.tsx:224 +#: lib/enums/ModelInformation.tsx:152 +#: src/pages/build/BuildDetail.tsx:317 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:254 +#: src/pages/sales/ReturnOrderDetail.tsx:232 +#: src/pages/sales/SalesOrderDetail.tsx:225 #: src/tables/ColumnRenderers.tsx:362 #: src/tables/Filter.tsx:286 #: src/tables/TableHoverCard.tsx:101 msgid "Project Code" msgstr "" -#: lib/enums/ModelInformation.tsx:141 +#: lib/enums/ModelInformation.tsx:153 #: src/pages/Index/Settings/AdminCenter/Index.tsx:172 msgid "Project Codes" msgstr "" -#: lib/enums/ModelInformation.tsx:147 +#: lib/enums/ModelInformation.tsx:159 #: src/components/wizards/OrderPartsWizard.tsx:338 #: src/pages/part/pricing/PurchaseHistoryPanel.tsx:33 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:550 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:555 #: src/pages/stock/StockDetail.tsx:352 #: src/tables/part/PartPurchaseOrdersTable.tsx:32 #: src/tables/stock/StockItemTable.tsx:239 @@ -312,117 +338,117 @@ msgstr "" msgid "Purchase Order" msgstr "" -#: lib/enums/ModelInformation.tsx:148 +#: lib/enums/ModelInformation.tsx:160 #: lib/enums/Roles.tsx:39 #: src/defaults/actions.tsx:104 -#: src/pages/Index/Settings/SystemSettings.tsx:283 -#: src/pages/company/CompanyDetail.tsx:203 -#: src/pages/company/SupplierPartDetail.tsx:266 -#: src/pages/part/PartDetail.tsx:875 -#: src/pages/purchasing/PurchasingIndex.tsx:60 +#: src/pages/Index/Settings/SystemSettings.tsx:289 +#: src/pages/company/CompanyDetail.tsx:204 +#: src/pages/company/SupplierPartDetail.tsx:267 +#: src/pages/part/PartDetail.tsx:864 +#: src/pages/purchasing/PurchasingIndex.tsx:66 msgid "Purchase Orders" msgstr "" -#: lib/enums/ModelInformation.tsx:156 +#: lib/enums/ModelInformation.tsx:169 msgid "Purchase Order Line" msgstr "" -#: lib/enums/ModelInformation.tsx:157 +#: lib/enums/ModelInformation.tsx:170 msgid "Purchase Order Lines" msgstr "" -#: lib/enums/ModelInformation.tsx:162 -#: src/pages/build/BuildDetail.tsx:289 +#: lib/enums/ModelInformation.tsx:175 +#: src/pages/build/BuildDetail.tsx:290 #: src/pages/part/pricing/SaleHistoryPanel.tsx:24 -#: src/pages/sales/SalesOrderDetail.tsx:614 -#: src/pages/sales/SalesOrderShipmentDetail.tsx:105 -#: src/pages/sales/SalesOrderShipmentDetail.tsx:478 +#: src/pages/sales/SalesOrderDetail.tsx:619 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:103 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:446 #: src/pages/stock/StockDetail.tsx:361 #: src/tables/part/PartSalesAllocationsTable.tsx:41 #: src/tables/sales/SalesOrderAllocationTable.tsx:110 -#: src/tables/sales/SalesOrderShipmentTable.tsx:122 +#: src/tables/sales/SalesOrderShipmentTable.tsx:143 #: src/tables/stock/StockTrackingTable.tsx:131 msgid "Sales Order" msgstr "" -#: lib/enums/ModelInformation.tsx:163 +#: lib/enums/ModelInformation.tsx:176 #: lib/enums/Roles.tsx:43 #: src/defaults/actions.tsx:114 -#: src/pages/Index/Settings/SystemSettings.tsx:299 -#: src/pages/company/CompanyDetail.tsx:223 -#: src/pages/part/PartDetail.tsx:887 -#: src/pages/sales/SalesIndex.tsx:84 +#: src/pages/Index/Settings/SystemSettings.tsx:305 +#: src/pages/company/CompanyDetail.tsx:224 +#: src/pages/part/PartDetail.tsx:876 +#: src/pages/sales/SalesIndex.tsx:53 msgid "Sales Orders" msgstr "" -#: lib/enums/ModelInformation.tsx:171 -#: src/pages/sales/SalesOrderShipmentDetail.tsx:477 +#: lib/enums/ModelInformation.tsx:185 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:445 msgid "Sales Order Shipment" msgstr "" -#: lib/enums/ModelInformation.tsx:172 +#: lib/enums/ModelInformation.tsx:186 msgid "Sales Order Shipments" msgstr "" -#: lib/enums/ModelInformation.tsx:179 -#: src/pages/sales/ReturnOrderDetail.tsx:549 +#: lib/enums/ModelInformation.tsx:194 +#: src/pages/sales/ReturnOrderDetail.tsx:554 #: src/tables/stock/StockTrackingTable.tsx:142 msgid "Return Order" msgstr "" -#: lib/enums/ModelInformation.tsx:180 +#: lib/enums/ModelInformation.tsx:195 #: lib/enums/Roles.tsx:41 #: src/defaults/actions.tsx:125 -#: src/pages/Index/Settings/SystemSettings.tsx:316 -#: src/pages/company/CompanyDetail.tsx:230 -#: src/pages/part/PartDetail.tsx:894 -#: src/pages/sales/SalesIndex.tsx:117 +#: src/pages/Index/Settings/SystemSettings.tsx:322 +#: src/pages/company/CompanyDetail.tsx:231 +#: src/pages/part/PartDetail.tsx:883 +#: src/pages/sales/SalesIndex.tsx:99 msgid "Return Orders" msgstr "" -#: lib/enums/ModelInformation.tsx:188 +#: lib/enums/ModelInformation.tsx:204 msgid "Return Order Line Item" msgstr "" -#: lib/enums/ModelInformation.tsx:189 +#: lib/enums/ModelInformation.tsx:205 msgid "Return Order Line Items" msgstr "" -#: lib/enums/ModelInformation.tsx:194 +#: lib/enums/ModelInformation.tsx:210 #: src/tables/company/AddressTable.tsx:52 msgid "Address" msgstr "" -#: lib/enums/ModelInformation.tsx:195 -#: src/pages/company/CompanyDetail.tsx:264 +#: lib/enums/ModelInformation.tsx:211 +#: src/pages/company/CompanyDetail.tsx:265 msgid "Addresses" msgstr "" -#: lib/enums/ModelInformation.tsx:201 +#: lib/enums/ModelInformation.tsx:217 #: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:89 #: src/pages/core/UserDetail.tsx:135 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:229 -#: src/pages/sales/ReturnOrderDetail.tsx:207 -#: src/pages/sales/SalesOrderDetail.tsx:200 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:230 +#: src/pages/sales/ReturnOrderDetail.tsx:208 +#: src/pages/sales/SalesOrderDetail.tsx:201 msgid "Contact" msgstr "" -#: lib/enums/ModelInformation.tsx:202 -#: src/pages/company/CompanyDetail.tsx:258 +#: lib/enums/ModelInformation.tsx:218 +#: src/pages/company/CompanyDetail.tsx:259 #: src/pages/core/CoreIndex.tsx:33 msgid "Contacts" msgstr "" -#: lib/enums/ModelInformation.tsx:208 +#: lib/enums/ModelInformation.tsx:224 #: src/tables/ColumnRenderers.tsx:444 msgid "Owner" msgstr "" -#: lib/enums/ModelInformation.tsx:209 +#: lib/enums/ModelInformation.tsx:225 msgid "Owners" msgstr "" -#: lib/enums/ModelInformation.tsx:215 +#: lib/enums/ModelInformation.tsx:231 #: src/pages/Auth/ChangePassword.tsx:36 #: src/pages/core/UserDetail.tsx:220 #: src/tables/ColumnRenderers.tsx:395 @@ -437,7 +463,7 @@ msgstr "" msgid "User" msgstr "" -#: lib/enums/ModelInformation.tsx:216 +#: lib/enums/ModelInformation.tsx:232 #: src/components/nav/NavigationDrawer.tsx:105 #: src/pages/Index/Settings/AdminCenter/UserManagementPanel.tsx:15 #: src/pages/core/CoreIndex.tsx:21 @@ -445,12 +471,12 @@ msgstr "" msgid "Users" msgstr "" -#: lib/enums/ModelInformation.tsx:222 +#: lib/enums/ModelInformation.tsx:238 #: src/pages/core/GroupDetail.tsx:78 msgid "Group" msgstr "" -#: lib/enums/ModelInformation.tsx:223 +#: lib/enums/ModelInformation.tsx:239 #: src/components/nav/NavigationDrawer.tsx:111 #: src/pages/Index/Settings/AdminCenter/UserManagementPanel.tsx:23 #: src/pages/core/CoreIndex.tsx:27 @@ -460,64 +486,64 @@ msgstr "" msgid "Groups" msgstr "" -#: lib/enums/ModelInformation.tsx:230 +#: lib/enums/ModelInformation.tsx:246 msgid "Import Session" msgstr "" -#: lib/enums/ModelInformation.tsx:231 +#: lib/enums/ModelInformation.tsx:247 msgid "Import Sessions" msgstr "" -#: lib/enums/ModelInformation.tsx:238 +#: lib/enums/ModelInformation.tsx:254 msgid "Label Template" msgstr "" -#: lib/enums/ModelInformation.tsx:239 +#: lib/enums/ModelInformation.tsx:255 #: src/pages/Index/Settings/AdminCenter/Index.tsx:209 msgid "Label Templates" msgstr "" -#: lib/enums/ModelInformation.tsx:246 +#: lib/enums/ModelInformation.tsx:262 msgid "Report Template" msgstr "" -#: lib/enums/ModelInformation.tsx:247 +#: lib/enums/ModelInformation.tsx:263 #: src/pages/Index/Settings/AdminCenter/Index.tsx:215 msgid "Report Templates" msgstr "" -#: lib/enums/ModelInformation.tsx:254 +#: lib/enums/ModelInformation.tsx:270 #: src/components/plugins/PluginDrawer.tsx:145 msgid "Plugin Configuration" msgstr "" -#: lib/enums/ModelInformation.tsx:255 +#: lib/enums/ModelInformation.tsx:271 msgid "Plugin Configurations" msgstr "" -#: lib/enums/ModelInformation.tsx:262 +#: lib/enums/ModelInformation.tsx:278 msgid "Content Type" msgstr "" -#: lib/enums/ModelInformation.tsx:263 +#: lib/enums/ModelInformation.tsx:279 msgid "Content Types" msgstr "" -#: lib/enums/ModelInformation.tsx:268 +#: lib/enums/ModelInformation.tsx:284 msgid "Selection List" msgstr "" -#: lib/enums/ModelInformation.tsx:269 -#: src/pages/Index/Settings/AdminCenter/PartParameterPanel.tsx:21 +#: lib/enums/ModelInformation.tsx:285 +#: src/pages/Index/Settings/AdminCenter/ParameterPanel.tsx:21 msgid "Selection Lists" msgstr "" -#: lib/enums/ModelInformation.tsx:275 +#: lib/enums/ModelInformation.tsx:291 #: src/components/barcodes/BarcodeInput.tsx:114 #: src/components/dashboard/DashboardLayout.tsx:281 #: src/components/editors/NotesEditor.tsx:74 #: src/components/editors/TemplateEditor/TemplateEditor.tsx:158 -#: src/components/forms/fields/ApiFormField.tsx:273 +#: src/components/forms/fields/ApiFormField.tsx:237 #: src/components/forms/fields/TableField.tsx:45 #: src/components/importer/ImportDataSelector.tsx:192 #: src/components/importer/ImporterColumnSelector.tsx:234 @@ -528,7 +554,7 @@ msgstr "" #: src/components/nav/SearchDrawer.tsx:572 #: src/components/settings/SettingList.tsx:139 #: src/components/wizards/ImportPartWizard.tsx:574 -#: src/components/wizards/ImportPartWizard.tsx:718 +#: src/components/wizards/ImportPartWizard.tsx:719 #: src/forms/BomForms.tsx:69 #: src/functions/auth.tsx:643 #: src/pages/ErrorPage.tsx:11 @@ -547,9 +573,9 @@ msgstr "" msgid "Error" msgstr "Napaka" -#: lib/enums/ModelInformation.tsx:276 +#: lib/enums/ModelInformation.tsx:292 #: src/tables/machine/MachineListTable.tsx:402 -#: src/tables/machine/MachineTypeTable.tsx:299 +#: src/tables/machine/MachineTypeTable.tsx:297 msgid "Errors" msgstr "" @@ -559,10 +585,10 @@ msgstr "" #: lib/enums/Roles.tsx:33 #: src/defaults/actions.tsx:135 -#: src/pages/Index/Settings/SystemSettings.tsx:264 -#: src/pages/build/BuildIndex.tsx:75 -#: src/pages/part/PartDetail.tsx:904 -#: src/pages/sales/SalesOrderDetail.tsx:421 +#: src/pages/Index/Settings/SystemSettings.tsx:270 +#: src/pages/build/BuildIndex.tsx:67 +#: src/pages/part/PartDetail.tsx:893 +#: src/pages/sales/SalesOrderDetail.tsx:422 msgid "Build Orders" msgstr "" @@ -639,39 +665,39 @@ msgstr "" msgid "Enter barcode data" msgstr "" -#: src/components/barcodes/BarcodeScanDialog.tsx:49 -#: src/components/buttons/ScanButton.tsx:15 +#: src/components/barcodes/BarcodeScanDialog.tsx:56 +#: src/components/buttons/ScanButton.tsx:27 #: src/components/nav/NavigationDrawer.tsx:122 -#: src/forms/PurchaseOrderForms.tsx:457 -#: src/forms/PurchaseOrderForms.tsx:563 +#: src/forms/PurchaseOrderForms.tsx:509 +#: src/forms/PurchaseOrderForms.tsx:615 msgid "Scan Barcode" msgstr "" -#: src/components/barcodes/BarcodeScanDialog.tsx:105 +#: src/components/barcodes/BarcodeScanDialog.tsx:121 msgid "No matching item found" msgstr "" -#: src/components/barcodes/BarcodeScanDialog.tsx:134 +#: src/components/barcodes/BarcodeScanDialog.tsx:150 msgid "Barcode does not match the expected model type" msgstr "" -#: src/components/barcodes/BarcodeScanDialog.tsx:145 +#: src/components/barcodes/BarcodeScanDialog.tsx:161 #: src/components/editors/NotesEditor.tsx:84 #: src/components/editors/NotesEditor.tsx:118 -#: src/components/forms/ApiForm.tsx:465 +#: src/components/forms/ApiForm.tsx:484 #: src/components/wizards/ImportPartWizard.tsx:566 -#: src/components/wizards/ImportPartWizard.tsx:690 +#: src/components/wizards/ImportPartWizard.tsx:691 #: src/pages/Index/Settings/AdminCenter/CurrencyManagementPanel.tsx:45 #: src/tables/bom/BomTable.tsx:548 #: src/tables/settings/PendingTasksTable.tsx:68 msgid "Success" msgstr "" -#: src/components/barcodes/BarcodeScanDialog.tsx:151 +#: src/components/barcodes/BarcodeScanDialog.tsx:167 msgid "Failed to handle barcode" msgstr "" -#: src/components/barcodes/BarcodeScanDialog.tsx:167 +#: src/components/barcodes/BarcodeScanDialog.tsx:183 #: src/pages/Index/Scan.tsx:129 msgid "Failed to scan barcode" msgstr "" @@ -714,10 +740,10 @@ msgstr "" #: src/components/barcodes/QRCode.tsx:179 #: src/pages/part/PartDetail.tsx:521 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:222 -#: src/pages/sales/ReturnOrderDetail.tsx:188 -#: src/pages/sales/SalesOrderDetail.tsx:181 -#: src/pages/sales/SalesOrderShipmentDetail.tsx:122 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:223 +#: src/pages/sales/ReturnOrderDetail.tsx:189 +#: src/pages/sales/SalesOrderDetail.tsx:182 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:120 #: src/pages/stock/StockDetail.tsx:186 msgid "Link" msgstr "" @@ -728,7 +754,7 @@ msgstr "" #: src/components/barcodes/QRCode.tsx:205 #: src/components/items/ActionDropdown.tsx:192 -#: src/forms/PurchaseOrderForms.tsx:554 +#: src/forms/PurchaseOrderForms.tsx:606 msgid "Unlink Barcode" msgstr "" @@ -829,14 +855,14 @@ msgstr "" #~ msgid "Scan QR code" #~ msgstr "Scan QR code" -#: src/components/buttons/ScanButton.tsx:19 -msgid "Open Barcode Scanner" -msgstr "" - #: src/components/buttons/ScanButton.tsx:20 #~ msgid "Open QR code scanner" #~ msgstr "Open QR code scanner" +#: src/components/buttons/ScanButton.tsx:32 +msgid "Open Barcode Scanner" +msgstr "" + #: src/components/buttons/SpotlightButton.tsx:12 msgid "Open spotlight" msgstr "" @@ -1059,7 +1085,7 @@ msgid "Show the number of sales orders which are assigned to you" msgstr "" #: src/components/dashboard/DashboardWidgetLibrary.tsx:129 -#: src/pages/sales/SalesIndex.tsx:105 +#: src/pages/sales/SalesIndex.tsx:87 msgid "Pending Shipments" msgstr "" @@ -1210,12 +1236,18 @@ msgid "Remove the associated image from this item?" msgstr "" #: src/components/details/DetailsImage.tsx:83 -#: src/forms/StockForms.tsx:888 +#: src/forms/StockForms.tsx:895 #: src/pages/Index/Settings/AccountSettings/MFASettings.tsx:324 #: src/pages/Index/Settings/AccountSettings/MFASettings.tsx:415 #: src/pages/Index/Settings/AccountSettings/MFASettings.tsx:884 #: src/pages/Index/Settings/AccountSettings/MFASettings.tsx:903 #: src/pages/Index/Settings/AccountSettings/SecurityContent.tsx:254 +#: src/tables/build/BuildAllocatedStockTable.tsx:178 +#: src/tables/build/BuildAllocatedStockTable.tsx:258 +#: src/tables/build/BuildLineTable.tsx:111 +#: src/tables/build/BuildLineTable.tsx:665 +#: src/tables/sales/SalesOrderAllocationTable.tsx:224 +#: src/tables/sales/SalesOrderAllocationTable.tsx:247 msgid "Remove" msgstr "" @@ -1241,12 +1273,12 @@ msgid "Upload Error" msgstr "" #: src/components/details/DetailsImage.tsx:250 -#: src/components/forms/fields/TextField.tsx:65 +#: src/components/forms/fields/AutoFillRightSection.tsx:34 msgid "Clear" msgstr "" #: src/components/details/DetailsImage.tsx:256 -#: src/components/forms/ApiForm.tsx:677 +#: src/components/forms/ApiForm.tsx:696 #: src/contexts/ThemeContext.tsx:44 #: src/pages/Index/Settings/AccountSettings/MFASettings.tsx:149 #: src/pages/Index/Settings/AccountSettings/MFASettings.tsx:568 @@ -1499,8 +1531,8 @@ msgstr "" msgid "A server error occurred" msgstr "" -#: src/components/forms/ApiForm.tsx:103 -#: src/components/forms/ApiForm.tsx:594 +#: src/components/forms/ApiForm.tsx:107 +#: src/components/forms/ApiForm.tsx:613 msgid "Form Error" msgstr "" @@ -1508,11 +1540,11 @@ msgstr "" #~ msgid "Form Errors Exist" #~ msgstr "Form Errors Exist" -#: src/components/forms/ApiForm.tsx:604 +#: src/components/forms/ApiForm.tsx:623 msgid "Errors exist for one or more form fields" msgstr "" -#: src/components/forms/ApiForm.tsx:715 +#: src/components/forms/ApiForm.tsx:734 #: src/hooks/UseForm.tsx:133 #: src/tables/plugin/PluginListTable.tsx:204 msgid "Update" @@ -1698,15 +1730,14 @@ msgstr "" #: src/components/forms/InstanceOptions.tsx:124 #: src/components/plugins/PluginDrawer.tsx:68 #: src/pages/Index/Settings/AdminCenter/UnitManagementPanel.tsx:19 -#: src/pages/part/CategoryDetail.tsx:88 +#: src/pages/part/CategoryDetail.tsx:91 #: src/pages/part/PartDetail.tsx:446 #: src/pages/stock/LocationDetail.tsx:82 #: src/tables/machine/MachineTypeTable.tsx:67 -#: src/tables/machine/MachineTypeTable.tsx:151 -#: src/tables/machine/MachineTypeTable.tsx:254 -#: src/tables/machine/MachineTypeTable.tsx:357 +#: src/tables/machine/MachineTypeTable.tsx:149 +#: src/tables/machine/MachineTypeTable.tsx:252 +#: src/tables/machine/MachineTypeTable.tsx:355 #: src/tables/plugin/PluginErrorTable.tsx:33 -#: src/tables/purchasing/ManufacturerPartParameterTable.tsx:36 #: src/tables/settings/ApiTokenTable.tsx:57 #: src/tables/settings/GroupTable.tsx:95 #: src/tables/settings/GroupTable.tsx:148 @@ -1769,7 +1800,7 @@ msgstr "" #~ msgstr "State: <0>worker ({0}), <1>plugins{1}" #: src/components/forms/InstanceOptions.tsx:118 -#: src/pages/Index/Settings/SystemSettings.tsx:45 +#: src/pages/Index/Settings/SystemSettings.tsx:46 msgid "Server" msgstr "" @@ -1793,6 +1824,8 @@ msgid "Plugins" msgstr "" #: src/components/forms/InstanceOptions.tsx:143 +#: src/tables/general/ParameterTemplateTable.tsx:153 +#: src/tables/general/ParameterTemplateTable.tsx:188 #: src/tables/part/PartTestTemplateTable.tsx:117 #: src/tables/settings/TemplateTable.tsx:251 #: src/tables/settings/TemplateTable.tsx:362 @@ -1817,10 +1850,14 @@ msgstr "" msgid "Running" msgstr "" -#: src/components/forms/fields/ApiFormField.tsx:233 +#: src/components/forms/fields/ApiFormField.tsx:197 msgid "Select file to upload" msgstr "" +#: src/components/forms/fields/AutoFillRightSection.tsx:47 +msgid "Accept suggested value" +msgstr "" + #: src/components/forms/fields/DateField.tsx:76 msgid "Select date" msgstr "" @@ -1853,13 +1890,13 @@ msgstr "" msgid "{0} icons" msgstr "" -#: src/components/forms/fields/RelatedModelField.tsx:409 +#: src/components/forms/fields/RelatedModelField.tsx:480 #: src/components/modals/AboutInvenTreeModal.tsx:96 #: src/pages/Index/Settings/AccountSettings/SecurityContent.tsx:383 msgid "Loading" msgstr "" -#: src/components/forms/fields/RelatedModelField.tsx:411 +#: src/components/forms/fields/RelatedModelField.tsx:482 msgid "No results found" msgstr "" @@ -1875,10 +1912,6 @@ msgstr "" msgid "Add new row" msgstr "" -#: src/components/forms/fields/TextField.tsx:82 -msgid "Accept suggested value" -msgstr "" - #: src/components/images/DetailsImage.tsx:252 #~ msgid "Select image" #~ msgstr "Select image" @@ -2036,7 +2069,7 @@ msgstr "" #: src/components/importer/ImporterDrawer.tsx:109 #: src/components/modals/AboutInvenTreeModal.tsx:205 #: src/components/modals/ServerInfoModal.tsx:134 -#: src/components/wizards/ImportPartWizard.tsx:772 +#: src/components/wizards/ImportPartWizard.tsx:773 #: src/forms/BomForms.tsx:132 #: src/pages/Index/Settings/AccountSettings/MFASettings.tsx:685 msgid "Close" @@ -2199,7 +2232,7 @@ msgid "Change" msgstr "" #: src/components/items/RoleTable.tsx:150 -#: src/forms/StockForms.tsx:927 +#: src/forms/StockForms.tsx:941 #: src/tables/stock/StockItemTestResultTable.tsx:367 msgid "Add" msgstr "" @@ -2222,11 +2255,11 @@ msgstr "" #: src/components/items/TransferList.tsx:161 #: src/components/render/Stock.tsx:102 -#: src/pages/part/PartDetail.tsx:994 +#: src/pages/part/PartDetail.tsx:1009 #: src/pages/stock/StockDetail.tsx:265 #: src/pages/stock/StockDetail.tsx:942 -#: src/tables/build/BuildAllocatedStockTable.tsx:135 -#: src/tables/build/BuildLineTable.tsx:192 +#: src/tables/build/BuildAllocatedStockTable.tsx:132 +#: src/tables/build/BuildLineTable.tsx:193 #: src/tables/part/PartTable.tsx:137 #: src/tables/stock/StockItemTable.tsx:182 #: src/tables/stock/StockItemTable.tsx:343 @@ -2373,7 +2406,7 @@ msgid "Database" msgstr "" #: src/components/modals/ServerInfoModal.tsx:49 -#: src/components/nav/Alerts.tsx:118 +#: src/components/nav/Alerts.tsx:120 msgid "Debug Mode" msgstr "" @@ -2414,7 +2447,7 @@ msgid "Issues detected" msgstr "" #: src/components/modals/ServerInfoModal.tsx:102 -#: src/components/nav/Alerts.tsx:125 +#: src/components/nav/Alerts.tsx:127 msgid "Background Worker" msgstr "" @@ -2436,7 +2469,7 @@ msgstr "" #~ msgstr "Email settings not configured" #: src/components/modals/ServerInfoModal.tsx:120 -#: src/components/nav/Alerts.tsx:141 +#: src/components/nav/Alerts.tsx:143 msgid "Email settings not configured." msgstr "" @@ -2444,43 +2477,47 @@ msgstr "" msgid "Alerts" msgstr "" -#: src/components/nav/Alerts.tsx:120 +#: src/components/nav/Alerts.tsx:97 +msgid "No issues detected" +msgstr "" + +#: src/components/nav/Alerts.tsx:122 msgid "The server is running in debug mode." msgstr "" -#: src/components/nav/Alerts.tsx:127 +#: src/components/nav/Alerts.tsx:129 msgid "The background worker process is not running." msgstr "" -#: src/components/nav/Alerts.tsx:132 +#: src/components/nav/Alerts.tsx:134 msgid "Server Restart" msgstr "" -#: src/components/nav/Alerts.tsx:134 +#: src/components/nav/Alerts.tsx:136 msgid "The server requires a restart to apply changes." msgstr "" -#: src/components/nav/Alerts.tsx:139 +#: src/components/nav/Alerts.tsx:141 msgid "Email settings" msgstr "" -#: src/components/nav/Alerts.tsx:146 +#: src/components/nav/Alerts.tsx:148 msgid "Database Migrations" msgstr "" -#: src/components/nav/Alerts.tsx:148 +#: src/components/nav/Alerts.tsx:150 msgid "There are pending database migrations." msgstr "" -#: src/components/nav/Alerts.tsx:163 +#: src/components/nav/Alerts.tsx:165 msgid "Learn more about {code}" msgstr "" #: src/components/nav/Header.tsx:188 #: src/components/nav/NavigationDrawer.tsx:134 #: src/components/nav/NotificationDrawer.tsx:181 -#: src/pages/Index/Settings/SystemSettings.tsx:121 -#: src/pages/Index/Settings/UserSettings.tsx:106 +#: src/pages/Index/Settings/SystemSettings.tsx:122 +#: src/pages/Index/Settings/UserSettings.tsx:107 #: src/pages/Notifications.tsx:45 #: src/pages/Notifications.tsx:130 msgid "Notifications" @@ -2511,8 +2548,8 @@ msgstr "" #: src/components/nav/NavigationDrawer.tsx:140 #: src/components/nav/SettingsHeader.tsx:40 #: src/defaults/actions.tsx:92 -#: src/pages/Index/Settings/UserSettings.tsx:141 -#: src/pages/Index/Settings/UserSettings.tsx:145 +#: src/pages/Index/Settings/UserSettings.tsx:142 +#: src/pages/Index/Settings/UserSettings.tsx:146 msgid "User Settings" msgstr "" @@ -2529,8 +2566,8 @@ msgstr "" #: src/components/nav/NavigationDrawer.tsx:146 #: src/components/nav/SettingsHeader.tsx:41 #: src/defaults/actions.tsx:144 -#: src/pages/Index/Settings/SystemSettings.tsx:348 -#: src/pages/Index/Settings/SystemSettings.tsx:353 +#: src/pages/Index/Settings/SystemSettings.tsx:354 +#: src/pages/Index/Settings/SystemSettings.tsx:359 msgid "System Settings" msgstr "" @@ -2577,11 +2614,11 @@ msgstr "" #: src/components/nav/NavigationDrawer.tsx:77 #: src/components/render/Part.tsx:36 -#: src/components/wizards/ImportPartWizard.tsx:807 +#: src/components/wizards/ImportPartWizard.tsx:808 #: src/defaults/links.tsx:42 #: src/forms/StockForms.tsx:794 -#: src/pages/Index/Settings/SystemSettings.tsx:224 -#: src/pages/part/PartDetail.tsx:804 +#: src/pages/Index/Settings/SystemSettings.tsx:230 +#: src/pages/part/PartDetail.tsx:793 #: src/pages/stock/LocationDetail.tsx:390 #: src/pages/stock/LocationDetail.tsx:420 #: src/pages/stock/StockDetail.tsx:642 @@ -2591,29 +2628,29 @@ msgstr "" #: src/components/nav/NavigationDrawer.tsx:84 #: src/defaults/links.tsx:48 -#: src/pages/build/BuildDetail.tsx:748 -#: src/pages/build/BuildIndex.tsx:102 +#: src/pages/build/BuildDetail.tsx:753 +#: src/pages/build/BuildIndex.tsx:101 msgid "Manufacturing" msgstr "" #: src/components/nav/NavigationDrawer.tsx:91 #: src/defaults/links.tsx:54 #: src/pages/company/ManufacturerDetail.tsx:9 -#: src/pages/company/ManufacturerPartDetail.tsx:276 +#: src/pages/company/ManufacturerPartDetail.tsx:267 #: src/pages/company/SupplierDetail.tsx:9 -#: src/pages/company/SupplierPartDetail.tsx:360 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:553 -#: src/pages/purchasing/PurchasingIndex.tsx:122 +#: src/pages/company/SupplierPartDetail.tsx:365 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:558 +#: src/pages/purchasing/PurchasingIndex.tsx:212 msgid "Purchasing" msgstr "" #: src/components/nav/NavigationDrawer.tsx:98 #: src/defaults/links.tsx:60 #: src/pages/company/CustomerDetail.tsx:9 -#: src/pages/sales/ReturnOrderDetail.tsx:554 -#: src/pages/sales/SalesIndex.tsx:153 -#: src/pages/sales/SalesOrderDetail.tsx:619 -#: src/pages/sales/SalesOrderShipmentDetail.tsx:480 +#: src/pages/sales/ReturnOrderDetail.tsx:559 +#: src/pages/sales/SalesIndex.tsx:168 +#: src/pages/sales/SalesOrderDetail.tsx:624 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:448 msgid "Sales" msgstr "" @@ -2667,21 +2704,21 @@ msgid "Remove search group" msgstr "" #: src/components/nav/SearchDrawer.tsx:288 -#: src/pages/company/ManufacturerPartDetail.tsx:192 -#: src/pages/part/PartDetail.tsx:862 +#: src/pages/company/ManufacturerPartDetail.tsx:179 +#: src/pages/part/PartDetail.tsx:851 #: src/pages/part/PartSupplierDetail.tsx:15 -#: src/pages/purchasing/PurchasingIndex.tsx:81 +#: src/pages/purchasing/PurchasingIndex.tsx:100 msgid "Suppliers" msgstr "" #: src/components/nav/SearchDrawer.tsx:298 #: src/pages/part/PartSupplierDetail.tsx:23 -#: src/pages/purchasing/PurchasingIndex.tsx:98 +#: src/pages/purchasing/PurchasingIndex.tsx:149 msgid "Manufacturers" msgstr "" #: src/components/nav/SearchDrawer.tsx:308 -#: src/pages/sales/SalesIndex.tsx:138 +#: src/pages/sales/SalesIndex.tsx:133 msgid "Customers" msgstr "" @@ -2772,21 +2809,21 @@ msgstr "" #: src/components/plugins/PluginDrawer.tsx:73 #: src/forms/selectionListFields.tsx:102 -#: src/pages/build/BuildDetail.tsx:250 -#: src/pages/company/CompanyDetail.tsx:93 -#: src/pages/company/ManufacturerPartDetail.tsx:93 -#: src/pages/company/ManufacturerPartDetail.tsx:120 -#: src/pages/company/SupplierPartDetail.tsx:145 -#: src/pages/part/CategoryDetail.tsx:108 +#: src/pages/build/BuildDetail.tsx:251 +#: src/pages/company/CompanyDetail.tsx:94 +#: src/pages/company/ManufacturerPartDetail.tsx:92 +#: src/pages/company/ManufacturerPartDetail.tsx:119 +#: src/pages/company/SupplierPartDetail.tsx:146 +#: src/pages/part/CategoryDetail.tsx:111 #: src/pages/part/PartDetail.tsx:460 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:162 -#: src/pages/sales/ReturnOrderDetail.tsx:129 -#: src/pages/sales/SalesOrderDetail.tsx:119 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:163 +#: src/pages/sales/ReturnOrderDetail.tsx:130 +#: src/pages/sales/SalesOrderDetail.tsx:120 #: src/pages/stock/LocationDetail.tsx:102 #: src/tables/ColumnRenderers.tsx:278 -#: src/tables/build/BuildAllocatedStockTable.tsx:91 -#: src/tables/machine/MachineTypeTable.tsx:161 -#: src/tables/machine/MachineTypeTable.tsx:257 +#: src/tables/build/BuildAllocatedStockTable.tsx:88 +#: src/tables/machine/MachineTypeTable.tsx:159 +#: src/tables/machine/MachineTypeTable.tsx:255 #: src/tables/plugin/PluginListTable.tsx:110 msgid "Description" msgstr "" @@ -2814,7 +2851,7 @@ msgstr "" #: src/tables/company/CompanyTable.tsx:91 #: src/tables/machine/MachineListTable.tsx:384 #: src/tables/machine/MachineListTable.tsx:799 -#: src/tables/part/ParametricPartTable.tsx:354 +#: src/tables/part/ParametricPartTable.tsx:19 #: src/tables/part/PartTable.tsx:197 #: src/tables/part/PartVariantTable.tsx:15 #: src/tables/plugin/PluginListTable.tsx:96 @@ -2836,8 +2873,8 @@ msgid "Installation Path" msgstr "" #: src/components/plugins/PluginDrawer.tsx:116 -#: src/tables/machine/MachineTypeTable.tsx:184 -#: src/tables/machine/MachineTypeTable.tsx:293 +#: src/tables/machine/MachineTypeTable.tsx:182 +#: src/tables/machine/MachineTypeTable.tsx:291 #: src/tables/plugin/PluginListTable.tsx:101 #: src/tables/plugin/PluginListTable.tsx:417 msgid "Builtin" @@ -2849,8 +2886,8 @@ msgstr "" #: src/components/plugins/PluginDrawer.tsx:133 #: src/pages/Index/Settings/AdminCenter/PluginManagementPanel.tsx:55 -#: src/pages/Index/Settings/SystemSettings.tsx:331 -#: src/pages/Index/Settings/UserSettings.tsx:128 +#: src/pages/Index/Settings/SystemSettings.tsx:337 +#: src/pages/Index/Settings/UserSettings.tsx:129 msgid "Plugin Settings" msgstr "" @@ -2911,7 +2948,7 @@ msgstr "" #~ msgid "Unknown model: {model}" #~ msgstr "Unknown model: {model}" -#: src/components/render/Instance.tsx:249 +#: src/components/render/Instance.tsx:247 msgid "Unknown model: {model_name}" msgstr "" @@ -2939,10 +2976,10 @@ msgstr "" #: src/components/render/Part.tsx:28 #: src/components/render/Plugin.tsx:17 #: src/components/render/User.tsx:37 -#: src/pages/company/CompanyDetail.tsx:323 -#: src/pages/company/SupplierPartDetail.tsx:373 +#: src/pages/company/CompanyDetail.tsx:328 +#: src/pages/company/SupplierPartDetail.tsx:378 #: src/pages/core/UserDetail.tsx:211 -#: src/pages/part/PartDetail.tsx:1027 +#: src/pages/part/PartDetail.tsx:1048 #: src/tables/ColumnRenderers.tsx:410 msgid "Inactive" msgstr "" @@ -2962,11 +2999,11 @@ msgstr "" #: src/components/render/Part.tsx:47 #: src/components/wizards/OrderPartsWizard.tsx:135 -#: src/pages/company/SupplierPartDetail.tsx:197 -#: src/pages/company/SupplierPartDetail.tsx:394 -#: src/pages/part/PartDetail.tsx:1015 +#: src/pages/company/SupplierPartDetail.tsx:198 +#: src/pages/company/SupplierPartDetail.tsx:399 +#: src/pages/part/PartDetail.tsx:1030 #: src/tables/bom/BomTable.tsx:444 -#: src/tables/build/BuildLineTable.tsx:222 +#: src/tables/build/BuildLineTable.tsx:223 #: src/tables/part/PartTable.tsx:108 msgid "On Order" msgstr "" @@ -2974,9 +3011,9 @@ msgstr "" #: src/components/render/Part.tsx:55 #: src/components/wizards/OrderPartsWizard.tsx:141 #: src/pages/part/PartDetail.tsx:587 -#: src/pages/part/PartDetail.tsx:1021 +#: src/pages/part/PartDetail.tsx:1036 #: src/pages/stock/StockDetail.tsx:925 -#: src/tables/part/PartTestResultTable.tsx:297 +#: src/tables/part/PartTestResultTable.tsx:305 #: src/tables/stock/StockItemTable.tsx:359 msgid "In Production" msgstr "" @@ -2987,7 +3024,7 @@ msgid "Details" msgstr "" #: src/components/render/Part.tsx:112 -#: src/components/wizards/ImportPartWizard.tsx:806 +#: src/components/wizards/ImportPartWizard.tsx:807 #: src/pages/part/PartDetail.tsx:487 #: src/tables/ColumnRenderers.tsx:233 #: src/tables/ColumnRenderers.tsx:242 @@ -3000,16 +3037,16 @@ msgstr "" #: src/components/render/Stock.tsx:114 #: src/components/render/Stock.tsx:132 #: src/forms/BuildForms.tsx:795 -#: src/forms/PurchaseOrderForms.tsx:595 +#: src/forms/PurchaseOrderForms.tsx:647 #: src/forms/StockForms.tsx:792 #: src/forms/StockForms.tsx:839 -#: src/forms/StockForms.tsx:885 -#: src/forms/StockForms.tsx:924 -#: src/forms/StockForms.tsx:960 -#: src/forms/StockForms.tsx:1003 -#: src/forms/StockForms.tsx:1047 -#: src/forms/StockForms.tsx:1095 -#: src/forms/StockForms.tsx:1139 +#: src/forms/StockForms.tsx:892 +#: src/forms/StockForms.tsx:938 +#: src/forms/StockForms.tsx:976 +#: src/forms/StockForms.tsx:1019 +#: src/forms/StockForms.tsx:1063 +#: src/forms/StockForms.tsx:1111 +#: src/forms/StockForms.tsx:1155 #: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:88 #: src/pages/core/UserDetail.tsx:158 #: src/pages/stock/StockDetail.tsx:298 @@ -3023,7 +3060,7 @@ msgstr "" #: src/components/render/Stock.tsx:99 #: src/pages/stock/StockDetail.tsx:198 #: src/pages/stock/StockDetail.tsx:930 -#: src/tables/build/BuildAllocatedStockTable.tsx:121 +#: src/tables/build/BuildAllocatedStockTable.tsx:118 #: src/tables/build/BuildOutputTable.tsx:107 #: src/tables/sales/SalesOrderAllocationTable.tsx:142 msgid "Serial Number" @@ -3034,9 +3071,9 @@ msgstr "" #: src/forms/BuildForms.tsx:240 #: src/forms/BuildForms.tsx:634 #: src/forms/BuildForms.tsx:797 -#: src/forms/PurchaseOrderForms.tsx:801 +#: src/forms/PurchaseOrderForms.tsx:853 #: src/forms/ReturnOrderForms.tsx:243 -#: src/forms/SalesOrderForms.tsx:308 +#: src/forms/SalesOrderForms.tsx:387 #: src/forms/StockForms.tsx:841 #: src/pages/part/PartStockHistoryDetail.tsx:56 #: src/pages/part/PartStockHistoryDetail.tsx:210 @@ -3046,9 +3083,9 @@ msgstr "" #: src/pages/part/pricing/PriceBreakPanel.tsx:172 #: src/pages/stock/StockDetail.tsx:258 #: src/pages/stock/StockDetail.tsx:936 -#: src/tables/build/BuildLineTable.tsx:86 +#: src/tables/build/BuildLineTable.tsx:83 #: src/tables/part/PartPurchaseOrdersTable.tsx:94 -#: src/tables/part/PartTestResultTable.tsx:269 +#: src/tables/part/PartTestResultTable.tsx:277 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:175 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:206 #: src/tables/purchasing/SupplierPriceBreakTable.tsx:69 @@ -3063,14 +3100,14 @@ msgstr "" #: src/forms/BuildForms.tsx:474 #: src/forms/StockForms.tsx:793 #: src/forms/StockForms.tsx:840 -#: src/forms/StockForms.tsx:886 -#: src/forms/StockForms.tsx:925 -#: src/forms/StockForms.tsx:961 -#: src/forms/StockForms.tsx:1004 -#: src/forms/StockForms.tsx:1048 -#: src/forms/StockForms.tsx:1096 -#: src/forms/StockForms.tsx:1140 -#: src/tables/build/BuildLineTable.tsx:96 +#: src/forms/StockForms.tsx:893 +#: src/forms/StockForms.tsx:939 +#: src/forms/StockForms.tsx:977 +#: src/forms/StockForms.tsx:1020 +#: src/forms/StockForms.tsx:1064 +#: src/forms/StockForms.tsx:1112 +#: src/forms/StockForms.tsx:1156 +#: src/tables/build/BuildLineTable.tsx:93 msgid "Batch" msgstr "" @@ -3306,10 +3343,6 @@ msgstr "" #~ msgid "Part category updated" #~ msgstr "Part category updated" -#: src/components/tables/part/PartParameterTable.tsx:41 -#~ msgid "Parameter" -#~ msgstr "Parameter" - #: src/components/tables/part/PartParameterTable.tsx:114 #~ msgid "Part parameter updated" #~ msgstr "Part parameter updated" @@ -3571,15 +3604,16 @@ msgid "Already Imported" msgstr "" #: src/components/wizards/ImportPartWizard.tsx:205 -#: src/pages/company/CompanyDetail.tsx:136 +#: src/pages/company/CompanyDetail.tsx:137 #: src/pages/company/SupplierDetail.tsx:8 -#: src/pages/company/SupplierPartDetail.tsx:130 -#: src/pages/company/SupplierPartDetail.tsx:235 -#: src/pages/company/SupplierPartDetail.tsx:364 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:156 +#: src/pages/company/SupplierPartDetail.tsx:131 +#: src/pages/company/SupplierPartDetail.tsx:236 +#: src/pages/company/SupplierPartDetail.tsx:369 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:157 #: src/tables/Filter.tsx:360 #: src/tables/company/CompanyTable.tsx:96 #: src/tables/part/PartPurchaseOrdersTable.tsx:43 +#: src/tables/purchasing/PurchaseOrderParametricTable.tsx:34 #: src/tables/purchasing/PurchaseOrderTable.tsx:109 #: src/tables/purchasing/SupplierPriceBreakTable.tsx:40 msgid "Supplier" @@ -3648,7 +3682,7 @@ msgid "Next" msgstr "" #: src/components/wizards/ImportPartWizard.tsx:540 -#: src/pages/part/PartDetail.tsx:1046 +#: src/pages/part/PartDetail.tsx:1067 #: src/tables/part/PartTable.tsx:408 msgid "Edit Part" msgstr "" @@ -3669,28 +3703,28 @@ msgstr "" msgid "Import" msgstr "" -#: src/components/wizards/ImportPartWizard.tsx:691 +#: src/components/wizards/ImportPartWizard.tsx:692 msgid "Parameters created successfully!" msgstr "" -#: src/components/wizards/ImportPartWizard.tsx:719 +#: src/components/wizards/ImportPartWizard.tsx:720 msgid "Failed to create parameters, please fix the errors and try again" msgstr "" #. placeholder {0}: supplierPart?.supplier -#: src/components/wizards/ImportPartWizard.tsx:739 +#: src/components/wizards/ImportPartWizard.tsx:740 msgid "Part imported successfully from supplier {0}." msgstr "" -#: src/components/wizards/ImportPartWizard.tsx:752 +#: src/components/wizards/ImportPartWizard.tsx:753 msgid "Open Part" msgstr "" -#: src/components/wizards/ImportPartWizard.tsx:759 +#: src/components/wizards/ImportPartWizard.tsx:760 msgid "Open Supplier Part" msgstr "" -#: src/components/wizards/ImportPartWizard.tsx:766 +#: src/components/wizards/ImportPartWizard.tsx:767 msgid "Open Manufacturer Part" msgstr "" @@ -3699,25 +3733,19 @@ msgstr "" #~ msgid "Import Part" #~ msgstr "Import Part" -#: src/components/wizards/ImportPartWizard.tsx:802 +#: src/components/wizards/ImportPartWizard.tsx:803 msgid "Import Supplier Part" msgstr "" -#: src/components/wizards/ImportPartWizard.tsx:804 +#: src/components/wizards/ImportPartWizard.tsx:805 msgid "Search Supplier Part" msgstr "" -#: src/components/wizards/ImportPartWizard.tsx:806 -#: src/pages/company/ManufacturerPartDetail.tsx:166 -#: src/pages/part/PartDetail.tsx:793 -msgid "Parameters" -msgstr "" - -#: src/components/wizards/ImportPartWizard.tsx:806 +#: src/components/wizards/ImportPartWizard.tsx:807 msgid "Confirm import" msgstr "" -#: src/components/wizards/ImportPartWizard.tsx:808 +#: src/components/wizards/ImportPartWizard.tsx:809 msgid "Done" msgstr "" @@ -3738,24 +3766,24 @@ msgid "Sales Requirements" msgstr "" #: src/components/wizards/OrderPartsWizard.tsx:129 -#: src/forms/StockForms.tsx:887 -#: src/forms/StockForms.tsx:926 -#: src/forms/StockForms.tsx:962 -#: src/forms/StockForms.tsx:1005 -#: src/forms/StockForms.tsx:1049 -#: src/forms/StockForms.tsx:1097 -#: src/forms/StockForms.tsx:1141 -#: src/pages/company/SupplierPartDetail.tsx:190 -#: src/pages/company/SupplierPartDetail.tsx:378 +#: src/forms/StockForms.tsx:894 +#: src/forms/StockForms.tsx:940 +#: src/forms/StockForms.tsx:978 +#: src/forms/StockForms.tsx:1021 +#: src/forms/StockForms.tsx:1065 +#: src/forms/StockForms.tsx:1113 +#: src/forms/StockForms.tsx:1157 +#: src/pages/company/SupplierPartDetail.tsx:191 +#: src/pages/company/SupplierPartDetail.tsx:383 #: src/pages/part/PartDetail.tsx:534 -#: src/pages/part/PartDetail.tsx:984 +#: src/pages/part/PartDetail.tsx:999 #: src/tables/Filter.tsx:92 #: src/tables/purchasing/SupplierPartTable.tsx:230 msgid "In Stock" msgstr "" #: src/components/wizards/OrderPartsWizard.tsx:146 -#: src/tables/build/BuildLineTable.tsx:404 +#: src/tables/build/BuildLineTable.tsx:405 msgid "Required Quantity" msgstr "" @@ -3847,7 +3875,7 @@ msgid "Please correct the errors in the selected parts" msgstr "" #: src/components/wizards/OrderPartsWizard.tsx:587 -#: src/tables/build/BuildLineTable.tsx:815 +#: src/tables/build/BuildLineTable.tsx:822 #: src/tables/part/PartTable.tsx:522 #: src/tables/sales/SalesOrderLineItemTable.tsx:370 msgid "Order Parts" @@ -4349,9 +4377,9 @@ msgstr "" #: src/forms/BuildForms.tsx:333 #: src/forms/BuildForms.tsx:408 #: src/forms/BuildForms.tsx:685 -#: src/tables/build/BuildAllocatedStockTable.tsx:150 +#: src/tables/build/BuildAllocatedStockTable.tsx:147 #: src/tables/build/BuildOutputTable.tsx:582 -#: src/tables/part/PartTestResultTable.tsx:272 +#: src/tables/part/PartTestResultTable.tsx:280 msgid "Build Output" msgstr "" @@ -4362,22 +4390,22 @@ msgstr "" #: src/forms/BuildForms.tsx:336 #: src/forms/BuildForms.tsx:411 #: src/forms/BuildForms.tsx:475 -#: src/forms/PurchaseOrderForms.tsx:717 +#: src/forms/PurchaseOrderForms.tsx:769 #: src/forms/ReturnOrderForms.tsx:197 #: src/forms/ReturnOrderForms.tsx:244 #: src/forms/StockForms.tsx:712 #: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:87 -#: src/pages/build/BuildDetail.tsx:222 +#: src/pages/build/BuildDetail.tsx:223 #: src/pages/core/UserDetail.tsx:151 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:168 -#: src/pages/sales/ReturnOrderDetail.tsx:135 -#: src/pages/sales/SalesOrderDetail.tsx:125 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:169 +#: src/pages/sales/ReturnOrderDetail.tsx:136 +#: src/pages/sales/SalesOrderDetail.tsx:126 #: src/pages/stock/StockDetail.tsx:170 #: src/tables/Filter.tsx:274 #: src/tables/build/BuildOutputTable.tsx:404 #: src/tables/machine/MachineListTable.tsx:387 #: src/tables/part/PartPurchaseOrdersTable.tsx:38 -#: src/tables/part/PartTestResultTable.tsx:309 +#: src/tables/part/PartTestResultTable.tsx:317 #: src/tables/sales/ReturnOrderLineItemTable.tsx:138 #: src/tables/sales/ReturnOrderLineItemTable.tsx:176 #: src/tables/settings/CustomStateTable.tsx:79 @@ -4443,18 +4471,19 @@ msgid "Build outputs have been cancelled" msgstr "" #: src/forms/BuildForms.tsx:631 -#: src/pages/build/BuildDetail.tsx:207 -#: src/pages/company/ManufacturerPartDetail.tsx:85 -#: src/pages/company/SupplierPartDetail.tsx:96 +#: src/pages/build/BuildDetail.tsx:208 +#: src/pages/company/ManufacturerPartDetail.tsx:84 +#: src/pages/company/SupplierPartDetail.tsx:97 #: src/pages/part/PartDetail.tsx:453 #: src/pages/stock/StockDetail.tsx:153 #: src/tables/bom/BomTable.tsx:134 #: src/tables/bom/UsedInTable.tsx:40 -#: src/tables/build/BuildAllocatedStockTable.tsx:108 -#: src/tables/build/BuildLineTable.tsx:336 +#: src/tables/build/BuildAllocatedStockTable.tsx:105 +#: src/tables/build/BuildLineTable.tsx:337 #: src/tables/build/BuildOrderTable.tsx:79 #: src/tables/part/PartSalesAllocationsTable.tsx:61 #: src/tables/part/RelatedPartTable.tsx:73 +#: src/tables/purchasing/ManufacturerPartParametricTable.tsx:21 #: src/tables/purchasing/ManufacturerPartTable.tsx:69 #: src/tables/purchasing/SupplierPartTable.tsx:70 #: src/tables/sales/SalesOrderAllocationTable.tsx:135 @@ -4466,47 +4495,47 @@ msgstr "" #: src/forms/BuildForms.tsx:632 #: src/forms/BuildForms.tsx:796 #: src/forms/BuildForms.tsx:897 -#: src/forms/SalesOrderForms.tsx:306 -#: src/tables/build/BuildAllocatedStockTable.tsx:139 -#: src/tables/build/BuildLineTable.tsx:182 +#: src/forms/SalesOrderForms.tsx:385 +#: src/tables/build/BuildAllocatedStockTable.tsx:136 +#: src/tables/build/BuildLineTable.tsx:183 #: src/tables/sales/SalesOrderLineItemTable.tsx:342 #: src/tables/stock/StockItemTable.tsx:338 msgid "Allocated" msgstr "" #: src/forms/BuildForms.tsx:667 -#: src/forms/SalesOrderForms.tsx:295 -#: src/pages/build/BuildDetail.tsx:108 -#: src/pages/build/BuildDetail.tsx:326 +#: src/forms/SalesOrderForms.tsx:374 +#: src/pages/build/BuildDetail.tsx:109 +#: src/pages/build/BuildDetail.tsx:327 msgid "Source Location" msgstr "" #: src/forms/BuildForms.tsx:668 -#: src/forms/SalesOrderForms.tsx:296 +#: src/forms/SalesOrderForms.tsx:375 msgid "Select the source location for the stock allocation" msgstr "" #: src/forms/BuildForms.tsx:700 -#: src/forms/SalesOrderForms.tsx:336 -#: src/tables/build/BuildLineTable.tsx:574 -#: src/tables/build/BuildLineTable.tsx:731 -#: src/tables/build/BuildLineTable.tsx:830 +#: src/forms/SalesOrderForms.tsx:415 +#: src/tables/build/BuildLineTable.tsx:575 +#: src/tables/build/BuildLineTable.tsx:738 +#: src/tables/build/BuildLineTable.tsx:837 #: src/tables/sales/SalesOrderLineItemTable.tsx:380 #: src/tables/sales/SalesOrderLineItemTable.tsx:406 msgid "Allocate Stock" msgstr "" #: src/forms/BuildForms.tsx:703 -#: src/forms/SalesOrderForms.tsx:341 +#: src/forms/SalesOrderForms.tsx:420 msgid "Stock items allocated" msgstr "" #: src/forms/BuildForms.tsx:816 #: src/forms/BuildForms.tsx:917 -#: src/tables/build/BuildAllocatedStockTable.tsx:240 -#: src/tables/build/BuildAllocatedStockTable.tsx:272 -#: src/tables/build/BuildLineTable.tsx:741 -#: src/tables/build/BuildLineTable.tsx:864 +#: src/tables/build/BuildAllocatedStockTable.tsx:243 +#: src/tables/build/BuildAllocatedStockTable.tsx:279 +#: src/tables/build/BuildLineTable.tsx:748 +#: src/tables/build/BuildLineTable.tsx:871 msgid "Consume Stock" msgstr "" @@ -4521,21 +4550,21 @@ msgstr "" #~ msgstr "Stock items consumed" #: src/forms/BuildForms.tsx:853 -#: src/tables/build/BuildLineTable.tsx:514 +#: src/tables/build/BuildLineTable.tsx:515 #: src/tables/part/PartBuildAllocationsTable.tsx:101 msgid "Fully consumed" msgstr "" #: src/forms/BuildForms.tsx:898 -#: src/tables/build/BuildLineTable.tsx:187 +#: src/tables/build/BuildLineTable.tsx:188 #: src/tables/stock/StockItemTable.tsx:367 msgid "Consumed" msgstr "" -#: src/forms/CommonForms.tsx:88 -#: src/forms/PurchaseOrderForms.tsx:125 +#: src/forms/CommonForms.tsx:92 +#: src/forms/PurchaseOrderForms.tsx:176 #: src/forms/ReturnOrderForms.tsx:138 -#: src/forms/SalesOrderForms.tsx:164 +#: src/forms/SalesOrderForms.tsx:185 msgid "Select project code for this line item" msgstr "" @@ -4543,16 +4572,16 @@ msgstr "" #~ msgid "Company updated" #~ msgstr "Company updated" -#: src/forms/PartForms.tsx:85 -#: src/forms/PartForms.tsx:207 -#: src/pages/part/CategoryDetail.tsx:124 +#: src/forms/PartForms.tsx:99 +#: src/forms/PartForms.tsx:228 +#: src/pages/part/CategoryDetail.tsx:127 #: src/pages/part/PartDetail.tsx:668 #: src/tables/part/PartCategoryTable.tsx:94 #: src/tables/part/PartTable.tsx:325 msgid "Subscribed" msgstr "" -#: src/forms/PartForms.tsx:86 +#: src/forms/PartForms.tsx:100 msgid "Subscribe to notifications for this part" msgstr "" @@ -4564,40 +4593,24 @@ msgstr "" #~ msgid "Part updated" #~ msgstr "Part updated" -#: src/forms/PartForms.tsx:193 +#: src/forms/PartForms.tsx:214 msgid "Parent part category" msgstr "" -#: src/forms/PartForms.tsx:208 +#: src/forms/PartForms.tsx:229 msgid "Subscribe to notifications for this category" msgstr "" -#: src/forms/PurchaseOrderForms.tsx:388 -msgid "Assign Batch Code and Serial Numbers" -msgstr "" - -#: src/forms/PurchaseOrderForms.tsx:390 -msgid "Assign Batch Code" -msgstr "" - -#: src/forms/PurchaseOrderForms.tsx:410 -msgid "Choose Location" -msgstr "" - -#: src/forms/PurchaseOrderForms.tsx:418 -msgid "Item Destination selected" -msgstr "" - #: src/forms/PurchaseOrderForms.tsx:421 #~ msgid "Assign Batch Code{0}" #~ msgstr "Assign Batch Code{0}" -#: src/forms/PurchaseOrderForms.tsx:428 -msgid "Part category default location selected" +#: src/forms/PurchaseOrderForms.tsx:440 +msgid "Assign Batch Code and Serial Numbers" msgstr "" -#: src/forms/PurchaseOrderForms.tsx:438 -msgid "Received stock location selected" +#: src/forms/PurchaseOrderForms.tsx:442 +msgid "Assign Batch Code" msgstr "" #: src/forms/PurchaseOrderForms.tsx:444 @@ -4605,115 +4618,131 @@ msgstr "" #~ msgid "Remove item from list" #~ msgstr "Remove item from list" -#: src/forms/PurchaseOrderForms.tsx:446 +#: src/forms/PurchaseOrderForms.tsx:462 +msgid "Choose Location" +msgstr "" + +#: src/forms/PurchaseOrderForms.tsx:470 +msgid "Item Destination selected" +msgstr "" + +#: src/forms/PurchaseOrderForms.tsx:480 +msgid "Part category default location selected" +msgstr "" + +#: src/forms/PurchaseOrderForms.tsx:490 +msgid "Received stock location selected" +msgstr "" + +#: src/forms/PurchaseOrderForms.tsx:498 msgid "Default location selected" msgstr "" -#: src/forms/PurchaseOrderForms.tsx:507 +#: src/forms/PurchaseOrderForms.tsx:559 msgid "Set Location" msgstr "" -#: src/forms/PurchaseOrderForms.tsx:524 -msgid "Set Expiry Date" -msgstr "" - -#: src/forms/PurchaseOrderForms.tsx:532 -#: src/forms/StockForms.tsx:693 -msgid "Adjust Packaging" -msgstr "" - -#: src/forms/PurchaseOrderForms.tsx:540 -#: src/forms/StockForms.tsx:684 -#: src/hooks/UseStockAdjustActions.tsx:148 -msgid "Change Status" -msgstr "" - -#: src/forms/PurchaseOrderForms.tsx:546 -msgid "Add Note" -msgstr "" - #: src/forms/PurchaseOrderForms.tsx:566 #~ msgid "Serial numbers" #~ msgstr "Serial numbers" +#: src/forms/PurchaseOrderForms.tsx:576 +msgid "Set Expiry Date" +msgstr "" + #: src/forms/PurchaseOrderForms.tsx:582 #~ msgid "Store at line item destination" #~ msgstr "Store at line item destination" -#: src/forms/PurchaseOrderForms.tsx:610 -msgid "Store at default location" +#: src/forms/PurchaseOrderForms.tsx:584 +#: src/forms/StockForms.tsx:693 +msgid "Adjust Packaging" msgstr "" -#: src/forms/PurchaseOrderForms.tsx:625 -msgid "Store at line item destination " +#: src/forms/PurchaseOrderForms.tsx:592 +#: src/forms/StockForms.tsx:684 +#: src/hooks/UseStockAdjustActions.tsx:148 +msgid "Change Status" msgstr "" -#: src/forms/PurchaseOrderForms.tsx:637 -msgid "Store with already received stock" +#: src/forms/PurchaseOrderForms.tsx:598 +msgid "Add Note" msgstr "" #: src/forms/PurchaseOrderForms.tsx:658 #~ msgid "Receive line items" #~ msgstr "Receive line items" -#: src/forms/PurchaseOrderForms.tsx:661 -#: src/pages/build/BuildDetail.tsx:340 +#: src/forms/PurchaseOrderForms.tsx:662 +msgid "Store at default location" +msgstr "" + +#: src/forms/PurchaseOrderForms.tsx:677 +msgid "Store at line item destination " +msgstr "" + +#: src/forms/PurchaseOrderForms.tsx:689 +msgid "Store with already received stock" +msgstr "" + +#: src/forms/PurchaseOrderForms.tsx:713 +#: src/pages/build/BuildDetail.tsx:341 #: src/pages/stock/StockDetail.tsx:280 #: src/pages/stock/StockDetail.tsx:952 #: src/tables/Filter.tsx:83 -#: src/tables/build/BuildAllocatedStockTable.tsx:128 +#: src/tables/build/BuildAllocatedStockTable.tsx:125 #: src/tables/build/BuildOutputTable.tsx:112 -#: src/tables/part/PartTestResultTable.tsx:260 -#: src/tables/part/PartTestResultTable.tsx:281 +#: src/tables/part/PartTestResultTable.tsx:268 +#: src/tables/part/PartTestResultTable.tsx:289 #: src/tables/sales/SalesOrderAllocationTable.tsx:149 msgid "Batch Code" msgstr "" -#: src/forms/PurchaseOrderForms.tsx:662 +#: src/forms/PurchaseOrderForms.tsx:714 msgid "Enter batch code for received items" msgstr "" -#: src/forms/PurchaseOrderForms.tsx:675 +#: src/forms/PurchaseOrderForms.tsx:727 #: src/forms/StockForms.tsx:218 msgid "Serial Numbers" msgstr "" -#: src/forms/PurchaseOrderForms.tsx:676 +#: src/forms/PurchaseOrderForms.tsx:728 msgid "Enter serial numbers for received items" msgstr "" -#: src/forms/PurchaseOrderForms.tsx:690 +#: src/forms/PurchaseOrderForms.tsx:742 #: src/pages/stock/StockDetail.tsx:382 #: src/tables/stock/StockItemTable.tsx:294 msgid "Expiry Date" msgstr "" -#: src/forms/PurchaseOrderForms.tsx:691 +#: src/forms/PurchaseOrderForms.tsx:743 msgid "Enter an expiry date for received items" msgstr "" -#: src/forms/PurchaseOrderForms.tsx:703 +#: src/forms/PurchaseOrderForms.tsx:755 #: src/forms/StockForms.tsx:728 -#: src/pages/company/SupplierPartDetail.tsx:172 -#: src/pages/company/SupplierPartDetail.tsx:236 +#: src/pages/company/SupplierPartDetail.tsx:173 +#: src/pages/company/SupplierPartDetail.tsx:237 #: src/pages/stock/StockDetail.tsx:419 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:227 msgid "Packaging" msgstr "" -#: src/forms/PurchaseOrderForms.tsx:727 -#: src/pages/company/SupplierPartDetail.tsx:120 +#: src/forms/PurchaseOrderForms.tsx:779 +#: src/pages/company/SupplierPartDetail.tsx:121 #: src/tables/ColumnRenderers.tsx:332 msgid "Note" msgstr "" -#: src/forms/PurchaseOrderForms.tsx:799 -#: src/pages/company/SupplierPartDetail.tsx:138 +#: src/forms/PurchaseOrderForms.tsx:851 +#: src/pages/company/SupplierPartDetail.tsx:139 #: src/tables/purchasing/SupplierPriceBreakTable.tsx:49 msgid "SKU" msgstr "" -#: src/forms/PurchaseOrderForms.tsx:800 +#: src/forms/PurchaseOrderForms.tsx:852 #: src/tables/part/PartPurchaseOrdersTable.tsx:127 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:213 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:283 @@ -4721,11 +4750,11 @@ msgstr "" msgid "Received" msgstr "" -#: src/forms/PurchaseOrderForms.tsx:817 +#: src/forms/PurchaseOrderForms.tsx:869 msgid "Receive Line Items" msgstr "" -#: src/forms/PurchaseOrderForms.tsx:823 +#: src/forms/PurchaseOrderForms.tsx:875 msgid "Items received" msgstr "" @@ -4737,7 +4766,35 @@ msgstr "" msgid "Item received into stock" msgstr "" -#: src/forms/SalesOrderForms.tsx:401 +#: src/forms/SalesOrderForms.tsx:208 +#: src/forms/SalesOrderForms.tsx:210 +#: src/tables/sales/SalesOrderShipmentTable.tsx:215 +msgid "Check Shipment" +msgstr "" + +#: src/forms/SalesOrderForms.tsx:211 +msgid "Marking the shipment as checked indicates that you have verified that all items included in this shipment are correct" +msgstr "" + +#: src/forms/SalesOrderForms.tsx:221 +msgid "Shipment marked as checked" +msgstr "" + +#: src/forms/SalesOrderForms.tsx:236 +#: src/forms/SalesOrderForms.tsx:238 +#: src/tables/sales/SalesOrderShipmentTable.tsx:228 +msgid "Uncheck Shipment" +msgstr "" + +#: src/forms/SalesOrderForms.tsx:239 +msgid "Marking the shipment as unchecked indicates that the shipment requires further verification" +msgstr "" + +#: src/forms/SalesOrderForms.tsx:249 +msgid "Shipment marked as unchecked" +msgstr "" + +#: src/forms/SalesOrderForms.tsx:480 msgid "Leave blank to use the order address" msgstr "" @@ -4792,150 +4849,150 @@ msgstr "" msgid "Return" msgstr "" -#: src/forms/StockForms.tsx:963 +#: src/forms/StockForms.tsx:979 #: src/pages/Index/Scan.tsx:182 msgid "Count" msgstr "" -#: src/forms/StockForms.tsx:1246 +#: src/forms/StockForms.tsx:1262 #: src/hooks/UseStockAdjustActions.tsx:108 msgid "Add Stock" msgstr "" -#: src/forms/StockForms.tsx:1247 +#: src/forms/StockForms.tsx:1263 msgid "Stock added" msgstr "" -#: src/forms/StockForms.tsx:1250 +#: src/forms/StockForms.tsx:1266 msgid "Increase the quantity of the selected stock items by a given amount." msgstr "" -#: src/forms/StockForms.tsx:1261 +#: src/forms/StockForms.tsx:1277 #: src/hooks/UseStockAdjustActions.tsx:118 msgid "Remove Stock" msgstr "" -#: src/forms/StockForms.tsx:1262 +#: src/forms/StockForms.tsx:1278 msgid "Stock removed" msgstr "" -#: src/forms/StockForms.tsx:1265 +#: src/forms/StockForms.tsx:1281 msgid "Decrease the quantity of the selected stock items by a given amount." msgstr "" -#: src/forms/StockForms.tsx:1276 +#: src/forms/StockForms.tsx:1292 #: src/hooks/UseStockAdjustActions.tsx:128 msgid "Transfer Stock" msgstr "" -#: src/forms/StockForms.tsx:1277 +#: src/forms/StockForms.tsx:1293 msgid "Stock transferred" msgstr "" -#: src/forms/StockForms.tsx:1280 +#: src/forms/StockForms.tsx:1296 msgid "Transfer selected items to the specified location." msgstr "" -#: src/forms/StockForms.tsx:1291 +#: src/forms/StockForms.tsx:1307 #: src/hooks/UseStockAdjustActions.tsx:168 msgid "Return Stock" msgstr "" -#: src/forms/StockForms.tsx:1292 +#: src/forms/StockForms.tsx:1308 msgid "Stock returned" msgstr "" -#: src/forms/StockForms.tsx:1295 +#: src/forms/StockForms.tsx:1311 msgid "Return selected items into stock, to the specified location." msgstr "" -#: src/forms/StockForms.tsx:1306 +#: src/forms/StockForms.tsx:1322 #: src/hooks/UseStockAdjustActions.tsx:98 msgid "Count Stock" msgstr "" -#: src/forms/StockForms.tsx:1307 +#: src/forms/StockForms.tsx:1323 msgid "Stock counted" msgstr "" -#: src/forms/StockForms.tsx:1310 +#: src/forms/StockForms.tsx:1326 msgid "Count the selected stock items, and adjust the quantity accordingly." msgstr "" -#: src/forms/StockForms.tsx:1321 +#: src/forms/StockForms.tsx:1337 msgid "Change Stock Status" msgstr "" -#: src/forms/StockForms.tsx:1322 +#: src/forms/StockForms.tsx:1338 msgid "Stock status changed" msgstr "" -#: src/forms/StockForms.tsx:1325 +#: src/forms/StockForms.tsx:1341 msgid "Change the status of the selected stock items." msgstr "" -#: src/forms/StockForms.tsx:1336 +#: src/forms/StockForms.tsx:1352 #: src/hooks/UseStockAdjustActions.tsx:138 msgid "Merge Stock" msgstr "" -#: src/forms/StockForms.tsx:1337 +#: src/forms/StockForms.tsx:1353 msgid "Stock merged" msgstr "" -#: src/forms/StockForms.tsx:1339 +#: src/forms/StockForms.tsx:1355 msgid "Merge Stock Items" msgstr "" -#: src/forms/StockForms.tsx:1341 +#: src/forms/StockForms.tsx:1357 msgid "Merge operation cannot be reversed" msgstr "" -#: src/forms/StockForms.tsx:1342 +#: src/forms/StockForms.tsx:1358 msgid "Tracking information may be lost when merging items" msgstr "" -#: src/forms/StockForms.tsx:1343 +#: src/forms/StockForms.tsx:1359 msgid "Supplier information may be lost when merging items" msgstr "" -#: src/forms/StockForms.tsx:1361 +#: src/forms/StockForms.tsx:1377 msgid "Assign Stock to Customer" msgstr "" -#: src/forms/StockForms.tsx:1362 +#: src/forms/StockForms.tsx:1378 msgid "Stock assigned to customer" msgstr "" -#: src/forms/StockForms.tsx:1372 +#: src/forms/StockForms.tsx:1388 msgid "Delete Stock Items" msgstr "" -#: src/forms/StockForms.tsx:1373 +#: src/forms/StockForms.tsx:1389 msgid "Stock deleted" msgstr "" -#: src/forms/StockForms.tsx:1376 +#: src/forms/StockForms.tsx:1392 msgid "This operation will permanently delete the selected stock items." msgstr "" -#: src/forms/StockForms.tsx:1385 +#: src/forms/StockForms.tsx:1401 msgid "Parent stock location" msgstr "" -#: src/forms/StockForms.tsx:1512 +#: src/forms/StockForms.tsx:1528 msgid "Find Serial Number" msgstr "" -#: src/forms/StockForms.tsx:1523 +#: src/forms/StockForms.tsx:1539 msgid "No matching items" msgstr "" -#: src/forms/StockForms.tsx:1529 +#: src/forms/StockForms.tsx:1545 msgid "Multiple matching items" msgstr "" -#: src/forms/StockForms.tsx:1538 +#: src/forms/StockForms.tsx:1554 msgid "Invalid response from server" msgstr "" @@ -4953,7 +5010,6 @@ msgstr "" #: src/tables/FilterSelectDrawer.tsx:137 #: src/tables/FilterSelectDrawer.tsx:149 #: src/tables/part/PartTestResultTable.tsx:206 -#: src/tables/purchasing/ManufacturerPartParameterTable.tsx:42 #: src/tables/stock/StockItemTestResultTable.tsx:207 msgid "Value" msgstr "" @@ -5244,7 +5300,7 @@ msgid "Delete selected stock items" msgstr "" #: src/hooks/UseStockAdjustActions.tsx:205 -#: src/pages/part/PartDetail.tsx:1137 +#: src/pages/part/PartDetail.tsx:1158 msgid "Stock Actions" msgstr "" @@ -5932,6 +5988,9 @@ msgstr "" #: src/pages/Index/Settings/AccountSettings/MFASettings.tsx:310 #: src/pages/Index/Settings/AccountSettings/MFASettings.tsx:401 +#: src/tables/build/BuildAllocatedStockTable.tsx:181 +#: src/tables/build/BuildLineTable.tsx:668 +#: src/tables/sales/SalesOrderAllocationTable.tsx:220 msgid "Confirm Removal" msgstr "" @@ -6394,30 +6453,34 @@ msgid "Email Messages" msgstr "" #: src/pages/Index/Settings/AdminCenter/HomePanel.tsx:22 -msgid "Active Alerts" -msgstr "" +#~ msgid "Active Alerts" +#~ msgstr "Active Alerts" #: src/pages/Index/Settings/AdminCenter/HomePanel.tsx:27 -msgid "Inactive Alerts" +#~ msgid "Inactive Alerts" +#~ msgstr "Inactive Alerts" + +#: src/pages/Index/Settings/AdminCenter/HomePanel.tsx:36 +msgid "System Status" msgstr "" -#: src/pages/Index/Settings/AdminCenter/HomePanel.tsx:38 +#: src/pages/Index/Settings/AdminCenter/HomePanel.tsx:47 msgid "Admin Center Information" msgstr "" -#: src/pages/Index/Settings/AdminCenter/HomePanel.tsx:44 +#: src/pages/Index/Settings/AdminCenter/HomePanel.tsx:53 msgid "The home panel (and the whole Admin Center) is a new feature starting with the new UI and was previously (before 1.0) not available." msgstr "" -#: src/pages/Index/Settings/AdminCenter/HomePanel.tsx:51 +#: src/pages/Index/Settings/AdminCenter/HomePanel.tsx:60 msgid "The admin center provides a centralized location for all administration functionality and is meant to replace all interaction with the (django) backend admin interface." msgstr "" -#: src/pages/Index/Settings/AdminCenter/HomePanel.tsx:58 +#: src/pages/Index/Settings/AdminCenter/HomePanel.tsx:67 msgid "Please open feature requests (after checking the tracker) for any existing backend admin functionality you are missing in this UI. The backend admin interface should be used carefully and seldom." msgstr "" -#: src/pages/Index/Settings/AdminCenter/HomePanel.tsx:76 +#: src/pages/Index/Settings/AdminCenter/HomePanel.tsx:85 msgid "Quick Actions" msgstr "" @@ -6476,11 +6539,11 @@ msgstr "" #: src/pages/Index/Settings/AdminCenter/Index.tsx:195 #: src/pages/part/CategoryDetail.tsx:313 -msgid "Part Parameters" -msgstr "" +#~ msgid "Part Parameters" +#~ msgstr "Part Parameters" #: src/pages/Index/Settings/AdminCenter/Index.tsx:202 -#: src/pages/part/CategoryDetail.tsx:306 +#: src/pages/part/CategoryDetail.tsx:329 msgid "Category Parameters" msgstr "" @@ -6494,7 +6557,7 @@ msgstr "" #: src/pages/Index/Settings/AdminCenter/Index.tsx:235 #: src/pages/Index/Settings/AdminCenter/MachineManagementPanel.tsx:52 -#: src/tables/machine/MachineTypeTable.tsx:325 +#: src/tables/machine/MachineTypeTable.tsx:323 msgid "Machines" msgstr "" @@ -6507,8 +6570,8 @@ msgid "Data Management" msgstr "" #: src/pages/Index/Settings/AdminCenter/Index.tsx:270 -#: src/pages/Index/Settings/SystemSettings.tsx:175 -#: src/pages/Index/Settings/UserSettings.tsx:118 +#: src/pages/Index/Settings/SystemSettings.tsx:176 +#: src/pages/Index/Settings/UserSettings.tsx:119 msgid "Reporting" msgstr "" @@ -6709,11 +6772,11 @@ msgstr "" msgid "The settings below are specific to each available plugin" msgstr "" -#: src/pages/Index/Settings/SystemSettings.tsx:77 +#: src/pages/Index/Settings/SystemSettings.tsx:78 msgid "Authentication" msgstr "" -#: src/pages/Index/Settings/SystemSettings.tsx:103 +#: src/pages/Index/Settings/SystemSettings.tsx:104 msgid "Barcodes" msgstr "" @@ -6725,12 +6788,12 @@ msgstr "" #~ msgid "This panel is a placeholder." #~ msgstr "This panel is a placeholder." -#: src/pages/Index/Settings/SystemSettings.tsx:127 -#: src/pages/Index/Settings/UserSettings.tsx:112 +#: src/pages/Index/Settings/SystemSettings.tsx:128 +#: src/pages/Index/Settings/UserSettings.tsx:113 msgid "The settings below are specific to each available notification method" msgstr "" -#: src/pages/Index/Settings/SystemSettings.tsx:133 +#: src/pages/Index/Settings/SystemSettings.tsx:134 msgid "Pricing" msgstr "" @@ -6738,7 +6801,7 @@ msgstr "" #~ msgid "Exchange Rates" #~ msgstr "Exchange Rates" -#: src/pages/Index/Settings/SystemSettings.tsx:169 +#: src/pages/Index/Settings/SystemSettings.tsx:170 msgid "Labels" msgstr "" @@ -6790,15 +6853,15 @@ msgstr "" #~ msgid "Delete notifications" #~ msgstr "Delete notifications" -#: src/pages/build/BuildDetail.tsx:69 +#: src/pages/build/BuildDetail.tsx:70 msgid "No Required Items" msgstr "" -#: src/pages/build/BuildDetail.tsx:71 +#: src/pages/build/BuildDetail.tsx:72 msgid "This build order does not have any required items." msgstr "" -#: src/pages/build/BuildDetail.tsx:72 +#: src/pages/build/BuildDetail.tsx:73 msgid "The assembled part may not have a Bill of Materials (BOM) defined, or the BOM is empty." msgstr "" @@ -6826,7 +6889,7 @@ msgstr "" #~ msgid "Build Order updated" #~ msgstr "Build Order updated" -#: src/pages/build/BuildDetail.tsx:215 +#: src/pages/build/BuildDetail.tsx:216 #: src/pages/part/PartDetail.tsx:480 #: src/pages/stock/StockDetail.tsx:161 #: src/tables/bom/UsedInTable.tsx:44 @@ -6843,10 +6906,10 @@ msgstr "" #~ msgid "Duplicate build order" #~ msgstr "Duplicate build order" -#: src/pages/build/BuildDetail.tsx:228 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:174 -#: src/pages/sales/ReturnOrderDetail.tsx:141 -#: src/pages/sales/SalesOrderDetail.tsx:131 +#: src/pages/build/BuildDetail.tsx:229 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:175 +#: src/pages/sales/ReturnOrderDetail.tsx:142 +#: src/pages/sales/SalesOrderDetail.tsx:132 #: src/pages/stock/StockDetail.tsx:176 msgid "Custom Status" msgstr "" @@ -6855,9 +6918,9 @@ msgstr "" #~ msgid "Delete build order" #~ msgstr "Delete build order" -#: src/pages/build/BuildDetail.tsx:237 -#: src/pages/build/BuildDetail.tsx:723 -#: src/pages/build/BuildIndex.tsx:28 +#: src/pages/build/BuildDetail.tsx:238 +#: src/pages/build/BuildDetail.tsx:728 +#: src/pages/build/BuildIndex.tsx:34 #: src/pages/stock/LocationDetail.tsx:140 #: src/tables/build/BuildOrderTable.tsx:123 #: src/tables/build/BuildOrderTable.tsx:183 @@ -6865,57 +6928,57 @@ msgstr "" msgid "External" msgstr "" -#: src/pages/build/BuildDetail.tsx:244 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:141 -#: src/pages/sales/ReturnOrderDetail.tsx:108 -#: src/pages/sales/SalesOrderDetail.tsx:98 +#: src/pages/build/BuildDetail.tsx:245 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:142 +#: src/pages/sales/ReturnOrderDetail.tsx:109 +#: src/pages/sales/SalesOrderDetail.tsx:99 #: src/tables/ColumnRenderers.tsx:321 -#: src/tables/build/BuildAllocatedStockTable.tsx:115 -#: src/tables/build/BuildLineTable.tsx:352 +#: src/tables/build/BuildAllocatedStockTable.tsx:112 +#: src/tables/build/BuildLineTable.tsx:353 msgid "Reference" msgstr "" -#: src/pages/build/BuildDetail.tsx:258 +#: src/pages/build/BuildDetail.tsx:259 msgid "Parent Build" msgstr "" -#: src/pages/build/BuildDetail.tsx:269 +#: src/pages/build/BuildDetail.tsx:270 msgid "Build Quantity" msgstr "" -#: src/pages/build/BuildDetail.tsx:275 +#: src/pages/build/BuildDetail.tsx:276 #: src/pages/part/PartDetail.tsx:598 #: src/tables/bom/BomTable.tsx:365 #: src/tables/bom/BomTable.tsx:407 msgid "Can Build" msgstr "" -#: src/pages/build/BuildDetail.tsx:284 -#: src/pages/build/BuildDetail.tsx:474 +#: src/pages/build/BuildDetail.tsx:285 +#: src/pages/build/BuildDetail.tsx:475 msgid "Completed Outputs" msgstr "" -#: src/pages/build/BuildDetail.tsx:301 +#: src/pages/build/BuildDetail.tsx:302 #: src/tables/Filter.tsx:381 #: src/tables/build/BuildOrderTable.tsx:143 msgid "Issued By" msgstr "" -#: src/pages/build/BuildDetail.tsx:309 +#: src/pages/build/BuildDetail.tsx:310 #: src/pages/part/PartDetail.tsx:691 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:261 -#: src/pages/sales/ReturnOrderDetail.tsx:239 -#: src/pages/sales/SalesOrderDetail.tsx:232 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:262 +#: src/pages/sales/ReturnOrderDetail.tsx:240 +#: src/pages/sales/SalesOrderDetail.tsx:233 #: src/tables/ColumnRenderers.tsx:464 #: src/tables/Filter.tsx:319 msgid "Responsible" msgstr "" -#: src/pages/build/BuildDetail.tsx:327 +#: src/pages/build/BuildDetail.tsx:328 msgid "Any location" msgstr "" -#: src/pages/build/BuildDetail.tsx:334 +#: src/pages/build/BuildDetail.tsx:335 msgid "Destination Location" msgstr "" @@ -6924,24 +6987,24 @@ msgstr "" #~ msgid "Test Statistics" #~ msgstr "Test Statistics" -#: src/pages/build/BuildDetail.tsx:350 +#: src/pages/build/BuildDetail.tsx:351 #: src/tables/settings/ApiTokenTable.tsx:97 #: src/tables/settings/PendingTasksTable.tsx:41 msgid "Created" msgstr "" -#: src/pages/build/BuildDetail.tsx:358 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:286 -#: src/pages/sales/ReturnOrderDetail.tsx:265 -#: src/pages/sales/SalesOrderDetail.tsx:257 +#: src/pages/build/BuildDetail.tsx:359 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:287 +#: src/pages/sales/ReturnOrderDetail.tsx:266 +#: src/pages/sales/SalesOrderDetail.tsx:258 #: src/tables/ColumnRenderers.tsx:486 msgid "Start Date" msgstr "" -#: src/pages/build/BuildDetail.tsx:366 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:294 -#: src/pages/sales/ReturnOrderDetail.tsx:273 -#: src/pages/sales/SalesOrderDetail.tsx:265 +#: src/pages/build/BuildDetail.tsx:367 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:295 +#: src/pages/sales/ReturnOrderDetail.tsx:274 +#: src/pages/sales/SalesOrderDetail.tsx:266 #: src/tables/ColumnRenderers.tsx:494 #: src/tables/part/PartPurchaseOrdersTable.tsx:101 #: src/tables/sales/ReturnOrderLineItemTable.tsx:154 @@ -6954,185 +7017,185 @@ msgstr "" #~ msgstr "Reporting Actions" #: src/pages/build/BuildDetail.tsx:374 +#~ msgid "Print build report" +#~ msgstr "Print build report" + +#: src/pages/build/BuildDetail.tsx:375 #: src/tables/build/BuildOrderTable.tsx:93 #: src/tables/sales/SalesOrderLineItemTable.tsx:347 msgid "Completed" msgstr "" -#: src/pages/build/BuildDetail.tsx:374 -#~ msgid "Print build report" -#~ msgstr "Print build report" - -#: src/pages/build/BuildDetail.tsx:410 +#: src/pages/build/BuildDetail.tsx:411 msgid "Build Details" msgstr "" -#: src/pages/build/BuildDetail.tsx:416 +#: src/pages/build/BuildDetail.tsx:417 msgid "Required Parts" msgstr "" -#: src/pages/build/BuildDetail.tsx:428 -#: src/pages/sales/SalesOrderDetail.tsx:407 -#: src/pages/sales/SalesOrderShipmentDetail.tsx:261 +#: src/pages/build/BuildDetail.tsx:429 +#: src/pages/sales/SalesOrderDetail.tsx:408 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:259 #: src/tables/part/PartSalesAllocationsTable.tsx:73 msgid "Allocated Stock" msgstr "" -#: src/pages/build/BuildDetail.tsx:444 +#: src/pages/build/BuildDetail.tsx:445 msgid "Consumed Stock" msgstr "" -#: src/pages/build/BuildDetail.tsx:461 +#: src/pages/build/BuildDetail.tsx:462 msgid "Incomplete Outputs" msgstr "" -#: src/pages/build/BuildDetail.tsx:489 +#: src/pages/build/BuildDetail.tsx:490 msgid "External Orders" msgstr "" -#: src/pages/build/BuildDetail.tsx:503 +#: src/pages/build/BuildDetail.tsx:504 msgid "Child Build Orders" msgstr "" -#: src/pages/build/BuildDetail.tsx:513 -#: src/pages/part/PartDetail.tsx:937 +#: src/pages/build/BuildDetail.tsx:514 +#: src/pages/part/PartDetail.tsx:926 #: src/pages/stock/StockDetail.tsx:587 #: src/tables/build/BuildOutputTable.tsx:654 #: src/tables/stock/StockItemTestResultTable.tsx:173 msgid "Test Results" msgstr "" -#: src/pages/build/BuildDetail.tsx:550 +#: src/pages/build/BuildDetail.tsx:555 msgid "Edit Build Order" msgstr "" -#: src/pages/build/BuildDetail.tsx:572 +#: src/pages/build/BuildDetail.tsx:577 #: src/tables/build/BuildOrderTable.tsx:207 #: src/tables/build/BuildOrderTable.tsx:223 msgid "Add Build Order" msgstr "" -#: src/pages/build/BuildDetail.tsx:582 +#: src/pages/build/BuildDetail.tsx:587 msgid "Cancel Build Order" msgstr "" -#: src/pages/build/BuildDetail.tsx:584 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:416 -#: src/pages/sales/ReturnOrderDetail.tsx:427 -#: src/pages/sales/SalesOrderDetail.tsx:454 +#: src/pages/build/BuildDetail.tsx:589 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:421 +#: src/pages/sales/ReturnOrderDetail.tsx:432 +#: src/pages/sales/SalesOrderDetail.tsx:459 msgid "Order cancelled" msgstr "" -#: src/pages/build/BuildDetail.tsx:585 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:415 -#: src/pages/sales/ReturnOrderDetail.tsx:426 -#: src/pages/sales/SalesOrderDetail.tsx:453 +#: src/pages/build/BuildDetail.tsx:590 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:420 +#: src/pages/sales/ReturnOrderDetail.tsx:431 +#: src/pages/sales/SalesOrderDetail.tsx:458 msgid "Cancel this order" msgstr "" -#: src/pages/build/BuildDetail.tsx:594 +#: src/pages/build/BuildDetail.tsx:599 msgid "Hold Build Order" msgstr "" -#: src/pages/build/BuildDetail.tsx:596 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:423 -#: src/pages/sales/ReturnOrderDetail.tsx:434 -#: src/pages/sales/SalesOrderDetail.tsx:461 +#: src/pages/build/BuildDetail.tsx:601 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:428 +#: src/pages/sales/ReturnOrderDetail.tsx:439 +#: src/pages/sales/SalesOrderDetail.tsx:466 msgid "Place this order on hold" msgstr "" -#: src/pages/build/BuildDetail.tsx:597 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:424 -#: src/pages/sales/ReturnOrderDetail.tsx:435 -#: src/pages/sales/SalesOrderDetail.tsx:462 +#: src/pages/build/BuildDetail.tsx:602 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:429 +#: src/pages/sales/ReturnOrderDetail.tsx:440 +#: src/pages/sales/SalesOrderDetail.tsx:467 msgid "Order placed on hold" msgstr "" -#: src/pages/build/BuildDetail.tsx:602 +#: src/pages/build/BuildDetail.tsx:607 msgid "Issue Build Order" msgstr "" -#: src/pages/build/BuildDetail.tsx:604 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:407 -#: src/pages/sales/ReturnOrderDetail.tsx:418 -#: src/pages/sales/SalesOrderDetail.tsx:445 +#: src/pages/build/BuildDetail.tsx:609 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:412 +#: src/pages/sales/ReturnOrderDetail.tsx:423 +#: src/pages/sales/SalesOrderDetail.tsx:450 msgid "Issue this order" msgstr "" -#: src/pages/build/BuildDetail.tsx:605 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:408 -#: src/pages/sales/ReturnOrderDetail.tsx:419 -#: src/pages/sales/SalesOrderDetail.tsx:446 +#: src/pages/build/BuildDetail.tsx:610 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:413 +#: src/pages/sales/ReturnOrderDetail.tsx:424 +#: src/pages/sales/SalesOrderDetail.tsx:451 msgid "Order issued" msgstr "" -#: src/pages/build/BuildDetail.tsx:624 +#: src/pages/build/BuildDetail.tsx:629 msgid "Complete Build Order" msgstr "" -#: src/pages/build/BuildDetail.tsx:630 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:436 -#: src/pages/sales/ReturnOrderDetail.tsx:442 -#: src/pages/sales/SalesOrderDetail.tsx:480 +#: src/pages/build/BuildDetail.tsx:635 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:441 +#: src/pages/sales/ReturnOrderDetail.tsx:447 +#: src/pages/sales/SalesOrderDetail.tsx:485 msgid "Mark this order as complete" msgstr "" -#: src/pages/build/BuildDetail.tsx:633 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:430 -#: src/pages/sales/ReturnOrderDetail.tsx:443 -#: src/pages/sales/SalesOrderDetail.tsx:481 +#: src/pages/build/BuildDetail.tsx:638 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:435 +#: src/pages/sales/ReturnOrderDetail.tsx:448 +#: src/pages/sales/SalesOrderDetail.tsx:486 msgid "Order completed" msgstr "" -#: src/pages/build/BuildDetail.tsx:660 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:459 -#: src/pages/sales/ReturnOrderDetail.tsx:470 -#: src/pages/sales/SalesOrderDetail.tsx:516 +#: src/pages/build/BuildDetail.tsx:665 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:464 +#: src/pages/sales/ReturnOrderDetail.tsx:475 +#: src/pages/sales/SalesOrderDetail.tsx:521 msgid "Issue Order" msgstr "" -#: src/pages/build/BuildDetail.tsx:667 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:466 -#: src/pages/sales/ReturnOrderDetail.tsx:477 -#: src/pages/sales/SalesOrderDetail.tsx:530 +#: src/pages/build/BuildDetail.tsx:672 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:471 +#: src/pages/sales/ReturnOrderDetail.tsx:482 +#: src/pages/sales/SalesOrderDetail.tsx:535 msgid "Complete Order" msgstr "" -#: src/pages/build/BuildDetail.tsx:686 +#: src/pages/build/BuildDetail.tsx:691 msgid "Build Order Actions" msgstr "" -#: src/pages/build/BuildDetail.tsx:691 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:489 -#: src/pages/sales/ReturnOrderDetail.tsx:500 -#: src/pages/sales/SalesOrderDetail.tsx:554 +#: src/pages/build/BuildDetail.tsx:696 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:494 +#: src/pages/sales/ReturnOrderDetail.tsx:505 +#: src/pages/sales/SalesOrderDetail.tsx:559 msgid "Edit order" msgstr "" -#: src/pages/build/BuildDetail.tsx:695 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:497 -#: src/pages/sales/ReturnOrderDetail.tsx:506 -#: src/pages/sales/SalesOrderDetail.tsx:559 -msgid "Duplicate order" -msgstr "" - -#: src/pages/build/BuildDetail.tsx:699 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:500 +#: src/pages/build/BuildDetail.tsx:700 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:502 #: src/pages/sales/ReturnOrderDetail.tsx:511 -#: src/pages/sales/SalesOrderDetail.tsx:562 -msgid "Hold order" +#: src/pages/sales/SalesOrderDetail.tsx:564 +msgid "Duplicate order" msgstr "" #: src/pages/build/BuildDetail.tsx:704 #: src/pages/purchasing/PurchaseOrderDetail.tsx:505 #: src/pages/sales/ReturnOrderDetail.tsx:516 #: src/pages/sales/SalesOrderDetail.tsx:567 +msgid "Hold order" +msgstr "" + +#: src/pages/build/BuildDetail.tsx:709 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:510 +#: src/pages/sales/ReturnOrderDetail.tsx:521 +#: src/pages/sales/SalesOrderDetail.tsx:572 msgid "Cancel order" msgstr "" -#: src/pages/build/BuildDetail.tsx:742 +#: src/pages/build/BuildDetail.tsx:747 #: src/pages/stock/StockDetail.tsx:344 -#: src/tables/build/BuildAllocatedStockTable.tsx:85 +#: src/tables/build/BuildAllocatedStockTable.tsx:82 #: src/tables/part/PartBuildAllocationsTable.tsx:45 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:157 #: src/tables/stock/StockTrackingTable.tsx:109 @@ -7143,7 +7206,7 @@ msgstr "" #~ msgid "Build order created" #~ msgstr "Build order created" -#: src/pages/build/BuildIndex.tsx:29 +#: src/pages/build/BuildIndex.tsx:35 #: src/tables/build/BuildOrderTable.tsx:184 msgid "Show external build orders" msgstr "" @@ -7152,61 +7215,82 @@ msgstr "" #~ msgid "New Build Order" #~ msgstr "New Build Order" -#: src/pages/build/BuildIndex.tsx:83 -#: src/pages/purchasing/PurchasingIndex.tsx:69 -#: src/pages/sales/SalesIndex.tsx:92 -#: src/pages/sales/SalesIndex.tsx:125 +#: src/pages/build/BuildIndex.tsx:74 +#: src/pages/part/CategoryDetail.tsx:292 +#: src/pages/purchasing/PurchasingIndex.tsx:74 +#: src/pages/purchasing/PurchasingIndex.tsx:107 +#: src/pages/purchasing/PurchasingIndex.tsx:135 +#: src/pages/purchasing/PurchasingIndex.tsx:156 +#: src/pages/purchasing/PurchasingIndex.tsx:184 +#: src/pages/sales/SalesIndex.tsx:61 +#: src/pages/sales/SalesIndex.tsx:107 +#: src/pages/sales/SalesIndex.tsx:140 msgid "Table View" msgstr "" -#: src/pages/build/BuildIndex.tsx:86 -#: src/pages/purchasing/PurchasingIndex.tsx:72 -#: src/pages/sales/SalesIndex.tsx:95 -#: src/pages/sales/SalesIndex.tsx:128 +#: src/pages/build/BuildIndex.tsx:80 +#: src/pages/purchasing/PurchasingIndex.tsx:80 +#: src/pages/sales/SalesIndex.tsx:67 +#: src/pages/sales/SalesIndex.tsx:113 msgid "Calendar View" msgstr "" -#: src/pages/company/CompanyDetail.tsx:99 +#: src/pages/build/BuildIndex.tsx:86 +#: src/pages/part/CategoryDetail.tsx:306 +#: src/pages/purchasing/PurchasingIndex.tsx:92 +#: src/pages/purchasing/PurchasingIndex.tsx:118 +#: src/pages/purchasing/PurchasingIndex.tsx:141 +#: src/pages/purchasing/PurchasingIndex.tsx:167 +#: src/pages/purchasing/PurchasingIndex.tsx:190 +#: src/pages/sales/SalesIndex.tsx:79 +#: src/pages/sales/SalesIndex.tsx:125 +#: src/pages/sales/SalesIndex.tsx:151 +msgid "Parametric View" +msgstr "" + +#: src/pages/company/CompanyDetail.tsx:100 msgid "Website" msgstr "" -#: src/pages/company/CompanyDetail.tsx:107 +#: src/pages/company/CompanyDetail.tsx:108 msgid "Phone Number" msgstr "" -#: src/pages/company/CompanyDetail.tsx:114 +#: src/pages/company/CompanyDetail.tsx:115 msgid "Email Address" msgstr "" -#: src/pages/company/CompanyDetail.tsx:121 +#: src/pages/company/CompanyDetail.tsx:122 msgid "Tax ID" msgstr "" -#: src/pages/company/CompanyDetail.tsx:131 +#: src/pages/company/CompanyDetail.tsx:132 msgid "Default Currency" msgstr "" -#: src/pages/company/CompanyDetail.tsx:142 +#: src/pages/company/CompanyDetail.tsx:143 #: src/pages/company/ManufacturerDetail.tsx:8 -#: src/pages/company/ManufacturerPartDetail.tsx:104 -#: src/pages/company/ManufacturerPartDetail.tsx:280 -#: src/pages/company/SupplierPartDetail.tsx:152 +#: src/pages/company/ManufacturerPartDetail.tsx:103 +#: src/pages/company/ManufacturerPartDetail.tsx:271 +#: src/pages/company/SupplierPartDetail.tsx:153 #: src/tables/Filter.tsx:347 #: src/tables/company/CompanyTable.tsx:101 #: src/tables/purchasing/SupplierPartTable.tsx:89 msgid "Manufacturer" msgstr "" -#: src/pages/company/CompanyDetail.tsx:148 +#: src/pages/company/CompanyDetail.tsx:149 #: src/pages/company/CustomerDetail.tsx:8 #: src/pages/part/pricing/SaleHistoryPanel.tsx:31 -#: src/pages/sales/ReturnOrderDetail.tsx:123 -#: src/pages/sales/SalesOrderDetail.tsx:113 -#: src/pages/sales/SalesOrderShipmentDetail.tsx:113 +#: src/pages/sales/ReturnOrderDetail.tsx:124 +#: src/pages/sales/SalesOrderDetail.tsx:114 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:111 #: src/pages/stock/StockDetail.tsx:370 #: src/tables/company/CompanyTable.tsx:106 +#: src/tables/sales/ReturnOrderParametricTable.tsx:32 #: src/tables/sales/ReturnOrderTable.tsx:108 -#: src/tables/sales/SalesOrderShipmentTable.tsx:111 +#: src/tables/sales/SalesOrderParametricTable.tsx:32 +#: src/tables/sales/SalesOrderShipmentTable.tsx:132 #: src/tables/sales/SalesOrderTable.tsx:133 #: src/tables/stock/StockTrackingTable.tsx:153 msgid "Customer" @@ -7216,11 +7300,11 @@ msgstr "" #~ msgid "Edit company" #~ msgstr "Edit company" -#: src/pages/company/CompanyDetail.tsx:181 +#: src/pages/company/CompanyDetail.tsx:182 msgid "Company Details" msgstr "" -#: src/pages/company/CompanyDetail.tsx:187 +#: src/pages/company/CompanyDetail.tsx:188 msgid "Supplied Parts" msgstr "" @@ -7228,79 +7312,79 @@ msgstr "" #~ msgid "Delete company" #~ msgstr "Delete company" -#: src/pages/company/CompanyDetail.tsx:194 +#: src/pages/company/CompanyDetail.tsx:195 msgid "Manufactured Parts" msgstr "" -#: src/pages/company/CompanyDetail.tsx:241 +#: src/pages/company/CompanyDetail.tsx:242 msgid "Assigned Stock" msgstr "" -#: src/pages/company/CompanyDetail.tsx:282 +#: src/pages/company/CompanyDetail.tsx:287 #: src/tables/company/CompanyTable.tsx:82 msgid "Edit Company" msgstr "" -#: src/pages/company/CompanyDetail.tsx:290 +#: src/pages/company/CompanyDetail.tsx:295 msgid "Delete Company" msgstr "" -#: src/pages/company/CompanyDetail.tsx:305 +#: src/pages/company/CompanyDetail.tsx:310 msgid "Company Actions" msgstr "" -#: src/pages/company/ManufacturerPartDetail.tsx:78 -#: src/pages/company/SupplierPartDetail.tsx:89 +#: src/pages/company/ManufacturerPartDetail.tsx:77 +#: src/pages/company/SupplierPartDetail.tsx:90 msgid "Internal Part" msgstr "" -#: src/pages/company/ManufacturerPartDetail.tsx:112 +#: src/pages/company/ManufacturerPartDetail.tsx:111 msgid "Manufacturer Part Number" msgstr "" -#: src/pages/company/ManufacturerPartDetail.tsx:129 -#: src/pages/company/SupplierPartDetail.tsx:113 +#: src/pages/company/ManufacturerPartDetail.tsx:128 +#: src/pages/company/SupplierPartDetail.tsx:114 msgid "External Link" msgstr "" -#: src/pages/company/ManufacturerPartDetail.tsx:148 -#: src/pages/company/SupplierPartDetail.tsx:232 +#: src/pages/company/ManufacturerPartDetail.tsx:147 +#: src/pages/company/SupplierPartDetail.tsx:233 #: src/pages/part/PartDetail.tsx:787 msgid "Part Details" msgstr "" -#: src/pages/company/ManufacturerPartDetail.tsx:151 +#: src/pages/company/ManufacturerPartDetail.tsx:150 msgid "Manufacturer Details" msgstr "" -#: src/pages/company/ManufacturerPartDetail.tsx:160 +#: src/pages/company/ManufacturerPartDetail.tsx:159 msgid "Manufacturer Part Details" msgstr "" -#: src/pages/company/ManufacturerPartDetail.tsx:178 -#: src/pages/company/SupplierPartDetail.tsx:252 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:381 +#: src/pages/company/ManufacturerPartDetail.tsx:165 +#: src/pages/company/SupplierPartDetail.tsx:253 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:382 msgid "Received Stock" msgstr "" -#: src/pages/company/ManufacturerPartDetail.tsx:220 +#: src/pages/company/ManufacturerPartDetail.tsx:211 #: src/tables/purchasing/ManufacturerPartTable.tsx:108 msgid "Edit Manufacturer Part" msgstr "" -#: src/pages/company/ManufacturerPartDetail.tsx:227 +#: src/pages/company/ManufacturerPartDetail.tsx:218 #: src/tables/purchasing/ManufacturerPartTable.tsx:96 #: src/tables/purchasing/ManufacturerPartTable.tsx:115 #: src/tables/purchasing/ManufacturerPartTable.tsx:156 msgid "Add Manufacturer Part" msgstr "" -#: src/pages/company/ManufacturerPartDetail.tsx:239 +#: src/pages/company/ManufacturerPartDetail.tsx:230 #: src/tables/purchasing/ManufacturerPartTable.tsx:126 msgid "Delete Manufacturer Part" msgstr "" -#: src/pages/company/ManufacturerPartDetail.tsx:254 +#: src/pages/company/ManufacturerPartDetail.tsx:245 msgid "Manufacturer Part Actions" msgstr "" @@ -7308,12 +7392,12 @@ msgstr "" #~ msgid "ManufacturerPart" #~ msgstr "ManufacturerPart" -#: src/pages/company/SupplierPartDetail.tsx:104 +#: src/pages/company/SupplierPartDetail.tsx:105 #: src/tables/part/RelatedPartTable.tsx:82 msgid "Part Description" msgstr "" -#: src/pages/company/SupplierPartDetail.tsx:179 +#: src/pages/company/SupplierPartDetail.tsx:180 #: src/tables/part/PartPurchaseOrdersTable.tsx:73 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:191 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:233 @@ -7321,50 +7405,50 @@ msgstr "" msgid "Pack Quantity" msgstr "" -#: src/pages/company/SupplierPartDetail.tsx:204 +#: src/pages/company/SupplierPartDetail.tsx:205 msgid "Supplier Availability" msgstr "" -#: src/pages/company/SupplierPartDetail.tsx:212 +#: src/pages/company/SupplierPartDetail.tsx:213 msgid "Availability Updated" msgstr "" -#: src/pages/company/SupplierPartDetail.tsx:237 +#: src/pages/company/SupplierPartDetail.tsx:238 msgid "Availability" msgstr "" -#: src/pages/company/SupplierPartDetail.tsx:246 +#: src/pages/company/SupplierPartDetail.tsx:247 msgid "Supplier Part Details" msgstr "" -#: src/pages/company/SupplierPartDetail.tsx:279 +#: src/pages/company/SupplierPartDetail.tsx:280 #: src/pages/part/PartPricingPanel.tsx:113 #: src/pages/part/pricing/PricingOverviewPanel.tsx:239 msgid "Supplier Pricing" msgstr "" -#: src/pages/company/SupplierPartDetail.tsx:308 +#: src/pages/company/SupplierPartDetail.tsx:313 msgid "Supplier Part Actions" msgstr "" -#: src/pages/company/SupplierPartDetail.tsx:332 +#: src/pages/company/SupplierPartDetail.tsx:337 #: src/tables/purchasing/SupplierPartTable.tsx:244 msgid "Edit Supplier Part" msgstr "" -#: src/pages/company/SupplierPartDetail.tsx:340 +#: src/pages/company/SupplierPartDetail.tsx:345 #: src/tables/purchasing/SupplierPartTable.tsx:264 msgid "Delete Supplier Part" msgstr "" -#: src/pages/company/SupplierPartDetail.tsx:348 +#: src/pages/company/SupplierPartDetail.tsx:353 #: src/tables/purchasing/SupplierPartTable.tsx:172 #: src/tables/purchasing/SupplierPartTable.tsx:251 msgid "Add Supplier Part" msgstr "" -#: src/pages/company/SupplierPartDetail.tsx:388 -#: src/pages/part/PartDetail.tsx:1003 +#: src/pages/company/SupplierPartDetail.tsx:393 +#: src/pages/part/PartDetail.tsx:1018 msgid "No Stock" msgstr "" @@ -7411,83 +7495,83 @@ msgstr "" msgid "Basic user" msgstr "" -#: src/pages/part/CategoryDetail.tsx:100 +#: src/pages/part/CategoryDetail.tsx:103 #: src/pages/stock/LocationDetail.tsx:94 #: src/tables/settings/ErrorTable.tsx:63 #: src/tables/settings/ErrorTable.tsx:108 msgid "Path" msgstr "" -#: src/pages/part/CategoryDetail.tsx:116 +#: src/pages/part/CategoryDetail.tsx:119 msgid "Parent Category" msgstr "" -#: src/pages/part/CategoryDetail.tsx:139 -#: src/pages/part/CategoryDetail.tsx:271 +#: src/pages/part/CategoryDetail.tsx:142 +#: src/pages/part/CategoryDetail.tsx:279 msgid "Subcategories" msgstr "" -#: src/pages/part/CategoryDetail.tsx:146 +#: src/pages/part/CategoryDetail.tsx:149 #: src/pages/stock/LocationDetail.tsx:134 #: src/tables/part/PartCategoryTable.tsx:89 #: src/tables/stock/StockLocationTable.tsx:43 msgid "Structural" msgstr "" -#: src/pages/part/CategoryDetail.tsx:152 +#: src/pages/part/CategoryDetail.tsx:155 msgid "Parent default location" msgstr "" -#: src/pages/part/CategoryDetail.tsx:159 +#: src/pages/part/CategoryDetail.tsx:162 msgid "Default location" msgstr "" -#: src/pages/part/CategoryDetail.tsx:170 +#: src/pages/part/CategoryDetail.tsx:173 msgid "Top level part category" msgstr "" -#: src/pages/part/CategoryDetail.tsx:180 -#: src/pages/part/CategoryDetail.tsx:248 +#: src/pages/part/CategoryDetail.tsx:183 +#: src/pages/part/CategoryDetail.tsx:251 #: src/tables/part/PartCategoryTable.tsx:122 msgid "Edit Part Category" msgstr "" -#: src/pages/part/CategoryDetail.tsx:189 +#: src/pages/part/CategoryDetail.tsx:192 msgid "Move items to parent category" msgstr "" -#: src/pages/part/CategoryDetail.tsx:193 +#: src/pages/part/CategoryDetail.tsx:196 #: src/pages/stock/LocationDetail.tsx:226 msgid "Delete items" msgstr "" -#: src/pages/part/CategoryDetail.tsx:201 -#: src/pages/part/CategoryDetail.tsx:253 +#: src/pages/part/CategoryDetail.tsx:204 +#: src/pages/part/CategoryDetail.tsx:256 msgid "Delete Part Category" msgstr "" -#: src/pages/part/CategoryDetail.tsx:204 +#: src/pages/part/CategoryDetail.tsx:207 msgid "Parts Action" msgstr "" -#: src/pages/part/CategoryDetail.tsx:205 +#: src/pages/part/CategoryDetail.tsx:208 msgid "Action for parts in this category" msgstr "" -#: src/pages/part/CategoryDetail.tsx:211 +#: src/pages/part/CategoryDetail.tsx:214 msgid "Child Categories Action" msgstr "" -#: src/pages/part/CategoryDetail.tsx:212 +#: src/pages/part/CategoryDetail.tsx:215 msgid "Action for child categories in this category" msgstr "" -#: src/pages/part/CategoryDetail.tsx:244 +#: src/pages/part/CategoryDetail.tsx:247 #: src/tables/part/PartCategoryTable.tsx:143 msgid "Category Actions" msgstr "" -#: src/pages/part/CategoryDetail.tsx:265 +#: src/pages/part/CategoryDetail.tsx:273 msgid "Category Details" msgstr "" @@ -7585,7 +7669,6 @@ msgid "Category Default Location" msgstr "" #: src/pages/part/PartDetail.tsx:507 -#: src/tables/purchasing/ManufacturerPartParameterTable.tsx:48 msgid "Units" msgstr "" @@ -7600,7 +7683,7 @@ msgstr "" #: src/pages/part/PartDetail.tsx:542 #: src/tables/bom/BomTable.tsx:439 -#: src/tables/build/BuildLineTable.tsx:305 +#: src/tables/build/BuildLineTable.tsx:306 #: src/tables/part/PartTable.tsx:319 #: src/tables/sales/SalesOrderLineItemTable.tsx:138 msgid "Available Stock" @@ -7608,7 +7691,7 @@ msgstr "" #: src/pages/part/PartDetail.tsx:548 #: src/tables/bom/BomTable.tsx:341 -#: src/tables/build/BuildLineTable.tsx:267 +#: src/tables/build/BuildLineTable.tsx:268 #: src/tables/sales/SalesOrderLineItemTable.tsx:180 msgid "On order" msgstr "" @@ -7634,7 +7717,7 @@ msgstr "" #~ msgstr "Scheduling" #: src/pages/part/PartDetail.tsx:620 -#: src/tables/part/ParametricPartTable.tsx:359 +#: src/tables/part/ParametricPartTable.tsx:24 #: src/tables/part/PartTable.tsx:203 msgid "Locked" msgstr "" @@ -7671,16 +7754,16 @@ msgid "Saleable Part" msgstr "" #: src/pages/part/PartDetail.tsx:663 -#: src/pages/part/PartDetail.tsx:1033 +#: src/pages/part/PartDetail.tsx:1054 #: src/tables/bom/BomTable.tsx:150 #: src/tables/bom/BomTable.tsx:434 msgid "Virtual Part" msgstr "" #: src/pages/part/PartDetail.tsx:678 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:271 -#: src/pages/sales/ReturnOrderDetail.tsx:249 -#: src/pages/sales/SalesOrderDetail.tsx:242 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:272 +#: src/pages/sales/ReturnOrderDetail.tsx:250 +#: src/pages/sales/SalesOrderDetail.tsx:243 #: src/tables/ColumnRenderers.tsx:502 msgid "Creation Date" msgstr "" @@ -7718,35 +7801,46 @@ msgstr "" msgid "Select Part Revision" msgstr "" -#: src/pages/part/PartDetail.tsx:823 +#: src/pages/part/PartDetail.tsx:812 msgid "Variants" msgstr "" -#: src/pages/part/PartDetail.tsx:830 +#: src/pages/part/PartDetail.tsx:819 #: src/pages/stock/StockDetail.tsx:542 msgid "Allocations" msgstr "" -#: src/pages/part/PartDetail.tsx:837 +#: src/pages/part/PartDetail.tsx:826 msgid "Bill of Materials" msgstr "" -#: src/pages/part/PartDetail.tsx:849 +#: src/pages/part/PartDetail.tsx:838 msgid "Used In" msgstr "" -#: src/pages/part/PartDetail.tsx:856 +#: src/pages/part/PartDetail.tsx:845 msgid "Part Pricing" msgstr "" -#: src/pages/part/PartDetail.tsx:926 +#: src/pages/part/PartDetail.tsx:915 msgid "Test Templates" msgstr "" -#: src/pages/part/PartDetail.tsx:948 +#: src/pages/part/PartDetail.tsx:937 msgid "Related Parts" msgstr "" +#: src/pages/part/PartDetail.tsx:949 +#: src/tables/ColumnRenderers.tsx:73 +#: src/tables/bom/BomTable.tsx:657 +#: src/tables/part/PartTestTemplateTable.tsx:258 +msgid "Part is Locked" +msgstr "" + +#: src/pages/part/PartDetail.tsx:954 +msgid "Part parameters cannot be edited, as the part is locked" +msgstr "" + #: src/pages/part/PartDetail.tsx:956 #~ msgid "Count part stock" #~ msgstr "Count part stock" @@ -7755,42 +7849,46 @@ msgstr "" #~ msgid "Transfer part stock" #~ msgstr "Transfer part stock" -#: src/pages/part/PartDetail.tsx:1009 +#: src/pages/part/PartDetail.tsx:1024 #: src/tables/part/PartTestTemplateTable.tsx:112 #: src/tables/stock/StockItemTestResultTable.tsx:404 msgid "Required" msgstr "" -#: src/pages/part/PartDetail.tsx:1058 +#: src/pages/part/PartDetail.tsx:1042 +msgid "Deficit" +msgstr "" + +#: src/pages/part/PartDetail.tsx:1079 #: src/tables/part/PartTable.tsx:396 #: src/tables/part/PartTable.tsx:449 msgid "Add Part" msgstr "" -#: src/pages/part/PartDetail.tsx:1072 +#: src/pages/part/PartDetail.tsx:1093 msgid "Delete Part" msgstr "" -#: src/pages/part/PartDetail.tsx:1081 +#: src/pages/part/PartDetail.tsx:1102 msgid "Deleting this part cannot be reversed" msgstr "" -#: src/pages/part/PartDetail.tsx:1143 +#: src/pages/part/PartDetail.tsx:1164 #: src/pages/stock/StockDetail.tsx:883 msgid "Order" msgstr "" -#: src/pages/part/PartDetail.tsx:1144 +#: src/pages/part/PartDetail.tsx:1165 #: src/pages/stock/StockDetail.tsx:884 -#: src/tables/build/BuildLineTable.tsx:761 +#: src/tables/build/BuildLineTable.tsx:768 msgid "Order Stock" msgstr "" -#: src/pages/part/PartDetail.tsx:1156 +#: src/pages/part/PartDetail.tsx:1177 msgid "Search by serial number" msgstr "" -#: src/pages/part/PartDetail.tsx:1164 +#: src/pages/part/PartDetail.tsx:1185 #: src/tables/part/PartTable.tsx:506 msgid "Part Actions" msgstr "" @@ -8039,7 +8137,7 @@ msgstr "" #: src/pages/part/pricing/PricingOverviewPanel.tsx:288 #: src/pages/stock/StockDetail.tsx:426 -#: src/tables/part/PartParameterTable.tsx:121 +#: src/tables/general/ParameterTable.tsx:101 #: src/tables/stock/StockItemTable.tsx:300 msgid "Last Updated" msgstr "" @@ -8107,17 +8205,17 @@ msgstr "" msgid "Variant Part" msgstr "" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:89 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:90 msgid "Edit Purchase Order" msgstr "" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:125 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:126 #: src/tables/purchasing/PurchaseOrderTable.tsx:154 #: src/tables/purchasing/PurchaseOrderTable.tsx:167 msgid "Add Purchase Order" msgstr "" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:147 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:148 msgid "Supplier Reference" msgstr "" @@ -8127,20 +8225,20 @@ msgstr "" #~ msgid "Order Currency," #~ msgstr "Order Currency," -#: src/pages/purchasing/PurchaseOrderDetail.tsx:187 -#: src/pages/sales/ReturnOrderDetail.tsx:160 -#: src/pages/sales/SalesOrderDetail.tsx:144 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:188 +#: src/pages/sales/ReturnOrderDetail.tsx:161 +#: src/pages/sales/SalesOrderDetail.tsx:145 msgid "Completed Line Items" msgstr "" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:196 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:197 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:272 msgid "Destination" msgstr "" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:202 -#: src/pages/sales/ReturnOrderDetail.tsx:167 -#: src/pages/sales/SalesOrderDetail.tsx:161 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:203 +#: src/pages/sales/ReturnOrderDetail.tsx:168 +#: src/pages/sales/SalesOrderDetail.tsx:162 msgid "Order Currency" msgstr "" @@ -8150,97 +8248,97 @@ msgstr "" #~ msgid "Created On" #~ msgstr "Created On" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:208 -#: src/pages/sales/ReturnOrderDetail.tsx:174 -#: src/pages/sales/SalesOrderDetail.tsx:167 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:209 +#: src/pages/sales/ReturnOrderDetail.tsx:175 +#: src/pages/sales/SalesOrderDetail.tsx:168 msgid "Total Cost" msgstr "" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:237 -#: src/pages/sales/ReturnOrderDetail.tsx:215 -#: src/pages/sales/SalesOrderDetail.tsx:208 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:238 +#: src/pages/sales/ReturnOrderDetail.tsx:216 +#: src/pages/sales/SalesOrderDetail.tsx:209 msgid "Contact Email" msgstr "" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:245 -#: src/pages/sales/ReturnOrderDetail.tsx:223 -#: src/pages/sales/SalesOrderDetail.tsx:216 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:246 +#: src/pages/sales/ReturnOrderDetail.tsx:224 +#: src/pages/sales/SalesOrderDetail.tsx:217 msgid "Contact Phone" msgstr "" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:278 -#: src/pages/sales/ReturnOrderDetail.tsx:257 -#: src/pages/sales/SalesOrderDetail.tsx:249 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:279 +#: src/pages/sales/ReturnOrderDetail.tsx:258 +#: src/pages/sales/SalesOrderDetail.tsx:250 msgid "Issue Date" msgstr "" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:303 -#: src/pages/sales/ReturnOrderDetail.tsx:281 -#: src/pages/sales/SalesOrderDetail.tsx:272 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:304 +#: src/pages/sales/ReturnOrderDetail.tsx:282 +#: src/pages/sales/SalesOrderDetail.tsx:273 #: src/tables/ColumnRenderers.tsx:510 #: src/tables/build/BuildOrderTable.tsx:137 #: src/tables/part/PartPurchaseOrdersTable.tsx:106 msgid "Completion Date" msgstr "" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:333 -#: src/pages/sales/ReturnOrderDetail.tsx:311 -#: src/pages/sales/SalesOrderDetail.tsx:349 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:334 +#: src/pages/sales/ReturnOrderDetail.tsx:312 +#: src/pages/sales/SalesOrderDetail.tsx:350 msgid "Order Details" msgstr "" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:339 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:348 -#: src/pages/sales/ReturnOrderDetail.tsx:153 -#: src/pages/sales/ReturnOrderDetail.tsx:317 -#: src/pages/sales/ReturnOrderDetail.tsx:326 -#: src/pages/sales/SalesOrderDetail.tsx:355 -#: src/pages/sales/SalesOrderDetail.tsx:364 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:340 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:349 +#: src/pages/sales/ReturnOrderDetail.tsx:154 +#: src/pages/sales/ReturnOrderDetail.tsx:318 +#: src/pages/sales/ReturnOrderDetail.tsx:327 +#: src/pages/sales/SalesOrderDetail.tsx:356 +#: src/pages/sales/SalesOrderDetail.tsx:365 msgid "Line Items" msgstr "" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:363 -#: src/pages/sales/ReturnOrderDetail.tsx:341 -#: src/pages/sales/SalesOrderDetail.tsx:378 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:364 +#: src/pages/sales/ReturnOrderDetail.tsx:342 +#: src/pages/sales/SalesOrderDetail.tsx:379 msgid "Extra Line Items" msgstr "" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:405 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:410 msgid "Issue Purchase Order" msgstr "" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:413 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:418 msgid "Cancel Purchase Order" msgstr "" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:421 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:426 msgid "Hold Purchase Order" msgstr "" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:429 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:434 msgid "Complete Purchase Order" msgstr "" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:485 -#: src/pages/sales/ReturnOrderDetail.tsx:496 -#: src/pages/sales/SalesOrderDetail.tsx:549 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:490 +#: src/pages/sales/ReturnOrderDetail.tsx:501 +#: src/pages/sales/SalesOrderDetail.tsx:554 msgid "Order Actions" msgstr "" -#: src/pages/sales/ReturnOrderDetail.tsx:114 -#: src/pages/sales/SalesOrderDetail.tsx:104 -#: src/pages/sales/SalesOrderShipmentDetail.tsx:134 +#: src/pages/sales/ReturnOrderDetail.tsx:115 +#: src/pages/sales/SalesOrderDetail.tsx:105 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:132 #: src/tables/sales/SalesOrderTable.tsx:141 msgid "Customer Reference" msgstr "" -#: src/pages/sales/ReturnOrderDetail.tsx:195 +#: src/pages/sales/ReturnOrderDetail.tsx:196 msgid "Return Address" msgstr "" -#: src/pages/sales/ReturnOrderDetail.tsx:201 -#: src/pages/sales/SalesOrderDetail.tsx:194 -#: src/pages/sales/SalesOrderShipmentDetail.tsx:181 +#: src/pages/sales/ReturnOrderDetail.tsx:202 +#: src/pages/sales/SalesOrderDetail.tsx:195 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:179 msgid "Not specified" msgstr "" @@ -8248,117 +8346,117 @@ msgstr "" #~ msgid "Order canceled" #~ msgstr "Order canceled" -#: src/pages/sales/ReturnOrderDetail.tsx:389 +#: src/pages/sales/ReturnOrderDetail.tsx:394 msgid "Edit Return Order" msgstr "" -#: src/pages/sales/ReturnOrderDetail.tsx:407 +#: src/pages/sales/ReturnOrderDetail.tsx:412 #: src/tables/sales/ReturnOrderTable.tsx:154 #: src/tables/sales/ReturnOrderTable.tsx:167 msgid "Add Return Order" msgstr "" -#: src/pages/sales/ReturnOrderDetail.tsx:416 +#: src/pages/sales/ReturnOrderDetail.tsx:421 msgid "Issue Return Order" msgstr "" -#: src/pages/sales/ReturnOrderDetail.tsx:424 +#: src/pages/sales/ReturnOrderDetail.tsx:429 msgid "Cancel Return Order" msgstr "" -#: src/pages/sales/ReturnOrderDetail.tsx:432 +#: src/pages/sales/ReturnOrderDetail.tsx:437 msgid "Hold Return Order" msgstr "" -#: src/pages/sales/ReturnOrderDetail.tsx:440 +#: src/pages/sales/ReturnOrderDetail.tsx:445 msgid "Complete Return Order" msgstr "" -#: src/pages/sales/SalesOrderDetail.tsx:153 +#: src/pages/sales/SalesOrderDetail.tsx:154 msgid "Completed Shipments" msgstr "" -#: src/pages/sales/SalesOrderDetail.tsx:188 -#: src/pages/sales/SalesOrderShipmentDetail.tsx:170 +#: src/pages/sales/SalesOrderDetail.tsx:189 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:168 msgid "Shipping Address" msgstr "" -#: src/pages/sales/SalesOrderDetail.tsx:316 +#: src/pages/sales/SalesOrderDetail.tsx:317 msgid "Edit Sales Order" msgstr "" -#: src/pages/sales/SalesOrderDetail.tsx:338 +#: src/pages/sales/SalesOrderDetail.tsx:339 #: src/tables/sales/SalesOrderTable.tsx:108 #: src/tables/sales/SalesOrderTable.tsx:121 msgid "Add Sales Order" msgstr "" -#: src/pages/sales/SalesOrderDetail.tsx:396 +#: src/pages/sales/SalesOrderDetail.tsx:397 #: src/tables/sales/SalesOrderTable.tsx:147 msgid "Shipments" msgstr "" -#: src/pages/sales/SalesOrderDetail.tsx:443 +#: src/pages/sales/SalesOrderDetail.tsx:448 msgid "Issue Sales Order" msgstr "" -#: src/pages/sales/SalesOrderDetail.tsx:451 +#: src/pages/sales/SalesOrderDetail.tsx:456 msgid "Cancel Sales Order" msgstr "" -#: src/pages/sales/SalesOrderDetail.tsx:459 +#: src/pages/sales/SalesOrderDetail.tsx:464 msgid "Hold Sales Order" msgstr "" -#: src/pages/sales/SalesOrderDetail.tsx:467 +#: src/pages/sales/SalesOrderDetail.tsx:472 msgid "Ship Sales Order" msgstr "" -#: src/pages/sales/SalesOrderDetail.tsx:469 +#: src/pages/sales/SalesOrderDetail.tsx:474 msgid "Ship this order?" msgstr "" -#: src/pages/sales/SalesOrderDetail.tsx:470 +#: src/pages/sales/SalesOrderDetail.tsx:475 msgid "Order shipped" msgstr "" -#: src/pages/sales/SalesOrderDetail.tsx:478 +#: src/pages/sales/SalesOrderDetail.tsx:483 msgid "Complete Sales Order" msgstr "" -#: src/pages/sales/SalesOrderDetail.tsx:523 +#: src/pages/sales/SalesOrderDetail.tsx:528 msgid "Ship Order" msgstr "" -#: src/pages/sales/SalesOrderShipmentDetail.tsx:142 -#: src/tables/sales/SalesOrderShipmentTable.tsx:135 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:140 +#: src/tables/sales/SalesOrderShipmentTable.tsx:156 msgid "Shipment Reference" msgstr "" -#: src/pages/sales/SalesOrderShipmentDetail.tsx:148 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:146 msgid "Tracking Number" msgstr "" -#: src/pages/sales/SalesOrderShipmentDetail.tsx:156 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:154 msgid "Invoice Number" msgstr "" -#: src/pages/sales/SalesOrderShipmentDetail.tsx:191 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:189 msgid "Allocated Items" msgstr "" -#: src/pages/sales/SalesOrderShipmentDetail.tsx:196 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:194 msgid "Checked By" msgstr "" -#: src/pages/sales/SalesOrderShipmentDetail.tsx:202 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:200 msgid "Not checked" msgstr "" -#: src/pages/sales/SalesOrderShipmentDetail.tsx:208 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:206 #: src/tables/ColumnRenderers.tsx:518 #: src/tables/sales/SalesOrderAllocationTable.tsx:182 -#: src/tables/sales/SalesOrderShipmentTable.tsx:168 +#: src/tables/sales/SalesOrderShipmentTable.tsx:189 msgid "Shipment Date" msgstr "" @@ -8366,108 +8464,82 @@ msgstr "" #~ msgid "Assigned Items" #~ msgstr "Assigned Items" -#: src/pages/sales/SalesOrderShipmentDetail.tsx:216 -#: src/tables/sales/SalesOrderShipmentTable.tsx:172 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:214 +#: src/tables/sales/SalesOrderShipmentTable.tsx:193 msgid "Delivery Date" msgstr "" -#: src/pages/sales/SalesOrderShipmentDetail.tsx:255 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:253 msgid "Shipment Details" msgstr "" -#: src/pages/sales/SalesOrderShipmentDetail.tsx:294 -#: src/pages/sales/SalesOrderShipmentDetail.tsx:438 -#: src/tables/sales/SalesOrderShipmentTable.tsx:90 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:292 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:406 +#: src/tables/sales/SalesOrderShipmentTable.tsx:97 msgid "Edit Shipment" msgstr "" -#: src/pages/sales/SalesOrderShipmentDetail.tsx:301 -#: src/pages/sales/SalesOrderShipmentDetail.tsx:457 -#: src/tables/sales/SalesOrderShipmentTable.tsx:82 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:299 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:425 +#: src/tables/sales/SalesOrderShipmentTable.tsx:89 msgid "Cancel Shipment" msgstr "" -#: src/pages/sales/SalesOrderShipmentDetail.tsx:314 -#: src/tables/sales/SalesOrderShipmentTable.tsx:98 -#: src/tables/sales/SalesOrderShipmentTable.tsx:193 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:312 +#: src/tables/sales/SalesOrderShipmentTable.tsx:119 +#: src/tables/sales/SalesOrderShipmentTable.tsx:238 msgid "Complete Shipment" msgstr "" -#: src/pages/sales/SalesOrderShipmentDetail.tsx:326 -#: src/pages/sales/SalesOrderShipmentDetail.tsx:328 -msgid "Check Shipment" -msgstr "" - -#: src/pages/sales/SalesOrderShipmentDetail.tsx:329 -msgid "Marking the shipment as checked indicates that you have verified that all items included in this shipment are correct" -msgstr "" - #: src/pages/sales/SalesOrderShipmentDetail.tsx:339 -msgid "Shipment marked as checked" -msgstr "" - -#: src/pages/sales/SalesOrderShipmentDetail.tsx:346 -#: src/pages/sales/SalesOrderShipmentDetail.tsx:348 -msgid "Uncheck Shipment" -msgstr "" - -#: src/pages/sales/SalesOrderShipmentDetail.tsx:349 -msgid "Marking the shipment as unchecked indicates that the shipment requires further verification" -msgstr "" - -#: src/pages/sales/SalesOrderShipmentDetail.tsx:359 -msgid "Shipment marked as unchecked" -msgstr "" - -#: src/pages/sales/SalesOrderShipmentDetail.tsx:371 #: src/tables/part/PartPurchaseOrdersTable.tsx:122 msgid "Pending" msgstr "" -#: src/pages/sales/SalesOrderShipmentDetail.tsx:377 -#: src/tables/sales/SalesOrderShipmentTable.tsx:147 -#: src/tables/sales/SalesOrderShipmentTable.tsx:254 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:345 +#: src/tables/sales/SalesOrderShipmentTable.tsx:168 +#: src/tables/sales/SalesOrderShipmentTable.tsx:299 msgid "Checked" msgstr "" -#: src/pages/sales/SalesOrderShipmentDetail.tsx:383 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:351 msgid "Not Checked" msgstr "" -#: src/pages/sales/SalesOrderShipmentDetail.tsx:389 -#: src/tables/sales/SalesOrderShipmentTable.tsx:154 -#: src/tables/sales/SalesOrderShipmentTable.tsx:259 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:357 +#: src/tables/sales/SalesOrderShipmentTable.tsx:175 +#: src/tables/sales/SalesOrderShipmentTable.tsx:304 msgid "Shipped" msgstr "" -#: src/pages/sales/SalesOrderShipmentDetail.tsx:395 -#: src/tables/sales/SalesOrderShipmentTable.tsx:161 -#: src/tables/sales/SalesOrderShipmentTable.tsx:264 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:363 +#: src/tables/sales/SalesOrderShipmentTable.tsx:182 +#: src/tables/sales/SalesOrderShipmentTable.tsx:309 #: src/tables/settings/EmailTable.tsx:31 msgid "Delivered" msgstr "" -#: src/pages/sales/SalesOrderShipmentDetail.tsx:410 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:378 msgid "Send Shipment" msgstr "" -#: src/pages/sales/SalesOrderShipmentDetail.tsx:433 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:401 msgid "Shipment Actions" msgstr "" -#: src/pages/sales/SalesOrderShipmentDetail.tsx:442 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:410 msgid "Check" msgstr "" -#: src/pages/sales/SalesOrderShipmentDetail.tsx:443 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:411 msgid "Mark shipment as checked" msgstr "" -#: src/pages/sales/SalesOrderShipmentDetail.tsx:449 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:417 msgid "Uncheck" msgstr "" -#: src/pages/sales/SalesOrderShipmentDetail.tsx:450 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:418 msgid "Mark shipment as unchecked" msgstr "" @@ -8775,13 +8847,6 @@ msgstr "" msgid "Part is not active" msgstr "" -#: src/tables/ColumnRenderers.tsx:73 -#: src/tables/bom/BomTable.tsx:657 -#: src/tables/part/PartParameterTable.tsx:227 -#: src/tables/part/PartTestTemplateTable.tsx:258 -msgid "Part is Locked" -msgstr "" - #: src/tables/ColumnRenderers.tsx:78 msgid "You are subscribed to notifications for this part" msgstr "" @@ -9219,13 +9284,13 @@ msgstr "" #~ msgstr "Show asssmbled items" #: src/tables/bom/BomTable.tsx:315 -#: src/tables/build/BuildLineTable.tsx:276 +#: src/tables/build/BuildLineTable.tsx:277 #: src/tables/part/PartTable.tsx:145 msgid "External stock" msgstr "" #: src/tables/bom/BomTable.tsx:323 -#: src/tables/build/BuildLineTable.tsx:239 +#: src/tables/build/BuildLineTable.tsx:240 msgid "Includes substitute stock" msgstr "" @@ -9234,7 +9299,7 @@ msgstr "" #~ msgstr "Edit Bom Item" #: src/tables/bom/BomTable.tsx:332 -#: src/tables/build/BuildLineTable.tsx:249 +#: src/tables/build/BuildLineTable.tsx:250 #: src/tables/sales/SalesOrderLineItemTable.tsx:166 msgid "Includes variant stock" msgstr "" @@ -9272,8 +9337,8 @@ msgid "Stock Information" msgstr "" #: src/tables/bom/BomTable.tsx:399 -#: src/tables/build/BuildLineTable.tsx:496 -#: src/tables/build/BuildLineTable.tsx:537 +#: src/tables/build/BuildLineTable.tsx:497 +#: src/tables/build/BuildLineTable.tsx:538 msgid "Consumable item" msgstr "" @@ -9282,7 +9347,7 @@ msgid "No available stock" msgstr "" #: src/tables/bom/BomTable.tsx:420 -#: src/tables/build/BuildLineTable.tsx:213 +#: src/tables/build/BuildLineTable.tsx:214 msgid "Show testable items" msgstr "" @@ -9291,7 +9356,7 @@ msgid "Show trackable items" msgstr "" #: src/tables/bom/BomTable.tsx:430 -#: src/tables/build/BuildLineTable.tsx:208 +#: src/tables/build/BuildLineTable.tsx:209 msgid "Show assembled items" msgstr "" @@ -9335,7 +9400,7 @@ msgstr "" #: src/tables/bom/BomTable.tsx:464 #: src/tables/bom/UsedInTable.tsx:85 -#: src/tables/build/BuildLineTable.tsx:202 +#: src/tables/build/BuildLineTable.tsx:203 msgid "Optional" msgstr "" @@ -9345,7 +9410,7 @@ msgid "Show optional items" msgstr "" #: src/tables/bom/BomTable.tsx:469 -#: src/tables/build/BuildLineTable.tsx:197 +#: src/tables/build/BuildLineTable.tsx:198 msgid "Consumable" msgstr "" @@ -9420,6 +9485,7 @@ msgid "Add a single BOM item" msgstr "" #: src/tables/bom/BomTable.tsx:637 +#: src/tables/general/ParameterTable.tsx:206 #: src/tables/part/PartTable.tsx:546 msgid "Import from File" msgstr "" @@ -9433,8 +9499,8 @@ msgid "Bill of materials cannot be edited, as the part is locked" msgstr "" #: src/tables/bom/UsedInTable.tsx:34 -#: src/tables/build/BuildLineTable.tsx:207 -#: src/tables/part/ParametricPartTable.tsx:364 +#: src/tables/build/BuildLineTable.tsx:208 +#: src/tables/part/ParametricPartTable.tsx:29 #: src/tables/part/PartBuildAllocationsTable.tsx:60 #: src/tables/part/PartTable.tsx:209 #: src/tables/stock/StockItemTable.tsx:333 @@ -9455,11 +9521,11 @@ msgstr "" msgid "Show trackable assemblies" msgstr "" -#: src/tables/build/BuildAllocatedStockTable.tsx:67 +#: src/tables/build/BuildAllocatedStockTable.tsx:64 msgid "Allocated to Output" msgstr "" -#: src/tables/build/BuildAllocatedStockTable.tsx:68 +#: src/tables/build/BuildAllocatedStockTable.tsx:65 msgid "Show items allocated to a build output" msgstr "" @@ -9472,50 +9538,68 @@ msgstr "" #~ msgid "Include orders for part variants" #~ msgstr "Include orders for part variants" -#: src/tables/build/BuildAllocatedStockTable.tsx:97 +#: src/tables/build/BuildAllocatedStockTable.tsx:94 #: src/tables/part/PartBuildAllocationsTable.tsx:84 #: src/tables/part/PartPurchaseOrdersTable.tsx:132 #: src/tables/part/PartSalesAllocationsTable.tsx:69 #: src/tables/sales/SalesOrderAllocationTable.tsx:122 -#: src/tables/sales/SalesOrderShipmentTable.tsx:130 +#: src/tables/sales/SalesOrderShipmentTable.tsx:151 msgid "Order Status" msgstr "" +#: src/tables/build/BuildAllocatedStockTable.tsx:164 +#: src/tables/build/BuildLineTable.tsx:651 +msgid "Edit Stock Allocation" +msgstr "" + #: src/tables/build/BuildAllocatedStockTable.tsx:164 #~ msgid "Edit Build Item" #~ msgstr "Edit Build Item" -#: src/tables/build/BuildAllocatedStockTable.tsx:167 -#: src/tables/build/BuildLineTable.tsx:650 -msgid "Edit Stock Allocation" -msgstr "" - #: src/tables/build/BuildAllocatedStockTable.tsx:174 #~ msgid "Delete Build Item" #~ msgstr "Delete Build Item" -#: src/tables/build/BuildAllocatedStockTable.tsx:180 -#: src/tables/build/BuildLineTable.tsx:663 -msgid "Delete Stock Allocation" +#: src/tables/build/BuildAllocatedStockTable.tsx:177 +#: src/tables/build/BuildLineTable.tsx:664 +#: src/tables/sales/SalesOrderAllocationTable.tsx:218 +msgid "Remove Allocated Stock" msgstr "" -#: src/tables/build/BuildAllocatedStockTable.tsx:239 +#: src/tables/build/BuildAllocatedStockTable.tsx:180 +#: src/tables/build/BuildLineTable.tsx:663 +#~ msgid "Delete Stock Allocation" +#~ msgstr "Delete Stock Allocation" + +#: src/tables/build/BuildAllocatedStockTable.tsx:182 +#: src/tables/build/BuildLineTable.tsx:669 +#: src/tables/sales/SalesOrderAllocationTable.tsx:221 +msgid "Are you sure you want to remove this allocated stock from the order?" +msgstr "" + +#: src/tables/build/BuildAllocatedStockTable.tsx:242 msgid "Consume" msgstr "" +#: src/tables/build/BuildAllocatedStockTable.tsx:259 +#: src/tables/build/BuildLineTable.tsx:112 +#: src/tables/sales/SalesOrderAllocationTable.tsx:248 +msgid "Remove allocated stock" +msgstr "" + #: src/tables/build/BuildLineTable.tsx:59 #~ msgid "Show lines with available stock" #~ msgstr "Show lines with available stock" -#: src/tables/build/BuildLineTable.tsx:120 +#: src/tables/build/BuildLineTable.tsx:121 msgid "View Stock Item" msgstr "" -#: src/tables/build/BuildLineTable.tsx:183 +#: src/tables/build/BuildLineTable.tsx:184 msgid "Show fully allocated lines" msgstr "" -#: src/tables/build/BuildLineTable.tsx:188 +#: src/tables/build/BuildLineTable.tsx:189 msgid "Show fully consumed lines" msgstr "" @@ -9523,124 +9607,124 @@ msgstr "" #~ msgid "Show allocated lines" #~ msgstr "Show allocated lines" -#: src/tables/build/BuildLineTable.tsx:193 +#: src/tables/build/BuildLineTable.tsx:194 msgid "Show items with sufficient available stock" msgstr "" -#: src/tables/build/BuildLineTable.tsx:198 +#: src/tables/build/BuildLineTable.tsx:199 msgid "Show consumable lines" msgstr "" -#: src/tables/build/BuildLineTable.tsx:203 +#: src/tables/build/BuildLineTable.tsx:204 msgid "Show optional lines" msgstr "" -#: src/tables/build/BuildLineTable.tsx:212 +#: src/tables/build/BuildLineTable.tsx:213 #: src/tables/part/PartTable.tsx:233 msgid "Testable" msgstr "" -#: src/tables/build/BuildLineTable.tsx:217 +#: src/tables/build/BuildLineTable.tsx:218 #: src/tables/stock/StockItemTable.tsx:388 msgid "Tracked" msgstr "" -#: src/tables/build/BuildLineTable.tsx:218 +#: src/tables/build/BuildLineTable.tsx:219 msgid "Show tracked lines" msgstr "" -#: src/tables/build/BuildLineTable.tsx:223 +#: src/tables/build/BuildLineTable.tsx:224 msgid "Show items with stock on order" msgstr "" -#: src/tables/build/BuildLineTable.tsx:258 +#: src/tables/build/BuildLineTable.tsx:259 #: src/tables/sales/SalesOrderLineItemTable.tsx:172 msgid "In production" msgstr "" -#: src/tables/build/BuildLineTable.tsx:286 +#: src/tables/build/BuildLineTable.tsx:287 msgid "Insufficient stock" msgstr "" -#: src/tables/build/BuildLineTable.tsx:302 +#: src/tables/build/BuildLineTable.tsx:303 #: src/tables/sales/SalesOrderLineItemTable.tsx:160 #: src/tables/stock/StockItemTable.tsx:191 msgid "No stock available" msgstr "" -#: src/tables/build/BuildLineTable.tsx:375 +#: src/tables/build/BuildLineTable.tsx:376 msgid "Gets Inherited" msgstr "" -#: src/tables/build/BuildLineTable.tsx:388 +#: src/tables/build/BuildLineTable.tsx:389 msgid "Unit Quantity" msgstr "" -#: src/tables/build/BuildLineTable.tsx:415 +#: src/tables/build/BuildLineTable.tsx:416 msgid "Setup Quantity" msgstr "" -#: src/tables/build/BuildLineTable.tsx:424 +#: src/tables/build/BuildLineTable.tsx:425 msgid "Attrition" msgstr "" -#: src/tables/build/BuildLineTable.tsx:432 +#: src/tables/build/BuildLineTable.tsx:433 msgid "Rounding Multiple" msgstr "" -#: src/tables/build/BuildLineTable.tsx:441 +#: src/tables/build/BuildLineTable.tsx:442 msgid "BOM Information" msgstr "" -#: src/tables/build/BuildLineTable.tsx:515 +#: src/tables/build/BuildLineTable.tsx:516 #: src/tables/part/PartBuildAllocationsTable.tsx:102 msgid "Fully allocated" msgstr "" -#: src/tables/build/BuildLineTable.tsx:563 +#: src/tables/build/BuildLineTable.tsx:564 #: src/tables/sales/SalesOrderLineItemTable.tsx:311 msgid "Create Build Order" msgstr "" -#: src/tables/build/BuildLineTable.tsx:592 +#: src/tables/build/BuildLineTable.tsx:593 msgid "Auto allocation in progress" msgstr "" -#: src/tables/build/BuildLineTable.tsx:595 -#: src/tables/build/BuildLineTable.tsx:802 +#: src/tables/build/BuildLineTable.tsx:596 +#: src/tables/build/BuildLineTable.tsx:809 msgid "Auto Allocate Stock" msgstr "" -#: src/tables/build/BuildLineTable.tsx:596 +#: src/tables/build/BuildLineTable.tsx:597 msgid "Automatically allocate stock to this build according to the selected options" msgstr "" -#: src/tables/build/BuildLineTable.tsx:616 -#: src/tables/build/BuildLineTable.tsx:630 -#: src/tables/build/BuildLineTable.tsx:751 -#: src/tables/build/BuildLineTable.tsx:852 +#: src/tables/build/BuildLineTable.tsx:617 +#: src/tables/build/BuildLineTable.tsx:631 +#: src/tables/build/BuildLineTable.tsx:758 +#: src/tables/build/BuildLineTable.tsx:859 #: src/tables/build/BuildOutputTable.tsx:355 #: src/tables/build/BuildOutputTable.tsx:360 msgid "Deallocate Stock" msgstr "" -#: src/tables/build/BuildLineTable.tsx:632 +#: src/tables/build/BuildLineTable.tsx:633 msgid "Deallocate all untracked stock for this build order" msgstr "" -#: src/tables/build/BuildLineTable.tsx:634 +#: src/tables/build/BuildLineTable.tsx:635 msgid "Deallocate stock from the selected line item" msgstr "" -#: src/tables/build/BuildLineTable.tsx:638 +#: src/tables/build/BuildLineTable.tsx:639 msgid "Stock has been deallocated" msgstr "" -#: src/tables/build/BuildLineTable.tsx:771 +#: src/tables/build/BuildLineTable.tsx:778 msgid "Build Stock" msgstr "" -#: src/tables/build/BuildLineTable.tsx:784 +#: src/tables/build/BuildLineTable.tsx:791 #: src/tables/sales/SalesOrderLineItemTable.tsx:487 msgid "View Part" msgstr "" @@ -9739,7 +9823,7 @@ msgid "Serialize Build Output" msgstr "" #: src/tables/build/BuildOutputTable.tsx:405 -#: src/tables/part/PartTestResultTable.tsx:310 +#: src/tables/part/PartTestResultTable.tsx:318 #: src/tables/stock/StockItemTable.tsx:328 msgid "Filter by stock status" msgstr "" @@ -9964,8 +10048,8 @@ msgid "View Item" msgstr "" #: src/tables/general/ExtraLineItemTable.tsx:95 -#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:299 -#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:403 +#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:300 +#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:405 #: src/tables/sales/ReturnOrderLineItemTable.tsx:83 #: src/tables/sales/ReturnOrderLineItemTable.tsx:187 #: src/tables/sales/SalesOrderLineItemTable.tsx:252 @@ -9974,14 +10058,14 @@ msgid "Add Line Item" msgstr "" #: src/tables/general/ExtraLineItemTable.tsx:108 -#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:320 +#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:322 #: src/tables/sales/ReturnOrderLineItemTable.tsx:96 #: src/tables/sales/SalesOrderLineItemTable.tsx:271 msgid "Edit Line Item" msgstr "" #: src/tables/general/ExtraLineItemTable.tsx:117 -#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:329 +#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:331 #: src/tables/sales/ReturnOrderLineItemTable.tsx:105 #: src/tables/sales/SalesOrderLineItemTable.tsx:280 msgid "Delete Line Item" @@ -9991,6 +10075,137 @@ msgstr "" msgid "Add Extra Line Item" msgstr "" +#: src/tables/general/ParameterTable.tsx:88 +msgid "Internal Units" +msgstr "" + +#: src/tables/general/ParameterTable.tsx:108 +#: src/tables/general/ParameterTable.tsx:123 +msgid "Updated By" +msgstr "" + +#: src/tables/general/ParameterTable.tsx:118 +msgid "Show parameters for enabled templates" +msgstr "" + +#: src/tables/general/ParameterTable.tsx:124 +msgid "Filter by user who last updated the parameter" +msgstr "" + +#: src/tables/general/ParameterTable.tsx:154 +msgid "Import Parameters" +msgstr "" + +#: src/tables/general/ParameterTable.tsx:164 +#: src/tables/general/ParametricDataTable.tsx:261 +#: src/tables/general/ParametricDataTable.tsx:392 +msgid "Add Parameter" +msgstr "" + +#: src/tables/general/ParameterTable.tsx:175 +#: src/tables/general/ParameterTable.tsx:222 +#: src/tables/general/ParametricDataTable.tsx:285 +msgid "Edit Parameter" +msgstr "" + +#: src/tables/general/ParameterTable.tsx:183 +#: src/tables/general/ParameterTable.tsx:230 +msgid "Delete Parameter" +msgstr "" + +#: src/tables/general/ParameterTable.tsx:191 +msgid "Add Parameters" +msgstr "" + +#: src/tables/general/ParameterTable.tsx:197 +msgid "Create Parameter" +msgstr "" + +#: src/tables/general/ParameterTable.tsx:199 +msgid "Create a new parameter" +msgstr "" + +#: src/tables/general/ParameterTable.tsx:208 +msgid "Import parameters from a file" +msgstr "" + +#: src/tables/general/ParameterTemplateTable.tsx:48 +#: src/tables/general/ParameterTemplateTable.tsx:197 +msgid "Add Parameter Template" +msgstr "" + +#: src/tables/general/ParameterTemplateTable.tsx:64 +msgid "Duplicate Parameter Template" +msgstr "" + +#: src/tables/general/ParameterTemplateTable.tsx:78 +msgid "Delete Parameter Template" +msgstr "" + +#: src/tables/general/ParameterTemplateTable.tsx:85 +msgid "Edit Parameter Template" +msgstr "" + +#: src/tables/general/ParameterTemplateTable.tsx:138 +msgid "Checkbox" +msgstr "" + +#: src/tables/general/ParameterTemplateTable.tsx:139 +msgid "Show checkbox templates" +msgstr "" + +#: src/tables/general/ParameterTemplateTable.tsx:143 +msgid "Has choices" +msgstr "" + +#: src/tables/general/ParameterTemplateTable.tsx:144 +msgid "Show templates with choices" +msgstr "" + +#: src/tables/general/ParameterTemplateTable.tsx:148 +#: src/tables/part/PartTable.tsx:245 +msgid "Has Units" +msgstr "" + +#: src/tables/general/ParameterTemplateTable.tsx:149 +msgid "Show templates with units" +msgstr "" + +#: src/tables/general/ParameterTemplateTable.tsx:154 +msgid "Show enabled templates" +msgstr "" + +#: src/tables/general/ParameterTemplateTable.tsx:158 +#: src/tables/settings/ImportSessionTable.tsx:111 +#: src/tables/settings/TemplateTable.tsx:368 +msgid "Model Type" +msgstr "" + +#: src/tables/general/ParameterTemplateTable.tsx:159 +msgid "Filter by model type" +msgstr "" + +#: src/tables/general/ParametricDataTable.tsx:79 +msgid "Click to edit" +msgstr "" + +#: src/tables/general/ParametricDataTableFilters.tsx:36 +msgid "True" +msgstr "" + +#: src/tables/general/ParametricDataTableFilters.tsx:37 +msgid "False" +msgstr "" + +#: src/tables/general/ParametricDataTableFilters.tsx:47 +#: src/tables/general/ParametricDataTableFilters.tsx:80 +msgid "Select a choice" +msgstr "" + +#: src/tables/general/ParametricDataTableFilters.tsx:100 +msgid "Enter a value" +msgstr "" + #: src/tables/machine/MachineListTable.tsx:133 msgid "Machine restarted" msgstr "" @@ -10071,7 +10286,7 @@ msgid "Initialized" msgstr "" #: src/tables/machine/MachineListTable.tsx:410 -#: src/tables/machine/MachineTypeTable.tsx:307 +#: src/tables/machine/MachineTypeTable.tsx:305 msgid "No errors reported" msgstr "" @@ -10132,15 +10347,15 @@ msgstr "" #~ msgid "Machine type information" #~ msgstr "Machine type information" -#: src/tables/machine/MachineTypeTable.tsx:128 +#: src/tables/machine/MachineTypeTable.tsx:126 msgid "Not Found" msgstr "" -#: src/tables/machine/MachineTypeTable.tsx:131 +#: src/tables/machine/MachineTypeTable.tsx:129 msgid "Machine type not found." msgstr "" -#: src/tables/machine/MachineTypeTable.tsx:141 +#: src/tables/machine/MachineTypeTable.tsx:139 msgid "Machine Type Information" msgstr "" @@ -10148,34 +10363,34 @@ msgstr "" #~ msgid "Available drivers" #~ msgstr "Available drivers" -#: src/tables/machine/MachineTypeTable.tsx:156 -#: src/tables/machine/MachineTypeTable.tsx:255 +#: src/tables/machine/MachineTypeTable.tsx:154 +#: src/tables/machine/MachineTypeTable.tsx:253 msgid "Slug" msgstr "" -#: src/tables/machine/MachineTypeTable.tsx:167 -#: src/tables/machine/MachineTypeTable.tsx:276 +#: src/tables/machine/MachineTypeTable.tsx:165 +#: src/tables/machine/MachineTypeTable.tsx:274 msgid "Provider plugin" msgstr "" -#: src/tables/machine/MachineTypeTable.tsx:179 -#: src/tables/machine/MachineTypeTable.tsx:288 +#: src/tables/machine/MachineTypeTable.tsx:177 +#: src/tables/machine/MachineTypeTable.tsx:286 msgid "Provider file" msgstr "" -#: src/tables/machine/MachineTypeTable.tsx:194 +#: src/tables/machine/MachineTypeTable.tsx:192 msgid "Available Drivers" msgstr "" -#: src/tables/machine/MachineTypeTable.tsx:234 +#: src/tables/machine/MachineTypeTable.tsx:232 msgid "Machine driver not found." msgstr "" -#: src/tables/machine/MachineTypeTable.tsx:242 +#: src/tables/machine/MachineTypeTable.tsx:240 msgid "Machine driver information" msgstr "" -#: src/tables/machine/MachineTypeTable.tsx:262 +#: src/tables/machine/MachineTypeTable.tsx:260 msgid "Machine type" msgstr "" @@ -10187,15 +10402,15 @@ msgstr "" #~ msgid "Machine driver detail" #~ msgstr "Machine driver detail" -#: src/tables/machine/MachineTypeTable.tsx:362 +#: src/tables/machine/MachineTypeTable.tsx:360 msgid "Builtin type" msgstr "" -#: src/tables/machine/MachineTypeTable.tsx:371 +#: src/tables/machine/MachineTypeTable.tsx:369 msgid "Machine Type Detail" msgstr "" -#: src/tables/machine/MachineTypeTable.tsx:381 +#: src/tables/machine/MachineTypeTable.tsx:379 msgid "Machine Driver Detail" msgstr "" @@ -10213,8 +10428,16 @@ msgstr "" msgid "Message" msgstr "" -#: src/tables/part/ParametricPartTable.tsx:78 -msgid "Click to edit" +#: src/tables/part/ParametricPartTable.tsx:20 +msgid "Show active parts" +msgstr "" + +#: src/tables/part/ParametricPartTable.tsx:25 +msgid "Show locked parts" +msgstr "" + +#: src/tables/part/ParametricPartTable.tsx:30 +msgid "Show assembly parts" msgstr "" #: src/tables/part/ParametricPartTable.tsx:82 @@ -10222,43 +10445,14 @@ msgstr "" #~ msgstr "Edit parameter" #: src/tables/part/ParametricPartTable.tsx:244 -msgid "Add Part Parameter" -msgstr "" +#~ msgid "Add Part Parameter" +#~ msgstr "Add Part Parameter" #: src/tables/part/ParametricPartTable.tsx:258 #: src/tables/part/PartParameterTable.tsx:164 #: src/tables/part/PartParameterTable.tsx:187 -msgid "Edit Part Parameter" -msgstr "" - -#: src/tables/part/ParametricPartTable.tsx:355 -msgid "Show active parts" -msgstr "" - -#: src/tables/part/ParametricPartTable.tsx:360 -msgid "Show locked parts" -msgstr "" - -#: src/tables/part/ParametricPartTable.tsx:365 -msgid "Show assembly parts" -msgstr "" - -#: src/tables/part/ParametricPartTableFilters.tsx:36 -msgid "True" -msgstr "" - -#: src/tables/part/ParametricPartTableFilters.tsx:37 -msgid "False" -msgstr "" - -#: src/tables/part/ParametricPartTableFilters.tsx:47 -#: src/tables/part/ParametricPartTableFilters.tsx:80 -msgid "Select a choice" -msgstr "" - -#: src/tables/part/ParametricPartTableFilters.tsx:100 -msgid "Enter a value" -msgstr "" +#~ msgid "Edit Part Parameter" +#~ msgstr "Edit Part Parameter" #: src/tables/part/PartBuildAllocationsTable.tsx:64 msgid "Assembly IPN" @@ -10273,7 +10467,7 @@ msgid "Required Stock" msgstr "" #: src/tables/part/PartBuildAllocationsTable.tsx:124 -#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:381 +#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:383 msgid "View Build Order" msgstr "" @@ -10332,85 +10526,22 @@ msgstr "" msgid "Delete Category Parameter" msgstr "" -#: src/tables/part/PartCategoryTemplateTable.tsx:87 -msgid "Parameter Template" -msgstr "" - #: src/tables/part/PartCategoryTemplateTable.tsx:93 #~ msgid "[{0}]" #~ msgstr "[{0}]" -#: src/tables/part/PartParameterTable.tsx:108 -msgid "Internal Units" -msgstr "" - -#: src/tables/part/PartParameterTable.tsx:128 -#: src/tables/part/PartParameterTable.tsx:138 -msgid "Updated By" -msgstr "" - -#: src/tables/part/PartParameterTable.tsx:139 -msgid "Filter by user who last updated the parameter" -msgstr "" - #: src/tables/part/PartParameterTable.tsx:148 -msgid "New Part Parameter" -msgstr "" +#~ msgid "New Part Parameter" +#~ msgstr "New Part Parameter" #: src/tables/part/PartParameterTable.tsx:173 #: src/tables/part/PartParameterTable.tsx:195 -msgid "Delete Part Parameter" -msgstr "" +#~ msgid "Delete Part Parameter" +#~ msgstr "Delete Part Parameter" #: src/tables/part/PartParameterTable.tsx:213 -msgid "Add parameter" -msgstr "" - -#: src/tables/part/PartParameterTable.tsx:232 -msgid "Part parameters cannot be edited, as the part is locked" -msgstr "" - -#: src/tables/part/PartParameterTemplateTable.tsx:36 -msgid "Checkbox" -msgstr "" - -#: src/tables/part/PartParameterTemplateTable.tsx:37 -msgid "Show checkbox templates" -msgstr "" - -#: src/tables/part/PartParameterTemplateTable.tsx:41 -msgid "Has choices" -msgstr "" - -#: src/tables/part/PartParameterTemplateTable.tsx:42 -msgid "Show templates with choices" -msgstr "" - -#: src/tables/part/PartParameterTemplateTable.tsx:46 -#: src/tables/part/PartTable.tsx:245 -msgid "Has Units" -msgstr "" - -#: src/tables/part/PartParameterTemplateTable.tsx:47 -msgid "Show templates with units" -msgstr "" - -#: src/tables/part/PartParameterTemplateTable.tsx:91 -#: src/tables/part/PartParameterTemplateTable.tsx:166 -msgid "Add Parameter Template" -msgstr "" - -#: src/tables/part/PartParameterTemplateTable.tsx:105 -msgid "Duplicate Parameter Template" -msgstr "" - -#: src/tables/part/PartParameterTemplateTable.tsx:117 -msgid "Edit Parameter Template" -msgstr "" - -#: src/tables/part/PartParameterTemplateTable.tsx:128 -msgid "Delete Parameter Template" -msgstr "" +#~ msgid "Add parameter" +#~ msgstr "Add parameter" #: src/tables/part/PartParameterTemplateTable.tsx:141 #~ msgid "Add parameter template" @@ -10430,7 +10561,7 @@ msgid "Show received items" msgstr "" #: src/tables/part/PartSalesAllocationsTable.tsx:90 -#: src/tables/sales/SalesOrderShipmentTable.tsx:218 +#: src/tables/sales/SalesOrderShipmentTable.tsx:263 msgid "View Sales Order" msgstr "" @@ -10617,8 +10748,8 @@ msgstr "" #: src/tables/part/PartTestResultTable.tsx:103 #: src/tables/part/PartTestResultTable.tsx:181 -#: src/tables/part/PartTestResultTable.tsx:320 -#: src/tables/part/PartTestResultTable.tsx:334 +#: src/tables/part/PartTestResultTable.tsx:328 +#: src/tables/part/PartTestResultTable.tsx:342 #: src/tables/stock/StockItemTestResultTable.tsx:296 #: src/tables/stock/StockItemTestResultTable.tsx:368 #: src/tables/stock/StockItemTestResultTable.tsx:429 @@ -10643,7 +10774,7 @@ msgstr "" msgid "No Result" msgstr "" -#: src/tables/part/PartTestResultTable.tsx:298 +#: src/tables/part/PartTestResultTable.tsx:306 msgid "Show build outputs currently in production" msgstr "" @@ -11013,36 +11144,45 @@ msgstr "" #~ msgid "Parameter updated" #~ msgstr "Parameter updated" -#: src/tables/purchasing/ManufacturerPartParameterTable.tsx:63 -#: src/tables/purchasing/ManufacturerPartParameterTable.tsx:112 -msgid "Add Parameter" -msgstr "" - #: src/tables/purchasing/ManufacturerPartParameterTable.tsx:73 #~ msgid "Parameter deleted" #~ msgstr "Parameter deleted" -#: src/tables/purchasing/ManufacturerPartParameterTable.tsx:74 -msgid "Edit Parameter" -msgstr "" - #: src/tables/purchasing/ManufacturerPartParameterTable.tsx:74 #~ msgid "Are you sure you want to delete this parameter?" #~ msgstr "Are you sure you want to delete this parameter?" -#: src/tables/purchasing/ManufacturerPartParameterTable.tsx:82 -msgid "Delete Parameter" +#: src/tables/purchasing/ManufacturerPartParametricTable.tsx:34 +#: src/tables/purchasing/ManufacturerPartTable.tsx:82 +#: src/tables/purchasing/SupplierPartTable.tsx:99 +msgid "MPN" +msgstr "" + +#: src/tables/purchasing/ManufacturerPartParametricTable.tsx:44 +#: src/tables/purchasing/ManufacturerPartTable.tsx:134 +#: src/tables/purchasing/SupplierPartTable.tsx:220 +msgid "Active Part" +msgstr "" + +#: src/tables/purchasing/ManufacturerPartParametricTable.tsx:45 +#: src/tables/purchasing/ManufacturerPartTable.tsx:135 +msgid "Show manufacturer parts for active internal parts." +msgstr "" + +#: src/tables/purchasing/ManufacturerPartParametricTable.tsx:50 +#: src/tables/purchasing/ManufacturerPartTable.tsx:140 +msgid "Active Manufacturer" +msgstr "" + +#: src/tables/purchasing/ManufacturerPartParametricTable.tsx:51 +#: src/tables/purchasing/ManufacturerPartTable.tsx:142 +msgid "Show manufacturer parts for active manufacturers." msgstr "" #: src/tables/purchasing/ManufacturerPartTable.tsx:63 #~ msgid "Create Manufacturer Part" #~ msgstr "Create Manufacturer Part" -#: src/tables/purchasing/ManufacturerPartTable.tsx:82 -#: src/tables/purchasing/SupplierPartTable.tsx:99 -msgid "MPN" -msgstr "" - #: src/tables/purchasing/ManufacturerPartTable.tsx:100 #~ msgid "Manufacturer part updated" #~ msgstr "Manufacturer part updated" @@ -11055,25 +11195,8 @@ msgstr "" #~ msgid "Are you sure you want to remove this manufacturer part?" #~ msgstr "Are you sure you want to remove this manufacturer part?" -#: src/tables/purchasing/ManufacturerPartTable.tsx:134 -#: src/tables/purchasing/SupplierPartTable.tsx:220 -msgid "Active Part" -msgstr "" - -#: src/tables/purchasing/ManufacturerPartTable.tsx:135 -msgid "Show manufacturer parts for active internal parts." -msgstr "" - -#: src/tables/purchasing/ManufacturerPartTable.tsx:140 -msgid "Active Manufacturer" -msgstr "" - -#: src/tables/purchasing/ManufacturerPartTable.tsx:142 -msgid "Show manufacturer parts for active manufacturers." -msgstr "" - #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:115 -#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:397 +#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:399 msgid "Import Line Items" msgstr "" @@ -11099,11 +11222,11 @@ msgstr "" #~ msgid "Add line item" #~ msgstr "Add line item" -#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:350 +#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:352 msgid "Receive line item" msgstr "" -#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:414 +#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:416 msgid "Receive items" msgstr "" @@ -11201,25 +11324,25 @@ msgid "Not shipped" msgstr "" #: src/tables/sales/SalesOrderAllocationTable.tsx:211 -#: src/tables/sales/SalesOrderAllocationTable.tsx:229 +#: src/tables/sales/SalesOrderAllocationTable.tsx:235 msgid "Edit Allocation" msgstr "" #: src/tables/sales/SalesOrderAllocationTable.tsx:218 #: src/tables/sales/SalesOrderAllocationTable.tsx:241 -msgid "Delete Allocation" -msgstr "" +#~ msgid "Delete Allocation" +#~ msgstr "Delete Allocation" -#: src/tables/sales/SalesOrderAllocationTable.tsx:252 -#: src/tables/sales/SalesOrderAllocationTable.tsx:253 +#: src/tables/sales/SalesOrderAllocationTable.tsx:261 +#: src/tables/sales/SalesOrderAllocationTable.tsx:262 msgid "View Shipment" msgstr "" -#: src/tables/sales/SalesOrderAllocationTable.tsx:308 +#: src/tables/sales/SalesOrderAllocationTable.tsx:317 msgid "Assign to Shipment" msgstr "" -#: src/tables/sales/SalesOrderAllocationTable.tsx:324 +#: src/tables/sales/SalesOrderAllocationTable.tsx:333 msgid "Assign to shipment" msgstr "" @@ -11259,35 +11382,35 @@ msgstr "" #~ msgid "Delete Shipment" #~ msgstr "Delete Shipment" -#: src/tables/sales/SalesOrderShipmentTable.tsx:72 +#: src/tables/sales/SalesOrderShipmentTable.tsx:79 msgid "Create Shipment" msgstr "" -#: src/tables/sales/SalesOrderShipmentTable.tsx:143 +#: src/tables/sales/SalesOrderShipmentTable.tsx:164 msgid "Items" msgstr "" -#: src/tables/sales/SalesOrderShipmentTable.tsx:203 +#: src/tables/sales/SalesOrderShipmentTable.tsx:248 msgid "Edit shipment" msgstr "" -#: src/tables/sales/SalesOrderShipmentTable.tsx:211 +#: src/tables/sales/SalesOrderShipmentTable.tsx:256 msgid "Cancel shipment" msgstr "" -#: src/tables/sales/SalesOrderShipmentTable.tsx:241 +#: src/tables/sales/SalesOrderShipmentTable.tsx:286 msgid "Add shipment" msgstr "" -#: src/tables/sales/SalesOrderShipmentTable.tsx:255 +#: src/tables/sales/SalesOrderShipmentTable.tsx:300 msgid "Show shipments which have been checked" msgstr "" -#: src/tables/sales/SalesOrderShipmentTable.tsx:260 +#: src/tables/sales/SalesOrderShipmentTable.tsx:305 msgid "Show shipments which have been shipped" msgstr "" -#: src/tables/sales/SalesOrderShipmentTable.tsx:265 +#: src/tables/sales/SalesOrderShipmentTable.tsx:310 msgid "Show shipments which have been delivered" msgstr "" @@ -11621,11 +11744,6 @@ msgstr "" msgid "Imported Rows" msgstr "" -#: src/tables/settings/ImportSessionTable.tsx:111 -#: src/tables/settings/TemplateTable.tsx:368 -msgid "Model Type" -msgstr "" - #: src/tables/settings/ImportSessionTable.tsx:112 #: src/tables/settings/TemplateTable.tsx:369 msgid "Filter by target model type" diff --git a/src/frontend/src/locales/sr/messages.po b/src/frontend/src/locales/sr/messages.po index 2ee089ab71..0ddf451aee 100644 --- a/src/frontend/src/locales/sr/messages.po +++ b/src/frontend/src/locales/sr/messages.po @@ -8,7 +8,7 @@ msgstr "" "Language: sr\n" "Project-Id-Version: inventree\n" "Report-Msgid-Bugs-To: \n" -"PO-Revision-Date: 2025-11-19 19:39\n" +"PO-Revision-Date: 2025-12-07 07:36\n" "Last-Translator: \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" @@ -30,7 +30,7 @@ msgid "Edit" msgstr "Izmeni" #: lib/components/RowActions.tsx:56 -#: src/components/forms/ApiForm.tsx:735 +#: src/components/forms/ApiForm.tsx:754 #: src/components/items/ActionDropdown.tsx:257 #: src/components/items/RoleTable.tsx:155 #: src/hooks/UseForm.tsx:164 @@ -56,24 +56,24 @@ msgstr "Poništi" #: lib/components/RowActions.tsx:136 #: src/components/nav/NavigationDrawer.tsx:190 -#: src/forms/PurchaseOrderForms.tsx:802 +#: src/forms/PurchaseOrderForms.tsx:854 #: src/forms/StockForms.tsx:796 #: src/forms/StockForms.tsx:843 -#: src/forms/StockForms.tsx:889 -#: src/forms/StockForms.tsx:928 -#: src/forms/StockForms.tsx:964 -#: src/forms/StockForms.tsx:1050 +#: src/forms/StockForms.tsx:896 +#: src/forms/StockForms.tsx:942 +#: src/forms/StockForms.tsx:980 +#: src/forms/StockForms.tsx:1066 #: src/pages/Index/Settings/AccountSettings/MFASettings.tsx:962 msgid "Actions" msgstr "Akcije" #: lib/components/SearchInput.tsx:34 -#: src/components/forms/fields/RelatedModelField.tsx:408 +#: src/components/forms/fields/RelatedModelField.tsx:479 #: src/components/nav/Header.tsx:169 #: src/components/wizards/ImportPartWizard.tsx:200 #: src/components/wizards/ImportPartWizard.tsx:233 -#: src/pages/Index/Settings/UserSettings.tsx:74 -#: src/pages/part/PartDetail.tsx:1155 +#: src/pages/Index/Settings/UserSettings.tsx:75 +#: src/pages/part/PartDetail.tsx:1176 msgid "Search" msgstr "Pretraga" @@ -95,7 +95,7 @@ msgstr "Da" msgid "No" msgstr "Ne" -#: lib/enums/ModelInformation.tsx:28 +#: lib/enums/ModelInformation.tsx:29 #: src/components/wizards/OrderPartsWizard.tsx:279 #: src/forms/BuildForms.tsx:332 #: src/forms/BuildForms.tsx:407 @@ -103,208 +103,234 @@ msgstr "Ne" #: src/forms/BuildForms.tsx:630 #: src/forms/BuildForms.tsx:793 #: src/forms/BuildForms.tsx:896 -#: src/forms/PurchaseOrderForms.tsx:798 +#: src/forms/PurchaseOrderForms.tsx:850 #: src/forms/ReturnOrderForms.tsx:242 -#: src/forms/SalesOrderForms.tsx:305 +#: src/forms/SalesOrderForms.tsx:384 #: src/forms/StockForms.tsx:360 #: src/forms/StockForms.tsx:791 #: src/forms/StockForms.tsx:838 -#: src/forms/StockForms.tsx:884 -#: src/forms/StockForms.tsx:923 -#: src/forms/StockForms.tsx:959 -#: src/forms/StockForms.tsx:1002 -#: src/forms/StockForms.tsx:1046 -#: src/forms/StockForms.tsx:1094 -#: src/forms/StockForms.tsx:1138 -#: src/pages/build/BuildDetail.tsx:200 -#: src/pages/part/PartDetail.tsx:1207 +#: src/forms/StockForms.tsx:891 +#: src/forms/StockForms.tsx:937 +#: src/forms/StockForms.tsx:975 +#: src/forms/StockForms.tsx:1018 +#: src/forms/StockForms.tsx:1062 +#: src/forms/StockForms.tsx:1110 +#: src/forms/StockForms.tsx:1154 +#: src/pages/build/BuildDetail.tsx:201 +#: src/pages/part/PartDetail.tsx:1228 #: src/tables/ColumnRenderers.tsx:91 +#: src/tables/part/PartTestResultTable.tsx:247 #: src/tables/part/RelatedPartTable.tsx:53 #: src/tables/stock/StockTrackingTable.tsx:87 msgid "Part" msgstr "Deo" -#: lib/enums/ModelInformation.tsx:29 +#: lib/enums/ModelInformation.tsx:30 #: lib/enums/Roles.tsx:35 #: src/components/nav/NavigationDrawer.tsx:70 #: src/defaults/links.tsx:36 -#: src/pages/Index/Settings/SystemSettings.tsx:190 -#: src/pages/part/CategoryDetail.tsx:132 -#: src/pages/part/CategoryDetail.tsx:277 -#: src/pages/part/CategoryDetail.tsx:323 -#: src/pages/part/CategoryDetail.tsx:354 -#: src/pages/part/PartDetail.tsx:965 +#: src/pages/Index/Settings/SystemSettings.tsx:197 +#: src/pages/part/CategoryDetail.tsx:135 +#: src/pages/part/CategoryDetail.tsx:285 +#: src/pages/part/CategoryDetail.tsx:340 +#: src/pages/part/CategoryDetail.tsx:371 +#: src/pages/part/PartDetail.tsx:978 msgid "Parts" msgstr "Delovi" #: lib/enums/ModelInformation.tsx:37 #: src/pages/Index/Settings/AdminCenter/PartParameterPanel.tsx:13 -msgid "Part Parameter Template" -msgstr "Šablon parametra dela" +#~ msgid "Part Parameter Template" +#~ msgstr "Part Parameter Template" #: lib/enums/ModelInformation.tsx:38 -msgid "Part Parameter Templates" -msgstr "Šabloni parametara dela" +#~ msgid "Part Parameter Templates" +#~ msgstr "Part Parameter Templates" + +#: lib/enums/ModelInformation.tsx:39 +msgid "Parameter" +msgstr "" + +#: lib/enums/ModelInformation.tsx:40 +#: src/components/panels/ParametersPanel.tsx:19 +#: src/components/wizards/ImportPartWizard.tsx:807 +#: src/pages/Index/Settings/AdminCenter/Index.tsx:195 +#: src/pages/Index/Settings/SystemSettings.tsx:191 +#: src/pages/part/PartDetail.tsx:943 +msgid "Parameters" +msgstr "Parametri" #: lib/enums/ModelInformation.tsx:45 +#: src/tables/part/PartCategoryTemplateTable.tsx:87 +msgid "Parameter Template" +msgstr "Šablon parametara" + +#: lib/enums/ModelInformation.tsx:46 +#: src/pages/Index/Settings/AdminCenter/ParameterPanel.tsx:13 +msgid "Parameter Templates" +msgstr "" + +#: lib/enums/ModelInformation.tsx:52 msgid "Part Test Template" msgstr "Šablon testiranja dela" -#: lib/enums/ModelInformation.tsx:46 +#: lib/enums/ModelInformation.tsx:53 msgid "Part Test Templates" msgstr "Šabloni testiranja dela" -#: lib/enums/ModelInformation.tsx:52 +#: lib/enums/ModelInformation.tsx:59 #: src/components/wizards/OrderPartsWizard.tsx:290 -#: src/pages/company/SupplierPartDetail.tsx:413 +#: src/pages/company/SupplierPartDetail.tsx:418 #: src/pages/stock/StockDetail.tsx:289 -#: src/tables/build/BuildAllocatedStockTable.tsx:155 +#: src/tables/build/BuildAllocatedStockTable.tsx:152 #: src/tables/part/PartPurchaseOrdersTable.tsx:50 +#: src/tables/purchasing/SupplierPartParametricTable.tsx:29 #: src/tables/purchasing/SupplierPartTable.tsx:83 #: src/tables/stock/StockItemTable.tsx:247 msgid "Supplier Part" msgstr "Deo nabavljača" -#: lib/enums/ModelInformation.tsx:53 -#: src/pages/purchasing/PurchasingIndex.tsx:92 +#: lib/enums/ModelInformation.tsx:60 +#: src/pages/purchasing/PurchasingIndex.tsx:128 msgid "Supplier Parts" msgstr "Delovi nabavljača" -#: lib/enums/ModelInformation.tsx:61 -#: src/pages/company/ManufacturerPartDetail.tsx:297 -#: src/pages/company/SupplierPartDetail.tsx:161 +#: lib/enums/ModelInformation.tsx:69 +#: src/pages/company/ManufacturerPartDetail.tsx:288 +#: src/pages/company/SupplierPartDetail.tsx:162 #: src/tables/part/PartPurchaseOrdersTable.tsx:56 #: src/tables/stock/StockItemTable.tsx:253 msgid "Manufacturer Part" msgstr "Deo proizvođača" -#: lib/enums/ModelInformation.tsx:62 -#: src/pages/purchasing/PurchasingIndex.tsx:109 +#: lib/enums/ModelInformation.tsx:70 +#: src/pages/purchasing/PurchasingIndex.tsx:177 msgid "Manufacturer Parts" msgstr "Delovi proizvođača" -#: lib/enums/ModelInformation.tsx:70 -#: src/pages/part/CategoryDetail.tsx:354 +#: lib/enums/ModelInformation.tsx:79 +#: src/pages/part/CategoryDetail.tsx:371 #: src/tables/Filter.tsx:389 msgid "Part Category" msgstr "Kategorija delova" -#: lib/enums/ModelInformation.tsx:71 +#: lib/enums/ModelInformation.tsx:80 #: lib/enums/Roles.tsx:37 -#: src/pages/part/CategoryDetail.tsx:271 -#: src/pages/part/CategoryDetail.tsx:345 -#: src/pages/part/PartDetail.tsx:1196 +#: src/pages/part/CategoryDetail.tsx:279 +#: src/pages/part/CategoryDetail.tsx:362 +#: src/pages/part/PartDetail.tsx:1217 msgid "Part Categories" msgstr "Kategorije delova" -#: lib/enums/ModelInformation.tsx:79 +#: lib/enums/ModelInformation.tsx:88 #: src/forms/BuildForms.tsx:473 #: src/forms/BuildForms.tsx:633 #: src/forms/BuildForms.tsx:794 -#: src/forms/SalesOrderForms.tsx:307 +#: src/forms/SalesOrderForms.tsx:386 #: src/pages/stock/StockDetail.tsx:1005 -#: src/tables/part/PartTestResultTable.tsx:248 +#: src/tables/part/PartTestResultTable.tsx:256 #: src/tables/stock/StockTrackingTable.tsx:48 #: src/tables/stock/StockTrackingTable.tsx:55 msgid "Stock Item" msgstr "Stavka zalihe" -#: lib/enums/ModelInformation.tsx:80 +#: lib/enums/ModelInformation.tsx:89 #: lib/enums/Roles.tsx:45 -#: src/pages/company/CompanyDetail.tsx:210 -#: src/pages/part/CategoryDetail.tsx:291 +#: src/pages/company/CompanyDetail.tsx:211 +#: src/pages/part/CategoryDetail.tsx:314 #: src/pages/part/PartStockHistoryDetail.tsx:101 #: src/pages/stock/LocationDetail.tsx:121 #: src/pages/stock/LocationDetail.tsx:180 msgid "Stock Items" msgstr "Stavke zaliha" -#: lib/enums/ModelInformation.tsx:88 +#: lib/enums/ModelInformation.tsx:98 #: lib/enums/Roles.tsx:47 #: src/pages/stock/LocationDetail.tsx:420 msgid "Stock Location" msgstr "Lokacija zaliha" -#: lib/enums/ModelInformation.tsx:89 +#: lib/enums/ModelInformation.tsx:99 #: src/pages/stock/LocationDetail.tsx:174 #: src/pages/stock/LocationDetail.tsx:412 #: src/pages/stock/StockDetail.tsx:996 msgid "Stock Locations" msgstr "Lokacije zaliha" -#: lib/enums/ModelInformation.tsx:97 +#: lib/enums/ModelInformation.tsx:108 msgid "Stock Location Type" msgstr "Tip lokacije zaliha" -#: lib/enums/ModelInformation.tsx:98 +#: lib/enums/ModelInformation.tsx:109 msgid "Stock Location Types" msgstr "Tipovi lokacija zaliha" -#: lib/enums/ModelInformation.tsx:103 -#: src/pages/Index/Settings/SystemSettings.tsx:248 -#: src/pages/part/PartDetail.tsx:911 +#: lib/enums/ModelInformation.tsx:114 +#: src/pages/Index/Settings/SystemSettings.tsx:254 +#: src/pages/part/PartDetail.tsx:900 msgid "Stock History" msgstr "Istorija zaliha" -#: lib/enums/ModelInformation.tsx:104 +#: lib/enums/ModelInformation.tsx:115 msgid "Stock Histories" msgstr "Istorije zaliha" -#: lib/enums/ModelInformation.tsx:109 +#: lib/enums/ModelInformation.tsx:120 msgid "Build" msgstr "Izgradnja" -#: lib/enums/ModelInformation.tsx:110 +#: lib/enums/ModelInformation.tsx:121 msgid "Builds" msgstr "Izgradnje" -#: lib/enums/ModelInformation.tsx:118 +#: lib/enums/ModelInformation.tsx:130 msgid "Build Line" msgstr "Linija izgradnje" -#: lib/enums/ModelInformation.tsx:119 +#: lib/enums/ModelInformation.tsx:131 msgid "Build Lines" msgstr "Linije izgradnje" -#: lib/enums/ModelInformation.tsx:126 +#: lib/enums/ModelInformation.tsx:138 msgid "Build Item" msgstr "Stavka izgradnje" -#: lib/enums/ModelInformation.tsx:127 +#: lib/enums/ModelInformation.tsx:139 msgid "Build Items" msgstr "Stavke izgradnje" -#: lib/enums/ModelInformation.tsx:132 -#: src/pages/company/CompanyDetail.tsx:340 +#: lib/enums/ModelInformation.tsx:144 +#: src/pages/company/CompanyDetail.tsx:345 #: src/tables/company/CompanyTable.tsx:47 #: src/tables/company/ContactTable.tsx:67 +#: src/tables/company/ParametricCompanyTable.tsx:18 msgid "Company" msgstr "Kompanija" -#: lib/enums/ModelInformation.tsx:133 +#: lib/enums/ModelInformation.tsx:145 msgid "Companies" msgstr "Kompanije" -#: lib/enums/ModelInformation.tsx:140 -#: src/pages/build/BuildDetail.tsx:316 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:253 -#: src/pages/sales/ReturnOrderDetail.tsx:231 -#: src/pages/sales/SalesOrderDetail.tsx:224 +#: lib/enums/ModelInformation.tsx:152 +#: src/pages/build/BuildDetail.tsx:317 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:254 +#: src/pages/sales/ReturnOrderDetail.tsx:232 +#: src/pages/sales/SalesOrderDetail.tsx:225 #: src/tables/ColumnRenderers.tsx:362 #: src/tables/Filter.tsx:286 #: src/tables/TableHoverCard.tsx:101 msgid "Project Code" msgstr "Kod projketa" -#: lib/enums/ModelInformation.tsx:141 +#: lib/enums/ModelInformation.tsx:153 #: src/pages/Index/Settings/AdminCenter/Index.tsx:172 msgid "Project Codes" msgstr "Kodovi projekta" -#: lib/enums/ModelInformation.tsx:147 +#: lib/enums/ModelInformation.tsx:159 #: src/components/wizards/OrderPartsWizard.tsx:338 #: src/pages/part/pricing/PurchaseHistoryPanel.tsx:33 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:550 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:555 #: src/pages/stock/StockDetail.tsx:352 #: src/tables/part/PartPurchaseOrdersTable.tsx:32 #: src/tables/stock/StockItemTable.tsx:239 @@ -312,117 +338,117 @@ msgstr "Kodovi projekta" msgid "Purchase Order" msgstr "Narudžbenica" -#: lib/enums/ModelInformation.tsx:148 +#: lib/enums/ModelInformation.tsx:160 #: lib/enums/Roles.tsx:39 #: src/defaults/actions.tsx:104 -#: src/pages/Index/Settings/SystemSettings.tsx:283 -#: src/pages/company/CompanyDetail.tsx:203 -#: src/pages/company/SupplierPartDetail.tsx:266 -#: src/pages/part/PartDetail.tsx:875 -#: src/pages/purchasing/PurchasingIndex.tsx:60 +#: src/pages/Index/Settings/SystemSettings.tsx:289 +#: src/pages/company/CompanyDetail.tsx:204 +#: src/pages/company/SupplierPartDetail.tsx:267 +#: src/pages/part/PartDetail.tsx:864 +#: src/pages/purchasing/PurchasingIndex.tsx:66 msgid "Purchase Orders" msgstr "Narudžbenice" -#: lib/enums/ModelInformation.tsx:156 +#: lib/enums/ModelInformation.tsx:169 msgid "Purchase Order Line" msgstr "Linija narudžbenica" -#: lib/enums/ModelInformation.tsx:157 +#: lib/enums/ModelInformation.tsx:170 msgid "Purchase Order Lines" msgstr "Linije narudžbenica" -#: lib/enums/ModelInformation.tsx:162 -#: src/pages/build/BuildDetail.tsx:289 +#: lib/enums/ModelInformation.tsx:175 +#: src/pages/build/BuildDetail.tsx:290 #: src/pages/part/pricing/SaleHistoryPanel.tsx:24 -#: src/pages/sales/SalesOrderDetail.tsx:614 -#: src/pages/sales/SalesOrderShipmentDetail.tsx:105 -#: src/pages/sales/SalesOrderShipmentDetail.tsx:478 +#: src/pages/sales/SalesOrderDetail.tsx:619 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:103 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:446 #: src/pages/stock/StockDetail.tsx:361 #: src/tables/part/PartSalesAllocationsTable.tsx:41 #: src/tables/sales/SalesOrderAllocationTable.tsx:110 -#: src/tables/sales/SalesOrderShipmentTable.tsx:122 +#: src/tables/sales/SalesOrderShipmentTable.tsx:143 #: src/tables/stock/StockTrackingTable.tsx:131 msgid "Sales Order" msgstr "Nalog za prodaju" -#: lib/enums/ModelInformation.tsx:163 +#: lib/enums/ModelInformation.tsx:176 #: lib/enums/Roles.tsx:43 #: src/defaults/actions.tsx:114 -#: src/pages/Index/Settings/SystemSettings.tsx:299 -#: src/pages/company/CompanyDetail.tsx:223 -#: src/pages/part/PartDetail.tsx:887 -#: src/pages/sales/SalesIndex.tsx:84 +#: src/pages/Index/Settings/SystemSettings.tsx:305 +#: src/pages/company/CompanyDetail.tsx:224 +#: src/pages/part/PartDetail.tsx:876 +#: src/pages/sales/SalesIndex.tsx:53 msgid "Sales Orders" msgstr "Naloti za prodaju" -#: lib/enums/ModelInformation.tsx:171 -#: src/pages/sales/SalesOrderShipmentDetail.tsx:477 +#: lib/enums/ModelInformation.tsx:185 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:445 msgid "Sales Order Shipment" msgstr "Pošiljka" -#: lib/enums/ModelInformation.tsx:172 +#: lib/enums/ModelInformation.tsx:186 msgid "Sales Order Shipments" msgstr "Pošiljke" -#: lib/enums/ModelInformation.tsx:179 -#: src/pages/sales/ReturnOrderDetail.tsx:549 +#: lib/enums/ModelInformation.tsx:194 +#: src/pages/sales/ReturnOrderDetail.tsx:554 #: src/tables/stock/StockTrackingTable.tsx:142 msgid "Return Order" msgstr "Nalog za povrat" -#: lib/enums/ModelInformation.tsx:180 +#: lib/enums/ModelInformation.tsx:195 #: lib/enums/Roles.tsx:41 #: src/defaults/actions.tsx:125 -#: src/pages/Index/Settings/SystemSettings.tsx:316 -#: src/pages/company/CompanyDetail.tsx:230 -#: src/pages/part/PartDetail.tsx:894 -#: src/pages/sales/SalesIndex.tsx:117 +#: src/pages/Index/Settings/SystemSettings.tsx:322 +#: src/pages/company/CompanyDetail.tsx:231 +#: src/pages/part/PartDetail.tsx:883 +#: src/pages/sales/SalesIndex.tsx:99 msgid "Return Orders" msgstr "Nalozi za povrat" -#: lib/enums/ModelInformation.tsx:188 +#: lib/enums/ModelInformation.tsx:204 msgid "Return Order Line Item" msgstr "Stavka linije naloga za povrat" -#: lib/enums/ModelInformation.tsx:189 +#: lib/enums/ModelInformation.tsx:205 msgid "Return Order Line Items" msgstr "Stavke linije naloga za povrat" -#: lib/enums/ModelInformation.tsx:194 +#: lib/enums/ModelInformation.tsx:210 #: src/tables/company/AddressTable.tsx:52 msgid "Address" msgstr "Adresa" -#: lib/enums/ModelInformation.tsx:195 -#: src/pages/company/CompanyDetail.tsx:264 +#: lib/enums/ModelInformation.tsx:211 +#: src/pages/company/CompanyDetail.tsx:265 msgid "Addresses" msgstr "Adrese" -#: lib/enums/ModelInformation.tsx:201 +#: lib/enums/ModelInformation.tsx:217 #: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:89 #: src/pages/core/UserDetail.tsx:135 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:229 -#: src/pages/sales/ReturnOrderDetail.tsx:207 -#: src/pages/sales/SalesOrderDetail.tsx:200 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:230 +#: src/pages/sales/ReturnOrderDetail.tsx:208 +#: src/pages/sales/SalesOrderDetail.tsx:201 msgid "Contact" msgstr "Kontakt" -#: lib/enums/ModelInformation.tsx:202 -#: src/pages/company/CompanyDetail.tsx:258 +#: lib/enums/ModelInformation.tsx:218 +#: src/pages/company/CompanyDetail.tsx:259 #: src/pages/core/CoreIndex.tsx:33 msgid "Contacts" msgstr "Kontakti" -#: lib/enums/ModelInformation.tsx:208 +#: lib/enums/ModelInformation.tsx:224 #: src/tables/ColumnRenderers.tsx:444 msgid "Owner" msgstr "Vlasnik" -#: lib/enums/ModelInformation.tsx:209 +#: lib/enums/ModelInformation.tsx:225 msgid "Owners" msgstr "Vlasnici" -#: lib/enums/ModelInformation.tsx:215 +#: lib/enums/ModelInformation.tsx:231 #: src/pages/Auth/ChangePassword.tsx:36 #: src/pages/core/UserDetail.tsx:220 #: src/tables/ColumnRenderers.tsx:395 @@ -437,7 +463,7 @@ msgstr "Vlasnici" msgid "User" msgstr "Korisnik" -#: lib/enums/ModelInformation.tsx:216 +#: lib/enums/ModelInformation.tsx:232 #: src/components/nav/NavigationDrawer.tsx:105 #: src/pages/Index/Settings/AdminCenter/UserManagementPanel.tsx:15 #: src/pages/core/CoreIndex.tsx:21 @@ -445,12 +471,12 @@ msgstr "Korisnik" msgid "Users" msgstr "Korisnici" -#: lib/enums/ModelInformation.tsx:222 +#: lib/enums/ModelInformation.tsx:238 #: src/pages/core/GroupDetail.tsx:78 msgid "Group" msgstr "Grupa" -#: lib/enums/ModelInformation.tsx:223 +#: lib/enums/ModelInformation.tsx:239 #: src/components/nav/NavigationDrawer.tsx:111 #: src/pages/Index/Settings/AdminCenter/UserManagementPanel.tsx:23 #: src/pages/core/CoreIndex.tsx:27 @@ -460,64 +486,64 @@ msgstr "Grupa" msgid "Groups" msgstr "Grupe" -#: lib/enums/ModelInformation.tsx:230 +#: lib/enums/ModelInformation.tsx:246 msgid "Import Session" msgstr "Sekvenca importovanja" -#: lib/enums/ModelInformation.tsx:231 +#: lib/enums/ModelInformation.tsx:247 msgid "Import Sessions" msgstr "Sekvence importovanja" -#: lib/enums/ModelInformation.tsx:238 +#: lib/enums/ModelInformation.tsx:254 msgid "Label Template" msgstr "Šablon za naziv" -#: lib/enums/ModelInformation.tsx:239 +#: lib/enums/ModelInformation.tsx:255 #: src/pages/Index/Settings/AdminCenter/Index.tsx:209 msgid "Label Templates" msgstr "Šabloni za nazive" -#: lib/enums/ModelInformation.tsx:246 +#: lib/enums/ModelInformation.tsx:262 msgid "Report Template" msgstr "Šablon za izveštaj" -#: lib/enums/ModelInformation.tsx:247 +#: lib/enums/ModelInformation.tsx:263 #: src/pages/Index/Settings/AdminCenter/Index.tsx:215 msgid "Report Templates" msgstr "Šabloni za izveštaje" -#: lib/enums/ModelInformation.tsx:254 +#: lib/enums/ModelInformation.tsx:270 #: src/components/plugins/PluginDrawer.tsx:145 msgid "Plugin Configuration" msgstr "Konfigurisanje ekstenzija" -#: lib/enums/ModelInformation.tsx:255 +#: lib/enums/ModelInformation.tsx:271 msgid "Plugin Configurations" msgstr "Konfiguracije ekstenzije" -#: lib/enums/ModelInformation.tsx:262 +#: lib/enums/ModelInformation.tsx:278 msgid "Content Type" msgstr "Tip sadržaja" -#: lib/enums/ModelInformation.tsx:263 +#: lib/enums/ModelInformation.tsx:279 msgid "Content Types" msgstr "Tipovi sadržaja" -#: lib/enums/ModelInformation.tsx:268 +#: lib/enums/ModelInformation.tsx:284 msgid "Selection List" msgstr "Lista selekcije" -#: lib/enums/ModelInformation.tsx:269 -#: src/pages/Index/Settings/AdminCenter/PartParameterPanel.tsx:21 +#: lib/enums/ModelInformation.tsx:285 +#: src/pages/Index/Settings/AdminCenter/ParameterPanel.tsx:21 msgid "Selection Lists" msgstr "Liste selekcija" -#: lib/enums/ModelInformation.tsx:275 +#: lib/enums/ModelInformation.tsx:291 #: src/components/barcodes/BarcodeInput.tsx:114 #: src/components/dashboard/DashboardLayout.tsx:281 #: src/components/editors/NotesEditor.tsx:74 #: src/components/editors/TemplateEditor/TemplateEditor.tsx:158 -#: src/components/forms/fields/ApiFormField.tsx:273 +#: src/components/forms/fields/ApiFormField.tsx:237 #: src/components/forms/fields/TableField.tsx:45 #: src/components/importer/ImportDataSelector.tsx:192 #: src/components/importer/ImporterColumnSelector.tsx:234 @@ -528,7 +554,7 @@ msgstr "Liste selekcija" #: src/components/nav/SearchDrawer.tsx:572 #: src/components/settings/SettingList.tsx:139 #: src/components/wizards/ImportPartWizard.tsx:574 -#: src/components/wizards/ImportPartWizard.tsx:718 +#: src/components/wizards/ImportPartWizard.tsx:719 #: src/forms/BomForms.tsx:69 #: src/functions/auth.tsx:643 #: src/pages/ErrorPage.tsx:11 @@ -547,9 +573,9 @@ msgstr "Liste selekcija" msgid "Error" msgstr "Grеška" -#: lib/enums/ModelInformation.tsx:276 +#: lib/enums/ModelInformation.tsx:292 #: src/tables/machine/MachineListTable.tsx:402 -#: src/tables/machine/MachineTypeTable.tsx:299 +#: src/tables/machine/MachineTypeTable.tsx:297 msgid "Errors" msgstr "Greške" @@ -559,10 +585,10 @@ msgstr "" #: lib/enums/Roles.tsx:33 #: src/defaults/actions.tsx:135 -#: src/pages/Index/Settings/SystemSettings.tsx:264 -#: src/pages/build/BuildIndex.tsx:75 -#: src/pages/part/PartDetail.tsx:904 -#: src/pages/sales/SalesOrderDetail.tsx:421 +#: src/pages/Index/Settings/SystemSettings.tsx:270 +#: src/pages/build/BuildIndex.tsx:67 +#: src/pages/part/PartDetail.tsx:893 +#: src/pages/sales/SalesOrderDetail.tsx:422 msgid "Build Orders" msgstr "Nalozi za izradu" @@ -639,39 +665,39 @@ msgstr "Skeniraj ili unesi podatke bar koda" msgid "Enter barcode data" msgstr "Unesi podatke bar koda" -#: src/components/barcodes/BarcodeScanDialog.tsx:49 -#: src/components/buttons/ScanButton.tsx:15 +#: src/components/barcodes/BarcodeScanDialog.tsx:56 +#: src/components/buttons/ScanButton.tsx:27 #: src/components/nav/NavigationDrawer.tsx:122 -#: src/forms/PurchaseOrderForms.tsx:457 -#: src/forms/PurchaseOrderForms.tsx:563 +#: src/forms/PurchaseOrderForms.tsx:509 +#: src/forms/PurchaseOrderForms.tsx:615 msgid "Scan Barcode" msgstr "Skeniraj barkod" -#: src/components/barcodes/BarcodeScanDialog.tsx:105 +#: src/components/barcodes/BarcodeScanDialog.tsx:121 msgid "No matching item found" msgstr "Nema pronađenih podudarajućih stavki" -#: src/components/barcodes/BarcodeScanDialog.tsx:134 +#: src/components/barcodes/BarcodeScanDialog.tsx:150 msgid "Barcode does not match the expected model type" msgstr "" -#: src/components/barcodes/BarcodeScanDialog.tsx:145 +#: src/components/barcodes/BarcodeScanDialog.tsx:161 #: src/components/editors/NotesEditor.tsx:84 #: src/components/editors/NotesEditor.tsx:118 -#: src/components/forms/ApiForm.tsx:465 +#: src/components/forms/ApiForm.tsx:484 #: src/components/wizards/ImportPartWizard.tsx:566 -#: src/components/wizards/ImportPartWizard.tsx:690 +#: src/components/wizards/ImportPartWizard.tsx:691 #: src/pages/Index/Settings/AdminCenter/CurrencyManagementPanel.tsx:45 #: src/tables/bom/BomTable.tsx:548 #: src/tables/settings/PendingTasksTable.tsx:68 msgid "Success" msgstr "Uspešno" -#: src/components/barcodes/BarcodeScanDialog.tsx:151 +#: src/components/barcodes/BarcodeScanDialog.tsx:167 msgid "Failed to handle barcode" msgstr "" -#: src/components/barcodes/BarcodeScanDialog.tsx:167 +#: src/components/barcodes/BarcodeScanDialog.tsx:183 #: src/pages/Index/Scan.tsx:129 msgid "Failed to scan barcode" msgstr "Greška pri skeniranju bar koda" @@ -714,10 +740,10 @@ msgstr "Greška pri povezivanju bar koda" #: src/components/barcodes/QRCode.tsx:179 #: src/pages/part/PartDetail.tsx:521 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:222 -#: src/pages/sales/ReturnOrderDetail.tsx:188 -#: src/pages/sales/SalesOrderDetail.tsx:181 -#: src/pages/sales/SalesOrderShipmentDetail.tsx:122 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:223 +#: src/pages/sales/ReturnOrderDetail.tsx:189 +#: src/pages/sales/SalesOrderDetail.tsx:182 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:120 #: src/pages/stock/StockDetail.tsx:186 msgid "Link" msgstr "Linkuj" @@ -728,7 +754,7 @@ msgstr "Ovo će ukloniti link sa povezanim barkodom" #: src/components/barcodes/QRCode.tsx:205 #: src/components/items/ActionDropdown.tsx:192 -#: src/forms/PurchaseOrderForms.tsx:554 +#: src/forms/PurchaseOrderForms.tsx:606 msgid "Unlink Barcode" msgstr "Prekini vezu Barkoda" @@ -829,14 +855,14 @@ msgstr "Bićete preusmereni provajderu za dodatne akcije" #~ msgid "Scan QR code" #~ msgstr "Scan QR code" -#: src/components/buttons/ScanButton.tsx:19 -msgid "Open Barcode Scanner" -msgstr "Otvori barkod skener" - #: src/components/buttons/ScanButton.tsx:20 #~ msgid "Open QR code scanner" #~ msgstr "Open QR code scanner" +#: src/components/buttons/ScanButton.tsx:32 +msgid "Open Barcode Scanner" +msgstr "Otvori barkod skener" + #: src/components/buttons/SpotlightButton.tsx:12 msgid "Open spotlight" msgstr "Otvori reflektor" @@ -1059,7 +1085,7 @@ msgid "Show the number of sales orders which are assigned to you" msgstr "Prikaži broj naloga za prodaju koji su vama dodeljeni" #: src/components/dashboard/DashboardWidgetLibrary.tsx:129 -#: src/pages/sales/SalesIndex.tsx:105 +#: src/pages/sales/SalesIndex.tsx:87 msgid "Pending Shipments" msgstr "" @@ -1210,12 +1236,18 @@ msgid "Remove the associated image from this item?" msgstr "Ukloniti sliku sa ovog predmeta?" #: src/components/details/DetailsImage.tsx:83 -#: src/forms/StockForms.tsx:888 +#: src/forms/StockForms.tsx:895 #: src/pages/Index/Settings/AccountSettings/MFASettings.tsx:324 #: src/pages/Index/Settings/AccountSettings/MFASettings.tsx:415 #: src/pages/Index/Settings/AccountSettings/MFASettings.tsx:884 #: src/pages/Index/Settings/AccountSettings/MFASettings.tsx:903 #: src/pages/Index/Settings/AccountSettings/SecurityContent.tsx:254 +#: src/tables/build/BuildAllocatedStockTable.tsx:178 +#: src/tables/build/BuildAllocatedStockTable.tsx:258 +#: src/tables/build/BuildLineTable.tsx:111 +#: src/tables/build/BuildLineTable.tsx:665 +#: src/tables/sales/SalesOrderAllocationTable.tsx:224 +#: src/tables/sales/SalesOrderAllocationTable.tsx:247 msgid "Remove" msgstr "Ukloni" @@ -1241,12 +1273,12 @@ msgid "Upload Error" msgstr "Greška prilikom dodavanja" #: src/components/details/DetailsImage.tsx:250 -#: src/components/forms/fields/TextField.tsx:65 +#: src/components/forms/fields/AutoFillRightSection.tsx:34 msgid "Clear" msgstr "Obriši" #: src/components/details/DetailsImage.tsx:256 -#: src/components/forms/ApiForm.tsx:677 +#: src/components/forms/ApiForm.tsx:696 #: src/contexts/ThemeContext.tsx:44 #: src/pages/Index/Settings/AccountSettings/MFASettings.tsx:149 #: src/pages/Index/Settings/AccountSettings/MFASettings.tsx:568 @@ -1499,8 +1531,8 @@ msgstr "Greška na serveru" msgid "A server error occurred" msgstr "Desila se greška na serverskoj strani" -#: src/components/forms/ApiForm.tsx:103 -#: src/components/forms/ApiForm.tsx:594 +#: src/components/forms/ApiForm.tsx:107 +#: src/components/forms/ApiForm.tsx:613 msgid "Form Error" msgstr "Greška Obrasca" @@ -1508,11 +1540,11 @@ msgstr "Greška Obrasca" #~ msgid "Form Errors Exist" #~ msgstr "Form Errors Exist" -#: src/components/forms/ApiForm.tsx:604 +#: src/components/forms/ApiForm.tsx:623 msgid "Errors exist for one or more form fields" msgstr "Postoje greške na jednom ili više polja na obrascu" -#: src/components/forms/ApiForm.tsx:715 +#: src/components/forms/ApiForm.tsx:734 #: src/hooks/UseForm.tsx:133 #: src/tables/plugin/PluginListTable.tsx:204 msgid "Update" @@ -1698,15 +1730,14 @@ msgstr "Host" #: src/components/forms/InstanceOptions.tsx:124 #: src/components/plugins/PluginDrawer.tsx:68 #: src/pages/Index/Settings/AdminCenter/UnitManagementPanel.tsx:19 -#: src/pages/part/CategoryDetail.tsx:88 +#: src/pages/part/CategoryDetail.tsx:91 #: src/pages/part/PartDetail.tsx:446 #: src/pages/stock/LocationDetail.tsx:82 #: src/tables/machine/MachineTypeTable.tsx:67 -#: src/tables/machine/MachineTypeTable.tsx:151 -#: src/tables/machine/MachineTypeTable.tsx:254 -#: src/tables/machine/MachineTypeTable.tsx:357 +#: src/tables/machine/MachineTypeTable.tsx:149 +#: src/tables/machine/MachineTypeTable.tsx:252 +#: src/tables/machine/MachineTypeTable.tsx:355 #: src/tables/plugin/PluginErrorTable.tsx:33 -#: src/tables/purchasing/ManufacturerPartParameterTable.tsx:36 #: src/tables/settings/ApiTokenTable.tsx:57 #: src/tables/settings/GroupTable.tsx:95 #: src/tables/settings/GroupTable.tsx:148 @@ -1769,7 +1800,7 @@ msgstr "" #~ msgstr "State: <0>worker ({0}), <1>plugins{1}" #: src/components/forms/InstanceOptions.tsx:118 -#: src/pages/Index/Settings/SystemSettings.tsx:45 +#: src/pages/Index/Settings/SystemSettings.tsx:46 msgid "Server" msgstr "Server" @@ -1793,6 +1824,8 @@ msgid "Plugins" msgstr "Ekstenzije" #: src/components/forms/InstanceOptions.tsx:143 +#: src/tables/general/ParameterTemplateTable.tsx:153 +#: src/tables/general/ParameterTemplateTable.tsx:188 #: src/tables/part/PartTestTemplateTable.tsx:117 #: src/tables/settings/TemplateTable.tsx:251 #: src/tables/settings/TemplateTable.tsx:362 @@ -1817,10 +1850,14 @@ msgstr "Zaustavljeno" msgid "Running" msgstr "" -#: src/components/forms/fields/ApiFormField.tsx:233 +#: src/components/forms/fields/ApiFormField.tsx:197 msgid "Select file to upload" msgstr "" +#: src/components/forms/fields/AutoFillRightSection.tsx:47 +msgid "Accept suggested value" +msgstr "" + #: src/components/forms/fields/DateField.tsx:76 msgid "Select date" msgstr "" @@ -1853,13 +1890,13 @@ msgstr "Izaberi pakovanje" msgid "{0} icons" msgstr "{0} ikone" -#: src/components/forms/fields/RelatedModelField.tsx:409 +#: src/components/forms/fields/RelatedModelField.tsx:480 #: src/components/modals/AboutInvenTreeModal.tsx:96 #: src/pages/Index/Settings/AccountSettings/SecurityContent.tsx:383 msgid "Loading" msgstr "Učitavanje" -#: src/components/forms/fields/RelatedModelField.tsx:411 +#: src/components/forms/fields/RelatedModelField.tsx:482 msgid "No results found" msgstr "Nema pronađenih rezultata" @@ -1875,10 +1912,6 @@ msgstr "Nema unosa" msgid "Add new row" msgstr "Dodaj novi red" -#: src/components/forms/fields/TextField.tsx:82 -msgid "Accept suggested value" -msgstr "" - #: src/components/images/DetailsImage.tsx:252 #~ msgid "Select image" #~ msgstr "Select image" @@ -2036,7 +2069,7 @@ msgstr "Podaci su učitani uspešno" #: src/components/importer/ImporterDrawer.tsx:109 #: src/components/modals/AboutInvenTreeModal.tsx:205 #: src/components/modals/ServerInfoModal.tsx:134 -#: src/components/wizards/ImportPartWizard.tsx:772 +#: src/components/wizards/ImportPartWizard.tsx:773 #: src/forms/BomForms.tsx:132 #: src/pages/Index/Settings/AccountSettings/MFASettings.tsx:685 msgid "Close" @@ -2199,7 +2232,7 @@ msgid "Change" msgstr "" #: src/components/items/RoleTable.tsx:150 -#: src/forms/StockForms.tsx:927 +#: src/forms/StockForms.tsx:941 #: src/tables/stock/StockItemTestResultTable.tsx:367 msgid "Add" msgstr "Dodaj" @@ -2222,11 +2255,11 @@ msgstr "" #: src/components/items/TransferList.tsx:161 #: src/components/render/Stock.tsx:102 -#: src/pages/part/PartDetail.tsx:994 +#: src/pages/part/PartDetail.tsx:1009 #: src/pages/stock/StockDetail.tsx:265 #: src/pages/stock/StockDetail.tsx:942 -#: src/tables/build/BuildAllocatedStockTable.tsx:135 -#: src/tables/build/BuildLineTable.tsx:192 +#: src/tables/build/BuildAllocatedStockTable.tsx:132 +#: src/tables/build/BuildLineTable.tsx:193 #: src/tables/part/PartTable.tsx:137 #: src/tables/stock/StockItemTable.tsx:182 #: src/tables/stock/StockItemTable.tsx:343 @@ -2373,7 +2406,7 @@ msgid "Database" msgstr "Baza podataka" #: src/components/modals/ServerInfoModal.tsx:49 -#: src/components/nav/Alerts.tsx:118 +#: src/components/nav/Alerts.tsx:120 msgid "Debug Mode" msgstr "Mod za uklanjanje gršaka" @@ -2414,7 +2447,7 @@ msgid "Issues detected" msgstr "Detektovani su problemi" #: src/components/modals/ServerInfoModal.tsx:102 -#: src/components/nav/Alerts.tsx:125 +#: src/components/nav/Alerts.tsx:127 msgid "Background Worker" msgstr "Pozadinski proces" @@ -2436,7 +2469,7 @@ msgstr "Podešavanje e-pošte" #~ msgstr "Email settings not configured" #: src/components/modals/ServerInfoModal.tsx:120 -#: src/components/nav/Alerts.tsx:141 +#: src/components/nav/Alerts.tsx:143 msgid "Email settings not configured." msgstr "" @@ -2444,43 +2477,47 @@ msgstr "" msgid "Alerts" msgstr "" -#: src/components/nav/Alerts.tsx:120 +#: src/components/nav/Alerts.tsx:97 +msgid "No issues detected" +msgstr "" + +#: src/components/nav/Alerts.tsx:122 msgid "The server is running in debug mode." msgstr "" -#: src/components/nav/Alerts.tsx:127 +#: src/components/nav/Alerts.tsx:129 msgid "The background worker process is not running." msgstr "" -#: src/components/nav/Alerts.tsx:132 +#: src/components/nav/Alerts.tsx:134 msgid "Server Restart" msgstr "" -#: src/components/nav/Alerts.tsx:134 +#: src/components/nav/Alerts.tsx:136 msgid "The server requires a restart to apply changes." msgstr "" -#: src/components/nav/Alerts.tsx:139 +#: src/components/nav/Alerts.tsx:141 msgid "Email settings" msgstr "" -#: src/components/nav/Alerts.tsx:146 +#: src/components/nav/Alerts.tsx:148 msgid "Database Migrations" msgstr "" -#: src/components/nav/Alerts.tsx:148 +#: src/components/nav/Alerts.tsx:150 msgid "There are pending database migrations." msgstr "" -#: src/components/nav/Alerts.tsx:163 +#: src/components/nav/Alerts.tsx:165 msgid "Learn more about {code}" msgstr "" #: src/components/nav/Header.tsx:188 #: src/components/nav/NavigationDrawer.tsx:134 #: src/components/nav/NotificationDrawer.tsx:181 -#: src/pages/Index/Settings/SystemSettings.tsx:121 -#: src/pages/Index/Settings/UserSettings.tsx:106 +#: src/pages/Index/Settings/SystemSettings.tsx:122 +#: src/pages/Index/Settings/UserSettings.tsx:107 #: src/pages/Notifications.tsx:45 #: src/pages/Notifications.tsx:130 msgid "Notifications" @@ -2511,8 +2548,8 @@ msgstr "Podešavanje" #: src/components/nav/NavigationDrawer.tsx:140 #: src/components/nav/SettingsHeader.tsx:40 #: src/defaults/actions.tsx:92 -#: src/pages/Index/Settings/UserSettings.tsx:141 -#: src/pages/Index/Settings/UserSettings.tsx:145 +#: src/pages/Index/Settings/UserSettings.tsx:142 +#: src/pages/Index/Settings/UserSettings.tsx:146 msgid "User Settings" msgstr "Korisnička podešavanja" @@ -2529,8 +2566,8 @@ msgstr "Korisnička podešavanja" #: src/components/nav/NavigationDrawer.tsx:146 #: src/components/nav/SettingsHeader.tsx:41 #: src/defaults/actions.tsx:144 -#: src/pages/Index/Settings/SystemSettings.tsx:348 -#: src/pages/Index/Settings/SystemSettings.tsx:353 +#: src/pages/Index/Settings/SystemSettings.tsx:354 +#: src/pages/Index/Settings/SystemSettings.tsx:359 msgid "System Settings" msgstr "Sistemska podešavanja" @@ -2577,11 +2614,11 @@ msgstr "Odjavljivanje" #: src/components/nav/NavigationDrawer.tsx:77 #: src/components/render/Part.tsx:36 -#: src/components/wizards/ImportPartWizard.tsx:807 +#: src/components/wizards/ImportPartWizard.tsx:808 #: src/defaults/links.tsx:42 #: src/forms/StockForms.tsx:794 -#: src/pages/Index/Settings/SystemSettings.tsx:224 -#: src/pages/part/PartDetail.tsx:804 +#: src/pages/Index/Settings/SystemSettings.tsx:230 +#: src/pages/part/PartDetail.tsx:793 #: src/pages/stock/LocationDetail.tsx:390 #: src/pages/stock/LocationDetail.tsx:420 #: src/pages/stock/StockDetail.tsx:642 @@ -2591,29 +2628,29 @@ msgstr "Zalihe" #: src/components/nav/NavigationDrawer.tsx:84 #: src/defaults/links.tsx:48 -#: src/pages/build/BuildDetail.tsx:748 -#: src/pages/build/BuildIndex.tsx:102 +#: src/pages/build/BuildDetail.tsx:753 +#: src/pages/build/BuildIndex.tsx:101 msgid "Manufacturing" msgstr "Proizvodnja" #: src/components/nav/NavigationDrawer.tsx:91 #: src/defaults/links.tsx:54 #: src/pages/company/ManufacturerDetail.tsx:9 -#: src/pages/company/ManufacturerPartDetail.tsx:276 +#: src/pages/company/ManufacturerPartDetail.tsx:267 #: src/pages/company/SupplierDetail.tsx:9 -#: src/pages/company/SupplierPartDetail.tsx:360 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:553 -#: src/pages/purchasing/PurchasingIndex.tsx:122 +#: src/pages/company/SupplierPartDetail.tsx:365 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:558 +#: src/pages/purchasing/PurchasingIndex.tsx:212 msgid "Purchasing" msgstr "Kupovina" #: src/components/nav/NavigationDrawer.tsx:98 #: src/defaults/links.tsx:60 #: src/pages/company/CustomerDetail.tsx:9 -#: src/pages/sales/ReturnOrderDetail.tsx:554 -#: src/pages/sales/SalesIndex.tsx:153 -#: src/pages/sales/SalesOrderDetail.tsx:619 -#: src/pages/sales/SalesOrderShipmentDetail.tsx:480 +#: src/pages/sales/ReturnOrderDetail.tsx:559 +#: src/pages/sales/SalesIndex.tsx:168 +#: src/pages/sales/SalesOrderDetail.tsx:624 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:448 msgid "Sales" msgstr "Prodaja" @@ -2667,21 +2704,21 @@ msgid "Remove search group" msgstr "" #: src/components/nav/SearchDrawer.tsx:288 -#: src/pages/company/ManufacturerPartDetail.tsx:192 -#: src/pages/part/PartDetail.tsx:862 +#: src/pages/company/ManufacturerPartDetail.tsx:179 +#: src/pages/part/PartDetail.tsx:851 #: src/pages/part/PartSupplierDetail.tsx:15 -#: src/pages/purchasing/PurchasingIndex.tsx:81 +#: src/pages/purchasing/PurchasingIndex.tsx:100 msgid "Suppliers" msgstr "Dobavljači" #: src/components/nav/SearchDrawer.tsx:298 #: src/pages/part/PartSupplierDetail.tsx:23 -#: src/pages/purchasing/PurchasingIndex.tsx:98 +#: src/pages/purchasing/PurchasingIndex.tsx:149 msgid "Manufacturers" msgstr "Proizvođači" #: src/components/nav/SearchDrawer.tsx:308 -#: src/pages/sales/SalesIndex.tsx:138 +#: src/pages/sales/SalesIndex.tsx:133 msgid "Customers" msgstr "Mušterije" @@ -2772,21 +2809,21 @@ msgstr "Informacije o ekstenziji" #: src/components/plugins/PluginDrawer.tsx:73 #: src/forms/selectionListFields.tsx:102 -#: src/pages/build/BuildDetail.tsx:250 -#: src/pages/company/CompanyDetail.tsx:93 -#: src/pages/company/ManufacturerPartDetail.tsx:93 -#: src/pages/company/ManufacturerPartDetail.tsx:120 -#: src/pages/company/SupplierPartDetail.tsx:145 -#: src/pages/part/CategoryDetail.tsx:108 +#: src/pages/build/BuildDetail.tsx:251 +#: src/pages/company/CompanyDetail.tsx:94 +#: src/pages/company/ManufacturerPartDetail.tsx:92 +#: src/pages/company/ManufacturerPartDetail.tsx:119 +#: src/pages/company/SupplierPartDetail.tsx:146 +#: src/pages/part/CategoryDetail.tsx:111 #: src/pages/part/PartDetail.tsx:460 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:162 -#: src/pages/sales/ReturnOrderDetail.tsx:129 -#: src/pages/sales/SalesOrderDetail.tsx:119 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:163 +#: src/pages/sales/ReturnOrderDetail.tsx:130 +#: src/pages/sales/SalesOrderDetail.tsx:120 #: src/pages/stock/LocationDetail.tsx:102 #: src/tables/ColumnRenderers.tsx:278 -#: src/tables/build/BuildAllocatedStockTable.tsx:91 -#: src/tables/machine/MachineTypeTable.tsx:161 -#: src/tables/machine/MachineTypeTable.tsx:257 +#: src/tables/build/BuildAllocatedStockTable.tsx:88 +#: src/tables/machine/MachineTypeTable.tsx:159 +#: src/tables/machine/MachineTypeTable.tsx:255 #: src/tables/plugin/PluginListTable.tsx:110 msgid "Description" msgstr "Opis" @@ -2814,7 +2851,7 @@ msgstr "Datum" #: src/tables/company/CompanyTable.tsx:91 #: src/tables/machine/MachineListTable.tsx:384 #: src/tables/machine/MachineListTable.tsx:799 -#: src/tables/part/ParametricPartTable.tsx:354 +#: src/tables/part/ParametricPartTable.tsx:19 #: src/tables/part/PartTable.tsx:197 #: src/tables/part/PartVariantTable.tsx:15 #: src/tables/plugin/PluginListTable.tsx:96 @@ -2836,8 +2873,8 @@ msgid "Installation Path" msgstr "Putanja instalacije" #: src/components/plugins/PluginDrawer.tsx:116 -#: src/tables/machine/MachineTypeTable.tsx:184 -#: src/tables/machine/MachineTypeTable.tsx:293 +#: src/tables/machine/MachineTypeTable.tsx:182 +#: src/tables/machine/MachineTypeTable.tsx:291 #: src/tables/plugin/PluginListTable.tsx:101 #: src/tables/plugin/PluginListTable.tsx:417 msgid "Builtin" @@ -2849,8 +2886,8 @@ msgstr "Paket" #: src/components/plugins/PluginDrawer.tsx:133 #: src/pages/Index/Settings/AdminCenter/PluginManagementPanel.tsx:55 -#: src/pages/Index/Settings/SystemSettings.tsx:331 -#: src/pages/Index/Settings/UserSettings.tsx:128 +#: src/pages/Index/Settings/SystemSettings.tsx:337 +#: src/pages/Index/Settings/UserSettings.tsx:129 msgid "Plugin Settings" msgstr "Podešavanje ekstenzija" @@ -2911,7 +2948,7 @@ msgstr "Desila se greška prilikom učitavanja sadržaja ekstenzije" #~ msgid "Unknown model: {model}" #~ msgstr "Unknown model: {model}" -#: src/components/render/Instance.tsx:249 +#: src/components/render/Instance.tsx:247 msgid "Unknown model: {model_name}" msgstr "" @@ -2939,10 +2976,10 @@ msgstr "Pošiljka" #: src/components/render/Part.tsx:28 #: src/components/render/Plugin.tsx:17 #: src/components/render/User.tsx:37 -#: src/pages/company/CompanyDetail.tsx:323 -#: src/pages/company/SupplierPartDetail.tsx:373 +#: src/pages/company/CompanyDetail.tsx:328 +#: src/pages/company/SupplierPartDetail.tsx:378 #: src/pages/core/UserDetail.tsx:211 -#: src/pages/part/PartDetail.tsx:1027 +#: src/pages/part/PartDetail.tsx:1048 #: src/tables/ColumnRenderers.tsx:410 msgid "Inactive" msgstr "Neaktivno" @@ -2962,11 +2999,11 @@ msgstr "Nema zalihe" #: src/components/render/Part.tsx:47 #: src/components/wizards/OrderPartsWizard.tsx:135 -#: src/pages/company/SupplierPartDetail.tsx:197 -#: src/pages/company/SupplierPartDetail.tsx:394 -#: src/pages/part/PartDetail.tsx:1015 +#: src/pages/company/SupplierPartDetail.tsx:198 +#: src/pages/company/SupplierPartDetail.tsx:399 +#: src/pages/part/PartDetail.tsx:1030 #: src/tables/bom/BomTable.tsx:444 -#: src/tables/build/BuildLineTable.tsx:222 +#: src/tables/build/BuildLineTable.tsx:223 #: src/tables/part/PartTable.tsx:108 msgid "On Order" msgstr "Na nalogu" @@ -2974,9 +3011,9 @@ msgstr "Na nalogu" #: src/components/render/Part.tsx:55 #: src/components/wizards/OrderPartsWizard.tsx:141 #: src/pages/part/PartDetail.tsx:587 -#: src/pages/part/PartDetail.tsx:1021 +#: src/pages/part/PartDetail.tsx:1036 #: src/pages/stock/StockDetail.tsx:925 -#: src/tables/part/PartTestResultTable.tsx:297 +#: src/tables/part/PartTestResultTable.tsx:305 #: src/tables/stock/StockItemTable.tsx:359 msgid "In Production" msgstr "U produkciji" @@ -2987,7 +3024,7 @@ msgid "Details" msgstr "Detalji" #: src/components/render/Part.tsx:112 -#: src/components/wizards/ImportPartWizard.tsx:806 +#: src/components/wizards/ImportPartWizard.tsx:807 #: src/pages/part/PartDetail.tsx:487 #: src/tables/ColumnRenderers.tsx:233 #: src/tables/ColumnRenderers.tsx:242 @@ -3000,16 +3037,16 @@ msgstr "Kategorija" #: src/components/render/Stock.tsx:114 #: src/components/render/Stock.tsx:132 #: src/forms/BuildForms.tsx:795 -#: src/forms/PurchaseOrderForms.tsx:595 +#: src/forms/PurchaseOrderForms.tsx:647 #: src/forms/StockForms.tsx:792 #: src/forms/StockForms.tsx:839 -#: src/forms/StockForms.tsx:885 -#: src/forms/StockForms.tsx:924 -#: src/forms/StockForms.tsx:960 -#: src/forms/StockForms.tsx:1003 -#: src/forms/StockForms.tsx:1047 -#: src/forms/StockForms.tsx:1095 -#: src/forms/StockForms.tsx:1139 +#: src/forms/StockForms.tsx:892 +#: src/forms/StockForms.tsx:938 +#: src/forms/StockForms.tsx:976 +#: src/forms/StockForms.tsx:1019 +#: src/forms/StockForms.tsx:1063 +#: src/forms/StockForms.tsx:1111 +#: src/forms/StockForms.tsx:1155 #: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:88 #: src/pages/core/UserDetail.tsx:158 #: src/pages/stock/StockDetail.tsx:298 @@ -3023,7 +3060,7 @@ msgstr "Lokacija" #: src/components/render/Stock.tsx:99 #: src/pages/stock/StockDetail.tsx:198 #: src/pages/stock/StockDetail.tsx:930 -#: src/tables/build/BuildAllocatedStockTable.tsx:121 +#: src/tables/build/BuildAllocatedStockTable.tsx:118 #: src/tables/build/BuildOutputTable.tsx:107 #: src/tables/sales/SalesOrderAllocationTable.tsx:142 msgid "Serial Number" @@ -3034,9 +3071,9 @@ msgstr "Serijski broj" #: src/forms/BuildForms.tsx:240 #: src/forms/BuildForms.tsx:634 #: src/forms/BuildForms.tsx:797 -#: src/forms/PurchaseOrderForms.tsx:801 +#: src/forms/PurchaseOrderForms.tsx:853 #: src/forms/ReturnOrderForms.tsx:243 -#: src/forms/SalesOrderForms.tsx:308 +#: src/forms/SalesOrderForms.tsx:387 #: src/forms/StockForms.tsx:841 #: src/pages/part/PartStockHistoryDetail.tsx:56 #: src/pages/part/PartStockHistoryDetail.tsx:210 @@ -3046,9 +3083,9 @@ msgstr "Serijski broj" #: src/pages/part/pricing/PriceBreakPanel.tsx:172 #: src/pages/stock/StockDetail.tsx:258 #: src/pages/stock/StockDetail.tsx:936 -#: src/tables/build/BuildLineTable.tsx:86 +#: src/tables/build/BuildLineTable.tsx:83 #: src/tables/part/PartPurchaseOrdersTable.tsx:94 -#: src/tables/part/PartTestResultTable.tsx:269 +#: src/tables/part/PartTestResultTable.tsx:277 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:175 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:206 #: src/tables/purchasing/SupplierPriceBreakTable.tsx:69 @@ -3063,14 +3100,14 @@ msgstr "Količina" #: src/forms/BuildForms.tsx:474 #: src/forms/StockForms.tsx:793 #: src/forms/StockForms.tsx:840 -#: src/forms/StockForms.tsx:886 -#: src/forms/StockForms.tsx:925 -#: src/forms/StockForms.tsx:961 -#: src/forms/StockForms.tsx:1004 -#: src/forms/StockForms.tsx:1048 -#: src/forms/StockForms.tsx:1096 -#: src/forms/StockForms.tsx:1140 -#: src/tables/build/BuildLineTable.tsx:96 +#: src/forms/StockForms.tsx:893 +#: src/forms/StockForms.tsx:939 +#: src/forms/StockForms.tsx:977 +#: src/forms/StockForms.tsx:1020 +#: src/forms/StockForms.tsx:1064 +#: src/forms/StockForms.tsx:1112 +#: src/forms/StockForms.tsx:1156 +#: src/tables/build/BuildLineTable.tsx:93 msgid "Batch" msgstr "Serija" @@ -3306,10 +3343,6 @@ msgstr "Podešavanje nije izabrano" #~ msgid "Part category updated" #~ msgstr "Part category updated" -#: src/components/tables/part/PartParameterTable.tsx:41 -#~ msgid "Parameter" -#~ msgstr "Parameter" - #: src/components/tables/part/PartParameterTable.tsx:114 #~ msgid "Part parameter updated" #~ msgstr "Part parameter updated" @@ -3571,15 +3604,16 @@ msgid "Already Imported" msgstr "" #: src/components/wizards/ImportPartWizard.tsx:205 -#: src/pages/company/CompanyDetail.tsx:136 +#: src/pages/company/CompanyDetail.tsx:137 #: src/pages/company/SupplierDetail.tsx:8 -#: src/pages/company/SupplierPartDetail.tsx:130 -#: src/pages/company/SupplierPartDetail.tsx:235 -#: src/pages/company/SupplierPartDetail.tsx:364 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:156 +#: src/pages/company/SupplierPartDetail.tsx:131 +#: src/pages/company/SupplierPartDetail.tsx:236 +#: src/pages/company/SupplierPartDetail.tsx:369 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:157 #: src/tables/Filter.tsx:360 #: src/tables/company/CompanyTable.tsx:96 #: src/tables/part/PartPurchaseOrdersTable.tsx:43 +#: src/tables/purchasing/PurchaseOrderParametricTable.tsx:34 #: src/tables/purchasing/PurchaseOrderTable.tsx:109 #: src/tables/purchasing/SupplierPriceBreakTable.tsx:40 msgid "Supplier" @@ -3648,7 +3682,7 @@ msgid "Next" msgstr "" #: src/components/wizards/ImportPartWizard.tsx:540 -#: src/pages/part/PartDetail.tsx:1046 +#: src/pages/part/PartDetail.tsx:1067 #: src/tables/part/PartTable.tsx:408 msgid "Edit Part" msgstr "Izmeni deo" @@ -3669,28 +3703,28 @@ msgstr "" msgid "Import" msgstr "" -#: src/components/wizards/ImportPartWizard.tsx:691 +#: src/components/wizards/ImportPartWizard.tsx:692 msgid "Parameters created successfully!" msgstr "" -#: src/components/wizards/ImportPartWizard.tsx:719 +#: src/components/wizards/ImportPartWizard.tsx:720 msgid "Failed to create parameters, please fix the errors and try again" msgstr "" #. placeholder {0}: supplierPart?.supplier -#: src/components/wizards/ImportPartWizard.tsx:739 +#: src/components/wizards/ImportPartWizard.tsx:740 msgid "Part imported successfully from supplier {0}." msgstr "" -#: src/components/wizards/ImportPartWizard.tsx:752 +#: src/components/wizards/ImportPartWizard.tsx:753 msgid "Open Part" msgstr "" -#: src/components/wizards/ImportPartWizard.tsx:759 +#: src/components/wizards/ImportPartWizard.tsx:760 msgid "Open Supplier Part" msgstr "" -#: src/components/wizards/ImportPartWizard.tsx:766 +#: src/components/wizards/ImportPartWizard.tsx:767 msgid "Open Manufacturer Part" msgstr "" @@ -3699,25 +3733,19 @@ msgstr "" #~ msgid "Import Part" #~ msgstr "Import Part" -#: src/components/wizards/ImportPartWizard.tsx:802 +#: src/components/wizards/ImportPartWizard.tsx:803 msgid "Import Supplier Part" msgstr "" -#: src/components/wizards/ImportPartWizard.tsx:804 +#: src/components/wizards/ImportPartWizard.tsx:805 msgid "Search Supplier Part" msgstr "" -#: src/components/wizards/ImportPartWizard.tsx:806 -#: src/pages/company/ManufacturerPartDetail.tsx:166 -#: src/pages/part/PartDetail.tsx:793 -msgid "Parameters" -msgstr "Parametri" - -#: src/components/wizards/ImportPartWizard.tsx:806 +#: src/components/wizards/ImportPartWizard.tsx:807 msgid "Confirm import" msgstr "" -#: src/components/wizards/ImportPartWizard.tsx:808 +#: src/components/wizards/ImportPartWizard.tsx:809 msgid "Done" msgstr "" @@ -3738,24 +3766,24 @@ msgid "Sales Requirements" msgstr "" #: src/components/wizards/OrderPartsWizard.tsx:129 -#: src/forms/StockForms.tsx:887 -#: src/forms/StockForms.tsx:926 -#: src/forms/StockForms.tsx:962 -#: src/forms/StockForms.tsx:1005 -#: src/forms/StockForms.tsx:1049 -#: src/forms/StockForms.tsx:1097 -#: src/forms/StockForms.tsx:1141 -#: src/pages/company/SupplierPartDetail.tsx:190 -#: src/pages/company/SupplierPartDetail.tsx:378 +#: src/forms/StockForms.tsx:894 +#: src/forms/StockForms.tsx:940 +#: src/forms/StockForms.tsx:978 +#: src/forms/StockForms.tsx:1021 +#: src/forms/StockForms.tsx:1065 +#: src/forms/StockForms.tsx:1113 +#: src/forms/StockForms.tsx:1157 +#: src/pages/company/SupplierPartDetail.tsx:191 +#: src/pages/company/SupplierPartDetail.tsx:383 #: src/pages/part/PartDetail.tsx:534 -#: src/pages/part/PartDetail.tsx:984 +#: src/pages/part/PartDetail.tsx:999 #: src/tables/Filter.tsx:92 #: src/tables/purchasing/SupplierPartTable.tsx:230 msgid "In Stock" msgstr "U zalihama" #: src/components/wizards/OrderPartsWizard.tsx:146 -#: src/tables/build/BuildLineTable.tsx:404 +#: src/tables/build/BuildLineTable.tsx:405 msgid "Required Quantity" msgstr "Potrebna količina" @@ -3847,7 +3875,7 @@ msgid "Please correct the errors in the selected parts" msgstr "Molimo ispravite greške u izabranim delovima" #: src/components/wizards/OrderPartsWizard.tsx:587 -#: src/tables/build/BuildLineTable.tsx:815 +#: src/tables/build/BuildLineTable.tsx:822 #: src/tables/part/PartTable.tsx:522 #: src/tables/sales/SalesOrderLineItemTable.tsx:370 msgid "Order Parts" @@ -4349,9 +4377,9 @@ msgstr "" #: src/forms/BuildForms.tsx:333 #: src/forms/BuildForms.tsx:408 #: src/forms/BuildForms.tsx:685 -#: src/tables/build/BuildAllocatedStockTable.tsx:150 +#: src/tables/build/BuildAllocatedStockTable.tsx:147 #: src/tables/build/BuildOutputTable.tsx:582 -#: src/tables/part/PartTestResultTable.tsx:272 +#: src/tables/part/PartTestResultTable.tsx:280 msgid "Build Output" msgstr "Izlazna kompilacija" @@ -4362,22 +4390,22 @@ msgstr "" #: src/forms/BuildForms.tsx:336 #: src/forms/BuildForms.tsx:411 #: src/forms/BuildForms.tsx:475 -#: src/forms/PurchaseOrderForms.tsx:717 +#: src/forms/PurchaseOrderForms.tsx:769 #: src/forms/ReturnOrderForms.tsx:197 #: src/forms/ReturnOrderForms.tsx:244 #: src/forms/StockForms.tsx:712 #: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:87 -#: src/pages/build/BuildDetail.tsx:222 +#: src/pages/build/BuildDetail.tsx:223 #: src/pages/core/UserDetail.tsx:151 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:168 -#: src/pages/sales/ReturnOrderDetail.tsx:135 -#: src/pages/sales/SalesOrderDetail.tsx:125 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:169 +#: src/pages/sales/ReturnOrderDetail.tsx:136 +#: src/pages/sales/SalesOrderDetail.tsx:126 #: src/pages/stock/StockDetail.tsx:170 #: src/tables/Filter.tsx:274 #: src/tables/build/BuildOutputTable.tsx:404 #: src/tables/machine/MachineListTable.tsx:387 #: src/tables/part/PartPurchaseOrdersTable.tsx:38 -#: src/tables/part/PartTestResultTable.tsx:309 +#: src/tables/part/PartTestResultTable.tsx:317 #: src/tables/sales/ReturnOrderLineItemTable.tsx:138 #: src/tables/sales/ReturnOrderLineItemTable.tsx:176 #: src/tables/settings/CustomStateTable.tsx:79 @@ -4443,18 +4471,19 @@ msgid "Build outputs have been cancelled" msgstr "Izlazne kompilacije poništene" #: src/forms/BuildForms.tsx:631 -#: src/pages/build/BuildDetail.tsx:207 -#: src/pages/company/ManufacturerPartDetail.tsx:85 -#: src/pages/company/SupplierPartDetail.tsx:96 +#: src/pages/build/BuildDetail.tsx:208 +#: src/pages/company/ManufacturerPartDetail.tsx:84 +#: src/pages/company/SupplierPartDetail.tsx:97 #: src/pages/part/PartDetail.tsx:453 #: src/pages/stock/StockDetail.tsx:153 #: src/tables/bom/BomTable.tsx:134 #: src/tables/bom/UsedInTable.tsx:40 -#: src/tables/build/BuildAllocatedStockTable.tsx:108 -#: src/tables/build/BuildLineTable.tsx:336 +#: src/tables/build/BuildAllocatedStockTable.tsx:105 +#: src/tables/build/BuildLineTable.tsx:337 #: src/tables/build/BuildOrderTable.tsx:79 #: src/tables/part/PartSalesAllocationsTable.tsx:61 #: src/tables/part/RelatedPartTable.tsx:73 +#: src/tables/purchasing/ManufacturerPartParametricTable.tsx:21 #: src/tables/purchasing/ManufacturerPartTable.tsx:69 #: src/tables/purchasing/SupplierPartTable.tsx:70 #: src/tables/sales/SalesOrderAllocationTable.tsx:135 @@ -4466,47 +4495,47 @@ msgstr "Identifikacioni broj dela" #: src/forms/BuildForms.tsx:632 #: src/forms/BuildForms.tsx:796 #: src/forms/BuildForms.tsx:897 -#: src/forms/SalesOrderForms.tsx:306 -#: src/tables/build/BuildAllocatedStockTable.tsx:139 -#: src/tables/build/BuildLineTable.tsx:182 +#: src/forms/SalesOrderForms.tsx:385 +#: src/tables/build/BuildAllocatedStockTable.tsx:136 +#: src/tables/build/BuildLineTable.tsx:183 #: src/tables/sales/SalesOrderLineItemTable.tsx:342 #: src/tables/stock/StockItemTable.tsx:338 msgid "Allocated" msgstr "Alocirano" #: src/forms/BuildForms.tsx:667 -#: src/forms/SalesOrderForms.tsx:295 -#: src/pages/build/BuildDetail.tsx:108 -#: src/pages/build/BuildDetail.tsx:326 +#: src/forms/SalesOrderForms.tsx:374 +#: src/pages/build/BuildDetail.tsx:109 +#: src/pages/build/BuildDetail.tsx:327 msgid "Source Location" msgstr "Lokacija izvora" #: src/forms/BuildForms.tsx:668 -#: src/forms/SalesOrderForms.tsx:296 +#: src/forms/SalesOrderForms.tsx:375 msgid "Select the source location for the stock allocation" msgstr "Izaberi lokaciju izvora radi alokacije zaliha" #: src/forms/BuildForms.tsx:700 -#: src/forms/SalesOrderForms.tsx:336 -#: src/tables/build/BuildLineTable.tsx:574 -#: src/tables/build/BuildLineTable.tsx:731 -#: src/tables/build/BuildLineTable.tsx:830 +#: src/forms/SalesOrderForms.tsx:415 +#: src/tables/build/BuildLineTable.tsx:575 +#: src/tables/build/BuildLineTable.tsx:738 +#: src/tables/build/BuildLineTable.tsx:837 #: src/tables/sales/SalesOrderLineItemTable.tsx:380 #: src/tables/sales/SalesOrderLineItemTable.tsx:406 msgid "Allocate Stock" msgstr "Alociraj zalihe" #: src/forms/BuildForms.tsx:703 -#: src/forms/SalesOrderForms.tsx:341 +#: src/forms/SalesOrderForms.tsx:420 msgid "Stock items allocated" msgstr "Stavke zaliha alocirane" #: src/forms/BuildForms.tsx:816 #: src/forms/BuildForms.tsx:917 -#: src/tables/build/BuildAllocatedStockTable.tsx:240 -#: src/tables/build/BuildAllocatedStockTable.tsx:272 -#: src/tables/build/BuildLineTable.tsx:741 -#: src/tables/build/BuildLineTable.tsx:864 +#: src/tables/build/BuildAllocatedStockTable.tsx:243 +#: src/tables/build/BuildAllocatedStockTable.tsx:279 +#: src/tables/build/BuildLineTable.tsx:748 +#: src/tables/build/BuildLineTable.tsx:871 msgid "Consume Stock" msgstr "" @@ -4521,21 +4550,21 @@ msgstr "" #~ msgstr "Stock items consumed" #: src/forms/BuildForms.tsx:853 -#: src/tables/build/BuildLineTable.tsx:514 +#: src/tables/build/BuildLineTable.tsx:515 #: src/tables/part/PartBuildAllocationsTable.tsx:101 msgid "Fully consumed" msgstr "" #: src/forms/BuildForms.tsx:898 -#: src/tables/build/BuildLineTable.tsx:187 +#: src/tables/build/BuildLineTable.tsx:188 #: src/tables/stock/StockItemTable.tsx:367 msgid "Consumed" msgstr "Iskorišćeno" -#: src/forms/CommonForms.tsx:88 -#: src/forms/PurchaseOrderForms.tsx:125 +#: src/forms/CommonForms.tsx:92 +#: src/forms/PurchaseOrderForms.tsx:176 #: src/forms/ReturnOrderForms.tsx:138 -#: src/forms/SalesOrderForms.tsx:164 +#: src/forms/SalesOrderForms.tsx:185 msgid "Select project code for this line item" msgstr "" @@ -4543,16 +4572,16 @@ msgstr "" #~ msgid "Company updated" #~ msgstr "Company updated" -#: src/forms/PartForms.tsx:85 -#: src/forms/PartForms.tsx:207 -#: src/pages/part/CategoryDetail.tsx:124 +#: src/forms/PartForms.tsx:99 +#: src/forms/PartForms.tsx:228 +#: src/pages/part/CategoryDetail.tsx:127 #: src/pages/part/PartDetail.tsx:668 #: src/tables/part/PartCategoryTable.tsx:94 #: src/tables/part/PartTable.tsx:325 msgid "Subscribed" msgstr "Pretplaćeni" -#: src/forms/PartForms.tsx:86 +#: src/forms/PartForms.tsx:100 msgid "Subscribe to notifications for this part" msgstr "Pretplati se za obaveštenja o ovom delu" @@ -4564,156 +4593,156 @@ msgstr "Pretplati se za obaveštenja o ovom delu" #~ msgid "Part updated" #~ msgstr "Part updated" -#: src/forms/PartForms.tsx:193 +#: src/forms/PartForms.tsx:214 msgid "Parent part category" msgstr "Kategorija sa delovima veće kategorije" -#: src/forms/PartForms.tsx:208 +#: src/forms/PartForms.tsx:229 msgid "Subscribe to notifications for this category" msgstr "Pretplati se za obaveštenja za ovu kategoriju" -#: src/forms/PurchaseOrderForms.tsx:388 -msgid "Assign Batch Code and Serial Numbers" -msgstr "Dodeli kod serije i serijski broj" - -#: src/forms/PurchaseOrderForms.tsx:390 -msgid "Assign Batch Code" -msgstr "Dodeli kod serije" - -#: src/forms/PurchaseOrderForms.tsx:410 -msgid "Choose Location" -msgstr "Izaberi lokaciju" - -#: src/forms/PurchaseOrderForms.tsx:418 -msgid "Item Destination selected" -msgstr "Destinacije stavke odabrana" - #: src/forms/PurchaseOrderForms.tsx:421 #~ msgid "Assign Batch Code{0}" #~ msgstr "Assign Batch Code{0}" -#: src/forms/PurchaseOrderForms.tsx:428 -msgid "Part category default location selected" -msgstr "Podrazmevana lokacija kategorije dela izabrana" +#: src/forms/PurchaseOrderForms.tsx:440 +msgid "Assign Batch Code and Serial Numbers" +msgstr "Dodeli kod serije i serijski broj" -#: src/forms/PurchaseOrderForms.tsx:438 -msgid "Received stock location selected" -msgstr "Primljena lokacija zaliha selektovana" +#: src/forms/PurchaseOrderForms.tsx:442 +msgid "Assign Batch Code" +msgstr "Dodeli kod serije" #: src/forms/PurchaseOrderForms.tsx:444 #: src/forms/StockForms.tsx:428 #~ msgid "Remove item from list" #~ msgstr "Remove item from list" -#: src/forms/PurchaseOrderForms.tsx:446 +#: src/forms/PurchaseOrderForms.tsx:462 +msgid "Choose Location" +msgstr "Izaberi lokaciju" + +#: src/forms/PurchaseOrderForms.tsx:470 +msgid "Item Destination selected" +msgstr "Destinacije stavke odabrana" + +#: src/forms/PurchaseOrderForms.tsx:480 +msgid "Part category default location selected" +msgstr "Podrazmevana lokacija kategorije dela izabrana" + +#: src/forms/PurchaseOrderForms.tsx:490 +msgid "Received stock location selected" +msgstr "Primljena lokacija zaliha selektovana" + +#: src/forms/PurchaseOrderForms.tsx:498 msgid "Default location selected" msgstr "Podrazumevana lokacija izabrana" -#: src/forms/PurchaseOrderForms.tsx:507 +#: src/forms/PurchaseOrderForms.tsx:559 msgid "Set Location" msgstr "Podesi lokaciju" -#: src/forms/PurchaseOrderForms.tsx:524 -msgid "Set Expiry Date" -msgstr "" - -#: src/forms/PurchaseOrderForms.tsx:532 -#: src/forms/StockForms.tsx:693 -msgid "Adjust Packaging" -msgstr "Doradi pakovanje" - -#: src/forms/PurchaseOrderForms.tsx:540 -#: src/forms/StockForms.tsx:684 -#: src/hooks/UseStockAdjustActions.tsx:148 -msgid "Change Status" -msgstr "Promeni status" - -#: src/forms/PurchaseOrderForms.tsx:546 -msgid "Add Note" -msgstr "Dodaj belešku" - #: src/forms/PurchaseOrderForms.tsx:566 #~ msgid "Serial numbers" #~ msgstr "Serial numbers" +#: src/forms/PurchaseOrderForms.tsx:576 +msgid "Set Expiry Date" +msgstr "" + #: src/forms/PurchaseOrderForms.tsx:582 #~ msgid "Store at line item destination" #~ msgstr "Store at line item destination" -#: src/forms/PurchaseOrderForms.tsx:610 -msgid "Store at default location" -msgstr "Prodavnica na podrazumevanoj lokaciji" +#: src/forms/PurchaseOrderForms.tsx:584 +#: src/forms/StockForms.tsx:693 +msgid "Adjust Packaging" +msgstr "Doradi pakovanje" -#: src/forms/PurchaseOrderForms.tsx:625 -msgid "Store at line item destination " -msgstr "" +#: src/forms/PurchaseOrderForms.tsx:592 +#: src/forms/StockForms.tsx:684 +#: src/hooks/UseStockAdjustActions.tsx:148 +msgid "Change Status" +msgstr "Promeni status" -#: src/forms/PurchaseOrderForms.tsx:637 -msgid "Store with already received stock" -msgstr "Prodavnica sa već primeljenom zalihom" +#: src/forms/PurchaseOrderForms.tsx:598 +msgid "Add Note" +msgstr "Dodaj belešku" #: src/forms/PurchaseOrderForms.tsx:658 #~ msgid "Receive line items" #~ msgstr "Receive line items" -#: src/forms/PurchaseOrderForms.tsx:661 -#: src/pages/build/BuildDetail.tsx:340 +#: src/forms/PurchaseOrderForms.tsx:662 +msgid "Store at default location" +msgstr "Prodavnica na podrazumevanoj lokaciji" + +#: src/forms/PurchaseOrderForms.tsx:677 +msgid "Store at line item destination " +msgstr "" + +#: src/forms/PurchaseOrderForms.tsx:689 +msgid "Store with already received stock" +msgstr "Prodavnica sa već primeljenom zalihom" + +#: src/forms/PurchaseOrderForms.tsx:713 +#: src/pages/build/BuildDetail.tsx:341 #: src/pages/stock/StockDetail.tsx:280 #: src/pages/stock/StockDetail.tsx:952 #: src/tables/Filter.tsx:83 -#: src/tables/build/BuildAllocatedStockTable.tsx:128 +#: src/tables/build/BuildAllocatedStockTable.tsx:125 #: src/tables/build/BuildOutputTable.tsx:112 -#: src/tables/part/PartTestResultTable.tsx:260 -#: src/tables/part/PartTestResultTable.tsx:281 +#: src/tables/part/PartTestResultTable.tsx:268 +#: src/tables/part/PartTestResultTable.tsx:289 #: src/tables/sales/SalesOrderAllocationTable.tsx:149 msgid "Batch Code" msgstr "Kod serije" -#: src/forms/PurchaseOrderForms.tsx:662 +#: src/forms/PurchaseOrderForms.tsx:714 msgid "Enter batch code for received items" msgstr "Unesi kod serije za primljene stavke" -#: src/forms/PurchaseOrderForms.tsx:675 +#: src/forms/PurchaseOrderForms.tsx:727 #: src/forms/StockForms.tsx:218 msgid "Serial Numbers" msgstr "Serijski brojevi" -#: src/forms/PurchaseOrderForms.tsx:676 +#: src/forms/PurchaseOrderForms.tsx:728 msgid "Enter serial numbers for received items" msgstr "Unesi serijske brojeve za primljene stavke" -#: src/forms/PurchaseOrderForms.tsx:690 +#: src/forms/PurchaseOrderForms.tsx:742 #: src/pages/stock/StockDetail.tsx:382 #: src/tables/stock/StockItemTable.tsx:294 msgid "Expiry Date" msgstr "Datum isteka" -#: src/forms/PurchaseOrderForms.tsx:691 +#: src/forms/PurchaseOrderForms.tsx:743 msgid "Enter an expiry date for received items" msgstr "" -#: src/forms/PurchaseOrderForms.tsx:703 +#: src/forms/PurchaseOrderForms.tsx:755 #: src/forms/StockForms.tsx:728 -#: src/pages/company/SupplierPartDetail.tsx:172 -#: src/pages/company/SupplierPartDetail.tsx:236 +#: src/pages/company/SupplierPartDetail.tsx:173 +#: src/pages/company/SupplierPartDetail.tsx:237 #: src/pages/stock/StockDetail.tsx:419 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:227 msgid "Packaging" msgstr "Pakovanje" -#: src/forms/PurchaseOrderForms.tsx:727 -#: src/pages/company/SupplierPartDetail.tsx:120 +#: src/forms/PurchaseOrderForms.tsx:779 +#: src/pages/company/SupplierPartDetail.tsx:121 #: src/tables/ColumnRenderers.tsx:332 msgid "Note" msgstr "Beleška" -#: src/forms/PurchaseOrderForms.tsx:799 -#: src/pages/company/SupplierPartDetail.tsx:138 +#: src/forms/PurchaseOrderForms.tsx:851 +#: src/pages/company/SupplierPartDetail.tsx:139 #: src/tables/purchasing/SupplierPriceBreakTable.tsx:49 msgid "SKU" msgstr "Jedinica za praćenje zaliha" -#: src/forms/PurchaseOrderForms.tsx:800 +#: src/forms/PurchaseOrderForms.tsx:852 #: src/tables/part/PartPurchaseOrdersTable.tsx:127 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:213 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:283 @@ -4721,11 +4750,11 @@ msgstr "Jedinica za praćenje zaliha" msgid "Received" msgstr "Primljeno" -#: src/forms/PurchaseOrderForms.tsx:817 +#: src/forms/PurchaseOrderForms.tsx:869 msgid "Receive Line Items" msgstr "Primi linijske stavke" -#: src/forms/PurchaseOrderForms.tsx:823 +#: src/forms/PurchaseOrderForms.tsx:875 msgid "Items received" msgstr "" @@ -4737,7 +4766,35 @@ msgstr "Primi stavke" msgid "Item received into stock" msgstr "Stavka primljena u zalihe" -#: src/forms/SalesOrderForms.tsx:401 +#: src/forms/SalesOrderForms.tsx:208 +#: src/forms/SalesOrderForms.tsx:210 +#: src/tables/sales/SalesOrderShipmentTable.tsx:215 +msgid "Check Shipment" +msgstr "" + +#: src/forms/SalesOrderForms.tsx:211 +msgid "Marking the shipment as checked indicates that you have verified that all items included in this shipment are correct" +msgstr "" + +#: src/forms/SalesOrderForms.tsx:221 +msgid "Shipment marked as checked" +msgstr "" + +#: src/forms/SalesOrderForms.tsx:236 +#: src/forms/SalesOrderForms.tsx:238 +#: src/tables/sales/SalesOrderShipmentTable.tsx:228 +msgid "Uncheck Shipment" +msgstr "" + +#: src/forms/SalesOrderForms.tsx:239 +msgid "Marking the shipment as unchecked indicates that the shipment requires further verification" +msgstr "" + +#: src/forms/SalesOrderForms.tsx:249 +msgid "Shipment marked as unchecked" +msgstr "" + +#: src/forms/SalesOrderForms.tsx:480 msgid "Leave blank to use the order address" msgstr "" @@ -4792,150 +4849,150 @@ msgstr "Premesti" msgid "Return" msgstr "Vrati" -#: src/forms/StockForms.tsx:963 +#: src/forms/StockForms.tsx:979 #: src/pages/Index/Scan.tsx:182 msgid "Count" msgstr "Računaj" -#: src/forms/StockForms.tsx:1246 +#: src/forms/StockForms.tsx:1262 #: src/hooks/UseStockAdjustActions.tsx:108 msgid "Add Stock" msgstr "Dodaj zalihu" -#: src/forms/StockForms.tsx:1247 +#: src/forms/StockForms.tsx:1263 msgid "Stock added" msgstr "Zaliha dodata" -#: src/forms/StockForms.tsx:1250 +#: src/forms/StockForms.tsx:1266 msgid "Increase the quantity of the selected stock items by a given amount." msgstr "" -#: src/forms/StockForms.tsx:1261 +#: src/forms/StockForms.tsx:1277 #: src/hooks/UseStockAdjustActions.tsx:118 msgid "Remove Stock" msgstr "Ukloni zalihu" -#: src/forms/StockForms.tsx:1262 +#: src/forms/StockForms.tsx:1278 msgid "Stock removed" msgstr "Zaliha uklonjena" -#: src/forms/StockForms.tsx:1265 +#: src/forms/StockForms.tsx:1281 msgid "Decrease the quantity of the selected stock items by a given amount." msgstr "" -#: src/forms/StockForms.tsx:1276 +#: src/forms/StockForms.tsx:1292 #: src/hooks/UseStockAdjustActions.tsx:128 msgid "Transfer Stock" msgstr "Prebaci zalihu" -#: src/forms/StockForms.tsx:1277 +#: src/forms/StockForms.tsx:1293 msgid "Stock transferred" msgstr "Zaliha prebačena" -#: src/forms/StockForms.tsx:1280 +#: src/forms/StockForms.tsx:1296 msgid "Transfer selected items to the specified location." msgstr "" -#: src/forms/StockForms.tsx:1291 +#: src/forms/StockForms.tsx:1307 #: src/hooks/UseStockAdjustActions.tsx:168 msgid "Return Stock" msgstr "" -#: src/forms/StockForms.tsx:1292 +#: src/forms/StockForms.tsx:1308 msgid "Stock returned" msgstr "" -#: src/forms/StockForms.tsx:1295 +#: src/forms/StockForms.tsx:1311 msgid "Return selected items into stock, to the specified location." msgstr "" -#: src/forms/StockForms.tsx:1306 +#: src/forms/StockForms.tsx:1322 #: src/hooks/UseStockAdjustActions.tsx:98 msgid "Count Stock" msgstr "Prebroj zalihe" -#: src/forms/StockForms.tsx:1307 +#: src/forms/StockForms.tsx:1323 msgid "Stock counted" msgstr "Zaliha prebrojena" -#: src/forms/StockForms.tsx:1310 +#: src/forms/StockForms.tsx:1326 msgid "Count the selected stock items, and adjust the quantity accordingly." msgstr "" -#: src/forms/StockForms.tsx:1321 +#: src/forms/StockForms.tsx:1337 msgid "Change Stock Status" msgstr "Promeni status zalihe" -#: src/forms/StockForms.tsx:1322 +#: src/forms/StockForms.tsx:1338 msgid "Stock status changed" msgstr "Status zalihe izmenjen" -#: src/forms/StockForms.tsx:1325 +#: src/forms/StockForms.tsx:1341 msgid "Change the status of the selected stock items." msgstr "" -#: src/forms/StockForms.tsx:1336 +#: src/forms/StockForms.tsx:1352 #: src/hooks/UseStockAdjustActions.tsx:138 msgid "Merge Stock" msgstr "Spoji zalihe" -#: src/forms/StockForms.tsx:1337 +#: src/forms/StockForms.tsx:1353 msgid "Stock merged" msgstr "Zalihe spojene" -#: src/forms/StockForms.tsx:1339 +#: src/forms/StockForms.tsx:1355 msgid "Merge Stock Items" msgstr "" -#: src/forms/StockForms.tsx:1341 +#: src/forms/StockForms.tsx:1357 msgid "Merge operation cannot be reversed" msgstr "" -#: src/forms/StockForms.tsx:1342 +#: src/forms/StockForms.tsx:1358 msgid "Tracking information may be lost when merging items" msgstr "" -#: src/forms/StockForms.tsx:1343 +#: src/forms/StockForms.tsx:1359 msgid "Supplier information may be lost when merging items" msgstr "" -#: src/forms/StockForms.tsx:1361 +#: src/forms/StockForms.tsx:1377 msgid "Assign Stock to Customer" msgstr "Dodeli zalihu mušteriji" -#: src/forms/StockForms.tsx:1362 +#: src/forms/StockForms.tsx:1378 msgid "Stock assigned to customer" msgstr "Zaliha dodeljena mušteriji" -#: src/forms/StockForms.tsx:1372 +#: src/forms/StockForms.tsx:1388 msgid "Delete Stock Items" msgstr "Izbriši stavku zalihe" -#: src/forms/StockForms.tsx:1373 +#: src/forms/StockForms.tsx:1389 msgid "Stock deleted" msgstr "Zaliha izbrisana" -#: src/forms/StockForms.tsx:1376 +#: src/forms/StockForms.tsx:1392 msgid "This operation will permanently delete the selected stock items." msgstr "" -#: src/forms/StockForms.tsx:1385 +#: src/forms/StockForms.tsx:1401 msgid "Parent stock location" msgstr "Lokacija roditeljske zalihe" -#: src/forms/StockForms.tsx:1512 +#: src/forms/StockForms.tsx:1528 msgid "Find Serial Number" msgstr "" -#: src/forms/StockForms.tsx:1523 +#: src/forms/StockForms.tsx:1539 msgid "No matching items" msgstr "" -#: src/forms/StockForms.tsx:1529 +#: src/forms/StockForms.tsx:1545 msgid "Multiple matching items" msgstr "" -#: src/forms/StockForms.tsx:1538 +#: src/forms/StockForms.tsx:1554 msgid "Invalid response from server" msgstr "" @@ -4953,7 +5010,6 @@ msgstr "Lista unosa koje možete izabrati" #: src/tables/FilterSelectDrawer.tsx:137 #: src/tables/FilterSelectDrawer.tsx:149 #: src/tables/part/PartTestResultTable.tsx:206 -#: src/tables/purchasing/ManufacturerPartParameterTable.tsx:42 #: src/tables/stock/StockItemTestResultTable.tsx:207 msgid "Value" msgstr "Vrednost" @@ -5244,7 +5300,7 @@ msgid "Delete selected stock items" msgstr "" #: src/hooks/UseStockAdjustActions.tsx:205 -#: src/pages/part/PartDetail.tsx:1137 +#: src/pages/part/PartDetail.tsx:1158 msgid "Stock Actions" msgstr "Akcije zaliha" @@ -5932,6 +5988,9 @@ msgstr "" #: src/pages/Index/Settings/AccountSettings/MFASettings.tsx:310 #: src/pages/Index/Settings/AccountSettings/MFASettings.tsx:401 +#: src/tables/build/BuildAllocatedStockTable.tsx:181 +#: src/tables/build/BuildLineTable.tsx:668 +#: src/tables/sales/SalesOrderAllocationTable.tsx:220 msgid "Confirm Removal" msgstr "" @@ -6394,30 +6453,34 @@ msgid "Email Messages" msgstr "" #: src/pages/Index/Settings/AdminCenter/HomePanel.tsx:22 -msgid "Active Alerts" -msgstr "" +#~ msgid "Active Alerts" +#~ msgstr "Active Alerts" #: src/pages/Index/Settings/AdminCenter/HomePanel.tsx:27 -msgid "Inactive Alerts" +#~ msgid "Inactive Alerts" +#~ msgstr "Inactive Alerts" + +#: src/pages/Index/Settings/AdminCenter/HomePanel.tsx:36 +msgid "System Status" msgstr "" -#: src/pages/Index/Settings/AdminCenter/HomePanel.tsx:38 +#: src/pages/Index/Settings/AdminCenter/HomePanel.tsx:47 msgid "Admin Center Information" msgstr "" -#: src/pages/Index/Settings/AdminCenter/HomePanel.tsx:44 +#: src/pages/Index/Settings/AdminCenter/HomePanel.tsx:53 msgid "The home panel (and the whole Admin Center) is a new feature starting with the new UI and was previously (before 1.0) not available." msgstr "" -#: src/pages/Index/Settings/AdminCenter/HomePanel.tsx:51 +#: src/pages/Index/Settings/AdminCenter/HomePanel.tsx:60 msgid "The admin center provides a centralized location for all administration functionality and is meant to replace all interaction with the (django) backend admin interface." msgstr "" -#: src/pages/Index/Settings/AdminCenter/HomePanel.tsx:58 +#: src/pages/Index/Settings/AdminCenter/HomePanel.tsx:67 msgid "Please open feature requests (after checking the tracker) for any existing backend admin functionality you are missing in this UI. The backend admin interface should be used carefully and seldom." msgstr "" -#: src/pages/Index/Settings/AdminCenter/HomePanel.tsx:76 +#: src/pages/Index/Settings/AdminCenter/HomePanel.tsx:85 msgid "Quick Actions" msgstr "" @@ -6476,11 +6539,11 @@ msgstr "Posebne jedinice" #: src/pages/Index/Settings/AdminCenter/Index.tsx:195 #: src/pages/part/CategoryDetail.tsx:313 -msgid "Part Parameters" -msgstr "Parametri dela" +#~ msgid "Part Parameters" +#~ msgstr "Part Parameters" #: src/pages/Index/Settings/AdminCenter/Index.tsx:202 -#: src/pages/part/CategoryDetail.tsx:306 +#: src/pages/part/CategoryDetail.tsx:329 msgid "Category Parameters" msgstr "Kategorije parametara" @@ -6494,7 +6557,7 @@ msgstr "Tipovi lokacija" #: src/pages/Index/Settings/AdminCenter/Index.tsx:235 #: src/pages/Index/Settings/AdminCenter/MachineManagementPanel.tsx:52 -#: src/tables/machine/MachineTypeTable.tsx:325 +#: src/tables/machine/MachineTypeTable.tsx:323 msgid "Machines" msgstr "Mašine" @@ -6507,8 +6570,8 @@ msgid "Data Management" msgstr "" #: src/pages/Index/Settings/AdminCenter/Index.tsx:270 -#: src/pages/Index/Settings/SystemSettings.tsx:175 -#: src/pages/Index/Settings/UserSettings.tsx:118 +#: src/pages/Index/Settings/SystemSettings.tsx:176 +#: src/pages/Index/Settings/UserSettings.tsx:119 msgid "Reporting" msgstr "Izveštavanje" @@ -6709,11 +6772,11 @@ msgstr "" msgid "The settings below are specific to each available plugin" msgstr "" -#: src/pages/Index/Settings/SystemSettings.tsx:77 +#: src/pages/Index/Settings/SystemSettings.tsx:78 msgid "Authentication" msgstr "" -#: src/pages/Index/Settings/SystemSettings.tsx:103 +#: src/pages/Index/Settings/SystemSettings.tsx:104 msgid "Barcodes" msgstr "Barkodovi" @@ -6725,12 +6788,12 @@ msgstr "Barkodovi" #~ msgid "This panel is a placeholder." #~ msgstr "This panel is a placeholder." -#: src/pages/Index/Settings/SystemSettings.tsx:127 -#: src/pages/Index/Settings/UserSettings.tsx:112 +#: src/pages/Index/Settings/SystemSettings.tsx:128 +#: src/pages/Index/Settings/UserSettings.tsx:113 msgid "The settings below are specific to each available notification method" msgstr "" -#: src/pages/Index/Settings/SystemSettings.tsx:133 +#: src/pages/Index/Settings/SystemSettings.tsx:134 msgid "Pricing" msgstr "Cene" @@ -6738,7 +6801,7 @@ msgstr "Cene" #~ msgid "Exchange Rates" #~ msgstr "Exchange Rates" -#: src/pages/Index/Settings/SystemSettings.tsx:169 +#: src/pages/Index/Settings/SystemSettings.tsx:170 msgid "Labels" msgstr "Oznake" @@ -6790,15 +6853,15 @@ msgstr "Označi kao nepročitano" #~ msgid "Delete notifications" #~ msgstr "Delete notifications" -#: src/pages/build/BuildDetail.tsx:69 +#: src/pages/build/BuildDetail.tsx:70 msgid "No Required Items" msgstr "" -#: src/pages/build/BuildDetail.tsx:71 +#: src/pages/build/BuildDetail.tsx:72 msgid "This build order does not have any required items." msgstr "" -#: src/pages/build/BuildDetail.tsx:72 +#: src/pages/build/BuildDetail.tsx:73 msgid "The assembled part may not have a Bill of Materials (BOM) defined, or the BOM is empty." msgstr "" @@ -6826,7 +6889,7 @@ msgstr "" #~ msgid "Build Order updated" #~ msgstr "Build Order updated" -#: src/pages/build/BuildDetail.tsx:215 +#: src/pages/build/BuildDetail.tsx:216 #: src/pages/part/PartDetail.tsx:480 #: src/pages/stock/StockDetail.tsx:161 #: src/tables/bom/UsedInTable.tsx:44 @@ -6843,10 +6906,10 @@ msgstr "Revizija" #~ msgid "Duplicate build order" #~ msgstr "Duplicate build order" -#: src/pages/build/BuildDetail.tsx:228 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:174 -#: src/pages/sales/ReturnOrderDetail.tsx:141 -#: src/pages/sales/SalesOrderDetail.tsx:131 +#: src/pages/build/BuildDetail.tsx:229 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:175 +#: src/pages/sales/ReturnOrderDetail.tsx:142 +#: src/pages/sales/SalesOrderDetail.tsx:132 #: src/pages/stock/StockDetail.tsx:176 msgid "Custom Status" msgstr "Prilagođeni status" @@ -6855,9 +6918,9 @@ msgstr "Prilagođeni status" #~ msgid "Delete build order" #~ msgstr "Delete build order" -#: src/pages/build/BuildDetail.tsx:237 -#: src/pages/build/BuildDetail.tsx:723 -#: src/pages/build/BuildIndex.tsx:28 +#: src/pages/build/BuildDetail.tsx:238 +#: src/pages/build/BuildDetail.tsx:728 +#: src/pages/build/BuildIndex.tsx:34 #: src/pages/stock/LocationDetail.tsx:140 #: src/tables/build/BuildOrderTable.tsx:123 #: src/tables/build/BuildOrderTable.tsx:183 @@ -6865,57 +6928,57 @@ msgstr "Prilagođeni status" msgid "External" msgstr "Spoljno" -#: src/pages/build/BuildDetail.tsx:244 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:141 -#: src/pages/sales/ReturnOrderDetail.tsx:108 -#: src/pages/sales/SalesOrderDetail.tsx:98 +#: src/pages/build/BuildDetail.tsx:245 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:142 +#: src/pages/sales/ReturnOrderDetail.tsx:109 +#: src/pages/sales/SalesOrderDetail.tsx:99 #: src/tables/ColumnRenderers.tsx:321 -#: src/tables/build/BuildAllocatedStockTable.tsx:115 -#: src/tables/build/BuildLineTable.tsx:352 +#: src/tables/build/BuildAllocatedStockTable.tsx:112 +#: src/tables/build/BuildLineTable.tsx:353 msgid "Reference" msgstr "Referenca" -#: src/pages/build/BuildDetail.tsx:258 +#: src/pages/build/BuildDetail.tsx:259 msgid "Parent Build" msgstr "Nadređeni nalog" -#: src/pages/build/BuildDetail.tsx:269 +#: src/pages/build/BuildDetail.tsx:270 msgid "Build Quantity" msgstr "Količina naloga" -#: src/pages/build/BuildDetail.tsx:275 +#: src/pages/build/BuildDetail.tsx:276 #: src/pages/part/PartDetail.tsx:598 #: src/tables/bom/BomTable.tsx:365 #: src/tables/bom/BomTable.tsx:407 msgid "Can Build" msgstr "Može da se sastavi" -#: src/pages/build/BuildDetail.tsx:284 -#: src/pages/build/BuildDetail.tsx:474 +#: src/pages/build/BuildDetail.tsx:285 +#: src/pages/build/BuildDetail.tsx:475 msgid "Completed Outputs" msgstr "Završeni nalozi" -#: src/pages/build/BuildDetail.tsx:301 +#: src/pages/build/BuildDetail.tsx:302 #: src/tables/Filter.tsx:381 #: src/tables/build/BuildOrderTable.tsx:143 msgid "Issued By" msgstr "Izdat od strane" -#: src/pages/build/BuildDetail.tsx:309 +#: src/pages/build/BuildDetail.tsx:310 #: src/pages/part/PartDetail.tsx:691 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:261 -#: src/pages/sales/ReturnOrderDetail.tsx:239 -#: src/pages/sales/SalesOrderDetail.tsx:232 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:262 +#: src/pages/sales/ReturnOrderDetail.tsx:240 +#: src/pages/sales/SalesOrderDetail.tsx:233 #: src/tables/ColumnRenderers.tsx:464 #: src/tables/Filter.tsx:319 msgid "Responsible" msgstr "Odgovoran" -#: src/pages/build/BuildDetail.tsx:327 +#: src/pages/build/BuildDetail.tsx:328 msgid "Any location" msgstr "Bilo koja lokacija" -#: src/pages/build/BuildDetail.tsx:334 +#: src/pages/build/BuildDetail.tsx:335 msgid "Destination Location" msgstr "Destinaciona lokacija" @@ -6924,24 +6987,24 @@ msgstr "Destinaciona lokacija" #~ msgid "Test Statistics" #~ msgstr "Test Statistics" -#: src/pages/build/BuildDetail.tsx:350 +#: src/pages/build/BuildDetail.tsx:351 #: src/tables/settings/ApiTokenTable.tsx:97 #: src/tables/settings/PendingTasksTable.tsx:41 msgid "Created" msgstr "Kreirano" -#: src/pages/build/BuildDetail.tsx:358 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:286 -#: src/pages/sales/ReturnOrderDetail.tsx:265 -#: src/pages/sales/SalesOrderDetail.tsx:257 +#: src/pages/build/BuildDetail.tsx:359 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:287 +#: src/pages/sales/ReturnOrderDetail.tsx:266 +#: src/pages/sales/SalesOrderDetail.tsx:258 #: src/tables/ColumnRenderers.tsx:486 msgid "Start Date" msgstr "" -#: src/pages/build/BuildDetail.tsx:366 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:294 -#: src/pages/sales/ReturnOrderDetail.tsx:273 -#: src/pages/sales/SalesOrderDetail.tsx:265 +#: src/pages/build/BuildDetail.tsx:367 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:295 +#: src/pages/sales/ReturnOrderDetail.tsx:274 +#: src/pages/sales/SalesOrderDetail.tsx:266 #: src/tables/ColumnRenderers.tsx:494 #: src/tables/part/PartPurchaseOrdersTable.tsx:101 #: src/tables/sales/ReturnOrderLineItemTable.tsx:154 @@ -6954,185 +7017,185 @@ msgstr "Ciljani datum" #~ msgstr "Reporting Actions" #: src/pages/build/BuildDetail.tsx:374 +#~ msgid "Print build report" +#~ msgstr "Print build report" + +#: src/pages/build/BuildDetail.tsx:375 #: src/tables/build/BuildOrderTable.tsx:93 #: src/tables/sales/SalesOrderLineItemTable.tsx:347 msgid "Completed" msgstr "Završeno" -#: src/pages/build/BuildDetail.tsx:374 -#~ msgid "Print build report" -#~ msgstr "Print build report" - -#: src/pages/build/BuildDetail.tsx:410 +#: src/pages/build/BuildDetail.tsx:411 msgid "Build Details" msgstr "Detalji naloga" -#: src/pages/build/BuildDetail.tsx:416 +#: src/pages/build/BuildDetail.tsx:417 msgid "Required Parts" msgstr "" -#: src/pages/build/BuildDetail.tsx:428 -#: src/pages/sales/SalesOrderDetail.tsx:407 -#: src/pages/sales/SalesOrderShipmentDetail.tsx:261 +#: src/pages/build/BuildDetail.tsx:429 +#: src/pages/sales/SalesOrderDetail.tsx:408 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:259 #: src/tables/part/PartSalesAllocationsTable.tsx:73 msgid "Allocated Stock" msgstr "Alocirano zaliha" -#: src/pages/build/BuildDetail.tsx:444 +#: src/pages/build/BuildDetail.tsx:445 msgid "Consumed Stock" msgstr "Potrošeno zaliha" -#: src/pages/build/BuildDetail.tsx:461 +#: src/pages/build/BuildDetail.tsx:462 msgid "Incomplete Outputs" msgstr "Nepotpuni nalozi" -#: src/pages/build/BuildDetail.tsx:489 +#: src/pages/build/BuildDetail.tsx:490 msgid "External Orders" msgstr "" -#: src/pages/build/BuildDetail.tsx:503 +#: src/pages/build/BuildDetail.tsx:504 msgid "Child Build Orders" msgstr "Pod-nalozi za izradu" -#: src/pages/build/BuildDetail.tsx:513 -#: src/pages/part/PartDetail.tsx:937 +#: src/pages/build/BuildDetail.tsx:514 +#: src/pages/part/PartDetail.tsx:926 #: src/pages/stock/StockDetail.tsx:587 #: src/tables/build/BuildOutputTable.tsx:654 #: src/tables/stock/StockItemTestResultTable.tsx:173 msgid "Test Results" msgstr "Rezultati testa" -#: src/pages/build/BuildDetail.tsx:550 +#: src/pages/build/BuildDetail.tsx:555 msgid "Edit Build Order" msgstr "Izmeni nalog za izradu" -#: src/pages/build/BuildDetail.tsx:572 +#: src/pages/build/BuildDetail.tsx:577 #: src/tables/build/BuildOrderTable.tsx:207 #: src/tables/build/BuildOrderTable.tsx:223 msgid "Add Build Order" msgstr "Dodaj nalog za izradu" -#: src/pages/build/BuildDetail.tsx:582 +#: src/pages/build/BuildDetail.tsx:587 msgid "Cancel Build Order" msgstr "Otkaži nalog za izradu" -#: src/pages/build/BuildDetail.tsx:584 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:416 -#: src/pages/sales/ReturnOrderDetail.tsx:427 -#: src/pages/sales/SalesOrderDetail.tsx:454 +#: src/pages/build/BuildDetail.tsx:589 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:421 +#: src/pages/sales/ReturnOrderDetail.tsx:432 +#: src/pages/sales/SalesOrderDetail.tsx:459 msgid "Order cancelled" msgstr "Nalog otkazan" -#: src/pages/build/BuildDetail.tsx:585 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:415 -#: src/pages/sales/ReturnOrderDetail.tsx:426 -#: src/pages/sales/SalesOrderDetail.tsx:453 +#: src/pages/build/BuildDetail.tsx:590 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:420 +#: src/pages/sales/ReturnOrderDetail.tsx:431 +#: src/pages/sales/SalesOrderDetail.tsx:458 msgid "Cancel this order" msgstr "Otkaži ovaj nalog" -#: src/pages/build/BuildDetail.tsx:594 +#: src/pages/build/BuildDetail.tsx:599 msgid "Hold Build Order" msgstr "Zadrži nalog za izradu" -#: src/pages/build/BuildDetail.tsx:596 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:423 -#: src/pages/sales/ReturnOrderDetail.tsx:434 -#: src/pages/sales/SalesOrderDetail.tsx:461 +#: src/pages/build/BuildDetail.tsx:601 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:428 +#: src/pages/sales/ReturnOrderDetail.tsx:439 +#: src/pages/sales/SalesOrderDetail.tsx:466 msgid "Place this order on hold" msgstr "Stavi ovaj nalog na čekanje" -#: src/pages/build/BuildDetail.tsx:597 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:424 -#: src/pages/sales/ReturnOrderDetail.tsx:435 -#: src/pages/sales/SalesOrderDetail.tsx:462 +#: src/pages/build/BuildDetail.tsx:602 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:429 +#: src/pages/sales/ReturnOrderDetail.tsx:440 +#: src/pages/sales/SalesOrderDetail.tsx:467 msgid "Order placed on hold" msgstr "Nalog stavljen na čekanje" -#: src/pages/build/BuildDetail.tsx:602 +#: src/pages/build/BuildDetail.tsx:607 msgid "Issue Build Order" msgstr "Izdaj nalog za izradu" -#: src/pages/build/BuildDetail.tsx:604 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:407 -#: src/pages/sales/ReturnOrderDetail.tsx:418 -#: src/pages/sales/SalesOrderDetail.tsx:445 +#: src/pages/build/BuildDetail.tsx:609 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:412 +#: src/pages/sales/ReturnOrderDetail.tsx:423 +#: src/pages/sales/SalesOrderDetail.tsx:450 msgid "Issue this order" msgstr "Izdaj ovaj nalog" -#: src/pages/build/BuildDetail.tsx:605 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:408 -#: src/pages/sales/ReturnOrderDetail.tsx:419 -#: src/pages/sales/SalesOrderDetail.tsx:446 +#: src/pages/build/BuildDetail.tsx:610 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:413 +#: src/pages/sales/ReturnOrderDetail.tsx:424 +#: src/pages/sales/SalesOrderDetail.tsx:451 msgid "Order issued" msgstr "Nalog izdat" -#: src/pages/build/BuildDetail.tsx:624 +#: src/pages/build/BuildDetail.tsx:629 msgid "Complete Build Order" msgstr "Završi nalog za izradu" -#: src/pages/build/BuildDetail.tsx:630 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:436 -#: src/pages/sales/ReturnOrderDetail.tsx:442 -#: src/pages/sales/SalesOrderDetail.tsx:480 +#: src/pages/build/BuildDetail.tsx:635 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:441 +#: src/pages/sales/ReturnOrderDetail.tsx:447 +#: src/pages/sales/SalesOrderDetail.tsx:485 msgid "Mark this order as complete" msgstr "Označi ovaj nalog kao završen" -#: src/pages/build/BuildDetail.tsx:633 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:430 -#: src/pages/sales/ReturnOrderDetail.tsx:443 -#: src/pages/sales/SalesOrderDetail.tsx:481 +#: src/pages/build/BuildDetail.tsx:638 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:435 +#: src/pages/sales/ReturnOrderDetail.tsx:448 +#: src/pages/sales/SalesOrderDetail.tsx:486 msgid "Order completed" msgstr "Nalog završen" -#: src/pages/build/BuildDetail.tsx:660 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:459 -#: src/pages/sales/ReturnOrderDetail.tsx:470 -#: src/pages/sales/SalesOrderDetail.tsx:516 +#: src/pages/build/BuildDetail.tsx:665 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:464 +#: src/pages/sales/ReturnOrderDetail.tsx:475 +#: src/pages/sales/SalesOrderDetail.tsx:521 msgid "Issue Order" msgstr "Izdaj nalog" -#: src/pages/build/BuildDetail.tsx:667 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:466 -#: src/pages/sales/ReturnOrderDetail.tsx:477 -#: src/pages/sales/SalesOrderDetail.tsx:530 +#: src/pages/build/BuildDetail.tsx:672 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:471 +#: src/pages/sales/ReturnOrderDetail.tsx:482 +#: src/pages/sales/SalesOrderDetail.tsx:535 msgid "Complete Order" msgstr "Završi nalog" -#: src/pages/build/BuildDetail.tsx:686 +#: src/pages/build/BuildDetail.tsx:691 msgid "Build Order Actions" msgstr "Akcije naloga za izradu" -#: src/pages/build/BuildDetail.tsx:691 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:489 -#: src/pages/sales/ReturnOrderDetail.tsx:500 -#: src/pages/sales/SalesOrderDetail.tsx:554 +#: src/pages/build/BuildDetail.tsx:696 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:494 +#: src/pages/sales/ReturnOrderDetail.tsx:505 +#: src/pages/sales/SalesOrderDetail.tsx:559 msgid "Edit order" msgstr "Izmeni nalog" -#: src/pages/build/BuildDetail.tsx:695 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:497 -#: src/pages/sales/ReturnOrderDetail.tsx:506 -#: src/pages/sales/SalesOrderDetail.tsx:559 +#: src/pages/build/BuildDetail.tsx:700 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:502 +#: src/pages/sales/ReturnOrderDetail.tsx:511 +#: src/pages/sales/SalesOrderDetail.tsx:564 msgid "Duplicate order" msgstr "Dupliraj nalog" -#: src/pages/build/BuildDetail.tsx:699 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:500 -#: src/pages/sales/ReturnOrderDetail.tsx:511 -#: src/pages/sales/SalesOrderDetail.tsx:562 -msgid "Hold order" -msgstr "Zadrži nalog" - #: src/pages/build/BuildDetail.tsx:704 #: src/pages/purchasing/PurchaseOrderDetail.tsx:505 #: src/pages/sales/ReturnOrderDetail.tsx:516 #: src/pages/sales/SalesOrderDetail.tsx:567 +msgid "Hold order" +msgstr "Zadrži nalog" + +#: src/pages/build/BuildDetail.tsx:709 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:510 +#: src/pages/sales/ReturnOrderDetail.tsx:521 +#: src/pages/sales/SalesOrderDetail.tsx:572 msgid "Cancel order" msgstr "Otkaži nalog" -#: src/pages/build/BuildDetail.tsx:742 +#: src/pages/build/BuildDetail.tsx:747 #: src/pages/stock/StockDetail.tsx:344 -#: src/tables/build/BuildAllocatedStockTable.tsx:85 +#: src/tables/build/BuildAllocatedStockTable.tsx:82 #: src/tables/part/PartBuildAllocationsTable.tsx:45 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:157 #: src/tables/stock/StockTrackingTable.tsx:109 @@ -7143,7 +7206,7 @@ msgstr "Nalog za izradu" #~ msgid "Build order created" #~ msgstr "Build order created" -#: src/pages/build/BuildIndex.tsx:29 +#: src/pages/build/BuildIndex.tsx:35 #: src/tables/build/BuildOrderTable.tsx:184 msgid "Show external build orders" msgstr "" @@ -7152,61 +7215,82 @@ msgstr "" #~ msgid "New Build Order" #~ msgstr "New Build Order" -#: src/pages/build/BuildIndex.tsx:83 -#: src/pages/purchasing/PurchasingIndex.tsx:69 -#: src/pages/sales/SalesIndex.tsx:92 -#: src/pages/sales/SalesIndex.tsx:125 +#: src/pages/build/BuildIndex.tsx:74 +#: src/pages/part/CategoryDetail.tsx:292 +#: src/pages/purchasing/PurchasingIndex.tsx:74 +#: src/pages/purchasing/PurchasingIndex.tsx:107 +#: src/pages/purchasing/PurchasingIndex.tsx:135 +#: src/pages/purchasing/PurchasingIndex.tsx:156 +#: src/pages/purchasing/PurchasingIndex.tsx:184 +#: src/pages/sales/SalesIndex.tsx:61 +#: src/pages/sales/SalesIndex.tsx:107 +#: src/pages/sales/SalesIndex.tsx:140 msgid "Table View" msgstr "" -#: src/pages/build/BuildIndex.tsx:86 -#: src/pages/purchasing/PurchasingIndex.tsx:72 -#: src/pages/sales/SalesIndex.tsx:95 -#: src/pages/sales/SalesIndex.tsx:128 +#: src/pages/build/BuildIndex.tsx:80 +#: src/pages/purchasing/PurchasingIndex.tsx:80 +#: src/pages/sales/SalesIndex.tsx:67 +#: src/pages/sales/SalesIndex.tsx:113 msgid "Calendar View" msgstr "" -#: src/pages/company/CompanyDetail.tsx:99 +#: src/pages/build/BuildIndex.tsx:86 +#: src/pages/part/CategoryDetail.tsx:306 +#: src/pages/purchasing/PurchasingIndex.tsx:92 +#: src/pages/purchasing/PurchasingIndex.tsx:118 +#: src/pages/purchasing/PurchasingIndex.tsx:141 +#: src/pages/purchasing/PurchasingIndex.tsx:167 +#: src/pages/purchasing/PurchasingIndex.tsx:190 +#: src/pages/sales/SalesIndex.tsx:79 +#: src/pages/sales/SalesIndex.tsx:125 +#: src/pages/sales/SalesIndex.tsx:151 +msgid "Parametric View" +msgstr "" + +#: src/pages/company/CompanyDetail.tsx:100 msgid "Website" msgstr "Web sajt" -#: src/pages/company/CompanyDetail.tsx:107 +#: src/pages/company/CompanyDetail.tsx:108 msgid "Phone Number" msgstr "Broj telefona" -#: src/pages/company/CompanyDetail.tsx:114 +#: src/pages/company/CompanyDetail.tsx:115 msgid "Email Address" msgstr "E-mail adresa" -#: src/pages/company/CompanyDetail.tsx:121 +#: src/pages/company/CompanyDetail.tsx:122 msgid "Tax ID" msgstr "" -#: src/pages/company/CompanyDetail.tsx:131 +#: src/pages/company/CompanyDetail.tsx:132 msgid "Default Currency" msgstr "Podrazumevana valuta" -#: src/pages/company/CompanyDetail.tsx:142 +#: src/pages/company/CompanyDetail.tsx:143 #: src/pages/company/ManufacturerDetail.tsx:8 -#: src/pages/company/ManufacturerPartDetail.tsx:104 -#: src/pages/company/ManufacturerPartDetail.tsx:280 -#: src/pages/company/SupplierPartDetail.tsx:152 +#: src/pages/company/ManufacturerPartDetail.tsx:103 +#: src/pages/company/ManufacturerPartDetail.tsx:271 +#: src/pages/company/SupplierPartDetail.tsx:153 #: src/tables/Filter.tsx:347 #: src/tables/company/CompanyTable.tsx:101 #: src/tables/purchasing/SupplierPartTable.tsx:89 msgid "Manufacturer" msgstr "Proizvođač" -#: src/pages/company/CompanyDetail.tsx:148 +#: src/pages/company/CompanyDetail.tsx:149 #: src/pages/company/CustomerDetail.tsx:8 #: src/pages/part/pricing/SaleHistoryPanel.tsx:31 -#: src/pages/sales/ReturnOrderDetail.tsx:123 -#: src/pages/sales/SalesOrderDetail.tsx:113 -#: src/pages/sales/SalesOrderShipmentDetail.tsx:113 +#: src/pages/sales/ReturnOrderDetail.tsx:124 +#: src/pages/sales/SalesOrderDetail.tsx:114 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:111 #: src/pages/stock/StockDetail.tsx:370 #: src/tables/company/CompanyTable.tsx:106 +#: src/tables/sales/ReturnOrderParametricTable.tsx:32 #: src/tables/sales/ReturnOrderTable.tsx:108 -#: src/tables/sales/SalesOrderShipmentTable.tsx:111 +#: src/tables/sales/SalesOrderParametricTable.tsx:32 +#: src/tables/sales/SalesOrderShipmentTable.tsx:132 #: src/tables/sales/SalesOrderTable.tsx:133 #: src/tables/stock/StockTrackingTable.tsx:153 msgid "Customer" @@ -7216,11 +7300,11 @@ msgstr "Mušterija" #~ msgid "Edit company" #~ msgstr "Edit company" -#: src/pages/company/CompanyDetail.tsx:181 +#: src/pages/company/CompanyDetail.tsx:182 msgid "Company Details" msgstr "Detalji firme" -#: src/pages/company/CompanyDetail.tsx:187 +#: src/pages/company/CompanyDetail.tsx:188 msgid "Supplied Parts" msgstr "Dostavljeni delovi" @@ -7228,79 +7312,79 @@ msgstr "Dostavljeni delovi" #~ msgid "Delete company" #~ msgstr "Delete company" -#: src/pages/company/CompanyDetail.tsx:194 +#: src/pages/company/CompanyDetail.tsx:195 msgid "Manufactured Parts" msgstr "Proizvedeni delovi" -#: src/pages/company/CompanyDetail.tsx:241 +#: src/pages/company/CompanyDetail.tsx:242 msgid "Assigned Stock" msgstr "Dodeljene zalihe" -#: src/pages/company/CompanyDetail.tsx:282 +#: src/pages/company/CompanyDetail.tsx:287 #: src/tables/company/CompanyTable.tsx:82 msgid "Edit Company" msgstr "Izmeni firmu" -#: src/pages/company/CompanyDetail.tsx:290 +#: src/pages/company/CompanyDetail.tsx:295 msgid "Delete Company" msgstr "Obriši firmu" -#: src/pages/company/CompanyDetail.tsx:305 +#: src/pages/company/CompanyDetail.tsx:310 msgid "Company Actions" msgstr "Akcije firme" -#: src/pages/company/ManufacturerPartDetail.tsx:78 -#: src/pages/company/SupplierPartDetail.tsx:89 +#: src/pages/company/ManufacturerPartDetail.tsx:77 +#: src/pages/company/SupplierPartDetail.tsx:90 msgid "Internal Part" msgstr "Interni deo" -#: src/pages/company/ManufacturerPartDetail.tsx:112 +#: src/pages/company/ManufacturerPartDetail.tsx:111 msgid "Manufacturer Part Number" msgstr "Broj dela prozivođača" -#: src/pages/company/ManufacturerPartDetail.tsx:129 -#: src/pages/company/SupplierPartDetail.tsx:113 +#: src/pages/company/ManufacturerPartDetail.tsx:128 +#: src/pages/company/SupplierPartDetail.tsx:114 msgid "External Link" msgstr "Spoljni link" -#: src/pages/company/ManufacturerPartDetail.tsx:148 -#: src/pages/company/SupplierPartDetail.tsx:232 +#: src/pages/company/ManufacturerPartDetail.tsx:147 +#: src/pages/company/SupplierPartDetail.tsx:233 #: src/pages/part/PartDetail.tsx:787 msgid "Part Details" msgstr "Detalji dela" -#: src/pages/company/ManufacturerPartDetail.tsx:151 +#: src/pages/company/ManufacturerPartDetail.tsx:150 msgid "Manufacturer Details" msgstr "Detalji proizvođača" -#: src/pages/company/ManufacturerPartDetail.tsx:160 +#: src/pages/company/ManufacturerPartDetail.tsx:159 msgid "Manufacturer Part Details" msgstr "Detalji dela proizvođača" -#: src/pages/company/ManufacturerPartDetail.tsx:178 -#: src/pages/company/SupplierPartDetail.tsx:252 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:381 +#: src/pages/company/ManufacturerPartDetail.tsx:165 +#: src/pages/company/SupplierPartDetail.tsx:253 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:382 msgid "Received Stock" msgstr "Primljene zalihe" -#: src/pages/company/ManufacturerPartDetail.tsx:220 +#: src/pages/company/ManufacturerPartDetail.tsx:211 #: src/tables/purchasing/ManufacturerPartTable.tsx:108 msgid "Edit Manufacturer Part" msgstr "Izmeni deo proizvođača" -#: src/pages/company/ManufacturerPartDetail.tsx:227 +#: src/pages/company/ManufacturerPartDetail.tsx:218 #: src/tables/purchasing/ManufacturerPartTable.tsx:96 #: src/tables/purchasing/ManufacturerPartTable.tsx:115 #: src/tables/purchasing/ManufacturerPartTable.tsx:156 msgid "Add Manufacturer Part" msgstr "Dodaj deo proizvođača" -#: src/pages/company/ManufacturerPartDetail.tsx:239 +#: src/pages/company/ManufacturerPartDetail.tsx:230 #: src/tables/purchasing/ManufacturerPartTable.tsx:126 msgid "Delete Manufacturer Part" msgstr "Obriši deo proizvođača" -#: src/pages/company/ManufacturerPartDetail.tsx:254 +#: src/pages/company/ManufacturerPartDetail.tsx:245 msgid "Manufacturer Part Actions" msgstr "Akcija dela proizvođača" @@ -7308,12 +7392,12 @@ msgstr "Akcija dela proizvođača" #~ msgid "ManufacturerPart" #~ msgstr "ManufacturerPart" -#: src/pages/company/SupplierPartDetail.tsx:104 +#: src/pages/company/SupplierPartDetail.tsx:105 #: src/tables/part/RelatedPartTable.tsx:82 msgid "Part Description" msgstr "Opis dela" -#: src/pages/company/SupplierPartDetail.tsx:179 +#: src/pages/company/SupplierPartDetail.tsx:180 #: src/tables/part/PartPurchaseOrdersTable.tsx:73 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:191 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:233 @@ -7321,50 +7405,50 @@ msgstr "Opis dela" msgid "Pack Quantity" msgstr "Količina pakovanja" -#: src/pages/company/SupplierPartDetail.tsx:204 +#: src/pages/company/SupplierPartDetail.tsx:205 msgid "Supplier Availability" msgstr "Dostupnost dobavljača" -#: src/pages/company/SupplierPartDetail.tsx:212 +#: src/pages/company/SupplierPartDetail.tsx:213 msgid "Availability Updated" msgstr "Dostupnost ažurirana" -#: src/pages/company/SupplierPartDetail.tsx:237 +#: src/pages/company/SupplierPartDetail.tsx:238 msgid "Availability" msgstr "Dostupnost" -#: src/pages/company/SupplierPartDetail.tsx:246 +#: src/pages/company/SupplierPartDetail.tsx:247 msgid "Supplier Part Details" msgstr "Detalji dela dobavljača" -#: src/pages/company/SupplierPartDetail.tsx:279 +#: src/pages/company/SupplierPartDetail.tsx:280 #: src/pages/part/PartPricingPanel.tsx:113 #: src/pages/part/pricing/PricingOverviewPanel.tsx:239 msgid "Supplier Pricing" msgstr "Cene dobavljača" -#: src/pages/company/SupplierPartDetail.tsx:308 +#: src/pages/company/SupplierPartDetail.tsx:313 msgid "Supplier Part Actions" msgstr "Akcije dela dobavljača" -#: src/pages/company/SupplierPartDetail.tsx:332 +#: src/pages/company/SupplierPartDetail.tsx:337 #: src/tables/purchasing/SupplierPartTable.tsx:244 msgid "Edit Supplier Part" msgstr "Izmeni deo dobavljača" -#: src/pages/company/SupplierPartDetail.tsx:340 +#: src/pages/company/SupplierPartDetail.tsx:345 #: src/tables/purchasing/SupplierPartTable.tsx:264 msgid "Delete Supplier Part" msgstr "Obriši deo dobavljača" -#: src/pages/company/SupplierPartDetail.tsx:348 +#: src/pages/company/SupplierPartDetail.tsx:353 #: src/tables/purchasing/SupplierPartTable.tsx:172 #: src/tables/purchasing/SupplierPartTable.tsx:251 msgid "Add Supplier Part" msgstr "Dodaj deo dobavljača" -#: src/pages/company/SupplierPartDetail.tsx:388 -#: src/pages/part/PartDetail.tsx:1003 +#: src/pages/company/SupplierPartDetail.tsx:393 +#: src/pages/part/PartDetail.tsx:1018 msgid "No Stock" msgstr "Nema zaliha" @@ -7411,83 +7495,83 @@ msgstr "Detalji korisnika" msgid "Basic user" msgstr "" -#: src/pages/part/CategoryDetail.tsx:100 +#: src/pages/part/CategoryDetail.tsx:103 #: src/pages/stock/LocationDetail.tsx:94 #: src/tables/settings/ErrorTable.tsx:63 #: src/tables/settings/ErrorTable.tsx:108 msgid "Path" msgstr "Putanja" -#: src/pages/part/CategoryDetail.tsx:116 +#: src/pages/part/CategoryDetail.tsx:119 msgid "Parent Category" msgstr "Nadređena kategorija" -#: src/pages/part/CategoryDetail.tsx:139 -#: src/pages/part/CategoryDetail.tsx:271 +#: src/pages/part/CategoryDetail.tsx:142 +#: src/pages/part/CategoryDetail.tsx:279 msgid "Subcategories" msgstr "Podkategorije" -#: src/pages/part/CategoryDetail.tsx:146 +#: src/pages/part/CategoryDetail.tsx:149 #: src/pages/stock/LocationDetail.tsx:134 #: src/tables/part/PartCategoryTable.tsx:89 #: src/tables/stock/StockLocationTable.tsx:43 msgid "Structural" msgstr "Strukturalno" -#: src/pages/part/CategoryDetail.tsx:152 +#: src/pages/part/CategoryDetail.tsx:155 msgid "Parent default location" msgstr "Podrazumevana lokacija nadređene kategorije" -#: src/pages/part/CategoryDetail.tsx:159 +#: src/pages/part/CategoryDetail.tsx:162 msgid "Default location" msgstr "Podrazumevana lokacija" -#: src/pages/part/CategoryDetail.tsx:170 +#: src/pages/part/CategoryDetail.tsx:173 msgid "Top level part category" msgstr "Vrhovna kategorija dela" -#: src/pages/part/CategoryDetail.tsx:180 -#: src/pages/part/CategoryDetail.tsx:248 +#: src/pages/part/CategoryDetail.tsx:183 +#: src/pages/part/CategoryDetail.tsx:251 #: src/tables/part/PartCategoryTable.tsx:122 msgid "Edit Part Category" msgstr "Izmeni kategoriju dela" -#: src/pages/part/CategoryDetail.tsx:189 +#: src/pages/part/CategoryDetail.tsx:192 msgid "Move items to parent category" msgstr "Premesti stavke u nadređenu kategoriju" -#: src/pages/part/CategoryDetail.tsx:193 +#: src/pages/part/CategoryDetail.tsx:196 #: src/pages/stock/LocationDetail.tsx:226 msgid "Delete items" msgstr "Obriši stavke" -#: src/pages/part/CategoryDetail.tsx:201 -#: src/pages/part/CategoryDetail.tsx:253 +#: src/pages/part/CategoryDetail.tsx:204 +#: src/pages/part/CategoryDetail.tsx:256 msgid "Delete Part Category" msgstr "Obriši kategoriju dela" -#: src/pages/part/CategoryDetail.tsx:204 +#: src/pages/part/CategoryDetail.tsx:207 msgid "Parts Action" msgstr "Akcije delova" -#: src/pages/part/CategoryDetail.tsx:205 +#: src/pages/part/CategoryDetail.tsx:208 msgid "Action for parts in this category" msgstr "Akcije za delove unutar ove kategorije" -#: src/pages/part/CategoryDetail.tsx:211 +#: src/pages/part/CategoryDetail.tsx:214 msgid "Child Categories Action" msgstr "Akcije podkategorije" -#: src/pages/part/CategoryDetail.tsx:212 +#: src/pages/part/CategoryDetail.tsx:215 msgid "Action for child categories in this category" msgstr "Akcije za podkategorije ove kategorije" -#: src/pages/part/CategoryDetail.tsx:244 +#: src/pages/part/CategoryDetail.tsx:247 #: src/tables/part/PartCategoryTable.tsx:143 msgid "Category Actions" msgstr "Akcije kategorije" -#: src/pages/part/CategoryDetail.tsx:265 +#: src/pages/part/CategoryDetail.tsx:273 msgid "Category Details" msgstr "Detalji kategorije" @@ -7585,7 +7669,6 @@ msgid "Category Default Location" msgstr "Podrazumevana lokacija kategorije" #: src/pages/part/PartDetail.tsx:507 -#: src/tables/purchasing/ManufacturerPartParameterTable.tsx:48 msgid "Units" msgstr "Merne jedinice" @@ -7600,7 +7683,7 @@ msgstr "Ključne reči" #: src/pages/part/PartDetail.tsx:542 #: src/tables/bom/BomTable.tsx:439 -#: src/tables/build/BuildLineTable.tsx:305 +#: src/tables/build/BuildLineTable.tsx:306 #: src/tables/part/PartTable.tsx:319 #: src/tables/sales/SalesOrderLineItemTable.tsx:138 msgid "Available Stock" @@ -7608,7 +7691,7 @@ msgstr "Dostupne zalihe" #: src/pages/part/PartDetail.tsx:548 #: src/tables/bom/BomTable.tsx:341 -#: src/tables/build/BuildLineTable.tsx:267 +#: src/tables/build/BuildLineTable.tsx:268 #: src/tables/sales/SalesOrderLineItemTable.tsx:180 msgid "On order" msgstr "Na nalogu" @@ -7634,7 +7717,7 @@ msgstr "Minimum zaliha" #~ msgstr "Scheduling" #: src/pages/part/PartDetail.tsx:620 -#: src/tables/part/ParametricPartTable.tsx:359 +#: src/tables/part/ParametricPartTable.tsx:24 #: src/tables/part/PartTable.tsx:203 msgid "Locked" msgstr "Zaključano" @@ -7671,16 +7754,16 @@ msgid "Saleable Part" msgstr "Deo može da se proda" #: src/pages/part/PartDetail.tsx:663 -#: src/pages/part/PartDetail.tsx:1033 +#: src/pages/part/PartDetail.tsx:1054 #: src/tables/bom/BomTable.tsx:150 #: src/tables/bom/BomTable.tsx:434 msgid "Virtual Part" msgstr "Virtualni deo" #: src/pages/part/PartDetail.tsx:678 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:271 -#: src/pages/sales/ReturnOrderDetail.tsx:249 -#: src/pages/sales/SalesOrderDetail.tsx:242 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:272 +#: src/pages/sales/ReturnOrderDetail.tsx:250 +#: src/pages/sales/SalesOrderDetail.tsx:243 #: src/tables/ColumnRenderers.tsx:502 msgid "Creation Date" msgstr "Datum kreiranja" @@ -7718,35 +7801,46 @@ msgstr "Najnoviji serijski broj" msgid "Select Part Revision" msgstr "Izaberite reviziju dela" -#: src/pages/part/PartDetail.tsx:823 +#: src/pages/part/PartDetail.tsx:812 msgid "Variants" msgstr "Varijante" -#: src/pages/part/PartDetail.tsx:830 +#: src/pages/part/PartDetail.tsx:819 #: src/pages/stock/StockDetail.tsx:542 msgid "Allocations" msgstr "Alokacije" -#: src/pages/part/PartDetail.tsx:837 +#: src/pages/part/PartDetail.tsx:826 msgid "Bill of Materials" msgstr "Spisak materijala" -#: src/pages/part/PartDetail.tsx:849 +#: src/pages/part/PartDetail.tsx:838 msgid "Used In" msgstr "Korišćeno u" -#: src/pages/part/PartDetail.tsx:856 +#: src/pages/part/PartDetail.tsx:845 msgid "Part Pricing" msgstr "Cena dela" -#: src/pages/part/PartDetail.tsx:926 +#: src/pages/part/PartDetail.tsx:915 msgid "Test Templates" msgstr "Test šabloni" -#: src/pages/part/PartDetail.tsx:948 +#: src/pages/part/PartDetail.tsx:937 msgid "Related Parts" msgstr "Povezani delovi" +#: src/pages/part/PartDetail.tsx:949 +#: src/tables/ColumnRenderers.tsx:73 +#: src/tables/bom/BomTable.tsx:657 +#: src/tables/part/PartTestTemplateTable.tsx:258 +msgid "Part is Locked" +msgstr "Deo je zaključan" + +#: src/pages/part/PartDetail.tsx:954 +msgid "Part parameters cannot be edited, as the part is locked" +msgstr "Parametri dela ne mogu da se izmene, deo je zaključan" + #: src/pages/part/PartDetail.tsx:956 #~ msgid "Count part stock" #~ msgstr "Count part stock" @@ -7755,42 +7849,46 @@ msgstr "Povezani delovi" #~ msgid "Transfer part stock" #~ msgstr "Transfer part stock" -#: src/pages/part/PartDetail.tsx:1009 +#: src/pages/part/PartDetail.tsx:1024 #: src/tables/part/PartTestTemplateTable.tsx:112 #: src/tables/stock/StockItemTestResultTable.tsx:404 msgid "Required" msgstr "Neophodno" -#: src/pages/part/PartDetail.tsx:1058 +#: src/pages/part/PartDetail.tsx:1042 +msgid "Deficit" +msgstr "" + +#: src/pages/part/PartDetail.tsx:1079 #: src/tables/part/PartTable.tsx:396 #: src/tables/part/PartTable.tsx:449 msgid "Add Part" msgstr "Dodaj deo" -#: src/pages/part/PartDetail.tsx:1072 +#: src/pages/part/PartDetail.tsx:1093 msgid "Delete Part" msgstr "Obriši deo" -#: src/pages/part/PartDetail.tsx:1081 +#: src/pages/part/PartDetail.tsx:1102 msgid "Deleting this part cannot be reversed" msgstr "Brisanje ovog dela se ne može poništiti" -#: src/pages/part/PartDetail.tsx:1143 +#: src/pages/part/PartDetail.tsx:1164 #: src/pages/stock/StockDetail.tsx:883 msgid "Order" msgstr "Nalog" -#: src/pages/part/PartDetail.tsx:1144 +#: src/pages/part/PartDetail.tsx:1165 #: src/pages/stock/StockDetail.tsx:884 -#: src/tables/build/BuildLineTable.tsx:761 +#: src/tables/build/BuildLineTable.tsx:768 msgid "Order Stock" msgstr "Naruči zalihe" -#: src/pages/part/PartDetail.tsx:1156 +#: src/pages/part/PartDetail.tsx:1177 msgid "Search by serial number" msgstr "" -#: src/pages/part/PartDetail.tsx:1164 +#: src/pages/part/PartDetail.tsx:1185 #: src/tables/part/PartTable.tsx:506 msgid "Part Actions" msgstr "Akcije dela" @@ -8039,7 +8137,7 @@ msgstr "Cena nabavke" #: src/pages/part/pricing/PricingOverviewPanel.tsx:288 #: src/pages/stock/StockDetail.tsx:426 -#: src/tables/part/PartParameterTable.tsx:121 +#: src/tables/general/ParameterTable.tsx:101 #: src/tables/stock/StockItemTable.tsx:300 msgid "Last Updated" msgstr "Poslednji put ažurirano" @@ -8107,17 +8205,17 @@ msgstr "Cena dobavljača" msgid "Variant Part" msgstr "Varijanta dela" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:89 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:90 msgid "Edit Purchase Order" msgstr "Izmeni nalog za kupovinu" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:125 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:126 #: src/tables/purchasing/PurchaseOrderTable.tsx:154 #: src/tables/purchasing/PurchaseOrderTable.tsx:167 msgid "Add Purchase Order" msgstr "Dodaj nalog za kupovinu" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:147 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:148 msgid "Supplier Reference" msgstr "Referenca dobavljača" @@ -8127,20 +8225,20 @@ msgstr "Referenca dobavljača" #~ msgid "Order Currency," #~ msgstr "Order Currency," -#: src/pages/purchasing/PurchaseOrderDetail.tsx:187 -#: src/pages/sales/ReturnOrderDetail.tsx:160 -#: src/pages/sales/SalesOrderDetail.tsx:144 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:188 +#: src/pages/sales/ReturnOrderDetail.tsx:161 +#: src/pages/sales/SalesOrderDetail.tsx:145 msgid "Completed Line Items" msgstr "Završene stavke narudžbine" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:196 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:197 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:272 msgid "Destination" msgstr "Odredište" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:202 -#: src/pages/sales/ReturnOrderDetail.tsx:167 -#: src/pages/sales/SalesOrderDetail.tsx:161 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:203 +#: src/pages/sales/ReturnOrderDetail.tsx:168 +#: src/pages/sales/SalesOrderDetail.tsx:162 msgid "Order Currency" msgstr "Valuta narudžbine" @@ -8150,97 +8248,97 @@ msgstr "Valuta narudžbine" #~ msgid "Created On" #~ msgstr "Created On" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:208 -#: src/pages/sales/ReturnOrderDetail.tsx:174 -#: src/pages/sales/SalesOrderDetail.tsx:167 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:209 +#: src/pages/sales/ReturnOrderDetail.tsx:175 +#: src/pages/sales/SalesOrderDetail.tsx:168 msgid "Total Cost" msgstr "Ukupna cena" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:237 -#: src/pages/sales/ReturnOrderDetail.tsx:215 -#: src/pages/sales/SalesOrderDetail.tsx:208 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:238 +#: src/pages/sales/ReturnOrderDetail.tsx:216 +#: src/pages/sales/SalesOrderDetail.tsx:209 msgid "Contact Email" msgstr "" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:245 -#: src/pages/sales/ReturnOrderDetail.tsx:223 -#: src/pages/sales/SalesOrderDetail.tsx:216 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:246 +#: src/pages/sales/ReturnOrderDetail.tsx:224 +#: src/pages/sales/SalesOrderDetail.tsx:217 msgid "Contact Phone" msgstr "" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:278 -#: src/pages/sales/ReturnOrderDetail.tsx:257 -#: src/pages/sales/SalesOrderDetail.tsx:249 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:279 +#: src/pages/sales/ReturnOrderDetail.tsx:258 +#: src/pages/sales/SalesOrderDetail.tsx:250 msgid "Issue Date" msgstr "Datum izdavanja" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:303 -#: src/pages/sales/ReturnOrderDetail.tsx:281 -#: src/pages/sales/SalesOrderDetail.tsx:272 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:304 +#: src/pages/sales/ReturnOrderDetail.tsx:282 +#: src/pages/sales/SalesOrderDetail.tsx:273 #: src/tables/ColumnRenderers.tsx:510 #: src/tables/build/BuildOrderTable.tsx:137 #: src/tables/part/PartPurchaseOrdersTable.tsx:106 msgid "Completion Date" msgstr "Datum završetka" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:333 -#: src/pages/sales/ReturnOrderDetail.tsx:311 -#: src/pages/sales/SalesOrderDetail.tsx:349 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:334 +#: src/pages/sales/ReturnOrderDetail.tsx:312 +#: src/pages/sales/SalesOrderDetail.tsx:350 msgid "Order Details" msgstr "Detalji narudžbine" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:339 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:348 -#: src/pages/sales/ReturnOrderDetail.tsx:153 -#: src/pages/sales/ReturnOrderDetail.tsx:317 -#: src/pages/sales/ReturnOrderDetail.tsx:326 -#: src/pages/sales/SalesOrderDetail.tsx:355 -#: src/pages/sales/SalesOrderDetail.tsx:364 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:340 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:349 +#: src/pages/sales/ReturnOrderDetail.tsx:154 +#: src/pages/sales/ReturnOrderDetail.tsx:318 +#: src/pages/sales/ReturnOrderDetail.tsx:327 +#: src/pages/sales/SalesOrderDetail.tsx:356 +#: src/pages/sales/SalesOrderDetail.tsx:365 msgid "Line Items" msgstr "Stavke" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:363 -#: src/pages/sales/ReturnOrderDetail.tsx:341 -#: src/pages/sales/SalesOrderDetail.tsx:378 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:364 +#: src/pages/sales/ReturnOrderDetail.tsx:342 +#: src/pages/sales/SalesOrderDetail.tsx:379 msgid "Extra Line Items" msgstr "Dodatne stavke" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:405 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:410 msgid "Issue Purchase Order" msgstr "Izdaj nalog za kupovinu" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:413 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:418 msgid "Cancel Purchase Order" msgstr "Otkaži nalog za kupovinu" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:421 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:426 msgid "Hold Purchase Order" msgstr "Zadrži nalog za kupovinu" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:429 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:434 msgid "Complete Purchase Order" msgstr "Završi nalog za kupovinu" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:485 -#: src/pages/sales/ReturnOrderDetail.tsx:496 -#: src/pages/sales/SalesOrderDetail.tsx:549 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:490 +#: src/pages/sales/ReturnOrderDetail.tsx:501 +#: src/pages/sales/SalesOrderDetail.tsx:554 msgid "Order Actions" msgstr "Akcije narudžbine" -#: src/pages/sales/ReturnOrderDetail.tsx:114 -#: src/pages/sales/SalesOrderDetail.tsx:104 -#: src/pages/sales/SalesOrderShipmentDetail.tsx:134 +#: src/pages/sales/ReturnOrderDetail.tsx:115 +#: src/pages/sales/SalesOrderDetail.tsx:105 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:132 #: src/tables/sales/SalesOrderTable.tsx:141 msgid "Customer Reference" msgstr "Referenca mušterije" -#: src/pages/sales/ReturnOrderDetail.tsx:195 +#: src/pages/sales/ReturnOrderDetail.tsx:196 msgid "Return Address" msgstr "" -#: src/pages/sales/ReturnOrderDetail.tsx:201 -#: src/pages/sales/SalesOrderDetail.tsx:194 -#: src/pages/sales/SalesOrderShipmentDetail.tsx:181 +#: src/pages/sales/ReturnOrderDetail.tsx:202 +#: src/pages/sales/SalesOrderDetail.tsx:195 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:179 msgid "Not specified" msgstr "" @@ -8248,117 +8346,117 @@ msgstr "" #~ msgid "Order canceled" #~ msgstr "Order canceled" -#: src/pages/sales/ReturnOrderDetail.tsx:389 +#: src/pages/sales/ReturnOrderDetail.tsx:394 msgid "Edit Return Order" msgstr "Izmeni reklamaciju" -#: src/pages/sales/ReturnOrderDetail.tsx:407 +#: src/pages/sales/ReturnOrderDetail.tsx:412 #: src/tables/sales/ReturnOrderTable.tsx:154 #: src/tables/sales/ReturnOrderTable.tsx:167 msgid "Add Return Order" msgstr "Dodaj reklamaciju" -#: src/pages/sales/ReturnOrderDetail.tsx:416 +#: src/pages/sales/ReturnOrderDetail.tsx:421 msgid "Issue Return Order" msgstr "Izdaj reklamaciju" -#: src/pages/sales/ReturnOrderDetail.tsx:424 +#: src/pages/sales/ReturnOrderDetail.tsx:429 msgid "Cancel Return Order" msgstr "Otkaži reklamaciju" -#: src/pages/sales/ReturnOrderDetail.tsx:432 +#: src/pages/sales/ReturnOrderDetail.tsx:437 msgid "Hold Return Order" msgstr "Zadrži reklamaciju" -#: src/pages/sales/ReturnOrderDetail.tsx:440 +#: src/pages/sales/ReturnOrderDetail.tsx:445 msgid "Complete Return Order" msgstr "Završi reklamaciju" -#: src/pages/sales/SalesOrderDetail.tsx:153 +#: src/pages/sales/SalesOrderDetail.tsx:154 msgid "Completed Shipments" msgstr "Završene isporuke" -#: src/pages/sales/SalesOrderDetail.tsx:188 -#: src/pages/sales/SalesOrderShipmentDetail.tsx:170 +#: src/pages/sales/SalesOrderDetail.tsx:189 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:168 msgid "Shipping Address" msgstr "" -#: src/pages/sales/SalesOrderDetail.tsx:316 +#: src/pages/sales/SalesOrderDetail.tsx:317 msgid "Edit Sales Order" msgstr "Izmeni prodajnu narudžbinu" -#: src/pages/sales/SalesOrderDetail.tsx:338 +#: src/pages/sales/SalesOrderDetail.tsx:339 #: src/tables/sales/SalesOrderTable.tsx:108 #: src/tables/sales/SalesOrderTable.tsx:121 msgid "Add Sales Order" msgstr "Dodaj prodajnu narudžbinu" -#: src/pages/sales/SalesOrderDetail.tsx:396 +#: src/pages/sales/SalesOrderDetail.tsx:397 #: src/tables/sales/SalesOrderTable.tsx:147 msgid "Shipments" msgstr "Isporuke" -#: src/pages/sales/SalesOrderDetail.tsx:443 +#: src/pages/sales/SalesOrderDetail.tsx:448 msgid "Issue Sales Order" msgstr "Izdaj prodajnu narudžbinu" -#: src/pages/sales/SalesOrderDetail.tsx:451 +#: src/pages/sales/SalesOrderDetail.tsx:456 msgid "Cancel Sales Order" msgstr "Otkaži prodajnu narudžbinu" -#: src/pages/sales/SalesOrderDetail.tsx:459 +#: src/pages/sales/SalesOrderDetail.tsx:464 msgid "Hold Sales Order" msgstr "Zadrži prodajnu narudžbinu" -#: src/pages/sales/SalesOrderDetail.tsx:467 +#: src/pages/sales/SalesOrderDetail.tsx:472 msgid "Ship Sales Order" msgstr "Isporuči nalog za prodaju" -#: src/pages/sales/SalesOrderDetail.tsx:469 +#: src/pages/sales/SalesOrderDetail.tsx:474 msgid "Ship this order?" msgstr "Isporuči ovaj nalog?" -#: src/pages/sales/SalesOrderDetail.tsx:470 +#: src/pages/sales/SalesOrderDetail.tsx:475 msgid "Order shipped" msgstr "Nalog isporučen" -#: src/pages/sales/SalesOrderDetail.tsx:478 +#: src/pages/sales/SalesOrderDetail.tsx:483 msgid "Complete Sales Order" msgstr "Završi prodajnu narudžbinu" -#: src/pages/sales/SalesOrderDetail.tsx:523 +#: src/pages/sales/SalesOrderDetail.tsx:528 msgid "Ship Order" msgstr "Naruči pošiljku" -#: src/pages/sales/SalesOrderShipmentDetail.tsx:142 -#: src/tables/sales/SalesOrderShipmentTable.tsx:135 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:140 +#: src/tables/sales/SalesOrderShipmentTable.tsx:156 msgid "Shipment Reference" msgstr "Referenca pošiljke" -#: src/pages/sales/SalesOrderShipmentDetail.tsx:148 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:146 msgid "Tracking Number" msgstr "Broj za praćenje" -#: src/pages/sales/SalesOrderShipmentDetail.tsx:156 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:154 msgid "Invoice Number" msgstr "Broj narudžbenice" -#: src/pages/sales/SalesOrderShipmentDetail.tsx:191 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:189 msgid "Allocated Items" msgstr "Alocirane stavke" -#: src/pages/sales/SalesOrderShipmentDetail.tsx:196 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:194 msgid "Checked By" msgstr "" -#: src/pages/sales/SalesOrderShipmentDetail.tsx:202 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:200 msgid "Not checked" msgstr "" -#: src/pages/sales/SalesOrderShipmentDetail.tsx:208 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:206 #: src/tables/ColumnRenderers.tsx:518 #: src/tables/sales/SalesOrderAllocationTable.tsx:182 -#: src/tables/sales/SalesOrderShipmentTable.tsx:168 +#: src/tables/sales/SalesOrderShipmentTable.tsx:189 msgid "Shipment Date" msgstr "Datum isporuke" @@ -8366,108 +8464,82 @@ msgstr "Datum isporuke" #~ msgid "Assigned Items" #~ msgstr "Assigned Items" -#: src/pages/sales/SalesOrderShipmentDetail.tsx:216 -#: src/tables/sales/SalesOrderShipmentTable.tsx:172 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:214 +#: src/tables/sales/SalesOrderShipmentTable.tsx:193 msgid "Delivery Date" msgstr "Datum dostave" -#: src/pages/sales/SalesOrderShipmentDetail.tsx:255 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:253 msgid "Shipment Details" msgstr "Detalji isporukue" -#: src/pages/sales/SalesOrderShipmentDetail.tsx:294 -#: src/pages/sales/SalesOrderShipmentDetail.tsx:438 -#: src/tables/sales/SalesOrderShipmentTable.tsx:90 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:292 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:406 +#: src/tables/sales/SalesOrderShipmentTable.tsx:97 msgid "Edit Shipment" msgstr "Izmeni isporuku" -#: src/pages/sales/SalesOrderShipmentDetail.tsx:301 -#: src/pages/sales/SalesOrderShipmentDetail.tsx:457 -#: src/tables/sales/SalesOrderShipmentTable.tsx:82 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:299 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:425 +#: src/tables/sales/SalesOrderShipmentTable.tsx:89 msgid "Cancel Shipment" msgstr "Otkaži isporuku" -#: src/pages/sales/SalesOrderShipmentDetail.tsx:314 -#: src/tables/sales/SalesOrderShipmentTable.tsx:98 -#: src/tables/sales/SalesOrderShipmentTable.tsx:193 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:312 +#: src/tables/sales/SalesOrderShipmentTable.tsx:119 +#: src/tables/sales/SalesOrderShipmentTable.tsx:238 msgid "Complete Shipment" msgstr "Završi isporuku" -#: src/pages/sales/SalesOrderShipmentDetail.tsx:326 -#: src/pages/sales/SalesOrderShipmentDetail.tsx:328 -msgid "Check Shipment" -msgstr "" - -#: src/pages/sales/SalesOrderShipmentDetail.tsx:329 -msgid "Marking the shipment as checked indicates that you have verified that all items included in this shipment are correct" -msgstr "" - #: src/pages/sales/SalesOrderShipmentDetail.tsx:339 -msgid "Shipment marked as checked" -msgstr "" - -#: src/pages/sales/SalesOrderShipmentDetail.tsx:346 -#: src/pages/sales/SalesOrderShipmentDetail.tsx:348 -msgid "Uncheck Shipment" -msgstr "" - -#: src/pages/sales/SalesOrderShipmentDetail.tsx:349 -msgid "Marking the shipment as unchecked indicates that the shipment requires further verification" -msgstr "" - -#: src/pages/sales/SalesOrderShipmentDetail.tsx:359 -msgid "Shipment marked as unchecked" -msgstr "" - -#: src/pages/sales/SalesOrderShipmentDetail.tsx:371 #: src/tables/part/PartPurchaseOrdersTable.tsx:122 msgid "Pending" msgstr "Na čekanju" -#: src/pages/sales/SalesOrderShipmentDetail.tsx:377 -#: src/tables/sales/SalesOrderShipmentTable.tsx:147 -#: src/tables/sales/SalesOrderShipmentTable.tsx:254 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:345 +#: src/tables/sales/SalesOrderShipmentTable.tsx:168 +#: src/tables/sales/SalesOrderShipmentTable.tsx:299 msgid "Checked" msgstr "" -#: src/pages/sales/SalesOrderShipmentDetail.tsx:383 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:351 msgid "Not Checked" msgstr "" -#: src/pages/sales/SalesOrderShipmentDetail.tsx:389 -#: src/tables/sales/SalesOrderShipmentTable.tsx:154 -#: src/tables/sales/SalesOrderShipmentTable.tsx:259 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:357 +#: src/tables/sales/SalesOrderShipmentTable.tsx:175 +#: src/tables/sales/SalesOrderShipmentTable.tsx:304 msgid "Shipped" msgstr "Poslato" -#: src/pages/sales/SalesOrderShipmentDetail.tsx:395 -#: src/tables/sales/SalesOrderShipmentTable.tsx:161 -#: src/tables/sales/SalesOrderShipmentTable.tsx:264 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:363 +#: src/tables/sales/SalesOrderShipmentTable.tsx:182 +#: src/tables/sales/SalesOrderShipmentTable.tsx:309 #: src/tables/settings/EmailTable.tsx:31 msgid "Delivered" msgstr "Isporučeno" -#: src/pages/sales/SalesOrderShipmentDetail.tsx:410 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:378 msgid "Send Shipment" msgstr "Pošalji isporuku" -#: src/pages/sales/SalesOrderShipmentDetail.tsx:433 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:401 msgid "Shipment Actions" msgstr "Akcije isporuke" -#: src/pages/sales/SalesOrderShipmentDetail.tsx:442 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:410 msgid "Check" msgstr "" -#: src/pages/sales/SalesOrderShipmentDetail.tsx:443 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:411 msgid "Mark shipment as checked" msgstr "" -#: src/pages/sales/SalesOrderShipmentDetail.tsx:449 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:417 msgid "Uncheck" msgstr "" -#: src/pages/sales/SalesOrderShipmentDetail.tsx:450 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:418 msgid "Mark shipment as unchecked" msgstr "" @@ -8775,13 +8847,6 @@ msgstr "Greška pri učitavanju ikonice paketa sa servera" msgid "Part is not active" msgstr "Deo nije aktivan" -#: src/tables/ColumnRenderers.tsx:73 -#: src/tables/bom/BomTable.tsx:657 -#: src/tables/part/PartParameterTable.tsx:227 -#: src/tables/part/PartTestTemplateTable.tsx:258 -msgid "Part is Locked" -msgstr "Deo je zaključan" - #: src/tables/ColumnRenderers.tsx:78 msgid "You are subscribed to notifications for this part" msgstr "Pretplaćeni ste na obaveštenja vezano za ovaj deo" @@ -9219,13 +9284,13 @@ msgstr "" #~ msgstr "Show asssmbled items" #: src/tables/bom/BomTable.tsx:315 -#: src/tables/build/BuildLineTable.tsx:276 +#: src/tables/build/BuildLineTable.tsx:277 #: src/tables/part/PartTable.tsx:145 msgid "External stock" msgstr "Spoljne zalihe" #: src/tables/bom/BomTable.tsx:323 -#: src/tables/build/BuildLineTable.tsx:239 +#: src/tables/build/BuildLineTable.tsx:240 msgid "Includes substitute stock" msgstr "Uključuje zamenske zalihe" @@ -9234,7 +9299,7 @@ msgstr "Uključuje zamenske zalihe" #~ msgstr "Edit Bom Item" #: src/tables/bom/BomTable.tsx:332 -#: src/tables/build/BuildLineTable.tsx:249 +#: src/tables/build/BuildLineTable.tsx:250 #: src/tables/sales/SalesOrderLineItemTable.tsx:166 msgid "Includes variant stock" msgstr "Uključuje zalihe varijanti" @@ -9272,8 +9337,8 @@ msgid "Stock Information" msgstr "Informacije o zalihama" #: src/tables/bom/BomTable.tsx:399 -#: src/tables/build/BuildLineTable.tsx:496 -#: src/tables/build/BuildLineTable.tsx:537 +#: src/tables/build/BuildLineTable.tsx:497 +#: src/tables/build/BuildLineTable.tsx:538 msgid "Consumable item" msgstr "Potrošna stavka" @@ -9282,7 +9347,7 @@ msgid "No available stock" msgstr "Nema dostupnih zaliha" #: src/tables/bom/BomTable.tsx:420 -#: src/tables/build/BuildLineTable.tsx:213 +#: src/tables/build/BuildLineTable.tsx:214 msgid "Show testable items" msgstr "Prikaži stavke koje mogu da se testiraju" @@ -9291,7 +9356,7 @@ msgid "Show trackable items" msgstr "Prikaži stavke koje mogu da se prate" #: src/tables/bom/BomTable.tsx:430 -#: src/tables/build/BuildLineTable.tsx:208 +#: src/tables/build/BuildLineTable.tsx:209 msgid "Show assembled items" msgstr "Prikaži sklopljene stavke" @@ -9335,7 +9400,7 @@ msgstr "Prikaži stavke koje dozvoljavaju zamenu varijanti" #: src/tables/bom/BomTable.tsx:464 #: src/tables/bom/UsedInTable.tsx:85 -#: src/tables/build/BuildLineTable.tsx:202 +#: src/tables/build/BuildLineTable.tsx:203 msgid "Optional" msgstr "Opciono" @@ -9345,7 +9410,7 @@ msgid "Show optional items" msgstr "Prikaži opcione stavke" #: src/tables/bom/BomTable.tsx:469 -#: src/tables/build/BuildLineTable.tsx:197 +#: src/tables/build/BuildLineTable.tsx:198 msgid "Consumable" msgstr "Potrošno" @@ -9420,6 +9485,7 @@ msgid "Add a single BOM item" msgstr "" #: src/tables/bom/BomTable.tsx:637 +#: src/tables/general/ParameterTable.tsx:206 #: src/tables/part/PartTable.tsx:546 msgid "Import from File" msgstr "" @@ -9433,8 +9499,8 @@ msgid "Bill of materials cannot be edited, as the part is locked" msgstr "Spisak materijala ne može da se menja, deo je zaključan" #: src/tables/bom/UsedInTable.tsx:34 -#: src/tables/build/BuildLineTable.tsx:207 -#: src/tables/part/ParametricPartTable.tsx:364 +#: src/tables/build/BuildLineTable.tsx:208 +#: src/tables/part/ParametricPartTable.tsx:29 #: src/tables/part/PartBuildAllocationsTable.tsx:60 #: src/tables/part/PartTable.tsx:209 #: src/tables/stock/StockItemTable.tsx:333 @@ -9455,11 +9521,11 @@ msgstr "Može da se prati" msgid "Show trackable assemblies" msgstr "Prikaži sklopove koji mogu da se prate" -#: src/tables/build/BuildAllocatedStockTable.tsx:67 +#: src/tables/build/BuildAllocatedStockTable.tsx:64 msgid "Allocated to Output" msgstr "Alocirano za izlaz" -#: src/tables/build/BuildAllocatedStockTable.tsx:68 +#: src/tables/build/BuildAllocatedStockTable.tsx:65 msgid "Show items allocated to a build output" msgstr "Prikaži stavke alocirane nalogu za izradu" @@ -9472,50 +9538,68 @@ msgstr "Prikaži stavke alocirane nalogu za izradu" #~ msgid "Include orders for part variants" #~ msgstr "Include orders for part variants" -#: src/tables/build/BuildAllocatedStockTable.tsx:97 +#: src/tables/build/BuildAllocatedStockTable.tsx:94 #: src/tables/part/PartBuildAllocationsTable.tsx:84 #: src/tables/part/PartPurchaseOrdersTable.tsx:132 #: src/tables/part/PartSalesAllocationsTable.tsx:69 #: src/tables/sales/SalesOrderAllocationTable.tsx:122 -#: src/tables/sales/SalesOrderShipmentTable.tsx:130 +#: src/tables/sales/SalesOrderShipmentTable.tsx:151 msgid "Order Status" msgstr "Status narudžbenice" +#: src/tables/build/BuildAllocatedStockTable.tsx:164 +#: src/tables/build/BuildLineTable.tsx:651 +msgid "Edit Stock Allocation" +msgstr "Izmeni alokaciju zaliha" + #: src/tables/build/BuildAllocatedStockTable.tsx:164 #~ msgid "Edit Build Item" #~ msgstr "Edit Build Item" -#: src/tables/build/BuildAllocatedStockTable.tsx:167 -#: src/tables/build/BuildLineTable.tsx:650 -msgid "Edit Stock Allocation" -msgstr "Izmeni alokaciju zaliha" - #: src/tables/build/BuildAllocatedStockTable.tsx:174 #~ msgid "Delete Build Item" #~ msgstr "Delete Build Item" +#: src/tables/build/BuildAllocatedStockTable.tsx:177 +#: src/tables/build/BuildLineTable.tsx:664 +#: src/tables/sales/SalesOrderAllocationTable.tsx:218 +msgid "Remove Allocated Stock" +msgstr "" + #: src/tables/build/BuildAllocatedStockTable.tsx:180 #: src/tables/build/BuildLineTable.tsx:663 -msgid "Delete Stock Allocation" -msgstr "Obriši alokaciju zaliha" +#~ msgid "Delete Stock Allocation" +#~ msgstr "Delete Stock Allocation" -#: src/tables/build/BuildAllocatedStockTable.tsx:239 +#: src/tables/build/BuildAllocatedStockTable.tsx:182 +#: src/tables/build/BuildLineTable.tsx:669 +#: src/tables/sales/SalesOrderAllocationTable.tsx:221 +msgid "Are you sure you want to remove this allocated stock from the order?" +msgstr "" + +#: src/tables/build/BuildAllocatedStockTable.tsx:242 msgid "Consume" msgstr "" +#: src/tables/build/BuildAllocatedStockTable.tsx:259 +#: src/tables/build/BuildLineTable.tsx:112 +#: src/tables/sales/SalesOrderAllocationTable.tsx:248 +msgid "Remove allocated stock" +msgstr "" + #: src/tables/build/BuildLineTable.tsx:59 #~ msgid "Show lines with available stock" #~ msgstr "Show lines with available stock" -#: src/tables/build/BuildLineTable.tsx:120 +#: src/tables/build/BuildLineTable.tsx:121 msgid "View Stock Item" msgstr "Pogledaj stavku" -#: src/tables/build/BuildLineTable.tsx:183 +#: src/tables/build/BuildLineTable.tsx:184 msgid "Show fully allocated lines" msgstr "" -#: src/tables/build/BuildLineTable.tsx:188 +#: src/tables/build/BuildLineTable.tsx:189 msgid "Show fully consumed lines" msgstr "" @@ -9523,124 +9607,124 @@ msgstr "" #~ msgid "Show allocated lines" #~ msgstr "Show allocated lines" -#: src/tables/build/BuildLineTable.tsx:193 +#: src/tables/build/BuildLineTable.tsx:194 msgid "Show items with sufficient available stock" msgstr "" -#: src/tables/build/BuildLineTable.tsx:198 +#: src/tables/build/BuildLineTable.tsx:199 msgid "Show consumable lines" msgstr "Prikaži potrošne stavke" -#: src/tables/build/BuildLineTable.tsx:203 +#: src/tables/build/BuildLineTable.tsx:204 msgid "Show optional lines" msgstr "Prikaži opcione stavke" -#: src/tables/build/BuildLineTable.tsx:212 +#: src/tables/build/BuildLineTable.tsx:213 #: src/tables/part/PartTable.tsx:233 msgid "Testable" msgstr "Moguće testirate" -#: src/tables/build/BuildLineTable.tsx:217 +#: src/tables/build/BuildLineTable.tsx:218 #: src/tables/stock/StockItemTable.tsx:388 msgid "Tracked" msgstr "Praćeno" -#: src/tables/build/BuildLineTable.tsx:218 +#: src/tables/build/BuildLineTable.tsx:219 msgid "Show tracked lines" msgstr "Prikaži praćene stavke" -#: src/tables/build/BuildLineTable.tsx:223 +#: src/tables/build/BuildLineTable.tsx:224 msgid "Show items with stock on order" msgstr "" -#: src/tables/build/BuildLineTable.tsx:258 +#: src/tables/build/BuildLineTable.tsx:259 #: src/tables/sales/SalesOrderLineItemTable.tsx:172 msgid "In production" msgstr "U produkciji" -#: src/tables/build/BuildLineTable.tsx:286 +#: src/tables/build/BuildLineTable.tsx:287 msgid "Insufficient stock" msgstr "Nedovoljno zaliha" -#: src/tables/build/BuildLineTable.tsx:302 +#: src/tables/build/BuildLineTable.tsx:303 #: src/tables/sales/SalesOrderLineItemTable.tsx:160 #: src/tables/stock/StockItemTable.tsx:191 msgid "No stock available" msgstr "Nema dostupnih zaliha" -#: src/tables/build/BuildLineTable.tsx:375 +#: src/tables/build/BuildLineTable.tsx:376 msgid "Gets Inherited" msgstr "Biva nasleđeno" -#: src/tables/build/BuildLineTable.tsx:388 +#: src/tables/build/BuildLineTable.tsx:389 msgid "Unit Quantity" msgstr "Količina po jedinici" -#: src/tables/build/BuildLineTable.tsx:415 +#: src/tables/build/BuildLineTable.tsx:416 msgid "Setup Quantity" msgstr "" -#: src/tables/build/BuildLineTable.tsx:424 +#: src/tables/build/BuildLineTable.tsx:425 msgid "Attrition" msgstr "" -#: src/tables/build/BuildLineTable.tsx:432 +#: src/tables/build/BuildLineTable.tsx:433 msgid "Rounding Multiple" msgstr "" -#: src/tables/build/BuildLineTable.tsx:441 +#: src/tables/build/BuildLineTable.tsx:442 msgid "BOM Information" msgstr "" -#: src/tables/build/BuildLineTable.tsx:515 +#: src/tables/build/BuildLineTable.tsx:516 #: src/tables/part/PartBuildAllocationsTable.tsx:102 msgid "Fully allocated" msgstr "" -#: src/tables/build/BuildLineTable.tsx:563 +#: src/tables/build/BuildLineTable.tsx:564 #: src/tables/sales/SalesOrderLineItemTable.tsx:311 msgid "Create Build Order" msgstr "Kreiraj nalog za izradu" -#: src/tables/build/BuildLineTable.tsx:592 +#: src/tables/build/BuildLineTable.tsx:593 msgid "Auto allocation in progress" msgstr "Automatska alokacija u toku" -#: src/tables/build/BuildLineTable.tsx:595 -#: src/tables/build/BuildLineTable.tsx:802 +#: src/tables/build/BuildLineTable.tsx:596 +#: src/tables/build/BuildLineTable.tsx:809 msgid "Auto Allocate Stock" msgstr "Automatski alociraj zalihe" -#: src/tables/build/BuildLineTable.tsx:596 +#: src/tables/build/BuildLineTable.tsx:597 msgid "Automatically allocate stock to this build according to the selected options" msgstr "Automatski alociraj zalihe ovom nalogu prema izabranim opcijama" -#: src/tables/build/BuildLineTable.tsx:616 -#: src/tables/build/BuildLineTable.tsx:630 -#: src/tables/build/BuildLineTable.tsx:751 -#: src/tables/build/BuildLineTable.tsx:852 +#: src/tables/build/BuildLineTable.tsx:617 +#: src/tables/build/BuildLineTable.tsx:631 +#: src/tables/build/BuildLineTable.tsx:758 +#: src/tables/build/BuildLineTable.tsx:859 #: src/tables/build/BuildOutputTable.tsx:355 #: src/tables/build/BuildOutputTable.tsx:360 msgid "Deallocate Stock" msgstr "Dealociraj zalihe" -#: src/tables/build/BuildLineTable.tsx:632 +#: src/tables/build/BuildLineTable.tsx:633 msgid "Deallocate all untracked stock for this build order" msgstr "Dealociraj sve nepraćene zalihe sa ovog naloga za izradu" -#: src/tables/build/BuildLineTable.tsx:634 +#: src/tables/build/BuildLineTable.tsx:635 msgid "Deallocate stock from the selected line item" msgstr "Dealociraj zalihe sa odabrane stavke" -#: src/tables/build/BuildLineTable.tsx:638 +#: src/tables/build/BuildLineTable.tsx:639 msgid "Stock has been deallocated" msgstr "Zalihe su dealocirane" -#: src/tables/build/BuildLineTable.tsx:771 +#: src/tables/build/BuildLineTable.tsx:778 msgid "Build Stock" msgstr "Kreiraj zalihe" -#: src/tables/build/BuildLineTable.tsx:784 +#: src/tables/build/BuildLineTable.tsx:791 #: src/tables/sales/SalesOrderLineItemTable.tsx:487 msgid "View Part" msgstr "Pogledaj deo" @@ -9739,7 +9823,7 @@ msgid "Serialize Build Output" msgstr "" #: src/tables/build/BuildOutputTable.tsx:405 -#: src/tables/part/PartTestResultTable.tsx:310 +#: src/tables/part/PartTestResultTable.tsx:318 #: src/tables/stock/StockItemTable.tsx:328 msgid "Filter by stock status" msgstr "Filtriraj po statusu zaliha" @@ -9964,8 +10048,8 @@ msgid "View Item" msgstr "Pogledaj stavku" #: src/tables/general/ExtraLineItemTable.tsx:95 -#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:299 -#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:403 +#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:300 +#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:405 #: src/tables/sales/ReturnOrderLineItemTable.tsx:83 #: src/tables/sales/ReturnOrderLineItemTable.tsx:187 #: src/tables/sales/SalesOrderLineItemTable.tsx:252 @@ -9974,14 +10058,14 @@ msgid "Add Line Item" msgstr "Dodaj stavku" #: src/tables/general/ExtraLineItemTable.tsx:108 -#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:320 +#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:322 #: src/tables/sales/ReturnOrderLineItemTable.tsx:96 #: src/tables/sales/SalesOrderLineItemTable.tsx:271 msgid "Edit Line Item" msgstr "Izmeni stavku" #: src/tables/general/ExtraLineItemTable.tsx:117 -#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:329 +#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:331 #: src/tables/sales/ReturnOrderLineItemTable.tsx:105 #: src/tables/sales/SalesOrderLineItemTable.tsx:280 msgid "Delete Line Item" @@ -9991,6 +10075,137 @@ msgstr "Obriši stavku" msgid "Add Extra Line Item" msgstr "Dodaj dodatnu stavku" +#: src/tables/general/ParameterTable.tsx:88 +msgid "Internal Units" +msgstr "Interne merne jedinice" + +#: src/tables/general/ParameterTable.tsx:108 +#: src/tables/general/ParameterTable.tsx:123 +msgid "Updated By" +msgstr "" + +#: src/tables/general/ParameterTable.tsx:118 +msgid "Show parameters for enabled templates" +msgstr "" + +#: src/tables/general/ParameterTable.tsx:124 +msgid "Filter by user who last updated the parameter" +msgstr "" + +#: src/tables/general/ParameterTable.tsx:154 +msgid "Import Parameters" +msgstr "" + +#: src/tables/general/ParameterTable.tsx:164 +#: src/tables/general/ParametricDataTable.tsx:261 +#: src/tables/general/ParametricDataTable.tsx:392 +msgid "Add Parameter" +msgstr "Dodaj parametar" + +#: src/tables/general/ParameterTable.tsx:175 +#: src/tables/general/ParameterTable.tsx:222 +#: src/tables/general/ParametricDataTable.tsx:285 +msgid "Edit Parameter" +msgstr "Izmeni parametar" + +#: src/tables/general/ParameterTable.tsx:183 +#: src/tables/general/ParameterTable.tsx:230 +msgid "Delete Parameter" +msgstr "Obriši parametar" + +#: src/tables/general/ParameterTable.tsx:191 +msgid "Add Parameters" +msgstr "" + +#: src/tables/general/ParameterTable.tsx:197 +msgid "Create Parameter" +msgstr "" + +#: src/tables/general/ParameterTable.tsx:199 +msgid "Create a new parameter" +msgstr "" + +#: src/tables/general/ParameterTable.tsx:208 +msgid "Import parameters from a file" +msgstr "" + +#: src/tables/general/ParameterTemplateTable.tsx:48 +#: src/tables/general/ParameterTemplateTable.tsx:197 +msgid "Add Parameter Template" +msgstr "Dodaj šablon parametara" + +#: src/tables/general/ParameterTemplateTable.tsx:64 +msgid "Duplicate Parameter Template" +msgstr "" + +#: src/tables/general/ParameterTemplateTable.tsx:78 +msgid "Delete Parameter Template" +msgstr "Obriši šablon parametara" + +#: src/tables/general/ParameterTemplateTable.tsx:85 +msgid "Edit Parameter Template" +msgstr "Izmeni šablon parametara" + +#: src/tables/general/ParameterTemplateTable.tsx:138 +msgid "Checkbox" +msgstr "Potvrdni okvir" + +#: src/tables/general/ParameterTemplateTable.tsx:139 +msgid "Show checkbox templates" +msgstr "Prikaži šablone sa potvrdnim okvirima" + +#: src/tables/general/ParameterTemplateTable.tsx:143 +msgid "Has choices" +msgstr "Ima izbore" + +#: src/tables/general/ParameterTemplateTable.tsx:144 +msgid "Show templates with choices" +msgstr "Prikaži šablone sa izborima" + +#: src/tables/general/ParameterTemplateTable.tsx:148 +#: src/tables/part/PartTable.tsx:245 +msgid "Has Units" +msgstr "Ima merne jedinice" + +#: src/tables/general/ParameterTemplateTable.tsx:149 +msgid "Show templates with units" +msgstr "Prikaži šablon sa mernim jedinicama" + +#: src/tables/general/ParameterTemplateTable.tsx:154 +msgid "Show enabled templates" +msgstr "" + +#: src/tables/general/ParameterTemplateTable.tsx:158 +#: src/tables/settings/ImportSessionTable.tsx:111 +#: src/tables/settings/TemplateTable.tsx:368 +msgid "Model Type" +msgstr "Tip modela" + +#: src/tables/general/ParameterTemplateTable.tsx:159 +msgid "Filter by model type" +msgstr "" + +#: src/tables/general/ParametricDataTable.tsx:79 +msgid "Click to edit" +msgstr "Klikni za izmene" + +#: src/tables/general/ParametricDataTableFilters.tsx:36 +msgid "True" +msgstr "" + +#: src/tables/general/ParametricDataTableFilters.tsx:37 +msgid "False" +msgstr "" + +#: src/tables/general/ParametricDataTableFilters.tsx:47 +#: src/tables/general/ParametricDataTableFilters.tsx:80 +msgid "Select a choice" +msgstr "" + +#: src/tables/general/ParametricDataTableFilters.tsx:100 +msgid "Enter a value" +msgstr "" + #: src/tables/machine/MachineListTable.tsx:133 msgid "Machine restarted" msgstr "Mašina restartovana" @@ -10071,7 +10286,7 @@ msgid "Initialized" msgstr "Inicijalizovano" #: src/tables/machine/MachineListTable.tsx:410 -#: src/tables/machine/MachineTypeTable.tsx:307 +#: src/tables/machine/MachineTypeTable.tsx:305 msgid "No errors reported" msgstr "Nema prijavljenih grešaka" @@ -10132,15 +10347,15 @@ msgstr "Ugrađen drajver" #~ msgid "Machine type information" #~ msgstr "Machine type information" -#: src/tables/machine/MachineTypeTable.tsx:128 +#: src/tables/machine/MachineTypeTable.tsx:126 msgid "Not Found" msgstr "Nije pronađeno" -#: src/tables/machine/MachineTypeTable.tsx:131 +#: src/tables/machine/MachineTypeTable.tsx:129 msgid "Machine type not found." msgstr "Tip mašine nije pronađen" -#: src/tables/machine/MachineTypeTable.tsx:141 +#: src/tables/machine/MachineTypeTable.tsx:139 msgid "Machine Type Information" msgstr "Informacije o tipu mašine" @@ -10148,34 +10363,34 @@ msgstr "Informacije o tipu mašine" #~ msgid "Available drivers" #~ msgstr "Available drivers" -#: src/tables/machine/MachineTypeTable.tsx:156 -#: src/tables/machine/MachineTypeTable.tsx:255 +#: src/tables/machine/MachineTypeTable.tsx:154 +#: src/tables/machine/MachineTypeTable.tsx:253 msgid "Slug" msgstr "Tekst" -#: src/tables/machine/MachineTypeTable.tsx:167 -#: src/tables/machine/MachineTypeTable.tsx:276 +#: src/tables/machine/MachineTypeTable.tsx:165 +#: src/tables/machine/MachineTypeTable.tsx:274 msgid "Provider plugin" msgstr "Provajder dodatak" -#: src/tables/machine/MachineTypeTable.tsx:179 -#: src/tables/machine/MachineTypeTable.tsx:288 +#: src/tables/machine/MachineTypeTable.tsx:177 +#: src/tables/machine/MachineTypeTable.tsx:286 msgid "Provider file" msgstr "Provajder fajl" -#: src/tables/machine/MachineTypeTable.tsx:194 +#: src/tables/machine/MachineTypeTable.tsx:192 msgid "Available Drivers" msgstr "Dostupni drajveri" -#: src/tables/machine/MachineTypeTable.tsx:234 +#: src/tables/machine/MachineTypeTable.tsx:232 msgid "Machine driver not found." msgstr "Mašinski drajver nije pronađen" -#: src/tables/machine/MachineTypeTable.tsx:242 +#: src/tables/machine/MachineTypeTable.tsx:240 msgid "Machine driver information" msgstr "Informacije o mašinskom drajveru" -#: src/tables/machine/MachineTypeTable.tsx:262 +#: src/tables/machine/MachineTypeTable.tsx:260 msgid "Machine type" msgstr "Tip mašine" @@ -10187,15 +10402,15 @@ msgstr "Tip mašine" #~ msgid "Machine driver detail" #~ msgstr "Machine driver detail" -#: src/tables/machine/MachineTypeTable.tsx:362 +#: src/tables/machine/MachineTypeTable.tsx:360 msgid "Builtin type" msgstr "Ugrađen tip" -#: src/tables/machine/MachineTypeTable.tsx:371 +#: src/tables/machine/MachineTypeTable.tsx:369 msgid "Machine Type Detail" msgstr "Detalji tipa mašine" -#: src/tables/machine/MachineTypeTable.tsx:381 +#: src/tables/machine/MachineTypeTable.tsx:379 msgid "Machine Driver Detail" msgstr "Detalji mašinskog drajvera" @@ -10213,52 +10428,31 @@ msgstr "Obaveštenje" msgid "Message" msgstr "Poruka" -#: src/tables/part/ParametricPartTable.tsx:78 -msgid "Click to edit" -msgstr "Klikni za izmene" +#: src/tables/part/ParametricPartTable.tsx:20 +msgid "Show active parts" +msgstr "Prikaži aktivne delove" + +#: src/tables/part/ParametricPartTable.tsx:25 +msgid "Show locked parts" +msgstr "Prikaži zaključane delove" + +#: src/tables/part/ParametricPartTable.tsx:30 +msgid "Show assembly parts" +msgstr "Prikaži delove sklopa" #: src/tables/part/ParametricPartTable.tsx:82 #~ msgid "Edit parameter" #~ msgstr "Edit parameter" #: src/tables/part/ParametricPartTable.tsx:244 -msgid "Add Part Parameter" -msgstr "Dodaj parametar dela" +#~ msgid "Add Part Parameter" +#~ msgstr "Add Part Parameter" #: src/tables/part/ParametricPartTable.tsx:258 #: src/tables/part/PartParameterTable.tsx:164 #: src/tables/part/PartParameterTable.tsx:187 -msgid "Edit Part Parameter" -msgstr "Izmeni parametar dela" - -#: src/tables/part/ParametricPartTable.tsx:355 -msgid "Show active parts" -msgstr "Prikaži aktivne delove" - -#: src/tables/part/ParametricPartTable.tsx:360 -msgid "Show locked parts" -msgstr "Prikaži zaključane delove" - -#: src/tables/part/ParametricPartTable.tsx:365 -msgid "Show assembly parts" -msgstr "Prikaži delove sklopa" - -#: src/tables/part/ParametricPartTableFilters.tsx:36 -msgid "True" -msgstr "" - -#: src/tables/part/ParametricPartTableFilters.tsx:37 -msgid "False" -msgstr "" - -#: src/tables/part/ParametricPartTableFilters.tsx:47 -#: src/tables/part/ParametricPartTableFilters.tsx:80 -msgid "Select a choice" -msgstr "" - -#: src/tables/part/ParametricPartTableFilters.tsx:100 -msgid "Enter a value" -msgstr "" +#~ msgid "Edit Part Parameter" +#~ msgstr "Edit Part Parameter" #: src/tables/part/PartBuildAllocationsTable.tsx:64 msgid "Assembly IPN" @@ -10273,7 +10467,7 @@ msgid "Required Stock" msgstr "Potrebne zalihe" #: src/tables/part/PartBuildAllocationsTable.tsx:124 -#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:381 +#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:383 msgid "View Build Order" msgstr "Prikaži nalog za izradu" @@ -10332,85 +10526,22 @@ msgstr "Izmeni parametar kategorije" msgid "Delete Category Parameter" msgstr "Obriši parametar kategorije" -#: src/tables/part/PartCategoryTemplateTable.tsx:87 -msgid "Parameter Template" -msgstr "Šablon parametara" - #: src/tables/part/PartCategoryTemplateTable.tsx:93 #~ msgid "[{0}]" #~ msgstr "[{0}]" -#: src/tables/part/PartParameterTable.tsx:108 -msgid "Internal Units" -msgstr "Interne merne jedinice" - -#: src/tables/part/PartParameterTable.tsx:128 -#: src/tables/part/PartParameterTable.tsx:138 -msgid "Updated By" -msgstr "" - -#: src/tables/part/PartParameterTable.tsx:139 -msgid "Filter by user who last updated the parameter" -msgstr "" - #: src/tables/part/PartParameterTable.tsx:148 -msgid "New Part Parameter" -msgstr "Novi parametar dela" +#~ msgid "New Part Parameter" +#~ msgstr "New Part Parameter" #: src/tables/part/PartParameterTable.tsx:173 #: src/tables/part/PartParameterTable.tsx:195 -msgid "Delete Part Parameter" -msgstr "Izbriši parametar dela" +#~ msgid "Delete Part Parameter" +#~ msgstr "Delete Part Parameter" #: src/tables/part/PartParameterTable.tsx:213 -msgid "Add parameter" -msgstr "Dodaj parametar" - -#: src/tables/part/PartParameterTable.tsx:232 -msgid "Part parameters cannot be edited, as the part is locked" -msgstr "Parametri dela ne mogu da se izmene, deo je zaključan" - -#: src/tables/part/PartParameterTemplateTable.tsx:36 -msgid "Checkbox" -msgstr "Potvrdni okvir" - -#: src/tables/part/PartParameterTemplateTable.tsx:37 -msgid "Show checkbox templates" -msgstr "Prikaži šablone sa potvrdnim okvirima" - -#: src/tables/part/PartParameterTemplateTable.tsx:41 -msgid "Has choices" -msgstr "Ima izbore" - -#: src/tables/part/PartParameterTemplateTable.tsx:42 -msgid "Show templates with choices" -msgstr "Prikaži šablone sa izborima" - -#: src/tables/part/PartParameterTemplateTable.tsx:46 -#: src/tables/part/PartTable.tsx:245 -msgid "Has Units" -msgstr "Ima merne jedinice" - -#: src/tables/part/PartParameterTemplateTable.tsx:47 -msgid "Show templates with units" -msgstr "Prikaži šablon sa mernim jedinicama" - -#: src/tables/part/PartParameterTemplateTable.tsx:91 -#: src/tables/part/PartParameterTemplateTable.tsx:166 -msgid "Add Parameter Template" -msgstr "Dodaj šablon parametara" - -#: src/tables/part/PartParameterTemplateTable.tsx:105 -msgid "Duplicate Parameter Template" -msgstr "" - -#: src/tables/part/PartParameterTemplateTable.tsx:117 -msgid "Edit Parameter Template" -msgstr "Izmeni šablon parametara" - -#: src/tables/part/PartParameterTemplateTable.tsx:128 -msgid "Delete Parameter Template" -msgstr "Obriši šablon parametara" +#~ msgid "Add parameter" +#~ msgstr "Add parameter" #: src/tables/part/PartParameterTemplateTable.tsx:141 #~ msgid "Add parameter template" @@ -10430,7 +10561,7 @@ msgid "Show received items" msgstr "Prikaži primljene stavke" #: src/tables/part/PartSalesAllocationsTable.tsx:90 -#: src/tables/sales/SalesOrderShipmentTable.tsx:218 +#: src/tables/sales/SalesOrderShipmentTable.tsx:263 msgid "View Sales Order" msgstr "Prikaži narudžbenicu" @@ -10617,8 +10748,8 @@ msgstr "" #: src/tables/part/PartTestResultTable.tsx:103 #: src/tables/part/PartTestResultTable.tsx:181 -#: src/tables/part/PartTestResultTable.tsx:320 -#: src/tables/part/PartTestResultTable.tsx:334 +#: src/tables/part/PartTestResultTable.tsx:328 +#: src/tables/part/PartTestResultTable.tsx:342 #: src/tables/stock/StockItemTestResultTable.tsx:296 #: src/tables/stock/StockItemTestResultTable.tsx:368 #: src/tables/stock/StockItemTestResultTable.tsx:429 @@ -10643,7 +10774,7 @@ msgstr "" msgid "No Result" msgstr "Nema rezultata" -#: src/tables/part/PartTestResultTable.tsx:298 +#: src/tables/part/PartTestResultTable.tsx:306 msgid "Show build outputs currently in production" msgstr "Prikaži naloge za izradu koji su u produkciji" @@ -11013,36 +11144,45 @@ msgstr "Instalirano" #~ msgid "Parameter updated" #~ msgstr "Parameter updated" -#: src/tables/purchasing/ManufacturerPartParameterTable.tsx:63 -#: src/tables/purchasing/ManufacturerPartParameterTable.tsx:112 -msgid "Add Parameter" -msgstr "Dodaj parametar" - #: src/tables/purchasing/ManufacturerPartParameterTable.tsx:73 #~ msgid "Parameter deleted" #~ msgstr "Parameter deleted" -#: src/tables/purchasing/ManufacturerPartParameterTable.tsx:74 -msgid "Edit Parameter" -msgstr "Izmeni parametar" - #: src/tables/purchasing/ManufacturerPartParameterTable.tsx:74 #~ msgid "Are you sure you want to delete this parameter?" #~ msgstr "Are you sure you want to delete this parameter?" -#: src/tables/purchasing/ManufacturerPartParameterTable.tsx:82 -msgid "Delete Parameter" -msgstr "Obriši parametar" - -#: src/tables/purchasing/ManufacturerPartTable.tsx:63 -#~ msgid "Create Manufacturer Part" -#~ msgstr "Create Manufacturer Part" - +#: src/tables/purchasing/ManufacturerPartParametricTable.tsx:34 #: src/tables/purchasing/ManufacturerPartTable.tsx:82 #: src/tables/purchasing/SupplierPartTable.tsx:99 msgid "MPN" msgstr "Broj dela proizvođača" +#: src/tables/purchasing/ManufacturerPartParametricTable.tsx:44 +#: src/tables/purchasing/ManufacturerPartTable.tsx:134 +#: src/tables/purchasing/SupplierPartTable.tsx:220 +msgid "Active Part" +msgstr "Aktivan deo" + +#: src/tables/purchasing/ManufacturerPartParametricTable.tsx:45 +#: src/tables/purchasing/ManufacturerPartTable.tsx:135 +msgid "Show manufacturer parts for active internal parts." +msgstr "" + +#: src/tables/purchasing/ManufacturerPartParametricTable.tsx:50 +#: src/tables/purchasing/ManufacturerPartTable.tsx:140 +msgid "Active Manufacturer" +msgstr "" + +#: src/tables/purchasing/ManufacturerPartParametricTable.tsx:51 +#: src/tables/purchasing/ManufacturerPartTable.tsx:142 +msgid "Show manufacturer parts for active manufacturers." +msgstr "" + +#: src/tables/purchasing/ManufacturerPartTable.tsx:63 +#~ msgid "Create Manufacturer Part" +#~ msgstr "Create Manufacturer Part" + #: src/tables/purchasing/ManufacturerPartTable.tsx:100 #~ msgid "Manufacturer part updated" #~ msgstr "Manufacturer part updated" @@ -11055,25 +11195,8 @@ msgstr "Broj dela proizvođača" #~ msgid "Are you sure you want to remove this manufacturer part?" #~ msgstr "Are you sure you want to remove this manufacturer part?" -#: src/tables/purchasing/ManufacturerPartTable.tsx:134 -#: src/tables/purchasing/SupplierPartTable.tsx:220 -msgid "Active Part" -msgstr "Aktivan deo" - -#: src/tables/purchasing/ManufacturerPartTable.tsx:135 -msgid "Show manufacturer parts for active internal parts." -msgstr "" - -#: src/tables/purchasing/ManufacturerPartTable.tsx:140 -msgid "Active Manufacturer" -msgstr "" - -#: src/tables/purchasing/ManufacturerPartTable.tsx:142 -msgid "Show manufacturer parts for active manufacturers." -msgstr "" - #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:115 -#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:397 +#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:399 msgid "Import Line Items" msgstr "Uvezi stavke" @@ -11099,11 +11222,11 @@ msgstr "Prikaži stavke koje su primljene" #~ msgid "Add line item" #~ msgstr "Add line item" -#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:350 +#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:352 msgid "Receive line item" msgstr "Primi stavku" -#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:414 +#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:416 msgid "Receive items" msgstr "Primi stavke" @@ -11201,25 +11324,25 @@ msgid "Not shipped" msgstr "Nije isporučeno" #: src/tables/sales/SalesOrderAllocationTable.tsx:211 -#: src/tables/sales/SalesOrderAllocationTable.tsx:229 +#: src/tables/sales/SalesOrderAllocationTable.tsx:235 msgid "Edit Allocation" msgstr "Izmeni alokaciju" #: src/tables/sales/SalesOrderAllocationTable.tsx:218 #: src/tables/sales/SalesOrderAllocationTable.tsx:241 -msgid "Delete Allocation" -msgstr "Obriši alokaciju" +#~ msgid "Delete Allocation" +#~ msgstr "Delete Allocation" -#: src/tables/sales/SalesOrderAllocationTable.tsx:252 -#: src/tables/sales/SalesOrderAllocationTable.tsx:253 +#: src/tables/sales/SalesOrderAllocationTable.tsx:261 +#: src/tables/sales/SalesOrderAllocationTable.tsx:262 msgid "View Shipment" msgstr "Pogledaj isporuku" -#: src/tables/sales/SalesOrderAllocationTable.tsx:308 +#: src/tables/sales/SalesOrderAllocationTable.tsx:317 msgid "Assign to Shipment" msgstr "" -#: src/tables/sales/SalesOrderAllocationTable.tsx:324 +#: src/tables/sales/SalesOrderAllocationTable.tsx:333 msgid "Assign to shipment" msgstr "" @@ -11259,35 +11382,35 @@ msgstr "Naruči zalihe" #~ msgid "Delete Shipment" #~ msgstr "Delete Shipment" -#: src/tables/sales/SalesOrderShipmentTable.tsx:72 +#: src/tables/sales/SalesOrderShipmentTable.tsx:79 msgid "Create Shipment" msgstr "Kreiraj isporuku" -#: src/tables/sales/SalesOrderShipmentTable.tsx:143 +#: src/tables/sales/SalesOrderShipmentTable.tsx:164 msgid "Items" msgstr "Stavke" -#: src/tables/sales/SalesOrderShipmentTable.tsx:203 +#: src/tables/sales/SalesOrderShipmentTable.tsx:248 msgid "Edit shipment" msgstr "Izmeni isporuku" -#: src/tables/sales/SalesOrderShipmentTable.tsx:211 +#: src/tables/sales/SalesOrderShipmentTable.tsx:256 msgid "Cancel shipment" msgstr "Otkaži isporuku" -#: src/tables/sales/SalesOrderShipmentTable.tsx:241 +#: src/tables/sales/SalesOrderShipmentTable.tsx:286 msgid "Add shipment" msgstr "Dodaj isporuku" -#: src/tables/sales/SalesOrderShipmentTable.tsx:255 +#: src/tables/sales/SalesOrderShipmentTable.tsx:300 msgid "Show shipments which have been checked" msgstr "" -#: src/tables/sales/SalesOrderShipmentTable.tsx:260 +#: src/tables/sales/SalesOrderShipmentTable.tsx:305 msgid "Show shipments which have been shipped" msgstr "Pokaži isporuke koje su isporučene" -#: src/tables/sales/SalesOrderShipmentTable.tsx:265 +#: src/tables/sales/SalesOrderShipmentTable.tsx:310 msgid "Show shipments which have been delivered" msgstr "Pokaži isporuke koje su dostavljene" @@ -11621,11 +11744,6 @@ msgstr "Uploadovano" msgid "Imported Rows" msgstr "Učitani redovi" -#: src/tables/settings/ImportSessionTable.tsx:111 -#: src/tables/settings/TemplateTable.tsx:368 -msgid "Model Type" -msgstr "Tip modela" - #: src/tables/settings/ImportSessionTable.tsx:112 #: src/tables/settings/TemplateTable.tsx:369 msgid "Filter by target model type" diff --git a/src/frontend/src/locales/sv/messages.po b/src/frontend/src/locales/sv/messages.po index d1fb0b10a1..80fc2a7d63 100644 --- a/src/frontend/src/locales/sv/messages.po +++ b/src/frontend/src/locales/sv/messages.po @@ -8,7 +8,7 @@ msgstr "" "Language: sv\n" "Project-Id-Version: inventree\n" "Report-Msgid-Bugs-To: \n" -"PO-Revision-Date: 2025-11-19 19:39\n" +"PO-Revision-Date: 2025-12-07 07:36\n" "Last-Translator: \n" "Language-Team: Swedish\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" @@ -30,7 +30,7 @@ msgid "Edit" msgstr "Redigera" #: lib/components/RowActions.tsx:56 -#: src/components/forms/ApiForm.tsx:735 +#: src/components/forms/ApiForm.tsx:754 #: src/components/items/ActionDropdown.tsx:257 #: src/components/items/RoleTable.tsx:155 #: src/hooks/UseForm.tsx:164 @@ -56,24 +56,24 @@ msgstr "Avbryt" #: lib/components/RowActions.tsx:136 #: src/components/nav/NavigationDrawer.tsx:190 -#: src/forms/PurchaseOrderForms.tsx:802 +#: src/forms/PurchaseOrderForms.tsx:854 #: src/forms/StockForms.tsx:796 #: src/forms/StockForms.tsx:843 -#: src/forms/StockForms.tsx:889 -#: src/forms/StockForms.tsx:928 -#: src/forms/StockForms.tsx:964 -#: src/forms/StockForms.tsx:1050 +#: src/forms/StockForms.tsx:896 +#: src/forms/StockForms.tsx:942 +#: src/forms/StockForms.tsx:980 +#: src/forms/StockForms.tsx:1066 #: src/pages/Index/Settings/AccountSettings/MFASettings.tsx:962 msgid "Actions" msgstr "Åtgärder" #: lib/components/SearchInput.tsx:34 -#: src/components/forms/fields/RelatedModelField.tsx:408 +#: src/components/forms/fields/RelatedModelField.tsx:479 #: src/components/nav/Header.tsx:169 #: src/components/wizards/ImportPartWizard.tsx:200 #: src/components/wizards/ImportPartWizard.tsx:233 -#: src/pages/Index/Settings/UserSettings.tsx:74 -#: src/pages/part/PartDetail.tsx:1155 +#: src/pages/Index/Settings/UserSettings.tsx:75 +#: src/pages/part/PartDetail.tsx:1176 msgid "Search" msgstr "Sök" @@ -95,7 +95,7 @@ msgstr "Ja" msgid "No" msgstr "Nej" -#: lib/enums/ModelInformation.tsx:28 +#: lib/enums/ModelInformation.tsx:29 #: src/components/wizards/OrderPartsWizard.tsx:279 #: src/forms/BuildForms.tsx:332 #: src/forms/BuildForms.tsx:407 @@ -103,208 +103,234 @@ msgstr "Nej" #: src/forms/BuildForms.tsx:630 #: src/forms/BuildForms.tsx:793 #: src/forms/BuildForms.tsx:896 -#: src/forms/PurchaseOrderForms.tsx:798 +#: src/forms/PurchaseOrderForms.tsx:850 #: src/forms/ReturnOrderForms.tsx:242 -#: src/forms/SalesOrderForms.tsx:305 +#: src/forms/SalesOrderForms.tsx:384 #: src/forms/StockForms.tsx:360 #: src/forms/StockForms.tsx:791 #: src/forms/StockForms.tsx:838 -#: src/forms/StockForms.tsx:884 -#: src/forms/StockForms.tsx:923 -#: src/forms/StockForms.tsx:959 -#: src/forms/StockForms.tsx:1002 -#: src/forms/StockForms.tsx:1046 -#: src/forms/StockForms.tsx:1094 -#: src/forms/StockForms.tsx:1138 -#: src/pages/build/BuildDetail.tsx:200 -#: src/pages/part/PartDetail.tsx:1207 +#: src/forms/StockForms.tsx:891 +#: src/forms/StockForms.tsx:937 +#: src/forms/StockForms.tsx:975 +#: src/forms/StockForms.tsx:1018 +#: src/forms/StockForms.tsx:1062 +#: src/forms/StockForms.tsx:1110 +#: src/forms/StockForms.tsx:1154 +#: src/pages/build/BuildDetail.tsx:201 +#: src/pages/part/PartDetail.tsx:1228 #: src/tables/ColumnRenderers.tsx:91 +#: src/tables/part/PartTestResultTable.tsx:247 #: src/tables/part/RelatedPartTable.tsx:53 #: src/tables/stock/StockTrackingTable.tsx:87 msgid "Part" msgstr "Artkel" -#: lib/enums/ModelInformation.tsx:29 +#: lib/enums/ModelInformation.tsx:30 #: lib/enums/Roles.tsx:35 #: src/components/nav/NavigationDrawer.tsx:70 #: src/defaults/links.tsx:36 -#: src/pages/Index/Settings/SystemSettings.tsx:190 -#: src/pages/part/CategoryDetail.tsx:132 -#: src/pages/part/CategoryDetail.tsx:277 -#: src/pages/part/CategoryDetail.tsx:323 -#: src/pages/part/CategoryDetail.tsx:354 -#: src/pages/part/PartDetail.tsx:965 +#: src/pages/Index/Settings/SystemSettings.tsx:197 +#: src/pages/part/CategoryDetail.tsx:135 +#: src/pages/part/CategoryDetail.tsx:285 +#: src/pages/part/CategoryDetail.tsx:340 +#: src/pages/part/CategoryDetail.tsx:371 +#: src/pages/part/PartDetail.tsx:978 msgid "Parts" msgstr "Artiklar" #: lib/enums/ModelInformation.tsx:37 #: src/pages/Index/Settings/AdminCenter/PartParameterPanel.tsx:13 -msgid "Part Parameter Template" -msgstr "Parametermall för Artiklar" +#~ msgid "Part Parameter Template" +#~ msgstr "Part Parameter Template" #: lib/enums/ModelInformation.tsx:38 -msgid "Part Parameter Templates" -msgstr "Parametermallar för Artiklar" +#~ msgid "Part Parameter Templates" +#~ msgstr "Part Parameter Templates" + +#: lib/enums/ModelInformation.tsx:39 +msgid "Parameter" +msgstr "" + +#: lib/enums/ModelInformation.tsx:40 +#: src/components/panels/ParametersPanel.tsx:19 +#: src/components/wizards/ImportPartWizard.tsx:807 +#: src/pages/Index/Settings/AdminCenter/Index.tsx:195 +#: src/pages/Index/Settings/SystemSettings.tsx:191 +#: src/pages/part/PartDetail.tsx:943 +msgid "Parameters" +msgstr "Parametrar" #: lib/enums/ModelInformation.tsx:45 +#: src/tables/part/PartCategoryTemplateTable.tsx:87 +msgid "Parameter Template" +msgstr "" + +#: lib/enums/ModelInformation.tsx:46 +#: src/pages/Index/Settings/AdminCenter/ParameterPanel.tsx:13 +msgid "Parameter Templates" +msgstr "" + +#: lib/enums/ModelInformation.tsx:52 msgid "Part Test Template" msgstr "Testmall för artikel" -#: lib/enums/ModelInformation.tsx:46 +#: lib/enums/ModelInformation.tsx:53 msgid "Part Test Templates" msgstr "Testmall för artiklar" -#: lib/enums/ModelInformation.tsx:52 +#: lib/enums/ModelInformation.tsx:59 #: src/components/wizards/OrderPartsWizard.tsx:290 -#: src/pages/company/SupplierPartDetail.tsx:413 +#: src/pages/company/SupplierPartDetail.tsx:418 #: src/pages/stock/StockDetail.tsx:289 -#: src/tables/build/BuildAllocatedStockTable.tsx:155 +#: src/tables/build/BuildAllocatedStockTable.tsx:152 #: src/tables/part/PartPurchaseOrdersTable.tsx:50 +#: src/tables/purchasing/SupplierPartParametricTable.tsx:29 #: src/tables/purchasing/SupplierPartTable.tsx:83 #: src/tables/stock/StockItemTable.tsx:247 msgid "Supplier Part" msgstr "Leverantörsartikel" -#: lib/enums/ModelInformation.tsx:53 -#: src/pages/purchasing/PurchasingIndex.tsx:92 +#: lib/enums/ModelInformation.tsx:60 +#: src/pages/purchasing/PurchasingIndex.tsx:128 msgid "Supplier Parts" msgstr "Leverantörsartikel" -#: lib/enums/ModelInformation.tsx:61 -#: src/pages/company/ManufacturerPartDetail.tsx:297 -#: src/pages/company/SupplierPartDetail.tsx:161 +#: lib/enums/ModelInformation.tsx:69 +#: src/pages/company/ManufacturerPartDetail.tsx:288 +#: src/pages/company/SupplierPartDetail.tsx:162 #: src/tables/part/PartPurchaseOrdersTable.tsx:56 #: src/tables/stock/StockItemTable.tsx:253 msgid "Manufacturer Part" msgstr "Tillverkarens artiklar" -#: lib/enums/ModelInformation.tsx:62 -#: src/pages/purchasing/PurchasingIndex.tsx:109 +#: lib/enums/ModelInformation.tsx:70 +#: src/pages/purchasing/PurchasingIndex.tsx:177 msgid "Manufacturer Parts" msgstr "Tillverkarens artiklar" -#: lib/enums/ModelInformation.tsx:70 -#: src/pages/part/CategoryDetail.tsx:354 +#: lib/enums/ModelInformation.tsx:79 +#: src/pages/part/CategoryDetail.tsx:371 #: src/tables/Filter.tsx:389 msgid "Part Category" msgstr "Artikel Kategori" -#: lib/enums/ModelInformation.tsx:71 +#: lib/enums/ModelInformation.tsx:80 #: lib/enums/Roles.tsx:37 -#: src/pages/part/CategoryDetail.tsx:271 -#: src/pages/part/CategoryDetail.tsx:345 -#: src/pages/part/PartDetail.tsx:1196 +#: src/pages/part/CategoryDetail.tsx:279 +#: src/pages/part/CategoryDetail.tsx:362 +#: src/pages/part/PartDetail.tsx:1217 msgid "Part Categories" msgstr "Artikelkategorier" -#: lib/enums/ModelInformation.tsx:79 +#: lib/enums/ModelInformation.tsx:88 #: src/forms/BuildForms.tsx:473 #: src/forms/BuildForms.tsx:633 #: src/forms/BuildForms.tsx:794 -#: src/forms/SalesOrderForms.tsx:307 +#: src/forms/SalesOrderForms.tsx:386 #: src/pages/stock/StockDetail.tsx:1005 -#: src/tables/part/PartTestResultTable.tsx:248 +#: src/tables/part/PartTestResultTable.tsx:256 #: src/tables/stock/StockTrackingTable.tsx:48 #: src/tables/stock/StockTrackingTable.tsx:55 msgid "Stock Item" msgstr "Lager artikel" -#: lib/enums/ModelInformation.tsx:80 +#: lib/enums/ModelInformation.tsx:89 #: lib/enums/Roles.tsx:45 -#: src/pages/company/CompanyDetail.tsx:210 -#: src/pages/part/CategoryDetail.tsx:291 +#: src/pages/company/CompanyDetail.tsx:211 +#: src/pages/part/CategoryDetail.tsx:314 #: src/pages/part/PartStockHistoryDetail.tsx:101 #: src/pages/stock/LocationDetail.tsx:121 #: src/pages/stock/LocationDetail.tsx:180 msgid "Stock Items" msgstr "Artikel i lager" -#: lib/enums/ModelInformation.tsx:88 +#: lib/enums/ModelInformation.tsx:98 #: lib/enums/Roles.tsx:47 #: src/pages/stock/LocationDetail.tsx:420 msgid "Stock Location" msgstr "Lagerplats" -#: lib/enums/ModelInformation.tsx:89 +#: lib/enums/ModelInformation.tsx:99 #: src/pages/stock/LocationDetail.tsx:174 #: src/pages/stock/LocationDetail.tsx:412 #: src/pages/stock/StockDetail.tsx:996 msgid "Stock Locations" msgstr "Lagerplats" -#: lib/enums/ModelInformation.tsx:97 +#: lib/enums/ModelInformation.tsx:108 msgid "Stock Location Type" msgstr "Lagerplatstyper" -#: lib/enums/ModelInformation.tsx:98 +#: lib/enums/ModelInformation.tsx:109 msgid "Stock Location Types" msgstr "Lagerplatstyper" -#: lib/enums/ModelInformation.tsx:103 -#: src/pages/Index/Settings/SystemSettings.tsx:248 -#: src/pages/part/PartDetail.tsx:911 +#: lib/enums/ModelInformation.tsx:114 +#: src/pages/Index/Settings/SystemSettings.tsx:254 +#: src/pages/part/PartDetail.tsx:900 msgid "Stock History" msgstr "Lagerhistorik" -#: lib/enums/ModelInformation.tsx:104 +#: lib/enums/ModelInformation.tsx:115 msgid "Stock Histories" msgstr "Lagerhistorik" -#: lib/enums/ModelInformation.tsx:109 +#: lib/enums/ModelInformation.tsx:120 msgid "Build" msgstr "Bygg" -#: lib/enums/ModelInformation.tsx:110 +#: lib/enums/ModelInformation.tsx:121 msgid "Builds" msgstr "Tillverkningar" -#: lib/enums/ModelInformation.tsx:118 +#: lib/enums/ModelInformation.tsx:130 msgid "Build Line" msgstr "Tillverknings rad" -#: lib/enums/ModelInformation.tsx:119 +#: lib/enums/ModelInformation.tsx:131 msgid "Build Lines" msgstr "Tillverknings rader" -#: lib/enums/ModelInformation.tsx:126 +#: lib/enums/ModelInformation.tsx:138 msgid "Build Item" msgstr "Tillverknings artikel" -#: lib/enums/ModelInformation.tsx:127 +#: lib/enums/ModelInformation.tsx:139 msgid "Build Items" msgstr "Tillverknings artiklar" -#: lib/enums/ModelInformation.tsx:132 -#: src/pages/company/CompanyDetail.tsx:340 +#: lib/enums/ModelInformation.tsx:144 +#: src/pages/company/CompanyDetail.tsx:345 #: src/tables/company/CompanyTable.tsx:47 #: src/tables/company/ContactTable.tsx:67 +#: src/tables/company/ParametricCompanyTable.tsx:18 msgid "Company" msgstr "Företag" -#: lib/enums/ModelInformation.tsx:133 +#: lib/enums/ModelInformation.tsx:145 msgid "Companies" msgstr "Företag" -#: lib/enums/ModelInformation.tsx:140 -#: src/pages/build/BuildDetail.tsx:316 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:253 -#: src/pages/sales/ReturnOrderDetail.tsx:231 -#: src/pages/sales/SalesOrderDetail.tsx:224 +#: lib/enums/ModelInformation.tsx:152 +#: src/pages/build/BuildDetail.tsx:317 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:254 +#: src/pages/sales/ReturnOrderDetail.tsx:232 +#: src/pages/sales/SalesOrderDetail.tsx:225 #: src/tables/ColumnRenderers.tsx:362 #: src/tables/Filter.tsx:286 #: src/tables/TableHoverCard.tsx:101 msgid "Project Code" msgstr "Projektkod" -#: lib/enums/ModelInformation.tsx:141 +#: lib/enums/ModelInformation.tsx:153 #: src/pages/Index/Settings/AdminCenter/Index.tsx:172 msgid "Project Codes" msgstr "Projektkoder" -#: lib/enums/ModelInformation.tsx:147 +#: lib/enums/ModelInformation.tsx:159 #: src/components/wizards/OrderPartsWizard.tsx:338 #: src/pages/part/pricing/PurchaseHistoryPanel.tsx:33 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:550 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:555 #: src/pages/stock/StockDetail.tsx:352 #: src/tables/part/PartPurchaseOrdersTable.tsx:32 #: src/tables/stock/StockItemTable.tsx:239 @@ -312,117 +338,117 @@ msgstr "Projektkoder" msgid "Purchase Order" msgstr "Inköpsorder" -#: lib/enums/ModelInformation.tsx:148 +#: lib/enums/ModelInformation.tsx:160 #: lib/enums/Roles.tsx:39 #: src/defaults/actions.tsx:104 -#: src/pages/Index/Settings/SystemSettings.tsx:283 -#: src/pages/company/CompanyDetail.tsx:203 -#: src/pages/company/SupplierPartDetail.tsx:266 -#: src/pages/part/PartDetail.tsx:875 -#: src/pages/purchasing/PurchasingIndex.tsx:60 +#: src/pages/Index/Settings/SystemSettings.tsx:289 +#: src/pages/company/CompanyDetail.tsx:204 +#: src/pages/company/SupplierPartDetail.tsx:267 +#: src/pages/part/PartDetail.tsx:864 +#: src/pages/purchasing/PurchasingIndex.tsx:66 msgid "Purchase Orders" msgstr "Inköpsorder" -#: lib/enums/ModelInformation.tsx:156 +#: lib/enums/ModelInformation.tsx:169 msgid "Purchase Order Line" msgstr "Inköpsorderrad" -#: lib/enums/ModelInformation.tsx:157 +#: lib/enums/ModelInformation.tsx:170 msgid "Purchase Order Lines" msgstr "Inköpsorderrader" -#: lib/enums/ModelInformation.tsx:162 -#: src/pages/build/BuildDetail.tsx:289 +#: lib/enums/ModelInformation.tsx:175 +#: src/pages/build/BuildDetail.tsx:290 #: src/pages/part/pricing/SaleHistoryPanel.tsx:24 -#: src/pages/sales/SalesOrderDetail.tsx:614 -#: src/pages/sales/SalesOrderShipmentDetail.tsx:105 -#: src/pages/sales/SalesOrderShipmentDetail.tsx:478 +#: src/pages/sales/SalesOrderDetail.tsx:619 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:103 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:446 #: src/pages/stock/StockDetail.tsx:361 #: src/tables/part/PartSalesAllocationsTable.tsx:41 #: src/tables/sales/SalesOrderAllocationTable.tsx:110 -#: src/tables/sales/SalesOrderShipmentTable.tsx:122 +#: src/tables/sales/SalesOrderShipmentTable.tsx:143 #: src/tables/stock/StockTrackingTable.tsx:131 msgid "Sales Order" msgstr "Försäljningsorder" -#: lib/enums/ModelInformation.tsx:163 +#: lib/enums/ModelInformation.tsx:176 #: lib/enums/Roles.tsx:43 #: src/defaults/actions.tsx:114 -#: src/pages/Index/Settings/SystemSettings.tsx:299 -#: src/pages/company/CompanyDetail.tsx:223 -#: src/pages/part/PartDetail.tsx:887 -#: src/pages/sales/SalesIndex.tsx:84 +#: src/pages/Index/Settings/SystemSettings.tsx:305 +#: src/pages/company/CompanyDetail.tsx:224 +#: src/pages/part/PartDetail.tsx:876 +#: src/pages/sales/SalesIndex.tsx:53 msgid "Sales Orders" msgstr "Försäljningsorder" -#: lib/enums/ModelInformation.tsx:171 -#: src/pages/sales/SalesOrderShipmentDetail.tsx:477 +#: lib/enums/ModelInformation.tsx:185 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:445 msgid "Sales Order Shipment" msgstr "Försäljningsorder leverans" -#: lib/enums/ModelInformation.tsx:172 +#: lib/enums/ModelInformation.tsx:186 msgid "Sales Order Shipments" msgstr "Försäljningsorder leveranser" -#: lib/enums/ModelInformation.tsx:179 -#: src/pages/sales/ReturnOrderDetail.tsx:549 +#: lib/enums/ModelInformation.tsx:194 +#: src/pages/sales/ReturnOrderDetail.tsx:554 #: src/tables/stock/StockTrackingTable.tsx:142 msgid "Return Order" msgstr "Returorder" -#: lib/enums/ModelInformation.tsx:180 +#: lib/enums/ModelInformation.tsx:195 #: lib/enums/Roles.tsx:41 #: src/defaults/actions.tsx:125 -#: src/pages/Index/Settings/SystemSettings.tsx:316 -#: src/pages/company/CompanyDetail.tsx:230 -#: src/pages/part/PartDetail.tsx:894 -#: src/pages/sales/SalesIndex.tsx:117 +#: src/pages/Index/Settings/SystemSettings.tsx:322 +#: src/pages/company/CompanyDetail.tsx:231 +#: src/pages/part/PartDetail.tsx:883 +#: src/pages/sales/SalesIndex.tsx:99 msgid "Return Orders" msgstr "Returorder" -#: lib/enums/ModelInformation.tsx:188 +#: lib/enums/ModelInformation.tsx:204 msgid "Return Order Line Item" msgstr "Rad för returorder" -#: lib/enums/ModelInformation.tsx:189 +#: lib/enums/ModelInformation.tsx:205 msgid "Return Order Line Items" msgstr "Rad för returordrar" -#: lib/enums/ModelInformation.tsx:194 +#: lib/enums/ModelInformation.tsx:210 #: src/tables/company/AddressTable.tsx:52 msgid "Address" msgstr "Adress" -#: lib/enums/ModelInformation.tsx:195 -#: src/pages/company/CompanyDetail.tsx:264 +#: lib/enums/ModelInformation.tsx:211 +#: src/pages/company/CompanyDetail.tsx:265 msgid "Addresses" msgstr "Adresser" -#: lib/enums/ModelInformation.tsx:201 +#: lib/enums/ModelInformation.tsx:217 #: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:89 #: src/pages/core/UserDetail.tsx:135 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:229 -#: src/pages/sales/ReturnOrderDetail.tsx:207 -#: src/pages/sales/SalesOrderDetail.tsx:200 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:230 +#: src/pages/sales/ReturnOrderDetail.tsx:208 +#: src/pages/sales/SalesOrderDetail.tsx:201 msgid "Contact" msgstr "Kontakt" -#: lib/enums/ModelInformation.tsx:202 -#: src/pages/company/CompanyDetail.tsx:258 +#: lib/enums/ModelInformation.tsx:218 +#: src/pages/company/CompanyDetail.tsx:259 #: src/pages/core/CoreIndex.tsx:33 msgid "Contacts" msgstr "Kontakter" -#: lib/enums/ModelInformation.tsx:208 +#: lib/enums/ModelInformation.tsx:224 #: src/tables/ColumnRenderers.tsx:444 msgid "Owner" msgstr "Ägare" -#: lib/enums/ModelInformation.tsx:209 +#: lib/enums/ModelInformation.tsx:225 msgid "Owners" msgstr "Ägare" -#: lib/enums/ModelInformation.tsx:215 +#: lib/enums/ModelInformation.tsx:231 #: src/pages/Auth/ChangePassword.tsx:36 #: src/pages/core/UserDetail.tsx:220 #: src/tables/ColumnRenderers.tsx:395 @@ -437,7 +463,7 @@ msgstr "Ägare" msgid "User" msgstr "Användare" -#: lib/enums/ModelInformation.tsx:216 +#: lib/enums/ModelInformation.tsx:232 #: src/components/nav/NavigationDrawer.tsx:105 #: src/pages/Index/Settings/AdminCenter/UserManagementPanel.tsx:15 #: src/pages/core/CoreIndex.tsx:21 @@ -445,12 +471,12 @@ msgstr "Användare" msgid "Users" msgstr "Användare" -#: lib/enums/ModelInformation.tsx:222 +#: lib/enums/ModelInformation.tsx:238 #: src/pages/core/GroupDetail.tsx:78 msgid "Group" msgstr "Grupp" -#: lib/enums/ModelInformation.tsx:223 +#: lib/enums/ModelInformation.tsx:239 #: src/components/nav/NavigationDrawer.tsx:111 #: src/pages/Index/Settings/AdminCenter/UserManagementPanel.tsx:23 #: src/pages/core/CoreIndex.tsx:27 @@ -460,64 +486,64 @@ msgstr "Grupp" msgid "Groups" msgstr "Grupper" -#: lib/enums/ModelInformation.tsx:230 +#: lib/enums/ModelInformation.tsx:246 msgid "Import Session" msgstr "" -#: lib/enums/ModelInformation.tsx:231 +#: lib/enums/ModelInformation.tsx:247 msgid "Import Sessions" msgstr "Importera sessioner" -#: lib/enums/ModelInformation.tsx:238 +#: lib/enums/ModelInformation.tsx:254 msgid "Label Template" msgstr "Etikettmall" -#: lib/enums/ModelInformation.tsx:239 +#: lib/enums/ModelInformation.tsx:255 #: src/pages/Index/Settings/AdminCenter/Index.tsx:209 msgid "Label Templates" msgstr "Etikettmallar" -#: lib/enums/ModelInformation.tsx:246 +#: lib/enums/ModelInformation.tsx:262 msgid "Report Template" msgstr "Rapportmall" -#: lib/enums/ModelInformation.tsx:247 +#: lib/enums/ModelInformation.tsx:263 #: src/pages/Index/Settings/AdminCenter/Index.tsx:215 msgid "Report Templates" msgstr "Rapportmallar" -#: lib/enums/ModelInformation.tsx:254 +#: lib/enums/ModelInformation.tsx:270 #: src/components/plugins/PluginDrawer.tsx:145 msgid "Plugin Configuration" msgstr "Plugin-konfiguration" -#: lib/enums/ModelInformation.tsx:255 +#: lib/enums/ModelInformation.tsx:271 msgid "Plugin Configurations" msgstr "Plugin-konfigurationer" -#: lib/enums/ModelInformation.tsx:262 +#: lib/enums/ModelInformation.tsx:278 msgid "Content Type" msgstr "Innehållstyp" -#: lib/enums/ModelInformation.tsx:263 +#: lib/enums/ModelInformation.tsx:279 msgid "Content Types" msgstr "Innehållstyper" -#: lib/enums/ModelInformation.tsx:268 +#: lib/enums/ModelInformation.tsx:284 msgid "Selection List" msgstr "" -#: lib/enums/ModelInformation.tsx:269 -#: src/pages/Index/Settings/AdminCenter/PartParameterPanel.tsx:21 +#: lib/enums/ModelInformation.tsx:285 +#: src/pages/Index/Settings/AdminCenter/ParameterPanel.tsx:21 msgid "Selection Lists" msgstr "" -#: lib/enums/ModelInformation.tsx:275 +#: lib/enums/ModelInformation.tsx:291 #: src/components/barcodes/BarcodeInput.tsx:114 #: src/components/dashboard/DashboardLayout.tsx:281 #: src/components/editors/NotesEditor.tsx:74 #: src/components/editors/TemplateEditor/TemplateEditor.tsx:158 -#: src/components/forms/fields/ApiFormField.tsx:273 +#: src/components/forms/fields/ApiFormField.tsx:237 #: src/components/forms/fields/TableField.tsx:45 #: src/components/importer/ImportDataSelector.tsx:192 #: src/components/importer/ImporterColumnSelector.tsx:234 @@ -528,7 +554,7 @@ msgstr "" #: src/components/nav/SearchDrawer.tsx:572 #: src/components/settings/SettingList.tsx:139 #: src/components/wizards/ImportPartWizard.tsx:574 -#: src/components/wizards/ImportPartWizard.tsx:718 +#: src/components/wizards/ImportPartWizard.tsx:719 #: src/forms/BomForms.tsx:69 #: src/functions/auth.tsx:643 #: src/pages/ErrorPage.tsx:11 @@ -547,9 +573,9 @@ msgstr "" msgid "Error" msgstr "Fel" -#: lib/enums/ModelInformation.tsx:276 +#: lib/enums/ModelInformation.tsx:292 #: src/tables/machine/MachineListTable.tsx:402 -#: src/tables/machine/MachineTypeTable.tsx:299 +#: src/tables/machine/MachineTypeTable.tsx:297 msgid "Errors" msgstr "Fel" @@ -559,10 +585,10 @@ msgstr "Admin" #: lib/enums/Roles.tsx:33 #: src/defaults/actions.tsx:135 -#: src/pages/Index/Settings/SystemSettings.tsx:264 -#: src/pages/build/BuildIndex.tsx:75 -#: src/pages/part/PartDetail.tsx:904 -#: src/pages/sales/SalesOrderDetail.tsx:421 +#: src/pages/Index/Settings/SystemSettings.tsx:270 +#: src/pages/build/BuildIndex.tsx:67 +#: src/pages/part/PartDetail.tsx:893 +#: src/pages/sales/SalesOrderDetail.tsx:422 msgid "Build Orders" msgstr "Byggordrar" @@ -639,39 +665,39 @@ msgstr "" msgid "Enter barcode data" msgstr "" -#: src/components/barcodes/BarcodeScanDialog.tsx:49 -#: src/components/buttons/ScanButton.tsx:15 +#: src/components/barcodes/BarcodeScanDialog.tsx:56 +#: src/components/buttons/ScanButton.tsx:27 #: src/components/nav/NavigationDrawer.tsx:122 -#: src/forms/PurchaseOrderForms.tsx:457 -#: src/forms/PurchaseOrderForms.tsx:563 +#: src/forms/PurchaseOrderForms.tsx:509 +#: src/forms/PurchaseOrderForms.tsx:615 msgid "Scan Barcode" msgstr "Skanna streckkod" -#: src/components/barcodes/BarcodeScanDialog.tsx:105 +#: src/components/barcodes/BarcodeScanDialog.tsx:121 msgid "No matching item found" msgstr "" -#: src/components/barcodes/BarcodeScanDialog.tsx:134 +#: src/components/barcodes/BarcodeScanDialog.tsx:150 msgid "Barcode does not match the expected model type" msgstr "" -#: src/components/barcodes/BarcodeScanDialog.tsx:145 +#: src/components/barcodes/BarcodeScanDialog.tsx:161 #: src/components/editors/NotesEditor.tsx:84 #: src/components/editors/NotesEditor.tsx:118 -#: src/components/forms/ApiForm.tsx:465 +#: src/components/forms/ApiForm.tsx:484 #: src/components/wizards/ImportPartWizard.tsx:566 -#: src/components/wizards/ImportPartWizard.tsx:690 +#: src/components/wizards/ImportPartWizard.tsx:691 #: src/pages/Index/Settings/AdminCenter/CurrencyManagementPanel.tsx:45 #: src/tables/bom/BomTable.tsx:548 #: src/tables/settings/PendingTasksTable.tsx:68 msgid "Success" msgstr "Lyckades" -#: src/components/barcodes/BarcodeScanDialog.tsx:151 +#: src/components/barcodes/BarcodeScanDialog.tsx:167 msgid "Failed to handle barcode" msgstr "" -#: src/components/barcodes/BarcodeScanDialog.tsx:167 +#: src/components/barcodes/BarcodeScanDialog.tsx:183 #: src/pages/Index/Scan.tsx:129 msgid "Failed to scan barcode" msgstr "" @@ -714,10 +740,10 @@ msgstr "" #: src/components/barcodes/QRCode.tsx:179 #: src/pages/part/PartDetail.tsx:521 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:222 -#: src/pages/sales/ReturnOrderDetail.tsx:188 -#: src/pages/sales/SalesOrderDetail.tsx:181 -#: src/pages/sales/SalesOrderShipmentDetail.tsx:122 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:223 +#: src/pages/sales/ReturnOrderDetail.tsx:189 +#: src/pages/sales/SalesOrderDetail.tsx:182 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:120 #: src/pages/stock/StockDetail.tsx:186 msgid "Link" msgstr "Länk" @@ -728,7 +754,7 @@ msgstr "" #: src/components/barcodes/QRCode.tsx:205 #: src/components/items/ActionDropdown.tsx:192 -#: src/forms/PurchaseOrderForms.tsx:554 +#: src/forms/PurchaseOrderForms.tsx:606 msgid "Unlink Barcode" msgstr "Ta bort länk för streckkod" @@ -829,14 +855,14 @@ msgstr "" #~ msgid "Scan QR code" #~ msgstr "Scan QR code" -#: src/components/buttons/ScanButton.tsx:19 -msgid "Open Barcode Scanner" -msgstr "" - #: src/components/buttons/ScanButton.tsx:20 #~ msgid "Open QR code scanner" #~ msgstr "Open QR code scanner" +#: src/components/buttons/ScanButton.tsx:32 +msgid "Open Barcode Scanner" +msgstr "" + #: src/components/buttons/SpotlightButton.tsx:12 msgid "Open spotlight" msgstr "Öppna spotlight" @@ -1059,7 +1085,7 @@ msgid "Show the number of sales orders which are assigned to you" msgstr "" #: src/components/dashboard/DashboardWidgetLibrary.tsx:129 -#: src/pages/sales/SalesIndex.tsx:105 +#: src/pages/sales/SalesIndex.tsx:87 msgid "Pending Shipments" msgstr "" @@ -1210,12 +1236,18 @@ msgid "Remove the associated image from this item?" msgstr "Vill du ta bort den associerade bilden från denna artikel?" #: src/components/details/DetailsImage.tsx:83 -#: src/forms/StockForms.tsx:888 +#: src/forms/StockForms.tsx:895 #: src/pages/Index/Settings/AccountSettings/MFASettings.tsx:324 #: src/pages/Index/Settings/AccountSettings/MFASettings.tsx:415 #: src/pages/Index/Settings/AccountSettings/MFASettings.tsx:884 #: src/pages/Index/Settings/AccountSettings/MFASettings.tsx:903 #: src/pages/Index/Settings/AccountSettings/SecurityContent.tsx:254 +#: src/tables/build/BuildAllocatedStockTable.tsx:178 +#: src/tables/build/BuildAllocatedStockTable.tsx:258 +#: src/tables/build/BuildLineTable.tsx:111 +#: src/tables/build/BuildLineTable.tsx:665 +#: src/tables/sales/SalesOrderAllocationTable.tsx:224 +#: src/tables/sales/SalesOrderAllocationTable.tsx:247 msgid "Remove" msgstr "Ta bort" @@ -1241,12 +1273,12 @@ msgid "Upload Error" msgstr "Uppladdningsfel" #: src/components/details/DetailsImage.tsx:250 -#: src/components/forms/fields/TextField.tsx:65 +#: src/components/forms/fields/AutoFillRightSection.tsx:34 msgid "Clear" msgstr "Rensa" #: src/components/details/DetailsImage.tsx:256 -#: src/components/forms/ApiForm.tsx:677 +#: src/components/forms/ApiForm.tsx:696 #: src/contexts/ThemeContext.tsx:44 #: src/pages/Index/Settings/AccountSettings/MFASettings.tsx:149 #: src/pages/Index/Settings/AccountSettings/MFASettings.tsx:568 @@ -1499,8 +1531,8 @@ msgstr "Serverfel" msgid "A server error occurred" msgstr "Ett serverfel inträffade" -#: src/components/forms/ApiForm.tsx:103 -#: src/components/forms/ApiForm.tsx:594 +#: src/components/forms/ApiForm.tsx:107 +#: src/components/forms/ApiForm.tsx:613 msgid "Form Error" msgstr "Formulär fel" @@ -1508,11 +1540,11 @@ msgstr "Formulär fel" #~ msgid "Form Errors Exist" #~ msgstr "Form Errors Exist" -#: src/components/forms/ApiForm.tsx:604 +#: src/components/forms/ApiForm.tsx:623 msgid "Errors exist for one or more form fields" msgstr "Fel finns för ett eller flera formulärfält" -#: src/components/forms/ApiForm.tsx:715 +#: src/components/forms/ApiForm.tsx:734 #: src/hooks/UseForm.tsx:133 #: src/tables/plugin/PluginListTable.tsx:204 msgid "Update" @@ -1698,15 +1730,14 @@ msgstr "Värd" #: src/components/forms/InstanceOptions.tsx:124 #: src/components/plugins/PluginDrawer.tsx:68 #: src/pages/Index/Settings/AdminCenter/UnitManagementPanel.tsx:19 -#: src/pages/part/CategoryDetail.tsx:88 +#: src/pages/part/CategoryDetail.tsx:91 #: src/pages/part/PartDetail.tsx:446 #: src/pages/stock/LocationDetail.tsx:82 #: src/tables/machine/MachineTypeTable.tsx:67 -#: src/tables/machine/MachineTypeTable.tsx:151 -#: src/tables/machine/MachineTypeTable.tsx:254 -#: src/tables/machine/MachineTypeTable.tsx:357 +#: src/tables/machine/MachineTypeTable.tsx:149 +#: src/tables/machine/MachineTypeTable.tsx:252 +#: src/tables/machine/MachineTypeTable.tsx:355 #: src/tables/plugin/PluginErrorTable.tsx:33 -#: src/tables/purchasing/ManufacturerPartParameterTable.tsx:36 #: src/tables/settings/ApiTokenTable.tsx:57 #: src/tables/settings/GroupTable.tsx:95 #: src/tables/settings/GroupTable.tsx:148 @@ -1769,7 +1800,7 @@ msgstr "" #~ msgstr "State: <0>worker ({0}), <1>plugins{1}" #: src/components/forms/InstanceOptions.tsx:118 -#: src/pages/Index/Settings/SystemSettings.tsx:45 +#: src/pages/Index/Settings/SystemSettings.tsx:46 msgid "Server" msgstr "Server" @@ -1793,6 +1824,8 @@ msgid "Plugins" msgstr "Plugins" #: src/components/forms/InstanceOptions.tsx:143 +#: src/tables/general/ParameterTemplateTable.tsx:153 +#: src/tables/general/ParameterTemplateTable.tsx:188 #: src/tables/part/PartTestTemplateTable.tsx:117 #: src/tables/settings/TemplateTable.tsx:251 #: src/tables/settings/TemplateTable.tsx:362 @@ -1817,10 +1850,14 @@ msgstr "Stoppad" msgid "Running" msgstr "" -#: src/components/forms/fields/ApiFormField.tsx:233 +#: src/components/forms/fields/ApiFormField.tsx:197 msgid "Select file to upload" msgstr "" +#: src/components/forms/fields/AutoFillRightSection.tsx:47 +msgid "Accept suggested value" +msgstr "" + #: src/components/forms/fields/DateField.tsx:76 msgid "Select date" msgstr "Välj datum" @@ -1853,13 +1890,13 @@ msgstr "Välj paket" msgid "{0} icons" msgstr "{0} ikoner" -#: src/components/forms/fields/RelatedModelField.tsx:409 +#: src/components/forms/fields/RelatedModelField.tsx:480 #: src/components/modals/AboutInvenTreeModal.tsx:96 #: src/pages/Index/Settings/AccountSettings/SecurityContent.tsx:383 msgid "Loading" msgstr "Laddar" -#: src/components/forms/fields/RelatedModelField.tsx:411 +#: src/components/forms/fields/RelatedModelField.tsx:482 msgid "No results found" msgstr "Inga resultat hittades" @@ -1875,10 +1912,6 @@ msgstr "Inga poster tillgängliga" msgid "Add new row" msgstr "Lägg till ny rad" -#: src/components/forms/fields/TextField.tsx:82 -msgid "Accept suggested value" -msgstr "" - #: src/components/images/DetailsImage.tsx:252 #~ msgid "Select image" #~ msgstr "Select image" @@ -2036,7 +2069,7 @@ msgstr "Data har importerats framgångsrikt" #: src/components/importer/ImporterDrawer.tsx:109 #: src/components/modals/AboutInvenTreeModal.tsx:205 #: src/components/modals/ServerInfoModal.tsx:134 -#: src/components/wizards/ImportPartWizard.tsx:772 +#: src/components/wizards/ImportPartWizard.tsx:773 #: src/forms/BomForms.tsx:132 #: src/pages/Index/Settings/AccountSettings/MFASettings.tsx:685 msgid "Close" @@ -2199,7 +2232,7 @@ msgid "Change" msgstr "Ändra" #: src/components/items/RoleTable.tsx:150 -#: src/forms/StockForms.tsx:927 +#: src/forms/StockForms.tsx:941 #: src/tables/stock/StockItemTestResultTable.tsx:367 msgid "Add" msgstr "Lägg till" @@ -2222,11 +2255,11 @@ msgstr "" #: src/components/items/TransferList.tsx:161 #: src/components/render/Stock.tsx:102 -#: src/pages/part/PartDetail.tsx:994 +#: src/pages/part/PartDetail.tsx:1009 #: src/pages/stock/StockDetail.tsx:265 #: src/pages/stock/StockDetail.tsx:942 -#: src/tables/build/BuildAllocatedStockTable.tsx:135 -#: src/tables/build/BuildLineTable.tsx:192 +#: src/tables/build/BuildAllocatedStockTable.tsx:132 +#: src/tables/build/BuildLineTable.tsx:193 #: src/tables/part/PartTable.tsx:137 #: src/tables/stock/StockItemTable.tsx:182 #: src/tables/stock/StockItemTable.tsx:343 @@ -2373,7 +2406,7 @@ msgid "Database" msgstr "Databas" #: src/components/modals/ServerInfoModal.tsx:49 -#: src/components/nav/Alerts.tsx:118 +#: src/components/nav/Alerts.tsx:120 msgid "Debug Mode" msgstr "Felsökningsläge" @@ -2414,7 +2447,7 @@ msgid "Issues detected" msgstr "Problem har upptäckts" #: src/components/modals/ServerInfoModal.tsx:102 -#: src/components/nav/Alerts.tsx:125 +#: src/components/nav/Alerts.tsx:127 msgid "Background Worker" msgstr "Bakgrundsarbetare" @@ -2436,7 +2469,7 @@ msgstr "E-postinställningar" #~ msgstr "Email settings not configured" #: src/components/modals/ServerInfoModal.tsx:120 -#: src/components/nav/Alerts.tsx:141 +#: src/components/nav/Alerts.tsx:143 msgid "Email settings not configured." msgstr "" @@ -2444,43 +2477,47 @@ msgstr "" msgid "Alerts" msgstr "" -#: src/components/nav/Alerts.tsx:120 +#: src/components/nav/Alerts.tsx:97 +msgid "No issues detected" +msgstr "" + +#: src/components/nav/Alerts.tsx:122 msgid "The server is running in debug mode." msgstr "" -#: src/components/nav/Alerts.tsx:127 +#: src/components/nav/Alerts.tsx:129 msgid "The background worker process is not running." msgstr "" -#: src/components/nav/Alerts.tsx:132 +#: src/components/nav/Alerts.tsx:134 msgid "Server Restart" msgstr "" -#: src/components/nav/Alerts.tsx:134 +#: src/components/nav/Alerts.tsx:136 msgid "The server requires a restart to apply changes." msgstr "" -#: src/components/nav/Alerts.tsx:139 +#: src/components/nav/Alerts.tsx:141 msgid "Email settings" msgstr "E-postinställningar" -#: src/components/nav/Alerts.tsx:146 +#: src/components/nav/Alerts.tsx:148 msgid "Database Migrations" msgstr "" -#: src/components/nav/Alerts.tsx:148 +#: src/components/nav/Alerts.tsx:150 msgid "There are pending database migrations." msgstr "" -#: src/components/nav/Alerts.tsx:163 +#: src/components/nav/Alerts.tsx:165 msgid "Learn more about {code}" msgstr "" #: src/components/nav/Header.tsx:188 #: src/components/nav/NavigationDrawer.tsx:134 #: src/components/nav/NotificationDrawer.tsx:181 -#: src/pages/Index/Settings/SystemSettings.tsx:121 -#: src/pages/Index/Settings/UserSettings.tsx:106 +#: src/pages/Index/Settings/SystemSettings.tsx:122 +#: src/pages/Index/Settings/UserSettings.tsx:107 #: src/pages/Notifications.tsx:45 #: src/pages/Notifications.tsx:130 msgid "Notifications" @@ -2511,8 +2548,8 @@ msgstr "Inställningar" #: src/components/nav/NavigationDrawer.tsx:140 #: src/components/nav/SettingsHeader.tsx:40 #: src/defaults/actions.tsx:92 -#: src/pages/Index/Settings/UserSettings.tsx:141 -#: src/pages/Index/Settings/UserSettings.tsx:145 +#: src/pages/Index/Settings/UserSettings.tsx:142 +#: src/pages/Index/Settings/UserSettings.tsx:146 msgid "User Settings" msgstr "Användarinställningar" @@ -2529,8 +2566,8 @@ msgstr "Användarinställningar" #: src/components/nav/NavigationDrawer.tsx:146 #: src/components/nav/SettingsHeader.tsx:41 #: src/defaults/actions.tsx:144 -#: src/pages/Index/Settings/SystemSettings.tsx:348 -#: src/pages/Index/Settings/SystemSettings.tsx:353 +#: src/pages/Index/Settings/SystemSettings.tsx:354 +#: src/pages/Index/Settings/SystemSettings.tsx:359 msgid "System Settings" msgstr "Systeminställningar" @@ -2577,11 +2614,11 @@ msgstr "Logga ut" #: src/components/nav/NavigationDrawer.tsx:77 #: src/components/render/Part.tsx:36 -#: src/components/wizards/ImportPartWizard.tsx:807 +#: src/components/wizards/ImportPartWizard.tsx:808 #: src/defaults/links.tsx:42 #: src/forms/StockForms.tsx:794 -#: src/pages/Index/Settings/SystemSettings.tsx:224 -#: src/pages/part/PartDetail.tsx:804 +#: src/pages/Index/Settings/SystemSettings.tsx:230 +#: src/pages/part/PartDetail.tsx:793 #: src/pages/stock/LocationDetail.tsx:390 #: src/pages/stock/LocationDetail.tsx:420 #: src/pages/stock/StockDetail.tsx:642 @@ -2591,29 +2628,29 @@ msgstr "Lagersaldo" #: src/components/nav/NavigationDrawer.tsx:84 #: src/defaults/links.tsx:48 -#: src/pages/build/BuildDetail.tsx:748 -#: src/pages/build/BuildIndex.tsx:102 +#: src/pages/build/BuildDetail.tsx:753 +#: src/pages/build/BuildIndex.tsx:101 msgid "Manufacturing" msgstr "" #: src/components/nav/NavigationDrawer.tsx:91 #: src/defaults/links.tsx:54 #: src/pages/company/ManufacturerDetail.tsx:9 -#: src/pages/company/ManufacturerPartDetail.tsx:276 +#: src/pages/company/ManufacturerPartDetail.tsx:267 #: src/pages/company/SupplierDetail.tsx:9 -#: src/pages/company/SupplierPartDetail.tsx:360 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:553 -#: src/pages/purchasing/PurchasingIndex.tsx:122 +#: src/pages/company/SupplierPartDetail.tsx:365 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:558 +#: src/pages/purchasing/PurchasingIndex.tsx:212 msgid "Purchasing" msgstr "Inköp" #: src/components/nav/NavigationDrawer.tsx:98 #: src/defaults/links.tsx:60 #: src/pages/company/CustomerDetail.tsx:9 -#: src/pages/sales/ReturnOrderDetail.tsx:554 -#: src/pages/sales/SalesIndex.tsx:153 -#: src/pages/sales/SalesOrderDetail.tsx:619 -#: src/pages/sales/SalesOrderShipmentDetail.tsx:480 +#: src/pages/sales/ReturnOrderDetail.tsx:559 +#: src/pages/sales/SalesIndex.tsx:168 +#: src/pages/sales/SalesOrderDetail.tsx:624 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:448 msgid "Sales" msgstr "Försäljning" @@ -2667,21 +2704,21 @@ msgid "Remove search group" msgstr "" #: src/components/nav/SearchDrawer.tsx:288 -#: src/pages/company/ManufacturerPartDetail.tsx:192 -#: src/pages/part/PartDetail.tsx:862 +#: src/pages/company/ManufacturerPartDetail.tsx:179 +#: src/pages/part/PartDetail.tsx:851 #: src/pages/part/PartSupplierDetail.tsx:15 -#: src/pages/purchasing/PurchasingIndex.tsx:81 +#: src/pages/purchasing/PurchasingIndex.tsx:100 msgid "Suppliers" msgstr "Leverantörer" #: src/components/nav/SearchDrawer.tsx:298 #: src/pages/part/PartSupplierDetail.tsx:23 -#: src/pages/purchasing/PurchasingIndex.tsx:98 +#: src/pages/purchasing/PurchasingIndex.tsx:149 msgid "Manufacturers" msgstr "Tillverkare" #: src/components/nav/SearchDrawer.tsx:308 -#: src/pages/sales/SalesIndex.tsx:138 +#: src/pages/sales/SalesIndex.tsx:133 msgid "Customers" msgstr "Kunder" @@ -2772,21 +2809,21 @@ msgstr "" #: src/components/plugins/PluginDrawer.tsx:73 #: src/forms/selectionListFields.tsx:102 -#: src/pages/build/BuildDetail.tsx:250 -#: src/pages/company/CompanyDetail.tsx:93 -#: src/pages/company/ManufacturerPartDetail.tsx:93 -#: src/pages/company/ManufacturerPartDetail.tsx:120 -#: src/pages/company/SupplierPartDetail.tsx:145 -#: src/pages/part/CategoryDetail.tsx:108 +#: src/pages/build/BuildDetail.tsx:251 +#: src/pages/company/CompanyDetail.tsx:94 +#: src/pages/company/ManufacturerPartDetail.tsx:92 +#: src/pages/company/ManufacturerPartDetail.tsx:119 +#: src/pages/company/SupplierPartDetail.tsx:146 +#: src/pages/part/CategoryDetail.tsx:111 #: src/pages/part/PartDetail.tsx:460 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:162 -#: src/pages/sales/ReturnOrderDetail.tsx:129 -#: src/pages/sales/SalesOrderDetail.tsx:119 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:163 +#: src/pages/sales/ReturnOrderDetail.tsx:130 +#: src/pages/sales/SalesOrderDetail.tsx:120 #: src/pages/stock/LocationDetail.tsx:102 #: src/tables/ColumnRenderers.tsx:278 -#: src/tables/build/BuildAllocatedStockTable.tsx:91 -#: src/tables/machine/MachineTypeTable.tsx:161 -#: src/tables/machine/MachineTypeTable.tsx:257 +#: src/tables/build/BuildAllocatedStockTable.tsx:88 +#: src/tables/machine/MachineTypeTable.tsx:159 +#: src/tables/machine/MachineTypeTable.tsx:255 #: src/tables/plugin/PluginListTable.tsx:110 msgid "Description" msgstr "Beskrivning" @@ -2814,7 +2851,7 @@ msgstr "Datum" #: src/tables/company/CompanyTable.tsx:91 #: src/tables/machine/MachineListTable.tsx:384 #: src/tables/machine/MachineListTable.tsx:799 -#: src/tables/part/ParametricPartTable.tsx:354 +#: src/tables/part/ParametricPartTable.tsx:19 #: src/tables/part/PartTable.tsx:197 #: src/tables/part/PartVariantTable.tsx:15 #: src/tables/plugin/PluginListTable.tsx:96 @@ -2836,8 +2873,8 @@ msgid "Installation Path" msgstr "" #: src/components/plugins/PluginDrawer.tsx:116 -#: src/tables/machine/MachineTypeTable.tsx:184 -#: src/tables/machine/MachineTypeTable.tsx:293 +#: src/tables/machine/MachineTypeTable.tsx:182 +#: src/tables/machine/MachineTypeTable.tsx:291 #: src/tables/plugin/PluginListTable.tsx:101 #: src/tables/plugin/PluginListTable.tsx:417 msgid "Builtin" @@ -2849,8 +2886,8 @@ msgstr "Paket" #: src/components/plugins/PluginDrawer.tsx:133 #: src/pages/Index/Settings/AdminCenter/PluginManagementPanel.tsx:55 -#: src/pages/Index/Settings/SystemSettings.tsx:331 -#: src/pages/Index/Settings/UserSettings.tsx:128 +#: src/pages/Index/Settings/SystemSettings.tsx:337 +#: src/pages/Index/Settings/UserSettings.tsx:129 msgid "Plugin Settings" msgstr "" @@ -2911,7 +2948,7 @@ msgstr "" #~ msgid "Unknown model: {model}" #~ msgstr "Unknown model: {model}" -#: src/components/render/Instance.tsx:249 +#: src/components/render/Instance.tsx:247 msgid "Unknown model: {model_name}" msgstr "" @@ -2939,10 +2976,10 @@ msgstr "Frakt" #: src/components/render/Part.tsx:28 #: src/components/render/Plugin.tsx:17 #: src/components/render/User.tsx:37 -#: src/pages/company/CompanyDetail.tsx:323 -#: src/pages/company/SupplierPartDetail.tsx:373 +#: src/pages/company/CompanyDetail.tsx:328 +#: src/pages/company/SupplierPartDetail.tsx:378 #: src/pages/core/UserDetail.tsx:211 -#: src/pages/part/PartDetail.tsx:1027 +#: src/pages/part/PartDetail.tsx:1048 #: src/tables/ColumnRenderers.tsx:410 msgid "Inactive" msgstr "Inaktiv" @@ -2962,11 +2999,11 @@ msgstr "Inget på lager" #: src/components/render/Part.tsx:47 #: src/components/wizards/OrderPartsWizard.tsx:135 -#: src/pages/company/SupplierPartDetail.tsx:197 -#: src/pages/company/SupplierPartDetail.tsx:394 -#: src/pages/part/PartDetail.tsx:1015 +#: src/pages/company/SupplierPartDetail.tsx:198 +#: src/pages/company/SupplierPartDetail.tsx:399 +#: src/pages/part/PartDetail.tsx:1030 #: src/tables/bom/BomTable.tsx:444 -#: src/tables/build/BuildLineTable.tsx:222 +#: src/tables/build/BuildLineTable.tsx:223 #: src/tables/part/PartTable.tsx:108 msgid "On Order" msgstr "På order" @@ -2974,9 +3011,9 @@ msgstr "På order" #: src/components/render/Part.tsx:55 #: src/components/wizards/OrderPartsWizard.tsx:141 #: src/pages/part/PartDetail.tsx:587 -#: src/pages/part/PartDetail.tsx:1021 +#: src/pages/part/PartDetail.tsx:1036 #: src/pages/stock/StockDetail.tsx:925 -#: src/tables/part/PartTestResultTable.tsx:297 +#: src/tables/part/PartTestResultTable.tsx:305 #: src/tables/stock/StockItemTable.tsx:359 msgid "In Production" msgstr "Under produktion" @@ -2987,7 +3024,7 @@ msgid "Details" msgstr "Detaljer" #: src/components/render/Part.tsx:112 -#: src/components/wizards/ImportPartWizard.tsx:806 +#: src/components/wizards/ImportPartWizard.tsx:807 #: src/pages/part/PartDetail.tsx:487 #: src/tables/ColumnRenderers.tsx:233 #: src/tables/ColumnRenderers.tsx:242 @@ -3000,16 +3037,16 @@ msgstr "Kategori" #: src/components/render/Stock.tsx:114 #: src/components/render/Stock.tsx:132 #: src/forms/BuildForms.tsx:795 -#: src/forms/PurchaseOrderForms.tsx:595 +#: src/forms/PurchaseOrderForms.tsx:647 #: src/forms/StockForms.tsx:792 #: src/forms/StockForms.tsx:839 -#: src/forms/StockForms.tsx:885 -#: src/forms/StockForms.tsx:924 -#: src/forms/StockForms.tsx:960 -#: src/forms/StockForms.tsx:1003 -#: src/forms/StockForms.tsx:1047 -#: src/forms/StockForms.tsx:1095 -#: src/forms/StockForms.tsx:1139 +#: src/forms/StockForms.tsx:892 +#: src/forms/StockForms.tsx:938 +#: src/forms/StockForms.tsx:976 +#: src/forms/StockForms.tsx:1019 +#: src/forms/StockForms.tsx:1063 +#: src/forms/StockForms.tsx:1111 +#: src/forms/StockForms.tsx:1155 #: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:88 #: src/pages/core/UserDetail.tsx:158 #: src/pages/stock/StockDetail.tsx:298 @@ -3023,7 +3060,7 @@ msgstr "Plats" #: src/components/render/Stock.tsx:99 #: src/pages/stock/StockDetail.tsx:198 #: src/pages/stock/StockDetail.tsx:930 -#: src/tables/build/BuildAllocatedStockTable.tsx:121 +#: src/tables/build/BuildAllocatedStockTable.tsx:118 #: src/tables/build/BuildOutputTable.tsx:107 #: src/tables/sales/SalesOrderAllocationTable.tsx:142 msgid "Serial Number" @@ -3034,9 +3071,9 @@ msgstr "Serienummer" #: src/forms/BuildForms.tsx:240 #: src/forms/BuildForms.tsx:634 #: src/forms/BuildForms.tsx:797 -#: src/forms/PurchaseOrderForms.tsx:801 +#: src/forms/PurchaseOrderForms.tsx:853 #: src/forms/ReturnOrderForms.tsx:243 -#: src/forms/SalesOrderForms.tsx:308 +#: src/forms/SalesOrderForms.tsx:387 #: src/forms/StockForms.tsx:841 #: src/pages/part/PartStockHistoryDetail.tsx:56 #: src/pages/part/PartStockHistoryDetail.tsx:210 @@ -3046,9 +3083,9 @@ msgstr "Serienummer" #: src/pages/part/pricing/PriceBreakPanel.tsx:172 #: src/pages/stock/StockDetail.tsx:258 #: src/pages/stock/StockDetail.tsx:936 -#: src/tables/build/BuildLineTable.tsx:86 +#: src/tables/build/BuildLineTable.tsx:83 #: src/tables/part/PartPurchaseOrdersTable.tsx:94 -#: src/tables/part/PartTestResultTable.tsx:269 +#: src/tables/part/PartTestResultTable.tsx:277 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:175 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:206 #: src/tables/purchasing/SupplierPriceBreakTable.tsx:69 @@ -3063,14 +3100,14 @@ msgstr "Antal" #: src/forms/BuildForms.tsx:474 #: src/forms/StockForms.tsx:793 #: src/forms/StockForms.tsx:840 -#: src/forms/StockForms.tsx:886 -#: src/forms/StockForms.tsx:925 -#: src/forms/StockForms.tsx:961 -#: src/forms/StockForms.tsx:1004 -#: src/forms/StockForms.tsx:1048 -#: src/forms/StockForms.tsx:1096 -#: src/forms/StockForms.tsx:1140 -#: src/tables/build/BuildLineTable.tsx:96 +#: src/forms/StockForms.tsx:893 +#: src/forms/StockForms.tsx:939 +#: src/forms/StockForms.tsx:977 +#: src/forms/StockForms.tsx:1020 +#: src/forms/StockForms.tsx:1064 +#: src/forms/StockForms.tsx:1112 +#: src/forms/StockForms.tsx:1156 +#: src/tables/build/BuildLineTable.tsx:93 msgid "Batch" msgstr "" @@ -3306,10 +3343,6 @@ msgstr "Inga inställningar angivna" #~ msgid "Part category updated" #~ msgstr "Part category updated" -#: src/components/tables/part/PartParameterTable.tsx:41 -#~ msgid "Parameter" -#~ msgstr "Parameter" - #: src/components/tables/part/PartParameterTable.tsx:114 #~ msgid "Part parameter updated" #~ msgstr "Part parameter updated" @@ -3571,15 +3604,16 @@ msgid "Already Imported" msgstr "" #: src/components/wizards/ImportPartWizard.tsx:205 -#: src/pages/company/CompanyDetail.tsx:136 +#: src/pages/company/CompanyDetail.tsx:137 #: src/pages/company/SupplierDetail.tsx:8 -#: src/pages/company/SupplierPartDetail.tsx:130 -#: src/pages/company/SupplierPartDetail.tsx:235 -#: src/pages/company/SupplierPartDetail.tsx:364 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:156 +#: src/pages/company/SupplierPartDetail.tsx:131 +#: src/pages/company/SupplierPartDetail.tsx:236 +#: src/pages/company/SupplierPartDetail.tsx:369 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:157 #: src/tables/Filter.tsx:360 #: src/tables/company/CompanyTable.tsx:96 #: src/tables/part/PartPurchaseOrdersTable.tsx:43 +#: src/tables/purchasing/PurchaseOrderParametricTable.tsx:34 #: src/tables/purchasing/PurchaseOrderTable.tsx:109 #: src/tables/purchasing/SupplierPriceBreakTable.tsx:40 msgid "Supplier" @@ -3648,7 +3682,7 @@ msgid "Next" msgstr "Nästa" #: src/components/wizards/ImportPartWizard.tsx:540 -#: src/pages/part/PartDetail.tsx:1046 +#: src/pages/part/PartDetail.tsx:1067 #: src/tables/part/PartTable.tsx:408 msgid "Edit Part" msgstr "Redigera artikel" @@ -3669,28 +3703,28 @@ msgstr "" msgid "Import" msgstr "Importera" -#: src/components/wizards/ImportPartWizard.tsx:691 +#: src/components/wizards/ImportPartWizard.tsx:692 msgid "Parameters created successfully!" msgstr "" -#: src/components/wizards/ImportPartWizard.tsx:719 +#: src/components/wizards/ImportPartWizard.tsx:720 msgid "Failed to create parameters, please fix the errors and try again" msgstr "" #. placeholder {0}: supplierPart?.supplier -#: src/components/wizards/ImportPartWizard.tsx:739 +#: src/components/wizards/ImportPartWizard.tsx:740 msgid "Part imported successfully from supplier {0}." msgstr "" -#: src/components/wizards/ImportPartWizard.tsx:752 +#: src/components/wizards/ImportPartWizard.tsx:753 msgid "Open Part" msgstr "Öppna del" -#: src/components/wizards/ImportPartWizard.tsx:759 +#: src/components/wizards/ImportPartWizard.tsx:760 msgid "Open Supplier Part" msgstr "" -#: src/components/wizards/ImportPartWizard.tsx:766 +#: src/components/wizards/ImportPartWizard.tsx:767 msgid "Open Manufacturer Part" msgstr "" @@ -3699,25 +3733,19 @@ msgstr "" #~ msgid "Import Part" #~ msgstr "Import Part" -#: src/components/wizards/ImportPartWizard.tsx:802 +#: src/components/wizards/ImportPartWizard.tsx:803 msgid "Import Supplier Part" msgstr "" -#: src/components/wizards/ImportPartWizard.tsx:804 +#: src/components/wizards/ImportPartWizard.tsx:805 msgid "Search Supplier Part" msgstr "" -#: src/components/wizards/ImportPartWizard.tsx:806 -#: src/pages/company/ManufacturerPartDetail.tsx:166 -#: src/pages/part/PartDetail.tsx:793 -msgid "Parameters" -msgstr "Parametrar" - -#: src/components/wizards/ImportPartWizard.tsx:806 +#: src/components/wizards/ImportPartWizard.tsx:807 msgid "Confirm import" msgstr "" -#: src/components/wizards/ImportPartWizard.tsx:808 +#: src/components/wizards/ImportPartWizard.tsx:809 msgid "Done" msgstr "" @@ -3738,24 +3766,24 @@ msgid "Sales Requirements" msgstr "" #: src/components/wizards/OrderPartsWizard.tsx:129 -#: src/forms/StockForms.tsx:887 -#: src/forms/StockForms.tsx:926 -#: src/forms/StockForms.tsx:962 -#: src/forms/StockForms.tsx:1005 -#: src/forms/StockForms.tsx:1049 -#: src/forms/StockForms.tsx:1097 -#: src/forms/StockForms.tsx:1141 -#: src/pages/company/SupplierPartDetail.tsx:190 -#: src/pages/company/SupplierPartDetail.tsx:378 +#: src/forms/StockForms.tsx:894 +#: src/forms/StockForms.tsx:940 +#: src/forms/StockForms.tsx:978 +#: src/forms/StockForms.tsx:1021 +#: src/forms/StockForms.tsx:1065 +#: src/forms/StockForms.tsx:1113 +#: src/forms/StockForms.tsx:1157 +#: src/pages/company/SupplierPartDetail.tsx:191 +#: src/pages/company/SupplierPartDetail.tsx:383 #: src/pages/part/PartDetail.tsx:534 -#: src/pages/part/PartDetail.tsx:984 +#: src/pages/part/PartDetail.tsx:999 #: src/tables/Filter.tsx:92 #: src/tables/purchasing/SupplierPartTable.tsx:230 msgid "In Stock" msgstr "" #: src/components/wizards/OrderPartsWizard.tsx:146 -#: src/tables/build/BuildLineTable.tsx:404 +#: src/tables/build/BuildLineTable.tsx:405 msgid "Required Quantity" msgstr "" @@ -3847,7 +3875,7 @@ msgid "Please correct the errors in the selected parts" msgstr "" #: src/components/wizards/OrderPartsWizard.tsx:587 -#: src/tables/build/BuildLineTable.tsx:815 +#: src/tables/build/BuildLineTable.tsx:822 #: src/tables/part/PartTable.tsx:522 #: src/tables/sales/SalesOrderLineItemTable.tsx:370 msgid "Order Parts" @@ -4349,9 +4377,9 @@ msgstr "" #: src/forms/BuildForms.tsx:333 #: src/forms/BuildForms.tsx:408 #: src/forms/BuildForms.tsx:685 -#: src/tables/build/BuildAllocatedStockTable.tsx:150 +#: src/tables/build/BuildAllocatedStockTable.tsx:147 #: src/tables/build/BuildOutputTable.tsx:582 -#: src/tables/part/PartTestResultTable.tsx:272 +#: src/tables/part/PartTestResultTable.tsx:280 msgid "Build Output" msgstr "" @@ -4362,22 +4390,22 @@ msgstr "" #: src/forms/BuildForms.tsx:336 #: src/forms/BuildForms.tsx:411 #: src/forms/BuildForms.tsx:475 -#: src/forms/PurchaseOrderForms.tsx:717 +#: src/forms/PurchaseOrderForms.tsx:769 #: src/forms/ReturnOrderForms.tsx:197 #: src/forms/ReturnOrderForms.tsx:244 #: src/forms/StockForms.tsx:712 #: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:87 -#: src/pages/build/BuildDetail.tsx:222 +#: src/pages/build/BuildDetail.tsx:223 #: src/pages/core/UserDetail.tsx:151 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:168 -#: src/pages/sales/ReturnOrderDetail.tsx:135 -#: src/pages/sales/SalesOrderDetail.tsx:125 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:169 +#: src/pages/sales/ReturnOrderDetail.tsx:136 +#: src/pages/sales/SalesOrderDetail.tsx:126 #: src/pages/stock/StockDetail.tsx:170 #: src/tables/Filter.tsx:274 #: src/tables/build/BuildOutputTable.tsx:404 #: src/tables/machine/MachineListTable.tsx:387 #: src/tables/part/PartPurchaseOrdersTable.tsx:38 -#: src/tables/part/PartTestResultTable.tsx:309 +#: src/tables/part/PartTestResultTable.tsx:317 #: src/tables/sales/ReturnOrderLineItemTable.tsx:138 #: src/tables/sales/ReturnOrderLineItemTable.tsx:176 #: src/tables/settings/CustomStateTable.tsx:79 @@ -4443,18 +4471,19 @@ msgid "Build outputs have been cancelled" msgstr "Tillverkade produkter har raderats" #: src/forms/BuildForms.tsx:631 -#: src/pages/build/BuildDetail.tsx:207 -#: src/pages/company/ManufacturerPartDetail.tsx:85 -#: src/pages/company/SupplierPartDetail.tsx:96 +#: src/pages/build/BuildDetail.tsx:208 +#: src/pages/company/ManufacturerPartDetail.tsx:84 +#: src/pages/company/SupplierPartDetail.tsx:97 #: src/pages/part/PartDetail.tsx:453 #: src/pages/stock/StockDetail.tsx:153 #: src/tables/bom/BomTable.tsx:134 #: src/tables/bom/UsedInTable.tsx:40 -#: src/tables/build/BuildAllocatedStockTable.tsx:108 -#: src/tables/build/BuildLineTable.tsx:336 +#: src/tables/build/BuildAllocatedStockTable.tsx:105 +#: src/tables/build/BuildLineTable.tsx:337 #: src/tables/build/BuildOrderTable.tsx:79 #: src/tables/part/PartSalesAllocationsTable.tsx:61 #: src/tables/part/RelatedPartTable.tsx:73 +#: src/tables/purchasing/ManufacturerPartParametricTable.tsx:21 #: src/tables/purchasing/ManufacturerPartTable.tsx:69 #: src/tables/purchasing/SupplierPartTable.tsx:70 #: src/tables/sales/SalesOrderAllocationTable.tsx:135 @@ -4466,47 +4495,47 @@ msgstr "IAN" #: src/forms/BuildForms.tsx:632 #: src/forms/BuildForms.tsx:796 #: src/forms/BuildForms.tsx:897 -#: src/forms/SalesOrderForms.tsx:306 -#: src/tables/build/BuildAllocatedStockTable.tsx:139 -#: src/tables/build/BuildLineTable.tsx:182 +#: src/forms/SalesOrderForms.tsx:385 +#: src/tables/build/BuildAllocatedStockTable.tsx:136 +#: src/tables/build/BuildLineTable.tsx:183 #: src/tables/sales/SalesOrderLineItemTable.tsx:342 #: src/tables/stock/StockItemTable.tsx:338 msgid "Allocated" msgstr "Allokerad" #: src/forms/BuildForms.tsx:667 -#: src/forms/SalesOrderForms.tsx:295 -#: src/pages/build/BuildDetail.tsx:108 -#: src/pages/build/BuildDetail.tsx:326 +#: src/forms/SalesOrderForms.tsx:374 +#: src/pages/build/BuildDetail.tsx:109 +#: src/pages/build/BuildDetail.tsx:327 msgid "Source Location" msgstr "" #: src/forms/BuildForms.tsx:668 -#: src/forms/SalesOrderForms.tsx:296 +#: src/forms/SalesOrderForms.tsx:375 msgid "Select the source location for the stock allocation" msgstr "" #: src/forms/BuildForms.tsx:700 -#: src/forms/SalesOrderForms.tsx:336 -#: src/tables/build/BuildLineTable.tsx:574 -#: src/tables/build/BuildLineTable.tsx:731 -#: src/tables/build/BuildLineTable.tsx:830 +#: src/forms/SalesOrderForms.tsx:415 +#: src/tables/build/BuildLineTable.tsx:575 +#: src/tables/build/BuildLineTable.tsx:738 +#: src/tables/build/BuildLineTable.tsx:837 #: src/tables/sales/SalesOrderLineItemTable.tsx:380 #: src/tables/sales/SalesOrderLineItemTable.tsx:406 msgid "Allocate Stock" msgstr "" #: src/forms/BuildForms.tsx:703 -#: src/forms/SalesOrderForms.tsx:341 +#: src/forms/SalesOrderForms.tsx:420 msgid "Stock items allocated" msgstr "" #: src/forms/BuildForms.tsx:816 #: src/forms/BuildForms.tsx:917 -#: src/tables/build/BuildAllocatedStockTable.tsx:240 -#: src/tables/build/BuildAllocatedStockTable.tsx:272 -#: src/tables/build/BuildLineTable.tsx:741 -#: src/tables/build/BuildLineTable.tsx:864 +#: src/tables/build/BuildAllocatedStockTable.tsx:243 +#: src/tables/build/BuildAllocatedStockTable.tsx:279 +#: src/tables/build/BuildLineTable.tsx:748 +#: src/tables/build/BuildLineTable.tsx:871 msgid "Consume Stock" msgstr "" @@ -4521,21 +4550,21 @@ msgstr "" #~ msgstr "Stock items consumed" #: src/forms/BuildForms.tsx:853 -#: src/tables/build/BuildLineTable.tsx:514 +#: src/tables/build/BuildLineTable.tsx:515 #: src/tables/part/PartBuildAllocationsTable.tsx:101 msgid "Fully consumed" msgstr "" #: src/forms/BuildForms.tsx:898 -#: src/tables/build/BuildLineTable.tsx:187 +#: src/tables/build/BuildLineTable.tsx:188 #: src/tables/stock/StockItemTable.tsx:367 msgid "Consumed" msgstr "" -#: src/forms/CommonForms.tsx:88 -#: src/forms/PurchaseOrderForms.tsx:125 +#: src/forms/CommonForms.tsx:92 +#: src/forms/PurchaseOrderForms.tsx:176 #: src/forms/ReturnOrderForms.tsx:138 -#: src/forms/SalesOrderForms.tsx:164 +#: src/forms/SalesOrderForms.tsx:185 msgid "Select project code for this line item" msgstr "" @@ -4543,16 +4572,16 @@ msgstr "" #~ msgid "Company updated" #~ msgstr "Company updated" -#: src/forms/PartForms.tsx:85 -#: src/forms/PartForms.tsx:207 -#: src/pages/part/CategoryDetail.tsx:124 +#: src/forms/PartForms.tsx:99 +#: src/forms/PartForms.tsx:228 +#: src/pages/part/CategoryDetail.tsx:127 #: src/pages/part/PartDetail.tsx:668 #: src/tables/part/PartCategoryTable.tsx:94 #: src/tables/part/PartTable.tsx:325 msgid "Subscribed" msgstr "" -#: src/forms/PartForms.tsx:86 +#: src/forms/PartForms.tsx:100 msgid "Subscribe to notifications for this part" msgstr "" @@ -4564,156 +4593,156 @@ msgstr "" #~ msgid "Part updated" #~ msgstr "Part updated" -#: src/forms/PartForms.tsx:193 +#: src/forms/PartForms.tsx:214 msgid "Parent part category" msgstr "Överordnad kategori" -#: src/forms/PartForms.tsx:208 +#: src/forms/PartForms.tsx:229 msgid "Subscribe to notifications for this category" msgstr "" -#: src/forms/PurchaseOrderForms.tsx:388 -msgid "Assign Batch Code and Serial Numbers" -msgstr "" - -#: src/forms/PurchaseOrderForms.tsx:390 -msgid "Assign Batch Code" -msgstr "Tilldela streckkod" - -#: src/forms/PurchaseOrderForms.tsx:410 -msgid "Choose Location" -msgstr "Välj plats" - -#: src/forms/PurchaseOrderForms.tsx:418 -msgid "Item Destination selected" -msgstr "" - #: src/forms/PurchaseOrderForms.tsx:421 #~ msgid "Assign Batch Code{0}" #~ msgstr "Assign Batch Code{0}" -#: src/forms/PurchaseOrderForms.tsx:428 -msgid "Part category default location selected" +#: src/forms/PurchaseOrderForms.tsx:440 +msgid "Assign Batch Code and Serial Numbers" msgstr "" -#: src/forms/PurchaseOrderForms.tsx:438 -msgid "Received stock location selected" -msgstr "" +#: src/forms/PurchaseOrderForms.tsx:442 +msgid "Assign Batch Code" +msgstr "Tilldela streckkod" #: src/forms/PurchaseOrderForms.tsx:444 #: src/forms/StockForms.tsx:428 #~ msgid "Remove item from list" #~ msgstr "Remove item from list" -#: src/forms/PurchaseOrderForms.tsx:446 +#: src/forms/PurchaseOrderForms.tsx:462 +msgid "Choose Location" +msgstr "Välj plats" + +#: src/forms/PurchaseOrderForms.tsx:470 +msgid "Item Destination selected" +msgstr "" + +#: src/forms/PurchaseOrderForms.tsx:480 +msgid "Part category default location selected" +msgstr "" + +#: src/forms/PurchaseOrderForms.tsx:490 +msgid "Received stock location selected" +msgstr "" + +#: src/forms/PurchaseOrderForms.tsx:498 msgid "Default location selected" msgstr "" -#: src/forms/PurchaseOrderForms.tsx:507 +#: src/forms/PurchaseOrderForms.tsx:559 msgid "Set Location" msgstr "" -#: src/forms/PurchaseOrderForms.tsx:524 -msgid "Set Expiry Date" -msgstr "" - -#: src/forms/PurchaseOrderForms.tsx:532 -#: src/forms/StockForms.tsx:693 -msgid "Adjust Packaging" -msgstr "" - -#: src/forms/PurchaseOrderForms.tsx:540 -#: src/forms/StockForms.tsx:684 -#: src/hooks/UseStockAdjustActions.tsx:148 -msgid "Change Status" -msgstr "Ändra status" - -#: src/forms/PurchaseOrderForms.tsx:546 -msgid "Add Note" -msgstr "Lägg till anteckning" - #: src/forms/PurchaseOrderForms.tsx:566 #~ msgid "Serial numbers" #~ msgstr "Serial numbers" +#: src/forms/PurchaseOrderForms.tsx:576 +msgid "Set Expiry Date" +msgstr "" + #: src/forms/PurchaseOrderForms.tsx:582 #~ msgid "Store at line item destination" #~ msgstr "Store at line item destination" -#: src/forms/PurchaseOrderForms.tsx:610 -msgid "Store at default location" +#: src/forms/PurchaseOrderForms.tsx:584 +#: src/forms/StockForms.tsx:693 +msgid "Adjust Packaging" msgstr "" -#: src/forms/PurchaseOrderForms.tsx:625 -msgid "Store at line item destination " -msgstr "" +#: src/forms/PurchaseOrderForms.tsx:592 +#: src/forms/StockForms.tsx:684 +#: src/hooks/UseStockAdjustActions.tsx:148 +msgid "Change Status" +msgstr "Ändra status" -#: src/forms/PurchaseOrderForms.tsx:637 -msgid "Store with already received stock" -msgstr "" +#: src/forms/PurchaseOrderForms.tsx:598 +msgid "Add Note" +msgstr "Lägg till anteckning" #: src/forms/PurchaseOrderForms.tsx:658 #~ msgid "Receive line items" #~ msgstr "Receive line items" -#: src/forms/PurchaseOrderForms.tsx:661 -#: src/pages/build/BuildDetail.tsx:340 +#: src/forms/PurchaseOrderForms.tsx:662 +msgid "Store at default location" +msgstr "" + +#: src/forms/PurchaseOrderForms.tsx:677 +msgid "Store at line item destination " +msgstr "" + +#: src/forms/PurchaseOrderForms.tsx:689 +msgid "Store with already received stock" +msgstr "" + +#: src/forms/PurchaseOrderForms.tsx:713 +#: src/pages/build/BuildDetail.tsx:341 #: src/pages/stock/StockDetail.tsx:280 #: src/pages/stock/StockDetail.tsx:952 #: src/tables/Filter.tsx:83 -#: src/tables/build/BuildAllocatedStockTable.tsx:128 +#: src/tables/build/BuildAllocatedStockTable.tsx:125 #: src/tables/build/BuildOutputTable.tsx:112 -#: src/tables/part/PartTestResultTable.tsx:260 -#: src/tables/part/PartTestResultTable.tsx:281 +#: src/tables/part/PartTestResultTable.tsx:268 +#: src/tables/part/PartTestResultTable.tsx:289 #: src/tables/sales/SalesOrderAllocationTable.tsx:149 msgid "Batch Code" msgstr "Batchkod" -#: src/forms/PurchaseOrderForms.tsx:662 +#: src/forms/PurchaseOrderForms.tsx:714 msgid "Enter batch code for received items" msgstr "" -#: src/forms/PurchaseOrderForms.tsx:675 +#: src/forms/PurchaseOrderForms.tsx:727 #: src/forms/StockForms.tsx:218 msgid "Serial Numbers" msgstr "Serienummer" -#: src/forms/PurchaseOrderForms.tsx:676 +#: src/forms/PurchaseOrderForms.tsx:728 msgid "Enter serial numbers for received items" msgstr "" -#: src/forms/PurchaseOrderForms.tsx:690 +#: src/forms/PurchaseOrderForms.tsx:742 #: src/pages/stock/StockDetail.tsx:382 #: src/tables/stock/StockItemTable.tsx:294 msgid "Expiry Date" msgstr "" -#: src/forms/PurchaseOrderForms.tsx:691 +#: src/forms/PurchaseOrderForms.tsx:743 msgid "Enter an expiry date for received items" msgstr "" -#: src/forms/PurchaseOrderForms.tsx:703 +#: src/forms/PurchaseOrderForms.tsx:755 #: src/forms/StockForms.tsx:728 -#: src/pages/company/SupplierPartDetail.tsx:172 -#: src/pages/company/SupplierPartDetail.tsx:236 +#: src/pages/company/SupplierPartDetail.tsx:173 +#: src/pages/company/SupplierPartDetail.tsx:237 #: src/pages/stock/StockDetail.tsx:419 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:227 msgid "Packaging" msgstr "" -#: src/forms/PurchaseOrderForms.tsx:727 -#: src/pages/company/SupplierPartDetail.tsx:120 +#: src/forms/PurchaseOrderForms.tsx:779 +#: src/pages/company/SupplierPartDetail.tsx:121 #: src/tables/ColumnRenderers.tsx:332 msgid "Note" msgstr "" -#: src/forms/PurchaseOrderForms.tsx:799 -#: src/pages/company/SupplierPartDetail.tsx:138 +#: src/forms/PurchaseOrderForms.tsx:851 +#: src/pages/company/SupplierPartDetail.tsx:139 #: src/tables/purchasing/SupplierPriceBreakTable.tsx:49 msgid "SKU" msgstr "SKU" -#: src/forms/PurchaseOrderForms.tsx:800 +#: src/forms/PurchaseOrderForms.tsx:852 #: src/tables/part/PartPurchaseOrdersTable.tsx:127 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:213 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:283 @@ -4721,11 +4750,11 @@ msgstr "SKU" msgid "Received" msgstr "" -#: src/forms/PurchaseOrderForms.tsx:817 +#: src/forms/PurchaseOrderForms.tsx:869 msgid "Receive Line Items" msgstr "" -#: src/forms/PurchaseOrderForms.tsx:823 +#: src/forms/PurchaseOrderForms.tsx:875 msgid "Items received" msgstr "" @@ -4737,7 +4766,35 @@ msgstr "" msgid "Item received into stock" msgstr "" -#: src/forms/SalesOrderForms.tsx:401 +#: src/forms/SalesOrderForms.tsx:208 +#: src/forms/SalesOrderForms.tsx:210 +#: src/tables/sales/SalesOrderShipmentTable.tsx:215 +msgid "Check Shipment" +msgstr "" + +#: src/forms/SalesOrderForms.tsx:211 +msgid "Marking the shipment as checked indicates that you have verified that all items included in this shipment are correct" +msgstr "" + +#: src/forms/SalesOrderForms.tsx:221 +msgid "Shipment marked as checked" +msgstr "" + +#: src/forms/SalesOrderForms.tsx:236 +#: src/forms/SalesOrderForms.tsx:238 +#: src/tables/sales/SalesOrderShipmentTable.tsx:228 +msgid "Uncheck Shipment" +msgstr "" + +#: src/forms/SalesOrderForms.tsx:239 +msgid "Marking the shipment as unchecked indicates that the shipment requires further verification" +msgstr "" + +#: src/forms/SalesOrderForms.tsx:249 +msgid "Shipment marked as unchecked" +msgstr "" + +#: src/forms/SalesOrderForms.tsx:480 msgid "Leave blank to use the order address" msgstr "" @@ -4792,150 +4849,150 @@ msgstr "Flytta" msgid "Return" msgstr "" -#: src/forms/StockForms.tsx:963 +#: src/forms/StockForms.tsx:979 #: src/pages/Index/Scan.tsx:182 msgid "Count" msgstr "" -#: src/forms/StockForms.tsx:1246 +#: src/forms/StockForms.tsx:1262 #: src/hooks/UseStockAdjustActions.tsx:108 msgid "Add Stock" msgstr "" -#: src/forms/StockForms.tsx:1247 +#: src/forms/StockForms.tsx:1263 msgid "Stock added" msgstr "" -#: src/forms/StockForms.tsx:1250 +#: src/forms/StockForms.tsx:1266 msgid "Increase the quantity of the selected stock items by a given amount." msgstr "" -#: src/forms/StockForms.tsx:1261 +#: src/forms/StockForms.tsx:1277 #: src/hooks/UseStockAdjustActions.tsx:118 msgid "Remove Stock" msgstr "" -#: src/forms/StockForms.tsx:1262 +#: src/forms/StockForms.tsx:1278 msgid "Stock removed" msgstr "" -#: src/forms/StockForms.tsx:1265 +#: src/forms/StockForms.tsx:1281 msgid "Decrease the quantity of the selected stock items by a given amount." msgstr "" -#: src/forms/StockForms.tsx:1276 +#: src/forms/StockForms.tsx:1292 #: src/hooks/UseStockAdjustActions.tsx:128 msgid "Transfer Stock" msgstr "" -#: src/forms/StockForms.tsx:1277 +#: src/forms/StockForms.tsx:1293 msgid "Stock transferred" msgstr "" -#: src/forms/StockForms.tsx:1280 +#: src/forms/StockForms.tsx:1296 msgid "Transfer selected items to the specified location." msgstr "" -#: src/forms/StockForms.tsx:1291 +#: src/forms/StockForms.tsx:1307 #: src/hooks/UseStockAdjustActions.tsx:168 msgid "Return Stock" msgstr "" -#: src/forms/StockForms.tsx:1292 +#: src/forms/StockForms.tsx:1308 msgid "Stock returned" msgstr "" -#: src/forms/StockForms.tsx:1295 +#: src/forms/StockForms.tsx:1311 msgid "Return selected items into stock, to the specified location." msgstr "" -#: src/forms/StockForms.tsx:1306 +#: src/forms/StockForms.tsx:1322 #: src/hooks/UseStockAdjustActions.tsx:98 msgid "Count Stock" msgstr "" -#: src/forms/StockForms.tsx:1307 +#: src/forms/StockForms.tsx:1323 msgid "Stock counted" msgstr "" -#: src/forms/StockForms.tsx:1310 +#: src/forms/StockForms.tsx:1326 msgid "Count the selected stock items, and adjust the quantity accordingly." msgstr "" -#: src/forms/StockForms.tsx:1321 +#: src/forms/StockForms.tsx:1337 msgid "Change Stock Status" msgstr "" -#: src/forms/StockForms.tsx:1322 +#: src/forms/StockForms.tsx:1338 msgid "Stock status changed" msgstr "" -#: src/forms/StockForms.tsx:1325 +#: src/forms/StockForms.tsx:1341 msgid "Change the status of the selected stock items." msgstr "" -#: src/forms/StockForms.tsx:1336 +#: src/forms/StockForms.tsx:1352 #: src/hooks/UseStockAdjustActions.tsx:138 msgid "Merge Stock" msgstr "Sammanfoga lager" -#: src/forms/StockForms.tsx:1337 +#: src/forms/StockForms.tsx:1353 msgid "Stock merged" msgstr "" -#: src/forms/StockForms.tsx:1339 +#: src/forms/StockForms.tsx:1355 msgid "Merge Stock Items" msgstr "" -#: src/forms/StockForms.tsx:1341 +#: src/forms/StockForms.tsx:1357 msgid "Merge operation cannot be reversed" msgstr "" -#: src/forms/StockForms.tsx:1342 +#: src/forms/StockForms.tsx:1358 msgid "Tracking information may be lost when merging items" msgstr "" -#: src/forms/StockForms.tsx:1343 +#: src/forms/StockForms.tsx:1359 msgid "Supplier information may be lost when merging items" msgstr "" -#: src/forms/StockForms.tsx:1361 +#: src/forms/StockForms.tsx:1377 msgid "Assign Stock to Customer" msgstr "" -#: src/forms/StockForms.tsx:1362 +#: src/forms/StockForms.tsx:1378 msgid "Stock assigned to customer" msgstr "" -#: src/forms/StockForms.tsx:1372 +#: src/forms/StockForms.tsx:1388 msgid "Delete Stock Items" msgstr "Ta bort lagerartikel" -#: src/forms/StockForms.tsx:1373 +#: src/forms/StockForms.tsx:1389 msgid "Stock deleted" msgstr "" -#: src/forms/StockForms.tsx:1376 +#: src/forms/StockForms.tsx:1392 msgid "This operation will permanently delete the selected stock items." msgstr "" -#: src/forms/StockForms.tsx:1385 +#: src/forms/StockForms.tsx:1401 msgid "Parent stock location" msgstr "Överordnad lagerplats" -#: src/forms/StockForms.tsx:1512 +#: src/forms/StockForms.tsx:1528 msgid "Find Serial Number" msgstr "" -#: src/forms/StockForms.tsx:1523 +#: src/forms/StockForms.tsx:1539 msgid "No matching items" msgstr "" -#: src/forms/StockForms.tsx:1529 +#: src/forms/StockForms.tsx:1545 msgid "Multiple matching items" msgstr "" -#: src/forms/StockForms.tsx:1538 +#: src/forms/StockForms.tsx:1554 msgid "Invalid response from server" msgstr "" @@ -4953,7 +5010,6 @@ msgstr "" #: src/tables/FilterSelectDrawer.tsx:137 #: src/tables/FilterSelectDrawer.tsx:149 #: src/tables/part/PartTestResultTable.tsx:206 -#: src/tables/purchasing/ManufacturerPartParameterTable.tsx:42 #: src/tables/stock/StockItemTestResultTable.tsx:207 msgid "Value" msgstr "Värde" @@ -5244,7 +5300,7 @@ msgid "Delete selected stock items" msgstr "" #: src/hooks/UseStockAdjustActions.tsx:205 -#: src/pages/part/PartDetail.tsx:1137 +#: src/pages/part/PartDetail.tsx:1158 msgid "Stock Actions" msgstr "Lager åtgärder" @@ -5932,6 +5988,9 @@ msgstr "" #: src/pages/Index/Settings/AccountSettings/MFASettings.tsx:310 #: src/pages/Index/Settings/AccountSettings/MFASettings.tsx:401 +#: src/tables/build/BuildAllocatedStockTable.tsx:181 +#: src/tables/build/BuildLineTable.tsx:668 +#: src/tables/sales/SalesOrderAllocationTable.tsx:220 msgid "Confirm Removal" msgstr "" @@ -6394,30 +6453,34 @@ msgid "Email Messages" msgstr "" #: src/pages/Index/Settings/AdminCenter/HomePanel.tsx:22 -msgid "Active Alerts" -msgstr "" +#~ msgid "Active Alerts" +#~ msgstr "Active Alerts" #: src/pages/Index/Settings/AdminCenter/HomePanel.tsx:27 -msgid "Inactive Alerts" +#~ msgid "Inactive Alerts" +#~ msgstr "Inactive Alerts" + +#: src/pages/Index/Settings/AdminCenter/HomePanel.tsx:36 +msgid "System Status" msgstr "" -#: src/pages/Index/Settings/AdminCenter/HomePanel.tsx:38 +#: src/pages/Index/Settings/AdminCenter/HomePanel.tsx:47 msgid "Admin Center Information" msgstr "" -#: src/pages/Index/Settings/AdminCenter/HomePanel.tsx:44 +#: src/pages/Index/Settings/AdminCenter/HomePanel.tsx:53 msgid "The home panel (and the whole Admin Center) is a new feature starting with the new UI and was previously (before 1.0) not available." msgstr "" -#: src/pages/Index/Settings/AdminCenter/HomePanel.tsx:51 +#: src/pages/Index/Settings/AdminCenter/HomePanel.tsx:60 msgid "The admin center provides a centralized location for all administration functionality and is meant to replace all interaction with the (django) backend admin interface." msgstr "" -#: src/pages/Index/Settings/AdminCenter/HomePanel.tsx:58 +#: src/pages/Index/Settings/AdminCenter/HomePanel.tsx:67 msgid "Please open feature requests (after checking the tracker) for any existing backend admin functionality you are missing in this UI. The backend admin interface should be used carefully and seldom." msgstr "" -#: src/pages/Index/Settings/AdminCenter/HomePanel.tsx:76 +#: src/pages/Index/Settings/AdminCenter/HomePanel.tsx:85 msgid "Quick Actions" msgstr "" @@ -6476,11 +6539,11 @@ msgstr "Anpassade enheter" #: src/pages/Index/Settings/AdminCenter/Index.tsx:195 #: src/pages/part/CategoryDetail.tsx:313 -msgid "Part Parameters" -msgstr "" +#~ msgid "Part Parameters" +#~ msgstr "Part Parameters" #: src/pages/Index/Settings/AdminCenter/Index.tsx:202 -#: src/pages/part/CategoryDetail.tsx:306 +#: src/pages/part/CategoryDetail.tsx:329 msgid "Category Parameters" msgstr "" @@ -6494,7 +6557,7 @@ msgstr "Platstyper" #: src/pages/Index/Settings/AdminCenter/Index.tsx:235 #: src/pages/Index/Settings/AdminCenter/MachineManagementPanel.tsx:52 -#: src/tables/machine/MachineTypeTable.tsx:325 +#: src/tables/machine/MachineTypeTable.tsx:323 msgid "Machines" msgstr "Maskiner" @@ -6507,8 +6570,8 @@ msgid "Data Management" msgstr "Datahantering" #: src/pages/Index/Settings/AdminCenter/Index.tsx:270 -#: src/pages/Index/Settings/SystemSettings.tsx:175 -#: src/pages/Index/Settings/UserSettings.tsx:118 +#: src/pages/Index/Settings/SystemSettings.tsx:176 +#: src/pages/Index/Settings/UserSettings.tsx:119 msgid "Reporting" msgstr "Rapportering" @@ -6709,11 +6772,11 @@ msgstr "" msgid "The settings below are specific to each available plugin" msgstr "" -#: src/pages/Index/Settings/SystemSettings.tsx:77 +#: src/pages/Index/Settings/SystemSettings.tsx:78 msgid "Authentication" msgstr "" -#: src/pages/Index/Settings/SystemSettings.tsx:103 +#: src/pages/Index/Settings/SystemSettings.tsx:104 msgid "Barcodes" msgstr "Streckkoder" @@ -6725,12 +6788,12 @@ msgstr "Streckkoder" #~ msgid "This panel is a placeholder." #~ msgstr "This panel is a placeholder." -#: src/pages/Index/Settings/SystemSettings.tsx:127 -#: src/pages/Index/Settings/UserSettings.tsx:112 +#: src/pages/Index/Settings/SystemSettings.tsx:128 +#: src/pages/Index/Settings/UserSettings.tsx:113 msgid "The settings below are specific to each available notification method" msgstr "" -#: src/pages/Index/Settings/SystemSettings.tsx:133 +#: src/pages/Index/Settings/SystemSettings.tsx:134 msgid "Pricing" msgstr "Prissättning" @@ -6738,7 +6801,7 @@ msgstr "Prissättning" #~ msgid "Exchange Rates" #~ msgstr "Exchange Rates" -#: src/pages/Index/Settings/SystemSettings.tsx:169 +#: src/pages/Index/Settings/SystemSettings.tsx:170 msgid "Labels" msgstr "Etiketter" @@ -6790,15 +6853,15 @@ msgstr "Markera som oläst" #~ msgid "Delete notifications" #~ msgstr "Delete notifications" -#: src/pages/build/BuildDetail.tsx:69 +#: src/pages/build/BuildDetail.tsx:70 msgid "No Required Items" msgstr "" -#: src/pages/build/BuildDetail.tsx:71 +#: src/pages/build/BuildDetail.tsx:72 msgid "This build order does not have any required items." msgstr "" -#: src/pages/build/BuildDetail.tsx:72 +#: src/pages/build/BuildDetail.tsx:73 msgid "The assembled part may not have a Bill of Materials (BOM) defined, or the BOM is empty." msgstr "" @@ -6826,7 +6889,7 @@ msgstr "" #~ msgid "Build Order updated" #~ msgstr "Build Order updated" -#: src/pages/build/BuildDetail.tsx:215 +#: src/pages/build/BuildDetail.tsx:216 #: src/pages/part/PartDetail.tsx:480 #: src/pages/stock/StockDetail.tsx:161 #: src/tables/bom/UsedInTable.tsx:44 @@ -6843,10 +6906,10 @@ msgstr "" #~ msgid "Duplicate build order" #~ msgstr "Duplicate build order" -#: src/pages/build/BuildDetail.tsx:228 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:174 -#: src/pages/sales/ReturnOrderDetail.tsx:141 -#: src/pages/sales/SalesOrderDetail.tsx:131 +#: src/pages/build/BuildDetail.tsx:229 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:175 +#: src/pages/sales/ReturnOrderDetail.tsx:142 +#: src/pages/sales/SalesOrderDetail.tsx:132 #: src/pages/stock/StockDetail.tsx:176 msgid "Custom Status" msgstr "Anpassad status" @@ -6855,9 +6918,9 @@ msgstr "Anpassad status" #~ msgid "Delete build order" #~ msgstr "Delete build order" -#: src/pages/build/BuildDetail.tsx:237 -#: src/pages/build/BuildDetail.tsx:723 -#: src/pages/build/BuildIndex.tsx:28 +#: src/pages/build/BuildDetail.tsx:238 +#: src/pages/build/BuildDetail.tsx:728 +#: src/pages/build/BuildIndex.tsx:34 #: src/pages/stock/LocationDetail.tsx:140 #: src/tables/build/BuildOrderTable.tsx:123 #: src/tables/build/BuildOrderTable.tsx:183 @@ -6865,57 +6928,57 @@ msgstr "Anpassad status" msgid "External" msgstr "Extern" -#: src/pages/build/BuildDetail.tsx:244 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:141 -#: src/pages/sales/ReturnOrderDetail.tsx:108 -#: src/pages/sales/SalesOrderDetail.tsx:98 +#: src/pages/build/BuildDetail.tsx:245 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:142 +#: src/pages/sales/ReturnOrderDetail.tsx:109 +#: src/pages/sales/SalesOrderDetail.tsx:99 #: src/tables/ColumnRenderers.tsx:321 -#: src/tables/build/BuildAllocatedStockTable.tsx:115 -#: src/tables/build/BuildLineTable.tsx:352 +#: src/tables/build/BuildAllocatedStockTable.tsx:112 +#: src/tables/build/BuildLineTable.tsx:353 msgid "Reference" msgstr "Referens" -#: src/pages/build/BuildDetail.tsx:258 +#: src/pages/build/BuildDetail.tsx:259 msgid "Parent Build" msgstr "Föregående tillverkning" -#: src/pages/build/BuildDetail.tsx:269 +#: src/pages/build/BuildDetail.tsx:270 msgid "Build Quantity" msgstr "Tillverkat antal" -#: src/pages/build/BuildDetail.tsx:275 +#: src/pages/build/BuildDetail.tsx:276 #: src/pages/part/PartDetail.tsx:598 #: src/tables/bom/BomTable.tsx:365 #: src/tables/bom/BomTable.tsx:407 msgid "Can Build" msgstr "Kan tillverkas" -#: src/pages/build/BuildDetail.tsx:284 -#: src/pages/build/BuildDetail.tsx:474 +#: src/pages/build/BuildDetail.tsx:285 +#: src/pages/build/BuildDetail.tsx:475 msgid "Completed Outputs" msgstr "Slutförd produktion" -#: src/pages/build/BuildDetail.tsx:301 +#: src/pages/build/BuildDetail.tsx:302 #: src/tables/Filter.tsx:381 #: src/tables/build/BuildOrderTable.tsx:143 msgid "Issued By" msgstr "Utfärdad av" -#: src/pages/build/BuildDetail.tsx:309 +#: src/pages/build/BuildDetail.tsx:310 #: src/pages/part/PartDetail.tsx:691 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:261 -#: src/pages/sales/ReturnOrderDetail.tsx:239 -#: src/pages/sales/SalesOrderDetail.tsx:232 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:262 +#: src/pages/sales/ReturnOrderDetail.tsx:240 +#: src/pages/sales/SalesOrderDetail.tsx:233 #: src/tables/ColumnRenderers.tsx:464 #: src/tables/Filter.tsx:319 msgid "Responsible" msgstr "Ansvarig" -#: src/pages/build/BuildDetail.tsx:327 +#: src/pages/build/BuildDetail.tsx:328 msgid "Any location" msgstr "Alla platser" -#: src/pages/build/BuildDetail.tsx:334 +#: src/pages/build/BuildDetail.tsx:335 msgid "Destination Location" msgstr "Destinationsplats" @@ -6924,24 +6987,24 @@ msgstr "Destinationsplats" #~ msgid "Test Statistics" #~ msgstr "Test Statistics" -#: src/pages/build/BuildDetail.tsx:350 +#: src/pages/build/BuildDetail.tsx:351 #: src/tables/settings/ApiTokenTable.tsx:97 #: src/tables/settings/PendingTasksTable.tsx:41 msgid "Created" msgstr "Skapad" -#: src/pages/build/BuildDetail.tsx:358 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:286 -#: src/pages/sales/ReturnOrderDetail.tsx:265 -#: src/pages/sales/SalesOrderDetail.tsx:257 +#: src/pages/build/BuildDetail.tsx:359 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:287 +#: src/pages/sales/ReturnOrderDetail.tsx:266 +#: src/pages/sales/SalesOrderDetail.tsx:258 #: src/tables/ColumnRenderers.tsx:486 msgid "Start Date" msgstr "Startdatum" -#: src/pages/build/BuildDetail.tsx:366 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:294 -#: src/pages/sales/ReturnOrderDetail.tsx:273 -#: src/pages/sales/SalesOrderDetail.tsx:265 +#: src/pages/build/BuildDetail.tsx:367 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:295 +#: src/pages/sales/ReturnOrderDetail.tsx:274 +#: src/pages/sales/SalesOrderDetail.tsx:266 #: src/tables/ColumnRenderers.tsx:494 #: src/tables/part/PartPurchaseOrdersTable.tsx:101 #: src/tables/sales/ReturnOrderLineItemTable.tsx:154 @@ -6954,185 +7017,185 @@ msgstr "Färdigdatum" #~ msgstr "Reporting Actions" #: src/pages/build/BuildDetail.tsx:374 +#~ msgid "Print build report" +#~ msgstr "Print build report" + +#: src/pages/build/BuildDetail.tsx:375 #: src/tables/build/BuildOrderTable.tsx:93 #: src/tables/sales/SalesOrderLineItemTable.tsx:347 msgid "Completed" msgstr "Slutförd" -#: src/pages/build/BuildDetail.tsx:374 -#~ msgid "Print build report" -#~ msgstr "Print build report" - -#: src/pages/build/BuildDetail.tsx:410 +#: src/pages/build/BuildDetail.tsx:411 msgid "Build Details" msgstr "Tillverknings Detaljer" -#: src/pages/build/BuildDetail.tsx:416 +#: src/pages/build/BuildDetail.tsx:417 msgid "Required Parts" msgstr "" -#: src/pages/build/BuildDetail.tsx:428 -#: src/pages/sales/SalesOrderDetail.tsx:407 -#: src/pages/sales/SalesOrderShipmentDetail.tsx:261 +#: src/pages/build/BuildDetail.tsx:429 +#: src/pages/sales/SalesOrderDetail.tsx:408 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:259 #: src/tables/part/PartSalesAllocationsTable.tsx:73 msgid "Allocated Stock" msgstr "Allokerat lager" -#: src/pages/build/BuildDetail.tsx:444 +#: src/pages/build/BuildDetail.tsx:445 msgid "Consumed Stock" msgstr "Förbrukat lager" -#: src/pages/build/BuildDetail.tsx:461 +#: src/pages/build/BuildDetail.tsx:462 msgid "Incomplete Outputs" msgstr "Ofullständig produktion" -#: src/pages/build/BuildDetail.tsx:489 +#: src/pages/build/BuildDetail.tsx:490 msgid "External Orders" msgstr "" -#: src/pages/build/BuildDetail.tsx:503 +#: src/pages/build/BuildDetail.tsx:504 msgid "Child Build Orders" msgstr "Underordnad tillverknings order" -#: src/pages/build/BuildDetail.tsx:513 -#: src/pages/part/PartDetail.tsx:937 +#: src/pages/build/BuildDetail.tsx:514 +#: src/pages/part/PartDetail.tsx:926 #: src/pages/stock/StockDetail.tsx:587 #: src/tables/build/BuildOutputTable.tsx:654 #: src/tables/stock/StockItemTestResultTable.tsx:173 msgid "Test Results" msgstr "Test resultat" -#: src/pages/build/BuildDetail.tsx:550 +#: src/pages/build/BuildDetail.tsx:555 msgid "Edit Build Order" msgstr "Redigera Tillverknings order" -#: src/pages/build/BuildDetail.tsx:572 +#: src/pages/build/BuildDetail.tsx:577 #: src/tables/build/BuildOrderTable.tsx:207 #: src/tables/build/BuildOrderTable.tsx:223 msgid "Add Build Order" msgstr "Lägg till Tillverknings order" -#: src/pages/build/BuildDetail.tsx:582 +#: src/pages/build/BuildDetail.tsx:587 msgid "Cancel Build Order" msgstr "Avbryt Tillverknings order" -#: src/pages/build/BuildDetail.tsx:584 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:416 -#: src/pages/sales/ReturnOrderDetail.tsx:427 -#: src/pages/sales/SalesOrderDetail.tsx:454 +#: src/pages/build/BuildDetail.tsx:589 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:421 +#: src/pages/sales/ReturnOrderDetail.tsx:432 +#: src/pages/sales/SalesOrderDetail.tsx:459 msgid "Order cancelled" msgstr "Order avbruten" -#: src/pages/build/BuildDetail.tsx:585 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:415 -#: src/pages/sales/ReturnOrderDetail.tsx:426 -#: src/pages/sales/SalesOrderDetail.tsx:453 +#: src/pages/build/BuildDetail.tsx:590 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:420 +#: src/pages/sales/ReturnOrderDetail.tsx:431 +#: src/pages/sales/SalesOrderDetail.tsx:458 msgid "Cancel this order" msgstr "Avbryt denna order" -#: src/pages/build/BuildDetail.tsx:594 +#: src/pages/build/BuildDetail.tsx:599 msgid "Hold Build Order" msgstr "" -#: src/pages/build/BuildDetail.tsx:596 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:423 -#: src/pages/sales/ReturnOrderDetail.tsx:434 -#: src/pages/sales/SalesOrderDetail.tsx:461 +#: src/pages/build/BuildDetail.tsx:601 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:428 +#: src/pages/sales/ReturnOrderDetail.tsx:439 +#: src/pages/sales/SalesOrderDetail.tsx:466 msgid "Place this order on hold" msgstr "Pausa denna order" -#: src/pages/build/BuildDetail.tsx:597 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:424 -#: src/pages/sales/ReturnOrderDetail.tsx:435 -#: src/pages/sales/SalesOrderDetail.tsx:462 +#: src/pages/build/BuildDetail.tsx:602 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:429 +#: src/pages/sales/ReturnOrderDetail.tsx:440 +#: src/pages/sales/SalesOrderDetail.tsx:467 msgid "Order placed on hold" msgstr "Ordern är pausad" -#: src/pages/build/BuildDetail.tsx:602 +#: src/pages/build/BuildDetail.tsx:607 msgid "Issue Build Order" msgstr "Utfärda tillverknings order" -#: src/pages/build/BuildDetail.tsx:604 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:407 -#: src/pages/sales/ReturnOrderDetail.tsx:418 -#: src/pages/sales/SalesOrderDetail.tsx:445 +#: src/pages/build/BuildDetail.tsx:609 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:412 +#: src/pages/sales/ReturnOrderDetail.tsx:423 +#: src/pages/sales/SalesOrderDetail.tsx:450 msgid "Issue this order" msgstr "Utfärda denna order" -#: src/pages/build/BuildDetail.tsx:605 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:408 -#: src/pages/sales/ReturnOrderDetail.tsx:419 -#: src/pages/sales/SalesOrderDetail.tsx:446 +#: src/pages/build/BuildDetail.tsx:610 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:413 +#: src/pages/sales/ReturnOrderDetail.tsx:424 +#: src/pages/sales/SalesOrderDetail.tsx:451 msgid "Order issued" msgstr "Order utfärdad" -#: src/pages/build/BuildDetail.tsx:624 +#: src/pages/build/BuildDetail.tsx:629 msgid "Complete Build Order" msgstr "Slutför tillverknings order" -#: src/pages/build/BuildDetail.tsx:630 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:436 -#: src/pages/sales/ReturnOrderDetail.tsx:442 -#: src/pages/sales/SalesOrderDetail.tsx:480 +#: src/pages/build/BuildDetail.tsx:635 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:441 +#: src/pages/sales/ReturnOrderDetail.tsx:447 +#: src/pages/sales/SalesOrderDetail.tsx:485 msgid "Mark this order as complete" msgstr "Markera denna order som slutförd" -#: src/pages/build/BuildDetail.tsx:633 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:430 -#: src/pages/sales/ReturnOrderDetail.tsx:443 -#: src/pages/sales/SalesOrderDetail.tsx:481 +#: src/pages/build/BuildDetail.tsx:638 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:435 +#: src/pages/sales/ReturnOrderDetail.tsx:448 +#: src/pages/sales/SalesOrderDetail.tsx:486 msgid "Order completed" msgstr "Order slutförd" -#: src/pages/build/BuildDetail.tsx:660 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:459 -#: src/pages/sales/ReturnOrderDetail.tsx:470 -#: src/pages/sales/SalesOrderDetail.tsx:516 +#: src/pages/build/BuildDetail.tsx:665 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:464 +#: src/pages/sales/ReturnOrderDetail.tsx:475 +#: src/pages/sales/SalesOrderDetail.tsx:521 msgid "Issue Order" msgstr "Utfärda Order" -#: src/pages/build/BuildDetail.tsx:667 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:466 -#: src/pages/sales/ReturnOrderDetail.tsx:477 -#: src/pages/sales/SalesOrderDetail.tsx:530 +#: src/pages/build/BuildDetail.tsx:672 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:471 +#: src/pages/sales/ReturnOrderDetail.tsx:482 +#: src/pages/sales/SalesOrderDetail.tsx:535 msgid "Complete Order" msgstr "Slutför Order" -#: src/pages/build/BuildDetail.tsx:686 +#: src/pages/build/BuildDetail.tsx:691 msgid "Build Order Actions" msgstr "Åtgärder Tillverknings order" -#: src/pages/build/BuildDetail.tsx:691 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:489 -#: src/pages/sales/ReturnOrderDetail.tsx:500 -#: src/pages/sales/SalesOrderDetail.tsx:554 +#: src/pages/build/BuildDetail.tsx:696 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:494 +#: src/pages/sales/ReturnOrderDetail.tsx:505 +#: src/pages/sales/SalesOrderDetail.tsx:559 msgid "Edit order" msgstr "Redigera order" -#: src/pages/build/BuildDetail.tsx:695 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:497 -#: src/pages/sales/ReturnOrderDetail.tsx:506 -#: src/pages/sales/SalesOrderDetail.tsx:559 +#: src/pages/build/BuildDetail.tsx:700 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:502 +#: src/pages/sales/ReturnOrderDetail.tsx:511 +#: src/pages/sales/SalesOrderDetail.tsx:564 msgid "Duplicate order" msgstr "Duplicera order" -#: src/pages/build/BuildDetail.tsx:699 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:500 -#: src/pages/sales/ReturnOrderDetail.tsx:511 -#: src/pages/sales/SalesOrderDetail.tsx:562 -msgid "Hold order" -msgstr "Pausa order" - #: src/pages/build/BuildDetail.tsx:704 #: src/pages/purchasing/PurchaseOrderDetail.tsx:505 #: src/pages/sales/ReturnOrderDetail.tsx:516 #: src/pages/sales/SalesOrderDetail.tsx:567 +msgid "Hold order" +msgstr "Pausa order" + +#: src/pages/build/BuildDetail.tsx:709 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:510 +#: src/pages/sales/ReturnOrderDetail.tsx:521 +#: src/pages/sales/SalesOrderDetail.tsx:572 msgid "Cancel order" msgstr "Avbryt order" -#: src/pages/build/BuildDetail.tsx:742 +#: src/pages/build/BuildDetail.tsx:747 #: src/pages/stock/StockDetail.tsx:344 -#: src/tables/build/BuildAllocatedStockTable.tsx:85 +#: src/tables/build/BuildAllocatedStockTable.tsx:82 #: src/tables/part/PartBuildAllocationsTable.tsx:45 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:157 #: src/tables/stock/StockTrackingTable.tsx:109 @@ -7143,7 +7206,7 @@ msgstr "" #~ msgid "Build order created" #~ msgstr "Build order created" -#: src/pages/build/BuildIndex.tsx:29 +#: src/pages/build/BuildIndex.tsx:35 #: src/tables/build/BuildOrderTable.tsx:184 msgid "Show external build orders" msgstr "" @@ -7152,61 +7215,82 @@ msgstr "" #~ msgid "New Build Order" #~ msgstr "New Build Order" -#: src/pages/build/BuildIndex.tsx:83 -#: src/pages/purchasing/PurchasingIndex.tsx:69 -#: src/pages/sales/SalesIndex.tsx:92 -#: src/pages/sales/SalesIndex.tsx:125 +#: src/pages/build/BuildIndex.tsx:74 +#: src/pages/part/CategoryDetail.tsx:292 +#: src/pages/purchasing/PurchasingIndex.tsx:74 +#: src/pages/purchasing/PurchasingIndex.tsx:107 +#: src/pages/purchasing/PurchasingIndex.tsx:135 +#: src/pages/purchasing/PurchasingIndex.tsx:156 +#: src/pages/purchasing/PurchasingIndex.tsx:184 +#: src/pages/sales/SalesIndex.tsx:61 +#: src/pages/sales/SalesIndex.tsx:107 +#: src/pages/sales/SalesIndex.tsx:140 msgid "Table View" msgstr "Tabellvy" -#: src/pages/build/BuildIndex.tsx:86 -#: src/pages/purchasing/PurchasingIndex.tsx:72 -#: src/pages/sales/SalesIndex.tsx:95 -#: src/pages/sales/SalesIndex.tsx:128 +#: src/pages/build/BuildIndex.tsx:80 +#: src/pages/purchasing/PurchasingIndex.tsx:80 +#: src/pages/sales/SalesIndex.tsx:67 +#: src/pages/sales/SalesIndex.tsx:113 msgid "Calendar View" msgstr "Kalendervy" -#: src/pages/company/CompanyDetail.tsx:99 +#: src/pages/build/BuildIndex.tsx:86 +#: src/pages/part/CategoryDetail.tsx:306 +#: src/pages/purchasing/PurchasingIndex.tsx:92 +#: src/pages/purchasing/PurchasingIndex.tsx:118 +#: src/pages/purchasing/PurchasingIndex.tsx:141 +#: src/pages/purchasing/PurchasingIndex.tsx:167 +#: src/pages/purchasing/PurchasingIndex.tsx:190 +#: src/pages/sales/SalesIndex.tsx:79 +#: src/pages/sales/SalesIndex.tsx:125 +#: src/pages/sales/SalesIndex.tsx:151 +msgid "Parametric View" +msgstr "" + +#: src/pages/company/CompanyDetail.tsx:100 msgid "Website" msgstr "Webbplats" -#: src/pages/company/CompanyDetail.tsx:107 +#: src/pages/company/CompanyDetail.tsx:108 msgid "Phone Number" msgstr "Telefonnummer" -#: src/pages/company/CompanyDetail.tsx:114 +#: src/pages/company/CompanyDetail.tsx:115 msgid "Email Address" msgstr "E-postadress" -#: src/pages/company/CompanyDetail.tsx:121 +#: src/pages/company/CompanyDetail.tsx:122 msgid "Tax ID" msgstr "" -#: src/pages/company/CompanyDetail.tsx:131 +#: src/pages/company/CompanyDetail.tsx:132 msgid "Default Currency" msgstr "Standardvaluta" -#: src/pages/company/CompanyDetail.tsx:142 +#: src/pages/company/CompanyDetail.tsx:143 #: src/pages/company/ManufacturerDetail.tsx:8 -#: src/pages/company/ManufacturerPartDetail.tsx:104 -#: src/pages/company/ManufacturerPartDetail.tsx:280 -#: src/pages/company/SupplierPartDetail.tsx:152 +#: src/pages/company/ManufacturerPartDetail.tsx:103 +#: src/pages/company/ManufacturerPartDetail.tsx:271 +#: src/pages/company/SupplierPartDetail.tsx:153 #: src/tables/Filter.tsx:347 #: src/tables/company/CompanyTable.tsx:101 #: src/tables/purchasing/SupplierPartTable.tsx:89 msgid "Manufacturer" msgstr "Tillverkare" -#: src/pages/company/CompanyDetail.tsx:148 +#: src/pages/company/CompanyDetail.tsx:149 #: src/pages/company/CustomerDetail.tsx:8 #: src/pages/part/pricing/SaleHistoryPanel.tsx:31 -#: src/pages/sales/ReturnOrderDetail.tsx:123 -#: src/pages/sales/SalesOrderDetail.tsx:113 -#: src/pages/sales/SalesOrderShipmentDetail.tsx:113 +#: src/pages/sales/ReturnOrderDetail.tsx:124 +#: src/pages/sales/SalesOrderDetail.tsx:114 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:111 #: src/pages/stock/StockDetail.tsx:370 #: src/tables/company/CompanyTable.tsx:106 +#: src/tables/sales/ReturnOrderParametricTable.tsx:32 #: src/tables/sales/ReturnOrderTable.tsx:108 -#: src/tables/sales/SalesOrderShipmentTable.tsx:111 +#: src/tables/sales/SalesOrderParametricTable.tsx:32 +#: src/tables/sales/SalesOrderShipmentTable.tsx:132 #: src/tables/sales/SalesOrderTable.tsx:133 #: src/tables/stock/StockTrackingTable.tsx:153 msgid "Customer" @@ -7216,11 +7300,11 @@ msgstr "Kund" #~ msgid "Edit company" #~ msgstr "Edit company" -#: src/pages/company/CompanyDetail.tsx:181 +#: src/pages/company/CompanyDetail.tsx:182 msgid "Company Details" msgstr "Företagsdetaljer" -#: src/pages/company/CompanyDetail.tsx:187 +#: src/pages/company/CompanyDetail.tsx:188 msgid "Supplied Parts" msgstr "Leverantörsartiklar" @@ -7228,79 +7312,79 @@ msgstr "Leverantörsartiklar" #~ msgid "Delete company" #~ msgstr "Delete company" -#: src/pages/company/CompanyDetail.tsx:194 +#: src/pages/company/CompanyDetail.tsx:195 msgid "Manufactured Parts" msgstr "Tillverkarens artiklar" -#: src/pages/company/CompanyDetail.tsx:241 +#: src/pages/company/CompanyDetail.tsx:242 msgid "Assigned Stock" msgstr "Tilldelad Lager" -#: src/pages/company/CompanyDetail.tsx:282 +#: src/pages/company/CompanyDetail.tsx:287 #: src/tables/company/CompanyTable.tsx:82 msgid "Edit Company" msgstr "Redigera företag" -#: src/pages/company/CompanyDetail.tsx:290 +#: src/pages/company/CompanyDetail.tsx:295 msgid "Delete Company" msgstr "Radera företag" -#: src/pages/company/CompanyDetail.tsx:305 +#: src/pages/company/CompanyDetail.tsx:310 msgid "Company Actions" msgstr "" -#: src/pages/company/ManufacturerPartDetail.tsx:78 -#: src/pages/company/SupplierPartDetail.tsx:89 +#: src/pages/company/ManufacturerPartDetail.tsx:77 +#: src/pages/company/SupplierPartDetail.tsx:90 msgid "Internal Part" msgstr "Intern del" -#: src/pages/company/ManufacturerPartDetail.tsx:112 +#: src/pages/company/ManufacturerPartDetail.tsx:111 msgid "Manufacturer Part Number" msgstr "" -#: src/pages/company/ManufacturerPartDetail.tsx:129 -#: src/pages/company/SupplierPartDetail.tsx:113 +#: src/pages/company/ManufacturerPartDetail.tsx:128 +#: src/pages/company/SupplierPartDetail.tsx:114 msgid "External Link" msgstr "Extern länk" -#: src/pages/company/ManufacturerPartDetail.tsx:148 -#: src/pages/company/SupplierPartDetail.tsx:232 +#: src/pages/company/ManufacturerPartDetail.tsx:147 +#: src/pages/company/SupplierPartDetail.tsx:233 #: src/pages/part/PartDetail.tsx:787 msgid "Part Details" msgstr "Artikel Detaljer" -#: src/pages/company/ManufacturerPartDetail.tsx:151 +#: src/pages/company/ManufacturerPartDetail.tsx:150 msgid "Manufacturer Details" msgstr "" -#: src/pages/company/ManufacturerPartDetail.tsx:160 +#: src/pages/company/ManufacturerPartDetail.tsx:159 msgid "Manufacturer Part Details" msgstr "" -#: src/pages/company/ManufacturerPartDetail.tsx:178 -#: src/pages/company/SupplierPartDetail.tsx:252 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:381 +#: src/pages/company/ManufacturerPartDetail.tsx:165 +#: src/pages/company/SupplierPartDetail.tsx:253 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:382 msgid "Received Stock" msgstr "" -#: src/pages/company/ManufacturerPartDetail.tsx:220 +#: src/pages/company/ManufacturerPartDetail.tsx:211 #: src/tables/purchasing/ManufacturerPartTable.tsx:108 msgid "Edit Manufacturer Part" msgstr "" -#: src/pages/company/ManufacturerPartDetail.tsx:227 +#: src/pages/company/ManufacturerPartDetail.tsx:218 #: src/tables/purchasing/ManufacturerPartTable.tsx:96 #: src/tables/purchasing/ManufacturerPartTable.tsx:115 #: src/tables/purchasing/ManufacturerPartTable.tsx:156 msgid "Add Manufacturer Part" msgstr "" -#: src/pages/company/ManufacturerPartDetail.tsx:239 +#: src/pages/company/ManufacturerPartDetail.tsx:230 #: src/tables/purchasing/ManufacturerPartTable.tsx:126 msgid "Delete Manufacturer Part" msgstr "" -#: src/pages/company/ManufacturerPartDetail.tsx:254 +#: src/pages/company/ManufacturerPartDetail.tsx:245 msgid "Manufacturer Part Actions" msgstr "" @@ -7308,12 +7392,12 @@ msgstr "" #~ msgid "ManufacturerPart" #~ msgstr "ManufacturerPart" -#: src/pages/company/SupplierPartDetail.tsx:104 +#: src/pages/company/SupplierPartDetail.tsx:105 #: src/tables/part/RelatedPartTable.tsx:82 msgid "Part Description" msgstr "" -#: src/pages/company/SupplierPartDetail.tsx:179 +#: src/pages/company/SupplierPartDetail.tsx:180 #: src/tables/part/PartPurchaseOrdersTable.tsx:73 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:191 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:233 @@ -7321,50 +7405,50 @@ msgstr "" msgid "Pack Quantity" msgstr "" -#: src/pages/company/SupplierPartDetail.tsx:204 +#: src/pages/company/SupplierPartDetail.tsx:205 msgid "Supplier Availability" msgstr "" -#: src/pages/company/SupplierPartDetail.tsx:212 +#: src/pages/company/SupplierPartDetail.tsx:213 msgid "Availability Updated" msgstr "" -#: src/pages/company/SupplierPartDetail.tsx:237 +#: src/pages/company/SupplierPartDetail.tsx:238 msgid "Availability" msgstr "Tillgänglighet" -#: src/pages/company/SupplierPartDetail.tsx:246 +#: src/pages/company/SupplierPartDetail.tsx:247 msgid "Supplier Part Details" msgstr "" -#: src/pages/company/SupplierPartDetail.tsx:279 +#: src/pages/company/SupplierPartDetail.tsx:280 #: src/pages/part/PartPricingPanel.tsx:113 #: src/pages/part/pricing/PricingOverviewPanel.tsx:239 msgid "Supplier Pricing" msgstr "" -#: src/pages/company/SupplierPartDetail.tsx:308 +#: src/pages/company/SupplierPartDetail.tsx:313 msgid "Supplier Part Actions" msgstr "" -#: src/pages/company/SupplierPartDetail.tsx:332 +#: src/pages/company/SupplierPartDetail.tsx:337 #: src/tables/purchasing/SupplierPartTable.tsx:244 msgid "Edit Supplier Part" msgstr "" -#: src/pages/company/SupplierPartDetail.tsx:340 +#: src/pages/company/SupplierPartDetail.tsx:345 #: src/tables/purchasing/SupplierPartTable.tsx:264 msgid "Delete Supplier Part" msgstr "" -#: src/pages/company/SupplierPartDetail.tsx:348 +#: src/pages/company/SupplierPartDetail.tsx:353 #: src/tables/purchasing/SupplierPartTable.tsx:172 #: src/tables/purchasing/SupplierPartTable.tsx:251 msgid "Add Supplier Part" msgstr "" -#: src/pages/company/SupplierPartDetail.tsx:388 -#: src/pages/part/PartDetail.tsx:1003 +#: src/pages/company/SupplierPartDetail.tsx:393 +#: src/pages/part/PartDetail.tsx:1018 msgid "No Stock" msgstr "Inget på lager" @@ -7411,83 +7495,83 @@ msgstr "Användardetaljer" msgid "Basic user" msgstr "" -#: src/pages/part/CategoryDetail.tsx:100 +#: src/pages/part/CategoryDetail.tsx:103 #: src/pages/stock/LocationDetail.tsx:94 #: src/tables/settings/ErrorTable.tsx:63 #: src/tables/settings/ErrorTable.tsx:108 msgid "Path" msgstr "Sökväg" -#: src/pages/part/CategoryDetail.tsx:116 +#: src/pages/part/CategoryDetail.tsx:119 msgid "Parent Category" msgstr "" -#: src/pages/part/CategoryDetail.tsx:139 -#: src/pages/part/CategoryDetail.tsx:271 +#: src/pages/part/CategoryDetail.tsx:142 +#: src/pages/part/CategoryDetail.tsx:279 msgid "Subcategories" msgstr "Underkategorier" -#: src/pages/part/CategoryDetail.tsx:146 +#: src/pages/part/CategoryDetail.tsx:149 #: src/pages/stock/LocationDetail.tsx:134 #: src/tables/part/PartCategoryTable.tsx:89 #: src/tables/stock/StockLocationTable.tsx:43 msgid "Structural" msgstr "" -#: src/pages/part/CategoryDetail.tsx:152 +#: src/pages/part/CategoryDetail.tsx:155 msgid "Parent default location" msgstr "" -#: src/pages/part/CategoryDetail.tsx:159 +#: src/pages/part/CategoryDetail.tsx:162 msgid "Default location" msgstr "" -#: src/pages/part/CategoryDetail.tsx:170 +#: src/pages/part/CategoryDetail.tsx:173 msgid "Top level part category" msgstr "" -#: src/pages/part/CategoryDetail.tsx:180 -#: src/pages/part/CategoryDetail.tsx:248 +#: src/pages/part/CategoryDetail.tsx:183 +#: src/pages/part/CategoryDetail.tsx:251 #: src/tables/part/PartCategoryTable.tsx:122 msgid "Edit Part Category" msgstr "" -#: src/pages/part/CategoryDetail.tsx:189 +#: src/pages/part/CategoryDetail.tsx:192 msgid "Move items to parent category" msgstr "" -#: src/pages/part/CategoryDetail.tsx:193 +#: src/pages/part/CategoryDetail.tsx:196 #: src/pages/stock/LocationDetail.tsx:226 msgid "Delete items" msgstr "Radera objekt" -#: src/pages/part/CategoryDetail.tsx:201 -#: src/pages/part/CategoryDetail.tsx:253 +#: src/pages/part/CategoryDetail.tsx:204 +#: src/pages/part/CategoryDetail.tsx:256 msgid "Delete Part Category" msgstr "" -#: src/pages/part/CategoryDetail.tsx:204 +#: src/pages/part/CategoryDetail.tsx:207 msgid "Parts Action" msgstr "" -#: src/pages/part/CategoryDetail.tsx:205 +#: src/pages/part/CategoryDetail.tsx:208 msgid "Action for parts in this category" msgstr "" -#: src/pages/part/CategoryDetail.tsx:211 +#: src/pages/part/CategoryDetail.tsx:214 msgid "Child Categories Action" msgstr "" -#: src/pages/part/CategoryDetail.tsx:212 +#: src/pages/part/CategoryDetail.tsx:215 msgid "Action for child categories in this category" msgstr "" -#: src/pages/part/CategoryDetail.tsx:244 +#: src/pages/part/CategoryDetail.tsx:247 #: src/tables/part/PartCategoryTable.tsx:143 msgid "Category Actions" msgstr "" -#: src/pages/part/CategoryDetail.tsx:265 +#: src/pages/part/CategoryDetail.tsx:273 msgid "Category Details" msgstr "" @@ -7585,7 +7669,6 @@ msgid "Category Default Location" msgstr "" #: src/pages/part/PartDetail.tsx:507 -#: src/tables/purchasing/ManufacturerPartParameterTable.tsx:48 msgid "Units" msgstr "Enheter" @@ -7600,7 +7683,7 @@ msgstr "Nyckelord" #: src/pages/part/PartDetail.tsx:542 #: src/tables/bom/BomTable.tsx:439 -#: src/tables/build/BuildLineTable.tsx:305 +#: src/tables/build/BuildLineTable.tsx:306 #: src/tables/part/PartTable.tsx:319 #: src/tables/sales/SalesOrderLineItemTable.tsx:138 msgid "Available Stock" @@ -7608,7 +7691,7 @@ msgstr "Tillgängligt lager" #: src/pages/part/PartDetail.tsx:548 #: src/tables/bom/BomTable.tsx:341 -#: src/tables/build/BuildLineTable.tsx:267 +#: src/tables/build/BuildLineTable.tsx:268 #: src/tables/sales/SalesOrderLineItemTable.tsx:180 msgid "On order" msgstr "På order" @@ -7634,7 +7717,7 @@ msgstr "" #~ msgstr "Scheduling" #: src/pages/part/PartDetail.tsx:620 -#: src/tables/part/ParametricPartTable.tsx:359 +#: src/tables/part/ParametricPartTable.tsx:24 #: src/tables/part/PartTable.tsx:203 msgid "Locked" msgstr "Låst" @@ -7671,16 +7754,16 @@ msgid "Saleable Part" msgstr "Försäljningsbar artikel" #: src/pages/part/PartDetail.tsx:663 -#: src/pages/part/PartDetail.tsx:1033 +#: src/pages/part/PartDetail.tsx:1054 #: src/tables/bom/BomTable.tsx:150 #: src/tables/bom/BomTable.tsx:434 msgid "Virtual Part" msgstr "Virtuell artikel" #: src/pages/part/PartDetail.tsx:678 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:271 -#: src/pages/sales/ReturnOrderDetail.tsx:249 -#: src/pages/sales/SalesOrderDetail.tsx:242 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:272 +#: src/pages/sales/ReturnOrderDetail.tsx:250 +#: src/pages/sales/SalesOrderDetail.tsx:243 #: src/tables/ColumnRenderers.tsx:502 msgid "Creation Date" msgstr "Skapad Datum" @@ -7718,35 +7801,46 @@ msgstr "" msgid "Select Part Revision" msgstr "Välj artikel revision" -#: src/pages/part/PartDetail.tsx:823 +#: src/pages/part/PartDetail.tsx:812 msgid "Variants" msgstr "Varianter" -#: src/pages/part/PartDetail.tsx:830 +#: src/pages/part/PartDetail.tsx:819 #: src/pages/stock/StockDetail.tsx:542 msgid "Allocations" msgstr "Allokeringar" -#: src/pages/part/PartDetail.tsx:837 +#: src/pages/part/PartDetail.tsx:826 msgid "Bill of Materials" msgstr "Stycklista" -#: src/pages/part/PartDetail.tsx:849 +#: src/pages/part/PartDetail.tsx:838 msgid "Used In" msgstr "Används i" -#: src/pages/part/PartDetail.tsx:856 +#: src/pages/part/PartDetail.tsx:845 msgid "Part Pricing" msgstr "Prissättning för artikel" -#: src/pages/part/PartDetail.tsx:926 +#: src/pages/part/PartDetail.tsx:915 msgid "Test Templates" msgstr "Testmall" -#: src/pages/part/PartDetail.tsx:948 +#: src/pages/part/PartDetail.tsx:937 msgid "Related Parts" msgstr "Relaterade artiklar" +#: src/pages/part/PartDetail.tsx:949 +#: src/tables/ColumnRenderers.tsx:73 +#: src/tables/bom/BomTable.tsx:657 +#: src/tables/part/PartTestTemplateTable.tsx:258 +msgid "Part is Locked" +msgstr "" + +#: src/pages/part/PartDetail.tsx:954 +msgid "Part parameters cannot be edited, as the part is locked" +msgstr "" + #: src/pages/part/PartDetail.tsx:956 #~ msgid "Count part stock" #~ msgstr "Count part stock" @@ -7755,42 +7849,46 @@ msgstr "Relaterade artiklar" #~ msgid "Transfer part stock" #~ msgstr "Transfer part stock" -#: src/pages/part/PartDetail.tsx:1009 +#: src/pages/part/PartDetail.tsx:1024 #: src/tables/part/PartTestTemplateTable.tsx:112 #: src/tables/stock/StockItemTestResultTable.tsx:404 msgid "Required" msgstr "" -#: src/pages/part/PartDetail.tsx:1058 +#: src/pages/part/PartDetail.tsx:1042 +msgid "Deficit" +msgstr "" + +#: src/pages/part/PartDetail.tsx:1079 #: src/tables/part/PartTable.tsx:396 #: src/tables/part/PartTable.tsx:449 msgid "Add Part" msgstr "Lägg till artikel" -#: src/pages/part/PartDetail.tsx:1072 +#: src/pages/part/PartDetail.tsx:1093 msgid "Delete Part" msgstr "Ta bort artikel" -#: src/pages/part/PartDetail.tsx:1081 +#: src/pages/part/PartDetail.tsx:1102 msgid "Deleting this part cannot be reversed" msgstr "Borttagning av denna artikel kan inte återställas" -#: src/pages/part/PartDetail.tsx:1143 +#: src/pages/part/PartDetail.tsx:1164 #: src/pages/stock/StockDetail.tsx:883 msgid "Order" msgstr "" -#: src/pages/part/PartDetail.tsx:1144 +#: src/pages/part/PartDetail.tsx:1165 #: src/pages/stock/StockDetail.tsx:884 -#: src/tables/build/BuildLineTable.tsx:761 +#: src/tables/build/BuildLineTable.tsx:768 msgid "Order Stock" msgstr "" -#: src/pages/part/PartDetail.tsx:1156 +#: src/pages/part/PartDetail.tsx:1177 msgid "Search by serial number" msgstr "" -#: src/pages/part/PartDetail.tsx:1164 +#: src/pages/part/PartDetail.tsx:1185 #: src/tables/part/PartTable.tsx:506 msgid "Part Actions" msgstr "Artikel åtgärder" @@ -8039,7 +8137,7 @@ msgstr "" #: src/pages/part/pricing/PricingOverviewPanel.tsx:288 #: src/pages/stock/StockDetail.tsx:426 -#: src/tables/part/PartParameterTable.tsx:121 +#: src/tables/general/ParameterTable.tsx:101 #: src/tables/stock/StockItemTable.tsx:300 msgid "Last Updated" msgstr "Senast uppdaterad" @@ -8107,17 +8205,17 @@ msgstr "" msgid "Variant Part" msgstr "" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:89 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:90 msgid "Edit Purchase Order" msgstr "" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:125 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:126 #: src/tables/purchasing/PurchaseOrderTable.tsx:154 #: src/tables/purchasing/PurchaseOrderTable.tsx:167 msgid "Add Purchase Order" msgstr "" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:147 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:148 msgid "Supplier Reference" msgstr "" @@ -8127,20 +8225,20 @@ msgstr "" #~ msgid "Order Currency," #~ msgstr "Order Currency," -#: src/pages/purchasing/PurchaseOrderDetail.tsx:187 -#: src/pages/sales/ReturnOrderDetail.tsx:160 -#: src/pages/sales/SalesOrderDetail.tsx:144 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:188 +#: src/pages/sales/ReturnOrderDetail.tsx:161 +#: src/pages/sales/SalesOrderDetail.tsx:145 msgid "Completed Line Items" msgstr "" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:196 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:197 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:272 msgid "Destination" msgstr "" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:202 -#: src/pages/sales/ReturnOrderDetail.tsx:167 -#: src/pages/sales/SalesOrderDetail.tsx:161 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:203 +#: src/pages/sales/ReturnOrderDetail.tsx:168 +#: src/pages/sales/SalesOrderDetail.tsx:162 msgid "Order Currency" msgstr "" @@ -8150,97 +8248,97 @@ msgstr "" #~ msgid "Created On" #~ msgstr "Created On" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:208 -#: src/pages/sales/ReturnOrderDetail.tsx:174 -#: src/pages/sales/SalesOrderDetail.tsx:167 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:209 +#: src/pages/sales/ReturnOrderDetail.tsx:175 +#: src/pages/sales/SalesOrderDetail.tsx:168 msgid "Total Cost" msgstr "" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:237 -#: src/pages/sales/ReturnOrderDetail.tsx:215 -#: src/pages/sales/SalesOrderDetail.tsx:208 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:238 +#: src/pages/sales/ReturnOrderDetail.tsx:216 +#: src/pages/sales/SalesOrderDetail.tsx:209 msgid "Contact Email" msgstr "" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:245 -#: src/pages/sales/ReturnOrderDetail.tsx:223 -#: src/pages/sales/SalesOrderDetail.tsx:216 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:246 +#: src/pages/sales/ReturnOrderDetail.tsx:224 +#: src/pages/sales/SalesOrderDetail.tsx:217 msgid "Contact Phone" msgstr "" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:278 -#: src/pages/sales/ReturnOrderDetail.tsx:257 -#: src/pages/sales/SalesOrderDetail.tsx:249 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:279 +#: src/pages/sales/ReturnOrderDetail.tsx:258 +#: src/pages/sales/SalesOrderDetail.tsx:250 msgid "Issue Date" msgstr "" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:303 -#: src/pages/sales/ReturnOrderDetail.tsx:281 -#: src/pages/sales/SalesOrderDetail.tsx:272 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:304 +#: src/pages/sales/ReturnOrderDetail.tsx:282 +#: src/pages/sales/SalesOrderDetail.tsx:273 #: src/tables/ColumnRenderers.tsx:510 #: src/tables/build/BuildOrderTable.tsx:137 #: src/tables/part/PartPurchaseOrdersTable.tsx:106 msgid "Completion Date" msgstr "" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:333 -#: src/pages/sales/ReturnOrderDetail.tsx:311 -#: src/pages/sales/SalesOrderDetail.tsx:349 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:334 +#: src/pages/sales/ReturnOrderDetail.tsx:312 +#: src/pages/sales/SalesOrderDetail.tsx:350 msgid "Order Details" msgstr "" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:339 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:348 -#: src/pages/sales/ReturnOrderDetail.tsx:153 -#: src/pages/sales/ReturnOrderDetail.tsx:317 -#: src/pages/sales/ReturnOrderDetail.tsx:326 -#: src/pages/sales/SalesOrderDetail.tsx:355 -#: src/pages/sales/SalesOrderDetail.tsx:364 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:340 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:349 +#: src/pages/sales/ReturnOrderDetail.tsx:154 +#: src/pages/sales/ReturnOrderDetail.tsx:318 +#: src/pages/sales/ReturnOrderDetail.tsx:327 +#: src/pages/sales/SalesOrderDetail.tsx:356 +#: src/pages/sales/SalesOrderDetail.tsx:365 msgid "Line Items" msgstr "Radartiklar" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:363 -#: src/pages/sales/ReturnOrderDetail.tsx:341 -#: src/pages/sales/SalesOrderDetail.tsx:378 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:364 +#: src/pages/sales/ReturnOrderDetail.tsx:342 +#: src/pages/sales/SalesOrderDetail.tsx:379 msgid "Extra Line Items" msgstr "" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:405 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:410 msgid "Issue Purchase Order" msgstr "" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:413 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:418 msgid "Cancel Purchase Order" msgstr "" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:421 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:426 msgid "Hold Purchase Order" msgstr "" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:429 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:434 msgid "Complete Purchase Order" msgstr "" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:485 -#: src/pages/sales/ReturnOrderDetail.tsx:496 -#: src/pages/sales/SalesOrderDetail.tsx:549 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:490 +#: src/pages/sales/ReturnOrderDetail.tsx:501 +#: src/pages/sales/SalesOrderDetail.tsx:554 msgid "Order Actions" msgstr "" -#: src/pages/sales/ReturnOrderDetail.tsx:114 -#: src/pages/sales/SalesOrderDetail.tsx:104 -#: src/pages/sales/SalesOrderShipmentDetail.tsx:134 +#: src/pages/sales/ReturnOrderDetail.tsx:115 +#: src/pages/sales/SalesOrderDetail.tsx:105 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:132 #: src/tables/sales/SalesOrderTable.tsx:141 msgid "Customer Reference" msgstr "" -#: src/pages/sales/ReturnOrderDetail.tsx:195 +#: src/pages/sales/ReturnOrderDetail.tsx:196 msgid "Return Address" msgstr "" -#: src/pages/sales/ReturnOrderDetail.tsx:201 -#: src/pages/sales/SalesOrderDetail.tsx:194 -#: src/pages/sales/SalesOrderShipmentDetail.tsx:181 +#: src/pages/sales/ReturnOrderDetail.tsx:202 +#: src/pages/sales/SalesOrderDetail.tsx:195 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:179 msgid "Not specified" msgstr "" @@ -8248,117 +8346,117 @@ msgstr "" #~ msgid "Order canceled" #~ msgstr "Order canceled" -#: src/pages/sales/ReturnOrderDetail.tsx:389 +#: src/pages/sales/ReturnOrderDetail.tsx:394 msgid "Edit Return Order" msgstr "" -#: src/pages/sales/ReturnOrderDetail.tsx:407 +#: src/pages/sales/ReturnOrderDetail.tsx:412 #: src/tables/sales/ReturnOrderTable.tsx:154 #: src/tables/sales/ReturnOrderTable.tsx:167 msgid "Add Return Order" msgstr "" -#: src/pages/sales/ReturnOrderDetail.tsx:416 +#: src/pages/sales/ReturnOrderDetail.tsx:421 msgid "Issue Return Order" msgstr "" -#: src/pages/sales/ReturnOrderDetail.tsx:424 +#: src/pages/sales/ReturnOrderDetail.tsx:429 msgid "Cancel Return Order" msgstr "" -#: src/pages/sales/ReturnOrderDetail.tsx:432 +#: src/pages/sales/ReturnOrderDetail.tsx:437 msgid "Hold Return Order" msgstr "" -#: src/pages/sales/ReturnOrderDetail.tsx:440 +#: src/pages/sales/ReturnOrderDetail.tsx:445 msgid "Complete Return Order" msgstr "Slutför returorder" -#: src/pages/sales/SalesOrderDetail.tsx:153 +#: src/pages/sales/SalesOrderDetail.tsx:154 msgid "Completed Shipments" msgstr "Slutförda leveranser" -#: src/pages/sales/SalesOrderDetail.tsx:188 -#: src/pages/sales/SalesOrderShipmentDetail.tsx:170 +#: src/pages/sales/SalesOrderDetail.tsx:189 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:168 msgid "Shipping Address" msgstr "" -#: src/pages/sales/SalesOrderDetail.tsx:316 +#: src/pages/sales/SalesOrderDetail.tsx:317 msgid "Edit Sales Order" msgstr "Redigera försäljningsorder" -#: src/pages/sales/SalesOrderDetail.tsx:338 +#: src/pages/sales/SalesOrderDetail.tsx:339 #: src/tables/sales/SalesOrderTable.tsx:108 #: src/tables/sales/SalesOrderTable.tsx:121 msgid "Add Sales Order" msgstr "Ny försäljningsorder" -#: src/pages/sales/SalesOrderDetail.tsx:396 +#: src/pages/sales/SalesOrderDetail.tsx:397 #: src/tables/sales/SalesOrderTable.tsx:147 msgid "Shipments" msgstr "Leveranser" -#: src/pages/sales/SalesOrderDetail.tsx:443 +#: src/pages/sales/SalesOrderDetail.tsx:448 msgid "Issue Sales Order" msgstr "" -#: src/pages/sales/SalesOrderDetail.tsx:451 +#: src/pages/sales/SalesOrderDetail.tsx:456 msgid "Cancel Sales Order" msgstr "Avbryt försäljningsorder" -#: src/pages/sales/SalesOrderDetail.tsx:459 +#: src/pages/sales/SalesOrderDetail.tsx:464 msgid "Hold Sales Order" msgstr "Pausa försäljningsorder" -#: src/pages/sales/SalesOrderDetail.tsx:467 +#: src/pages/sales/SalesOrderDetail.tsx:472 msgid "Ship Sales Order" msgstr "" -#: src/pages/sales/SalesOrderDetail.tsx:469 +#: src/pages/sales/SalesOrderDetail.tsx:474 msgid "Ship this order?" msgstr "" -#: src/pages/sales/SalesOrderDetail.tsx:470 +#: src/pages/sales/SalesOrderDetail.tsx:475 msgid "Order shipped" msgstr "" -#: src/pages/sales/SalesOrderDetail.tsx:478 +#: src/pages/sales/SalesOrderDetail.tsx:483 msgid "Complete Sales Order" msgstr "Slutför försäljningsorder" -#: src/pages/sales/SalesOrderDetail.tsx:523 +#: src/pages/sales/SalesOrderDetail.tsx:528 msgid "Ship Order" msgstr "Leveransorder" -#: src/pages/sales/SalesOrderShipmentDetail.tsx:142 -#: src/tables/sales/SalesOrderShipmentTable.tsx:135 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:140 +#: src/tables/sales/SalesOrderShipmentTable.tsx:156 msgid "Shipment Reference" msgstr "" -#: src/pages/sales/SalesOrderShipmentDetail.tsx:148 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:146 msgid "Tracking Number" msgstr "" -#: src/pages/sales/SalesOrderShipmentDetail.tsx:156 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:154 msgid "Invoice Number" msgstr "Fakturanummer" -#: src/pages/sales/SalesOrderShipmentDetail.tsx:191 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:189 msgid "Allocated Items" msgstr "" -#: src/pages/sales/SalesOrderShipmentDetail.tsx:196 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:194 msgid "Checked By" msgstr "Kontrollerad av" -#: src/pages/sales/SalesOrderShipmentDetail.tsx:202 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:200 msgid "Not checked" msgstr "" -#: src/pages/sales/SalesOrderShipmentDetail.tsx:208 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:206 #: src/tables/ColumnRenderers.tsx:518 #: src/tables/sales/SalesOrderAllocationTable.tsx:182 -#: src/tables/sales/SalesOrderShipmentTable.tsx:168 +#: src/tables/sales/SalesOrderShipmentTable.tsx:189 msgid "Shipment Date" msgstr "Leveransdatum" @@ -8366,108 +8464,82 @@ msgstr "Leveransdatum" #~ msgid "Assigned Items" #~ msgstr "Assigned Items" -#: src/pages/sales/SalesOrderShipmentDetail.tsx:216 -#: src/tables/sales/SalesOrderShipmentTable.tsx:172 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:214 +#: src/tables/sales/SalesOrderShipmentTable.tsx:193 msgid "Delivery Date" msgstr "Leveransdatum" -#: src/pages/sales/SalesOrderShipmentDetail.tsx:255 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:253 msgid "Shipment Details" msgstr "" -#: src/pages/sales/SalesOrderShipmentDetail.tsx:294 -#: src/pages/sales/SalesOrderShipmentDetail.tsx:438 -#: src/tables/sales/SalesOrderShipmentTable.tsx:90 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:292 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:406 +#: src/tables/sales/SalesOrderShipmentTable.tsx:97 msgid "Edit Shipment" msgstr "" -#: src/pages/sales/SalesOrderShipmentDetail.tsx:301 -#: src/pages/sales/SalesOrderShipmentDetail.tsx:457 -#: src/tables/sales/SalesOrderShipmentTable.tsx:82 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:299 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:425 +#: src/tables/sales/SalesOrderShipmentTable.tsx:89 msgid "Cancel Shipment" msgstr "" -#: src/pages/sales/SalesOrderShipmentDetail.tsx:314 -#: src/tables/sales/SalesOrderShipmentTable.tsx:98 -#: src/tables/sales/SalesOrderShipmentTable.tsx:193 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:312 +#: src/tables/sales/SalesOrderShipmentTable.tsx:119 +#: src/tables/sales/SalesOrderShipmentTable.tsx:238 msgid "Complete Shipment" msgstr "" -#: src/pages/sales/SalesOrderShipmentDetail.tsx:326 -#: src/pages/sales/SalesOrderShipmentDetail.tsx:328 -msgid "Check Shipment" -msgstr "" - -#: src/pages/sales/SalesOrderShipmentDetail.tsx:329 -msgid "Marking the shipment as checked indicates that you have verified that all items included in this shipment are correct" -msgstr "" - #: src/pages/sales/SalesOrderShipmentDetail.tsx:339 -msgid "Shipment marked as checked" -msgstr "" - -#: src/pages/sales/SalesOrderShipmentDetail.tsx:346 -#: src/pages/sales/SalesOrderShipmentDetail.tsx:348 -msgid "Uncheck Shipment" -msgstr "" - -#: src/pages/sales/SalesOrderShipmentDetail.tsx:349 -msgid "Marking the shipment as unchecked indicates that the shipment requires further verification" -msgstr "" - -#: src/pages/sales/SalesOrderShipmentDetail.tsx:359 -msgid "Shipment marked as unchecked" -msgstr "" - -#: src/pages/sales/SalesOrderShipmentDetail.tsx:371 #: src/tables/part/PartPurchaseOrdersTable.tsx:122 msgid "Pending" msgstr "Väntande" -#: src/pages/sales/SalesOrderShipmentDetail.tsx:377 -#: src/tables/sales/SalesOrderShipmentTable.tsx:147 -#: src/tables/sales/SalesOrderShipmentTable.tsx:254 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:345 +#: src/tables/sales/SalesOrderShipmentTable.tsx:168 +#: src/tables/sales/SalesOrderShipmentTable.tsx:299 msgid "Checked" msgstr "" -#: src/pages/sales/SalesOrderShipmentDetail.tsx:383 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:351 msgid "Not Checked" msgstr "" -#: src/pages/sales/SalesOrderShipmentDetail.tsx:389 -#: src/tables/sales/SalesOrderShipmentTable.tsx:154 -#: src/tables/sales/SalesOrderShipmentTable.tsx:259 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:357 +#: src/tables/sales/SalesOrderShipmentTable.tsx:175 +#: src/tables/sales/SalesOrderShipmentTable.tsx:304 msgid "Shipped" msgstr "" -#: src/pages/sales/SalesOrderShipmentDetail.tsx:395 -#: src/tables/sales/SalesOrderShipmentTable.tsx:161 -#: src/tables/sales/SalesOrderShipmentTable.tsx:264 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:363 +#: src/tables/sales/SalesOrderShipmentTable.tsx:182 +#: src/tables/sales/SalesOrderShipmentTable.tsx:309 #: src/tables/settings/EmailTable.tsx:31 msgid "Delivered" msgstr "Levererat" -#: src/pages/sales/SalesOrderShipmentDetail.tsx:410 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:378 msgid "Send Shipment" msgstr "" -#: src/pages/sales/SalesOrderShipmentDetail.tsx:433 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:401 msgid "Shipment Actions" msgstr "" -#: src/pages/sales/SalesOrderShipmentDetail.tsx:442 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:410 msgid "Check" msgstr "" -#: src/pages/sales/SalesOrderShipmentDetail.tsx:443 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:411 msgid "Mark shipment as checked" msgstr "" -#: src/pages/sales/SalesOrderShipmentDetail.tsx:449 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:417 msgid "Uncheck" msgstr "" -#: src/pages/sales/SalesOrderShipmentDetail.tsx:450 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:418 msgid "Mark shipment as unchecked" msgstr "" @@ -8775,13 +8847,6 @@ msgstr "" msgid "Part is not active" msgstr "Artikeln är inte aktiv" -#: src/tables/ColumnRenderers.tsx:73 -#: src/tables/bom/BomTable.tsx:657 -#: src/tables/part/PartParameterTable.tsx:227 -#: src/tables/part/PartTestTemplateTable.tsx:258 -msgid "Part is Locked" -msgstr "" - #: src/tables/ColumnRenderers.tsx:78 msgid "You are subscribed to notifications for this part" msgstr "" @@ -9219,13 +9284,13 @@ msgstr "Virtuell del" #~ msgstr "Show asssmbled items" #: src/tables/bom/BomTable.tsx:315 -#: src/tables/build/BuildLineTable.tsx:276 +#: src/tables/build/BuildLineTable.tsx:277 #: src/tables/part/PartTable.tsx:145 msgid "External stock" msgstr "" #: src/tables/bom/BomTable.tsx:323 -#: src/tables/build/BuildLineTable.tsx:239 +#: src/tables/build/BuildLineTable.tsx:240 msgid "Includes substitute stock" msgstr "" @@ -9234,7 +9299,7 @@ msgstr "" #~ msgstr "Edit Bom Item" #: src/tables/bom/BomTable.tsx:332 -#: src/tables/build/BuildLineTable.tsx:249 +#: src/tables/build/BuildLineTable.tsx:250 #: src/tables/sales/SalesOrderLineItemTable.tsx:166 msgid "Includes variant stock" msgstr "" @@ -9272,8 +9337,8 @@ msgid "Stock Information" msgstr "" #: src/tables/bom/BomTable.tsx:399 -#: src/tables/build/BuildLineTable.tsx:496 -#: src/tables/build/BuildLineTable.tsx:537 +#: src/tables/build/BuildLineTable.tsx:497 +#: src/tables/build/BuildLineTable.tsx:538 msgid "Consumable item" msgstr "" @@ -9282,7 +9347,7 @@ msgid "No available stock" msgstr "" #: src/tables/bom/BomTable.tsx:420 -#: src/tables/build/BuildLineTable.tsx:213 +#: src/tables/build/BuildLineTable.tsx:214 msgid "Show testable items" msgstr "" @@ -9291,7 +9356,7 @@ msgid "Show trackable items" msgstr "" #: src/tables/bom/BomTable.tsx:430 -#: src/tables/build/BuildLineTable.tsx:208 +#: src/tables/build/BuildLineTable.tsx:209 msgid "Show assembled items" msgstr "" @@ -9335,7 +9400,7 @@ msgstr "" #: src/tables/bom/BomTable.tsx:464 #: src/tables/bom/UsedInTable.tsx:85 -#: src/tables/build/BuildLineTable.tsx:202 +#: src/tables/build/BuildLineTable.tsx:203 msgid "Optional" msgstr "" @@ -9345,7 +9410,7 @@ msgid "Show optional items" msgstr "" #: src/tables/bom/BomTable.tsx:469 -#: src/tables/build/BuildLineTable.tsx:197 +#: src/tables/build/BuildLineTable.tsx:198 msgid "Consumable" msgstr "" @@ -9420,6 +9485,7 @@ msgid "Add a single BOM item" msgstr "" #: src/tables/bom/BomTable.tsx:637 +#: src/tables/general/ParameterTable.tsx:206 #: src/tables/part/PartTable.tsx:546 msgid "Import from File" msgstr "Importera från fil" @@ -9433,8 +9499,8 @@ msgid "Bill of materials cannot be edited, as the part is locked" msgstr "" #: src/tables/bom/UsedInTable.tsx:34 -#: src/tables/build/BuildLineTable.tsx:207 -#: src/tables/part/ParametricPartTable.tsx:364 +#: src/tables/build/BuildLineTable.tsx:208 +#: src/tables/part/ParametricPartTable.tsx:29 #: src/tables/part/PartBuildAllocationsTable.tsx:60 #: src/tables/part/PartTable.tsx:209 #: src/tables/stock/StockItemTable.tsx:333 @@ -9455,11 +9521,11 @@ msgstr "Spårbart objekt" msgid "Show trackable assemblies" msgstr "" -#: src/tables/build/BuildAllocatedStockTable.tsx:67 +#: src/tables/build/BuildAllocatedStockTable.tsx:64 msgid "Allocated to Output" msgstr "" -#: src/tables/build/BuildAllocatedStockTable.tsx:68 +#: src/tables/build/BuildAllocatedStockTable.tsx:65 msgid "Show items allocated to a build output" msgstr "" @@ -9472,50 +9538,68 @@ msgstr "" #~ msgid "Include orders for part variants" #~ msgstr "Include orders for part variants" -#: src/tables/build/BuildAllocatedStockTable.tsx:97 +#: src/tables/build/BuildAllocatedStockTable.tsx:94 #: src/tables/part/PartBuildAllocationsTable.tsx:84 #: src/tables/part/PartPurchaseOrdersTable.tsx:132 #: src/tables/part/PartSalesAllocationsTable.tsx:69 #: src/tables/sales/SalesOrderAllocationTable.tsx:122 -#: src/tables/sales/SalesOrderShipmentTable.tsx:130 +#: src/tables/sales/SalesOrderShipmentTable.tsx:151 msgid "Order Status" msgstr "" +#: src/tables/build/BuildAllocatedStockTable.tsx:164 +#: src/tables/build/BuildLineTable.tsx:651 +msgid "Edit Stock Allocation" +msgstr "" + #: src/tables/build/BuildAllocatedStockTable.tsx:164 #~ msgid "Edit Build Item" #~ msgstr "Edit Build Item" -#: src/tables/build/BuildAllocatedStockTable.tsx:167 -#: src/tables/build/BuildLineTable.tsx:650 -msgid "Edit Stock Allocation" -msgstr "" - #: src/tables/build/BuildAllocatedStockTable.tsx:174 #~ msgid "Delete Build Item" #~ msgstr "Delete Build Item" -#: src/tables/build/BuildAllocatedStockTable.tsx:180 -#: src/tables/build/BuildLineTable.tsx:663 -msgid "Delete Stock Allocation" +#: src/tables/build/BuildAllocatedStockTable.tsx:177 +#: src/tables/build/BuildLineTable.tsx:664 +#: src/tables/sales/SalesOrderAllocationTable.tsx:218 +msgid "Remove Allocated Stock" msgstr "" -#: src/tables/build/BuildAllocatedStockTable.tsx:239 +#: src/tables/build/BuildAllocatedStockTable.tsx:180 +#: src/tables/build/BuildLineTable.tsx:663 +#~ msgid "Delete Stock Allocation" +#~ msgstr "Delete Stock Allocation" + +#: src/tables/build/BuildAllocatedStockTable.tsx:182 +#: src/tables/build/BuildLineTable.tsx:669 +#: src/tables/sales/SalesOrderAllocationTable.tsx:221 +msgid "Are you sure you want to remove this allocated stock from the order?" +msgstr "" + +#: src/tables/build/BuildAllocatedStockTable.tsx:242 msgid "Consume" msgstr "Konsumera" +#: src/tables/build/BuildAllocatedStockTable.tsx:259 +#: src/tables/build/BuildLineTable.tsx:112 +#: src/tables/sales/SalesOrderAllocationTable.tsx:248 +msgid "Remove allocated stock" +msgstr "" + #: src/tables/build/BuildLineTable.tsx:59 #~ msgid "Show lines with available stock" #~ msgstr "Show lines with available stock" -#: src/tables/build/BuildLineTable.tsx:120 +#: src/tables/build/BuildLineTable.tsx:121 msgid "View Stock Item" msgstr "" -#: src/tables/build/BuildLineTable.tsx:183 +#: src/tables/build/BuildLineTable.tsx:184 msgid "Show fully allocated lines" msgstr "" -#: src/tables/build/BuildLineTable.tsx:188 +#: src/tables/build/BuildLineTable.tsx:189 msgid "Show fully consumed lines" msgstr "" @@ -9523,124 +9607,124 @@ msgstr "" #~ msgid "Show allocated lines" #~ msgstr "Show allocated lines" -#: src/tables/build/BuildLineTable.tsx:193 +#: src/tables/build/BuildLineTable.tsx:194 msgid "Show items with sufficient available stock" msgstr "" -#: src/tables/build/BuildLineTable.tsx:198 +#: src/tables/build/BuildLineTable.tsx:199 msgid "Show consumable lines" msgstr "" -#: src/tables/build/BuildLineTable.tsx:203 +#: src/tables/build/BuildLineTable.tsx:204 msgid "Show optional lines" msgstr "" -#: src/tables/build/BuildLineTable.tsx:212 +#: src/tables/build/BuildLineTable.tsx:213 #: src/tables/part/PartTable.tsx:233 msgid "Testable" msgstr "Testbar" -#: src/tables/build/BuildLineTable.tsx:217 +#: src/tables/build/BuildLineTable.tsx:218 #: src/tables/stock/StockItemTable.tsx:388 msgid "Tracked" msgstr "" -#: src/tables/build/BuildLineTable.tsx:218 +#: src/tables/build/BuildLineTable.tsx:219 msgid "Show tracked lines" msgstr "" -#: src/tables/build/BuildLineTable.tsx:223 +#: src/tables/build/BuildLineTable.tsx:224 msgid "Show items with stock on order" msgstr "" -#: src/tables/build/BuildLineTable.tsx:258 +#: src/tables/build/BuildLineTable.tsx:259 #: src/tables/sales/SalesOrderLineItemTable.tsx:172 msgid "In production" msgstr "" -#: src/tables/build/BuildLineTable.tsx:286 +#: src/tables/build/BuildLineTable.tsx:287 msgid "Insufficient stock" msgstr "" -#: src/tables/build/BuildLineTable.tsx:302 +#: src/tables/build/BuildLineTable.tsx:303 #: src/tables/sales/SalesOrderLineItemTable.tsx:160 #: src/tables/stock/StockItemTable.tsx:191 msgid "No stock available" msgstr "" -#: src/tables/build/BuildLineTable.tsx:375 +#: src/tables/build/BuildLineTable.tsx:376 msgid "Gets Inherited" msgstr "" -#: src/tables/build/BuildLineTable.tsx:388 +#: src/tables/build/BuildLineTable.tsx:389 msgid "Unit Quantity" msgstr "" -#: src/tables/build/BuildLineTable.tsx:415 +#: src/tables/build/BuildLineTable.tsx:416 msgid "Setup Quantity" msgstr "" -#: src/tables/build/BuildLineTable.tsx:424 +#: src/tables/build/BuildLineTable.tsx:425 msgid "Attrition" msgstr "" -#: src/tables/build/BuildLineTable.tsx:432 +#: src/tables/build/BuildLineTable.tsx:433 msgid "Rounding Multiple" msgstr "" -#: src/tables/build/BuildLineTable.tsx:441 +#: src/tables/build/BuildLineTable.tsx:442 msgid "BOM Information" msgstr "" -#: src/tables/build/BuildLineTable.tsx:515 +#: src/tables/build/BuildLineTable.tsx:516 #: src/tables/part/PartBuildAllocationsTable.tsx:102 msgid "Fully allocated" msgstr "" -#: src/tables/build/BuildLineTable.tsx:563 +#: src/tables/build/BuildLineTable.tsx:564 #: src/tables/sales/SalesOrderLineItemTable.tsx:311 msgid "Create Build Order" msgstr "" -#: src/tables/build/BuildLineTable.tsx:592 +#: src/tables/build/BuildLineTable.tsx:593 msgid "Auto allocation in progress" msgstr "" -#: src/tables/build/BuildLineTable.tsx:595 -#: src/tables/build/BuildLineTable.tsx:802 +#: src/tables/build/BuildLineTable.tsx:596 +#: src/tables/build/BuildLineTable.tsx:809 msgid "Auto Allocate Stock" msgstr "" -#: src/tables/build/BuildLineTable.tsx:596 +#: src/tables/build/BuildLineTable.tsx:597 msgid "Automatically allocate stock to this build according to the selected options" msgstr "" -#: src/tables/build/BuildLineTable.tsx:616 -#: src/tables/build/BuildLineTable.tsx:630 -#: src/tables/build/BuildLineTable.tsx:751 -#: src/tables/build/BuildLineTable.tsx:852 +#: src/tables/build/BuildLineTable.tsx:617 +#: src/tables/build/BuildLineTable.tsx:631 +#: src/tables/build/BuildLineTable.tsx:758 +#: src/tables/build/BuildLineTable.tsx:859 #: src/tables/build/BuildOutputTable.tsx:355 #: src/tables/build/BuildOutputTable.tsx:360 msgid "Deallocate Stock" msgstr "" -#: src/tables/build/BuildLineTable.tsx:632 +#: src/tables/build/BuildLineTable.tsx:633 msgid "Deallocate all untracked stock for this build order" msgstr "" -#: src/tables/build/BuildLineTable.tsx:634 +#: src/tables/build/BuildLineTable.tsx:635 msgid "Deallocate stock from the selected line item" msgstr "" -#: src/tables/build/BuildLineTable.tsx:638 +#: src/tables/build/BuildLineTable.tsx:639 msgid "Stock has been deallocated" msgstr "" -#: src/tables/build/BuildLineTable.tsx:771 +#: src/tables/build/BuildLineTable.tsx:778 msgid "Build Stock" msgstr "" -#: src/tables/build/BuildLineTable.tsx:784 +#: src/tables/build/BuildLineTable.tsx:791 #: src/tables/sales/SalesOrderLineItemTable.tsx:487 msgid "View Part" msgstr "Visa del" @@ -9739,7 +9823,7 @@ msgid "Serialize Build Output" msgstr "" #: src/tables/build/BuildOutputTable.tsx:405 -#: src/tables/part/PartTestResultTable.tsx:310 +#: src/tables/part/PartTestResultTable.tsx:318 #: src/tables/stock/StockItemTable.tsx:328 msgid "Filter by stock status" msgstr "" @@ -9964,8 +10048,8 @@ msgid "View Item" msgstr "" #: src/tables/general/ExtraLineItemTable.tsx:95 -#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:299 -#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:403 +#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:300 +#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:405 #: src/tables/sales/ReturnOrderLineItemTable.tsx:83 #: src/tables/sales/ReturnOrderLineItemTable.tsx:187 #: src/tables/sales/SalesOrderLineItemTable.tsx:252 @@ -9974,14 +10058,14 @@ msgid "Add Line Item" msgstr "" #: src/tables/general/ExtraLineItemTable.tsx:108 -#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:320 +#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:322 #: src/tables/sales/ReturnOrderLineItemTable.tsx:96 #: src/tables/sales/SalesOrderLineItemTable.tsx:271 msgid "Edit Line Item" msgstr "" #: src/tables/general/ExtraLineItemTable.tsx:117 -#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:329 +#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:331 #: src/tables/sales/ReturnOrderLineItemTable.tsx:105 #: src/tables/sales/SalesOrderLineItemTable.tsx:280 msgid "Delete Line Item" @@ -9991,6 +10075,137 @@ msgstr "" msgid "Add Extra Line Item" msgstr "" +#: src/tables/general/ParameterTable.tsx:88 +msgid "Internal Units" +msgstr "" + +#: src/tables/general/ParameterTable.tsx:108 +#: src/tables/general/ParameterTable.tsx:123 +msgid "Updated By" +msgstr "Uppdaterad av" + +#: src/tables/general/ParameterTable.tsx:118 +msgid "Show parameters for enabled templates" +msgstr "" + +#: src/tables/general/ParameterTable.tsx:124 +msgid "Filter by user who last updated the parameter" +msgstr "" + +#: src/tables/general/ParameterTable.tsx:154 +msgid "Import Parameters" +msgstr "" + +#: src/tables/general/ParameterTable.tsx:164 +#: src/tables/general/ParametricDataTable.tsx:261 +#: src/tables/general/ParametricDataTable.tsx:392 +msgid "Add Parameter" +msgstr "Lägg till parameter" + +#: src/tables/general/ParameterTable.tsx:175 +#: src/tables/general/ParameterTable.tsx:222 +#: src/tables/general/ParametricDataTable.tsx:285 +msgid "Edit Parameter" +msgstr "Redigera parameter" + +#: src/tables/general/ParameterTable.tsx:183 +#: src/tables/general/ParameterTable.tsx:230 +msgid "Delete Parameter" +msgstr "Radera parameter" + +#: src/tables/general/ParameterTable.tsx:191 +msgid "Add Parameters" +msgstr "" + +#: src/tables/general/ParameterTable.tsx:197 +msgid "Create Parameter" +msgstr "" + +#: src/tables/general/ParameterTable.tsx:199 +msgid "Create a new parameter" +msgstr "" + +#: src/tables/general/ParameterTable.tsx:208 +msgid "Import parameters from a file" +msgstr "" + +#: src/tables/general/ParameterTemplateTable.tsx:48 +#: src/tables/general/ParameterTemplateTable.tsx:197 +msgid "Add Parameter Template" +msgstr "" + +#: src/tables/general/ParameterTemplateTable.tsx:64 +msgid "Duplicate Parameter Template" +msgstr "" + +#: src/tables/general/ParameterTemplateTable.tsx:78 +msgid "Delete Parameter Template" +msgstr "" + +#: src/tables/general/ParameterTemplateTable.tsx:85 +msgid "Edit Parameter Template" +msgstr "" + +#: src/tables/general/ParameterTemplateTable.tsx:138 +msgid "Checkbox" +msgstr "Kryssruta" + +#: src/tables/general/ParameterTemplateTable.tsx:139 +msgid "Show checkbox templates" +msgstr "" + +#: src/tables/general/ParameterTemplateTable.tsx:143 +msgid "Has choices" +msgstr "Har val" + +#: src/tables/general/ParameterTemplateTable.tsx:144 +msgid "Show templates with choices" +msgstr "" + +#: src/tables/general/ParameterTemplateTable.tsx:148 +#: src/tables/part/PartTable.tsx:245 +msgid "Has Units" +msgstr "Har enheter" + +#: src/tables/general/ParameterTemplateTable.tsx:149 +msgid "Show templates with units" +msgstr "" + +#: src/tables/general/ParameterTemplateTable.tsx:154 +msgid "Show enabled templates" +msgstr "" + +#: src/tables/general/ParameterTemplateTable.tsx:158 +#: src/tables/settings/ImportSessionTable.tsx:111 +#: src/tables/settings/TemplateTable.tsx:368 +msgid "Model Type" +msgstr "Modelltyp" + +#: src/tables/general/ParameterTemplateTable.tsx:159 +msgid "Filter by model type" +msgstr "" + +#: src/tables/general/ParametricDataTable.tsx:79 +msgid "Click to edit" +msgstr "Klicka för att redigera" + +#: src/tables/general/ParametricDataTableFilters.tsx:36 +msgid "True" +msgstr "Sant" + +#: src/tables/general/ParametricDataTableFilters.tsx:37 +msgid "False" +msgstr "Falskt" + +#: src/tables/general/ParametricDataTableFilters.tsx:47 +#: src/tables/general/ParametricDataTableFilters.tsx:80 +msgid "Select a choice" +msgstr "Välj ett val" + +#: src/tables/general/ParametricDataTableFilters.tsx:100 +msgid "Enter a value" +msgstr "Ange ett värde" + #: src/tables/machine/MachineListTable.tsx:133 msgid "Machine restarted" msgstr "" @@ -10071,7 +10286,7 @@ msgid "Initialized" msgstr "" #: src/tables/machine/MachineListTable.tsx:410 -#: src/tables/machine/MachineTypeTable.tsx:307 +#: src/tables/machine/MachineTypeTable.tsx:305 msgid "No errors reported" msgstr "" @@ -10132,15 +10347,15 @@ msgstr "" #~ msgid "Machine type information" #~ msgstr "Machine type information" -#: src/tables/machine/MachineTypeTable.tsx:128 +#: src/tables/machine/MachineTypeTable.tsx:126 msgid "Not Found" msgstr "Hittades inte" -#: src/tables/machine/MachineTypeTable.tsx:131 +#: src/tables/machine/MachineTypeTable.tsx:129 msgid "Machine type not found." msgstr "" -#: src/tables/machine/MachineTypeTable.tsx:141 +#: src/tables/machine/MachineTypeTable.tsx:139 msgid "Machine Type Information" msgstr "" @@ -10148,34 +10363,34 @@ msgstr "" #~ msgid "Available drivers" #~ msgstr "Available drivers" -#: src/tables/machine/MachineTypeTable.tsx:156 -#: src/tables/machine/MachineTypeTable.tsx:255 +#: src/tables/machine/MachineTypeTable.tsx:154 +#: src/tables/machine/MachineTypeTable.tsx:253 msgid "Slug" msgstr "" -#: src/tables/machine/MachineTypeTable.tsx:167 -#: src/tables/machine/MachineTypeTable.tsx:276 +#: src/tables/machine/MachineTypeTable.tsx:165 +#: src/tables/machine/MachineTypeTable.tsx:274 msgid "Provider plugin" msgstr "" -#: src/tables/machine/MachineTypeTable.tsx:179 -#: src/tables/machine/MachineTypeTable.tsx:288 +#: src/tables/machine/MachineTypeTable.tsx:177 +#: src/tables/machine/MachineTypeTable.tsx:286 msgid "Provider file" msgstr "" -#: src/tables/machine/MachineTypeTable.tsx:194 +#: src/tables/machine/MachineTypeTable.tsx:192 msgid "Available Drivers" msgstr "" -#: src/tables/machine/MachineTypeTable.tsx:234 +#: src/tables/machine/MachineTypeTable.tsx:232 msgid "Machine driver not found." msgstr "" -#: src/tables/machine/MachineTypeTable.tsx:242 +#: src/tables/machine/MachineTypeTable.tsx:240 msgid "Machine driver information" msgstr "" -#: src/tables/machine/MachineTypeTable.tsx:262 +#: src/tables/machine/MachineTypeTable.tsx:260 msgid "Machine type" msgstr "Maskintyp" @@ -10187,15 +10402,15 @@ msgstr "Maskintyp" #~ msgid "Machine driver detail" #~ msgstr "Machine driver detail" -#: src/tables/machine/MachineTypeTable.tsx:362 +#: src/tables/machine/MachineTypeTable.tsx:360 msgid "Builtin type" msgstr "" -#: src/tables/machine/MachineTypeTable.tsx:371 +#: src/tables/machine/MachineTypeTable.tsx:369 msgid "Machine Type Detail" msgstr "" -#: src/tables/machine/MachineTypeTable.tsx:381 +#: src/tables/machine/MachineTypeTable.tsx:379 msgid "Machine Driver Detail" msgstr "" @@ -10213,52 +10428,31 @@ msgstr "Avisering" msgid "Message" msgstr "Meddelande" -#: src/tables/part/ParametricPartTable.tsx:78 -msgid "Click to edit" -msgstr "Klicka för att redigera" +#: src/tables/part/ParametricPartTable.tsx:20 +msgid "Show active parts" +msgstr "Visa aktiva delar" + +#: src/tables/part/ParametricPartTable.tsx:25 +msgid "Show locked parts" +msgstr "Visa låsta delar" + +#: src/tables/part/ParametricPartTable.tsx:30 +msgid "Show assembly parts" +msgstr "" #: src/tables/part/ParametricPartTable.tsx:82 #~ msgid "Edit parameter" #~ msgstr "Edit parameter" #: src/tables/part/ParametricPartTable.tsx:244 -msgid "Add Part Parameter" -msgstr "" +#~ msgid "Add Part Parameter" +#~ msgstr "Add Part Parameter" #: src/tables/part/ParametricPartTable.tsx:258 #: src/tables/part/PartParameterTable.tsx:164 #: src/tables/part/PartParameterTable.tsx:187 -msgid "Edit Part Parameter" -msgstr "" - -#: src/tables/part/ParametricPartTable.tsx:355 -msgid "Show active parts" -msgstr "Visa aktiva delar" - -#: src/tables/part/ParametricPartTable.tsx:360 -msgid "Show locked parts" -msgstr "Visa låsta delar" - -#: src/tables/part/ParametricPartTable.tsx:365 -msgid "Show assembly parts" -msgstr "" - -#: src/tables/part/ParametricPartTableFilters.tsx:36 -msgid "True" -msgstr "Sant" - -#: src/tables/part/ParametricPartTableFilters.tsx:37 -msgid "False" -msgstr "Falskt" - -#: src/tables/part/ParametricPartTableFilters.tsx:47 -#: src/tables/part/ParametricPartTableFilters.tsx:80 -msgid "Select a choice" -msgstr "Välj ett val" - -#: src/tables/part/ParametricPartTableFilters.tsx:100 -msgid "Enter a value" -msgstr "Ange ett värde" +#~ msgid "Edit Part Parameter" +#~ msgstr "Edit Part Parameter" #: src/tables/part/PartBuildAllocationsTable.tsx:64 msgid "Assembly IPN" @@ -10273,7 +10467,7 @@ msgid "Required Stock" msgstr "" #: src/tables/part/PartBuildAllocationsTable.tsx:124 -#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:381 +#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:383 msgid "View Build Order" msgstr "" @@ -10332,85 +10526,22 @@ msgstr "" msgid "Delete Category Parameter" msgstr "" -#: src/tables/part/PartCategoryTemplateTable.tsx:87 -msgid "Parameter Template" -msgstr "" - #: src/tables/part/PartCategoryTemplateTable.tsx:93 #~ msgid "[{0}]" #~ msgstr "[{0}]" -#: src/tables/part/PartParameterTable.tsx:108 -msgid "Internal Units" -msgstr "" - -#: src/tables/part/PartParameterTable.tsx:128 -#: src/tables/part/PartParameterTable.tsx:138 -msgid "Updated By" -msgstr "Uppdaterad av" - -#: src/tables/part/PartParameterTable.tsx:139 -msgid "Filter by user who last updated the parameter" -msgstr "" - #: src/tables/part/PartParameterTable.tsx:148 -msgid "New Part Parameter" -msgstr "" +#~ msgid "New Part Parameter" +#~ msgstr "New Part Parameter" #: src/tables/part/PartParameterTable.tsx:173 #: src/tables/part/PartParameterTable.tsx:195 -msgid "Delete Part Parameter" -msgstr "" +#~ msgid "Delete Part Parameter" +#~ msgstr "Delete Part Parameter" #: src/tables/part/PartParameterTable.tsx:213 -msgid "Add parameter" -msgstr "Lägg till parameter" - -#: src/tables/part/PartParameterTable.tsx:232 -msgid "Part parameters cannot be edited, as the part is locked" -msgstr "" - -#: src/tables/part/PartParameterTemplateTable.tsx:36 -msgid "Checkbox" -msgstr "Kryssruta" - -#: src/tables/part/PartParameterTemplateTable.tsx:37 -msgid "Show checkbox templates" -msgstr "" - -#: src/tables/part/PartParameterTemplateTable.tsx:41 -msgid "Has choices" -msgstr "Har val" - -#: src/tables/part/PartParameterTemplateTable.tsx:42 -msgid "Show templates with choices" -msgstr "" - -#: src/tables/part/PartParameterTemplateTable.tsx:46 -#: src/tables/part/PartTable.tsx:245 -msgid "Has Units" -msgstr "Har enheter" - -#: src/tables/part/PartParameterTemplateTable.tsx:47 -msgid "Show templates with units" -msgstr "" - -#: src/tables/part/PartParameterTemplateTable.tsx:91 -#: src/tables/part/PartParameterTemplateTable.tsx:166 -msgid "Add Parameter Template" -msgstr "" - -#: src/tables/part/PartParameterTemplateTable.tsx:105 -msgid "Duplicate Parameter Template" -msgstr "" - -#: src/tables/part/PartParameterTemplateTable.tsx:117 -msgid "Edit Parameter Template" -msgstr "" - -#: src/tables/part/PartParameterTemplateTable.tsx:128 -msgid "Delete Parameter Template" -msgstr "" +#~ msgid "Add parameter" +#~ msgstr "Add parameter" #: src/tables/part/PartParameterTemplateTable.tsx:141 #~ msgid "Add parameter template" @@ -10430,7 +10561,7 @@ msgid "Show received items" msgstr "" #: src/tables/part/PartSalesAllocationsTable.tsx:90 -#: src/tables/sales/SalesOrderShipmentTable.tsx:218 +#: src/tables/sales/SalesOrderShipmentTable.tsx:263 msgid "View Sales Order" msgstr "" @@ -10617,8 +10748,8 @@ msgstr "" #: src/tables/part/PartTestResultTable.tsx:103 #: src/tables/part/PartTestResultTable.tsx:181 -#: src/tables/part/PartTestResultTable.tsx:320 -#: src/tables/part/PartTestResultTable.tsx:334 +#: src/tables/part/PartTestResultTable.tsx:328 +#: src/tables/part/PartTestResultTable.tsx:342 #: src/tables/stock/StockItemTestResultTable.tsx:296 #: src/tables/stock/StockItemTestResultTable.tsx:368 #: src/tables/stock/StockItemTestResultTable.tsx:429 @@ -10643,7 +10774,7 @@ msgstr "" msgid "No Result" msgstr "Inga resultat" -#: src/tables/part/PartTestResultTable.tsx:298 +#: src/tables/part/PartTestResultTable.tsx:306 msgid "Show build outputs currently in production" msgstr "Visa tillverkat antal som är i produktion" @@ -11013,36 +11144,45 @@ msgstr "Installerad" #~ msgid "Parameter updated" #~ msgstr "Parameter updated" -#: src/tables/purchasing/ManufacturerPartParameterTable.tsx:63 -#: src/tables/purchasing/ManufacturerPartParameterTable.tsx:112 -msgid "Add Parameter" -msgstr "Lägg till parameter" - #: src/tables/purchasing/ManufacturerPartParameterTable.tsx:73 #~ msgid "Parameter deleted" #~ msgstr "Parameter deleted" -#: src/tables/purchasing/ManufacturerPartParameterTable.tsx:74 -msgid "Edit Parameter" -msgstr "Redigera parameter" - #: src/tables/purchasing/ManufacturerPartParameterTable.tsx:74 #~ msgid "Are you sure you want to delete this parameter?" #~ msgstr "Are you sure you want to delete this parameter?" -#: src/tables/purchasing/ManufacturerPartParameterTable.tsx:82 -msgid "Delete Parameter" -msgstr "Radera parameter" - -#: src/tables/purchasing/ManufacturerPartTable.tsx:63 -#~ msgid "Create Manufacturer Part" -#~ msgstr "Create Manufacturer Part" - +#: src/tables/purchasing/ManufacturerPartParametricTable.tsx:34 #: src/tables/purchasing/ManufacturerPartTable.tsx:82 #: src/tables/purchasing/SupplierPartTable.tsx:99 msgid "MPN" msgstr "MPN" +#: src/tables/purchasing/ManufacturerPartParametricTable.tsx:44 +#: src/tables/purchasing/ManufacturerPartTable.tsx:134 +#: src/tables/purchasing/SupplierPartTable.tsx:220 +msgid "Active Part" +msgstr "Aktiv del" + +#: src/tables/purchasing/ManufacturerPartParametricTable.tsx:45 +#: src/tables/purchasing/ManufacturerPartTable.tsx:135 +msgid "Show manufacturer parts for active internal parts." +msgstr "" + +#: src/tables/purchasing/ManufacturerPartParametricTable.tsx:50 +#: src/tables/purchasing/ManufacturerPartTable.tsx:140 +msgid "Active Manufacturer" +msgstr "" + +#: src/tables/purchasing/ManufacturerPartParametricTable.tsx:51 +#: src/tables/purchasing/ManufacturerPartTable.tsx:142 +msgid "Show manufacturer parts for active manufacturers." +msgstr "" + +#: src/tables/purchasing/ManufacturerPartTable.tsx:63 +#~ msgid "Create Manufacturer Part" +#~ msgstr "Create Manufacturer Part" + #: src/tables/purchasing/ManufacturerPartTable.tsx:100 #~ msgid "Manufacturer part updated" #~ msgstr "Manufacturer part updated" @@ -11055,25 +11195,8 @@ msgstr "MPN" #~ msgid "Are you sure you want to remove this manufacturer part?" #~ msgstr "Are you sure you want to remove this manufacturer part?" -#: src/tables/purchasing/ManufacturerPartTable.tsx:134 -#: src/tables/purchasing/SupplierPartTable.tsx:220 -msgid "Active Part" -msgstr "Aktiv del" - -#: src/tables/purchasing/ManufacturerPartTable.tsx:135 -msgid "Show manufacturer parts for active internal parts." -msgstr "" - -#: src/tables/purchasing/ManufacturerPartTable.tsx:140 -msgid "Active Manufacturer" -msgstr "" - -#: src/tables/purchasing/ManufacturerPartTable.tsx:142 -msgid "Show manufacturer parts for active manufacturers." -msgstr "" - #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:115 -#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:397 +#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:399 msgid "Import Line Items" msgstr "" @@ -11099,11 +11222,11 @@ msgstr "" #~ msgid "Add line item" #~ msgstr "Add line item" -#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:350 +#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:352 msgid "Receive line item" msgstr "" -#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:414 +#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:416 msgid "Receive items" msgstr "" @@ -11201,25 +11324,25 @@ msgid "Not shipped" msgstr "" #: src/tables/sales/SalesOrderAllocationTable.tsx:211 -#: src/tables/sales/SalesOrderAllocationTable.tsx:229 +#: src/tables/sales/SalesOrderAllocationTable.tsx:235 msgid "Edit Allocation" msgstr "" #: src/tables/sales/SalesOrderAllocationTable.tsx:218 #: src/tables/sales/SalesOrderAllocationTable.tsx:241 -msgid "Delete Allocation" -msgstr "" +#~ msgid "Delete Allocation" +#~ msgstr "Delete Allocation" -#: src/tables/sales/SalesOrderAllocationTable.tsx:252 -#: src/tables/sales/SalesOrderAllocationTable.tsx:253 +#: src/tables/sales/SalesOrderAllocationTable.tsx:261 +#: src/tables/sales/SalesOrderAllocationTable.tsx:262 msgid "View Shipment" msgstr "" -#: src/tables/sales/SalesOrderAllocationTable.tsx:308 +#: src/tables/sales/SalesOrderAllocationTable.tsx:317 msgid "Assign to Shipment" msgstr "" -#: src/tables/sales/SalesOrderAllocationTable.tsx:324 +#: src/tables/sales/SalesOrderAllocationTable.tsx:333 msgid "Assign to shipment" msgstr "" @@ -11259,35 +11382,35 @@ msgstr "" #~ msgid "Delete Shipment" #~ msgstr "Delete Shipment" -#: src/tables/sales/SalesOrderShipmentTable.tsx:72 +#: src/tables/sales/SalesOrderShipmentTable.tsx:79 msgid "Create Shipment" msgstr "" -#: src/tables/sales/SalesOrderShipmentTable.tsx:143 +#: src/tables/sales/SalesOrderShipmentTable.tsx:164 msgid "Items" msgstr "" -#: src/tables/sales/SalesOrderShipmentTable.tsx:203 +#: src/tables/sales/SalesOrderShipmentTable.tsx:248 msgid "Edit shipment" msgstr "" -#: src/tables/sales/SalesOrderShipmentTable.tsx:211 +#: src/tables/sales/SalesOrderShipmentTable.tsx:256 msgid "Cancel shipment" msgstr "" -#: src/tables/sales/SalesOrderShipmentTable.tsx:241 +#: src/tables/sales/SalesOrderShipmentTable.tsx:286 msgid "Add shipment" msgstr "" -#: src/tables/sales/SalesOrderShipmentTable.tsx:255 +#: src/tables/sales/SalesOrderShipmentTable.tsx:300 msgid "Show shipments which have been checked" msgstr "" -#: src/tables/sales/SalesOrderShipmentTable.tsx:260 +#: src/tables/sales/SalesOrderShipmentTable.tsx:305 msgid "Show shipments which have been shipped" msgstr "" -#: src/tables/sales/SalesOrderShipmentTable.tsx:265 +#: src/tables/sales/SalesOrderShipmentTable.tsx:310 msgid "Show shipments which have been delivered" msgstr "" @@ -11621,11 +11744,6 @@ msgstr "Uppladdad" msgid "Imported Rows" msgstr "Importerade rader" -#: src/tables/settings/ImportSessionTable.tsx:111 -#: src/tables/settings/TemplateTable.tsx:368 -msgid "Model Type" -msgstr "Modelltyp" - #: src/tables/settings/ImportSessionTable.tsx:112 #: src/tables/settings/TemplateTable.tsx:369 msgid "Filter by target model type" diff --git a/src/frontend/src/locales/th/messages.po b/src/frontend/src/locales/th/messages.po index 9821de839f..df2d1a9669 100644 --- a/src/frontend/src/locales/th/messages.po +++ b/src/frontend/src/locales/th/messages.po @@ -8,7 +8,7 @@ msgstr "" "Language: th\n" "Project-Id-Version: inventree\n" "Report-Msgid-Bugs-To: \n" -"PO-Revision-Date: 2025-11-19 19:39\n" +"PO-Revision-Date: 2025-12-07 07:36\n" "Last-Translator: \n" "Language-Team: Thai\n" "Plural-Forms: nplurals=1; plural=0;\n" @@ -30,7 +30,7 @@ msgid "Edit" msgstr "" #: lib/components/RowActions.tsx:56 -#: src/components/forms/ApiForm.tsx:735 +#: src/components/forms/ApiForm.tsx:754 #: src/components/items/ActionDropdown.tsx:257 #: src/components/items/RoleTable.tsx:155 #: src/hooks/UseForm.tsx:164 @@ -56,24 +56,24 @@ msgstr "" #: lib/components/RowActions.tsx:136 #: src/components/nav/NavigationDrawer.tsx:190 -#: src/forms/PurchaseOrderForms.tsx:802 +#: src/forms/PurchaseOrderForms.tsx:854 #: src/forms/StockForms.tsx:796 #: src/forms/StockForms.tsx:843 -#: src/forms/StockForms.tsx:889 -#: src/forms/StockForms.tsx:928 -#: src/forms/StockForms.tsx:964 -#: src/forms/StockForms.tsx:1050 +#: src/forms/StockForms.tsx:896 +#: src/forms/StockForms.tsx:942 +#: src/forms/StockForms.tsx:980 +#: src/forms/StockForms.tsx:1066 #: src/pages/Index/Settings/AccountSettings/MFASettings.tsx:962 msgid "Actions" msgstr "" #: lib/components/SearchInput.tsx:34 -#: src/components/forms/fields/RelatedModelField.tsx:408 +#: src/components/forms/fields/RelatedModelField.tsx:479 #: src/components/nav/Header.tsx:169 #: src/components/wizards/ImportPartWizard.tsx:200 #: src/components/wizards/ImportPartWizard.tsx:233 -#: src/pages/Index/Settings/UserSettings.tsx:74 -#: src/pages/part/PartDetail.tsx:1155 +#: src/pages/Index/Settings/UserSettings.tsx:75 +#: src/pages/part/PartDetail.tsx:1176 msgid "Search" msgstr "" @@ -95,7 +95,7 @@ msgstr "" msgid "No" msgstr "" -#: lib/enums/ModelInformation.tsx:28 +#: lib/enums/ModelInformation.tsx:29 #: src/components/wizards/OrderPartsWizard.tsx:279 #: src/forms/BuildForms.tsx:332 #: src/forms/BuildForms.tsx:407 @@ -103,208 +103,234 @@ msgstr "" #: src/forms/BuildForms.tsx:630 #: src/forms/BuildForms.tsx:793 #: src/forms/BuildForms.tsx:896 -#: src/forms/PurchaseOrderForms.tsx:798 +#: src/forms/PurchaseOrderForms.tsx:850 #: src/forms/ReturnOrderForms.tsx:242 -#: src/forms/SalesOrderForms.tsx:305 +#: src/forms/SalesOrderForms.tsx:384 #: src/forms/StockForms.tsx:360 #: src/forms/StockForms.tsx:791 #: src/forms/StockForms.tsx:838 -#: src/forms/StockForms.tsx:884 -#: src/forms/StockForms.tsx:923 -#: src/forms/StockForms.tsx:959 -#: src/forms/StockForms.tsx:1002 -#: src/forms/StockForms.tsx:1046 -#: src/forms/StockForms.tsx:1094 -#: src/forms/StockForms.tsx:1138 -#: src/pages/build/BuildDetail.tsx:200 -#: src/pages/part/PartDetail.tsx:1207 +#: src/forms/StockForms.tsx:891 +#: src/forms/StockForms.tsx:937 +#: src/forms/StockForms.tsx:975 +#: src/forms/StockForms.tsx:1018 +#: src/forms/StockForms.tsx:1062 +#: src/forms/StockForms.tsx:1110 +#: src/forms/StockForms.tsx:1154 +#: src/pages/build/BuildDetail.tsx:201 +#: src/pages/part/PartDetail.tsx:1228 #: src/tables/ColumnRenderers.tsx:91 +#: src/tables/part/PartTestResultTable.tsx:247 #: src/tables/part/RelatedPartTable.tsx:53 #: src/tables/stock/StockTrackingTable.tsx:87 msgid "Part" msgstr "" -#: lib/enums/ModelInformation.tsx:29 +#: lib/enums/ModelInformation.tsx:30 #: lib/enums/Roles.tsx:35 #: src/components/nav/NavigationDrawer.tsx:70 #: src/defaults/links.tsx:36 -#: src/pages/Index/Settings/SystemSettings.tsx:190 -#: src/pages/part/CategoryDetail.tsx:132 -#: src/pages/part/CategoryDetail.tsx:277 -#: src/pages/part/CategoryDetail.tsx:323 -#: src/pages/part/CategoryDetail.tsx:354 -#: src/pages/part/PartDetail.tsx:965 +#: src/pages/Index/Settings/SystemSettings.tsx:197 +#: src/pages/part/CategoryDetail.tsx:135 +#: src/pages/part/CategoryDetail.tsx:285 +#: src/pages/part/CategoryDetail.tsx:340 +#: src/pages/part/CategoryDetail.tsx:371 +#: src/pages/part/PartDetail.tsx:978 msgid "Parts" msgstr "" #: lib/enums/ModelInformation.tsx:37 #: src/pages/Index/Settings/AdminCenter/PartParameterPanel.tsx:13 -msgid "Part Parameter Template" -msgstr "" +#~ msgid "Part Parameter Template" +#~ msgstr "Part Parameter Template" #: lib/enums/ModelInformation.tsx:38 -msgid "Part Parameter Templates" +#~ msgid "Part Parameter Templates" +#~ msgstr "Part Parameter Templates" + +#: lib/enums/ModelInformation.tsx:39 +msgid "Parameter" +msgstr "" + +#: lib/enums/ModelInformation.tsx:40 +#: src/components/panels/ParametersPanel.tsx:19 +#: src/components/wizards/ImportPartWizard.tsx:807 +#: src/pages/Index/Settings/AdminCenter/Index.tsx:195 +#: src/pages/Index/Settings/SystemSettings.tsx:191 +#: src/pages/part/PartDetail.tsx:943 +msgid "Parameters" msgstr "" #: lib/enums/ModelInformation.tsx:45 -msgid "Part Test Template" +#: src/tables/part/PartCategoryTemplateTable.tsx:87 +msgid "Parameter Template" msgstr "" #: lib/enums/ModelInformation.tsx:46 -msgid "Part Test Templates" +#: src/pages/Index/Settings/AdminCenter/ParameterPanel.tsx:13 +msgid "Parameter Templates" msgstr "" #: lib/enums/ModelInformation.tsx:52 +msgid "Part Test Template" +msgstr "" + +#: lib/enums/ModelInformation.tsx:53 +msgid "Part Test Templates" +msgstr "" + +#: lib/enums/ModelInformation.tsx:59 #: src/components/wizards/OrderPartsWizard.tsx:290 -#: src/pages/company/SupplierPartDetail.tsx:413 +#: src/pages/company/SupplierPartDetail.tsx:418 #: src/pages/stock/StockDetail.tsx:289 -#: src/tables/build/BuildAllocatedStockTable.tsx:155 +#: src/tables/build/BuildAllocatedStockTable.tsx:152 #: src/tables/part/PartPurchaseOrdersTable.tsx:50 +#: src/tables/purchasing/SupplierPartParametricTable.tsx:29 #: src/tables/purchasing/SupplierPartTable.tsx:83 #: src/tables/stock/StockItemTable.tsx:247 msgid "Supplier Part" msgstr "" -#: lib/enums/ModelInformation.tsx:53 -#: src/pages/purchasing/PurchasingIndex.tsx:92 +#: lib/enums/ModelInformation.tsx:60 +#: src/pages/purchasing/PurchasingIndex.tsx:128 msgid "Supplier Parts" msgstr "" -#: lib/enums/ModelInformation.tsx:61 -#: src/pages/company/ManufacturerPartDetail.tsx:297 -#: src/pages/company/SupplierPartDetail.tsx:161 +#: lib/enums/ModelInformation.tsx:69 +#: src/pages/company/ManufacturerPartDetail.tsx:288 +#: src/pages/company/SupplierPartDetail.tsx:162 #: src/tables/part/PartPurchaseOrdersTable.tsx:56 #: src/tables/stock/StockItemTable.tsx:253 msgid "Manufacturer Part" msgstr "" -#: lib/enums/ModelInformation.tsx:62 -#: src/pages/purchasing/PurchasingIndex.tsx:109 +#: lib/enums/ModelInformation.tsx:70 +#: src/pages/purchasing/PurchasingIndex.tsx:177 msgid "Manufacturer Parts" msgstr "" -#: lib/enums/ModelInformation.tsx:70 -#: src/pages/part/CategoryDetail.tsx:354 +#: lib/enums/ModelInformation.tsx:79 +#: src/pages/part/CategoryDetail.tsx:371 #: src/tables/Filter.tsx:389 msgid "Part Category" msgstr "" -#: lib/enums/ModelInformation.tsx:71 +#: lib/enums/ModelInformation.tsx:80 #: lib/enums/Roles.tsx:37 -#: src/pages/part/CategoryDetail.tsx:271 -#: src/pages/part/CategoryDetail.tsx:345 -#: src/pages/part/PartDetail.tsx:1196 +#: src/pages/part/CategoryDetail.tsx:279 +#: src/pages/part/CategoryDetail.tsx:362 +#: src/pages/part/PartDetail.tsx:1217 msgid "Part Categories" msgstr "" -#: lib/enums/ModelInformation.tsx:79 +#: lib/enums/ModelInformation.tsx:88 #: src/forms/BuildForms.tsx:473 #: src/forms/BuildForms.tsx:633 #: src/forms/BuildForms.tsx:794 -#: src/forms/SalesOrderForms.tsx:307 +#: src/forms/SalesOrderForms.tsx:386 #: src/pages/stock/StockDetail.tsx:1005 -#: src/tables/part/PartTestResultTable.tsx:248 +#: src/tables/part/PartTestResultTable.tsx:256 #: src/tables/stock/StockTrackingTable.tsx:48 #: src/tables/stock/StockTrackingTable.tsx:55 msgid "Stock Item" msgstr "" -#: lib/enums/ModelInformation.tsx:80 +#: lib/enums/ModelInformation.tsx:89 #: lib/enums/Roles.tsx:45 -#: src/pages/company/CompanyDetail.tsx:210 -#: src/pages/part/CategoryDetail.tsx:291 +#: src/pages/company/CompanyDetail.tsx:211 +#: src/pages/part/CategoryDetail.tsx:314 #: src/pages/part/PartStockHistoryDetail.tsx:101 #: src/pages/stock/LocationDetail.tsx:121 #: src/pages/stock/LocationDetail.tsx:180 msgid "Stock Items" msgstr "" -#: lib/enums/ModelInformation.tsx:88 +#: lib/enums/ModelInformation.tsx:98 #: lib/enums/Roles.tsx:47 #: src/pages/stock/LocationDetail.tsx:420 msgid "Stock Location" msgstr "" -#: lib/enums/ModelInformation.tsx:89 +#: lib/enums/ModelInformation.tsx:99 #: src/pages/stock/LocationDetail.tsx:174 #: src/pages/stock/LocationDetail.tsx:412 #: src/pages/stock/StockDetail.tsx:996 msgid "Stock Locations" msgstr "" -#: lib/enums/ModelInformation.tsx:97 +#: lib/enums/ModelInformation.tsx:108 msgid "Stock Location Type" msgstr "" -#: lib/enums/ModelInformation.tsx:98 +#: lib/enums/ModelInformation.tsx:109 msgid "Stock Location Types" msgstr "" -#: lib/enums/ModelInformation.tsx:103 -#: src/pages/Index/Settings/SystemSettings.tsx:248 -#: src/pages/part/PartDetail.tsx:911 +#: lib/enums/ModelInformation.tsx:114 +#: src/pages/Index/Settings/SystemSettings.tsx:254 +#: src/pages/part/PartDetail.tsx:900 msgid "Stock History" msgstr "" -#: lib/enums/ModelInformation.tsx:104 +#: lib/enums/ModelInformation.tsx:115 msgid "Stock Histories" msgstr "" -#: lib/enums/ModelInformation.tsx:109 +#: lib/enums/ModelInformation.tsx:120 msgid "Build" msgstr "" -#: lib/enums/ModelInformation.tsx:110 +#: lib/enums/ModelInformation.tsx:121 msgid "Builds" msgstr "" -#: lib/enums/ModelInformation.tsx:118 +#: lib/enums/ModelInformation.tsx:130 msgid "Build Line" msgstr "" -#: lib/enums/ModelInformation.tsx:119 +#: lib/enums/ModelInformation.tsx:131 msgid "Build Lines" msgstr "" -#: lib/enums/ModelInformation.tsx:126 +#: lib/enums/ModelInformation.tsx:138 msgid "Build Item" msgstr "" -#: lib/enums/ModelInformation.tsx:127 +#: lib/enums/ModelInformation.tsx:139 msgid "Build Items" msgstr "" -#: lib/enums/ModelInformation.tsx:132 -#: src/pages/company/CompanyDetail.tsx:340 +#: lib/enums/ModelInformation.tsx:144 +#: src/pages/company/CompanyDetail.tsx:345 #: src/tables/company/CompanyTable.tsx:47 #: src/tables/company/ContactTable.tsx:67 +#: src/tables/company/ParametricCompanyTable.tsx:18 msgid "Company" msgstr "" -#: lib/enums/ModelInformation.tsx:133 +#: lib/enums/ModelInformation.tsx:145 msgid "Companies" msgstr "" -#: lib/enums/ModelInformation.tsx:140 -#: src/pages/build/BuildDetail.tsx:316 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:253 -#: src/pages/sales/ReturnOrderDetail.tsx:231 -#: src/pages/sales/SalesOrderDetail.tsx:224 +#: lib/enums/ModelInformation.tsx:152 +#: src/pages/build/BuildDetail.tsx:317 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:254 +#: src/pages/sales/ReturnOrderDetail.tsx:232 +#: src/pages/sales/SalesOrderDetail.tsx:225 #: src/tables/ColumnRenderers.tsx:362 #: src/tables/Filter.tsx:286 #: src/tables/TableHoverCard.tsx:101 msgid "Project Code" msgstr "" -#: lib/enums/ModelInformation.tsx:141 +#: lib/enums/ModelInformation.tsx:153 #: src/pages/Index/Settings/AdminCenter/Index.tsx:172 msgid "Project Codes" msgstr "" -#: lib/enums/ModelInformation.tsx:147 +#: lib/enums/ModelInformation.tsx:159 #: src/components/wizards/OrderPartsWizard.tsx:338 #: src/pages/part/pricing/PurchaseHistoryPanel.tsx:33 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:550 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:555 #: src/pages/stock/StockDetail.tsx:352 #: src/tables/part/PartPurchaseOrdersTable.tsx:32 #: src/tables/stock/StockItemTable.tsx:239 @@ -312,117 +338,117 @@ msgstr "" msgid "Purchase Order" msgstr "" -#: lib/enums/ModelInformation.tsx:148 +#: lib/enums/ModelInformation.tsx:160 #: lib/enums/Roles.tsx:39 #: src/defaults/actions.tsx:104 -#: src/pages/Index/Settings/SystemSettings.tsx:283 -#: src/pages/company/CompanyDetail.tsx:203 -#: src/pages/company/SupplierPartDetail.tsx:266 -#: src/pages/part/PartDetail.tsx:875 -#: src/pages/purchasing/PurchasingIndex.tsx:60 +#: src/pages/Index/Settings/SystemSettings.tsx:289 +#: src/pages/company/CompanyDetail.tsx:204 +#: src/pages/company/SupplierPartDetail.tsx:267 +#: src/pages/part/PartDetail.tsx:864 +#: src/pages/purchasing/PurchasingIndex.tsx:66 msgid "Purchase Orders" msgstr "" -#: lib/enums/ModelInformation.tsx:156 +#: lib/enums/ModelInformation.tsx:169 msgid "Purchase Order Line" msgstr "" -#: lib/enums/ModelInformation.tsx:157 +#: lib/enums/ModelInformation.tsx:170 msgid "Purchase Order Lines" msgstr "" -#: lib/enums/ModelInformation.tsx:162 -#: src/pages/build/BuildDetail.tsx:289 +#: lib/enums/ModelInformation.tsx:175 +#: src/pages/build/BuildDetail.tsx:290 #: src/pages/part/pricing/SaleHistoryPanel.tsx:24 -#: src/pages/sales/SalesOrderDetail.tsx:614 -#: src/pages/sales/SalesOrderShipmentDetail.tsx:105 -#: src/pages/sales/SalesOrderShipmentDetail.tsx:478 +#: src/pages/sales/SalesOrderDetail.tsx:619 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:103 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:446 #: src/pages/stock/StockDetail.tsx:361 #: src/tables/part/PartSalesAllocationsTable.tsx:41 #: src/tables/sales/SalesOrderAllocationTable.tsx:110 -#: src/tables/sales/SalesOrderShipmentTable.tsx:122 +#: src/tables/sales/SalesOrderShipmentTable.tsx:143 #: src/tables/stock/StockTrackingTable.tsx:131 msgid "Sales Order" msgstr "" -#: lib/enums/ModelInformation.tsx:163 +#: lib/enums/ModelInformation.tsx:176 #: lib/enums/Roles.tsx:43 #: src/defaults/actions.tsx:114 -#: src/pages/Index/Settings/SystemSettings.tsx:299 -#: src/pages/company/CompanyDetail.tsx:223 -#: src/pages/part/PartDetail.tsx:887 -#: src/pages/sales/SalesIndex.tsx:84 +#: src/pages/Index/Settings/SystemSettings.tsx:305 +#: src/pages/company/CompanyDetail.tsx:224 +#: src/pages/part/PartDetail.tsx:876 +#: src/pages/sales/SalesIndex.tsx:53 msgid "Sales Orders" msgstr "" -#: lib/enums/ModelInformation.tsx:171 -#: src/pages/sales/SalesOrderShipmentDetail.tsx:477 +#: lib/enums/ModelInformation.tsx:185 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:445 msgid "Sales Order Shipment" msgstr "" -#: lib/enums/ModelInformation.tsx:172 +#: lib/enums/ModelInformation.tsx:186 msgid "Sales Order Shipments" msgstr "" -#: lib/enums/ModelInformation.tsx:179 -#: src/pages/sales/ReturnOrderDetail.tsx:549 +#: lib/enums/ModelInformation.tsx:194 +#: src/pages/sales/ReturnOrderDetail.tsx:554 #: src/tables/stock/StockTrackingTable.tsx:142 msgid "Return Order" msgstr "" -#: lib/enums/ModelInformation.tsx:180 +#: lib/enums/ModelInformation.tsx:195 #: lib/enums/Roles.tsx:41 #: src/defaults/actions.tsx:125 -#: src/pages/Index/Settings/SystemSettings.tsx:316 -#: src/pages/company/CompanyDetail.tsx:230 -#: src/pages/part/PartDetail.tsx:894 -#: src/pages/sales/SalesIndex.tsx:117 +#: src/pages/Index/Settings/SystemSettings.tsx:322 +#: src/pages/company/CompanyDetail.tsx:231 +#: src/pages/part/PartDetail.tsx:883 +#: src/pages/sales/SalesIndex.tsx:99 msgid "Return Orders" msgstr "" -#: lib/enums/ModelInformation.tsx:188 +#: lib/enums/ModelInformation.tsx:204 msgid "Return Order Line Item" msgstr "" -#: lib/enums/ModelInformation.tsx:189 +#: lib/enums/ModelInformation.tsx:205 msgid "Return Order Line Items" msgstr "" -#: lib/enums/ModelInformation.tsx:194 +#: lib/enums/ModelInformation.tsx:210 #: src/tables/company/AddressTable.tsx:52 msgid "Address" msgstr "" -#: lib/enums/ModelInformation.tsx:195 -#: src/pages/company/CompanyDetail.tsx:264 +#: lib/enums/ModelInformation.tsx:211 +#: src/pages/company/CompanyDetail.tsx:265 msgid "Addresses" msgstr "" -#: lib/enums/ModelInformation.tsx:201 +#: lib/enums/ModelInformation.tsx:217 #: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:89 #: src/pages/core/UserDetail.tsx:135 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:229 -#: src/pages/sales/ReturnOrderDetail.tsx:207 -#: src/pages/sales/SalesOrderDetail.tsx:200 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:230 +#: src/pages/sales/ReturnOrderDetail.tsx:208 +#: src/pages/sales/SalesOrderDetail.tsx:201 msgid "Contact" msgstr "" -#: lib/enums/ModelInformation.tsx:202 -#: src/pages/company/CompanyDetail.tsx:258 +#: lib/enums/ModelInformation.tsx:218 +#: src/pages/company/CompanyDetail.tsx:259 #: src/pages/core/CoreIndex.tsx:33 msgid "Contacts" msgstr "" -#: lib/enums/ModelInformation.tsx:208 +#: lib/enums/ModelInformation.tsx:224 #: src/tables/ColumnRenderers.tsx:444 msgid "Owner" msgstr "" -#: lib/enums/ModelInformation.tsx:209 +#: lib/enums/ModelInformation.tsx:225 msgid "Owners" msgstr "" -#: lib/enums/ModelInformation.tsx:215 +#: lib/enums/ModelInformation.tsx:231 #: src/pages/Auth/ChangePassword.tsx:36 #: src/pages/core/UserDetail.tsx:220 #: src/tables/ColumnRenderers.tsx:395 @@ -437,7 +463,7 @@ msgstr "" msgid "User" msgstr "" -#: lib/enums/ModelInformation.tsx:216 +#: lib/enums/ModelInformation.tsx:232 #: src/components/nav/NavigationDrawer.tsx:105 #: src/pages/Index/Settings/AdminCenter/UserManagementPanel.tsx:15 #: src/pages/core/CoreIndex.tsx:21 @@ -445,12 +471,12 @@ msgstr "" msgid "Users" msgstr "" -#: lib/enums/ModelInformation.tsx:222 +#: lib/enums/ModelInformation.tsx:238 #: src/pages/core/GroupDetail.tsx:78 msgid "Group" msgstr "" -#: lib/enums/ModelInformation.tsx:223 +#: lib/enums/ModelInformation.tsx:239 #: src/components/nav/NavigationDrawer.tsx:111 #: src/pages/Index/Settings/AdminCenter/UserManagementPanel.tsx:23 #: src/pages/core/CoreIndex.tsx:27 @@ -460,64 +486,64 @@ msgstr "" msgid "Groups" msgstr "" -#: lib/enums/ModelInformation.tsx:230 +#: lib/enums/ModelInformation.tsx:246 msgid "Import Session" msgstr "" -#: lib/enums/ModelInformation.tsx:231 +#: lib/enums/ModelInformation.tsx:247 msgid "Import Sessions" msgstr "" -#: lib/enums/ModelInformation.tsx:238 +#: lib/enums/ModelInformation.tsx:254 msgid "Label Template" msgstr "" -#: lib/enums/ModelInformation.tsx:239 +#: lib/enums/ModelInformation.tsx:255 #: src/pages/Index/Settings/AdminCenter/Index.tsx:209 msgid "Label Templates" msgstr "" -#: lib/enums/ModelInformation.tsx:246 +#: lib/enums/ModelInformation.tsx:262 msgid "Report Template" msgstr "" -#: lib/enums/ModelInformation.tsx:247 +#: lib/enums/ModelInformation.tsx:263 #: src/pages/Index/Settings/AdminCenter/Index.tsx:215 msgid "Report Templates" msgstr "" -#: lib/enums/ModelInformation.tsx:254 +#: lib/enums/ModelInformation.tsx:270 #: src/components/plugins/PluginDrawer.tsx:145 msgid "Plugin Configuration" msgstr "" -#: lib/enums/ModelInformation.tsx:255 +#: lib/enums/ModelInformation.tsx:271 msgid "Plugin Configurations" msgstr "" -#: lib/enums/ModelInformation.tsx:262 +#: lib/enums/ModelInformation.tsx:278 msgid "Content Type" msgstr "" -#: lib/enums/ModelInformation.tsx:263 +#: lib/enums/ModelInformation.tsx:279 msgid "Content Types" msgstr "" -#: lib/enums/ModelInformation.tsx:268 +#: lib/enums/ModelInformation.tsx:284 msgid "Selection List" msgstr "" -#: lib/enums/ModelInformation.tsx:269 -#: src/pages/Index/Settings/AdminCenter/PartParameterPanel.tsx:21 +#: lib/enums/ModelInformation.tsx:285 +#: src/pages/Index/Settings/AdminCenter/ParameterPanel.tsx:21 msgid "Selection Lists" msgstr "" -#: lib/enums/ModelInformation.tsx:275 +#: lib/enums/ModelInformation.tsx:291 #: src/components/barcodes/BarcodeInput.tsx:114 #: src/components/dashboard/DashboardLayout.tsx:281 #: src/components/editors/NotesEditor.tsx:74 #: src/components/editors/TemplateEditor/TemplateEditor.tsx:158 -#: src/components/forms/fields/ApiFormField.tsx:273 +#: src/components/forms/fields/ApiFormField.tsx:237 #: src/components/forms/fields/TableField.tsx:45 #: src/components/importer/ImportDataSelector.tsx:192 #: src/components/importer/ImporterColumnSelector.tsx:234 @@ -528,7 +554,7 @@ msgstr "" #: src/components/nav/SearchDrawer.tsx:572 #: src/components/settings/SettingList.tsx:139 #: src/components/wizards/ImportPartWizard.tsx:574 -#: src/components/wizards/ImportPartWizard.tsx:718 +#: src/components/wizards/ImportPartWizard.tsx:719 #: src/forms/BomForms.tsx:69 #: src/functions/auth.tsx:643 #: src/pages/ErrorPage.tsx:11 @@ -547,9 +573,9 @@ msgstr "" msgid "Error" msgstr "" -#: lib/enums/ModelInformation.tsx:276 +#: lib/enums/ModelInformation.tsx:292 #: src/tables/machine/MachineListTable.tsx:402 -#: src/tables/machine/MachineTypeTable.tsx:299 +#: src/tables/machine/MachineTypeTable.tsx:297 msgid "Errors" msgstr "" @@ -559,10 +585,10 @@ msgstr "" #: lib/enums/Roles.tsx:33 #: src/defaults/actions.tsx:135 -#: src/pages/Index/Settings/SystemSettings.tsx:264 -#: src/pages/build/BuildIndex.tsx:75 -#: src/pages/part/PartDetail.tsx:904 -#: src/pages/sales/SalesOrderDetail.tsx:421 +#: src/pages/Index/Settings/SystemSettings.tsx:270 +#: src/pages/build/BuildIndex.tsx:67 +#: src/pages/part/PartDetail.tsx:893 +#: src/pages/sales/SalesOrderDetail.tsx:422 msgid "Build Orders" msgstr "" @@ -639,39 +665,39 @@ msgstr "" msgid "Enter barcode data" msgstr "" -#: src/components/barcodes/BarcodeScanDialog.tsx:49 -#: src/components/buttons/ScanButton.tsx:15 +#: src/components/barcodes/BarcodeScanDialog.tsx:56 +#: src/components/buttons/ScanButton.tsx:27 #: src/components/nav/NavigationDrawer.tsx:122 -#: src/forms/PurchaseOrderForms.tsx:457 -#: src/forms/PurchaseOrderForms.tsx:563 +#: src/forms/PurchaseOrderForms.tsx:509 +#: src/forms/PurchaseOrderForms.tsx:615 msgid "Scan Barcode" msgstr "" -#: src/components/barcodes/BarcodeScanDialog.tsx:105 +#: src/components/barcodes/BarcodeScanDialog.tsx:121 msgid "No matching item found" msgstr "" -#: src/components/barcodes/BarcodeScanDialog.tsx:134 +#: src/components/barcodes/BarcodeScanDialog.tsx:150 msgid "Barcode does not match the expected model type" msgstr "" -#: src/components/barcodes/BarcodeScanDialog.tsx:145 +#: src/components/barcodes/BarcodeScanDialog.tsx:161 #: src/components/editors/NotesEditor.tsx:84 #: src/components/editors/NotesEditor.tsx:118 -#: src/components/forms/ApiForm.tsx:465 +#: src/components/forms/ApiForm.tsx:484 #: src/components/wizards/ImportPartWizard.tsx:566 -#: src/components/wizards/ImportPartWizard.tsx:690 +#: src/components/wizards/ImportPartWizard.tsx:691 #: src/pages/Index/Settings/AdminCenter/CurrencyManagementPanel.tsx:45 #: src/tables/bom/BomTable.tsx:548 #: src/tables/settings/PendingTasksTable.tsx:68 msgid "Success" msgstr "" -#: src/components/barcodes/BarcodeScanDialog.tsx:151 +#: src/components/barcodes/BarcodeScanDialog.tsx:167 msgid "Failed to handle barcode" msgstr "" -#: src/components/barcodes/BarcodeScanDialog.tsx:167 +#: src/components/barcodes/BarcodeScanDialog.tsx:183 #: src/pages/Index/Scan.tsx:129 msgid "Failed to scan barcode" msgstr "" @@ -714,10 +740,10 @@ msgstr "" #: src/components/barcodes/QRCode.tsx:179 #: src/pages/part/PartDetail.tsx:521 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:222 -#: src/pages/sales/ReturnOrderDetail.tsx:188 -#: src/pages/sales/SalesOrderDetail.tsx:181 -#: src/pages/sales/SalesOrderShipmentDetail.tsx:122 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:223 +#: src/pages/sales/ReturnOrderDetail.tsx:189 +#: src/pages/sales/SalesOrderDetail.tsx:182 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:120 #: src/pages/stock/StockDetail.tsx:186 msgid "Link" msgstr "" @@ -728,7 +754,7 @@ msgstr "" #: src/components/barcodes/QRCode.tsx:205 #: src/components/items/ActionDropdown.tsx:192 -#: src/forms/PurchaseOrderForms.tsx:554 +#: src/forms/PurchaseOrderForms.tsx:606 msgid "Unlink Barcode" msgstr "" @@ -829,14 +855,14 @@ msgstr "" #~ msgid "Scan QR code" #~ msgstr "Scan QR code" -#: src/components/buttons/ScanButton.tsx:19 -msgid "Open Barcode Scanner" -msgstr "" - #: src/components/buttons/ScanButton.tsx:20 #~ msgid "Open QR code scanner" #~ msgstr "Open QR code scanner" +#: src/components/buttons/ScanButton.tsx:32 +msgid "Open Barcode Scanner" +msgstr "" + #: src/components/buttons/SpotlightButton.tsx:12 msgid "Open spotlight" msgstr "" @@ -1059,7 +1085,7 @@ msgid "Show the number of sales orders which are assigned to you" msgstr "" #: src/components/dashboard/DashboardWidgetLibrary.tsx:129 -#: src/pages/sales/SalesIndex.tsx:105 +#: src/pages/sales/SalesIndex.tsx:87 msgid "Pending Shipments" msgstr "" @@ -1210,12 +1236,18 @@ msgid "Remove the associated image from this item?" msgstr "" #: src/components/details/DetailsImage.tsx:83 -#: src/forms/StockForms.tsx:888 +#: src/forms/StockForms.tsx:895 #: src/pages/Index/Settings/AccountSettings/MFASettings.tsx:324 #: src/pages/Index/Settings/AccountSettings/MFASettings.tsx:415 #: src/pages/Index/Settings/AccountSettings/MFASettings.tsx:884 #: src/pages/Index/Settings/AccountSettings/MFASettings.tsx:903 #: src/pages/Index/Settings/AccountSettings/SecurityContent.tsx:254 +#: src/tables/build/BuildAllocatedStockTable.tsx:178 +#: src/tables/build/BuildAllocatedStockTable.tsx:258 +#: src/tables/build/BuildLineTable.tsx:111 +#: src/tables/build/BuildLineTable.tsx:665 +#: src/tables/sales/SalesOrderAllocationTable.tsx:224 +#: src/tables/sales/SalesOrderAllocationTable.tsx:247 msgid "Remove" msgstr "" @@ -1241,12 +1273,12 @@ msgid "Upload Error" msgstr "" #: src/components/details/DetailsImage.tsx:250 -#: src/components/forms/fields/TextField.tsx:65 +#: src/components/forms/fields/AutoFillRightSection.tsx:34 msgid "Clear" msgstr "" #: src/components/details/DetailsImage.tsx:256 -#: src/components/forms/ApiForm.tsx:677 +#: src/components/forms/ApiForm.tsx:696 #: src/contexts/ThemeContext.tsx:44 #: src/pages/Index/Settings/AccountSettings/MFASettings.tsx:149 #: src/pages/Index/Settings/AccountSettings/MFASettings.tsx:568 @@ -1499,8 +1531,8 @@ msgstr "" msgid "A server error occurred" msgstr "" -#: src/components/forms/ApiForm.tsx:103 -#: src/components/forms/ApiForm.tsx:594 +#: src/components/forms/ApiForm.tsx:107 +#: src/components/forms/ApiForm.tsx:613 msgid "Form Error" msgstr "" @@ -1508,11 +1540,11 @@ msgstr "" #~ msgid "Form Errors Exist" #~ msgstr "Form Errors Exist" -#: src/components/forms/ApiForm.tsx:604 +#: src/components/forms/ApiForm.tsx:623 msgid "Errors exist for one or more form fields" msgstr "" -#: src/components/forms/ApiForm.tsx:715 +#: src/components/forms/ApiForm.tsx:734 #: src/hooks/UseForm.tsx:133 #: src/tables/plugin/PluginListTable.tsx:204 msgid "Update" @@ -1698,15 +1730,14 @@ msgstr "" #: src/components/forms/InstanceOptions.tsx:124 #: src/components/plugins/PluginDrawer.tsx:68 #: src/pages/Index/Settings/AdminCenter/UnitManagementPanel.tsx:19 -#: src/pages/part/CategoryDetail.tsx:88 +#: src/pages/part/CategoryDetail.tsx:91 #: src/pages/part/PartDetail.tsx:446 #: src/pages/stock/LocationDetail.tsx:82 #: src/tables/machine/MachineTypeTable.tsx:67 -#: src/tables/machine/MachineTypeTable.tsx:151 -#: src/tables/machine/MachineTypeTable.tsx:254 -#: src/tables/machine/MachineTypeTable.tsx:357 +#: src/tables/machine/MachineTypeTable.tsx:149 +#: src/tables/machine/MachineTypeTable.tsx:252 +#: src/tables/machine/MachineTypeTable.tsx:355 #: src/tables/plugin/PluginErrorTable.tsx:33 -#: src/tables/purchasing/ManufacturerPartParameterTable.tsx:36 #: src/tables/settings/ApiTokenTable.tsx:57 #: src/tables/settings/GroupTable.tsx:95 #: src/tables/settings/GroupTable.tsx:148 @@ -1769,7 +1800,7 @@ msgstr "" #~ msgstr "State: <0>worker ({0}), <1>plugins{1}" #: src/components/forms/InstanceOptions.tsx:118 -#: src/pages/Index/Settings/SystemSettings.tsx:45 +#: src/pages/Index/Settings/SystemSettings.tsx:46 msgid "Server" msgstr "" @@ -1793,6 +1824,8 @@ msgid "Plugins" msgstr "" #: src/components/forms/InstanceOptions.tsx:143 +#: src/tables/general/ParameterTemplateTable.tsx:153 +#: src/tables/general/ParameterTemplateTable.tsx:188 #: src/tables/part/PartTestTemplateTable.tsx:117 #: src/tables/settings/TemplateTable.tsx:251 #: src/tables/settings/TemplateTable.tsx:362 @@ -1817,10 +1850,14 @@ msgstr "" msgid "Running" msgstr "" -#: src/components/forms/fields/ApiFormField.tsx:233 +#: src/components/forms/fields/ApiFormField.tsx:197 msgid "Select file to upload" msgstr "" +#: src/components/forms/fields/AutoFillRightSection.tsx:47 +msgid "Accept suggested value" +msgstr "" + #: src/components/forms/fields/DateField.tsx:76 msgid "Select date" msgstr "" @@ -1853,13 +1890,13 @@ msgstr "" msgid "{0} icons" msgstr "" -#: src/components/forms/fields/RelatedModelField.tsx:409 +#: src/components/forms/fields/RelatedModelField.tsx:480 #: src/components/modals/AboutInvenTreeModal.tsx:96 #: src/pages/Index/Settings/AccountSettings/SecurityContent.tsx:383 msgid "Loading" msgstr "" -#: src/components/forms/fields/RelatedModelField.tsx:411 +#: src/components/forms/fields/RelatedModelField.tsx:482 msgid "No results found" msgstr "" @@ -1875,10 +1912,6 @@ msgstr "" msgid "Add new row" msgstr "" -#: src/components/forms/fields/TextField.tsx:82 -msgid "Accept suggested value" -msgstr "" - #: src/components/images/DetailsImage.tsx:252 #~ msgid "Select image" #~ msgstr "Select image" @@ -2036,7 +2069,7 @@ msgstr "" #: src/components/importer/ImporterDrawer.tsx:109 #: src/components/modals/AboutInvenTreeModal.tsx:205 #: src/components/modals/ServerInfoModal.tsx:134 -#: src/components/wizards/ImportPartWizard.tsx:772 +#: src/components/wizards/ImportPartWizard.tsx:773 #: src/forms/BomForms.tsx:132 #: src/pages/Index/Settings/AccountSettings/MFASettings.tsx:685 msgid "Close" @@ -2199,7 +2232,7 @@ msgid "Change" msgstr "" #: src/components/items/RoleTable.tsx:150 -#: src/forms/StockForms.tsx:927 +#: src/forms/StockForms.tsx:941 #: src/tables/stock/StockItemTestResultTable.tsx:367 msgid "Add" msgstr "" @@ -2222,11 +2255,11 @@ msgstr "" #: src/components/items/TransferList.tsx:161 #: src/components/render/Stock.tsx:102 -#: src/pages/part/PartDetail.tsx:994 +#: src/pages/part/PartDetail.tsx:1009 #: src/pages/stock/StockDetail.tsx:265 #: src/pages/stock/StockDetail.tsx:942 -#: src/tables/build/BuildAllocatedStockTable.tsx:135 -#: src/tables/build/BuildLineTable.tsx:192 +#: src/tables/build/BuildAllocatedStockTable.tsx:132 +#: src/tables/build/BuildLineTable.tsx:193 #: src/tables/part/PartTable.tsx:137 #: src/tables/stock/StockItemTable.tsx:182 #: src/tables/stock/StockItemTable.tsx:343 @@ -2373,7 +2406,7 @@ msgid "Database" msgstr "" #: src/components/modals/ServerInfoModal.tsx:49 -#: src/components/nav/Alerts.tsx:118 +#: src/components/nav/Alerts.tsx:120 msgid "Debug Mode" msgstr "" @@ -2414,7 +2447,7 @@ msgid "Issues detected" msgstr "" #: src/components/modals/ServerInfoModal.tsx:102 -#: src/components/nav/Alerts.tsx:125 +#: src/components/nav/Alerts.tsx:127 msgid "Background Worker" msgstr "" @@ -2436,7 +2469,7 @@ msgstr "" #~ msgstr "Email settings not configured" #: src/components/modals/ServerInfoModal.tsx:120 -#: src/components/nav/Alerts.tsx:141 +#: src/components/nav/Alerts.tsx:143 msgid "Email settings not configured." msgstr "" @@ -2444,43 +2477,47 @@ msgstr "" msgid "Alerts" msgstr "" -#: src/components/nav/Alerts.tsx:120 +#: src/components/nav/Alerts.tsx:97 +msgid "No issues detected" +msgstr "" + +#: src/components/nav/Alerts.tsx:122 msgid "The server is running in debug mode." msgstr "" -#: src/components/nav/Alerts.tsx:127 +#: src/components/nav/Alerts.tsx:129 msgid "The background worker process is not running." msgstr "" -#: src/components/nav/Alerts.tsx:132 +#: src/components/nav/Alerts.tsx:134 msgid "Server Restart" msgstr "" -#: src/components/nav/Alerts.tsx:134 +#: src/components/nav/Alerts.tsx:136 msgid "The server requires a restart to apply changes." msgstr "" -#: src/components/nav/Alerts.tsx:139 +#: src/components/nav/Alerts.tsx:141 msgid "Email settings" msgstr "" -#: src/components/nav/Alerts.tsx:146 +#: src/components/nav/Alerts.tsx:148 msgid "Database Migrations" msgstr "" -#: src/components/nav/Alerts.tsx:148 +#: src/components/nav/Alerts.tsx:150 msgid "There are pending database migrations." msgstr "" -#: src/components/nav/Alerts.tsx:163 +#: src/components/nav/Alerts.tsx:165 msgid "Learn more about {code}" msgstr "" #: src/components/nav/Header.tsx:188 #: src/components/nav/NavigationDrawer.tsx:134 #: src/components/nav/NotificationDrawer.tsx:181 -#: src/pages/Index/Settings/SystemSettings.tsx:121 -#: src/pages/Index/Settings/UserSettings.tsx:106 +#: src/pages/Index/Settings/SystemSettings.tsx:122 +#: src/pages/Index/Settings/UserSettings.tsx:107 #: src/pages/Notifications.tsx:45 #: src/pages/Notifications.tsx:130 msgid "Notifications" @@ -2511,8 +2548,8 @@ msgstr "" #: src/components/nav/NavigationDrawer.tsx:140 #: src/components/nav/SettingsHeader.tsx:40 #: src/defaults/actions.tsx:92 -#: src/pages/Index/Settings/UserSettings.tsx:141 -#: src/pages/Index/Settings/UserSettings.tsx:145 +#: src/pages/Index/Settings/UserSettings.tsx:142 +#: src/pages/Index/Settings/UserSettings.tsx:146 msgid "User Settings" msgstr "" @@ -2529,8 +2566,8 @@ msgstr "" #: src/components/nav/NavigationDrawer.tsx:146 #: src/components/nav/SettingsHeader.tsx:41 #: src/defaults/actions.tsx:144 -#: src/pages/Index/Settings/SystemSettings.tsx:348 -#: src/pages/Index/Settings/SystemSettings.tsx:353 +#: src/pages/Index/Settings/SystemSettings.tsx:354 +#: src/pages/Index/Settings/SystemSettings.tsx:359 msgid "System Settings" msgstr "" @@ -2577,11 +2614,11 @@ msgstr "" #: src/components/nav/NavigationDrawer.tsx:77 #: src/components/render/Part.tsx:36 -#: src/components/wizards/ImportPartWizard.tsx:807 +#: src/components/wizards/ImportPartWizard.tsx:808 #: src/defaults/links.tsx:42 #: src/forms/StockForms.tsx:794 -#: src/pages/Index/Settings/SystemSettings.tsx:224 -#: src/pages/part/PartDetail.tsx:804 +#: src/pages/Index/Settings/SystemSettings.tsx:230 +#: src/pages/part/PartDetail.tsx:793 #: src/pages/stock/LocationDetail.tsx:390 #: src/pages/stock/LocationDetail.tsx:420 #: src/pages/stock/StockDetail.tsx:642 @@ -2591,29 +2628,29 @@ msgstr "" #: src/components/nav/NavigationDrawer.tsx:84 #: src/defaults/links.tsx:48 -#: src/pages/build/BuildDetail.tsx:748 -#: src/pages/build/BuildIndex.tsx:102 +#: src/pages/build/BuildDetail.tsx:753 +#: src/pages/build/BuildIndex.tsx:101 msgid "Manufacturing" msgstr "" #: src/components/nav/NavigationDrawer.tsx:91 #: src/defaults/links.tsx:54 #: src/pages/company/ManufacturerDetail.tsx:9 -#: src/pages/company/ManufacturerPartDetail.tsx:276 +#: src/pages/company/ManufacturerPartDetail.tsx:267 #: src/pages/company/SupplierDetail.tsx:9 -#: src/pages/company/SupplierPartDetail.tsx:360 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:553 -#: src/pages/purchasing/PurchasingIndex.tsx:122 +#: src/pages/company/SupplierPartDetail.tsx:365 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:558 +#: src/pages/purchasing/PurchasingIndex.tsx:212 msgid "Purchasing" msgstr "" #: src/components/nav/NavigationDrawer.tsx:98 #: src/defaults/links.tsx:60 #: src/pages/company/CustomerDetail.tsx:9 -#: src/pages/sales/ReturnOrderDetail.tsx:554 -#: src/pages/sales/SalesIndex.tsx:153 -#: src/pages/sales/SalesOrderDetail.tsx:619 -#: src/pages/sales/SalesOrderShipmentDetail.tsx:480 +#: src/pages/sales/ReturnOrderDetail.tsx:559 +#: src/pages/sales/SalesIndex.tsx:168 +#: src/pages/sales/SalesOrderDetail.tsx:624 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:448 msgid "Sales" msgstr "" @@ -2667,21 +2704,21 @@ msgid "Remove search group" msgstr "" #: src/components/nav/SearchDrawer.tsx:288 -#: src/pages/company/ManufacturerPartDetail.tsx:192 -#: src/pages/part/PartDetail.tsx:862 +#: src/pages/company/ManufacturerPartDetail.tsx:179 +#: src/pages/part/PartDetail.tsx:851 #: src/pages/part/PartSupplierDetail.tsx:15 -#: src/pages/purchasing/PurchasingIndex.tsx:81 +#: src/pages/purchasing/PurchasingIndex.tsx:100 msgid "Suppliers" msgstr "" #: src/components/nav/SearchDrawer.tsx:298 #: src/pages/part/PartSupplierDetail.tsx:23 -#: src/pages/purchasing/PurchasingIndex.tsx:98 +#: src/pages/purchasing/PurchasingIndex.tsx:149 msgid "Manufacturers" msgstr "" #: src/components/nav/SearchDrawer.tsx:308 -#: src/pages/sales/SalesIndex.tsx:138 +#: src/pages/sales/SalesIndex.tsx:133 msgid "Customers" msgstr "" @@ -2772,21 +2809,21 @@ msgstr "" #: src/components/plugins/PluginDrawer.tsx:73 #: src/forms/selectionListFields.tsx:102 -#: src/pages/build/BuildDetail.tsx:250 -#: src/pages/company/CompanyDetail.tsx:93 -#: src/pages/company/ManufacturerPartDetail.tsx:93 -#: src/pages/company/ManufacturerPartDetail.tsx:120 -#: src/pages/company/SupplierPartDetail.tsx:145 -#: src/pages/part/CategoryDetail.tsx:108 +#: src/pages/build/BuildDetail.tsx:251 +#: src/pages/company/CompanyDetail.tsx:94 +#: src/pages/company/ManufacturerPartDetail.tsx:92 +#: src/pages/company/ManufacturerPartDetail.tsx:119 +#: src/pages/company/SupplierPartDetail.tsx:146 +#: src/pages/part/CategoryDetail.tsx:111 #: src/pages/part/PartDetail.tsx:460 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:162 -#: src/pages/sales/ReturnOrderDetail.tsx:129 -#: src/pages/sales/SalesOrderDetail.tsx:119 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:163 +#: src/pages/sales/ReturnOrderDetail.tsx:130 +#: src/pages/sales/SalesOrderDetail.tsx:120 #: src/pages/stock/LocationDetail.tsx:102 #: src/tables/ColumnRenderers.tsx:278 -#: src/tables/build/BuildAllocatedStockTable.tsx:91 -#: src/tables/machine/MachineTypeTable.tsx:161 -#: src/tables/machine/MachineTypeTable.tsx:257 +#: src/tables/build/BuildAllocatedStockTable.tsx:88 +#: src/tables/machine/MachineTypeTable.tsx:159 +#: src/tables/machine/MachineTypeTable.tsx:255 #: src/tables/plugin/PluginListTable.tsx:110 msgid "Description" msgstr "" @@ -2814,7 +2851,7 @@ msgstr "" #: src/tables/company/CompanyTable.tsx:91 #: src/tables/machine/MachineListTable.tsx:384 #: src/tables/machine/MachineListTable.tsx:799 -#: src/tables/part/ParametricPartTable.tsx:354 +#: src/tables/part/ParametricPartTable.tsx:19 #: src/tables/part/PartTable.tsx:197 #: src/tables/part/PartVariantTable.tsx:15 #: src/tables/plugin/PluginListTable.tsx:96 @@ -2836,8 +2873,8 @@ msgid "Installation Path" msgstr "" #: src/components/plugins/PluginDrawer.tsx:116 -#: src/tables/machine/MachineTypeTable.tsx:184 -#: src/tables/machine/MachineTypeTable.tsx:293 +#: src/tables/machine/MachineTypeTable.tsx:182 +#: src/tables/machine/MachineTypeTable.tsx:291 #: src/tables/plugin/PluginListTable.tsx:101 #: src/tables/plugin/PluginListTable.tsx:417 msgid "Builtin" @@ -2849,8 +2886,8 @@ msgstr "" #: src/components/plugins/PluginDrawer.tsx:133 #: src/pages/Index/Settings/AdminCenter/PluginManagementPanel.tsx:55 -#: src/pages/Index/Settings/SystemSettings.tsx:331 -#: src/pages/Index/Settings/UserSettings.tsx:128 +#: src/pages/Index/Settings/SystemSettings.tsx:337 +#: src/pages/Index/Settings/UserSettings.tsx:129 msgid "Plugin Settings" msgstr "" @@ -2911,7 +2948,7 @@ msgstr "" #~ msgid "Unknown model: {model}" #~ msgstr "Unknown model: {model}" -#: src/components/render/Instance.tsx:249 +#: src/components/render/Instance.tsx:247 msgid "Unknown model: {model_name}" msgstr "" @@ -2939,10 +2976,10 @@ msgstr "" #: src/components/render/Part.tsx:28 #: src/components/render/Plugin.tsx:17 #: src/components/render/User.tsx:37 -#: src/pages/company/CompanyDetail.tsx:323 -#: src/pages/company/SupplierPartDetail.tsx:373 +#: src/pages/company/CompanyDetail.tsx:328 +#: src/pages/company/SupplierPartDetail.tsx:378 #: src/pages/core/UserDetail.tsx:211 -#: src/pages/part/PartDetail.tsx:1027 +#: src/pages/part/PartDetail.tsx:1048 #: src/tables/ColumnRenderers.tsx:410 msgid "Inactive" msgstr "" @@ -2962,11 +2999,11 @@ msgstr "" #: src/components/render/Part.tsx:47 #: src/components/wizards/OrderPartsWizard.tsx:135 -#: src/pages/company/SupplierPartDetail.tsx:197 -#: src/pages/company/SupplierPartDetail.tsx:394 -#: src/pages/part/PartDetail.tsx:1015 +#: src/pages/company/SupplierPartDetail.tsx:198 +#: src/pages/company/SupplierPartDetail.tsx:399 +#: src/pages/part/PartDetail.tsx:1030 #: src/tables/bom/BomTable.tsx:444 -#: src/tables/build/BuildLineTable.tsx:222 +#: src/tables/build/BuildLineTable.tsx:223 #: src/tables/part/PartTable.tsx:108 msgid "On Order" msgstr "" @@ -2974,9 +3011,9 @@ msgstr "" #: src/components/render/Part.tsx:55 #: src/components/wizards/OrderPartsWizard.tsx:141 #: src/pages/part/PartDetail.tsx:587 -#: src/pages/part/PartDetail.tsx:1021 +#: src/pages/part/PartDetail.tsx:1036 #: src/pages/stock/StockDetail.tsx:925 -#: src/tables/part/PartTestResultTable.tsx:297 +#: src/tables/part/PartTestResultTable.tsx:305 #: src/tables/stock/StockItemTable.tsx:359 msgid "In Production" msgstr "" @@ -2987,7 +3024,7 @@ msgid "Details" msgstr "" #: src/components/render/Part.tsx:112 -#: src/components/wizards/ImportPartWizard.tsx:806 +#: src/components/wizards/ImportPartWizard.tsx:807 #: src/pages/part/PartDetail.tsx:487 #: src/tables/ColumnRenderers.tsx:233 #: src/tables/ColumnRenderers.tsx:242 @@ -3000,16 +3037,16 @@ msgstr "" #: src/components/render/Stock.tsx:114 #: src/components/render/Stock.tsx:132 #: src/forms/BuildForms.tsx:795 -#: src/forms/PurchaseOrderForms.tsx:595 +#: src/forms/PurchaseOrderForms.tsx:647 #: src/forms/StockForms.tsx:792 #: src/forms/StockForms.tsx:839 -#: src/forms/StockForms.tsx:885 -#: src/forms/StockForms.tsx:924 -#: src/forms/StockForms.tsx:960 -#: src/forms/StockForms.tsx:1003 -#: src/forms/StockForms.tsx:1047 -#: src/forms/StockForms.tsx:1095 -#: src/forms/StockForms.tsx:1139 +#: src/forms/StockForms.tsx:892 +#: src/forms/StockForms.tsx:938 +#: src/forms/StockForms.tsx:976 +#: src/forms/StockForms.tsx:1019 +#: src/forms/StockForms.tsx:1063 +#: src/forms/StockForms.tsx:1111 +#: src/forms/StockForms.tsx:1155 #: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:88 #: src/pages/core/UserDetail.tsx:158 #: src/pages/stock/StockDetail.tsx:298 @@ -3023,7 +3060,7 @@ msgstr "" #: src/components/render/Stock.tsx:99 #: src/pages/stock/StockDetail.tsx:198 #: src/pages/stock/StockDetail.tsx:930 -#: src/tables/build/BuildAllocatedStockTable.tsx:121 +#: src/tables/build/BuildAllocatedStockTable.tsx:118 #: src/tables/build/BuildOutputTable.tsx:107 #: src/tables/sales/SalesOrderAllocationTable.tsx:142 msgid "Serial Number" @@ -3034,9 +3071,9 @@ msgstr "" #: src/forms/BuildForms.tsx:240 #: src/forms/BuildForms.tsx:634 #: src/forms/BuildForms.tsx:797 -#: src/forms/PurchaseOrderForms.tsx:801 +#: src/forms/PurchaseOrderForms.tsx:853 #: src/forms/ReturnOrderForms.tsx:243 -#: src/forms/SalesOrderForms.tsx:308 +#: src/forms/SalesOrderForms.tsx:387 #: src/forms/StockForms.tsx:841 #: src/pages/part/PartStockHistoryDetail.tsx:56 #: src/pages/part/PartStockHistoryDetail.tsx:210 @@ -3046,9 +3083,9 @@ msgstr "" #: src/pages/part/pricing/PriceBreakPanel.tsx:172 #: src/pages/stock/StockDetail.tsx:258 #: src/pages/stock/StockDetail.tsx:936 -#: src/tables/build/BuildLineTable.tsx:86 +#: src/tables/build/BuildLineTable.tsx:83 #: src/tables/part/PartPurchaseOrdersTable.tsx:94 -#: src/tables/part/PartTestResultTable.tsx:269 +#: src/tables/part/PartTestResultTable.tsx:277 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:175 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:206 #: src/tables/purchasing/SupplierPriceBreakTable.tsx:69 @@ -3063,14 +3100,14 @@ msgstr "" #: src/forms/BuildForms.tsx:474 #: src/forms/StockForms.tsx:793 #: src/forms/StockForms.tsx:840 -#: src/forms/StockForms.tsx:886 -#: src/forms/StockForms.tsx:925 -#: src/forms/StockForms.tsx:961 -#: src/forms/StockForms.tsx:1004 -#: src/forms/StockForms.tsx:1048 -#: src/forms/StockForms.tsx:1096 -#: src/forms/StockForms.tsx:1140 -#: src/tables/build/BuildLineTable.tsx:96 +#: src/forms/StockForms.tsx:893 +#: src/forms/StockForms.tsx:939 +#: src/forms/StockForms.tsx:977 +#: src/forms/StockForms.tsx:1020 +#: src/forms/StockForms.tsx:1064 +#: src/forms/StockForms.tsx:1112 +#: src/forms/StockForms.tsx:1156 +#: src/tables/build/BuildLineTable.tsx:93 msgid "Batch" msgstr "" @@ -3306,10 +3343,6 @@ msgstr "" #~ msgid "Part category updated" #~ msgstr "Part category updated" -#: src/components/tables/part/PartParameterTable.tsx:41 -#~ msgid "Parameter" -#~ msgstr "Parameter" - #: src/components/tables/part/PartParameterTable.tsx:114 #~ msgid "Part parameter updated" #~ msgstr "Part parameter updated" @@ -3571,15 +3604,16 @@ msgid "Already Imported" msgstr "" #: src/components/wizards/ImportPartWizard.tsx:205 -#: src/pages/company/CompanyDetail.tsx:136 +#: src/pages/company/CompanyDetail.tsx:137 #: src/pages/company/SupplierDetail.tsx:8 -#: src/pages/company/SupplierPartDetail.tsx:130 -#: src/pages/company/SupplierPartDetail.tsx:235 -#: src/pages/company/SupplierPartDetail.tsx:364 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:156 +#: src/pages/company/SupplierPartDetail.tsx:131 +#: src/pages/company/SupplierPartDetail.tsx:236 +#: src/pages/company/SupplierPartDetail.tsx:369 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:157 #: src/tables/Filter.tsx:360 #: src/tables/company/CompanyTable.tsx:96 #: src/tables/part/PartPurchaseOrdersTable.tsx:43 +#: src/tables/purchasing/PurchaseOrderParametricTable.tsx:34 #: src/tables/purchasing/PurchaseOrderTable.tsx:109 #: src/tables/purchasing/SupplierPriceBreakTable.tsx:40 msgid "Supplier" @@ -3648,7 +3682,7 @@ msgid "Next" msgstr "" #: src/components/wizards/ImportPartWizard.tsx:540 -#: src/pages/part/PartDetail.tsx:1046 +#: src/pages/part/PartDetail.tsx:1067 #: src/tables/part/PartTable.tsx:408 msgid "Edit Part" msgstr "" @@ -3669,28 +3703,28 @@ msgstr "" msgid "Import" msgstr "" -#: src/components/wizards/ImportPartWizard.tsx:691 +#: src/components/wizards/ImportPartWizard.tsx:692 msgid "Parameters created successfully!" msgstr "" -#: src/components/wizards/ImportPartWizard.tsx:719 +#: src/components/wizards/ImportPartWizard.tsx:720 msgid "Failed to create parameters, please fix the errors and try again" msgstr "" #. placeholder {0}: supplierPart?.supplier -#: src/components/wizards/ImportPartWizard.tsx:739 +#: src/components/wizards/ImportPartWizard.tsx:740 msgid "Part imported successfully from supplier {0}." msgstr "" -#: src/components/wizards/ImportPartWizard.tsx:752 +#: src/components/wizards/ImportPartWizard.tsx:753 msgid "Open Part" msgstr "" -#: src/components/wizards/ImportPartWizard.tsx:759 +#: src/components/wizards/ImportPartWizard.tsx:760 msgid "Open Supplier Part" msgstr "" -#: src/components/wizards/ImportPartWizard.tsx:766 +#: src/components/wizards/ImportPartWizard.tsx:767 msgid "Open Manufacturer Part" msgstr "" @@ -3699,25 +3733,19 @@ msgstr "" #~ msgid "Import Part" #~ msgstr "Import Part" -#: src/components/wizards/ImportPartWizard.tsx:802 +#: src/components/wizards/ImportPartWizard.tsx:803 msgid "Import Supplier Part" msgstr "" -#: src/components/wizards/ImportPartWizard.tsx:804 +#: src/components/wizards/ImportPartWizard.tsx:805 msgid "Search Supplier Part" msgstr "" -#: src/components/wizards/ImportPartWizard.tsx:806 -#: src/pages/company/ManufacturerPartDetail.tsx:166 -#: src/pages/part/PartDetail.tsx:793 -msgid "Parameters" -msgstr "" - -#: src/components/wizards/ImportPartWizard.tsx:806 +#: src/components/wizards/ImportPartWizard.tsx:807 msgid "Confirm import" msgstr "" -#: src/components/wizards/ImportPartWizard.tsx:808 +#: src/components/wizards/ImportPartWizard.tsx:809 msgid "Done" msgstr "" @@ -3738,24 +3766,24 @@ msgid "Sales Requirements" msgstr "" #: src/components/wizards/OrderPartsWizard.tsx:129 -#: src/forms/StockForms.tsx:887 -#: src/forms/StockForms.tsx:926 -#: src/forms/StockForms.tsx:962 -#: src/forms/StockForms.tsx:1005 -#: src/forms/StockForms.tsx:1049 -#: src/forms/StockForms.tsx:1097 -#: src/forms/StockForms.tsx:1141 -#: src/pages/company/SupplierPartDetail.tsx:190 -#: src/pages/company/SupplierPartDetail.tsx:378 +#: src/forms/StockForms.tsx:894 +#: src/forms/StockForms.tsx:940 +#: src/forms/StockForms.tsx:978 +#: src/forms/StockForms.tsx:1021 +#: src/forms/StockForms.tsx:1065 +#: src/forms/StockForms.tsx:1113 +#: src/forms/StockForms.tsx:1157 +#: src/pages/company/SupplierPartDetail.tsx:191 +#: src/pages/company/SupplierPartDetail.tsx:383 #: src/pages/part/PartDetail.tsx:534 -#: src/pages/part/PartDetail.tsx:984 +#: src/pages/part/PartDetail.tsx:999 #: src/tables/Filter.tsx:92 #: src/tables/purchasing/SupplierPartTable.tsx:230 msgid "In Stock" msgstr "" #: src/components/wizards/OrderPartsWizard.tsx:146 -#: src/tables/build/BuildLineTable.tsx:404 +#: src/tables/build/BuildLineTable.tsx:405 msgid "Required Quantity" msgstr "" @@ -3847,7 +3875,7 @@ msgid "Please correct the errors in the selected parts" msgstr "" #: src/components/wizards/OrderPartsWizard.tsx:587 -#: src/tables/build/BuildLineTable.tsx:815 +#: src/tables/build/BuildLineTable.tsx:822 #: src/tables/part/PartTable.tsx:522 #: src/tables/sales/SalesOrderLineItemTable.tsx:370 msgid "Order Parts" @@ -4349,9 +4377,9 @@ msgstr "" #: src/forms/BuildForms.tsx:333 #: src/forms/BuildForms.tsx:408 #: src/forms/BuildForms.tsx:685 -#: src/tables/build/BuildAllocatedStockTable.tsx:150 +#: src/tables/build/BuildAllocatedStockTable.tsx:147 #: src/tables/build/BuildOutputTable.tsx:582 -#: src/tables/part/PartTestResultTable.tsx:272 +#: src/tables/part/PartTestResultTable.tsx:280 msgid "Build Output" msgstr "" @@ -4362,22 +4390,22 @@ msgstr "" #: src/forms/BuildForms.tsx:336 #: src/forms/BuildForms.tsx:411 #: src/forms/BuildForms.tsx:475 -#: src/forms/PurchaseOrderForms.tsx:717 +#: src/forms/PurchaseOrderForms.tsx:769 #: src/forms/ReturnOrderForms.tsx:197 #: src/forms/ReturnOrderForms.tsx:244 #: src/forms/StockForms.tsx:712 #: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:87 -#: src/pages/build/BuildDetail.tsx:222 +#: src/pages/build/BuildDetail.tsx:223 #: src/pages/core/UserDetail.tsx:151 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:168 -#: src/pages/sales/ReturnOrderDetail.tsx:135 -#: src/pages/sales/SalesOrderDetail.tsx:125 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:169 +#: src/pages/sales/ReturnOrderDetail.tsx:136 +#: src/pages/sales/SalesOrderDetail.tsx:126 #: src/pages/stock/StockDetail.tsx:170 #: src/tables/Filter.tsx:274 #: src/tables/build/BuildOutputTable.tsx:404 #: src/tables/machine/MachineListTable.tsx:387 #: src/tables/part/PartPurchaseOrdersTable.tsx:38 -#: src/tables/part/PartTestResultTable.tsx:309 +#: src/tables/part/PartTestResultTable.tsx:317 #: src/tables/sales/ReturnOrderLineItemTable.tsx:138 #: src/tables/sales/ReturnOrderLineItemTable.tsx:176 #: src/tables/settings/CustomStateTable.tsx:79 @@ -4443,18 +4471,19 @@ msgid "Build outputs have been cancelled" msgstr "" #: src/forms/BuildForms.tsx:631 -#: src/pages/build/BuildDetail.tsx:207 -#: src/pages/company/ManufacturerPartDetail.tsx:85 -#: src/pages/company/SupplierPartDetail.tsx:96 +#: src/pages/build/BuildDetail.tsx:208 +#: src/pages/company/ManufacturerPartDetail.tsx:84 +#: src/pages/company/SupplierPartDetail.tsx:97 #: src/pages/part/PartDetail.tsx:453 #: src/pages/stock/StockDetail.tsx:153 #: src/tables/bom/BomTable.tsx:134 #: src/tables/bom/UsedInTable.tsx:40 -#: src/tables/build/BuildAllocatedStockTable.tsx:108 -#: src/tables/build/BuildLineTable.tsx:336 +#: src/tables/build/BuildAllocatedStockTable.tsx:105 +#: src/tables/build/BuildLineTable.tsx:337 #: src/tables/build/BuildOrderTable.tsx:79 #: src/tables/part/PartSalesAllocationsTable.tsx:61 #: src/tables/part/RelatedPartTable.tsx:73 +#: src/tables/purchasing/ManufacturerPartParametricTable.tsx:21 #: src/tables/purchasing/ManufacturerPartTable.tsx:69 #: src/tables/purchasing/SupplierPartTable.tsx:70 #: src/tables/sales/SalesOrderAllocationTable.tsx:135 @@ -4466,47 +4495,47 @@ msgstr "" #: src/forms/BuildForms.tsx:632 #: src/forms/BuildForms.tsx:796 #: src/forms/BuildForms.tsx:897 -#: src/forms/SalesOrderForms.tsx:306 -#: src/tables/build/BuildAllocatedStockTable.tsx:139 -#: src/tables/build/BuildLineTable.tsx:182 +#: src/forms/SalesOrderForms.tsx:385 +#: src/tables/build/BuildAllocatedStockTable.tsx:136 +#: src/tables/build/BuildLineTable.tsx:183 #: src/tables/sales/SalesOrderLineItemTable.tsx:342 #: src/tables/stock/StockItemTable.tsx:338 msgid "Allocated" msgstr "" #: src/forms/BuildForms.tsx:667 -#: src/forms/SalesOrderForms.tsx:295 -#: src/pages/build/BuildDetail.tsx:108 -#: src/pages/build/BuildDetail.tsx:326 +#: src/forms/SalesOrderForms.tsx:374 +#: src/pages/build/BuildDetail.tsx:109 +#: src/pages/build/BuildDetail.tsx:327 msgid "Source Location" msgstr "" #: src/forms/BuildForms.tsx:668 -#: src/forms/SalesOrderForms.tsx:296 +#: src/forms/SalesOrderForms.tsx:375 msgid "Select the source location for the stock allocation" msgstr "" #: src/forms/BuildForms.tsx:700 -#: src/forms/SalesOrderForms.tsx:336 -#: src/tables/build/BuildLineTable.tsx:574 -#: src/tables/build/BuildLineTable.tsx:731 -#: src/tables/build/BuildLineTable.tsx:830 +#: src/forms/SalesOrderForms.tsx:415 +#: src/tables/build/BuildLineTable.tsx:575 +#: src/tables/build/BuildLineTable.tsx:738 +#: src/tables/build/BuildLineTable.tsx:837 #: src/tables/sales/SalesOrderLineItemTable.tsx:380 #: src/tables/sales/SalesOrderLineItemTable.tsx:406 msgid "Allocate Stock" msgstr "" #: src/forms/BuildForms.tsx:703 -#: src/forms/SalesOrderForms.tsx:341 +#: src/forms/SalesOrderForms.tsx:420 msgid "Stock items allocated" msgstr "" #: src/forms/BuildForms.tsx:816 #: src/forms/BuildForms.tsx:917 -#: src/tables/build/BuildAllocatedStockTable.tsx:240 -#: src/tables/build/BuildAllocatedStockTable.tsx:272 -#: src/tables/build/BuildLineTable.tsx:741 -#: src/tables/build/BuildLineTable.tsx:864 +#: src/tables/build/BuildAllocatedStockTable.tsx:243 +#: src/tables/build/BuildAllocatedStockTable.tsx:279 +#: src/tables/build/BuildLineTable.tsx:748 +#: src/tables/build/BuildLineTable.tsx:871 msgid "Consume Stock" msgstr "" @@ -4521,21 +4550,21 @@ msgstr "" #~ msgstr "Stock items consumed" #: src/forms/BuildForms.tsx:853 -#: src/tables/build/BuildLineTable.tsx:514 +#: src/tables/build/BuildLineTable.tsx:515 #: src/tables/part/PartBuildAllocationsTable.tsx:101 msgid "Fully consumed" msgstr "" #: src/forms/BuildForms.tsx:898 -#: src/tables/build/BuildLineTable.tsx:187 +#: src/tables/build/BuildLineTable.tsx:188 #: src/tables/stock/StockItemTable.tsx:367 msgid "Consumed" msgstr "" -#: src/forms/CommonForms.tsx:88 -#: src/forms/PurchaseOrderForms.tsx:125 +#: src/forms/CommonForms.tsx:92 +#: src/forms/PurchaseOrderForms.tsx:176 #: src/forms/ReturnOrderForms.tsx:138 -#: src/forms/SalesOrderForms.tsx:164 +#: src/forms/SalesOrderForms.tsx:185 msgid "Select project code for this line item" msgstr "" @@ -4543,16 +4572,16 @@ msgstr "" #~ msgid "Company updated" #~ msgstr "Company updated" -#: src/forms/PartForms.tsx:85 -#: src/forms/PartForms.tsx:207 -#: src/pages/part/CategoryDetail.tsx:124 +#: src/forms/PartForms.tsx:99 +#: src/forms/PartForms.tsx:228 +#: src/pages/part/CategoryDetail.tsx:127 #: src/pages/part/PartDetail.tsx:668 #: src/tables/part/PartCategoryTable.tsx:94 #: src/tables/part/PartTable.tsx:325 msgid "Subscribed" msgstr "" -#: src/forms/PartForms.tsx:86 +#: src/forms/PartForms.tsx:100 msgid "Subscribe to notifications for this part" msgstr "" @@ -4564,40 +4593,24 @@ msgstr "" #~ msgid "Part updated" #~ msgstr "Part updated" -#: src/forms/PartForms.tsx:193 +#: src/forms/PartForms.tsx:214 msgid "Parent part category" msgstr "" -#: src/forms/PartForms.tsx:208 +#: src/forms/PartForms.tsx:229 msgid "Subscribe to notifications for this category" msgstr "" -#: src/forms/PurchaseOrderForms.tsx:388 -msgid "Assign Batch Code and Serial Numbers" -msgstr "" - -#: src/forms/PurchaseOrderForms.tsx:390 -msgid "Assign Batch Code" -msgstr "" - -#: src/forms/PurchaseOrderForms.tsx:410 -msgid "Choose Location" -msgstr "" - -#: src/forms/PurchaseOrderForms.tsx:418 -msgid "Item Destination selected" -msgstr "" - #: src/forms/PurchaseOrderForms.tsx:421 #~ msgid "Assign Batch Code{0}" #~ msgstr "Assign Batch Code{0}" -#: src/forms/PurchaseOrderForms.tsx:428 -msgid "Part category default location selected" +#: src/forms/PurchaseOrderForms.tsx:440 +msgid "Assign Batch Code and Serial Numbers" msgstr "" -#: src/forms/PurchaseOrderForms.tsx:438 -msgid "Received stock location selected" +#: src/forms/PurchaseOrderForms.tsx:442 +msgid "Assign Batch Code" msgstr "" #: src/forms/PurchaseOrderForms.tsx:444 @@ -4605,115 +4618,131 @@ msgstr "" #~ msgid "Remove item from list" #~ msgstr "Remove item from list" -#: src/forms/PurchaseOrderForms.tsx:446 +#: src/forms/PurchaseOrderForms.tsx:462 +msgid "Choose Location" +msgstr "" + +#: src/forms/PurchaseOrderForms.tsx:470 +msgid "Item Destination selected" +msgstr "" + +#: src/forms/PurchaseOrderForms.tsx:480 +msgid "Part category default location selected" +msgstr "" + +#: src/forms/PurchaseOrderForms.tsx:490 +msgid "Received stock location selected" +msgstr "" + +#: src/forms/PurchaseOrderForms.tsx:498 msgid "Default location selected" msgstr "" -#: src/forms/PurchaseOrderForms.tsx:507 +#: src/forms/PurchaseOrderForms.tsx:559 msgid "Set Location" msgstr "" -#: src/forms/PurchaseOrderForms.tsx:524 -msgid "Set Expiry Date" -msgstr "" - -#: src/forms/PurchaseOrderForms.tsx:532 -#: src/forms/StockForms.tsx:693 -msgid "Adjust Packaging" -msgstr "" - -#: src/forms/PurchaseOrderForms.tsx:540 -#: src/forms/StockForms.tsx:684 -#: src/hooks/UseStockAdjustActions.tsx:148 -msgid "Change Status" -msgstr "" - -#: src/forms/PurchaseOrderForms.tsx:546 -msgid "Add Note" -msgstr "" - #: src/forms/PurchaseOrderForms.tsx:566 #~ msgid "Serial numbers" #~ msgstr "Serial numbers" +#: src/forms/PurchaseOrderForms.tsx:576 +msgid "Set Expiry Date" +msgstr "" + #: src/forms/PurchaseOrderForms.tsx:582 #~ msgid "Store at line item destination" #~ msgstr "Store at line item destination" -#: src/forms/PurchaseOrderForms.tsx:610 -msgid "Store at default location" +#: src/forms/PurchaseOrderForms.tsx:584 +#: src/forms/StockForms.tsx:693 +msgid "Adjust Packaging" msgstr "" -#: src/forms/PurchaseOrderForms.tsx:625 -msgid "Store at line item destination " +#: src/forms/PurchaseOrderForms.tsx:592 +#: src/forms/StockForms.tsx:684 +#: src/hooks/UseStockAdjustActions.tsx:148 +msgid "Change Status" msgstr "" -#: src/forms/PurchaseOrderForms.tsx:637 -msgid "Store with already received stock" +#: src/forms/PurchaseOrderForms.tsx:598 +msgid "Add Note" msgstr "" #: src/forms/PurchaseOrderForms.tsx:658 #~ msgid "Receive line items" #~ msgstr "Receive line items" -#: src/forms/PurchaseOrderForms.tsx:661 -#: src/pages/build/BuildDetail.tsx:340 +#: src/forms/PurchaseOrderForms.tsx:662 +msgid "Store at default location" +msgstr "" + +#: src/forms/PurchaseOrderForms.tsx:677 +msgid "Store at line item destination " +msgstr "" + +#: src/forms/PurchaseOrderForms.tsx:689 +msgid "Store with already received stock" +msgstr "" + +#: src/forms/PurchaseOrderForms.tsx:713 +#: src/pages/build/BuildDetail.tsx:341 #: src/pages/stock/StockDetail.tsx:280 #: src/pages/stock/StockDetail.tsx:952 #: src/tables/Filter.tsx:83 -#: src/tables/build/BuildAllocatedStockTable.tsx:128 +#: src/tables/build/BuildAllocatedStockTable.tsx:125 #: src/tables/build/BuildOutputTable.tsx:112 -#: src/tables/part/PartTestResultTable.tsx:260 -#: src/tables/part/PartTestResultTable.tsx:281 +#: src/tables/part/PartTestResultTable.tsx:268 +#: src/tables/part/PartTestResultTable.tsx:289 #: src/tables/sales/SalesOrderAllocationTable.tsx:149 msgid "Batch Code" msgstr "" -#: src/forms/PurchaseOrderForms.tsx:662 +#: src/forms/PurchaseOrderForms.tsx:714 msgid "Enter batch code for received items" msgstr "" -#: src/forms/PurchaseOrderForms.tsx:675 +#: src/forms/PurchaseOrderForms.tsx:727 #: src/forms/StockForms.tsx:218 msgid "Serial Numbers" msgstr "" -#: src/forms/PurchaseOrderForms.tsx:676 +#: src/forms/PurchaseOrderForms.tsx:728 msgid "Enter serial numbers for received items" msgstr "" -#: src/forms/PurchaseOrderForms.tsx:690 +#: src/forms/PurchaseOrderForms.tsx:742 #: src/pages/stock/StockDetail.tsx:382 #: src/tables/stock/StockItemTable.tsx:294 msgid "Expiry Date" msgstr "" -#: src/forms/PurchaseOrderForms.tsx:691 +#: src/forms/PurchaseOrderForms.tsx:743 msgid "Enter an expiry date for received items" msgstr "" -#: src/forms/PurchaseOrderForms.tsx:703 +#: src/forms/PurchaseOrderForms.tsx:755 #: src/forms/StockForms.tsx:728 -#: src/pages/company/SupplierPartDetail.tsx:172 -#: src/pages/company/SupplierPartDetail.tsx:236 +#: src/pages/company/SupplierPartDetail.tsx:173 +#: src/pages/company/SupplierPartDetail.tsx:237 #: src/pages/stock/StockDetail.tsx:419 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:227 msgid "Packaging" msgstr "" -#: src/forms/PurchaseOrderForms.tsx:727 -#: src/pages/company/SupplierPartDetail.tsx:120 +#: src/forms/PurchaseOrderForms.tsx:779 +#: src/pages/company/SupplierPartDetail.tsx:121 #: src/tables/ColumnRenderers.tsx:332 msgid "Note" msgstr "" -#: src/forms/PurchaseOrderForms.tsx:799 -#: src/pages/company/SupplierPartDetail.tsx:138 +#: src/forms/PurchaseOrderForms.tsx:851 +#: src/pages/company/SupplierPartDetail.tsx:139 #: src/tables/purchasing/SupplierPriceBreakTable.tsx:49 msgid "SKU" msgstr "" -#: src/forms/PurchaseOrderForms.tsx:800 +#: src/forms/PurchaseOrderForms.tsx:852 #: src/tables/part/PartPurchaseOrdersTable.tsx:127 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:213 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:283 @@ -4721,11 +4750,11 @@ msgstr "" msgid "Received" msgstr "" -#: src/forms/PurchaseOrderForms.tsx:817 +#: src/forms/PurchaseOrderForms.tsx:869 msgid "Receive Line Items" msgstr "" -#: src/forms/PurchaseOrderForms.tsx:823 +#: src/forms/PurchaseOrderForms.tsx:875 msgid "Items received" msgstr "" @@ -4737,7 +4766,35 @@ msgstr "" msgid "Item received into stock" msgstr "" -#: src/forms/SalesOrderForms.tsx:401 +#: src/forms/SalesOrderForms.tsx:208 +#: src/forms/SalesOrderForms.tsx:210 +#: src/tables/sales/SalesOrderShipmentTable.tsx:215 +msgid "Check Shipment" +msgstr "" + +#: src/forms/SalesOrderForms.tsx:211 +msgid "Marking the shipment as checked indicates that you have verified that all items included in this shipment are correct" +msgstr "" + +#: src/forms/SalesOrderForms.tsx:221 +msgid "Shipment marked as checked" +msgstr "" + +#: src/forms/SalesOrderForms.tsx:236 +#: src/forms/SalesOrderForms.tsx:238 +#: src/tables/sales/SalesOrderShipmentTable.tsx:228 +msgid "Uncheck Shipment" +msgstr "" + +#: src/forms/SalesOrderForms.tsx:239 +msgid "Marking the shipment as unchecked indicates that the shipment requires further verification" +msgstr "" + +#: src/forms/SalesOrderForms.tsx:249 +msgid "Shipment marked as unchecked" +msgstr "" + +#: src/forms/SalesOrderForms.tsx:480 msgid "Leave blank to use the order address" msgstr "" @@ -4792,150 +4849,150 @@ msgstr "" msgid "Return" msgstr "" -#: src/forms/StockForms.tsx:963 +#: src/forms/StockForms.tsx:979 #: src/pages/Index/Scan.tsx:182 msgid "Count" msgstr "" -#: src/forms/StockForms.tsx:1246 +#: src/forms/StockForms.tsx:1262 #: src/hooks/UseStockAdjustActions.tsx:108 msgid "Add Stock" msgstr "" -#: src/forms/StockForms.tsx:1247 +#: src/forms/StockForms.tsx:1263 msgid "Stock added" msgstr "" -#: src/forms/StockForms.tsx:1250 +#: src/forms/StockForms.tsx:1266 msgid "Increase the quantity of the selected stock items by a given amount." msgstr "" -#: src/forms/StockForms.tsx:1261 +#: src/forms/StockForms.tsx:1277 #: src/hooks/UseStockAdjustActions.tsx:118 msgid "Remove Stock" msgstr "" -#: src/forms/StockForms.tsx:1262 +#: src/forms/StockForms.tsx:1278 msgid "Stock removed" msgstr "" -#: src/forms/StockForms.tsx:1265 +#: src/forms/StockForms.tsx:1281 msgid "Decrease the quantity of the selected stock items by a given amount." msgstr "" -#: src/forms/StockForms.tsx:1276 +#: src/forms/StockForms.tsx:1292 #: src/hooks/UseStockAdjustActions.tsx:128 msgid "Transfer Stock" msgstr "" -#: src/forms/StockForms.tsx:1277 +#: src/forms/StockForms.tsx:1293 msgid "Stock transferred" msgstr "" -#: src/forms/StockForms.tsx:1280 +#: src/forms/StockForms.tsx:1296 msgid "Transfer selected items to the specified location." msgstr "" -#: src/forms/StockForms.tsx:1291 +#: src/forms/StockForms.tsx:1307 #: src/hooks/UseStockAdjustActions.tsx:168 msgid "Return Stock" msgstr "" -#: src/forms/StockForms.tsx:1292 +#: src/forms/StockForms.tsx:1308 msgid "Stock returned" msgstr "" -#: src/forms/StockForms.tsx:1295 +#: src/forms/StockForms.tsx:1311 msgid "Return selected items into stock, to the specified location." msgstr "" -#: src/forms/StockForms.tsx:1306 +#: src/forms/StockForms.tsx:1322 #: src/hooks/UseStockAdjustActions.tsx:98 msgid "Count Stock" msgstr "" -#: src/forms/StockForms.tsx:1307 +#: src/forms/StockForms.tsx:1323 msgid "Stock counted" msgstr "" -#: src/forms/StockForms.tsx:1310 +#: src/forms/StockForms.tsx:1326 msgid "Count the selected stock items, and adjust the quantity accordingly." msgstr "" -#: src/forms/StockForms.tsx:1321 +#: src/forms/StockForms.tsx:1337 msgid "Change Stock Status" msgstr "" -#: src/forms/StockForms.tsx:1322 +#: src/forms/StockForms.tsx:1338 msgid "Stock status changed" msgstr "" -#: src/forms/StockForms.tsx:1325 +#: src/forms/StockForms.tsx:1341 msgid "Change the status of the selected stock items." msgstr "" -#: src/forms/StockForms.tsx:1336 +#: src/forms/StockForms.tsx:1352 #: src/hooks/UseStockAdjustActions.tsx:138 msgid "Merge Stock" msgstr "" -#: src/forms/StockForms.tsx:1337 +#: src/forms/StockForms.tsx:1353 msgid "Stock merged" msgstr "" -#: src/forms/StockForms.tsx:1339 +#: src/forms/StockForms.tsx:1355 msgid "Merge Stock Items" msgstr "" -#: src/forms/StockForms.tsx:1341 +#: src/forms/StockForms.tsx:1357 msgid "Merge operation cannot be reversed" msgstr "" -#: src/forms/StockForms.tsx:1342 +#: src/forms/StockForms.tsx:1358 msgid "Tracking information may be lost when merging items" msgstr "" -#: src/forms/StockForms.tsx:1343 +#: src/forms/StockForms.tsx:1359 msgid "Supplier information may be lost when merging items" msgstr "" -#: src/forms/StockForms.tsx:1361 +#: src/forms/StockForms.tsx:1377 msgid "Assign Stock to Customer" msgstr "" -#: src/forms/StockForms.tsx:1362 +#: src/forms/StockForms.tsx:1378 msgid "Stock assigned to customer" msgstr "" -#: src/forms/StockForms.tsx:1372 +#: src/forms/StockForms.tsx:1388 msgid "Delete Stock Items" msgstr "" -#: src/forms/StockForms.tsx:1373 +#: src/forms/StockForms.tsx:1389 msgid "Stock deleted" msgstr "" -#: src/forms/StockForms.tsx:1376 +#: src/forms/StockForms.tsx:1392 msgid "This operation will permanently delete the selected stock items." msgstr "" -#: src/forms/StockForms.tsx:1385 +#: src/forms/StockForms.tsx:1401 msgid "Parent stock location" msgstr "" -#: src/forms/StockForms.tsx:1512 +#: src/forms/StockForms.tsx:1528 msgid "Find Serial Number" msgstr "" -#: src/forms/StockForms.tsx:1523 +#: src/forms/StockForms.tsx:1539 msgid "No matching items" msgstr "" -#: src/forms/StockForms.tsx:1529 +#: src/forms/StockForms.tsx:1545 msgid "Multiple matching items" msgstr "" -#: src/forms/StockForms.tsx:1538 +#: src/forms/StockForms.tsx:1554 msgid "Invalid response from server" msgstr "" @@ -4953,7 +5010,6 @@ msgstr "" #: src/tables/FilterSelectDrawer.tsx:137 #: src/tables/FilterSelectDrawer.tsx:149 #: src/tables/part/PartTestResultTable.tsx:206 -#: src/tables/purchasing/ManufacturerPartParameterTable.tsx:42 #: src/tables/stock/StockItemTestResultTable.tsx:207 msgid "Value" msgstr "" @@ -5244,7 +5300,7 @@ msgid "Delete selected stock items" msgstr "" #: src/hooks/UseStockAdjustActions.tsx:205 -#: src/pages/part/PartDetail.tsx:1137 +#: src/pages/part/PartDetail.tsx:1158 msgid "Stock Actions" msgstr "" @@ -5932,6 +5988,9 @@ msgstr "" #: src/pages/Index/Settings/AccountSettings/MFASettings.tsx:310 #: src/pages/Index/Settings/AccountSettings/MFASettings.tsx:401 +#: src/tables/build/BuildAllocatedStockTable.tsx:181 +#: src/tables/build/BuildLineTable.tsx:668 +#: src/tables/sales/SalesOrderAllocationTable.tsx:220 msgid "Confirm Removal" msgstr "" @@ -6394,30 +6453,34 @@ msgid "Email Messages" msgstr "" #: src/pages/Index/Settings/AdminCenter/HomePanel.tsx:22 -msgid "Active Alerts" -msgstr "" +#~ msgid "Active Alerts" +#~ msgstr "Active Alerts" #: src/pages/Index/Settings/AdminCenter/HomePanel.tsx:27 -msgid "Inactive Alerts" +#~ msgid "Inactive Alerts" +#~ msgstr "Inactive Alerts" + +#: src/pages/Index/Settings/AdminCenter/HomePanel.tsx:36 +msgid "System Status" msgstr "" -#: src/pages/Index/Settings/AdminCenter/HomePanel.tsx:38 +#: src/pages/Index/Settings/AdminCenter/HomePanel.tsx:47 msgid "Admin Center Information" msgstr "" -#: src/pages/Index/Settings/AdminCenter/HomePanel.tsx:44 +#: src/pages/Index/Settings/AdminCenter/HomePanel.tsx:53 msgid "The home panel (and the whole Admin Center) is a new feature starting with the new UI and was previously (before 1.0) not available." msgstr "" -#: src/pages/Index/Settings/AdminCenter/HomePanel.tsx:51 +#: src/pages/Index/Settings/AdminCenter/HomePanel.tsx:60 msgid "The admin center provides a centralized location for all administration functionality and is meant to replace all interaction with the (django) backend admin interface." msgstr "" -#: src/pages/Index/Settings/AdminCenter/HomePanel.tsx:58 +#: src/pages/Index/Settings/AdminCenter/HomePanel.tsx:67 msgid "Please open feature requests (after checking the tracker) for any existing backend admin functionality you are missing in this UI. The backend admin interface should be used carefully and seldom." msgstr "" -#: src/pages/Index/Settings/AdminCenter/HomePanel.tsx:76 +#: src/pages/Index/Settings/AdminCenter/HomePanel.tsx:85 msgid "Quick Actions" msgstr "" @@ -6476,11 +6539,11 @@ msgstr "" #: src/pages/Index/Settings/AdminCenter/Index.tsx:195 #: src/pages/part/CategoryDetail.tsx:313 -msgid "Part Parameters" -msgstr "" +#~ msgid "Part Parameters" +#~ msgstr "Part Parameters" #: src/pages/Index/Settings/AdminCenter/Index.tsx:202 -#: src/pages/part/CategoryDetail.tsx:306 +#: src/pages/part/CategoryDetail.tsx:329 msgid "Category Parameters" msgstr "" @@ -6494,7 +6557,7 @@ msgstr "" #: src/pages/Index/Settings/AdminCenter/Index.tsx:235 #: src/pages/Index/Settings/AdminCenter/MachineManagementPanel.tsx:52 -#: src/tables/machine/MachineTypeTable.tsx:325 +#: src/tables/machine/MachineTypeTable.tsx:323 msgid "Machines" msgstr "" @@ -6507,8 +6570,8 @@ msgid "Data Management" msgstr "" #: src/pages/Index/Settings/AdminCenter/Index.tsx:270 -#: src/pages/Index/Settings/SystemSettings.tsx:175 -#: src/pages/Index/Settings/UserSettings.tsx:118 +#: src/pages/Index/Settings/SystemSettings.tsx:176 +#: src/pages/Index/Settings/UserSettings.tsx:119 msgid "Reporting" msgstr "" @@ -6709,11 +6772,11 @@ msgstr "" msgid "The settings below are specific to each available plugin" msgstr "" -#: src/pages/Index/Settings/SystemSettings.tsx:77 +#: src/pages/Index/Settings/SystemSettings.tsx:78 msgid "Authentication" msgstr "" -#: src/pages/Index/Settings/SystemSettings.tsx:103 +#: src/pages/Index/Settings/SystemSettings.tsx:104 msgid "Barcodes" msgstr "" @@ -6725,12 +6788,12 @@ msgstr "" #~ msgid "This panel is a placeholder." #~ msgstr "This panel is a placeholder." -#: src/pages/Index/Settings/SystemSettings.tsx:127 -#: src/pages/Index/Settings/UserSettings.tsx:112 +#: src/pages/Index/Settings/SystemSettings.tsx:128 +#: src/pages/Index/Settings/UserSettings.tsx:113 msgid "The settings below are specific to each available notification method" msgstr "" -#: src/pages/Index/Settings/SystemSettings.tsx:133 +#: src/pages/Index/Settings/SystemSettings.tsx:134 msgid "Pricing" msgstr "" @@ -6738,7 +6801,7 @@ msgstr "" #~ msgid "Exchange Rates" #~ msgstr "Exchange Rates" -#: src/pages/Index/Settings/SystemSettings.tsx:169 +#: src/pages/Index/Settings/SystemSettings.tsx:170 msgid "Labels" msgstr "" @@ -6790,15 +6853,15 @@ msgstr "" #~ msgid "Delete notifications" #~ msgstr "Delete notifications" -#: src/pages/build/BuildDetail.tsx:69 +#: src/pages/build/BuildDetail.tsx:70 msgid "No Required Items" msgstr "" -#: src/pages/build/BuildDetail.tsx:71 +#: src/pages/build/BuildDetail.tsx:72 msgid "This build order does not have any required items." msgstr "" -#: src/pages/build/BuildDetail.tsx:72 +#: src/pages/build/BuildDetail.tsx:73 msgid "The assembled part may not have a Bill of Materials (BOM) defined, or the BOM is empty." msgstr "" @@ -6826,7 +6889,7 @@ msgstr "" #~ msgid "Build Order updated" #~ msgstr "Build Order updated" -#: src/pages/build/BuildDetail.tsx:215 +#: src/pages/build/BuildDetail.tsx:216 #: src/pages/part/PartDetail.tsx:480 #: src/pages/stock/StockDetail.tsx:161 #: src/tables/bom/UsedInTable.tsx:44 @@ -6843,10 +6906,10 @@ msgstr "" #~ msgid "Duplicate build order" #~ msgstr "Duplicate build order" -#: src/pages/build/BuildDetail.tsx:228 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:174 -#: src/pages/sales/ReturnOrderDetail.tsx:141 -#: src/pages/sales/SalesOrderDetail.tsx:131 +#: src/pages/build/BuildDetail.tsx:229 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:175 +#: src/pages/sales/ReturnOrderDetail.tsx:142 +#: src/pages/sales/SalesOrderDetail.tsx:132 #: src/pages/stock/StockDetail.tsx:176 msgid "Custom Status" msgstr "" @@ -6855,9 +6918,9 @@ msgstr "" #~ msgid "Delete build order" #~ msgstr "Delete build order" -#: src/pages/build/BuildDetail.tsx:237 -#: src/pages/build/BuildDetail.tsx:723 -#: src/pages/build/BuildIndex.tsx:28 +#: src/pages/build/BuildDetail.tsx:238 +#: src/pages/build/BuildDetail.tsx:728 +#: src/pages/build/BuildIndex.tsx:34 #: src/pages/stock/LocationDetail.tsx:140 #: src/tables/build/BuildOrderTable.tsx:123 #: src/tables/build/BuildOrderTable.tsx:183 @@ -6865,57 +6928,57 @@ msgstr "" msgid "External" msgstr "" -#: src/pages/build/BuildDetail.tsx:244 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:141 -#: src/pages/sales/ReturnOrderDetail.tsx:108 -#: src/pages/sales/SalesOrderDetail.tsx:98 +#: src/pages/build/BuildDetail.tsx:245 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:142 +#: src/pages/sales/ReturnOrderDetail.tsx:109 +#: src/pages/sales/SalesOrderDetail.tsx:99 #: src/tables/ColumnRenderers.tsx:321 -#: src/tables/build/BuildAllocatedStockTable.tsx:115 -#: src/tables/build/BuildLineTable.tsx:352 +#: src/tables/build/BuildAllocatedStockTable.tsx:112 +#: src/tables/build/BuildLineTable.tsx:353 msgid "Reference" msgstr "" -#: src/pages/build/BuildDetail.tsx:258 +#: src/pages/build/BuildDetail.tsx:259 msgid "Parent Build" msgstr "" -#: src/pages/build/BuildDetail.tsx:269 +#: src/pages/build/BuildDetail.tsx:270 msgid "Build Quantity" msgstr "" -#: src/pages/build/BuildDetail.tsx:275 +#: src/pages/build/BuildDetail.tsx:276 #: src/pages/part/PartDetail.tsx:598 #: src/tables/bom/BomTable.tsx:365 #: src/tables/bom/BomTable.tsx:407 msgid "Can Build" msgstr "" -#: src/pages/build/BuildDetail.tsx:284 -#: src/pages/build/BuildDetail.tsx:474 +#: src/pages/build/BuildDetail.tsx:285 +#: src/pages/build/BuildDetail.tsx:475 msgid "Completed Outputs" msgstr "" -#: src/pages/build/BuildDetail.tsx:301 +#: src/pages/build/BuildDetail.tsx:302 #: src/tables/Filter.tsx:381 #: src/tables/build/BuildOrderTable.tsx:143 msgid "Issued By" msgstr "" -#: src/pages/build/BuildDetail.tsx:309 +#: src/pages/build/BuildDetail.tsx:310 #: src/pages/part/PartDetail.tsx:691 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:261 -#: src/pages/sales/ReturnOrderDetail.tsx:239 -#: src/pages/sales/SalesOrderDetail.tsx:232 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:262 +#: src/pages/sales/ReturnOrderDetail.tsx:240 +#: src/pages/sales/SalesOrderDetail.tsx:233 #: src/tables/ColumnRenderers.tsx:464 #: src/tables/Filter.tsx:319 msgid "Responsible" msgstr "" -#: src/pages/build/BuildDetail.tsx:327 +#: src/pages/build/BuildDetail.tsx:328 msgid "Any location" msgstr "" -#: src/pages/build/BuildDetail.tsx:334 +#: src/pages/build/BuildDetail.tsx:335 msgid "Destination Location" msgstr "" @@ -6924,24 +6987,24 @@ msgstr "" #~ msgid "Test Statistics" #~ msgstr "Test Statistics" -#: src/pages/build/BuildDetail.tsx:350 +#: src/pages/build/BuildDetail.tsx:351 #: src/tables/settings/ApiTokenTable.tsx:97 #: src/tables/settings/PendingTasksTable.tsx:41 msgid "Created" msgstr "" -#: src/pages/build/BuildDetail.tsx:358 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:286 -#: src/pages/sales/ReturnOrderDetail.tsx:265 -#: src/pages/sales/SalesOrderDetail.tsx:257 +#: src/pages/build/BuildDetail.tsx:359 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:287 +#: src/pages/sales/ReturnOrderDetail.tsx:266 +#: src/pages/sales/SalesOrderDetail.tsx:258 #: src/tables/ColumnRenderers.tsx:486 msgid "Start Date" msgstr "" -#: src/pages/build/BuildDetail.tsx:366 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:294 -#: src/pages/sales/ReturnOrderDetail.tsx:273 -#: src/pages/sales/SalesOrderDetail.tsx:265 +#: src/pages/build/BuildDetail.tsx:367 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:295 +#: src/pages/sales/ReturnOrderDetail.tsx:274 +#: src/pages/sales/SalesOrderDetail.tsx:266 #: src/tables/ColumnRenderers.tsx:494 #: src/tables/part/PartPurchaseOrdersTable.tsx:101 #: src/tables/sales/ReturnOrderLineItemTable.tsx:154 @@ -6954,185 +7017,185 @@ msgstr "" #~ msgstr "Reporting Actions" #: src/pages/build/BuildDetail.tsx:374 +#~ msgid "Print build report" +#~ msgstr "Print build report" + +#: src/pages/build/BuildDetail.tsx:375 #: src/tables/build/BuildOrderTable.tsx:93 #: src/tables/sales/SalesOrderLineItemTable.tsx:347 msgid "Completed" msgstr "" -#: src/pages/build/BuildDetail.tsx:374 -#~ msgid "Print build report" -#~ msgstr "Print build report" - -#: src/pages/build/BuildDetail.tsx:410 +#: src/pages/build/BuildDetail.tsx:411 msgid "Build Details" msgstr "" -#: src/pages/build/BuildDetail.tsx:416 +#: src/pages/build/BuildDetail.tsx:417 msgid "Required Parts" msgstr "" -#: src/pages/build/BuildDetail.tsx:428 -#: src/pages/sales/SalesOrderDetail.tsx:407 -#: src/pages/sales/SalesOrderShipmentDetail.tsx:261 +#: src/pages/build/BuildDetail.tsx:429 +#: src/pages/sales/SalesOrderDetail.tsx:408 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:259 #: src/tables/part/PartSalesAllocationsTable.tsx:73 msgid "Allocated Stock" msgstr "" -#: src/pages/build/BuildDetail.tsx:444 +#: src/pages/build/BuildDetail.tsx:445 msgid "Consumed Stock" msgstr "" -#: src/pages/build/BuildDetail.tsx:461 +#: src/pages/build/BuildDetail.tsx:462 msgid "Incomplete Outputs" msgstr "" -#: src/pages/build/BuildDetail.tsx:489 +#: src/pages/build/BuildDetail.tsx:490 msgid "External Orders" msgstr "" -#: src/pages/build/BuildDetail.tsx:503 +#: src/pages/build/BuildDetail.tsx:504 msgid "Child Build Orders" msgstr "" -#: src/pages/build/BuildDetail.tsx:513 -#: src/pages/part/PartDetail.tsx:937 +#: src/pages/build/BuildDetail.tsx:514 +#: src/pages/part/PartDetail.tsx:926 #: src/pages/stock/StockDetail.tsx:587 #: src/tables/build/BuildOutputTable.tsx:654 #: src/tables/stock/StockItemTestResultTable.tsx:173 msgid "Test Results" msgstr "" -#: src/pages/build/BuildDetail.tsx:550 +#: src/pages/build/BuildDetail.tsx:555 msgid "Edit Build Order" msgstr "" -#: src/pages/build/BuildDetail.tsx:572 +#: src/pages/build/BuildDetail.tsx:577 #: src/tables/build/BuildOrderTable.tsx:207 #: src/tables/build/BuildOrderTable.tsx:223 msgid "Add Build Order" msgstr "" -#: src/pages/build/BuildDetail.tsx:582 +#: src/pages/build/BuildDetail.tsx:587 msgid "Cancel Build Order" msgstr "" -#: src/pages/build/BuildDetail.tsx:584 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:416 -#: src/pages/sales/ReturnOrderDetail.tsx:427 -#: src/pages/sales/SalesOrderDetail.tsx:454 +#: src/pages/build/BuildDetail.tsx:589 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:421 +#: src/pages/sales/ReturnOrderDetail.tsx:432 +#: src/pages/sales/SalesOrderDetail.tsx:459 msgid "Order cancelled" msgstr "" -#: src/pages/build/BuildDetail.tsx:585 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:415 -#: src/pages/sales/ReturnOrderDetail.tsx:426 -#: src/pages/sales/SalesOrderDetail.tsx:453 +#: src/pages/build/BuildDetail.tsx:590 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:420 +#: src/pages/sales/ReturnOrderDetail.tsx:431 +#: src/pages/sales/SalesOrderDetail.tsx:458 msgid "Cancel this order" msgstr "" -#: src/pages/build/BuildDetail.tsx:594 +#: src/pages/build/BuildDetail.tsx:599 msgid "Hold Build Order" msgstr "" -#: src/pages/build/BuildDetail.tsx:596 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:423 -#: src/pages/sales/ReturnOrderDetail.tsx:434 -#: src/pages/sales/SalesOrderDetail.tsx:461 +#: src/pages/build/BuildDetail.tsx:601 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:428 +#: src/pages/sales/ReturnOrderDetail.tsx:439 +#: src/pages/sales/SalesOrderDetail.tsx:466 msgid "Place this order on hold" msgstr "" -#: src/pages/build/BuildDetail.tsx:597 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:424 -#: src/pages/sales/ReturnOrderDetail.tsx:435 -#: src/pages/sales/SalesOrderDetail.tsx:462 +#: src/pages/build/BuildDetail.tsx:602 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:429 +#: src/pages/sales/ReturnOrderDetail.tsx:440 +#: src/pages/sales/SalesOrderDetail.tsx:467 msgid "Order placed on hold" msgstr "" -#: src/pages/build/BuildDetail.tsx:602 +#: src/pages/build/BuildDetail.tsx:607 msgid "Issue Build Order" msgstr "" -#: src/pages/build/BuildDetail.tsx:604 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:407 -#: src/pages/sales/ReturnOrderDetail.tsx:418 -#: src/pages/sales/SalesOrderDetail.tsx:445 +#: src/pages/build/BuildDetail.tsx:609 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:412 +#: src/pages/sales/ReturnOrderDetail.tsx:423 +#: src/pages/sales/SalesOrderDetail.tsx:450 msgid "Issue this order" msgstr "" -#: src/pages/build/BuildDetail.tsx:605 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:408 -#: src/pages/sales/ReturnOrderDetail.tsx:419 -#: src/pages/sales/SalesOrderDetail.tsx:446 +#: src/pages/build/BuildDetail.tsx:610 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:413 +#: src/pages/sales/ReturnOrderDetail.tsx:424 +#: src/pages/sales/SalesOrderDetail.tsx:451 msgid "Order issued" msgstr "" -#: src/pages/build/BuildDetail.tsx:624 +#: src/pages/build/BuildDetail.tsx:629 msgid "Complete Build Order" msgstr "" -#: src/pages/build/BuildDetail.tsx:630 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:436 -#: src/pages/sales/ReturnOrderDetail.tsx:442 -#: src/pages/sales/SalesOrderDetail.tsx:480 +#: src/pages/build/BuildDetail.tsx:635 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:441 +#: src/pages/sales/ReturnOrderDetail.tsx:447 +#: src/pages/sales/SalesOrderDetail.tsx:485 msgid "Mark this order as complete" msgstr "" -#: src/pages/build/BuildDetail.tsx:633 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:430 -#: src/pages/sales/ReturnOrderDetail.tsx:443 -#: src/pages/sales/SalesOrderDetail.tsx:481 +#: src/pages/build/BuildDetail.tsx:638 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:435 +#: src/pages/sales/ReturnOrderDetail.tsx:448 +#: src/pages/sales/SalesOrderDetail.tsx:486 msgid "Order completed" msgstr "" -#: src/pages/build/BuildDetail.tsx:660 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:459 -#: src/pages/sales/ReturnOrderDetail.tsx:470 -#: src/pages/sales/SalesOrderDetail.tsx:516 +#: src/pages/build/BuildDetail.tsx:665 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:464 +#: src/pages/sales/ReturnOrderDetail.tsx:475 +#: src/pages/sales/SalesOrderDetail.tsx:521 msgid "Issue Order" msgstr "" -#: src/pages/build/BuildDetail.tsx:667 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:466 -#: src/pages/sales/ReturnOrderDetail.tsx:477 -#: src/pages/sales/SalesOrderDetail.tsx:530 +#: src/pages/build/BuildDetail.tsx:672 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:471 +#: src/pages/sales/ReturnOrderDetail.tsx:482 +#: src/pages/sales/SalesOrderDetail.tsx:535 msgid "Complete Order" msgstr "" -#: src/pages/build/BuildDetail.tsx:686 +#: src/pages/build/BuildDetail.tsx:691 msgid "Build Order Actions" msgstr "" -#: src/pages/build/BuildDetail.tsx:691 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:489 -#: src/pages/sales/ReturnOrderDetail.tsx:500 -#: src/pages/sales/SalesOrderDetail.tsx:554 +#: src/pages/build/BuildDetail.tsx:696 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:494 +#: src/pages/sales/ReturnOrderDetail.tsx:505 +#: src/pages/sales/SalesOrderDetail.tsx:559 msgid "Edit order" msgstr "" -#: src/pages/build/BuildDetail.tsx:695 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:497 -#: src/pages/sales/ReturnOrderDetail.tsx:506 -#: src/pages/sales/SalesOrderDetail.tsx:559 -msgid "Duplicate order" -msgstr "" - -#: src/pages/build/BuildDetail.tsx:699 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:500 +#: src/pages/build/BuildDetail.tsx:700 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:502 #: src/pages/sales/ReturnOrderDetail.tsx:511 -#: src/pages/sales/SalesOrderDetail.tsx:562 -msgid "Hold order" +#: src/pages/sales/SalesOrderDetail.tsx:564 +msgid "Duplicate order" msgstr "" #: src/pages/build/BuildDetail.tsx:704 #: src/pages/purchasing/PurchaseOrderDetail.tsx:505 #: src/pages/sales/ReturnOrderDetail.tsx:516 #: src/pages/sales/SalesOrderDetail.tsx:567 +msgid "Hold order" +msgstr "" + +#: src/pages/build/BuildDetail.tsx:709 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:510 +#: src/pages/sales/ReturnOrderDetail.tsx:521 +#: src/pages/sales/SalesOrderDetail.tsx:572 msgid "Cancel order" msgstr "" -#: src/pages/build/BuildDetail.tsx:742 +#: src/pages/build/BuildDetail.tsx:747 #: src/pages/stock/StockDetail.tsx:344 -#: src/tables/build/BuildAllocatedStockTable.tsx:85 +#: src/tables/build/BuildAllocatedStockTable.tsx:82 #: src/tables/part/PartBuildAllocationsTable.tsx:45 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:157 #: src/tables/stock/StockTrackingTable.tsx:109 @@ -7143,7 +7206,7 @@ msgstr "" #~ msgid "Build order created" #~ msgstr "Build order created" -#: src/pages/build/BuildIndex.tsx:29 +#: src/pages/build/BuildIndex.tsx:35 #: src/tables/build/BuildOrderTable.tsx:184 msgid "Show external build orders" msgstr "" @@ -7152,61 +7215,82 @@ msgstr "" #~ msgid "New Build Order" #~ msgstr "New Build Order" -#: src/pages/build/BuildIndex.tsx:83 -#: src/pages/purchasing/PurchasingIndex.tsx:69 -#: src/pages/sales/SalesIndex.tsx:92 -#: src/pages/sales/SalesIndex.tsx:125 +#: src/pages/build/BuildIndex.tsx:74 +#: src/pages/part/CategoryDetail.tsx:292 +#: src/pages/purchasing/PurchasingIndex.tsx:74 +#: src/pages/purchasing/PurchasingIndex.tsx:107 +#: src/pages/purchasing/PurchasingIndex.tsx:135 +#: src/pages/purchasing/PurchasingIndex.tsx:156 +#: src/pages/purchasing/PurchasingIndex.tsx:184 +#: src/pages/sales/SalesIndex.tsx:61 +#: src/pages/sales/SalesIndex.tsx:107 +#: src/pages/sales/SalesIndex.tsx:140 msgid "Table View" msgstr "" -#: src/pages/build/BuildIndex.tsx:86 -#: src/pages/purchasing/PurchasingIndex.tsx:72 -#: src/pages/sales/SalesIndex.tsx:95 -#: src/pages/sales/SalesIndex.tsx:128 +#: src/pages/build/BuildIndex.tsx:80 +#: src/pages/purchasing/PurchasingIndex.tsx:80 +#: src/pages/sales/SalesIndex.tsx:67 +#: src/pages/sales/SalesIndex.tsx:113 msgid "Calendar View" msgstr "" -#: src/pages/company/CompanyDetail.tsx:99 +#: src/pages/build/BuildIndex.tsx:86 +#: src/pages/part/CategoryDetail.tsx:306 +#: src/pages/purchasing/PurchasingIndex.tsx:92 +#: src/pages/purchasing/PurchasingIndex.tsx:118 +#: src/pages/purchasing/PurchasingIndex.tsx:141 +#: src/pages/purchasing/PurchasingIndex.tsx:167 +#: src/pages/purchasing/PurchasingIndex.tsx:190 +#: src/pages/sales/SalesIndex.tsx:79 +#: src/pages/sales/SalesIndex.tsx:125 +#: src/pages/sales/SalesIndex.tsx:151 +msgid "Parametric View" +msgstr "" + +#: src/pages/company/CompanyDetail.tsx:100 msgid "Website" msgstr "" -#: src/pages/company/CompanyDetail.tsx:107 +#: src/pages/company/CompanyDetail.tsx:108 msgid "Phone Number" msgstr "" -#: src/pages/company/CompanyDetail.tsx:114 +#: src/pages/company/CompanyDetail.tsx:115 msgid "Email Address" msgstr "" -#: src/pages/company/CompanyDetail.tsx:121 +#: src/pages/company/CompanyDetail.tsx:122 msgid "Tax ID" msgstr "" -#: src/pages/company/CompanyDetail.tsx:131 +#: src/pages/company/CompanyDetail.tsx:132 msgid "Default Currency" msgstr "" -#: src/pages/company/CompanyDetail.tsx:142 +#: src/pages/company/CompanyDetail.tsx:143 #: src/pages/company/ManufacturerDetail.tsx:8 -#: src/pages/company/ManufacturerPartDetail.tsx:104 -#: src/pages/company/ManufacturerPartDetail.tsx:280 -#: src/pages/company/SupplierPartDetail.tsx:152 +#: src/pages/company/ManufacturerPartDetail.tsx:103 +#: src/pages/company/ManufacturerPartDetail.tsx:271 +#: src/pages/company/SupplierPartDetail.tsx:153 #: src/tables/Filter.tsx:347 #: src/tables/company/CompanyTable.tsx:101 #: src/tables/purchasing/SupplierPartTable.tsx:89 msgid "Manufacturer" msgstr "" -#: src/pages/company/CompanyDetail.tsx:148 +#: src/pages/company/CompanyDetail.tsx:149 #: src/pages/company/CustomerDetail.tsx:8 #: src/pages/part/pricing/SaleHistoryPanel.tsx:31 -#: src/pages/sales/ReturnOrderDetail.tsx:123 -#: src/pages/sales/SalesOrderDetail.tsx:113 -#: src/pages/sales/SalesOrderShipmentDetail.tsx:113 +#: src/pages/sales/ReturnOrderDetail.tsx:124 +#: src/pages/sales/SalesOrderDetail.tsx:114 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:111 #: src/pages/stock/StockDetail.tsx:370 #: src/tables/company/CompanyTable.tsx:106 +#: src/tables/sales/ReturnOrderParametricTable.tsx:32 #: src/tables/sales/ReturnOrderTable.tsx:108 -#: src/tables/sales/SalesOrderShipmentTable.tsx:111 +#: src/tables/sales/SalesOrderParametricTable.tsx:32 +#: src/tables/sales/SalesOrderShipmentTable.tsx:132 #: src/tables/sales/SalesOrderTable.tsx:133 #: src/tables/stock/StockTrackingTable.tsx:153 msgid "Customer" @@ -7216,11 +7300,11 @@ msgstr "" #~ msgid "Edit company" #~ msgstr "Edit company" -#: src/pages/company/CompanyDetail.tsx:181 +#: src/pages/company/CompanyDetail.tsx:182 msgid "Company Details" msgstr "" -#: src/pages/company/CompanyDetail.tsx:187 +#: src/pages/company/CompanyDetail.tsx:188 msgid "Supplied Parts" msgstr "" @@ -7228,79 +7312,79 @@ msgstr "" #~ msgid "Delete company" #~ msgstr "Delete company" -#: src/pages/company/CompanyDetail.tsx:194 +#: src/pages/company/CompanyDetail.tsx:195 msgid "Manufactured Parts" msgstr "" -#: src/pages/company/CompanyDetail.tsx:241 +#: src/pages/company/CompanyDetail.tsx:242 msgid "Assigned Stock" msgstr "" -#: src/pages/company/CompanyDetail.tsx:282 +#: src/pages/company/CompanyDetail.tsx:287 #: src/tables/company/CompanyTable.tsx:82 msgid "Edit Company" msgstr "" -#: src/pages/company/CompanyDetail.tsx:290 +#: src/pages/company/CompanyDetail.tsx:295 msgid "Delete Company" msgstr "" -#: src/pages/company/CompanyDetail.tsx:305 +#: src/pages/company/CompanyDetail.tsx:310 msgid "Company Actions" msgstr "" -#: src/pages/company/ManufacturerPartDetail.tsx:78 -#: src/pages/company/SupplierPartDetail.tsx:89 +#: src/pages/company/ManufacturerPartDetail.tsx:77 +#: src/pages/company/SupplierPartDetail.tsx:90 msgid "Internal Part" msgstr "" -#: src/pages/company/ManufacturerPartDetail.tsx:112 +#: src/pages/company/ManufacturerPartDetail.tsx:111 msgid "Manufacturer Part Number" msgstr "" -#: src/pages/company/ManufacturerPartDetail.tsx:129 -#: src/pages/company/SupplierPartDetail.tsx:113 +#: src/pages/company/ManufacturerPartDetail.tsx:128 +#: src/pages/company/SupplierPartDetail.tsx:114 msgid "External Link" msgstr "" -#: src/pages/company/ManufacturerPartDetail.tsx:148 -#: src/pages/company/SupplierPartDetail.tsx:232 +#: src/pages/company/ManufacturerPartDetail.tsx:147 +#: src/pages/company/SupplierPartDetail.tsx:233 #: src/pages/part/PartDetail.tsx:787 msgid "Part Details" msgstr "" -#: src/pages/company/ManufacturerPartDetail.tsx:151 +#: src/pages/company/ManufacturerPartDetail.tsx:150 msgid "Manufacturer Details" msgstr "" -#: src/pages/company/ManufacturerPartDetail.tsx:160 +#: src/pages/company/ManufacturerPartDetail.tsx:159 msgid "Manufacturer Part Details" msgstr "" -#: src/pages/company/ManufacturerPartDetail.tsx:178 -#: src/pages/company/SupplierPartDetail.tsx:252 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:381 +#: src/pages/company/ManufacturerPartDetail.tsx:165 +#: src/pages/company/SupplierPartDetail.tsx:253 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:382 msgid "Received Stock" msgstr "" -#: src/pages/company/ManufacturerPartDetail.tsx:220 +#: src/pages/company/ManufacturerPartDetail.tsx:211 #: src/tables/purchasing/ManufacturerPartTable.tsx:108 msgid "Edit Manufacturer Part" msgstr "" -#: src/pages/company/ManufacturerPartDetail.tsx:227 +#: src/pages/company/ManufacturerPartDetail.tsx:218 #: src/tables/purchasing/ManufacturerPartTable.tsx:96 #: src/tables/purchasing/ManufacturerPartTable.tsx:115 #: src/tables/purchasing/ManufacturerPartTable.tsx:156 msgid "Add Manufacturer Part" msgstr "" -#: src/pages/company/ManufacturerPartDetail.tsx:239 +#: src/pages/company/ManufacturerPartDetail.tsx:230 #: src/tables/purchasing/ManufacturerPartTable.tsx:126 msgid "Delete Manufacturer Part" msgstr "" -#: src/pages/company/ManufacturerPartDetail.tsx:254 +#: src/pages/company/ManufacturerPartDetail.tsx:245 msgid "Manufacturer Part Actions" msgstr "" @@ -7308,12 +7392,12 @@ msgstr "" #~ msgid "ManufacturerPart" #~ msgstr "ManufacturerPart" -#: src/pages/company/SupplierPartDetail.tsx:104 +#: src/pages/company/SupplierPartDetail.tsx:105 #: src/tables/part/RelatedPartTable.tsx:82 msgid "Part Description" msgstr "" -#: src/pages/company/SupplierPartDetail.tsx:179 +#: src/pages/company/SupplierPartDetail.tsx:180 #: src/tables/part/PartPurchaseOrdersTable.tsx:73 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:191 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:233 @@ -7321,50 +7405,50 @@ msgstr "" msgid "Pack Quantity" msgstr "" -#: src/pages/company/SupplierPartDetail.tsx:204 +#: src/pages/company/SupplierPartDetail.tsx:205 msgid "Supplier Availability" msgstr "" -#: src/pages/company/SupplierPartDetail.tsx:212 +#: src/pages/company/SupplierPartDetail.tsx:213 msgid "Availability Updated" msgstr "" -#: src/pages/company/SupplierPartDetail.tsx:237 +#: src/pages/company/SupplierPartDetail.tsx:238 msgid "Availability" msgstr "" -#: src/pages/company/SupplierPartDetail.tsx:246 +#: src/pages/company/SupplierPartDetail.tsx:247 msgid "Supplier Part Details" msgstr "" -#: src/pages/company/SupplierPartDetail.tsx:279 +#: src/pages/company/SupplierPartDetail.tsx:280 #: src/pages/part/PartPricingPanel.tsx:113 #: src/pages/part/pricing/PricingOverviewPanel.tsx:239 msgid "Supplier Pricing" msgstr "" -#: src/pages/company/SupplierPartDetail.tsx:308 +#: src/pages/company/SupplierPartDetail.tsx:313 msgid "Supplier Part Actions" msgstr "" -#: src/pages/company/SupplierPartDetail.tsx:332 +#: src/pages/company/SupplierPartDetail.tsx:337 #: src/tables/purchasing/SupplierPartTable.tsx:244 msgid "Edit Supplier Part" msgstr "" -#: src/pages/company/SupplierPartDetail.tsx:340 +#: src/pages/company/SupplierPartDetail.tsx:345 #: src/tables/purchasing/SupplierPartTable.tsx:264 msgid "Delete Supplier Part" msgstr "" -#: src/pages/company/SupplierPartDetail.tsx:348 +#: src/pages/company/SupplierPartDetail.tsx:353 #: src/tables/purchasing/SupplierPartTable.tsx:172 #: src/tables/purchasing/SupplierPartTable.tsx:251 msgid "Add Supplier Part" msgstr "" -#: src/pages/company/SupplierPartDetail.tsx:388 -#: src/pages/part/PartDetail.tsx:1003 +#: src/pages/company/SupplierPartDetail.tsx:393 +#: src/pages/part/PartDetail.tsx:1018 msgid "No Stock" msgstr "" @@ -7411,83 +7495,83 @@ msgstr "" msgid "Basic user" msgstr "" -#: src/pages/part/CategoryDetail.tsx:100 +#: src/pages/part/CategoryDetail.tsx:103 #: src/pages/stock/LocationDetail.tsx:94 #: src/tables/settings/ErrorTable.tsx:63 #: src/tables/settings/ErrorTable.tsx:108 msgid "Path" msgstr "" -#: src/pages/part/CategoryDetail.tsx:116 +#: src/pages/part/CategoryDetail.tsx:119 msgid "Parent Category" msgstr "" -#: src/pages/part/CategoryDetail.tsx:139 -#: src/pages/part/CategoryDetail.tsx:271 +#: src/pages/part/CategoryDetail.tsx:142 +#: src/pages/part/CategoryDetail.tsx:279 msgid "Subcategories" msgstr "" -#: src/pages/part/CategoryDetail.tsx:146 +#: src/pages/part/CategoryDetail.tsx:149 #: src/pages/stock/LocationDetail.tsx:134 #: src/tables/part/PartCategoryTable.tsx:89 #: src/tables/stock/StockLocationTable.tsx:43 msgid "Structural" msgstr "" -#: src/pages/part/CategoryDetail.tsx:152 +#: src/pages/part/CategoryDetail.tsx:155 msgid "Parent default location" msgstr "" -#: src/pages/part/CategoryDetail.tsx:159 +#: src/pages/part/CategoryDetail.tsx:162 msgid "Default location" msgstr "" -#: src/pages/part/CategoryDetail.tsx:170 +#: src/pages/part/CategoryDetail.tsx:173 msgid "Top level part category" msgstr "" -#: src/pages/part/CategoryDetail.tsx:180 -#: src/pages/part/CategoryDetail.tsx:248 +#: src/pages/part/CategoryDetail.tsx:183 +#: src/pages/part/CategoryDetail.tsx:251 #: src/tables/part/PartCategoryTable.tsx:122 msgid "Edit Part Category" msgstr "" -#: src/pages/part/CategoryDetail.tsx:189 +#: src/pages/part/CategoryDetail.tsx:192 msgid "Move items to parent category" msgstr "" -#: src/pages/part/CategoryDetail.tsx:193 +#: src/pages/part/CategoryDetail.tsx:196 #: src/pages/stock/LocationDetail.tsx:226 msgid "Delete items" msgstr "" -#: src/pages/part/CategoryDetail.tsx:201 -#: src/pages/part/CategoryDetail.tsx:253 +#: src/pages/part/CategoryDetail.tsx:204 +#: src/pages/part/CategoryDetail.tsx:256 msgid "Delete Part Category" msgstr "" -#: src/pages/part/CategoryDetail.tsx:204 +#: src/pages/part/CategoryDetail.tsx:207 msgid "Parts Action" msgstr "" -#: src/pages/part/CategoryDetail.tsx:205 +#: src/pages/part/CategoryDetail.tsx:208 msgid "Action for parts in this category" msgstr "" -#: src/pages/part/CategoryDetail.tsx:211 +#: src/pages/part/CategoryDetail.tsx:214 msgid "Child Categories Action" msgstr "" -#: src/pages/part/CategoryDetail.tsx:212 +#: src/pages/part/CategoryDetail.tsx:215 msgid "Action for child categories in this category" msgstr "" -#: src/pages/part/CategoryDetail.tsx:244 +#: src/pages/part/CategoryDetail.tsx:247 #: src/tables/part/PartCategoryTable.tsx:143 msgid "Category Actions" msgstr "" -#: src/pages/part/CategoryDetail.tsx:265 +#: src/pages/part/CategoryDetail.tsx:273 msgid "Category Details" msgstr "" @@ -7585,7 +7669,6 @@ msgid "Category Default Location" msgstr "" #: src/pages/part/PartDetail.tsx:507 -#: src/tables/purchasing/ManufacturerPartParameterTable.tsx:48 msgid "Units" msgstr "" @@ -7600,7 +7683,7 @@ msgstr "" #: src/pages/part/PartDetail.tsx:542 #: src/tables/bom/BomTable.tsx:439 -#: src/tables/build/BuildLineTable.tsx:305 +#: src/tables/build/BuildLineTable.tsx:306 #: src/tables/part/PartTable.tsx:319 #: src/tables/sales/SalesOrderLineItemTable.tsx:138 msgid "Available Stock" @@ -7608,7 +7691,7 @@ msgstr "" #: src/pages/part/PartDetail.tsx:548 #: src/tables/bom/BomTable.tsx:341 -#: src/tables/build/BuildLineTable.tsx:267 +#: src/tables/build/BuildLineTable.tsx:268 #: src/tables/sales/SalesOrderLineItemTable.tsx:180 msgid "On order" msgstr "" @@ -7634,7 +7717,7 @@ msgstr "" #~ msgstr "Scheduling" #: src/pages/part/PartDetail.tsx:620 -#: src/tables/part/ParametricPartTable.tsx:359 +#: src/tables/part/ParametricPartTable.tsx:24 #: src/tables/part/PartTable.tsx:203 msgid "Locked" msgstr "" @@ -7671,16 +7754,16 @@ msgid "Saleable Part" msgstr "" #: src/pages/part/PartDetail.tsx:663 -#: src/pages/part/PartDetail.tsx:1033 +#: src/pages/part/PartDetail.tsx:1054 #: src/tables/bom/BomTable.tsx:150 #: src/tables/bom/BomTable.tsx:434 msgid "Virtual Part" msgstr "" #: src/pages/part/PartDetail.tsx:678 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:271 -#: src/pages/sales/ReturnOrderDetail.tsx:249 -#: src/pages/sales/SalesOrderDetail.tsx:242 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:272 +#: src/pages/sales/ReturnOrderDetail.tsx:250 +#: src/pages/sales/SalesOrderDetail.tsx:243 #: src/tables/ColumnRenderers.tsx:502 msgid "Creation Date" msgstr "" @@ -7718,35 +7801,46 @@ msgstr "" msgid "Select Part Revision" msgstr "" -#: src/pages/part/PartDetail.tsx:823 +#: src/pages/part/PartDetail.tsx:812 msgid "Variants" msgstr "" -#: src/pages/part/PartDetail.tsx:830 +#: src/pages/part/PartDetail.tsx:819 #: src/pages/stock/StockDetail.tsx:542 msgid "Allocations" msgstr "" -#: src/pages/part/PartDetail.tsx:837 +#: src/pages/part/PartDetail.tsx:826 msgid "Bill of Materials" msgstr "" -#: src/pages/part/PartDetail.tsx:849 +#: src/pages/part/PartDetail.tsx:838 msgid "Used In" msgstr "" -#: src/pages/part/PartDetail.tsx:856 +#: src/pages/part/PartDetail.tsx:845 msgid "Part Pricing" msgstr "" -#: src/pages/part/PartDetail.tsx:926 +#: src/pages/part/PartDetail.tsx:915 msgid "Test Templates" msgstr "" -#: src/pages/part/PartDetail.tsx:948 +#: src/pages/part/PartDetail.tsx:937 msgid "Related Parts" msgstr "" +#: src/pages/part/PartDetail.tsx:949 +#: src/tables/ColumnRenderers.tsx:73 +#: src/tables/bom/BomTable.tsx:657 +#: src/tables/part/PartTestTemplateTable.tsx:258 +msgid "Part is Locked" +msgstr "" + +#: src/pages/part/PartDetail.tsx:954 +msgid "Part parameters cannot be edited, as the part is locked" +msgstr "" + #: src/pages/part/PartDetail.tsx:956 #~ msgid "Count part stock" #~ msgstr "Count part stock" @@ -7755,42 +7849,46 @@ msgstr "" #~ msgid "Transfer part stock" #~ msgstr "Transfer part stock" -#: src/pages/part/PartDetail.tsx:1009 +#: src/pages/part/PartDetail.tsx:1024 #: src/tables/part/PartTestTemplateTable.tsx:112 #: src/tables/stock/StockItemTestResultTable.tsx:404 msgid "Required" msgstr "" -#: src/pages/part/PartDetail.tsx:1058 +#: src/pages/part/PartDetail.tsx:1042 +msgid "Deficit" +msgstr "" + +#: src/pages/part/PartDetail.tsx:1079 #: src/tables/part/PartTable.tsx:396 #: src/tables/part/PartTable.tsx:449 msgid "Add Part" msgstr "" -#: src/pages/part/PartDetail.tsx:1072 +#: src/pages/part/PartDetail.tsx:1093 msgid "Delete Part" msgstr "" -#: src/pages/part/PartDetail.tsx:1081 +#: src/pages/part/PartDetail.tsx:1102 msgid "Deleting this part cannot be reversed" msgstr "" -#: src/pages/part/PartDetail.tsx:1143 +#: src/pages/part/PartDetail.tsx:1164 #: src/pages/stock/StockDetail.tsx:883 msgid "Order" msgstr "" -#: src/pages/part/PartDetail.tsx:1144 +#: src/pages/part/PartDetail.tsx:1165 #: src/pages/stock/StockDetail.tsx:884 -#: src/tables/build/BuildLineTable.tsx:761 +#: src/tables/build/BuildLineTable.tsx:768 msgid "Order Stock" msgstr "" -#: src/pages/part/PartDetail.tsx:1156 +#: src/pages/part/PartDetail.tsx:1177 msgid "Search by serial number" msgstr "" -#: src/pages/part/PartDetail.tsx:1164 +#: src/pages/part/PartDetail.tsx:1185 #: src/tables/part/PartTable.tsx:506 msgid "Part Actions" msgstr "" @@ -8039,7 +8137,7 @@ msgstr "" #: src/pages/part/pricing/PricingOverviewPanel.tsx:288 #: src/pages/stock/StockDetail.tsx:426 -#: src/tables/part/PartParameterTable.tsx:121 +#: src/tables/general/ParameterTable.tsx:101 #: src/tables/stock/StockItemTable.tsx:300 msgid "Last Updated" msgstr "" @@ -8107,17 +8205,17 @@ msgstr "" msgid "Variant Part" msgstr "" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:89 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:90 msgid "Edit Purchase Order" msgstr "" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:125 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:126 #: src/tables/purchasing/PurchaseOrderTable.tsx:154 #: src/tables/purchasing/PurchaseOrderTable.tsx:167 msgid "Add Purchase Order" msgstr "" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:147 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:148 msgid "Supplier Reference" msgstr "" @@ -8127,20 +8225,20 @@ msgstr "" #~ msgid "Order Currency," #~ msgstr "Order Currency," -#: src/pages/purchasing/PurchaseOrderDetail.tsx:187 -#: src/pages/sales/ReturnOrderDetail.tsx:160 -#: src/pages/sales/SalesOrderDetail.tsx:144 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:188 +#: src/pages/sales/ReturnOrderDetail.tsx:161 +#: src/pages/sales/SalesOrderDetail.tsx:145 msgid "Completed Line Items" msgstr "" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:196 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:197 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:272 msgid "Destination" msgstr "" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:202 -#: src/pages/sales/ReturnOrderDetail.tsx:167 -#: src/pages/sales/SalesOrderDetail.tsx:161 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:203 +#: src/pages/sales/ReturnOrderDetail.tsx:168 +#: src/pages/sales/SalesOrderDetail.tsx:162 msgid "Order Currency" msgstr "" @@ -8150,97 +8248,97 @@ msgstr "" #~ msgid "Created On" #~ msgstr "Created On" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:208 -#: src/pages/sales/ReturnOrderDetail.tsx:174 -#: src/pages/sales/SalesOrderDetail.tsx:167 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:209 +#: src/pages/sales/ReturnOrderDetail.tsx:175 +#: src/pages/sales/SalesOrderDetail.tsx:168 msgid "Total Cost" msgstr "" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:237 -#: src/pages/sales/ReturnOrderDetail.tsx:215 -#: src/pages/sales/SalesOrderDetail.tsx:208 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:238 +#: src/pages/sales/ReturnOrderDetail.tsx:216 +#: src/pages/sales/SalesOrderDetail.tsx:209 msgid "Contact Email" msgstr "" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:245 -#: src/pages/sales/ReturnOrderDetail.tsx:223 -#: src/pages/sales/SalesOrderDetail.tsx:216 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:246 +#: src/pages/sales/ReturnOrderDetail.tsx:224 +#: src/pages/sales/SalesOrderDetail.tsx:217 msgid "Contact Phone" msgstr "" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:278 -#: src/pages/sales/ReturnOrderDetail.tsx:257 -#: src/pages/sales/SalesOrderDetail.tsx:249 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:279 +#: src/pages/sales/ReturnOrderDetail.tsx:258 +#: src/pages/sales/SalesOrderDetail.tsx:250 msgid "Issue Date" msgstr "" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:303 -#: src/pages/sales/ReturnOrderDetail.tsx:281 -#: src/pages/sales/SalesOrderDetail.tsx:272 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:304 +#: src/pages/sales/ReturnOrderDetail.tsx:282 +#: src/pages/sales/SalesOrderDetail.tsx:273 #: src/tables/ColumnRenderers.tsx:510 #: src/tables/build/BuildOrderTable.tsx:137 #: src/tables/part/PartPurchaseOrdersTable.tsx:106 msgid "Completion Date" msgstr "" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:333 -#: src/pages/sales/ReturnOrderDetail.tsx:311 -#: src/pages/sales/SalesOrderDetail.tsx:349 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:334 +#: src/pages/sales/ReturnOrderDetail.tsx:312 +#: src/pages/sales/SalesOrderDetail.tsx:350 msgid "Order Details" msgstr "" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:339 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:348 -#: src/pages/sales/ReturnOrderDetail.tsx:153 -#: src/pages/sales/ReturnOrderDetail.tsx:317 -#: src/pages/sales/ReturnOrderDetail.tsx:326 -#: src/pages/sales/SalesOrderDetail.tsx:355 -#: src/pages/sales/SalesOrderDetail.tsx:364 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:340 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:349 +#: src/pages/sales/ReturnOrderDetail.tsx:154 +#: src/pages/sales/ReturnOrderDetail.tsx:318 +#: src/pages/sales/ReturnOrderDetail.tsx:327 +#: src/pages/sales/SalesOrderDetail.tsx:356 +#: src/pages/sales/SalesOrderDetail.tsx:365 msgid "Line Items" msgstr "" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:363 -#: src/pages/sales/ReturnOrderDetail.tsx:341 -#: src/pages/sales/SalesOrderDetail.tsx:378 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:364 +#: src/pages/sales/ReturnOrderDetail.tsx:342 +#: src/pages/sales/SalesOrderDetail.tsx:379 msgid "Extra Line Items" msgstr "" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:405 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:410 msgid "Issue Purchase Order" msgstr "" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:413 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:418 msgid "Cancel Purchase Order" msgstr "" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:421 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:426 msgid "Hold Purchase Order" msgstr "" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:429 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:434 msgid "Complete Purchase Order" msgstr "" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:485 -#: src/pages/sales/ReturnOrderDetail.tsx:496 -#: src/pages/sales/SalesOrderDetail.tsx:549 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:490 +#: src/pages/sales/ReturnOrderDetail.tsx:501 +#: src/pages/sales/SalesOrderDetail.tsx:554 msgid "Order Actions" msgstr "" -#: src/pages/sales/ReturnOrderDetail.tsx:114 -#: src/pages/sales/SalesOrderDetail.tsx:104 -#: src/pages/sales/SalesOrderShipmentDetail.tsx:134 +#: src/pages/sales/ReturnOrderDetail.tsx:115 +#: src/pages/sales/SalesOrderDetail.tsx:105 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:132 #: src/tables/sales/SalesOrderTable.tsx:141 msgid "Customer Reference" msgstr "" -#: src/pages/sales/ReturnOrderDetail.tsx:195 +#: src/pages/sales/ReturnOrderDetail.tsx:196 msgid "Return Address" msgstr "" -#: src/pages/sales/ReturnOrderDetail.tsx:201 -#: src/pages/sales/SalesOrderDetail.tsx:194 -#: src/pages/sales/SalesOrderShipmentDetail.tsx:181 +#: src/pages/sales/ReturnOrderDetail.tsx:202 +#: src/pages/sales/SalesOrderDetail.tsx:195 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:179 msgid "Not specified" msgstr "" @@ -8248,117 +8346,117 @@ msgstr "" #~ msgid "Order canceled" #~ msgstr "Order canceled" -#: src/pages/sales/ReturnOrderDetail.tsx:389 +#: src/pages/sales/ReturnOrderDetail.tsx:394 msgid "Edit Return Order" msgstr "" -#: src/pages/sales/ReturnOrderDetail.tsx:407 +#: src/pages/sales/ReturnOrderDetail.tsx:412 #: src/tables/sales/ReturnOrderTable.tsx:154 #: src/tables/sales/ReturnOrderTable.tsx:167 msgid "Add Return Order" msgstr "" -#: src/pages/sales/ReturnOrderDetail.tsx:416 +#: src/pages/sales/ReturnOrderDetail.tsx:421 msgid "Issue Return Order" msgstr "" -#: src/pages/sales/ReturnOrderDetail.tsx:424 +#: src/pages/sales/ReturnOrderDetail.tsx:429 msgid "Cancel Return Order" msgstr "" -#: src/pages/sales/ReturnOrderDetail.tsx:432 +#: src/pages/sales/ReturnOrderDetail.tsx:437 msgid "Hold Return Order" msgstr "" -#: src/pages/sales/ReturnOrderDetail.tsx:440 +#: src/pages/sales/ReturnOrderDetail.tsx:445 msgid "Complete Return Order" msgstr "" -#: src/pages/sales/SalesOrderDetail.tsx:153 +#: src/pages/sales/SalesOrderDetail.tsx:154 msgid "Completed Shipments" msgstr "" -#: src/pages/sales/SalesOrderDetail.tsx:188 -#: src/pages/sales/SalesOrderShipmentDetail.tsx:170 +#: src/pages/sales/SalesOrderDetail.tsx:189 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:168 msgid "Shipping Address" msgstr "" -#: src/pages/sales/SalesOrderDetail.tsx:316 +#: src/pages/sales/SalesOrderDetail.tsx:317 msgid "Edit Sales Order" msgstr "" -#: src/pages/sales/SalesOrderDetail.tsx:338 +#: src/pages/sales/SalesOrderDetail.tsx:339 #: src/tables/sales/SalesOrderTable.tsx:108 #: src/tables/sales/SalesOrderTable.tsx:121 msgid "Add Sales Order" msgstr "" -#: src/pages/sales/SalesOrderDetail.tsx:396 +#: src/pages/sales/SalesOrderDetail.tsx:397 #: src/tables/sales/SalesOrderTable.tsx:147 msgid "Shipments" msgstr "" -#: src/pages/sales/SalesOrderDetail.tsx:443 +#: src/pages/sales/SalesOrderDetail.tsx:448 msgid "Issue Sales Order" msgstr "" -#: src/pages/sales/SalesOrderDetail.tsx:451 +#: src/pages/sales/SalesOrderDetail.tsx:456 msgid "Cancel Sales Order" msgstr "" -#: src/pages/sales/SalesOrderDetail.tsx:459 +#: src/pages/sales/SalesOrderDetail.tsx:464 msgid "Hold Sales Order" msgstr "" -#: src/pages/sales/SalesOrderDetail.tsx:467 +#: src/pages/sales/SalesOrderDetail.tsx:472 msgid "Ship Sales Order" msgstr "" -#: src/pages/sales/SalesOrderDetail.tsx:469 +#: src/pages/sales/SalesOrderDetail.tsx:474 msgid "Ship this order?" msgstr "" -#: src/pages/sales/SalesOrderDetail.tsx:470 +#: src/pages/sales/SalesOrderDetail.tsx:475 msgid "Order shipped" msgstr "" -#: src/pages/sales/SalesOrderDetail.tsx:478 +#: src/pages/sales/SalesOrderDetail.tsx:483 msgid "Complete Sales Order" msgstr "" -#: src/pages/sales/SalesOrderDetail.tsx:523 +#: src/pages/sales/SalesOrderDetail.tsx:528 msgid "Ship Order" msgstr "" -#: src/pages/sales/SalesOrderShipmentDetail.tsx:142 -#: src/tables/sales/SalesOrderShipmentTable.tsx:135 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:140 +#: src/tables/sales/SalesOrderShipmentTable.tsx:156 msgid "Shipment Reference" msgstr "" -#: src/pages/sales/SalesOrderShipmentDetail.tsx:148 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:146 msgid "Tracking Number" msgstr "" -#: src/pages/sales/SalesOrderShipmentDetail.tsx:156 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:154 msgid "Invoice Number" msgstr "" -#: src/pages/sales/SalesOrderShipmentDetail.tsx:191 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:189 msgid "Allocated Items" msgstr "" -#: src/pages/sales/SalesOrderShipmentDetail.tsx:196 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:194 msgid "Checked By" msgstr "" -#: src/pages/sales/SalesOrderShipmentDetail.tsx:202 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:200 msgid "Not checked" msgstr "" -#: src/pages/sales/SalesOrderShipmentDetail.tsx:208 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:206 #: src/tables/ColumnRenderers.tsx:518 #: src/tables/sales/SalesOrderAllocationTable.tsx:182 -#: src/tables/sales/SalesOrderShipmentTable.tsx:168 +#: src/tables/sales/SalesOrderShipmentTable.tsx:189 msgid "Shipment Date" msgstr "" @@ -8366,108 +8464,82 @@ msgstr "" #~ msgid "Assigned Items" #~ msgstr "Assigned Items" -#: src/pages/sales/SalesOrderShipmentDetail.tsx:216 -#: src/tables/sales/SalesOrderShipmentTable.tsx:172 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:214 +#: src/tables/sales/SalesOrderShipmentTable.tsx:193 msgid "Delivery Date" msgstr "" -#: src/pages/sales/SalesOrderShipmentDetail.tsx:255 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:253 msgid "Shipment Details" msgstr "" -#: src/pages/sales/SalesOrderShipmentDetail.tsx:294 -#: src/pages/sales/SalesOrderShipmentDetail.tsx:438 -#: src/tables/sales/SalesOrderShipmentTable.tsx:90 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:292 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:406 +#: src/tables/sales/SalesOrderShipmentTable.tsx:97 msgid "Edit Shipment" msgstr "" -#: src/pages/sales/SalesOrderShipmentDetail.tsx:301 -#: src/pages/sales/SalesOrderShipmentDetail.tsx:457 -#: src/tables/sales/SalesOrderShipmentTable.tsx:82 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:299 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:425 +#: src/tables/sales/SalesOrderShipmentTable.tsx:89 msgid "Cancel Shipment" msgstr "" -#: src/pages/sales/SalesOrderShipmentDetail.tsx:314 -#: src/tables/sales/SalesOrderShipmentTable.tsx:98 -#: src/tables/sales/SalesOrderShipmentTable.tsx:193 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:312 +#: src/tables/sales/SalesOrderShipmentTable.tsx:119 +#: src/tables/sales/SalesOrderShipmentTable.tsx:238 msgid "Complete Shipment" msgstr "" -#: src/pages/sales/SalesOrderShipmentDetail.tsx:326 -#: src/pages/sales/SalesOrderShipmentDetail.tsx:328 -msgid "Check Shipment" -msgstr "" - -#: src/pages/sales/SalesOrderShipmentDetail.tsx:329 -msgid "Marking the shipment as checked indicates that you have verified that all items included in this shipment are correct" -msgstr "" - #: src/pages/sales/SalesOrderShipmentDetail.tsx:339 -msgid "Shipment marked as checked" -msgstr "" - -#: src/pages/sales/SalesOrderShipmentDetail.tsx:346 -#: src/pages/sales/SalesOrderShipmentDetail.tsx:348 -msgid "Uncheck Shipment" -msgstr "" - -#: src/pages/sales/SalesOrderShipmentDetail.tsx:349 -msgid "Marking the shipment as unchecked indicates that the shipment requires further verification" -msgstr "" - -#: src/pages/sales/SalesOrderShipmentDetail.tsx:359 -msgid "Shipment marked as unchecked" -msgstr "" - -#: src/pages/sales/SalesOrderShipmentDetail.tsx:371 #: src/tables/part/PartPurchaseOrdersTable.tsx:122 msgid "Pending" msgstr "" -#: src/pages/sales/SalesOrderShipmentDetail.tsx:377 -#: src/tables/sales/SalesOrderShipmentTable.tsx:147 -#: src/tables/sales/SalesOrderShipmentTable.tsx:254 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:345 +#: src/tables/sales/SalesOrderShipmentTable.tsx:168 +#: src/tables/sales/SalesOrderShipmentTable.tsx:299 msgid "Checked" msgstr "" -#: src/pages/sales/SalesOrderShipmentDetail.tsx:383 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:351 msgid "Not Checked" msgstr "" -#: src/pages/sales/SalesOrderShipmentDetail.tsx:389 -#: src/tables/sales/SalesOrderShipmentTable.tsx:154 -#: src/tables/sales/SalesOrderShipmentTable.tsx:259 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:357 +#: src/tables/sales/SalesOrderShipmentTable.tsx:175 +#: src/tables/sales/SalesOrderShipmentTable.tsx:304 msgid "Shipped" msgstr "" -#: src/pages/sales/SalesOrderShipmentDetail.tsx:395 -#: src/tables/sales/SalesOrderShipmentTable.tsx:161 -#: src/tables/sales/SalesOrderShipmentTable.tsx:264 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:363 +#: src/tables/sales/SalesOrderShipmentTable.tsx:182 +#: src/tables/sales/SalesOrderShipmentTable.tsx:309 #: src/tables/settings/EmailTable.tsx:31 msgid "Delivered" msgstr "" -#: src/pages/sales/SalesOrderShipmentDetail.tsx:410 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:378 msgid "Send Shipment" msgstr "" -#: src/pages/sales/SalesOrderShipmentDetail.tsx:433 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:401 msgid "Shipment Actions" msgstr "" -#: src/pages/sales/SalesOrderShipmentDetail.tsx:442 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:410 msgid "Check" msgstr "" -#: src/pages/sales/SalesOrderShipmentDetail.tsx:443 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:411 msgid "Mark shipment as checked" msgstr "" -#: src/pages/sales/SalesOrderShipmentDetail.tsx:449 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:417 msgid "Uncheck" msgstr "" -#: src/pages/sales/SalesOrderShipmentDetail.tsx:450 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:418 msgid "Mark shipment as unchecked" msgstr "" @@ -8775,13 +8847,6 @@ msgstr "" msgid "Part is not active" msgstr "" -#: src/tables/ColumnRenderers.tsx:73 -#: src/tables/bom/BomTable.tsx:657 -#: src/tables/part/PartParameterTable.tsx:227 -#: src/tables/part/PartTestTemplateTable.tsx:258 -msgid "Part is Locked" -msgstr "" - #: src/tables/ColumnRenderers.tsx:78 msgid "You are subscribed to notifications for this part" msgstr "" @@ -9219,13 +9284,13 @@ msgstr "" #~ msgstr "Show asssmbled items" #: src/tables/bom/BomTable.tsx:315 -#: src/tables/build/BuildLineTable.tsx:276 +#: src/tables/build/BuildLineTable.tsx:277 #: src/tables/part/PartTable.tsx:145 msgid "External stock" msgstr "" #: src/tables/bom/BomTable.tsx:323 -#: src/tables/build/BuildLineTable.tsx:239 +#: src/tables/build/BuildLineTable.tsx:240 msgid "Includes substitute stock" msgstr "" @@ -9234,7 +9299,7 @@ msgstr "" #~ msgstr "Edit Bom Item" #: src/tables/bom/BomTable.tsx:332 -#: src/tables/build/BuildLineTable.tsx:249 +#: src/tables/build/BuildLineTable.tsx:250 #: src/tables/sales/SalesOrderLineItemTable.tsx:166 msgid "Includes variant stock" msgstr "" @@ -9272,8 +9337,8 @@ msgid "Stock Information" msgstr "" #: src/tables/bom/BomTable.tsx:399 -#: src/tables/build/BuildLineTable.tsx:496 -#: src/tables/build/BuildLineTable.tsx:537 +#: src/tables/build/BuildLineTable.tsx:497 +#: src/tables/build/BuildLineTable.tsx:538 msgid "Consumable item" msgstr "" @@ -9282,7 +9347,7 @@ msgid "No available stock" msgstr "" #: src/tables/bom/BomTable.tsx:420 -#: src/tables/build/BuildLineTable.tsx:213 +#: src/tables/build/BuildLineTable.tsx:214 msgid "Show testable items" msgstr "" @@ -9291,7 +9356,7 @@ msgid "Show trackable items" msgstr "" #: src/tables/bom/BomTable.tsx:430 -#: src/tables/build/BuildLineTable.tsx:208 +#: src/tables/build/BuildLineTable.tsx:209 msgid "Show assembled items" msgstr "" @@ -9335,7 +9400,7 @@ msgstr "" #: src/tables/bom/BomTable.tsx:464 #: src/tables/bom/UsedInTable.tsx:85 -#: src/tables/build/BuildLineTable.tsx:202 +#: src/tables/build/BuildLineTable.tsx:203 msgid "Optional" msgstr "" @@ -9345,7 +9410,7 @@ msgid "Show optional items" msgstr "" #: src/tables/bom/BomTable.tsx:469 -#: src/tables/build/BuildLineTable.tsx:197 +#: src/tables/build/BuildLineTable.tsx:198 msgid "Consumable" msgstr "" @@ -9420,6 +9485,7 @@ msgid "Add a single BOM item" msgstr "" #: src/tables/bom/BomTable.tsx:637 +#: src/tables/general/ParameterTable.tsx:206 #: src/tables/part/PartTable.tsx:546 msgid "Import from File" msgstr "" @@ -9433,8 +9499,8 @@ msgid "Bill of materials cannot be edited, as the part is locked" msgstr "" #: src/tables/bom/UsedInTable.tsx:34 -#: src/tables/build/BuildLineTable.tsx:207 -#: src/tables/part/ParametricPartTable.tsx:364 +#: src/tables/build/BuildLineTable.tsx:208 +#: src/tables/part/ParametricPartTable.tsx:29 #: src/tables/part/PartBuildAllocationsTable.tsx:60 #: src/tables/part/PartTable.tsx:209 #: src/tables/stock/StockItemTable.tsx:333 @@ -9455,11 +9521,11 @@ msgstr "" msgid "Show trackable assemblies" msgstr "" -#: src/tables/build/BuildAllocatedStockTable.tsx:67 +#: src/tables/build/BuildAllocatedStockTable.tsx:64 msgid "Allocated to Output" msgstr "" -#: src/tables/build/BuildAllocatedStockTable.tsx:68 +#: src/tables/build/BuildAllocatedStockTable.tsx:65 msgid "Show items allocated to a build output" msgstr "" @@ -9472,50 +9538,68 @@ msgstr "" #~ msgid "Include orders for part variants" #~ msgstr "Include orders for part variants" -#: src/tables/build/BuildAllocatedStockTable.tsx:97 +#: src/tables/build/BuildAllocatedStockTable.tsx:94 #: src/tables/part/PartBuildAllocationsTable.tsx:84 #: src/tables/part/PartPurchaseOrdersTable.tsx:132 #: src/tables/part/PartSalesAllocationsTable.tsx:69 #: src/tables/sales/SalesOrderAllocationTable.tsx:122 -#: src/tables/sales/SalesOrderShipmentTable.tsx:130 +#: src/tables/sales/SalesOrderShipmentTable.tsx:151 msgid "Order Status" msgstr "" +#: src/tables/build/BuildAllocatedStockTable.tsx:164 +#: src/tables/build/BuildLineTable.tsx:651 +msgid "Edit Stock Allocation" +msgstr "" + #: src/tables/build/BuildAllocatedStockTable.tsx:164 #~ msgid "Edit Build Item" #~ msgstr "Edit Build Item" -#: src/tables/build/BuildAllocatedStockTable.tsx:167 -#: src/tables/build/BuildLineTable.tsx:650 -msgid "Edit Stock Allocation" -msgstr "" - #: src/tables/build/BuildAllocatedStockTable.tsx:174 #~ msgid "Delete Build Item" #~ msgstr "Delete Build Item" -#: src/tables/build/BuildAllocatedStockTable.tsx:180 -#: src/tables/build/BuildLineTable.tsx:663 -msgid "Delete Stock Allocation" +#: src/tables/build/BuildAllocatedStockTable.tsx:177 +#: src/tables/build/BuildLineTable.tsx:664 +#: src/tables/sales/SalesOrderAllocationTable.tsx:218 +msgid "Remove Allocated Stock" msgstr "" -#: src/tables/build/BuildAllocatedStockTable.tsx:239 +#: src/tables/build/BuildAllocatedStockTable.tsx:180 +#: src/tables/build/BuildLineTable.tsx:663 +#~ msgid "Delete Stock Allocation" +#~ msgstr "Delete Stock Allocation" + +#: src/tables/build/BuildAllocatedStockTable.tsx:182 +#: src/tables/build/BuildLineTable.tsx:669 +#: src/tables/sales/SalesOrderAllocationTable.tsx:221 +msgid "Are you sure you want to remove this allocated stock from the order?" +msgstr "" + +#: src/tables/build/BuildAllocatedStockTable.tsx:242 msgid "Consume" msgstr "" +#: src/tables/build/BuildAllocatedStockTable.tsx:259 +#: src/tables/build/BuildLineTable.tsx:112 +#: src/tables/sales/SalesOrderAllocationTable.tsx:248 +msgid "Remove allocated stock" +msgstr "" + #: src/tables/build/BuildLineTable.tsx:59 #~ msgid "Show lines with available stock" #~ msgstr "Show lines with available stock" -#: src/tables/build/BuildLineTable.tsx:120 +#: src/tables/build/BuildLineTable.tsx:121 msgid "View Stock Item" msgstr "" -#: src/tables/build/BuildLineTable.tsx:183 +#: src/tables/build/BuildLineTable.tsx:184 msgid "Show fully allocated lines" msgstr "" -#: src/tables/build/BuildLineTable.tsx:188 +#: src/tables/build/BuildLineTable.tsx:189 msgid "Show fully consumed lines" msgstr "" @@ -9523,124 +9607,124 @@ msgstr "" #~ msgid "Show allocated lines" #~ msgstr "Show allocated lines" -#: src/tables/build/BuildLineTable.tsx:193 +#: src/tables/build/BuildLineTable.tsx:194 msgid "Show items with sufficient available stock" msgstr "" -#: src/tables/build/BuildLineTable.tsx:198 +#: src/tables/build/BuildLineTable.tsx:199 msgid "Show consumable lines" msgstr "" -#: src/tables/build/BuildLineTable.tsx:203 +#: src/tables/build/BuildLineTable.tsx:204 msgid "Show optional lines" msgstr "" -#: src/tables/build/BuildLineTable.tsx:212 +#: src/tables/build/BuildLineTable.tsx:213 #: src/tables/part/PartTable.tsx:233 msgid "Testable" msgstr "" -#: src/tables/build/BuildLineTable.tsx:217 +#: src/tables/build/BuildLineTable.tsx:218 #: src/tables/stock/StockItemTable.tsx:388 msgid "Tracked" msgstr "" -#: src/tables/build/BuildLineTable.tsx:218 +#: src/tables/build/BuildLineTable.tsx:219 msgid "Show tracked lines" msgstr "" -#: src/tables/build/BuildLineTable.tsx:223 +#: src/tables/build/BuildLineTable.tsx:224 msgid "Show items with stock on order" msgstr "" -#: src/tables/build/BuildLineTable.tsx:258 +#: src/tables/build/BuildLineTable.tsx:259 #: src/tables/sales/SalesOrderLineItemTable.tsx:172 msgid "In production" msgstr "" -#: src/tables/build/BuildLineTable.tsx:286 +#: src/tables/build/BuildLineTable.tsx:287 msgid "Insufficient stock" msgstr "" -#: src/tables/build/BuildLineTable.tsx:302 +#: src/tables/build/BuildLineTable.tsx:303 #: src/tables/sales/SalesOrderLineItemTable.tsx:160 #: src/tables/stock/StockItemTable.tsx:191 msgid "No stock available" msgstr "" -#: src/tables/build/BuildLineTable.tsx:375 +#: src/tables/build/BuildLineTable.tsx:376 msgid "Gets Inherited" msgstr "" -#: src/tables/build/BuildLineTable.tsx:388 +#: src/tables/build/BuildLineTable.tsx:389 msgid "Unit Quantity" msgstr "" -#: src/tables/build/BuildLineTable.tsx:415 +#: src/tables/build/BuildLineTable.tsx:416 msgid "Setup Quantity" msgstr "" -#: src/tables/build/BuildLineTable.tsx:424 +#: src/tables/build/BuildLineTable.tsx:425 msgid "Attrition" msgstr "" -#: src/tables/build/BuildLineTable.tsx:432 +#: src/tables/build/BuildLineTable.tsx:433 msgid "Rounding Multiple" msgstr "" -#: src/tables/build/BuildLineTable.tsx:441 +#: src/tables/build/BuildLineTable.tsx:442 msgid "BOM Information" msgstr "" -#: src/tables/build/BuildLineTable.tsx:515 +#: src/tables/build/BuildLineTable.tsx:516 #: src/tables/part/PartBuildAllocationsTable.tsx:102 msgid "Fully allocated" msgstr "" -#: src/tables/build/BuildLineTable.tsx:563 +#: src/tables/build/BuildLineTable.tsx:564 #: src/tables/sales/SalesOrderLineItemTable.tsx:311 msgid "Create Build Order" msgstr "" -#: src/tables/build/BuildLineTable.tsx:592 +#: src/tables/build/BuildLineTable.tsx:593 msgid "Auto allocation in progress" msgstr "" -#: src/tables/build/BuildLineTable.tsx:595 -#: src/tables/build/BuildLineTable.tsx:802 +#: src/tables/build/BuildLineTable.tsx:596 +#: src/tables/build/BuildLineTable.tsx:809 msgid "Auto Allocate Stock" msgstr "" -#: src/tables/build/BuildLineTable.tsx:596 +#: src/tables/build/BuildLineTable.tsx:597 msgid "Automatically allocate stock to this build according to the selected options" msgstr "" -#: src/tables/build/BuildLineTable.tsx:616 -#: src/tables/build/BuildLineTable.tsx:630 -#: src/tables/build/BuildLineTable.tsx:751 -#: src/tables/build/BuildLineTable.tsx:852 +#: src/tables/build/BuildLineTable.tsx:617 +#: src/tables/build/BuildLineTable.tsx:631 +#: src/tables/build/BuildLineTable.tsx:758 +#: src/tables/build/BuildLineTable.tsx:859 #: src/tables/build/BuildOutputTable.tsx:355 #: src/tables/build/BuildOutputTable.tsx:360 msgid "Deallocate Stock" msgstr "" -#: src/tables/build/BuildLineTable.tsx:632 +#: src/tables/build/BuildLineTable.tsx:633 msgid "Deallocate all untracked stock for this build order" msgstr "" -#: src/tables/build/BuildLineTable.tsx:634 +#: src/tables/build/BuildLineTable.tsx:635 msgid "Deallocate stock from the selected line item" msgstr "" -#: src/tables/build/BuildLineTable.tsx:638 +#: src/tables/build/BuildLineTable.tsx:639 msgid "Stock has been deallocated" msgstr "" -#: src/tables/build/BuildLineTable.tsx:771 +#: src/tables/build/BuildLineTable.tsx:778 msgid "Build Stock" msgstr "" -#: src/tables/build/BuildLineTable.tsx:784 +#: src/tables/build/BuildLineTable.tsx:791 #: src/tables/sales/SalesOrderLineItemTable.tsx:487 msgid "View Part" msgstr "" @@ -9739,7 +9823,7 @@ msgid "Serialize Build Output" msgstr "" #: src/tables/build/BuildOutputTable.tsx:405 -#: src/tables/part/PartTestResultTable.tsx:310 +#: src/tables/part/PartTestResultTable.tsx:318 #: src/tables/stock/StockItemTable.tsx:328 msgid "Filter by stock status" msgstr "" @@ -9964,8 +10048,8 @@ msgid "View Item" msgstr "" #: src/tables/general/ExtraLineItemTable.tsx:95 -#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:299 -#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:403 +#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:300 +#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:405 #: src/tables/sales/ReturnOrderLineItemTable.tsx:83 #: src/tables/sales/ReturnOrderLineItemTable.tsx:187 #: src/tables/sales/SalesOrderLineItemTable.tsx:252 @@ -9974,14 +10058,14 @@ msgid "Add Line Item" msgstr "" #: src/tables/general/ExtraLineItemTable.tsx:108 -#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:320 +#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:322 #: src/tables/sales/ReturnOrderLineItemTable.tsx:96 #: src/tables/sales/SalesOrderLineItemTable.tsx:271 msgid "Edit Line Item" msgstr "" #: src/tables/general/ExtraLineItemTable.tsx:117 -#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:329 +#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:331 #: src/tables/sales/ReturnOrderLineItemTable.tsx:105 #: src/tables/sales/SalesOrderLineItemTable.tsx:280 msgid "Delete Line Item" @@ -9991,6 +10075,137 @@ msgstr "" msgid "Add Extra Line Item" msgstr "" +#: src/tables/general/ParameterTable.tsx:88 +msgid "Internal Units" +msgstr "" + +#: src/tables/general/ParameterTable.tsx:108 +#: src/tables/general/ParameterTable.tsx:123 +msgid "Updated By" +msgstr "" + +#: src/tables/general/ParameterTable.tsx:118 +msgid "Show parameters for enabled templates" +msgstr "" + +#: src/tables/general/ParameterTable.tsx:124 +msgid "Filter by user who last updated the parameter" +msgstr "" + +#: src/tables/general/ParameterTable.tsx:154 +msgid "Import Parameters" +msgstr "" + +#: src/tables/general/ParameterTable.tsx:164 +#: src/tables/general/ParametricDataTable.tsx:261 +#: src/tables/general/ParametricDataTable.tsx:392 +msgid "Add Parameter" +msgstr "" + +#: src/tables/general/ParameterTable.tsx:175 +#: src/tables/general/ParameterTable.tsx:222 +#: src/tables/general/ParametricDataTable.tsx:285 +msgid "Edit Parameter" +msgstr "" + +#: src/tables/general/ParameterTable.tsx:183 +#: src/tables/general/ParameterTable.tsx:230 +msgid "Delete Parameter" +msgstr "" + +#: src/tables/general/ParameterTable.tsx:191 +msgid "Add Parameters" +msgstr "" + +#: src/tables/general/ParameterTable.tsx:197 +msgid "Create Parameter" +msgstr "" + +#: src/tables/general/ParameterTable.tsx:199 +msgid "Create a new parameter" +msgstr "" + +#: src/tables/general/ParameterTable.tsx:208 +msgid "Import parameters from a file" +msgstr "" + +#: src/tables/general/ParameterTemplateTable.tsx:48 +#: src/tables/general/ParameterTemplateTable.tsx:197 +msgid "Add Parameter Template" +msgstr "" + +#: src/tables/general/ParameterTemplateTable.tsx:64 +msgid "Duplicate Parameter Template" +msgstr "" + +#: src/tables/general/ParameterTemplateTable.tsx:78 +msgid "Delete Parameter Template" +msgstr "" + +#: src/tables/general/ParameterTemplateTable.tsx:85 +msgid "Edit Parameter Template" +msgstr "" + +#: src/tables/general/ParameterTemplateTable.tsx:138 +msgid "Checkbox" +msgstr "" + +#: src/tables/general/ParameterTemplateTable.tsx:139 +msgid "Show checkbox templates" +msgstr "" + +#: src/tables/general/ParameterTemplateTable.tsx:143 +msgid "Has choices" +msgstr "" + +#: src/tables/general/ParameterTemplateTable.tsx:144 +msgid "Show templates with choices" +msgstr "" + +#: src/tables/general/ParameterTemplateTable.tsx:148 +#: src/tables/part/PartTable.tsx:245 +msgid "Has Units" +msgstr "" + +#: src/tables/general/ParameterTemplateTable.tsx:149 +msgid "Show templates with units" +msgstr "" + +#: src/tables/general/ParameterTemplateTable.tsx:154 +msgid "Show enabled templates" +msgstr "" + +#: src/tables/general/ParameterTemplateTable.tsx:158 +#: src/tables/settings/ImportSessionTable.tsx:111 +#: src/tables/settings/TemplateTable.tsx:368 +msgid "Model Type" +msgstr "" + +#: src/tables/general/ParameterTemplateTable.tsx:159 +msgid "Filter by model type" +msgstr "" + +#: src/tables/general/ParametricDataTable.tsx:79 +msgid "Click to edit" +msgstr "" + +#: src/tables/general/ParametricDataTableFilters.tsx:36 +msgid "True" +msgstr "" + +#: src/tables/general/ParametricDataTableFilters.tsx:37 +msgid "False" +msgstr "" + +#: src/tables/general/ParametricDataTableFilters.tsx:47 +#: src/tables/general/ParametricDataTableFilters.tsx:80 +msgid "Select a choice" +msgstr "" + +#: src/tables/general/ParametricDataTableFilters.tsx:100 +msgid "Enter a value" +msgstr "" + #: src/tables/machine/MachineListTable.tsx:133 msgid "Machine restarted" msgstr "" @@ -10071,7 +10286,7 @@ msgid "Initialized" msgstr "" #: src/tables/machine/MachineListTable.tsx:410 -#: src/tables/machine/MachineTypeTable.tsx:307 +#: src/tables/machine/MachineTypeTable.tsx:305 msgid "No errors reported" msgstr "" @@ -10132,15 +10347,15 @@ msgstr "" #~ msgid "Machine type information" #~ msgstr "Machine type information" -#: src/tables/machine/MachineTypeTable.tsx:128 +#: src/tables/machine/MachineTypeTable.tsx:126 msgid "Not Found" msgstr "" -#: src/tables/machine/MachineTypeTable.tsx:131 +#: src/tables/machine/MachineTypeTable.tsx:129 msgid "Machine type not found." msgstr "" -#: src/tables/machine/MachineTypeTable.tsx:141 +#: src/tables/machine/MachineTypeTable.tsx:139 msgid "Machine Type Information" msgstr "" @@ -10148,34 +10363,34 @@ msgstr "" #~ msgid "Available drivers" #~ msgstr "Available drivers" -#: src/tables/machine/MachineTypeTable.tsx:156 -#: src/tables/machine/MachineTypeTable.tsx:255 +#: src/tables/machine/MachineTypeTable.tsx:154 +#: src/tables/machine/MachineTypeTable.tsx:253 msgid "Slug" msgstr "" -#: src/tables/machine/MachineTypeTable.tsx:167 -#: src/tables/machine/MachineTypeTable.tsx:276 +#: src/tables/machine/MachineTypeTable.tsx:165 +#: src/tables/machine/MachineTypeTable.tsx:274 msgid "Provider plugin" msgstr "" -#: src/tables/machine/MachineTypeTable.tsx:179 -#: src/tables/machine/MachineTypeTable.tsx:288 +#: src/tables/machine/MachineTypeTable.tsx:177 +#: src/tables/machine/MachineTypeTable.tsx:286 msgid "Provider file" msgstr "" -#: src/tables/machine/MachineTypeTable.tsx:194 +#: src/tables/machine/MachineTypeTable.tsx:192 msgid "Available Drivers" msgstr "" -#: src/tables/machine/MachineTypeTable.tsx:234 +#: src/tables/machine/MachineTypeTable.tsx:232 msgid "Machine driver not found." msgstr "" -#: src/tables/machine/MachineTypeTable.tsx:242 +#: src/tables/machine/MachineTypeTable.tsx:240 msgid "Machine driver information" msgstr "" -#: src/tables/machine/MachineTypeTable.tsx:262 +#: src/tables/machine/MachineTypeTable.tsx:260 msgid "Machine type" msgstr "" @@ -10187,15 +10402,15 @@ msgstr "" #~ msgid "Machine driver detail" #~ msgstr "Machine driver detail" -#: src/tables/machine/MachineTypeTable.tsx:362 +#: src/tables/machine/MachineTypeTable.tsx:360 msgid "Builtin type" msgstr "" -#: src/tables/machine/MachineTypeTable.tsx:371 +#: src/tables/machine/MachineTypeTable.tsx:369 msgid "Machine Type Detail" msgstr "" -#: src/tables/machine/MachineTypeTable.tsx:381 +#: src/tables/machine/MachineTypeTable.tsx:379 msgid "Machine Driver Detail" msgstr "" @@ -10213,8 +10428,16 @@ msgstr "" msgid "Message" msgstr "" -#: src/tables/part/ParametricPartTable.tsx:78 -msgid "Click to edit" +#: src/tables/part/ParametricPartTable.tsx:20 +msgid "Show active parts" +msgstr "" + +#: src/tables/part/ParametricPartTable.tsx:25 +msgid "Show locked parts" +msgstr "" + +#: src/tables/part/ParametricPartTable.tsx:30 +msgid "Show assembly parts" msgstr "" #: src/tables/part/ParametricPartTable.tsx:82 @@ -10222,43 +10445,14 @@ msgstr "" #~ msgstr "Edit parameter" #: src/tables/part/ParametricPartTable.tsx:244 -msgid "Add Part Parameter" -msgstr "" +#~ msgid "Add Part Parameter" +#~ msgstr "Add Part Parameter" #: src/tables/part/ParametricPartTable.tsx:258 #: src/tables/part/PartParameterTable.tsx:164 #: src/tables/part/PartParameterTable.tsx:187 -msgid "Edit Part Parameter" -msgstr "" - -#: src/tables/part/ParametricPartTable.tsx:355 -msgid "Show active parts" -msgstr "" - -#: src/tables/part/ParametricPartTable.tsx:360 -msgid "Show locked parts" -msgstr "" - -#: src/tables/part/ParametricPartTable.tsx:365 -msgid "Show assembly parts" -msgstr "" - -#: src/tables/part/ParametricPartTableFilters.tsx:36 -msgid "True" -msgstr "" - -#: src/tables/part/ParametricPartTableFilters.tsx:37 -msgid "False" -msgstr "" - -#: src/tables/part/ParametricPartTableFilters.tsx:47 -#: src/tables/part/ParametricPartTableFilters.tsx:80 -msgid "Select a choice" -msgstr "" - -#: src/tables/part/ParametricPartTableFilters.tsx:100 -msgid "Enter a value" -msgstr "" +#~ msgid "Edit Part Parameter" +#~ msgstr "Edit Part Parameter" #: src/tables/part/PartBuildAllocationsTable.tsx:64 msgid "Assembly IPN" @@ -10273,7 +10467,7 @@ msgid "Required Stock" msgstr "" #: src/tables/part/PartBuildAllocationsTable.tsx:124 -#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:381 +#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:383 msgid "View Build Order" msgstr "" @@ -10332,85 +10526,22 @@ msgstr "" msgid "Delete Category Parameter" msgstr "" -#: src/tables/part/PartCategoryTemplateTable.tsx:87 -msgid "Parameter Template" -msgstr "" - #: src/tables/part/PartCategoryTemplateTable.tsx:93 #~ msgid "[{0}]" #~ msgstr "[{0}]" -#: src/tables/part/PartParameterTable.tsx:108 -msgid "Internal Units" -msgstr "" - -#: src/tables/part/PartParameterTable.tsx:128 -#: src/tables/part/PartParameterTable.tsx:138 -msgid "Updated By" -msgstr "" - -#: src/tables/part/PartParameterTable.tsx:139 -msgid "Filter by user who last updated the parameter" -msgstr "" - #: src/tables/part/PartParameterTable.tsx:148 -msgid "New Part Parameter" -msgstr "" +#~ msgid "New Part Parameter" +#~ msgstr "New Part Parameter" #: src/tables/part/PartParameterTable.tsx:173 #: src/tables/part/PartParameterTable.tsx:195 -msgid "Delete Part Parameter" -msgstr "" +#~ msgid "Delete Part Parameter" +#~ msgstr "Delete Part Parameter" #: src/tables/part/PartParameterTable.tsx:213 -msgid "Add parameter" -msgstr "" - -#: src/tables/part/PartParameterTable.tsx:232 -msgid "Part parameters cannot be edited, as the part is locked" -msgstr "" - -#: src/tables/part/PartParameterTemplateTable.tsx:36 -msgid "Checkbox" -msgstr "" - -#: src/tables/part/PartParameterTemplateTable.tsx:37 -msgid "Show checkbox templates" -msgstr "" - -#: src/tables/part/PartParameterTemplateTable.tsx:41 -msgid "Has choices" -msgstr "" - -#: src/tables/part/PartParameterTemplateTable.tsx:42 -msgid "Show templates with choices" -msgstr "" - -#: src/tables/part/PartParameterTemplateTable.tsx:46 -#: src/tables/part/PartTable.tsx:245 -msgid "Has Units" -msgstr "" - -#: src/tables/part/PartParameterTemplateTable.tsx:47 -msgid "Show templates with units" -msgstr "" - -#: src/tables/part/PartParameterTemplateTable.tsx:91 -#: src/tables/part/PartParameterTemplateTable.tsx:166 -msgid "Add Parameter Template" -msgstr "" - -#: src/tables/part/PartParameterTemplateTable.tsx:105 -msgid "Duplicate Parameter Template" -msgstr "" - -#: src/tables/part/PartParameterTemplateTable.tsx:117 -msgid "Edit Parameter Template" -msgstr "" - -#: src/tables/part/PartParameterTemplateTable.tsx:128 -msgid "Delete Parameter Template" -msgstr "" +#~ msgid "Add parameter" +#~ msgstr "Add parameter" #: src/tables/part/PartParameterTemplateTable.tsx:141 #~ msgid "Add parameter template" @@ -10430,7 +10561,7 @@ msgid "Show received items" msgstr "" #: src/tables/part/PartSalesAllocationsTable.tsx:90 -#: src/tables/sales/SalesOrderShipmentTable.tsx:218 +#: src/tables/sales/SalesOrderShipmentTable.tsx:263 msgid "View Sales Order" msgstr "" @@ -10617,8 +10748,8 @@ msgstr "" #: src/tables/part/PartTestResultTable.tsx:103 #: src/tables/part/PartTestResultTable.tsx:181 -#: src/tables/part/PartTestResultTable.tsx:320 -#: src/tables/part/PartTestResultTable.tsx:334 +#: src/tables/part/PartTestResultTable.tsx:328 +#: src/tables/part/PartTestResultTable.tsx:342 #: src/tables/stock/StockItemTestResultTable.tsx:296 #: src/tables/stock/StockItemTestResultTable.tsx:368 #: src/tables/stock/StockItemTestResultTable.tsx:429 @@ -10643,7 +10774,7 @@ msgstr "" msgid "No Result" msgstr "" -#: src/tables/part/PartTestResultTable.tsx:298 +#: src/tables/part/PartTestResultTable.tsx:306 msgid "Show build outputs currently in production" msgstr "" @@ -11013,36 +11144,45 @@ msgstr "" #~ msgid "Parameter updated" #~ msgstr "Parameter updated" -#: src/tables/purchasing/ManufacturerPartParameterTable.tsx:63 -#: src/tables/purchasing/ManufacturerPartParameterTable.tsx:112 -msgid "Add Parameter" -msgstr "" - #: src/tables/purchasing/ManufacturerPartParameterTable.tsx:73 #~ msgid "Parameter deleted" #~ msgstr "Parameter deleted" -#: src/tables/purchasing/ManufacturerPartParameterTable.tsx:74 -msgid "Edit Parameter" -msgstr "" - #: src/tables/purchasing/ManufacturerPartParameterTable.tsx:74 #~ msgid "Are you sure you want to delete this parameter?" #~ msgstr "Are you sure you want to delete this parameter?" -#: src/tables/purchasing/ManufacturerPartParameterTable.tsx:82 -msgid "Delete Parameter" +#: src/tables/purchasing/ManufacturerPartParametricTable.tsx:34 +#: src/tables/purchasing/ManufacturerPartTable.tsx:82 +#: src/tables/purchasing/SupplierPartTable.tsx:99 +msgid "MPN" +msgstr "" + +#: src/tables/purchasing/ManufacturerPartParametricTable.tsx:44 +#: src/tables/purchasing/ManufacturerPartTable.tsx:134 +#: src/tables/purchasing/SupplierPartTable.tsx:220 +msgid "Active Part" +msgstr "" + +#: src/tables/purchasing/ManufacturerPartParametricTable.tsx:45 +#: src/tables/purchasing/ManufacturerPartTable.tsx:135 +msgid "Show manufacturer parts for active internal parts." +msgstr "" + +#: src/tables/purchasing/ManufacturerPartParametricTable.tsx:50 +#: src/tables/purchasing/ManufacturerPartTable.tsx:140 +msgid "Active Manufacturer" +msgstr "" + +#: src/tables/purchasing/ManufacturerPartParametricTable.tsx:51 +#: src/tables/purchasing/ManufacturerPartTable.tsx:142 +msgid "Show manufacturer parts for active manufacturers." msgstr "" #: src/tables/purchasing/ManufacturerPartTable.tsx:63 #~ msgid "Create Manufacturer Part" #~ msgstr "Create Manufacturer Part" -#: src/tables/purchasing/ManufacturerPartTable.tsx:82 -#: src/tables/purchasing/SupplierPartTable.tsx:99 -msgid "MPN" -msgstr "" - #: src/tables/purchasing/ManufacturerPartTable.tsx:100 #~ msgid "Manufacturer part updated" #~ msgstr "Manufacturer part updated" @@ -11055,25 +11195,8 @@ msgstr "" #~ msgid "Are you sure you want to remove this manufacturer part?" #~ msgstr "Are you sure you want to remove this manufacturer part?" -#: src/tables/purchasing/ManufacturerPartTable.tsx:134 -#: src/tables/purchasing/SupplierPartTable.tsx:220 -msgid "Active Part" -msgstr "" - -#: src/tables/purchasing/ManufacturerPartTable.tsx:135 -msgid "Show manufacturer parts for active internal parts." -msgstr "" - -#: src/tables/purchasing/ManufacturerPartTable.tsx:140 -msgid "Active Manufacturer" -msgstr "" - -#: src/tables/purchasing/ManufacturerPartTable.tsx:142 -msgid "Show manufacturer parts for active manufacturers." -msgstr "" - #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:115 -#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:397 +#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:399 msgid "Import Line Items" msgstr "" @@ -11099,11 +11222,11 @@ msgstr "" #~ msgid "Add line item" #~ msgstr "Add line item" -#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:350 +#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:352 msgid "Receive line item" msgstr "" -#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:414 +#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:416 msgid "Receive items" msgstr "" @@ -11201,25 +11324,25 @@ msgid "Not shipped" msgstr "" #: src/tables/sales/SalesOrderAllocationTable.tsx:211 -#: src/tables/sales/SalesOrderAllocationTable.tsx:229 +#: src/tables/sales/SalesOrderAllocationTable.tsx:235 msgid "Edit Allocation" msgstr "" #: src/tables/sales/SalesOrderAllocationTable.tsx:218 #: src/tables/sales/SalesOrderAllocationTable.tsx:241 -msgid "Delete Allocation" -msgstr "" +#~ msgid "Delete Allocation" +#~ msgstr "Delete Allocation" -#: src/tables/sales/SalesOrderAllocationTable.tsx:252 -#: src/tables/sales/SalesOrderAllocationTable.tsx:253 +#: src/tables/sales/SalesOrderAllocationTable.tsx:261 +#: src/tables/sales/SalesOrderAllocationTable.tsx:262 msgid "View Shipment" msgstr "" -#: src/tables/sales/SalesOrderAllocationTable.tsx:308 +#: src/tables/sales/SalesOrderAllocationTable.tsx:317 msgid "Assign to Shipment" msgstr "" -#: src/tables/sales/SalesOrderAllocationTable.tsx:324 +#: src/tables/sales/SalesOrderAllocationTable.tsx:333 msgid "Assign to shipment" msgstr "" @@ -11259,35 +11382,35 @@ msgstr "" #~ msgid "Delete Shipment" #~ msgstr "Delete Shipment" -#: src/tables/sales/SalesOrderShipmentTable.tsx:72 +#: src/tables/sales/SalesOrderShipmentTable.tsx:79 msgid "Create Shipment" msgstr "" -#: src/tables/sales/SalesOrderShipmentTable.tsx:143 +#: src/tables/sales/SalesOrderShipmentTable.tsx:164 msgid "Items" msgstr "" -#: src/tables/sales/SalesOrderShipmentTable.tsx:203 +#: src/tables/sales/SalesOrderShipmentTable.tsx:248 msgid "Edit shipment" msgstr "" -#: src/tables/sales/SalesOrderShipmentTable.tsx:211 +#: src/tables/sales/SalesOrderShipmentTable.tsx:256 msgid "Cancel shipment" msgstr "" -#: src/tables/sales/SalesOrderShipmentTable.tsx:241 +#: src/tables/sales/SalesOrderShipmentTable.tsx:286 msgid "Add shipment" msgstr "" -#: src/tables/sales/SalesOrderShipmentTable.tsx:255 +#: src/tables/sales/SalesOrderShipmentTable.tsx:300 msgid "Show shipments which have been checked" msgstr "" -#: src/tables/sales/SalesOrderShipmentTable.tsx:260 +#: src/tables/sales/SalesOrderShipmentTable.tsx:305 msgid "Show shipments which have been shipped" msgstr "" -#: src/tables/sales/SalesOrderShipmentTable.tsx:265 +#: src/tables/sales/SalesOrderShipmentTable.tsx:310 msgid "Show shipments which have been delivered" msgstr "" @@ -11621,11 +11744,6 @@ msgstr "" msgid "Imported Rows" msgstr "" -#: src/tables/settings/ImportSessionTable.tsx:111 -#: src/tables/settings/TemplateTable.tsx:368 -msgid "Model Type" -msgstr "" - #: src/tables/settings/ImportSessionTable.tsx:112 #: src/tables/settings/TemplateTable.tsx:369 msgid "Filter by target model type" diff --git a/src/frontend/src/locales/tr/messages.po b/src/frontend/src/locales/tr/messages.po index fb7f984c8b..5ad159434a 100644 --- a/src/frontend/src/locales/tr/messages.po +++ b/src/frontend/src/locales/tr/messages.po @@ -8,7 +8,7 @@ msgstr "" "Language: tr\n" "Project-Id-Version: inventree\n" "Report-Msgid-Bugs-To: \n" -"PO-Revision-Date: 2025-11-19 19:39\n" +"PO-Revision-Date: 2025-12-07 07:36\n" "Last-Translator: \n" "Language-Team: Turkish\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" @@ -30,7 +30,7 @@ msgid "Edit" msgstr "Düzenle" #: lib/components/RowActions.tsx:56 -#: src/components/forms/ApiForm.tsx:735 +#: src/components/forms/ApiForm.tsx:754 #: src/components/items/ActionDropdown.tsx:257 #: src/components/items/RoleTable.tsx:155 #: src/hooks/UseForm.tsx:164 @@ -56,24 +56,24 @@ msgstr "Vazgeç" #: lib/components/RowActions.tsx:136 #: src/components/nav/NavigationDrawer.tsx:190 -#: src/forms/PurchaseOrderForms.tsx:802 +#: src/forms/PurchaseOrderForms.tsx:854 #: src/forms/StockForms.tsx:796 #: src/forms/StockForms.tsx:843 -#: src/forms/StockForms.tsx:889 -#: src/forms/StockForms.tsx:928 -#: src/forms/StockForms.tsx:964 -#: src/forms/StockForms.tsx:1050 +#: src/forms/StockForms.tsx:896 +#: src/forms/StockForms.tsx:942 +#: src/forms/StockForms.tsx:980 +#: src/forms/StockForms.tsx:1066 #: src/pages/Index/Settings/AccountSettings/MFASettings.tsx:962 msgid "Actions" msgstr "Eylemler" #: lib/components/SearchInput.tsx:34 -#: src/components/forms/fields/RelatedModelField.tsx:408 +#: src/components/forms/fields/RelatedModelField.tsx:479 #: src/components/nav/Header.tsx:169 #: src/components/wizards/ImportPartWizard.tsx:200 #: src/components/wizards/ImportPartWizard.tsx:233 -#: src/pages/Index/Settings/UserSettings.tsx:74 -#: src/pages/part/PartDetail.tsx:1155 +#: src/pages/Index/Settings/UserSettings.tsx:75 +#: src/pages/part/PartDetail.tsx:1176 msgid "Search" msgstr "Ara" @@ -95,7 +95,7 @@ msgstr "Evet" msgid "No" msgstr "Hayır" -#: lib/enums/ModelInformation.tsx:28 +#: lib/enums/ModelInformation.tsx:29 #: src/components/wizards/OrderPartsWizard.tsx:279 #: src/forms/BuildForms.tsx:332 #: src/forms/BuildForms.tsx:407 @@ -103,208 +103,234 @@ msgstr "Hayır" #: src/forms/BuildForms.tsx:630 #: src/forms/BuildForms.tsx:793 #: src/forms/BuildForms.tsx:896 -#: src/forms/PurchaseOrderForms.tsx:798 +#: src/forms/PurchaseOrderForms.tsx:850 #: src/forms/ReturnOrderForms.tsx:242 -#: src/forms/SalesOrderForms.tsx:305 +#: src/forms/SalesOrderForms.tsx:384 #: src/forms/StockForms.tsx:360 #: src/forms/StockForms.tsx:791 #: src/forms/StockForms.tsx:838 -#: src/forms/StockForms.tsx:884 -#: src/forms/StockForms.tsx:923 -#: src/forms/StockForms.tsx:959 -#: src/forms/StockForms.tsx:1002 -#: src/forms/StockForms.tsx:1046 -#: src/forms/StockForms.tsx:1094 -#: src/forms/StockForms.tsx:1138 -#: src/pages/build/BuildDetail.tsx:200 -#: src/pages/part/PartDetail.tsx:1207 +#: src/forms/StockForms.tsx:891 +#: src/forms/StockForms.tsx:937 +#: src/forms/StockForms.tsx:975 +#: src/forms/StockForms.tsx:1018 +#: src/forms/StockForms.tsx:1062 +#: src/forms/StockForms.tsx:1110 +#: src/forms/StockForms.tsx:1154 +#: src/pages/build/BuildDetail.tsx:201 +#: src/pages/part/PartDetail.tsx:1228 #: src/tables/ColumnRenderers.tsx:91 +#: src/tables/part/PartTestResultTable.tsx:247 #: src/tables/part/RelatedPartTable.tsx:53 #: src/tables/stock/StockTrackingTable.tsx:87 msgid "Part" msgstr "Parça" -#: lib/enums/ModelInformation.tsx:29 +#: lib/enums/ModelInformation.tsx:30 #: lib/enums/Roles.tsx:35 #: src/components/nav/NavigationDrawer.tsx:70 #: src/defaults/links.tsx:36 -#: src/pages/Index/Settings/SystemSettings.tsx:190 -#: src/pages/part/CategoryDetail.tsx:132 -#: src/pages/part/CategoryDetail.tsx:277 -#: src/pages/part/CategoryDetail.tsx:323 -#: src/pages/part/CategoryDetail.tsx:354 -#: src/pages/part/PartDetail.tsx:965 +#: src/pages/Index/Settings/SystemSettings.tsx:197 +#: src/pages/part/CategoryDetail.tsx:135 +#: src/pages/part/CategoryDetail.tsx:285 +#: src/pages/part/CategoryDetail.tsx:340 +#: src/pages/part/CategoryDetail.tsx:371 +#: src/pages/part/PartDetail.tsx:978 msgid "Parts" msgstr "Parçalar" #: lib/enums/ModelInformation.tsx:37 #: src/pages/Index/Settings/AdminCenter/PartParameterPanel.tsx:13 -msgid "Part Parameter Template" -msgstr "Parça Parametre Şablonu" +#~ msgid "Part Parameter Template" +#~ msgstr "Part Parameter Template" #: lib/enums/ModelInformation.tsx:38 -msgid "Part Parameter Templates" -msgstr "Parça Parametre Şablonları" +#~ msgid "Part Parameter Templates" +#~ msgstr "Part Parameter Templates" + +#: lib/enums/ModelInformation.tsx:39 +msgid "Parameter" +msgstr "" + +#: lib/enums/ModelInformation.tsx:40 +#: src/components/panels/ParametersPanel.tsx:19 +#: src/components/wizards/ImportPartWizard.tsx:807 +#: src/pages/Index/Settings/AdminCenter/Index.tsx:195 +#: src/pages/Index/Settings/SystemSettings.tsx:191 +#: src/pages/part/PartDetail.tsx:943 +msgid "Parameters" +msgstr "Parametreler" #: lib/enums/ModelInformation.tsx:45 +#: src/tables/part/PartCategoryTemplateTable.tsx:87 +msgid "Parameter Template" +msgstr "Parametre Şablonu" + +#: lib/enums/ModelInformation.tsx:46 +#: src/pages/Index/Settings/AdminCenter/ParameterPanel.tsx:13 +msgid "Parameter Templates" +msgstr "" + +#: lib/enums/ModelInformation.tsx:52 msgid "Part Test Template" msgstr "Parça Test Şablonu" -#: lib/enums/ModelInformation.tsx:46 +#: lib/enums/ModelInformation.tsx:53 msgid "Part Test Templates" msgstr "Parça Test Şablonları" -#: lib/enums/ModelInformation.tsx:52 +#: lib/enums/ModelInformation.tsx:59 #: src/components/wizards/OrderPartsWizard.tsx:290 -#: src/pages/company/SupplierPartDetail.tsx:413 +#: src/pages/company/SupplierPartDetail.tsx:418 #: src/pages/stock/StockDetail.tsx:289 -#: src/tables/build/BuildAllocatedStockTable.tsx:155 +#: src/tables/build/BuildAllocatedStockTable.tsx:152 #: src/tables/part/PartPurchaseOrdersTable.tsx:50 +#: src/tables/purchasing/SupplierPartParametricTable.tsx:29 #: src/tables/purchasing/SupplierPartTable.tsx:83 #: src/tables/stock/StockItemTable.tsx:247 msgid "Supplier Part" msgstr "Sağlayıcı Parçası" -#: lib/enums/ModelInformation.tsx:53 -#: src/pages/purchasing/PurchasingIndex.tsx:92 +#: lib/enums/ModelInformation.tsx:60 +#: src/pages/purchasing/PurchasingIndex.tsx:128 msgid "Supplier Parts" msgstr "Tedarikçi Parçaları" -#: lib/enums/ModelInformation.tsx:61 -#: src/pages/company/ManufacturerPartDetail.tsx:297 -#: src/pages/company/SupplierPartDetail.tsx:161 +#: lib/enums/ModelInformation.tsx:69 +#: src/pages/company/ManufacturerPartDetail.tsx:288 +#: src/pages/company/SupplierPartDetail.tsx:162 #: src/tables/part/PartPurchaseOrdersTable.tsx:56 #: src/tables/stock/StockItemTable.tsx:253 msgid "Manufacturer Part" msgstr "Üretici Parçası" -#: lib/enums/ModelInformation.tsx:62 -#: src/pages/purchasing/PurchasingIndex.tsx:109 +#: lib/enums/ModelInformation.tsx:70 +#: src/pages/purchasing/PurchasingIndex.tsx:177 msgid "Manufacturer Parts" msgstr "Üretici Parçaları" -#: lib/enums/ModelInformation.tsx:70 -#: src/pages/part/CategoryDetail.tsx:354 +#: lib/enums/ModelInformation.tsx:79 +#: src/pages/part/CategoryDetail.tsx:371 #: src/tables/Filter.tsx:389 msgid "Part Category" msgstr "Parça Sınıfı" -#: lib/enums/ModelInformation.tsx:71 +#: lib/enums/ModelInformation.tsx:80 #: lib/enums/Roles.tsx:37 -#: src/pages/part/CategoryDetail.tsx:271 -#: src/pages/part/CategoryDetail.tsx:345 -#: src/pages/part/PartDetail.tsx:1196 +#: src/pages/part/CategoryDetail.tsx:279 +#: src/pages/part/CategoryDetail.tsx:362 +#: src/pages/part/PartDetail.tsx:1217 msgid "Part Categories" msgstr "Parça Kategorileri" -#: lib/enums/ModelInformation.tsx:79 +#: lib/enums/ModelInformation.tsx:88 #: src/forms/BuildForms.tsx:473 #: src/forms/BuildForms.tsx:633 #: src/forms/BuildForms.tsx:794 -#: src/forms/SalesOrderForms.tsx:307 +#: src/forms/SalesOrderForms.tsx:386 #: src/pages/stock/StockDetail.tsx:1005 -#: src/tables/part/PartTestResultTable.tsx:248 +#: src/tables/part/PartTestResultTable.tsx:256 #: src/tables/stock/StockTrackingTable.tsx:48 #: src/tables/stock/StockTrackingTable.tsx:55 msgid "Stock Item" msgstr "Stok Ögesi" -#: lib/enums/ModelInformation.tsx:80 +#: lib/enums/ModelInformation.tsx:89 #: lib/enums/Roles.tsx:45 -#: src/pages/company/CompanyDetail.tsx:210 -#: src/pages/part/CategoryDetail.tsx:291 +#: src/pages/company/CompanyDetail.tsx:211 +#: src/pages/part/CategoryDetail.tsx:314 #: src/pages/part/PartStockHistoryDetail.tsx:101 #: src/pages/stock/LocationDetail.tsx:121 #: src/pages/stock/LocationDetail.tsx:180 msgid "Stock Items" msgstr "Stok Kalemleri" -#: lib/enums/ModelInformation.tsx:88 +#: lib/enums/ModelInformation.tsx:98 #: lib/enums/Roles.tsx:47 #: src/pages/stock/LocationDetail.tsx:420 msgid "Stock Location" msgstr "Stok Konumu" -#: lib/enums/ModelInformation.tsx:89 +#: lib/enums/ModelInformation.tsx:99 #: src/pages/stock/LocationDetail.tsx:174 #: src/pages/stock/LocationDetail.tsx:412 #: src/pages/stock/StockDetail.tsx:996 msgid "Stock Locations" msgstr "Stok Konumları" -#: lib/enums/ModelInformation.tsx:97 +#: lib/enums/ModelInformation.tsx:108 msgid "Stock Location Type" msgstr "Stok Konum Türü" -#: lib/enums/ModelInformation.tsx:98 +#: lib/enums/ModelInformation.tsx:109 msgid "Stock Location Types" msgstr "Stok Konum Türleri" -#: lib/enums/ModelInformation.tsx:103 -#: src/pages/Index/Settings/SystemSettings.tsx:248 -#: src/pages/part/PartDetail.tsx:911 +#: lib/enums/ModelInformation.tsx:114 +#: src/pages/Index/Settings/SystemSettings.tsx:254 +#: src/pages/part/PartDetail.tsx:900 msgid "Stock History" msgstr "Stok Geçmişi" -#: lib/enums/ModelInformation.tsx:104 +#: lib/enums/ModelInformation.tsx:115 msgid "Stock Histories" msgstr "Stok Geçmişleri" -#: lib/enums/ModelInformation.tsx:109 +#: lib/enums/ModelInformation.tsx:120 msgid "Build" msgstr "Yap" -#: lib/enums/ModelInformation.tsx:110 +#: lib/enums/ModelInformation.tsx:121 msgid "Builds" msgstr "Yapılar" -#: lib/enums/ModelInformation.tsx:118 +#: lib/enums/ModelInformation.tsx:130 msgid "Build Line" msgstr "Yapı Satırı" -#: lib/enums/ModelInformation.tsx:119 +#: lib/enums/ModelInformation.tsx:131 msgid "Build Lines" msgstr "Yapı Satırları" -#: lib/enums/ModelInformation.tsx:126 +#: lib/enums/ModelInformation.tsx:138 msgid "Build Item" msgstr "Yapı Ögesi" -#: lib/enums/ModelInformation.tsx:127 +#: lib/enums/ModelInformation.tsx:139 msgid "Build Items" msgstr "Yapı Ögeleri" -#: lib/enums/ModelInformation.tsx:132 -#: src/pages/company/CompanyDetail.tsx:340 +#: lib/enums/ModelInformation.tsx:144 +#: src/pages/company/CompanyDetail.tsx:345 #: src/tables/company/CompanyTable.tsx:47 #: src/tables/company/ContactTable.tsx:67 +#: src/tables/company/ParametricCompanyTable.tsx:18 msgid "Company" msgstr "Şirket" -#: lib/enums/ModelInformation.tsx:133 +#: lib/enums/ModelInformation.tsx:145 msgid "Companies" msgstr "Şirketler" -#: lib/enums/ModelInformation.tsx:140 -#: src/pages/build/BuildDetail.tsx:316 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:253 -#: src/pages/sales/ReturnOrderDetail.tsx:231 -#: src/pages/sales/SalesOrderDetail.tsx:224 +#: lib/enums/ModelInformation.tsx:152 +#: src/pages/build/BuildDetail.tsx:317 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:254 +#: src/pages/sales/ReturnOrderDetail.tsx:232 +#: src/pages/sales/SalesOrderDetail.tsx:225 #: src/tables/ColumnRenderers.tsx:362 #: src/tables/Filter.tsx:286 #: src/tables/TableHoverCard.tsx:101 msgid "Project Code" msgstr "Proje Kodu" -#: lib/enums/ModelInformation.tsx:141 +#: lib/enums/ModelInformation.tsx:153 #: src/pages/Index/Settings/AdminCenter/Index.tsx:172 msgid "Project Codes" msgstr "Proje Kodları" -#: lib/enums/ModelInformation.tsx:147 +#: lib/enums/ModelInformation.tsx:159 #: src/components/wizards/OrderPartsWizard.tsx:338 #: src/pages/part/pricing/PurchaseHistoryPanel.tsx:33 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:550 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:555 #: src/pages/stock/StockDetail.tsx:352 #: src/tables/part/PartPurchaseOrdersTable.tsx:32 #: src/tables/stock/StockItemTable.tsx:239 @@ -312,117 +338,117 @@ msgstr "Proje Kodları" msgid "Purchase Order" msgstr "Satın Alma Siparişi" -#: lib/enums/ModelInformation.tsx:148 +#: lib/enums/ModelInformation.tsx:160 #: lib/enums/Roles.tsx:39 #: src/defaults/actions.tsx:104 -#: src/pages/Index/Settings/SystemSettings.tsx:283 -#: src/pages/company/CompanyDetail.tsx:203 -#: src/pages/company/SupplierPartDetail.tsx:266 -#: src/pages/part/PartDetail.tsx:875 -#: src/pages/purchasing/PurchasingIndex.tsx:60 +#: src/pages/Index/Settings/SystemSettings.tsx:289 +#: src/pages/company/CompanyDetail.tsx:204 +#: src/pages/company/SupplierPartDetail.tsx:267 +#: src/pages/part/PartDetail.tsx:864 +#: src/pages/purchasing/PurchasingIndex.tsx:66 msgid "Purchase Orders" msgstr "Satın Alma Emirleri" -#: lib/enums/ModelInformation.tsx:156 +#: lib/enums/ModelInformation.tsx:169 msgid "Purchase Order Line" msgstr "Satın Alma Sipariş Satırı" -#: lib/enums/ModelInformation.tsx:157 +#: lib/enums/ModelInformation.tsx:170 msgid "Purchase Order Lines" msgstr "Satın Alma Sipariş Satırları" -#: lib/enums/ModelInformation.tsx:162 -#: src/pages/build/BuildDetail.tsx:289 +#: lib/enums/ModelInformation.tsx:175 +#: src/pages/build/BuildDetail.tsx:290 #: src/pages/part/pricing/SaleHistoryPanel.tsx:24 -#: src/pages/sales/SalesOrderDetail.tsx:614 -#: src/pages/sales/SalesOrderShipmentDetail.tsx:105 -#: src/pages/sales/SalesOrderShipmentDetail.tsx:478 +#: src/pages/sales/SalesOrderDetail.tsx:619 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:103 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:446 #: src/pages/stock/StockDetail.tsx:361 #: src/tables/part/PartSalesAllocationsTable.tsx:41 #: src/tables/sales/SalesOrderAllocationTable.tsx:110 -#: src/tables/sales/SalesOrderShipmentTable.tsx:122 +#: src/tables/sales/SalesOrderShipmentTable.tsx:143 #: src/tables/stock/StockTrackingTable.tsx:131 msgid "Sales Order" msgstr "Satış Siparişi" -#: lib/enums/ModelInformation.tsx:163 +#: lib/enums/ModelInformation.tsx:176 #: lib/enums/Roles.tsx:43 #: src/defaults/actions.tsx:114 -#: src/pages/Index/Settings/SystemSettings.tsx:299 -#: src/pages/company/CompanyDetail.tsx:223 -#: src/pages/part/PartDetail.tsx:887 -#: src/pages/sales/SalesIndex.tsx:84 +#: src/pages/Index/Settings/SystemSettings.tsx:305 +#: src/pages/company/CompanyDetail.tsx:224 +#: src/pages/part/PartDetail.tsx:876 +#: src/pages/sales/SalesIndex.tsx:53 msgid "Sales Orders" msgstr "Satış Emirleri" -#: lib/enums/ModelInformation.tsx:171 -#: src/pages/sales/SalesOrderShipmentDetail.tsx:477 +#: lib/enums/ModelInformation.tsx:185 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:445 msgid "Sales Order Shipment" msgstr "Satış Siparişi Gönderisi" -#: lib/enums/ModelInformation.tsx:172 +#: lib/enums/ModelInformation.tsx:186 msgid "Sales Order Shipments" msgstr "Satış Siparişi Gönderileri" -#: lib/enums/ModelInformation.tsx:179 -#: src/pages/sales/ReturnOrderDetail.tsx:549 +#: lib/enums/ModelInformation.tsx:194 +#: src/pages/sales/ReturnOrderDetail.tsx:554 #: src/tables/stock/StockTrackingTable.tsx:142 msgid "Return Order" msgstr "İade Emri" -#: lib/enums/ModelInformation.tsx:180 +#: lib/enums/ModelInformation.tsx:195 #: lib/enums/Roles.tsx:41 #: src/defaults/actions.tsx:125 -#: src/pages/Index/Settings/SystemSettings.tsx:316 -#: src/pages/company/CompanyDetail.tsx:230 -#: src/pages/part/PartDetail.tsx:894 -#: src/pages/sales/SalesIndex.tsx:117 +#: src/pages/Index/Settings/SystemSettings.tsx:322 +#: src/pages/company/CompanyDetail.tsx:231 +#: src/pages/part/PartDetail.tsx:883 +#: src/pages/sales/SalesIndex.tsx:99 msgid "Return Orders" msgstr "İade Emirleri" -#: lib/enums/ModelInformation.tsx:188 +#: lib/enums/ModelInformation.tsx:204 msgid "Return Order Line Item" msgstr "İade Emri Satır Ögesi" -#: lib/enums/ModelInformation.tsx:189 +#: lib/enums/ModelInformation.tsx:205 msgid "Return Order Line Items" msgstr "İade Emri Satır Ögeleri" -#: lib/enums/ModelInformation.tsx:194 +#: lib/enums/ModelInformation.tsx:210 #: src/tables/company/AddressTable.tsx:52 msgid "Address" msgstr "Adres" -#: lib/enums/ModelInformation.tsx:195 -#: src/pages/company/CompanyDetail.tsx:264 +#: lib/enums/ModelInformation.tsx:211 +#: src/pages/company/CompanyDetail.tsx:265 msgid "Addresses" msgstr "Adresler" -#: lib/enums/ModelInformation.tsx:201 +#: lib/enums/ModelInformation.tsx:217 #: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:89 #: src/pages/core/UserDetail.tsx:135 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:229 -#: src/pages/sales/ReturnOrderDetail.tsx:207 -#: src/pages/sales/SalesOrderDetail.tsx:200 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:230 +#: src/pages/sales/ReturnOrderDetail.tsx:208 +#: src/pages/sales/SalesOrderDetail.tsx:201 msgid "Contact" msgstr "Bağlantı" -#: lib/enums/ModelInformation.tsx:202 -#: src/pages/company/CompanyDetail.tsx:258 +#: lib/enums/ModelInformation.tsx:218 +#: src/pages/company/CompanyDetail.tsx:259 #: src/pages/core/CoreIndex.tsx:33 msgid "Contacts" msgstr "Bağlantılar" -#: lib/enums/ModelInformation.tsx:208 +#: lib/enums/ModelInformation.tsx:224 #: src/tables/ColumnRenderers.tsx:444 msgid "Owner" msgstr "Sahip" -#: lib/enums/ModelInformation.tsx:209 +#: lib/enums/ModelInformation.tsx:225 msgid "Owners" msgstr "Sahipler" -#: lib/enums/ModelInformation.tsx:215 +#: lib/enums/ModelInformation.tsx:231 #: src/pages/Auth/ChangePassword.tsx:36 #: src/pages/core/UserDetail.tsx:220 #: src/tables/ColumnRenderers.tsx:395 @@ -437,7 +463,7 @@ msgstr "Sahipler" msgid "User" msgstr "Kullanıcı" -#: lib/enums/ModelInformation.tsx:216 +#: lib/enums/ModelInformation.tsx:232 #: src/components/nav/NavigationDrawer.tsx:105 #: src/pages/Index/Settings/AdminCenter/UserManagementPanel.tsx:15 #: src/pages/core/CoreIndex.tsx:21 @@ -445,12 +471,12 @@ msgstr "Kullanıcı" msgid "Users" msgstr "Kullanıcılar" -#: lib/enums/ModelInformation.tsx:222 +#: lib/enums/ModelInformation.tsx:238 #: src/pages/core/GroupDetail.tsx:78 msgid "Group" msgstr "Grup" -#: lib/enums/ModelInformation.tsx:223 +#: lib/enums/ModelInformation.tsx:239 #: src/components/nav/NavigationDrawer.tsx:111 #: src/pages/Index/Settings/AdminCenter/UserManagementPanel.tsx:23 #: src/pages/core/CoreIndex.tsx:27 @@ -460,64 +486,64 @@ msgstr "Grup" msgid "Groups" msgstr "Gruplar" -#: lib/enums/ModelInformation.tsx:230 +#: lib/enums/ModelInformation.tsx:246 msgid "Import Session" msgstr "Oturumu İçe Aktar" -#: lib/enums/ModelInformation.tsx:231 +#: lib/enums/ModelInformation.tsx:247 msgid "Import Sessions" msgstr "Oturumları İçe Aktar" -#: lib/enums/ModelInformation.tsx:238 +#: lib/enums/ModelInformation.tsx:254 msgid "Label Template" msgstr "Etiket Şablonu" -#: lib/enums/ModelInformation.tsx:239 +#: lib/enums/ModelInformation.tsx:255 #: src/pages/Index/Settings/AdminCenter/Index.tsx:209 msgid "Label Templates" msgstr "Etiket Şablonları" -#: lib/enums/ModelInformation.tsx:246 +#: lib/enums/ModelInformation.tsx:262 msgid "Report Template" msgstr "Rapor Şablonu" -#: lib/enums/ModelInformation.tsx:247 +#: lib/enums/ModelInformation.tsx:263 #: src/pages/Index/Settings/AdminCenter/Index.tsx:215 msgid "Report Templates" msgstr "Rapor Şablonları" -#: lib/enums/ModelInformation.tsx:254 +#: lib/enums/ModelInformation.tsx:270 #: src/components/plugins/PluginDrawer.tsx:145 msgid "Plugin Configuration" msgstr "Eklenti Yapılandırma" -#: lib/enums/ModelInformation.tsx:255 +#: lib/enums/ModelInformation.tsx:271 msgid "Plugin Configurations" msgstr "Eklenti Yapılandırmaları" -#: lib/enums/ModelInformation.tsx:262 +#: lib/enums/ModelInformation.tsx:278 msgid "Content Type" msgstr "İçerik Türü" -#: lib/enums/ModelInformation.tsx:263 +#: lib/enums/ModelInformation.tsx:279 msgid "Content Types" msgstr "İçerik Türleri" -#: lib/enums/ModelInformation.tsx:268 +#: lib/enums/ModelInformation.tsx:284 msgid "Selection List" msgstr "Seçim Listesi" -#: lib/enums/ModelInformation.tsx:269 -#: src/pages/Index/Settings/AdminCenter/PartParameterPanel.tsx:21 +#: lib/enums/ModelInformation.tsx:285 +#: src/pages/Index/Settings/AdminCenter/ParameterPanel.tsx:21 msgid "Selection Lists" msgstr "Seçim Listeleri" -#: lib/enums/ModelInformation.tsx:275 +#: lib/enums/ModelInformation.tsx:291 #: src/components/barcodes/BarcodeInput.tsx:114 #: src/components/dashboard/DashboardLayout.tsx:281 #: src/components/editors/NotesEditor.tsx:74 #: src/components/editors/TemplateEditor/TemplateEditor.tsx:158 -#: src/components/forms/fields/ApiFormField.tsx:273 +#: src/components/forms/fields/ApiFormField.tsx:237 #: src/components/forms/fields/TableField.tsx:45 #: src/components/importer/ImportDataSelector.tsx:192 #: src/components/importer/ImporterColumnSelector.tsx:234 @@ -528,7 +554,7 @@ msgstr "Seçim Listeleri" #: src/components/nav/SearchDrawer.tsx:572 #: src/components/settings/SettingList.tsx:139 #: src/components/wizards/ImportPartWizard.tsx:574 -#: src/components/wizards/ImportPartWizard.tsx:718 +#: src/components/wizards/ImportPartWizard.tsx:719 #: src/forms/BomForms.tsx:69 #: src/functions/auth.tsx:643 #: src/pages/ErrorPage.tsx:11 @@ -547,9 +573,9 @@ msgstr "Seçim Listeleri" msgid "Error" msgstr "Hata" -#: lib/enums/ModelInformation.tsx:276 +#: lib/enums/ModelInformation.tsx:292 #: src/tables/machine/MachineListTable.tsx:402 -#: src/tables/machine/MachineTypeTable.tsx:299 +#: src/tables/machine/MachineTypeTable.tsx:297 msgid "Errors" msgstr "Hatalar" @@ -559,10 +585,10 @@ msgstr "Yönetici" #: lib/enums/Roles.tsx:33 #: src/defaults/actions.tsx:135 -#: src/pages/Index/Settings/SystemSettings.tsx:264 -#: src/pages/build/BuildIndex.tsx:75 -#: src/pages/part/PartDetail.tsx:904 -#: src/pages/sales/SalesOrderDetail.tsx:421 +#: src/pages/Index/Settings/SystemSettings.tsx:270 +#: src/pages/build/BuildIndex.tsx:67 +#: src/pages/part/PartDetail.tsx:893 +#: src/pages/sales/SalesOrderDetail.tsx:422 msgid "Build Orders" msgstr "Yapım İşi Emirleri" @@ -639,39 +665,39 @@ msgstr "Barkod verisi tara veya gir" msgid "Enter barcode data" msgstr "Barkod verisi gir" -#: src/components/barcodes/BarcodeScanDialog.tsx:49 -#: src/components/buttons/ScanButton.tsx:15 +#: src/components/barcodes/BarcodeScanDialog.tsx:56 +#: src/components/buttons/ScanButton.tsx:27 #: src/components/nav/NavigationDrawer.tsx:122 -#: src/forms/PurchaseOrderForms.tsx:457 -#: src/forms/PurchaseOrderForms.tsx:563 +#: src/forms/PurchaseOrderForms.tsx:509 +#: src/forms/PurchaseOrderForms.tsx:615 msgid "Scan Barcode" msgstr "Barkod Tara" -#: src/components/barcodes/BarcodeScanDialog.tsx:105 +#: src/components/barcodes/BarcodeScanDialog.tsx:121 msgid "No matching item found" msgstr "Eşleşen ürün bulunamadı" -#: src/components/barcodes/BarcodeScanDialog.tsx:134 +#: src/components/barcodes/BarcodeScanDialog.tsx:150 msgid "Barcode does not match the expected model type" msgstr "Barkod beklenen model ile uyuşmuyor" -#: src/components/barcodes/BarcodeScanDialog.tsx:145 +#: src/components/barcodes/BarcodeScanDialog.tsx:161 #: src/components/editors/NotesEditor.tsx:84 #: src/components/editors/NotesEditor.tsx:118 -#: src/components/forms/ApiForm.tsx:465 +#: src/components/forms/ApiForm.tsx:484 #: src/components/wizards/ImportPartWizard.tsx:566 -#: src/components/wizards/ImportPartWizard.tsx:690 +#: src/components/wizards/ImportPartWizard.tsx:691 #: src/pages/Index/Settings/AdminCenter/CurrencyManagementPanel.tsx:45 #: src/tables/bom/BomTable.tsx:548 #: src/tables/settings/PendingTasksTable.tsx:68 msgid "Success" msgstr "Başarılı" -#: src/components/barcodes/BarcodeScanDialog.tsx:151 +#: src/components/barcodes/BarcodeScanDialog.tsx:167 msgid "Failed to handle barcode" msgstr "Barkod işlenemedi" -#: src/components/barcodes/BarcodeScanDialog.tsx:167 +#: src/components/barcodes/BarcodeScanDialog.tsx:183 #: src/pages/Index/Scan.tsx:129 msgid "Failed to scan barcode" msgstr "Barkod taranamadı" @@ -714,10 +740,10 @@ msgstr "Barkod bağlanamadı" #: src/components/barcodes/QRCode.tsx:179 #: src/pages/part/PartDetail.tsx:521 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:222 -#: src/pages/sales/ReturnOrderDetail.tsx:188 -#: src/pages/sales/SalesOrderDetail.tsx:181 -#: src/pages/sales/SalesOrderShipmentDetail.tsx:122 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:223 +#: src/pages/sales/ReturnOrderDetail.tsx:189 +#: src/pages/sales/SalesOrderDetail.tsx:182 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:120 #: src/pages/stock/StockDetail.tsx:186 msgid "Link" msgstr "Bağlantı" @@ -728,7 +754,7 @@ msgstr "Bu, ilgili barkoda olan bağlantıyı kaldıracaktır" #: src/components/barcodes/QRCode.tsx:205 #: src/components/items/ActionDropdown.tsx:192 -#: src/forms/PurchaseOrderForms.tsx:554 +#: src/forms/PurchaseOrderForms.tsx:606 msgid "Unlink Barcode" msgstr "Barkodun Bağlantısını Kaldır" @@ -829,14 +855,14 @@ msgstr "Diğer işlemler için sağlayıcıya yönlendirileceksiniz." #~ msgid "Scan QR code" #~ msgstr "Scan QR code" -#: src/components/buttons/ScanButton.tsx:19 -msgid "Open Barcode Scanner" -msgstr "Barkod tarayıcıyı aç" - #: src/components/buttons/ScanButton.tsx:20 #~ msgid "Open QR code scanner" #~ msgstr "Open QR code scanner" +#: src/components/buttons/ScanButton.tsx:32 +msgid "Open Barcode Scanner" +msgstr "Barkod tarayıcıyı aç" + #: src/components/buttons/SpotlightButton.tsx:12 msgid "Open spotlight" msgstr "Spot ışığını aç" @@ -1059,7 +1085,7 @@ msgid "Show the number of sales orders which are assigned to you" msgstr "Size atanmış satış emirlerinin sayısını gösterin" #: src/components/dashboard/DashboardWidgetLibrary.tsx:129 -#: src/pages/sales/SalesIndex.tsx:105 +#: src/pages/sales/SalesIndex.tsx:87 msgid "Pending Shipments" msgstr "Bekleyen Gönderiler" @@ -1210,12 +1236,18 @@ msgid "Remove the associated image from this item?" msgstr "Bu ögeyle ilişkilendirilmiş resim kaldırılsın mı?" #: src/components/details/DetailsImage.tsx:83 -#: src/forms/StockForms.tsx:888 +#: src/forms/StockForms.tsx:895 #: src/pages/Index/Settings/AccountSettings/MFASettings.tsx:324 #: src/pages/Index/Settings/AccountSettings/MFASettings.tsx:415 #: src/pages/Index/Settings/AccountSettings/MFASettings.tsx:884 #: src/pages/Index/Settings/AccountSettings/MFASettings.tsx:903 #: src/pages/Index/Settings/AccountSettings/SecurityContent.tsx:254 +#: src/tables/build/BuildAllocatedStockTable.tsx:178 +#: src/tables/build/BuildAllocatedStockTable.tsx:258 +#: src/tables/build/BuildLineTable.tsx:111 +#: src/tables/build/BuildLineTable.tsx:665 +#: src/tables/sales/SalesOrderAllocationTable.tsx:224 +#: src/tables/sales/SalesOrderAllocationTable.tsx:247 msgid "Remove" msgstr "Kaldır" @@ -1241,12 +1273,12 @@ msgid "Upload Error" msgstr "Yükleme Hatası" #: src/components/details/DetailsImage.tsx:250 -#: src/components/forms/fields/TextField.tsx:65 +#: src/components/forms/fields/AutoFillRightSection.tsx:34 msgid "Clear" msgstr "Temizle" #: src/components/details/DetailsImage.tsx:256 -#: src/components/forms/ApiForm.tsx:677 +#: src/components/forms/ApiForm.tsx:696 #: src/contexts/ThemeContext.tsx:44 #: src/pages/Index/Settings/AccountSettings/MFASettings.tsx:149 #: src/pages/Index/Settings/AccountSettings/MFASettings.tsx:568 @@ -1499,8 +1531,8 @@ msgstr "Hatayı Kaydet" msgid "A server error occurred" msgstr "Bir sunucu hatası oluştu" -#: src/components/forms/ApiForm.tsx:103 -#: src/components/forms/ApiForm.tsx:594 +#: src/components/forms/ApiForm.tsx:107 +#: src/components/forms/ApiForm.tsx:613 msgid "Form Error" msgstr "Form Hatası" @@ -1508,11 +1540,11 @@ msgstr "Form Hatası" #~ msgid "Form Errors Exist" #~ msgstr "Form Errors Exist" -#: src/components/forms/ApiForm.tsx:604 +#: src/components/forms/ApiForm.tsx:623 msgid "Errors exist for one or more form fields" msgstr "Bir veya daha fazla form alanında hatalar var" -#: src/components/forms/ApiForm.tsx:715 +#: src/components/forms/ApiForm.tsx:734 #: src/hooks/UseForm.tsx:133 #: src/tables/plugin/PluginListTable.tsx:204 msgid "Update" @@ -1698,15 +1730,14 @@ msgstr "Sunucu" #: src/components/forms/InstanceOptions.tsx:124 #: src/components/plugins/PluginDrawer.tsx:68 #: src/pages/Index/Settings/AdminCenter/UnitManagementPanel.tsx:19 -#: src/pages/part/CategoryDetail.tsx:88 +#: src/pages/part/CategoryDetail.tsx:91 #: src/pages/part/PartDetail.tsx:446 #: src/pages/stock/LocationDetail.tsx:82 #: src/tables/machine/MachineTypeTable.tsx:67 -#: src/tables/machine/MachineTypeTable.tsx:151 -#: src/tables/machine/MachineTypeTable.tsx:254 -#: src/tables/machine/MachineTypeTable.tsx:357 +#: src/tables/machine/MachineTypeTable.tsx:149 +#: src/tables/machine/MachineTypeTable.tsx:252 +#: src/tables/machine/MachineTypeTable.tsx:355 #: src/tables/plugin/PluginErrorTable.tsx:33 -#: src/tables/purchasing/ManufacturerPartParameterTable.tsx:36 #: src/tables/settings/ApiTokenTable.tsx:57 #: src/tables/settings/GroupTable.tsx:95 #: src/tables/settings/GroupTable.tsx:148 @@ -1769,7 +1800,7 @@ msgstr "Ana bilgisayar seçimini kaydet" #~ msgstr "State: <0>worker ({0}), <1>plugins{1}" #: src/components/forms/InstanceOptions.tsx:118 -#: src/pages/Index/Settings/SystemSettings.tsx:45 +#: src/pages/Index/Settings/SystemSettings.tsx:46 msgid "Server" msgstr "Sunucu" @@ -1793,6 +1824,8 @@ msgid "Plugins" msgstr "Eklentiler" #: src/components/forms/InstanceOptions.tsx:143 +#: src/tables/general/ParameterTemplateTable.tsx:153 +#: src/tables/general/ParameterTemplateTable.tsx:188 #: src/tables/part/PartTestTemplateTable.tsx:117 #: src/tables/settings/TemplateTable.tsx:251 #: src/tables/settings/TemplateTable.tsx:362 @@ -1817,10 +1850,14 @@ msgstr "Durdu" msgid "Running" msgstr "Çalışıyor" -#: src/components/forms/fields/ApiFormField.tsx:233 +#: src/components/forms/fields/ApiFormField.tsx:197 msgid "Select file to upload" msgstr "Yüklemek için dosya seçin" +#: src/components/forms/fields/AutoFillRightSection.tsx:47 +msgid "Accept suggested value" +msgstr "Önerilen değeri kabul et" + #: src/components/forms/fields/DateField.tsx:76 msgid "Select date" msgstr "Tarih seçin" @@ -1853,13 +1890,13 @@ msgstr "Paket seç" msgid "{0} icons" msgstr "{0} simge" -#: src/components/forms/fields/RelatedModelField.tsx:409 +#: src/components/forms/fields/RelatedModelField.tsx:480 #: src/components/modals/AboutInvenTreeModal.tsx:96 #: src/pages/Index/Settings/AccountSettings/SecurityContent.tsx:383 msgid "Loading" msgstr "Yükleniyor" -#: src/components/forms/fields/RelatedModelField.tsx:411 +#: src/components/forms/fields/RelatedModelField.tsx:482 msgid "No results found" msgstr "Hiçbir şey bulunamadı" @@ -1875,10 +1912,6 @@ msgstr "Kullanılabilir girdi yok" msgid "Add new row" msgstr "Yeni satır ekle" -#: src/components/forms/fields/TextField.tsx:82 -msgid "Accept suggested value" -msgstr "Önerilen değeri kabul et" - #: src/components/images/DetailsImage.tsx:252 #~ msgid "Select image" #~ msgstr "Select image" @@ -2036,7 +2069,7 @@ msgstr "Veri başarıyla içe aktarıldı" #: src/components/importer/ImporterDrawer.tsx:109 #: src/components/modals/AboutInvenTreeModal.tsx:205 #: src/components/modals/ServerInfoModal.tsx:134 -#: src/components/wizards/ImportPartWizard.tsx:772 +#: src/components/wizards/ImportPartWizard.tsx:773 #: src/forms/BomForms.tsx:132 #: src/pages/Index/Settings/AccountSettings/MFASettings.tsx:685 msgid "Close" @@ -2199,7 +2232,7 @@ msgid "Change" msgstr "Değiştir" #: src/components/items/RoleTable.tsx:150 -#: src/forms/StockForms.tsx:927 +#: src/forms/StockForms.tsx:941 #: src/tables/stock/StockItemTestResultTable.tsx:367 msgid "Add" msgstr "Ekle" @@ -2222,11 +2255,11 @@ msgstr "Öğe yok" #: src/components/items/TransferList.tsx:161 #: src/components/render/Stock.tsx:102 -#: src/pages/part/PartDetail.tsx:994 +#: src/pages/part/PartDetail.tsx:1009 #: src/pages/stock/StockDetail.tsx:265 #: src/pages/stock/StockDetail.tsx:942 -#: src/tables/build/BuildAllocatedStockTable.tsx:135 -#: src/tables/build/BuildLineTable.tsx:192 +#: src/tables/build/BuildAllocatedStockTable.tsx:132 +#: src/tables/build/BuildLineTable.tsx:193 #: src/tables/part/PartTable.tsx:137 #: src/tables/stock/StockItemTable.tsx:182 #: src/tables/stock/StockItemTable.tsx:343 @@ -2373,7 +2406,7 @@ msgid "Database" msgstr "Veritabanı" #: src/components/modals/ServerInfoModal.tsx:49 -#: src/components/nav/Alerts.tsx:118 +#: src/components/nav/Alerts.tsx:120 msgid "Debug Mode" msgstr "Hata Ayıklama Kipi" @@ -2414,7 +2447,7 @@ msgid "Issues detected" msgstr "Sorunlar saptandı" #: src/components/modals/ServerInfoModal.tsx:102 -#: src/components/nav/Alerts.tsx:125 +#: src/components/nav/Alerts.tsx:127 msgid "Background Worker" msgstr "Arkaplan işçisi" @@ -2436,7 +2469,7 @@ msgstr "E-posta Ayarları" #~ msgstr "Email settings not configured" #: src/components/modals/ServerInfoModal.tsx:120 -#: src/components/nav/Alerts.tsx:141 +#: src/components/nav/Alerts.tsx:143 msgid "Email settings not configured." msgstr "E-posta ayarları yapılandırılmadı." @@ -2444,43 +2477,47 @@ msgstr "E-posta ayarları yapılandırılmadı." msgid "Alerts" msgstr "Uyarılar" -#: src/components/nav/Alerts.tsx:120 +#: src/components/nav/Alerts.tsx:97 +msgid "No issues detected" +msgstr "" + +#: src/components/nav/Alerts.tsx:122 msgid "The server is running in debug mode." msgstr "Sunucu hata ayıklama modunda çalışıyor." -#: src/components/nav/Alerts.tsx:127 +#: src/components/nav/Alerts.tsx:129 msgid "The background worker process is not running." msgstr "Arka plan worker süreci çalışmıyor." -#: src/components/nav/Alerts.tsx:132 +#: src/components/nav/Alerts.tsx:134 msgid "Server Restart" msgstr "Sunucuyu yeniden başlat" -#: src/components/nav/Alerts.tsx:134 +#: src/components/nav/Alerts.tsx:136 msgid "The server requires a restart to apply changes." msgstr "Değişikliklerin uygulanması için sunucunun yeniden başlatılması gerekiyor." -#: src/components/nav/Alerts.tsx:139 +#: src/components/nav/Alerts.tsx:141 msgid "Email settings" msgstr "E-Posta ayarları" -#: src/components/nav/Alerts.tsx:146 +#: src/components/nav/Alerts.tsx:148 msgid "Database Migrations" msgstr "Veritabanı Taşıma" -#: src/components/nav/Alerts.tsx:148 +#: src/components/nav/Alerts.tsx:150 msgid "There are pending database migrations." msgstr "Bekleyen veritabanı migration'ları var." -#: src/components/nav/Alerts.tsx:163 +#: src/components/nav/Alerts.tsx:165 msgid "Learn more about {code}" msgstr "Hakkında daha fazlasını öğren {code}" #: src/components/nav/Header.tsx:188 #: src/components/nav/NavigationDrawer.tsx:134 #: src/components/nav/NotificationDrawer.tsx:181 -#: src/pages/Index/Settings/SystemSettings.tsx:121 -#: src/pages/Index/Settings/UserSettings.tsx:106 +#: src/pages/Index/Settings/SystemSettings.tsx:122 +#: src/pages/Index/Settings/UserSettings.tsx:107 #: src/pages/Notifications.tsx:45 #: src/pages/Notifications.tsx:130 msgid "Notifications" @@ -2511,8 +2548,8 @@ msgstr "Ayarlar" #: src/components/nav/NavigationDrawer.tsx:140 #: src/components/nav/SettingsHeader.tsx:40 #: src/defaults/actions.tsx:92 -#: src/pages/Index/Settings/UserSettings.tsx:141 -#: src/pages/Index/Settings/UserSettings.tsx:145 +#: src/pages/Index/Settings/UserSettings.tsx:142 +#: src/pages/Index/Settings/UserSettings.tsx:146 msgid "User Settings" msgstr "Kullanıcı Ayarları" @@ -2529,8 +2566,8 @@ msgstr "Kullanıcı Ayarları" #: src/components/nav/NavigationDrawer.tsx:146 #: src/components/nav/SettingsHeader.tsx:41 #: src/defaults/actions.tsx:144 -#: src/pages/Index/Settings/SystemSettings.tsx:348 -#: src/pages/Index/Settings/SystemSettings.tsx:353 +#: src/pages/Index/Settings/SystemSettings.tsx:354 +#: src/pages/Index/Settings/SystemSettings.tsx:359 msgid "System Settings" msgstr "Sistem Ayarları" @@ -2577,11 +2614,11 @@ msgstr "Çıkış" #: src/components/nav/NavigationDrawer.tsx:77 #: src/components/render/Part.tsx:36 -#: src/components/wizards/ImportPartWizard.tsx:807 +#: src/components/wizards/ImportPartWizard.tsx:808 #: src/defaults/links.tsx:42 #: src/forms/StockForms.tsx:794 -#: src/pages/Index/Settings/SystemSettings.tsx:224 -#: src/pages/part/PartDetail.tsx:804 +#: src/pages/Index/Settings/SystemSettings.tsx:230 +#: src/pages/part/PartDetail.tsx:793 #: src/pages/stock/LocationDetail.tsx:390 #: src/pages/stock/LocationDetail.tsx:420 #: src/pages/stock/StockDetail.tsx:642 @@ -2591,29 +2628,29 @@ msgstr "Stok" #: src/components/nav/NavigationDrawer.tsx:84 #: src/defaults/links.tsx:48 -#: src/pages/build/BuildDetail.tsx:748 -#: src/pages/build/BuildIndex.tsx:102 +#: src/pages/build/BuildDetail.tsx:753 +#: src/pages/build/BuildIndex.tsx:101 msgid "Manufacturing" msgstr "Üretim" #: src/components/nav/NavigationDrawer.tsx:91 #: src/defaults/links.tsx:54 #: src/pages/company/ManufacturerDetail.tsx:9 -#: src/pages/company/ManufacturerPartDetail.tsx:276 +#: src/pages/company/ManufacturerPartDetail.tsx:267 #: src/pages/company/SupplierDetail.tsx:9 -#: src/pages/company/SupplierPartDetail.tsx:360 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:553 -#: src/pages/purchasing/PurchasingIndex.tsx:122 +#: src/pages/company/SupplierPartDetail.tsx:365 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:558 +#: src/pages/purchasing/PurchasingIndex.tsx:212 msgid "Purchasing" msgstr "Satın Alınıyor" #: src/components/nav/NavigationDrawer.tsx:98 #: src/defaults/links.tsx:60 #: src/pages/company/CustomerDetail.tsx:9 -#: src/pages/sales/ReturnOrderDetail.tsx:554 -#: src/pages/sales/SalesIndex.tsx:153 -#: src/pages/sales/SalesOrderDetail.tsx:619 -#: src/pages/sales/SalesOrderShipmentDetail.tsx:480 +#: src/pages/sales/ReturnOrderDetail.tsx:559 +#: src/pages/sales/SalesIndex.tsx:168 +#: src/pages/sales/SalesOrderDetail.tsx:624 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:448 msgid "Sales" msgstr "Satışlar" @@ -2667,21 +2704,21 @@ msgid "Remove search group" msgstr "Arama grubunu kaldır" #: src/components/nav/SearchDrawer.tsx:288 -#: src/pages/company/ManufacturerPartDetail.tsx:192 -#: src/pages/part/PartDetail.tsx:862 +#: src/pages/company/ManufacturerPartDetail.tsx:179 +#: src/pages/part/PartDetail.tsx:851 #: src/pages/part/PartSupplierDetail.tsx:15 -#: src/pages/purchasing/PurchasingIndex.tsx:81 +#: src/pages/purchasing/PurchasingIndex.tsx:100 msgid "Suppliers" msgstr "Sağlayıcılar" #: src/components/nav/SearchDrawer.tsx:298 #: src/pages/part/PartSupplierDetail.tsx:23 -#: src/pages/purchasing/PurchasingIndex.tsx:98 +#: src/pages/purchasing/PurchasingIndex.tsx:149 msgid "Manufacturers" msgstr "Üreticiler" #: src/components/nav/SearchDrawer.tsx:308 -#: src/pages/sales/SalesIndex.tsx:138 +#: src/pages/sales/SalesIndex.tsx:133 msgid "Customers" msgstr "Müşteriler" @@ -2772,21 +2809,21 @@ msgstr "Eklenti Bilgileri" #: src/components/plugins/PluginDrawer.tsx:73 #: src/forms/selectionListFields.tsx:102 -#: src/pages/build/BuildDetail.tsx:250 -#: src/pages/company/CompanyDetail.tsx:93 -#: src/pages/company/ManufacturerPartDetail.tsx:93 -#: src/pages/company/ManufacturerPartDetail.tsx:120 -#: src/pages/company/SupplierPartDetail.tsx:145 -#: src/pages/part/CategoryDetail.tsx:108 +#: src/pages/build/BuildDetail.tsx:251 +#: src/pages/company/CompanyDetail.tsx:94 +#: src/pages/company/ManufacturerPartDetail.tsx:92 +#: src/pages/company/ManufacturerPartDetail.tsx:119 +#: src/pages/company/SupplierPartDetail.tsx:146 +#: src/pages/part/CategoryDetail.tsx:111 #: src/pages/part/PartDetail.tsx:460 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:162 -#: src/pages/sales/ReturnOrderDetail.tsx:129 -#: src/pages/sales/SalesOrderDetail.tsx:119 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:163 +#: src/pages/sales/ReturnOrderDetail.tsx:130 +#: src/pages/sales/SalesOrderDetail.tsx:120 #: src/pages/stock/LocationDetail.tsx:102 #: src/tables/ColumnRenderers.tsx:278 -#: src/tables/build/BuildAllocatedStockTable.tsx:91 -#: src/tables/machine/MachineTypeTable.tsx:161 -#: src/tables/machine/MachineTypeTable.tsx:257 +#: src/tables/build/BuildAllocatedStockTable.tsx:88 +#: src/tables/machine/MachineTypeTable.tsx:159 +#: src/tables/machine/MachineTypeTable.tsx:255 #: src/tables/plugin/PluginListTable.tsx:110 msgid "Description" msgstr "Açıklama" @@ -2814,7 +2851,7 @@ msgstr "Tarih" #: src/tables/company/CompanyTable.tsx:91 #: src/tables/machine/MachineListTable.tsx:384 #: src/tables/machine/MachineListTable.tsx:799 -#: src/tables/part/ParametricPartTable.tsx:354 +#: src/tables/part/ParametricPartTable.tsx:19 #: src/tables/part/PartTable.tsx:197 #: src/tables/part/PartVariantTable.tsx:15 #: src/tables/plugin/PluginListTable.tsx:96 @@ -2836,8 +2873,8 @@ msgid "Installation Path" msgstr "Kurulum Yolu" #: src/components/plugins/PluginDrawer.tsx:116 -#: src/tables/machine/MachineTypeTable.tsx:184 -#: src/tables/machine/MachineTypeTable.tsx:293 +#: src/tables/machine/MachineTypeTable.tsx:182 +#: src/tables/machine/MachineTypeTable.tsx:291 #: src/tables/plugin/PluginListTable.tsx:101 #: src/tables/plugin/PluginListTable.tsx:417 msgid "Builtin" @@ -2849,8 +2886,8 @@ msgstr "Paket" #: src/components/plugins/PluginDrawer.tsx:133 #: src/pages/Index/Settings/AdminCenter/PluginManagementPanel.tsx:55 -#: src/pages/Index/Settings/SystemSettings.tsx:331 -#: src/pages/Index/Settings/UserSettings.tsx:128 +#: src/pages/Index/Settings/SystemSettings.tsx:337 +#: src/pages/Index/Settings/UserSettings.tsx:129 msgid "Plugin Settings" msgstr "Eklenti Ayarları" @@ -2911,7 +2948,7 @@ msgstr "" #~ msgid "Unknown model: {model}" #~ msgstr "Unknown model: {model}" -#: src/components/render/Instance.tsx:249 +#: src/components/render/Instance.tsx:247 msgid "Unknown model: {model_name}" msgstr "Bilinmeyen model: {model_name}" @@ -2939,10 +2976,10 @@ msgstr "Gönderi" #: src/components/render/Part.tsx:28 #: src/components/render/Plugin.tsx:17 #: src/components/render/User.tsx:37 -#: src/pages/company/CompanyDetail.tsx:323 -#: src/pages/company/SupplierPartDetail.tsx:373 +#: src/pages/company/CompanyDetail.tsx:328 +#: src/pages/company/SupplierPartDetail.tsx:378 #: src/pages/core/UserDetail.tsx:211 -#: src/pages/part/PartDetail.tsx:1027 +#: src/pages/part/PartDetail.tsx:1048 #: src/tables/ColumnRenderers.tsx:410 msgid "Inactive" msgstr "İnaktif" @@ -2962,11 +2999,11 @@ msgstr "Stok yok" #: src/components/render/Part.tsx:47 #: src/components/wizards/OrderPartsWizard.tsx:135 -#: src/pages/company/SupplierPartDetail.tsx:197 -#: src/pages/company/SupplierPartDetail.tsx:394 -#: src/pages/part/PartDetail.tsx:1015 +#: src/pages/company/SupplierPartDetail.tsx:198 +#: src/pages/company/SupplierPartDetail.tsx:399 +#: src/pages/part/PartDetail.tsx:1030 #: src/tables/bom/BomTable.tsx:444 -#: src/tables/build/BuildLineTable.tsx:222 +#: src/tables/build/BuildLineTable.tsx:223 #: src/tables/part/PartTable.tsx:108 msgid "On Order" msgstr "Siparişte" @@ -2974,9 +3011,9 @@ msgstr "Siparişte" #: src/components/render/Part.tsx:55 #: src/components/wizards/OrderPartsWizard.tsx:141 #: src/pages/part/PartDetail.tsx:587 -#: src/pages/part/PartDetail.tsx:1021 +#: src/pages/part/PartDetail.tsx:1036 #: src/pages/stock/StockDetail.tsx:925 -#: src/tables/part/PartTestResultTable.tsx:297 +#: src/tables/part/PartTestResultTable.tsx:305 #: src/tables/stock/StockItemTable.tsx:359 msgid "In Production" msgstr "Üretimde" @@ -2987,7 +3024,7 @@ msgid "Details" msgstr "Ayrıntılar" #: src/components/render/Part.tsx:112 -#: src/components/wizards/ImportPartWizard.tsx:806 +#: src/components/wizards/ImportPartWizard.tsx:807 #: src/pages/part/PartDetail.tsx:487 #: src/tables/ColumnRenderers.tsx:233 #: src/tables/ColumnRenderers.tsx:242 @@ -3000,16 +3037,16 @@ msgstr "Kategori" #: src/components/render/Stock.tsx:114 #: src/components/render/Stock.tsx:132 #: src/forms/BuildForms.tsx:795 -#: src/forms/PurchaseOrderForms.tsx:595 +#: src/forms/PurchaseOrderForms.tsx:647 #: src/forms/StockForms.tsx:792 #: src/forms/StockForms.tsx:839 -#: src/forms/StockForms.tsx:885 -#: src/forms/StockForms.tsx:924 -#: src/forms/StockForms.tsx:960 -#: src/forms/StockForms.tsx:1003 -#: src/forms/StockForms.tsx:1047 -#: src/forms/StockForms.tsx:1095 -#: src/forms/StockForms.tsx:1139 +#: src/forms/StockForms.tsx:892 +#: src/forms/StockForms.tsx:938 +#: src/forms/StockForms.tsx:976 +#: src/forms/StockForms.tsx:1019 +#: src/forms/StockForms.tsx:1063 +#: src/forms/StockForms.tsx:1111 +#: src/forms/StockForms.tsx:1155 #: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:88 #: src/pages/core/UserDetail.tsx:158 #: src/pages/stock/StockDetail.tsx:298 @@ -3023,7 +3060,7 @@ msgstr "Konum" #: src/components/render/Stock.tsx:99 #: src/pages/stock/StockDetail.tsx:198 #: src/pages/stock/StockDetail.tsx:930 -#: src/tables/build/BuildAllocatedStockTable.tsx:121 +#: src/tables/build/BuildAllocatedStockTable.tsx:118 #: src/tables/build/BuildOutputTable.tsx:107 #: src/tables/sales/SalesOrderAllocationTable.tsx:142 msgid "Serial Number" @@ -3034,9 +3071,9 @@ msgstr "Seri Numarası" #: src/forms/BuildForms.tsx:240 #: src/forms/BuildForms.tsx:634 #: src/forms/BuildForms.tsx:797 -#: src/forms/PurchaseOrderForms.tsx:801 +#: src/forms/PurchaseOrderForms.tsx:853 #: src/forms/ReturnOrderForms.tsx:243 -#: src/forms/SalesOrderForms.tsx:308 +#: src/forms/SalesOrderForms.tsx:387 #: src/forms/StockForms.tsx:841 #: src/pages/part/PartStockHistoryDetail.tsx:56 #: src/pages/part/PartStockHistoryDetail.tsx:210 @@ -3046,9 +3083,9 @@ msgstr "Seri Numarası" #: src/pages/part/pricing/PriceBreakPanel.tsx:172 #: src/pages/stock/StockDetail.tsx:258 #: src/pages/stock/StockDetail.tsx:936 -#: src/tables/build/BuildLineTable.tsx:86 +#: src/tables/build/BuildLineTable.tsx:83 #: src/tables/part/PartPurchaseOrdersTable.tsx:94 -#: src/tables/part/PartTestResultTable.tsx:269 +#: src/tables/part/PartTestResultTable.tsx:277 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:175 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:206 #: src/tables/purchasing/SupplierPriceBreakTable.tsx:69 @@ -3063,14 +3100,14 @@ msgstr "Miktar" #: src/forms/BuildForms.tsx:474 #: src/forms/StockForms.tsx:793 #: src/forms/StockForms.tsx:840 -#: src/forms/StockForms.tsx:886 -#: src/forms/StockForms.tsx:925 -#: src/forms/StockForms.tsx:961 -#: src/forms/StockForms.tsx:1004 -#: src/forms/StockForms.tsx:1048 -#: src/forms/StockForms.tsx:1096 -#: src/forms/StockForms.tsx:1140 -#: src/tables/build/BuildLineTable.tsx:96 +#: src/forms/StockForms.tsx:893 +#: src/forms/StockForms.tsx:939 +#: src/forms/StockForms.tsx:977 +#: src/forms/StockForms.tsx:1020 +#: src/forms/StockForms.tsx:1064 +#: src/forms/StockForms.tsx:1112 +#: src/forms/StockForms.tsx:1156 +#: src/tables/build/BuildLineTable.tsx:93 msgid "Batch" msgstr "Parti" @@ -3306,10 +3343,6 @@ msgstr "Ayar belirtilmemiş" #~ msgid "Part category updated" #~ msgstr "Part category updated" -#: src/components/tables/part/PartParameterTable.tsx:41 -#~ msgid "Parameter" -#~ msgstr "Parameter" - #: src/components/tables/part/PartParameterTable.tsx:114 #~ msgid "Part parameter updated" #~ msgstr "Part parameter updated" @@ -3571,15 +3604,16 @@ msgid "Already Imported" msgstr "Zaten İçe Aktarıldı" #: src/components/wizards/ImportPartWizard.tsx:205 -#: src/pages/company/CompanyDetail.tsx:136 +#: src/pages/company/CompanyDetail.tsx:137 #: src/pages/company/SupplierDetail.tsx:8 -#: src/pages/company/SupplierPartDetail.tsx:130 -#: src/pages/company/SupplierPartDetail.tsx:235 -#: src/pages/company/SupplierPartDetail.tsx:364 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:156 +#: src/pages/company/SupplierPartDetail.tsx:131 +#: src/pages/company/SupplierPartDetail.tsx:236 +#: src/pages/company/SupplierPartDetail.tsx:369 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:157 #: src/tables/Filter.tsx:360 #: src/tables/company/CompanyTable.tsx:96 #: src/tables/part/PartPurchaseOrdersTable.tsx:43 +#: src/tables/purchasing/PurchaseOrderParametricTable.tsx:34 #: src/tables/purchasing/PurchaseOrderTable.tsx:109 #: src/tables/purchasing/SupplierPriceBreakTable.tsx:40 msgid "Supplier" @@ -3648,7 +3682,7 @@ msgid "Next" msgstr "Sonraki" #: src/components/wizards/ImportPartWizard.tsx:540 -#: src/pages/part/PartDetail.tsx:1046 +#: src/pages/part/PartDetail.tsx:1067 #: src/tables/part/PartTable.tsx:408 msgid "Edit Part" msgstr "Parçayı Düzenle" @@ -3669,28 +3703,28 @@ msgstr "" msgid "Import" msgstr "İçe aktar" -#: src/components/wizards/ImportPartWizard.tsx:691 +#: src/components/wizards/ImportPartWizard.tsx:692 msgid "Parameters created successfully!" msgstr "" -#: src/components/wizards/ImportPartWizard.tsx:719 +#: src/components/wizards/ImportPartWizard.tsx:720 msgid "Failed to create parameters, please fix the errors and try again" msgstr "" #. placeholder {0}: supplierPart?.supplier -#: src/components/wizards/ImportPartWizard.tsx:739 +#: src/components/wizards/ImportPartWizard.tsx:740 msgid "Part imported successfully from supplier {0}." msgstr "" -#: src/components/wizards/ImportPartWizard.tsx:752 +#: src/components/wizards/ImportPartWizard.tsx:753 msgid "Open Part" msgstr "" -#: src/components/wizards/ImportPartWizard.tsx:759 +#: src/components/wizards/ImportPartWizard.tsx:760 msgid "Open Supplier Part" msgstr "" -#: src/components/wizards/ImportPartWizard.tsx:766 +#: src/components/wizards/ImportPartWizard.tsx:767 msgid "Open Manufacturer Part" msgstr "" @@ -3699,25 +3733,19 @@ msgstr "" #~ msgid "Import Part" #~ msgstr "Import Part" -#: src/components/wizards/ImportPartWizard.tsx:802 +#: src/components/wizards/ImportPartWizard.tsx:803 msgid "Import Supplier Part" msgstr "" -#: src/components/wizards/ImportPartWizard.tsx:804 +#: src/components/wizards/ImportPartWizard.tsx:805 msgid "Search Supplier Part" msgstr "" -#: src/components/wizards/ImportPartWizard.tsx:806 -#: src/pages/company/ManufacturerPartDetail.tsx:166 -#: src/pages/part/PartDetail.tsx:793 -msgid "Parameters" -msgstr "Parametreler" - -#: src/components/wizards/ImportPartWizard.tsx:806 +#: src/components/wizards/ImportPartWizard.tsx:807 msgid "Confirm import" msgstr "İçeri Aktarmayı Onayla" -#: src/components/wizards/ImportPartWizard.tsx:808 +#: src/components/wizards/ImportPartWizard.tsx:809 msgid "Done" msgstr "Bitti" @@ -3738,24 +3766,24 @@ msgid "Sales Requirements" msgstr "" #: src/components/wizards/OrderPartsWizard.tsx:129 -#: src/forms/StockForms.tsx:887 -#: src/forms/StockForms.tsx:926 -#: src/forms/StockForms.tsx:962 -#: src/forms/StockForms.tsx:1005 -#: src/forms/StockForms.tsx:1049 -#: src/forms/StockForms.tsx:1097 -#: src/forms/StockForms.tsx:1141 -#: src/pages/company/SupplierPartDetail.tsx:190 -#: src/pages/company/SupplierPartDetail.tsx:378 +#: src/forms/StockForms.tsx:894 +#: src/forms/StockForms.tsx:940 +#: src/forms/StockForms.tsx:978 +#: src/forms/StockForms.tsx:1021 +#: src/forms/StockForms.tsx:1065 +#: src/forms/StockForms.tsx:1113 +#: src/forms/StockForms.tsx:1157 +#: src/pages/company/SupplierPartDetail.tsx:191 +#: src/pages/company/SupplierPartDetail.tsx:383 #: src/pages/part/PartDetail.tsx:534 -#: src/pages/part/PartDetail.tsx:984 +#: src/pages/part/PartDetail.tsx:999 #: src/tables/Filter.tsx:92 #: src/tables/purchasing/SupplierPartTable.tsx:230 msgid "In Stock" msgstr "Stokta" #: src/components/wizards/OrderPartsWizard.tsx:146 -#: src/tables/build/BuildLineTable.tsx:404 +#: src/tables/build/BuildLineTable.tsx:405 msgid "Required Quantity" msgstr "" @@ -3847,7 +3875,7 @@ msgid "Please correct the errors in the selected parts" msgstr "" #: src/components/wizards/OrderPartsWizard.tsx:587 -#: src/tables/build/BuildLineTable.tsx:815 +#: src/tables/build/BuildLineTable.tsx:822 #: src/tables/part/PartTable.tsx:522 #: src/tables/sales/SalesOrderLineItemTable.tsx:370 msgid "Order Parts" @@ -4349,9 +4377,9 @@ msgstr "" #: src/forms/BuildForms.tsx:333 #: src/forms/BuildForms.tsx:408 #: src/forms/BuildForms.tsx:685 -#: src/tables/build/BuildAllocatedStockTable.tsx:150 +#: src/tables/build/BuildAllocatedStockTable.tsx:147 #: src/tables/build/BuildOutputTable.tsx:582 -#: src/tables/part/PartTestResultTable.tsx:272 +#: src/tables/part/PartTestResultTable.tsx:280 msgid "Build Output" msgstr "Yapım Çıktısı" @@ -4362,22 +4390,22 @@ msgstr "" #: src/forms/BuildForms.tsx:336 #: src/forms/BuildForms.tsx:411 #: src/forms/BuildForms.tsx:475 -#: src/forms/PurchaseOrderForms.tsx:717 +#: src/forms/PurchaseOrderForms.tsx:769 #: src/forms/ReturnOrderForms.tsx:197 #: src/forms/ReturnOrderForms.tsx:244 #: src/forms/StockForms.tsx:712 #: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:87 -#: src/pages/build/BuildDetail.tsx:222 +#: src/pages/build/BuildDetail.tsx:223 #: src/pages/core/UserDetail.tsx:151 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:168 -#: src/pages/sales/ReturnOrderDetail.tsx:135 -#: src/pages/sales/SalesOrderDetail.tsx:125 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:169 +#: src/pages/sales/ReturnOrderDetail.tsx:136 +#: src/pages/sales/SalesOrderDetail.tsx:126 #: src/pages/stock/StockDetail.tsx:170 #: src/tables/Filter.tsx:274 #: src/tables/build/BuildOutputTable.tsx:404 #: src/tables/machine/MachineListTable.tsx:387 #: src/tables/part/PartPurchaseOrdersTable.tsx:38 -#: src/tables/part/PartTestResultTable.tsx:309 +#: src/tables/part/PartTestResultTable.tsx:317 #: src/tables/sales/ReturnOrderLineItemTable.tsx:138 #: src/tables/sales/ReturnOrderLineItemTable.tsx:176 #: src/tables/settings/CustomStateTable.tsx:79 @@ -4443,18 +4471,19 @@ msgid "Build outputs have been cancelled" msgstr "Yapı çıktıları iptal edildi" #: src/forms/BuildForms.tsx:631 -#: src/pages/build/BuildDetail.tsx:207 -#: src/pages/company/ManufacturerPartDetail.tsx:85 -#: src/pages/company/SupplierPartDetail.tsx:96 +#: src/pages/build/BuildDetail.tsx:208 +#: src/pages/company/ManufacturerPartDetail.tsx:84 +#: src/pages/company/SupplierPartDetail.tsx:97 #: src/pages/part/PartDetail.tsx:453 #: src/pages/stock/StockDetail.tsx:153 #: src/tables/bom/BomTable.tsx:134 #: src/tables/bom/UsedInTable.tsx:40 -#: src/tables/build/BuildAllocatedStockTable.tsx:108 -#: src/tables/build/BuildLineTable.tsx:336 +#: src/tables/build/BuildAllocatedStockTable.tsx:105 +#: src/tables/build/BuildLineTable.tsx:337 #: src/tables/build/BuildOrderTable.tsx:79 #: src/tables/part/PartSalesAllocationsTable.tsx:61 #: src/tables/part/RelatedPartTable.tsx:73 +#: src/tables/purchasing/ManufacturerPartParametricTable.tsx:21 #: src/tables/purchasing/ManufacturerPartTable.tsx:69 #: src/tables/purchasing/SupplierPartTable.tsx:70 #: src/tables/sales/SalesOrderAllocationTable.tsx:135 @@ -4466,47 +4495,47 @@ msgstr "DPN" #: src/forms/BuildForms.tsx:632 #: src/forms/BuildForms.tsx:796 #: src/forms/BuildForms.tsx:897 -#: src/forms/SalesOrderForms.tsx:306 -#: src/tables/build/BuildAllocatedStockTable.tsx:139 -#: src/tables/build/BuildLineTable.tsx:182 +#: src/forms/SalesOrderForms.tsx:385 +#: src/tables/build/BuildAllocatedStockTable.tsx:136 +#: src/tables/build/BuildLineTable.tsx:183 #: src/tables/sales/SalesOrderLineItemTable.tsx:342 #: src/tables/stock/StockItemTable.tsx:338 msgid "Allocated" msgstr "Ayrıldı" #: src/forms/BuildForms.tsx:667 -#: src/forms/SalesOrderForms.tsx:295 -#: src/pages/build/BuildDetail.tsx:108 -#: src/pages/build/BuildDetail.tsx:326 +#: src/forms/SalesOrderForms.tsx:374 +#: src/pages/build/BuildDetail.tsx:109 +#: src/pages/build/BuildDetail.tsx:327 msgid "Source Location" msgstr "Kaynak Konum" #: src/forms/BuildForms.tsx:668 -#: src/forms/SalesOrderForms.tsx:296 +#: src/forms/SalesOrderForms.tsx:375 msgid "Select the source location for the stock allocation" msgstr "" #: src/forms/BuildForms.tsx:700 -#: src/forms/SalesOrderForms.tsx:336 -#: src/tables/build/BuildLineTable.tsx:574 -#: src/tables/build/BuildLineTable.tsx:731 -#: src/tables/build/BuildLineTable.tsx:830 +#: src/forms/SalesOrderForms.tsx:415 +#: src/tables/build/BuildLineTable.tsx:575 +#: src/tables/build/BuildLineTable.tsx:738 +#: src/tables/build/BuildLineTable.tsx:837 #: src/tables/sales/SalesOrderLineItemTable.tsx:380 #: src/tables/sales/SalesOrderLineItemTable.tsx:406 msgid "Allocate Stock" msgstr "Stoku Ayır" #: src/forms/BuildForms.tsx:703 -#: src/forms/SalesOrderForms.tsx:341 +#: src/forms/SalesOrderForms.tsx:420 msgid "Stock items allocated" msgstr "" #: src/forms/BuildForms.tsx:816 #: src/forms/BuildForms.tsx:917 -#: src/tables/build/BuildAllocatedStockTable.tsx:240 -#: src/tables/build/BuildAllocatedStockTable.tsx:272 -#: src/tables/build/BuildLineTable.tsx:741 -#: src/tables/build/BuildLineTable.tsx:864 +#: src/tables/build/BuildAllocatedStockTable.tsx:243 +#: src/tables/build/BuildAllocatedStockTable.tsx:279 +#: src/tables/build/BuildLineTable.tsx:748 +#: src/tables/build/BuildLineTable.tsx:871 msgid "Consume Stock" msgstr "" @@ -4521,21 +4550,21 @@ msgstr "" #~ msgstr "Stock items consumed" #: src/forms/BuildForms.tsx:853 -#: src/tables/build/BuildLineTable.tsx:514 +#: src/tables/build/BuildLineTable.tsx:515 #: src/tables/part/PartBuildAllocationsTable.tsx:101 msgid "Fully consumed" msgstr "" #: src/forms/BuildForms.tsx:898 -#: src/tables/build/BuildLineTable.tsx:187 +#: src/tables/build/BuildLineTable.tsx:188 #: src/tables/stock/StockItemTable.tsx:367 msgid "Consumed" msgstr "Tüketildi" -#: src/forms/CommonForms.tsx:88 -#: src/forms/PurchaseOrderForms.tsx:125 +#: src/forms/CommonForms.tsx:92 +#: src/forms/PurchaseOrderForms.tsx:176 #: src/forms/ReturnOrderForms.tsx:138 -#: src/forms/SalesOrderForms.tsx:164 +#: src/forms/SalesOrderForms.tsx:185 msgid "Select project code for this line item" msgstr "" @@ -4543,16 +4572,16 @@ msgstr "" #~ msgid "Company updated" #~ msgstr "Company updated" -#: src/forms/PartForms.tsx:85 -#: src/forms/PartForms.tsx:207 -#: src/pages/part/CategoryDetail.tsx:124 +#: src/forms/PartForms.tsx:99 +#: src/forms/PartForms.tsx:228 +#: src/pages/part/CategoryDetail.tsx:127 #: src/pages/part/PartDetail.tsx:668 #: src/tables/part/PartCategoryTable.tsx:94 #: src/tables/part/PartTable.tsx:325 msgid "Subscribed" msgstr "Abone olundu" -#: src/forms/PartForms.tsx:86 +#: src/forms/PartForms.tsx:100 msgid "Subscribe to notifications for this part" msgstr "" @@ -4564,156 +4593,156 @@ msgstr "" #~ msgid "Part updated" #~ msgstr "Part updated" -#: src/forms/PartForms.tsx:193 +#: src/forms/PartForms.tsx:214 msgid "Parent part category" msgstr "Üst parça sınıfı" -#: src/forms/PartForms.tsx:208 +#: src/forms/PartForms.tsx:229 msgid "Subscribe to notifications for this category" msgstr "" -#: src/forms/PurchaseOrderForms.tsx:388 -msgid "Assign Batch Code and Serial Numbers" -msgstr "Parti No ve Seri No Ataması" - -#: src/forms/PurchaseOrderForms.tsx:390 -msgid "Assign Batch Code" -msgstr "Parti Kodu Ata" - -#: src/forms/PurchaseOrderForms.tsx:410 -msgid "Choose Location" -msgstr "Konum Seçiniz" - -#: src/forms/PurchaseOrderForms.tsx:418 -msgid "Item Destination selected" -msgstr "Öge hedefi seçildi" - #: src/forms/PurchaseOrderForms.tsx:421 #~ msgid "Assign Batch Code{0}" #~ msgstr "Assign Batch Code{0}" -#: src/forms/PurchaseOrderForms.tsx:428 -msgid "Part category default location selected" -msgstr "Parça sınıfı varsayılan konum seçildi" +#: src/forms/PurchaseOrderForms.tsx:440 +msgid "Assign Batch Code and Serial Numbers" +msgstr "Parti No ve Seri No Ataması" -#: src/forms/PurchaseOrderForms.tsx:438 -msgid "Received stock location selected" -msgstr "Alınan stok konumu seçildi" +#: src/forms/PurchaseOrderForms.tsx:442 +msgid "Assign Batch Code" +msgstr "Parti Kodu Ata" #: src/forms/PurchaseOrderForms.tsx:444 #: src/forms/StockForms.tsx:428 #~ msgid "Remove item from list" #~ msgstr "Remove item from list" -#: src/forms/PurchaseOrderForms.tsx:446 +#: src/forms/PurchaseOrderForms.tsx:462 +msgid "Choose Location" +msgstr "Konum Seçiniz" + +#: src/forms/PurchaseOrderForms.tsx:470 +msgid "Item Destination selected" +msgstr "Öge hedefi seçildi" + +#: src/forms/PurchaseOrderForms.tsx:480 +msgid "Part category default location selected" +msgstr "Parça sınıfı varsayılan konum seçildi" + +#: src/forms/PurchaseOrderForms.tsx:490 +msgid "Received stock location selected" +msgstr "Alınan stok konumu seçildi" + +#: src/forms/PurchaseOrderForms.tsx:498 msgid "Default location selected" msgstr "Varsayılan konum seçildi" -#: src/forms/PurchaseOrderForms.tsx:507 +#: src/forms/PurchaseOrderForms.tsx:559 msgid "Set Location" msgstr "Konum Ayarla" -#: src/forms/PurchaseOrderForms.tsx:524 -msgid "Set Expiry Date" -msgstr "Son Kullanma Tarihi Belirle" - -#: src/forms/PurchaseOrderForms.tsx:532 -#: src/forms/StockForms.tsx:693 -msgid "Adjust Packaging" -msgstr "Paketlemeyi Ayarla" - -#: src/forms/PurchaseOrderForms.tsx:540 -#: src/forms/StockForms.tsx:684 -#: src/hooks/UseStockAdjustActions.tsx:148 -msgid "Change Status" -msgstr "Durumu Değiştir" - -#: src/forms/PurchaseOrderForms.tsx:546 -msgid "Add Note" -msgstr "Note Ekle" - #: src/forms/PurchaseOrderForms.tsx:566 #~ msgid "Serial numbers" #~ msgstr "Serial numbers" +#: src/forms/PurchaseOrderForms.tsx:576 +msgid "Set Expiry Date" +msgstr "Son Kullanma Tarihi Belirle" + #: src/forms/PurchaseOrderForms.tsx:582 #~ msgid "Store at line item destination" #~ msgstr "Store at line item destination" -#: src/forms/PurchaseOrderForms.tsx:610 -msgid "Store at default location" -msgstr "Varsayılan konumda depola" +#: src/forms/PurchaseOrderForms.tsx:584 +#: src/forms/StockForms.tsx:693 +msgid "Adjust Packaging" +msgstr "Paketlemeyi Ayarla" -#: src/forms/PurchaseOrderForms.tsx:625 -msgid "Store at line item destination " -msgstr "Satır ögesinin hedefinde depola " +#: src/forms/PurchaseOrderForms.tsx:592 +#: src/forms/StockForms.tsx:684 +#: src/hooks/UseStockAdjustActions.tsx:148 +msgid "Change Status" +msgstr "Durumu Değiştir" -#: src/forms/PurchaseOrderForms.tsx:637 -msgid "Store with already received stock" -msgstr "Önceden alınmış bir stok ile depola" +#: src/forms/PurchaseOrderForms.tsx:598 +msgid "Add Note" +msgstr "Note Ekle" #: src/forms/PurchaseOrderForms.tsx:658 #~ msgid "Receive line items" #~ msgstr "Receive line items" -#: src/forms/PurchaseOrderForms.tsx:661 -#: src/pages/build/BuildDetail.tsx:340 +#: src/forms/PurchaseOrderForms.tsx:662 +msgid "Store at default location" +msgstr "Varsayılan konumda depola" + +#: src/forms/PurchaseOrderForms.tsx:677 +msgid "Store at line item destination " +msgstr "Satır ögesinin hedefinde depola " + +#: src/forms/PurchaseOrderForms.tsx:689 +msgid "Store with already received stock" +msgstr "Önceden alınmış bir stok ile depola" + +#: src/forms/PurchaseOrderForms.tsx:713 +#: src/pages/build/BuildDetail.tsx:341 #: src/pages/stock/StockDetail.tsx:280 #: src/pages/stock/StockDetail.tsx:952 #: src/tables/Filter.tsx:83 -#: src/tables/build/BuildAllocatedStockTable.tsx:128 +#: src/tables/build/BuildAllocatedStockTable.tsx:125 #: src/tables/build/BuildOutputTable.tsx:112 -#: src/tables/part/PartTestResultTable.tsx:260 -#: src/tables/part/PartTestResultTable.tsx:281 +#: src/tables/part/PartTestResultTable.tsx:268 +#: src/tables/part/PartTestResultTable.tsx:289 #: src/tables/sales/SalesOrderAllocationTable.tsx:149 msgid "Batch Code" msgstr "Parti Kodu" -#: src/forms/PurchaseOrderForms.tsx:662 +#: src/forms/PurchaseOrderForms.tsx:714 msgid "Enter batch code for received items" msgstr "" -#: src/forms/PurchaseOrderForms.tsx:675 +#: src/forms/PurchaseOrderForms.tsx:727 #: src/forms/StockForms.tsx:218 msgid "Serial Numbers" msgstr "Seri Numaraları" -#: src/forms/PurchaseOrderForms.tsx:676 +#: src/forms/PurchaseOrderForms.tsx:728 msgid "Enter serial numbers for received items" msgstr "" -#: src/forms/PurchaseOrderForms.tsx:690 +#: src/forms/PurchaseOrderForms.tsx:742 #: src/pages/stock/StockDetail.tsx:382 #: src/tables/stock/StockItemTable.tsx:294 msgid "Expiry Date" msgstr "Son Kullanma Tarihi" -#: src/forms/PurchaseOrderForms.tsx:691 +#: src/forms/PurchaseOrderForms.tsx:743 msgid "Enter an expiry date for received items" msgstr "" -#: src/forms/PurchaseOrderForms.tsx:703 +#: src/forms/PurchaseOrderForms.tsx:755 #: src/forms/StockForms.tsx:728 -#: src/pages/company/SupplierPartDetail.tsx:172 -#: src/pages/company/SupplierPartDetail.tsx:236 +#: src/pages/company/SupplierPartDetail.tsx:173 +#: src/pages/company/SupplierPartDetail.tsx:237 #: src/pages/stock/StockDetail.tsx:419 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:227 msgid "Packaging" msgstr "Paketleme" -#: src/forms/PurchaseOrderForms.tsx:727 -#: src/pages/company/SupplierPartDetail.tsx:120 +#: src/forms/PurchaseOrderForms.tsx:779 +#: src/pages/company/SupplierPartDetail.tsx:121 #: src/tables/ColumnRenderers.tsx:332 msgid "Note" msgstr "Not" -#: src/forms/PurchaseOrderForms.tsx:799 -#: src/pages/company/SupplierPartDetail.tsx:138 +#: src/forms/PurchaseOrderForms.tsx:851 +#: src/pages/company/SupplierPartDetail.tsx:139 #: src/tables/purchasing/SupplierPriceBreakTable.tsx:49 msgid "SKU" msgstr "SKU" -#: src/forms/PurchaseOrderForms.tsx:800 +#: src/forms/PurchaseOrderForms.tsx:852 #: src/tables/part/PartPurchaseOrdersTable.tsx:127 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:213 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:283 @@ -4721,11 +4750,11 @@ msgstr "SKU" msgid "Received" msgstr "Alındı" -#: src/forms/PurchaseOrderForms.tsx:817 +#: src/forms/PurchaseOrderForms.tsx:869 msgid "Receive Line Items" msgstr "Alınan Satır Ögeleri" -#: src/forms/PurchaseOrderForms.tsx:823 +#: src/forms/PurchaseOrderForms.tsx:875 msgid "Items received" msgstr "" @@ -4737,7 +4766,35 @@ msgstr "" msgid "Item received into stock" msgstr "" -#: src/forms/SalesOrderForms.tsx:401 +#: src/forms/SalesOrderForms.tsx:208 +#: src/forms/SalesOrderForms.tsx:210 +#: src/tables/sales/SalesOrderShipmentTable.tsx:215 +msgid "Check Shipment" +msgstr "" + +#: src/forms/SalesOrderForms.tsx:211 +msgid "Marking the shipment as checked indicates that you have verified that all items included in this shipment are correct" +msgstr "" + +#: src/forms/SalesOrderForms.tsx:221 +msgid "Shipment marked as checked" +msgstr "" + +#: src/forms/SalesOrderForms.tsx:236 +#: src/forms/SalesOrderForms.tsx:238 +#: src/tables/sales/SalesOrderShipmentTable.tsx:228 +msgid "Uncheck Shipment" +msgstr "" + +#: src/forms/SalesOrderForms.tsx:239 +msgid "Marking the shipment as unchecked indicates that the shipment requires further verification" +msgstr "" + +#: src/forms/SalesOrderForms.tsx:249 +msgid "Shipment marked as unchecked" +msgstr "" + +#: src/forms/SalesOrderForms.tsx:480 msgid "Leave blank to use the order address" msgstr "" @@ -4792,150 +4849,150 @@ msgstr "Taşı" msgid "Return" msgstr "Geri Dön" -#: src/forms/StockForms.tsx:963 +#: src/forms/StockForms.tsx:979 #: src/pages/Index/Scan.tsx:182 msgid "Count" msgstr "Say" -#: src/forms/StockForms.tsx:1246 +#: src/forms/StockForms.tsx:1262 #: src/hooks/UseStockAdjustActions.tsx:108 msgid "Add Stock" msgstr "Stok Ekle" -#: src/forms/StockForms.tsx:1247 +#: src/forms/StockForms.tsx:1263 msgid "Stock added" msgstr "Stok Eklendi" -#: src/forms/StockForms.tsx:1250 +#: src/forms/StockForms.tsx:1266 msgid "Increase the quantity of the selected stock items by a given amount." msgstr "" -#: src/forms/StockForms.tsx:1261 +#: src/forms/StockForms.tsx:1277 #: src/hooks/UseStockAdjustActions.tsx:118 msgid "Remove Stock" msgstr "Stok Kaldır" -#: src/forms/StockForms.tsx:1262 +#: src/forms/StockForms.tsx:1278 msgid "Stock removed" msgstr "Stok Kaldırıldı" -#: src/forms/StockForms.tsx:1265 +#: src/forms/StockForms.tsx:1281 msgid "Decrease the quantity of the selected stock items by a given amount." msgstr "" -#: src/forms/StockForms.tsx:1276 +#: src/forms/StockForms.tsx:1292 #: src/hooks/UseStockAdjustActions.tsx:128 msgid "Transfer Stock" msgstr "Stoku Aktar" -#: src/forms/StockForms.tsx:1277 +#: src/forms/StockForms.tsx:1293 msgid "Stock transferred" msgstr "Stok Transfer Edildi" -#: src/forms/StockForms.tsx:1280 +#: src/forms/StockForms.tsx:1296 msgid "Transfer selected items to the specified location." msgstr "" -#: src/forms/StockForms.tsx:1291 +#: src/forms/StockForms.tsx:1307 #: src/hooks/UseStockAdjustActions.tsx:168 msgid "Return Stock" msgstr "" -#: src/forms/StockForms.tsx:1292 +#: src/forms/StockForms.tsx:1308 msgid "Stock returned" msgstr "" -#: src/forms/StockForms.tsx:1295 +#: src/forms/StockForms.tsx:1311 msgid "Return selected items into stock, to the specified location." msgstr "" -#: src/forms/StockForms.tsx:1306 +#: src/forms/StockForms.tsx:1322 #: src/hooks/UseStockAdjustActions.tsx:98 msgid "Count Stock" msgstr "Stoku Say" -#: src/forms/StockForms.tsx:1307 +#: src/forms/StockForms.tsx:1323 msgid "Stock counted" msgstr "Stok Sayıldı" -#: src/forms/StockForms.tsx:1310 +#: src/forms/StockForms.tsx:1326 msgid "Count the selected stock items, and adjust the quantity accordingly." msgstr "" -#: src/forms/StockForms.tsx:1321 +#: src/forms/StockForms.tsx:1337 msgid "Change Stock Status" msgstr "Stok Durumunu Değiştir" -#: src/forms/StockForms.tsx:1322 +#: src/forms/StockForms.tsx:1338 msgid "Stock status changed" msgstr "Stok Durumu Değişti" -#: src/forms/StockForms.tsx:1325 +#: src/forms/StockForms.tsx:1341 msgid "Change the status of the selected stock items." msgstr "" -#: src/forms/StockForms.tsx:1336 +#: src/forms/StockForms.tsx:1352 #: src/hooks/UseStockAdjustActions.tsx:138 msgid "Merge Stock" msgstr "Stoku Birleştir" -#: src/forms/StockForms.tsx:1337 +#: src/forms/StockForms.tsx:1353 msgid "Stock merged" msgstr "Stok Birleştirildi" -#: src/forms/StockForms.tsx:1339 +#: src/forms/StockForms.tsx:1355 msgid "Merge Stock Items" msgstr "" -#: src/forms/StockForms.tsx:1341 +#: src/forms/StockForms.tsx:1357 msgid "Merge operation cannot be reversed" msgstr "" -#: src/forms/StockForms.tsx:1342 +#: src/forms/StockForms.tsx:1358 msgid "Tracking information may be lost when merging items" msgstr "" -#: src/forms/StockForms.tsx:1343 +#: src/forms/StockForms.tsx:1359 msgid "Supplier information may be lost when merging items" msgstr "" -#: src/forms/StockForms.tsx:1361 +#: src/forms/StockForms.tsx:1377 msgid "Assign Stock to Customer" msgstr "Stoku Müşteriye Ata" -#: src/forms/StockForms.tsx:1362 +#: src/forms/StockForms.tsx:1378 msgid "Stock assigned to customer" msgstr "Stok Müşteriye Atandı" -#: src/forms/StockForms.tsx:1372 +#: src/forms/StockForms.tsx:1388 msgid "Delete Stock Items" msgstr "Stok Ögelerini Sil" -#: src/forms/StockForms.tsx:1373 +#: src/forms/StockForms.tsx:1389 msgid "Stock deleted" msgstr "Stok Silindi" -#: src/forms/StockForms.tsx:1376 +#: src/forms/StockForms.tsx:1392 msgid "This operation will permanently delete the selected stock items." msgstr "" -#: src/forms/StockForms.tsx:1385 +#: src/forms/StockForms.tsx:1401 msgid "Parent stock location" msgstr "Üst stok konumu" -#: src/forms/StockForms.tsx:1512 +#: src/forms/StockForms.tsx:1528 msgid "Find Serial Number" msgstr "Seri Numarası Bul" -#: src/forms/StockForms.tsx:1523 +#: src/forms/StockForms.tsx:1539 msgid "No matching items" msgstr "Eşleşen ürün bulunamadı" -#: src/forms/StockForms.tsx:1529 +#: src/forms/StockForms.tsx:1545 msgid "Multiple matching items" msgstr "" -#: src/forms/StockForms.tsx:1538 +#: src/forms/StockForms.tsx:1554 msgid "Invalid response from server" msgstr "" @@ -4953,7 +5010,6 @@ msgstr "" #: src/tables/FilterSelectDrawer.tsx:137 #: src/tables/FilterSelectDrawer.tsx:149 #: src/tables/part/PartTestResultTable.tsx:206 -#: src/tables/purchasing/ManufacturerPartParameterTable.tsx:42 #: src/tables/stock/StockItemTestResultTable.tsx:207 msgid "Value" msgstr "Değer" @@ -5244,7 +5300,7 @@ msgid "Delete selected stock items" msgstr "" #: src/hooks/UseStockAdjustActions.tsx:205 -#: src/pages/part/PartDetail.tsx:1137 +#: src/pages/part/PartDetail.tsx:1158 msgid "Stock Actions" msgstr "Stok Eylemleri" @@ -5932,6 +5988,9 @@ msgstr "" #: src/pages/Index/Settings/AccountSettings/MFASettings.tsx:310 #: src/pages/Index/Settings/AccountSettings/MFASettings.tsx:401 +#: src/tables/build/BuildAllocatedStockTable.tsx:181 +#: src/tables/build/BuildLineTable.tsx:668 +#: src/tables/sales/SalesOrderAllocationTable.tsx:220 msgid "Confirm Removal" msgstr "" @@ -6394,30 +6453,34 @@ msgid "Email Messages" msgstr "E-posta İletileri" #: src/pages/Index/Settings/AdminCenter/HomePanel.tsx:22 -msgid "Active Alerts" -msgstr "Aktif Uyarılar" +#~ msgid "Active Alerts" +#~ msgstr "Active Alerts" #: src/pages/Index/Settings/AdminCenter/HomePanel.tsx:27 -msgid "Inactive Alerts" -msgstr "Aktif Olmayan Uyarılar" +#~ msgid "Inactive Alerts" +#~ msgstr "Inactive Alerts" -#: src/pages/Index/Settings/AdminCenter/HomePanel.tsx:38 +#: src/pages/Index/Settings/AdminCenter/HomePanel.tsx:36 +msgid "System Status" +msgstr "" + +#: src/pages/Index/Settings/AdminCenter/HomePanel.tsx:47 msgid "Admin Center Information" msgstr "" -#: src/pages/Index/Settings/AdminCenter/HomePanel.tsx:44 +#: src/pages/Index/Settings/AdminCenter/HomePanel.tsx:53 msgid "The home panel (and the whole Admin Center) is a new feature starting with the new UI and was previously (before 1.0) not available." msgstr "" -#: src/pages/Index/Settings/AdminCenter/HomePanel.tsx:51 +#: src/pages/Index/Settings/AdminCenter/HomePanel.tsx:60 msgid "The admin center provides a centralized location for all administration functionality and is meant to replace all interaction with the (django) backend admin interface." msgstr "" -#: src/pages/Index/Settings/AdminCenter/HomePanel.tsx:58 +#: src/pages/Index/Settings/AdminCenter/HomePanel.tsx:67 msgid "Please open feature requests (after checking the tracker) for any existing backend admin functionality you are missing in this UI. The backend admin interface should be used carefully and seldom." msgstr "" -#: src/pages/Index/Settings/AdminCenter/HomePanel.tsx:76 +#: src/pages/Index/Settings/AdminCenter/HomePanel.tsx:85 msgid "Quick Actions" msgstr "Hızlı İşlemler" @@ -6476,11 +6539,11 @@ msgstr "Özel Birimler" #: src/pages/Index/Settings/AdminCenter/Index.tsx:195 #: src/pages/part/CategoryDetail.tsx:313 -msgid "Part Parameters" -msgstr "Parça Parametreleri" +#~ msgid "Part Parameters" +#~ msgstr "Part Parameters" #: src/pages/Index/Settings/AdminCenter/Index.tsx:202 -#: src/pages/part/CategoryDetail.tsx:306 +#: src/pages/part/CategoryDetail.tsx:329 msgid "Category Parameters" msgstr "Sınıf Parametreleri" @@ -6494,7 +6557,7 @@ msgstr "Konum Türleri" #: src/pages/Index/Settings/AdminCenter/Index.tsx:235 #: src/pages/Index/Settings/AdminCenter/MachineManagementPanel.tsx:52 -#: src/tables/machine/MachineTypeTable.tsx:325 +#: src/tables/machine/MachineTypeTable.tsx:323 msgid "Machines" msgstr "Makineler" @@ -6507,8 +6570,8 @@ msgid "Data Management" msgstr "" #: src/pages/Index/Settings/AdminCenter/Index.tsx:270 -#: src/pages/Index/Settings/SystemSettings.tsx:175 -#: src/pages/Index/Settings/UserSettings.tsx:118 +#: src/pages/Index/Settings/SystemSettings.tsx:176 +#: src/pages/Index/Settings/UserSettings.tsx:119 msgid "Reporting" msgstr "Raporlama" @@ -6709,11 +6772,11 @@ msgstr "Tokenler" msgid "The settings below are specific to each available plugin" msgstr "" -#: src/pages/Index/Settings/SystemSettings.tsx:77 +#: src/pages/Index/Settings/SystemSettings.tsx:78 msgid "Authentication" msgstr "Kimlik Doğrulama" -#: src/pages/Index/Settings/SystemSettings.tsx:103 +#: src/pages/Index/Settings/SystemSettings.tsx:104 msgid "Barcodes" msgstr "Barkodlar" @@ -6725,12 +6788,12 @@ msgstr "Barkodlar" #~ msgid "This panel is a placeholder." #~ msgstr "This panel is a placeholder." -#: src/pages/Index/Settings/SystemSettings.tsx:127 -#: src/pages/Index/Settings/UserSettings.tsx:112 +#: src/pages/Index/Settings/SystemSettings.tsx:128 +#: src/pages/Index/Settings/UserSettings.tsx:113 msgid "The settings below are specific to each available notification method" msgstr "" -#: src/pages/Index/Settings/SystemSettings.tsx:133 +#: src/pages/Index/Settings/SystemSettings.tsx:134 msgid "Pricing" msgstr "Fiyatlandırma" @@ -6738,7 +6801,7 @@ msgstr "Fiyatlandırma" #~ msgid "Exchange Rates" #~ msgstr "Exchange Rates" -#: src/pages/Index/Settings/SystemSettings.tsx:169 +#: src/pages/Index/Settings/SystemSettings.tsx:170 msgid "Labels" msgstr "Etiketler" @@ -6790,15 +6853,15 @@ msgstr "Okunmadı olarak imle" #~ msgid "Delete notifications" #~ msgstr "Delete notifications" -#: src/pages/build/BuildDetail.tsx:69 +#: src/pages/build/BuildDetail.tsx:70 msgid "No Required Items" msgstr "" -#: src/pages/build/BuildDetail.tsx:71 +#: src/pages/build/BuildDetail.tsx:72 msgid "This build order does not have any required items." msgstr "" -#: src/pages/build/BuildDetail.tsx:72 +#: src/pages/build/BuildDetail.tsx:73 msgid "The assembled part may not have a Bill of Materials (BOM) defined, or the BOM is empty." msgstr "" @@ -6826,7 +6889,7 @@ msgstr "" #~ msgid "Build Order updated" #~ msgstr "Build Order updated" -#: src/pages/build/BuildDetail.tsx:215 +#: src/pages/build/BuildDetail.tsx:216 #: src/pages/part/PartDetail.tsx:480 #: src/pages/stock/StockDetail.tsx:161 #: src/tables/bom/UsedInTable.tsx:44 @@ -6843,10 +6906,10 @@ msgstr "Revizyon" #~ msgid "Duplicate build order" #~ msgstr "Duplicate build order" -#: src/pages/build/BuildDetail.tsx:228 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:174 -#: src/pages/sales/ReturnOrderDetail.tsx:141 -#: src/pages/sales/SalesOrderDetail.tsx:131 +#: src/pages/build/BuildDetail.tsx:229 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:175 +#: src/pages/sales/ReturnOrderDetail.tsx:142 +#: src/pages/sales/SalesOrderDetail.tsx:132 #: src/pages/stock/StockDetail.tsx:176 msgid "Custom Status" msgstr "" @@ -6855,9 +6918,9 @@ msgstr "" #~ msgid "Delete build order" #~ msgstr "Delete build order" -#: src/pages/build/BuildDetail.tsx:237 -#: src/pages/build/BuildDetail.tsx:723 -#: src/pages/build/BuildIndex.tsx:28 +#: src/pages/build/BuildDetail.tsx:238 +#: src/pages/build/BuildDetail.tsx:728 +#: src/pages/build/BuildIndex.tsx:34 #: src/pages/stock/LocationDetail.tsx:140 #: src/tables/build/BuildOrderTable.tsx:123 #: src/tables/build/BuildOrderTable.tsx:183 @@ -6865,57 +6928,57 @@ msgstr "" msgid "External" msgstr "Harici" -#: src/pages/build/BuildDetail.tsx:244 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:141 -#: src/pages/sales/ReturnOrderDetail.tsx:108 -#: src/pages/sales/SalesOrderDetail.tsx:98 +#: src/pages/build/BuildDetail.tsx:245 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:142 +#: src/pages/sales/ReturnOrderDetail.tsx:109 +#: src/pages/sales/SalesOrderDetail.tsx:99 #: src/tables/ColumnRenderers.tsx:321 -#: src/tables/build/BuildAllocatedStockTable.tsx:115 -#: src/tables/build/BuildLineTable.tsx:352 +#: src/tables/build/BuildAllocatedStockTable.tsx:112 +#: src/tables/build/BuildLineTable.tsx:353 msgid "Reference" msgstr "Referans" -#: src/pages/build/BuildDetail.tsx:258 +#: src/pages/build/BuildDetail.tsx:259 msgid "Parent Build" msgstr "Üst Yapı" -#: src/pages/build/BuildDetail.tsx:269 +#: src/pages/build/BuildDetail.tsx:270 msgid "Build Quantity" msgstr "Yapı Miktarı" -#: src/pages/build/BuildDetail.tsx:275 +#: src/pages/build/BuildDetail.tsx:276 #: src/pages/part/PartDetail.tsx:598 #: src/tables/bom/BomTable.tsx:365 #: src/tables/bom/BomTable.tsx:407 msgid "Can Build" msgstr "Yapılabilir" -#: src/pages/build/BuildDetail.tsx:284 -#: src/pages/build/BuildDetail.tsx:474 +#: src/pages/build/BuildDetail.tsx:285 +#: src/pages/build/BuildDetail.tsx:475 msgid "Completed Outputs" msgstr "Tamamlanan Çıkışlar" -#: src/pages/build/BuildDetail.tsx:301 +#: src/pages/build/BuildDetail.tsx:302 #: src/tables/Filter.tsx:381 #: src/tables/build/BuildOrderTable.tsx:143 msgid "Issued By" msgstr "Veren" -#: src/pages/build/BuildDetail.tsx:309 +#: src/pages/build/BuildDetail.tsx:310 #: src/pages/part/PartDetail.tsx:691 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:261 -#: src/pages/sales/ReturnOrderDetail.tsx:239 -#: src/pages/sales/SalesOrderDetail.tsx:232 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:262 +#: src/pages/sales/ReturnOrderDetail.tsx:240 +#: src/pages/sales/SalesOrderDetail.tsx:233 #: src/tables/ColumnRenderers.tsx:464 #: src/tables/Filter.tsx:319 msgid "Responsible" msgstr "Sorumlu" -#: src/pages/build/BuildDetail.tsx:327 +#: src/pages/build/BuildDetail.tsx:328 msgid "Any location" msgstr "Herhangi bir konum" -#: src/pages/build/BuildDetail.tsx:334 +#: src/pages/build/BuildDetail.tsx:335 msgid "Destination Location" msgstr "Hedef Konum" @@ -6924,24 +6987,24 @@ msgstr "Hedef Konum" #~ msgid "Test Statistics" #~ msgstr "Test Statistics" -#: src/pages/build/BuildDetail.tsx:350 +#: src/pages/build/BuildDetail.tsx:351 #: src/tables/settings/ApiTokenTable.tsx:97 #: src/tables/settings/PendingTasksTable.tsx:41 msgid "Created" msgstr "Oluşturuldu" -#: src/pages/build/BuildDetail.tsx:358 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:286 -#: src/pages/sales/ReturnOrderDetail.tsx:265 -#: src/pages/sales/SalesOrderDetail.tsx:257 +#: src/pages/build/BuildDetail.tsx:359 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:287 +#: src/pages/sales/ReturnOrderDetail.tsx:266 +#: src/pages/sales/SalesOrderDetail.tsx:258 #: src/tables/ColumnRenderers.tsx:486 msgid "Start Date" msgstr "Başlangıç Tarihi" -#: src/pages/build/BuildDetail.tsx:366 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:294 -#: src/pages/sales/ReturnOrderDetail.tsx:273 -#: src/pages/sales/SalesOrderDetail.tsx:265 +#: src/pages/build/BuildDetail.tsx:367 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:295 +#: src/pages/sales/ReturnOrderDetail.tsx:274 +#: src/pages/sales/SalesOrderDetail.tsx:266 #: src/tables/ColumnRenderers.tsx:494 #: src/tables/part/PartPurchaseOrdersTable.tsx:101 #: src/tables/sales/ReturnOrderLineItemTable.tsx:154 @@ -6954,185 +7017,185 @@ msgstr "Hedef Tarih" #~ msgstr "Reporting Actions" #: src/pages/build/BuildDetail.tsx:374 +#~ msgid "Print build report" +#~ msgstr "Print build report" + +#: src/pages/build/BuildDetail.tsx:375 #: src/tables/build/BuildOrderTable.tsx:93 #: src/tables/sales/SalesOrderLineItemTable.tsx:347 msgid "Completed" msgstr "Tamamlandı" -#: src/pages/build/BuildDetail.tsx:374 -#~ msgid "Print build report" -#~ msgstr "Print build report" - -#: src/pages/build/BuildDetail.tsx:410 +#: src/pages/build/BuildDetail.tsx:411 msgid "Build Details" msgstr "Yapı Ayrıntıları" -#: src/pages/build/BuildDetail.tsx:416 +#: src/pages/build/BuildDetail.tsx:417 msgid "Required Parts" msgstr "" -#: src/pages/build/BuildDetail.tsx:428 -#: src/pages/sales/SalesOrderDetail.tsx:407 -#: src/pages/sales/SalesOrderShipmentDetail.tsx:261 +#: src/pages/build/BuildDetail.tsx:429 +#: src/pages/sales/SalesOrderDetail.tsx:408 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:259 #: src/tables/part/PartSalesAllocationsTable.tsx:73 msgid "Allocated Stock" msgstr "Ayrılan Stok" -#: src/pages/build/BuildDetail.tsx:444 +#: src/pages/build/BuildDetail.tsx:445 msgid "Consumed Stock" msgstr "Tüketilen Stok" -#: src/pages/build/BuildDetail.tsx:461 +#: src/pages/build/BuildDetail.tsx:462 msgid "Incomplete Outputs" msgstr "Tamamlanmayan Çıktılar" -#: src/pages/build/BuildDetail.tsx:489 +#: src/pages/build/BuildDetail.tsx:490 msgid "External Orders" msgstr "" -#: src/pages/build/BuildDetail.tsx:503 +#: src/pages/build/BuildDetail.tsx:504 msgid "Child Build Orders" msgstr "Alt Yapı Siparişleri" -#: src/pages/build/BuildDetail.tsx:513 -#: src/pages/part/PartDetail.tsx:937 +#: src/pages/build/BuildDetail.tsx:514 +#: src/pages/part/PartDetail.tsx:926 #: src/pages/stock/StockDetail.tsx:587 #: src/tables/build/BuildOutputTable.tsx:654 #: src/tables/stock/StockItemTestResultTable.tsx:173 msgid "Test Results" msgstr "Test Sonuçları" -#: src/pages/build/BuildDetail.tsx:550 +#: src/pages/build/BuildDetail.tsx:555 msgid "Edit Build Order" msgstr "Yapı Siparişini Düzenle" -#: src/pages/build/BuildDetail.tsx:572 +#: src/pages/build/BuildDetail.tsx:577 #: src/tables/build/BuildOrderTable.tsx:207 #: src/tables/build/BuildOrderTable.tsx:223 msgid "Add Build Order" msgstr "Yapı Siparişi Ekle" -#: src/pages/build/BuildDetail.tsx:582 +#: src/pages/build/BuildDetail.tsx:587 msgid "Cancel Build Order" msgstr "Yapı Siparişini İptal Et" -#: src/pages/build/BuildDetail.tsx:584 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:416 -#: src/pages/sales/ReturnOrderDetail.tsx:427 -#: src/pages/sales/SalesOrderDetail.tsx:454 +#: src/pages/build/BuildDetail.tsx:589 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:421 +#: src/pages/sales/ReturnOrderDetail.tsx:432 +#: src/pages/sales/SalesOrderDetail.tsx:459 msgid "Order cancelled" msgstr "Sipariş iptal edildi" -#: src/pages/build/BuildDetail.tsx:585 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:415 -#: src/pages/sales/ReturnOrderDetail.tsx:426 -#: src/pages/sales/SalesOrderDetail.tsx:453 +#: src/pages/build/BuildDetail.tsx:590 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:420 +#: src/pages/sales/ReturnOrderDetail.tsx:431 +#: src/pages/sales/SalesOrderDetail.tsx:458 msgid "Cancel this order" msgstr "Bu siparişi iptal et" -#: src/pages/build/BuildDetail.tsx:594 +#: src/pages/build/BuildDetail.tsx:599 msgid "Hold Build Order" msgstr "Yapı Siparişini Beklet" -#: src/pages/build/BuildDetail.tsx:596 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:423 -#: src/pages/sales/ReturnOrderDetail.tsx:434 -#: src/pages/sales/SalesOrderDetail.tsx:461 +#: src/pages/build/BuildDetail.tsx:601 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:428 +#: src/pages/sales/ReturnOrderDetail.tsx:439 +#: src/pages/sales/SalesOrderDetail.tsx:466 msgid "Place this order on hold" msgstr "Bu yapı siparişini beklemeye al" -#: src/pages/build/BuildDetail.tsx:597 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:424 -#: src/pages/sales/ReturnOrderDetail.tsx:435 -#: src/pages/sales/SalesOrderDetail.tsx:462 +#: src/pages/build/BuildDetail.tsx:602 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:429 +#: src/pages/sales/ReturnOrderDetail.tsx:440 +#: src/pages/sales/SalesOrderDetail.tsx:467 msgid "Order placed on hold" msgstr "Beklemeye alınan sipariş" -#: src/pages/build/BuildDetail.tsx:602 +#: src/pages/build/BuildDetail.tsx:607 msgid "Issue Build Order" msgstr "Yapı Siparişi Ver" -#: src/pages/build/BuildDetail.tsx:604 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:407 -#: src/pages/sales/ReturnOrderDetail.tsx:418 -#: src/pages/sales/SalesOrderDetail.tsx:445 +#: src/pages/build/BuildDetail.tsx:609 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:412 +#: src/pages/sales/ReturnOrderDetail.tsx:423 +#: src/pages/sales/SalesOrderDetail.tsx:450 msgid "Issue this order" msgstr "Bu siparişi ver" -#: src/pages/build/BuildDetail.tsx:605 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:408 -#: src/pages/sales/ReturnOrderDetail.tsx:419 -#: src/pages/sales/SalesOrderDetail.tsx:446 +#: src/pages/build/BuildDetail.tsx:610 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:413 +#: src/pages/sales/ReturnOrderDetail.tsx:424 +#: src/pages/sales/SalesOrderDetail.tsx:451 msgid "Order issued" msgstr "Sipariş verildi" -#: src/pages/build/BuildDetail.tsx:624 +#: src/pages/build/BuildDetail.tsx:629 msgid "Complete Build Order" msgstr "Yapı Siparişini Tamamla" -#: src/pages/build/BuildDetail.tsx:630 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:436 -#: src/pages/sales/ReturnOrderDetail.tsx:442 -#: src/pages/sales/SalesOrderDetail.tsx:480 +#: src/pages/build/BuildDetail.tsx:635 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:441 +#: src/pages/sales/ReturnOrderDetail.tsx:447 +#: src/pages/sales/SalesOrderDetail.tsx:485 msgid "Mark this order as complete" msgstr "Bu siparişi tamamlandı olarak imle" -#: src/pages/build/BuildDetail.tsx:633 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:430 -#: src/pages/sales/ReturnOrderDetail.tsx:443 -#: src/pages/sales/SalesOrderDetail.tsx:481 +#: src/pages/build/BuildDetail.tsx:638 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:435 +#: src/pages/sales/ReturnOrderDetail.tsx:448 +#: src/pages/sales/SalesOrderDetail.tsx:486 msgid "Order completed" msgstr "Sipariş tamamlandı" -#: src/pages/build/BuildDetail.tsx:660 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:459 -#: src/pages/sales/ReturnOrderDetail.tsx:470 -#: src/pages/sales/SalesOrderDetail.tsx:516 +#: src/pages/build/BuildDetail.tsx:665 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:464 +#: src/pages/sales/ReturnOrderDetail.tsx:475 +#: src/pages/sales/SalesOrderDetail.tsx:521 msgid "Issue Order" msgstr "Sipariş Ver" -#: src/pages/build/BuildDetail.tsx:667 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:466 -#: src/pages/sales/ReturnOrderDetail.tsx:477 -#: src/pages/sales/SalesOrderDetail.tsx:530 +#: src/pages/build/BuildDetail.tsx:672 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:471 +#: src/pages/sales/ReturnOrderDetail.tsx:482 +#: src/pages/sales/SalesOrderDetail.tsx:535 msgid "Complete Order" msgstr "Siparişi Tamamla" -#: src/pages/build/BuildDetail.tsx:686 +#: src/pages/build/BuildDetail.tsx:691 msgid "Build Order Actions" msgstr "Yapım Siprişi Eylemleri" -#: src/pages/build/BuildDetail.tsx:691 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:489 -#: src/pages/sales/ReturnOrderDetail.tsx:500 -#: src/pages/sales/SalesOrderDetail.tsx:554 +#: src/pages/build/BuildDetail.tsx:696 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:494 +#: src/pages/sales/ReturnOrderDetail.tsx:505 +#: src/pages/sales/SalesOrderDetail.tsx:559 msgid "Edit order" msgstr "Siparişi düzenle" -#: src/pages/build/BuildDetail.tsx:695 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:497 -#: src/pages/sales/ReturnOrderDetail.tsx:506 -#: src/pages/sales/SalesOrderDetail.tsx:559 +#: src/pages/build/BuildDetail.tsx:700 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:502 +#: src/pages/sales/ReturnOrderDetail.tsx:511 +#: src/pages/sales/SalesOrderDetail.tsx:564 msgid "Duplicate order" msgstr "Siparişi çoğalt" -#: src/pages/build/BuildDetail.tsx:699 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:500 -#: src/pages/sales/ReturnOrderDetail.tsx:511 -#: src/pages/sales/SalesOrderDetail.tsx:562 -msgid "Hold order" -msgstr "Siparişi beklet" - #: src/pages/build/BuildDetail.tsx:704 #: src/pages/purchasing/PurchaseOrderDetail.tsx:505 #: src/pages/sales/ReturnOrderDetail.tsx:516 #: src/pages/sales/SalesOrderDetail.tsx:567 +msgid "Hold order" +msgstr "Siparişi beklet" + +#: src/pages/build/BuildDetail.tsx:709 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:510 +#: src/pages/sales/ReturnOrderDetail.tsx:521 +#: src/pages/sales/SalesOrderDetail.tsx:572 msgid "Cancel order" msgstr "Siparişi iptal et" -#: src/pages/build/BuildDetail.tsx:742 +#: src/pages/build/BuildDetail.tsx:747 #: src/pages/stock/StockDetail.tsx:344 -#: src/tables/build/BuildAllocatedStockTable.tsx:85 +#: src/tables/build/BuildAllocatedStockTable.tsx:82 #: src/tables/part/PartBuildAllocationsTable.tsx:45 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:157 #: src/tables/stock/StockTrackingTable.tsx:109 @@ -7143,7 +7206,7 @@ msgstr "Yapım Siparişi" #~ msgid "Build order created" #~ msgstr "Build order created" -#: src/pages/build/BuildIndex.tsx:29 +#: src/pages/build/BuildIndex.tsx:35 #: src/tables/build/BuildOrderTable.tsx:184 msgid "Show external build orders" msgstr "" @@ -7152,61 +7215,82 @@ msgstr "" #~ msgid "New Build Order" #~ msgstr "New Build Order" -#: src/pages/build/BuildIndex.tsx:83 -#: src/pages/purchasing/PurchasingIndex.tsx:69 -#: src/pages/sales/SalesIndex.tsx:92 -#: src/pages/sales/SalesIndex.tsx:125 +#: src/pages/build/BuildIndex.tsx:74 +#: src/pages/part/CategoryDetail.tsx:292 +#: src/pages/purchasing/PurchasingIndex.tsx:74 +#: src/pages/purchasing/PurchasingIndex.tsx:107 +#: src/pages/purchasing/PurchasingIndex.tsx:135 +#: src/pages/purchasing/PurchasingIndex.tsx:156 +#: src/pages/purchasing/PurchasingIndex.tsx:184 +#: src/pages/sales/SalesIndex.tsx:61 +#: src/pages/sales/SalesIndex.tsx:107 +#: src/pages/sales/SalesIndex.tsx:140 msgid "Table View" msgstr "" -#: src/pages/build/BuildIndex.tsx:86 -#: src/pages/purchasing/PurchasingIndex.tsx:72 -#: src/pages/sales/SalesIndex.tsx:95 -#: src/pages/sales/SalesIndex.tsx:128 +#: src/pages/build/BuildIndex.tsx:80 +#: src/pages/purchasing/PurchasingIndex.tsx:80 +#: src/pages/sales/SalesIndex.tsx:67 +#: src/pages/sales/SalesIndex.tsx:113 msgid "Calendar View" msgstr "" -#: src/pages/company/CompanyDetail.tsx:99 +#: src/pages/build/BuildIndex.tsx:86 +#: src/pages/part/CategoryDetail.tsx:306 +#: src/pages/purchasing/PurchasingIndex.tsx:92 +#: src/pages/purchasing/PurchasingIndex.tsx:118 +#: src/pages/purchasing/PurchasingIndex.tsx:141 +#: src/pages/purchasing/PurchasingIndex.tsx:167 +#: src/pages/purchasing/PurchasingIndex.tsx:190 +#: src/pages/sales/SalesIndex.tsx:79 +#: src/pages/sales/SalesIndex.tsx:125 +#: src/pages/sales/SalesIndex.tsx:151 +msgid "Parametric View" +msgstr "" + +#: src/pages/company/CompanyDetail.tsx:100 msgid "Website" msgstr "Web Sitesi" -#: src/pages/company/CompanyDetail.tsx:107 +#: src/pages/company/CompanyDetail.tsx:108 msgid "Phone Number" msgstr "Telefon Numarası" -#: src/pages/company/CompanyDetail.tsx:114 +#: src/pages/company/CompanyDetail.tsx:115 msgid "Email Address" msgstr "E-posta Adresi" -#: src/pages/company/CompanyDetail.tsx:121 +#: src/pages/company/CompanyDetail.tsx:122 msgid "Tax ID" msgstr "Vergi Numarası" -#: src/pages/company/CompanyDetail.tsx:131 +#: src/pages/company/CompanyDetail.tsx:132 msgid "Default Currency" msgstr "Varsayılan Para Birimi" -#: src/pages/company/CompanyDetail.tsx:142 +#: src/pages/company/CompanyDetail.tsx:143 #: src/pages/company/ManufacturerDetail.tsx:8 -#: src/pages/company/ManufacturerPartDetail.tsx:104 -#: src/pages/company/ManufacturerPartDetail.tsx:280 -#: src/pages/company/SupplierPartDetail.tsx:152 +#: src/pages/company/ManufacturerPartDetail.tsx:103 +#: src/pages/company/ManufacturerPartDetail.tsx:271 +#: src/pages/company/SupplierPartDetail.tsx:153 #: src/tables/Filter.tsx:347 #: src/tables/company/CompanyTable.tsx:101 #: src/tables/purchasing/SupplierPartTable.tsx:89 msgid "Manufacturer" msgstr "Üretici" -#: src/pages/company/CompanyDetail.tsx:148 +#: src/pages/company/CompanyDetail.tsx:149 #: src/pages/company/CustomerDetail.tsx:8 #: src/pages/part/pricing/SaleHistoryPanel.tsx:31 -#: src/pages/sales/ReturnOrderDetail.tsx:123 -#: src/pages/sales/SalesOrderDetail.tsx:113 -#: src/pages/sales/SalesOrderShipmentDetail.tsx:113 +#: src/pages/sales/ReturnOrderDetail.tsx:124 +#: src/pages/sales/SalesOrderDetail.tsx:114 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:111 #: src/pages/stock/StockDetail.tsx:370 #: src/tables/company/CompanyTable.tsx:106 +#: src/tables/sales/ReturnOrderParametricTable.tsx:32 #: src/tables/sales/ReturnOrderTable.tsx:108 -#: src/tables/sales/SalesOrderShipmentTable.tsx:111 +#: src/tables/sales/SalesOrderParametricTable.tsx:32 +#: src/tables/sales/SalesOrderShipmentTable.tsx:132 #: src/tables/sales/SalesOrderTable.tsx:133 #: src/tables/stock/StockTrackingTable.tsx:153 msgid "Customer" @@ -7216,11 +7300,11 @@ msgstr "Müşteri" #~ msgid "Edit company" #~ msgstr "Edit company" -#: src/pages/company/CompanyDetail.tsx:181 +#: src/pages/company/CompanyDetail.tsx:182 msgid "Company Details" msgstr "Şirket Detayları" -#: src/pages/company/CompanyDetail.tsx:187 +#: src/pages/company/CompanyDetail.tsx:188 msgid "Supplied Parts" msgstr "Sağlanan Parçalar" @@ -7228,79 +7312,79 @@ msgstr "Sağlanan Parçalar" #~ msgid "Delete company" #~ msgstr "Delete company" -#: src/pages/company/CompanyDetail.tsx:194 +#: src/pages/company/CompanyDetail.tsx:195 msgid "Manufactured Parts" msgstr "Üretilen Parçalar" -#: src/pages/company/CompanyDetail.tsx:241 +#: src/pages/company/CompanyDetail.tsx:242 msgid "Assigned Stock" msgstr "Atanan Parçalar" -#: src/pages/company/CompanyDetail.tsx:282 +#: src/pages/company/CompanyDetail.tsx:287 #: src/tables/company/CompanyTable.tsx:82 msgid "Edit Company" msgstr "Şirketi Düzenle" -#: src/pages/company/CompanyDetail.tsx:290 +#: src/pages/company/CompanyDetail.tsx:295 msgid "Delete Company" msgstr "Şirketi Sil" -#: src/pages/company/CompanyDetail.tsx:305 +#: src/pages/company/CompanyDetail.tsx:310 msgid "Company Actions" msgstr "Şirket Eylemleri" -#: src/pages/company/ManufacturerPartDetail.tsx:78 -#: src/pages/company/SupplierPartDetail.tsx:89 +#: src/pages/company/ManufacturerPartDetail.tsx:77 +#: src/pages/company/SupplierPartDetail.tsx:90 msgid "Internal Part" msgstr "Dahili Parça" -#: src/pages/company/ManufacturerPartDetail.tsx:112 +#: src/pages/company/ManufacturerPartDetail.tsx:111 msgid "Manufacturer Part Number" msgstr "Üretici Parça Numarası" -#: src/pages/company/ManufacturerPartDetail.tsx:129 -#: src/pages/company/SupplierPartDetail.tsx:113 +#: src/pages/company/ManufacturerPartDetail.tsx:128 +#: src/pages/company/SupplierPartDetail.tsx:114 msgid "External Link" msgstr "Harici Bağlantı" -#: src/pages/company/ManufacturerPartDetail.tsx:148 -#: src/pages/company/SupplierPartDetail.tsx:232 +#: src/pages/company/ManufacturerPartDetail.tsx:147 +#: src/pages/company/SupplierPartDetail.tsx:233 #: src/pages/part/PartDetail.tsx:787 msgid "Part Details" msgstr "Parça Ayrıntıları" -#: src/pages/company/ManufacturerPartDetail.tsx:151 +#: src/pages/company/ManufacturerPartDetail.tsx:150 msgid "Manufacturer Details" msgstr "Üretici Ayrıntıları" -#: src/pages/company/ManufacturerPartDetail.tsx:160 +#: src/pages/company/ManufacturerPartDetail.tsx:159 msgid "Manufacturer Part Details" msgstr "Üretici Parçası Ayrıntıları" -#: src/pages/company/ManufacturerPartDetail.tsx:178 -#: src/pages/company/SupplierPartDetail.tsx:252 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:381 +#: src/pages/company/ManufacturerPartDetail.tsx:165 +#: src/pages/company/SupplierPartDetail.tsx:253 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:382 msgid "Received Stock" msgstr "Alınan Stok" -#: src/pages/company/ManufacturerPartDetail.tsx:220 +#: src/pages/company/ManufacturerPartDetail.tsx:211 #: src/tables/purchasing/ManufacturerPartTable.tsx:108 msgid "Edit Manufacturer Part" msgstr "Üretici Parçasını Düzenle" -#: src/pages/company/ManufacturerPartDetail.tsx:227 +#: src/pages/company/ManufacturerPartDetail.tsx:218 #: src/tables/purchasing/ManufacturerPartTable.tsx:96 #: src/tables/purchasing/ManufacturerPartTable.tsx:115 #: src/tables/purchasing/ManufacturerPartTable.tsx:156 msgid "Add Manufacturer Part" msgstr "Üretici Parçası Ekle" -#: src/pages/company/ManufacturerPartDetail.tsx:239 +#: src/pages/company/ManufacturerPartDetail.tsx:230 #: src/tables/purchasing/ManufacturerPartTable.tsx:126 msgid "Delete Manufacturer Part" msgstr "Üretici Parçasını Sil" -#: src/pages/company/ManufacturerPartDetail.tsx:254 +#: src/pages/company/ManufacturerPartDetail.tsx:245 msgid "Manufacturer Part Actions" msgstr "Üretici Parçası Eylemleri" @@ -7308,12 +7392,12 @@ msgstr "Üretici Parçası Eylemleri" #~ msgid "ManufacturerPart" #~ msgstr "ManufacturerPart" -#: src/pages/company/SupplierPartDetail.tsx:104 +#: src/pages/company/SupplierPartDetail.tsx:105 #: src/tables/part/RelatedPartTable.tsx:82 msgid "Part Description" msgstr "Parça Açıklaması" -#: src/pages/company/SupplierPartDetail.tsx:179 +#: src/pages/company/SupplierPartDetail.tsx:180 #: src/tables/part/PartPurchaseOrdersTable.tsx:73 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:191 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:233 @@ -7321,50 +7405,50 @@ msgstr "Parça Açıklaması" msgid "Pack Quantity" msgstr "Paket Miktarı" -#: src/pages/company/SupplierPartDetail.tsx:204 +#: src/pages/company/SupplierPartDetail.tsx:205 msgid "Supplier Availability" msgstr "Sağlayıcı Kullanılabilirliği" -#: src/pages/company/SupplierPartDetail.tsx:212 +#: src/pages/company/SupplierPartDetail.tsx:213 msgid "Availability Updated" msgstr "Kullanılabilirlik Güncellendi" -#: src/pages/company/SupplierPartDetail.tsx:237 +#: src/pages/company/SupplierPartDetail.tsx:238 msgid "Availability" msgstr "Kullanılabilirlik" -#: src/pages/company/SupplierPartDetail.tsx:246 +#: src/pages/company/SupplierPartDetail.tsx:247 msgid "Supplier Part Details" msgstr "Sağlayıcı Parça Ayrıntıları" -#: src/pages/company/SupplierPartDetail.tsx:279 +#: src/pages/company/SupplierPartDetail.tsx:280 #: src/pages/part/PartPricingPanel.tsx:113 #: src/pages/part/pricing/PricingOverviewPanel.tsx:239 msgid "Supplier Pricing" msgstr "Sağlayıcı Fiyatlandırması" -#: src/pages/company/SupplierPartDetail.tsx:308 +#: src/pages/company/SupplierPartDetail.tsx:313 msgid "Supplier Part Actions" msgstr "Sağlayıcı Parçası Eylemleri" -#: src/pages/company/SupplierPartDetail.tsx:332 +#: src/pages/company/SupplierPartDetail.tsx:337 #: src/tables/purchasing/SupplierPartTable.tsx:244 msgid "Edit Supplier Part" msgstr "Sağlayıcı Parçasını Düzenle" -#: src/pages/company/SupplierPartDetail.tsx:340 +#: src/pages/company/SupplierPartDetail.tsx:345 #: src/tables/purchasing/SupplierPartTable.tsx:264 msgid "Delete Supplier Part" msgstr "Sağlayıcı Parçasını Sil" -#: src/pages/company/SupplierPartDetail.tsx:348 +#: src/pages/company/SupplierPartDetail.tsx:353 #: src/tables/purchasing/SupplierPartTable.tsx:172 #: src/tables/purchasing/SupplierPartTable.tsx:251 msgid "Add Supplier Part" msgstr "Sağlayıcı Parçası Ekle" -#: src/pages/company/SupplierPartDetail.tsx:388 -#: src/pages/part/PartDetail.tsx:1003 +#: src/pages/company/SupplierPartDetail.tsx:393 +#: src/pages/part/PartDetail.tsx:1018 msgid "No Stock" msgstr "Stok Yok" @@ -7411,83 +7495,83 @@ msgstr "Kullanıcı Detayları" msgid "Basic user" msgstr "Temel kullanıcı" -#: src/pages/part/CategoryDetail.tsx:100 +#: src/pages/part/CategoryDetail.tsx:103 #: src/pages/stock/LocationDetail.tsx:94 #: src/tables/settings/ErrorTable.tsx:63 #: src/tables/settings/ErrorTable.tsx:108 msgid "Path" msgstr "Yol" -#: src/pages/part/CategoryDetail.tsx:116 +#: src/pages/part/CategoryDetail.tsx:119 msgid "Parent Category" msgstr "Üst Sınıf" -#: src/pages/part/CategoryDetail.tsx:139 -#: src/pages/part/CategoryDetail.tsx:271 +#: src/pages/part/CategoryDetail.tsx:142 +#: src/pages/part/CategoryDetail.tsx:279 msgid "Subcategories" msgstr "Alt sınıflar" -#: src/pages/part/CategoryDetail.tsx:146 +#: src/pages/part/CategoryDetail.tsx:149 #: src/pages/stock/LocationDetail.tsx:134 #: src/tables/part/PartCategoryTable.tsx:89 #: src/tables/stock/StockLocationTable.tsx:43 msgid "Structural" msgstr "Yapısal" -#: src/pages/part/CategoryDetail.tsx:152 +#: src/pages/part/CategoryDetail.tsx:155 msgid "Parent default location" msgstr "Varsayılan üst konum" -#: src/pages/part/CategoryDetail.tsx:159 +#: src/pages/part/CategoryDetail.tsx:162 msgid "Default location" msgstr "Varsayılan konum" -#: src/pages/part/CategoryDetail.tsx:170 +#: src/pages/part/CategoryDetail.tsx:173 msgid "Top level part category" msgstr "En üst düzey parça sınıfı" -#: src/pages/part/CategoryDetail.tsx:180 -#: src/pages/part/CategoryDetail.tsx:248 +#: src/pages/part/CategoryDetail.tsx:183 +#: src/pages/part/CategoryDetail.tsx:251 #: src/tables/part/PartCategoryTable.tsx:122 msgid "Edit Part Category" msgstr "Parça Sınıfını Düzenle" -#: src/pages/part/CategoryDetail.tsx:189 +#: src/pages/part/CategoryDetail.tsx:192 msgid "Move items to parent category" msgstr "" -#: src/pages/part/CategoryDetail.tsx:193 +#: src/pages/part/CategoryDetail.tsx:196 #: src/pages/stock/LocationDetail.tsx:226 msgid "Delete items" msgstr "Ögeleri sil" -#: src/pages/part/CategoryDetail.tsx:201 -#: src/pages/part/CategoryDetail.tsx:253 +#: src/pages/part/CategoryDetail.tsx:204 +#: src/pages/part/CategoryDetail.tsx:256 msgid "Delete Part Category" msgstr "Parça Sınıfını Sil" -#: src/pages/part/CategoryDetail.tsx:204 +#: src/pages/part/CategoryDetail.tsx:207 msgid "Parts Action" msgstr "Parçalar Eylemi" -#: src/pages/part/CategoryDetail.tsx:205 +#: src/pages/part/CategoryDetail.tsx:208 msgid "Action for parts in this category" msgstr "Bu sınıftaki parçalar için eylem" -#: src/pages/part/CategoryDetail.tsx:211 +#: src/pages/part/CategoryDetail.tsx:214 msgid "Child Categories Action" msgstr "Alt Sınıflar Eylemi" -#: src/pages/part/CategoryDetail.tsx:212 +#: src/pages/part/CategoryDetail.tsx:215 msgid "Action for child categories in this category" msgstr "Bu sınıftaki alt sınıflar için eylem" -#: src/pages/part/CategoryDetail.tsx:244 +#: src/pages/part/CategoryDetail.tsx:247 #: src/tables/part/PartCategoryTable.tsx:143 msgid "Category Actions" msgstr "Sınıf Eylemleri" -#: src/pages/part/CategoryDetail.tsx:265 +#: src/pages/part/CategoryDetail.tsx:273 msgid "Category Details" msgstr "Sınıf Ayrıntıları" @@ -7585,7 +7669,6 @@ msgid "Category Default Location" msgstr "Sınıfın Varsayılan Konumu" #: src/pages/part/PartDetail.tsx:507 -#: src/tables/purchasing/ManufacturerPartParameterTable.tsx:48 msgid "Units" msgstr "Birim" @@ -7600,7 +7683,7 @@ msgstr "Anahtar Sözcükler" #: src/pages/part/PartDetail.tsx:542 #: src/tables/bom/BomTable.tsx:439 -#: src/tables/build/BuildLineTable.tsx:305 +#: src/tables/build/BuildLineTable.tsx:306 #: src/tables/part/PartTable.tsx:319 #: src/tables/sales/SalesOrderLineItemTable.tsx:138 msgid "Available Stock" @@ -7608,7 +7691,7 @@ msgstr "Mevcut Stok" #: src/pages/part/PartDetail.tsx:548 #: src/tables/bom/BomTable.tsx:341 -#: src/tables/build/BuildLineTable.tsx:267 +#: src/tables/build/BuildLineTable.tsx:268 #: src/tables/sales/SalesOrderLineItemTable.tsx:180 msgid "On order" msgstr "Siparişte" @@ -7634,7 +7717,7 @@ msgstr "Minimum Stok" #~ msgstr "Scheduling" #: src/pages/part/PartDetail.tsx:620 -#: src/tables/part/ParametricPartTable.tsx:359 +#: src/tables/part/ParametricPartTable.tsx:24 #: src/tables/part/PartTable.tsx:203 msgid "Locked" msgstr "Kilitli" @@ -7671,16 +7754,16 @@ msgid "Saleable Part" msgstr "Satılabilir Parça" #: src/pages/part/PartDetail.tsx:663 -#: src/pages/part/PartDetail.tsx:1033 +#: src/pages/part/PartDetail.tsx:1054 #: src/tables/bom/BomTable.tsx:150 #: src/tables/bom/BomTable.tsx:434 msgid "Virtual Part" msgstr "Sanal Parça" #: src/pages/part/PartDetail.tsx:678 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:271 -#: src/pages/sales/ReturnOrderDetail.tsx:249 -#: src/pages/sales/SalesOrderDetail.tsx:242 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:272 +#: src/pages/sales/ReturnOrderDetail.tsx:250 +#: src/pages/sales/SalesOrderDetail.tsx:243 #: src/tables/ColumnRenderers.tsx:502 msgid "Creation Date" msgstr "Oluşturma Tarihi" @@ -7718,35 +7801,46 @@ msgstr "Son Seri Numarası" msgid "Select Part Revision" msgstr "Parça Revizyonu Seç" -#: src/pages/part/PartDetail.tsx:823 +#: src/pages/part/PartDetail.tsx:812 msgid "Variants" msgstr "Türevler" -#: src/pages/part/PartDetail.tsx:830 +#: src/pages/part/PartDetail.tsx:819 #: src/pages/stock/StockDetail.tsx:542 msgid "Allocations" msgstr "Ayırmalar" -#: src/pages/part/PartDetail.tsx:837 +#: src/pages/part/PartDetail.tsx:826 msgid "Bill of Materials" msgstr "Malzeme Listesi" -#: src/pages/part/PartDetail.tsx:849 +#: src/pages/part/PartDetail.tsx:838 msgid "Used In" msgstr "Şunda Kullanıldı" -#: src/pages/part/PartDetail.tsx:856 +#: src/pages/part/PartDetail.tsx:845 msgid "Part Pricing" msgstr "Parça Fiyatlandırma" -#: src/pages/part/PartDetail.tsx:926 +#: src/pages/part/PartDetail.tsx:915 msgid "Test Templates" msgstr "Test Şablonları" -#: src/pages/part/PartDetail.tsx:948 +#: src/pages/part/PartDetail.tsx:937 msgid "Related Parts" msgstr "İlgili Parçalar" +#: src/pages/part/PartDetail.tsx:949 +#: src/tables/ColumnRenderers.tsx:73 +#: src/tables/bom/BomTable.tsx:657 +#: src/tables/part/PartTestTemplateTable.tsx:258 +msgid "Part is Locked" +msgstr "Parça Kilitli" + +#: src/pages/part/PartDetail.tsx:954 +msgid "Part parameters cannot be edited, as the part is locked" +msgstr "Parça kilitli olduğundan bu parçanın parametreleri düzenlenemez" + #: src/pages/part/PartDetail.tsx:956 #~ msgid "Count part stock" #~ msgstr "Count part stock" @@ -7755,42 +7849,46 @@ msgstr "İlgili Parçalar" #~ msgid "Transfer part stock" #~ msgstr "Transfer part stock" -#: src/pages/part/PartDetail.tsx:1009 +#: src/pages/part/PartDetail.tsx:1024 #: src/tables/part/PartTestTemplateTable.tsx:112 #: src/tables/stock/StockItemTestResultTable.tsx:404 msgid "Required" msgstr "Gerekli" -#: src/pages/part/PartDetail.tsx:1058 +#: src/pages/part/PartDetail.tsx:1042 +msgid "Deficit" +msgstr "" + +#: src/pages/part/PartDetail.tsx:1079 #: src/tables/part/PartTable.tsx:396 #: src/tables/part/PartTable.tsx:449 msgid "Add Part" msgstr "Parça Ekle" -#: src/pages/part/PartDetail.tsx:1072 +#: src/pages/part/PartDetail.tsx:1093 msgid "Delete Part" msgstr "Parçayı Sil" -#: src/pages/part/PartDetail.tsx:1081 +#: src/pages/part/PartDetail.tsx:1102 msgid "Deleting this part cannot be reversed" msgstr "Bu parçanın silinmesi geri alınamaz" -#: src/pages/part/PartDetail.tsx:1143 +#: src/pages/part/PartDetail.tsx:1164 #: src/pages/stock/StockDetail.tsx:883 msgid "Order" msgstr "Emir" -#: src/pages/part/PartDetail.tsx:1144 +#: src/pages/part/PartDetail.tsx:1165 #: src/pages/stock/StockDetail.tsx:884 -#: src/tables/build/BuildLineTable.tsx:761 +#: src/tables/build/BuildLineTable.tsx:768 msgid "Order Stock" msgstr "Stok Sipariş Et" -#: src/pages/part/PartDetail.tsx:1156 +#: src/pages/part/PartDetail.tsx:1177 msgid "Search by serial number" msgstr "Seri numarasına göre ara" -#: src/pages/part/PartDetail.tsx:1164 +#: src/pages/part/PartDetail.tsx:1185 #: src/tables/part/PartTable.tsx:506 msgid "Part Actions" msgstr "Parça Eylemleri" @@ -8039,7 +8137,7 @@ msgstr "Satın Alma Fiyatlandırması" #: src/pages/part/pricing/PricingOverviewPanel.tsx:288 #: src/pages/stock/StockDetail.tsx:426 -#: src/tables/part/PartParameterTable.tsx:121 +#: src/tables/general/ParameterTable.tsx:101 #: src/tables/stock/StockItemTable.tsx:300 msgid "Last Updated" msgstr "Son Güncelle" @@ -8107,17 +8205,17 @@ msgstr "Sağlayıcı Fiyatı" msgid "Variant Part" msgstr "Türev Parça" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:89 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:90 msgid "Edit Purchase Order" msgstr "Satın Alma Siparişini Düzenle" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:125 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:126 #: src/tables/purchasing/PurchaseOrderTable.tsx:154 #: src/tables/purchasing/PurchaseOrderTable.tsx:167 msgid "Add Purchase Order" msgstr "Satın Alma Siparişi Ekle" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:147 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:148 msgid "Supplier Reference" msgstr "Sağlayıcı Referansı" @@ -8127,20 +8225,20 @@ msgstr "Sağlayıcı Referansı" #~ msgid "Order Currency," #~ msgstr "Order Currency," -#: src/pages/purchasing/PurchaseOrderDetail.tsx:187 -#: src/pages/sales/ReturnOrderDetail.tsx:160 -#: src/pages/sales/SalesOrderDetail.tsx:144 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:188 +#: src/pages/sales/ReturnOrderDetail.tsx:161 +#: src/pages/sales/SalesOrderDetail.tsx:145 msgid "Completed Line Items" msgstr "Tamamlanan Satır Ögeleri" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:196 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:197 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:272 msgid "Destination" msgstr "Hedef" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:202 -#: src/pages/sales/ReturnOrderDetail.tsx:167 -#: src/pages/sales/SalesOrderDetail.tsx:161 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:203 +#: src/pages/sales/ReturnOrderDetail.tsx:168 +#: src/pages/sales/SalesOrderDetail.tsx:162 msgid "Order Currency" msgstr "Sipariş Para Birimi" @@ -8150,97 +8248,97 @@ msgstr "Sipariş Para Birimi" #~ msgid "Created On" #~ msgstr "Created On" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:208 -#: src/pages/sales/ReturnOrderDetail.tsx:174 -#: src/pages/sales/SalesOrderDetail.tsx:167 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:209 +#: src/pages/sales/ReturnOrderDetail.tsx:175 +#: src/pages/sales/SalesOrderDetail.tsx:168 msgid "Total Cost" msgstr "Toplam Tutar" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:237 -#: src/pages/sales/ReturnOrderDetail.tsx:215 -#: src/pages/sales/SalesOrderDetail.tsx:208 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:238 +#: src/pages/sales/ReturnOrderDetail.tsx:216 +#: src/pages/sales/SalesOrderDetail.tsx:209 msgid "Contact Email" msgstr "İletişim E-postası" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:245 -#: src/pages/sales/ReturnOrderDetail.tsx:223 -#: src/pages/sales/SalesOrderDetail.tsx:216 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:246 +#: src/pages/sales/ReturnOrderDetail.tsx:224 +#: src/pages/sales/SalesOrderDetail.tsx:217 msgid "Contact Phone" msgstr "İletişim Telefonu" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:278 -#: src/pages/sales/ReturnOrderDetail.tsx:257 -#: src/pages/sales/SalesOrderDetail.tsx:249 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:279 +#: src/pages/sales/ReturnOrderDetail.tsx:258 +#: src/pages/sales/SalesOrderDetail.tsx:250 msgid "Issue Date" msgstr "" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:303 -#: src/pages/sales/ReturnOrderDetail.tsx:281 -#: src/pages/sales/SalesOrderDetail.tsx:272 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:304 +#: src/pages/sales/ReturnOrderDetail.tsx:282 +#: src/pages/sales/SalesOrderDetail.tsx:273 #: src/tables/ColumnRenderers.tsx:510 #: src/tables/build/BuildOrderTable.tsx:137 #: src/tables/part/PartPurchaseOrdersTable.tsx:106 msgid "Completion Date" msgstr "" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:333 -#: src/pages/sales/ReturnOrderDetail.tsx:311 -#: src/pages/sales/SalesOrderDetail.tsx:349 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:334 +#: src/pages/sales/ReturnOrderDetail.tsx:312 +#: src/pages/sales/SalesOrderDetail.tsx:350 msgid "Order Details" msgstr "Sipariş Ayrıntıları" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:339 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:348 -#: src/pages/sales/ReturnOrderDetail.tsx:153 -#: src/pages/sales/ReturnOrderDetail.tsx:317 -#: src/pages/sales/ReturnOrderDetail.tsx:326 -#: src/pages/sales/SalesOrderDetail.tsx:355 -#: src/pages/sales/SalesOrderDetail.tsx:364 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:340 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:349 +#: src/pages/sales/ReturnOrderDetail.tsx:154 +#: src/pages/sales/ReturnOrderDetail.tsx:318 +#: src/pages/sales/ReturnOrderDetail.tsx:327 +#: src/pages/sales/SalesOrderDetail.tsx:356 +#: src/pages/sales/SalesOrderDetail.tsx:365 msgid "Line Items" msgstr "Satır Ögeleri" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:363 -#: src/pages/sales/ReturnOrderDetail.tsx:341 -#: src/pages/sales/SalesOrderDetail.tsx:378 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:364 +#: src/pages/sales/ReturnOrderDetail.tsx:342 +#: src/pages/sales/SalesOrderDetail.tsx:379 msgid "Extra Line Items" msgstr "Fazladan Satır Ögeleri" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:405 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:410 msgid "Issue Purchase Order" msgstr "Satın Alma Siparişi Ver" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:413 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:418 msgid "Cancel Purchase Order" msgstr "Satın Alma Siparişini İptal Et" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:421 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:426 msgid "Hold Purchase Order" msgstr "Satın Alma Siparişini Beklet" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:429 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:434 msgid "Complete Purchase Order" msgstr "Satın Alma Siparişini Tamamla" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:485 -#: src/pages/sales/ReturnOrderDetail.tsx:496 -#: src/pages/sales/SalesOrderDetail.tsx:549 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:490 +#: src/pages/sales/ReturnOrderDetail.tsx:501 +#: src/pages/sales/SalesOrderDetail.tsx:554 msgid "Order Actions" msgstr "Sipariş Eylemleri" -#: src/pages/sales/ReturnOrderDetail.tsx:114 -#: src/pages/sales/SalesOrderDetail.tsx:104 -#: src/pages/sales/SalesOrderShipmentDetail.tsx:134 +#: src/pages/sales/ReturnOrderDetail.tsx:115 +#: src/pages/sales/SalesOrderDetail.tsx:105 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:132 #: src/tables/sales/SalesOrderTable.tsx:141 msgid "Customer Reference" msgstr "Müşteri Referansı" -#: src/pages/sales/ReturnOrderDetail.tsx:195 +#: src/pages/sales/ReturnOrderDetail.tsx:196 msgid "Return Address" msgstr "" -#: src/pages/sales/ReturnOrderDetail.tsx:201 -#: src/pages/sales/SalesOrderDetail.tsx:194 -#: src/pages/sales/SalesOrderShipmentDetail.tsx:181 +#: src/pages/sales/ReturnOrderDetail.tsx:202 +#: src/pages/sales/SalesOrderDetail.tsx:195 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:179 msgid "Not specified" msgstr "" @@ -8248,117 +8346,117 @@ msgstr "" #~ msgid "Order canceled" #~ msgstr "Order canceled" -#: src/pages/sales/ReturnOrderDetail.tsx:389 +#: src/pages/sales/ReturnOrderDetail.tsx:394 msgid "Edit Return Order" msgstr "İade Emrini Düzenle" -#: src/pages/sales/ReturnOrderDetail.tsx:407 +#: src/pages/sales/ReturnOrderDetail.tsx:412 #: src/tables/sales/ReturnOrderTable.tsx:154 #: src/tables/sales/ReturnOrderTable.tsx:167 msgid "Add Return Order" msgstr "İade Emri Ekle" -#: src/pages/sales/ReturnOrderDetail.tsx:416 +#: src/pages/sales/ReturnOrderDetail.tsx:421 msgid "Issue Return Order" msgstr "İade Emri Ver" -#: src/pages/sales/ReturnOrderDetail.tsx:424 +#: src/pages/sales/ReturnOrderDetail.tsx:429 msgid "Cancel Return Order" msgstr "İade Emrini İptal Et" -#: src/pages/sales/ReturnOrderDetail.tsx:432 +#: src/pages/sales/ReturnOrderDetail.tsx:437 msgid "Hold Return Order" msgstr "İade Emrini Beklet" -#: src/pages/sales/ReturnOrderDetail.tsx:440 +#: src/pages/sales/ReturnOrderDetail.tsx:445 msgid "Complete Return Order" msgstr "İade Emrini Tamamla" -#: src/pages/sales/SalesOrderDetail.tsx:153 +#: src/pages/sales/SalesOrderDetail.tsx:154 msgid "Completed Shipments" msgstr "Tamamlanan Gönderiler" -#: src/pages/sales/SalesOrderDetail.tsx:188 -#: src/pages/sales/SalesOrderShipmentDetail.tsx:170 +#: src/pages/sales/SalesOrderDetail.tsx:189 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:168 msgid "Shipping Address" msgstr "" -#: src/pages/sales/SalesOrderDetail.tsx:316 +#: src/pages/sales/SalesOrderDetail.tsx:317 msgid "Edit Sales Order" msgstr "Satış Siparişlerini Düzenle" -#: src/pages/sales/SalesOrderDetail.tsx:338 +#: src/pages/sales/SalesOrderDetail.tsx:339 #: src/tables/sales/SalesOrderTable.tsx:108 #: src/tables/sales/SalesOrderTable.tsx:121 msgid "Add Sales Order" msgstr "Satış Siparişi Ekle" -#: src/pages/sales/SalesOrderDetail.tsx:396 +#: src/pages/sales/SalesOrderDetail.tsx:397 #: src/tables/sales/SalesOrderTable.tsx:147 msgid "Shipments" msgstr "Gönderiler" -#: src/pages/sales/SalesOrderDetail.tsx:443 +#: src/pages/sales/SalesOrderDetail.tsx:448 msgid "Issue Sales Order" msgstr "Satış Siparişi Ver" -#: src/pages/sales/SalesOrderDetail.tsx:451 +#: src/pages/sales/SalesOrderDetail.tsx:456 msgid "Cancel Sales Order" msgstr "Satış Siparişini İptal Et" -#: src/pages/sales/SalesOrderDetail.tsx:459 +#: src/pages/sales/SalesOrderDetail.tsx:464 msgid "Hold Sales Order" msgstr "Satış Siparişini Beklet" -#: src/pages/sales/SalesOrderDetail.tsx:467 +#: src/pages/sales/SalesOrderDetail.tsx:472 msgid "Ship Sales Order" msgstr "" -#: src/pages/sales/SalesOrderDetail.tsx:469 +#: src/pages/sales/SalesOrderDetail.tsx:474 msgid "Ship this order?" msgstr "" -#: src/pages/sales/SalesOrderDetail.tsx:470 +#: src/pages/sales/SalesOrderDetail.tsx:475 msgid "Order shipped" msgstr "" -#: src/pages/sales/SalesOrderDetail.tsx:478 +#: src/pages/sales/SalesOrderDetail.tsx:483 msgid "Complete Sales Order" msgstr "Satış Siparişini Tamamla" -#: src/pages/sales/SalesOrderDetail.tsx:523 +#: src/pages/sales/SalesOrderDetail.tsx:528 msgid "Ship Order" msgstr "Siparişi Gönder" -#: src/pages/sales/SalesOrderShipmentDetail.tsx:142 -#: src/tables/sales/SalesOrderShipmentTable.tsx:135 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:140 +#: src/tables/sales/SalesOrderShipmentTable.tsx:156 msgid "Shipment Reference" msgstr "Gönderi Referansı" -#: src/pages/sales/SalesOrderShipmentDetail.tsx:148 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:146 msgid "Tracking Number" msgstr "" -#: src/pages/sales/SalesOrderShipmentDetail.tsx:156 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:154 msgid "Invoice Number" msgstr "" -#: src/pages/sales/SalesOrderShipmentDetail.tsx:191 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:189 msgid "Allocated Items" msgstr "" -#: src/pages/sales/SalesOrderShipmentDetail.tsx:196 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:194 msgid "Checked By" msgstr "" -#: src/pages/sales/SalesOrderShipmentDetail.tsx:202 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:200 msgid "Not checked" msgstr "" -#: src/pages/sales/SalesOrderShipmentDetail.tsx:208 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:206 #: src/tables/ColumnRenderers.tsx:518 #: src/tables/sales/SalesOrderAllocationTable.tsx:182 -#: src/tables/sales/SalesOrderShipmentTable.tsx:168 +#: src/tables/sales/SalesOrderShipmentTable.tsx:189 msgid "Shipment Date" msgstr "Gönderim Tarihi" @@ -8366,108 +8464,82 @@ msgstr "Gönderim Tarihi" #~ msgid "Assigned Items" #~ msgstr "Assigned Items" -#: src/pages/sales/SalesOrderShipmentDetail.tsx:216 -#: src/tables/sales/SalesOrderShipmentTable.tsx:172 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:214 +#: src/tables/sales/SalesOrderShipmentTable.tsx:193 msgid "Delivery Date" msgstr "Teslimat Tarihi" -#: src/pages/sales/SalesOrderShipmentDetail.tsx:255 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:253 msgid "Shipment Details" msgstr "" -#: src/pages/sales/SalesOrderShipmentDetail.tsx:294 -#: src/pages/sales/SalesOrderShipmentDetail.tsx:438 -#: src/tables/sales/SalesOrderShipmentTable.tsx:90 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:292 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:406 +#: src/tables/sales/SalesOrderShipmentTable.tsx:97 msgid "Edit Shipment" msgstr "Gönderiyi Düzenle" -#: src/pages/sales/SalesOrderShipmentDetail.tsx:301 -#: src/pages/sales/SalesOrderShipmentDetail.tsx:457 -#: src/tables/sales/SalesOrderShipmentTable.tsx:82 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:299 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:425 +#: src/tables/sales/SalesOrderShipmentTable.tsx:89 msgid "Cancel Shipment" msgstr "" -#: src/pages/sales/SalesOrderShipmentDetail.tsx:314 -#: src/tables/sales/SalesOrderShipmentTable.tsx:98 -#: src/tables/sales/SalesOrderShipmentTable.tsx:193 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:312 +#: src/tables/sales/SalesOrderShipmentTable.tsx:119 +#: src/tables/sales/SalesOrderShipmentTable.tsx:238 msgid "Complete Shipment" msgstr "Gönderiyi Tamamla" -#: src/pages/sales/SalesOrderShipmentDetail.tsx:326 -#: src/pages/sales/SalesOrderShipmentDetail.tsx:328 -msgid "Check Shipment" -msgstr "" - -#: src/pages/sales/SalesOrderShipmentDetail.tsx:329 -msgid "Marking the shipment as checked indicates that you have verified that all items included in this shipment are correct" -msgstr "" - #: src/pages/sales/SalesOrderShipmentDetail.tsx:339 -msgid "Shipment marked as checked" -msgstr "" - -#: src/pages/sales/SalesOrderShipmentDetail.tsx:346 -#: src/pages/sales/SalesOrderShipmentDetail.tsx:348 -msgid "Uncheck Shipment" -msgstr "" - -#: src/pages/sales/SalesOrderShipmentDetail.tsx:349 -msgid "Marking the shipment as unchecked indicates that the shipment requires further verification" -msgstr "" - -#: src/pages/sales/SalesOrderShipmentDetail.tsx:359 -msgid "Shipment marked as unchecked" -msgstr "" - -#: src/pages/sales/SalesOrderShipmentDetail.tsx:371 #: src/tables/part/PartPurchaseOrdersTable.tsx:122 msgid "Pending" msgstr "Bekliyor" -#: src/pages/sales/SalesOrderShipmentDetail.tsx:377 -#: src/tables/sales/SalesOrderShipmentTable.tsx:147 -#: src/tables/sales/SalesOrderShipmentTable.tsx:254 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:345 +#: src/tables/sales/SalesOrderShipmentTable.tsx:168 +#: src/tables/sales/SalesOrderShipmentTable.tsx:299 msgid "Checked" msgstr "Kontrol edildi" -#: src/pages/sales/SalesOrderShipmentDetail.tsx:383 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:351 msgid "Not Checked" msgstr "Kontrol Edilmedi" -#: src/pages/sales/SalesOrderShipmentDetail.tsx:389 -#: src/tables/sales/SalesOrderShipmentTable.tsx:154 -#: src/tables/sales/SalesOrderShipmentTable.tsx:259 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:357 +#: src/tables/sales/SalesOrderShipmentTable.tsx:175 +#: src/tables/sales/SalesOrderShipmentTable.tsx:304 msgid "Shipped" msgstr "Gönderildi" -#: src/pages/sales/SalesOrderShipmentDetail.tsx:395 -#: src/tables/sales/SalesOrderShipmentTable.tsx:161 -#: src/tables/sales/SalesOrderShipmentTable.tsx:264 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:363 +#: src/tables/sales/SalesOrderShipmentTable.tsx:182 +#: src/tables/sales/SalesOrderShipmentTable.tsx:309 #: src/tables/settings/EmailTable.tsx:31 msgid "Delivered" msgstr "Teslim Edildi" -#: src/pages/sales/SalesOrderShipmentDetail.tsx:410 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:378 msgid "Send Shipment" msgstr "Teslimatı Gönder" -#: src/pages/sales/SalesOrderShipmentDetail.tsx:433 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:401 msgid "Shipment Actions" msgstr "" -#: src/pages/sales/SalesOrderShipmentDetail.tsx:442 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:410 msgid "Check" msgstr "" -#: src/pages/sales/SalesOrderShipmentDetail.tsx:443 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:411 msgid "Mark shipment as checked" msgstr "" -#: src/pages/sales/SalesOrderShipmentDetail.tsx:449 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:417 msgid "Uncheck" msgstr "" -#: src/pages/sales/SalesOrderShipmentDetail.tsx:450 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:418 msgid "Mark shipment as unchecked" msgstr "" @@ -8775,13 +8847,6 @@ msgstr "" msgid "Part is not active" msgstr "Parça etkin değil" -#: src/tables/ColumnRenderers.tsx:73 -#: src/tables/bom/BomTable.tsx:657 -#: src/tables/part/PartParameterTable.tsx:227 -#: src/tables/part/PartTestTemplateTable.tsx:258 -msgid "Part is Locked" -msgstr "Parça Kilitli" - #: src/tables/ColumnRenderers.tsx:78 msgid "You are subscribed to notifications for this part" msgstr "" @@ -9219,13 +9284,13 @@ msgstr "" #~ msgstr "Show asssmbled items" #: src/tables/bom/BomTable.tsx:315 -#: src/tables/build/BuildLineTable.tsx:276 +#: src/tables/build/BuildLineTable.tsx:277 #: src/tables/part/PartTable.tsx:145 msgid "External stock" msgstr "Harici stok" #: src/tables/bom/BomTable.tsx:323 -#: src/tables/build/BuildLineTable.tsx:239 +#: src/tables/build/BuildLineTable.tsx:240 msgid "Includes substitute stock" msgstr "Yedek stok içerir" @@ -9234,7 +9299,7 @@ msgstr "Yedek stok içerir" #~ msgstr "Edit Bom Item" #: src/tables/bom/BomTable.tsx:332 -#: src/tables/build/BuildLineTable.tsx:249 +#: src/tables/build/BuildLineTable.tsx:250 #: src/tables/sales/SalesOrderLineItemTable.tsx:166 msgid "Includes variant stock" msgstr "Türev stok içerir" @@ -9272,8 +9337,8 @@ msgid "Stock Information" msgstr "Stok Bilgisi" #: src/tables/bom/BomTable.tsx:399 -#: src/tables/build/BuildLineTable.tsx:496 -#: src/tables/build/BuildLineTable.tsx:537 +#: src/tables/build/BuildLineTable.tsx:497 +#: src/tables/build/BuildLineTable.tsx:538 msgid "Consumable item" msgstr "Tüketilebilir öge" @@ -9282,7 +9347,7 @@ msgid "No available stock" msgstr "Yetersiz stok" #: src/tables/bom/BomTable.tsx:420 -#: src/tables/build/BuildLineTable.tsx:213 +#: src/tables/build/BuildLineTable.tsx:214 msgid "Show testable items" msgstr "Test edilebilir ögeleri göster" @@ -9291,7 +9356,7 @@ msgid "Show trackable items" msgstr "İzlenebilir ögeleri göster" #: src/tables/bom/BomTable.tsx:430 -#: src/tables/build/BuildLineTable.tsx:208 +#: src/tables/build/BuildLineTable.tsx:209 msgid "Show assembled items" msgstr "Birleştirilmiş ögeleri göster" @@ -9335,7 +9400,7 @@ msgstr "Türev değişimine izin veren ögeleri göster" #: src/tables/bom/BomTable.tsx:464 #: src/tables/bom/UsedInTable.tsx:85 -#: src/tables/build/BuildLineTable.tsx:202 +#: src/tables/build/BuildLineTable.tsx:203 msgid "Optional" msgstr "İsteğe bağlı" @@ -9345,7 +9410,7 @@ msgid "Show optional items" msgstr "İsteğe bağlı ögeleri göster" #: src/tables/bom/BomTable.tsx:469 -#: src/tables/build/BuildLineTable.tsx:197 +#: src/tables/build/BuildLineTable.tsx:198 msgid "Consumable" msgstr "Tüketilebilir" @@ -9420,6 +9485,7 @@ msgid "Add a single BOM item" msgstr "" #: src/tables/bom/BomTable.tsx:637 +#: src/tables/general/ParameterTable.tsx:206 #: src/tables/part/PartTable.tsx:546 msgid "Import from File" msgstr "" @@ -9433,8 +9499,8 @@ msgid "Bill of materials cannot be edited, as the part is locked" msgstr "Parça kilitli olduğundan malzeme listesi düzenlenemez" #: src/tables/bom/UsedInTable.tsx:34 -#: src/tables/build/BuildLineTable.tsx:207 -#: src/tables/part/ParametricPartTable.tsx:364 +#: src/tables/build/BuildLineTable.tsx:208 +#: src/tables/part/ParametricPartTable.tsx:29 #: src/tables/part/PartBuildAllocationsTable.tsx:60 #: src/tables/part/PartTable.tsx:209 #: src/tables/stock/StockItemTable.tsx:333 @@ -9455,11 +9521,11 @@ msgstr "Takip Edilebilir" msgid "Show trackable assemblies" msgstr "İzlenebilir birleştirmeleri göster" -#: src/tables/build/BuildAllocatedStockTable.tsx:67 +#: src/tables/build/BuildAllocatedStockTable.tsx:64 msgid "Allocated to Output" msgstr "Çıktıya Ayrıldı" -#: src/tables/build/BuildAllocatedStockTable.tsx:68 +#: src/tables/build/BuildAllocatedStockTable.tsx:65 msgid "Show items allocated to a build output" msgstr "Bir yapı çıktısına ayrılan ögeleri göster" @@ -9472,50 +9538,68 @@ msgstr "Bir yapı çıktısına ayrılan ögeleri göster" #~ msgid "Include orders for part variants" #~ msgstr "Include orders for part variants" -#: src/tables/build/BuildAllocatedStockTable.tsx:97 +#: src/tables/build/BuildAllocatedStockTable.tsx:94 #: src/tables/part/PartBuildAllocationsTable.tsx:84 #: src/tables/part/PartPurchaseOrdersTable.tsx:132 #: src/tables/part/PartSalesAllocationsTable.tsx:69 #: src/tables/sales/SalesOrderAllocationTable.tsx:122 -#: src/tables/sales/SalesOrderShipmentTable.tsx:130 +#: src/tables/sales/SalesOrderShipmentTable.tsx:151 msgid "Order Status" msgstr "Sipariş Durumu" +#: src/tables/build/BuildAllocatedStockTable.tsx:164 +#: src/tables/build/BuildLineTable.tsx:651 +msgid "Edit Stock Allocation" +msgstr "" + #: src/tables/build/BuildAllocatedStockTable.tsx:164 #~ msgid "Edit Build Item" #~ msgstr "Edit Build Item" -#: src/tables/build/BuildAllocatedStockTable.tsx:167 -#: src/tables/build/BuildLineTable.tsx:650 -msgid "Edit Stock Allocation" -msgstr "" - #: src/tables/build/BuildAllocatedStockTable.tsx:174 #~ msgid "Delete Build Item" #~ msgstr "Delete Build Item" -#: src/tables/build/BuildAllocatedStockTable.tsx:180 -#: src/tables/build/BuildLineTable.tsx:663 -msgid "Delete Stock Allocation" +#: src/tables/build/BuildAllocatedStockTable.tsx:177 +#: src/tables/build/BuildLineTable.tsx:664 +#: src/tables/sales/SalesOrderAllocationTable.tsx:218 +msgid "Remove Allocated Stock" msgstr "" -#: src/tables/build/BuildAllocatedStockTable.tsx:239 +#: src/tables/build/BuildAllocatedStockTable.tsx:180 +#: src/tables/build/BuildLineTable.tsx:663 +#~ msgid "Delete Stock Allocation" +#~ msgstr "Delete Stock Allocation" + +#: src/tables/build/BuildAllocatedStockTable.tsx:182 +#: src/tables/build/BuildLineTable.tsx:669 +#: src/tables/sales/SalesOrderAllocationTable.tsx:221 +msgid "Are you sure you want to remove this allocated stock from the order?" +msgstr "" + +#: src/tables/build/BuildAllocatedStockTable.tsx:242 msgid "Consume" msgstr "" +#: src/tables/build/BuildAllocatedStockTable.tsx:259 +#: src/tables/build/BuildLineTable.tsx:112 +#: src/tables/sales/SalesOrderAllocationTable.tsx:248 +msgid "Remove allocated stock" +msgstr "" + #: src/tables/build/BuildLineTable.tsx:59 #~ msgid "Show lines with available stock" #~ msgstr "Show lines with available stock" -#: src/tables/build/BuildLineTable.tsx:120 +#: src/tables/build/BuildLineTable.tsx:121 msgid "View Stock Item" msgstr "" -#: src/tables/build/BuildLineTable.tsx:183 +#: src/tables/build/BuildLineTable.tsx:184 msgid "Show fully allocated lines" msgstr "" -#: src/tables/build/BuildLineTable.tsx:188 +#: src/tables/build/BuildLineTable.tsx:189 msgid "Show fully consumed lines" msgstr "" @@ -9523,124 +9607,124 @@ msgstr "" #~ msgid "Show allocated lines" #~ msgstr "Show allocated lines" -#: src/tables/build/BuildLineTable.tsx:193 +#: src/tables/build/BuildLineTable.tsx:194 msgid "Show items with sufficient available stock" msgstr "" -#: src/tables/build/BuildLineTable.tsx:198 +#: src/tables/build/BuildLineTable.tsx:199 msgid "Show consumable lines" msgstr "Tüketilebilir satırları göster" -#: src/tables/build/BuildLineTable.tsx:203 +#: src/tables/build/BuildLineTable.tsx:204 msgid "Show optional lines" msgstr "İsteğe bağlı satırları göster" -#: src/tables/build/BuildLineTable.tsx:212 +#: src/tables/build/BuildLineTable.tsx:213 #: src/tables/part/PartTable.tsx:233 msgid "Testable" msgstr "Test Edilebilir" -#: src/tables/build/BuildLineTable.tsx:217 +#: src/tables/build/BuildLineTable.tsx:218 #: src/tables/stock/StockItemTable.tsx:388 msgid "Tracked" msgstr "İzlenen" -#: src/tables/build/BuildLineTable.tsx:218 +#: src/tables/build/BuildLineTable.tsx:219 msgid "Show tracked lines" msgstr "İzlenen satırları göster" -#: src/tables/build/BuildLineTable.tsx:223 +#: src/tables/build/BuildLineTable.tsx:224 msgid "Show items with stock on order" msgstr "" -#: src/tables/build/BuildLineTable.tsx:258 +#: src/tables/build/BuildLineTable.tsx:259 #: src/tables/sales/SalesOrderLineItemTable.tsx:172 msgid "In production" msgstr "Üretimde" -#: src/tables/build/BuildLineTable.tsx:286 +#: src/tables/build/BuildLineTable.tsx:287 msgid "Insufficient stock" msgstr "Yetersiz stok" -#: src/tables/build/BuildLineTable.tsx:302 +#: src/tables/build/BuildLineTable.tsx:303 #: src/tables/sales/SalesOrderLineItemTable.tsx:160 #: src/tables/stock/StockItemTable.tsx:191 msgid "No stock available" msgstr "Mevcut stok yok" -#: src/tables/build/BuildLineTable.tsx:375 +#: src/tables/build/BuildLineTable.tsx:376 msgid "Gets Inherited" msgstr "Miras Alınır" -#: src/tables/build/BuildLineTable.tsx:388 +#: src/tables/build/BuildLineTable.tsx:389 msgid "Unit Quantity" msgstr "Birim Miktarı" -#: src/tables/build/BuildLineTable.tsx:415 +#: src/tables/build/BuildLineTable.tsx:416 msgid "Setup Quantity" msgstr "" -#: src/tables/build/BuildLineTable.tsx:424 +#: src/tables/build/BuildLineTable.tsx:425 msgid "Attrition" msgstr "" -#: src/tables/build/BuildLineTable.tsx:432 +#: src/tables/build/BuildLineTable.tsx:433 msgid "Rounding Multiple" msgstr "" -#: src/tables/build/BuildLineTable.tsx:441 +#: src/tables/build/BuildLineTable.tsx:442 msgid "BOM Information" msgstr "" -#: src/tables/build/BuildLineTable.tsx:515 +#: src/tables/build/BuildLineTable.tsx:516 #: src/tables/part/PartBuildAllocationsTable.tsx:102 msgid "Fully allocated" msgstr "" -#: src/tables/build/BuildLineTable.tsx:563 +#: src/tables/build/BuildLineTable.tsx:564 #: src/tables/sales/SalesOrderLineItemTable.tsx:311 msgid "Create Build Order" msgstr "Yapım Siparişi Oluştur" -#: src/tables/build/BuildLineTable.tsx:592 +#: src/tables/build/BuildLineTable.tsx:593 msgid "Auto allocation in progress" msgstr "" -#: src/tables/build/BuildLineTable.tsx:595 -#: src/tables/build/BuildLineTable.tsx:802 +#: src/tables/build/BuildLineTable.tsx:596 +#: src/tables/build/BuildLineTable.tsx:809 msgid "Auto Allocate Stock" msgstr "" -#: src/tables/build/BuildLineTable.tsx:596 +#: src/tables/build/BuildLineTable.tsx:597 msgid "Automatically allocate stock to this build according to the selected options" msgstr "" -#: src/tables/build/BuildLineTable.tsx:616 -#: src/tables/build/BuildLineTable.tsx:630 -#: src/tables/build/BuildLineTable.tsx:751 -#: src/tables/build/BuildLineTable.tsx:852 +#: src/tables/build/BuildLineTable.tsx:617 +#: src/tables/build/BuildLineTable.tsx:631 +#: src/tables/build/BuildLineTable.tsx:758 +#: src/tables/build/BuildLineTable.tsx:859 #: src/tables/build/BuildOutputTable.tsx:355 #: src/tables/build/BuildOutputTable.tsx:360 msgid "Deallocate Stock" msgstr "" -#: src/tables/build/BuildLineTable.tsx:632 +#: src/tables/build/BuildLineTable.tsx:633 msgid "Deallocate all untracked stock for this build order" msgstr "" -#: src/tables/build/BuildLineTable.tsx:634 +#: src/tables/build/BuildLineTable.tsx:635 msgid "Deallocate stock from the selected line item" msgstr "" -#: src/tables/build/BuildLineTable.tsx:638 +#: src/tables/build/BuildLineTable.tsx:639 msgid "Stock has been deallocated" msgstr "" -#: src/tables/build/BuildLineTable.tsx:771 +#: src/tables/build/BuildLineTable.tsx:778 msgid "Build Stock" msgstr "Yapım Stoku" -#: src/tables/build/BuildLineTable.tsx:784 +#: src/tables/build/BuildLineTable.tsx:791 #: src/tables/sales/SalesOrderLineItemTable.tsx:487 msgid "View Part" msgstr "Parçayı Görüntüle" @@ -9739,7 +9823,7 @@ msgid "Serialize Build Output" msgstr "" #: src/tables/build/BuildOutputTable.tsx:405 -#: src/tables/part/PartTestResultTable.tsx:310 +#: src/tables/part/PartTestResultTable.tsx:318 #: src/tables/stock/StockItemTable.tsx:328 msgid "Filter by stock status" msgstr "Stok durumuna göre süz" @@ -9964,8 +10048,8 @@ msgid "View Item" msgstr "" #: src/tables/general/ExtraLineItemTable.tsx:95 -#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:299 -#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:403 +#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:300 +#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:405 #: src/tables/sales/ReturnOrderLineItemTable.tsx:83 #: src/tables/sales/ReturnOrderLineItemTable.tsx:187 #: src/tables/sales/SalesOrderLineItemTable.tsx:252 @@ -9974,14 +10058,14 @@ msgid "Add Line Item" msgstr "Satır Ögesi Ekle" #: src/tables/general/ExtraLineItemTable.tsx:108 -#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:320 +#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:322 #: src/tables/sales/ReturnOrderLineItemTable.tsx:96 #: src/tables/sales/SalesOrderLineItemTable.tsx:271 msgid "Edit Line Item" msgstr "Satır Ögesini Düzenle" #: src/tables/general/ExtraLineItemTable.tsx:117 -#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:329 +#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:331 #: src/tables/sales/ReturnOrderLineItemTable.tsx:105 #: src/tables/sales/SalesOrderLineItemTable.tsx:280 msgid "Delete Line Item" @@ -9991,6 +10075,137 @@ msgstr "Satır Ögesini Sil" msgid "Add Extra Line Item" msgstr "Fazladan Satır Ögesi Ekle" +#: src/tables/general/ParameterTable.tsx:88 +msgid "Internal Units" +msgstr "Dahili Birimler" + +#: src/tables/general/ParameterTable.tsx:108 +#: src/tables/general/ParameterTable.tsx:123 +msgid "Updated By" +msgstr "" + +#: src/tables/general/ParameterTable.tsx:118 +msgid "Show parameters for enabled templates" +msgstr "" + +#: src/tables/general/ParameterTable.tsx:124 +msgid "Filter by user who last updated the parameter" +msgstr "" + +#: src/tables/general/ParameterTable.tsx:154 +msgid "Import Parameters" +msgstr "" + +#: src/tables/general/ParameterTable.tsx:164 +#: src/tables/general/ParametricDataTable.tsx:261 +#: src/tables/general/ParametricDataTable.tsx:392 +msgid "Add Parameter" +msgstr "Parametre Ekle" + +#: src/tables/general/ParameterTable.tsx:175 +#: src/tables/general/ParameterTable.tsx:222 +#: src/tables/general/ParametricDataTable.tsx:285 +msgid "Edit Parameter" +msgstr "Parametreyi Düzenle" + +#: src/tables/general/ParameterTable.tsx:183 +#: src/tables/general/ParameterTable.tsx:230 +msgid "Delete Parameter" +msgstr "Parametreyi Sil" + +#: src/tables/general/ParameterTable.tsx:191 +msgid "Add Parameters" +msgstr "" + +#: src/tables/general/ParameterTable.tsx:197 +msgid "Create Parameter" +msgstr "" + +#: src/tables/general/ParameterTable.tsx:199 +msgid "Create a new parameter" +msgstr "" + +#: src/tables/general/ParameterTable.tsx:208 +msgid "Import parameters from a file" +msgstr "" + +#: src/tables/general/ParameterTemplateTable.tsx:48 +#: src/tables/general/ParameterTemplateTable.tsx:197 +msgid "Add Parameter Template" +msgstr "Parametre Şablonu Ekle" + +#: src/tables/general/ParameterTemplateTable.tsx:64 +msgid "Duplicate Parameter Template" +msgstr "" + +#: src/tables/general/ParameterTemplateTable.tsx:78 +msgid "Delete Parameter Template" +msgstr "Parametre Şablonunu Sil" + +#: src/tables/general/ParameterTemplateTable.tsx:85 +msgid "Edit Parameter Template" +msgstr "Parametre Şablonunu Düzenle" + +#: src/tables/general/ParameterTemplateTable.tsx:138 +msgid "Checkbox" +msgstr "Onay kutusu" + +#: src/tables/general/ParameterTemplateTable.tsx:139 +msgid "Show checkbox templates" +msgstr "Onay kutusu şablonlarını göster" + +#: src/tables/general/ParameterTemplateTable.tsx:143 +msgid "Has choices" +msgstr "Seçenekleri olanlar" + +#: src/tables/general/ParameterTemplateTable.tsx:144 +msgid "Show templates with choices" +msgstr "Seçenekli şablonları göster" + +#: src/tables/general/ParameterTemplateTable.tsx:148 +#: src/tables/part/PartTable.tsx:245 +msgid "Has Units" +msgstr "Birimi Var" + +#: src/tables/general/ParameterTemplateTable.tsx:149 +msgid "Show templates with units" +msgstr "Birimli şablonları göster" + +#: src/tables/general/ParameterTemplateTable.tsx:154 +msgid "Show enabled templates" +msgstr "" + +#: src/tables/general/ParameterTemplateTable.tsx:158 +#: src/tables/settings/ImportSessionTable.tsx:111 +#: src/tables/settings/TemplateTable.tsx:368 +msgid "Model Type" +msgstr "Model Türü" + +#: src/tables/general/ParameterTemplateTable.tsx:159 +msgid "Filter by model type" +msgstr "" + +#: src/tables/general/ParametricDataTable.tsx:79 +msgid "Click to edit" +msgstr "Düzenlemek için tıklayın" + +#: src/tables/general/ParametricDataTableFilters.tsx:36 +msgid "True" +msgstr "Doğru" + +#: src/tables/general/ParametricDataTableFilters.tsx:37 +msgid "False" +msgstr "Yanlış" + +#: src/tables/general/ParametricDataTableFilters.tsx:47 +#: src/tables/general/ParametricDataTableFilters.tsx:80 +msgid "Select a choice" +msgstr "" + +#: src/tables/general/ParametricDataTableFilters.tsx:100 +msgid "Enter a value" +msgstr "" + #: src/tables/machine/MachineListTable.tsx:133 msgid "Machine restarted" msgstr "Makine yeniden başladı" @@ -10071,7 +10286,7 @@ msgid "Initialized" msgstr "İlklendi" #: src/tables/machine/MachineListTable.tsx:410 -#: src/tables/machine/MachineTypeTable.tsx:307 +#: src/tables/machine/MachineTypeTable.tsx:305 msgid "No errors reported" msgstr "Hiç hata raporlanmadı" @@ -10132,15 +10347,15 @@ msgstr "Dahili sürücü" #~ msgid "Machine type information" #~ msgstr "Machine type information" -#: src/tables/machine/MachineTypeTable.tsx:128 +#: src/tables/machine/MachineTypeTable.tsx:126 msgid "Not Found" msgstr "Bulunamadı" -#: src/tables/machine/MachineTypeTable.tsx:131 +#: src/tables/machine/MachineTypeTable.tsx:129 msgid "Machine type not found." msgstr "Makine türü bulunamadı." -#: src/tables/machine/MachineTypeTable.tsx:141 +#: src/tables/machine/MachineTypeTable.tsx:139 msgid "Machine Type Information" msgstr "Makine Tip Bilgisi" @@ -10148,34 +10363,34 @@ msgstr "Makine Tip Bilgisi" #~ msgid "Available drivers" #~ msgstr "Available drivers" -#: src/tables/machine/MachineTypeTable.tsx:156 -#: src/tables/machine/MachineTypeTable.tsx:255 +#: src/tables/machine/MachineTypeTable.tsx:154 +#: src/tables/machine/MachineTypeTable.tsx:253 msgid "Slug" msgstr "Slug" -#: src/tables/machine/MachineTypeTable.tsx:167 -#: src/tables/machine/MachineTypeTable.tsx:276 +#: src/tables/machine/MachineTypeTable.tsx:165 +#: src/tables/machine/MachineTypeTable.tsx:274 msgid "Provider plugin" msgstr "Sağlayıcı eklentisi" -#: src/tables/machine/MachineTypeTable.tsx:179 -#: src/tables/machine/MachineTypeTable.tsx:288 +#: src/tables/machine/MachineTypeTable.tsx:177 +#: src/tables/machine/MachineTypeTable.tsx:286 msgid "Provider file" msgstr "Sağlayıcı dosyası" -#: src/tables/machine/MachineTypeTable.tsx:194 +#: src/tables/machine/MachineTypeTable.tsx:192 msgid "Available Drivers" msgstr "Mevcut Sürücüler" -#: src/tables/machine/MachineTypeTable.tsx:234 +#: src/tables/machine/MachineTypeTable.tsx:232 msgid "Machine driver not found." msgstr "Makine sürücüsü bulunamadı." -#: src/tables/machine/MachineTypeTable.tsx:242 +#: src/tables/machine/MachineTypeTable.tsx:240 msgid "Machine driver information" msgstr "Makine sürücüsü bilgisi" -#: src/tables/machine/MachineTypeTable.tsx:262 +#: src/tables/machine/MachineTypeTable.tsx:260 msgid "Machine type" msgstr "Makine türü" @@ -10187,15 +10402,15 @@ msgstr "Makine türü" #~ msgid "Machine driver detail" #~ msgstr "Machine driver detail" -#: src/tables/machine/MachineTypeTable.tsx:362 +#: src/tables/machine/MachineTypeTable.tsx:360 msgid "Builtin type" msgstr "Yerleşik tür" -#: src/tables/machine/MachineTypeTable.tsx:371 +#: src/tables/machine/MachineTypeTable.tsx:369 msgid "Machine Type Detail" msgstr "Makine Tip Detayları" -#: src/tables/machine/MachineTypeTable.tsx:381 +#: src/tables/machine/MachineTypeTable.tsx:379 msgid "Machine Driver Detail" msgstr "Makine Sürücü Detayı" @@ -10213,52 +10428,31 @@ msgstr "Bildirim" msgid "Message" msgstr "İleti" -#: src/tables/part/ParametricPartTable.tsx:78 -msgid "Click to edit" -msgstr "Düzenlemek için tıklayın" +#: src/tables/part/ParametricPartTable.tsx:20 +msgid "Show active parts" +msgstr "Aktif parçları göster" + +#: src/tables/part/ParametricPartTable.tsx:25 +msgid "Show locked parts" +msgstr "Kilitli parçaları göster" + +#: src/tables/part/ParametricPartTable.tsx:30 +msgid "Show assembly parts" +msgstr "Montaj parçalarını göster" #: src/tables/part/ParametricPartTable.tsx:82 #~ msgid "Edit parameter" #~ msgstr "Edit parameter" #: src/tables/part/ParametricPartTable.tsx:244 -msgid "Add Part Parameter" -msgstr "Parça Parametresi Ekle" +#~ msgid "Add Part Parameter" +#~ msgstr "Add Part Parameter" #: src/tables/part/ParametricPartTable.tsx:258 #: src/tables/part/PartParameterTable.tsx:164 #: src/tables/part/PartParameterTable.tsx:187 -msgid "Edit Part Parameter" -msgstr "Parça Parametresini Düzenle" - -#: src/tables/part/ParametricPartTable.tsx:355 -msgid "Show active parts" -msgstr "Aktif parçları göster" - -#: src/tables/part/ParametricPartTable.tsx:360 -msgid "Show locked parts" -msgstr "Kilitli parçaları göster" - -#: src/tables/part/ParametricPartTable.tsx:365 -msgid "Show assembly parts" -msgstr "Montaj parçalarını göster" - -#: src/tables/part/ParametricPartTableFilters.tsx:36 -msgid "True" -msgstr "Doğru" - -#: src/tables/part/ParametricPartTableFilters.tsx:37 -msgid "False" -msgstr "Yanlış" - -#: src/tables/part/ParametricPartTableFilters.tsx:47 -#: src/tables/part/ParametricPartTableFilters.tsx:80 -msgid "Select a choice" -msgstr "" - -#: src/tables/part/ParametricPartTableFilters.tsx:100 -msgid "Enter a value" -msgstr "" +#~ msgid "Edit Part Parameter" +#~ msgstr "Edit Part Parameter" #: src/tables/part/PartBuildAllocationsTable.tsx:64 msgid "Assembly IPN" @@ -10273,7 +10467,7 @@ msgid "Required Stock" msgstr "" #: src/tables/part/PartBuildAllocationsTable.tsx:124 -#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:381 +#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:383 msgid "View Build Order" msgstr "" @@ -10332,85 +10526,22 @@ msgstr "Sınıf Parametresini Düzenle" msgid "Delete Category Parameter" msgstr "Sınıf Parametresini Sil" -#: src/tables/part/PartCategoryTemplateTable.tsx:87 -msgid "Parameter Template" -msgstr "Parametre Şablonu" - #: src/tables/part/PartCategoryTemplateTable.tsx:93 #~ msgid "[{0}]" #~ msgstr "[{0}]" -#: src/tables/part/PartParameterTable.tsx:108 -msgid "Internal Units" -msgstr "Dahili Birimler" - -#: src/tables/part/PartParameterTable.tsx:128 -#: src/tables/part/PartParameterTable.tsx:138 -msgid "Updated By" -msgstr "" - -#: src/tables/part/PartParameterTable.tsx:139 -msgid "Filter by user who last updated the parameter" -msgstr "" - #: src/tables/part/PartParameterTable.tsx:148 -msgid "New Part Parameter" -msgstr "Yeni Parça Parametresi" +#~ msgid "New Part Parameter" +#~ msgstr "New Part Parameter" #: src/tables/part/PartParameterTable.tsx:173 #: src/tables/part/PartParameterTable.tsx:195 -msgid "Delete Part Parameter" -msgstr "Parça Parametresini Sil" +#~ msgid "Delete Part Parameter" +#~ msgstr "Delete Part Parameter" #: src/tables/part/PartParameterTable.tsx:213 -msgid "Add parameter" -msgstr "Parametre ekle" - -#: src/tables/part/PartParameterTable.tsx:232 -msgid "Part parameters cannot be edited, as the part is locked" -msgstr "Parça kilitli olduğundan bu parçanın parametreleri düzenlenemez" - -#: src/tables/part/PartParameterTemplateTable.tsx:36 -msgid "Checkbox" -msgstr "Onay kutusu" - -#: src/tables/part/PartParameterTemplateTable.tsx:37 -msgid "Show checkbox templates" -msgstr "Onay kutusu şablonlarını göster" - -#: src/tables/part/PartParameterTemplateTable.tsx:41 -msgid "Has choices" -msgstr "Seçenekleri olanlar" - -#: src/tables/part/PartParameterTemplateTable.tsx:42 -msgid "Show templates with choices" -msgstr "Seçenekli şablonları göster" - -#: src/tables/part/PartParameterTemplateTable.tsx:46 -#: src/tables/part/PartTable.tsx:245 -msgid "Has Units" -msgstr "Birimi Var" - -#: src/tables/part/PartParameterTemplateTable.tsx:47 -msgid "Show templates with units" -msgstr "Birimli şablonları göster" - -#: src/tables/part/PartParameterTemplateTable.tsx:91 -#: src/tables/part/PartParameterTemplateTable.tsx:166 -msgid "Add Parameter Template" -msgstr "Parametre Şablonu Ekle" - -#: src/tables/part/PartParameterTemplateTable.tsx:105 -msgid "Duplicate Parameter Template" -msgstr "" - -#: src/tables/part/PartParameterTemplateTable.tsx:117 -msgid "Edit Parameter Template" -msgstr "Parametre Şablonunu Düzenle" - -#: src/tables/part/PartParameterTemplateTable.tsx:128 -msgid "Delete Parameter Template" -msgstr "Parametre Şablonunu Sil" +#~ msgid "Add parameter" +#~ msgstr "Add parameter" #: src/tables/part/PartParameterTemplateTable.tsx:141 #~ msgid "Add parameter template" @@ -10430,7 +10561,7 @@ msgid "Show received items" msgstr "Alınan ögeleri göster" #: src/tables/part/PartSalesAllocationsTable.tsx:90 -#: src/tables/sales/SalesOrderShipmentTable.tsx:218 +#: src/tables/sales/SalesOrderShipmentTable.tsx:263 msgid "View Sales Order" msgstr "" @@ -10617,8 +10748,8 @@ msgstr "" #: src/tables/part/PartTestResultTable.tsx:103 #: src/tables/part/PartTestResultTable.tsx:181 -#: src/tables/part/PartTestResultTable.tsx:320 -#: src/tables/part/PartTestResultTable.tsx:334 +#: src/tables/part/PartTestResultTable.tsx:328 +#: src/tables/part/PartTestResultTable.tsx:342 #: src/tables/stock/StockItemTestResultTable.tsx:296 #: src/tables/stock/StockItemTestResultTable.tsx:368 #: src/tables/stock/StockItemTestResultTable.tsx:429 @@ -10643,7 +10774,7 @@ msgstr "" msgid "No Result" msgstr "Sonuç Yok" -#: src/tables/part/PartTestResultTable.tsx:298 +#: src/tables/part/PartTestResultTable.tsx:306 msgid "Show build outputs currently in production" msgstr "Üretimde olan yapım çıktılarını göster" @@ -11013,36 +11144,45 @@ msgstr "Kuruldu" #~ msgid "Parameter updated" #~ msgstr "Parameter updated" -#: src/tables/purchasing/ManufacturerPartParameterTable.tsx:63 -#: src/tables/purchasing/ManufacturerPartParameterTable.tsx:112 -msgid "Add Parameter" -msgstr "Parametre Ekle" - #: src/tables/purchasing/ManufacturerPartParameterTable.tsx:73 #~ msgid "Parameter deleted" #~ msgstr "Parameter deleted" -#: src/tables/purchasing/ManufacturerPartParameterTable.tsx:74 -msgid "Edit Parameter" -msgstr "Parametreyi Düzenle" - #: src/tables/purchasing/ManufacturerPartParameterTable.tsx:74 #~ msgid "Are you sure you want to delete this parameter?" #~ msgstr "Are you sure you want to delete this parameter?" -#: src/tables/purchasing/ManufacturerPartParameterTable.tsx:82 -msgid "Delete Parameter" -msgstr "Parametreyi Sil" - -#: src/tables/purchasing/ManufacturerPartTable.tsx:63 -#~ msgid "Create Manufacturer Part" -#~ msgstr "Create Manufacturer Part" - +#: src/tables/purchasing/ManufacturerPartParametricTable.tsx:34 #: src/tables/purchasing/ManufacturerPartTable.tsx:82 #: src/tables/purchasing/SupplierPartTable.tsx:99 msgid "MPN" msgstr "ÜPN" +#: src/tables/purchasing/ManufacturerPartParametricTable.tsx:44 +#: src/tables/purchasing/ManufacturerPartTable.tsx:134 +#: src/tables/purchasing/SupplierPartTable.tsx:220 +msgid "Active Part" +msgstr "Etkin Parça" + +#: src/tables/purchasing/ManufacturerPartParametricTable.tsx:45 +#: src/tables/purchasing/ManufacturerPartTable.tsx:135 +msgid "Show manufacturer parts for active internal parts." +msgstr "" + +#: src/tables/purchasing/ManufacturerPartParametricTable.tsx:50 +#: src/tables/purchasing/ManufacturerPartTable.tsx:140 +msgid "Active Manufacturer" +msgstr "" + +#: src/tables/purchasing/ManufacturerPartParametricTable.tsx:51 +#: src/tables/purchasing/ManufacturerPartTable.tsx:142 +msgid "Show manufacturer parts for active manufacturers." +msgstr "" + +#: src/tables/purchasing/ManufacturerPartTable.tsx:63 +#~ msgid "Create Manufacturer Part" +#~ msgstr "Create Manufacturer Part" + #: src/tables/purchasing/ManufacturerPartTable.tsx:100 #~ msgid "Manufacturer part updated" #~ msgstr "Manufacturer part updated" @@ -11055,25 +11195,8 @@ msgstr "ÜPN" #~ msgid "Are you sure you want to remove this manufacturer part?" #~ msgstr "Are you sure you want to remove this manufacturer part?" -#: src/tables/purchasing/ManufacturerPartTable.tsx:134 -#: src/tables/purchasing/SupplierPartTable.tsx:220 -msgid "Active Part" -msgstr "Etkin Parça" - -#: src/tables/purchasing/ManufacturerPartTable.tsx:135 -msgid "Show manufacturer parts for active internal parts." -msgstr "" - -#: src/tables/purchasing/ManufacturerPartTable.tsx:140 -msgid "Active Manufacturer" -msgstr "" - -#: src/tables/purchasing/ManufacturerPartTable.tsx:142 -msgid "Show manufacturer parts for active manufacturers." -msgstr "" - #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:115 -#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:397 +#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:399 msgid "Import Line Items" msgstr "İçe Satır Ögeleri Aktar" @@ -11099,11 +11222,11 @@ msgstr "" #~ msgid "Add line item" #~ msgstr "Add line item" -#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:350 +#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:352 msgid "Receive line item" msgstr "Satır ögesini teslim al" -#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:414 +#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:416 msgid "Receive items" msgstr "Ögeleri teslim al" @@ -11201,25 +11324,25 @@ msgid "Not shipped" msgstr "" #: src/tables/sales/SalesOrderAllocationTable.tsx:211 -#: src/tables/sales/SalesOrderAllocationTable.tsx:229 +#: src/tables/sales/SalesOrderAllocationTable.tsx:235 msgid "Edit Allocation" msgstr "" #: src/tables/sales/SalesOrderAllocationTable.tsx:218 #: src/tables/sales/SalesOrderAllocationTable.tsx:241 -msgid "Delete Allocation" -msgstr "" +#~ msgid "Delete Allocation" +#~ msgstr "Delete Allocation" -#: src/tables/sales/SalesOrderAllocationTable.tsx:252 -#: src/tables/sales/SalesOrderAllocationTable.tsx:253 +#: src/tables/sales/SalesOrderAllocationTable.tsx:261 +#: src/tables/sales/SalesOrderAllocationTable.tsx:262 msgid "View Shipment" msgstr "" -#: src/tables/sales/SalesOrderAllocationTable.tsx:308 +#: src/tables/sales/SalesOrderAllocationTable.tsx:317 msgid "Assign to Shipment" msgstr "" -#: src/tables/sales/SalesOrderAllocationTable.tsx:324 +#: src/tables/sales/SalesOrderAllocationTable.tsx:333 msgid "Assign to shipment" msgstr "" @@ -11259,35 +11382,35 @@ msgstr "Sipariş stoku" #~ msgid "Delete Shipment" #~ msgstr "Delete Shipment" -#: src/tables/sales/SalesOrderShipmentTable.tsx:72 +#: src/tables/sales/SalesOrderShipmentTable.tsx:79 msgid "Create Shipment" msgstr "Gönderi Oluştur" -#: src/tables/sales/SalesOrderShipmentTable.tsx:143 +#: src/tables/sales/SalesOrderShipmentTable.tsx:164 msgid "Items" msgstr "Ögeler" -#: src/tables/sales/SalesOrderShipmentTable.tsx:203 +#: src/tables/sales/SalesOrderShipmentTable.tsx:248 msgid "Edit shipment" msgstr "" -#: src/tables/sales/SalesOrderShipmentTable.tsx:211 +#: src/tables/sales/SalesOrderShipmentTable.tsx:256 msgid "Cancel shipment" msgstr "" -#: src/tables/sales/SalesOrderShipmentTable.tsx:241 +#: src/tables/sales/SalesOrderShipmentTable.tsx:286 msgid "Add shipment" msgstr "Gönderi ekle" -#: src/tables/sales/SalesOrderShipmentTable.tsx:255 +#: src/tables/sales/SalesOrderShipmentTable.tsx:300 msgid "Show shipments which have been checked" msgstr "" -#: src/tables/sales/SalesOrderShipmentTable.tsx:260 +#: src/tables/sales/SalesOrderShipmentTable.tsx:305 msgid "Show shipments which have been shipped" msgstr "Gönderilen gönderileri göster" -#: src/tables/sales/SalesOrderShipmentTable.tsx:265 +#: src/tables/sales/SalesOrderShipmentTable.tsx:310 msgid "Show shipments which have been delivered" msgstr "Teslim edilen gönderileri gönder" @@ -11621,11 +11744,6 @@ msgstr "Karşıya Yüklendi" msgid "Imported Rows" msgstr "İçe Aktarılan Satırlar" -#: src/tables/settings/ImportSessionTable.tsx:111 -#: src/tables/settings/TemplateTable.tsx:368 -msgid "Model Type" -msgstr "Model Türü" - #: src/tables/settings/ImportSessionTable.tsx:112 #: src/tables/settings/TemplateTable.tsx:369 msgid "Filter by target model type" diff --git a/src/frontend/src/locales/uk/messages.po b/src/frontend/src/locales/uk/messages.po index 3c3046d7c2..b9926354ca 100644 --- a/src/frontend/src/locales/uk/messages.po +++ b/src/frontend/src/locales/uk/messages.po @@ -8,7 +8,7 @@ msgstr "" "Language: uk\n" "Project-Id-Version: inventree\n" "Report-Msgid-Bugs-To: \n" -"PO-Revision-Date: 2025-11-19 19:39\n" +"PO-Revision-Date: 2025-12-07 07:36\n" "Last-Translator: \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" @@ -30,7 +30,7 @@ msgid "Edit" msgstr "Редагувати" #: lib/components/RowActions.tsx:56 -#: src/components/forms/ApiForm.tsx:735 +#: src/components/forms/ApiForm.tsx:754 #: src/components/items/ActionDropdown.tsx:257 #: src/components/items/RoleTable.tsx:155 #: src/hooks/UseForm.tsx:164 @@ -56,24 +56,24 @@ msgstr "Скасувати" #: lib/components/RowActions.tsx:136 #: src/components/nav/NavigationDrawer.tsx:190 -#: src/forms/PurchaseOrderForms.tsx:802 +#: src/forms/PurchaseOrderForms.tsx:854 #: src/forms/StockForms.tsx:796 #: src/forms/StockForms.tsx:843 -#: src/forms/StockForms.tsx:889 -#: src/forms/StockForms.tsx:928 -#: src/forms/StockForms.tsx:964 -#: src/forms/StockForms.tsx:1050 +#: src/forms/StockForms.tsx:896 +#: src/forms/StockForms.tsx:942 +#: src/forms/StockForms.tsx:980 +#: src/forms/StockForms.tsx:1066 #: src/pages/Index/Settings/AccountSettings/MFASettings.tsx:962 msgid "Actions" msgstr "Дії" #: lib/components/SearchInput.tsx:34 -#: src/components/forms/fields/RelatedModelField.tsx:408 +#: src/components/forms/fields/RelatedModelField.tsx:479 #: src/components/nav/Header.tsx:169 #: src/components/wizards/ImportPartWizard.tsx:200 #: src/components/wizards/ImportPartWizard.tsx:233 -#: src/pages/Index/Settings/UserSettings.tsx:74 -#: src/pages/part/PartDetail.tsx:1155 +#: src/pages/Index/Settings/UserSettings.tsx:75 +#: src/pages/part/PartDetail.tsx:1176 msgid "Search" msgstr "Пошук" @@ -95,7 +95,7 @@ msgstr "Так" msgid "No" msgstr "Ні" -#: lib/enums/ModelInformation.tsx:28 +#: lib/enums/ModelInformation.tsx:29 #: src/components/wizards/OrderPartsWizard.tsx:279 #: src/forms/BuildForms.tsx:332 #: src/forms/BuildForms.tsx:407 @@ -103,208 +103,234 @@ msgstr "Ні" #: src/forms/BuildForms.tsx:630 #: src/forms/BuildForms.tsx:793 #: src/forms/BuildForms.tsx:896 -#: src/forms/PurchaseOrderForms.tsx:798 +#: src/forms/PurchaseOrderForms.tsx:850 #: src/forms/ReturnOrderForms.tsx:242 -#: src/forms/SalesOrderForms.tsx:305 +#: src/forms/SalesOrderForms.tsx:384 #: src/forms/StockForms.tsx:360 #: src/forms/StockForms.tsx:791 #: src/forms/StockForms.tsx:838 -#: src/forms/StockForms.tsx:884 -#: src/forms/StockForms.tsx:923 -#: src/forms/StockForms.tsx:959 -#: src/forms/StockForms.tsx:1002 -#: src/forms/StockForms.tsx:1046 -#: src/forms/StockForms.tsx:1094 -#: src/forms/StockForms.tsx:1138 -#: src/pages/build/BuildDetail.tsx:200 -#: src/pages/part/PartDetail.tsx:1207 +#: src/forms/StockForms.tsx:891 +#: src/forms/StockForms.tsx:937 +#: src/forms/StockForms.tsx:975 +#: src/forms/StockForms.tsx:1018 +#: src/forms/StockForms.tsx:1062 +#: src/forms/StockForms.tsx:1110 +#: src/forms/StockForms.tsx:1154 +#: src/pages/build/BuildDetail.tsx:201 +#: src/pages/part/PartDetail.tsx:1228 #: src/tables/ColumnRenderers.tsx:91 +#: src/tables/part/PartTestResultTable.tsx:247 #: src/tables/part/RelatedPartTable.tsx:53 #: src/tables/stock/StockTrackingTable.tsx:87 msgid "Part" msgstr "Частина" -#: lib/enums/ModelInformation.tsx:29 +#: lib/enums/ModelInformation.tsx:30 #: lib/enums/Roles.tsx:35 #: src/components/nav/NavigationDrawer.tsx:70 #: src/defaults/links.tsx:36 -#: src/pages/Index/Settings/SystemSettings.tsx:190 -#: src/pages/part/CategoryDetail.tsx:132 -#: src/pages/part/CategoryDetail.tsx:277 -#: src/pages/part/CategoryDetail.tsx:323 -#: src/pages/part/CategoryDetail.tsx:354 -#: src/pages/part/PartDetail.tsx:965 +#: src/pages/Index/Settings/SystemSettings.tsx:197 +#: src/pages/part/CategoryDetail.tsx:135 +#: src/pages/part/CategoryDetail.tsx:285 +#: src/pages/part/CategoryDetail.tsx:340 +#: src/pages/part/CategoryDetail.tsx:371 +#: src/pages/part/PartDetail.tsx:978 msgid "Parts" msgstr "Частини" #: lib/enums/ModelInformation.tsx:37 #: src/pages/Index/Settings/AdminCenter/PartParameterPanel.tsx:13 -msgid "Part Parameter Template" -msgstr "" +#~ msgid "Part Parameter Template" +#~ msgstr "Part Parameter Template" #: lib/enums/ModelInformation.tsx:38 -msgid "Part Parameter Templates" +#~ msgid "Part Parameter Templates" +#~ msgstr "Part Parameter Templates" + +#: lib/enums/ModelInformation.tsx:39 +msgid "Parameter" msgstr "" +#: lib/enums/ModelInformation.tsx:40 +#: src/components/panels/ParametersPanel.tsx:19 +#: src/components/wizards/ImportPartWizard.tsx:807 +#: src/pages/Index/Settings/AdminCenter/Index.tsx:195 +#: src/pages/Index/Settings/SystemSettings.tsx:191 +#: src/pages/part/PartDetail.tsx:943 +msgid "Parameters" +msgstr "Параметри" + #: lib/enums/ModelInformation.tsx:45 -msgid "Part Test Template" -msgstr "" +#: src/tables/part/PartCategoryTemplateTable.tsx:87 +msgid "Parameter Template" +msgstr "Шаблон параметра" #: lib/enums/ModelInformation.tsx:46 -msgid "Part Test Templates" +#: src/pages/Index/Settings/AdminCenter/ParameterPanel.tsx:13 +msgid "Parameter Templates" msgstr "" #: lib/enums/ModelInformation.tsx:52 +msgid "Part Test Template" +msgstr "" + +#: lib/enums/ModelInformation.tsx:53 +msgid "Part Test Templates" +msgstr "" + +#: lib/enums/ModelInformation.tsx:59 #: src/components/wizards/OrderPartsWizard.tsx:290 -#: src/pages/company/SupplierPartDetail.tsx:413 +#: src/pages/company/SupplierPartDetail.tsx:418 #: src/pages/stock/StockDetail.tsx:289 -#: src/tables/build/BuildAllocatedStockTable.tsx:155 +#: src/tables/build/BuildAllocatedStockTable.tsx:152 #: src/tables/part/PartPurchaseOrdersTable.tsx:50 +#: src/tables/purchasing/SupplierPartParametricTable.tsx:29 #: src/tables/purchasing/SupplierPartTable.tsx:83 #: src/tables/stock/StockItemTable.tsx:247 msgid "Supplier Part" msgstr "Частина від постачальника" -#: lib/enums/ModelInformation.tsx:53 -#: src/pages/purchasing/PurchasingIndex.tsx:92 +#: lib/enums/ModelInformation.tsx:60 +#: src/pages/purchasing/PurchasingIndex.tsx:128 msgid "Supplier Parts" msgstr "Частини від постачальника" -#: lib/enums/ModelInformation.tsx:61 -#: src/pages/company/ManufacturerPartDetail.tsx:297 -#: src/pages/company/SupplierPartDetail.tsx:161 +#: lib/enums/ModelInformation.tsx:69 +#: src/pages/company/ManufacturerPartDetail.tsx:288 +#: src/pages/company/SupplierPartDetail.tsx:162 #: src/tables/part/PartPurchaseOrdersTable.tsx:56 #: src/tables/stock/StockItemTable.tsx:253 msgid "Manufacturer Part" msgstr "Виробник частини" -#: lib/enums/ModelInformation.tsx:62 -#: src/pages/purchasing/PurchasingIndex.tsx:109 +#: lib/enums/ModelInformation.tsx:70 +#: src/pages/purchasing/PurchasingIndex.tsx:177 msgid "Manufacturer Parts" msgstr "Деталі виробника" -#: lib/enums/ModelInformation.tsx:70 -#: src/pages/part/CategoryDetail.tsx:354 +#: lib/enums/ModelInformation.tsx:79 +#: src/pages/part/CategoryDetail.tsx:371 #: src/tables/Filter.tsx:389 msgid "Part Category" msgstr "Категорія" -#: lib/enums/ModelInformation.tsx:71 +#: lib/enums/ModelInformation.tsx:80 #: lib/enums/Roles.tsx:37 -#: src/pages/part/CategoryDetail.tsx:271 -#: src/pages/part/CategoryDetail.tsx:345 -#: src/pages/part/PartDetail.tsx:1196 +#: src/pages/part/CategoryDetail.tsx:279 +#: src/pages/part/CategoryDetail.tsx:362 +#: src/pages/part/PartDetail.tsx:1217 msgid "Part Categories" msgstr "Категорії" -#: lib/enums/ModelInformation.tsx:79 +#: lib/enums/ModelInformation.tsx:88 #: src/forms/BuildForms.tsx:473 #: src/forms/BuildForms.tsx:633 #: src/forms/BuildForms.tsx:794 -#: src/forms/SalesOrderForms.tsx:307 +#: src/forms/SalesOrderForms.tsx:386 #: src/pages/stock/StockDetail.tsx:1005 -#: src/tables/part/PartTestResultTable.tsx:248 +#: src/tables/part/PartTestResultTable.tsx:256 #: src/tables/stock/StockTrackingTable.tsx:48 #: src/tables/stock/StockTrackingTable.tsx:55 msgid "Stock Item" msgstr "Елемент складу" -#: lib/enums/ModelInformation.tsx:80 +#: lib/enums/ModelInformation.tsx:89 #: lib/enums/Roles.tsx:45 -#: src/pages/company/CompanyDetail.tsx:210 -#: src/pages/part/CategoryDetail.tsx:291 +#: src/pages/company/CompanyDetail.tsx:211 +#: src/pages/part/CategoryDetail.tsx:314 #: src/pages/part/PartStockHistoryDetail.tsx:101 #: src/pages/stock/LocationDetail.tsx:121 #: src/pages/stock/LocationDetail.tsx:180 msgid "Stock Items" msgstr "У наявності" -#: lib/enums/ModelInformation.tsx:88 +#: lib/enums/ModelInformation.tsx:98 #: lib/enums/Roles.tsx:47 #: src/pages/stock/LocationDetail.tsx:420 msgid "Stock Location" msgstr "Розташування складу" -#: lib/enums/ModelInformation.tsx:89 +#: lib/enums/ModelInformation.tsx:99 #: src/pages/stock/LocationDetail.tsx:174 #: src/pages/stock/LocationDetail.tsx:412 #: src/pages/stock/StockDetail.tsx:996 msgid "Stock Locations" msgstr "Розташування складу" -#: lib/enums/ModelInformation.tsx:97 +#: lib/enums/ModelInformation.tsx:108 msgid "Stock Location Type" msgstr "" -#: lib/enums/ModelInformation.tsx:98 +#: lib/enums/ModelInformation.tsx:109 msgid "Stock Location Types" msgstr "" -#: lib/enums/ModelInformation.tsx:103 -#: src/pages/Index/Settings/SystemSettings.tsx:248 -#: src/pages/part/PartDetail.tsx:911 +#: lib/enums/ModelInformation.tsx:114 +#: src/pages/Index/Settings/SystemSettings.tsx:254 +#: src/pages/part/PartDetail.tsx:900 msgid "Stock History" msgstr "" -#: lib/enums/ModelInformation.tsx:104 +#: lib/enums/ModelInformation.tsx:115 msgid "Stock Histories" msgstr "" -#: lib/enums/ModelInformation.tsx:109 +#: lib/enums/ModelInformation.tsx:120 msgid "Build" msgstr "Зібрати" -#: lib/enums/ModelInformation.tsx:110 +#: lib/enums/ModelInformation.tsx:121 msgid "Builds" msgstr "Збірки" -#: lib/enums/ModelInformation.tsx:118 +#: lib/enums/ModelInformation.tsx:130 msgid "Build Line" msgstr "" -#: lib/enums/ModelInformation.tsx:119 +#: lib/enums/ModelInformation.tsx:131 msgid "Build Lines" msgstr "" -#: lib/enums/ModelInformation.tsx:126 +#: lib/enums/ModelInformation.tsx:138 msgid "Build Item" msgstr "Зібрати предмет" -#: lib/enums/ModelInformation.tsx:127 +#: lib/enums/ModelInformation.tsx:139 msgid "Build Items" msgstr "Зібрати предмет" -#: lib/enums/ModelInformation.tsx:132 -#: src/pages/company/CompanyDetail.tsx:340 +#: lib/enums/ModelInformation.tsx:144 +#: src/pages/company/CompanyDetail.tsx:345 #: src/tables/company/CompanyTable.tsx:47 #: src/tables/company/ContactTable.tsx:67 +#: src/tables/company/ParametricCompanyTable.tsx:18 msgid "Company" msgstr "Компанія" -#: lib/enums/ModelInformation.tsx:133 +#: lib/enums/ModelInformation.tsx:145 msgid "Companies" msgstr "Компанії" -#: lib/enums/ModelInformation.tsx:140 -#: src/pages/build/BuildDetail.tsx:316 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:253 -#: src/pages/sales/ReturnOrderDetail.tsx:231 -#: src/pages/sales/SalesOrderDetail.tsx:224 +#: lib/enums/ModelInformation.tsx:152 +#: src/pages/build/BuildDetail.tsx:317 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:254 +#: src/pages/sales/ReturnOrderDetail.tsx:232 +#: src/pages/sales/SalesOrderDetail.tsx:225 #: src/tables/ColumnRenderers.tsx:362 #: src/tables/Filter.tsx:286 #: src/tables/TableHoverCard.tsx:101 msgid "Project Code" msgstr "Код проєкту" -#: lib/enums/ModelInformation.tsx:141 +#: lib/enums/ModelInformation.tsx:153 #: src/pages/Index/Settings/AdminCenter/Index.tsx:172 msgid "Project Codes" msgstr "Коди проєкту" -#: lib/enums/ModelInformation.tsx:147 +#: lib/enums/ModelInformation.tsx:159 #: src/components/wizards/OrderPartsWizard.tsx:338 #: src/pages/part/pricing/PurchaseHistoryPanel.tsx:33 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:550 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:555 #: src/pages/stock/StockDetail.tsx:352 #: src/tables/part/PartPurchaseOrdersTable.tsx:32 #: src/tables/stock/StockItemTable.tsx:239 @@ -312,117 +338,117 @@ msgstr "Коди проєкту" msgid "Purchase Order" msgstr "Замовлення на купівлю" -#: lib/enums/ModelInformation.tsx:148 +#: lib/enums/ModelInformation.tsx:160 #: lib/enums/Roles.tsx:39 #: src/defaults/actions.tsx:104 -#: src/pages/Index/Settings/SystemSettings.tsx:283 -#: src/pages/company/CompanyDetail.tsx:203 -#: src/pages/company/SupplierPartDetail.tsx:266 -#: src/pages/part/PartDetail.tsx:875 -#: src/pages/purchasing/PurchasingIndex.tsx:60 +#: src/pages/Index/Settings/SystemSettings.tsx:289 +#: src/pages/company/CompanyDetail.tsx:204 +#: src/pages/company/SupplierPartDetail.tsx:267 +#: src/pages/part/PartDetail.tsx:864 +#: src/pages/purchasing/PurchasingIndex.tsx:66 msgid "Purchase Orders" msgstr "" -#: lib/enums/ModelInformation.tsx:156 +#: lib/enums/ModelInformation.tsx:169 msgid "Purchase Order Line" msgstr "" -#: lib/enums/ModelInformation.tsx:157 +#: lib/enums/ModelInformation.tsx:170 msgid "Purchase Order Lines" msgstr "" -#: lib/enums/ModelInformation.tsx:162 -#: src/pages/build/BuildDetail.tsx:289 +#: lib/enums/ModelInformation.tsx:175 +#: src/pages/build/BuildDetail.tsx:290 #: src/pages/part/pricing/SaleHistoryPanel.tsx:24 -#: src/pages/sales/SalesOrderDetail.tsx:614 -#: src/pages/sales/SalesOrderShipmentDetail.tsx:105 -#: src/pages/sales/SalesOrderShipmentDetail.tsx:478 +#: src/pages/sales/SalesOrderDetail.tsx:619 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:103 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:446 #: src/pages/stock/StockDetail.tsx:361 #: src/tables/part/PartSalesAllocationsTable.tsx:41 #: src/tables/sales/SalesOrderAllocationTable.tsx:110 -#: src/tables/sales/SalesOrderShipmentTable.tsx:122 +#: src/tables/sales/SalesOrderShipmentTable.tsx:143 #: src/tables/stock/StockTrackingTable.tsx:131 msgid "Sales Order" msgstr "Замовлення на купівлю" -#: lib/enums/ModelInformation.tsx:163 +#: lib/enums/ModelInformation.tsx:176 #: lib/enums/Roles.tsx:43 #: src/defaults/actions.tsx:114 -#: src/pages/Index/Settings/SystemSettings.tsx:299 -#: src/pages/company/CompanyDetail.tsx:223 -#: src/pages/part/PartDetail.tsx:887 -#: src/pages/sales/SalesIndex.tsx:84 +#: src/pages/Index/Settings/SystemSettings.tsx:305 +#: src/pages/company/CompanyDetail.tsx:224 +#: src/pages/part/PartDetail.tsx:876 +#: src/pages/sales/SalesIndex.tsx:53 msgid "Sales Orders" msgstr "" -#: lib/enums/ModelInformation.tsx:171 -#: src/pages/sales/SalesOrderShipmentDetail.tsx:477 +#: lib/enums/ModelInformation.tsx:185 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:445 msgid "Sales Order Shipment" msgstr "" -#: lib/enums/ModelInformation.tsx:172 +#: lib/enums/ModelInformation.tsx:186 msgid "Sales Order Shipments" msgstr "" -#: lib/enums/ModelInformation.tsx:179 -#: src/pages/sales/ReturnOrderDetail.tsx:549 +#: lib/enums/ModelInformation.tsx:194 +#: src/pages/sales/ReturnOrderDetail.tsx:554 #: src/tables/stock/StockTrackingTable.tsx:142 msgid "Return Order" msgstr "" -#: lib/enums/ModelInformation.tsx:180 +#: lib/enums/ModelInformation.tsx:195 #: lib/enums/Roles.tsx:41 #: src/defaults/actions.tsx:125 -#: src/pages/Index/Settings/SystemSettings.tsx:316 -#: src/pages/company/CompanyDetail.tsx:230 -#: src/pages/part/PartDetail.tsx:894 -#: src/pages/sales/SalesIndex.tsx:117 +#: src/pages/Index/Settings/SystemSettings.tsx:322 +#: src/pages/company/CompanyDetail.tsx:231 +#: src/pages/part/PartDetail.tsx:883 +#: src/pages/sales/SalesIndex.tsx:99 msgid "Return Orders" msgstr "" -#: lib/enums/ModelInformation.tsx:188 +#: lib/enums/ModelInformation.tsx:204 msgid "Return Order Line Item" msgstr "" -#: lib/enums/ModelInformation.tsx:189 +#: lib/enums/ModelInformation.tsx:205 msgid "Return Order Line Items" msgstr "" -#: lib/enums/ModelInformation.tsx:194 +#: lib/enums/ModelInformation.tsx:210 #: src/tables/company/AddressTable.tsx:52 msgid "Address" msgstr "Адреса" -#: lib/enums/ModelInformation.tsx:195 -#: src/pages/company/CompanyDetail.tsx:264 +#: lib/enums/ModelInformation.tsx:211 +#: src/pages/company/CompanyDetail.tsx:265 msgid "Addresses" msgstr "Адреси" -#: lib/enums/ModelInformation.tsx:201 +#: lib/enums/ModelInformation.tsx:217 #: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:89 #: src/pages/core/UserDetail.tsx:135 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:229 -#: src/pages/sales/ReturnOrderDetail.tsx:207 -#: src/pages/sales/SalesOrderDetail.tsx:200 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:230 +#: src/pages/sales/ReturnOrderDetail.tsx:208 +#: src/pages/sales/SalesOrderDetail.tsx:201 msgid "Contact" msgstr "Контакт" -#: lib/enums/ModelInformation.tsx:202 -#: src/pages/company/CompanyDetail.tsx:258 +#: lib/enums/ModelInformation.tsx:218 +#: src/pages/company/CompanyDetail.tsx:259 #: src/pages/core/CoreIndex.tsx:33 msgid "Contacts" msgstr "Контакти" -#: lib/enums/ModelInformation.tsx:208 +#: lib/enums/ModelInformation.tsx:224 #: src/tables/ColumnRenderers.tsx:444 msgid "Owner" msgstr "Власник" -#: lib/enums/ModelInformation.tsx:209 +#: lib/enums/ModelInformation.tsx:225 msgid "Owners" msgstr "Власники" -#: lib/enums/ModelInformation.tsx:215 +#: lib/enums/ModelInformation.tsx:231 #: src/pages/Auth/ChangePassword.tsx:36 #: src/pages/core/UserDetail.tsx:220 #: src/tables/ColumnRenderers.tsx:395 @@ -437,7 +463,7 @@ msgstr "Власники" msgid "User" msgstr "Користувач" -#: lib/enums/ModelInformation.tsx:216 +#: lib/enums/ModelInformation.tsx:232 #: src/components/nav/NavigationDrawer.tsx:105 #: src/pages/Index/Settings/AdminCenter/UserManagementPanel.tsx:15 #: src/pages/core/CoreIndex.tsx:21 @@ -445,12 +471,12 @@ msgstr "Користувач" msgid "Users" msgstr "Користувачі" -#: lib/enums/ModelInformation.tsx:222 +#: lib/enums/ModelInformation.tsx:238 #: src/pages/core/GroupDetail.tsx:78 msgid "Group" msgstr "Група" -#: lib/enums/ModelInformation.tsx:223 +#: lib/enums/ModelInformation.tsx:239 #: src/components/nav/NavigationDrawer.tsx:111 #: src/pages/Index/Settings/AdminCenter/UserManagementPanel.tsx:23 #: src/pages/core/CoreIndex.tsx:27 @@ -460,64 +486,64 @@ msgstr "Група" msgid "Groups" msgstr "Групи" -#: lib/enums/ModelInformation.tsx:230 +#: lib/enums/ModelInformation.tsx:246 msgid "Import Session" msgstr "Імпортувати сеанс" -#: lib/enums/ModelInformation.tsx:231 +#: lib/enums/ModelInformation.tsx:247 msgid "Import Sessions" msgstr "Імпортувати сеанси" -#: lib/enums/ModelInformation.tsx:238 +#: lib/enums/ModelInformation.tsx:254 msgid "Label Template" msgstr "" -#: lib/enums/ModelInformation.tsx:239 +#: lib/enums/ModelInformation.tsx:255 #: src/pages/Index/Settings/AdminCenter/Index.tsx:209 msgid "Label Templates" msgstr "" -#: lib/enums/ModelInformation.tsx:246 +#: lib/enums/ModelInformation.tsx:262 msgid "Report Template" msgstr "" -#: lib/enums/ModelInformation.tsx:247 +#: lib/enums/ModelInformation.tsx:263 #: src/pages/Index/Settings/AdminCenter/Index.tsx:215 msgid "Report Templates" msgstr "" -#: lib/enums/ModelInformation.tsx:254 +#: lib/enums/ModelInformation.tsx:270 #: src/components/plugins/PluginDrawer.tsx:145 msgid "Plugin Configuration" msgstr "Конфігурація плагіну" -#: lib/enums/ModelInformation.tsx:255 +#: lib/enums/ModelInformation.tsx:271 msgid "Plugin Configurations" msgstr "Конфігурації плагінів" -#: lib/enums/ModelInformation.tsx:262 +#: lib/enums/ModelInformation.tsx:278 msgid "Content Type" msgstr "" -#: lib/enums/ModelInformation.tsx:263 +#: lib/enums/ModelInformation.tsx:279 msgid "Content Types" msgstr "" -#: lib/enums/ModelInformation.tsx:268 +#: lib/enums/ModelInformation.tsx:284 msgid "Selection List" msgstr "" -#: lib/enums/ModelInformation.tsx:269 -#: src/pages/Index/Settings/AdminCenter/PartParameterPanel.tsx:21 +#: lib/enums/ModelInformation.tsx:285 +#: src/pages/Index/Settings/AdminCenter/ParameterPanel.tsx:21 msgid "Selection Lists" msgstr "" -#: lib/enums/ModelInformation.tsx:275 +#: lib/enums/ModelInformation.tsx:291 #: src/components/barcodes/BarcodeInput.tsx:114 #: src/components/dashboard/DashboardLayout.tsx:281 #: src/components/editors/NotesEditor.tsx:74 #: src/components/editors/TemplateEditor/TemplateEditor.tsx:158 -#: src/components/forms/fields/ApiFormField.tsx:273 +#: src/components/forms/fields/ApiFormField.tsx:237 #: src/components/forms/fields/TableField.tsx:45 #: src/components/importer/ImportDataSelector.tsx:192 #: src/components/importer/ImporterColumnSelector.tsx:234 @@ -528,7 +554,7 @@ msgstr "" #: src/components/nav/SearchDrawer.tsx:572 #: src/components/settings/SettingList.tsx:139 #: src/components/wizards/ImportPartWizard.tsx:574 -#: src/components/wizards/ImportPartWizard.tsx:718 +#: src/components/wizards/ImportPartWizard.tsx:719 #: src/forms/BomForms.tsx:69 #: src/functions/auth.tsx:643 #: src/pages/ErrorPage.tsx:11 @@ -547,9 +573,9 @@ msgstr "" msgid "Error" msgstr "Помилка" -#: lib/enums/ModelInformation.tsx:276 +#: lib/enums/ModelInformation.tsx:292 #: src/tables/machine/MachineListTable.tsx:402 -#: src/tables/machine/MachineTypeTable.tsx:299 +#: src/tables/machine/MachineTypeTable.tsx:297 msgid "Errors" msgstr "Помилки" @@ -559,10 +585,10 @@ msgstr "Адмін" #: lib/enums/Roles.tsx:33 #: src/defaults/actions.tsx:135 -#: src/pages/Index/Settings/SystemSettings.tsx:264 -#: src/pages/build/BuildIndex.tsx:75 -#: src/pages/part/PartDetail.tsx:904 -#: src/pages/sales/SalesOrderDetail.tsx:421 +#: src/pages/Index/Settings/SystemSettings.tsx:270 +#: src/pages/build/BuildIndex.tsx:67 +#: src/pages/part/PartDetail.tsx:893 +#: src/pages/sales/SalesOrderDetail.tsx:422 msgid "Build Orders" msgstr "Замовлення на збірку" @@ -639,39 +665,39 @@ msgstr "Сканувати або ввести дані штрихкоду" msgid "Enter barcode data" msgstr "Введіть дані штрихкоду" -#: src/components/barcodes/BarcodeScanDialog.tsx:49 -#: src/components/buttons/ScanButton.tsx:15 +#: src/components/barcodes/BarcodeScanDialog.tsx:56 +#: src/components/buttons/ScanButton.tsx:27 #: src/components/nav/NavigationDrawer.tsx:122 -#: src/forms/PurchaseOrderForms.tsx:457 -#: src/forms/PurchaseOrderForms.tsx:563 +#: src/forms/PurchaseOrderForms.tsx:509 +#: src/forms/PurchaseOrderForms.tsx:615 msgid "Scan Barcode" msgstr "Сканувати штрих-код" -#: src/components/barcodes/BarcodeScanDialog.tsx:105 +#: src/components/barcodes/BarcodeScanDialog.tsx:121 msgid "No matching item found" msgstr "Відповідного елементу не знайдено" -#: src/components/barcodes/BarcodeScanDialog.tsx:134 +#: src/components/barcodes/BarcodeScanDialog.tsx:150 msgid "Barcode does not match the expected model type" msgstr "" -#: src/components/barcodes/BarcodeScanDialog.tsx:145 +#: src/components/barcodes/BarcodeScanDialog.tsx:161 #: src/components/editors/NotesEditor.tsx:84 #: src/components/editors/NotesEditor.tsx:118 -#: src/components/forms/ApiForm.tsx:465 +#: src/components/forms/ApiForm.tsx:484 #: src/components/wizards/ImportPartWizard.tsx:566 -#: src/components/wizards/ImportPartWizard.tsx:690 +#: src/components/wizards/ImportPartWizard.tsx:691 #: src/pages/Index/Settings/AdminCenter/CurrencyManagementPanel.tsx:45 #: src/tables/bom/BomTable.tsx:548 #: src/tables/settings/PendingTasksTable.tsx:68 msgid "Success" msgstr "Успіх" -#: src/components/barcodes/BarcodeScanDialog.tsx:151 +#: src/components/barcodes/BarcodeScanDialog.tsx:167 msgid "Failed to handle barcode" msgstr "" -#: src/components/barcodes/BarcodeScanDialog.tsx:167 +#: src/components/barcodes/BarcodeScanDialog.tsx:183 #: src/pages/Index/Scan.tsx:129 msgid "Failed to scan barcode" msgstr "Не вдалося сканувати штрих-код" @@ -714,10 +740,10 @@ msgstr "Не вдалося прив'язати штрих-код" #: src/components/barcodes/QRCode.tsx:179 #: src/pages/part/PartDetail.tsx:521 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:222 -#: src/pages/sales/ReturnOrderDetail.tsx:188 -#: src/pages/sales/SalesOrderDetail.tsx:181 -#: src/pages/sales/SalesOrderShipmentDetail.tsx:122 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:223 +#: src/pages/sales/ReturnOrderDetail.tsx:189 +#: src/pages/sales/SalesOrderDetail.tsx:182 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:120 #: src/pages/stock/StockDetail.tsx:186 msgid "Link" msgstr "Посилання" @@ -728,7 +754,7 @@ msgstr "Це призведе до видалення посилання з ві #: src/components/barcodes/QRCode.tsx:205 #: src/components/items/ActionDropdown.tsx:192 -#: src/forms/PurchaseOrderForms.tsx:554 +#: src/forms/PurchaseOrderForms.tsx:606 msgid "Unlink Barcode" msgstr "Відв'язати штрих-код" @@ -829,14 +855,14 @@ msgstr "Вас буде перенаправлено до постачальни #~ msgid "Scan QR code" #~ msgstr "Scan QR code" -#: src/components/buttons/ScanButton.tsx:19 -msgid "Open Barcode Scanner" -msgstr "Відкрити сканер штрих-кодів" - #: src/components/buttons/ScanButton.tsx:20 #~ msgid "Open QR code scanner" #~ msgstr "Open QR code scanner" +#: src/components/buttons/ScanButton.tsx:32 +msgid "Open Barcode Scanner" +msgstr "Відкрити сканер штрих-кодів" + #: src/components/buttons/SpotlightButton.tsx:12 msgid "Open spotlight" msgstr "Відкрити екран" @@ -1059,7 +1085,7 @@ msgid "Show the number of sales orders which are assigned to you" msgstr "" #: src/components/dashboard/DashboardWidgetLibrary.tsx:129 -#: src/pages/sales/SalesIndex.tsx:105 +#: src/pages/sales/SalesIndex.tsx:87 msgid "Pending Shipments" msgstr "" @@ -1210,12 +1236,18 @@ msgid "Remove the associated image from this item?" msgstr "Видалити пов'язане зображення з цього елемента?" #: src/components/details/DetailsImage.tsx:83 -#: src/forms/StockForms.tsx:888 +#: src/forms/StockForms.tsx:895 #: src/pages/Index/Settings/AccountSettings/MFASettings.tsx:324 #: src/pages/Index/Settings/AccountSettings/MFASettings.tsx:415 #: src/pages/Index/Settings/AccountSettings/MFASettings.tsx:884 #: src/pages/Index/Settings/AccountSettings/MFASettings.tsx:903 #: src/pages/Index/Settings/AccountSettings/SecurityContent.tsx:254 +#: src/tables/build/BuildAllocatedStockTable.tsx:178 +#: src/tables/build/BuildAllocatedStockTable.tsx:258 +#: src/tables/build/BuildLineTable.tsx:111 +#: src/tables/build/BuildLineTable.tsx:665 +#: src/tables/sales/SalesOrderAllocationTable.tsx:224 +#: src/tables/sales/SalesOrderAllocationTable.tsx:247 msgid "Remove" msgstr "Видалити" @@ -1241,12 +1273,12 @@ msgid "Upload Error" msgstr "Помилка при завантаженні" #: src/components/details/DetailsImage.tsx:250 -#: src/components/forms/fields/TextField.tsx:65 +#: src/components/forms/fields/AutoFillRightSection.tsx:34 msgid "Clear" msgstr "Очистити" #: src/components/details/DetailsImage.tsx:256 -#: src/components/forms/ApiForm.tsx:677 +#: src/components/forms/ApiForm.tsx:696 #: src/contexts/ThemeContext.tsx:44 #: src/pages/Index/Settings/AccountSettings/MFASettings.tsx:149 #: src/pages/Index/Settings/AccountSettings/MFASettings.tsx:568 @@ -1499,8 +1531,8 @@ msgstr "Помилка сервера" msgid "A server error occurred" msgstr "Сталася помилка сервера" -#: src/components/forms/ApiForm.tsx:103 -#: src/components/forms/ApiForm.tsx:594 +#: src/components/forms/ApiForm.tsx:107 +#: src/components/forms/ApiForm.tsx:613 msgid "Form Error" msgstr "Помилка форми" @@ -1508,11 +1540,11 @@ msgstr "Помилка форми" #~ msgid "Form Errors Exist" #~ msgstr "Form Errors Exist" -#: src/components/forms/ApiForm.tsx:604 +#: src/components/forms/ApiForm.tsx:623 msgid "Errors exist for one or more form fields" msgstr "Існують деякі помилки для одного або декількох полів" -#: src/components/forms/ApiForm.tsx:715 +#: src/components/forms/ApiForm.tsx:734 #: src/hooks/UseForm.tsx:133 #: src/tables/plugin/PluginListTable.tsx:204 msgid "Update" @@ -1698,15 +1730,14 @@ msgstr "Хост" #: src/components/forms/InstanceOptions.tsx:124 #: src/components/plugins/PluginDrawer.tsx:68 #: src/pages/Index/Settings/AdminCenter/UnitManagementPanel.tsx:19 -#: src/pages/part/CategoryDetail.tsx:88 +#: src/pages/part/CategoryDetail.tsx:91 #: src/pages/part/PartDetail.tsx:446 #: src/pages/stock/LocationDetail.tsx:82 #: src/tables/machine/MachineTypeTable.tsx:67 -#: src/tables/machine/MachineTypeTable.tsx:151 -#: src/tables/machine/MachineTypeTable.tsx:254 -#: src/tables/machine/MachineTypeTable.tsx:357 +#: src/tables/machine/MachineTypeTable.tsx:149 +#: src/tables/machine/MachineTypeTable.tsx:252 +#: src/tables/machine/MachineTypeTable.tsx:355 #: src/tables/plugin/PluginErrorTable.tsx:33 -#: src/tables/purchasing/ManufacturerPartParameterTable.tsx:36 #: src/tables/settings/ApiTokenTable.tsx:57 #: src/tables/settings/GroupTable.tsx:95 #: src/tables/settings/GroupTable.tsx:148 @@ -1769,7 +1800,7 @@ msgstr "Зберегти вибір хосту" #~ msgstr "State: <0>worker ({0}), <1>plugins{1}" #: src/components/forms/InstanceOptions.tsx:118 -#: src/pages/Index/Settings/SystemSettings.tsx:45 +#: src/pages/Index/Settings/SystemSettings.tsx:46 msgid "Server" msgstr "Сервер" @@ -1793,6 +1824,8 @@ msgid "Plugins" msgstr "Плагіни" #: src/components/forms/InstanceOptions.tsx:143 +#: src/tables/general/ParameterTemplateTable.tsx:153 +#: src/tables/general/ParameterTemplateTable.tsx:188 #: src/tables/part/PartTestTemplateTable.tsx:117 #: src/tables/settings/TemplateTable.tsx:251 #: src/tables/settings/TemplateTable.tsx:362 @@ -1817,10 +1850,14 @@ msgstr "Зупинено" msgid "Running" msgstr "" -#: src/components/forms/fields/ApiFormField.tsx:233 +#: src/components/forms/fields/ApiFormField.tsx:197 msgid "Select file to upload" msgstr "" +#: src/components/forms/fields/AutoFillRightSection.tsx:47 +msgid "Accept suggested value" +msgstr "" + #: src/components/forms/fields/DateField.tsx:76 msgid "Select date" msgstr "" @@ -1853,13 +1890,13 @@ msgstr "Вибрати пакет" msgid "{0} icons" msgstr "Значки {0}" -#: src/components/forms/fields/RelatedModelField.tsx:409 +#: src/components/forms/fields/RelatedModelField.tsx:480 #: src/components/modals/AboutInvenTreeModal.tsx:96 #: src/pages/Index/Settings/AccountSettings/SecurityContent.tsx:383 msgid "Loading" msgstr "Завантаження" -#: src/components/forms/fields/RelatedModelField.tsx:411 +#: src/components/forms/fields/RelatedModelField.tsx:482 msgid "No results found" msgstr "Результатів не знайдено" @@ -1875,10 +1912,6 @@ msgstr "Немає записів" msgid "Add new row" msgstr "" -#: src/components/forms/fields/TextField.tsx:82 -msgid "Accept suggested value" -msgstr "" - #: src/components/images/DetailsImage.tsx:252 #~ msgid "Select image" #~ msgstr "Select image" @@ -2036,7 +2069,7 @@ msgstr "Дані успішно імпортовано" #: src/components/importer/ImporterDrawer.tsx:109 #: src/components/modals/AboutInvenTreeModal.tsx:205 #: src/components/modals/ServerInfoModal.tsx:134 -#: src/components/wizards/ImportPartWizard.tsx:772 +#: src/components/wizards/ImportPartWizard.tsx:773 #: src/forms/BomForms.tsx:132 #: src/pages/Index/Settings/AccountSettings/MFASettings.tsx:685 msgid "Close" @@ -2199,7 +2232,7 @@ msgid "Change" msgstr "" #: src/components/items/RoleTable.tsx:150 -#: src/forms/StockForms.tsx:927 +#: src/forms/StockForms.tsx:941 #: src/tables/stock/StockItemTestResultTable.tsx:367 msgid "Add" msgstr "Додати" @@ -2222,11 +2255,11 @@ msgstr "" #: src/components/items/TransferList.tsx:161 #: src/components/render/Stock.tsx:102 -#: src/pages/part/PartDetail.tsx:994 +#: src/pages/part/PartDetail.tsx:1009 #: src/pages/stock/StockDetail.tsx:265 #: src/pages/stock/StockDetail.tsx:942 -#: src/tables/build/BuildAllocatedStockTable.tsx:135 -#: src/tables/build/BuildLineTable.tsx:192 +#: src/tables/build/BuildAllocatedStockTable.tsx:132 +#: src/tables/build/BuildLineTable.tsx:193 #: src/tables/part/PartTable.tsx:137 #: src/tables/stock/StockItemTable.tsx:182 #: src/tables/stock/StockItemTable.tsx:343 @@ -2373,7 +2406,7 @@ msgid "Database" msgstr "База даних" #: src/components/modals/ServerInfoModal.tsx:49 -#: src/components/nav/Alerts.tsx:118 +#: src/components/nav/Alerts.tsx:120 msgid "Debug Mode" msgstr "Режим налагодження" @@ -2414,7 +2447,7 @@ msgid "Issues detected" msgstr "Виявлено проблеми" #: src/components/modals/ServerInfoModal.tsx:102 -#: src/components/nav/Alerts.tsx:125 +#: src/components/nav/Alerts.tsx:127 msgid "Background Worker" msgstr "" @@ -2436,7 +2469,7 @@ msgstr "Налаштування електронної пошти" #~ msgstr "Email settings not configured" #: src/components/modals/ServerInfoModal.tsx:120 -#: src/components/nav/Alerts.tsx:141 +#: src/components/nav/Alerts.tsx:143 msgid "Email settings not configured." msgstr "" @@ -2444,43 +2477,47 @@ msgstr "" msgid "Alerts" msgstr "" -#: src/components/nav/Alerts.tsx:120 +#: src/components/nav/Alerts.tsx:97 +msgid "No issues detected" +msgstr "" + +#: src/components/nav/Alerts.tsx:122 msgid "The server is running in debug mode." msgstr "" -#: src/components/nav/Alerts.tsx:127 +#: src/components/nav/Alerts.tsx:129 msgid "The background worker process is not running." msgstr "" -#: src/components/nav/Alerts.tsx:132 +#: src/components/nav/Alerts.tsx:134 msgid "Server Restart" msgstr "Перезавантаження сервера" -#: src/components/nav/Alerts.tsx:134 +#: src/components/nav/Alerts.tsx:136 msgid "The server requires a restart to apply changes." msgstr "" -#: src/components/nav/Alerts.tsx:139 +#: src/components/nav/Alerts.tsx:141 msgid "Email settings" msgstr "" -#: src/components/nav/Alerts.tsx:146 +#: src/components/nav/Alerts.tsx:148 msgid "Database Migrations" msgstr "" -#: src/components/nav/Alerts.tsx:148 +#: src/components/nav/Alerts.tsx:150 msgid "There are pending database migrations." msgstr "" -#: src/components/nav/Alerts.tsx:163 +#: src/components/nav/Alerts.tsx:165 msgid "Learn more about {code}" msgstr "" #: src/components/nav/Header.tsx:188 #: src/components/nav/NavigationDrawer.tsx:134 #: src/components/nav/NotificationDrawer.tsx:181 -#: src/pages/Index/Settings/SystemSettings.tsx:121 -#: src/pages/Index/Settings/UserSettings.tsx:106 +#: src/pages/Index/Settings/SystemSettings.tsx:122 +#: src/pages/Index/Settings/UserSettings.tsx:107 #: src/pages/Notifications.tsx:45 #: src/pages/Notifications.tsx:130 msgid "Notifications" @@ -2511,8 +2548,8 @@ msgstr "Налаштування" #: src/components/nav/NavigationDrawer.tsx:140 #: src/components/nav/SettingsHeader.tsx:40 #: src/defaults/actions.tsx:92 -#: src/pages/Index/Settings/UserSettings.tsx:141 -#: src/pages/Index/Settings/UserSettings.tsx:145 +#: src/pages/Index/Settings/UserSettings.tsx:142 +#: src/pages/Index/Settings/UserSettings.tsx:146 msgid "User Settings" msgstr "" @@ -2529,8 +2566,8 @@ msgstr "" #: src/components/nav/NavigationDrawer.tsx:146 #: src/components/nav/SettingsHeader.tsx:41 #: src/defaults/actions.tsx:144 -#: src/pages/Index/Settings/SystemSettings.tsx:348 -#: src/pages/Index/Settings/SystemSettings.tsx:353 +#: src/pages/Index/Settings/SystemSettings.tsx:354 +#: src/pages/Index/Settings/SystemSettings.tsx:359 msgid "System Settings" msgstr "Налаштування системи" @@ -2577,11 +2614,11 @@ msgstr "Вихід" #: src/components/nav/NavigationDrawer.tsx:77 #: src/components/render/Part.tsx:36 -#: src/components/wizards/ImportPartWizard.tsx:807 +#: src/components/wizards/ImportPartWizard.tsx:808 #: src/defaults/links.tsx:42 #: src/forms/StockForms.tsx:794 -#: src/pages/Index/Settings/SystemSettings.tsx:224 -#: src/pages/part/PartDetail.tsx:804 +#: src/pages/Index/Settings/SystemSettings.tsx:230 +#: src/pages/part/PartDetail.tsx:793 #: src/pages/stock/LocationDetail.tsx:390 #: src/pages/stock/LocationDetail.tsx:420 #: src/pages/stock/StockDetail.tsx:642 @@ -2591,29 +2628,29 @@ msgstr "В наявності" #: src/components/nav/NavigationDrawer.tsx:84 #: src/defaults/links.tsx:48 -#: src/pages/build/BuildDetail.tsx:748 -#: src/pages/build/BuildIndex.tsx:102 +#: src/pages/build/BuildDetail.tsx:753 +#: src/pages/build/BuildIndex.tsx:101 msgid "Manufacturing" msgstr "Виробництво" #: src/components/nav/NavigationDrawer.tsx:91 #: src/defaults/links.tsx:54 #: src/pages/company/ManufacturerDetail.tsx:9 -#: src/pages/company/ManufacturerPartDetail.tsx:276 +#: src/pages/company/ManufacturerPartDetail.tsx:267 #: src/pages/company/SupplierDetail.tsx:9 -#: src/pages/company/SupplierPartDetail.tsx:360 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:553 -#: src/pages/purchasing/PurchasingIndex.tsx:122 +#: src/pages/company/SupplierPartDetail.tsx:365 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:558 +#: src/pages/purchasing/PurchasingIndex.tsx:212 msgid "Purchasing" msgstr "" #: src/components/nav/NavigationDrawer.tsx:98 #: src/defaults/links.tsx:60 #: src/pages/company/CustomerDetail.tsx:9 -#: src/pages/sales/ReturnOrderDetail.tsx:554 -#: src/pages/sales/SalesIndex.tsx:153 -#: src/pages/sales/SalesOrderDetail.tsx:619 -#: src/pages/sales/SalesOrderShipmentDetail.tsx:480 +#: src/pages/sales/ReturnOrderDetail.tsx:559 +#: src/pages/sales/SalesIndex.tsx:168 +#: src/pages/sales/SalesOrderDetail.tsx:624 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:448 msgid "Sales" msgstr "" @@ -2667,21 +2704,21 @@ msgid "Remove search group" msgstr "" #: src/components/nav/SearchDrawer.tsx:288 -#: src/pages/company/ManufacturerPartDetail.tsx:192 -#: src/pages/part/PartDetail.tsx:862 +#: src/pages/company/ManufacturerPartDetail.tsx:179 +#: src/pages/part/PartDetail.tsx:851 #: src/pages/part/PartSupplierDetail.tsx:15 -#: src/pages/purchasing/PurchasingIndex.tsx:81 +#: src/pages/purchasing/PurchasingIndex.tsx:100 msgid "Suppliers" msgstr "Постачальники" #: src/components/nav/SearchDrawer.tsx:298 #: src/pages/part/PartSupplierDetail.tsx:23 -#: src/pages/purchasing/PurchasingIndex.tsx:98 +#: src/pages/purchasing/PurchasingIndex.tsx:149 msgid "Manufacturers" msgstr "Виробники" #: src/components/nav/SearchDrawer.tsx:308 -#: src/pages/sales/SalesIndex.tsx:138 +#: src/pages/sales/SalesIndex.tsx:133 msgid "Customers" msgstr "Замовники" @@ -2772,21 +2809,21 @@ msgstr "" #: src/components/plugins/PluginDrawer.tsx:73 #: src/forms/selectionListFields.tsx:102 -#: src/pages/build/BuildDetail.tsx:250 -#: src/pages/company/CompanyDetail.tsx:93 -#: src/pages/company/ManufacturerPartDetail.tsx:93 -#: src/pages/company/ManufacturerPartDetail.tsx:120 -#: src/pages/company/SupplierPartDetail.tsx:145 -#: src/pages/part/CategoryDetail.tsx:108 +#: src/pages/build/BuildDetail.tsx:251 +#: src/pages/company/CompanyDetail.tsx:94 +#: src/pages/company/ManufacturerPartDetail.tsx:92 +#: src/pages/company/ManufacturerPartDetail.tsx:119 +#: src/pages/company/SupplierPartDetail.tsx:146 +#: src/pages/part/CategoryDetail.tsx:111 #: src/pages/part/PartDetail.tsx:460 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:162 -#: src/pages/sales/ReturnOrderDetail.tsx:129 -#: src/pages/sales/SalesOrderDetail.tsx:119 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:163 +#: src/pages/sales/ReturnOrderDetail.tsx:130 +#: src/pages/sales/SalesOrderDetail.tsx:120 #: src/pages/stock/LocationDetail.tsx:102 #: src/tables/ColumnRenderers.tsx:278 -#: src/tables/build/BuildAllocatedStockTable.tsx:91 -#: src/tables/machine/MachineTypeTable.tsx:161 -#: src/tables/machine/MachineTypeTable.tsx:257 +#: src/tables/build/BuildAllocatedStockTable.tsx:88 +#: src/tables/machine/MachineTypeTable.tsx:159 +#: src/tables/machine/MachineTypeTable.tsx:255 #: src/tables/plugin/PluginListTable.tsx:110 msgid "Description" msgstr "Опис" @@ -2814,7 +2851,7 @@ msgstr "Дата" #: src/tables/company/CompanyTable.tsx:91 #: src/tables/machine/MachineListTable.tsx:384 #: src/tables/machine/MachineListTable.tsx:799 -#: src/tables/part/ParametricPartTable.tsx:354 +#: src/tables/part/ParametricPartTable.tsx:19 #: src/tables/part/PartTable.tsx:197 #: src/tables/part/PartVariantTable.tsx:15 #: src/tables/plugin/PluginListTable.tsx:96 @@ -2836,8 +2873,8 @@ msgid "Installation Path" msgstr "" #: src/components/plugins/PluginDrawer.tsx:116 -#: src/tables/machine/MachineTypeTable.tsx:184 -#: src/tables/machine/MachineTypeTable.tsx:293 +#: src/tables/machine/MachineTypeTable.tsx:182 +#: src/tables/machine/MachineTypeTable.tsx:291 #: src/tables/plugin/PluginListTable.tsx:101 #: src/tables/plugin/PluginListTable.tsx:417 msgid "Builtin" @@ -2849,8 +2886,8 @@ msgstr "" #: src/components/plugins/PluginDrawer.tsx:133 #: src/pages/Index/Settings/AdminCenter/PluginManagementPanel.tsx:55 -#: src/pages/Index/Settings/SystemSettings.tsx:331 -#: src/pages/Index/Settings/UserSettings.tsx:128 +#: src/pages/Index/Settings/SystemSettings.tsx:337 +#: src/pages/Index/Settings/UserSettings.tsx:129 msgid "Plugin Settings" msgstr "" @@ -2911,7 +2948,7 @@ msgstr "" #~ msgid "Unknown model: {model}" #~ msgstr "Unknown model: {model}" -#: src/components/render/Instance.tsx:249 +#: src/components/render/Instance.tsx:247 msgid "Unknown model: {model_name}" msgstr "" @@ -2939,10 +2976,10 @@ msgstr "" #: src/components/render/Part.tsx:28 #: src/components/render/Plugin.tsx:17 #: src/components/render/User.tsx:37 -#: src/pages/company/CompanyDetail.tsx:323 -#: src/pages/company/SupplierPartDetail.tsx:373 +#: src/pages/company/CompanyDetail.tsx:328 +#: src/pages/company/SupplierPartDetail.tsx:378 #: src/pages/core/UserDetail.tsx:211 -#: src/pages/part/PartDetail.tsx:1027 +#: src/pages/part/PartDetail.tsx:1048 #: src/tables/ColumnRenderers.tsx:410 msgid "Inactive" msgstr "Неактивний" @@ -2962,11 +2999,11 @@ msgstr "Немає в наявності" #: src/components/render/Part.tsx:47 #: src/components/wizards/OrderPartsWizard.tsx:135 -#: src/pages/company/SupplierPartDetail.tsx:197 -#: src/pages/company/SupplierPartDetail.tsx:394 -#: src/pages/part/PartDetail.tsx:1015 +#: src/pages/company/SupplierPartDetail.tsx:198 +#: src/pages/company/SupplierPartDetail.tsx:399 +#: src/pages/part/PartDetail.tsx:1030 #: src/tables/bom/BomTable.tsx:444 -#: src/tables/build/BuildLineTable.tsx:222 +#: src/tables/build/BuildLineTable.tsx:223 #: src/tables/part/PartTable.tsx:108 msgid "On Order" msgstr "" @@ -2974,9 +3011,9 @@ msgstr "" #: src/components/render/Part.tsx:55 #: src/components/wizards/OrderPartsWizard.tsx:141 #: src/pages/part/PartDetail.tsx:587 -#: src/pages/part/PartDetail.tsx:1021 +#: src/pages/part/PartDetail.tsx:1036 #: src/pages/stock/StockDetail.tsx:925 -#: src/tables/part/PartTestResultTable.tsx:297 +#: src/tables/part/PartTestResultTable.tsx:305 #: src/tables/stock/StockItemTable.tsx:359 msgid "In Production" msgstr "" @@ -2987,7 +3024,7 @@ msgid "Details" msgstr "" #: src/components/render/Part.tsx:112 -#: src/components/wizards/ImportPartWizard.tsx:806 +#: src/components/wizards/ImportPartWizard.tsx:807 #: src/pages/part/PartDetail.tsx:487 #: src/tables/ColumnRenderers.tsx:233 #: src/tables/ColumnRenderers.tsx:242 @@ -3000,16 +3037,16 @@ msgstr "Категорія" #: src/components/render/Stock.tsx:114 #: src/components/render/Stock.tsx:132 #: src/forms/BuildForms.tsx:795 -#: src/forms/PurchaseOrderForms.tsx:595 +#: src/forms/PurchaseOrderForms.tsx:647 #: src/forms/StockForms.tsx:792 #: src/forms/StockForms.tsx:839 -#: src/forms/StockForms.tsx:885 -#: src/forms/StockForms.tsx:924 -#: src/forms/StockForms.tsx:960 -#: src/forms/StockForms.tsx:1003 -#: src/forms/StockForms.tsx:1047 -#: src/forms/StockForms.tsx:1095 -#: src/forms/StockForms.tsx:1139 +#: src/forms/StockForms.tsx:892 +#: src/forms/StockForms.tsx:938 +#: src/forms/StockForms.tsx:976 +#: src/forms/StockForms.tsx:1019 +#: src/forms/StockForms.tsx:1063 +#: src/forms/StockForms.tsx:1111 +#: src/forms/StockForms.tsx:1155 #: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:88 #: src/pages/core/UserDetail.tsx:158 #: src/pages/stock/StockDetail.tsx:298 @@ -3023,7 +3060,7 @@ msgstr "" #: src/components/render/Stock.tsx:99 #: src/pages/stock/StockDetail.tsx:198 #: src/pages/stock/StockDetail.tsx:930 -#: src/tables/build/BuildAllocatedStockTable.tsx:121 +#: src/tables/build/BuildAllocatedStockTable.tsx:118 #: src/tables/build/BuildOutputTable.tsx:107 #: src/tables/sales/SalesOrderAllocationTable.tsx:142 msgid "Serial Number" @@ -3034,9 +3071,9 @@ msgstr "Серійний номер" #: src/forms/BuildForms.tsx:240 #: src/forms/BuildForms.tsx:634 #: src/forms/BuildForms.tsx:797 -#: src/forms/PurchaseOrderForms.tsx:801 +#: src/forms/PurchaseOrderForms.tsx:853 #: src/forms/ReturnOrderForms.tsx:243 -#: src/forms/SalesOrderForms.tsx:308 +#: src/forms/SalesOrderForms.tsx:387 #: src/forms/StockForms.tsx:841 #: src/pages/part/PartStockHistoryDetail.tsx:56 #: src/pages/part/PartStockHistoryDetail.tsx:210 @@ -3046,9 +3083,9 @@ msgstr "Серійний номер" #: src/pages/part/pricing/PriceBreakPanel.tsx:172 #: src/pages/stock/StockDetail.tsx:258 #: src/pages/stock/StockDetail.tsx:936 -#: src/tables/build/BuildLineTable.tsx:86 +#: src/tables/build/BuildLineTable.tsx:83 #: src/tables/part/PartPurchaseOrdersTable.tsx:94 -#: src/tables/part/PartTestResultTable.tsx:269 +#: src/tables/part/PartTestResultTable.tsx:277 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:175 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:206 #: src/tables/purchasing/SupplierPriceBreakTable.tsx:69 @@ -3063,14 +3100,14 @@ msgstr "Кількість" #: src/forms/BuildForms.tsx:474 #: src/forms/StockForms.tsx:793 #: src/forms/StockForms.tsx:840 -#: src/forms/StockForms.tsx:886 -#: src/forms/StockForms.tsx:925 -#: src/forms/StockForms.tsx:961 -#: src/forms/StockForms.tsx:1004 -#: src/forms/StockForms.tsx:1048 -#: src/forms/StockForms.tsx:1096 -#: src/forms/StockForms.tsx:1140 -#: src/tables/build/BuildLineTable.tsx:96 +#: src/forms/StockForms.tsx:893 +#: src/forms/StockForms.tsx:939 +#: src/forms/StockForms.tsx:977 +#: src/forms/StockForms.tsx:1020 +#: src/forms/StockForms.tsx:1064 +#: src/forms/StockForms.tsx:1112 +#: src/forms/StockForms.tsx:1156 +#: src/tables/build/BuildLineTable.tsx:93 msgid "Batch" msgstr "Пакетно" @@ -3306,10 +3343,6 @@ msgstr "Параметри не вказані" #~ msgid "Part category updated" #~ msgstr "Part category updated" -#: src/components/tables/part/PartParameterTable.tsx:41 -#~ msgid "Parameter" -#~ msgstr "Parameter" - #: src/components/tables/part/PartParameterTable.tsx:114 #~ msgid "Part parameter updated" #~ msgstr "Part parameter updated" @@ -3571,15 +3604,16 @@ msgid "Already Imported" msgstr "" #: src/components/wizards/ImportPartWizard.tsx:205 -#: src/pages/company/CompanyDetail.tsx:136 +#: src/pages/company/CompanyDetail.tsx:137 #: src/pages/company/SupplierDetail.tsx:8 -#: src/pages/company/SupplierPartDetail.tsx:130 -#: src/pages/company/SupplierPartDetail.tsx:235 -#: src/pages/company/SupplierPartDetail.tsx:364 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:156 +#: src/pages/company/SupplierPartDetail.tsx:131 +#: src/pages/company/SupplierPartDetail.tsx:236 +#: src/pages/company/SupplierPartDetail.tsx:369 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:157 #: src/tables/Filter.tsx:360 #: src/tables/company/CompanyTable.tsx:96 #: src/tables/part/PartPurchaseOrdersTable.tsx:43 +#: src/tables/purchasing/PurchaseOrderParametricTable.tsx:34 #: src/tables/purchasing/PurchaseOrderTable.tsx:109 #: src/tables/purchasing/SupplierPriceBreakTable.tsx:40 msgid "Supplier" @@ -3648,7 +3682,7 @@ msgid "Next" msgstr "" #: src/components/wizards/ImportPartWizard.tsx:540 -#: src/pages/part/PartDetail.tsx:1046 +#: src/pages/part/PartDetail.tsx:1067 #: src/tables/part/PartTable.tsx:408 msgid "Edit Part" msgstr "" @@ -3669,28 +3703,28 @@ msgstr "" msgid "Import" msgstr "" -#: src/components/wizards/ImportPartWizard.tsx:691 +#: src/components/wizards/ImportPartWizard.tsx:692 msgid "Parameters created successfully!" msgstr "" -#: src/components/wizards/ImportPartWizard.tsx:719 +#: src/components/wizards/ImportPartWizard.tsx:720 msgid "Failed to create parameters, please fix the errors and try again" msgstr "" #. placeholder {0}: supplierPart?.supplier -#: src/components/wizards/ImportPartWizard.tsx:739 +#: src/components/wizards/ImportPartWizard.tsx:740 msgid "Part imported successfully from supplier {0}." msgstr "" -#: src/components/wizards/ImportPartWizard.tsx:752 +#: src/components/wizards/ImportPartWizard.tsx:753 msgid "Open Part" msgstr "" -#: src/components/wizards/ImportPartWizard.tsx:759 +#: src/components/wizards/ImportPartWizard.tsx:760 msgid "Open Supplier Part" msgstr "" -#: src/components/wizards/ImportPartWizard.tsx:766 +#: src/components/wizards/ImportPartWizard.tsx:767 msgid "Open Manufacturer Part" msgstr "" @@ -3699,25 +3733,19 @@ msgstr "" #~ msgid "Import Part" #~ msgstr "Import Part" -#: src/components/wizards/ImportPartWizard.tsx:802 +#: src/components/wizards/ImportPartWizard.tsx:803 msgid "Import Supplier Part" msgstr "" -#: src/components/wizards/ImportPartWizard.tsx:804 +#: src/components/wizards/ImportPartWizard.tsx:805 msgid "Search Supplier Part" msgstr "" -#: src/components/wizards/ImportPartWizard.tsx:806 -#: src/pages/company/ManufacturerPartDetail.tsx:166 -#: src/pages/part/PartDetail.tsx:793 -msgid "Parameters" -msgstr "Параметри" - -#: src/components/wizards/ImportPartWizard.tsx:806 +#: src/components/wizards/ImportPartWizard.tsx:807 msgid "Confirm import" msgstr "" -#: src/components/wizards/ImportPartWizard.tsx:808 +#: src/components/wizards/ImportPartWizard.tsx:809 msgid "Done" msgstr "" @@ -3738,24 +3766,24 @@ msgid "Sales Requirements" msgstr "" #: src/components/wizards/OrderPartsWizard.tsx:129 -#: src/forms/StockForms.tsx:887 -#: src/forms/StockForms.tsx:926 -#: src/forms/StockForms.tsx:962 -#: src/forms/StockForms.tsx:1005 -#: src/forms/StockForms.tsx:1049 -#: src/forms/StockForms.tsx:1097 -#: src/forms/StockForms.tsx:1141 -#: src/pages/company/SupplierPartDetail.tsx:190 -#: src/pages/company/SupplierPartDetail.tsx:378 +#: src/forms/StockForms.tsx:894 +#: src/forms/StockForms.tsx:940 +#: src/forms/StockForms.tsx:978 +#: src/forms/StockForms.tsx:1021 +#: src/forms/StockForms.tsx:1065 +#: src/forms/StockForms.tsx:1113 +#: src/forms/StockForms.tsx:1157 +#: src/pages/company/SupplierPartDetail.tsx:191 +#: src/pages/company/SupplierPartDetail.tsx:383 #: src/pages/part/PartDetail.tsx:534 -#: src/pages/part/PartDetail.tsx:984 +#: src/pages/part/PartDetail.tsx:999 #: src/tables/Filter.tsx:92 #: src/tables/purchasing/SupplierPartTable.tsx:230 msgid "In Stock" msgstr "В наявності" #: src/components/wizards/OrderPartsWizard.tsx:146 -#: src/tables/build/BuildLineTable.tsx:404 +#: src/tables/build/BuildLineTable.tsx:405 msgid "Required Quantity" msgstr "" @@ -3847,7 +3875,7 @@ msgid "Please correct the errors in the selected parts" msgstr "" #: src/components/wizards/OrderPartsWizard.tsx:587 -#: src/tables/build/BuildLineTable.tsx:815 +#: src/tables/build/BuildLineTable.tsx:822 #: src/tables/part/PartTable.tsx:522 #: src/tables/sales/SalesOrderLineItemTable.tsx:370 msgid "Order Parts" @@ -4349,9 +4377,9 @@ msgstr "" #: src/forms/BuildForms.tsx:333 #: src/forms/BuildForms.tsx:408 #: src/forms/BuildForms.tsx:685 -#: src/tables/build/BuildAllocatedStockTable.tsx:150 +#: src/tables/build/BuildAllocatedStockTable.tsx:147 #: src/tables/build/BuildOutputTable.tsx:582 -#: src/tables/part/PartTestResultTable.tsx:272 +#: src/tables/part/PartTestResultTable.tsx:280 msgid "Build Output" msgstr "" @@ -4362,22 +4390,22 @@ msgstr "" #: src/forms/BuildForms.tsx:336 #: src/forms/BuildForms.tsx:411 #: src/forms/BuildForms.tsx:475 -#: src/forms/PurchaseOrderForms.tsx:717 +#: src/forms/PurchaseOrderForms.tsx:769 #: src/forms/ReturnOrderForms.tsx:197 #: src/forms/ReturnOrderForms.tsx:244 #: src/forms/StockForms.tsx:712 #: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:87 -#: src/pages/build/BuildDetail.tsx:222 +#: src/pages/build/BuildDetail.tsx:223 #: src/pages/core/UserDetail.tsx:151 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:168 -#: src/pages/sales/ReturnOrderDetail.tsx:135 -#: src/pages/sales/SalesOrderDetail.tsx:125 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:169 +#: src/pages/sales/ReturnOrderDetail.tsx:136 +#: src/pages/sales/SalesOrderDetail.tsx:126 #: src/pages/stock/StockDetail.tsx:170 #: src/tables/Filter.tsx:274 #: src/tables/build/BuildOutputTable.tsx:404 #: src/tables/machine/MachineListTable.tsx:387 #: src/tables/part/PartPurchaseOrdersTable.tsx:38 -#: src/tables/part/PartTestResultTable.tsx:309 +#: src/tables/part/PartTestResultTable.tsx:317 #: src/tables/sales/ReturnOrderLineItemTable.tsx:138 #: src/tables/sales/ReturnOrderLineItemTable.tsx:176 #: src/tables/settings/CustomStateTable.tsx:79 @@ -4443,18 +4471,19 @@ msgid "Build outputs have been cancelled" msgstr "" #: src/forms/BuildForms.tsx:631 -#: src/pages/build/BuildDetail.tsx:207 -#: src/pages/company/ManufacturerPartDetail.tsx:85 -#: src/pages/company/SupplierPartDetail.tsx:96 +#: src/pages/build/BuildDetail.tsx:208 +#: src/pages/company/ManufacturerPartDetail.tsx:84 +#: src/pages/company/SupplierPartDetail.tsx:97 #: src/pages/part/PartDetail.tsx:453 #: src/pages/stock/StockDetail.tsx:153 #: src/tables/bom/BomTable.tsx:134 #: src/tables/bom/UsedInTable.tsx:40 -#: src/tables/build/BuildAllocatedStockTable.tsx:108 -#: src/tables/build/BuildLineTable.tsx:336 +#: src/tables/build/BuildAllocatedStockTable.tsx:105 +#: src/tables/build/BuildLineTable.tsx:337 #: src/tables/build/BuildOrderTable.tsx:79 #: src/tables/part/PartSalesAllocationsTable.tsx:61 #: src/tables/part/RelatedPartTable.tsx:73 +#: src/tables/purchasing/ManufacturerPartParametricTable.tsx:21 #: src/tables/purchasing/ManufacturerPartTable.tsx:69 #: src/tables/purchasing/SupplierPartTable.tsx:70 #: src/tables/sales/SalesOrderAllocationTable.tsx:135 @@ -4466,47 +4495,47 @@ msgstr "" #: src/forms/BuildForms.tsx:632 #: src/forms/BuildForms.tsx:796 #: src/forms/BuildForms.tsx:897 -#: src/forms/SalesOrderForms.tsx:306 -#: src/tables/build/BuildAllocatedStockTable.tsx:139 -#: src/tables/build/BuildLineTable.tsx:182 +#: src/forms/SalesOrderForms.tsx:385 +#: src/tables/build/BuildAllocatedStockTable.tsx:136 +#: src/tables/build/BuildLineTable.tsx:183 #: src/tables/sales/SalesOrderLineItemTable.tsx:342 #: src/tables/stock/StockItemTable.tsx:338 msgid "Allocated" msgstr "" #: src/forms/BuildForms.tsx:667 -#: src/forms/SalesOrderForms.tsx:295 -#: src/pages/build/BuildDetail.tsx:108 -#: src/pages/build/BuildDetail.tsx:326 +#: src/forms/SalesOrderForms.tsx:374 +#: src/pages/build/BuildDetail.tsx:109 +#: src/pages/build/BuildDetail.tsx:327 msgid "Source Location" msgstr "Розташування джерела" #: src/forms/BuildForms.tsx:668 -#: src/forms/SalesOrderForms.tsx:296 +#: src/forms/SalesOrderForms.tsx:375 msgid "Select the source location for the stock allocation" msgstr "Вибір розташування вихідного товару при розподілі запасів" #: src/forms/BuildForms.tsx:700 -#: src/forms/SalesOrderForms.tsx:336 -#: src/tables/build/BuildLineTable.tsx:574 -#: src/tables/build/BuildLineTable.tsx:731 -#: src/tables/build/BuildLineTable.tsx:830 +#: src/forms/SalesOrderForms.tsx:415 +#: src/tables/build/BuildLineTable.tsx:575 +#: src/tables/build/BuildLineTable.tsx:738 +#: src/tables/build/BuildLineTable.tsx:837 #: src/tables/sales/SalesOrderLineItemTable.tsx:380 #: src/tables/sales/SalesOrderLineItemTable.tsx:406 msgid "Allocate Stock" msgstr "" #: src/forms/BuildForms.tsx:703 -#: src/forms/SalesOrderForms.tsx:341 +#: src/forms/SalesOrderForms.tsx:420 msgid "Stock items allocated" msgstr "Елементи складу виділені" #: src/forms/BuildForms.tsx:816 #: src/forms/BuildForms.tsx:917 -#: src/tables/build/BuildAllocatedStockTable.tsx:240 -#: src/tables/build/BuildAllocatedStockTable.tsx:272 -#: src/tables/build/BuildLineTable.tsx:741 -#: src/tables/build/BuildLineTable.tsx:864 +#: src/tables/build/BuildAllocatedStockTable.tsx:243 +#: src/tables/build/BuildAllocatedStockTable.tsx:279 +#: src/tables/build/BuildLineTable.tsx:748 +#: src/tables/build/BuildLineTable.tsx:871 msgid "Consume Stock" msgstr "" @@ -4521,21 +4550,21 @@ msgstr "" #~ msgstr "Stock items consumed" #: src/forms/BuildForms.tsx:853 -#: src/tables/build/BuildLineTable.tsx:514 +#: src/tables/build/BuildLineTable.tsx:515 #: src/tables/part/PartBuildAllocationsTable.tsx:101 msgid "Fully consumed" msgstr "" #: src/forms/BuildForms.tsx:898 -#: src/tables/build/BuildLineTable.tsx:187 +#: src/tables/build/BuildLineTable.tsx:188 #: src/tables/stock/StockItemTable.tsx:367 msgid "Consumed" msgstr "Використано" -#: src/forms/CommonForms.tsx:88 -#: src/forms/PurchaseOrderForms.tsx:125 +#: src/forms/CommonForms.tsx:92 +#: src/forms/PurchaseOrderForms.tsx:176 #: src/forms/ReturnOrderForms.tsx:138 -#: src/forms/SalesOrderForms.tsx:164 +#: src/forms/SalesOrderForms.tsx:185 msgid "Select project code for this line item" msgstr "" @@ -4543,16 +4572,16 @@ msgstr "" #~ msgid "Company updated" #~ msgstr "Company updated" -#: src/forms/PartForms.tsx:85 -#: src/forms/PartForms.tsx:207 -#: src/pages/part/CategoryDetail.tsx:124 +#: src/forms/PartForms.tsx:99 +#: src/forms/PartForms.tsx:228 +#: src/pages/part/CategoryDetail.tsx:127 #: src/pages/part/PartDetail.tsx:668 #: src/tables/part/PartCategoryTable.tsx:94 #: src/tables/part/PartTable.tsx:325 msgid "Subscribed" msgstr "Ви підписані" -#: src/forms/PartForms.tsx:86 +#: src/forms/PartForms.tsx:100 msgid "Subscribe to notifications for this part" msgstr "" @@ -4564,156 +4593,156 @@ msgstr "" #~ msgid "Part updated" #~ msgstr "Part updated" -#: src/forms/PartForms.tsx:193 +#: src/forms/PartForms.tsx:214 msgid "Parent part category" msgstr "" -#: src/forms/PartForms.tsx:208 +#: src/forms/PartForms.tsx:229 msgid "Subscribe to notifications for this category" msgstr "" -#: src/forms/PurchaseOrderForms.tsx:388 -msgid "Assign Batch Code and Serial Numbers" -msgstr "Призначити Номер серії збірки та Серійний номер" - -#: src/forms/PurchaseOrderForms.tsx:390 -msgid "Assign Batch Code" -msgstr "Призначити Номер серії збірки" - -#: src/forms/PurchaseOrderForms.tsx:410 -msgid "Choose Location" -msgstr "Оберіть розташування" - -#: src/forms/PurchaseOrderForms.tsx:418 -msgid "Item Destination selected" -msgstr "" - #: src/forms/PurchaseOrderForms.tsx:421 #~ msgid "Assign Batch Code{0}" #~ msgstr "Assign Batch Code{0}" -#: src/forms/PurchaseOrderForms.tsx:428 -msgid "Part category default location selected" -msgstr "" +#: src/forms/PurchaseOrderForms.tsx:440 +msgid "Assign Batch Code and Serial Numbers" +msgstr "Призначити Номер серії збірки та Серійний номер" -#: src/forms/PurchaseOrderForms.tsx:438 -msgid "Received stock location selected" -msgstr "" +#: src/forms/PurchaseOrderForms.tsx:442 +msgid "Assign Batch Code" +msgstr "Призначити Номер серії збірки" #: src/forms/PurchaseOrderForms.tsx:444 #: src/forms/StockForms.tsx:428 #~ msgid "Remove item from list" #~ msgstr "Remove item from list" -#: src/forms/PurchaseOrderForms.tsx:446 +#: src/forms/PurchaseOrderForms.tsx:462 +msgid "Choose Location" +msgstr "Оберіть розташування" + +#: src/forms/PurchaseOrderForms.tsx:470 +msgid "Item Destination selected" +msgstr "" + +#: src/forms/PurchaseOrderForms.tsx:480 +msgid "Part category default location selected" +msgstr "" + +#: src/forms/PurchaseOrderForms.tsx:490 +msgid "Received stock location selected" +msgstr "" + +#: src/forms/PurchaseOrderForms.tsx:498 msgid "Default location selected" msgstr "" -#: src/forms/PurchaseOrderForms.tsx:507 +#: src/forms/PurchaseOrderForms.tsx:559 msgid "Set Location" msgstr "" -#: src/forms/PurchaseOrderForms.tsx:524 -msgid "Set Expiry Date" -msgstr "" - -#: src/forms/PurchaseOrderForms.tsx:532 -#: src/forms/StockForms.tsx:693 -msgid "Adjust Packaging" -msgstr "" - -#: src/forms/PurchaseOrderForms.tsx:540 -#: src/forms/StockForms.tsx:684 -#: src/hooks/UseStockAdjustActions.tsx:148 -msgid "Change Status" -msgstr "" - -#: src/forms/PurchaseOrderForms.tsx:546 -msgid "Add Note" -msgstr "" - #: src/forms/PurchaseOrderForms.tsx:566 #~ msgid "Serial numbers" #~ msgstr "Serial numbers" +#: src/forms/PurchaseOrderForms.tsx:576 +msgid "Set Expiry Date" +msgstr "" + #: src/forms/PurchaseOrderForms.tsx:582 #~ msgid "Store at line item destination" #~ msgstr "Store at line item destination" -#: src/forms/PurchaseOrderForms.tsx:610 -msgid "Store at default location" +#: src/forms/PurchaseOrderForms.tsx:584 +#: src/forms/StockForms.tsx:693 +msgid "Adjust Packaging" msgstr "" -#: src/forms/PurchaseOrderForms.tsx:625 -msgid "Store at line item destination " +#: src/forms/PurchaseOrderForms.tsx:592 +#: src/forms/StockForms.tsx:684 +#: src/hooks/UseStockAdjustActions.tsx:148 +msgid "Change Status" msgstr "" -#: src/forms/PurchaseOrderForms.tsx:637 -msgid "Store with already received stock" +#: src/forms/PurchaseOrderForms.tsx:598 +msgid "Add Note" msgstr "" #: src/forms/PurchaseOrderForms.tsx:658 #~ msgid "Receive line items" #~ msgstr "Receive line items" -#: src/forms/PurchaseOrderForms.tsx:661 -#: src/pages/build/BuildDetail.tsx:340 +#: src/forms/PurchaseOrderForms.tsx:662 +msgid "Store at default location" +msgstr "" + +#: src/forms/PurchaseOrderForms.tsx:677 +msgid "Store at line item destination " +msgstr "" + +#: src/forms/PurchaseOrderForms.tsx:689 +msgid "Store with already received stock" +msgstr "" + +#: src/forms/PurchaseOrderForms.tsx:713 +#: src/pages/build/BuildDetail.tsx:341 #: src/pages/stock/StockDetail.tsx:280 #: src/pages/stock/StockDetail.tsx:952 #: src/tables/Filter.tsx:83 -#: src/tables/build/BuildAllocatedStockTable.tsx:128 +#: src/tables/build/BuildAllocatedStockTable.tsx:125 #: src/tables/build/BuildOutputTable.tsx:112 -#: src/tables/part/PartTestResultTable.tsx:260 -#: src/tables/part/PartTestResultTable.tsx:281 +#: src/tables/part/PartTestResultTable.tsx:268 +#: src/tables/part/PartTestResultTable.tsx:289 #: src/tables/sales/SalesOrderAllocationTable.tsx:149 msgid "Batch Code" msgstr "Номер серії збірки" -#: src/forms/PurchaseOrderForms.tsx:662 +#: src/forms/PurchaseOrderForms.tsx:714 msgid "Enter batch code for received items" msgstr "Введіть Номер серії збірки для отриманих елементів" -#: src/forms/PurchaseOrderForms.tsx:675 +#: src/forms/PurchaseOrderForms.tsx:727 #: src/forms/StockForms.tsx:218 msgid "Serial Numbers" msgstr "" -#: src/forms/PurchaseOrderForms.tsx:676 +#: src/forms/PurchaseOrderForms.tsx:728 msgid "Enter serial numbers for received items" msgstr "" -#: src/forms/PurchaseOrderForms.tsx:690 +#: src/forms/PurchaseOrderForms.tsx:742 #: src/pages/stock/StockDetail.tsx:382 #: src/tables/stock/StockItemTable.tsx:294 msgid "Expiry Date" msgstr "" -#: src/forms/PurchaseOrderForms.tsx:691 +#: src/forms/PurchaseOrderForms.tsx:743 msgid "Enter an expiry date for received items" msgstr "" -#: src/forms/PurchaseOrderForms.tsx:703 +#: src/forms/PurchaseOrderForms.tsx:755 #: src/forms/StockForms.tsx:728 -#: src/pages/company/SupplierPartDetail.tsx:172 -#: src/pages/company/SupplierPartDetail.tsx:236 +#: src/pages/company/SupplierPartDetail.tsx:173 +#: src/pages/company/SupplierPartDetail.tsx:237 #: src/pages/stock/StockDetail.tsx:419 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:227 msgid "Packaging" msgstr "" -#: src/forms/PurchaseOrderForms.tsx:727 -#: src/pages/company/SupplierPartDetail.tsx:120 +#: src/forms/PurchaseOrderForms.tsx:779 +#: src/pages/company/SupplierPartDetail.tsx:121 #: src/tables/ColumnRenderers.tsx:332 msgid "Note" msgstr "Нотатки" -#: src/forms/PurchaseOrderForms.tsx:799 -#: src/pages/company/SupplierPartDetail.tsx:138 +#: src/forms/PurchaseOrderForms.tsx:851 +#: src/pages/company/SupplierPartDetail.tsx:139 #: src/tables/purchasing/SupplierPriceBreakTable.tsx:49 msgid "SKU" msgstr "Артикул, SKU" -#: src/forms/PurchaseOrderForms.tsx:800 +#: src/forms/PurchaseOrderForms.tsx:852 #: src/tables/part/PartPurchaseOrdersTable.tsx:127 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:213 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:283 @@ -4721,11 +4750,11 @@ msgstr "Артикул, SKU" msgid "Received" msgstr "Отримано" -#: src/forms/PurchaseOrderForms.tsx:817 +#: src/forms/PurchaseOrderForms.tsx:869 msgid "Receive Line Items" msgstr "" -#: src/forms/PurchaseOrderForms.tsx:823 +#: src/forms/PurchaseOrderForms.tsx:875 msgid "Items received" msgstr "" @@ -4737,7 +4766,35 @@ msgstr "Отримати предмети" msgid "Item received into stock" msgstr "Елемент, отриманий на складі" -#: src/forms/SalesOrderForms.tsx:401 +#: src/forms/SalesOrderForms.tsx:208 +#: src/forms/SalesOrderForms.tsx:210 +#: src/tables/sales/SalesOrderShipmentTable.tsx:215 +msgid "Check Shipment" +msgstr "" + +#: src/forms/SalesOrderForms.tsx:211 +msgid "Marking the shipment as checked indicates that you have verified that all items included in this shipment are correct" +msgstr "" + +#: src/forms/SalesOrderForms.tsx:221 +msgid "Shipment marked as checked" +msgstr "" + +#: src/forms/SalesOrderForms.tsx:236 +#: src/forms/SalesOrderForms.tsx:238 +#: src/tables/sales/SalesOrderShipmentTable.tsx:228 +msgid "Uncheck Shipment" +msgstr "" + +#: src/forms/SalesOrderForms.tsx:239 +msgid "Marking the shipment as unchecked indicates that the shipment requires further verification" +msgstr "" + +#: src/forms/SalesOrderForms.tsx:249 +msgid "Shipment marked as unchecked" +msgstr "" + +#: src/forms/SalesOrderForms.tsx:480 msgid "Leave blank to use the order address" msgstr "" @@ -4792,150 +4849,150 @@ msgstr "Перемістити" msgid "Return" msgstr "" -#: src/forms/StockForms.tsx:963 +#: src/forms/StockForms.tsx:979 #: src/pages/Index/Scan.tsx:182 msgid "Count" msgstr "Кількість" -#: src/forms/StockForms.tsx:1246 +#: src/forms/StockForms.tsx:1262 #: src/hooks/UseStockAdjustActions.tsx:108 msgid "Add Stock" msgstr "Додати запаси" -#: src/forms/StockForms.tsx:1247 +#: src/forms/StockForms.tsx:1263 msgid "Stock added" msgstr "Додано елемент складу" -#: src/forms/StockForms.tsx:1250 +#: src/forms/StockForms.tsx:1266 msgid "Increase the quantity of the selected stock items by a given amount." msgstr "" -#: src/forms/StockForms.tsx:1261 +#: src/forms/StockForms.tsx:1277 #: src/hooks/UseStockAdjustActions.tsx:118 msgid "Remove Stock" msgstr "Видалити елемент складу" -#: src/forms/StockForms.tsx:1262 +#: src/forms/StockForms.tsx:1278 msgid "Stock removed" msgstr "Видалено елемент складу" -#: src/forms/StockForms.tsx:1265 +#: src/forms/StockForms.tsx:1281 msgid "Decrease the quantity of the selected stock items by a given amount." msgstr "" -#: src/forms/StockForms.tsx:1276 +#: src/forms/StockForms.tsx:1292 #: src/hooks/UseStockAdjustActions.tsx:128 msgid "Transfer Stock" msgstr "Переміщення запасів" -#: src/forms/StockForms.tsx:1277 +#: src/forms/StockForms.tsx:1293 msgid "Stock transferred" msgstr "" -#: src/forms/StockForms.tsx:1280 +#: src/forms/StockForms.tsx:1296 msgid "Transfer selected items to the specified location." msgstr "" -#: src/forms/StockForms.tsx:1291 +#: src/forms/StockForms.tsx:1307 #: src/hooks/UseStockAdjustActions.tsx:168 msgid "Return Stock" msgstr "" -#: src/forms/StockForms.tsx:1292 +#: src/forms/StockForms.tsx:1308 msgid "Stock returned" msgstr "" -#: src/forms/StockForms.tsx:1295 +#: src/forms/StockForms.tsx:1311 msgid "Return selected items into stock, to the specified location." msgstr "" -#: src/forms/StockForms.tsx:1306 +#: src/forms/StockForms.tsx:1322 #: src/hooks/UseStockAdjustActions.tsx:98 msgid "Count Stock" msgstr "Кількість запасів" -#: src/forms/StockForms.tsx:1307 +#: src/forms/StockForms.tsx:1323 msgid "Stock counted" msgstr "" -#: src/forms/StockForms.tsx:1310 +#: src/forms/StockForms.tsx:1326 msgid "Count the selected stock items, and adjust the quantity accordingly." msgstr "" -#: src/forms/StockForms.tsx:1321 +#: src/forms/StockForms.tsx:1337 msgid "Change Stock Status" msgstr "" -#: src/forms/StockForms.tsx:1322 +#: src/forms/StockForms.tsx:1338 msgid "Stock status changed" msgstr "" -#: src/forms/StockForms.tsx:1325 +#: src/forms/StockForms.tsx:1341 msgid "Change the status of the selected stock items." msgstr "" -#: src/forms/StockForms.tsx:1336 +#: src/forms/StockForms.tsx:1352 #: src/hooks/UseStockAdjustActions.tsx:138 msgid "Merge Stock" msgstr "" -#: src/forms/StockForms.tsx:1337 +#: src/forms/StockForms.tsx:1353 msgid "Stock merged" msgstr "" -#: src/forms/StockForms.tsx:1339 +#: src/forms/StockForms.tsx:1355 msgid "Merge Stock Items" msgstr "" -#: src/forms/StockForms.tsx:1341 +#: src/forms/StockForms.tsx:1357 msgid "Merge operation cannot be reversed" msgstr "" -#: src/forms/StockForms.tsx:1342 +#: src/forms/StockForms.tsx:1358 msgid "Tracking information may be lost when merging items" msgstr "" -#: src/forms/StockForms.tsx:1343 +#: src/forms/StockForms.tsx:1359 msgid "Supplier information may be lost when merging items" msgstr "" -#: src/forms/StockForms.tsx:1361 +#: src/forms/StockForms.tsx:1377 msgid "Assign Stock to Customer" msgstr "" -#: src/forms/StockForms.tsx:1362 +#: src/forms/StockForms.tsx:1378 msgid "Stock assigned to customer" msgstr "" -#: src/forms/StockForms.tsx:1372 +#: src/forms/StockForms.tsx:1388 msgid "Delete Stock Items" msgstr "" -#: src/forms/StockForms.tsx:1373 +#: src/forms/StockForms.tsx:1389 msgid "Stock deleted" msgstr "" -#: src/forms/StockForms.tsx:1376 +#: src/forms/StockForms.tsx:1392 msgid "This operation will permanently delete the selected stock items." msgstr "" -#: src/forms/StockForms.tsx:1385 +#: src/forms/StockForms.tsx:1401 msgid "Parent stock location" msgstr "" -#: src/forms/StockForms.tsx:1512 +#: src/forms/StockForms.tsx:1528 msgid "Find Serial Number" msgstr "" -#: src/forms/StockForms.tsx:1523 +#: src/forms/StockForms.tsx:1539 msgid "No matching items" msgstr "" -#: src/forms/StockForms.tsx:1529 +#: src/forms/StockForms.tsx:1545 msgid "Multiple matching items" msgstr "" -#: src/forms/StockForms.tsx:1538 +#: src/forms/StockForms.tsx:1554 msgid "Invalid response from server" msgstr "" @@ -4953,7 +5010,6 @@ msgstr "" #: src/tables/FilterSelectDrawer.tsx:137 #: src/tables/FilterSelectDrawer.tsx:149 #: src/tables/part/PartTestResultTable.tsx:206 -#: src/tables/purchasing/ManufacturerPartParameterTable.tsx:42 #: src/tables/stock/StockItemTestResultTable.tsx:207 msgid "Value" msgstr "Значення" @@ -5244,7 +5300,7 @@ msgid "Delete selected stock items" msgstr "" #: src/hooks/UseStockAdjustActions.tsx:205 -#: src/pages/part/PartDetail.tsx:1137 +#: src/pages/part/PartDetail.tsx:1158 msgid "Stock Actions" msgstr "Дії над запасами" @@ -5932,6 +5988,9 @@ msgstr "" #: src/pages/Index/Settings/AccountSettings/MFASettings.tsx:310 #: src/pages/Index/Settings/AccountSettings/MFASettings.tsx:401 +#: src/tables/build/BuildAllocatedStockTable.tsx:181 +#: src/tables/build/BuildLineTable.tsx:668 +#: src/tables/sales/SalesOrderAllocationTable.tsx:220 msgid "Confirm Removal" msgstr "" @@ -6394,30 +6453,34 @@ msgid "Email Messages" msgstr "" #: src/pages/Index/Settings/AdminCenter/HomePanel.tsx:22 -msgid "Active Alerts" -msgstr "" +#~ msgid "Active Alerts" +#~ msgstr "Active Alerts" #: src/pages/Index/Settings/AdminCenter/HomePanel.tsx:27 -msgid "Inactive Alerts" +#~ msgid "Inactive Alerts" +#~ msgstr "Inactive Alerts" + +#: src/pages/Index/Settings/AdminCenter/HomePanel.tsx:36 +msgid "System Status" msgstr "" -#: src/pages/Index/Settings/AdminCenter/HomePanel.tsx:38 +#: src/pages/Index/Settings/AdminCenter/HomePanel.tsx:47 msgid "Admin Center Information" msgstr "" -#: src/pages/Index/Settings/AdminCenter/HomePanel.tsx:44 +#: src/pages/Index/Settings/AdminCenter/HomePanel.tsx:53 msgid "The home panel (and the whole Admin Center) is a new feature starting with the new UI and was previously (before 1.0) not available." msgstr "" -#: src/pages/Index/Settings/AdminCenter/HomePanel.tsx:51 +#: src/pages/Index/Settings/AdminCenter/HomePanel.tsx:60 msgid "The admin center provides a centralized location for all administration functionality and is meant to replace all interaction with the (django) backend admin interface." msgstr "" -#: src/pages/Index/Settings/AdminCenter/HomePanel.tsx:58 +#: src/pages/Index/Settings/AdminCenter/HomePanel.tsx:67 msgid "Please open feature requests (after checking the tracker) for any existing backend admin functionality you are missing in this UI. The backend admin interface should be used carefully and seldom." msgstr "" -#: src/pages/Index/Settings/AdminCenter/HomePanel.tsx:76 +#: src/pages/Index/Settings/AdminCenter/HomePanel.tsx:85 msgid "Quick Actions" msgstr "" @@ -6476,11 +6539,11 @@ msgstr "" #: src/pages/Index/Settings/AdminCenter/Index.tsx:195 #: src/pages/part/CategoryDetail.tsx:313 -msgid "Part Parameters" -msgstr "Параметри частини" +#~ msgid "Part Parameters" +#~ msgstr "Part Parameters" #: src/pages/Index/Settings/AdminCenter/Index.tsx:202 -#: src/pages/part/CategoryDetail.tsx:306 +#: src/pages/part/CategoryDetail.tsx:329 msgid "Category Parameters" msgstr "" @@ -6494,7 +6557,7 @@ msgstr "" #: src/pages/Index/Settings/AdminCenter/Index.tsx:235 #: src/pages/Index/Settings/AdminCenter/MachineManagementPanel.tsx:52 -#: src/tables/machine/MachineTypeTable.tsx:325 +#: src/tables/machine/MachineTypeTable.tsx:323 msgid "Machines" msgstr "" @@ -6507,8 +6570,8 @@ msgid "Data Management" msgstr "" #: src/pages/Index/Settings/AdminCenter/Index.tsx:270 -#: src/pages/Index/Settings/SystemSettings.tsx:175 -#: src/pages/Index/Settings/UserSettings.tsx:118 +#: src/pages/Index/Settings/SystemSettings.tsx:176 +#: src/pages/Index/Settings/UserSettings.tsx:119 msgid "Reporting" msgstr "" @@ -6709,11 +6772,11 @@ msgstr "" msgid "The settings below are specific to each available plugin" msgstr "" -#: src/pages/Index/Settings/SystemSettings.tsx:77 +#: src/pages/Index/Settings/SystemSettings.tsx:78 msgid "Authentication" msgstr "" -#: src/pages/Index/Settings/SystemSettings.tsx:103 +#: src/pages/Index/Settings/SystemSettings.tsx:104 msgid "Barcodes" msgstr "" @@ -6725,12 +6788,12 @@ msgstr "" #~ msgid "This panel is a placeholder." #~ msgstr "This panel is a placeholder." -#: src/pages/Index/Settings/SystemSettings.tsx:127 -#: src/pages/Index/Settings/UserSettings.tsx:112 +#: src/pages/Index/Settings/SystemSettings.tsx:128 +#: src/pages/Index/Settings/UserSettings.tsx:113 msgid "The settings below are specific to each available notification method" msgstr "" -#: src/pages/Index/Settings/SystemSettings.tsx:133 +#: src/pages/Index/Settings/SystemSettings.tsx:134 msgid "Pricing" msgstr "" @@ -6738,7 +6801,7 @@ msgstr "" #~ msgid "Exchange Rates" #~ msgstr "Exchange Rates" -#: src/pages/Index/Settings/SystemSettings.tsx:169 +#: src/pages/Index/Settings/SystemSettings.tsx:170 msgid "Labels" msgstr "" @@ -6790,15 +6853,15 @@ msgstr "" #~ msgid "Delete notifications" #~ msgstr "Delete notifications" -#: src/pages/build/BuildDetail.tsx:69 +#: src/pages/build/BuildDetail.tsx:70 msgid "No Required Items" msgstr "" -#: src/pages/build/BuildDetail.tsx:71 +#: src/pages/build/BuildDetail.tsx:72 msgid "This build order does not have any required items." msgstr "" -#: src/pages/build/BuildDetail.tsx:72 +#: src/pages/build/BuildDetail.tsx:73 msgid "The assembled part may not have a Bill of Materials (BOM) defined, or the BOM is empty." msgstr "" @@ -6826,7 +6889,7 @@ msgstr "" #~ msgid "Build Order updated" #~ msgstr "Build Order updated" -#: src/pages/build/BuildDetail.tsx:215 +#: src/pages/build/BuildDetail.tsx:216 #: src/pages/part/PartDetail.tsx:480 #: src/pages/stock/StockDetail.tsx:161 #: src/tables/bom/UsedInTable.tsx:44 @@ -6843,10 +6906,10 @@ msgstr "Ревізія" #~ msgid "Duplicate build order" #~ msgstr "Duplicate build order" -#: src/pages/build/BuildDetail.tsx:228 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:174 -#: src/pages/sales/ReturnOrderDetail.tsx:141 -#: src/pages/sales/SalesOrderDetail.tsx:131 +#: src/pages/build/BuildDetail.tsx:229 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:175 +#: src/pages/sales/ReturnOrderDetail.tsx:142 +#: src/pages/sales/SalesOrderDetail.tsx:132 #: src/pages/stock/StockDetail.tsx:176 msgid "Custom Status" msgstr "" @@ -6855,9 +6918,9 @@ msgstr "" #~ msgid "Delete build order" #~ msgstr "Delete build order" -#: src/pages/build/BuildDetail.tsx:237 -#: src/pages/build/BuildDetail.tsx:723 -#: src/pages/build/BuildIndex.tsx:28 +#: src/pages/build/BuildDetail.tsx:238 +#: src/pages/build/BuildDetail.tsx:728 +#: src/pages/build/BuildIndex.tsx:34 #: src/pages/stock/LocationDetail.tsx:140 #: src/tables/build/BuildOrderTable.tsx:123 #: src/tables/build/BuildOrderTable.tsx:183 @@ -6865,57 +6928,57 @@ msgstr "" msgid "External" msgstr "Зовнішній" -#: src/pages/build/BuildDetail.tsx:244 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:141 -#: src/pages/sales/ReturnOrderDetail.tsx:108 -#: src/pages/sales/SalesOrderDetail.tsx:98 +#: src/pages/build/BuildDetail.tsx:245 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:142 +#: src/pages/sales/ReturnOrderDetail.tsx:109 +#: src/pages/sales/SalesOrderDetail.tsx:99 #: src/tables/ColumnRenderers.tsx:321 -#: src/tables/build/BuildAllocatedStockTable.tsx:115 -#: src/tables/build/BuildLineTable.tsx:352 +#: src/tables/build/BuildAllocatedStockTable.tsx:112 +#: src/tables/build/BuildLineTable.tsx:353 msgid "Reference" msgstr "" -#: src/pages/build/BuildDetail.tsx:258 +#: src/pages/build/BuildDetail.tsx:259 msgid "Parent Build" msgstr "" -#: src/pages/build/BuildDetail.tsx:269 +#: src/pages/build/BuildDetail.tsx:270 msgid "Build Quantity" msgstr "" -#: src/pages/build/BuildDetail.tsx:275 +#: src/pages/build/BuildDetail.tsx:276 #: src/pages/part/PartDetail.tsx:598 #: src/tables/bom/BomTable.tsx:365 #: src/tables/bom/BomTable.tsx:407 msgid "Can Build" msgstr "" -#: src/pages/build/BuildDetail.tsx:284 -#: src/pages/build/BuildDetail.tsx:474 +#: src/pages/build/BuildDetail.tsx:285 +#: src/pages/build/BuildDetail.tsx:475 msgid "Completed Outputs" msgstr "" -#: src/pages/build/BuildDetail.tsx:301 +#: src/pages/build/BuildDetail.tsx:302 #: src/tables/Filter.tsx:381 #: src/tables/build/BuildOrderTable.tsx:143 msgid "Issued By" msgstr "" -#: src/pages/build/BuildDetail.tsx:309 +#: src/pages/build/BuildDetail.tsx:310 #: src/pages/part/PartDetail.tsx:691 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:261 -#: src/pages/sales/ReturnOrderDetail.tsx:239 -#: src/pages/sales/SalesOrderDetail.tsx:232 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:262 +#: src/pages/sales/ReturnOrderDetail.tsx:240 +#: src/pages/sales/SalesOrderDetail.tsx:233 #: src/tables/ColumnRenderers.tsx:464 #: src/tables/Filter.tsx:319 msgid "Responsible" msgstr "Відповідальний" -#: src/pages/build/BuildDetail.tsx:327 +#: src/pages/build/BuildDetail.tsx:328 msgid "Any location" msgstr "Будь-яке розташування" -#: src/pages/build/BuildDetail.tsx:334 +#: src/pages/build/BuildDetail.tsx:335 msgid "Destination Location" msgstr "" @@ -6924,24 +6987,24 @@ msgstr "" #~ msgid "Test Statistics" #~ msgstr "Test Statistics" -#: src/pages/build/BuildDetail.tsx:350 +#: src/pages/build/BuildDetail.tsx:351 #: src/tables/settings/ApiTokenTable.tsx:97 #: src/tables/settings/PendingTasksTable.tsx:41 msgid "Created" msgstr "" -#: src/pages/build/BuildDetail.tsx:358 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:286 -#: src/pages/sales/ReturnOrderDetail.tsx:265 -#: src/pages/sales/SalesOrderDetail.tsx:257 +#: src/pages/build/BuildDetail.tsx:359 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:287 +#: src/pages/sales/ReturnOrderDetail.tsx:266 +#: src/pages/sales/SalesOrderDetail.tsx:258 #: src/tables/ColumnRenderers.tsx:486 msgid "Start Date" msgstr "" -#: src/pages/build/BuildDetail.tsx:366 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:294 -#: src/pages/sales/ReturnOrderDetail.tsx:273 -#: src/pages/sales/SalesOrderDetail.tsx:265 +#: src/pages/build/BuildDetail.tsx:367 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:295 +#: src/pages/sales/ReturnOrderDetail.tsx:274 +#: src/pages/sales/SalesOrderDetail.tsx:266 #: src/tables/ColumnRenderers.tsx:494 #: src/tables/part/PartPurchaseOrdersTable.tsx:101 #: src/tables/sales/ReturnOrderLineItemTable.tsx:154 @@ -6954,185 +7017,185 @@ msgstr "Кінцева дата" #~ msgstr "Reporting Actions" #: src/pages/build/BuildDetail.tsx:374 +#~ msgid "Print build report" +#~ msgstr "Print build report" + +#: src/pages/build/BuildDetail.tsx:375 #: src/tables/build/BuildOrderTable.tsx:93 #: src/tables/sales/SalesOrderLineItemTable.tsx:347 msgid "Completed" msgstr "" -#: src/pages/build/BuildDetail.tsx:374 -#~ msgid "Print build report" -#~ msgstr "Print build report" - -#: src/pages/build/BuildDetail.tsx:410 +#: src/pages/build/BuildDetail.tsx:411 msgid "Build Details" msgstr "" -#: src/pages/build/BuildDetail.tsx:416 +#: src/pages/build/BuildDetail.tsx:417 msgid "Required Parts" msgstr "" -#: src/pages/build/BuildDetail.tsx:428 -#: src/pages/sales/SalesOrderDetail.tsx:407 -#: src/pages/sales/SalesOrderShipmentDetail.tsx:261 +#: src/pages/build/BuildDetail.tsx:429 +#: src/pages/sales/SalesOrderDetail.tsx:408 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:259 #: src/tables/part/PartSalesAllocationsTable.tsx:73 msgid "Allocated Stock" msgstr "Виділений запас" -#: src/pages/build/BuildDetail.tsx:444 +#: src/pages/build/BuildDetail.tsx:445 msgid "Consumed Stock" msgstr "Використані запаси" -#: src/pages/build/BuildDetail.tsx:461 +#: src/pages/build/BuildDetail.tsx:462 msgid "Incomplete Outputs" msgstr "" -#: src/pages/build/BuildDetail.tsx:489 +#: src/pages/build/BuildDetail.tsx:490 msgid "External Orders" msgstr "" -#: src/pages/build/BuildDetail.tsx:503 +#: src/pages/build/BuildDetail.tsx:504 msgid "Child Build Orders" msgstr "Дочірні Замовлення на збірку" -#: src/pages/build/BuildDetail.tsx:513 -#: src/pages/part/PartDetail.tsx:937 +#: src/pages/build/BuildDetail.tsx:514 +#: src/pages/part/PartDetail.tsx:926 #: src/pages/stock/StockDetail.tsx:587 #: src/tables/build/BuildOutputTable.tsx:654 #: src/tables/stock/StockItemTestResultTable.tsx:173 msgid "Test Results" msgstr "" -#: src/pages/build/BuildDetail.tsx:550 +#: src/pages/build/BuildDetail.tsx:555 msgid "Edit Build Order" msgstr "" -#: src/pages/build/BuildDetail.tsx:572 +#: src/pages/build/BuildDetail.tsx:577 #: src/tables/build/BuildOrderTable.tsx:207 #: src/tables/build/BuildOrderTable.tsx:223 msgid "Add Build Order" msgstr "" -#: src/pages/build/BuildDetail.tsx:582 +#: src/pages/build/BuildDetail.tsx:587 msgid "Cancel Build Order" msgstr "" -#: src/pages/build/BuildDetail.tsx:584 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:416 -#: src/pages/sales/ReturnOrderDetail.tsx:427 -#: src/pages/sales/SalesOrderDetail.tsx:454 +#: src/pages/build/BuildDetail.tsx:589 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:421 +#: src/pages/sales/ReturnOrderDetail.tsx:432 +#: src/pages/sales/SalesOrderDetail.tsx:459 msgid "Order cancelled" msgstr "" -#: src/pages/build/BuildDetail.tsx:585 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:415 -#: src/pages/sales/ReturnOrderDetail.tsx:426 -#: src/pages/sales/SalesOrderDetail.tsx:453 +#: src/pages/build/BuildDetail.tsx:590 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:420 +#: src/pages/sales/ReturnOrderDetail.tsx:431 +#: src/pages/sales/SalesOrderDetail.tsx:458 msgid "Cancel this order" msgstr "" -#: src/pages/build/BuildDetail.tsx:594 +#: src/pages/build/BuildDetail.tsx:599 msgid "Hold Build Order" msgstr "" -#: src/pages/build/BuildDetail.tsx:596 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:423 -#: src/pages/sales/ReturnOrderDetail.tsx:434 -#: src/pages/sales/SalesOrderDetail.tsx:461 +#: src/pages/build/BuildDetail.tsx:601 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:428 +#: src/pages/sales/ReturnOrderDetail.tsx:439 +#: src/pages/sales/SalesOrderDetail.tsx:466 msgid "Place this order on hold" msgstr "" -#: src/pages/build/BuildDetail.tsx:597 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:424 -#: src/pages/sales/ReturnOrderDetail.tsx:435 -#: src/pages/sales/SalesOrderDetail.tsx:462 +#: src/pages/build/BuildDetail.tsx:602 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:429 +#: src/pages/sales/ReturnOrderDetail.tsx:440 +#: src/pages/sales/SalesOrderDetail.tsx:467 msgid "Order placed on hold" msgstr "" -#: src/pages/build/BuildDetail.tsx:602 +#: src/pages/build/BuildDetail.tsx:607 msgid "Issue Build Order" msgstr "" -#: src/pages/build/BuildDetail.tsx:604 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:407 -#: src/pages/sales/ReturnOrderDetail.tsx:418 -#: src/pages/sales/SalesOrderDetail.tsx:445 +#: src/pages/build/BuildDetail.tsx:609 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:412 +#: src/pages/sales/ReturnOrderDetail.tsx:423 +#: src/pages/sales/SalesOrderDetail.tsx:450 msgid "Issue this order" msgstr "" -#: src/pages/build/BuildDetail.tsx:605 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:408 -#: src/pages/sales/ReturnOrderDetail.tsx:419 -#: src/pages/sales/SalesOrderDetail.tsx:446 +#: src/pages/build/BuildDetail.tsx:610 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:413 +#: src/pages/sales/ReturnOrderDetail.tsx:424 +#: src/pages/sales/SalesOrderDetail.tsx:451 msgid "Order issued" msgstr "" -#: src/pages/build/BuildDetail.tsx:624 +#: src/pages/build/BuildDetail.tsx:629 msgid "Complete Build Order" msgstr "" -#: src/pages/build/BuildDetail.tsx:630 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:436 -#: src/pages/sales/ReturnOrderDetail.tsx:442 -#: src/pages/sales/SalesOrderDetail.tsx:480 +#: src/pages/build/BuildDetail.tsx:635 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:441 +#: src/pages/sales/ReturnOrderDetail.tsx:447 +#: src/pages/sales/SalesOrderDetail.tsx:485 msgid "Mark this order as complete" msgstr "" -#: src/pages/build/BuildDetail.tsx:633 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:430 -#: src/pages/sales/ReturnOrderDetail.tsx:443 -#: src/pages/sales/SalesOrderDetail.tsx:481 +#: src/pages/build/BuildDetail.tsx:638 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:435 +#: src/pages/sales/ReturnOrderDetail.tsx:448 +#: src/pages/sales/SalesOrderDetail.tsx:486 msgid "Order completed" msgstr "" -#: src/pages/build/BuildDetail.tsx:660 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:459 -#: src/pages/sales/ReturnOrderDetail.tsx:470 -#: src/pages/sales/SalesOrderDetail.tsx:516 +#: src/pages/build/BuildDetail.tsx:665 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:464 +#: src/pages/sales/ReturnOrderDetail.tsx:475 +#: src/pages/sales/SalesOrderDetail.tsx:521 msgid "Issue Order" msgstr "" -#: src/pages/build/BuildDetail.tsx:667 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:466 -#: src/pages/sales/ReturnOrderDetail.tsx:477 -#: src/pages/sales/SalesOrderDetail.tsx:530 +#: src/pages/build/BuildDetail.tsx:672 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:471 +#: src/pages/sales/ReturnOrderDetail.tsx:482 +#: src/pages/sales/SalesOrderDetail.tsx:535 msgid "Complete Order" msgstr "" -#: src/pages/build/BuildDetail.tsx:686 +#: src/pages/build/BuildDetail.tsx:691 msgid "Build Order Actions" msgstr "" -#: src/pages/build/BuildDetail.tsx:691 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:489 -#: src/pages/sales/ReturnOrderDetail.tsx:500 -#: src/pages/sales/SalesOrderDetail.tsx:554 +#: src/pages/build/BuildDetail.tsx:696 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:494 +#: src/pages/sales/ReturnOrderDetail.tsx:505 +#: src/pages/sales/SalesOrderDetail.tsx:559 msgid "Edit order" msgstr "" -#: src/pages/build/BuildDetail.tsx:695 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:497 -#: src/pages/sales/ReturnOrderDetail.tsx:506 -#: src/pages/sales/SalesOrderDetail.tsx:559 -msgid "Duplicate order" -msgstr "" - -#: src/pages/build/BuildDetail.tsx:699 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:500 +#: src/pages/build/BuildDetail.tsx:700 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:502 #: src/pages/sales/ReturnOrderDetail.tsx:511 -#: src/pages/sales/SalesOrderDetail.tsx:562 -msgid "Hold order" +#: src/pages/sales/SalesOrderDetail.tsx:564 +msgid "Duplicate order" msgstr "" #: src/pages/build/BuildDetail.tsx:704 #: src/pages/purchasing/PurchaseOrderDetail.tsx:505 #: src/pages/sales/ReturnOrderDetail.tsx:516 #: src/pages/sales/SalesOrderDetail.tsx:567 +msgid "Hold order" +msgstr "" + +#: src/pages/build/BuildDetail.tsx:709 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:510 +#: src/pages/sales/ReturnOrderDetail.tsx:521 +#: src/pages/sales/SalesOrderDetail.tsx:572 msgid "Cancel order" msgstr "" -#: src/pages/build/BuildDetail.tsx:742 +#: src/pages/build/BuildDetail.tsx:747 #: src/pages/stock/StockDetail.tsx:344 -#: src/tables/build/BuildAllocatedStockTable.tsx:85 +#: src/tables/build/BuildAllocatedStockTable.tsx:82 #: src/tables/part/PartBuildAllocationsTable.tsx:45 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:157 #: src/tables/stock/StockTrackingTable.tsx:109 @@ -7143,7 +7206,7 @@ msgstr "" #~ msgid "Build order created" #~ msgstr "Build order created" -#: src/pages/build/BuildIndex.tsx:29 +#: src/pages/build/BuildIndex.tsx:35 #: src/tables/build/BuildOrderTable.tsx:184 msgid "Show external build orders" msgstr "" @@ -7152,61 +7215,82 @@ msgstr "" #~ msgid "New Build Order" #~ msgstr "New Build Order" -#: src/pages/build/BuildIndex.tsx:83 -#: src/pages/purchasing/PurchasingIndex.tsx:69 -#: src/pages/sales/SalesIndex.tsx:92 -#: src/pages/sales/SalesIndex.tsx:125 +#: src/pages/build/BuildIndex.tsx:74 +#: src/pages/part/CategoryDetail.tsx:292 +#: src/pages/purchasing/PurchasingIndex.tsx:74 +#: src/pages/purchasing/PurchasingIndex.tsx:107 +#: src/pages/purchasing/PurchasingIndex.tsx:135 +#: src/pages/purchasing/PurchasingIndex.tsx:156 +#: src/pages/purchasing/PurchasingIndex.tsx:184 +#: src/pages/sales/SalesIndex.tsx:61 +#: src/pages/sales/SalesIndex.tsx:107 +#: src/pages/sales/SalesIndex.tsx:140 msgid "Table View" msgstr "" -#: src/pages/build/BuildIndex.tsx:86 -#: src/pages/purchasing/PurchasingIndex.tsx:72 -#: src/pages/sales/SalesIndex.tsx:95 -#: src/pages/sales/SalesIndex.tsx:128 +#: src/pages/build/BuildIndex.tsx:80 +#: src/pages/purchasing/PurchasingIndex.tsx:80 +#: src/pages/sales/SalesIndex.tsx:67 +#: src/pages/sales/SalesIndex.tsx:113 msgid "Calendar View" msgstr "" -#: src/pages/company/CompanyDetail.tsx:99 +#: src/pages/build/BuildIndex.tsx:86 +#: src/pages/part/CategoryDetail.tsx:306 +#: src/pages/purchasing/PurchasingIndex.tsx:92 +#: src/pages/purchasing/PurchasingIndex.tsx:118 +#: src/pages/purchasing/PurchasingIndex.tsx:141 +#: src/pages/purchasing/PurchasingIndex.tsx:167 +#: src/pages/purchasing/PurchasingIndex.tsx:190 +#: src/pages/sales/SalesIndex.tsx:79 +#: src/pages/sales/SalesIndex.tsx:125 +#: src/pages/sales/SalesIndex.tsx:151 +msgid "Parametric View" +msgstr "" + +#: src/pages/company/CompanyDetail.tsx:100 msgid "Website" msgstr "" -#: src/pages/company/CompanyDetail.tsx:107 +#: src/pages/company/CompanyDetail.tsx:108 msgid "Phone Number" msgstr "" -#: src/pages/company/CompanyDetail.tsx:114 +#: src/pages/company/CompanyDetail.tsx:115 msgid "Email Address" msgstr "" -#: src/pages/company/CompanyDetail.tsx:121 +#: src/pages/company/CompanyDetail.tsx:122 msgid "Tax ID" msgstr "" -#: src/pages/company/CompanyDetail.tsx:131 +#: src/pages/company/CompanyDetail.tsx:132 msgid "Default Currency" msgstr "" -#: src/pages/company/CompanyDetail.tsx:142 +#: src/pages/company/CompanyDetail.tsx:143 #: src/pages/company/ManufacturerDetail.tsx:8 -#: src/pages/company/ManufacturerPartDetail.tsx:104 -#: src/pages/company/ManufacturerPartDetail.tsx:280 -#: src/pages/company/SupplierPartDetail.tsx:152 +#: src/pages/company/ManufacturerPartDetail.tsx:103 +#: src/pages/company/ManufacturerPartDetail.tsx:271 +#: src/pages/company/SupplierPartDetail.tsx:153 #: src/tables/Filter.tsx:347 #: src/tables/company/CompanyTable.tsx:101 #: src/tables/purchasing/SupplierPartTable.tsx:89 msgid "Manufacturer" msgstr "" -#: src/pages/company/CompanyDetail.tsx:148 +#: src/pages/company/CompanyDetail.tsx:149 #: src/pages/company/CustomerDetail.tsx:8 #: src/pages/part/pricing/SaleHistoryPanel.tsx:31 -#: src/pages/sales/ReturnOrderDetail.tsx:123 -#: src/pages/sales/SalesOrderDetail.tsx:113 -#: src/pages/sales/SalesOrderShipmentDetail.tsx:113 +#: src/pages/sales/ReturnOrderDetail.tsx:124 +#: src/pages/sales/SalesOrderDetail.tsx:114 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:111 #: src/pages/stock/StockDetail.tsx:370 #: src/tables/company/CompanyTable.tsx:106 +#: src/tables/sales/ReturnOrderParametricTable.tsx:32 #: src/tables/sales/ReturnOrderTable.tsx:108 -#: src/tables/sales/SalesOrderShipmentTable.tsx:111 +#: src/tables/sales/SalesOrderParametricTable.tsx:32 +#: src/tables/sales/SalesOrderShipmentTable.tsx:132 #: src/tables/sales/SalesOrderTable.tsx:133 #: src/tables/stock/StockTrackingTable.tsx:153 msgid "Customer" @@ -7216,11 +7300,11 @@ msgstr "" #~ msgid "Edit company" #~ msgstr "Edit company" -#: src/pages/company/CompanyDetail.tsx:181 +#: src/pages/company/CompanyDetail.tsx:182 msgid "Company Details" msgstr "" -#: src/pages/company/CompanyDetail.tsx:187 +#: src/pages/company/CompanyDetail.tsx:188 msgid "Supplied Parts" msgstr "" @@ -7228,79 +7312,79 @@ msgstr "" #~ msgid "Delete company" #~ msgstr "Delete company" -#: src/pages/company/CompanyDetail.tsx:194 +#: src/pages/company/CompanyDetail.tsx:195 msgid "Manufactured Parts" msgstr "Вироблені деталі" -#: src/pages/company/CompanyDetail.tsx:241 +#: src/pages/company/CompanyDetail.tsx:242 msgid "Assigned Stock" msgstr "" -#: src/pages/company/CompanyDetail.tsx:282 +#: src/pages/company/CompanyDetail.tsx:287 #: src/tables/company/CompanyTable.tsx:82 msgid "Edit Company" msgstr "" -#: src/pages/company/CompanyDetail.tsx:290 +#: src/pages/company/CompanyDetail.tsx:295 msgid "Delete Company" msgstr "" -#: src/pages/company/CompanyDetail.tsx:305 +#: src/pages/company/CompanyDetail.tsx:310 msgid "Company Actions" msgstr "" -#: src/pages/company/ManufacturerPartDetail.tsx:78 -#: src/pages/company/SupplierPartDetail.tsx:89 +#: src/pages/company/ManufacturerPartDetail.tsx:77 +#: src/pages/company/SupplierPartDetail.tsx:90 msgid "Internal Part" msgstr "Внутрішній компонент" -#: src/pages/company/ManufacturerPartDetail.tsx:112 +#: src/pages/company/ManufacturerPartDetail.tsx:111 msgid "Manufacturer Part Number" msgstr "" -#: src/pages/company/ManufacturerPartDetail.tsx:129 -#: src/pages/company/SupplierPartDetail.tsx:113 +#: src/pages/company/ManufacturerPartDetail.tsx:128 +#: src/pages/company/SupplierPartDetail.tsx:114 msgid "External Link" msgstr "Зовнішнє посилання" -#: src/pages/company/ManufacturerPartDetail.tsx:148 -#: src/pages/company/SupplierPartDetail.tsx:232 +#: src/pages/company/ManufacturerPartDetail.tsx:147 +#: src/pages/company/SupplierPartDetail.tsx:233 #: src/pages/part/PartDetail.tsx:787 msgid "Part Details" msgstr "" -#: src/pages/company/ManufacturerPartDetail.tsx:151 +#: src/pages/company/ManufacturerPartDetail.tsx:150 msgid "Manufacturer Details" msgstr "" -#: src/pages/company/ManufacturerPartDetail.tsx:160 +#: src/pages/company/ManufacturerPartDetail.tsx:159 msgid "Manufacturer Part Details" msgstr "" -#: src/pages/company/ManufacturerPartDetail.tsx:178 -#: src/pages/company/SupplierPartDetail.tsx:252 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:381 +#: src/pages/company/ManufacturerPartDetail.tsx:165 +#: src/pages/company/SupplierPartDetail.tsx:253 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:382 msgid "Received Stock" msgstr "" -#: src/pages/company/ManufacturerPartDetail.tsx:220 +#: src/pages/company/ManufacturerPartDetail.tsx:211 #: src/tables/purchasing/ManufacturerPartTable.tsx:108 msgid "Edit Manufacturer Part" msgstr "" -#: src/pages/company/ManufacturerPartDetail.tsx:227 +#: src/pages/company/ManufacturerPartDetail.tsx:218 #: src/tables/purchasing/ManufacturerPartTable.tsx:96 #: src/tables/purchasing/ManufacturerPartTable.tsx:115 #: src/tables/purchasing/ManufacturerPartTable.tsx:156 msgid "Add Manufacturer Part" msgstr "" -#: src/pages/company/ManufacturerPartDetail.tsx:239 +#: src/pages/company/ManufacturerPartDetail.tsx:230 #: src/tables/purchasing/ManufacturerPartTable.tsx:126 msgid "Delete Manufacturer Part" msgstr "" -#: src/pages/company/ManufacturerPartDetail.tsx:254 +#: src/pages/company/ManufacturerPartDetail.tsx:245 msgid "Manufacturer Part Actions" msgstr "" @@ -7308,12 +7392,12 @@ msgstr "" #~ msgid "ManufacturerPart" #~ msgstr "ManufacturerPart" -#: src/pages/company/SupplierPartDetail.tsx:104 +#: src/pages/company/SupplierPartDetail.tsx:105 #: src/tables/part/RelatedPartTable.tsx:82 msgid "Part Description" msgstr "Опис частини" -#: src/pages/company/SupplierPartDetail.tsx:179 +#: src/pages/company/SupplierPartDetail.tsx:180 #: src/tables/part/PartPurchaseOrdersTable.tsx:73 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:191 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:233 @@ -7321,50 +7405,50 @@ msgstr "Опис частини" msgid "Pack Quantity" msgstr "" -#: src/pages/company/SupplierPartDetail.tsx:204 +#: src/pages/company/SupplierPartDetail.tsx:205 msgid "Supplier Availability" msgstr "" -#: src/pages/company/SupplierPartDetail.tsx:212 +#: src/pages/company/SupplierPartDetail.tsx:213 msgid "Availability Updated" msgstr "" -#: src/pages/company/SupplierPartDetail.tsx:237 +#: src/pages/company/SupplierPartDetail.tsx:238 msgid "Availability" msgstr "Наявність" -#: src/pages/company/SupplierPartDetail.tsx:246 +#: src/pages/company/SupplierPartDetail.tsx:247 msgid "Supplier Part Details" msgstr "" -#: src/pages/company/SupplierPartDetail.tsx:279 +#: src/pages/company/SupplierPartDetail.tsx:280 #: src/pages/part/PartPricingPanel.tsx:113 #: src/pages/part/pricing/PricingOverviewPanel.tsx:239 msgid "Supplier Pricing" msgstr "" -#: src/pages/company/SupplierPartDetail.tsx:308 +#: src/pages/company/SupplierPartDetail.tsx:313 msgid "Supplier Part Actions" msgstr "" -#: src/pages/company/SupplierPartDetail.tsx:332 +#: src/pages/company/SupplierPartDetail.tsx:337 #: src/tables/purchasing/SupplierPartTable.tsx:244 msgid "Edit Supplier Part" msgstr "" -#: src/pages/company/SupplierPartDetail.tsx:340 +#: src/pages/company/SupplierPartDetail.tsx:345 #: src/tables/purchasing/SupplierPartTable.tsx:264 msgid "Delete Supplier Part" msgstr "" -#: src/pages/company/SupplierPartDetail.tsx:348 +#: src/pages/company/SupplierPartDetail.tsx:353 #: src/tables/purchasing/SupplierPartTable.tsx:172 #: src/tables/purchasing/SupplierPartTable.tsx:251 msgid "Add Supplier Part" msgstr "" -#: src/pages/company/SupplierPartDetail.tsx:388 -#: src/pages/part/PartDetail.tsx:1003 +#: src/pages/company/SupplierPartDetail.tsx:393 +#: src/pages/part/PartDetail.tsx:1018 msgid "No Stock" msgstr "" @@ -7411,83 +7495,83 @@ msgstr "Інформація про користувача" msgid "Basic user" msgstr "" -#: src/pages/part/CategoryDetail.tsx:100 +#: src/pages/part/CategoryDetail.tsx:103 #: src/pages/stock/LocationDetail.tsx:94 #: src/tables/settings/ErrorTable.tsx:63 #: src/tables/settings/ErrorTable.tsx:108 msgid "Path" msgstr "Шлях" -#: src/pages/part/CategoryDetail.tsx:116 +#: src/pages/part/CategoryDetail.tsx:119 msgid "Parent Category" msgstr "Батьківська категорія" -#: src/pages/part/CategoryDetail.tsx:139 -#: src/pages/part/CategoryDetail.tsx:271 +#: src/pages/part/CategoryDetail.tsx:142 +#: src/pages/part/CategoryDetail.tsx:279 msgid "Subcategories" msgstr "Підкатегорії" -#: src/pages/part/CategoryDetail.tsx:146 +#: src/pages/part/CategoryDetail.tsx:149 #: src/pages/stock/LocationDetail.tsx:134 #: src/tables/part/PartCategoryTable.tsx:89 #: src/tables/stock/StockLocationTable.tsx:43 msgid "Structural" msgstr "Структурна" -#: src/pages/part/CategoryDetail.tsx:152 +#: src/pages/part/CategoryDetail.tsx:155 msgid "Parent default location" msgstr "" -#: src/pages/part/CategoryDetail.tsx:159 +#: src/pages/part/CategoryDetail.tsx:162 msgid "Default location" msgstr "" -#: src/pages/part/CategoryDetail.tsx:170 +#: src/pages/part/CategoryDetail.tsx:173 msgid "Top level part category" msgstr "Коренева категорія" -#: src/pages/part/CategoryDetail.tsx:180 -#: src/pages/part/CategoryDetail.tsx:248 +#: src/pages/part/CategoryDetail.tsx:183 +#: src/pages/part/CategoryDetail.tsx:251 #: src/tables/part/PartCategoryTable.tsx:122 msgid "Edit Part Category" msgstr "" -#: src/pages/part/CategoryDetail.tsx:189 +#: src/pages/part/CategoryDetail.tsx:192 msgid "Move items to parent category" msgstr "" -#: src/pages/part/CategoryDetail.tsx:193 +#: src/pages/part/CategoryDetail.tsx:196 #: src/pages/stock/LocationDetail.tsx:226 msgid "Delete items" msgstr "Видалити елемент" -#: src/pages/part/CategoryDetail.tsx:201 -#: src/pages/part/CategoryDetail.tsx:253 +#: src/pages/part/CategoryDetail.tsx:204 +#: src/pages/part/CategoryDetail.tsx:256 msgid "Delete Part Category" msgstr "Видалити категорію елементу" -#: src/pages/part/CategoryDetail.tsx:204 +#: src/pages/part/CategoryDetail.tsx:207 msgid "Parts Action" msgstr "" -#: src/pages/part/CategoryDetail.tsx:205 +#: src/pages/part/CategoryDetail.tsx:208 msgid "Action for parts in this category" msgstr "" -#: src/pages/part/CategoryDetail.tsx:211 +#: src/pages/part/CategoryDetail.tsx:214 msgid "Child Categories Action" msgstr "" -#: src/pages/part/CategoryDetail.tsx:212 +#: src/pages/part/CategoryDetail.tsx:215 msgid "Action for child categories in this category" msgstr "" -#: src/pages/part/CategoryDetail.tsx:244 +#: src/pages/part/CategoryDetail.tsx:247 #: src/tables/part/PartCategoryTable.tsx:143 msgid "Category Actions" msgstr "" -#: src/pages/part/CategoryDetail.tsx:265 +#: src/pages/part/CategoryDetail.tsx:273 msgid "Category Details" msgstr "" @@ -7585,7 +7669,6 @@ msgid "Category Default Location" msgstr "" #: src/pages/part/PartDetail.tsx:507 -#: src/tables/purchasing/ManufacturerPartParameterTable.tsx:48 msgid "Units" msgstr "Одиниці виміру" @@ -7600,7 +7683,7 @@ msgstr "" #: src/pages/part/PartDetail.tsx:542 #: src/tables/bom/BomTable.tsx:439 -#: src/tables/build/BuildLineTable.tsx:305 +#: src/tables/build/BuildLineTable.tsx:306 #: src/tables/part/PartTable.tsx:319 #: src/tables/sales/SalesOrderLineItemTable.tsx:138 msgid "Available Stock" @@ -7608,7 +7691,7 @@ msgstr "Доступний залишок" #: src/pages/part/PartDetail.tsx:548 #: src/tables/bom/BomTable.tsx:341 -#: src/tables/build/BuildLineTable.tsx:267 +#: src/tables/build/BuildLineTable.tsx:268 #: src/tables/sales/SalesOrderLineItemTable.tsx:180 msgid "On order" msgstr "" @@ -7634,7 +7717,7 @@ msgstr "Мінімальний запас" #~ msgstr "Scheduling" #: src/pages/part/PartDetail.tsx:620 -#: src/tables/part/ParametricPartTable.tsx:359 +#: src/tables/part/ParametricPartTable.tsx:24 #: src/tables/part/PartTable.tsx:203 msgid "Locked" msgstr "" @@ -7671,16 +7754,16 @@ msgid "Saleable Part" msgstr "" #: src/pages/part/PartDetail.tsx:663 -#: src/pages/part/PartDetail.tsx:1033 +#: src/pages/part/PartDetail.tsx:1054 #: src/tables/bom/BomTable.tsx:150 #: src/tables/bom/BomTable.tsx:434 msgid "Virtual Part" msgstr "" #: src/pages/part/PartDetail.tsx:678 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:271 -#: src/pages/sales/ReturnOrderDetail.tsx:249 -#: src/pages/sales/SalesOrderDetail.tsx:242 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:272 +#: src/pages/sales/ReturnOrderDetail.tsx:250 +#: src/pages/sales/SalesOrderDetail.tsx:243 #: src/tables/ColumnRenderers.tsx:502 msgid "Creation Date" msgstr "" @@ -7718,35 +7801,46 @@ msgstr "" msgid "Select Part Revision" msgstr "" -#: src/pages/part/PartDetail.tsx:823 +#: src/pages/part/PartDetail.tsx:812 msgid "Variants" msgstr "" -#: src/pages/part/PartDetail.tsx:830 +#: src/pages/part/PartDetail.tsx:819 #: src/pages/stock/StockDetail.tsx:542 msgid "Allocations" msgstr "" -#: src/pages/part/PartDetail.tsx:837 +#: src/pages/part/PartDetail.tsx:826 msgid "Bill of Materials" msgstr "" -#: src/pages/part/PartDetail.tsx:849 +#: src/pages/part/PartDetail.tsx:838 msgid "Used In" msgstr "Використано у" -#: src/pages/part/PartDetail.tsx:856 +#: src/pages/part/PartDetail.tsx:845 msgid "Part Pricing" msgstr "Ціна елементу" -#: src/pages/part/PartDetail.tsx:926 +#: src/pages/part/PartDetail.tsx:915 msgid "Test Templates" msgstr "" -#: src/pages/part/PartDetail.tsx:948 +#: src/pages/part/PartDetail.tsx:937 msgid "Related Parts" msgstr "" +#: src/pages/part/PartDetail.tsx:949 +#: src/tables/ColumnRenderers.tsx:73 +#: src/tables/bom/BomTable.tsx:657 +#: src/tables/part/PartTestTemplateTable.tsx:258 +msgid "Part is Locked" +msgstr "" + +#: src/pages/part/PartDetail.tsx:954 +msgid "Part parameters cannot be edited, as the part is locked" +msgstr "" + #: src/pages/part/PartDetail.tsx:956 #~ msgid "Count part stock" #~ msgstr "Count part stock" @@ -7755,42 +7849,46 @@ msgstr "" #~ msgid "Transfer part stock" #~ msgstr "Transfer part stock" -#: src/pages/part/PartDetail.tsx:1009 +#: src/pages/part/PartDetail.tsx:1024 #: src/tables/part/PartTestTemplateTable.tsx:112 #: src/tables/stock/StockItemTestResultTable.tsx:404 msgid "Required" msgstr "Необхідний" -#: src/pages/part/PartDetail.tsx:1058 +#: src/pages/part/PartDetail.tsx:1042 +msgid "Deficit" +msgstr "" + +#: src/pages/part/PartDetail.tsx:1079 #: src/tables/part/PartTable.tsx:396 #: src/tables/part/PartTable.tsx:449 msgid "Add Part" msgstr "" -#: src/pages/part/PartDetail.tsx:1072 +#: src/pages/part/PartDetail.tsx:1093 msgid "Delete Part" msgstr "Видалити деталь" -#: src/pages/part/PartDetail.tsx:1081 +#: src/pages/part/PartDetail.tsx:1102 msgid "Deleting this part cannot be reversed" msgstr "Видалення цього елементу не може бути скасовано" -#: src/pages/part/PartDetail.tsx:1143 +#: src/pages/part/PartDetail.tsx:1164 #: src/pages/stock/StockDetail.tsx:883 msgid "Order" msgstr "Замовлення" -#: src/pages/part/PartDetail.tsx:1144 +#: src/pages/part/PartDetail.tsx:1165 #: src/pages/stock/StockDetail.tsx:884 -#: src/tables/build/BuildLineTable.tsx:761 +#: src/tables/build/BuildLineTable.tsx:768 msgid "Order Stock" msgstr "" -#: src/pages/part/PartDetail.tsx:1156 +#: src/pages/part/PartDetail.tsx:1177 msgid "Search by serial number" msgstr "" -#: src/pages/part/PartDetail.tsx:1164 +#: src/pages/part/PartDetail.tsx:1185 #: src/tables/part/PartTable.tsx:506 msgid "Part Actions" msgstr "" @@ -8039,7 +8137,7 @@ msgstr "" #: src/pages/part/pricing/PricingOverviewPanel.tsx:288 #: src/pages/stock/StockDetail.tsx:426 -#: src/tables/part/PartParameterTable.tsx:121 +#: src/tables/general/ParameterTable.tsx:101 #: src/tables/stock/StockItemTable.tsx:300 msgid "Last Updated" msgstr "" @@ -8107,17 +8205,17 @@ msgstr "" msgid "Variant Part" msgstr "" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:89 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:90 msgid "Edit Purchase Order" msgstr "" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:125 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:126 #: src/tables/purchasing/PurchaseOrderTable.tsx:154 #: src/tables/purchasing/PurchaseOrderTable.tsx:167 msgid "Add Purchase Order" msgstr "" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:147 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:148 msgid "Supplier Reference" msgstr "" @@ -8127,20 +8225,20 @@ msgstr "" #~ msgid "Order Currency," #~ msgstr "Order Currency," -#: src/pages/purchasing/PurchaseOrderDetail.tsx:187 -#: src/pages/sales/ReturnOrderDetail.tsx:160 -#: src/pages/sales/SalesOrderDetail.tsx:144 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:188 +#: src/pages/sales/ReturnOrderDetail.tsx:161 +#: src/pages/sales/SalesOrderDetail.tsx:145 msgid "Completed Line Items" msgstr "" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:196 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:197 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:272 msgid "Destination" msgstr "" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:202 -#: src/pages/sales/ReturnOrderDetail.tsx:167 -#: src/pages/sales/SalesOrderDetail.tsx:161 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:203 +#: src/pages/sales/ReturnOrderDetail.tsx:168 +#: src/pages/sales/SalesOrderDetail.tsx:162 msgid "Order Currency" msgstr "" @@ -8150,97 +8248,97 @@ msgstr "" #~ msgid "Created On" #~ msgstr "Created On" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:208 -#: src/pages/sales/ReturnOrderDetail.tsx:174 -#: src/pages/sales/SalesOrderDetail.tsx:167 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:209 +#: src/pages/sales/ReturnOrderDetail.tsx:175 +#: src/pages/sales/SalesOrderDetail.tsx:168 msgid "Total Cost" msgstr "" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:237 -#: src/pages/sales/ReturnOrderDetail.tsx:215 -#: src/pages/sales/SalesOrderDetail.tsx:208 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:238 +#: src/pages/sales/ReturnOrderDetail.tsx:216 +#: src/pages/sales/SalesOrderDetail.tsx:209 msgid "Contact Email" msgstr "" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:245 -#: src/pages/sales/ReturnOrderDetail.tsx:223 -#: src/pages/sales/SalesOrderDetail.tsx:216 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:246 +#: src/pages/sales/ReturnOrderDetail.tsx:224 +#: src/pages/sales/SalesOrderDetail.tsx:217 msgid "Contact Phone" msgstr "" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:278 -#: src/pages/sales/ReturnOrderDetail.tsx:257 -#: src/pages/sales/SalesOrderDetail.tsx:249 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:279 +#: src/pages/sales/ReturnOrderDetail.tsx:258 +#: src/pages/sales/SalesOrderDetail.tsx:250 msgid "Issue Date" msgstr "" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:303 -#: src/pages/sales/ReturnOrderDetail.tsx:281 -#: src/pages/sales/SalesOrderDetail.tsx:272 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:304 +#: src/pages/sales/ReturnOrderDetail.tsx:282 +#: src/pages/sales/SalesOrderDetail.tsx:273 #: src/tables/ColumnRenderers.tsx:510 #: src/tables/build/BuildOrderTable.tsx:137 #: src/tables/part/PartPurchaseOrdersTable.tsx:106 msgid "Completion Date" msgstr "Дата завершення" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:333 -#: src/pages/sales/ReturnOrderDetail.tsx:311 -#: src/pages/sales/SalesOrderDetail.tsx:349 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:334 +#: src/pages/sales/ReturnOrderDetail.tsx:312 +#: src/pages/sales/SalesOrderDetail.tsx:350 msgid "Order Details" msgstr "" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:339 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:348 -#: src/pages/sales/ReturnOrderDetail.tsx:153 -#: src/pages/sales/ReturnOrderDetail.tsx:317 -#: src/pages/sales/ReturnOrderDetail.tsx:326 -#: src/pages/sales/SalesOrderDetail.tsx:355 -#: src/pages/sales/SalesOrderDetail.tsx:364 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:340 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:349 +#: src/pages/sales/ReturnOrderDetail.tsx:154 +#: src/pages/sales/ReturnOrderDetail.tsx:318 +#: src/pages/sales/ReturnOrderDetail.tsx:327 +#: src/pages/sales/SalesOrderDetail.tsx:356 +#: src/pages/sales/SalesOrderDetail.tsx:365 msgid "Line Items" msgstr "" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:363 -#: src/pages/sales/ReturnOrderDetail.tsx:341 -#: src/pages/sales/SalesOrderDetail.tsx:378 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:364 +#: src/pages/sales/ReturnOrderDetail.tsx:342 +#: src/pages/sales/SalesOrderDetail.tsx:379 msgid "Extra Line Items" msgstr "" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:405 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:410 msgid "Issue Purchase Order" msgstr "" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:413 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:418 msgid "Cancel Purchase Order" msgstr "" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:421 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:426 msgid "Hold Purchase Order" msgstr "" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:429 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:434 msgid "Complete Purchase Order" msgstr "" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:485 -#: src/pages/sales/ReturnOrderDetail.tsx:496 -#: src/pages/sales/SalesOrderDetail.tsx:549 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:490 +#: src/pages/sales/ReturnOrderDetail.tsx:501 +#: src/pages/sales/SalesOrderDetail.tsx:554 msgid "Order Actions" msgstr "" -#: src/pages/sales/ReturnOrderDetail.tsx:114 -#: src/pages/sales/SalesOrderDetail.tsx:104 -#: src/pages/sales/SalesOrderShipmentDetail.tsx:134 +#: src/pages/sales/ReturnOrderDetail.tsx:115 +#: src/pages/sales/SalesOrderDetail.tsx:105 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:132 #: src/tables/sales/SalesOrderTable.tsx:141 msgid "Customer Reference" msgstr "" -#: src/pages/sales/ReturnOrderDetail.tsx:195 +#: src/pages/sales/ReturnOrderDetail.tsx:196 msgid "Return Address" msgstr "" -#: src/pages/sales/ReturnOrderDetail.tsx:201 -#: src/pages/sales/SalesOrderDetail.tsx:194 -#: src/pages/sales/SalesOrderShipmentDetail.tsx:181 +#: src/pages/sales/ReturnOrderDetail.tsx:202 +#: src/pages/sales/SalesOrderDetail.tsx:195 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:179 msgid "Not specified" msgstr "" @@ -8248,117 +8346,117 @@ msgstr "" #~ msgid "Order canceled" #~ msgstr "Order canceled" -#: src/pages/sales/ReturnOrderDetail.tsx:389 +#: src/pages/sales/ReturnOrderDetail.tsx:394 msgid "Edit Return Order" msgstr "" -#: src/pages/sales/ReturnOrderDetail.tsx:407 +#: src/pages/sales/ReturnOrderDetail.tsx:412 #: src/tables/sales/ReturnOrderTable.tsx:154 #: src/tables/sales/ReturnOrderTable.tsx:167 msgid "Add Return Order" msgstr "" -#: src/pages/sales/ReturnOrderDetail.tsx:416 +#: src/pages/sales/ReturnOrderDetail.tsx:421 msgid "Issue Return Order" msgstr "" -#: src/pages/sales/ReturnOrderDetail.tsx:424 +#: src/pages/sales/ReturnOrderDetail.tsx:429 msgid "Cancel Return Order" msgstr "" -#: src/pages/sales/ReturnOrderDetail.tsx:432 +#: src/pages/sales/ReturnOrderDetail.tsx:437 msgid "Hold Return Order" msgstr "" -#: src/pages/sales/ReturnOrderDetail.tsx:440 +#: src/pages/sales/ReturnOrderDetail.tsx:445 msgid "Complete Return Order" msgstr "" -#: src/pages/sales/SalesOrderDetail.tsx:153 +#: src/pages/sales/SalesOrderDetail.tsx:154 msgid "Completed Shipments" msgstr "" -#: src/pages/sales/SalesOrderDetail.tsx:188 -#: src/pages/sales/SalesOrderShipmentDetail.tsx:170 +#: src/pages/sales/SalesOrderDetail.tsx:189 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:168 msgid "Shipping Address" msgstr "" -#: src/pages/sales/SalesOrderDetail.tsx:316 +#: src/pages/sales/SalesOrderDetail.tsx:317 msgid "Edit Sales Order" msgstr "" -#: src/pages/sales/SalesOrderDetail.tsx:338 +#: src/pages/sales/SalesOrderDetail.tsx:339 #: src/tables/sales/SalesOrderTable.tsx:108 #: src/tables/sales/SalesOrderTable.tsx:121 msgid "Add Sales Order" msgstr "" -#: src/pages/sales/SalesOrderDetail.tsx:396 +#: src/pages/sales/SalesOrderDetail.tsx:397 #: src/tables/sales/SalesOrderTable.tsx:147 msgid "Shipments" msgstr "" -#: src/pages/sales/SalesOrderDetail.tsx:443 +#: src/pages/sales/SalesOrderDetail.tsx:448 msgid "Issue Sales Order" msgstr "" -#: src/pages/sales/SalesOrderDetail.tsx:451 +#: src/pages/sales/SalesOrderDetail.tsx:456 msgid "Cancel Sales Order" msgstr "" -#: src/pages/sales/SalesOrderDetail.tsx:459 +#: src/pages/sales/SalesOrderDetail.tsx:464 msgid "Hold Sales Order" msgstr "" -#: src/pages/sales/SalesOrderDetail.tsx:467 +#: src/pages/sales/SalesOrderDetail.tsx:472 msgid "Ship Sales Order" msgstr "" -#: src/pages/sales/SalesOrderDetail.tsx:469 +#: src/pages/sales/SalesOrderDetail.tsx:474 msgid "Ship this order?" msgstr "" -#: src/pages/sales/SalesOrderDetail.tsx:470 +#: src/pages/sales/SalesOrderDetail.tsx:475 msgid "Order shipped" msgstr "" -#: src/pages/sales/SalesOrderDetail.tsx:478 +#: src/pages/sales/SalesOrderDetail.tsx:483 msgid "Complete Sales Order" msgstr "" -#: src/pages/sales/SalesOrderDetail.tsx:523 +#: src/pages/sales/SalesOrderDetail.tsx:528 msgid "Ship Order" msgstr "" -#: src/pages/sales/SalesOrderShipmentDetail.tsx:142 -#: src/tables/sales/SalesOrderShipmentTable.tsx:135 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:140 +#: src/tables/sales/SalesOrderShipmentTable.tsx:156 msgid "Shipment Reference" msgstr "" -#: src/pages/sales/SalesOrderShipmentDetail.tsx:148 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:146 msgid "Tracking Number" msgstr "" -#: src/pages/sales/SalesOrderShipmentDetail.tsx:156 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:154 msgid "Invoice Number" msgstr "" -#: src/pages/sales/SalesOrderShipmentDetail.tsx:191 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:189 msgid "Allocated Items" msgstr "" -#: src/pages/sales/SalesOrderShipmentDetail.tsx:196 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:194 msgid "Checked By" msgstr "" -#: src/pages/sales/SalesOrderShipmentDetail.tsx:202 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:200 msgid "Not checked" msgstr "" -#: src/pages/sales/SalesOrderShipmentDetail.tsx:208 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:206 #: src/tables/ColumnRenderers.tsx:518 #: src/tables/sales/SalesOrderAllocationTable.tsx:182 -#: src/tables/sales/SalesOrderShipmentTable.tsx:168 +#: src/tables/sales/SalesOrderShipmentTable.tsx:189 msgid "Shipment Date" msgstr "" @@ -8366,108 +8464,82 @@ msgstr "" #~ msgid "Assigned Items" #~ msgstr "Assigned Items" -#: src/pages/sales/SalesOrderShipmentDetail.tsx:216 -#: src/tables/sales/SalesOrderShipmentTable.tsx:172 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:214 +#: src/tables/sales/SalesOrderShipmentTable.tsx:193 msgid "Delivery Date" msgstr "" -#: src/pages/sales/SalesOrderShipmentDetail.tsx:255 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:253 msgid "Shipment Details" msgstr "" -#: src/pages/sales/SalesOrderShipmentDetail.tsx:294 -#: src/pages/sales/SalesOrderShipmentDetail.tsx:438 -#: src/tables/sales/SalesOrderShipmentTable.tsx:90 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:292 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:406 +#: src/tables/sales/SalesOrderShipmentTable.tsx:97 msgid "Edit Shipment" msgstr "" -#: src/pages/sales/SalesOrderShipmentDetail.tsx:301 -#: src/pages/sales/SalesOrderShipmentDetail.tsx:457 -#: src/tables/sales/SalesOrderShipmentTable.tsx:82 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:299 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:425 +#: src/tables/sales/SalesOrderShipmentTable.tsx:89 msgid "Cancel Shipment" msgstr "" -#: src/pages/sales/SalesOrderShipmentDetail.tsx:314 -#: src/tables/sales/SalesOrderShipmentTable.tsx:98 -#: src/tables/sales/SalesOrderShipmentTable.tsx:193 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:312 +#: src/tables/sales/SalesOrderShipmentTable.tsx:119 +#: src/tables/sales/SalesOrderShipmentTable.tsx:238 msgid "Complete Shipment" msgstr "" -#: src/pages/sales/SalesOrderShipmentDetail.tsx:326 -#: src/pages/sales/SalesOrderShipmentDetail.tsx:328 -msgid "Check Shipment" -msgstr "" - -#: src/pages/sales/SalesOrderShipmentDetail.tsx:329 -msgid "Marking the shipment as checked indicates that you have verified that all items included in this shipment are correct" -msgstr "" - #: src/pages/sales/SalesOrderShipmentDetail.tsx:339 -msgid "Shipment marked as checked" -msgstr "" - -#: src/pages/sales/SalesOrderShipmentDetail.tsx:346 -#: src/pages/sales/SalesOrderShipmentDetail.tsx:348 -msgid "Uncheck Shipment" -msgstr "" - -#: src/pages/sales/SalesOrderShipmentDetail.tsx:349 -msgid "Marking the shipment as unchecked indicates that the shipment requires further verification" -msgstr "" - -#: src/pages/sales/SalesOrderShipmentDetail.tsx:359 -msgid "Shipment marked as unchecked" -msgstr "" - -#: src/pages/sales/SalesOrderShipmentDetail.tsx:371 #: src/tables/part/PartPurchaseOrdersTable.tsx:122 msgid "Pending" msgstr "" -#: src/pages/sales/SalesOrderShipmentDetail.tsx:377 -#: src/tables/sales/SalesOrderShipmentTable.tsx:147 -#: src/tables/sales/SalesOrderShipmentTable.tsx:254 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:345 +#: src/tables/sales/SalesOrderShipmentTable.tsx:168 +#: src/tables/sales/SalesOrderShipmentTable.tsx:299 msgid "Checked" msgstr "" -#: src/pages/sales/SalesOrderShipmentDetail.tsx:383 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:351 msgid "Not Checked" msgstr "" -#: src/pages/sales/SalesOrderShipmentDetail.tsx:389 -#: src/tables/sales/SalesOrderShipmentTable.tsx:154 -#: src/tables/sales/SalesOrderShipmentTable.tsx:259 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:357 +#: src/tables/sales/SalesOrderShipmentTable.tsx:175 +#: src/tables/sales/SalesOrderShipmentTable.tsx:304 msgid "Shipped" msgstr "" -#: src/pages/sales/SalesOrderShipmentDetail.tsx:395 -#: src/tables/sales/SalesOrderShipmentTable.tsx:161 -#: src/tables/sales/SalesOrderShipmentTable.tsx:264 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:363 +#: src/tables/sales/SalesOrderShipmentTable.tsx:182 +#: src/tables/sales/SalesOrderShipmentTable.tsx:309 #: src/tables/settings/EmailTable.tsx:31 msgid "Delivered" msgstr "" -#: src/pages/sales/SalesOrderShipmentDetail.tsx:410 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:378 msgid "Send Shipment" msgstr "" -#: src/pages/sales/SalesOrderShipmentDetail.tsx:433 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:401 msgid "Shipment Actions" msgstr "" -#: src/pages/sales/SalesOrderShipmentDetail.tsx:442 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:410 msgid "Check" msgstr "" -#: src/pages/sales/SalesOrderShipmentDetail.tsx:443 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:411 msgid "Mark shipment as checked" msgstr "" -#: src/pages/sales/SalesOrderShipmentDetail.tsx:449 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:417 msgid "Uncheck" msgstr "" -#: src/pages/sales/SalesOrderShipmentDetail.tsx:450 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:418 msgid "Mark shipment as unchecked" msgstr "" @@ -8775,13 +8847,6 @@ msgstr "" msgid "Part is not active" msgstr "" -#: src/tables/ColumnRenderers.tsx:73 -#: src/tables/bom/BomTable.tsx:657 -#: src/tables/part/PartParameterTable.tsx:227 -#: src/tables/part/PartTestTemplateTable.tsx:258 -msgid "Part is Locked" -msgstr "" - #: src/tables/ColumnRenderers.tsx:78 msgid "You are subscribed to notifications for this part" msgstr "" @@ -9219,13 +9284,13 @@ msgstr "" #~ msgstr "Show asssmbled items" #: src/tables/bom/BomTable.tsx:315 -#: src/tables/build/BuildLineTable.tsx:276 +#: src/tables/build/BuildLineTable.tsx:277 #: src/tables/part/PartTable.tsx:145 msgid "External stock" msgstr "" #: src/tables/bom/BomTable.tsx:323 -#: src/tables/build/BuildLineTable.tsx:239 +#: src/tables/build/BuildLineTable.tsx:240 msgid "Includes substitute stock" msgstr "" @@ -9234,7 +9299,7 @@ msgstr "" #~ msgstr "Edit Bom Item" #: src/tables/bom/BomTable.tsx:332 -#: src/tables/build/BuildLineTable.tsx:249 +#: src/tables/build/BuildLineTable.tsx:250 #: src/tables/sales/SalesOrderLineItemTable.tsx:166 msgid "Includes variant stock" msgstr "" @@ -9272,8 +9337,8 @@ msgid "Stock Information" msgstr "" #: src/tables/bom/BomTable.tsx:399 -#: src/tables/build/BuildLineTable.tsx:496 -#: src/tables/build/BuildLineTable.tsx:537 +#: src/tables/build/BuildLineTable.tsx:497 +#: src/tables/build/BuildLineTable.tsx:538 msgid "Consumable item" msgstr "" @@ -9282,7 +9347,7 @@ msgid "No available stock" msgstr "" #: src/tables/bom/BomTable.tsx:420 -#: src/tables/build/BuildLineTable.tsx:213 +#: src/tables/build/BuildLineTable.tsx:214 msgid "Show testable items" msgstr "" @@ -9291,7 +9356,7 @@ msgid "Show trackable items" msgstr "Показати відстежувані позиції" #: src/tables/bom/BomTable.tsx:430 -#: src/tables/build/BuildLineTable.tsx:208 +#: src/tables/build/BuildLineTable.tsx:209 msgid "Show assembled items" msgstr "" @@ -9335,7 +9400,7 @@ msgstr "" #: src/tables/bom/BomTable.tsx:464 #: src/tables/bom/UsedInTable.tsx:85 -#: src/tables/build/BuildLineTable.tsx:202 +#: src/tables/build/BuildLineTable.tsx:203 msgid "Optional" msgstr "" @@ -9345,7 +9410,7 @@ msgid "Show optional items" msgstr "" #: src/tables/bom/BomTable.tsx:469 -#: src/tables/build/BuildLineTable.tsx:197 +#: src/tables/build/BuildLineTable.tsx:198 msgid "Consumable" msgstr "" @@ -9420,6 +9485,7 @@ msgid "Add a single BOM item" msgstr "" #: src/tables/bom/BomTable.tsx:637 +#: src/tables/general/ParameterTable.tsx:206 #: src/tables/part/PartTable.tsx:546 msgid "Import from File" msgstr "" @@ -9433,8 +9499,8 @@ msgid "Bill of materials cannot be edited, as the part is locked" msgstr "Біл матеріалів не можна редагувати, тому що частина заблокована" #: src/tables/bom/UsedInTable.tsx:34 -#: src/tables/build/BuildLineTable.tsx:207 -#: src/tables/part/ParametricPartTable.tsx:364 +#: src/tables/build/BuildLineTable.tsx:208 +#: src/tables/part/ParametricPartTable.tsx:29 #: src/tables/part/PartBuildAllocationsTable.tsx:60 #: src/tables/part/PartTable.tsx:209 #: src/tables/stock/StockItemTable.tsx:333 @@ -9455,11 +9521,11 @@ msgstr "Відстежуваний" msgid "Show trackable assemblies" msgstr "Показати відстежувані збірки" -#: src/tables/build/BuildAllocatedStockTable.tsx:67 +#: src/tables/build/BuildAllocatedStockTable.tsx:64 msgid "Allocated to Output" msgstr "" -#: src/tables/build/BuildAllocatedStockTable.tsx:68 +#: src/tables/build/BuildAllocatedStockTable.tsx:65 msgid "Show items allocated to a build output" msgstr "" @@ -9472,50 +9538,68 @@ msgstr "" #~ msgid "Include orders for part variants" #~ msgstr "Include orders for part variants" -#: src/tables/build/BuildAllocatedStockTable.tsx:97 +#: src/tables/build/BuildAllocatedStockTable.tsx:94 #: src/tables/part/PartBuildAllocationsTable.tsx:84 #: src/tables/part/PartPurchaseOrdersTable.tsx:132 #: src/tables/part/PartSalesAllocationsTable.tsx:69 #: src/tables/sales/SalesOrderAllocationTable.tsx:122 -#: src/tables/sales/SalesOrderShipmentTable.tsx:130 +#: src/tables/sales/SalesOrderShipmentTable.tsx:151 msgid "Order Status" msgstr "Статус замовлення" +#: src/tables/build/BuildAllocatedStockTable.tsx:164 +#: src/tables/build/BuildLineTable.tsx:651 +msgid "Edit Stock Allocation" +msgstr "" + #: src/tables/build/BuildAllocatedStockTable.tsx:164 #~ msgid "Edit Build Item" #~ msgstr "Edit Build Item" -#: src/tables/build/BuildAllocatedStockTable.tsx:167 -#: src/tables/build/BuildLineTable.tsx:650 -msgid "Edit Stock Allocation" -msgstr "" - #: src/tables/build/BuildAllocatedStockTable.tsx:174 #~ msgid "Delete Build Item" #~ msgstr "Delete Build Item" -#: src/tables/build/BuildAllocatedStockTable.tsx:180 -#: src/tables/build/BuildLineTable.tsx:663 -msgid "Delete Stock Allocation" +#: src/tables/build/BuildAllocatedStockTable.tsx:177 +#: src/tables/build/BuildLineTable.tsx:664 +#: src/tables/sales/SalesOrderAllocationTable.tsx:218 +msgid "Remove Allocated Stock" msgstr "" -#: src/tables/build/BuildAllocatedStockTable.tsx:239 +#: src/tables/build/BuildAllocatedStockTable.tsx:180 +#: src/tables/build/BuildLineTable.tsx:663 +#~ msgid "Delete Stock Allocation" +#~ msgstr "Delete Stock Allocation" + +#: src/tables/build/BuildAllocatedStockTable.tsx:182 +#: src/tables/build/BuildLineTable.tsx:669 +#: src/tables/sales/SalesOrderAllocationTable.tsx:221 +msgid "Are you sure you want to remove this allocated stock from the order?" +msgstr "" + +#: src/tables/build/BuildAllocatedStockTable.tsx:242 msgid "Consume" msgstr "" +#: src/tables/build/BuildAllocatedStockTable.tsx:259 +#: src/tables/build/BuildLineTable.tsx:112 +#: src/tables/sales/SalesOrderAllocationTable.tsx:248 +msgid "Remove allocated stock" +msgstr "" + #: src/tables/build/BuildLineTable.tsx:59 #~ msgid "Show lines with available stock" #~ msgstr "Show lines with available stock" -#: src/tables/build/BuildLineTable.tsx:120 +#: src/tables/build/BuildLineTable.tsx:121 msgid "View Stock Item" msgstr "" -#: src/tables/build/BuildLineTable.tsx:183 +#: src/tables/build/BuildLineTable.tsx:184 msgid "Show fully allocated lines" msgstr "" -#: src/tables/build/BuildLineTable.tsx:188 +#: src/tables/build/BuildLineTable.tsx:189 msgid "Show fully consumed lines" msgstr "" @@ -9523,124 +9607,124 @@ msgstr "" #~ msgid "Show allocated lines" #~ msgstr "Show allocated lines" -#: src/tables/build/BuildLineTable.tsx:193 +#: src/tables/build/BuildLineTable.tsx:194 msgid "Show items with sufficient available stock" msgstr "" -#: src/tables/build/BuildLineTable.tsx:198 +#: src/tables/build/BuildLineTable.tsx:199 msgid "Show consumable lines" msgstr "" -#: src/tables/build/BuildLineTable.tsx:203 +#: src/tables/build/BuildLineTable.tsx:204 msgid "Show optional lines" msgstr "" -#: src/tables/build/BuildLineTable.tsx:212 +#: src/tables/build/BuildLineTable.tsx:213 #: src/tables/part/PartTable.tsx:233 msgid "Testable" msgstr "" -#: src/tables/build/BuildLineTable.tsx:217 +#: src/tables/build/BuildLineTable.tsx:218 #: src/tables/stock/StockItemTable.tsx:388 msgid "Tracked" msgstr "" -#: src/tables/build/BuildLineTable.tsx:218 +#: src/tables/build/BuildLineTable.tsx:219 msgid "Show tracked lines" msgstr "" -#: src/tables/build/BuildLineTable.tsx:223 +#: src/tables/build/BuildLineTable.tsx:224 msgid "Show items with stock on order" msgstr "" -#: src/tables/build/BuildLineTable.tsx:258 +#: src/tables/build/BuildLineTable.tsx:259 #: src/tables/sales/SalesOrderLineItemTable.tsx:172 msgid "In production" msgstr "" -#: src/tables/build/BuildLineTable.tsx:286 +#: src/tables/build/BuildLineTable.tsx:287 msgid "Insufficient stock" msgstr "" -#: src/tables/build/BuildLineTable.tsx:302 +#: src/tables/build/BuildLineTable.tsx:303 #: src/tables/sales/SalesOrderLineItemTable.tsx:160 #: src/tables/stock/StockItemTable.tsx:191 msgid "No stock available" msgstr "" -#: src/tables/build/BuildLineTable.tsx:375 +#: src/tables/build/BuildLineTable.tsx:376 msgid "Gets Inherited" msgstr "" -#: src/tables/build/BuildLineTable.tsx:388 +#: src/tables/build/BuildLineTable.tsx:389 msgid "Unit Quantity" msgstr "" -#: src/tables/build/BuildLineTable.tsx:415 +#: src/tables/build/BuildLineTable.tsx:416 msgid "Setup Quantity" msgstr "" -#: src/tables/build/BuildLineTable.tsx:424 +#: src/tables/build/BuildLineTable.tsx:425 msgid "Attrition" msgstr "" -#: src/tables/build/BuildLineTable.tsx:432 +#: src/tables/build/BuildLineTable.tsx:433 msgid "Rounding Multiple" msgstr "" -#: src/tables/build/BuildLineTable.tsx:441 +#: src/tables/build/BuildLineTable.tsx:442 msgid "BOM Information" msgstr "" -#: src/tables/build/BuildLineTable.tsx:515 +#: src/tables/build/BuildLineTable.tsx:516 #: src/tables/part/PartBuildAllocationsTable.tsx:102 msgid "Fully allocated" msgstr "" -#: src/tables/build/BuildLineTable.tsx:563 +#: src/tables/build/BuildLineTable.tsx:564 #: src/tables/sales/SalesOrderLineItemTable.tsx:311 msgid "Create Build Order" msgstr "" -#: src/tables/build/BuildLineTable.tsx:592 +#: src/tables/build/BuildLineTable.tsx:593 msgid "Auto allocation in progress" msgstr "Виконується автоматичний розподіл" -#: src/tables/build/BuildLineTable.tsx:595 -#: src/tables/build/BuildLineTable.tsx:802 +#: src/tables/build/BuildLineTable.tsx:596 +#: src/tables/build/BuildLineTable.tsx:809 msgid "Auto Allocate Stock" msgstr "" -#: src/tables/build/BuildLineTable.tsx:596 +#: src/tables/build/BuildLineTable.tsx:597 msgid "Automatically allocate stock to this build according to the selected options" msgstr "Автоматично виділяти запас для цієї збірки згідно вибраних опцій" -#: src/tables/build/BuildLineTable.tsx:616 -#: src/tables/build/BuildLineTable.tsx:630 -#: src/tables/build/BuildLineTable.tsx:751 -#: src/tables/build/BuildLineTable.tsx:852 +#: src/tables/build/BuildLineTable.tsx:617 +#: src/tables/build/BuildLineTable.tsx:631 +#: src/tables/build/BuildLineTable.tsx:758 +#: src/tables/build/BuildLineTable.tsx:859 #: src/tables/build/BuildOutputTable.tsx:355 #: src/tables/build/BuildOutputTable.tsx:360 msgid "Deallocate Stock" msgstr "" -#: src/tables/build/BuildLineTable.tsx:632 +#: src/tables/build/BuildLineTable.tsx:633 msgid "Deallocate all untracked stock for this build order" msgstr "" -#: src/tables/build/BuildLineTable.tsx:634 +#: src/tables/build/BuildLineTable.tsx:635 msgid "Deallocate stock from the selected line item" msgstr "" -#: src/tables/build/BuildLineTable.tsx:638 +#: src/tables/build/BuildLineTable.tsx:639 msgid "Stock has been deallocated" msgstr "" -#: src/tables/build/BuildLineTable.tsx:771 +#: src/tables/build/BuildLineTable.tsx:778 msgid "Build Stock" msgstr "" -#: src/tables/build/BuildLineTable.tsx:784 +#: src/tables/build/BuildLineTable.tsx:791 #: src/tables/sales/SalesOrderLineItemTable.tsx:487 msgid "View Part" msgstr "" @@ -9739,7 +9823,7 @@ msgid "Serialize Build Output" msgstr "" #: src/tables/build/BuildOutputTable.tsx:405 -#: src/tables/part/PartTestResultTable.tsx:310 +#: src/tables/part/PartTestResultTable.tsx:318 #: src/tables/stock/StockItemTable.tsx:328 msgid "Filter by stock status" msgstr "" @@ -9964,8 +10048,8 @@ msgid "View Item" msgstr "" #: src/tables/general/ExtraLineItemTable.tsx:95 -#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:299 -#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:403 +#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:300 +#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:405 #: src/tables/sales/ReturnOrderLineItemTable.tsx:83 #: src/tables/sales/ReturnOrderLineItemTable.tsx:187 #: src/tables/sales/SalesOrderLineItemTable.tsx:252 @@ -9974,14 +10058,14 @@ msgid "Add Line Item" msgstr "" #: src/tables/general/ExtraLineItemTable.tsx:108 -#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:320 +#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:322 #: src/tables/sales/ReturnOrderLineItemTable.tsx:96 #: src/tables/sales/SalesOrderLineItemTable.tsx:271 msgid "Edit Line Item" msgstr "" #: src/tables/general/ExtraLineItemTable.tsx:117 -#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:329 +#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:331 #: src/tables/sales/ReturnOrderLineItemTable.tsx:105 #: src/tables/sales/SalesOrderLineItemTable.tsx:280 msgid "Delete Line Item" @@ -9991,6 +10075,137 @@ msgstr "" msgid "Add Extra Line Item" msgstr "" +#: src/tables/general/ParameterTable.tsx:88 +msgid "Internal Units" +msgstr "" + +#: src/tables/general/ParameterTable.tsx:108 +#: src/tables/general/ParameterTable.tsx:123 +msgid "Updated By" +msgstr "" + +#: src/tables/general/ParameterTable.tsx:118 +msgid "Show parameters for enabled templates" +msgstr "" + +#: src/tables/general/ParameterTable.tsx:124 +msgid "Filter by user who last updated the parameter" +msgstr "" + +#: src/tables/general/ParameterTable.tsx:154 +msgid "Import Parameters" +msgstr "" + +#: src/tables/general/ParameterTable.tsx:164 +#: src/tables/general/ParametricDataTable.tsx:261 +#: src/tables/general/ParametricDataTable.tsx:392 +msgid "Add Parameter" +msgstr "" + +#: src/tables/general/ParameterTable.tsx:175 +#: src/tables/general/ParameterTable.tsx:222 +#: src/tables/general/ParametricDataTable.tsx:285 +msgid "Edit Parameter" +msgstr "" + +#: src/tables/general/ParameterTable.tsx:183 +#: src/tables/general/ParameterTable.tsx:230 +msgid "Delete Parameter" +msgstr "" + +#: src/tables/general/ParameterTable.tsx:191 +msgid "Add Parameters" +msgstr "" + +#: src/tables/general/ParameterTable.tsx:197 +msgid "Create Parameter" +msgstr "" + +#: src/tables/general/ParameterTable.tsx:199 +msgid "Create a new parameter" +msgstr "" + +#: src/tables/general/ParameterTable.tsx:208 +msgid "Import parameters from a file" +msgstr "" + +#: src/tables/general/ParameterTemplateTable.tsx:48 +#: src/tables/general/ParameterTemplateTable.tsx:197 +msgid "Add Parameter Template" +msgstr "" + +#: src/tables/general/ParameterTemplateTable.tsx:64 +msgid "Duplicate Parameter Template" +msgstr "" + +#: src/tables/general/ParameterTemplateTable.tsx:78 +msgid "Delete Parameter Template" +msgstr "" + +#: src/tables/general/ParameterTemplateTable.tsx:85 +msgid "Edit Parameter Template" +msgstr "" + +#: src/tables/general/ParameterTemplateTable.tsx:138 +msgid "Checkbox" +msgstr "" + +#: src/tables/general/ParameterTemplateTable.tsx:139 +msgid "Show checkbox templates" +msgstr "" + +#: src/tables/general/ParameterTemplateTable.tsx:143 +msgid "Has choices" +msgstr "" + +#: src/tables/general/ParameterTemplateTable.tsx:144 +msgid "Show templates with choices" +msgstr "" + +#: src/tables/general/ParameterTemplateTable.tsx:148 +#: src/tables/part/PartTable.tsx:245 +msgid "Has Units" +msgstr "" + +#: src/tables/general/ParameterTemplateTable.tsx:149 +msgid "Show templates with units" +msgstr "" + +#: src/tables/general/ParameterTemplateTable.tsx:154 +msgid "Show enabled templates" +msgstr "" + +#: src/tables/general/ParameterTemplateTable.tsx:158 +#: src/tables/settings/ImportSessionTable.tsx:111 +#: src/tables/settings/TemplateTable.tsx:368 +msgid "Model Type" +msgstr "" + +#: src/tables/general/ParameterTemplateTable.tsx:159 +msgid "Filter by model type" +msgstr "" + +#: src/tables/general/ParametricDataTable.tsx:79 +msgid "Click to edit" +msgstr "" + +#: src/tables/general/ParametricDataTableFilters.tsx:36 +msgid "True" +msgstr "" + +#: src/tables/general/ParametricDataTableFilters.tsx:37 +msgid "False" +msgstr "" + +#: src/tables/general/ParametricDataTableFilters.tsx:47 +#: src/tables/general/ParametricDataTableFilters.tsx:80 +msgid "Select a choice" +msgstr "" + +#: src/tables/general/ParametricDataTableFilters.tsx:100 +msgid "Enter a value" +msgstr "" + #: src/tables/machine/MachineListTable.tsx:133 msgid "Machine restarted" msgstr "" @@ -10071,7 +10286,7 @@ msgid "Initialized" msgstr "" #: src/tables/machine/MachineListTable.tsx:410 -#: src/tables/machine/MachineTypeTable.tsx:307 +#: src/tables/machine/MachineTypeTable.tsx:305 msgid "No errors reported" msgstr "" @@ -10132,15 +10347,15 @@ msgstr "" #~ msgid "Machine type information" #~ msgstr "Machine type information" -#: src/tables/machine/MachineTypeTable.tsx:128 +#: src/tables/machine/MachineTypeTable.tsx:126 msgid "Not Found" msgstr "" -#: src/tables/machine/MachineTypeTable.tsx:131 +#: src/tables/machine/MachineTypeTable.tsx:129 msgid "Machine type not found." msgstr "" -#: src/tables/machine/MachineTypeTable.tsx:141 +#: src/tables/machine/MachineTypeTable.tsx:139 msgid "Machine Type Information" msgstr "" @@ -10148,34 +10363,34 @@ msgstr "" #~ msgid "Available drivers" #~ msgstr "Available drivers" -#: src/tables/machine/MachineTypeTable.tsx:156 -#: src/tables/machine/MachineTypeTable.tsx:255 +#: src/tables/machine/MachineTypeTable.tsx:154 +#: src/tables/machine/MachineTypeTable.tsx:253 msgid "Slug" msgstr "" -#: src/tables/machine/MachineTypeTable.tsx:167 -#: src/tables/machine/MachineTypeTable.tsx:276 +#: src/tables/machine/MachineTypeTable.tsx:165 +#: src/tables/machine/MachineTypeTable.tsx:274 msgid "Provider plugin" msgstr "" -#: src/tables/machine/MachineTypeTable.tsx:179 -#: src/tables/machine/MachineTypeTable.tsx:288 +#: src/tables/machine/MachineTypeTable.tsx:177 +#: src/tables/machine/MachineTypeTable.tsx:286 msgid "Provider file" msgstr "" -#: src/tables/machine/MachineTypeTable.tsx:194 +#: src/tables/machine/MachineTypeTable.tsx:192 msgid "Available Drivers" msgstr "" -#: src/tables/machine/MachineTypeTable.tsx:234 +#: src/tables/machine/MachineTypeTable.tsx:232 msgid "Machine driver not found." msgstr "" -#: src/tables/machine/MachineTypeTable.tsx:242 +#: src/tables/machine/MachineTypeTable.tsx:240 msgid "Machine driver information" msgstr "" -#: src/tables/machine/MachineTypeTable.tsx:262 +#: src/tables/machine/MachineTypeTable.tsx:260 msgid "Machine type" msgstr "" @@ -10187,15 +10402,15 @@ msgstr "" #~ msgid "Machine driver detail" #~ msgstr "Machine driver detail" -#: src/tables/machine/MachineTypeTable.tsx:362 +#: src/tables/machine/MachineTypeTable.tsx:360 msgid "Builtin type" msgstr "" -#: src/tables/machine/MachineTypeTable.tsx:371 +#: src/tables/machine/MachineTypeTable.tsx:369 msgid "Machine Type Detail" msgstr "" -#: src/tables/machine/MachineTypeTable.tsx:381 +#: src/tables/machine/MachineTypeTable.tsx:379 msgid "Machine Driver Detail" msgstr "" @@ -10213,52 +10428,31 @@ msgstr "Сповіщення" msgid "Message" msgstr "" -#: src/tables/part/ParametricPartTable.tsx:78 -msgid "Click to edit" +#: src/tables/part/ParametricPartTable.tsx:20 +msgid "Show active parts" msgstr "" +#: src/tables/part/ParametricPartTable.tsx:25 +msgid "Show locked parts" +msgstr "Показати заблоковані деталі" + +#: src/tables/part/ParametricPartTable.tsx:30 +msgid "Show assembly parts" +msgstr "Показати компоненти Збірки" + #: src/tables/part/ParametricPartTable.tsx:82 #~ msgid "Edit parameter" #~ msgstr "Edit parameter" #: src/tables/part/ParametricPartTable.tsx:244 -msgid "Add Part Parameter" -msgstr "" +#~ msgid "Add Part Parameter" +#~ msgstr "Add Part Parameter" #: src/tables/part/ParametricPartTable.tsx:258 #: src/tables/part/PartParameterTable.tsx:164 #: src/tables/part/PartParameterTable.tsx:187 -msgid "Edit Part Parameter" -msgstr "" - -#: src/tables/part/ParametricPartTable.tsx:355 -msgid "Show active parts" -msgstr "" - -#: src/tables/part/ParametricPartTable.tsx:360 -msgid "Show locked parts" -msgstr "Показати заблоковані деталі" - -#: src/tables/part/ParametricPartTable.tsx:365 -msgid "Show assembly parts" -msgstr "Показати компоненти Збірки" - -#: src/tables/part/ParametricPartTableFilters.tsx:36 -msgid "True" -msgstr "" - -#: src/tables/part/ParametricPartTableFilters.tsx:37 -msgid "False" -msgstr "" - -#: src/tables/part/ParametricPartTableFilters.tsx:47 -#: src/tables/part/ParametricPartTableFilters.tsx:80 -msgid "Select a choice" -msgstr "" - -#: src/tables/part/ParametricPartTableFilters.tsx:100 -msgid "Enter a value" -msgstr "" +#~ msgid "Edit Part Parameter" +#~ msgstr "Edit Part Parameter" #: src/tables/part/PartBuildAllocationsTable.tsx:64 msgid "Assembly IPN" @@ -10273,7 +10467,7 @@ msgid "Required Stock" msgstr "" #: src/tables/part/PartBuildAllocationsTable.tsx:124 -#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:381 +#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:383 msgid "View Build Order" msgstr "" @@ -10332,85 +10526,22 @@ msgstr "Змінити параметр категорії" msgid "Delete Category Parameter" msgstr "Видалити параметр категорії" -#: src/tables/part/PartCategoryTemplateTable.tsx:87 -msgid "Parameter Template" -msgstr "Шаблон параметра" - #: src/tables/part/PartCategoryTemplateTable.tsx:93 #~ msgid "[{0}]" #~ msgstr "[{0}]" -#: src/tables/part/PartParameterTable.tsx:108 -msgid "Internal Units" -msgstr "" - -#: src/tables/part/PartParameterTable.tsx:128 -#: src/tables/part/PartParameterTable.tsx:138 -msgid "Updated By" -msgstr "" - -#: src/tables/part/PartParameterTable.tsx:139 -msgid "Filter by user who last updated the parameter" -msgstr "" - #: src/tables/part/PartParameterTable.tsx:148 -msgid "New Part Parameter" -msgstr "" +#~ msgid "New Part Parameter" +#~ msgstr "New Part Parameter" #: src/tables/part/PartParameterTable.tsx:173 #: src/tables/part/PartParameterTable.tsx:195 -msgid "Delete Part Parameter" -msgstr "" +#~ msgid "Delete Part Parameter" +#~ msgstr "Delete Part Parameter" #: src/tables/part/PartParameterTable.tsx:213 -msgid "Add parameter" -msgstr "" - -#: src/tables/part/PartParameterTable.tsx:232 -msgid "Part parameters cannot be edited, as the part is locked" -msgstr "" - -#: src/tables/part/PartParameterTemplateTable.tsx:36 -msgid "Checkbox" -msgstr "" - -#: src/tables/part/PartParameterTemplateTable.tsx:37 -msgid "Show checkbox templates" -msgstr "" - -#: src/tables/part/PartParameterTemplateTable.tsx:41 -msgid "Has choices" -msgstr "" - -#: src/tables/part/PartParameterTemplateTable.tsx:42 -msgid "Show templates with choices" -msgstr "" - -#: src/tables/part/PartParameterTemplateTable.tsx:46 -#: src/tables/part/PartTable.tsx:245 -msgid "Has Units" -msgstr "" - -#: src/tables/part/PartParameterTemplateTable.tsx:47 -msgid "Show templates with units" -msgstr "" - -#: src/tables/part/PartParameterTemplateTable.tsx:91 -#: src/tables/part/PartParameterTemplateTable.tsx:166 -msgid "Add Parameter Template" -msgstr "" - -#: src/tables/part/PartParameterTemplateTable.tsx:105 -msgid "Duplicate Parameter Template" -msgstr "" - -#: src/tables/part/PartParameterTemplateTable.tsx:117 -msgid "Edit Parameter Template" -msgstr "" - -#: src/tables/part/PartParameterTemplateTable.tsx:128 -msgid "Delete Parameter Template" -msgstr "" +#~ msgid "Add parameter" +#~ msgstr "Add parameter" #: src/tables/part/PartParameterTemplateTable.tsx:141 #~ msgid "Add parameter template" @@ -10430,7 +10561,7 @@ msgid "Show received items" msgstr "" #: src/tables/part/PartSalesAllocationsTable.tsx:90 -#: src/tables/sales/SalesOrderShipmentTable.tsx:218 +#: src/tables/sales/SalesOrderShipmentTable.tsx:263 msgid "View Sales Order" msgstr "" @@ -10617,8 +10748,8 @@ msgstr "" #: src/tables/part/PartTestResultTable.tsx:103 #: src/tables/part/PartTestResultTable.tsx:181 -#: src/tables/part/PartTestResultTable.tsx:320 -#: src/tables/part/PartTestResultTable.tsx:334 +#: src/tables/part/PartTestResultTable.tsx:328 +#: src/tables/part/PartTestResultTable.tsx:342 #: src/tables/stock/StockItemTestResultTable.tsx:296 #: src/tables/stock/StockItemTestResultTable.tsx:368 #: src/tables/stock/StockItemTestResultTable.tsx:429 @@ -10643,7 +10774,7 @@ msgstr "" msgid "No Result" msgstr "" -#: src/tables/part/PartTestResultTable.tsx:298 +#: src/tables/part/PartTestResultTable.tsx:306 msgid "Show build outputs currently in production" msgstr "" @@ -11013,36 +11144,45 @@ msgstr "" #~ msgid "Parameter updated" #~ msgstr "Parameter updated" -#: src/tables/purchasing/ManufacturerPartParameterTable.tsx:63 -#: src/tables/purchasing/ManufacturerPartParameterTable.tsx:112 -msgid "Add Parameter" -msgstr "" - #: src/tables/purchasing/ManufacturerPartParameterTable.tsx:73 #~ msgid "Parameter deleted" #~ msgstr "Parameter deleted" -#: src/tables/purchasing/ManufacturerPartParameterTable.tsx:74 -msgid "Edit Parameter" -msgstr "" - #: src/tables/purchasing/ManufacturerPartParameterTable.tsx:74 #~ msgid "Are you sure you want to delete this parameter?" #~ msgstr "Are you sure you want to delete this parameter?" -#: src/tables/purchasing/ManufacturerPartParameterTable.tsx:82 -msgid "Delete Parameter" +#: src/tables/purchasing/ManufacturerPartParametricTable.tsx:34 +#: src/tables/purchasing/ManufacturerPartTable.tsx:82 +#: src/tables/purchasing/SupplierPartTable.tsx:99 +msgid "MPN" +msgstr "" + +#: src/tables/purchasing/ManufacturerPartParametricTable.tsx:44 +#: src/tables/purchasing/ManufacturerPartTable.tsx:134 +#: src/tables/purchasing/SupplierPartTable.tsx:220 +msgid "Active Part" +msgstr "" + +#: src/tables/purchasing/ManufacturerPartParametricTable.tsx:45 +#: src/tables/purchasing/ManufacturerPartTable.tsx:135 +msgid "Show manufacturer parts for active internal parts." +msgstr "" + +#: src/tables/purchasing/ManufacturerPartParametricTable.tsx:50 +#: src/tables/purchasing/ManufacturerPartTable.tsx:140 +msgid "Active Manufacturer" +msgstr "" + +#: src/tables/purchasing/ManufacturerPartParametricTable.tsx:51 +#: src/tables/purchasing/ManufacturerPartTable.tsx:142 +msgid "Show manufacturer parts for active manufacturers." msgstr "" #: src/tables/purchasing/ManufacturerPartTable.tsx:63 #~ msgid "Create Manufacturer Part" #~ msgstr "Create Manufacturer Part" -#: src/tables/purchasing/ManufacturerPartTable.tsx:82 -#: src/tables/purchasing/SupplierPartTable.tsx:99 -msgid "MPN" -msgstr "" - #: src/tables/purchasing/ManufacturerPartTable.tsx:100 #~ msgid "Manufacturer part updated" #~ msgstr "Manufacturer part updated" @@ -11055,25 +11195,8 @@ msgstr "" #~ msgid "Are you sure you want to remove this manufacturer part?" #~ msgstr "Are you sure you want to remove this manufacturer part?" -#: src/tables/purchasing/ManufacturerPartTable.tsx:134 -#: src/tables/purchasing/SupplierPartTable.tsx:220 -msgid "Active Part" -msgstr "" - -#: src/tables/purchasing/ManufacturerPartTable.tsx:135 -msgid "Show manufacturer parts for active internal parts." -msgstr "" - -#: src/tables/purchasing/ManufacturerPartTable.tsx:140 -msgid "Active Manufacturer" -msgstr "" - -#: src/tables/purchasing/ManufacturerPartTable.tsx:142 -msgid "Show manufacturer parts for active manufacturers." -msgstr "" - #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:115 -#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:397 +#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:399 msgid "Import Line Items" msgstr "" @@ -11099,11 +11222,11 @@ msgstr "" #~ msgid "Add line item" #~ msgstr "Add line item" -#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:350 +#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:352 msgid "Receive line item" msgstr "" -#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:414 +#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:416 msgid "Receive items" msgstr "" @@ -11201,25 +11324,25 @@ msgid "Not shipped" msgstr "" #: src/tables/sales/SalesOrderAllocationTable.tsx:211 -#: src/tables/sales/SalesOrderAllocationTable.tsx:229 +#: src/tables/sales/SalesOrderAllocationTable.tsx:235 msgid "Edit Allocation" msgstr "" #: src/tables/sales/SalesOrderAllocationTable.tsx:218 #: src/tables/sales/SalesOrderAllocationTable.tsx:241 -msgid "Delete Allocation" -msgstr "" +#~ msgid "Delete Allocation" +#~ msgstr "Delete Allocation" -#: src/tables/sales/SalesOrderAllocationTable.tsx:252 -#: src/tables/sales/SalesOrderAllocationTable.tsx:253 +#: src/tables/sales/SalesOrderAllocationTable.tsx:261 +#: src/tables/sales/SalesOrderAllocationTable.tsx:262 msgid "View Shipment" msgstr "" -#: src/tables/sales/SalesOrderAllocationTable.tsx:308 +#: src/tables/sales/SalesOrderAllocationTable.tsx:317 msgid "Assign to Shipment" msgstr "" -#: src/tables/sales/SalesOrderAllocationTable.tsx:324 +#: src/tables/sales/SalesOrderAllocationTable.tsx:333 msgid "Assign to shipment" msgstr "Призначити для відвантаження" @@ -11259,35 +11382,35 @@ msgstr "" #~ msgid "Delete Shipment" #~ msgstr "Delete Shipment" -#: src/tables/sales/SalesOrderShipmentTable.tsx:72 +#: src/tables/sales/SalesOrderShipmentTable.tsx:79 msgid "Create Shipment" msgstr "" -#: src/tables/sales/SalesOrderShipmentTable.tsx:143 +#: src/tables/sales/SalesOrderShipmentTable.tsx:164 msgid "Items" msgstr "" -#: src/tables/sales/SalesOrderShipmentTable.tsx:203 +#: src/tables/sales/SalesOrderShipmentTable.tsx:248 msgid "Edit shipment" msgstr "" -#: src/tables/sales/SalesOrderShipmentTable.tsx:211 +#: src/tables/sales/SalesOrderShipmentTable.tsx:256 msgid "Cancel shipment" msgstr "" -#: src/tables/sales/SalesOrderShipmentTable.tsx:241 +#: src/tables/sales/SalesOrderShipmentTable.tsx:286 msgid "Add shipment" msgstr "" -#: src/tables/sales/SalesOrderShipmentTable.tsx:255 +#: src/tables/sales/SalesOrderShipmentTable.tsx:300 msgid "Show shipments which have been checked" msgstr "" -#: src/tables/sales/SalesOrderShipmentTable.tsx:260 +#: src/tables/sales/SalesOrderShipmentTable.tsx:305 msgid "Show shipments which have been shipped" msgstr "" -#: src/tables/sales/SalesOrderShipmentTable.tsx:265 +#: src/tables/sales/SalesOrderShipmentTable.tsx:310 msgid "Show shipments which have been delivered" msgstr "" @@ -11621,11 +11744,6 @@ msgstr "" msgid "Imported Rows" msgstr "" -#: src/tables/settings/ImportSessionTable.tsx:111 -#: src/tables/settings/TemplateTable.tsx:368 -msgid "Model Type" -msgstr "" - #: src/tables/settings/ImportSessionTable.tsx:112 #: src/tables/settings/TemplateTable.tsx:369 msgid "Filter by target model type" diff --git a/src/frontend/src/locales/vi/messages.po b/src/frontend/src/locales/vi/messages.po index ca71588cd9..1ce986688e 100644 --- a/src/frontend/src/locales/vi/messages.po +++ b/src/frontend/src/locales/vi/messages.po @@ -8,7 +8,7 @@ msgstr "" "Language: vi\n" "Project-Id-Version: inventree\n" "Report-Msgid-Bugs-To: \n" -"PO-Revision-Date: 2025-11-19 19:39\n" +"PO-Revision-Date: 2025-12-07 07:36\n" "Last-Translator: \n" "Language-Team: Vietnamese\n" "Plural-Forms: nplurals=1; plural=0;\n" @@ -30,7 +30,7 @@ msgid "Edit" msgstr "Sửa" #: lib/components/RowActions.tsx:56 -#: src/components/forms/ApiForm.tsx:735 +#: src/components/forms/ApiForm.tsx:754 #: src/components/items/ActionDropdown.tsx:257 #: src/components/items/RoleTable.tsx:155 #: src/hooks/UseForm.tsx:164 @@ -56,24 +56,24 @@ msgstr "Hủy bỏ" #: lib/components/RowActions.tsx:136 #: src/components/nav/NavigationDrawer.tsx:190 -#: src/forms/PurchaseOrderForms.tsx:802 +#: src/forms/PurchaseOrderForms.tsx:854 #: src/forms/StockForms.tsx:796 #: src/forms/StockForms.tsx:843 -#: src/forms/StockForms.tsx:889 -#: src/forms/StockForms.tsx:928 -#: src/forms/StockForms.tsx:964 -#: src/forms/StockForms.tsx:1050 +#: src/forms/StockForms.tsx:896 +#: src/forms/StockForms.tsx:942 +#: src/forms/StockForms.tsx:980 +#: src/forms/StockForms.tsx:1066 #: src/pages/Index/Settings/AccountSettings/MFASettings.tsx:962 msgid "Actions" msgstr "Chức năng" #: lib/components/SearchInput.tsx:34 -#: src/components/forms/fields/RelatedModelField.tsx:408 +#: src/components/forms/fields/RelatedModelField.tsx:479 #: src/components/nav/Header.tsx:169 #: src/components/wizards/ImportPartWizard.tsx:200 #: src/components/wizards/ImportPartWizard.tsx:233 -#: src/pages/Index/Settings/UserSettings.tsx:74 -#: src/pages/part/PartDetail.tsx:1155 +#: src/pages/Index/Settings/UserSettings.tsx:75 +#: src/pages/part/PartDetail.tsx:1176 msgid "Search" msgstr "Tìm kiếm" @@ -95,7 +95,7 @@ msgstr "Đồng ý" msgid "No" msgstr "Không" -#: lib/enums/ModelInformation.tsx:28 +#: lib/enums/ModelInformation.tsx:29 #: src/components/wizards/OrderPartsWizard.tsx:279 #: src/forms/BuildForms.tsx:332 #: src/forms/BuildForms.tsx:407 @@ -103,208 +103,234 @@ msgstr "Không" #: src/forms/BuildForms.tsx:630 #: src/forms/BuildForms.tsx:793 #: src/forms/BuildForms.tsx:896 -#: src/forms/PurchaseOrderForms.tsx:798 +#: src/forms/PurchaseOrderForms.tsx:850 #: src/forms/ReturnOrderForms.tsx:242 -#: src/forms/SalesOrderForms.tsx:305 +#: src/forms/SalesOrderForms.tsx:384 #: src/forms/StockForms.tsx:360 #: src/forms/StockForms.tsx:791 #: src/forms/StockForms.tsx:838 -#: src/forms/StockForms.tsx:884 -#: src/forms/StockForms.tsx:923 -#: src/forms/StockForms.tsx:959 -#: src/forms/StockForms.tsx:1002 -#: src/forms/StockForms.tsx:1046 -#: src/forms/StockForms.tsx:1094 -#: src/forms/StockForms.tsx:1138 -#: src/pages/build/BuildDetail.tsx:200 -#: src/pages/part/PartDetail.tsx:1207 +#: src/forms/StockForms.tsx:891 +#: src/forms/StockForms.tsx:937 +#: src/forms/StockForms.tsx:975 +#: src/forms/StockForms.tsx:1018 +#: src/forms/StockForms.tsx:1062 +#: src/forms/StockForms.tsx:1110 +#: src/forms/StockForms.tsx:1154 +#: src/pages/build/BuildDetail.tsx:201 +#: src/pages/part/PartDetail.tsx:1228 #: src/tables/ColumnRenderers.tsx:91 +#: src/tables/part/PartTestResultTable.tsx:247 #: src/tables/part/RelatedPartTable.tsx:53 #: src/tables/stock/StockTrackingTable.tsx:87 msgid "Part" msgstr "Phụ kiện" -#: lib/enums/ModelInformation.tsx:29 +#: lib/enums/ModelInformation.tsx:30 #: lib/enums/Roles.tsx:35 #: src/components/nav/NavigationDrawer.tsx:70 #: src/defaults/links.tsx:36 -#: src/pages/Index/Settings/SystemSettings.tsx:190 -#: src/pages/part/CategoryDetail.tsx:132 -#: src/pages/part/CategoryDetail.tsx:277 -#: src/pages/part/CategoryDetail.tsx:323 -#: src/pages/part/CategoryDetail.tsx:354 -#: src/pages/part/PartDetail.tsx:965 +#: src/pages/Index/Settings/SystemSettings.tsx:197 +#: src/pages/part/CategoryDetail.tsx:135 +#: src/pages/part/CategoryDetail.tsx:285 +#: src/pages/part/CategoryDetail.tsx:340 +#: src/pages/part/CategoryDetail.tsx:371 +#: src/pages/part/PartDetail.tsx:978 msgid "Parts" msgstr "Phụ tùng" #: lib/enums/ModelInformation.tsx:37 #: src/pages/Index/Settings/AdminCenter/PartParameterPanel.tsx:13 -msgid "Part Parameter Template" -msgstr "Mẫu tham số phụ kiện" +#~ msgid "Part Parameter Template" +#~ msgstr "Part Parameter Template" #: lib/enums/ModelInformation.tsx:38 -msgid "Part Parameter Templates" -msgstr "Mẫu tham số phụ kiện" +#~ msgid "Part Parameter Templates" +#~ msgstr "Part Parameter Templates" + +#: lib/enums/ModelInformation.tsx:39 +msgid "Parameter" +msgstr "" + +#: lib/enums/ModelInformation.tsx:40 +#: src/components/panels/ParametersPanel.tsx:19 +#: src/components/wizards/ImportPartWizard.tsx:807 +#: src/pages/Index/Settings/AdminCenter/Index.tsx:195 +#: src/pages/Index/Settings/SystemSettings.tsx:191 +#: src/pages/part/PartDetail.tsx:943 +msgid "Parameters" +msgstr "Thông số" #: lib/enums/ModelInformation.tsx:45 +#: src/tables/part/PartCategoryTemplateTable.tsx:87 +msgid "Parameter Template" +msgstr "" + +#: lib/enums/ModelInformation.tsx:46 +#: src/pages/Index/Settings/AdminCenter/ParameterPanel.tsx:13 +msgid "Parameter Templates" +msgstr "" + +#: lib/enums/ModelInformation.tsx:52 msgid "Part Test Template" msgstr "Mẫu thử nghiệm" -#: lib/enums/ModelInformation.tsx:46 +#: lib/enums/ModelInformation.tsx:53 msgid "Part Test Templates" msgstr "Mẫu thử nghiệm" -#: lib/enums/ModelInformation.tsx:52 +#: lib/enums/ModelInformation.tsx:59 #: src/components/wizards/OrderPartsWizard.tsx:290 -#: src/pages/company/SupplierPartDetail.tsx:413 +#: src/pages/company/SupplierPartDetail.tsx:418 #: src/pages/stock/StockDetail.tsx:289 -#: src/tables/build/BuildAllocatedStockTable.tsx:155 +#: src/tables/build/BuildAllocatedStockTable.tsx:152 #: src/tables/part/PartPurchaseOrdersTable.tsx:50 +#: src/tables/purchasing/SupplierPartParametricTable.tsx:29 #: src/tables/purchasing/SupplierPartTable.tsx:83 #: src/tables/stock/StockItemTable.tsx:247 msgid "Supplier Part" msgstr "Phụ kiện nhà cung cấp" -#: lib/enums/ModelInformation.tsx:53 -#: src/pages/purchasing/PurchasingIndex.tsx:92 +#: lib/enums/ModelInformation.tsx:60 +#: src/pages/purchasing/PurchasingIndex.tsx:128 msgid "Supplier Parts" msgstr "Nhà cung cấp phụ kiện" -#: lib/enums/ModelInformation.tsx:61 -#: src/pages/company/ManufacturerPartDetail.tsx:297 -#: src/pages/company/SupplierPartDetail.tsx:161 +#: lib/enums/ModelInformation.tsx:69 +#: src/pages/company/ManufacturerPartDetail.tsx:288 +#: src/pages/company/SupplierPartDetail.tsx:162 #: src/tables/part/PartPurchaseOrdersTable.tsx:56 #: src/tables/stock/StockItemTable.tsx:253 msgid "Manufacturer Part" msgstr "Phụ kiện nhà sản xuất" -#: lib/enums/ModelInformation.tsx:62 -#: src/pages/purchasing/PurchasingIndex.tsx:109 +#: lib/enums/ModelInformation.tsx:70 +#: src/pages/purchasing/PurchasingIndex.tsx:177 msgid "Manufacturer Parts" msgstr "Nhà sản xuất phụ kiện" -#: lib/enums/ModelInformation.tsx:70 -#: src/pages/part/CategoryDetail.tsx:354 +#: lib/enums/ModelInformation.tsx:79 +#: src/pages/part/CategoryDetail.tsx:371 #: src/tables/Filter.tsx:389 msgid "Part Category" msgstr "Danh mục phụ kiện" -#: lib/enums/ModelInformation.tsx:71 +#: lib/enums/ModelInformation.tsx:80 #: lib/enums/Roles.tsx:37 -#: src/pages/part/CategoryDetail.tsx:271 -#: src/pages/part/CategoryDetail.tsx:345 -#: src/pages/part/PartDetail.tsx:1196 +#: src/pages/part/CategoryDetail.tsx:279 +#: src/pages/part/CategoryDetail.tsx:362 +#: src/pages/part/PartDetail.tsx:1217 msgid "Part Categories" msgstr "Danh mục phụ kiện" -#: lib/enums/ModelInformation.tsx:79 +#: lib/enums/ModelInformation.tsx:88 #: src/forms/BuildForms.tsx:473 #: src/forms/BuildForms.tsx:633 #: src/forms/BuildForms.tsx:794 -#: src/forms/SalesOrderForms.tsx:307 +#: src/forms/SalesOrderForms.tsx:386 #: src/pages/stock/StockDetail.tsx:1005 -#: src/tables/part/PartTestResultTable.tsx:248 +#: src/tables/part/PartTestResultTable.tsx:256 #: src/tables/stock/StockTrackingTable.tsx:48 #: src/tables/stock/StockTrackingTable.tsx:55 msgid "Stock Item" msgstr "Hàng trong kho" -#: lib/enums/ModelInformation.tsx:80 +#: lib/enums/ModelInformation.tsx:89 #: lib/enums/Roles.tsx:45 -#: src/pages/company/CompanyDetail.tsx:210 -#: src/pages/part/CategoryDetail.tsx:291 +#: src/pages/company/CompanyDetail.tsx:211 +#: src/pages/part/CategoryDetail.tsx:314 #: src/pages/part/PartStockHistoryDetail.tsx:101 #: src/pages/stock/LocationDetail.tsx:121 #: src/pages/stock/LocationDetail.tsx:180 msgid "Stock Items" msgstr "Hàng trong kho" -#: lib/enums/ModelInformation.tsx:88 +#: lib/enums/ModelInformation.tsx:98 #: lib/enums/Roles.tsx:47 #: src/pages/stock/LocationDetail.tsx:420 msgid "Stock Location" msgstr "Vị trí kho hàng" -#: lib/enums/ModelInformation.tsx:89 +#: lib/enums/ModelInformation.tsx:99 #: src/pages/stock/LocationDetail.tsx:174 #: src/pages/stock/LocationDetail.tsx:412 #: src/pages/stock/StockDetail.tsx:996 msgid "Stock Locations" msgstr "Vị trí kho hàng" -#: lib/enums/ModelInformation.tsx:97 +#: lib/enums/ModelInformation.tsx:108 msgid "Stock Location Type" msgstr "Phân loại vị trí kho hàng" -#: lib/enums/ModelInformation.tsx:98 +#: lib/enums/ModelInformation.tsx:109 msgid "Stock Location Types" msgstr "Phân loại vị trí kho hàng" -#: lib/enums/ModelInformation.tsx:103 -#: src/pages/Index/Settings/SystemSettings.tsx:248 -#: src/pages/part/PartDetail.tsx:911 +#: lib/enums/ModelInformation.tsx:114 +#: src/pages/Index/Settings/SystemSettings.tsx:254 +#: src/pages/part/PartDetail.tsx:900 msgid "Stock History" msgstr "Lịch sử kho hàng" -#: lib/enums/ModelInformation.tsx:104 +#: lib/enums/ModelInformation.tsx:115 msgid "Stock Histories" msgstr "Lịch sử kho hàng" -#: lib/enums/ModelInformation.tsx:109 +#: lib/enums/ModelInformation.tsx:120 msgid "Build" msgstr "Xây dựng" -#: lib/enums/ModelInformation.tsx:110 +#: lib/enums/ModelInformation.tsx:121 msgid "Builds" msgstr "Bản dựng" -#: lib/enums/ModelInformation.tsx:118 +#: lib/enums/ModelInformation.tsx:130 msgid "Build Line" msgstr "Xây dựng line mặt hàng" -#: lib/enums/ModelInformation.tsx:119 +#: lib/enums/ModelInformation.tsx:131 msgid "Build Lines" msgstr "Xây dựng line mặt hàng" -#: lib/enums/ModelInformation.tsx:126 +#: lib/enums/ModelInformation.tsx:138 msgid "Build Item" msgstr "Xây dựng mặt hàng" -#: lib/enums/ModelInformation.tsx:127 +#: lib/enums/ModelInformation.tsx:139 msgid "Build Items" msgstr "Xây dựng mặt hàng" -#: lib/enums/ModelInformation.tsx:132 -#: src/pages/company/CompanyDetail.tsx:340 +#: lib/enums/ModelInformation.tsx:144 +#: src/pages/company/CompanyDetail.tsx:345 #: src/tables/company/CompanyTable.tsx:47 #: src/tables/company/ContactTable.tsx:67 +#: src/tables/company/ParametricCompanyTable.tsx:18 msgid "Company" msgstr "Công ty" -#: lib/enums/ModelInformation.tsx:133 +#: lib/enums/ModelInformation.tsx:145 msgid "Companies" msgstr "Doanh nghiệp" -#: lib/enums/ModelInformation.tsx:140 -#: src/pages/build/BuildDetail.tsx:316 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:253 -#: src/pages/sales/ReturnOrderDetail.tsx:231 -#: src/pages/sales/SalesOrderDetail.tsx:224 +#: lib/enums/ModelInformation.tsx:152 +#: src/pages/build/BuildDetail.tsx:317 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:254 +#: src/pages/sales/ReturnOrderDetail.tsx:232 +#: src/pages/sales/SalesOrderDetail.tsx:225 #: src/tables/ColumnRenderers.tsx:362 #: src/tables/Filter.tsx:286 #: src/tables/TableHoverCard.tsx:101 msgid "Project Code" msgstr "Mã dự án" -#: lib/enums/ModelInformation.tsx:141 +#: lib/enums/ModelInformation.tsx:153 #: src/pages/Index/Settings/AdminCenter/Index.tsx:172 msgid "Project Codes" msgstr "Mã dự án" -#: lib/enums/ModelInformation.tsx:147 +#: lib/enums/ModelInformation.tsx:159 #: src/components/wizards/OrderPartsWizard.tsx:338 #: src/pages/part/pricing/PurchaseHistoryPanel.tsx:33 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:550 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:555 #: src/pages/stock/StockDetail.tsx:352 #: src/tables/part/PartPurchaseOrdersTable.tsx:32 #: src/tables/stock/StockItemTable.tsx:239 @@ -312,117 +338,117 @@ msgstr "Mã dự án" msgid "Purchase Order" msgstr "Đơn đặt mua" -#: lib/enums/ModelInformation.tsx:148 +#: lib/enums/ModelInformation.tsx:160 #: lib/enums/Roles.tsx:39 #: src/defaults/actions.tsx:104 -#: src/pages/Index/Settings/SystemSettings.tsx:283 -#: src/pages/company/CompanyDetail.tsx:203 -#: src/pages/company/SupplierPartDetail.tsx:266 -#: src/pages/part/PartDetail.tsx:875 -#: src/pages/purchasing/PurchasingIndex.tsx:60 +#: src/pages/Index/Settings/SystemSettings.tsx:289 +#: src/pages/company/CompanyDetail.tsx:204 +#: src/pages/company/SupplierPartDetail.tsx:267 +#: src/pages/part/PartDetail.tsx:864 +#: src/pages/purchasing/PurchasingIndex.tsx:66 msgid "Purchase Orders" msgstr "Đơn hàng mua" -#: lib/enums/ModelInformation.tsx:156 +#: lib/enums/ModelInformation.tsx:169 msgid "Purchase Order Line" msgstr "Các dòng đơn đặt hàng" -#: lib/enums/ModelInformation.tsx:157 +#: lib/enums/ModelInformation.tsx:170 msgid "Purchase Order Lines" msgstr "Các dòng đơn đặt hàng" -#: lib/enums/ModelInformation.tsx:162 -#: src/pages/build/BuildDetail.tsx:289 +#: lib/enums/ModelInformation.tsx:175 +#: src/pages/build/BuildDetail.tsx:290 #: src/pages/part/pricing/SaleHistoryPanel.tsx:24 -#: src/pages/sales/SalesOrderDetail.tsx:614 -#: src/pages/sales/SalesOrderShipmentDetail.tsx:105 -#: src/pages/sales/SalesOrderShipmentDetail.tsx:478 +#: src/pages/sales/SalesOrderDetail.tsx:619 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:103 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:446 #: src/pages/stock/StockDetail.tsx:361 #: src/tables/part/PartSalesAllocationsTable.tsx:41 #: src/tables/sales/SalesOrderAllocationTable.tsx:110 -#: src/tables/sales/SalesOrderShipmentTable.tsx:122 +#: src/tables/sales/SalesOrderShipmentTable.tsx:143 #: src/tables/stock/StockTrackingTable.tsx:131 msgid "Sales Order" msgstr "Đơn đặt bán" -#: lib/enums/ModelInformation.tsx:163 +#: lib/enums/ModelInformation.tsx:176 #: lib/enums/Roles.tsx:43 #: src/defaults/actions.tsx:114 -#: src/pages/Index/Settings/SystemSettings.tsx:299 -#: src/pages/company/CompanyDetail.tsx:223 -#: src/pages/part/PartDetail.tsx:887 -#: src/pages/sales/SalesIndex.tsx:84 +#: src/pages/Index/Settings/SystemSettings.tsx:305 +#: src/pages/company/CompanyDetail.tsx:224 +#: src/pages/part/PartDetail.tsx:876 +#: src/pages/sales/SalesIndex.tsx:53 msgid "Sales Orders" msgstr "Đơn hàng bán" -#: lib/enums/ModelInformation.tsx:171 -#: src/pages/sales/SalesOrderShipmentDetail.tsx:477 +#: lib/enums/ModelInformation.tsx:185 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:445 msgid "Sales Order Shipment" msgstr "Vận chuyển đơn hàng" -#: lib/enums/ModelInformation.tsx:172 +#: lib/enums/ModelInformation.tsx:186 msgid "Sales Order Shipments" msgstr "Vận chuyển đơn hàng" -#: lib/enums/ModelInformation.tsx:179 -#: src/pages/sales/ReturnOrderDetail.tsx:549 +#: lib/enums/ModelInformation.tsx:194 +#: src/pages/sales/ReturnOrderDetail.tsx:554 #: src/tables/stock/StockTrackingTable.tsx:142 msgid "Return Order" msgstr "Đơn hàng trả lại" -#: lib/enums/ModelInformation.tsx:180 +#: lib/enums/ModelInformation.tsx:195 #: lib/enums/Roles.tsx:41 #: src/defaults/actions.tsx:125 -#: src/pages/Index/Settings/SystemSettings.tsx:316 -#: src/pages/company/CompanyDetail.tsx:230 -#: src/pages/part/PartDetail.tsx:894 -#: src/pages/sales/SalesIndex.tsx:117 +#: src/pages/Index/Settings/SystemSettings.tsx:322 +#: src/pages/company/CompanyDetail.tsx:231 +#: src/pages/part/PartDetail.tsx:883 +#: src/pages/sales/SalesIndex.tsx:99 msgid "Return Orders" msgstr "Đơn hàng trả lại" -#: lib/enums/ModelInformation.tsx:188 +#: lib/enums/ModelInformation.tsx:204 msgid "Return Order Line Item" msgstr "Đơn hàng trả lại" -#: lib/enums/ModelInformation.tsx:189 +#: lib/enums/ModelInformation.tsx:205 msgid "Return Order Line Items" msgstr "Đơn hàng trả lại" -#: lib/enums/ModelInformation.tsx:194 +#: lib/enums/ModelInformation.tsx:210 #: src/tables/company/AddressTable.tsx:52 msgid "Address" msgstr "Địa chỉ" -#: lib/enums/ModelInformation.tsx:195 -#: src/pages/company/CompanyDetail.tsx:264 +#: lib/enums/ModelInformation.tsx:211 +#: src/pages/company/CompanyDetail.tsx:265 msgid "Addresses" msgstr "Địa chỉ" -#: lib/enums/ModelInformation.tsx:201 +#: lib/enums/ModelInformation.tsx:217 #: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:89 #: src/pages/core/UserDetail.tsx:135 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:229 -#: src/pages/sales/ReturnOrderDetail.tsx:207 -#: src/pages/sales/SalesOrderDetail.tsx:200 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:230 +#: src/pages/sales/ReturnOrderDetail.tsx:208 +#: src/pages/sales/SalesOrderDetail.tsx:201 msgid "Contact" msgstr "Liên hệ" -#: lib/enums/ModelInformation.tsx:202 -#: src/pages/company/CompanyDetail.tsx:258 +#: lib/enums/ModelInformation.tsx:218 +#: src/pages/company/CompanyDetail.tsx:259 #: src/pages/core/CoreIndex.tsx:33 msgid "Contacts" msgstr "Danh bạ" -#: lib/enums/ModelInformation.tsx:208 +#: lib/enums/ModelInformation.tsx:224 #: src/tables/ColumnRenderers.tsx:444 msgid "Owner" msgstr "Chủ sở hữu" -#: lib/enums/ModelInformation.tsx:209 +#: lib/enums/ModelInformation.tsx:225 msgid "Owners" msgstr "Chủ sở hữu" -#: lib/enums/ModelInformation.tsx:215 +#: lib/enums/ModelInformation.tsx:231 #: src/pages/Auth/ChangePassword.tsx:36 #: src/pages/core/UserDetail.tsx:220 #: src/tables/ColumnRenderers.tsx:395 @@ -437,7 +463,7 @@ msgstr "Chủ sở hữu" msgid "User" msgstr "Người dùng" -#: lib/enums/ModelInformation.tsx:216 +#: lib/enums/ModelInformation.tsx:232 #: src/components/nav/NavigationDrawer.tsx:105 #: src/pages/Index/Settings/AdminCenter/UserManagementPanel.tsx:15 #: src/pages/core/CoreIndex.tsx:21 @@ -445,12 +471,12 @@ msgstr "Người dùng" msgid "Users" msgstr "Người dùng" -#: lib/enums/ModelInformation.tsx:222 +#: lib/enums/ModelInformation.tsx:238 #: src/pages/core/GroupDetail.tsx:78 msgid "Group" msgstr "Nhóm" -#: lib/enums/ModelInformation.tsx:223 +#: lib/enums/ModelInformation.tsx:239 #: src/components/nav/NavigationDrawer.tsx:111 #: src/pages/Index/Settings/AdminCenter/UserManagementPanel.tsx:23 #: src/pages/core/CoreIndex.tsx:27 @@ -460,64 +486,64 @@ msgstr "Nhóm" msgid "Groups" msgstr "Nhóm" -#: lib/enums/ModelInformation.tsx:230 +#: lib/enums/ModelInformation.tsx:246 msgid "Import Session" msgstr "Phiên làm việc" -#: lib/enums/ModelInformation.tsx:231 +#: lib/enums/ModelInformation.tsx:247 msgid "Import Sessions" msgstr "Nhập phiên làm việc" -#: lib/enums/ModelInformation.tsx:238 +#: lib/enums/ModelInformation.tsx:254 msgid "Label Template" msgstr "Mẫu nhãn tem" -#: lib/enums/ModelInformation.tsx:239 +#: lib/enums/ModelInformation.tsx:255 #: src/pages/Index/Settings/AdminCenter/Index.tsx:209 msgid "Label Templates" msgstr "Mẫu nhãn tem" -#: lib/enums/ModelInformation.tsx:246 +#: lib/enums/ModelInformation.tsx:262 msgid "Report Template" msgstr "Mẫu báo cáo" -#: lib/enums/ModelInformation.tsx:247 +#: lib/enums/ModelInformation.tsx:263 #: src/pages/Index/Settings/AdminCenter/Index.tsx:215 msgid "Report Templates" msgstr "Mẫu báo cáo" -#: lib/enums/ModelInformation.tsx:254 +#: lib/enums/ModelInformation.tsx:270 #: src/components/plugins/PluginDrawer.tsx:145 msgid "Plugin Configuration" msgstr "Cấu hình plugin" -#: lib/enums/ModelInformation.tsx:255 +#: lib/enums/ModelInformation.tsx:271 msgid "Plugin Configurations" msgstr "Cấu hình plugin" -#: lib/enums/ModelInformation.tsx:262 +#: lib/enums/ModelInformation.tsx:278 msgid "Content Type" msgstr "Loại Nội Dung" -#: lib/enums/ModelInformation.tsx:263 +#: lib/enums/ModelInformation.tsx:279 msgid "Content Types" msgstr "Loại Nội Dung" -#: lib/enums/ModelInformation.tsx:268 +#: lib/enums/ModelInformation.tsx:284 msgid "Selection List" msgstr "Danh sách chọn" -#: lib/enums/ModelInformation.tsx:269 -#: src/pages/Index/Settings/AdminCenter/PartParameterPanel.tsx:21 +#: lib/enums/ModelInformation.tsx:285 +#: src/pages/Index/Settings/AdminCenter/ParameterPanel.tsx:21 msgid "Selection Lists" msgstr "Danh sách chọn" -#: lib/enums/ModelInformation.tsx:275 +#: lib/enums/ModelInformation.tsx:291 #: src/components/barcodes/BarcodeInput.tsx:114 #: src/components/dashboard/DashboardLayout.tsx:281 #: src/components/editors/NotesEditor.tsx:74 #: src/components/editors/TemplateEditor/TemplateEditor.tsx:158 -#: src/components/forms/fields/ApiFormField.tsx:273 +#: src/components/forms/fields/ApiFormField.tsx:237 #: src/components/forms/fields/TableField.tsx:45 #: src/components/importer/ImportDataSelector.tsx:192 #: src/components/importer/ImporterColumnSelector.tsx:234 @@ -528,7 +554,7 @@ msgstr "Danh sách chọn" #: src/components/nav/SearchDrawer.tsx:572 #: src/components/settings/SettingList.tsx:139 #: src/components/wizards/ImportPartWizard.tsx:574 -#: src/components/wizards/ImportPartWizard.tsx:718 +#: src/components/wizards/ImportPartWizard.tsx:719 #: src/forms/BomForms.tsx:69 #: src/functions/auth.tsx:643 #: src/pages/ErrorPage.tsx:11 @@ -547,9 +573,9 @@ msgstr "Danh sách chọn" msgid "Error" msgstr "Lỗi" -#: lib/enums/ModelInformation.tsx:276 +#: lib/enums/ModelInformation.tsx:292 #: src/tables/machine/MachineListTable.tsx:402 -#: src/tables/machine/MachineTypeTable.tsx:299 +#: src/tables/machine/MachineTypeTable.tsx:297 msgid "Errors" msgstr "Lỗi" @@ -559,10 +585,10 @@ msgstr "Quản trị" #: lib/enums/Roles.tsx:33 #: src/defaults/actions.tsx:135 -#: src/pages/Index/Settings/SystemSettings.tsx:264 -#: src/pages/build/BuildIndex.tsx:75 -#: src/pages/part/PartDetail.tsx:904 -#: src/pages/sales/SalesOrderDetail.tsx:421 +#: src/pages/Index/Settings/SystemSettings.tsx:270 +#: src/pages/build/BuildIndex.tsx:67 +#: src/pages/part/PartDetail.tsx:893 +#: src/pages/sales/SalesOrderDetail.tsx:422 msgid "Build Orders" msgstr "Đơn đặt bản dựng" @@ -639,39 +665,39 @@ msgstr "" msgid "Enter barcode data" msgstr "Nhập dữ liệu mã vạch" -#: src/components/barcodes/BarcodeScanDialog.tsx:49 -#: src/components/buttons/ScanButton.tsx:15 +#: src/components/barcodes/BarcodeScanDialog.tsx:56 +#: src/components/buttons/ScanButton.tsx:27 #: src/components/nav/NavigationDrawer.tsx:122 -#: src/forms/PurchaseOrderForms.tsx:457 -#: src/forms/PurchaseOrderForms.tsx:563 +#: src/forms/PurchaseOrderForms.tsx:509 +#: src/forms/PurchaseOrderForms.tsx:615 msgid "Scan Barcode" msgstr "Quét mã vạch" -#: src/components/barcodes/BarcodeScanDialog.tsx:105 +#: src/components/barcodes/BarcodeScanDialog.tsx:121 msgid "No matching item found" msgstr "" -#: src/components/barcodes/BarcodeScanDialog.tsx:134 +#: src/components/barcodes/BarcodeScanDialog.tsx:150 msgid "Barcode does not match the expected model type" msgstr "" -#: src/components/barcodes/BarcodeScanDialog.tsx:145 +#: src/components/barcodes/BarcodeScanDialog.tsx:161 #: src/components/editors/NotesEditor.tsx:84 #: src/components/editors/NotesEditor.tsx:118 -#: src/components/forms/ApiForm.tsx:465 +#: src/components/forms/ApiForm.tsx:484 #: src/components/wizards/ImportPartWizard.tsx:566 -#: src/components/wizards/ImportPartWizard.tsx:690 +#: src/components/wizards/ImportPartWizard.tsx:691 #: src/pages/Index/Settings/AdminCenter/CurrencyManagementPanel.tsx:45 #: src/tables/bom/BomTable.tsx:548 #: src/tables/settings/PendingTasksTable.tsx:68 msgid "Success" msgstr "Thành công" -#: src/components/barcodes/BarcodeScanDialog.tsx:151 +#: src/components/barcodes/BarcodeScanDialog.tsx:167 msgid "Failed to handle barcode" msgstr "" -#: src/components/barcodes/BarcodeScanDialog.tsx:167 +#: src/components/barcodes/BarcodeScanDialog.tsx:183 #: src/pages/Index/Scan.tsx:129 msgid "Failed to scan barcode" msgstr "Quét mã vạch thất bại" @@ -714,10 +740,10 @@ msgstr "Liên kết với mã vạch thất bại" #: src/components/barcodes/QRCode.tsx:179 #: src/pages/part/PartDetail.tsx:521 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:222 -#: src/pages/sales/ReturnOrderDetail.tsx:188 -#: src/pages/sales/SalesOrderDetail.tsx:181 -#: src/pages/sales/SalesOrderShipmentDetail.tsx:122 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:223 +#: src/pages/sales/ReturnOrderDetail.tsx:189 +#: src/pages/sales/SalesOrderDetail.tsx:182 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:120 #: src/pages/stock/StockDetail.tsx:186 msgid "Link" msgstr "Liên kết" @@ -728,7 +754,7 @@ msgstr "Thao tác này sẽ xóa liên kết đến mã vạch được liên k #: src/components/barcodes/QRCode.tsx:205 #: src/components/items/ActionDropdown.tsx:192 -#: src/forms/PurchaseOrderForms.tsx:554 +#: src/forms/PurchaseOrderForms.tsx:606 msgid "Unlink Barcode" msgstr "Gỡ liên kết mã vạch" @@ -829,14 +855,14 @@ msgstr "" #~ msgid "Scan QR code" #~ msgstr "Scan QR code" -#: src/components/buttons/ScanButton.tsx:19 -msgid "Open Barcode Scanner" -msgstr "Mở máy quét mã vạch" - #: src/components/buttons/ScanButton.tsx:20 #~ msgid "Open QR code scanner" #~ msgstr "Open QR code scanner" +#: src/components/buttons/ScanButton.tsx:32 +msgid "Open Barcode Scanner" +msgstr "Mở máy quét mã vạch" + #: src/components/buttons/SpotlightButton.tsx:12 msgid "Open spotlight" msgstr "Mở đèn chiếu" @@ -1059,7 +1085,7 @@ msgid "Show the number of sales orders which are assigned to you" msgstr "" #: src/components/dashboard/DashboardWidgetLibrary.tsx:129 -#: src/pages/sales/SalesIndex.tsx:105 +#: src/pages/sales/SalesIndex.tsx:87 msgid "Pending Shipments" msgstr "" @@ -1210,12 +1236,18 @@ msgid "Remove the associated image from this item?" msgstr "Xóa hình liên quan khỏi mục này?" #: src/components/details/DetailsImage.tsx:83 -#: src/forms/StockForms.tsx:888 +#: src/forms/StockForms.tsx:895 #: src/pages/Index/Settings/AccountSettings/MFASettings.tsx:324 #: src/pages/Index/Settings/AccountSettings/MFASettings.tsx:415 #: src/pages/Index/Settings/AccountSettings/MFASettings.tsx:884 #: src/pages/Index/Settings/AccountSettings/MFASettings.tsx:903 #: src/pages/Index/Settings/AccountSettings/SecurityContent.tsx:254 +#: src/tables/build/BuildAllocatedStockTable.tsx:178 +#: src/tables/build/BuildAllocatedStockTable.tsx:258 +#: src/tables/build/BuildLineTable.tsx:111 +#: src/tables/build/BuildLineTable.tsx:665 +#: src/tables/sales/SalesOrderAllocationTable.tsx:224 +#: src/tables/sales/SalesOrderAllocationTable.tsx:247 msgid "Remove" msgstr "Xoá" @@ -1241,12 +1273,12 @@ msgid "Upload Error" msgstr "Lỗi tải lên" #: src/components/details/DetailsImage.tsx:250 -#: src/components/forms/fields/TextField.tsx:65 +#: src/components/forms/fields/AutoFillRightSection.tsx:34 msgid "Clear" msgstr "Clear" #: src/components/details/DetailsImage.tsx:256 -#: src/components/forms/ApiForm.tsx:677 +#: src/components/forms/ApiForm.tsx:696 #: src/contexts/ThemeContext.tsx:44 #: src/pages/Index/Settings/AccountSettings/MFASettings.tsx:149 #: src/pages/Index/Settings/AccountSettings/MFASettings.tsx:568 @@ -1499,8 +1531,8 @@ msgstr "Lỗi máy chủ" msgid "A server error occurred" msgstr "Xảy ra lỗi máy chủ" -#: src/components/forms/ApiForm.tsx:103 -#: src/components/forms/ApiForm.tsx:594 +#: src/components/forms/ApiForm.tsx:107 +#: src/components/forms/ApiForm.tsx:613 msgid "Form Error" msgstr "Lỗi form" @@ -1508,11 +1540,11 @@ msgstr "Lỗi form" #~ msgid "Form Errors Exist" #~ msgstr "Form Errors Exist" -#: src/components/forms/ApiForm.tsx:604 +#: src/components/forms/ApiForm.tsx:623 msgid "Errors exist for one or more form fields" msgstr "Lỗi nhập liệu" -#: src/components/forms/ApiForm.tsx:715 +#: src/components/forms/ApiForm.tsx:734 #: src/hooks/UseForm.tsx:133 #: src/tables/plugin/PluginListTable.tsx:204 msgid "Update" @@ -1698,15 +1730,14 @@ msgstr "Host" #: src/components/forms/InstanceOptions.tsx:124 #: src/components/plugins/PluginDrawer.tsx:68 #: src/pages/Index/Settings/AdminCenter/UnitManagementPanel.tsx:19 -#: src/pages/part/CategoryDetail.tsx:88 +#: src/pages/part/CategoryDetail.tsx:91 #: src/pages/part/PartDetail.tsx:446 #: src/pages/stock/LocationDetail.tsx:82 #: src/tables/machine/MachineTypeTable.tsx:67 -#: src/tables/machine/MachineTypeTable.tsx:151 -#: src/tables/machine/MachineTypeTable.tsx:254 -#: src/tables/machine/MachineTypeTable.tsx:357 +#: src/tables/machine/MachineTypeTable.tsx:149 +#: src/tables/machine/MachineTypeTable.tsx:252 +#: src/tables/machine/MachineTypeTable.tsx:355 #: src/tables/plugin/PluginErrorTable.tsx:33 -#: src/tables/purchasing/ManufacturerPartParameterTable.tsx:36 #: src/tables/settings/ApiTokenTable.tsx:57 #: src/tables/settings/GroupTable.tsx:95 #: src/tables/settings/GroupTable.tsx:148 @@ -1769,7 +1800,7 @@ msgstr "" #~ msgstr "State: <0>worker ({0}), <1>plugins{1}" #: src/components/forms/InstanceOptions.tsx:118 -#: src/pages/Index/Settings/SystemSettings.tsx:45 +#: src/pages/Index/Settings/SystemSettings.tsx:46 msgid "Server" msgstr "Máy chủ" @@ -1793,6 +1824,8 @@ msgid "Plugins" msgstr "Plugins" #: src/components/forms/InstanceOptions.tsx:143 +#: src/tables/general/ParameterTemplateTable.tsx:153 +#: src/tables/general/ParameterTemplateTable.tsx:188 #: src/tables/part/PartTestTemplateTable.tsx:117 #: src/tables/settings/TemplateTable.tsx:251 #: src/tables/settings/TemplateTable.tsx:362 @@ -1817,10 +1850,14 @@ msgstr "" msgid "Running" msgstr "" -#: src/components/forms/fields/ApiFormField.tsx:233 +#: src/components/forms/fields/ApiFormField.tsx:197 msgid "Select file to upload" msgstr "" +#: src/components/forms/fields/AutoFillRightSection.tsx:47 +msgid "Accept suggested value" +msgstr "" + #: src/components/forms/fields/DateField.tsx:76 msgid "Select date" msgstr "" @@ -1853,13 +1890,13 @@ msgstr "Chọn gói" msgid "{0} icons" msgstr "{0} icons" -#: src/components/forms/fields/RelatedModelField.tsx:409 +#: src/components/forms/fields/RelatedModelField.tsx:480 #: src/components/modals/AboutInvenTreeModal.tsx:96 #: src/pages/Index/Settings/AccountSettings/SecurityContent.tsx:383 msgid "Loading" msgstr "Đang tải" -#: src/components/forms/fields/RelatedModelField.tsx:411 +#: src/components/forms/fields/RelatedModelField.tsx:482 msgid "No results found" msgstr "Không có kết quả nào được tìm thấy" @@ -1875,10 +1912,6 @@ msgstr "Không mục nhập nào có sẵn" msgid "Add new row" msgstr "" -#: src/components/forms/fields/TextField.tsx:82 -msgid "Accept suggested value" -msgstr "" - #: src/components/images/DetailsImage.tsx:252 #~ msgid "Select image" #~ msgstr "Select image" @@ -2036,7 +2069,7 @@ msgstr "Dữ liệu đã được nhập thành công" #: src/components/importer/ImporterDrawer.tsx:109 #: src/components/modals/AboutInvenTreeModal.tsx:205 #: src/components/modals/ServerInfoModal.tsx:134 -#: src/components/wizards/ImportPartWizard.tsx:772 +#: src/components/wizards/ImportPartWizard.tsx:773 #: src/forms/BomForms.tsx:132 #: src/pages/Index/Settings/AccountSettings/MFASettings.tsx:685 msgid "Close" @@ -2199,7 +2232,7 @@ msgid "Change" msgstr "" #: src/components/items/RoleTable.tsx:150 -#: src/forms/StockForms.tsx:927 +#: src/forms/StockForms.tsx:941 #: src/tables/stock/StockItemTestResultTable.tsx:367 msgid "Add" msgstr "Thêm" @@ -2222,11 +2255,11 @@ msgstr "" #: src/components/items/TransferList.tsx:161 #: src/components/render/Stock.tsx:102 -#: src/pages/part/PartDetail.tsx:994 +#: src/pages/part/PartDetail.tsx:1009 #: src/pages/stock/StockDetail.tsx:265 #: src/pages/stock/StockDetail.tsx:942 -#: src/tables/build/BuildAllocatedStockTable.tsx:135 -#: src/tables/build/BuildLineTable.tsx:192 +#: src/tables/build/BuildAllocatedStockTable.tsx:132 +#: src/tables/build/BuildLineTable.tsx:193 #: src/tables/part/PartTable.tsx:137 #: src/tables/stock/StockItemTable.tsx:182 #: src/tables/stock/StockItemTable.tsx:343 @@ -2373,7 +2406,7 @@ msgid "Database" msgstr "Cơ sở dữ liệu" #: src/components/modals/ServerInfoModal.tsx:49 -#: src/components/nav/Alerts.tsx:118 +#: src/components/nav/Alerts.tsx:120 msgid "Debug Mode" msgstr "Chế độ gỡ lỗi" @@ -2414,7 +2447,7 @@ msgid "Issues detected" msgstr "Đã phát hiện vấn đề" #: src/components/modals/ServerInfoModal.tsx:102 -#: src/components/nav/Alerts.tsx:125 +#: src/components/nav/Alerts.tsx:127 msgid "Background Worker" msgstr "Nhân công chạy ngầm" @@ -2436,7 +2469,7 @@ msgstr "Thiết lập email" #~ msgstr "Email settings not configured" #: src/components/modals/ServerInfoModal.tsx:120 -#: src/components/nav/Alerts.tsx:141 +#: src/components/nav/Alerts.tsx:143 msgid "Email settings not configured." msgstr "" @@ -2444,43 +2477,47 @@ msgstr "" msgid "Alerts" msgstr "" -#: src/components/nav/Alerts.tsx:120 +#: src/components/nav/Alerts.tsx:97 +msgid "No issues detected" +msgstr "" + +#: src/components/nav/Alerts.tsx:122 msgid "The server is running in debug mode." msgstr "" -#: src/components/nav/Alerts.tsx:127 +#: src/components/nav/Alerts.tsx:129 msgid "The background worker process is not running." msgstr "" -#: src/components/nav/Alerts.tsx:132 +#: src/components/nav/Alerts.tsx:134 msgid "Server Restart" msgstr "" -#: src/components/nav/Alerts.tsx:134 +#: src/components/nav/Alerts.tsx:136 msgid "The server requires a restart to apply changes." msgstr "" -#: src/components/nav/Alerts.tsx:139 +#: src/components/nav/Alerts.tsx:141 msgid "Email settings" msgstr "" -#: src/components/nav/Alerts.tsx:146 +#: src/components/nav/Alerts.tsx:148 msgid "Database Migrations" msgstr "" -#: src/components/nav/Alerts.tsx:148 +#: src/components/nav/Alerts.tsx:150 msgid "There are pending database migrations." msgstr "" -#: src/components/nav/Alerts.tsx:163 +#: src/components/nav/Alerts.tsx:165 msgid "Learn more about {code}" msgstr "" #: src/components/nav/Header.tsx:188 #: src/components/nav/NavigationDrawer.tsx:134 #: src/components/nav/NotificationDrawer.tsx:181 -#: src/pages/Index/Settings/SystemSettings.tsx:121 -#: src/pages/Index/Settings/UserSettings.tsx:106 +#: src/pages/Index/Settings/SystemSettings.tsx:122 +#: src/pages/Index/Settings/UserSettings.tsx:107 #: src/pages/Notifications.tsx:45 #: src/pages/Notifications.tsx:130 msgid "Notifications" @@ -2511,8 +2548,8 @@ msgstr "Cài đặt" #: src/components/nav/NavigationDrawer.tsx:140 #: src/components/nav/SettingsHeader.tsx:40 #: src/defaults/actions.tsx:92 -#: src/pages/Index/Settings/UserSettings.tsx:141 -#: src/pages/Index/Settings/UserSettings.tsx:145 +#: src/pages/Index/Settings/UserSettings.tsx:142 +#: src/pages/Index/Settings/UserSettings.tsx:146 msgid "User Settings" msgstr "" @@ -2529,8 +2566,8 @@ msgstr "" #: src/components/nav/NavigationDrawer.tsx:146 #: src/components/nav/SettingsHeader.tsx:41 #: src/defaults/actions.tsx:144 -#: src/pages/Index/Settings/SystemSettings.tsx:348 -#: src/pages/Index/Settings/SystemSettings.tsx:353 +#: src/pages/Index/Settings/SystemSettings.tsx:354 +#: src/pages/Index/Settings/SystemSettings.tsx:359 msgid "System Settings" msgstr "Thiết lập hệ thống" @@ -2577,11 +2614,11 @@ msgstr "Đăng xuất" #: src/components/nav/NavigationDrawer.tsx:77 #: src/components/render/Part.tsx:36 -#: src/components/wizards/ImportPartWizard.tsx:807 +#: src/components/wizards/ImportPartWizard.tsx:808 #: src/defaults/links.tsx:42 #: src/forms/StockForms.tsx:794 -#: src/pages/Index/Settings/SystemSettings.tsx:224 -#: src/pages/part/PartDetail.tsx:804 +#: src/pages/Index/Settings/SystemSettings.tsx:230 +#: src/pages/part/PartDetail.tsx:793 #: src/pages/stock/LocationDetail.tsx:390 #: src/pages/stock/LocationDetail.tsx:420 #: src/pages/stock/StockDetail.tsx:642 @@ -2591,29 +2628,29 @@ msgstr "Kho hàng" #: src/components/nav/NavigationDrawer.tsx:84 #: src/defaults/links.tsx:48 -#: src/pages/build/BuildDetail.tsx:748 -#: src/pages/build/BuildIndex.tsx:102 +#: src/pages/build/BuildDetail.tsx:753 +#: src/pages/build/BuildIndex.tsx:101 msgid "Manufacturing" msgstr "" #: src/components/nav/NavigationDrawer.tsx:91 #: src/defaults/links.tsx:54 #: src/pages/company/ManufacturerDetail.tsx:9 -#: src/pages/company/ManufacturerPartDetail.tsx:276 +#: src/pages/company/ManufacturerPartDetail.tsx:267 #: src/pages/company/SupplierDetail.tsx:9 -#: src/pages/company/SupplierPartDetail.tsx:360 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:553 -#: src/pages/purchasing/PurchasingIndex.tsx:122 +#: src/pages/company/SupplierPartDetail.tsx:365 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:558 +#: src/pages/purchasing/PurchasingIndex.tsx:212 msgid "Purchasing" msgstr "Mua sắm" #: src/components/nav/NavigationDrawer.tsx:98 #: src/defaults/links.tsx:60 #: src/pages/company/CustomerDetail.tsx:9 -#: src/pages/sales/ReturnOrderDetail.tsx:554 -#: src/pages/sales/SalesIndex.tsx:153 -#: src/pages/sales/SalesOrderDetail.tsx:619 -#: src/pages/sales/SalesOrderShipmentDetail.tsx:480 +#: src/pages/sales/ReturnOrderDetail.tsx:559 +#: src/pages/sales/SalesIndex.tsx:168 +#: src/pages/sales/SalesOrderDetail.tsx:624 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:448 msgid "Sales" msgstr "Bán hàng" @@ -2667,21 +2704,21 @@ msgid "Remove search group" msgstr "" #: src/components/nav/SearchDrawer.tsx:288 -#: src/pages/company/ManufacturerPartDetail.tsx:192 -#: src/pages/part/PartDetail.tsx:862 +#: src/pages/company/ManufacturerPartDetail.tsx:179 +#: src/pages/part/PartDetail.tsx:851 #: src/pages/part/PartSupplierDetail.tsx:15 -#: src/pages/purchasing/PurchasingIndex.tsx:81 +#: src/pages/purchasing/PurchasingIndex.tsx:100 msgid "Suppliers" msgstr "Nhà cung cấp" #: src/components/nav/SearchDrawer.tsx:298 #: src/pages/part/PartSupplierDetail.tsx:23 -#: src/pages/purchasing/PurchasingIndex.tsx:98 +#: src/pages/purchasing/PurchasingIndex.tsx:149 msgid "Manufacturers" msgstr "Nhà sản xuất" #: src/components/nav/SearchDrawer.tsx:308 -#: src/pages/sales/SalesIndex.tsx:138 +#: src/pages/sales/SalesIndex.tsx:133 msgid "Customers" msgstr "Khách hàng" @@ -2772,21 +2809,21 @@ msgstr "" #: src/components/plugins/PluginDrawer.tsx:73 #: src/forms/selectionListFields.tsx:102 -#: src/pages/build/BuildDetail.tsx:250 -#: src/pages/company/CompanyDetail.tsx:93 -#: src/pages/company/ManufacturerPartDetail.tsx:93 -#: src/pages/company/ManufacturerPartDetail.tsx:120 -#: src/pages/company/SupplierPartDetail.tsx:145 -#: src/pages/part/CategoryDetail.tsx:108 +#: src/pages/build/BuildDetail.tsx:251 +#: src/pages/company/CompanyDetail.tsx:94 +#: src/pages/company/ManufacturerPartDetail.tsx:92 +#: src/pages/company/ManufacturerPartDetail.tsx:119 +#: src/pages/company/SupplierPartDetail.tsx:146 +#: src/pages/part/CategoryDetail.tsx:111 #: src/pages/part/PartDetail.tsx:460 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:162 -#: src/pages/sales/ReturnOrderDetail.tsx:129 -#: src/pages/sales/SalesOrderDetail.tsx:119 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:163 +#: src/pages/sales/ReturnOrderDetail.tsx:130 +#: src/pages/sales/SalesOrderDetail.tsx:120 #: src/pages/stock/LocationDetail.tsx:102 #: src/tables/ColumnRenderers.tsx:278 -#: src/tables/build/BuildAllocatedStockTable.tsx:91 -#: src/tables/machine/MachineTypeTable.tsx:161 -#: src/tables/machine/MachineTypeTable.tsx:257 +#: src/tables/build/BuildAllocatedStockTable.tsx:88 +#: src/tables/machine/MachineTypeTable.tsx:159 +#: src/tables/machine/MachineTypeTable.tsx:255 #: src/tables/plugin/PluginListTable.tsx:110 msgid "Description" msgstr "Mô tả" @@ -2814,7 +2851,7 @@ msgstr "Ngày" #: src/tables/company/CompanyTable.tsx:91 #: src/tables/machine/MachineListTable.tsx:384 #: src/tables/machine/MachineListTable.tsx:799 -#: src/tables/part/ParametricPartTable.tsx:354 +#: src/tables/part/ParametricPartTable.tsx:19 #: src/tables/part/PartTable.tsx:197 #: src/tables/part/PartVariantTable.tsx:15 #: src/tables/plugin/PluginListTable.tsx:96 @@ -2836,8 +2873,8 @@ msgid "Installation Path" msgstr "" #: src/components/plugins/PluginDrawer.tsx:116 -#: src/tables/machine/MachineTypeTable.tsx:184 -#: src/tables/machine/MachineTypeTable.tsx:293 +#: src/tables/machine/MachineTypeTable.tsx:182 +#: src/tables/machine/MachineTypeTable.tsx:291 #: src/tables/plugin/PluginListTable.tsx:101 #: src/tables/plugin/PluginListTable.tsx:417 msgid "Builtin" @@ -2849,8 +2886,8 @@ msgstr "" #: src/components/plugins/PluginDrawer.tsx:133 #: src/pages/Index/Settings/AdminCenter/PluginManagementPanel.tsx:55 -#: src/pages/Index/Settings/SystemSettings.tsx:331 -#: src/pages/Index/Settings/UserSettings.tsx:128 +#: src/pages/Index/Settings/SystemSettings.tsx:337 +#: src/pages/Index/Settings/UserSettings.tsx:129 msgid "Plugin Settings" msgstr "Thiết lập phần bổ sung" @@ -2911,7 +2948,7 @@ msgstr "" #~ msgid "Unknown model: {model}" #~ msgstr "Unknown model: {model}" -#: src/components/render/Instance.tsx:249 +#: src/components/render/Instance.tsx:247 msgid "Unknown model: {model_name}" msgstr "" @@ -2939,10 +2976,10 @@ msgstr "Lô hàng" #: src/components/render/Part.tsx:28 #: src/components/render/Plugin.tsx:17 #: src/components/render/User.tsx:37 -#: src/pages/company/CompanyDetail.tsx:323 -#: src/pages/company/SupplierPartDetail.tsx:373 +#: src/pages/company/CompanyDetail.tsx:328 +#: src/pages/company/SupplierPartDetail.tsx:378 #: src/pages/core/UserDetail.tsx:211 -#: src/pages/part/PartDetail.tsx:1027 +#: src/pages/part/PartDetail.tsx:1048 #: src/tables/ColumnRenderers.tsx:410 msgid "Inactive" msgstr "Không hoạt động" @@ -2962,11 +2999,11 @@ msgstr "Hết hàng" #: src/components/render/Part.tsx:47 #: src/components/wizards/OrderPartsWizard.tsx:135 -#: src/pages/company/SupplierPartDetail.tsx:197 -#: src/pages/company/SupplierPartDetail.tsx:394 -#: src/pages/part/PartDetail.tsx:1015 +#: src/pages/company/SupplierPartDetail.tsx:198 +#: src/pages/company/SupplierPartDetail.tsx:399 +#: src/pages/part/PartDetail.tsx:1030 #: src/tables/bom/BomTable.tsx:444 -#: src/tables/build/BuildLineTable.tsx:222 +#: src/tables/build/BuildLineTable.tsx:223 #: src/tables/part/PartTable.tsx:108 msgid "On Order" msgstr "On Order" @@ -2974,9 +3011,9 @@ msgstr "On Order" #: src/components/render/Part.tsx:55 #: src/components/wizards/OrderPartsWizard.tsx:141 #: src/pages/part/PartDetail.tsx:587 -#: src/pages/part/PartDetail.tsx:1021 +#: src/pages/part/PartDetail.tsx:1036 #: src/pages/stock/StockDetail.tsx:925 -#: src/tables/part/PartTestResultTable.tsx:297 +#: src/tables/part/PartTestResultTable.tsx:305 #: src/tables/stock/StockItemTable.tsx:359 msgid "In Production" msgstr "Đang sản xuất" @@ -2987,7 +3024,7 @@ msgid "Details" msgstr "Chi tiết" #: src/components/render/Part.tsx:112 -#: src/components/wizards/ImportPartWizard.tsx:806 +#: src/components/wizards/ImportPartWizard.tsx:807 #: src/pages/part/PartDetail.tsx:487 #: src/tables/ColumnRenderers.tsx:233 #: src/tables/ColumnRenderers.tsx:242 @@ -3000,16 +3037,16 @@ msgstr "Danh mục" #: src/components/render/Stock.tsx:114 #: src/components/render/Stock.tsx:132 #: src/forms/BuildForms.tsx:795 -#: src/forms/PurchaseOrderForms.tsx:595 +#: src/forms/PurchaseOrderForms.tsx:647 #: src/forms/StockForms.tsx:792 #: src/forms/StockForms.tsx:839 -#: src/forms/StockForms.tsx:885 -#: src/forms/StockForms.tsx:924 -#: src/forms/StockForms.tsx:960 -#: src/forms/StockForms.tsx:1003 -#: src/forms/StockForms.tsx:1047 -#: src/forms/StockForms.tsx:1095 -#: src/forms/StockForms.tsx:1139 +#: src/forms/StockForms.tsx:892 +#: src/forms/StockForms.tsx:938 +#: src/forms/StockForms.tsx:976 +#: src/forms/StockForms.tsx:1019 +#: src/forms/StockForms.tsx:1063 +#: src/forms/StockForms.tsx:1111 +#: src/forms/StockForms.tsx:1155 #: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:88 #: src/pages/core/UserDetail.tsx:158 #: src/pages/stock/StockDetail.tsx:298 @@ -3023,7 +3060,7 @@ msgstr "Vị trí" #: src/components/render/Stock.tsx:99 #: src/pages/stock/StockDetail.tsx:198 #: src/pages/stock/StockDetail.tsx:930 -#: src/tables/build/BuildAllocatedStockTable.tsx:121 +#: src/tables/build/BuildAllocatedStockTable.tsx:118 #: src/tables/build/BuildOutputTable.tsx:107 #: src/tables/sales/SalesOrderAllocationTable.tsx:142 msgid "Serial Number" @@ -3034,9 +3071,9 @@ msgstr "Số sê-ri" #: src/forms/BuildForms.tsx:240 #: src/forms/BuildForms.tsx:634 #: src/forms/BuildForms.tsx:797 -#: src/forms/PurchaseOrderForms.tsx:801 +#: src/forms/PurchaseOrderForms.tsx:853 #: src/forms/ReturnOrderForms.tsx:243 -#: src/forms/SalesOrderForms.tsx:308 +#: src/forms/SalesOrderForms.tsx:387 #: src/forms/StockForms.tsx:841 #: src/pages/part/PartStockHistoryDetail.tsx:56 #: src/pages/part/PartStockHistoryDetail.tsx:210 @@ -3046,9 +3083,9 @@ msgstr "Số sê-ri" #: src/pages/part/pricing/PriceBreakPanel.tsx:172 #: src/pages/stock/StockDetail.tsx:258 #: src/pages/stock/StockDetail.tsx:936 -#: src/tables/build/BuildLineTable.tsx:86 +#: src/tables/build/BuildLineTable.tsx:83 #: src/tables/part/PartPurchaseOrdersTable.tsx:94 -#: src/tables/part/PartTestResultTable.tsx:269 +#: src/tables/part/PartTestResultTable.tsx:277 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:175 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:206 #: src/tables/purchasing/SupplierPriceBreakTable.tsx:69 @@ -3063,14 +3100,14 @@ msgstr "Số lượng" #: src/forms/BuildForms.tsx:474 #: src/forms/StockForms.tsx:793 #: src/forms/StockForms.tsx:840 -#: src/forms/StockForms.tsx:886 -#: src/forms/StockForms.tsx:925 -#: src/forms/StockForms.tsx:961 -#: src/forms/StockForms.tsx:1004 -#: src/forms/StockForms.tsx:1048 -#: src/forms/StockForms.tsx:1096 -#: src/forms/StockForms.tsx:1140 -#: src/tables/build/BuildLineTable.tsx:96 +#: src/forms/StockForms.tsx:893 +#: src/forms/StockForms.tsx:939 +#: src/forms/StockForms.tsx:977 +#: src/forms/StockForms.tsx:1020 +#: src/forms/StockForms.tsx:1064 +#: src/forms/StockForms.tsx:1112 +#: src/forms/StockForms.tsx:1156 +#: src/tables/build/BuildLineTable.tsx:93 msgid "Batch" msgstr "" @@ -3306,10 +3343,6 @@ msgstr "Không có cấu hình cụ thể" #~ msgid "Part category updated" #~ msgstr "Part category updated" -#: src/components/tables/part/PartParameterTable.tsx:41 -#~ msgid "Parameter" -#~ msgstr "Parameter" - #: src/components/tables/part/PartParameterTable.tsx:114 #~ msgid "Part parameter updated" #~ msgstr "Part parameter updated" @@ -3571,15 +3604,16 @@ msgid "Already Imported" msgstr "" #: src/components/wizards/ImportPartWizard.tsx:205 -#: src/pages/company/CompanyDetail.tsx:136 +#: src/pages/company/CompanyDetail.tsx:137 #: src/pages/company/SupplierDetail.tsx:8 -#: src/pages/company/SupplierPartDetail.tsx:130 -#: src/pages/company/SupplierPartDetail.tsx:235 -#: src/pages/company/SupplierPartDetail.tsx:364 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:156 +#: src/pages/company/SupplierPartDetail.tsx:131 +#: src/pages/company/SupplierPartDetail.tsx:236 +#: src/pages/company/SupplierPartDetail.tsx:369 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:157 #: src/tables/Filter.tsx:360 #: src/tables/company/CompanyTable.tsx:96 #: src/tables/part/PartPurchaseOrdersTable.tsx:43 +#: src/tables/purchasing/PurchaseOrderParametricTable.tsx:34 #: src/tables/purchasing/PurchaseOrderTable.tsx:109 #: src/tables/purchasing/SupplierPriceBreakTable.tsx:40 msgid "Supplier" @@ -3648,7 +3682,7 @@ msgid "Next" msgstr "" #: src/components/wizards/ImportPartWizard.tsx:540 -#: src/pages/part/PartDetail.tsx:1046 +#: src/pages/part/PartDetail.tsx:1067 #: src/tables/part/PartTable.tsx:408 msgid "Edit Part" msgstr "Sửa phụ kiện" @@ -3669,28 +3703,28 @@ msgstr "" msgid "Import" msgstr "" -#: src/components/wizards/ImportPartWizard.tsx:691 +#: src/components/wizards/ImportPartWizard.tsx:692 msgid "Parameters created successfully!" msgstr "" -#: src/components/wizards/ImportPartWizard.tsx:719 +#: src/components/wizards/ImportPartWizard.tsx:720 msgid "Failed to create parameters, please fix the errors and try again" msgstr "" #. placeholder {0}: supplierPart?.supplier -#: src/components/wizards/ImportPartWizard.tsx:739 +#: src/components/wizards/ImportPartWizard.tsx:740 msgid "Part imported successfully from supplier {0}." msgstr "" -#: src/components/wizards/ImportPartWizard.tsx:752 +#: src/components/wizards/ImportPartWizard.tsx:753 msgid "Open Part" msgstr "" -#: src/components/wizards/ImportPartWizard.tsx:759 +#: src/components/wizards/ImportPartWizard.tsx:760 msgid "Open Supplier Part" msgstr "" -#: src/components/wizards/ImportPartWizard.tsx:766 +#: src/components/wizards/ImportPartWizard.tsx:767 msgid "Open Manufacturer Part" msgstr "" @@ -3699,25 +3733,19 @@ msgstr "" #~ msgid "Import Part" #~ msgstr "Import Part" -#: src/components/wizards/ImportPartWizard.tsx:802 +#: src/components/wizards/ImportPartWizard.tsx:803 msgid "Import Supplier Part" msgstr "" -#: src/components/wizards/ImportPartWizard.tsx:804 +#: src/components/wizards/ImportPartWizard.tsx:805 msgid "Search Supplier Part" msgstr "" -#: src/components/wizards/ImportPartWizard.tsx:806 -#: src/pages/company/ManufacturerPartDetail.tsx:166 -#: src/pages/part/PartDetail.tsx:793 -msgid "Parameters" -msgstr "Thông số" - -#: src/components/wizards/ImportPartWizard.tsx:806 +#: src/components/wizards/ImportPartWizard.tsx:807 msgid "Confirm import" msgstr "" -#: src/components/wizards/ImportPartWizard.tsx:808 +#: src/components/wizards/ImportPartWizard.tsx:809 msgid "Done" msgstr "" @@ -3738,24 +3766,24 @@ msgid "Sales Requirements" msgstr "" #: src/components/wizards/OrderPartsWizard.tsx:129 -#: src/forms/StockForms.tsx:887 -#: src/forms/StockForms.tsx:926 -#: src/forms/StockForms.tsx:962 -#: src/forms/StockForms.tsx:1005 -#: src/forms/StockForms.tsx:1049 -#: src/forms/StockForms.tsx:1097 -#: src/forms/StockForms.tsx:1141 -#: src/pages/company/SupplierPartDetail.tsx:190 -#: src/pages/company/SupplierPartDetail.tsx:378 +#: src/forms/StockForms.tsx:894 +#: src/forms/StockForms.tsx:940 +#: src/forms/StockForms.tsx:978 +#: src/forms/StockForms.tsx:1021 +#: src/forms/StockForms.tsx:1065 +#: src/forms/StockForms.tsx:1113 +#: src/forms/StockForms.tsx:1157 +#: src/pages/company/SupplierPartDetail.tsx:191 +#: src/pages/company/SupplierPartDetail.tsx:383 #: src/pages/part/PartDetail.tsx:534 -#: src/pages/part/PartDetail.tsx:984 +#: src/pages/part/PartDetail.tsx:999 #: src/tables/Filter.tsx:92 #: src/tables/purchasing/SupplierPartTable.tsx:230 msgid "In Stock" msgstr "Còn hàng" #: src/components/wizards/OrderPartsWizard.tsx:146 -#: src/tables/build/BuildLineTable.tsx:404 +#: src/tables/build/BuildLineTable.tsx:405 msgid "Required Quantity" msgstr "" @@ -3847,7 +3875,7 @@ msgid "Please correct the errors in the selected parts" msgstr "" #: src/components/wizards/OrderPartsWizard.tsx:587 -#: src/tables/build/BuildLineTable.tsx:815 +#: src/tables/build/BuildLineTable.tsx:822 #: src/tables/part/PartTable.tsx:522 #: src/tables/sales/SalesOrderLineItemTable.tsx:370 msgid "Order Parts" @@ -4349,9 +4377,9 @@ msgstr "" #: src/forms/BuildForms.tsx:333 #: src/forms/BuildForms.tsx:408 #: src/forms/BuildForms.tsx:685 -#: src/tables/build/BuildAllocatedStockTable.tsx:150 +#: src/tables/build/BuildAllocatedStockTable.tsx:147 #: src/tables/build/BuildOutputTable.tsx:582 -#: src/tables/part/PartTestResultTable.tsx:272 +#: src/tables/part/PartTestResultTable.tsx:280 msgid "Build Output" msgstr "" @@ -4362,22 +4390,22 @@ msgstr "" #: src/forms/BuildForms.tsx:336 #: src/forms/BuildForms.tsx:411 #: src/forms/BuildForms.tsx:475 -#: src/forms/PurchaseOrderForms.tsx:717 +#: src/forms/PurchaseOrderForms.tsx:769 #: src/forms/ReturnOrderForms.tsx:197 #: src/forms/ReturnOrderForms.tsx:244 #: src/forms/StockForms.tsx:712 #: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:87 -#: src/pages/build/BuildDetail.tsx:222 +#: src/pages/build/BuildDetail.tsx:223 #: src/pages/core/UserDetail.tsx:151 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:168 -#: src/pages/sales/ReturnOrderDetail.tsx:135 -#: src/pages/sales/SalesOrderDetail.tsx:125 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:169 +#: src/pages/sales/ReturnOrderDetail.tsx:136 +#: src/pages/sales/SalesOrderDetail.tsx:126 #: src/pages/stock/StockDetail.tsx:170 #: src/tables/Filter.tsx:274 #: src/tables/build/BuildOutputTable.tsx:404 #: src/tables/machine/MachineListTable.tsx:387 #: src/tables/part/PartPurchaseOrdersTable.tsx:38 -#: src/tables/part/PartTestResultTable.tsx:309 +#: src/tables/part/PartTestResultTable.tsx:317 #: src/tables/sales/ReturnOrderLineItemTable.tsx:138 #: src/tables/sales/ReturnOrderLineItemTable.tsx:176 #: src/tables/settings/CustomStateTable.tsx:79 @@ -4443,18 +4471,19 @@ msgid "Build outputs have been cancelled" msgstr "Xây dựng đầu ra đã bị hủy" #: src/forms/BuildForms.tsx:631 -#: src/pages/build/BuildDetail.tsx:207 -#: src/pages/company/ManufacturerPartDetail.tsx:85 -#: src/pages/company/SupplierPartDetail.tsx:96 +#: src/pages/build/BuildDetail.tsx:208 +#: src/pages/company/ManufacturerPartDetail.tsx:84 +#: src/pages/company/SupplierPartDetail.tsx:97 #: src/pages/part/PartDetail.tsx:453 #: src/pages/stock/StockDetail.tsx:153 #: src/tables/bom/BomTable.tsx:134 #: src/tables/bom/UsedInTable.tsx:40 -#: src/tables/build/BuildAllocatedStockTable.tsx:108 -#: src/tables/build/BuildLineTable.tsx:336 +#: src/tables/build/BuildAllocatedStockTable.tsx:105 +#: src/tables/build/BuildLineTable.tsx:337 #: src/tables/build/BuildOrderTable.tsx:79 #: src/tables/part/PartSalesAllocationsTable.tsx:61 #: src/tables/part/RelatedPartTable.tsx:73 +#: src/tables/purchasing/ManufacturerPartParametricTable.tsx:21 #: src/tables/purchasing/ManufacturerPartTable.tsx:69 #: src/tables/purchasing/SupplierPartTable.tsx:70 #: src/tables/sales/SalesOrderAllocationTable.tsx:135 @@ -4466,47 +4495,47 @@ msgstr "IPN" #: src/forms/BuildForms.tsx:632 #: src/forms/BuildForms.tsx:796 #: src/forms/BuildForms.tsx:897 -#: src/forms/SalesOrderForms.tsx:306 -#: src/tables/build/BuildAllocatedStockTable.tsx:139 -#: src/tables/build/BuildLineTable.tsx:182 +#: src/forms/SalesOrderForms.tsx:385 +#: src/tables/build/BuildAllocatedStockTable.tsx:136 +#: src/tables/build/BuildLineTable.tsx:183 #: src/tables/sales/SalesOrderLineItemTable.tsx:342 #: src/tables/stock/StockItemTable.tsx:338 msgid "Allocated" msgstr "" #: src/forms/BuildForms.tsx:667 -#: src/forms/SalesOrderForms.tsx:295 -#: src/pages/build/BuildDetail.tsx:108 -#: src/pages/build/BuildDetail.tsx:326 +#: src/forms/SalesOrderForms.tsx:374 +#: src/pages/build/BuildDetail.tsx:109 +#: src/pages/build/BuildDetail.tsx:327 msgid "Source Location" msgstr "Vị trí nguồn cung" #: src/forms/BuildForms.tsx:668 -#: src/forms/SalesOrderForms.tsx:296 +#: src/forms/SalesOrderForms.tsx:375 msgid "Select the source location for the stock allocation" msgstr "" #: src/forms/BuildForms.tsx:700 -#: src/forms/SalesOrderForms.tsx:336 -#: src/tables/build/BuildLineTable.tsx:574 -#: src/tables/build/BuildLineTable.tsx:731 -#: src/tables/build/BuildLineTable.tsx:830 +#: src/forms/SalesOrderForms.tsx:415 +#: src/tables/build/BuildLineTable.tsx:575 +#: src/tables/build/BuildLineTable.tsx:738 +#: src/tables/build/BuildLineTable.tsx:837 #: src/tables/sales/SalesOrderLineItemTable.tsx:380 #: src/tables/sales/SalesOrderLineItemTable.tsx:406 msgid "Allocate Stock" msgstr "Phân kho" #: src/forms/BuildForms.tsx:703 -#: src/forms/SalesOrderForms.tsx:341 +#: src/forms/SalesOrderForms.tsx:420 msgid "Stock items allocated" msgstr "" #: src/forms/BuildForms.tsx:816 #: src/forms/BuildForms.tsx:917 -#: src/tables/build/BuildAllocatedStockTable.tsx:240 -#: src/tables/build/BuildAllocatedStockTable.tsx:272 -#: src/tables/build/BuildLineTable.tsx:741 -#: src/tables/build/BuildLineTable.tsx:864 +#: src/tables/build/BuildAllocatedStockTable.tsx:243 +#: src/tables/build/BuildAllocatedStockTable.tsx:279 +#: src/tables/build/BuildLineTable.tsx:748 +#: src/tables/build/BuildLineTable.tsx:871 msgid "Consume Stock" msgstr "" @@ -4521,21 +4550,21 @@ msgstr "" #~ msgstr "Stock items consumed" #: src/forms/BuildForms.tsx:853 -#: src/tables/build/BuildLineTable.tsx:514 +#: src/tables/build/BuildLineTable.tsx:515 #: src/tables/part/PartBuildAllocationsTable.tsx:101 msgid "Fully consumed" msgstr "" #: src/forms/BuildForms.tsx:898 -#: src/tables/build/BuildLineTable.tsx:187 +#: src/tables/build/BuildLineTable.tsx:188 #: src/tables/stock/StockItemTable.tsx:367 msgid "Consumed" msgstr "" -#: src/forms/CommonForms.tsx:88 -#: src/forms/PurchaseOrderForms.tsx:125 +#: src/forms/CommonForms.tsx:92 +#: src/forms/PurchaseOrderForms.tsx:176 #: src/forms/ReturnOrderForms.tsx:138 -#: src/forms/SalesOrderForms.tsx:164 +#: src/forms/SalesOrderForms.tsx:185 msgid "Select project code for this line item" msgstr "" @@ -4543,16 +4572,16 @@ msgstr "" #~ msgid "Company updated" #~ msgstr "Company updated" -#: src/forms/PartForms.tsx:85 -#: src/forms/PartForms.tsx:207 -#: src/pages/part/CategoryDetail.tsx:124 +#: src/forms/PartForms.tsx:99 +#: src/forms/PartForms.tsx:228 +#: src/pages/part/CategoryDetail.tsx:127 #: src/pages/part/PartDetail.tsx:668 #: src/tables/part/PartCategoryTable.tsx:94 #: src/tables/part/PartTable.tsx:325 msgid "Subscribed" msgstr "" -#: src/forms/PartForms.tsx:86 +#: src/forms/PartForms.tsx:100 msgid "Subscribe to notifications for this part" msgstr "" @@ -4564,156 +4593,156 @@ msgstr "" #~ msgid "Part updated" #~ msgstr "Part updated" -#: src/forms/PartForms.tsx:193 +#: src/forms/PartForms.tsx:214 msgid "Parent part category" msgstr "Danh mục phụ kiện cha" -#: src/forms/PartForms.tsx:208 +#: src/forms/PartForms.tsx:229 msgid "Subscribe to notifications for this category" msgstr "" -#: src/forms/PurchaseOrderForms.tsx:388 -msgid "Assign Batch Code and Serial Numbers" -msgstr "" - -#: src/forms/PurchaseOrderForms.tsx:390 -msgid "Assign Batch Code" -msgstr "" - -#: src/forms/PurchaseOrderForms.tsx:410 -msgid "Choose Location" -msgstr "Chọn vị trí" - -#: src/forms/PurchaseOrderForms.tsx:418 -msgid "Item Destination selected" -msgstr "Đã chọn đích đến của mặt hàng" - #: src/forms/PurchaseOrderForms.tsx:421 #~ msgid "Assign Batch Code{0}" #~ msgstr "Assign Batch Code{0}" -#: src/forms/PurchaseOrderForms.tsx:428 -msgid "Part category default location selected" -msgstr "Vị trí mặc định danh mục đã được chọn" +#: src/forms/PurchaseOrderForms.tsx:440 +msgid "Assign Batch Code and Serial Numbers" +msgstr "" -#: src/forms/PurchaseOrderForms.tsx:438 -msgid "Received stock location selected" -msgstr "Vị trí kho hàng nhận đã được chọn" +#: src/forms/PurchaseOrderForms.tsx:442 +msgid "Assign Batch Code" +msgstr "" #: src/forms/PurchaseOrderForms.tsx:444 #: src/forms/StockForms.tsx:428 #~ msgid "Remove item from list" #~ msgstr "Remove item from list" -#: src/forms/PurchaseOrderForms.tsx:446 +#: src/forms/PurchaseOrderForms.tsx:462 +msgid "Choose Location" +msgstr "Chọn vị trí" + +#: src/forms/PurchaseOrderForms.tsx:470 +msgid "Item Destination selected" +msgstr "Đã chọn đích đến của mặt hàng" + +#: src/forms/PurchaseOrderForms.tsx:480 +msgid "Part category default location selected" +msgstr "Vị trí mặc định danh mục đã được chọn" + +#: src/forms/PurchaseOrderForms.tsx:490 +msgid "Received stock location selected" +msgstr "Vị trí kho hàng nhận đã được chọn" + +#: src/forms/PurchaseOrderForms.tsx:498 msgid "Default location selected" msgstr "Vị trí mặc định đã chọn" -#: src/forms/PurchaseOrderForms.tsx:507 +#: src/forms/PurchaseOrderForms.tsx:559 msgid "Set Location" msgstr "Cài đặt vị trí" -#: src/forms/PurchaseOrderForms.tsx:524 -msgid "Set Expiry Date" -msgstr "" - -#: src/forms/PurchaseOrderForms.tsx:532 -#: src/forms/StockForms.tsx:693 -msgid "Adjust Packaging" -msgstr "Điều chỉnh bao bì" - -#: src/forms/PurchaseOrderForms.tsx:540 -#: src/forms/StockForms.tsx:684 -#: src/hooks/UseStockAdjustActions.tsx:148 -msgid "Change Status" -msgstr "Thay đổi trạng thái" - -#: src/forms/PurchaseOrderForms.tsx:546 -msgid "Add Note" -msgstr "Thêm ghi chú" - #: src/forms/PurchaseOrderForms.tsx:566 #~ msgid "Serial numbers" #~ msgstr "Serial numbers" +#: src/forms/PurchaseOrderForms.tsx:576 +msgid "Set Expiry Date" +msgstr "" + #: src/forms/PurchaseOrderForms.tsx:582 #~ msgid "Store at line item destination" #~ msgstr "Store at line item destination" -#: src/forms/PurchaseOrderForms.tsx:610 -msgid "Store at default location" -msgstr "Cửa hàng ở vị trí mặc định" +#: src/forms/PurchaseOrderForms.tsx:584 +#: src/forms/StockForms.tsx:693 +msgid "Adjust Packaging" +msgstr "Điều chỉnh bao bì" -#: src/forms/PurchaseOrderForms.tsx:625 -msgid "Store at line item destination " -msgstr "" +#: src/forms/PurchaseOrderForms.tsx:592 +#: src/forms/StockForms.tsx:684 +#: src/hooks/UseStockAdjustActions.tsx:148 +msgid "Change Status" +msgstr "Thay đổi trạng thái" -#: src/forms/PurchaseOrderForms.tsx:637 -msgid "Store with already received stock" -msgstr "Cửa hàng đã nhận hàng" +#: src/forms/PurchaseOrderForms.tsx:598 +msgid "Add Note" +msgstr "Thêm ghi chú" #: src/forms/PurchaseOrderForms.tsx:658 #~ msgid "Receive line items" #~ msgstr "Receive line items" -#: src/forms/PurchaseOrderForms.tsx:661 -#: src/pages/build/BuildDetail.tsx:340 +#: src/forms/PurchaseOrderForms.tsx:662 +msgid "Store at default location" +msgstr "Cửa hàng ở vị trí mặc định" + +#: src/forms/PurchaseOrderForms.tsx:677 +msgid "Store at line item destination " +msgstr "" + +#: src/forms/PurchaseOrderForms.tsx:689 +msgid "Store with already received stock" +msgstr "Cửa hàng đã nhận hàng" + +#: src/forms/PurchaseOrderForms.tsx:713 +#: src/pages/build/BuildDetail.tsx:341 #: src/pages/stock/StockDetail.tsx:280 #: src/pages/stock/StockDetail.tsx:952 #: src/tables/Filter.tsx:83 -#: src/tables/build/BuildAllocatedStockTable.tsx:128 +#: src/tables/build/BuildAllocatedStockTable.tsx:125 #: src/tables/build/BuildOutputTable.tsx:112 -#: src/tables/part/PartTestResultTable.tsx:260 -#: src/tables/part/PartTestResultTable.tsx:281 +#: src/tables/part/PartTestResultTable.tsx:268 +#: src/tables/part/PartTestResultTable.tsx:289 #: src/tables/sales/SalesOrderAllocationTable.tsx:149 msgid "Batch Code" msgstr "Mã lô hàng" -#: src/forms/PurchaseOrderForms.tsx:662 +#: src/forms/PurchaseOrderForms.tsx:714 msgid "Enter batch code for received items" msgstr "" -#: src/forms/PurchaseOrderForms.tsx:675 +#: src/forms/PurchaseOrderForms.tsx:727 #: src/forms/StockForms.tsx:218 msgid "Serial Numbers" msgstr "Số sê-ri" -#: src/forms/PurchaseOrderForms.tsx:676 +#: src/forms/PurchaseOrderForms.tsx:728 msgid "Enter serial numbers for received items" msgstr "" -#: src/forms/PurchaseOrderForms.tsx:690 +#: src/forms/PurchaseOrderForms.tsx:742 #: src/pages/stock/StockDetail.tsx:382 #: src/tables/stock/StockItemTable.tsx:294 msgid "Expiry Date" msgstr "" -#: src/forms/PurchaseOrderForms.tsx:691 +#: src/forms/PurchaseOrderForms.tsx:743 msgid "Enter an expiry date for received items" msgstr "" -#: src/forms/PurchaseOrderForms.tsx:703 +#: src/forms/PurchaseOrderForms.tsx:755 #: src/forms/StockForms.tsx:728 -#: src/pages/company/SupplierPartDetail.tsx:172 -#: src/pages/company/SupplierPartDetail.tsx:236 +#: src/pages/company/SupplierPartDetail.tsx:173 +#: src/pages/company/SupplierPartDetail.tsx:237 #: src/pages/stock/StockDetail.tsx:419 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:227 msgid "Packaging" msgstr "Đóng gói" -#: src/forms/PurchaseOrderForms.tsx:727 -#: src/pages/company/SupplierPartDetail.tsx:120 +#: src/forms/PurchaseOrderForms.tsx:779 +#: src/pages/company/SupplierPartDetail.tsx:121 #: src/tables/ColumnRenderers.tsx:332 msgid "Note" msgstr "Ghi chú" -#: src/forms/PurchaseOrderForms.tsx:799 -#: src/pages/company/SupplierPartDetail.tsx:138 +#: src/forms/PurchaseOrderForms.tsx:851 +#: src/pages/company/SupplierPartDetail.tsx:139 #: src/tables/purchasing/SupplierPriceBreakTable.tsx:49 msgid "SKU" msgstr "SKU" -#: src/forms/PurchaseOrderForms.tsx:800 +#: src/forms/PurchaseOrderForms.tsx:852 #: src/tables/part/PartPurchaseOrdersTable.tsx:127 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:213 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:283 @@ -4721,11 +4750,11 @@ msgstr "SKU" msgid "Received" msgstr "Đã nhận" -#: src/forms/PurchaseOrderForms.tsx:817 +#: src/forms/PurchaseOrderForms.tsx:869 msgid "Receive Line Items" msgstr "Nhận hạng mục" -#: src/forms/PurchaseOrderForms.tsx:823 +#: src/forms/PurchaseOrderForms.tsx:875 msgid "Items received" msgstr "" @@ -4737,7 +4766,35 @@ msgstr "" msgid "Item received into stock" msgstr "" -#: src/forms/SalesOrderForms.tsx:401 +#: src/forms/SalesOrderForms.tsx:208 +#: src/forms/SalesOrderForms.tsx:210 +#: src/tables/sales/SalesOrderShipmentTable.tsx:215 +msgid "Check Shipment" +msgstr "" + +#: src/forms/SalesOrderForms.tsx:211 +msgid "Marking the shipment as checked indicates that you have verified that all items included in this shipment are correct" +msgstr "" + +#: src/forms/SalesOrderForms.tsx:221 +msgid "Shipment marked as checked" +msgstr "" + +#: src/forms/SalesOrderForms.tsx:236 +#: src/forms/SalesOrderForms.tsx:238 +#: src/tables/sales/SalesOrderShipmentTable.tsx:228 +msgid "Uncheck Shipment" +msgstr "" + +#: src/forms/SalesOrderForms.tsx:239 +msgid "Marking the shipment as unchecked indicates that the shipment requires further verification" +msgstr "" + +#: src/forms/SalesOrderForms.tsx:249 +msgid "Shipment marked as unchecked" +msgstr "" + +#: src/forms/SalesOrderForms.tsx:480 msgid "Leave blank to use the order address" msgstr "" @@ -4792,150 +4849,150 @@ msgstr "Di chuyển" msgid "Return" msgstr "" -#: src/forms/StockForms.tsx:963 +#: src/forms/StockForms.tsx:979 #: src/pages/Index/Scan.tsx:182 msgid "Count" msgstr "Đếm" -#: src/forms/StockForms.tsx:1246 +#: src/forms/StockForms.tsx:1262 #: src/hooks/UseStockAdjustActions.tsx:108 msgid "Add Stock" msgstr "Thêm kho" -#: src/forms/StockForms.tsx:1247 +#: src/forms/StockForms.tsx:1263 msgid "Stock added" msgstr "" -#: src/forms/StockForms.tsx:1250 +#: src/forms/StockForms.tsx:1266 msgid "Increase the quantity of the selected stock items by a given amount." msgstr "" -#: src/forms/StockForms.tsx:1261 +#: src/forms/StockForms.tsx:1277 #: src/hooks/UseStockAdjustActions.tsx:118 msgid "Remove Stock" msgstr "Xoá kho" -#: src/forms/StockForms.tsx:1262 +#: src/forms/StockForms.tsx:1278 msgid "Stock removed" msgstr "" -#: src/forms/StockForms.tsx:1265 +#: src/forms/StockForms.tsx:1281 msgid "Decrease the quantity of the selected stock items by a given amount." msgstr "" -#: src/forms/StockForms.tsx:1276 +#: src/forms/StockForms.tsx:1292 #: src/hooks/UseStockAdjustActions.tsx:128 msgid "Transfer Stock" msgstr "Chuyển kho" -#: src/forms/StockForms.tsx:1277 +#: src/forms/StockForms.tsx:1293 msgid "Stock transferred" msgstr "" -#: src/forms/StockForms.tsx:1280 +#: src/forms/StockForms.tsx:1296 msgid "Transfer selected items to the specified location." msgstr "" -#: src/forms/StockForms.tsx:1291 +#: src/forms/StockForms.tsx:1307 #: src/hooks/UseStockAdjustActions.tsx:168 msgid "Return Stock" msgstr "" -#: src/forms/StockForms.tsx:1292 +#: src/forms/StockForms.tsx:1308 msgid "Stock returned" msgstr "" -#: src/forms/StockForms.tsx:1295 +#: src/forms/StockForms.tsx:1311 msgid "Return selected items into stock, to the specified location." msgstr "" -#: src/forms/StockForms.tsx:1306 +#: src/forms/StockForms.tsx:1322 #: src/hooks/UseStockAdjustActions.tsx:98 msgid "Count Stock" msgstr "Kiểm kê" -#: src/forms/StockForms.tsx:1307 +#: src/forms/StockForms.tsx:1323 msgid "Stock counted" msgstr "" -#: src/forms/StockForms.tsx:1310 +#: src/forms/StockForms.tsx:1326 msgid "Count the selected stock items, and adjust the quantity accordingly." msgstr "" -#: src/forms/StockForms.tsx:1321 +#: src/forms/StockForms.tsx:1337 msgid "Change Stock Status" msgstr "Đổi trạng thái kho" -#: src/forms/StockForms.tsx:1322 +#: src/forms/StockForms.tsx:1338 msgid "Stock status changed" msgstr "" -#: src/forms/StockForms.tsx:1325 +#: src/forms/StockForms.tsx:1341 msgid "Change the status of the selected stock items." msgstr "" -#: src/forms/StockForms.tsx:1336 +#: src/forms/StockForms.tsx:1352 #: src/hooks/UseStockAdjustActions.tsx:138 msgid "Merge Stock" msgstr "Gộp kho" -#: src/forms/StockForms.tsx:1337 +#: src/forms/StockForms.tsx:1353 msgid "Stock merged" msgstr "" -#: src/forms/StockForms.tsx:1339 +#: src/forms/StockForms.tsx:1355 msgid "Merge Stock Items" msgstr "" -#: src/forms/StockForms.tsx:1341 +#: src/forms/StockForms.tsx:1357 msgid "Merge operation cannot be reversed" msgstr "" -#: src/forms/StockForms.tsx:1342 +#: src/forms/StockForms.tsx:1358 msgid "Tracking information may be lost when merging items" msgstr "" -#: src/forms/StockForms.tsx:1343 +#: src/forms/StockForms.tsx:1359 msgid "Supplier information may be lost when merging items" msgstr "" -#: src/forms/StockForms.tsx:1361 +#: src/forms/StockForms.tsx:1377 msgid "Assign Stock to Customer" msgstr "" -#: src/forms/StockForms.tsx:1362 +#: src/forms/StockForms.tsx:1378 msgid "Stock assigned to customer" msgstr "" -#: src/forms/StockForms.tsx:1372 +#: src/forms/StockForms.tsx:1388 msgid "Delete Stock Items" msgstr "Xóa mặt hàng trong kho" -#: src/forms/StockForms.tsx:1373 +#: src/forms/StockForms.tsx:1389 msgid "Stock deleted" msgstr "" -#: src/forms/StockForms.tsx:1376 +#: src/forms/StockForms.tsx:1392 msgid "This operation will permanently delete the selected stock items." msgstr "" -#: src/forms/StockForms.tsx:1385 +#: src/forms/StockForms.tsx:1401 msgid "Parent stock location" msgstr "Vị trí kho lớn" -#: src/forms/StockForms.tsx:1512 +#: src/forms/StockForms.tsx:1528 msgid "Find Serial Number" msgstr "" -#: src/forms/StockForms.tsx:1523 +#: src/forms/StockForms.tsx:1539 msgid "No matching items" msgstr "" -#: src/forms/StockForms.tsx:1529 +#: src/forms/StockForms.tsx:1545 msgid "Multiple matching items" msgstr "" -#: src/forms/StockForms.tsx:1538 +#: src/forms/StockForms.tsx:1554 msgid "Invalid response from server" msgstr "" @@ -4953,7 +5010,6 @@ msgstr "" #: src/tables/FilterSelectDrawer.tsx:137 #: src/tables/FilterSelectDrawer.tsx:149 #: src/tables/part/PartTestResultTable.tsx:206 -#: src/tables/purchasing/ManufacturerPartParameterTable.tsx:42 #: src/tables/stock/StockItemTestResultTable.tsx:207 msgid "Value" msgstr "Giá trị" @@ -5244,7 +5300,7 @@ msgid "Delete selected stock items" msgstr "" #: src/hooks/UseStockAdjustActions.tsx:205 -#: src/pages/part/PartDetail.tsx:1137 +#: src/pages/part/PartDetail.tsx:1158 msgid "Stock Actions" msgstr "Thao tác kho" @@ -5932,6 +5988,9 @@ msgstr "" #: src/pages/Index/Settings/AccountSettings/MFASettings.tsx:310 #: src/pages/Index/Settings/AccountSettings/MFASettings.tsx:401 +#: src/tables/build/BuildAllocatedStockTable.tsx:181 +#: src/tables/build/BuildLineTable.tsx:668 +#: src/tables/sales/SalesOrderAllocationTable.tsx:220 msgid "Confirm Removal" msgstr "" @@ -6394,30 +6453,34 @@ msgid "Email Messages" msgstr "" #: src/pages/Index/Settings/AdminCenter/HomePanel.tsx:22 -msgid "Active Alerts" -msgstr "" +#~ msgid "Active Alerts" +#~ msgstr "Active Alerts" #: src/pages/Index/Settings/AdminCenter/HomePanel.tsx:27 -msgid "Inactive Alerts" +#~ msgid "Inactive Alerts" +#~ msgstr "Inactive Alerts" + +#: src/pages/Index/Settings/AdminCenter/HomePanel.tsx:36 +msgid "System Status" msgstr "" -#: src/pages/Index/Settings/AdminCenter/HomePanel.tsx:38 +#: src/pages/Index/Settings/AdminCenter/HomePanel.tsx:47 msgid "Admin Center Information" msgstr "" -#: src/pages/Index/Settings/AdminCenter/HomePanel.tsx:44 +#: src/pages/Index/Settings/AdminCenter/HomePanel.tsx:53 msgid "The home panel (and the whole Admin Center) is a new feature starting with the new UI and was previously (before 1.0) not available." msgstr "" -#: src/pages/Index/Settings/AdminCenter/HomePanel.tsx:51 +#: src/pages/Index/Settings/AdminCenter/HomePanel.tsx:60 msgid "The admin center provides a centralized location for all administration functionality and is meant to replace all interaction with the (django) backend admin interface." msgstr "" -#: src/pages/Index/Settings/AdminCenter/HomePanel.tsx:58 +#: src/pages/Index/Settings/AdminCenter/HomePanel.tsx:67 msgid "Please open feature requests (after checking the tracker) for any existing backend admin functionality you are missing in this UI. The backend admin interface should be used carefully and seldom." msgstr "" -#: src/pages/Index/Settings/AdminCenter/HomePanel.tsx:76 +#: src/pages/Index/Settings/AdminCenter/HomePanel.tsx:85 msgid "Quick Actions" msgstr "" @@ -6476,11 +6539,11 @@ msgstr "Tuỳ chọn đơn vị" #: src/pages/Index/Settings/AdminCenter/Index.tsx:195 #: src/pages/part/CategoryDetail.tsx:313 -msgid "Part Parameters" -msgstr "Tham số phụ kiện" +#~ msgid "Part Parameters" +#~ msgstr "Part Parameters" #: src/pages/Index/Settings/AdminCenter/Index.tsx:202 -#: src/pages/part/CategoryDetail.tsx:306 +#: src/pages/part/CategoryDetail.tsx:329 msgid "Category Parameters" msgstr "Thông số danh mục" @@ -6494,7 +6557,7 @@ msgstr "Loại vị trí" #: src/pages/Index/Settings/AdminCenter/Index.tsx:235 #: src/pages/Index/Settings/AdminCenter/MachineManagementPanel.tsx:52 -#: src/tables/machine/MachineTypeTable.tsx:325 +#: src/tables/machine/MachineTypeTable.tsx:323 msgid "Machines" msgstr "Máy móc" @@ -6507,8 +6570,8 @@ msgid "Data Management" msgstr "" #: src/pages/Index/Settings/AdminCenter/Index.tsx:270 -#: src/pages/Index/Settings/SystemSettings.tsx:175 -#: src/pages/Index/Settings/UserSettings.tsx:118 +#: src/pages/Index/Settings/SystemSettings.tsx:176 +#: src/pages/Index/Settings/UserSettings.tsx:119 msgid "Reporting" msgstr "Báo cáo" @@ -6709,11 +6772,11 @@ msgstr "" msgid "The settings below are specific to each available plugin" msgstr "" -#: src/pages/Index/Settings/SystemSettings.tsx:77 +#: src/pages/Index/Settings/SystemSettings.tsx:78 msgid "Authentication" msgstr "" -#: src/pages/Index/Settings/SystemSettings.tsx:103 +#: src/pages/Index/Settings/SystemSettings.tsx:104 msgid "Barcodes" msgstr "Mã vạch" @@ -6725,12 +6788,12 @@ msgstr "Mã vạch" #~ msgid "This panel is a placeholder." #~ msgstr "This panel is a placeholder." -#: src/pages/Index/Settings/SystemSettings.tsx:127 -#: src/pages/Index/Settings/UserSettings.tsx:112 +#: src/pages/Index/Settings/SystemSettings.tsx:128 +#: src/pages/Index/Settings/UserSettings.tsx:113 msgid "The settings below are specific to each available notification method" msgstr "" -#: src/pages/Index/Settings/SystemSettings.tsx:133 +#: src/pages/Index/Settings/SystemSettings.tsx:134 msgid "Pricing" msgstr "Giá bán" @@ -6738,7 +6801,7 @@ msgstr "Giá bán" #~ msgid "Exchange Rates" #~ msgstr "Exchange Rates" -#: src/pages/Index/Settings/SystemSettings.tsx:169 +#: src/pages/Index/Settings/SystemSettings.tsx:170 msgid "Labels" msgstr "Nhãn" @@ -6790,15 +6853,15 @@ msgstr "Đánh dấu chưa đọc" #~ msgid "Delete notifications" #~ msgstr "Delete notifications" -#: src/pages/build/BuildDetail.tsx:69 +#: src/pages/build/BuildDetail.tsx:70 msgid "No Required Items" msgstr "" -#: src/pages/build/BuildDetail.tsx:71 +#: src/pages/build/BuildDetail.tsx:72 msgid "This build order does not have any required items." msgstr "" -#: src/pages/build/BuildDetail.tsx:72 +#: src/pages/build/BuildDetail.tsx:73 msgid "The assembled part may not have a Bill of Materials (BOM) defined, or the BOM is empty." msgstr "" @@ -6826,7 +6889,7 @@ msgstr "" #~ msgid "Build Order updated" #~ msgstr "Build Order updated" -#: src/pages/build/BuildDetail.tsx:215 +#: src/pages/build/BuildDetail.tsx:216 #: src/pages/part/PartDetail.tsx:480 #: src/pages/stock/StockDetail.tsx:161 #: src/tables/bom/UsedInTable.tsx:44 @@ -6843,10 +6906,10 @@ msgstr "Sửa đổi" #~ msgid "Duplicate build order" #~ msgstr "Duplicate build order" -#: src/pages/build/BuildDetail.tsx:228 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:174 -#: src/pages/sales/ReturnOrderDetail.tsx:141 -#: src/pages/sales/SalesOrderDetail.tsx:131 +#: src/pages/build/BuildDetail.tsx:229 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:175 +#: src/pages/sales/ReturnOrderDetail.tsx:142 +#: src/pages/sales/SalesOrderDetail.tsx:132 #: src/pages/stock/StockDetail.tsx:176 msgid "Custom Status" msgstr "" @@ -6855,9 +6918,9 @@ msgstr "" #~ msgid "Delete build order" #~ msgstr "Delete build order" -#: src/pages/build/BuildDetail.tsx:237 -#: src/pages/build/BuildDetail.tsx:723 -#: src/pages/build/BuildIndex.tsx:28 +#: src/pages/build/BuildDetail.tsx:238 +#: src/pages/build/BuildDetail.tsx:728 +#: src/pages/build/BuildIndex.tsx:34 #: src/pages/stock/LocationDetail.tsx:140 #: src/tables/build/BuildOrderTable.tsx:123 #: src/tables/build/BuildOrderTable.tsx:183 @@ -6865,57 +6928,57 @@ msgstr "" msgid "External" msgstr "Bên ngoài" -#: src/pages/build/BuildDetail.tsx:244 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:141 -#: src/pages/sales/ReturnOrderDetail.tsx:108 -#: src/pages/sales/SalesOrderDetail.tsx:98 +#: src/pages/build/BuildDetail.tsx:245 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:142 +#: src/pages/sales/ReturnOrderDetail.tsx:109 +#: src/pages/sales/SalesOrderDetail.tsx:99 #: src/tables/ColumnRenderers.tsx:321 -#: src/tables/build/BuildAllocatedStockTable.tsx:115 -#: src/tables/build/BuildLineTable.tsx:352 +#: src/tables/build/BuildAllocatedStockTable.tsx:112 +#: src/tables/build/BuildLineTable.tsx:353 msgid "Reference" msgstr "Tham chiếu" -#: src/pages/build/BuildDetail.tsx:258 +#: src/pages/build/BuildDetail.tsx:259 msgid "Parent Build" msgstr "Phiên bản cha" -#: src/pages/build/BuildDetail.tsx:269 +#: src/pages/build/BuildDetail.tsx:270 msgid "Build Quantity" msgstr "Số lượng đơn vị" -#: src/pages/build/BuildDetail.tsx:275 +#: src/pages/build/BuildDetail.tsx:276 #: src/pages/part/PartDetail.tsx:598 #: src/tables/bom/BomTable.tsx:365 #: src/tables/bom/BomTable.tsx:407 msgid "Can Build" msgstr "Có thể dựng" -#: src/pages/build/BuildDetail.tsx:284 -#: src/pages/build/BuildDetail.tsx:474 +#: src/pages/build/BuildDetail.tsx:285 +#: src/pages/build/BuildDetail.tsx:475 msgid "Completed Outputs" msgstr "Đầu ra hoàn thiện" -#: src/pages/build/BuildDetail.tsx:301 +#: src/pages/build/BuildDetail.tsx:302 #: src/tables/Filter.tsx:381 #: src/tables/build/BuildOrderTable.tsx:143 msgid "Issued By" msgstr "Cấp bởi" -#: src/pages/build/BuildDetail.tsx:309 +#: src/pages/build/BuildDetail.tsx:310 #: src/pages/part/PartDetail.tsx:691 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:261 -#: src/pages/sales/ReturnOrderDetail.tsx:239 -#: src/pages/sales/SalesOrderDetail.tsx:232 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:262 +#: src/pages/sales/ReturnOrderDetail.tsx:240 +#: src/pages/sales/SalesOrderDetail.tsx:233 #: src/tables/ColumnRenderers.tsx:464 #: src/tables/Filter.tsx:319 msgid "Responsible" msgstr "Chịu trách nhiệm" -#: src/pages/build/BuildDetail.tsx:327 +#: src/pages/build/BuildDetail.tsx:328 msgid "Any location" msgstr "Vị trí bất kỳ" -#: src/pages/build/BuildDetail.tsx:334 +#: src/pages/build/BuildDetail.tsx:335 msgid "Destination Location" msgstr "Địa điểm đích" @@ -6924,24 +6987,24 @@ msgstr "Địa điểm đích" #~ msgid "Test Statistics" #~ msgstr "Test Statistics" -#: src/pages/build/BuildDetail.tsx:350 +#: src/pages/build/BuildDetail.tsx:351 #: src/tables/settings/ApiTokenTable.tsx:97 #: src/tables/settings/PendingTasksTable.tsx:41 msgid "Created" msgstr "Đã tạo" -#: src/pages/build/BuildDetail.tsx:358 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:286 -#: src/pages/sales/ReturnOrderDetail.tsx:265 -#: src/pages/sales/SalesOrderDetail.tsx:257 +#: src/pages/build/BuildDetail.tsx:359 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:287 +#: src/pages/sales/ReturnOrderDetail.tsx:266 +#: src/pages/sales/SalesOrderDetail.tsx:258 #: src/tables/ColumnRenderers.tsx:486 msgid "Start Date" msgstr "" -#: src/pages/build/BuildDetail.tsx:366 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:294 -#: src/pages/sales/ReturnOrderDetail.tsx:273 -#: src/pages/sales/SalesOrderDetail.tsx:265 +#: src/pages/build/BuildDetail.tsx:367 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:295 +#: src/pages/sales/ReturnOrderDetail.tsx:274 +#: src/pages/sales/SalesOrderDetail.tsx:266 #: src/tables/ColumnRenderers.tsx:494 #: src/tables/part/PartPurchaseOrdersTable.tsx:101 #: src/tables/sales/ReturnOrderLineItemTable.tsx:154 @@ -6954,185 +7017,185 @@ msgstr "Ngày mục tiêu" #~ msgstr "Reporting Actions" #: src/pages/build/BuildDetail.tsx:374 +#~ msgid "Print build report" +#~ msgstr "Print build report" + +#: src/pages/build/BuildDetail.tsx:375 #: src/tables/build/BuildOrderTable.tsx:93 #: src/tables/sales/SalesOrderLineItemTable.tsx:347 msgid "Completed" msgstr "Đã hoàn thành" -#: src/pages/build/BuildDetail.tsx:374 -#~ msgid "Print build report" -#~ msgstr "Print build report" - -#: src/pages/build/BuildDetail.tsx:410 +#: src/pages/build/BuildDetail.tsx:411 msgid "Build Details" msgstr "Chi tiết bản dựng" -#: src/pages/build/BuildDetail.tsx:416 +#: src/pages/build/BuildDetail.tsx:417 msgid "Required Parts" msgstr "" -#: src/pages/build/BuildDetail.tsx:428 -#: src/pages/sales/SalesOrderDetail.tsx:407 -#: src/pages/sales/SalesOrderShipmentDetail.tsx:261 +#: src/pages/build/BuildDetail.tsx:429 +#: src/pages/sales/SalesOrderDetail.tsx:408 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:259 #: src/tables/part/PartSalesAllocationsTable.tsx:73 msgid "Allocated Stock" msgstr "Kho hàng đã phân bổ" -#: src/pages/build/BuildDetail.tsx:444 +#: src/pages/build/BuildDetail.tsx:445 msgid "Consumed Stock" msgstr "Kho tiêu thụ" -#: src/pages/build/BuildDetail.tsx:461 +#: src/pages/build/BuildDetail.tsx:462 msgid "Incomplete Outputs" msgstr "Đầu ra chưa hoàn hiện" -#: src/pages/build/BuildDetail.tsx:489 +#: src/pages/build/BuildDetail.tsx:490 msgid "External Orders" msgstr "" -#: src/pages/build/BuildDetail.tsx:503 +#: src/pages/build/BuildDetail.tsx:504 msgid "Child Build Orders" msgstr "Đơn đặt bản dựng con" -#: src/pages/build/BuildDetail.tsx:513 -#: src/pages/part/PartDetail.tsx:937 +#: src/pages/build/BuildDetail.tsx:514 +#: src/pages/part/PartDetail.tsx:926 #: src/pages/stock/StockDetail.tsx:587 #: src/tables/build/BuildOutputTable.tsx:654 #: src/tables/stock/StockItemTestResultTable.tsx:173 msgid "Test Results" msgstr "Kết quả kiểm tra" -#: src/pages/build/BuildDetail.tsx:550 +#: src/pages/build/BuildDetail.tsx:555 msgid "Edit Build Order" msgstr "Sửa đơn đặt bản dựng" -#: src/pages/build/BuildDetail.tsx:572 +#: src/pages/build/BuildDetail.tsx:577 #: src/tables/build/BuildOrderTable.tsx:207 #: src/tables/build/BuildOrderTable.tsx:223 msgid "Add Build Order" msgstr "Tạo đơn đặt bản dựng" -#: src/pages/build/BuildDetail.tsx:582 +#: src/pages/build/BuildDetail.tsx:587 msgid "Cancel Build Order" msgstr "Hủy đơn đặt bản dựng" -#: src/pages/build/BuildDetail.tsx:584 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:416 -#: src/pages/sales/ReturnOrderDetail.tsx:427 -#: src/pages/sales/SalesOrderDetail.tsx:454 +#: src/pages/build/BuildDetail.tsx:589 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:421 +#: src/pages/sales/ReturnOrderDetail.tsx:432 +#: src/pages/sales/SalesOrderDetail.tsx:459 msgid "Order cancelled" msgstr "Đã huỷ giao dịch" -#: src/pages/build/BuildDetail.tsx:585 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:415 -#: src/pages/sales/ReturnOrderDetail.tsx:426 -#: src/pages/sales/SalesOrderDetail.tsx:453 +#: src/pages/build/BuildDetail.tsx:590 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:420 +#: src/pages/sales/ReturnOrderDetail.tsx:431 +#: src/pages/sales/SalesOrderDetail.tsx:458 msgid "Cancel this order" msgstr "Hủy đơn hàng này" -#: src/pages/build/BuildDetail.tsx:594 +#: src/pages/build/BuildDetail.tsx:599 msgid "Hold Build Order" msgstr "Chuyển trạng thái chờ đơn đặt bản dựng" -#: src/pages/build/BuildDetail.tsx:596 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:423 -#: src/pages/sales/ReturnOrderDetail.tsx:434 -#: src/pages/sales/SalesOrderDetail.tsx:461 +#: src/pages/build/BuildDetail.tsx:601 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:428 +#: src/pages/sales/ReturnOrderDetail.tsx:439 +#: src/pages/sales/SalesOrderDetail.tsx:466 msgid "Place this order on hold" msgstr "Chuyển đơn hàng sang trạng thái chờ" -#: src/pages/build/BuildDetail.tsx:597 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:424 -#: src/pages/sales/ReturnOrderDetail.tsx:435 -#: src/pages/sales/SalesOrderDetail.tsx:462 +#: src/pages/build/BuildDetail.tsx:602 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:429 +#: src/pages/sales/ReturnOrderDetail.tsx:440 +#: src/pages/sales/SalesOrderDetail.tsx:467 msgid "Order placed on hold" msgstr "Đơn hàng đã chuyển sang chờ" -#: src/pages/build/BuildDetail.tsx:602 +#: src/pages/build/BuildDetail.tsx:607 msgid "Issue Build Order" msgstr "Xác nhận" -#: src/pages/build/BuildDetail.tsx:604 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:407 -#: src/pages/sales/ReturnOrderDetail.tsx:418 -#: src/pages/sales/SalesOrderDetail.tsx:445 +#: src/pages/build/BuildDetail.tsx:609 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:412 +#: src/pages/sales/ReturnOrderDetail.tsx:423 +#: src/pages/sales/SalesOrderDetail.tsx:450 msgid "Issue this order" msgstr "Xác nhận" -#: src/pages/build/BuildDetail.tsx:605 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:408 -#: src/pages/sales/ReturnOrderDetail.tsx:419 -#: src/pages/sales/SalesOrderDetail.tsx:446 +#: src/pages/build/BuildDetail.tsx:610 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:413 +#: src/pages/sales/ReturnOrderDetail.tsx:424 +#: src/pages/sales/SalesOrderDetail.tsx:451 msgid "Order issued" msgstr "Đã xác nhận" -#: src/pages/build/BuildDetail.tsx:624 +#: src/pages/build/BuildDetail.tsx:629 msgid "Complete Build Order" msgstr "Hoàn thành" -#: src/pages/build/BuildDetail.tsx:630 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:436 -#: src/pages/sales/ReturnOrderDetail.tsx:442 -#: src/pages/sales/SalesOrderDetail.tsx:480 +#: src/pages/build/BuildDetail.tsx:635 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:441 +#: src/pages/sales/ReturnOrderDetail.tsx:447 +#: src/pages/sales/SalesOrderDetail.tsx:485 msgid "Mark this order as complete" msgstr "Đánh dấu hoàn thành" -#: src/pages/build/BuildDetail.tsx:633 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:430 -#: src/pages/sales/ReturnOrderDetail.tsx:443 -#: src/pages/sales/SalesOrderDetail.tsx:481 +#: src/pages/build/BuildDetail.tsx:638 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:435 +#: src/pages/sales/ReturnOrderDetail.tsx:448 +#: src/pages/sales/SalesOrderDetail.tsx:486 msgid "Order completed" msgstr "Hoàn thành" -#: src/pages/build/BuildDetail.tsx:660 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:459 -#: src/pages/sales/ReturnOrderDetail.tsx:470 -#: src/pages/sales/SalesOrderDetail.tsx:516 +#: src/pages/build/BuildDetail.tsx:665 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:464 +#: src/pages/sales/ReturnOrderDetail.tsx:475 +#: src/pages/sales/SalesOrderDetail.tsx:521 msgid "Issue Order" msgstr "Xác nhận" -#: src/pages/build/BuildDetail.tsx:667 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:466 -#: src/pages/sales/ReturnOrderDetail.tsx:477 -#: src/pages/sales/SalesOrderDetail.tsx:530 +#: src/pages/build/BuildDetail.tsx:672 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:471 +#: src/pages/sales/ReturnOrderDetail.tsx:482 +#: src/pages/sales/SalesOrderDetail.tsx:535 msgid "Complete Order" msgstr "Hoàn thành" -#: src/pages/build/BuildDetail.tsx:686 +#: src/pages/build/BuildDetail.tsx:691 msgid "Build Order Actions" msgstr "Thao tác đơn đặt bản dựng" -#: src/pages/build/BuildDetail.tsx:691 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:489 -#: src/pages/sales/ReturnOrderDetail.tsx:500 -#: src/pages/sales/SalesOrderDetail.tsx:554 +#: src/pages/build/BuildDetail.tsx:696 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:494 +#: src/pages/sales/ReturnOrderDetail.tsx:505 +#: src/pages/sales/SalesOrderDetail.tsx:559 msgid "Edit order" msgstr "Chỉnh sửa đơn hàng" -#: src/pages/build/BuildDetail.tsx:695 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:497 -#: src/pages/sales/ReturnOrderDetail.tsx:506 -#: src/pages/sales/SalesOrderDetail.tsx:559 +#: src/pages/build/BuildDetail.tsx:700 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:502 +#: src/pages/sales/ReturnOrderDetail.tsx:511 +#: src/pages/sales/SalesOrderDetail.tsx:564 msgid "Duplicate order" msgstr "Nhân bản đơn hàng" -#: src/pages/build/BuildDetail.tsx:699 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:500 -#: src/pages/sales/ReturnOrderDetail.tsx:511 -#: src/pages/sales/SalesOrderDetail.tsx:562 -msgid "Hold order" -msgstr "Giữ đơn hàng" - #: src/pages/build/BuildDetail.tsx:704 #: src/pages/purchasing/PurchaseOrderDetail.tsx:505 #: src/pages/sales/ReturnOrderDetail.tsx:516 #: src/pages/sales/SalesOrderDetail.tsx:567 +msgid "Hold order" +msgstr "Giữ đơn hàng" + +#: src/pages/build/BuildDetail.tsx:709 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:510 +#: src/pages/sales/ReturnOrderDetail.tsx:521 +#: src/pages/sales/SalesOrderDetail.tsx:572 msgid "Cancel order" msgstr "Hủy đơn hàng" -#: src/pages/build/BuildDetail.tsx:742 +#: src/pages/build/BuildDetail.tsx:747 #: src/pages/stock/StockDetail.tsx:344 -#: src/tables/build/BuildAllocatedStockTable.tsx:85 +#: src/tables/build/BuildAllocatedStockTable.tsx:82 #: src/tables/part/PartBuildAllocationsTable.tsx:45 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:157 #: src/tables/stock/StockTrackingTable.tsx:109 @@ -7143,7 +7206,7 @@ msgstr "Xây dựng đơn hàng" #~ msgid "Build order created" #~ msgstr "Build order created" -#: src/pages/build/BuildIndex.tsx:29 +#: src/pages/build/BuildIndex.tsx:35 #: src/tables/build/BuildOrderTable.tsx:184 msgid "Show external build orders" msgstr "" @@ -7152,61 +7215,82 @@ msgstr "" #~ msgid "New Build Order" #~ msgstr "New Build Order" -#: src/pages/build/BuildIndex.tsx:83 -#: src/pages/purchasing/PurchasingIndex.tsx:69 -#: src/pages/sales/SalesIndex.tsx:92 -#: src/pages/sales/SalesIndex.tsx:125 +#: src/pages/build/BuildIndex.tsx:74 +#: src/pages/part/CategoryDetail.tsx:292 +#: src/pages/purchasing/PurchasingIndex.tsx:74 +#: src/pages/purchasing/PurchasingIndex.tsx:107 +#: src/pages/purchasing/PurchasingIndex.tsx:135 +#: src/pages/purchasing/PurchasingIndex.tsx:156 +#: src/pages/purchasing/PurchasingIndex.tsx:184 +#: src/pages/sales/SalesIndex.tsx:61 +#: src/pages/sales/SalesIndex.tsx:107 +#: src/pages/sales/SalesIndex.tsx:140 msgid "Table View" msgstr "" -#: src/pages/build/BuildIndex.tsx:86 -#: src/pages/purchasing/PurchasingIndex.tsx:72 -#: src/pages/sales/SalesIndex.tsx:95 -#: src/pages/sales/SalesIndex.tsx:128 +#: src/pages/build/BuildIndex.tsx:80 +#: src/pages/purchasing/PurchasingIndex.tsx:80 +#: src/pages/sales/SalesIndex.tsx:67 +#: src/pages/sales/SalesIndex.tsx:113 msgid "Calendar View" msgstr "" -#: src/pages/company/CompanyDetail.tsx:99 +#: src/pages/build/BuildIndex.tsx:86 +#: src/pages/part/CategoryDetail.tsx:306 +#: src/pages/purchasing/PurchasingIndex.tsx:92 +#: src/pages/purchasing/PurchasingIndex.tsx:118 +#: src/pages/purchasing/PurchasingIndex.tsx:141 +#: src/pages/purchasing/PurchasingIndex.tsx:167 +#: src/pages/purchasing/PurchasingIndex.tsx:190 +#: src/pages/sales/SalesIndex.tsx:79 +#: src/pages/sales/SalesIndex.tsx:125 +#: src/pages/sales/SalesIndex.tsx:151 +msgid "Parametric View" +msgstr "" + +#: src/pages/company/CompanyDetail.tsx:100 msgid "Website" msgstr "Trang web" -#: src/pages/company/CompanyDetail.tsx:107 +#: src/pages/company/CompanyDetail.tsx:108 msgid "Phone Number" msgstr "Số điện thoại" -#: src/pages/company/CompanyDetail.tsx:114 +#: src/pages/company/CompanyDetail.tsx:115 msgid "Email Address" msgstr "Địa chỉ email" -#: src/pages/company/CompanyDetail.tsx:121 +#: src/pages/company/CompanyDetail.tsx:122 msgid "Tax ID" msgstr "" -#: src/pages/company/CompanyDetail.tsx:131 +#: src/pages/company/CompanyDetail.tsx:132 msgid "Default Currency" msgstr "Tiền tệ mặc định" -#: src/pages/company/CompanyDetail.tsx:142 +#: src/pages/company/CompanyDetail.tsx:143 #: src/pages/company/ManufacturerDetail.tsx:8 -#: src/pages/company/ManufacturerPartDetail.tsx:104 -#: src/pages/company/ManufacturerPartDetail.tsx:280 -#: src/pages/company/SupplierPartDetail.tsx:152 +#: src/pages/company/ManufacturerPartDetail.tsx:103 +#: src/pages/company/ManufacturerPartDetail.tsx:271 +#: src/pages/company/SupplierPartDetail.tsx:153 #: src/tables/Filter.tsx:347 #: src/tables/company/CompanyTable.tsx:101 #: src/tables/purchasing/SupplierPartTable.tsx:89 msgid "Manufacturer" msgstr "Nhà sản xuất" -#: src/pages/company/CompanyDetail.tsx:148 +#: src/pages/company/CompanyDetail.tsx:149 #: src/pages/company/CustomerDetail.tsx:8 #: src/pages/part/pricing/SaleHistoryPanel.tsx:31 -#: src/pages/sales/ReturnOrderDetail.tsx:123 -#: src/pages/sales/SalesOrderDetail.tsx:113 -#: src/pages/sales/SalesOrderShipmentDetail.tsx:113 +#: src/pages/sales/ReturnOrderDetail.tsx:124 +#: src/pages/sales/SalesOrderDetail.tsx:114 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:111 #: src/pages/stock/StockDetail.tsx:370 #: src/tables/company/CompanyTable.tsx:106 +#: src/tables/sales/ReturnOrderParametricTable.tsx:32 #: src/tables/sales/ReturnOrderTable.tsx:108 -#: src/tables/sales/SalesOrderShipmentTable.tsx:111 +#: src/tables/sales/SalesOrderParametricTable.tsx:32 +#: src/tables/sales/SalesOrderShipmentTable.tsx:132 #: src/tables/sales/SalesOrderTable.tsx:133 #: src/tables/stock/StockTrackingTable.tsx:153 msgid "Customer" @@ -7216,11 +7300,11 @@ msgstr "Khách hàng" #~ msgid "Edit company" #~ msgstr "Edit company" -#: src/pages/company/CompanyDetail.tsx:181 +#: src/pages/company/CompanyDetail.tsx:182 msgid "Company Details" msgstr "" -#: src/pages/company/CompanyDetail.tsx:187 +#: src/pages/company/CompanyDetail.tsx:188 msgid "Supplied Parts" msgstr "Nguyên liệu nhà cung cấp" @@ -7228,79 +7312,79 @@ msgstr "Nguyên liệu nhà cung cấp" #~ msgid "Delete company" #~ msgstr "Delete company" -#: src/pages/company/CompanyDetail.tsx:194 +#: src/pages/company/CompanyDetail.tsx:195 msgid "Manufactured Parts" msgstr "Nguyên liệu nhà sản xuất" -#: src/pages/company/CompanyDetail.tsx:241 +#: src/pages/company/CompanyDetail.tsx:242 msgid "Assigned Stock" msgstr "Kho đã được giao" -#: src/pages/company/CompanyDetail.tsx:282 +#: src/pages/company/CompanyDetail.tsx:287 #: src/tables/company/CompanyTable.tsx:82 msgid "Edit Company" msgstr "Sửa doanh nghiệp" -#: src/pages/company/CompanyDetail.tsx:290 +#: src/pages/company/CompanyDetail.tsx:295 msgid "Delete Company" msgstr "Xóa doanh nghiệp" -#: src/pages/company/CompanyDetail.tsx:305 +#: src/pages/company/CompanyDetail.tsx:310 msgid "Company Actions" msgstr "Chức năng doanh nghiệp" -#: src/pages/company/ManufacturerPartDetail.tsx:78 -#: src/pages/company/SupplierPartDetail.tsx:89 +#: src/pages/company/ManufacturerPartDetail.tsx:77 +#: src/pages/company/SupplierPartDetail.tsx:90 msgid "Internal Part" msgstr "Nguyên liệu nội bộ" -#: src/pages/company/ManufacturerPartDetail.tsx:112 +#: src/pages/company/ManufacturerPartDetail.tsx:111 msgid "Manufacturer Part Number" msgstr "Mã số nguyên liệu" -#: src/pages/company/ManufacturerPartDetail.tsx:129 -#: src/pages/company/SupplierPartDetail.tsx:113 +#: src/pages/company/ManufacturerPartDetail.tsx:128 +#: src/pages/company/SupplierPartDetail.tsx:114 msgid "External Link" msgstr "Liên kết Ngoài" -#: src/pages/company/ManufacturerPartDetail.tsx:148 -#: src/pages/company/SupplierPartDetail.tsx:232 +#: src/pages/company/ManufacturerPartDetail.tsx:147 +#: src/pages/company/SupplierPartDetail.tsx:233 #: src/pages/part/PartDetail.tsx:787 msgid "Part Details" msgstr "Chi tiết" -#: src/pages/company/ManufacturerPartDetail.tsx:151 +#: src/pages/company/ManufacturerPartDetail.tsx:150 msgid "Manufacturer Details" msgstr "Chi tiết" -#: src/pages/company/ManufacturerPartDetail.tsx:160 +#: src/pages/company/ManufacturerPartDetail.tsx:159 msgid "Manufacturer Part Details" msgstr "Chi tiết nguyên liệu" -#: src/pages/company/ManufacturerPartDetail.tsx:178 -#: src/pages/company/SupplierPartDetail.tsx:252 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:381 +#: src/pages/company/ManufacturerPartDetail.tsx:165 +#: src/pages/company/SupplierPartDetail.tsx:253 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:382 msgid "Received Stock" msgstr "Kho đã nhận hàng" -#: src/pages/company/ManufacturerPartDetail.tsx:220 +#: src/pages/company/ManufacturerPartDetail.tsx:211 #: src/tables/purchasing/ManufacturerPartTable.tsx:108 msgid "Edit Manufacturer Part" msgstr "Sửa" -#: src/pages/company/ManufacturerPartDetail.tsx:227 +#: src/pages/company/ManufacturerPartDetail.tsx:218 #: src/tables/purchasing/ManufacturerPartTable.tsx:96 #: src/tables/purchasing/ManufacturerPartTable.tsx:115 #: src/tables/purchasing/ManufacturerPartTable.tsx:156 msgid "Add Manufacturer Part" msgstr "Thêm" -#: src/pages/company/ManufacturerPartDetail.tsx:239 +#: src/pages/company/ManufacturerPartDetail.tsx:230 #: src/tables/purchasing/ManufacturerPartTable.tsx:126 msgid "Delete Manufacturer Part" msgstr "Xoá" -#: src/pages/company/ManufacturerPartDetail.tsx:254 +#: src/pages/company/ManufacturerPartDetail.tsx:245 msgid "Manufacturer Part Actions" msgstr "Thao tác" @@ -7308,12 +7392,12 @@ msgstr "Thao tác" #~ msgid "ManufacturerPart" #~ msgstr "ManufacturerPart" -#: src/pages/company/SupplierPartDetail.tsx:104 +#: src/pages/company/SupplierPartDetail.tsx:105 #: src/tables/part/RelatedPartTable.tsx:82 msgid "Part Description" msgstr "Mô tả sản phẩm" -#: src/pages/company/SupplierPartDetail.tsx:179 +#: src/pages/company/SupplierPartDetail.tsx:180 #: src/tables/part/PartPurchaseOrdersTable.tsx:73 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:191 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:233 @@ -7321,50 +7405,50 @@ msgstr "Mô tả sản phẩm" msgid "Pack Quantity" msgstr "Số lượng gói" -#: src/pages/company/SupplierPartDetail.tsx:204 +#: src/pages/company/SupplierPartDetail.tsx:205 msgid "Supplier Availability" msgstr "Khả dụng" -#: src/pages/company/SupplierPartDetail.tsx:212 +#: src/pages/company/SupplierPartDetail.tsx:213 msgid "Availability Updated" msgstr "Đã cập nhật" -#: src/pages/company/SupplierPartDetail.tsx:237 +#: src/pages/company/SupplierPartDetail.tsx:238 msgid "Availability" msgstr "Khả dụng" -#: src/pages/company/SupplierPartDetail.tsx:246 +#: src/pages/company/SupplierPartDetail.tsx:247 msgid "Supplier Part Details" msgstr "Chi tiết" -#: src/pages/company/SupplierPartDetail.tsx:279 +#: src/pages/company/SupplierPartDetail.tsx:280 #: src/pages/part/PartPricingPanel.tsx:113 #: src/pages/part/pricing/PricingOverviewPanel.tsx:239 msgid "Supplier Pricing" msgstr "Giá nhà cung cấp" -#: src/pages/company/SupplierPartDetail.tsx:308 +#: src/pages/company/SupplierPartDetail.tsx:313 msgid "Supplier Part Actions" msgstr "Thao tác" -#: src/pages/company/SupplierPartDetail.tsx:332 +#: src/pages/company/SupplierPartDetail.tsx:337 #: src/tables/purchasing/SupplierPartTable.tsx:244 msgid "Edit Supplier Part" msgstr "Sửa sản phẩm nhà cung cấp" -#: src/pages/company/SupplierPartDetail.tsx:340 +#: src/pages/company/SupplierPartDetail.tsx:345 #: src/tables/purchasing/SupplierPartTable.tsx:264 msgid "Delete Supplier Part" msgstr "Xoá" -#: src/pages/company/SupplierPartDetail.tsx:348 +#: src/pages/company/SupplierPartDetail.tsx:353 #: src/tables/purchasing/SupplierPartTable.tsx:172 #: src/tables/purchasing/SupplierPartTable.tsx:251 msgid "Add Supplier Part" msgstr "Thêm sản phẩm nhà cung cấp" -#: src/pages/company/SupplierPartDetail.tsx:388 -#: src/pages/part/PartDetail.tsx:1003 +#: src/pages/company/SupplierPartDetail.tsx:393 +#: src/pages/part/PartDetail.tsx:1018 msgid "No Stock" msgstr "Hết hàng" @@ -7411,83 +7495,83 @@ msgstr "" msgid "Basic user" msgstr "" -#: src/pages/part/CategoryDetail.tsx:100 +#: src/pages/part/CategoryDetail.tsx:103 #: src/pages/stock/LocationDetail.tsx:94 #: src/tables/settings/ErrorTable.tsx:63 #: src/tables/settings/ErrorTable.tsx:108 msgid "Path" msgstr "Đường dẫn" -#: src/pages/part/CategoryDetail.tsx:116 +#: src/pages/part/CategoryDetail.tsx:119 msgid "Parent Category" msgstr "Danh mục cha" -#: src/pages/part/CategoryDetail.tsx:139 -#: src/pages/part/CategoryDetail.tsx:271 +#: src/pages/part/CategoryDetail.tsx:142 +#: src/pages/part/CategoryDetail.tsx:279 msgid "Subcategories" msgstr "Phụ mục" -#: src/pages/part/CategoryDetail.tsx:146 +#: src/pages/part/CategoryDetail.tsx:149 #: src/pages/stock/LocationDetail.tsx:134 #: src/tables/part/PartCategoryTable.tsx:89 #: src/tables/stock/StockLocationTable.tsx:43 msgid "Structural" msgstr "Cấu trúc" -#: src/pages/part/CategoryDetail.tsx:152 +#: src/pages/part/CategoryDetail.tsx:155 msgid "Parent default location" msgstr "Vị trí mặc định" -#: src/pages/part/CategoryDetail.tsx:159 +#: src/pages/part/CategoryDetail.tsx:162 msgid "Default location" msgstr "Vị trí mặc định" -#: src/pages/part/CategoryDetail.tsx:170 +#: src/pages/part/CategoryDetail.tsx:173 msgid "Top level part category" msgstr "Danh mục top" -#: src/pages/part/CategoryDetail.tsx:180 -#: src/pages/part/CategoryDetail.tsx:248 +#: src/pages/part/CategoryDetail.tsx:183 +#: src/pages/part/CategoryDetail.tsx:251 #: src/tables/part/PartCategoryTable.tsx:122 msgid "Edit Part Category" msgstr "Sửa" -#: src/pages/part/CategoryDetail.tsx:189 +#: src/pages/part/CategoryDetail.tsx:192 msgid "Move items to parent category" msgstr "" -#: src/pages/part/CategoryDetail.tsx:193 +#: src/pages/part/CategoryDetail.tsx:196 #: src/pages/stock/LocationDetail.tsx:226 msgid "Delete items" msgstr "Xoá" -#: src/pages/part/CategoryDetail.tsx:201 -#: src/pages/part/CategoryDetail.tsx:253 +#: src/pages/part/CategoryDetail.tsx:204 +#: src/pages/part/CategoryDetail.tsx:256 msgid "Delete Part Category" msgstr "Xoá" -#: src/pages/part/CategoryDetail.tsx:204 +#: src/pages/part/CategoryDetail.tsx:207 msgid "Parts Action" msgstr "Thao tác" -#: src/pages/part/CategoryDetail.tsx:205 +#: src/pages/part/CategoryDetail.tsx:208 msgid "Action for parts in this category" msgstr "Thao tác trong danh mục" -#: src/pages/part/CategoryDetail.tsx:211 +#: src/pages/part/CategoryDetail.tsx:214 msgid "Child Categories Action" msgstr "Thao tác" -#: src/pages/part/CategoryDetail.tsx:212 +#: src/pages/part/CategoryDetail.tsx:215 msgid "Action for child categories in this category" msgstr "Thao tác" -#: src/pages/part/CategoryDetail.tsx:244 +#: src/pages/part/CategoryDetail.tsx:247 #: src/tables/part/PartCategoryTable.tsx:143 msgid "Category Actions" msgstr "Thao tác" -#: src/pages/part/CategoryDetail.tsx:265 +#: src/pages/part/CategoryDetail.tsx:273 msgid "Category Details" msgstr "Chi tiết" @@ -7585,7 +7669,6 @@ msgid "Category Default Location" msgstr "Vị trí danh mục mặc định" #: src/pages/part/PartDetail.tsx:507 -#: src/tables/purchasing/ManufacturerPartParameterTable.tsx:48 msgid "Units" msgstr "Đơn vị" @@ -7600,7 +7683,7 @@ msgstr "Từ khóa" #: src/pages/part/PartDetail.tsx:542 #: src/tables/bom/BomTable.tsx:439 -#: src/tables/build/BuildLineTable.tsx:305 +#: src/tables/build/BuildLineTable.tsx:306 #: src/tables/part/PartTable.tsx:319 #: src/tables/sales/SalesOrderLineItemTable.tsx:138 msgid "Available Stock" @@ -7608,7 +7691,7 @@ msgstr "Số hàng tồn" #: src/pages/part/PartDetail.tsx:548 #: src/tables/bom/BomTable.tsx:341 -#: src/tables/build/BuildLineTable.tsx:267 +#: src/tables/build/BuildLineTable.tsx:268 #: src/tables/sales/SalesOrderLineItemTable.tsx:180 msgid "On order" msgstr "Đang đặt hàng" @@ -7634,7 +7717,7 @@ msgstr "Kho tối thiểu" #~ msgstr "Scheduling" #: src/pages/part/PartDetail.tsx:620 -#: src/tables/part/ParametricPartTable.tsx:359 +#: src/tables/part/ParametricPartTable.tsx:24 #: src/tables/part/PartTable.tsx:203 msgid "Locked" msgstr "Khóa" @@ -7671,16 +7754,16 @@ msgid "Saleable Part" msgstr "Có thể bán" #: src/pages/part/PartDetail.tsx:663 -#: src/pages/part/PartDetail.tsx:1033 +#: src/pages/part/PartDetail.tsx:1054 #: src/tables/bom/BomTable.tsx:150 #: src/tables/bom/BomTable.tsx:434 msgid "Virtual Part" msgstr "Nguyên liệu ảo" #: src/pages/part/PartDetail.tsx:678 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:271 -#: src/pages/sales/ReturnOrderDetail.tsx:249 -#: src/pages/sales/SalesOrderDetail.tsx:242 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:272 +#: src/pages/sales/ReturnOrderDetail.tsx:250 +#: src/pages/sales/SalesOrderDetail.tsx:243 #: src/tables/ColumnRenderers.tsx:502 msgid "Creation Date" msgstr "Ngày tạo" @@ -7718,35 +7801,46 @@ msgstr "" msgid "Select Part Revision" msgstr "Chọn lịch sử nguyên liệu" -#: src/pages/part/PartDetail.tsx:823 +#: src/pages/part/PartDetail.tsx:812 msgid "Variants" msgstr "Biến thể" -#: src/pages/part/PartDetail.tsx:830 +#: src/pages/part/PartDetail.tsx:819 #: src/pages/stock/StockDetail.tsx:542 msgid "Allocations" msgstr "Phân bổ" -#: src/pages/part/PartDetail.tsx:837 +#: src/pages/part/PartDetail.tsx:826 msgid "Bill of Materials" msgstr "Hóa đơn nguyên vật liệu" -#: src/pages/part/PartDetail.tsx:849 +#: src/pages/part/PartDetail.tsx:838 msgid "Used In" msgstr "Sử dụng trong" -#: src/pages/part/PartDetail.tsx:856 +#: src/pages/part/PartDetail.tsx:845 msgid "Part Pricing" msgstr "Giá" -#: src/pages/part/PartDetail.tsx:926 +#: src/pages/part/PartDetail.tsx:915 msgid "Test Templates" msgstr "Mẫu thử nghiệm" -#: src/pages/part/PartDetail.tsx:948 +#: src/pages/part/PartDetail.tsx:937 msgid "Related Parts" msgstr "Phụ kiện liên quan" +#: src/pages/part/PartDetail.tsx:949 +#: src/tables/ColumnRenderers.tsx:73 +#: src/tables/bom/BomTable.tsx:657 +#: src/tables/part/PartTestTemplateTable.tsx:258 +msgid "Part is Locked" +msgstr "Nguyên liệu bị khoá" + +#: src/pages/part/PartDetail.tsx:954 +msgid "Part parameters cannot be edited, as the part is locked" +msgstr "" + #: src/pages/part/PartDetail.tsx:956 #~ msgid "Count part stock" #~ msgstr "Count part stock" @@ -7755,42 +7849,46 @@ msgstr "Phụ kiện liên quan" #~ msgid "Transfer part stock" #~ msgstr "Transfer part stock" -#: src/pages/part/PartDetail.tsx:1009 +#: src/pages/part/PartDetail.tsx:1024 #: src/tables/part/PartTestTemplateTable.tsx:112 #: src/tables/stock/StockItemTestResultTable.tsx:404 msgid "Required" msgstr "Bắt buộc" -#: src/pages/part/PartDetail.tsx:1058 +#: src/pages/part/PartDetail.tsx:1042 +msgid "Deficit" +msgstr "" + +#: src/pages/part/PartDetail.tsx:1079 #: src/tables/part/PartTable.tsx:396 #: src/tables/part/PartTable.tsx:449 msgid "Add Part" msgstr "Thêm nguyên liệu" -#: src/pages/part/PartDetail.tsx:1072 +#: src/pages/part/PartDetail.tsx:1093 msgid "Delete Part" msgstr "Xoá nguyên liệu" -#: src/pages/part/PartDetail.tsx:1081 +#: src/pages/part/PartDetail.tsx:1102 msgid "Deleting this part cannot be reversed" msgstr "Không thể khôi phục việc xóa nguyên liệu này" -#: src/pages/part/PartDetail.tsx:1143 +#: src/pages/part/PartDetail.tsx:1164 #: src/pages/stock/StockDetail.tsx:883 msgid "Order" msgstr "" -#: src/pages/part/PartDetail.tsx:1144 +#: src/pages/part/PartDetail.tsx:1165 #: src/pages/stock/StockDetail.tsx:884 -#: src/tables/build/BuildLineTable.tsx:761 +#: src/tables/build/BuildLineTable.tsx:768 msgid "Order Stock" msgstr "" -#: src/pages/part/PartDetail.tsx:1156 +#: src/pages/part/PartDetail.tsx:1177 msgid "Search by serial number" msgstr "" -#: src/pages/part/PartDetail.tsx:1164 +#: src/pages/part/PartDetail.tsx:1185 #: src/tables/part/PartTable.tsx:506 msgid "Part Actions" msgstr "Thao tác" @@ -8039,7 +8137,7 @@ msgstr "Giá mua" #: src/pages/part/pricing/PricingOverviewPanel.tsx:288 #: src/pages/stock/StockDetail.tsx:426 -#: src/tables/part/PartParameterTable.tsx:121 +#: src/tables/general/ParameterTable.tsx:101 #: src/tables/stock/StockItemTable.tsx:300 msgid "Last Updated" msgstr "Cập nhật lần cuối" @@ -8107,17 +8205,17 @@ msgstr "Giá nhà cung cấp" msgid "Variant Part" msgstr "Biến thể nguyên liệu" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:89 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:90 msgid "Edit Purchase Order" msgstr "Sửa đơn mua" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:125 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:126 #: src/tables/purchasing/PurchaseOrderTable.tsx:154 #: src/tables/purchasing/PurchaseOrderTable.tsx:167 msgid "Add Purchase Order" msgstr "Thêm đơn mua" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:147 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:148 msgid "Supplier Reference" msgstr "Tham chiếu nhà cung cấp" @@ -8127,20 +8225,20 @@ msgstr "Tham chiếu nhà cung cấp" #~ msgid "Order Currency," #~ msgstr "Order Currency," -#: src/pages/purchasing/PurchaseOrderDetail.tsx:187 -#: src/pages/sales/ReturnOrderDetail.tsx:160 -#: src/pages/sales/SalesOrderDetail.tsx:144 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:188 +#: src/pages/sales/ReturnOrderDetail.tsx:161 +#: src/pages/sales/SalesOrderDetail.tsx:145 msgid "Completed Line Items" msgstr "Những mục hoàn thành" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:196 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:197 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:272 msgid "Destination" msgstr "Đích đến" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:202 -#: src/pages/sales/ReturnOrderDetail.tsx:167 -#: src/pages/sales/SalesOrderDetail.tsx:161 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:203 +#: src/pages/sales/ReturnOrderDetail.tsx:168 +#: src/pages/sales/SalesOrderDetail.tsx:162 msgid "Order Currency" msgstr "Tiền tệ đơn hàng" @@ -8150,97 +8248,97 @@ msgstr "Tiền tệ đơn hàng" #~ msgid "Created On" #~ msgstr "Created On" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:208 -#: src/pages/sales/ReturnOrderDetail.tsx:174 -#: src/pages/sales/SalesOrderDetail.tsx:167 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:209 +#: src/pages/sales/ReturnOrderDetail.tsx:175 +#: src/pages/sales/SalesOrderDetail.tsx:168 msgid "Total Cost" msgstr "Tổng chi phí" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:237 -#: src/pages/sales/ReturnOrderDetail.tsx:215 -#: src/pages/sales/SalesOrderDetail.tsx:208 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:238 +#: src/pages/sales/ReturnOrderDetail.tsx:216 +#: src/pages/sales/SalesOrderDetail.tsx:209 msgid "Contact Email" msgstr "" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:245 -#: src/pages/sales/ReturnOrderDetail.tsx:223 -#: src/pages/sales/SalesOrderDetail.tsx:216 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:246 +#: src/pages/sales/ReturnOrderDetail.tsx:224 +#: src/pages/sales/SalesOrderDetail.tsx:217 msgid "Contact Phone" msgstr "" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:278 -#: src/pages/sales/ReturnOrderDetail.tsx:257 -#: src/pages/sales/SalesOrderDetail.tsx:249 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:279 +#: src/pages/sales/ReturnOrderDetail.tsx:258 +#: src/pages/sales/SalesOrderDetail.tsx:250 msgid "Issue Date" msgstr "" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:303 -#: src/pages/sales/ReturnOrderDetail.tsx:281 -#: src/pages/sales/SalesOrderDetail.tsx:272 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:304 +#: src/pages/sales/ReturnOrderDetail.tsx:282 +#: src/pages/sales/SalesOrderDetail.tsx:273 #: src/tables/ColumnRenderers.tsx:510 #: src/tables/build/BuildOrderTable.tsx:137 #: src/tables/part/PartPurchaseOrdersTable.tsx:106 msgid "Completion Date" msgstr "" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:333 -#: src/pages/sales/ReturnOrderDetail.tsx:311 -#: src/pages/sales/SalesOrderDetail.tsx:349 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:334 +#: src/pages/sales/ReturnOrderDetail.tsx:312 +#: src/pages/sales/SalesOrderDetail.tsx:350 msgid "Order Details" msgstr "Chi tiết đơn đặt" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:339 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:348 -#: src/pages/sales/ReturnOrderDetail.tsx:153 -#: src/pages/sales/ReturnOrderDetail.tsx:317 -#: src/pages/sales/ReturnOrderDetail.tsx:326 -#: src/pages/sales/SalesOrderDetail.tsx:355 -#: src/pages/sales/SalesOrderDetail.tsx:364 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:340 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:349 +#: src/pages/sales/ReturnOrderDetail.tsx:154 +#: src/pages/sales/ReturnOrderDetail.tsx:318 +#: src/pages/sales/ReturnOrderDetail.tsx:327 +#: src/pages/sales/SalesOrderDetail.tsx:356 +#: src/pages/sales/SalesOrderDetail.tsx:365 msgid "Line Items" msgstr "Dòng hàng hóa" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:363 -#: src/pages/sales/ReturnOrderDetail.tsx:341 -#: src/pages/sales/SalesOrderDetail.tsx:378 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:364 +#: src/pages/sales/ReturnOrderDetail.tsx:342 +#: src/pages/sales/SalesOrderDetail.tsx:379 msgid "Extra Line Items" msgstr "Thêm dòng mở rộng" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:405 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:410 msgid "Issue Purchase Order" msgstr "Xác nhận đơn hàng" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:413 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:418 msgid "Cancel Purchase Order" msgstr "Huỷ đơn hàng" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:421 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:426 msgid "Hold Purchase Order" msgstr "Tạm hoãn đơn hàng" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:429 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:434 msgid "Complete Purchase Order" msgstr "Hoàn thành đơn hàng" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:485 -#: src/pages/sales/ReturnOrderDetail.tsx:496 -#: src/pages/sales/SalesOrderDetail.tsx:549 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:490 +#: src/pages/sales/ReturnOrderDetail.tsx:501 +#: src/pages/sales/SalesOrderDetail.tsx:554 msgid "Order Actions" msgstr "Chức năng đơn đặt" -#: src/pages/sales/ReturnOrderDetail.tsx:114 -#: src/pages/sales/SalesOrderDetail.tsx:104 -#: src/pages/sales/SalesOrderShipmentDetail.tsx:134 +#: src/pages/sales/ReturnOrderDetail.tsx:115 +#: src/pages/sales/SalesOrderDetail.tsx:105 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:132 #: src/tables/sales/SalesOrderTable.tsx:141 msgid "Customer Reference" msgstr "Tham chiếu khách hàng" -#: src/pages/sales/ReturnOrderDetail.tsx:195 +#: src/pages/sales/ReturnOrderDetail.tsx:196 msgid "Return Address" msgstr "" -#: src/pages/sales/ReturnOrderDetail.tsx:201 -#: src/pages/sales/SalesOrderDetail.tsx:194 -#: src/pages/sales/SalesOrderShipmentDetail.tsx:181 +#: src/pages/sales/ReturnOrderDetail.tsx:202 +#: src/pages/sales/SalesOrderDetail.tsx:195 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:179 msgid "Not specified" msgstr "" @@ -8248,117 +8346,117 @@ msgstr "" #~ msgid "Order canceled" #~ msgstr "Order canceled" -#: src/pages/sales/ReturnOrderDetail.tsx:389 +#: src/pages/sales/ReturnOrderDetail.tsx:394 msgid "Edit Return Order" msgstr "Sửa đơn hoàn" -#: src/pages/sales/ReturnOrderDetail.tsx:407 +#: src/pages/sales/ReturnOrderDetail.tsx:412 #: src/tables/sales/ReturnOrderTable.tsx:154 #: src/tables/sales/ReturnOrderTable.tsx:167 msgid "Add Return Order" msgstr "Thêm đơn hoàn" -#: src/pages/sales/ReturnOrderDetail.tsx:416 +#: src/pages/sales/ReturnOrderDetail.tsx:421 msgid "Issue Return Order" msgstr "Xác nhận đơn hoàn" -#: src/pages/sales/ReturnOrderDetail.tsx:424 +#: src/pages/sales/ReturnOrderDetail.tsx:429 msgid "Cancel Return Order" msgstr "Huỷ đơn hoàn" -#: src/pages/sales/ReturnOrderDetail.tsx:432 +#: src/pages/sales/ReturnOrderDetail.tsx:437 msgid "Hold Return Order" msgstr "Tạm hoãn đơn hoàn" -#: src/pages/sales/ReturnOrderDetail.tsx:440 +#: src/pages/sales/ReturnOrderDetail.tsx:445 msgid "Complete Return Order" msgstr "Hoàn thành đơn hoàn" -#: src/pages/sales/SalesOrderDetail.tsx:153 +#: src/pages/sales/SalesOrderDetail.tsx:154 msgid "Completed Shipments" msgstr "Vận đơn đã hoàn thành" -#: src/pages/sales/SalesOrderDetail.tsx:188 -#: src/pages/sales/SalesOrderShipmentDetail.tsx:170 +#: src/pages/sales/SalesOrderDetail.tsx:189 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:168 msgid "Shipping Address" msgstr "" -#: src/pages/sales/SalesOrderDetail.tsx:316 +#: src/pages/sales/SalesOrderDetail.tsx:317 msgid "Edit Sales Order" msgstr "Sửa đơn hàng sale" -#: src/pages/sales/SalesOrderDetail.tsx:338 +#: src/pages/sales/SalesOrderDetail.tsx:339 #: src/tables/sales/SalesOrderTable.tsx:108 #: src/tables/sales/SalesOrderTable.tsx:121 msgid "Add Sales Order" msgstr "Thêm đơn hàng sale" -#: src/pages/sales/SalesOrderDetail.tsx:396 +#: src/pages/sales/SalesOrderDetail.tsx:397 #: src/tables/sales/SalesOrderTable.tsx:147 msgid "Shipments" msgstr "Vận chuyển" -#: src/pages/sales/SalesOrderDetail.tsx:443 +#: src/pages/sales/SalesOrderDetail.tsx:448 msgid "Issue Sales Order" msgstr "Xác nhận đơn hàng sale" -#: src/pages/sales/SalesOrderDetail.tsx:451 +#: src/pages/sales/SalesOrderDetail.tsx:456 msgid "Cancel Sales Order" msgstr "Huỷ đơn hàng sale" -#: src/pages/sales/SalesOrderDetail.tsx:459 +#: src/pages/sales/SalesOrderDetail.tsx:464 msgid "Hold Sales Order" msgstr "Tạm hoãn đơn hàng sale" -#: src/pages/sales/SalesOrderDetail.tsx:467 +#: src/pages/sales/SalesOrderDetail.tsx:472 msgid "Ship Sales Order" msgstr "" -#: src/pages/sales/SalesOrderDetail.tsx:469 +#: src/pages/sales/SalesOrderDetail.tsx:474 msgid "Ship this order?" msgstr "" -#: src/pages/sales/SalesOrderDetail.tsx:470 +#: src/pages/sales/SalesOrderDetail.tsx:475 msgid "Order shipped" msgstr "" -#: src/pages/sales/SalesOrderDetail.tsx:478 +#: src/pages/sales/SalesOrderDetail.tsx:483 msgid "Complete Sales Order" msgstr "Hoàn thành đơn hàng sale" -#: src/pages/sales/SalesOrderDetail.tsx:523 +#: src/pages/sales/SalesOrderDetail.tsx:528 msgid "Ship Order" msgstr "Thứ tự vận đơn" -#: src/pages/sales/SalesOrderShipmentDetail.tsx:142 -#: src/tables/sales/SalesOrderShipmentTable.tsx:135 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:140 +#: src/tables/sales/SalesOrderShipmentTable.tsx:156 msgid "Shipment Reference" msgstr "" -#: src/pages/sales/SalesOrderShipmentDetail.tsx:148 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:146 msgid "Tracking Number" msgstr "" -#: src/pages/sales/SalesOrderShipmentDetail.tsx:156 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:154 msgid "Invoice Number" msgstr "" -#: src/pages/sales/SalesOrderShipmentDetail.tsx:191 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:189 msgid "Allocated Items" msgstr "" -#: src/pages/sales/SalesOrderShipmentDetail.tsx:196 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:194 msgid "Checked By" msgstr "" -#: src/pages/sales/SalesOrderShipmentDetail.tsx:202 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:200 msgid "Not checked" msgstr "" -#: src/pages/sales/SalesOrderShipmentDetail.tsx:208 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:206 #: src/tables/ColumnRenderers.tsx:518 #: src/tables/sales/SalesOrderAllocationTable.tsx:182 -#: src/tables/sales/SalesOrderShipmentTable.tsx:168 +#: src/tables/sales/SalesOrderShipmentTable.tsx:189 msgid "Shipment Date" msgstr "Ngày giao hàng" @@ -8366,108 +8464,82 @@ msgstr "Ngày giao hàng" #~ msgid "Assigned Items" #~ msgstr "Assigned Items" -#: src/pages/sales/SalesOrderShipmentDetail.tsx:216 -#: src/tables/sales/SalesOrderShipmentTable.tsx:172 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:214 +#: src/tables/sales/SalesOrderShipmentTable.tsx:193 msgid "Delivery Date" msgstr "" -#: src/pages/sales/SalesOrderShipmentDetail.tsx:255 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:253 msgid "Shipment Details" msgstr "" -#: src/pages/sales/SalesOrderShipmentDetail.tsx:294 -#: src/pages/sales/SalesOrderShipmentDetail.tsx:438 -#: src/tables/sales/SalesOrderShipmentTable.tsx:90 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:292 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:406 +#: src/tables/sales/SalesOrderShipmentTable.tsx:97 msgid "Edit Shipment" msgstr "" -#: src/pages/sales/SalesOrderShipmentDetail.tsx:301 -#: src/pages/sales/SalesOrderShipmentDetail.tsx:457 -#: src/tables/sales/SalesOrderShipmentTable.tsx:82 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:299 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:425 +#: src/tables/sales/SalesOrderShipmentTable.tsx:89 msgid "Cancel Shipment" msgstr "" -#: src/pages/sales/SalesOrderShipmentDetail.tsx:314 -#: src/tables/sales/SalesOrderShipmentTable.tsx:98 -#: src/tables/sales/SalesOrderShipmentTable.tsx:193 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:312 +#: src/tables/sales/SalesOrderShipmentTable.tsx:119 +#: src/tables/sales/SalesOrderShipmentTable.tsx:238 msgid "Complete Shipment" msgstr "" -#: src/pages/sales/SalesOrderShipmentDetail.tsx:326 -#: src/pages/sales/SalesOrderShipmentDetail.tsx:328 -msgid "Check Shipment" -msgstr "" - -#: src/pages/sales/SalesOrderShipmentDetail.tsx:329 -msgid "Marking the shipment as checked indicates that you have verified that all items included in this shipment are correct" -msgstr "" - #: src/pages/sales/SalesOrderShipmentDetail.tsx:339 -msgid "Shipment marked as checked" -msgstr "" - -#: src/pages/sales/SalesOrderShipmentDetail.tsx:346 -#: src/pages/sales/SalesOrderShipmentDetail.tsx:348 -msgid "Uncheck Shipment" -msgstr "" - -#: src/pages/sales/SalesOrderShipmentDetail.tsx:349 -msgid "Marking the shipment as unchecked indicates that the shipment requires further verification" -msgstr "" - -#: src/pages/sales/SalesOrderShipmentDetail.tsx:359 -msgid "Shipment marked as unchecked" -msgstr "" - -#: src/pages/sales/SalesOrderShipmentDetail.tsx:371 #: src/tables/part/PartPurchaseOrdersTable.tsx:122 msgid "Pending" msgstr "" -#: src/pages/sales/SalesOrderShipmentDetail.tsx:377 -#: src/tables/sales/SalesOrderShipmentTable.tsx:147 -#: src/tables/sales/SalesOrderShipmentTable.tsx:254 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:345 +#: src/tables/sales/SalesOrderShipmentTable.tsx:168 +#: src/tables/sales/SalesOrderShipmentTable.tsx:299 msgid "Checked" msgstr "" -#: src/pages/sales/SalesOrderShipmentDetail.tsx:383 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:351 msgid "Not Checked" msgstr "" -#: src/pages/sales/SalesOrderShipmentDetail.tsx:389 -#: src/tables/sales/SalesOrderShipmentTable.tsx:154 -#: src/tables/sales/SalesOrderShipmentTable.tsx:259 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:357 +#: src/tables/sales/SalesOrderShipmentTable.tsx:175 +#: src/tables/sales/SalesOrderShipmentTable.tsx:304 msgid "Shipped" msgstr "" -#: src/pages/sales/SalesOrderShipmentDetail.tsx:395 -#: src/tables/sales/SalesOrderShipmentTable.tsx:161 -#: src/tables/sales/SalesOrderShipmentTable.tsx:264 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:363 +#: src/tables/sales/SalesOrderShipmentTable.tsx:182 +#: src/tables/sales/SalesOrderShipmentTable.tsx:309 #: src/tables/settings/EmailTable.tsx:31 msgid "Delivered" msgstr "" -#: src/pages/sales/SalesOrderShipmentDetail.tsx:410 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:378 msgid "Send Shipment" msgstr "" -#: src/pages/sales/SalesOrderShipmentDetail.tsx:433 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:401 msgid "Shipment Actions" msgstr "" -#: src/pages/sales/SalesOrderShipmentDetail.tsx:442 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:410 msgid "Check" msgstr "" -#: src/pages/sales/SalesOrderShipmentDetail.tsx:443 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:411 msgid "Mark shipment as checked" msgstr "" -#: src/pages/sales/SalesOrderShipmentDetail.tsx:449 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:417 msgid "Uncheck" msgstr "" -#: src/pages/sales/SalesOrderShipmentDetail.tsx:450 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:418 msgid "Mark shipment as unchecked" msgstr "" @@ -8775,13 +8847,6 @@ msgstr "" msgid "Part is not active" msgstr "Nguyên liệu chưa kích hoạt" -#: src/tables/ColumnRenderers.tsx:73 -#: src/tables/bom/BomTable.tsx:657 -#: src/tables/part/PartParameterTable.tsx:227 -#: src/tables/part/PartTestTemplateTable.tsx:258 -msgid "Part is Locked" -msgstr "Nguyên liệu bị khoá" - #: src/tables/ColumnRenderers.tsx:78 msgid "You are subscribed to notifications for this part" msgstr "" @@ -9219,13 +9284,13 @@ msgstr "" #~ msgstr "Show asssmbled items" #: src/tables/bom/BomTable.tsx:315 -#: src/tables/build/BuildLineTable.tsx:276 +#: src/tables/build/BuildLineTable.tsx:277 #: src/tables/part/PartTable.tsx:145 msgid "External stock" msgstr "Kho ngoài" #: src/tables/bom/BomTable.tsx:323 -#: src/tables/build/BuildLineTable.tsx:239 +#: src/tables/build/BuildLineTable.tsx:240 msgid "Includes substitute stock" msgstr "Bao gồm kho thay thế" @@ -9234,7 +9299,7 @@ msgstr "Bao gồm kho thay thế" #~ msgstr "Edit Bom Item" #: src/tables/bom/BomTable.tsx:332 -#: src/tables/build/BuildLineTable.tsx:249 +#: src/tables/build/BuildLineTable.tsx:250 #: src/tables/sales/SalesOrderLineItemTable.tsx:166 msgid "Includes variant stock" msgstr "Bao gồm kho biến thể" @@ -9272,8 +9337,8 @@ msgid "Stock Information" msgstr "Thông tin kho" #: src/tables/bom/BomTable.tsx:399 -#: src/tables/build/BuildLineTable.tsx:496 -#: src/tables/build/BuildLineTable.tsx:537 +#: src/tables/build/BuildLineTable.tsx:497 +#: src/tables/build/BuildLineTable.tsx:538 msgid "Consumable item" msgstr "Vật tư tiêu hao" @@ -9282,7 +9347,7 @@ msgid "No available stock" msgstr "Không khả dụng" #: src/tables/bom/BomTable.tsx:420 -#: src/tables/build/BuildLineTable.tsx:213 +#: src/tables/build/BuildLineTable.tsx:214 msgid "Show testable items" msgstr "Hiển thị items có thể kiểm" @@ -9291,7 +9356,7 @@ msgid "Show trackable items" msgstr "Hiển thị items có thể theo dõi" #: src/tables/bom/BomTable.tsx:430 -#: src/tables/build/BuildLineTable.tsx:208 +#: src/tables/build/BuildLineTable.tsx:209 msgid "Show assembled items" msgstr "Hiện items đã lắp ráp" @@ -9335,7 +9400,7 @@ msgstr "Hiện items có biến thể con" #: src/tables/bom/BomTable.tsx:464 #: src/tables/bom/UsedInTable.tsx:85 -#: src/tables/build/BuildLineTable.tsx:202 +#: src/tables/build/BuildLineTable.tsx:203 msgid "Optional" msgstr "Tuỳ chọn" @@ -9345,7 +9410,7 @@ msgid "Show optional items" msgstr "Hiện items tuỳ chọn" #: src/tables/bom/BomTable.tsx:469 -#: src/tables/build/BuildLineTable.tsx:197 +#: src/tables/build/BuildLineTable.tsx:198 msgid "Consumable" msgstr "Vật tư tiêu hao" @@ -9420,6 +9485,7 @@ msgid "Add a single BOM item" msgstr "" #: src/tables/bom/BomTable.tsx:637 +#: src/tables/general/ParameterTable.tsx:206 #: src/tables/part/PartTable.tsx:546 msgid "Import from File" msgstr "" @@ -9433,8 +9499,8 @@ msgid "Bill of materials cannot be edited, as the part is locked" msgstr "Không thể sửa BOM, do nguyên liệu bị khoá" #: src/tables/bom/UsedInTable.tsx:34 -#: src/tables/build/BuildLineTable.tsx:207 -#: src/tables/part/ParametricPartTable.tsx:364 +#: src/tables/build/BuildLineTable.tsx:208 +#: src/tables/part/ParametricPartTable.tsx:29 #: src/tables/part/PartBuildAllocationsTable.tsx:60 #: src/tables/part/PartTable.tsx:209 #: src/tables/stock/StockItemTable.tsx:333 @@ -9455,11 +9521,11 @@ msgstr "Có thể theo dõi" msgid "Show trackable assemblies" msgstr "" -#: src/tables/build/BuildAllocatedStockTable.tsx:67 +#: src/tables/build/BuildAllocatedStockTable.tsx:64 msgid "Allocated to Output" msgstr "" -#: src/tables/build/BuildAllocatedStockTable.tsx:68 +#: src/tables/build/BuildAllocatedStockTable.tsx:65 msgid "Show items allocated to a build output" msgstr "" @@ -9472,50 +9538,68 @@ msgstr "" #~ msgid "Include orders for part variants" #~ msgstr "Include orders for part variants" -#: src/tables/build/BuildAllocatedStockTable.tsx:97 +#: src/tables/build/BuildAllocatedStockTable.tsx:94 #: src/tables/part/PartBuildAllocationsTable.tsx:84 #: src/tables/part/PartPurchaseOrdersTable.tsx:132 #: src/tables/part/PartSalesAllocationsTable.tsx:69 #: src/tables/sales/SalesOrderAllocationTable.tsx:122 -#: src/tables/sales/SalesOrderShipmentTable.tsx:130 +#: src/tables/sales/SalesOrderShipmentTable.tsx:151 msgid "Order Status" msgstr "" +#: src/tables/build/BuildAllocatedStockTable.tsx:164 +#: src/tables/build/BuildLineTable.tsx:651 +msgid "Edit Stock Allocation" +msgstr "" + #: src/tables/build/BuildAllocatedStockTable.tsx:164 #~ msgid "Edit Build Item" #~ msgstr "Edit Build Item" -#: src/tables/build/BuildAllocatedStockTable.tsx:167 -#: src/tables/build/BuildLineTable.tsx:650 -msgid "Edit Stock Allocation" -msgstr "" - #: src/tables/build/BuildAllocatedStockTable.tsx:174 #~ msgid "Delete Build Item" #~ msgstr "Delete Build Item" -#: src/tables/build/BuildAllocatedStockTable.tsx:180 -#: src/tables/build/BuildLineTable.tsx:663 -msgid "Delete Stock Allocation" +#: src/tables/build/BuildAllocatedStockTable.tsx:177 +#: src/tables/build/BuildLineTable.tsx:664 +#: src/tables/sales/SalesOrderAllocationTable.tsx:218 +msgid "Remove Allocated Stock" msgstr "" -#: src/tables/build/BuildAllocatedStockTable.tsx:239 +#: src/tables/build/BuildAllocatedStockTable.tsx:180 +#: src/tables/build/BuildLineTable.tsx:663 +#~ msgid "Delete Stock Allocation" +#~ msgstr "Delete Stock Allocation" + +#: src/tables/build/BuildAllocatedStockTable.tsx:182 +#: src/tables/build/BuildLineTable.tsx:669 +#: src/tables/sales/SalesOrderAllocationTable.tsx:221 +msgid "Are you sure you want to remove this allocated stock from the order?" +msgstr "" + +#: src/tables/build/BuildAllocatedStockTable.tsx:242 msgid "Consume" msgstr "" +#: src/tables/build/BuildAllocatedStockTable.tsx:259 +#: src/tables/build/BuildLineTable.tsx:112 +#: src/tables/sales/SalesOrderAllocationTable.tsx:248 +msgid "Remove allocated stock" +msgstr "" + #: src/tables/build/BuildLineTable.tsx:59 #~ msgid "Show lines with available stock" #~ msgstr "Show lines with available stock" -#: src/tables/build/BuildLineTable.tsx:120 +#: src/tables/build/BuildLineTable.tsx:121 msgid "View Stock Item" msgstr "" -#: src/tables/build/BuildLineTable.tsx:183 +#: src/tables/build/BuildLineTable.tsx:184 msgid "Show fully allocated lines" msgstr "" -#: src/tables/build/BuildLineTable.tsx:188 +#: src/tables/build/BuildLineTable.tsx:189 msgid "Show fully consumed lines" msgstr "" @@ -9523,124 +9607,124 @@ msgstr "" #~ msgid "Show allocated lines" #~ msgstr "Show allocated lines" -#: src/tables/build/BuildLineTable.tsx:193 +#: src/tables/build/BuildLineTable.tsx:194 msgid "Show items with sufficient available stock" msgstr "" -#: src/tables/build/BuildLineTable.tsx:198 +#: src/tables/build/BuildLineTable.tsx:199 msgid "Show consumable lines" msgstr "" -#: src/tables/build/BuildLineTable.tsx:203 +#: src/tables/build/BuildLineTable.tsx:204 msgid "Show optional lines" msgstr "" -#: src/tables/build/BuildLineTable.tsx:212 +#: src/tables/build/BuildLineTable.tsx:213 #: src/tables/part/PartTable.tsx:233 msgid "Testable" msgstr "" -#: src/tables/build/BuildLineTable.tsx:217 +#: src/tables/build/BuildLineTable.tsx:218 #: src/tables/stock/StockItemTable.tsx:388 msgid "Tracked" msgstr "" -#: src/tables/build/BuildLineTable.tsx:218 +#: src/tables/build/BuildLineTable.tsx:219 msgid "Show tracked lines" msgstr "" -#: src/tables/build/BuildLineTable.tsx:223 +#: src/tables/build/BuildLineTable.tsx:224 msgid "Show items with stock on order" msgstr "" -#: src/tables/build/BuildLineTable.tsx:258 +#: src/tables/build/BuildLineTable.tsx:259 #: src/tables/sales/SalesOrderLineItemTable.tsx:172 msgid "In production" msgstr "" -#: src/tables/build/BuildLineTable.tsx:286 +#: src/tables/build/BuildLineTable.tsx:287 msgid "Insufficient stock" msgstr "" -#: src/tables/build/BuildLineTable.tsx:302 +#: src/tables/build/BuildLineTable.tsx:303 #: src/tables/sales/SalesOrderLineItemTable.tsx:160 #: src/tables/stock/StockItemTable.tsx:191 msgid "No stock available" msgstr "" -#: src/tables/build/BuildLineTable.tsx:375 +#: src/tables/build/BuildLineTable.tsx:376 msgid "Gets Inherited" msgstr "" -#: src/tables/build/BuildLineTable.tsx:388 +#: src/tables/build/BuildLineTable.tsx:389 msgid "Unit Quantity" msgstr "" -#: src/tables/build/BuildLineTable.tsx:415 +#: src/tables/build/BuildLineTable.tsx:416 msgid "Setup Quantity" msgstr "" -#: src/tables/build/BuildLineTable.tsx:424 +#: src/tables/build/BuildLineTable.tsx:425 msgid "Attrition" msgstr "" -#: src/tables/build/BuildLineTable.tsx:432 +#: src/tables/build/BuildLineTable.tsx:433 msgid "Rounding Multiple" msgstr "" -#: src/tables/build/BuildLineTable.tsx:441 +#: src/tables/build/BuildLineTable.tsx:442 msgid "BOM Information" msgstr "" -#: src/tables/build/BuildLineTable.tsx:515 +#: src/tables/build/BuildLineTable.tsx:516 #: src/tables/part/PartBuildAllocationsTable.tsx:102 msgid "Fully allocated" msgstr "" -#: src/tables/build/BuildLineTable.tsx:563 +#: src/tables/build/BuildLineTable.tsx:564 #: src/tables/sales/SalesOrderLineItemTable.tsx:311 msgid "Create Build Order" msgstr "" -#: src/tables/build/BuildLineTable.tsx:592 +#: src/tables/build/BuildLineTable.tsx:593 msgid "Auto allocation in progress" msgstr "" -#: src/tables/build/BuildLineTable.tsx:595 -#: src/tables/build/BuildLineTable.tsx:802 +#: src/tables/build/BuildLineTable.tsx:596 +#: src/tables/build/BuildLineTable.tsx:809 msgid "Auto Allocate Stock" msgstr "" -#: src/tables/build/BuildLineTable.tsx:596 +#: src/tables/build/BuildLineTable.tsx:597 msgid "Automatically allocate stock to this build according to the selected options" msgstr "" -#: src/tables/build/BuildLineTable.tsx:616 -#: src/tables/build/BuildLineTable.tsx:630 -#: src/tables/build/BuildLineTable.tsx:751 -#: src/tables/build/BuildLineTable.tsx:852 +#: src/tables/build/BuildLineTable.tsx:617 +#: src/tables/build/BuildLineTable.tsx:631 +#: src/tables/build/BuildLineTable.tsx:758 +#: src/tables/build/BuildLineTable.tsx:859 #: src/tables/build/BuildOutputTable.tsx:355 #: src/tables/build/BuildOutputTable.tsx:360 msgid "Deallocate Stock" msgstr "" -#: src/tables/build/BuildLineTable.tsx:632 +#: src/tables/build/BuildLineTable.tsx:633 msgid "Deallocate all untracked stock for this build order" msgstr "" -#: src/tables/build/BuildLineTable.tsx:634 +#: src/tables/build/BuildLineTable.tsx:635 msgid "Deallocate stock from the selected line item" msgstr "" -#: src/tables/build/BuildLineTable.tsx:638 +#: src/tables/build/BuildLineTable.tsx:639 msgid "Stock has been deallocated" msgstr "" -#: src/tables/build/BuildLineTable.tsx:771 +#: src/tables/build/BuildLineTable.tsx:778 msgid "Build Stock" msgstr "" -#: src/tables/build/BuildLineTable.tsx:784 +#: src/tables/build/BuildLineTable.tsx:791 #: src/tables/sales/SalesOrderLineItemTable.tsx:487 msgid "View Part" msgstr "" @@ -9739,7 +9823,7 @@ msgid "Serialize Build Output" msgstr "" #: src/tables/build/BuildOutputTable.tsx:405 -#: src/tables/part/PartTestResultTable.tsx:310 +#: src/tables/part/PartTestResultTable.tsx:318 #: src/tables/stock/StockItemTable.tsx:328 msgid "Filter by stock status" msgstr "" @@ -9964,8 +10048,8 @@ msgid "View Item" msgstr "" #: src/tables/general/ExtraLineItemTable.tsx:95 -#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:299 -#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:403 +#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:300 +#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:405 #: src/tables/sales/ReturnOrderLineItemTable.tsx:83 #: src/tables/sales/ReturnOrderLineItemTable.tsx:187 #: src/tables/sales/SalesOrderLineItemTable.tsx:252 @@ -9974,14 +10058,14 @@ msgid "Add Line Item" msgstr "Thêm hạng mục" #: src/tables/general/ExtraLineItemTable.tsx:108 -#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:320 +#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:322 #: src/tables/sales/ReturnOrderLineItemTable.tsx:96 #: src/tables/sales/SalesOrderLineItemTable.tsx:271 msgid "Edit Line Item" msgstr "Sửa hạng mục" #: src/tables/general/ExtraLineItemTable.tsx:117 -#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:329 +#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:331 #: src/tables/sales/ReturnOrderLineItemTable.tsx:105 #: src/tables/sales/SalesOrderLineItemTable.tsx:280 msgid "Delete Line Item" @@ -9991,6 +10075,137 @@ msgstr "" msgid "Add Extra Line Item" msgstr "" +#: src/tables/general/ParameterTable.tsx:88 +msgid "Internal Units" +msgstr "" + +#: src/tables/general/ParameterTable.tsx:108 +#: src/tables/general/ParameterTable.tsx:123 +msgid "Updated By" +msgstr "" + +#: src/tables/general/ParameterTable.tsx:118 +msgid "Show parameters for enabled templates" +msgstr "" + +#: src/tables/general/ParameterTable.tsx:124 +msgid "Filter by user who last updated the parameter" +msgstr "" + +#: src/tables/general/ParameterTable.tsx:154 +msgid "Import Parameters" +msgstr "" + +#: src/tables/general/ParameterTable.tsx:164 +#: src/tables/general/ParametricDataTable.tsx:261 +#: src/tables/general/ParametricDataTable.tsx:392 +msgid "Add Parameter" +msgstr "" + +#: src/tables/general/ParameterTable.tsx:175 +#: src/tables/general/ParameterTable.tsx:222 +#: src/tables/general/ParametricDataTable.tsx:285 +msgid "Edit Parameter" +msgstr "" + +#: src/tables/general/ParameterTable.tsx:183 +#: src/tables/general/ParameterTable.tsx:230 +msgid "Delete Parameter" +msgstr "" + +#: src/tables/general/ParameterTable.tsx:191 +msgid "Add Parameters" +msgstr "" + +#: src/tables/general/ParameterTable.tsx:197 +msgid "Create Parameter" +msgstr "" + +#: src/tables/general/ParameterTable.tsx:199 +msgid "Create a new parameter" +msgstr "" + +#: src/tables/general/ParameterTable.tsx:208 +msgid "Import parameters from a file" +msgstr "" + +#: src/tables/general/ParameterTemplateTable.tsx:48 +#: src/tables/general/ParameterTemplateTable.tsx:197 +msgid "Add Parameter Template" +msgstr "" + +#: src/tables/general/ParameterTemplateTable.tsx:64 +msgid "Duplicate Parameter Template" +msgstr "" + +#: src/tables/general/ParameterTemplateTable.tsx:78 +msgid "Delete Parameter Template" +msgstr "" + +#: src/tables/general/ParameterTemplateTable.tsx:85 +msgid "Edit Parameter Template" +msgstr "" + +#: src/tables/general/ParameterTemplateTable.tsx:138 +msgid "Checkbox" +msgstr "" + +#: src/tables/general/ParameterTemplateTable.tsx:139 +msgid "Show checkbox templates" +msgstr "" + +#: src/tables/general/ParameterTemplateTable.tsx:143 +msgid "Has choices" +msgstr "" + +#: src/tables/general/ParameterTemplateTable.tsx:144 +msgid "Show templates with choices" +msgstr "" + +#: src/tables/general/ParameterTemplateTable.tsx:148 +#: src/tables/part/PartTable.tsx:245 +msgid "Has Units" +msgstr "Có đơn vị" + +#: src/tables/general/ParameterTemplateTable.tsx:149 +msgid "Show templates with units" +msgstr "" + +#: src/tables/general/ParameterTemplateTable.tsx:154 +msgid "Show enabled templates" +msgstr "" + +#: src/tables/general/ParameterTemplateTable.tsx:158 +#: src/tables/settings/ImportSessionTable.tsx:111 +#: src/tables/settings/TemplateTable.tsx:368 +msgid "Model Type" +msgstr "" + +#: src/tables/general/ParameterTemplateTable.tsx:159 +msgid "Filter by model type" +msgstr "" + +#: src/tables/general/ParametricDataTable.tsx:79 +msgid "Click to edit" +msgstr "" + +#: src/tables/general/ParametricDataTableFilters.tsx:36 +msgid "True" +msgstr "" + +#: src/tables/general/ParametricDataTableFilters.tsx:37 +msgid "False" +msgstr "" + +#: src/tables/general/ParametricDataTableFilters.tsx:47 +#: src/tables/general/ParametricDataTableFilters.tsx:80 +msgid "Select a choice" +msgstr "" + +#: src/tables/general/ParametricDataTableFilters.tsx:100 +msgid "Enter a value" +msgstr "" + #: src/tables/machine/MachineListTable.tsx:133 msgid "Machine restarted" msgstr "" @@ -10071,7 +10286,7 @@ msgid "Initialized" msgstr "" #: src/tables/machine/MachineListTable.tsx:410 -#: src/tables/machine/MachineTypeTable.tsx:307 +#: src/tables/machine/MachineTypeTable.tsx:305 msgid "No errors reported" msgstr "" @@ -10132,15 +10347,15 @@ msgstr "" #~ msgid "Machine type information" #~ msgstr "Machine type information" -#: src/tables/machine/MachineTypeTable.tsx:128 +#: src/tables/machine/MachineTypeTable.tsx:126 msgid "Not Found" msgstr "" -#: src/tables/machine/MachineTypeTable.tsx:131 +#: src/tables/machine/MachineTypeTable.tsx:129 msgid "Machine type not found." msgstr "" -#: src/tables/machine/MachineTypeTable.tsx:141 +#: src/tables/machine/MachineTypeTable.tsx:139 msgid "Machine Type Information" msgstr "" @@ -10148,34 +10363,34 @@ msgstr "" #~ msgid "Available drivers" #~ msgstr "Available drivers" -#: src/tables/machine/MachineTypeTable.tsx:156 -#: src/tables/machine/MachineTypeTable.tsx:255 +#: src/tables/machine/MachineTypeTable.tsx:154 +#: src/tables/machine/MachineTypeTable.tsx:253 msgid "Slug" msgstr "" -#: src/tables/machine/MachineTypeTable.tsx:167 -#: src/tables/machine/MachineTypeTable.tsx:276 +#: src/tables/machine/MachineTypeTable.tsx:165 +#: src/tables/machine/MachineTypeTable.tsx:274 msgid "Provider plugin" msgstr "" -#: src/tables/machine/MachineTypeTable.tsx:179 -#: src/tables/machine/MachineTypeTable.tsx:288 +#: src/tables/machine/MachineTypeTable.tsx:177 +#: src/tables/machine/MachineTypeTable.tsx:286 msgid "Provider file" msgstr "" -#: src/tables/machine/MachineTypeTable.tsx:194 +#: src/tables/machine/MachineTypeTable.tsx:192 msgid "Available Drivers" msgstr "" -#: src/tables/machine/MachineTypeTable.tsx:234 +#: src/tables/machine/MachineTypeTable.tsx:232 msgid "Machine driver not found." msgstr "" -#: src/tables/machine/MachineTypeTable.tsx:242 +#: src/tables/machine/MachineTypeTable.tsx:240 msgid "Machine driver information" msgstr "" -#: src/tables/machine/MachineTypeTable.tsx:262 +#: src/tables/machine/MachineTypeTable.tsx:260 msgid "Machine type" msgstr "" @@ -10187,15 +10402,15 @@ msgstr "" #~ msgid "Machine driver detail" #~ msgstr "Machine driver detail" -#: src/tables/machine/MachineTypeTable.tsx:362 +#: src/tables/machine/MachineTypeTable.tsx:360 msgid "Builtin type" msgstr "" -#: src/tables/machine/MachineTypeTable.tsx:371 +#: src/tables/machine/MachineTypeTable.tsx:369 msgid "Machine Type Detail" msgstr "" -#: src/tables/machine/MachineTypeTable.tsx:381 +#: src/tables/machine/MachineTypeTable.tsx:379 msgid "Machine Driver Detail" msgstr "" @@ -10213,8 +10428,16 @@ msgstr "Thông báo" msgid "Message" msgstr "Nội dụng tin nhắn" -#: src/tables/part/ParametricPartTable.tsx:78 -msgid "Click to edit" +#: src/tables/part/ParametricPartTable.tsx:20 +msgid "Show active parts" +msgstr "" + +#: src/tables/part/ParametricPartTable.tsx:25 +msgid "Show locked parts" +msgstr "" + +#: src/tables/part/ParametricPartTable.tsx:30 +msgid "Show assembly parts" msgstr "" #: src/tables/part/ParametricPartTable.tsx:82 @@ -10222,43 +10445,14 @@ msgstr "" #~ msgstr "Edit parameter" #: src/tables/part/ParametricPartTable.tsx:244 -msgid "Add Part Parameter" -msgstr "" +#~ msgid "Add Part Parameter" +#~ msgstr "Add Part Parameter" #: src/tables/part/ParametricPartTable.tsx:258 #: src/tables/part/PartParameterTable.tsx:164 #: src/tables/part/PartParameterTable.tsx:187 -msgid "Edit Part Parameter" -msgstr "Sửa tham số phụ kiện" - -#: src/tables/part/ParametricPartTable.tsx:355 -msgid "Show active parts" -msgstr "" - -#: src/tables/part/ParametricPartTable.tsx:360 -msgid "Show locked parts" -msgstr "" - -#: src/tables/part/ParametricPartTable.tsx:365 -msgid "Show assembly parts" -msgstr "" - -#: src/tables/part/ParametricPartTableFilters.tsx:36 -msgid "True" -msgstr "" - -#: src/tables/part/ParametricPartTableFilters.tsx:37 -msgid "False" -msgstr "" - -#: src/tables/part/ParametricPartTableFilters.tsx:47 -#: src/tables/part/ParametricPartTableFilters.tsx:80 -msgid "Select a choice" -msgstr "" - -#: src/tables/part/ParametricPartTableFilters.tsx:100 -msgid "Enter a value" -msgstr "" +#~ msgid "Edit Part Parameter" +#~ msgstr "Edit Part Parameter" #: src/tables/part/PartBuildAllocationsTable.tsx:64 msgid "Assembly IPN" @@ -10273,7 +10467,7 @@ msgid "Required Stock" msgstr "" #: src/tables/part/PartBuildAllocationsTable.tsx:124 -#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:381 +#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:383 msgid "View Build Order" msgstr "" @@ -10332,85 +10526,22 @@ msgstr "" msgid "Delete Category Parameter" msgstr "" -#: src/tables/part/PartCategoryTemplateTable.tsx:87 -msgid "Parameter Template" -msgstr "" - #: src/tables/part/PartCategoryTemplateTable.tsx:93 #~ msgid "[{0}]" #~ msgstr "[{0}]" -#: src/tables/part/PartParameterTable.tsx:108 -msgid "Internal Units" -msgstr "" - -#: src/tables/part/PartParameterTable.tsx:128 -#: src/tables/part/PartParameterTable.tsx:138 -msgid "Updated By" -msgstr "" - -#: src/tables/part/PartParameterTable.tsx:139 -msgid "Filter by user who last updated the parameter" -msgstr "" - #: src/tables/part/PartParameterTable.tsx:148 -msgid "New Part Parameter" -msgstr "" +#~ msgid "New Part Parameter" +#~ msgstr "New Part Parameter" #: src/tables/part/PartParameterTable.tsx:173 #: src/tables/part/PartParameterTable.tsx:195 -msgid "Delete Part Parameter" -msgstr "Xóa tham số phụ kiện" +#~ msgid "Delete Part Parameter" +#~ msgstr "Delete Part Parameter" #: src/tables/part/PartParameterTable.tsx:213 -msgid "Add parameter" -msgstr "" - -#: src/tables/part/PartParameterTable.tsx:232 -msgid "Part parameters cannot be edited, as the part is locked" -msgstr "" - -#: src/tables/part/PartParameterTemplateTable.tsx:36 -msgid "Checkbox" -msgstr "" - -#: src/tables/part/PartParameterTemplateTable.tsx:37 -msgid "Show checkbox templates" -msgstr "" - -#: src/tables/part/PartParameterTemplateTable.tsx:41 -msgid "Has choices" -msgstr "" - -#: src/tables/part/PartParameterTemplateTable.tsx:42 -msgid "Show templates with choices" -msgstr "" - -#: src/tables/part/PartParameterTemplateTable.tsx:46 -#: src/tables/part/PartTable.tsx:245 -msgid "Has Units" -msgstr "Có đơn vị" - -#: src/tables/part/PartParameterTemplateTable.tsx:47 -msgid "Show templates with units" -msgstr "" - -#: src/tables/part/PartParameterTemplateTable.tsx:91 -#: src/tables/part/PartParameterTemplateTable.tsx:166 -msgid "Add Parameter Template" -msgstr "" - -#: src/tables/part/PartParameterTemplateTable.tsx:105 -msgid "Duplicate Parameter Template" -msgstr "" - -#: src/tables/part/PartParameterTemplateTable.tsx:117 -msgid "Edit Parameter Template" -msgstr "" - -#: src/tables/part/PartParameterTemplateTable.tsx:128 -msgid "Delete Parameter Template" -msgstr "" +#~ msgid "Add parameter" +#~ msgstr "Add parameter" #: src/tables/part/PartParameterTemplateTable.tsx:141 #~ msgid "Add parameter template" @@ -10430,7 +10561,7 @@ msgid "Show received items" msgstr "" #: src/tables/part/PartSalesAllocationsTable.tsx:90 -#: src/tables/sales/SalesOrderShipmentTable.tsx:218 +#: src/tables/sales/SalesOrderShipmentTable.tsx:263 msgid "View Sales Order" msgstr "" @@ -10617,8 +10748,8 @@ msgstr "" #: src/tables/part/PartTestResultTable.tsx:103 #: src/tables/part/PartTestResultTable.tsx:181 -#: src/tables/part/PartTestResultTable.tsx:320 -#: src/tables/part/PartTestResultTable.tsx:334 +#: src/tables/part/PartTestResultTable.tsx:328 +#: src/tables/part/PartTestResultTable.tsx:342 #: src/tables/stock/StockItemTestResultTable.tsx:296 #: src/tables/stock/StockItemTestResultTable.tsx:368 #: src/tables/stock/StockItemTestResultTable.tsx:429 @@ -10643,7 +10774,7 @@ msgstr "" msgid "No Result" msgstr "" -#: src/tables/part/PartTestResultTable.tsx:298 +#: src/tables/part/PartTestResultTable.tsx:306 msgid "Show build outputs currently in production" msgstr "" @@ -11013,36 +11144,45 @@ msgstr "Đã cài đặt" #~ msgid "Parameter updated" #~ msgstr "Parameter updated" -#: src/tables/purchasing/ManufacturerPartParameterTable.tsx:63 -#: src/tables/purchasing/ManufacturerPartParameterTable.tsx:112 -msgid "Add Parameter" -msgstr "" - #: src/tables/purchasing/ManufacturerPartParameterTable.tsx:73 #~ msgid "Parameter deleted" #~ msgstr "Parameter deleted" -#: src/tables/purchasing/ManufacturerPartParameterTable.tsx:74 -msgid "Edit Parameter" -msgstr "" - #: src/tables/purchasing/ManufacturerPartParameterTable.tsx:74 #~ msgid "Are you sure you want to delete this parameter?" #~ msgstr "Are you sure you want to delete this parameter?" -#: src/tables/purchasing/ManufacturerPartParameterTable.tsx:82 -msgid "Delete Parameter" +#: src/tables/purchasing/ManufacturerPartParametricTable.tsx:34 +#: src/tables/purchasing/ManufacturerPartTable.tsx:82 +#: src/tables/purchasing/SupplierPartTable.tsx:99 +msgid "MPN" +msgstr "MPN" + +#: src/tables/purchasing/ManufacturerPartParametricTable.tsx:44 +#: src/tables/purchasing/ManufacturerPartTable.tsx:134 +#: src/tables/purchasing/SupplierPartTable.tsx:220 +msgid "Active Part" +msgstr "" + +#: src/tables/purchasing/ManufacturerPartParametricTable.tsx:45 +#: src/tables/purchasing/ManufacturerPartTable.tsx:135 +msgid "Show manufacturer parts for active internal parts." +msgstr "" + +#: src/tables/purchasing/ManufacturerPartParametricTable.tsx:50 +#: src/tables/purchasing/ManufacturerPartTable.tsx:140 +msgid "Active Manufacturer" +msgstr "" + +#: src/tables/purchasing/ManufacturerPartParametricTable.tsx:51 +#: src/tables/purchasing/ManufacturerPartTable.tsx:142 +msgid "Show manufacturer parts for active manufacturers." msgstr "" #: src/tables/purchasing/ManufacturerPartTable.tsx:63 #~ msgid "Create Manufacturer Part" #~ msgstr "Create Manufacturer Part" -#: src/tables/purchasing/ManufacturerPartTable.tsx:82 -#: src/tables/purchasing/SupplierPartTable.tsx:99 -msgid "MPN" -msgstr "MPN" - #: src/tables/purchasing/ManufacturerPartTable.tsx:100 #~ msgid "Manufacturer part updated" #~ msgstr "Manufacturer part updated" @@ -11055,25 +11195,8 @@ msgstr "MPN" #~ msgid "Are you sure you want to remove this manufacturer part?" #~ msgstr "Are you sure you want to remove this manufacturer part?" -#: src/tables/purchasing/ManufacturerPartTable.tsx:134 -#: src/tables/purchasing/SupplierPartTable.tsx:220 -msgid "Active Part" -msgstr "" - -#: src/tables/purchasing/ManufacturerPartTable.tsx:135 -msgid "Show manufacturer parts for active internal parts." -msgstr "" - -#: src/tables/purchasing/ManufacturerPartTable.tsx:140 -msgid "Active Manufacturer" -msgstr "" - -#: src/tables/purchasing/ManufacturerPartTable.tsx:142 -msgid "Show manufacturer parts for active manufacturers." -msgstr "" - #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:115 -#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:397 +#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:399 msgid "Import Line Items" msgstr "" @@ -11099,11 +11222,11 @@ msgstr "" #~ msgid "Add line item" #~ msgstr "Add line item" -#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:350 +#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:352 msgid "Receive line item" msgstr "Nhận hạng mục" -#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:414 +#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:416 msgid "Receive items" msgstr "Nhận hàng hóa" @@ -11201,25 +11324,25 @@ msgid "Not shipped" msgstr "" #: src/tables/sales/SalesOrderAllocationTable.tsx:211 -#: src/tables/sales/SalesOrderAllocationTable.tsx:229 +#: src/tables/sales/SalesOrderAllocationTable.tsx:235 msgid "Edit Allocation" msgstr "" #: src/tables/sales/SalesOrderAllocationTable.tsx:218 #: src/tables/sales/SalesOrderAllocationTable.tsx:241 -msgid "Delete Allocation" -msgstr "" +#~ msgid "Delete Allocation" +#~ msgstr "Delete Allocation" -#: src/tables/sales/SalesOrderAllocationTable.tsx:252 -#: src/tables/sales/SalesOrderAllocationTable.tsx:253 +#: src/tables/sales/SalesOrderAllocationTable.tsx:261 +#: src/tables/sales/SalesOrderAllocationTable.tsx:262 msgid "View Shipment" msgstr "" -#: src/tables/sales/SalesOrderAllocationTable.tsx:308 +#: src/tables/sales/SalesOrderAllocationTable.tsx:317 msgid "Assign to Shipment" msgstr "" -#: src/tables/sales/SalesOrderAllocationTable.tsx:324 +#: src/tables/sales/SalesOrderAllocationTable.tsx:333 msgid "Assign to shipment" msgstr "" @@ -11259,35 +11382,35 @@ msgstr "" #~ msgid "Delete Shipment" #~ msgstr "Delete Shipment" -#: src/tables/sales/SalesOrderShipmentTable.tsx:72 +#: src/tables/sales/SalesOrderShipmentTable.tsx:79 msgid "Create Shipment" msgstr "" -#: src/tables/sales/SalesOrderShipmentTable.tsx:143 +#: src/tables/sales/SalesOrderShipmentTable.tsx:164 msgid "Items" msgstr "" -#: src/tables/sales/SalesOrderShipmentTable.tsx:203 +#: src/tables/sales/SalesOrderShipmentTable.tsx:248 msgid "Edit shipment" msgstr "" -#: src/tables/sales/SalesOrderShipmentTable.tsx:211 +#: src/tables/sales/SalesOrderShipmentTable.tsx:256 msgid "Cancel shipment" msgstr "" -#: src/tables/sales/SalesOrderShipmentTable.tsx:241 +#: src/tables/sales/SalesOrderShipmentTable.tsx:286 msgid "Add shipment" msgstr "" -#: src/tables/sales/SalesOrderShipmentTable.tsx:255 +#: src/tables/sales/SalesOrderShipmentTable.tsx:300 msgid "Show shipments which have been checked" msgstr "" -#: src/tables/sales/SalesOrderShipmentTable.tsx:260 +#: src/tables/sales/SalesOrderShipmentTable.tsx:305 msgid "Show shipments which have been shipped" msgstr "" -#: src/tables/sales/SalesOrderShipmentTable.tsx:265 +#: src/tables/sales/SalesOrderShipmentTable.tsx:310 msgid "Show shipments which have been delivered" msgstr "" @@ -11621,11 +11744,6 @@ msgstr "" msgid "Imported Rows" msgstr "" -#: src/tables/settings/ImportSessionTable.tsx:111 -#: src/tables/settings/TemplateTable.tsx:368 -msgid "Model Type" -msgstr "" - #: src/tables/settings/ImportSessionTable.tsx:112 #: src/tables/settings/TemplateTable.tsx:369 msgid "Filter by target model type" diff --git a/src/frontend/src/locales/zh_Hans/messages.po b/src/frontend/src/locales/zh_Hans/messages.po index ecc5d7675f..37e479fd47 100644 --- a/src/frontend/src/locales/zh_Hans/messages.po +++ b/src/frontend/src/locales/zh_Hans/messages.po @@ -8,7 +8,7 @@ msgstr "" "Language: zh\n" "Project-Id-Version: inventree\n" "Report-Msgid-Bugs-To: \n" -"PO-Revision-Date: 2025-11-19 19:39\n" +"PO-Revision-Date: 2025-12-07 07:36\n" "Last-Translator: \n" "Language-Team: Chinese Simplified\n" "Plural-Forms: nplurals=1; plural=0;\n" @@ -30,7 +30,7 @@ msgid "Edit" msgstr "编辑" #: lib/components/RowActions.tsx:56 -#: src/components/forms/ApiForm.tsx:735 +#: src/components/forms/ApiForm.tsx:754 #: src/components/items/ActionDropdown.tsx:257 #: src/components/items/RoleTable.tsx:155 #: src/hooks/UseForm.tsx:164 @@ -56,24 +56,24 @@ msgstr "取消" #: lib/components/RowActions.tsx:136 #: src/components/nav/NavigationDrawer.tsx:190 -#: src/forms/PurchaseOrderForms.tsx:802 +#: src/forms/PurchaseOrderForms.tsx:854 #: src/forms/StockForms.tsx:796 #: src/forms/StockForms.tsx:843 -#: src/forms/StockForms.tsx:889 -#: src/forms/StockForms.tsx:928 -#: src/forms/StockForms.tsx:964 -#: src/forms/StockForms.tsx:1050 +#: src/forms/StockForms.tsx:896 +#: src/forms/StockForms.tsx:942 +#: src/forms/StockForms.tsx:980 +#: src/forms/StockForms.tsx:1066 #: src/pages/Index/Settings/AccountSettings/MFASettings.tsx:962 msgid "Actions" msgstr "操作" #: lib/components/SearchInput.tsx:34 -#: src/components/forms/fields/RelatedModelField.tsx:408 +#: src/components/forms/fields/RelatedModelField.tsx:479 #: src/components/nav/Header.tsx:169 #: src/components/wizards/ImportPartWizard.tsx:200 #: src/components/wizards/ImportPartWizard.tsx:233 -#: src/pages/Index/Settings/UserSettings.tsx:74 -#: src/pages/part/PartDetail.tsx:1155 +#: src/pages/Index/Settings/UserSettings.tsx:75 +#: src/pages/part/PartDetail.tsx:1176 msgid "Search" msgstr "搜索" @@ -95,7 +95,7 @@ msgstr "是" msgid "No" msgstr "否" -#: lib/enums/ModelInformation.tsx:28 +#: lib/enums/ModelInformation.tsx:29 #: src/components/wizards/OrderPartsWizard.tsx:279 #: src/forms/BuildForms.tsx:332 #: src/forms/BuildForms.tsx:407 @@ -103,208 +103,234 @@ msgstr "否" #: src/forms/BuildForms.tsx:630 #: src/forms/BuildForms.tsx:793 #: src/forms/BuildForms.tsx:896 -#: src/forms/PurchaseOrderForms.tsx:798 +#: src/forms/PurchaseOrderForms.tsx:850 #: src/forms/ReturnOrderForms.tsx:242 -#: src/forms/SalesOrderForms.tsx:305 +#: src/forms/SalesOrderForms.tsx:384 #: src/forms/StockForms.tsx:360 #: src/forms/StockForms.tsx:791 #: src/forms/StockForms.tsx:838 -#: src/forms/StockForms.tsx:884 -#: src/forms/StockForms.tsx:923 -#: src/forms/StockForms.tsx:959 -#: src/forms/StockForms.tsx:1002 -#: src/forms/StockForms.tsx:1046 -#: src/forms/StockForms.tsx:1094 -#: src/forms/StockForms.tsx:1138 -#: src/pages/build/BuildDetail.tsx:200 -#: src/pages/part/PartDetail.tsx:1207 +#: src/forms/StockForms.tsx:891 +#: src/forms/StockForms.tsx:937 +#: src/forms/StockForms.tsx:975 +#: src/forms/StockForms.tsx:1018 +#: src/forms/StockForms.tsx:1062 +#: src/forms/StockForms.tsx:1110 +#: src/forms/StockForms.tsx:1154 +#: src/pages/build/BuildDetail.tsx:201 +#: src/pages/part/PartDetail.tsx:1228 #: src/tables/ColumnRenderers.tsx:91 +#: src/tables/part/PartTestResultTable.tsx:247 #: src/tables/part/RelatedPartTable.tsx:53 #: src/tables/stock/StockTrackingTable.tsx:87 msgid "Part" msgstr "零件" -#: lib/enums/ModelInformation.tsx:29 +#: lib/enums/ModelInformation.tsx:30 #: lib/enums/Roles.tsx:35 #: src/components/nav/NavigationDrawer.tsx:70 #: src/defaults/links.tsx:36 -#: src/pages/Index/Settings/SystemSettings.tsx:190 -#: src/pages/part/CategoryDetail.tsx:132 -#: src/pages/part/CategoryDetail.tsx:277 -#: src/pages/part/CategoryDetail.tsx:323 -#: src/pages/part/CategoryDetail.tsx:354 -#: src/pages/part/PartDetail.tsx:965 +#: src/pages/Index/Settings/SystemSettings.tsx:197 +#: src/pages/part/CategoryDetail.tsx:135 +#: src/pages/part/CategoryDetail.tsx:285 +#: src/pages/part/CategoryDetail.tsx:340 +#: src/pages/part/CategoryDetail.tsx:371 +#: src/pages/part/PartDetail.tsx:978 msgid "Parts" msgstr "零件" #: lib/enums/ModelInformation.tsx:37 #: src/pages/Index/Settings/AdminCenter/PartParameterPanel.tsx:13 -msgid "Part Parameter Template" -msgstr "零件参数模板" +#~ msgid "Part Parameter Template" +#~ msgstr "Part Parameter Template" #: lib/enums/ModelInformation.tsx:38 -msgid "Part Parameter Templates" -msgstr "零件参数模板" +#~ msgid "Part Parameter Templates" +#~ msgstr "Part Parameter Templates" + +#: lib/enums/ModelInformation.tsx:39 +msgid "Parameter" +msgstr "" + +#: lib/enums/ModelInformation.tsx:40 +#: src/components/panels/ParametersPanel.tsx:19 +#: src/components/wizards/ImportPartWizard.tsx:807 +#: src/pages/Index/Settings/AdminCenter/Index.tsx:195 +#: src/pages/Index/Settings/SystemSettings.tsx:191 +#: src/pages/part/PartDetail.tsx:943 +msgid "Parameters" +msgstr "参数" #: lib/enums/ModelInformation.tsx:45 +#: src/tables/part/PartCategoryTemplateTable.tsx:87 +msgid "Parameter Template" +msgstr "参数模板" + +#: lib/enums/ModelInformation.tsx:46 +#: src/pages/Index/Settings/AdminCenter/ParameterPanel.tsx:13 +msgid "Parameter Templates" +msgstr "" + +#: lib/enums/ModelInformation.tsx:52 msgid "Part Test Template" msgstr "零件测试模板" -#: lib/enums/ModelInformation.tsx:46 +#: lib/enums/ModelInformation.tsx:53 msgid "Part Test Templates" msgstr "零件测试模板" -#: lib/enums/ModelInformation.tsx:52 +#: lib/enums/ModelInformation.tsx:59 #: src/components/wizards/OrderPartsWizard.tsx:290 -#: src/pages/company/SupplierPartDetail.tsx:413 +#: src/pages/company/SupplierPartDetail.tsx:418 #: src/pages/stock/StockDetail.tsx:289 -#: src/tables/build/BuildAllocatedStockTable.tsx:155 +#: src/tables/build/BuildAllocatedStockTable.tsx:152 #: src/tables/part/PartPurchaseOrdersTable.tsx:50 +#: src/tables/purchasing/SupplierPartParametricTable.tsx:29 #: src/tables/purchasing/SupplierPartTable.tsx:83 #: src/tables/stock/StockItemTable.tsx:247 msgid "Supplier Part" msgstr "供应商零件" -#: lib/enums/ModelInformation.tsx:53 -#: src/pages/purchasing/PurchasingIndex.tsx:92 +#: lib/enums/ModelInformation.tsx:60 +#: src/pages/purchasing/PurchasingIndex.tsx:128 msgid "Supplier Parts" msgstr "供应商零件" -#: lib/enums/ModelInformation.tsx:61 -#: src/pages/company/ManufacturerPartDetail.tsx:297 -#: src/pages/company/SupplierPartDetail.tsx:161 +#: lib/enums/ModelInformation.tsx:69 +#: src/pages/company/ManufacturerPartDetail.tsx:288 +#: src/pages/company/SupplierPartDetail.tsx:162 #: src/tables/part/PartPurchaseOrdersTable.tsx:56 #: src/tables/stock/StockItemTable.tsx:253 msgid "Manufacturer Part" msgstr "制造商零件" -#: lib/enums/ModelInformation.tsx:62 -#: src/pages/purchasing/PurchasingIndex.tsx:109 +#: lib/enums/ModelInformation.tsx:70 +#: src/pages/purchasing/PurchasingIndex.tsx:177 msgid "Manufacturer Parts" msgstr "制造商零件" -#: lib/enums/ModelInformation.tsx:70 -#: src/pages/part/CategoryDetail.tsx:354 +#: lib/enums/ModelInformation.tsx:79 +#: src/pages/part/CategoryDetail.tsx:371 #: src/tables/Filter.tsx:389 msgid "Part Category" msgstr "零件类别" -#: lib/enums/ModelInformation.tsx:71 +#: lib/enums/ModelInformation.tsx:80 #: lib/enums/Roles.tsx:37 -#: src/pages/part/CategoryDetail.tsx:271 -#: src/pages/part/CategoryDetail.tsx:345 -#: src/pages/part/PartDetail.tsx:1196 +#: src/pages/part/CategoryDetail.tsx:279 +#: src/pages/part/CategoryDetail.tsx:362 +#: src/pages/part/PartDetail.tsx:1217 msgid "Part Categories" msgstr "零件类别" -#: lib/enums/ModelInformation.tsx:79 +#: lib/enums/ModelInformation.tsx:88 #: src/forms/BuildForms.tsx:473 #: src/forms/BuildForms.tsx:633 #: src/forms/BuildForms.tsx:794 -#: src/forms/SalesOrderForms.tsx:307 +#: src/forms/SalesOrderForms.tsx:386 #: src/pages/stock/StockDetail.tsx:1005 -#: src/tables/part/PartTestResultTable.tsx:248 +#: src/tables/part/PartTestResultTable.tsx:256 #: src/tables/stock/StockTrackingTable.tsx:48 #: src/tables/stock/StockTrackingTable.tsx:55 msgid "Stock Item" msgstr "库存项" -#: lib/enums/ModelInformation.tsx:80 +#: lib/enums/ModelInformation.tsx:89 #: lib/enums/Roles.tsx:45 -#: src/pages/company/CompanyDetail.tsx:210 -#: src/pages/part/CategoryDetail.tsx:291 +#: src/pages/company/CompanyDetail.tsx:211 +#: src/pages/part/CategoryDetail.tsx:314 #: src/pages/part/PartStockHistoryDetail.tsx:101 #: src/pages/stock/LocationDetail.tsx:121 #: src/pages/stock/LocationDetail.tsx:180 msgid "Stock Items" msgstr "库存项" -#: lib/enums/ModelInformation.tsx:88 +#: lib/enums/ModelInformation.tsx:98 #: lib/enums/Roles.tsx:47 #: src/pages/stock/LocationDetail.tsx:420 msgid "Stock Location" msgstr "库存地点" -#: lib/enums/ModelInformation.tsx:89 +#: lib/enums/ModelInformation.tsx:99 #: src/pages/stock/LocationDetail.tsx:174 #: src/pages/stock/LocationDetail.tsx:412 #: src/pages/stock/StockDetail.tsx:996 msgid "Stock Locations" msgstr "库存地点" -#: lib/enums/ModelInformation.tsx:97 +#: lib/enums/ModelInformation.tsx:108 msgid "Stock Location Type" msgstr "库存地点类型" -#: lib/enums/ModelInformation.tsx:98 +#: lib/enums/ModelInformation.tsx:109 msgid "Stock Location Types" msgstr "库存地点类型" -#: lib/enums/ModelInformation.tsx:103 -#: src/pages/Index/Settings/SystemSettings.tsx:248 -#: src/pages/part/PartDetail.tsx:911 +#: lib/enums/ModelInformation.tsx:114 +#: src/pages/Index/Settings/SystemSettings.tsx:254 +#: src/pages/part/PartDetail.tsx:900 msgid "Stock History" msgstr "库存历史记录" -#: lib/enums/ModelInformation.tsx:104 +#: lib/enums/ModelInformation.tsx:115 msgid "Stock Histories" msgstr "库存历史记录" -#: lib/enums/ModelInformation.tsx:109 +#: lib/enums/ModelInformation.tsx:120 msgid "Build" msgstr "生产..." -#: lib/enums/ModelInformation.tsx:110 +#: lib/enums/ModelInformation.tsx:121 msgid "Builds" msgstr "编译" -#: lib/enums/ModelInformation.tsx:118 +#: lib/enums/ModelInformation.tsx:130 msgid "Build Line" msgstr "生产行" -#: lib/enums/ModelInformation.tsx:119 +#: lib/enums/ModelInformation.tsx:131 msgid "Build Lines" msgstr "生产行" -#: lib/enums/ModelInformation.tsx:126 +#: lib/enums/ModelInformation.tsx:138 msgid "Build Item" msgstr "构建项目:" -#: lib/enums/ModelInformation.tsx:127 +#: lib/enums/ModelInformation.tsx:139 msgid "Build Items" msgstr "构建多个项目" -#: lib/enums/ModelInformation.tsx:132 -#: src/pages/company/CompanyDetail.tsx:340 +#: lib/enums/ModelInformation.tsx:144 +#: src/pages/company/CompanyDetail.tsx:345 #: src/tables/company/CompanyTable.tsx:47 #: src/tables/company/ContactTable.tsx:67 +#: src/tables/company/ParametricCompanyTable.tsx:18 msgid "Company" msgstr "公司" -#: lib/enums/ModelInformation.tsx:133 +#: lib/enums/ModelInformation.tsx:145 msgid "Companies" msgstr "公司" -#: lib/enums/ModelInformation.tsx:140 -#: src/pages/build/BuildDetail.tsx:316 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:253 -#: src/pages/sales/ReturnOrderDetail.tsx:231 -#: src/pages/sales/SalesOrderDetail.tsx:224 +#: lib/enums/ModelInformation.tsx:152 +#: src/pages/build/BuildDetail.tsx:317 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:254 +#: src/pages/sales/ReturnOrderDetail.tsx:232 +#: src/pages/sales/SalesOrderDetail.tsx:225 #: src/tables/ColumnRenderers.tsx:362 #: src/tables/Filter.tsx:286 #: src/tables/TableHoverCard.tsx:101 msgid "Project Code" msgstr "项目编码" -#: lib/enums/ModelInformation.tsx:141 +#: lib/enums/ModelInformation.tsx:153 #: src/pages/Index/Settings/AdminCenter/Index.tsx:172 msgid "Project Codes" msgstr "项目编码" -#: lib/enums/ModelInformation.tsx:147 +#: lib/enums/ModelInformation.tsx:159 #: src/components/wizards/OrderPartsWizard.tsx:338 #: src/pages/part/pricing/PurchaseHistoryPanel.tsx:33 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:550 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:555 #: src/pages/stock/StockDetail.tsx:352 #: src/tables/part/PartPurchaseOrdersTable.tsx:32 #: src/tables/stock/StockItemTable.tsx:239 @@ -312,117 +338,117 @@ msgstr "项目编码" msgid "Purchase Order" msgstr "采购订单" -#: lib/enums/ModelInformation.tsx:148 +#: lib/enums/ModelInformation.tsx:160 #: lib/enums/Roles.tsx:39 #: src/defaults/actions.tsx:104 -#: src/pages/Index/Settings/SystemSettings.tsx:283 -#: src/pages/company/CompanyDetail.tsx:203 -#: src/pages/company/SupplierPartDetail.tsx:266 -#: src/pages/part/PartDetail.tsx:875 -#: src/pages/purchasing/PurchasingIndex.tsx:60 +#: src/pages/Index/Settings/SystemSettings.tsx:289 +#: src/pages/company/CompanyDetail.tsx:204 +#: src/pages/company/SupplierPartDetail.tsx:267 +#: src/pages/part/PartDetail.tsx:864 +#: src/pages/purchasing/PurchasingIndex.tsx:66 msgid "Purchase Orders" msgstr "采购订单" -#: lib/enums/ModelInformation.tsx:156 +#: lib/enums/ModelInformation.tsx:169 msgid "Purchase Order Line" msgstr "采购订单行" -#: lib/enums/ModelInformation.tsx:157 +#: lib/enums/ModelInformation.tsx:170 msgid "Purchase Order Lines" msgstr "采购订单行" -#: lib/enums/ModelInformation.tsx:162 -#: src/pages/build/BuildDetail.tsx:289 +#: lib/enums/ModelInformation.tsx:175 +#: src/pages/build/BuildDetail.tsx:290 #: src/pages/part/pricing/SaleHistoryPanel.tsx:24 -#: src/pages/sales/SalesOrderDetail.tsx:614 -#: src/pages/sales/SalesOrderShipmentDetail.tsx:105 -#: src/pages/sales/SalesOrderShipmentDetail.tsx:478 +#: src/pages/sales/SalesOrderDetail.tsx:619 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:103 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:446 #: src/pages/stock/StockDetail.tsx:361 #: src/tables/part/PartSalesAllocationsTable.tsx:41 #: src/tables/sales/SalesOrderAllocationTable.tsx:110 -#: src/tables/sales/SalesOrderShipmentTable.tsx:122 +#: src/tables/sales/SalesOrderShipmentTable.tsx:143 #: src/tables/stock/StockTrackingTable.tsx:131 msgid "Sales Order" msgstr "销售订单" -#: lib/enums/ModelInformation.tsx:163 +#: lib/enums/ModelInformation.tsx:176 #: lib/enums/Roles.tsx:43 #: src/defaults/actions.tsx:114 -#: src/pages/Index/Settings/SystemSettings.tsx:299 -#: src/pages/company/CompanyDetail.tsx:223 -#: src/pages/part/PartDetail.tsx:887 -#: src/pages/sales/SalesIndex.tsx:84 +#: src/pages/Index/Settings/SystemSettings.tsx:305 +#: src/pages/company/CompanyDetail.tsx:224 +#: src/pages/part/PartDetail.tsx:876 +#: src/pages/sales/SalesIndex.tsx:53 msgid "Sales Orders" msgstr "销售订单" -#: lib/enums/ModelInformation.tsx:171 -#: src/pages/sales/SalesOrderShipmentDetail.tsx:477 +#: lib/enums/ModelInformation.tsx:185 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:445 msgid "Sales Order Shipment" msgstr "销售订单配送" -#: lib/enums/ModelInformation.tsx:172 +#: lib/enums/ModelInformation.tsx:186 msgid "Sales Order Shipments" msgstr "销售订单配送" -#: lib/enums/ModelInformation.tsx:179 -#: src/pages/sales/ReturnOrderDetail.tsx:549 +#: lib/enums/ModelInformation.tsx:194 +#: src/pages/sales/ReturnOrderDetail.tsx:554 #: src/tables/stock/StockTrackingTable.tsx:142 msgid "Return Order" msgstr "退货订单" -#: lib/enums/ModelInformation.tsx:180 +#: lib/enums/ModelInformation.tsx:195 #: lib/enums/Roles.tsx:41 #: src/defaults/actions.tsx:125 -#: src/pages/Index/Settings/SystemSettings.tsx:316 -#: src/pages/company/CompanyDetail.tsx:230 -#: src/pages/part/PartDetail.tsx:894 -#: src/pages/sales/SalesIndex.tsx:117 +#: src/pages/Index/Settings/SystemSettings.tsx:322 +#: src/pages/company/CompanyDetail.tsx:231 +#: src/pages/part/PartDetail.tsx:883 +#: src/pages/sales/SalesIndex.tsx:99 msgid "Return Orders" msgstr "退货订单" -#: lib/enums/ModelInformation.tsx:188 +#: lib/enums/ModelInformation.tsx:204 msgid "Return Order Line Item" msgstr "退货订单行项目" -#: lib/enums/ModelInformation.tsx:189 +#: lib/enums/ModelInformation.tsx:205 msgid "Return Order Line Items" msgstr "退货订单行项目" -#: lib/enums/ModelInformation.tsx:194 +#: lib/enums/ModelInformation.tsx:210 #: src/tables/company/AddressTable.tsx:52 msgid "Address" msgstr "地址" -#: lib/enums/ModelInformation.tsx:195 -#: src/pages/company/CompanyDetail.tsx:264 +#: lib/enums/ModelInformation.tsx:211 +#: src/pages/company/CompanyDetail.tsx:265 msgid "Addresses" msgstr "地址" -#: lib/enums/ModelInformation.tsx:201 +#: lib/enums/ModelInformation.tsx:217 #: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:89 #: src/pages/core/UserDetail.tsx:135 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:229 -#: src/pages/sales/ReturnOrderDetail.tsx:207 -#: src/pages/sales/SalesOrderDetail.tsx:200 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:230 +#: src/pages/sales/ReturnOrderDetail.tsx:208 +#: src/pages/sales/SalesOrderDetail.tsx:201 msgid "Contact" msgstr "联系人" -#: lib/enums/ModelInformation.tsx:202 -#: src/pages/company/CompanyDetail.tsx:258 +#: lib/enums/ModelInformation.tsx:218 +#: src/pages/company/CompanyDetail.tsx:259 #: src/pages/core/CoreIndex.tsx:33 msgid "Contacts" msgstr "联系人" -#: lib/enums/ModelInformation.tsx:208 +#: lib/enums/ModelInformation.tsx:224 #: src/tables/ColumnRenderers.tsx:444 msgid "Owner" msgstr "所有者" -#: lib/enums/ModelInformation.tsx:209 +#: lib/enums/ModelInformation.tsx:225 msgid "Owners" msgstr "所有者" -#: lib/enums/ModelInformation.tsx:215 +#: lib/enums/ModelInformation.tsx:231 #: src/pages/Auth/ChangePassword.tsx:36 #: src/pages/core/UserDetail.tsx:220 #: src/tables/ColumnRenderers.tsx:395 @@ -437,7 +463,7 @@ msgstr "所有者" msgid "User" msgstr "用户" -#: lib/enums/ModelInformation.tsx:216 +#: lib/enums/ModelInformation.tsx:232 #: src/components/nav/NavigationDrawer.tsx:105 #: src/pages/Index/Settings/AdminCenter/UserManagementPanel.tsx:15 #: src/pages/core/CoreIndex.tsx:21 @@ -445,12 +471,12 @@ msgstr "用户" msgid "Users" msgstr "用户" -#: lib/enums/ModelInformation.tsx:222 +#: lib/enums/ModelInformation.tsx:238 #: src/pages/core/GroupDetail.tsx:78 msgid "Group" msgstr "群组" -#: lib/enums/ModelInformation.tsx:223 +#: lib/enums/ModelInformation.tsx:239 #: src/components/nav/NavigationDrawer.tsx:111 #: src/pages/Index/Settings/AdminCenter/UserManagementPanel.tsx:23 #: src/pages/core/CoreIndex.tsx:27 @@ -460,64 +486,64 @@ msgstr "群组" msgid "Groups" msgstr "群组" -#: lib/enums/ModelInformation.tsx:230 +#: lib/enums/ModelInformation.tsx:246 msgid "Import Session" msgstr "导入会话" -#: lib/enums/ModelInformation.tsx:231 +#: lib/enums/ModelInformation.tsx:247 msgid "Import Sessions" msgstr "导入会话" -#: lib/enums/ModelInformation.tsx:238 +#: lib/enums/ModelInformation.tsx:254 msgid "Label Template" msgstr "标签模板" -#: lib/enums/ModelInformation.tsx:239 +#: lib/enums/ModelInformation.tsx:255 #: src/pages/Index/Settings/AdminCenter/Index.tsx:209 msgid "Label Templates" msgstr "标签模板" -#: lib/enums/ModelInformation.tsx:246 +#: lib/enums/ModelInformation.tsx:262 msgid "Report Template" msgstr "报告模板" -#: lib/enums/ModelInformation.tsx:247 +#: lib/enums/ModelInformation.tsx:263 #: src/pages/Index/Settings/AdminCenter/Index.tsx:215 msgid "Report Templates" msgstr "报告模板" -#: lib/enums/ModelInformation.tsx:254 +#: lib/enums/ModelInformation.tsx:270 #: src/components/plugins/PluginDrawer.tsx:145 msgid "Plugin Configuration" msgstr "插件配置" -#: lib/enums/ModelInformation.tsx:255 +#: lib/enums/ModelInformation.tsx:271 msgid "Plugin Configurations" msgstr "插件配置" -#: lib/enums/ModelInformation.tsx:262 +#: lib/enums/ModelInformation.tsx:278 msgid "Content Type" msgstr "内容类型" -#: lib/enums/ModelInformation.tsx:263 +#: lib/enums/ModelInformation.tsx:279 msgid "Content Types" msgstr "内容类型" -#: lib/enums/ModelInformation.tsx:268 +#: lib/enums/ModelInformation.tsx:284 msgid "Selection List" msgstr "选择列表" -#: lib/enums/ModelInformation.tsx:269 -#: src/pages/Index/Settings/AdminCenter/PartParameterPanel.tsx:21 +#: lib/enums/ModelInformation.tsx:285 +#: src/pages/Index/Settings/AdminCenter/ParameterPanel.tsx:21 msgid "Selection Lists" msgstr "选择列表" -#: lib/enums/ModelInformation.tsx:275 +#: lib/enums/ModelInformation.tsx:291 #: src/components/barcodes/BarcodeInput.tsx:114 #: src/components/dashboard/DashboardLayout.tsx:281 #: src/components/editors/NotesEditor.tsx:74 #: src/components/editors/TemplateEditor/TemplateEditor.tsx:158 -#: src/components/forms/fields/ApiFormField.tsx:273 +#: src/components/forms/fields/ApiFormField.tsx:237 #: src/components/forms/fields/TableField.tsx:45 #: src/components/importer/ImportDataSelector.tsx:192 #: src/components/importer/ImporterColumnSelector.tsx:234 @@ -528,7 +554,7 @@ msgstr "选择列表" #: src/components/nav/SearchDrawer.tsx:572 #: src/components/settings/SettingList.tsx:139 #: src/components/wizards/ImportPartWizard.tsx:574 -#: src/components/wizards/ImportPartWizard.tsx:718 +#: src/components/wizards/ImportPartWizard.tsx:719 #: src/forms/BomForms.tsx:69 #: src/functions/auth.tsx:643 #: src/pages/ErrorPage.tsx:11 @@ -547,9 +573,9 @@ msgstr "选择列表" msgid "Error" msgstr "错误" -#: lib/enums/ModelInformation.tsx:276 +#: lib/enums/ModelInformation.tsx:292 #: src/tables/machine/MachineListTable.tsx:402 -#: src/tables/machine/MachineTypeTable.tsx:299 +#: src/tables/machine/MachineTypeTable.tsx:297 msgid "Errors" msgstr "错误" @@ -559,10 +585,10 @@ msgstr "管理员" #: lib/enums/Roles.tsx:33 #: src/defaults/actions.tsx:135 -#: src/pages/Index/Settings/SystemSettings.tsx:264 -#: src/pages/build/BuildIndex.tsx:75 -#: src/pages/part/PartDetail.tsx:904 -#: src/pages/sales/SalesOrderDetail.tsx:421 +#: src/pages/Index/Settings/SystemSettings.tsx:270 +#: src/pages/build/BuildIndex.tsx:67 +#: src/pages/part/PartDetail.tsx:893 +#: src/pages/sales/SalesOrderDetail.tsx:422 msgid "Build Orders" msgstr "生产订单" @@ -639,39 +665,39 @@ msgstr "扫描或输入条形码数据" msgid "Enter barcode data" msgstr "输入条形码数据" -#: src/components/barcodes/BarcodeScanDialog.tsx:49 -#: src/components/buttons/ScanButton.tsx:15 +#: src/components/barcodes/BarcodeScanDialog.tsx:56 +#: src/components/buttons/ScanButton.tsx:27 #: src/components/nav/NavigationDrawer.tsx:122 -#: src/forms/PurchaseOrderForms.tsx:457 -#: src/forms/PurchaseOrderForms.tsx:563 +#: src/forms/PurchaseOrderForms.tsx:509 +#: src/forms/PurchaseOrderForms.tsx:615 msgid "Scan Barcode" msgstr "扫描条形码" -#: src/components/barcodes/BarcodeScanDialog.tsx:105 +#: src/components/barcodes/BarcodeScanDialog.tsx:121 msgid "No matching item found" msgstr "未找到匹配的项目" -#: src/components/barcodes/BarcodeScanDialog.tsx:134 +#: src/components/barcodes/BarcodeScanDialog.tsx:150 msgid "Barcode does not match the expected model type" msgstr "条形码与预期型号不匹配" -#: src/components/barcodes/BarcodeScanDialog.tsx:145 +#: src/components/barcodes/BarcodeScanDialog.tsx:161 #: src/components/editors/NotesEditor.tsx:84 #: src/components/editors/NotesEditor.tsx:118 -#: src/components/forms/ApiForm.tsx:465 +#: src/components/forms/ApiForm.tsx:484 #: src/components/wizards/ImportPartWizard.tsx:566 -#: src/components/wizards/ImportPartWizard.tsx:690 +#: src/components/wizards/ImportPartWizard.tsx:691 #: src/pages/Index/Settings/AdminCenter/CurrencyManagementPanel.tsx:45 #: src/tables/bom/BomTable.tsx:548 #: src/tables/settings/PendingTasksTable.tsx:68 msgid "Success" msgstr "操作成功" -#: src/components/barcodes/BarcodeScanDialog.tsx:151 +#: src/components/barcodes/BarcodeScanDialog.tsx:167 msgid "Failed to handle barcode" msgstr "条形码处理失败" -#: src/components/barcodes/BarcodeScanDialog.tsx:167 +#: src/components/barcodes/BarcodeScanDialog.tsx:183 #: src/pages/Index/Scan.tsx:129 msgid "Failed to scan barcode" msgstr "扫描条形码失败" @@ -714,10 +740,10 @@ msgstr "链接条形码失败" #: src/components/barcodes/QRCode.tsx:179 #: src/pages/part/PartDetail.tsx:521 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:222 -#: src/pages/sales/ReturnOrderDetail.tsx:188 -#: src/pages/sales/SalesOrderDetail.tsx:181 -#: src/pages/sales/SalesOrderShipmentDetail.tsx:122 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:223 +#: src/pages/sales/ReturnOrderDetail.tsx:189 +#: src/pages/sales/SalesOrderDetail.tsx:182 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:120 #: src/pages/stock/StockDetail.tsx:186 msgid "Link" msgstr "链接" @@ -728,7 +754,7 @@ msgstr "这将删除关联条形码的链接" #: src/components/barcodes/QRCode.tsx:205 #: src/components/items/ActionDropdown.tsx:192 -#: src/forms/PurchaseOrderForms.tsx:554 +#: src/forms/PurchaseOrderForms.tsx:606 msgid "Unlink Barcode" msgstr "解绑条形码" @@ -829,14 +855,14 @@ msgstr "您将被重定向到提供商进行进一步操作。" #~ msgid "Scan QR code" #~ msgstr "Scan QR code" -#: src/components/buttons/ScanButton.tsx:19 -msgid "Open Barcode Scanner" -msgstr "打开条形码扫描器" - #: src/components/buttons/ScanButton.tsx:20 #~ msgid "Open QR code scanner" #~ msgstr "Open QR code scanner" +#: src/components/buttons/ScanButton.tsx:32 +msgid "Open Barcode Scanner" +msgstr "打开条形码扫描器" + #: src/components/buttons/SpotlightButton.tsx:12 msgid "Open spotlight" msgstr "打开聚焦" @@ -1059,7 +1085,7 @@ msgid "Show the number of sales orders which are assigned to you" msgstr "显示分配给您的销售订单数量" #: src/components/dashboard/DashboardWidgetLibrary.tsx:129 -#: src/pages/sales/SalesIndex.tsx:105 +#: src/pages/sales/SalesIndex.tsx:87 msgid "Pending Shipments" msgstr "待处理货件" @@ -1210,12 +1236,18 @@ msgid "Remove the associated image from this item?" msgstr "删除与此项关联的图片?" #: src/components/details/DetailsImage.tsx:83 -#: src/forms/StockForms.tsx:888 +#: src/forms/StockForms.tsx:895 #: src/pages/Index/Settings/AccountSettings/MFASettings.tsx:324 #: src/pages/Index/Settings/AccountSettings/MFASettings.tsx:415 #: src/pages/Index/Settings/AccountSettings/MFASettings.tsx:884 #: src/pages/Index/Settings/AccountSettings/MFASettings.tsx:903 #: src/pages/Index/Settings/AccountSettings/SecurityContent.tsx:254 +#: src/tables/build/BuildAllocatedStockTable.tsx:178 +#: src/tables/build/BuildAllocatedStockTable.tsx:258 +#: src/tables/build/BuildLineTable.tsx:111 +#: src/tables/build/BuildLineTable.tsx:665 +#: src/tables/sales/SalesOrderAllocationTable.tsx:224 +#: src/tables/sales/SalesOrderAllocationTable.tsx:247 msgid "Remove" msgstr "移除" @@ -1241,12 +1273,12 @@ msgid "Upload Error" msgstr "上传错误" #: src/components/details/DetailsImage.tsx:250 -#: src/components/forms/fields/TextField.tsx:65 +#: src/components/forms/fields/AutoFillRightSection.tsx:34 msgid "Clear" msgstr "清除" #: src/components/details/DetailsImage.tsx:256 -#: src/components/forms/ApiForm.tsx:677 +#: src/components/forms/ApiForm.tsx:696 #: src/contexts/ThemeContext.tsx:44 #: src/pages/Index/Settings/AccountSettings/MFASettings.tsx:149 #: src/pages/Index/Settings/AccountSettings/MFASettings.tsx:568 @@ -1499,8 +1531,8 @@ msgstr "服务器错误" msgid "A server error occurred" msgstr "服务器出错。" -#: src/components/forms/ApiForm.tsx:103 -#: src/components/forms/ApiForm.tsx:594 +#: src/components/forms/ApiForm.tsx:107 +#: src/components/forms/ApiForm.tsx:613 msgid "Form Error" msgstr "表单错误" @@ -1508,11 +1540,11 @@ msgstr "表单错误" #~ msgid "Form Errors Exist" #~ msgstr "Form Errors Exist" -#: src/components/forms/ApiForm.tsx:604 +#: src/components/forms/ApiForm.tsx:623 msgid "Errors exist for one or more form fields" msgstr "一个或多个表单字段存在错误" -#: src/components/forms/ApiForm.tsx:715 +#: src/components/forms/ApiForm.tsx:734 #: src/hooks/UseForm.tsx:133 #: src/tables/plugin/PluginListTable.tsx:204 msgid "Update" @@ -1698,15 +1730,14 @@ msgstr "主机" #: src/components/forms/InstanceOptions.tsx:124 #: src/components/plugins/PluginDrawer.tsx:68 #: src/pages/Index/Settings/AdminCenter/UnitManagementPanel.tsx:19 -#: src/pages/part/CategoryDetail.tsx:88 +#: src/pages/part/CategoryDetail.tsx:91 #: src/pages/part/PartDetail.tsx:446 #: src/pages/stock/LocationDetail.tsx:82 #: src/tables/machine/MachineTypeTable.tsx:67 -#: src/tables/machine/MachineTypeTable.tsx:151 -#: src/tables/machine/MachineTypeTable.tsx:254 -#: src/tables/machine/MachineTypeTable.tsx:357 +#: src/tables/machine/MachineTypeTable.tsx:149 +#: src/tables/machine/MachineTypeTable.tsx:252 +#: src/tables/machine/MachineTypeTable.tsx:355 #: src/tables/plugin/PluginErrorTable.tsx:33 -#: src/tables/purchasing/ManufacturerPartParameterTable.tsx:36 #: src/tables/settings/ApiTokenTable.tsx:57 #: src/tables/settings/GroupTable.tsx:95 #: src/tables/settings/GroupTable.tsx:148 @@ -1769,7 +1800,7 @@ msgstr "保存主机选择" #~ msgstr "State: <0>worker ({0}), <1>plugins{1}" #: src/components/forms/InstanceOptions.tsx:118 -#: src/pages/Index/Settings/SystemSettings.tsx:45 +#: src/pages/Index/Settings/SystemSettings.tsx:46 msgid "Server" msgstr "服务器" @@ -1793,6 +1824,8 @@ msgid "Plugins" msgstr "插件" #: src/components/forms/InstanceOptions.tsx:143 +#: src/tables/general/ParameterTemplateTable.tsx:153 +#: src/tables/general/ParameterTemplateTable.tsx:188 #: src/tables/part/PartTestTemplateTable.tsx:117 #: src/tables/settings/TemplateTable.tsx:251 #: src/tables/settings/TemplateTable.tsx:362 @@ -1817,10 +1850,14 @@ msgstr "已停止" msgid "Running" msgstr "运行中" -#: src/components/forms/fields/ApiFormField.tsx:233 +#: src/components/forms/fields/ApiFormField.tsx:197 msgid "Select file to upload" msgstr "选择要上传的文件" +#: src/components/forms/fields/AutoFillRightSection.tsx:47 +msgid "Accept suggested value" +msgstr "接受建议值" + #: src/components/forms/fields/DateField.tsx:76 msgid "Select date" msgstr "选择日期" @@ -1853,13 +1890,13 @@ msgstr "选择包" msgid "{0} icons" msgstr "{0} 个图标" -#: src/components/forms/fields/RelatedModelField.tsx:409 +#: src/components/forms/fields/RelatedModelField.tsx:480 #: src/components/modals/AboutInvenTreeModal.tsx:96 #: src/pages/Index/Settings/AccountSettings/SecurityContent.tsx:383 msgid "Loading" msgstr "正在加载" -#: src/components/forms/fields/RelatedModelField.tsx:411 +#: src/components/forms/fields/RelatedModelField.tsx:482 msgid "No results found" msgstr "未找到结果" @@ -1875,10 +1912,6 @@ msgstr "无可用条目" msgid "Add new row" msgstr "添加新行" -#: src/components/forms/fields/TextField.tsx:82 -msgid "Accept suggested value" -msgstr "" - #: src/components/images/DetailsImage.tsx:252 #~ msgid "Select image" #~ msgstr "Select image" @@ -2036,7 +2069,7 @@ msgstr "数据已成功导入" #: src/components/importer/ImporterDrawer.tsx:109 #: src/components/modals/AboutInvenTreeModal.tsx:205 #: src/components/modals/ServerInfoModal.tsx:134 -#: src/components/wizards/ImportPartWizard.tsx:772 +#: src/components/wizards/ImportPartWizard.tsx:773 #: src/forms/BomForms.tsx:132 #: src/pages/Index/Settings/AccountSettings/MFASettings.tsx:685 msgid "Close" @@ -2199,7 +2232,7 @@ msgid "Change" msgstr "更改" #: src/components/items/RoleTable.tsx:150 -#: src/forms/StockForms.tsx:927 +#: src/forms/StockForms.tsx:941 #: src/tables/stock/StockItemTestResultTable.tsx:367 msgid "Add" msgstr "添加" @@ -2222,11 +2255,11 @@ msgstr "没有项目" #: src/components/items/TransferList.tsx:161 #: src/components/render/Stock.tsx:102 -#: src/pages/part/PartDetail.tsx:994 +#: src/pages/part/PartDetail.tsx:1009 #: src/pages/stock/StockDetail.tsx:265 #: src/pages/stock/StockDetail.tsx:942 -#: src/tables/build/BuildAllocatedStockTable.tsx:135 -#: src/tables/build/BuildLineTable.tsx:192 +#: src/tables/build/BuildAllocatedStockTable.tsx:132 +#: src/tables/build/BuildLineTable.tsx:193 #: src/tables/part/PartTable.tsx:137 #: src/tables/stock/StockItemTable.tsx:182 #: src/tables/stock/StockItemTable.tsx:343 @@ -2373,7 +2406,7 @@ msgid "Database" msgstr "数据库" #: src/components/modals/ServerInfoModal.tsx:49 -#: src/components/nav/Alerts.tsx:118 +#: src/components/nav/Alerts.tsx:120 msgid "Debug Mode" msgstr "调试模式" @@ -2414,7 +2447,7 @@ msgid "Issues detected" msgstr "检测到问题" #: src/components/modals/ServerInfoModal.tsx:102 -#: src/components/nav/Alerts.tsx:125 +#: src/components/nav/Alerts.tsx:127 msgid "Background Worker" msgstr "后台工作者" @@ -2436,7 +2469,7 @@ msgstr "电子邮件设置" #~ msgstr "Email settings not configured" #: src/components/modals/ServerInfoModal.tsx:120 -#: src/components/nav/Alerts.tsx:141 +#: src/components/nav/Alerts.tsx:143 msgid "Email settings not configured." msgstr "电子邮件设置未配置。" @@ -2444,43 +2477,47 @@ msgstr "电子邮件设置未配置。" msgid "Alerts" msgstr "警报" -#: src/components/nav/Alerts.tsx:120 +#: src/components/nav/Alerts.tsx:97 +msgid "No issues detected" +msgstr "" + +#: src/components/nav/Alerts.tsx:122 msgid "The server is running in debug mode." msgstr "服务器正以调试模式运行。" -#: src/components/nav/Alerts.tsx:127 +#: src/components/nav/Alerts.tsx:129 msgid "The background worker process is not running." msgstr "后台工作进程未运行。" -#: src/components/nav/Alerts.tsx:132 +#: src/components/nav/Alerts.tsx:134 msgid "Server Restart" msgstr "服务器重启" -#: src/components/nav/Alerts.tsx:134 +#: src/components/nav/Alerts.tsx:136 msgid "The server requires a restart to apply changes." msgstr "服务器需要重新启动才能应用更改。" -#: src/components/nav/Alerts.tsx:139 +#: src/components/nav/Alerts.tsx:141 msgid "Email settings" msgstr "电子邮件设置" -#: src/components/nav/Alerts.tsx:146 +#: src/components/nav/Alerts.tsx:148 msgid "Database Migrations" msgstr "数据库迁移" -#: src/components/nav/Alerts.tsx:148 +#: src/components/nav/Alerts.tsx:150 msgid "There are pending database migrations." msgstr "存在待处理的数据库迁移。" -#: src/components/nav/Alerts.tsx:163 +#: src/components/nav/Alerts.tsx:165 msgid "Learn more about {code}" msgstr "了解更多关于{code}的信息" #: src/components/nav/Header.tsx:188 #: src/components/nav/NavigationDrawer.tsx:134 #: src/components/nav/NotificationDrawer.tsx:181 -#: src/pages/Index/Settings/SystemSettings.tsx:121 -#: src/pages/Index/Settings/UserSettings.tsx:106 +#: src/pages/Index/Settings/SystemSettings.tsx:122 +#: src/pages/Index/Settings/UserSettings.tsx:107 #: src/pages/Notifications.tsx:45 #: src/pages/Notifications.tsx:130 msgid "Notifications" @@ -2511,8 +2548,8 @@ msgstr "设置" #: src/components/nav/NavigationDrawer.tsx:140 #: src/components/nav/SettingsHeader.tsx:40 #: src/defaults/actions.tsx:92 -#: src/pages/Index/Settings/UserSettings.tsx:141 -#: src/pages/Index/Settings/UserSettings.tsx:145 +#: src/pages/Index/Settings/UserSettings.tsx:142 +#: src/pages/Index/Settings/UserSettings.tsx:146 msgid "User Settings" msgstr "用户设置" @@ -2529,8 +2566,8 @@ msgstr "用户设置" #: src/components/nav/NavigationDrawer.tsx:146 #: src/components/nav/SettingsHeader.tsx:41 #: src/defaults/actions.tsx:144 -#: src/pages/Index/Settings/SystemSettings.tsx:348 -#: src/pages/Index/Settings/SystemSettings.tsx:353 +#: src/pages/Index/Settings/SystemSettings.tsx:354 +#: src/pages/Index/Settings/SystemSettings.tsx:359 msgid "System Settings" msgstr "系统设置" @@ -2577,11 +2614,11 @@ msgstr "登出" #: src/components/nav/NavigationDrawer.tsx:77 #: src/components/render/Part.tsx:36 -#: src/components/wizards/ImportPartWizard.tsx:807 +#: src/components/wizards/ImportPartWizard.tsx:808 #: src/defaults/links.tsx:42 #: src/forms/StockForms.tsx:794 -#: src/pages/Index/Settings/SystemSettings.tsx:224 -#: src/pages/part/PartDetail.tsx:804 +#: src/pages/Index/Settings/SystemSettings.tsx:230 +#: src/pages/part/PartDetail.tsx:793 #: src/pages/stock/LocationDetail.tsx:390 #: src/pages/stock/LocationDetail.tsx:420 #: src/pages/stock/StockDetail.tsx:642 @@ -2591,29 +2628,29 @@ msgstr "库存" #: src/components/nav/NavigationDrawer.tsx:84 #: src/defaults/links.tsx:48 -#: src/pages/build/BuildDetail.tsx:748 -#: src/pages/build/BuildIndex.tsx:102 +#: src/pages/build/BuildDetail.tsx:753 +#: src/pages/build/BuildIndex.tsx:101 msgid "Manufacturing" msgstr "生产" #: src/components/nav/NavigationDrawer.tsx:91 #: src/defaults/links.tsx:54 #: src/pages/company/ManufacturerDetail.tsx:9 -#: src/pages/company/ManufacturerPartDetail.tsx:276 +#: src/pages/company/ManufacturerPartDetail.tsx:267 #: src/pages/company/SupplierDetail.tsx:9 -#: src/pages/company/SupplierPartDetail.tsx:360 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:553 -#: src/pages/purchasing/PurchasingIndex.tsx:122 +#: src/pages/company/SupplierPartDetail.tsx:365 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:558 +#: src/pages/purchasing/PurchasingIndex.tsx:212 msgid "Purchasing" msgstr "采购" #: src/components/nav/NavigationDrawer.tsx:98 #: src/defaults/links.tsx:60 #: src/pages/company/CustomerDetail.tsx:9 -#: src/pages/sales/ReturnOrderDetail.tsx:554 -#: src/pages/sales/SalesIndex.tsx:153 -#: src/pages/sales/SalesOrderDetail.tsx:619 -#: src/pages/sales/SalesOrderShipmentDetail.tsx:480 +#: src/pages/sales/ReturnOrderDetail.tsx:559 +#: src/pages/sales/SalesIndex.tsx:168 +#: src/pages/sales/SalesOrderDetail.tsx:624 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:448 msgid "Sales" msgstr "销售" @@ -2667,21 +2704,21 @@ msgid "Remove search group" msgstr "移除搜索组" #: src/components/nav/SearchDrawer.tsx:288 -#: src/pages/company/ManufacturerPartDetail.tsx:192 -#: src/pages/part/PartDetail.tsx:862 +#: src/pages/company/ManufacturerPartDetail.tsx:179 +#: src/pages/part/PartDetail.tsx:851 #: src/pages/part/PartSupplierDetail.tsx:15 -#: src/pages/purchasing/PurchasingIndex.tsx:81 +#: src/pages/purchasing/PurchasingIndex.tsx:100 msgid "Suppliers" msgstr "供应商" #: src/components/nav/SearchDrawer.tsx:298 #: src/pages/part/PartSupplierDetail.tsx:23 -#: src/pages/purchasing/PurchasingIndex.tsx:98 +#: src/pages/purchasing/PurchasingIndex.tsx:149 msgid "Manufacturers" msgstr "制造商" #: src/components/nav/SearchDrawer.tsx:308 -#: src/pages/sales/SalesIndex.tsx:138 +#: src/pages/sales/SalesIndex.tsx:133 msgid "Customers" msgstr "客户" @@ -2772,21 +2809,21 @@ msgstr "插件信息" #: src/components/plugins/PluginDrawer.tsx:73 #: src/forms/selectionListFields.tsx:102 -#: src/pages/build/BuildDetail.tsx:250 -#: src/pages/company/CompanyDetail.tsx:93 -#: src/pages/company/ManufacturerPartDetail.tsx:93 -#: src/pages/company/ManufacturerPartDetail.tsx:120 -#: src/pages/company/SupplierPartDetail.tsx:145 -#: src/pages/part/CategoryDetail.tsx:108 +#: src/pages/build/BuildDetail.tsx:251 +#: src/pages/company/CompanyDetail.tsx:94 +#: src/pages/company/ManufacturerPartDetail.tsx:92 +#: src/pages/company/ManufacturerPartDetail.tsx:119 +#: src/pages/company/SupplierPartDetail.tsx:146 +#: src/pages/part/CategoryDetail.tsx:111 #: src/pages/part/PartDetail.tsx:460 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:162 -#: src/pages/sales/ReturnOrderDetail.tsx:129 -#: src/pages/sales/SalesOrderDetail.tsx:119 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:163 +#: src/pages/sales/ReturnOrderDetail.tsx:130 +#: src/pages/sales/SalesOrderDetail.tsx:120 #: src/pages/stock/LocationDetail.tsx:102 #: src/tables/ColumnRenderers.tsx:278 -#: src/tables/build/BuildAllocatedStockTable.tsx:91 -#: src/tables/machine/MachineTypeTable.tsx:161 -#: src/tables/machine/MachineTypeTable.tsx:257 +#: src/tables/build/BuildAllocatedStockTable.tsx:88 +#: src/tables/machine/MachineTypeTable.tsx:159 +#: src/tables/machine/MachineTypeTable.tsx:255 #: src/tables/plugin/PluginListTable.tsx:110 msgid "Description" msgstr "描述" @@ -2814,7 +2851,7 @@ msgstr "日期" #: src/tables/company/CompanyTable.tsx:91 #: src/tables/machine/MachineListTable.tsx:384 #: src/tables/machine/MachineListTable.tsx:799 -#: src/tables/part/ParametricPartTable.tsx:354 +#: src/tables/part/ParametricPartTable.tsx:19 #: src/tables/part/PartTable.tsx:197 #: src/tables/part/PartVariantTable.tsx:15 #: src/tables/plugin/PluginListTable.tsx:96 @@ -2836,8 +2873,8 @@ msgid "Installation Path" msgstr "安装路径" #: src/components/plugins/PluginDrawer.tsx:116 -#: src/tables/machine/MachineTypeTable.tsx:184 -#: src/tables/machine/MachineTypeTable.tsx:293 +#: src/tables/machine/MachineTypeTable.tsx:182 +#: src/tables/machine/MachineTypeTable.tsx:291 #: src/tables/plugin/PluginListTable.tsx:101 #: src/tables/plugin/PluginListTable.tsx:417 msgid "Builtin" @@ -2849,8 +2886,8 @@ msgstr "软件包" #: src/components/plugins/PluginDrawer.tsx:133 #: src/pages/Index/Settings/AdminCenter/PluginManagementPanel.tsx:55 -#: src/pages/Index/Settings/SystemSettings.tsx:331 -#: src/pages/Index/Settings/UserSettings.tsx:128 +#: src/pages/Index/Settings/SystemSettings.tsx:337 +#: src/pages/Index/Settings/UserSettings.tsx:129 msgid "Plugin Settings" msgstr "插件设置" @@ -2911,7 +2948,7 @@ msgstr "加载插件内容时出错" #~ msgid "Unknown model: {model}" #~ msgstr "Unknown model: {model}" -#: src/components/render/Instance.tsx:249 +#: src/components/render/Instance.tsx:247 msgid "Unknown model: {model_name}" msgstr "未知模型: {model_name}" @@ -2939,10 +2976,10 @@ msgstr "配送" #: src/components/render/Part.tsx:28 #: src/components/render/Plugin.tsx:17 #: src/components/render/User.tsx:37 -#: src/pages/company/CompanyDetail.tsx:323 -#: src/pages/company/SupplierPartDetail.tsx:373 +#: src/pages/company/CompanyDetail.tsx:328 +#: src/pages/company/SupplierPartDetail.tsx:378 #: src/pages/core/UserDetail.tsx:211 -#: src/pages/part/PartDetail.tsx:1027 +#: src/pages/part/PartDetail.tsx:1048 #: src/tables/ColumnRenderers.tsx:410 msgid "Inactive" msgstr "未激活" @@ -2962,11 +2999,11 @@ msgstr "无库存" #: src/components/render/Part.tsx:47 #: src/components/wizards/OrderPartsWizard.tsx:135 -#: src/pages/company/SupplierPartDetail.tsx:197 -#: src/pages/company/SupplierPartDetail.tsx:394 -#: src/pages/part/PartDetail.tsx:1015 +#: src/pages/company/SupplierPartDetail.tsx:198 +#: src/pages/company/SupplierPartDetail.tsx:399 +#: src/pages/part/PartDetail.tsx:1030 #: src/tables/bom/BomTable.tsx:444 -#: src/tables/build/BuildLineTable.tsx:222 +#: src/tables/build/BuildLineTable.tsx:223 #: src/tables/part/PartTable.tsx:108 msgid "On Order" msgstr "订购中" @@ -2974,9 +3011,9 @@ msgstr "订购中" #: src/components/render/Part.tsx:55 #: src/components/wizards/OrderPartsWizard.tsx:141 #: src/pages/part/PartDetail.tsx:587 -#: src/pages/part/PartDetail.tsx:1021 +#: src/pages/part/PartDetail.tsx:1036 #: src/pages/stock/StockDetail.tsx:925 -#: src/tables/part/PartTestResultTable.tsx:297 +#: src/tables/part/PartTestResultTable.tsx:305 #: src/tables/stock/StockItemTable.tsx:359 msgid "In Production" msgstr "生产中" @@ -2987,7 +3024,7 @@ msgid "Details" msgstr "详情" #: src/components/render/Part.tsx:112 -#: src/components/wizards/ImportPartWizard.tsx:806 +#: src/components/wizards/ImportPartWizard.tsx:807 #: src/pages/part/PartDetail.tsx:487 #: src/tables/ColumnRenderers.tsx:233 #: src/tables/ColumnRenderers.tsx:242 @@ -3000,16 +3037,16 @@ msgstr "类别" #: src/components/render/Stock.tsx:114 #: src/components/render/Stock.tsx:132 #: src/forms/BuildForms.tsx:795 -#: src/forms/PurchaseOrderForms.tsx:595 +#: src/forms/PurchaseOrderForms.tsx:647 #: src/forms/StockForms.tsx:792 #: src/forms/StockForms.tsx:839 -#: src/forms/StockForms.tsx:885 -#: src/forms/StockForms.tsx:924 -#: src/forms/StockForms.tsx:960 -#: src/forms/StockForms.tsx:1003 -#: src/forms/StockForms.tsx:1047 -#: src/forms/StockForms.tsx:1095 -#: src/forms/StockForms.tsx:1139 +#: src/forms/StockForms.tsx:892 +#: src/forms/StockForms.tsx:938 +#: src/forms/StockForms.tsx:976 +#: src/forms/StockForms.tsx:1019 +#: src/forms/StockForms.tsx:1063 +#: src/forms/StockForms.tsx:1111 +#: src/forms/StockForms.tsx:1155 #: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:88 #: src/pages/core/UserDetail.tsx:158 #: src/pages/stock/StockDetail.tsx:298 @@ -3023,7 +3060,7 @@ msgstr "位置" #: src/components/render/Stock.tsx:99 #: src/pages/stock/StockDetail.tsx:198 #: src/pages/stock/StockDetail.tsx:930 -#: src/tables/build/BuildAllocatedStockTable.tsx:121 +#: src/tables/build/BuildAllocatedStockTable.tsx:118 #: src/tables/build/BuildOutputTable.tsx:107 #: src/tables/sales/SalesOrderAllocationTable.tsx:142 msgid "Serial Number" @@ -3034,9 +3071,9 @@ msgstr "序列号" #: src/forms/BuildForms.tsx:240 #: src/forms/BuildForms.tsx:634 #: src/forms/BuildForms.tsx:797 -#: src/forms/PurchaseOrderForms.tsx:801 +#: src/forms/PurchaseOrderForms.tsx:853 #: src/forms/ReturnOrderForms.tsx:243 -#: src/forms/SalesOrderForms.tsx:308 +#: src/forms/SalesOrderForms.tsx:387 #: src/forms/StockForms.tsx:841 #: src/pages/part/PartStockHistoryDetail.tsx:56 #: src/pages/part/PartStockHistoryDetail.tsx:210 @@ -3046,9 +3083,9 @@ msgstr "序列号" #: src/pages/part/pricing/PriceBreakPanel.tsx:172 #: src/pages/stock/StockDetail.tsx:258 #: src/pages/stock/StockDetail.tsx:936 -#: src/tables/build/BuildLineTable.tsx:86 +#: src/tables/build/BuildLineTable.tsx:83 #: src/tables/part/PartPurchaseOrdersTable.tsx:94 -#: src/tables/part/PartTestResultTable.tsx:269 +#: src/tables/part/PartTestResultTable.tsx:277 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:175 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:206 #: src/tables/purchasing/SupplierPriceBreakTable.tsx:69 @@ -3063,14 +3100,14 @@ msgstr "数量" #: src/forms/BuildForms.tsx:474 #: src/forms/StockForms.tsx:793 #: src/forms/StockForms.tsx:840 -#: src/forms/StockForms.tsx:886 -#: src/forms/StockForms.tsx:925 -#: src/forms/StockForms.tsx:961 -#: src/forms/StockForms.tsx:1004 -#: src/forms/StockForms.tsx:1048 -#: src/forms/StockForms.tsx:1096 -#: src/forms/StockForms.tsx:1140 -#: src/tables/build/BuildLineTable.tsx:96 +#: src/forms/StockForms.tsx:893 +#: src/forms/StockForms.tsx:939 +#: src/forms/StockForms.tsx:977 +#: src/forms/StockForms.tsx:1020 +#: src/forms/StockForms.tsx:1064 +#: src/forms/StockForms.tsx:1112 +#: src/forms/StockForms.tsx:1156 +#: src/tables/build/BuildLineTable.tsx:93 msgid "Batch" msgstr "批次" @@ -3088,7 +3125,7 @@ msgstr "来源" #: src/components/settings/QuickAction.tsx:47 msgid "Act" -msgstr "" +msgstr "行动" #: src/components/settings/QuickAction.tsx:73 #: src/components/settings/QuickAction.tsx:113 @@ -3106,11 +3143,11 @@ msgstr "添加状态" #: src/components/settings/QuickAction.tsx:85 msgid "Open an Issue" -msgstr "" +msgstr "开启问题" #: src/components/settings/QuickAction.tsx:86 msgid "Report a bug or request a feature on GitHub" -msgstr "" +msgstr "在GitHub上报告错误或请求功能" #: src/components/settings/QuickAction.tsx:88 msgid "Open Issue" @@ -3130,7 +3167,7 @@ msgstr "" #: src/components/settings/QuickAction.tsx:105 msgid "Add New User" -msgstr "" +msgstr "添加新用户" #: src/components/settings/QuickAction.tsx:106 msgid "Create a new user to manage your groups" @@ -3306,10 +3343,6 @@ msgstr "未指定设置" #~ msgid "Part category updated" #~ msgstr "Part category updated" -#: src/components/tables/part/PartParameterTable.tsx:41 -#~ msgid "Parameter" -#~ msgstr "Parameter" - #: src/components/tables/part/PartParameterTable.tsx:114 #~ msgid "Part parameter updated" #~ msgstr "Part parameter updated" @@ -3571,15 +3604,16 @@ msgid "Already Imported" msgstr "" #: src/components/wizards/ImportPartWizard.tsx:205 -#: src/pages/company/CompanyDetail.tsx:136 +#: src/pages/company/CompanyDetail.tsx:137 #: src/pages/company/SupplierDetail.tsx:8 -#: src/pages/company/SupplierPartDetail.tsx:130 -#: src/pages/company/SupplierPartDetail.tsx:235 -#: src/pages/company/SupplierPartDetail.tsx:364 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:156 +#: src/pages/company/SupplierPartDetail.tsx:131 +#: src/pages/company/SupplierPartDetail.tsx:236 +#: src/pages/company/SupplierPartDetail.tsx:369 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:157 #: src/tables/Filter.tsx:360 #: src/tables/company/CompanyTable.tsx:96 #: src/tables/part/PartPurchaseOrdersTable.tsx:43 +#: src/tables/purchasing/PurchaseOrderParametricTable.tsx:34 #: src/tables/purchasing/PurchaseOrderTable.tsx:109 #: src/tables/purchasing/SupplierPriceBreakTable.tsx:40 msgid "Supplier" @@ -3592,20 +3626,20 @@ msgstr "正在加载..." #: src/components/wizards/ImportPartWizard.tsx:223 msgid "Error fetching suppliers" -msgstr "" +msgstr "获取供应商出错" #: src/components/wizards/ImportPartWizard.tsx:224 msgid "Select supplier" -msgstr "" +msgstr "选择供应商" #. placeholder {0}: searchResults.length #: src/components/wizards/ImportPartWizard.tsx:246 msgid "Found {0} results" -msgstr "" +msgstr "找到 {0} 个结果" #: src/components/wizards/ImportPartWizard.tsx:259 msgid "Import this part" -msgstr "" +msgstr "导入此零件" #: src/components/wizards/ImportPartWizard.tsx:313 msgid "Are you sure you want to import this part into the selected category now?" @@ -3613,7 +3647,7 @@ msgstr "" #: src/components/wizards/ImportPartWizard.tsx:326 msgid "Import Now" -msgstr "" +msgstr "立即导入" #: src/components/wizards/ImportPartWizard.tsx:372 msgid "Select and edit the parameters you want to add to this part." @@ -3648,7 +3682,7 @@ msgid "Next" msgstr "" #: src/components/wizards/ImportPartWizard.tsx:540 -#: src/pages/part/PartDetail.tsx:1046 +#: src/pages/part/PartDetail.tsx:1067 #: src/tables/part/PartTable.tsx:408 msgid "Edit Part" msgstr "编辑零件" @@ -3669,28 +3703,28 @@ msgstr "" msgid "Import" msgstr "" -#: src/components/wizards/ImportPartWizard.tsx:691 +#: src/components/wizards/ImportPartWizard.tsx:692 msgid "Parameters created successfully!" msgstr "" -#: src/components/wizards/ImportPartWizard.tsx:719 +#: src/components/wizards/ImportPartWizard.tsx:720 msgid "Failed to create parameters, please fix the errors and try again" msgstr "" #. placeholder {0}: supplierPart?.supplier -#: src/components/wizards/ImportPartWizard.tsx:739 +#: src/components/wizards/ImportPartWizard.tsx:740 msgid "Part imported successfully from supplier {0}." msgstr "" -#: src/components/wizards/ImportPartWizard.tsx:752 +#: src/components/wizards/ImportPartWizard.tsx:753 msgid "Open Part" msgstr "" -#: src/components/wizards/ImportPartWizard.tsx:759 +#: src/components/wizards/ImportPartWizard.tsx:760 msgid "Open Supplier Part" msgstr "" -#: src/components/wizards/ImportPartWizard.tsx:766 +#: src/components/wizards/ImportPartWizard.tsx:767 msgid "Open Manufacturer Part" msgstr "" @@ -3699,25 +3733,19 @@ msgstr "" #~ msgid "Import Part" #~ msgstr "Import Part" -#: src/components/wizards/ImportPartWizard.tsx:802 +#: src/components/wizards/ImportPartWizard.tsx:803 msgid "Import Supplier Part" msgstr "" -#: src/components/wizards/ImportPartWizard.tsx:804 +#: src/components/wizards/ImportPartWizard.tsx:805 msgid "Search Supplier Part" msgstr "" -#: src/components/wizards/ImportPartWizard.tsx:806 -#: src/pages/company/ManufacturerPartDetail.tsx:166 -#: src/pages/part/PartDetail.tsx:793 -msgid "Parameters" -msgstr "参数" - -#: src/components/wizards/ImportPartWizard.tsx:806 +#: src/components/wizards/ImportPartWizard.tsx:807 msgid "Confirm import" msgstr "" -#: src/components/wizards/ImportPartWizard.tsx:808 +#: src/components/wizards/ImportPartWizard.tsx:809 msgid "Done" msgstr "" @@ -3738,24 +3766,24 @@ msgid "Sales Requirements" msgstr "" #: src/components/wizards/OrderPartsWizard.tsx:129 -#: src/forms/StockForms.tsx:887 -#: src/forms/StockForms.tsx:926 -#: src/forms/StockForms.tsx:962 -#: src/forms/StockForms.tsx:1005 -#: src/forms/StockForms.tsx:1049 -#: src/forms/StockForms.tsx:1097 -#: src/forms/StockForms.tsx:1141 -#: src/pages/company/SupplierPartDetail.tsx:190 -#: src/pages/company/SupplierPartDetail.tsx:378 +#: src/forms/StockForms.tsx:894 +#: src/forms/StockForms.tsx:940 +#: src/forms/StockForms.tsx:978 +#: src/forms/StockForms.tsx:1021 +#: src/forms/StockForms.tsx:1065 +#: src/forms/StockForms.tsx:1113 +#: src/forms/StockForms.tsx:1157 +#: src/pages/company/SupplierPartDetail.tsx:191 +#: src/pages/company/SupplierPartDetail.tsx:383 #: src/pages/part/PartDetail.tsx:534 -#: src/pages/part/PartDetail.tsx:984 +#: src/pages/part/PartDetail.tsx:999 #: src/tables/Filter.tsx:92 #: src/tables/purchasing/SupplierPartTable.tsx:230 msgid "In Stock" msgstr "入库" #: src/components/wizards/OrderPartsWizard.tsx:146 -#: src/tables/build/BuildLineTable.tsx:404 +#: src/tables/build/BuildLineTable.tsx:405 msgid "Required Quantity" msgstr "所需数量" @@ -3847,7 +3875,7 @@ msgid "Please correct the errors in the selected parts" msgstr "请修正所选零件中的错误" #: src/components/wizards/OrderPartsWizard.tsx:587 -#: src/tables/build/BuildLineTable.tsx:815 +#: src/tables/build/BuildLineTable.tsx:822 #: src/tables/part/PartTable.tsx:522 #: src/tables/sales/SalesOrderLineItemTable.tsx:370 msgid "Order Parts" @@ -4349,9 +4377,9 @@ msgstr "替代项已添加" #: src/forms/BuildForms.tsx:333 #: src/forms/BuildForms.tsx:408 #: src/forms/BuildForms.tsx:685 -#: src/tables/build/BuildAllocatedStockTable.tsx:150 +#: src/tables/build/BuildAllocatedStockTable.tsx:147 #: src/tables/build/BuildOutputTable.tsx:582 -#: src/tables/part/PartTestResultTable.tsx:272 +#: src/tables/part/PartTestResultTable.tsx:280 msgid "Build Output" msgstr "生产产出" @@ -4362,22 +4390,22 @@ msgstr "待完成数量" #: src/forms/BuildForms.tsx:336 #: src/forms/BuildForms.tsx:411 #: src/forms/BuildForms.tsx:475 -#: src/forms/PurchaseOrderForms.tsx:717 +#: src/forms/PurchaseOrderForms.tsx:769 #: src/forms/ReturnOrderForms.tsx:197 #: src/forms/ReturnOrderForms.tsx:244 #: src/forms/StockForms.tsx:712 #: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:87 -#: src/pages/build/BuildDetail.tsx:222 +#: src/pages/build/BuildDetail.tsx:223 #: src/pages/core/UserDetail.tsx:151 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:168 -#: src/pages/sales/ReturnOrderDetail.tsx:135 -#: src/pages/sales/SalesOrderDetail.tsx:125 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:169 +#: src/pages/sales/ReturnOrderDetail.tsx:136 +#: src/pages/sales/SalesOrderDetail.tsx:126 #: src/pages/stock/StockDetail.tsx:170 #: src/tables/Filter.tsx:274 #: src/tables/build/BuildOutputTable.tsx:404 #: src/tables/machine/MachineListTable.tsx:387 #: src/tables/part/PartPurchaseOrdersTable.tsx:38 -#: src/tables/part/PartTestResultTable.tsx:309 +#: src/tables/part/PartTestResultTable.tsx:317 #: src/tables/sales/ReturnOrderLineItemTable.tsx:138 #: src/tables/sales/ReturnOrderLineItemTable.tsx:176 #: src/tables/settings/CustomStateTable.tsx:79 @@ -4443,18 +4471,19 @@ msgid "Build outputs have been cancelled" msgstr "生产已完成" #: src/forms/BuildForms.tsx:631 -#: src/pages/build/BuildDetail.tsx:207 -#: src/pages/company/ManufacturerPartDetail.tsx:85 -#: src/pages/company/SupplierPartDetail.tsx:96 +#: src/pages/build/BuildDetail.tsx:208 +#: src/pages/company/ManufacturerPartDetail.tsx:84 +#: src/pages/company/SupplierPartDetail.tsx:97 #: src/pages/part/PartDetail.tsx:453 #: src/pages/stock/StockDetail.tsx:153 #: src/tables/bom/BomTable.tsx:134 #: src/tables/bom/UsedInTable.tsx:40 -#: src/tables/build/BuildAllocatedStockTable.tsx:108 -#: src/tables/build/BuildLineTable.tsx:336 +#: src/tables/build/BuildAllocatedStockTable.tsx:105 +#: src/tables/build/BuildLineTable.tsx:337 #: src/tables/build/BuildOrderTable.tsx:79 #: src/tables/part/PartSalesAllocationsTable.tsx:61 #: src/tables/part/RelatedPartTable.tsx:73 +#: src/tables/purchasing/ManufacturerPartParametricTable.tsx:21 #: src/tables/purchasing/ManufacturerPartTable.tsx:69 #: src/tables/purchasing/SupplierPartTable.tsx:70 #: src/tables/sales/SalesOrderAllocationTable.tsx:135 @@ -4466,47 +4495,47 @@ msgstr "内部零件编码 IPN" #: src/forms/BuildForms.tsx:632 #: src/forms/BuildForms.tsx:796 #: src/forms/BuildForms.tsx:897 -#: src/forms/SalesOrderForms.tsx:306 -#: src/tables/build/BuildAllocatedStockTable.tsx:139 -#: src/tables/build/BuildLineTable.tsx:182 +#: src/forms/SalesOrderForms.tsx:385 +#: src/tables/build/BuildAllocatedStockTable.tsx:136 +#: src/tables/build/BuildLineTable.tsx:183 #: src/tables/sales/SalesOrderLineItemTable.tsx:342 #: src/tables/stock/StockItemTable.tsx:338 msgid "Allocated" msgstr "已分配" #: src/forms/BuildForms.tsx:667 -#: src/forms/SalesOrderForms.tsx:295 -#: src/pages/build/BuildDetail.tsx:108 -#: src/pages/build/BuildDetail.tsx:326 +#: src/forms/SalesOrderForms.tsx:374 +#: src/pages/build/BuildDetail.tsx:109 +#: src/pages/build/BuildDetail.tsx:327 msgid "Source Location" msgstr "来源地点" #: src/forms/BuildForms.tsx:668 -#: src/forms/SalesOrderForms.tsx:296 +#: src/forms/SalesOrderForms.tsx:375 msgid "Select the source location for the stock allocation" msgstr "选择分配库存的源位置" #: src/forms/BuildForms.tsx:700 -#: src/forms/SalesOrderForms.tsx:336 -#: src/tables/build/BuildLineTable.tsx:574 -#: src/tables/build/BuildLineTable.tsx:731 -#: src/tables/build/BuildLineTable.tsx:830 +#: src/forms/SalesOrderForms.tsx:415 +#: src/tables/build/BuildLineTable.tsx:575 +#: src/tables/build/BuildLineTable.tsx:738 +#: src/tables/build/BuildLineTable.tsx:837 #: src/tables/sales/SalesOrderLineItemTable.tsx:380 #: src/tables/sales/SalesOrderLineItemTable.tsx:406 msgid "Allocate Stock" msgstr "分配库存" #: src/forms/BuildForms.tsx:703 -#: src/forms/SalesOrderForms.tsx:341 +#: src/forms/SalesOrderForms.tsx:420 msgid "Stock items allocated" msgstr "分配的库存项目" #: src/forms/BuildForms.tsx:816 #: src/forms/BuildForms.tsx:917 -#: src/tables/build/BuildAllocatedStockTable.tsx:240 -#: src/tables/build/BuildAllocatedStockTable.tsx:272 -#: src/tables/build/BuildLineTable.tsx:741 -#: src/tables/build/BuildLineTable.tsx:864 +#: src/tables/build/BuildAllocatedStockTable.tsx:243 +#: src/tables/build/BuildAllocatedStockTable.tsx:279 +#: src/tables/build/BuildLineTable.tsx:748 +#: src/tables/build/BuildLineTable.tsx:871 msgid "Consume Stock" msgstr "消耗库存" @@ -4521,21 +4550,21 @@ msgstr "" #~ msgstr "Stock items consumed" #: src/forms/BuildForms.tsx:853 -#: src/tables/build/BuildLineTable.tsx:514 +#: src/tables/build/BuildLineTable.tsx:515 #: src/tables/part/PartBuildAllocationsTable.tsx:101 msgid "Fully consumed" msgstr "已全部消耗" #: src/forms/BuildForms.tsx:898 -#: src/tables/build/BuildLineTable.tsx:187 +#: src/tables/build/BuildLineTable.tsx:188 #: src/tables/stock/StockItemTable.tsx:367 msgid "Consumed" msgstr "已消耗" -#: src/forms/CommonForms.tsx:88 -#: src/forms/PurchaseOrderForms.tsx:125 +#: src/forms/CommonForms.tsx:92 +#: src/forms/PurchaseOrderForms.tsx:176 #: src/forms/ReturnOrderForms.tsx:138 -#: src/forms/SalesOrderForms.tsx:164 +#: src/forms/SalesOrderForms.tsx:185 msgid "Select project code for this line item" msgstr "" @@ -4543,16 +4572,16 @@ msgstr "" #~ msgid "Company updated" #~ msgstr "Company updated" -#: src/forms/PartForms.tsx:85 -#: src/forms/PartForms.tsx:207 -#: src/pages/part/CategoryDetail.tsx:124 +#: src/forms/PartForms.tsx:99 +#: src/forms/PartForms.tsx:228 +#: src/pages/part/CategoryDetail.tsx:127 #: src/pages/part/PartDetail.tsx:668 #: src/tables/part/PartCategoryTable.tsx:94 #: src/tables/part/PartTable.tsx:325 msgid "Subscribed" msgstr "已订阅" -#: src/forms/PartForms.tsx:86 +#: src/forms/PartForms.tsx:100 msgid "Subscribe to notifications for this part" msgstr "订阅此零件的通知" @@ -4564,156 +4593,156 @@ msgstr "订阅此零件的通知" #~ msgid "Part updated" #~ msgstr "Part updated" -#: src/forms/PartForms.tsx:193 +#: src/forms/PartForms.tsx:214 msgid "Parent part category" msgstr "上级零件类别" -#: src/forms/PartForms.tsx:208 +#: src/forms/PartForms.tsx:229 msgid "Subscribe to notifications for this category" msgstr "订阅此类别的通知" -#: src/forms/PurchaseOrderForms.tsx:388 -msgid "Assign Batch Code and Serial Numbers" -msgstr "分配批次代码和序列号" - -#: src/forms/PurchaseOrderForms.tsx:390 -msgid "Assign Batch Code" -msgstr "分配批号" - -#: src/forms/PurchaseOrderForms.tsx:410 -msgid "Choose Location" -msgstr "选择位置" - -#: src/forms/PurchaseOrderForms.tsx:418 -msgid "Item Destination selected" -msgstr "已选择项目目的地" - #: src/forms/PurchaseOrderForms.tsx:421 #~ msgid "Assign Batch Code{0}" #~ msgstr "Assign Batch Code{0}" -#: src/forms/PurchaseOrderForms.tsx:428 -msgid "Part category default location selected" -msgstr "已选择零件类别默认位置" +#: src/forms/PurchaseOrderForms.tsx:440 +msgid "Assign Batch Code and Serial Numbers" +msgstr "分配批次代码和序列号" -#: src/forms/PurchaseOrderForms.tsx:438 -msgid "Received stock location selected" -msgstr "已选择接收库存位置" +#: src/forms/PurchaseOrderForms.tsx:442 +msgid "Assign Batch Code" +msgstr "分配批号" #: src/forms/PurchaseOrderForms.tsx:444 #: src/forms/StockForms.tsx:428 #~ msgid "Remove item from list" #~ msgstr "Remove item from list" -#: src/forms/PurchaseOrderForms.tsx:446 +#: src/forms/PurchaseOrderForms.tsx:462 +msgid "Choose Location" +msgstr "选择位置" + +#: src/forms/PurchaseOrderForms.tsx:470 +msgid "Item Destination selected" +msgstr "已选择项目目的地" + +#: src/forms/PurchaseOrderForms.tsx:480 +msgid "Part category default location selected" +msgstr "已选择零件类别默认位置" + +#: src/forms/PurchaseOrderForms.tsx:490 +msgid "Received stock location selected" +msgstr "已选择接收库存位置" + +#: src/forms/PurchaseOrderForms.tsx:498 msgid "Default location selected" msgstr "已选择默认位置" -#: src/forms/PurchaseOrderForms.tsx:507 +#: src/forms/PurchaseOrderForms.tsx:559 msgid "Set Location" msgstr "设置位置" -#: src/forms/PurchaseOrderForms.tsx:524 -msgid "Set Expiry Date" -msgstr "设置到期日期" - -#: src/forms/PurchaseOrderForms.tsx:532 -#: src/forms/StockForms.tsx:693 -msgid "Adjust Packaging" -msgstr "调整封包" - -#: src/forms/PurchaseOrderForms.tsx:540 -#: src/forms/StockForms.tsx:684 -#: src/hooks/UseStockAdjustActions.tsx:148 -msgid "Change Status" -msgstr "更改状态" - -#: src/forms/PurchaseOrderForms.tsx:546 -msgid "Add Note" -msgstr "添加备注" - #: src/forms/PurchaseOrderForms.tsx:566 #~ msgid "Serial numbers" #~ msgstr "Serial numbers" +#: src/forms/PurchaseOrderForms.tsx:576 +msgid "Set Expiry Date" +msgstr "设置到期日期" + #: src/forms/PurchaseOrderForms.tsx:582 #~ msgid "Store at line item destination" #~ msgstr "Store at line item destination" -#: src/forms/PurchaseOrderForms.tsx:610 -msgid "Store at default location" -msgstr "存储在默认位置" +#: src/forms/PurchaseOrderForms.tsx:584 +#: src/forms/StockForms.tsx:693 +msgid "Adjust Packaging" +msgstr "调整封包" -#: src/forms/PurchaseOrderForms.tsx:625 -msgid "Store at line item destination " -msgstr "存储至行项目指定位置 " +#: src/forms/PurchaseOrderForms.tsx:592 +#: src/forms/StockForms.tsx:684 +#: src/hooks/UseStockAdjustActions.tsx:148 +msgid "Change Status" +msgstr "更改状态" -#: src/forms/PurchaseOrderForms.tsx:637 -msgid "Store with already received stock" -msgstr "存储已收到的库存" +#: src/forms/PurchaseOrderForms.tsx:598 +msgid "Add Note" +msgstr "添加备注" #: src/forms/PurchaseOrderForms.tsx:658 #~ msgid "Receive line items" #~ msgstr "Receive line items" -#: src/forms/PurchaseOrderForms.tsx:661 -#: src/pages/build/BuildDetail.tsx:340 +#: src/forms/PurchaseOrderForms.tsx:662 +msgid "Store at default location" +msgstr "存储在默认位置" + +#: src/forms/PurchaseOrderForms.tsx:677 +msgid "Store at line item destination " +msgstr "存储至行项目指定位置 " + +#: src/forms/PurchaseOrderForms.tsx:689 +msgid "Store with already received stock" +msgstr "存储已收到的库存" + +#: src/forms/PurchaseOrderForms.tsx:713 +#: src/pages/build/BuildDetail.tsx:341 #: src/pages/stock/StockDetail.tsx:280 #: src/pages/stock/StockDetail.tsx:952 #: src/tables/Filter.tsx:83 -#: src/tables/build/BuildAllocatedStockTable.tsx:128 +#: src/tables/build/BuildAllocatedStockTable.tsx:125 #: src/tables/build/BuildOutputTable.tsx:112 -#: src/tables/part/PartTestResultTable.tsx:260 -#: src/tables/part/PartTestResultTable.tsx:281 +#: src/tables/part/PartTestResultTable.tsx:268 +#: src/tables/part/PartTestResultTable.tsx:289 #: src/tables/sales/SalesOrderAllocationTable.tsx:149 msgid "Batch Code" msgstr "批号" -#: src/forms/PurchaseOrderForms.tsx:662 +#: src/forms/PurchaseOrderForms.tsx:714 msgid "Enter batch code for received items" msgstr "输入接收项目的批号" -#: src/forms/PurchaseOrderForms.tsx:675 +#: src/forms/PurchaseOrderForms.tsx:727 #: src/forms/StockForms.tsx:218 msgid "Serial Numbers" msgstr "序列号" -#: src/forms/PurchaseOrderForms.tsx:676 +#: src/forms/PurchaseOrderForms.tsx:728 msgid "Enter serial numbers for received items" msgstr "输入接收项目的序列号" -#: src/forms/PurchaseOrderForms.tsx:690 +#: src/forms/PurchaseOrderForms.tsx:742 #: src/pages/stock/StockDetail.tsx:382 #: src/tables/stock/StockItemTable.tsx:294 msgid "Expiry Date" msgstr "有效期至" -#: src/forms/PurchaseOrderForms.tsx:691 +#: src/forms/PurchaseOrderForms.tsx:743 msgid "Enter an expiry date for received items" msgstr "输入接收项目的到期日期" -#: src/forms/PurchaseOrderForms.tsx:703 +#: src/forms/PurchaseOrderForms.tsx:755 #: src/forms/StockForms.tsx:728 -#: src/pages/company/SupplierPartDetail.tsx:172 -#: src/pages/company/SupplierPartDetail.tsx:236 +#: src/pages/company/SupplierPartDetail.tsx:173 +#: src/pages/company/SupplierPartDetail.tsx:237 #: src/pages/stock/StockDetail.tsx:419 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:227 msgid "Packaging" msgstr "包装" -#: src/forms/PurchaseOrderForms.tsx:727 -#: src/pages/company/SupplierPartDetail.tsx:120 +#: src/forms/PurchaseOrderForms.tsx:779 +#: src/pages/company/SupplierPartDetail.tsx:121 #: src/tables/ColumnRenderers.tsx:332 msgid "Note" msgstr "备注" -#: src/forms/PurchaseOrderForms.tsx:799 -#: src/pages/company/SupplierPartDetail.tsx:138 +#: src/forms/PurchaseOrderForms.tsx:851 +#: src/pages/company/SupplierPartDetail.tsx:139 #: src/tables/purchasing/SupplierPriceBreakTable.tsx:49 msgid "SKU" msgstr "库存单位 (SKU)" -#: src/forms/PurchaseOrderForms.tsx:800 +#: src/forms/PurchaseOrderForms.tsx:852 #: src/tables/part/PartPurchaseOrdersTable.tsx:127 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:213 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:283 @@ -4721,11 +4750,11 @@ msgstr "库存单位 (SKU)" msgid "Received" msgstr "已接收" -#: src/forms/PurchaseOrderForms.tsx:817 +#: src/forms/PurchaseOrderForms.tsx:869 msgid "Receive Line Items" msgstr "接收行项目" -#: src/forms/PurchaseOrderForms.tsx:823 +#: src/forms/PurchaseOrderForms.tsx:875 msgid "Items received" msgstr "物料已收货" @@ -4737,7 +4766,35 @@ msgstr "接收物品" msgid "Item received into stock" msgstr "已收到库存物品" -#: src/forms/SalesOrderForms.tsx:401 +#: src/forms/SalesOrderForms.tsx:208 +#: src/forms/SalesOrderForms.tsx:210 +#: src/tables/sales/SalesOrderShipmentTable.tsx:215 +msgid "Check Shipment" +msgstr "" + +#: src/forms/SalesOrderForms.tsx:211 +msgid "Marking the shipment as checked indicates that you have verified that all items included in this shipment are correct" +msgstr "" + +#: src/forms/SalesOrderForms.tsx:221 +msgid "Shipment marked as checked" +msgstr "" + +#: src/forms/SalesOrderForms.tsx:236 +#: src/forms/SalesOrderForms.tsx:238 +#: src/tables/sales/SalesOrderShipmentTable.tsx:228 +msgid "Uncheck Shipment" +msgstr "" + +#: src/forms/SalesOrderForms.tsx:239 +msgid "Marking the shipment as unchecked indicates that the shipment requires further verification" +msgstr "" + +#: src/forms/SalesOrderForms.tsx:249 +msgid "Shipment marked as unchecked" +msgstr "" + +#: src/forms/SalesOrderForms.tsx:480 msgid "Leave blank to use the order address" msgstr "" @@ -4792,150 +4849,150 @@ msgstr "移动" msgid "Return" msgstr "退货" -#: src/forms/StockForms.tsx:963 +#: src/forms/StockForms.tsx:979 #: src/pages/Index/Scan.tsx:182 msgid "Count" msgstr "总计" -#: src/forms/StockForms.tsx:1246 +#: src/forms/StockForms.tsx:1262 #: src/hooks/UseStockAdjustActions.tsx:108 msgid "Add Stock" msgstr "添加库存" -#: src/forms/StockForms.tsx:1247 +#: src/forms/StockForms.tsx:1263 msgid "Stock added" msgstr "库存已添加" -#: src/forms/StockForms.tsx:1250 +#: src/forms/StockForms.tsx:1266 msgid "Increase the quantity of the selected stock items by a given amount." msgstr "按指定数量增加选定库存物料的存量。" -#: src/forms/StockForms.tsx:1261 +#: src/forms/StockForms.tsx:1277 #: src/hooks/UseStockAdjustActions.tsx:118 msgid "Remove Stock" msgstr "移除库存" -#: src/forms/StockForms.tsx:1262 +#: src/forms/StockForms.tsx:1278 msgid "Stock removed" msgstr "库存已移除" -#: src/forms/StockForms.tsx:1265 +#: src/forms/StockForms.tsx:1281 msgid "Decrease the quantity of the selected stock items by a given amount." msgstr "按指定数量减少选定库存物料的存量。" -#: src/forms/StockForms.tsx:1276 +#: src/forms/StockForms.tsx:1292 #: src/hooks/UseStockAdjustActions.tsx:128 msgid "Transfer Stock" msgstr "转移库存" -#: src/forms/StockForms.tsx:1277 +#: src/forms/StockForms.tsx:1293 msgid "Stock transferred" msgstr "库存已转移" -#: src/forms/StockForms.tsx:1280 +#: src/forms/StockForms.tsx:1296 msgid "Transfer selected items to the specified location." msgstr "将选定物料转移至指定位置。" -#: src/forms/StockForms.tsx:1291 +#: src/forms/StockForms.tsx:1307 #: src/hooks/UseStockAdjustActions.tsx:168 msgid "Return Stock" msgstr "退回库存" -#: src/forms/StockForms.tsx:1292 +#: src/forms/StockForms.tsx:1308 msgid "Stock returned" msgstr "库存已退回" -#: src/forms/StockForms.tsx:1295 +#: src/forms/StockForms.tsx:1311 msgid "Return selected items into stock, to the specified location." msgstr "将选定物料退回库存至指定位置。" -#: src/forms/StockForms.tsx:1306 +#: src/forms/StockForms.tsx:1322 #: src/hooks/UseStockAdjustActions.tsx:98 msgid "Count Stock" msgstr "库存数量" -#: src/forms/StockForms.tsx:1307 +#: src/forms/StockForms.tsx:1323 msgid "Stock counted" msgstr "库存计数" -#: src/forms/StockForms.tsx:1310 +#: src/forms/StockForms.tsx:1326 msgid "Count the selected stock items, and adjust the quantity accordingly." msgstr "统计选定库存物料数量并按需调整。" -#: src/forms/StockForms.tsx:1321 +#: src/forms/StockForms.tsx:1337 msgid "Change Stock Status" msgstr "更改库存状态" -#: src/forms/StockForms.tsx:1322 +#: src/forms/StockForms.tsx:1338 msgid "Stock status changed" msgstr "库存状态已改变" -#: src/forms/StockForms.tsx:1325 +#: src/forms/StockForms.tsx:1341 msgid "Change the status of the selected stock items." msgstr "变更选定库存物料的状态。" -#: src/forms/StockForms.tsx:1336 +#: src/forms/StockForms.tsx:1352 #: src/hooks/UseStockAdjustActions.tsx:138 msgid "Merge Stock" msgstr "合并库存" -#: src/forms/StockForms.tsx:1337 +#: src/forms/StockForms.tsx:1353 msgid "Stock merged" msgstr "库存已合并" -#: src/forms/StockForms.tsx:1339 +#: src/forms/StockForms.tsx:1355 msgid "Merge Stock Items" msgstr "合并库存物料" -#: src/forms/StockForms.tsx:1341 +#: src/forms/StockForms.tsx:1357 msgid "Merge operation cannot be reversed" msgstr "合并操作不可逆" -#: src/forms/StockForms.tsx:1342 +#: src/forms/StockForms.tsx:1358 msgid "Tracking information may be lost when merging items" msgstr "合并操作可能导致追溯信息丢失" -#: src/forms/StockForms.tsx:1343 +#: src/forms/StockForms.tsx:1359 msgid "Supplier information may be lost when merging items" msgstr "合并操作可能导致供应商信息丢失" -#: src/forms/StockForms.tsx:1361 +#: src/forms/StockForms.tsx:1377 msgid "Assign Stock to Customer" msgstr "将库存分配给客户" -#: src/forms/StockForms.tsx:1362 +#: src/forms/StockForms.tsx:1378 msgid "Stock assigned to customer" msgstr "库存已分配给客户" -#: src/forms/StockForms.tsx:1372 +#: src/forms/StockForms.tsx:1388 msgid "Delete Stock Items" msgstr "删除库存项" -#: src/forms/StockForms.tsx:1373 +#: src/forms/StockForms.tsx:1389 msgid "Stock deleted" msgstr "库存已删除" -#: src/forms/StockForms.tsx:1376 +#: src/forms/StockForms.tsx:1392 msgid "This operation will permanently delete the selected stock items." msgstr "此操作将永久删除选定的库存物料。" -#: src/forms/StockForms.tsx:1385 +#: src/forms/StockForms.tsx:1401 msgid "Parent stock location" msgstr "上级库存地点" -#: src/forms/StockForms.tsx:1512 +#: src/forms/StockForms.tsx:1528 msgid "Find Serial Number" msgstr "查找序列号" -#: src/forms/StockForms.tsx:1523 +#: src/forms/StockForms.tsx:1539 msgid "No matching items" msgstr "未找到匹配项" -#: src/forms/StockForms.tsx:1529 +#: src/forms/StockForms.tsx:1545 msgid "Multiple matching items" msgstr "存在多个匹配项" -#: src/forms/StockForms.tsx:1538 +#: src/forms/StockForms.tsx:1554 msgid "Invalid response from server" msgstr "服务器返回无效响应" @@ -4953,7 +5010,6 @@ msgstr "要选择的条目列表" #: src/tables/FilterSelectDrawer.tsx:137 #: src/tables/FilterSelectDrawer.tsx:149 #: src/tables/part/PartTestResultTable.tsx:206 -#: src/tables/purchasing/ManufacturerPartParameterTable.tsx:42 #: src/tables/stock/StockItemTestResultTable.tsx:207 msgid "Value" msgstr "值" @@ -5244,7 +5300,7 @@ msgid "Delete selected stock items" msgstr "删除选中的库存物料" #: src/hooks/UseStockAdjustActions.tsx:205 -#: src/pages/part/PartDetail.tsx:1137 +#: src/pages/part/PartDetail.tsx:1158 msgid "Stock Actions" msgstr "库存操作" @@ -5932,6 +5988,9 @@ msgstr "" #: src/pages/Index/Settings/AccountSettings/MFASettings.tsx:310 #: src/pages/Index/Settings/AccountSettings/MFASettings.tsx:401 +#: src/tables/build/BuildAllocatedStockTable.tsx:181 +#: src/tables/build/BuildLineTable.tsx:668 +#: src/tables/sales/SalesOrderAllocationTable.tsx:220 msgid "Confirm Removal" msgstr "" @@ -6394,30 +6453,34 @@ msgid "Email Messages" msgstr "电子邮件消息" #: src/pages/Index/Settings/AdminCenter/HomePanel.tsx:22 -msgid "Active Alerts" -msgstr "" +#~ msgid "Active Alerts" +#~ msgstr "Active Alerts" #: src/pages/Index/Settings/AdminCenter/HomePanel.tsx:27 -msgid "Inactive Alerts" +#~ msgid "Inactive Alerts" +#~ msgstr "Inactive Alerts" + +#: src/pages/Index/Settings/AdminCenter/HomePanel.tsx:36 +msgid "System Status" msgstr "" -#: src/pages/Index/Settings/AdminCenter/HomePanel.tsx:38 +#: src/pages/Index/Settings/AdminCenter/HomePanel.tsx:47 msgid "Admin Center Information" msgstr "" -#: src/pages/Index/Settings/AdminCenter/HomePanel.tsx:44 +#: src/pages/Index/Settings/AdminCenter/HomePanel.tsx:53 msgid "The home panel (and the whole Admin Center) is a new feature starting with the new UI and was previously (before 1.0) not available." msgstr "" -#: src/pages/Index/Settings/AdminCenter/HomePanel.tsx:51 +#: src/pages/Index/Settings/AdminCenter/HomePanel.tsx:60 msgid "The admin center provides a centralized location for all administration functionality and is meant to replace all interaction with the (django) backend admin interface." msgstr "" -#: src/pages/Index/Settings/AdminCenter/HomePanel.tsx:58 +#: src/pages/Index/Settings/AdminCenter/HomePanel.tsx:67 msgid "Please open feature requests (after checking the tracker) for any existing backend admin functionality you are missing in this UI. The backend admin interface should be used carefully and seldom." msgstr "" -#: src/pages/Index/Settings/AdminCenter/HomePanel.tsx:76 +#: src/pages/Index/Settings/AdminCenter/HomePanel.tsx:85 msgid "Quick Actions" msgstr "" @@ -6476,11 +6539,11 @@ msgstr "自定义单位" #: src/pages/Index/Settings/AdminCenter/Index.tsx:195 #: src/pages/part/CategoryDetail.tsx:313 -msgid "Part Parameters" -msgstr "零件参数" +#~ msgid "Part Parameters" +#~ msgstr "Part Parameters" #: src/pages/Index/Settings/AdminCenter/Index.tsx:202 -#: src/pages/part/CategoryDetail.tsx:306 +#: src/pages/part/CategoryDetail.tsx:329 msgid "Category Parameters" msgstr "类别参数" @@ -6494,7 +6557,7 @@ msgstr "位置类型" #: src/pages/Index/Settings/AdminCenter/Index.tsx:235 #: src/pages/Index/Settings/AdminCenter/MachineManagementPanel.tsx:52 -#: src/tables/machine/MachineTypeTable.tsx:325 +#: src/tables/machine/MachineTypeTable.tsx:323 msgid "Machines" msgstr "设备" @@ -6507,8 +6570,8 @@ msgid "Data Management" msgstr "数据管理" #: src/pages/Index/Settings/AdminCenter/Index.tsx:270 -#: src/pages/Index/Settings/SystemSettings.tsx:175 -#: src/pages/Index/Settings/UserSettings.tsx:118 +#: src/pages/Index/Settings/SystemSettings.tsx:176 +#: src/pages/Index/Settings/UserSettings.tsx:119 msgid "Reporting" msgstr "报告" @@ -6709,11 +6772,11 @@ msgstr "令牌" msgid "The settings below are specific to each available plugin" msgstr "以下设置项为各插件的专属配置" -#: src/pages/Index/Settings/SystemSettings.tsx:77 +#: src/pages/Index/Settings/SystemSettings.tsx:78 msgid "Authentication" msgstr "身份验证" -#: src/pages/Index/Settings/SystemSettings.tsx:103 +#: src/pages/Index/Settings/SystemSettings.tsx:104 msgid "Barcodes" msgstr "条形码" @@ -6725,12 +6788,12 @@ msgstr "条形码" #~ msgid "This panel is a placeholder." #~ msgstr "This panel is a placeholder." -#: src/pages/Index/Settings/SystemSettings.tsx:127 -#: src/pages/Index/Settings/UserSettings.tsx:112 +#: src/pages/Index/Settings/SystemSettings.tsx:128 +#: src/pages/Index/Settings/UserSettings.tsx:113 msgid "The settings below are specific to each available notification method" msgstr "以下设置专属于每种可用的通知方式" -#: src/pages/Index/Settings/SystemSettings.tsx:133 +#: src/pages/Index/Settings/SystemSettings.tsx:134 msgid "Pricing" msgstr "定价" @@ -6738,7 +6801,7 @@ msgstr "定价" #~ msgid "Exchange Rates" #~ msgstr "Exchange Rates" -#: src/pages/Index/Settings/SystemSettings.tsx:169 +#: src/pages/Index/Settings/SystemSettings.tsx:170 msgid "Labels" msgstr "标签" @@ -6790,15 +6853,15 @@ msgstr "标记为未读" #~ msgid "Delete notifications" #~ msgstr "Delete notifications" -#: src/pages/build/BuildDetail.tsx:69 +#: src/pages/build/BuildDetail.tsx:70 msgid "No Required Items" msgstr "无必填项" -#: src/pages/build/BuildDetail.tsx:71 +#: src/pages/build/BuildDetail.tsx:72 msgid "This build order does not have any required items." msgstr "该生产订单无必填物料。" -#: src/pages/build/BuildDetail.tsx:72 +#: src/pages/build/BuildDetail.tsx:73 msgid "The assembled part may not have a Bill of Materials (BOM) defined, or the BOM is empty." msgstr "该装配件可能未定义物料清单(BOM),或BOM为空。" @@ -6826,7 +6889,7 @@ msgstr "该装配件可能未定义物料清单(BOM),或BOM为空。" #~ msgid "Build Order updated" #~ msgstr "Build Order updated" -#: src/pages/build/BuildDetail.tsx:215 +#: src/pages/build/BuildDetail.tsx:216 #: src/pages/part/PartDetail.tsx:480 #: src/pages/stock/StockDetail.tsx:161 #: src/tables/bom/UsedInTable.tsx:44 @@ -6843,10 +6906,10 @@ msgstr "版本" #~ msgid "Duplicate build order" #~ msgstr "Duplicate build order" -#: src/pages/build/BuildDetail.tsx:228 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:174 -#: src/pages/sales/ReturnOrderDetail.tsx:141 -#: src/pages/sales/SalesOrderDetail.tsx:131 +#: src/pages/build/BuildDetail.tsx:229 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:175 +#: src/pages/sales/ReturnOrderDetail.tsx:142 +#: src/pages/sales/SalesOrderDetail.tsx:132 #: src/pages/stock/StockDetail.tsx:176 msgid "Custom Status" msgstr "自定义状态" @@ -6855,9 +6918,9 @@ msgstr "自定义状态" #~ msgid "Delete build order" #~ msgstr "Delete build order" -#: src/pages/build/BuildDetail.tsx:237 -#: src/pages/build/BuildDetail.tsx:723 -#: src/pages/build/BuildIndex.tsx:28 +#: src/pages/build/BuildDetail.tsx:238 +#: src/pages/build/BuildDetail.tsx:728 +#: src/pages/build/BuildIndex.tsx:34 #: src/pages/stock/LocationDetail.tsx:140 #: src/tables/build/BuildOrderTable.tsx:123 #: src/tables/build/BuildOrderTable.tsx:183 @@ -6865,57 +6928,57 @@ msgstr "自定义状态" msgid "External" msgstr "外部" -#: src/pages/build/BuildDetail.tsx:244 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:141 -#: src/pages/sales/ReturnOrderDetail.tsx:108 -#: src/pages/sales/SalesOrderDetail.tsx:98 +#: src/pages/build/BuildDetail.tsx:245 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:142 +#: src/pages/sales/ReturnOrderDetail.tsx:109 +#: src/pages/sales/SalesOrderDetail.tsx:99 #: src/tables/ColumnRenderers.tsx:321 -#: src/tables/build/BuildAllocatedStockTable.tsx:115 -#: src/tables/build/BuildLineTable.tsx:352 +#: src/tables/build/BuildAllocatedStockTable.tsx:112 +#: src/tables/build/BuildLineTable.tsx:353 msgid "Reference" msgstr "参考" -#: src/pages/build/BuildDetail.tsx:258 +#: src/pages/build/BuildDetail.tsx:259 msgid "Parent Build" msgstr "上级生产" -#: src/pages/build/BuildDetail.tsx:269 +#: src/pages/build/BuildDetail.tsx:270 msgid "Build Quantity" msgstr "生产数量" -#: src/pages/build/BuildDetail.tsx:275 +#: src/pages/build/BuildDetail.tsx:276 #: src/pages/part/PartDetail.tsx:598 #: src/tables/bom/BomTable.tsx:365 #: src/tables/bom/BomTable.tsx:407 msgid "Can Build" msgstr "可以创建" -#: src/pages/build/BuildDetail.tsx:284 -#: src/pages/build/BuildDetail.tsx:474 +#: src/pages/build/BuildDetail.tsx:285 +#: src/pages/build/BuildDetail.tsx:475 msgid "Completed Outputs" msgstr "已出产" -#: src/pages/build/BuildDetail.tsx:301 +#: src/pages/build/BuildDetail.tsx:302 #: src/tables/Filter.tsx:381 #: src/tables/build/BuildOrderTable.tsx:143 msgid "Issued By" msgstr "发布人" -#: src/pages/build/BuildDetail.tsx:309 +#: src/pages/build/BuildDetail.tsx:310 #: src/pages/part/PartDetail.tsx:691 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:261 -#: src/pages/sales/ReturnOrderDetail.tsx:239 -#: src/pages/sales/SalesOrderDetail.tsx:232 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:262 +#: src/pages/sales/ReturnOrderDetail.tsx:240 +#: src/pages/sales/SalesOrderDetail.tsx:233 #: src/tables/ColumnRenderers.tsx:464 #: src/tables/Filter.tsx:319 msgid "Responsible" msgstr "责任人" -#: src/pages/build/BuildDetail.tsx:327 +#: src/pages/build/BuildDetail.tsx:328 msgid "Any location" msgstr "任意地点" -#: src/pages/build/BuildDetail.tsx:334 +#: src/pages/build/BuildDetail.tsx:335 msgid "Destination Location" msgstr "目标地点" @@ -6924,24 +6987,24 @@ msgstr "目标地点" #~ msgid "Test Statistics" #~ msgstr "Test Statistics" -#: src/pages/build/BuildDetail.tsx:350 +#: src/pages/build/BuildDetail.tsx:351 #: src/tables/settings/ApiTokenTable.tsx:97 #: src/tables/settings/PendingTasksTable.tsx:41 msgid "Created" msgstr "已创建" -#: src/pages/build/BuildDetail.tsx:358 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:286 -#: src/pages/sales/ReturnOrderDetail.tsx:265 -#: src/pages/sales/SalesOrderDetail.tsx:257 +#: src/pages/build/BuildDetail.tsx:359 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:287 +#: src/pages/sales/ReturnOrderDetail.tsx:266 +#: src/pages/sales/SalesOrderDetail.tsx:258 #: src/tables/ColumnRenderers.tsx:486 msgid "Start Date" msgstr "开始日期" -#: src/pages/build/BuildDetail.tsx:366 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:294 -#: src/pages/sales/ReturnOrderDetail.tsx:273 -#: src/pages/sales/SalesOrderDetail.tsx:265 +#: src/pages/build/BuildDetail.tsx:367 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:295 +#: src/pages/sales/ReturnOrderDetail.tsx:274 +#: src/pages/sales/SalesOrderDetail.tsx:266 #: src/tables/ColumnRenderers.tsx:494 #: src/tables/part/PartPurchaseOrdersTable.tsx:101 #: src/tables/sales/ReturnOrderLineItemTable.tsx:154 @@ -6954,185 +7017,185 @@ msgstr "预计日期" #~ msgstr "Reporting Actions" #: src/pages/build/BuildDetail.tsx:374 +#~ msgid "Print build report" +#~ msgstr "Print build report" + +#: src/pages/build/BuildDetail.tsx:375 #: src/tables/build/BuildOrderTable.tsx:93 #: src/tables/sales/SalesOrderLineItemTable.tsx:347 msgid "Completed" msgstr "已完成" -#: src/pages/build/BuildDetail.tsx:374 -#~ msgid "Print build report" -#~ msgstr "Print build report" - -#: src/pages/build/BuildDetail.tsx:410 +#: src/pages/build/BuildDetail.tsx:411 msgid "Build Details" msgstr "生产详情" -#: src/pages/build/BuildDetail.tsx:416 +#: src/pages/build/BuildDetail.tsx:417 msgid "Required Parts" msgstr "所需零件" -#: src/pages/build/BuildDetail.tsx:428 -#: src/pages/sales/SalesOrderDetail.tsx:407 -#: src/pages/sales/SalesOrderShipmentDetail.tsx:261 +#: src/pages/build/BuildDetail.tsx:429 +#: src/pages/sales/SalesOrderDetail.tsx:408 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:259 #: src/tables/part/PartSalesAllocationsTable.tsx:73 msgid "Allocated Stock" msgstr "已分配的库存" -#: src/pages/build/BuildDetail.tsx:444 +#: src/pages/build/BuildDetail.tsx:445 msgid "Consumed Stock" msgstr "已消耗库存" -#: src/pages/build/BuildDetail.tsx:461 +#: src/pages/build/BuildDetail.tsx:462 msgid "Incomplete Outputs" msgstr "未出产" -#: src/pages/build/BuildDetail.tsx:489 +#: src/pages/build/BuildDetail.tsx:490 msgid "External Orders" msgstr "外部订单" -#: src/pages/build/BuildDetail.tsx:503 +#: src/pages/build/BuildDetail.tsx:504 msgid "Child Build Orders" msgstr "子生产订单" -#: src/pages/build/BuildDetail.tsx:513 -#: src/pages/part/PartDetail.tsx:937 +#: src/pages/build/BuildDetail.tsx:514 +#: src/pages/part/PartDetail.tsx:926 #: src/pages/stock/StockDetail.tsx:587 #: src/tables/build/BuildOutputTable.tsx:654 #: src/tables/stock/StockItemTestResultTable.tsx:173 msgid "Test Results" msgstr "测试结果" -#: src/pages/build/BuildDetail.tsx:550 +#: src/pages/build/BuildDetail.tsx:555 msgid "Edit Build Order" msgstr "编辑生产订单" -#: src/pages/build/BuildDetail.tsx:572 +#: src/pages/build/BuildDetail.tsx:577 #: src/tables/build/BuildOrderTable.tsx:207 #: src/tables/build/BuildOrderTable.tsx:223 msgid "Add Build Order" msgstr "添加生产订单" -#: src/pages/build/BuildDetail.tsx:582 +#: src/pages/build/BuildDetail.tsx:587 msgid "Cancel Build Order" msgstr "取消生产订单" -#: src/pages/build/BuildDetail.tsx:584 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:416 -#: src/pages/sales/ReturnOrderDetail.tsx:427 -#: src/pages/sales/SalesOrderDetail.tsx:454 +#: src/pages/build/BuildDetail.tsx:589 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:421 +#: src/pages/sales/ReturnOrderDetail.tsx:432 +#: src/pages/sales/SalesOrderDetail.tsx:459 msgid "Order cancelled" msgstr "订单已取消" -#: src/pages/build/BuildDetail.tsx:585 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:415 -#: src/pages/sales/ReturnOrderDetail.tsx:426 -#: src/pages/sales/SalesOrderDetail.tsx:453 +#: src/pages/build/BuildDetail.tsx:590 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:420 +#: src/pages/sales/ReturnOrderDetail.tsx:431 +#: src/pages/sales/SalesOrderDetail.tsx:458 msgid "Cancel this order" msgstr "取消此订单" -#: src/pages/build/BuildDetail.tsx:594 +#: src/pages/build/BuildDetail.tsx:599 msgid "Hold Build Order" msgstr "挂起生产订单" -#: src/pages/build/BuildDetail.tsx:596 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:423 -#: src/pages/sales/ReturnOrderDetail.tsx:434 -#: src/pages/sales/SalesOrderDetail.tsx:461 +#: src/pages/build/BuildDetail.tsx:601 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:428 +#: src/pages/sales/ReturnOrderDetail.tsx:439 +#: src/pages/sales/SalesOrderDetail.tsx:466 msgid "Place this order on hold" msgstr "将此订单挂起" -#: src/pages/build/BuildDetail.tsx:597 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:424 -#: src/pages/sales/ReturnOrderDetail.tsx:435 -#: src/pages/sales/SalesOrderDetail.tsx:462 +#: src/pages/build/BuildDetail.tsx:602 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:429 +#: src/pages/sales/ReturnOrderDetail.tsx:440 +#: src/pages/sales/SalesOrderDetail.tsx:467 msgid "Order placed on hold" msgstr "挂起订单" -#: src/pages/build/BuildDetail.tsx:602 +#: src/pages/build/BuildDetail.tsx:607 msgid "Issue Build Order" msgstr "发出生产订单" -#: src/pages/build/BuildDetail.tsx:604 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:407 -#: src/pages/sales/ReturnOrderDetail.tsx:418 -#: src/pages/sales/SalesOrderDetail.tsx:445 +#: src/pages/build/BuildDetail.tsx:609 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:412 +#: src/pages/sales/ReturnOrderDetail.tsx:423 +#: src/pages/sales/SalesOrderDetail.tsx:450 msgid "Issue this order" msgstr "发出这个订单" -#: src/pages/build/BuildDetail.tsx:605 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:408 -#: src/pages/sales/ReturnOrderDetail.tsx:419 -#: src/pages/sales/SalesOrderDetail.tsx:446 +#: src/pages/build/BuildDetail.tsx:610 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:413 +#: src/pages/sales/ReturnOrderDetail.tsx:424 +#: src/pages/sales/SalesOrderDetail.tsx:451 msgid "Order issued" msgstr "订单发起" -#: src/pages/build/BuildDetail.tsx:624 +#: src/pages/build/BuildDetail.tsx:629 msgid "Complete Build Order" msgstr "完成生产订单" -#: src/pages/build/BuildDetail.tsx:630 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:436 -#: src/pages/sales/ReturnOrderDetail.tsx:442 -#: src/pages/sales/SalesOrderDetail.tsx:480 +#: src/pages/build/BuildDetail.tsx:635 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:441 +#: src/pages/sales/ReturnOrderDetail.tsx:447 +#: src/pages/sales/SalesOrderDetail.tsx:485 msgid "Mark this order as complete" msgstr "标记该订单为已完成" -#: src/pages/build/BuildDetail.tsx:633 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:430 -#: src/pages/sales/ReturnOrderDetail.tsx:443 -#: src/pages/sales/SalesOrderDetail.tsx:481 +#: src/pages/build/BuildDetail.tsx:638 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:435 +#: src/pages/sales/ReturnOrderDetail.tsx:448 +#: src/pages/sales/SalesOrderDetail.tsx:486 msgid "Order completed" msgstr "订单已完成" -#: src/pages/build/BuildDetail.tsx:660 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:459 -#: src/pages/sales/ReturnOrderDetail.tsx:470 -#: src/pages/sales/SalesOrderDetail.tsx:516 +#: src/pages/build/BuildDetail.tsx:665 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:464 +#: src/pages/sales/ReturnOrderDetail.tsx:475 +#: src/pages/sales/SalesOrderDetail.tsx:521 msgid "Issue Order" msgstr "发布订单" -#: src/pages/build/BuildDetail.tsx:667 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:466 -#: src/pages/sales/ReturnOrderDetail.tsx:477 -#: src/pages/sales/SalesOrderDetail.tsx:530 +#: src/pages/build/BuildDetail.tsx:672 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:471 +#: src/pages/sales/ReturnOrderDetail.tsx:482 +#: src/pages/sales/SalesOrderDetail.tsx:535 msgid "Complete Order" msgstr "完成订单" -#: src/pages/build/BuildDetail.tsx:686 +#: src/pages/build/BuildDetail.tsx:691 msgid "Build Order Actions" msgstr "生产订单操作" -#: src/pages/build/BuildDetail.tsx:691 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:489 -#: src/pages/sales/ReturnOrderDetail.tsx:500 -#: src/pages/sales/SalesOrderDetail.tsx:554 +#: src/pages/build/BuildDetail.tsx:696 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:494 +#: src/pages/sales/ReturnOrderDetail.tsx:505 +#: src/pages/sales/SalesOrderDetail.tsx:559 msgid "Edit order" msgstr "编辑订单" -#: src/pages/build/BuildDetail.tsx:695 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:497 -#: src/pages/sales/ReturnOrderDetail.tsx:506 -#: src/pages/sales/SalesOrderDetail.tsx:559 +#: src/pages/build/BuildDetail.tsx:700 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:502 +#: src/pages/sales/ReturnOrderDetail.tsx:511 +#: src/pages/sales/SalesOrderDetail.tsx:564 msgid "Duplicate order" msgstr "复制订单" -#: src/pages/build/BuildDetail.tsx:699 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:500 -#: src/pages/sales/ReturnOrderDetail.tsx:511 -#: src/pages/sales/SalesOrderDetail.tsx:562 -msgid "Hold order" -msgstr "挂起订单" - #: src/pages/build/BuildDetail.tsx:704 #: src/pages/purchasing/PurchaseOrderDetail.tsx:505 #: src/pages/sales/ReturnOrderDetail.tsx:516 #: src/pages/sales/SalesOrderDetail.tsx:567 +msgid "Hold order" +msgstr "挂起订单" + +#: src/pages/build/BuildDetail.tsx:709 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:510 +#: src/pages/sales/ReturnOrderDetail.tsx:521 +#: src/pages/sales/SalesOrderDetail.tsx:572 msgid "Cancel order" msgstr "取消订单" -#: src/pages/build/BuildDetail.tsx:742 +#: src/pages/build/BuildDetail.tsx:747 #: src/pages/stock/StockDetail.tsx:344 -#: src/tables/build/BuildAllocatedStockTable.tsx:85 +#: src/tables/build/BuildAllocatedStockTable.tsx:82 #: src/tables/part/PartBuildAllocationsTable.tsx:45 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:157 #: src/tables/stock/StockTrackingTable.tsx:109 @@ -7143,7 +7206,7 @@ msgstr "生产订单" #~ msgid "Build order created" #~ msgstr "Build order created" -#: src/pages/build/BuildIndex.tsx:29 +#: src/pages/build/BuildIndex.tsx:35 #: src/tables/build/BuildOrderTable.tsx:184 msgid "Show external build orders" msgstr "显示外部生产订单" @@ -7152,61 +7215,82 @@ msgstr "显示外部生产订单" #~ msgid "New Build Order" #~ msgstr "New Build Order" -#: src/pages/build/BuildIndex.tsx:83 -#: src/pages/purchasing/PurchasingIndex.tsx:69 -#: src/pages/sales/SalesIndex.tsx:92 -#: src/pages/sales/SalesIndex.tsx:125 +#: src/pages/build/BuildIndex.tsx:74 +#: src/pages/part/CategoryDetail.tsx:292 +#: src/pages/purchasing/PurchasingIndex.tsx:74 +#: src/pages/purchasing/PurchasingIndex.tsx:107 +#: src/pages/purchasing/PurchasingIndex.tsx:135 +#: src/pages/purchasing/PurchasingIndex.tsx:156 +#: src/pages/purchasing/PurchasingIndex.tsx:184 +#: src/pages/sales/SalesIndex.tsx:61 +#: src/pages/sales/SalesIndex.tsx:107 +#: src/pages/sales/SalesIndex.tsx:140 msgid "Table View" msgstr "表格视图" -#: src/pages/build/BuildIndex.tsx:86 -#: src/pages/purchasing/PurchasingIndex.tsx:72 -#: src/pages/sales/SalesIndex.tsx:95 -#: src/pages/sales/SalesIndex.tsx:128 +#: src/pages/build/BuildIndex.tsx:80 +#: src/pages/purchasing/PurchasingIndex.tsx:80 +#: src/pages/sales/SalesIndex.tsx:67 +#: src/pages/sales/SalesIndex.tsx:113 msgid "Calendar View" msgstr "日历视图" -#: src/pages/company/CompanyDetail.tsx:99 +#: src/pages/build/BuildIndex.tsx:86 +#: src/pages/part/CategoryDetail.tsx:306 +#: src/pages/purchasing/PurchasingIndex.tsx:92 +#: src/pages/purchasing/PurchasingIndex.tsx:118 +#: src/pages/purchasing/PurchasingIndex.tsx:141 +#: src/pages/purchasing/PurchasingIndex.tsx:167 +#: src/pages/purchasing/PurchasingIndex.tsx:190 +#: src/pages/sales/SalesIndex.tsx:79 +#: src/pages/sales/SalesIndex.tsx:125 +#: src/pages/sales/SalesIndex.tsx:151 +msgid "Parametric View" +msgstr "" + +#: src/pages/company/CompanyDetail.tsx:100 msgid "Website" msgstr "网站" -#: src/pages/company/CompanyDetail.tsx:107 +#: src/pages/company/CompanyDetail.tsx:108 msgid "Phone Number" msgstr "电话号码" -#: src/pages/company/CompanyDetail.tsx:114 +#: src/pages/company/CompanyDetail.tsx:115 msgid "Email Address" msgstr "电子邮件地址" -#: src/pages/company/CompanyDetail.tsx:121 +#: src/pages/company/CompanyDetail.tsx:122 msgid "Tax ID" msgstr "税号" -#: src/pages/company/CompanyDetail.tsx:131 +#: src/pages/company/CompanyDetail.tsx:132 msgid "Default Currency" msgstr "默认货币单位" -#: src/pages/company/CompanyDetail.tsx:142 +#: src/pages/company/CompanyDetail.tsx:143 #: src/pages/company/ManufacturerDetail.tsx:8 -#: src/pages/company/ManufacturerPartDetail.tsx:104 -#: src/pages/company/ManufacturerPartDetail.tsx:280 -#: src/pages/company/SupplierPartDetail.tsx:152 +#: src/pages/company/ManufacturerPartDetail.tsx:103 +#: src/pages/company/ManufacturerPartDetail.tsx:271 +#: src/pages/company/SupplierPartDetail.tsx:153 #: src/tables/Filter.tsx:347 #: src/tables/company/CompanyTable.tsx:101 #: src/tables/purchasing/SupplierPartTable.tsx:89 msgid "Manufacturer" msgstr "制造商" -#: src/pages/company/CompanyDetail.tsx:148 +#: src/pages/company/CompanyDetail.tsx:149 #: src/pages/company/CustomerDetail.tsx:8 #: src/pages/part/pricing/SaleHistoryPanel.tsx:31 -#: src/pages/sales/ReturnOrderDetail.tsx:123 -#: src/pages/sales/SalesOrderDetail.tsx:113 -#: src/pages/sales/SalesOrderShipmentDetail.tsx:113 +#: src/pages/sales/ReturnOrderDetail.tsx:124 +#: src/pages/sales/SalesOrderDetail.tsx:114 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:111 #: src/pages/stock/StockDetail.tsx:370 #: src/tables/company/CompanyTable.tsx:106 +#: src/tables/sales/ReturnOrderParametricTable.tsx:32 #: src/tables/sales/ReturnOrderTable.tsx:108 -#: src/tables/sales/SalesOrderShipmentTable.tsx:111 +#: src/tables/sales/SalesOrderParametricTable.tsx:32 +#: src/tables/sales/SalesOrderShipmentTable.tsx:132 #: src/tables/sales/SalesOrderTable.tsx:133 #: src/tables/stock/StockTrackingTable.tsx:153 msgid "Customer" @@ -7216,11 +7300,11 @@ msgstr "客户" #~ msgid "Edit company" #~ msgstr "Edit company" -#: src/pages/company/CompanyDetail.tsx:181 +#: src/pages/company/CompanyDetail.tsx:182 msgid "Company Details" msgstr "公司详细信息" -#: src/pages/company/CompanyDetail.tsx:187 +#: src/pages/company/CompanyDetail.tsx:188 msgid "Supplied Parts" msgstr "已提供的零件" @@ -7228,79 +7312,79 @@ msgstr "已提供的零件" #~ msgid "Delete company" #~ msgstr "Delete company" -#: src/pages/company/CompanyDetail.tsx:194 +#: src/pages/company/CompanyDetail.tsx:195 msgid "Manufactured Parts" msgstr "制成零件" -#: src/pages/company/CompanyDetail.tsx:241 +#: src/pages/company/CompanyDetail.tsx:242 msgid "Assigned Stock" msgstr "已分配的库存" -#: src/pages/company/CompanyDetail.tsx:282 +#: src/pages/company/CompanyDetail.tsx:287 #: src/tables/company/CompanyTable.tsx:82 msgid "Edit Company" msgstr "编辑公司" -#: src/pages/company/CompanyDetail.tsx:290 +#: src/pages/company/CompanyDetail.tsx:295 msgid "Delete Company" msgstr "删除该公司" -#: src/pages/company/CompanyDetail.tsx:305 +#: src/pages/company/CompanyDetail.tsx:310 msgid "Company Actions" msgstr "公司操作" -#: src/pages/company/ManufacturerPartDetail.tsx:78 -#: src/pages/company/SupplierPartDetail.tsx:89 +#: src/pages/company/ManufacturerPartDetail.tsx:77 +#: src/pages/company/SupplierPartDetail.tsx:90 msgid "Internal Part" msgstr "内部零件" -#: src/pages/company/ManufacturerPartDetail.tsx:112 +#: src/pages/company/ManufacturerPartDetail.tsx:111 msgid "Manufacturer Part Number" msgstr "制造商零件编号" -#: src/pages/company/ManufacturerPartDetail.tsx:129 -#: src/pages/company/SupplierPartDetail.tsx:113 +#: src/pages/company/ManufacturerPartDetail.tsx:128 +#: src/pages/company/SupplierPartDetail.tsx:114 msgid "External Link" msgstr "外部链接" -#: src/pages/company/ManufacturerPartDetail.tsx:148 -#: src/pages/company/SupplierPartDetail.tsx:232 +#: src/pages/company/ManufacturerPartDetail.tsx:147 +#: src/pages/company/SupplierPartDetail.tsx:233 #: src/pages/part/PartDetail.tsx:787 msgid "Part Details" msgstr "零件详情" -#: src/pages/company/ManufacturerPartDetail.tsx:151 +#: src/pages/company/ManufacturerPartDetail.tsx:150 msgid "Manufacturer Details" msgstr "制造商详情" -#: src/pages/company/ManufacturerPartDetail.tsx:160 +#: src/pages/company/ManufacturerPartDetail.tsx:159 msgid "Manufacturer Part Details" msgstr "制造商零件详情" -#: src/pages/company/ManufacturerPartDetail.tsx:178 -#: src/pages/company/SupplierPartDetail.tsx:252 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:381 +#: src/pages/company/ManufacturerPartDetail.tsx:165 +#: src/pages/company/SupplierPartDetail.tsx:253 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:382 msgid "Received Stock" msgstr "接收库存" -#: src/pages/company/ManufacturerPartDetail.tsx:220 +#: src/pages/company/ManufacturerPartDetail.tsx:211 #: src/tables/purchasing/ManufacturerPartTable.tsx:108 msgid "Edit Manufacturer Part" msgstr "编辑制造商零件" -#: src/pages/company/ManufacturerPartDetail.tsx:227 +#: src/pages/company/ManufacturerPartDetail.tsx:218 #: src/tables/purchasing/ManufacturerPartTable.tsx:96 #: src/tables/purchasing/ManufacturerPartTable.tsx:115 #: src/tables/purchasing/ManufacturerPartTable.tsx:156 msgid "Add Manufacturer Part" msgstr "添加制造商零件" -#: src/pages/company/ManufacturerPartDetail.tsx:239 +#: src/pages/company/ManufacturerPartDetail.tsx:230 #: src/tables/purchasing/ManufacturerPartTable.tsx:126 msgid "Delete Manufacturer Part" msgstr "删除制造商零件" -#: src/pages/company/ManufacturerPartDetail.tsx:254 +#: src/pages/company/ManufacturerPartDetail.tsx:245 msgid "Manufacturer Part Actions" msgstr "制造商零件操作" @@ -7308,12 +7392,12 @@ msgstr "制造商零件操作" #~ msgid "ManufacturerPart" #~ msgstr "ManufacturerPart" -#: src/pages/company/SupplierPartDetail.tsx:104 +#: src/pages/company/SupplierPartDetail.tsx:105 #: src/tables/part/RelatedPartTable.tsx:82 msgid "Part Description" msgstr "零件描述" -#: src/pages/company/SupplierPartDetail.tsx:179 +#: src/pages/company/SupplierPartDetail.tsx:180 #: src/tables/part/PartPurchaseOrdersTable.tsx:73 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:191 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:233 @@ -7321,50 +7405,50 @@ msgstr "零件描述" msgid "Pack Quantity" msgstr "包装数量" -#: src/pages/company/SupplierPartDetail.tsx:204 +#: src/pages/company/SupplierPartDetail.tsx:205 msgid "Supplier Availability" msgstr "供应商可用性" -#: src/pages/company/SupplierPartDetail.tsx:212 +#: src/pages/company/SupplierPartDetail.tsx:213 msgid "Availability Updated" msgstr "可用性已更新" -#: src/pages/company/SupplierPartDetail.tsx:237 +#: src/pages/company/SupplierPartDetail.tsx:238 msgid "Availability" msgstr "可用性" -#: src/pages/company/SupplierPartDetail.tsx:246 +#: src/pages/company/SupplierPartDetail.tsx:247 msgid "Supplier Part Details" msgstr "供应商零件详情" -#: src/pages/company/SupplierPartDetail.tsx:279 +#: src/pages/company/SupplierPartDetail.tsx:280 #: src/pages/part/PartPricingPanel.tsx:113 #: src/pages/part/pricing/PricingOverviewPanel.tsx:239 msgid "Supplier Pricing" msgstr "供应商价格" -#: src/pages/company/SupplierPartDetail.tsx:308 +#: src/pages/company/SupplierPartDetail.tsx:313 msgid "Supplier Part Actions" msgstr "供应商零件操作" -#: src/pages/company/SupplierPartDetail.tsx:332 +#: src/pages/company/SupplierPartDetail.tsx:337 #: src/tables/purchasing/SupplierPartTable.tsx:244 msgid "Edit Supplier Part" msgstr "编辑供应商零件" -#: src/pages/company/SupplierPartDetail.tsx:340 +#: src/pages/company/SupplierPartDetail.tsx:345 #: src/tables/purchasing/SupplierPartTable.tsx:264 msgid "Delete Supplier Part" msgstr "删除供应商零件" -#: src/pages/company/SupplierPartDetail.tsx:348 +#: src/pages/company/SupplierPartDetail.tsx:353 #: src/tables/purchasing/SupplierPartTable.tsx:172 #: src/tables/purchasing/SupplierPartTable.tsx:251 msgid "Add Supplier Part" msgstr "添加供应商零件" -#: src/pages/company/SupplierPartDetail.tsx:388 -#: src/pages/part/PartDetail.tsx:1003 +#: src/pages/company/SupplierPartDetail.tsx:393 +#: src/pages/part/PartDetail.tsx:1018 msgid "No Stock" msgstr "无库存" @@ -7411,83 +7495,83 @@ msgstr "用户详情" msgid "Basic user" msgstr "基本用户" -#: src/pages/part/CategoryDetail.tsx:100 +#: src/pages/part/CategoryDetail.tsx:103 #: src/pages/stock/LocationDetail.tsx:94 #: src/tables/settings/ErrorTable.tsx:63 #: src/tables/settings/ErrorTable.tsx:108 msgid "Path" msgstr "路径" -#: src/pages/part/CategoryDetail.tsx:116 +#: src/pages/part/CategoryDetail.tsx:119 msgid "Parent Category" msgstr "上级类别" -#: src/pages/part/CategoryDetail.tsx:139 -#: src/pages/part/CategoryDetail.tsx:271 +#: src/pages/part/CategoryDetail.tsx:142 +#: src/pages/part/CategoryDetail.tsx:279 msgid "Subcategories" msgstr "子类别" -#: src/pages/part/CategoryDetail.tsx:146 +#: src/pages/part/CategoryDetail.tsx:149 #: src/pages/stock/LocationDetail.tsx:134 #: src/tables/part/PartCategoryTable.tsx:89 #: src/tables/stock/StockLocationTable.tsx:43 msgid "Structural" msgstr "结构性" -#: src/pages/part/CategoryDetail.tsx:152 +#: src/pages/part/CategoryDetail.tsx:155 msgid "Parent default location" msgstr "上级默认位置" -#: src/pages/part/CategoryDetail.tsx:159 +#: src/pages/part/CategoryDetail.tsx:162 msgid "Default location" msgstr "默认位置" -#: src/pages/part/CategoryDetail.tsx:170 +#: src/pages/part/CategoryDetail.tsx:173 msgid "Top level part category" msgstr "最高级零件类别" -#: src/pages/part/CategoryDetail.tsx:180 -#: src/pages/part/CategoryDetail.tsx:248 +#: src/pages/part/CategoryDetail.tsx:183 +#: src/pages/part/CategoryDetail.tsx:251 #: src/tables/part/PartCategoryTable.tsx:122 msgid "Edit Part Category" msgstr "编辑零件类别" -#: src/pages/part/CategoryDetail.tsx:189 +#: src/pages/part/CategoryDetail.tsx:192 msgid "Move items to parent category" msgstr "移动项目到父类别" -#: src/pages/part/CategoryDetail.tsx:193 +#: src/pages/part/CategoryDetail.tsx:196 #: src/pages/stock/LocationDetail.tsx:226 msgid "Delete items" msgstr "删除项" -#: src/pages/part/CategoryDetail.tsx:201 -#: src/pages/part/CategoryDetail.tsx:253 +#: src/pages/part/CategoryDetail.tsx:204 +#: src/pages/part/CategoryDetail.tsx:256 msgid "Delete Part Category" msgstr "删除零件类别" -#: src/pages/part/CategoryDetail.tsx:204 +#: src/pages/part/CategoryDetail.tsx:207 msgid "Parts Action" msgstr "零件操作" -#: src/pages/part/CategoryDetail.tsx:205 +#: src/pages/part/CategoryDetail.tsx:208 msgid "Action for parts in this category" msgstr "对此类别中零件的操作" -#: src/pages/part/CategoryDetail.tsx:211 +#: src/pages/part/CategoryDetail.tsx:214 msgid "Child Categories Action" msgstr "子类别操作" -#: src/pages/part/CategoryDetail.tsx:212 +#: src/pages/part/CategoryDetail.tsx:215 msgid "Action for child categories in this category" msgstr "对此类别中零件的操作" -#: src/pages/part/CategoryDetail.tsx:244 +#: src/pages/part/CategoryDetail.tsx:247 #: src/tables/part/PartCategoryTable.tsx:143 msgid "Category Actions" msgstr "类别操作" -#: src/pages/part/CategoryDetail.tsx:265 +#: src/pages/part/CategoryDetail.tsx:273 msgid "Category Details" msgstr "类别详情" @@ -7585,7 +7669,6 @@ msgid "Category Default Location" msgstr "类别默认位置" #: src/pages/part/PartDetail.tsx:507 -#: src/tables/purchasing/ManufacturerPartParameterTable.tsx:48 msgid "Units" msgstr "单位" @@ -7600,7 +7683,7 @@ msgstr "关键词" #: src/pages/part/PartDetail.tsx:542 #: src/tables/bom/BomTable.tsx:439 -#: src/tables/build/BuildLineTable.tsx:305 +#: src/tables/build/BuildLineTable.tsx:306 #: src/tables/part/PartTable.tsx:319 #: src/tables/sales/SalesOrderLineItemTable.tsx:138 msgid "Available Stock" @@ -7608,7 +7691,7 @@ msgstr "可用库存" #: src/pages/part/PartDetail.tsx:548 #: src/tables/bom/BomTable.tsx:341 -#: src/tables/build/BuildLineTable.tsx:267 +#: src/tables/build/BuildLineTable.tsx:268 #: src/tables/sales/SalesOrderLineItemTable.tsx:180 msgid "On order" msgstr "订购中" @@ -7634,7 +7717,7 @@ msgstr "最低库存" #~ msgstr "Scheduling" #: src/pages/part/PartDetail.tsx:620 -#: src/tables/part/ParametricPartTable.tsx:359 +#: src/tables/part/ParametricPartTable.tsx:24 #: src/tables/part/PartTable.tsx:203 msgid "Locked" msgstr "已锁定" @@ -7671,16 +7754,16 @@ msgid "Saleable Part" msgstr "可销售零件" #: src/pages/part/PartDetail.tsx:663 -#: src/pages/part/PartDetail.tsx:1033 +#: src/pages/part/PartDetail.tsx:1054 #: src/tables/bom/BomTable.tsx:150 #: src/tables/bom/BomTable.tsx:434 msgid "Virtual Part" msgstr "虚拟零件" #: src/pages/part/PartDetail.tsx:678 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:271 -#: src/pages/sales/ReturnOrderDetail.tsx:249 -#: src/pages/sales/SalesOrderDetail.tsx:242 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:272 +#: src/pages/sales/ReturnOrderDetail.tsx:250 +#: src/pages/sales/SalesOrderDetail.tsx:243 #: src/tables/ColumnRenderers.tsx:502 msgid "Creation Date" msgstr "创建日期" @@ -7718,35 +7801,46 @@ msgstr "最新序列号" msgid "Select Part Revision" msgstr "选择零件版本" -#: src/pages/part/PartDetail.tsx:823 +#: src/pages/part/PartDetail.tsx:812 msgid "Variants" msgstr "变体" -#: src/pages/part/PartDetail.tsx:830 +#: src/pages/part/PartDetail.tsx:819 #: src/pages/stock/StockDetail.tsx:542 msgid "Allocations" msgstr "分配" -#: src/pages/part/PartDetail.tsx:837 +#: src/pages/part/PartDetail.tsx:826 msgid "Bill of Materials" msgstr "物料清单" -#: src/pages/part/PartDetail.tsx:849 +#: src/pages/part/PartDetail.tsx:838 msgid "Used In" msgstr "用于" -#: src/pages/part/PartDetail.tsx:856 +#: src/pages/part/PartDetail.tsx:845 msgid "Part Pricing" msgstr "零件价格" -#: src/pages/part/PartDetail.tsx:926 +#: src/pages/part/PartDetail.tsx:915 msgid "Test Templates" msgstr "测试模板" -#: src/pages/part/PartDetail.tsx:948 +#: src/pages/part/PartDetail.tsx:937 msgid "Related Parts" msgstr "关联零件" +#: src/pages/part/PartDetail.tsx:949 +#: src/tables/ColumnRenderers.tsx:73 +#: src/tables/bom/BomTable.tsx:657 +#: src/tables/part/PartTestTemplateTable.tsx:258 +msgid "Part is Locked" +msgstr "零件已锁定" + +#: src/pages/part/PartDetail.tsx:954 +msgid "Part parameters cannot be edited, as the part is locked" +msgstr "零件参数无法编辑,因为零件已锁定" + #: src/pages/part/PartDetail.tsx:956 #~ msgid "Count part stock" #~ msgstr "Count part stock" @@ -7755,42 +7849,46 @@ msgstr "关联零件" #~ msgid "Transfer part stock" #~ msgstr "Transfer part stock" -#: src/pages/part/PartDetail.tsx:1009 +#: src/pages/part/PartDetail.tsx:1024 #: src/tables/part/PartTestTemplateTable.tsx:112 #: src/tables/stock/StockItemTestResultTable.tsx:404 msgid "Required" msgstr "必填" -#: src/pages/part/PartDetail.tsx:1058 +#: src/pages/part/PartDetail.tsx:1042 +msgid "Deficit" +msgstr "" + +#: src/pages/part/PartDetail.tsx:1079 #: src/tables/part/PartTable.tsx:396 #: src/tables/part/PartTable.tsx:449 msgid "Add Part" msgstr "添加零件" -#: src/pages/part/PartDetail.tsx:1072 +#: src/pages/part/PartDetail.tsx:1093 msgid "Delete Part" msgstr "删除零件" -#: src/pages/part/PartDetail.tsx:1081 +#: src/pages/part/PartDetail.tsx:1102 msgid "Deleting this part cannot be reversed" msgstr "删除此零件无法撤销" -#: src/pages/part/PartDetail.tsx:1143 +#: src/pages/part/PartDetail.tsx:1164 #: src/pages/stock/StockDetail.tsx:883 msgid "Order" msgstr "订单" -#: src/pages/part/PartDetail.tsx:1144 +#: src/pages/part/PartDetail.tsx:1165 #: src/pages/stock/StockDetail.tsx:884 -#: src/tables/build/BuildLineTable.tsx:761 +#: src/tables/build/BuildLineTable.tsx:768 msgid "Order Stock" msgstr "订单库存" -#: src/pages/part/PartDetail.tsx:1156 +#: src/pages/part/PartDetail.tsx:1177 msgid "Search by serial number" msgstr "按序列号搜索" -#: src/pages/part/PartDetail.tsx:1164 +#: src/pages/part/PartDetail.tsx:1185 #: src/tables/part/PartTable.tsx:506 msgid "Part Actions" msgstr "零件选项" @@ -8039,7 +8137,7 @@ msgstr "采购价格" #: src/pages/part/pricing/PricingOverviewPanel.tsx:288 #: src/pages/stock/StockDetail.tsx:426 -#: src/tables/part/PartParameterTable.tsx:121 +#: src/tables/general/ParameterTable.tsx:101 #: src/tables/stock/StockItemTable.tsx:300 msgid "Last Updated" msgstr "最近更新" @@ -8107,17 +8205,17 @@ msgstr "供应商价格" msgid "Variant Part" msgstr "变体零件" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:89 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:90 msgid "Edit Purchase Order" msgstr "编辑采购订单" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:125 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:126 #: src/tables/purchasing/PurchaseOrderTable.tsx:154 #: src/tables/purchasing/PurchaseOrderTable.tsx:167 msgid "Add Purchase Order" msgstr "添加采购订单" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:147 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:148 msgid "Supplier Reference" msgstr "供应商参考" @@ -8127,20 +8225,20 @@ msgstr "供应商参考" #~ msgid "Order Currency," #~ msgstr "Order Currency," -#: src/pages/purchasing/PurchaseOrderDetail.tsx:187 -#: src/pages/sales/ReturnOrderDetail.tsx:160 -#: src/pages/sales/SalesOrderDetail.tsx:144 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:188 +#: src/pages/sales/ReturnOrderDetail.tsx:161 +#: src/pages/sales/SalesOrderDetail.tsx:145 msgid "Completed Line Items" msgstr "已完成行项目" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:196 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:197 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:272 msgid "Destination" msgstr "目的地" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:202 -#: src/pages/sales/ReturnOrderDetail.tsx:167 -#: src/pages/sales/SalesOrderDetail.tsx:161 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:203 +#: src/pages/sales/ReturnOrderDetail.tsx:168 +#: src/pages/sales/SalesOrderDetail.tsx:162 msgid "Order Currency" msgstr "订单货币" @@ -8150,97 +8248,97 @@ msgstr "订单货币" #~ msgid "Created On" #~ msgstr "Created On" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:208 -#: src/pages/sales/ReturnOrderDetail.tsx:174 -#: src/pages/sales/SalesOrderDetail.tsx:167 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:209 +#: src/pages/sales/ReturnOrderDetail.tsx:175 +#: src/pages/sales/SalesOrderDetail.tsx:168 msgid "Total Cost" msgstr "总成本" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:237 -#: src/pages/sales/ReturnOrderDetail.tsx:215 -#: src/pages/sales/SalesOrderDetail.tsx:208 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:238 +#: src/pages/sales/ReturnOrderDetail.tsx:216 +#: src/pages/sales/SalesOrderDetail.tsx:209 msgid "Contact Email" msgstr "联系邮箱" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:245 -#: src/pages/sales/ReturnOrderDetail.tsx:223 -#: src/pages/sales/SalesOrderDetail.tsx:216 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:246 +#: src/pages/sales/ReturnOrderDetail.tsx:224 +#: src/pages/sales/SalesOrderDetail.tsx:217 msgid "Contact Phone" msgstr "联系电话" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:278 -#: src/pages/sales/ReturnOrderDetail.tsx:257 -#: src/pages/sales/SalesOrderDetail.tsx:249 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:279 +#: src/pages/sales/ReturnOrderDetail.tsx:258 +#: src/pages/sales/SalesOrderDetail.tsx:250 msgid "Issue Date" msgstr "签发日期" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:303 -#: src/pages/sales/ReturnOrderDetail.tsx:281 -#: src/pages/sales/SalesOrderDetail.tsx:272 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:304 +#: src/pages/sales/ReturnOrderDetail.tsx:282 +#: src/pages/sales/SalesOrderDetail.tsx:273 #: src/tables/ColumnRenderers.tsx:510 #: src/tables/build/BuildOrderTable.tsx:137 #: src/tables/part/PartPurchaseOrdersTable.tsx:106 msgid "Completion Date" msgstr "完成日期" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:333 -#: src/pages/sales/ReturnOrderDetail.tsx:311 -#: src/pages/sales/SalesOrderDetail.tsx:349 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:334 +#: src/pages/sales/ReturnOrderDetail.tsx:312 +#: src/pages/sales/SalesOrderDetail.tsx:350 msgid "Order Details" msgstr "订单细节" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:339 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:348 -#: src/pages/sales/ReturnOrderDetail.tsx:153 -#: src/pages/sales/ReturnOrderDetail.tsx:317 -#: src/pages/sales/ReturnOrderDetail.tsx:326 -#: src/pages/sales/SalesOrderDetail.tsx:355 -#: src/pages/sales/SalesOrderDetail.tsx:364 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:340 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:349 +#: src/pages/sales/ReturnOrderDetail.tsx:154 +#: src/pages/sales/ReturnOrderDetail.tsx:318 +#: src/pages/sales/ReturnOrderDetail.tsx:327 +#: src/pages/sales/SalesOrderDetail.tsx:356 +#: src/pages/sales/SalesOrderDetail.tsx:365 msgid "Line Items" msgstr "行项目" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:363 -#: src/pages/sales/ReturnOrderDetail.tsx:341 -#: src/pages/sales/SalesOrderDetail.tsx:378 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:364 +#: src/pages/sales/ReturnOrderDetail.tsx:342 +#: src/pages/sales/SalesOrderDetail.tsx:379 msgid "Extra Line Items" msgstr "额外行项目" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:405 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:410 msgid "Issue Purchase Order" msgstr "发布采购订单" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:413 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:418 msgid "Cancel Purchase Order" msgstr "取消采购订单" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:421 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:426 msgid "Hold Purchase Order" msgstr "挂起采购订单" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:429 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:434 msgid "Complete Purchase Order" msgstr "完成采购订单" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:485 -#: src/pages/sales/ReturnOrderDetail.tsx:496 -#: src/pages/sales/SalesOrderDetail.tsx:549 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:490 +#: src/pages/sales/ReturnOrderDetail.tsx:501 +#: src/pages/sales/SalesOrderDetail.tsx:554 msgid "Order Actions" msgstr "订单操作" -#: src/pages/sales/ReturnOrderDetail.tsx:114 -#: src/pages/sales/SalesOrderDetail.tsx:104 -#: src/pages/sales/SalesOrderShipmentDetail.tsx:134 +#: src/pages/sales/ReturnOrderDetail.tsx:115 +#: src/pages/sales/SalesOrderDetail.tsx:105 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:132 #: src/tables/sales/SalesOrderTable.tsx:141 msgid "Customer Reference" msgstr "客户参考" -#: src/pages/sales/ReturnOrderDetail.tsx:195 +#: src/pages/sales/ReturnOrderDetail.tsx:196 msgid "Return Address" msgstr "" -#: src/pages/sales/ReturnOrderDetail.tsx:201 -#: src/pages/sales/SalesOrderDetail.tsx:194 -#: src/pages/sales/SalesOrderShipmentDetail.tsx:181 +#: src/pages/sales/ReturnOrderDetail.tsx:202 +#: src/pages/sales/SalesOrderDetail.tsx:195 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:179 msgid "Not specified" msgstr "" @@ -8248,117 +8346,117 @@ msgstr "" #~ msgid "Order canceled" #~ msgstr "Order canceled" -#: src/pages/sales/ReturnOrderDetail.tsx:389 +#: src/pages/sales/ReturnOrderDetail.tsx:394 msgid "Edit Return Order" msgstr "编辑退货订单" -#: src/pages/sales/ReturnOrderDetail.tsx:407 +#: src/pages/sales/ReturnOrderDetail.tsx:412 #: src/tables/sales/ReturnOrderTable.tsx:154 #: src/tables/sales/ReturnOrderTable.tsx:167 msgid "Add Return Order" msgstr "添加退货订单" -#: src/pages/sales/ReturnOrderDetail.tsx:416 +#: src/pages/sales/ReturnOrderDetail.tsx:421 msgid "Issue Return Order" msgstr "发布退货订单" -#: src/pages/sales/ReturnOrderDetail.tsx:424 +#: src/pages/sales/ReturnOrderDetail.tsx:429 msgid "Cancel Return Order" msgstr "取消退货订单" -#: src/pages/sales/ReturnOrderDetail.tsx:432 +#: src/pages/sales/ReturnOrderDetail.tsx:437 msgid "Hold Return Order" msgstr "挂起退货订单" -#: src/pages/sales/ReturnOrderDetail.tsx:440 +#: src/pages/sales/ReturnOrderDetail.tsx:445 msgid "Complete Return Order" msgstr "完成退货订单" -#: src/pages/sales/SalesOrderDetail.tsx:153 +#: src/pages/sales/SalesOrderDetail.tsx:154 msgid "Completed Shipments" msgstr "完成配送" -#: src/pages/sales/SalesOrderDetail.tsx:188 -#: src/pages/sales/SalesOrderShipmentDetail.tsx:170 +#: src/pages/sales/SalesOrderDetail.tsx:189 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:168 msgid "Shipping Address" msgstr "" -#: src/pages/sales/SalesOrderDetail.tsx:316 +#: src/pages/sales/SalesOrderDetail.tsx:317 msgid "Edit Sales Order" msgstr "编辑销售订单" -#: src/pages/sales/SalesOrderDetail.tsx:338 +#: src/pages/sales/SalesOrderDetail.tsx:339 #: src/tables/sales/SalesOrderTable.tsx:108 #: src/tables/sales/SalesOrderTable.tsx:121 msgid "Add Sales Order" msgstr "添加销售订单" -#: src/pages/sales/SalesOrderDetail.tsx:396 +#: src/pages/sales/SalesOrderDetail.tsx:397 #: src/tables/sales/SalesOrderTable.tsx:147 msgid "Shipments" msgstr "配送" -#: src/pages/sales/SalesOrderDetail.tsx:443 +#: src/pages/sales/SalesOrderDetail.tsx:448 msgid "Issue Sales Order" msgstr "发布销售订单" -#: src/pages/sales/SalesOrderDetail.tsx:451 +#: src/pages/sales/SalesOrderDetail.tsx:456 msgid "Cancel Sales Order" msgstr "取消销售订单" -#: src/pages/sales/SalesOrderDetail.tsx:459 +#: src/pages/sales/SalesOrderDetail.tsx:464 msgid "Hold Sales Order" msgstr "挂起销售订单" -#: src/pages/sales/SalesOrderDetail.tsx:467 +#: src/pages/sales/SalesOrderDetail.tsx:472 msgid "Ship Sales Order" msgstr "销售订单发货" -#: src/pages/sales/SalesOrderDetail.tsx:469 +#: src/pages/sales/SalesOrderDetail.tsx:474 msgid "Ship this order?" msgstr "确认发货此订单?" -#: src/pages/sales/SalesOrderDetail.tsx:470 +#: src/pages/sales/SalesOrderDetail.tsx:475 msgid "Order shipped" msgstr "订单已发货" -#: src/pages/sales/SalesOrderDetail.tsx:478 +#: src/pages/sales/SalesOrderDetail.tsx:483 msgid "Complete Sales Order" msgstr "完成销售订单" -#: src/pages/sales/SalesOrderDetail.tsx:523 +#: src/pages/sales/SalesOrderDetail.tsx:528 msgid "Ship Order" msgstr "装货单" -#: src/pages/sales/SalesOrderShipmentDetail.tsx:142 -#: src/tables/sales/SalesOrderShipmentTable.tsx:135 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:140 +#: src/tables/sales/SalesOrderShipmentTable.tsx:156 msgid "Shipment Reference" msgstr "配送参考" -#: src/pages/sales/SalesOrderShipmentDetail.tsx:148 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:146 msgid "Tracking Number" msgstr "跟踪单号" -#: src/pages/sales/SalesOrderShipmentDetail.tsx:156 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:154 msgid "Invoice Number" msgstr "发票号码" -#: src/pages/sales/SalesOrderShipmentDetail.tsx:191 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:189 msgid "Allocated Items" msgstr "已分配的项" -#: src/pages/sales/SalesOrderShipmentDetail.tsx:196 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:194 msgid "Checked By" msgstr "" -#: src/pages/sales/SalesOrderShipmentDetail.tsx:202 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:200 msgid "Not checked" msgstr "" -#: src/pages/sales/SalesOrderShipmentDetail.tsx:208 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:206 #: src/tables/ColumnRenderers.tsx:518 #: src/tables/sales/SalesOrderAllocationTable.tsx:182 -#: src/tables/sales/SalesOrderShipmentTable.tsx:168 +#: src/tables/sales/SalesOrderShipmentTable.tsx:189 msgid "Shipment Date" msgstr "发货日期" @@ -8366,108 +8464,82 @@ msgstr "发货日期" #~ msgid "Assigned Items" #~ msgstr "Assigned Items" -#: src/pages/sales/SalesOrderShipmentDetail.tsx:216 -#: src/tables/sales/SalesOrderShipmentTable.tsx:172 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:214 +#: src/tables/sales/SalesOrderShipmentTable.tsx:193 msgid "Delivery Date" msgstr "送达日期" -#: src/pages/sales/SalesOrderShipmentDetail.tsx:255 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:253 msgid "Shipment Details" msgstr "发货详情" -#: src/pages/sales/SalesOrderShipmentDetail.tsx:294 -#: src/pages/sales/SalesOrderShipmentDetail.tsx:438 -#: src/tables/sales/SalesOrderShipmentTable.tsx:90 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:292 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:406 +#: src/tables/sales/SalesOrderShipmentTable.tsx:97 msgid "Edit Shipment" msgstr "编辑配送" -#: src/pages/sales/SalesOrderShipmentDetail.tsx:301 -#: src/pages/sales/SalesOrderShipmentDetail.tsx:457 -#: src/tables/sales/SalesOrderShipmentTable.tsx:82 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:299 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:425 +#: src/tables/sales/SalesOrderShipmentTable.tsx:89 msgid "Cancel Shipment" msgstr "取消发货" -#: src/pages/sales/SalesOrderShipmentDetail.tsx:314 -#: src/tables/sales/SalesOrderShipmentTable.tsx:98 -#: src/tables/sales/SalesOrderShipmentTable.tsx:193 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:312 +#: src/tables/sales/SalesOrderShipmentTable.tsx:119 +#: src/tables/sales/SalesOrderShipmentTable.tsx:238 msgid "Complete Shipment" msgstr "完成配送" -#: src/pages/sales/SalesOrderShipmentDetail.tsx:326 -#: src/pages/sales/SalesOrderShipmentDetail.tsx:328 -msgid "Check Shipment" -msgstr "" - -#: src/pages/sales/SalesOrderShipmentDetail.tsx:329 -msgid "Marking the shipment as checked indicates that you have verified that all items included in this shipment are correct" -msgstr "" - #: src/pages/sales/SalesOrderShipmentDetail.tsx:339 -msgid "Shipment marked as checked" -msgstr "" - -#: src/pages/sales/SalesOrderShipmentDetail.tsx:346 -#: src/pages/sales/SalesOrderShipmentDetail.tsx:348 -msgid "Uncheck Shipment" -msgstr "" - -#: src/pages/sales/SalesOrderShipmentDetail.tsx:349 -msgid "Marking the shipment as unchecked indicates that the shipment requires further verification" -msgstr "" - -#: src/pages/sales/SalesOrderShipmentDetail.tsx:359 -msgid "Shipment marked as unchecked" -msgstr "" - -#: src/pages/sales/SalesOrderShipmentDetail.tsx:371 #: src/tables/part/PartPurchaseOrdersTable.tsx:122 msgid "Pending" msgstr "待定" -#: src/pages/sales/SalesOrderShipmentDetail.tsx:377 -#: src/tables/sales/SalesOrderShipmentTable.tsx:147 -#: src/tables/sales/SalesOrderShipmentTable.tsx:254 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:345 +#: src/tables/sales/SalesOrderShipmentTable.tsx:168 +#: src/tables/sales/SalesOrderShipmentTable.tsx:299 msgid "Checked" msgstr "" -#: src/pages/sales/SalesOrderShipmentDetail.tsx:383 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:351 msgid "Not Checked" msgstr "" -#: src/pages/sales/SalesOrderShipmentDetail.tsx:389 -#: src/tables/sales/SalesOrderShipmentTable.tsx:154 -#: src/tables/sales/SalesOrderShipmentTable.tsx:259 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:357 +#: src/tables/sales/SalesOrderShipmentTable.tsx:175 +#: src/tables/sales/SalesOrderShipmentTable.tsx:304 msgid "Shipped" msgstr "已配送" -#: src/pages/sales/SalesOrderShipmentDetail.tsx:395 -#: src/tables/sales/SalesOrderShipmentTable.tsx:161 -#: src/tables/sales/SalesOrderShipmentTable.tsx:264 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:363 +#: src/tables/sales/SalesOrderShipmentTable.tsx:182 +#: src/tables/sales/SalesOrderShipmentTable.tsx:309 #: src/tables/settings/EmailTable.tsx:31 msgid "Delivered" msgstr "已送达" -#: src/pages/sales/SalesOrderShipmentDetail.tsx:410 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:378 msgid "Send Shipment" msgstr "发送货物" -#: src/pages/sales/SalesOrderShipmentDetail.tsx:433 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:401 msgid "Shipment Actions" msgstr "货运操作" -#: src/pages/sales/SalesOrderShipmentDetail.tsx:442 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:410 msgid "Check" msgstr "" -#: src/pages/sales/SalesOrderShipmentDetail.tsx:443 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:411 msgid "Mark shipment as checked" msgstr "" -#: src/pages/sales/SalesOrderShipmentDetail.tsx:449 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:417 msgid "Uncheck" msgstr "" -#: src/pages/sales/SalesOrderShipmentDetail.tsx:450 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:418 msgid "Mark shipment as unchecked" msgstr "" @@ -8775,13 +8847,6 @@ msgstr "服务器图标包加载错误" msgid "Part is not active" msgstr "零件未激活" -#: src/tables/ColumnRenderers.tsx:73 -#: src/tables/bom/BomTable.tsx:657 -#: src/tables/part/PartParameterTable.tsx:227 -#: src/tables/part/PartTestTemplateTable.tsx:258 -msgid "Part is Locked" -msgstr "零件已锁定" - #: src/tables/ColumnRenderers.tsx:78 msgid "You are subscribed to notifications for this part" msgstr "您已订阅此零件的通知" @@ -9219,13 +9284,13 @@ msgstr "虚拟零件" #~ msgstr "Show asssmbled items" #: src/tables/bom/BomTable.tsx:315 -#: src/tables/build/BuildLineTable.tsx:276 +#: src/tables/build/BuildLineTable.tsx:277 #: src/tables/part/PartTable.tsx:145 msgid "External stock" msgstr "外部库存" #: src/tables/bom/BomTable.tsx:323 -#: src/tables/build/BuildLineTable.tsx:239 +#: src/tables/build/BuildLineTable.tsx:240 msgid "Includes substitute stock" msgstr "包括替代库存" @@ -9234,7 +9299,7 @@ msgstr "包括替代库存" #~ msgstr "Edit Bom Item" #: src/tables/bom/BomTable.tsx:332 -#: src/tables/build/BuildLineTable.tsx:249 +#: src/tables/build/BuildLineTable.tsx:250 #: src/tables/sales/SalesOrderLineItemTable.tsx:166 msgid "Includes variant stock" msgstr "包括变体库存" @@ -9272,8 +9337,8 @@ msgid "Stock Information" msgstr "库存信息" #: src/tables/bom/BomTable.tsx:399 -#: src/tables/build/BuildLineTable.tsx:496 -#: src/tables/build/BuildLineTable.tsx:537 +#: src/tables/build/BuildLineTable.tsx:497 +#: src/tables/build/BuildLineTable.tsx:538 msgid "Consumable item" msgstr "可耗物品" @@ -9282,7 +9347,7 @@ msgid "No available stock" msgstr "无可用库存" #: src/tables/bom/BomTable.tsx:420 -#: src/tables/build/BuildLineTable.tsx:213 +#: src/tables/build/BuildLineTable.tsx:214 msgid "Show testable items" msgstr "显示可跟踪项目" @@ -9291,7 +9356,7 @@ msgid "Show trackable items" msgstr "显示可跟踪项目" #: src/tables/bom/BomTable.tsx:430 -#: src/tables/build/BuildLineTable.tsx:208 +#: src/tables/build/BuildLineTable.tsx:209 msgid "Show assembled items" msgstr "显示已装配的项目" @@ -9335,7 +9400,7 @@ msgstr "显示允许变体替换的项目" #: src/tables/bom/BomTable.tsx:464 #: src/tables/bom/UsedInTable.tsx:85 -#: src/tables/build/BuildLineTable.tsx:202 +#: src/tables/build/BuildLineTable.tsx:203 msgid "Optional" msgstr "可选项" @@ -9345,7 +9410,7 @@ msgid "Show optional items" msgstr "显示可选项目" #: src/tables/bom/BomTable.tsx:469 -#: src/tables/build/BuildLineTable.tsx:197 +#: src/tables/build/BuildLineTable.tsx:198 msgid "Consumable" msgstr "消耗品" @@ -9420,6 +9485,7 @@ msgid "Add a single BOM item" msgstr "" #: src/tables/bom/BomTable.tsx:637 +#: src/tables/general/ParameterTable.tsx:206 #: src/tables/part/PartTable.tsx:546 msgid "Import from File" msgstr "" @@ -9433,8 +9499,8 @@ msgid "Bill of materials cannot be edited, as the part is locked" msgstr "无法编辑材料清单,因为零件已锁定" #: src/tables/bom/UsedInTable.tsx:34 -#: src/tables/build/BuildLineTable.tsx:207 -#: src/tables/part/ParametricPartTable.tsx:364 +#: src/tables/build/BuildLineTable.tsx:208 +#: src/tables/part/ParametricPartTable.tsx:29 #: src/tables/part/PartBuildAllocationsTable.tsx:60 #: src/tables/part/PartTable.tsx:209 #: src/tables/stock/StockItemTable.tsx:333 @@ -9455,11 +9521,11 @@ msgstr "可追踪" msgid "Show trackable assemblies" msgstr "显示可跟踪装配体" -#: src/tables/build/BuildAllocatedStockTable.tsx:67 +#: src/tables/build/BuildAllocatedStockTable.tsx:64 msgid "Allocated to Output" msgstr "分配至输出" -#: src/tables/build/BuildAllocatedStockTable.tsx:68 +#: src/tables/build/BuildAllocatedStockTable.tsx:65 msgid "Show items allocated to a build output" msgstr "显示分配给构建输出的项目" @@ -9472,50 +9538,68 @@ msgstr "显示分配给构建输出的项目" #~ msgid "Include orders for part variants" #~ msgstr "Include orders for part variants" -#: src/tables/build/BuildAllocatedStockTable.tsx:97 +#: src/tables/build/BuildAllocatedStockTable.tsx:94 #: src/tables/part/PartBuildAllocationsTable.tsx:84 #: src/tables/part/PartPurchaseOrdersTable.tsx:132 #: src/tables/part/PartSalesAllocationsTable.tsx:69 #: src/tables/sales/SalesOrderAllocationTable.tsx:122 -#: src/tables/sales/SalesOrderShipmentTable.tsx:130 +#: src/tables/sales/SalesOrderShipmentTable.tsx:151 msgid "Order Status" msgstr "订单状态" +#: src/tables/build/BuildAllocatedStockTable.tsx:164 +#: src/tables/build/BuildLineTable.tsx:651 +msgid "Edit Stock Allocation" +msgstr "编辑库存分配" + #: src/tables/build/BuildAllocatedStockTable.tsx:164 #~ msgid "Edit Build Item" #~ msgstr "Edit Build Item" -#: src/tables/build/BuildAllocatedStockTable.tsx:167 -#: src/tables/build/BuildLineTable.tsx:650 -msgid "Edit Stock Allocation" -msgstr "编辑库存分配" - #: src/tables/build/BuildAllocatedStockTable.tsx:174 #~ msgid "Delete Build Item" #~ msgstr "Delete Build Item" +#: src/tables/build/BuildAllocatedStockTable.tsx:177 +#: src/tables/build/BuildLineTable.tsx:664 +#: src/tables/sales/SalesOrderAllocationTable.tsx:218 +msgid "Remove Allocated Stock" +msgstr "" + #: src/tables/build/BuildAllocatedStockTable.tsx:180 #: src/tables/build/BuildLineTable.tsx:663 -msgid "Delete Stock Allocation" -msgstr "删除库存分配" +#~ msgid "Delete Stock Allocation" +#~ msgstr "Delete Stock Allocation" -#: src/tables/build/BuildAllocatedStockTable.tsx:239 +#: src/tables/build/BuildAllocatedStockTable.tsx:182 +#: src/tables/build/BuildLineTable.tsx:669 +#: src/tables/sales/SalesOrderAllocationTable.tsx:221 +msgid "Are you sure you want to remove this allocated stock from the order?" +msgstr "" + +#: src/tables/build/BuildAllocatedStockTable.tsx:242 msgid "Consume" msgstr "库存消耗" +#: src/tables/build/BuildAllocatedStockTable.tsx:259 +#: src/tables/build/BuildLineTable.tsx:112 +#: src/tables/sales/SalesOrderAllocationTable.tsx:248 +msgid "Remove allocated stock" +msgstr "" + #: src/tables/build/BuildLineTable.tsx:59 #~ msgid "Show lines with available stock" #~ msgstr "Show lines with available stock" -#: src/tables/build/BuildLineTable.tsx:120 +#: src/tables/build/BuildLineTable.tsx:121 msgid "View Stock Item" msgstr "查看库存物料详情" -#: src/tables/build/BuildLineTable.tsx:183 +#: src/tables/build/BuildLineTable.tsx:184 msgid "Show fully allocated lines" msgstr "显示已完全分配的行" -#: src/tables/build/BuildLineTable.tsx:188 +#: src/tables/build/BuildLineTable.tsx:189 msgid "Show fully consumed lines" msgstr "显示已完全消耗的行" @@ -9523,124 +9607,124 @@ msgstr "显示已完全消耗的行" #~ msgid "Show allocated lines" #~ msgstr "Show allocated lines" -#: src/tables/build/BuildLineTable.tsx:193 +#: src/tables/build/BuildLineTable.tsx:194 msgid "Show items with sufficient available stock" msgstr "" -#: src/tables/build/BuildLineTable.tsx:198 +#: src/tables/build/BuildLineTable.tsx:199 msgid "Show consumable lines" msgstr "显示可消耗项目" -#: src/tables/build/BuildLineTable.tsx:203 +#: src/tables/build/BuildLineTable.tsx:204 msgid "Show optional lines" msgstr "显示可选项目" -#: src/tables/build/BuildLineTable.tsx:212 +#: src/tables/build/BuildLineTable.tsx:213 #: src/tables/part/PartTable.tsx:233 msgid "Testable" msgstr "可测试" -#: src/tables/build/BuildLineTable.tsx:217 +#: src/tables/build/BuildLineTable.tsx:218 #: src/tables/stock/StockItemTable.tsx:388 msgid "Tracked" msgstr "已跟踪" -#: src/tables/build/BuildLineTable.tsx:218 +#: src/tables/build/BuildLineTable.tsx:219 msgid "Show tracked lines" msgstr "显示已跟踪项目" -#: src/tables/build/BuildLineTable.tsx:223 +#: src/tables/build/BuildLineTable.tsx:224 msgid "Show items with stock on order" msgstr "" -#: src/tables/build/BuildLineTable.tsx:258 +#: src/tables/build/BuildLineTable.tsx:259 #: src/tables/sales/SalesOrderLineItemTable.tsx:172 msgid "In production" msgstr "生产中" -#: src/tables/build/BuildLineTable.tsx:286 +#: src/tables/build/BuildLineTable.tsx:287 msgid "Insufficient stock" msgstr "库存不足" -#: src/tables/build/BuildLineTable.tsx:302 +#: src/tables/build/BuildLineTable.tsx:303 #: src/tables/sales/SalesOrderLineItemTable.tsx:160 #: src/tables/stock/StockItemTable.tsx:191 msgid "No stock available" msgstr "无可用库存" -#: src/tables/build/BuildLineTable.tsx:375 +#: src/tables/build/BuildLineTable.tsx:376 msgid "Gets Inherited" msgstr "获取已继承的" -#: src/tables/build/BuildLineTable.tsx:388 +#: src/tables/build/BuildLineTable.tsx:389 msgid "Unit Quantity" msgstr "单位数量" -#: src/tables/build/BuildLineTable.tsx:415 +#: src/tables/build/BuildLineTable.tsx:416 msgid "Setup Quantity" msgstr "设置数量" -#: src/tables/build/BuildLineTable.tsx:424 +#: src/tables/build/BuildLineTable.tsx:425 msgid "Attrition" msgstr "损耗" -#: src/tables/build/BuildLineTable.tsx:432 +#: src/tables/build/BuildLineTable.tsx:433 msgid "Rounding Multiple" msgstr "取整倍数" -#: src/tables/build/BuildLineTable.tsx:441 +#: src/tables/build/BuildLineTable.tsx:442 msgid "BOM Information" msgstr "物料清单信息" -#: src/tables/build/BuildLineTable.tsx:515 +#: src/tables/build/BuildLineTable.tsx:516 #: src/tables/part/PartBuildAllocationsTable.tsx:102 msgid "Fully allocated" msgstr "完全分配" -#: src/tables/build/BuildLineTable.tsx:563 +#: src/tables/build/BuildLineTable.tsx:564 #: src/tables/sales/SalesOrderLineItemTable.tsx:311 msgid "Create Build Order" msgstr "创建生产订单" -#: src/tables/build/BuildLineTable.tsx:592 +#: src/tables/build/BuildLineTable.tsx:593 msgid "Auto allocation in progress" msgstr "自动分配进行中" -#: src/tables/build/BuildLineTable.tsx:595 -#: src/tables/build/BuildLineTable.tsx:802 +#: src/tables/build/BuildLineTable.tsx:596 +#: src/tables/build/BuildLineTable.tsx:809 msgid "Auto Allocate Stock" msgstr "自动分配库存量" -#: src/tables/build/BuildLineTable.tsx:596 +#: src/tables/build/BuildLineTable.tsx:597 msgid "Automatically allocate stock to this build according to the selected options" msgstr "根据选定的选项自动分配库存到此版本" -#: src/tables/build/BuildLineTable.tsx:616 -#: src/tables/build/BuildLineTable.tsx:630 -#: src/tables/build/BuildLineTable.tsx:751 -#: src/tables/build/BuildLineTable.tsx:852 +#: src/tables/build/BuildLineTable.tsx:617 +#: src/tables/build/BuildLineTable.tsx:631 +#: src/tables/build/BuildLineTable.tsx:758 +#: src/tables/build/BuildLineTable.tsx:859 #: src/tables/build/BuildOutputTable.tsx:355 #: src/tables/build/BuildOutputTable.tsx:360 msgid "Deallocate Stock" msgstr "取消库存分配" -#: src/tables/build/BuildLineTable.tsx:632 +#: src/tables/build/BuildLineTable.tsx:633 msgid "Deallocate all untracked stock for this build order" msgstr "为这个构建订单取消分配所有未跟踪库存" -#: src/tables/build/BuildLineTable.tsx:634 +#: src/tables/build/BuildLineTable.tsx:635 msgid "Deallocate stock from the selected line item" msgstr "从选中的行项中取消分配库存" -#: src/tables/build/BuildLineTable.tsx:638 +#: src/tables/build/BuildLineTable.tsx:639 msgid "Stock has been deallocated" msgstr "库存已经取消分配" -#: src/tables/build/BuildLineTable.tsx:771 +#: src/tables/build/BuildLineTable.tsx:778 msgid "Build Stock" msgstr "生产库存" -#: src/tables/build/BuildLineTable.tsx:784 +#: src/tables/build/BuildLineTable.tsx:791 #: src/tables/sales/SalesOrderLineItemTable.tsx:487 msgid "View Part" msgstr "查看零件" @@ -9739,7 +9823,7 @@ msgid "Serialize Build Output" msgstr "序列化生产产出" #: src/tables/build/BuildOutputTable.tsx:405 -#: src/tables/part/PartTestResultTable.tsx:310 +#: src/tables/part/PartTestResultTable.tsx:318 #: src/tables/stock/StockItemTable.tsx:328 msgid "Filter by stock status" msgstr "按库存状态筛选" @@ -9964,8 +10048,8 @@ msgid "View Item" msgstr "查看项目" #: src/tables/general/ExtraLineItemTable.tsx:95 -#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:299 -#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:403 +#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:300 +#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:405 #: src/tables/sales/ReturnOrderLineItemTable.tsx:83 #: src/tables/sales/ReturnOrderLineItemTable.tsx:187 #: src/tables/sales/SalesOrderLineItemTable.tsx:252 @@ -9974,14 +10058,14 @@ msgid "Add Line Item" msgstr "添加行项目" #: src/tables/general/ExtraLineItemTable.tsx:108 -#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:320 +#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:322 #: src/tables/sales/ReturnOrderLineItemTable.tsx:96 #: src/tables/sales/SalesOrderLineItemTable.tsx:271 msgid "Edit Line Item" msgstr "编辑行项目" #: src/tables/general/ExtraLineItemTable.tsx:117 -#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:329 +#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:331 #: src/tables/sales/ReturnOrderLineItemTable.tsx:105 #: src/tables/sales/SalesOrderLineItemTable.tsx:280 msgid "Delete Line Item" @@ -9991,6 +10075,137 @@ msgstr "删除行项目" msgid "Add Extra Line Item" msgstr "添加额外行项目" +#: src/tables/general/ParameterTable.tsx:88 +msgid "Internal Units" +msgstr "内部单位" + +#: src/tables/general/ParameterTable.tsx:108 +#: src/tables/general/ParameterTable.tsx:123 +msgid "Updated By" +msgstr "更新人" + +#: src/tables/general/ParameterTable.tsx:118 +msgid "Show parameters for enabled templates" +msgstr "" + +#: src/tables/general/ParameterTable.tsx:124 +msgid "Filter by user who last updated the parameter" +msgstr "按最后更新参数的用户筛选" + +#: src/tables/general/ParameterTable.tsx:154 +msgid "Import Parameters" +msgstr "" + +#: src/tables/general/ParameterTable.tsx:164 +#: src/tables/general/ParametricDataTable.tsx:261 +#: src/tables/general/ParametricDataTable.tsx:392 +msgid "Add Parameter" +msgstr "添加参数" + +#: src/tables/general/ParameterTable.tsx:175 +#: src/tables/general/ParameterTable.tsx:222 +#: src/tables/general/ParametricDataTable.tsx:285 +msgid "Edit Parameter" +msgstr "编辑参数" + +#: src/tables/general/ParameterTable.tsx:183 +#: src/tables/general/ParameterTable.tsx:230 +msgid "Delete Parameter" +msgstr "删除参数" + +#: src/tables/general/ParameterTable.tsx:191 +msgid "Add Parameters" +msgstr "" + +#: src/tables/general/ParameterTable.tsx:197 +msgid "Create Parameter" +msgstr "" + +#: src/tables/general/ParameterTable.tsx:199 +msgid "Create a new parameter" +msgstr "" + +#: src/tables/general/ParameterTable.tsx:208 +msgid "Import parameters from a file" +msgstr "" + +#: src/tables/general/ParameterTemplateTable.tsx:48 +#: src/tables/general/ParameterTemplateTable.tsx:197 +msgid "Add Parameter Template" +msgstr "添加参数模板" + +#: src/tables/general/ParameterTemplateTable.tsx:64 +msgid "Duplicate Parameter Template" +msgstr "重复参数模板" + +#: src/tables/general/ParameterTemplateTable.tsx:78 +msgid "Delete Parameter Template" +msgstr "删除零件参数模板" + +#: src/tables/general/ParameterTemplateTable.tsx:85 +msgid "Edit Parameter Template" +msgstr "编辑参数模板" + +#: src/tables/general/ParameterTemplateTable.tsx:138 +msgid "Checkbox" +msgstr "勾选框" + +#: src/tables/general/ParameterTemplateTable.tsx:139 +msgid "Show checkbox templates" +msgstr "显示复选框模板" + +#: src/tables/general/ParameterTemplateTable.tsx:143 +msgid "Has choices" +msgstr "有选项" + +#: src/tables/general/ParameterTemplateTable.tsx:144 +msgid "Show templates with choices" +msgstr "显示有选项的模板" + +#: src/tables/general/ParameterTemplateTable.tsx:148 +#: src/tables/part/PartTable.tsx:245 +msgid "Has Units" +msgstr "有单位" + +#: src/tables/general/ParameterTemplateTable.tsx:149 +msgid "Show templates with units" +msgstr "显示有单位的模板" + +#: src/tables/general/ParameterTemplateTable.tsx:154 +msgid "Show enabled templates" +msgstr "" + +#: src/tables/general/ParameterTemplateTable.tsx:158 +#: src/tables/settings/ImportSessionTable.tsx:111 +#: src/tables/settings/TemplateTable.tsx:368 +msgid "Model Type" +msgstr "型号类型" + +#: src/tables/general/ParameterTemplateTable.tsx:159 +msgid "Filter by model type" +msgstr "" + +#: src/tables/general/ParametricDataTable.tsx:79 +msgid "Click to edit" +msgstr "点击以编辑" + +#: src/tables/general/ParametricDataTableFilters.tsx:36 +msgid "True" +msgstr "真" + +#: src/tables/general/ParametricDataTableFilters.tsx:37 +msgid "False" +msgstr "假" + +#: src/tables/general/ParametricDataTableFilters.tsx:47 +#: src/tables/general/ParametricDataTableFilters.tsx:80 +msgid "Select a choice" +msgstr "选择一个选项" + +#: src/tables/general/ParametricDataTableFilters.tsx:100 +msgid "Enter a value" +msgstr "输入一个值" + #: src/tables/machine/MachineListTable.tsx:133 msgid "Machine restarted" msgstr "设备已重启" @@ -10071,7 +10286,7 @@ msgid "Initialized" msgstr "已初始化" #: src/tables/machine/MachineListTable.tsx:410 -#: src/tables/machine/MachineTypeTable.tsx:307 +#: src/tables/machine/MachineTypeTable.tsx:305 msgid "No errors reported" msgstr "未报告错误" @@ -10132,15 +10347,15 @@ msgstr "内置驱动" #~ msgid "Machine type information" #~ msgstr "Machine type information" -#: src/tables/machine/MachineTypeTable.tsx:128 +#: src/tables/machine/MachineTypeTable.tsx:126 msgid "Not Found" msgstr "未找到" -#: src/tables/machine/MachineTypeTable.tsx:131 +#: src/tables/machine/MachineTypeTable.tsx:129 msgid "Machine type not found." msgstr "找不到设备类型。" -#: src/tables/machine/MachineTypeTable.tsx:141 +#: src/tables/machine/MachineTypeTable.tsx:139 msgid "Machine Type Information" msgstr "设备类型信息" @@ -10148,34 +10363,34 @@ msgstr "设备类型信息" #~ msgid "Available drivers" #~ msgstr "Available drivers" -#: src/tables/machine/MachineTypeTable.tsx:156 -#: src/tables/machine/MachineTypeTable.tsx:255 +#: src/tables/machine/MachineTypeTable.tsx:154 +#: src/tables/machine/MachineTypeTable.tsx:253 msgid "Slug" msgstr "别名" -#: src/tables/machine/MachineTypeTable.tsx:167 -#: src/tables/machine/MachineTypeTable.tsx:276 +#: src/tables/machine/MachineTypeTable.tsx:165 +#: src/tables/machine/MachineTypeTable.tsx:274 msgid "Provider plugin" msgstr "供应商插件" -#: src/tables/machine/MachineTypeTable.tsx:179 -#: src/tables/machine/MachineTypeTable.tsx:288 +#: src/tables/machine/MachineTypeTable.tsx:177 +#: src/tables/machine/MachineTypeTable.tsx:286 msgid "Provider file" msgstr "供应商文件" -#: src/tables/machine/MachineTypeTable.tsx:194 +#: src/tables/machine/MachineTypeTable.tsx:192 msgid "Available Drivers" msgstr "可用驱动程序" -#: src/tables/machine/MachineTypeTable.tsx:234 +#: src/tables/machine/MachineTypeTable.tsx:232 msgid "Machine driver not found." msgstr "未找到设备驱动程序。" -#: src/tables/machine/MachineTypeTable.tsx:242 +#: src/tables/machine/MachineTypeTable.tsx:240 msgid "Machine driver information" msgstr "设备驱动信息" -#: src/tables/machine/MachineTypeTable.tsx:262 +#: src/tables/machine/MachineTypeTable.tsx:260 msgid "Machine type" msgstr "设备类型" @@ -10187,15 +10402,15 @@ msgstr "设备类型" #~ msgid "Machine driver detail" #~ msgstr "Machine driver detail" -#: src/tables/machine/MachineTypeTable.tsx:362 +#: src/tables/machine/MachineTypeTable.tsx:360 msgid "Builtin type" msgstr "内置类型" -#: src/tables/machine/MachineTypeTable.tsx:371 +#: src/tables/machine/MachineTypeTable.tsx:369 msgid "Machine Type Detail" msgstr "设备类型详情" -#: src/tables/machine/MachineTypeTable.tsx:381 +#: src/tables/machine/MachineTypeTable.tsx:379 msgid "Machine Driver Detail" msgstr "设备驱动详情" @@ -10213,52 +10428,31 @@ msgstr "通知" msgid "Message" msgstr "信息" -#: src/tables/part/ParametricPartTable.tsx:78 -msgid "Click to edit" -msgstr "点击以编辑" +#: src/tables/part/ParametricPartTable.tsx:20 +msgid "Show active parts" +msgstr "显示活动零件" + +#: src/tables/part/ParametricPartTable.tsx:25 +msgid "Show locked parts" +msgstr "显示锁定的零件" + +#: src/tables/part/ParametricPartTable.tsx:30 +msgid "Show assembly parts" +msgstr "显示已装配的零件" #: src/tables/part/ParametricPartTable.tsx:82 #~ msgid "Edit parameter" #~ msgstr "Edit parameter" #: src/tables/part/ParametricPartTable.tsx:244 -msgid "Add Part Parameter" -msgstr "添加零件参数" +#~ msgid "Add Part Parameter" +#~ msgstr "Add Part Parameter" #: src/tables/part/ParametricPartTable.tsx:258 #: src/tables/part/PartParameterTable.tsx:164 #: src/tables/part/PartParameterTable.tsx:187 -msgid "Edit Part Parameter" -msgstr "编辑零件参数" - -#: src/tables/part/ParametricPartTable.tsx:355 -msgid "Show active parts" -msgstr "显示活动零件" - -#: src/tables/part/ParametricPartTable.tsx:360 -msgid "Show locked parts" -msgstr "显示锁定的零件" - -#: src/tables/part/ParametricPartTable.tsx:365 -msgid "Show assembly parts" -msgstr "显示已装配的零件" - -#: src/tables/part/ParametricPartTableFilters.tsx:36 -msgid "True" -msgstr "真" - -#: src/tables/part/ParametricPartTableFilters.tsx:37 -msgid "False" -msgstr "假" - -#: src/tables/part/ParametricPartTableFilters.tsx:47 -#: src/tables/part/ParametricPartTableFilters.tsx:80 -msgid "Select a choice" -msgstr "选择一个选项" - -#: src/tables/part/ParametricPartTableFilters.tsx:100 -msgid "Enter a value" -msgstr "输入一个值" +#~ msgid "Edit Part Parameter" +#~ msgstr "Edit Part Parameter" #: src/tables/part/PartBuildAllocationsTable.tsx:64 msgid "Assembly IPN" @@ -10273,7 +10467,7 @@ msgid "Required Stock" msgstr "所需库存" #: src/tables/part/PartBuildAllocationsTable.tsx:124 -#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:381 +#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:383 msgid "View Build Order" msgstr "查看生产订单" @@ -10332,85 +10526,22 @@ msgstr "编辑类别参数" msgid "Delete Category Parameter" msgstr "删除类别参数" -#: src/tables/part/PartCategoryTemplateTable.tsx:87 -msgid "Parameter Template" -msgstr "参数模板" - #: src/tables/part/PartCategoryTemplateTable.tsx:93 #~ msgid "[{0}]" #~ msgstr "[{0}]" -#: src/tables/part/PartParameterTable.tsx:108 -msgid "Internal Units" -msgstr "内部单位" - -#: src/tables/part/PartParameterTable.tsx:128 -#: src/tables/part/PartParameterTable.tsx:138 -msgid "Updated By" -msgstr "更新人" - -#: src/tables/part/PartParameterTable.tsx:139 -msgid "Filter by user who last updated the parameter" -msgstr "按最后更新参数的用户筛选" - #: src/tables/part/PartParameterTable.tsx:148 -msgid "New Part Parameter" -msgstr "新增零件参数" +#~ msgid "New Part Parameter" +#~ msgstr "New Part Parameter" #: src/tables/part/PartParameterTable.tsx:173 #: src/tables/part/PartParameterTable.tsx:195 -msgid "Delete Part Parameter" -msgstr "删除零件参数" +#~ msgid "Delete Part Parameter" +#~ msgstr "Delete Part Parameter" #: src/tables/part/PartParameterTable.tsx:213 -msgid "Add parameter" -msgstr "添加参数" - -#: src/tables/part/PartParameterTable.tsx:232 -msgid "Part parameters cannot be edited, as the part is locked" -msgstr "零件参数无法编辑,因为零件已锁定" - -#: src/tables/part/PartParameterTemplateTable.tsx:36 -msgid "Checkbox" -msgstr "勾选框" - -#: src/tables/part/PartParameterTemplateTable.tsx:37 -msgid "Show checkbox templates" -msgstr "显示复选框模板" - -#: src/tables/part/PartParameterTemplateTable.tsx:41 -msgid "Has choices" -msgstr "有选项" - -#: src/tables/part/PartParameterTemplateTable.tsx:42 -msgid "Show templates with choices" -msgstr "显示有选项的模板" - -#: src/tables/part/PartParameterTemplateTable.tsx:46 -#: src/tables/part/PartTable.tsx:245 -msgid "Has Units" -msgstr "有单位" - -#: src/tables/part/PartParameterTemplateTable.tsx:47 -msgid "Show templates with units" -msgstr "显示有单位的模板" - -#: src/tables/part/PartParameterTemplateTable.tsx:91 -#: src/tables/part/PartParameterTemplateTable.tsx:166 -msgid "Add Parameter Template" -msgstr "添加参数模板" - -#: src/tables/part/PartParameterTemplateTable.tsx:105 -msgid "Duplicate Parameter Template" -msgstr "重复参数模板" - -#: src/tables/part/PartParameterTemplateTable.tsx:117 -msgid "Edit Parameter Template" -msgstr "编辑参数模板" - -#: src/tables/part/PartParameterTemplateTable.tsx:128 -msgid "Delete Parameter Template" -msgstr "删除零件参数模板" +#~ msgid "Add parameter" +#~ msgstr "Add parameter" #: src/tables/part/PartParameterTemplateTable.tsx:141 #~ msgid "Add parameter template" @@ -10430,7 +10561,7 @@ msgid "Show received items" msgstr "显示已收到的条目" #: src/tables/part/PartSalesAllocationsTable.tsx:90 -#: src/tables/sales/SalesOrderShipmentTable.tsx:218 +#: src/tables/sales/SalesOrderShipmentTable.tsx:263 msgid "View Sales Order" msgstr "查看销售订单" @@ -10617,8 +10748,8 @@ msgstr "" #: src/tables/part/PartTestResultTable.tsx:103 #: src/tables/part/PartTestResultTable.tsx:181 -#: src/tables/part/PartTestResultTable.tsx:320 -#: src/tables/part/PartTestResultTable.tsx:334 +#: src/tables/part/PartTestResultTable.tsx:328 +#: src/tables/part/PartTestResultTable.tsx:342 #: src/tables/stock/StockItemTestResultTable.tsx:296 #: src/tables/stock/StockItemTestResultTable.tsx:368 #: src/tables/stock/StockItemTestResultTable.tsx:429 @@ -10643,7 +10774,7 @@ msgstr "测试结果已添加" msgid "No Result" msgstr "无结果" -#: src/tables/part/PartTestResultTable.tsx:298 +#: src/tables/part/PartTestResultTable.tsx:306 msgid "Show build outputs currently in production" msgstr "显示当前生产中的构建输出" @@ -11013,36 +11144,45 @@ msgstr "已安装" #~ msgid "Parameter updated" #~ msgstr "Parameter updated" -#: src/tables/purchasing/ManufacturerPartParameterTable.tsx:63 -#: src/tables/purchasing/ManufacturerPartParameterTable.tsx:112 -msgid "Add Parameter" -msgstr "添加参数" - #: src/tables/purchasing/ManufacturerPartParameterTable.tsx:73 #~ msgid "Parameter deleted" #~ msgstr "Parameter deleted" -#: src/tables/purchasing/ManufacturerPartParameterTable.tsx:74 -msgid "Edit Parameter" -msgstr "编辑参数" - #: src/tables/purchasing/ManufacturerPartParameterTable.tsx:74 #~ msgid "Are you sure you want to delete this parameter?" #~ msgstr "Are you sure you want to delete this parameter?" -#: src/tables/purchasing/ManufacturerPartParameterTable.tsx:82 -msgid "Delete Parameter" -msgstr "删除参数" - -#: src/tables/purchasing/ManufacturerPartTable.tsx:63 -#~ msgid "Create Manufacturer Part" -#~ msgstr "Create Manufacturer Part" - +#: src/tables/purchasing/ManufacturerPartParametricTable.tsx:34 #: src/tables/purchasing/ManufacturerPartTable.tsx:82 #: src/tables/purchasing/SupplierPartTable.tsx:99 msgid "MPN" msgstr "制造商零件编号 (MPN)" +#: src/tables/purchasing/ManufacturerPartParametricTable.tsx:44 +#: src/tables/purchasing/ManufacturerPartTable.tsx:134 +#: src/tables/purchasing/SupplierPartTable.tsx:220 +msgid "Active Part" +msgstr "激活的零件" + +#: src/tables/purchasing/ManufacturerPartParametricTable.tsx:45 +#: src/tables/purchasing/ManufacturerPartTable.tsx:135 +msgid "Show manufacturer parts for active internal parts." +msgstr "" + +#: src/tables/purchasing/ManufacturerPartParametricTable.tsx:50 +#: src/tables/purchasing/ManufacturerPartTable.tsx:140 +msgid "Active Manufacturer" +msgstr "" + +#: src/tables/purchasing/ManufacturerPartParametricTable.tsx:51 +#: src/tables/purchasing/ManufacturerPartTable.tsx:142 +msgid "Show manufacturer parts for active manufacturers." +msgstr "" + +#: src/tables/purchasing/ManufacturerPartTable.tsx:63 +#~ msgid "Create Manufacturer Part" +#~ msgstr "Create Manufacturer Part" + #: src/tables/purchasing/ManufacturerPartTable.tsx:100 #~ msgid "Manufacturer part updated" #~ msgstr "Manufacturer part updated" @@ -11055,25 +11195,8 @@ msgstr "制造商零件编号 (MPN)" #~ msgid "Are you sure you want to remove this manufacturer part?" #~ msgstr "Are you sure you want to remove this manufacturer part?" -#: src/tables/purchasing/ManufacturerPartTable.tsx:134 -#: src/tables/purchasing/SupplierPartTable.tsx:220 -msgid "Active Part" -msgstr "激活的零件" - -#: src/tables/purchasing/ManufacturerPartTable.tsx:135 -msgid "Show manufacturer parts for active internal parts." -msgstr "" - -#: src/tables/purchasing/ManufacturerPartTable.tsx:140 -msgid "Active Manufacturer" -msgstr "" - -#: src/tables/purchasing/ManufacturerPartTable.tsx:142 -msgid "Show manufacturer parts for active manufacturers." -msgstr "" - #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:115 -#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:397 +#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:399 msgid "Import Line Items" msgstr "导入行项目" @@ -11099,11 +11222,11 @@ msgstr "显示已收到的行项目" #~ msgid "Add line item" #~ msgstr "Add line item" -#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:350 +#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:352 msgid "Receive line item" msgstr "接收这行项目" -#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:414 +#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:416 msgid "Receive items" msgstr "收到项目" @@ -11201,25 +11324,25 @@ msgid "Not shipped" msgstr "未发货" #: src/tables/sales/SalesOrderAllocationTable.tsx:211 -#: src/tables/sales/SalesOrderAllocationTable.tsx:229 +#: src/tables/sales/SalesOrderAllocationTable.tsx:235 msgid "Edit Allocation" msgstr "编辑分配" #: src/tables/sales/SalesOrderAllocationTable.tsx:218 #: src/tables/sales/SalesOrderAllocationTable.tsx:241 -msgid "Delete Allocation" -msgstr "删除分配" +#~ msgid "Delete Allocation" +#~ msgstr "Delete Allocation" -#: src/tables/sales/SalesOrderAllocationTable.tsx:252 -#: src/tables/sales/SalesOrderAllocationTable.tsx:253 +#: src/tables/sales/SalesOrderAllocationTable.tsx:261 +#: src/tables/sales/SalesOrderAllocationTable.tsx:262 msgid "View Shipment" msgstr "查看发货" -#: src/tables/sales/SalesOrderAllocationTable.tsx:308 +#: src/tables/sales/SalesOrderAllocationTable.tsx:317 msgid "Assign to Shipment" msgstr "安排发货" -#: src/tables/sales/SalesOrderAllocationTable.tsx:324 +#: src/tables/sales/SalesOrderAllocationTable.tsx:333 msgid "Assign to shipment" msgstr "安排发货" @@ -11259,35 +11382,35 @@ msgstr "订单库存" #~ msgid "Delete Shipment" #~ msgstr "Delete Shipment" -#: src/tables/sales/SalesOrderShipmentTable.tsx:72 +#: src/tables/sales/SalesOrderShipmentTable.tsx:79 msgid "Create Shipment" msgstr "创建配送" -#: src/tables/sales/SalesOrderShipmentTable.tsx:143 +#: src/tables/sales/SalesOrderShipmentTable.tsx:164 msgid "Items" msgstr "项目" -#: src/tables/sales/SalesOrderShipmentTable.tsx:203 +#: src/tables/sales/SalesOrderShipmentTable.tsx:248 msgid "Edit shipment" msgstr "编辑配送" -#: src/tables/sales/SalesOrderShipmentTable.tsx:211 +#: src/tables/sales/SalesOrderShipmentTable.tsx:256 msgid "Cancel shipment" msgstr "取消配送" -#: src/tables/sales/SalesOrderShipmentTable.tsx:241 +#: src/tables/sales/SalesOrderShipmentTable.tsx:286 msgid "Add shipment" msgstr "添加配送" -#: src/tables/sales/SalesOrderShipmentTable.tsx:255 +#: src/tables/sales/SalesOrderShipmentTable.tsx:300 msgid "Show shipments which have been checked" msgstr "" -#: src/tables/sales/SalesOrderShipmentTable.tsx:260 +#: src/tables/sales/SalesOrderShipmentTable.tsx:305 msgid "Show shipments which have been shipped" msgstr "显示已发货的货物" -#: src/tables/sales/SalesOrderShipmentTable.tsx:265 +#: src/tables/sales/SalesOrderShipmentTable.tsx:310 msgid "Show shipments which have been delivered" msgstr "显示已送达的货物" @@ -11621,11 +11744,6 @@ msgstr "已上传" msgid "Imported Rows" msgstr "导入的行" -#: src/tables/settings/ImportSessionTable.tsx:111 -#: src/tables/settings/TemplateTable.tsx:368 -msgid "Model Type" -msgstr "型号类型" - #: src/tables/settings/ImportSessionTable.tsx:112 #: src/tables/settings/TemplateTable.tsx:369 msgid "Filter by target model type" diff --git a/src/frontend/src/locales/zh_Hant/messages.po b/src/frontend/src/locales/zh_Hant/messages.po index 449b57fb28..76d1693fe8 100644 --- a/src/frontend/src/locales/zh_Hant/messages.po +++ b/src/frontend/src/locales/zh_Hant/messages.po @@ -8,7 +8,7 @@ msgstr "" "Language: zh\n" "Project-Id-Version: inventree\n" "Report-Msgid-Bugs-To: \n" -"PO-Revision-Date: 2025-11-19 19:39\n" +"PO-Revision-Date: 2025-12-07 07:36\n" "Last-Translator: \n" "Language-Team: Chinese Traditional\n" "Plural-Forms: nplurals=1; plural=0;\n" @@ -30,7 +30,7 @@ msgid "Edit" msgstr "編輯" #: lib/components/RowActions.tsx:56 -#: src/components/forms/ApiForm.tsx:735 +#: src/components/forms/ApiForm.tsx:754 #: src/components/items/ActionDropdown.tsx:257 #: src/components/items/RoleTable.tsx:155 #: src/hooks/UseForm.tsx:164 @@ -56,24 +56,24 @@ msgstr "取消" #: lib/components/RowActions.tsx:136 #: src/components/nav/NavigationDrawer.tsx:190 -#: src/forms/PurchaseOrderForms.tsx:802 +#: src/forms/PurchaseOrderForms.tsx:854 #: src/forms/StockForms.tsx:796 #: src/forms/StockForms.tsx:843 -#: src/forms/StockForms.tsx:889 -#: src/forms/StockForms.tsx:928 -#: src/forms/StockForms.tsx:964 -#: src/forms/StockForms.tsx:1050 +#: src/forms/StockForms.tsx:896 +#: src/forms/StockForms.tsx:942 +#: src/forms/StockForms.tsx:980 +#: src/forms/StockForms.tsx:1066 #: src/pages/Index/Settings/AccountSettings/MFASettings.tsx:962 msgid "Actions" msgstr "操作" #: lib/components/SearchInput.tsx:34 -#: src/components/forms/fields/RelatedModelField.tsx:408 +#: src/components/forms/fields/RelatedModelField.tsx:479 #: src/components/nav/Header.tsx:169 #: src/components/wizards/ImportPartWizard.tsx:200 #: src/components/wizards/ImportPartWizard.tsx:233 -#: src/pages/Index/Settings/UserSettings.tsx:74 -#: src/pages/part/PartDetail.tsx:1155 +#: src/pages/Index/Settings/UserSettings.tsx:75 +#: src/pages/part/PartDetail.tsx:1176 msgid "Search" msgstr "搜尋" @@ -95,7 +95,7 @@ msgstr "是" msgid "No" msgstr "否" -#: lib/enums/ModelInformation.tsx:28 +#: lib/enums/ModelInformation.tsx:29 #: src/components/wizards/OrderPartsWizard.tsx:279 #: src/forms/BuildForms.tsx:332 #: src/forms/BuildForms.tsx:407 @@ -103,208 +103,234 @@ msgstr "否" #: src/forms/BuildForms.tsx:630 #: src/forms/BuildForms.tsx:793 #: src/forms/BuildForms.tsx:896 -#: src/forms/PurchaseOrderForms.tsx:798 +#: src/forms/PurchaseOrderForms.tsx:850 #: src/forms/ReturnOrderForms.tsx:242 -#: src/forms/SalesOrderForms.tsx:305 +#: src/forms/SalesOrderForms.tsx:384 #: src/forms/StockForms.tsx:360 #: src/forms/StockForms.tsx:791 #: src/forms/StockForms.tsx:838 -#: src/forms/StockForms.tsx:884 -#: src/forms/StockForms.tsx:923 -#: src/forms/StockForms.tsx:959 -#: src/forms/StockForms.tsx:1002 -#: src/forms/StockForms.tsx:1046 -#: src/forms/StockForms.tsx:1094 -#: src/forms/StockForms.tsx:1138 -#: src/pages/build/BuildDetail.tsx:200 -#: src/pages/part/PartDetail.tsx:1207 +#: src/forms/StockForms.tsx:891 +#: src/forms/StockForms.tsx:937 +#: src/forms/StockForms.tsx:975 +#: src/forms/StockForms.tsx:1018 +#: src/forms/StockForms.tsx:1062 +#: src/forms/StockForms.tsx:1110 +#: src/forms/StockForms.tsx:1154 +#: src/pages/build/BuildDetail.tsx:201 +#: src/pages/part/PartDetail.tsx:1228 #: src/tables/ColumnRenderers.tsx:91 +#: src/tables/part/PartTestResultTable.tsx:247 #: src/tables/part/RelatedPartTable.tsx:53 #: src/tables/stock/StockTrackingTable.tsx:87 msgid "Part" msgstr "零件" -#: lib/enums/ModelInformation.tsx:29 +#: lib/enums/ModelInformation.tsx:30 #: lib/enums/Roles.tsx:35 #: src/components/nav/NavigationDrawer.tsx:70 #: src/defaults/links.tsx:36 -#: src/pages/Index/Settings/SystemSettings.tsx:190 -#: src/pages/part/CategoryDetail.tsx:132 -#: src/pages/part/CategoryDetail.tsx:277 -#: src/pages/part/CategoryDetail.tsx:323 -#: src/pages/part/CategoryDetail.tsx:354 -#: src/pages/part/PartDetail.tsx:965 +#: src/pages/Index/Settings/SystemSettings.tsx:197 +#: src/pages/part/CategoryDetail.tsx:135 +#: src/pages/part/CategoryDetail.tsx:285 +#: src/pages/part/CategoryDetail.tsx:340 +#: src/pages/part/CategoryDetail.tsx:371 +#: src/pages/part/PartDetail.tsx:978 msgid "Parts" msgstr "零件" #: lib/enums/ModelInformation.tsx:37 #: src/pages/Index/Settings/AdminCenter/PartParameterPanel.tsx:13 -msgid "Part Parameter Template" -msgstr "零件參數模板" +#~ msgid "Part Parameter Template" +#~ msgstr "Part Parameter Template" #: lib/enums/ModelInformation.tsx:38 -msgid "Part Parameter Templates" -msgstr "零件參數模板" +#~ msgid "Part Parameter Templates" +#~ msgstr "Part Parameter Templates" + +#: lib/enums/ModelInformation.tsx:39 +msgid "Parameter" +msgstr "" + +#: lib/enums/ModelInformation.tsx:40 +#: src/components/panels/ParametersPanel.tsx:19 +#: src/components/wizards/ImportPartWizard.tsx:807 +#: src/pages/Index/Settings/AdminCenter/Index.tsx:195 +#: src/pages/Index/Settings/SystemSettings.tsx:191 +#: src/pages/part/PartDetail.tsx:943 +msgid "Parameters" +msgstr "參數" #: lib/enums/ModelInformation.tsx:45 +#: src/tables/part/PartCategoryTemplateTable.tsx:87 +msgid "Parameter Template" +msgstr "參數模板" + +#: lib/enums/ModelInformation.tsx:46 +#: src/pages/Index/Settings/AdminCenter/ParameterPanel.tsx:13 +msgid "Parameter Templates" +msgstr "" + +#: lib/enums/ModelInformation.tsx:52 msgid "Part Test Template" msgstr "零件測試模板" -#: lib/enums/ModelInformation.tsx:46 +#: lib/enums/ModelInformation.tsx:53 msgid "Part Test Templates" msgstr "零件測試模板" -#: lib/enums/ModelInformation.tsx:52 +#: lib/enums/ModelInformation.tsx:59 #: src/components/wizards/OrderPartsWizard.tsx:290 -#: src/pages/company/SupplierPartDetail.tsx:413 +#: src/pages/company/SupplierPartDetail.tsx:418 #: src/pages/stock/StockDetail.tsx:289 -#: src/tables/build/BuildAllocatedStockTable.tsx:155 +#: src/tables/build/BuildAllocatedStockTable.tsx:152 #: src/tables/part/PartPurchaseOrdersTable.tsx:50 +#: src/tables/purchasing/SupplierPartParametricTable.tsx:29 #: src/tables/purchasing/SupplierPartTable.tsx:83 #: src/tables/stock/StockItemTable.tsx:247 msgid "Supplier Part" msgstr "供應商零件" -#: lib/enums/ModelInformation.tsx:53 -#: src/pages/purchasing/PurchasingIndex.tsx:92 +#: lib/enums/ModelInformation.tsx:60 +#: src/pages/purchasing/PurchasingIndex.tsx:128 msgid "Supplier Parts" msgstr "供應商零件" -#: lib/enums/ModelInformation.tsx:61 -#: src/pages/company/ManufacturerPartDetail.tsx:297 -#: src/pages/company/SupplierPartDetail.tsx:161 +#: lib/enums/ModelInformation.tsx:69 +#: src/pages/company/ManufacturerPartDetail.tsx:288 +#: src/pages/company/SupplierPartDetail.tsx:162 #: src/tables/part/PartPurchaseOrdersTable.tsx:56 #: src/tables/stock/StockItemTable.tsx:253 msgid "Manufacturer Part" msgstr "製造商零件" -#: lib/enums/ModelInformation.tsx:62 -#: src/pages/purchasing/PurchasingIndex.tsx:109 +#: lib/enums/ModelInformation.tsx:70 +#: src/pages/purchasing/PurchasingIndex.tsx:177 msgid "Manufacturer Parts" msgstr "製造商零件" -#: lib/enums/ModelInformation.tsx:70 -#: src/pages/part/CategoryDetail.tsx:354 +#: lib/enums/ModelInformation.tsx:79 +#: src/pages/part/CategoryDetail.tsx:371 #: src/tables/Filter.tsx:389 msgid "Part Category" msgstr "零件類別" -#: lib/enums/ModelInformation.tsx:71 +#: lib/enums/ModelInformation.tsx:80 #: lib/enums/Roles.tsx:37 -#: src/pages/part/CategoryDetail.tsx:271 -#: src/pages/part/CategoryDetail.tsx:345 -#: src/pages/part/PartDetail.tsx:1196 +#: src/pages/part/CategoryDetail.tsx:279 +#: src/pages/part/CategoryDetail.tsx:362 +#: src/pages/part/PartDetail.tsx:1217 msgid "Part Categories" msgstr "零件類別" -#: lib/enums/ModelInformation.tsx:79 +#: lib/enums/ModelInformation.tsx:88 #: src/forms/BuildForms.tsx:473 #: src/forms/BuildForms.tsx:633 #: src/forms/BuildForms.tsx:794 -#: src/forms/SalesOrderForms.tsx:307 +#: src/forms/SalesOrderForms.tsx:386 #: src/pages/stock/StockDetail.tsx:1005 -#: src/tables/part/PartTestResultTable.tsx:248 +#: src/tables/part/PartTestResultTable.tsx:256 #: src/tables/stock/StockTrackingTable.tsx:48 #: src/tables/stock/StockTrackingTable.tsx:55 msgid "Stock Item" msgstr "庫存項" -#: lib/enums/ModelInformation.tsx:80 +#: lib/enums/ModelInformation.tsx:89 #: lib/enums/Roles.tsx:45 -#: src/pages/company/CompanyDetail.tsx:210 -#: src/pages/part/CategoryDetail.tsx:291 +#: src/pages/company/CompanyDetail.tsx:211 +#: src/pages/part/CategoryDetail.tsx:314 #: src/pages/part/PartStockHistoryDetail.tsx:101 #: src/pages/stock/LocationDetail.tsx:121 #: src/pages/stock/LocationDetail.tsx:180 msgid "Stock Items" msgstr "庫存項" -#: lib/enums/ModelInformation.tsx:88 +#: lib/enums/ModelInformation.tsx:98 #: lib/enums/Roles.tsx:47 #: src/pages/stock/LocationDetail.tsx:420 msgid "Stock Location" msgstr "庫存地點" -#: lib/enums/ModelInformation.tsx:89 +#: lib/enums/ModelInformation.tsx:99 #: src/pages/stock/LocationDetail.tsx:174 #: src/pages/stock/LocationDetail.tsx:412 #: src/pages/stock/StockDetail.tsx:996 msgid "Stock Locations" msgstr "庫存地點" -#: lib/enums/ModelInformation.tsx:97 +#: lib/enums/ModelInformation.tsx:108 msgid "Stock Location Type" msgstr "庫存地點類型" -#: lib/enums/ModelInformation.tsx:98 +#: lib/enums/ModelInformation.tsx:109 msgid "Stock Location Types" msgstr "庫存地點類型" -#: lib/enums/ModelInformation.tsx:103 -#: src/pages/Index/Settings/SystemSettings.tsx:248 -#: src/pages/part/PartDetail.tsx:911 +#: lib/enums/ModelInformation.tsx:114 +#: src/pages/Index/Settings/SystemSettings.tsx:254 +#: src/pages/part/PartDetail.tsx:900 msgid "Stock History" msgstr "庫存歷史記錄" -#: lib/enums/ModelInformation.tsx:104 +#: lib/enums/ModelInformation.tsx:115 msgid "Stock Histories" msgstr "庫存歷史記錄" -#: lib/enums/ModelInformation.tsx:109 +#: lib/enums/ModelInformation.tsx:120 msgid "Build" msgstr "生產" -#: lib/enums/ModelInformation.tsx:110 +#: lib/enums/ModelInformation.tsx:121 msgid "Builds" msgstr "生產" -#: lib/enums/ModelInformation.tsx:118 +#: lib/enums/ModelInformation.tsx:130 msgid "Build Line" msgstr "生產行" -#: lib/enums/ModelInformation.tsx:119 +#: lib/enums/ModelInformation.tsx:131 msgid "Build Lines" msgstr "生產行" -#: lib/enums/ModelInformation.tsx:126 +#: lib/enums/ModelInformation.tsx:138 msgid "Build Item" msgstr "構建項目:" -#: lib/enums/ModelInformation.tsx:127 +#: lib/enums/ModelInformation.tsx:139 msgid "Build Items" msgstr "構建多個項目" -#: lib/enums/ModelInformation.tsx:132 -#: src/pages/company/CompanyDetail.tsx:340 +#: lib/enums/ModelInformation.tsx:144 +#: src/pages/company/CompanyDetail.tsx:345 #: src/tables/company/CompanyTable.tsx:47 #: src/tables/company/ContactTable.tsx:67 +#: src/tables/company/ParametricCompanyTable.tsx:18 msgid "Company" msgstr "公司" -#: lib/enums/ModelInformation.tsx:133 +#: lib/enums/ModelInformation.tsx:145 msgid "Companies" msgstr "公司" -#: lib/enums/ModelInformation.tsx:140 -#: src/pages/build/BuildDetail.tsx:316 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:253 -#: src/pages/sales/ReturnOrderDetail.tsx:231 -#: src/pages/sales/SalesOrderDetail.tsx:224 +#: lib/enums/ModelInformation.tsx:152 +#: src/pages/build/BuildDetail.tsx:317 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:254 +#: src/pages/sales/ReturnOrderDetail.tsx:232 +#: src/pages/sales/SalesOrderDetail.tsx:225 #: src/tables/ColumnRenderers.tsx:362 #: src/tables/Filter.tsx:286 #: src/tables/TableHoverCard.tsx:101 msgid "Project Code" msgstr "項目編碼" -#: lib/enums/ModelInformation.tsx:141 +#: lib/enums/ModelInformation.tsx:153 #: src/pages/Index/Settings/AdminCenter/Index.tsx:172 msgid "Project Codes" msgstr "項目編碼" -#: lib/enums/ModelInformation.tsx:147 +#: lib/enums/ModelInformation.tsx:159 #: src/components/wizards/OrderPartsWizard.tsx:338 #: src/pages/part/pricing/PurchaseHistoryPanel.tsx:33 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:550 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:555 #: src/pages/stock/StockDetail.tsx:352 #: src/tables/part/PartPurchaseOrdersTable.tsx:32 #: src/tables/stock/StockItemTable.tsx:239 @@ -312,117 +338,117 @@ msgstr "項目編碼" msgid "Purchase Order" msgstr "採購訂單" -#: lib/enums/ModelInformation.tsx:148 +#: lib/enums/ModelInformation.tsx:160 #: lib/enums/Roles.tsx:39 #: src/defaults/actions.tsx:104 -#: src/pages/Index/Settings/SystemSettings.tsx:283 -#: src/pages/company/CompanyDetail.tsx:203 -#: src/pages/company/SupplierPartDetail.tsx:266 -#: src/pages/part/PartDetail.tsx:875 -#: src/pages/purchasing/PurchasingIndex.tsx:60 +#: src/pages/Index/Settings/SystemSettings.tsx:289 +#: src/pages/company/CompanyDetail.tsx:204 +#: src/pages/company/SupplierPartDetail.tsx:267 +#: src/pages/part/PartDetail.tsx:864 +#: src/pages/purchasing/PurchasingIndex.tsx:66 msgid "Purchase Orders" msgstr "採購訂單" -#: lib/enums/ModelInformation.tsx:156 +#: lib/enums/ModelInformation.tsx:169 msgid "Purchase Order Line" msgstr "採購訂單行" -#: lib/enums/ModelInformation.tsx:157 +#: lib/enums/ModelInformation.tsx:170 msgid "Purchase Order Lines" msgstr "採購訂單行" -#: lib/enums/ModelInformation.tsx:162 -#: src/pages/build/BuildDetail.tsx:289 +#: lib/enums/ModelInformation.tsx:175 +#: src/pages/build/BuildDetail.tsx:290 #: src/pages/part/pricing/SaleHistoryPanel.tsx:24 -#: src/pages/sales/SalesOrderDetail.tsx:614 -#: src/pages/sales/SalesOrderShipmentDetail.tsx:105 -#: src/pages/sales/SalesOrderShipmentDetail.tsx:478 +#: src/pages/sales/SalesOrderDetail.tsx:619 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:103 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:446 #: src/pages/stock/StockDetail.tsx:361 #: src/tables/part/PartSalesAllocationsTable.tsx:41 #: src/tables/sales/SalesOrderAllocationTable.tsx:110 -#: src/tables/sales/SalesOrderShipmentTable.tsx:122 +#: src/tables/sales/SalesOrderShipmentTable.tsx:143 #: src/tables/stock/StockTrackingTable.tsx:131 msgid "Sales Order" msgstr "銷售訂單" -#: lib/enums/ModelInformation.tsx:163 +#: lib/enums/ModelInformation.tsx:176 #: lib/enums/Roles.tsx:43 #: src/defaults/actions.tsx:114 -#: src/pages/Index/Settings/SystemSettings.tsx:299 -#: src/pages/company/CompanyDetail.tsx:223 -#: src/pages/part/PartDetail.tsx:887 -#: src/pages/sales/SalesIndex.tsx:84 +#: src/pages/Index/Settings/SystemSettings.tsx:305 +#: src/pages/company/CompanyDetail.tsx:224 +#: src/pages/part/PartDetail.tsx:876 +#: src/pages/sales/SalesIndex.tsx:53 msgid "Sales Orders" msgstr "銷售訂單" -#: lib/enums/ModelInformation.tsx:171 -#: src/pages/sales/SalesOrderShipmentDetail.tsx:477 +#: lib/enums/ModelInformation.tsx:185 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:445 msgid "Sales Order Shipment" msgstr "銷售訂單配送" -#: lib/enums/ModelInformation.tsx:172 +#: lib/enums/ModelInformation.tsx:186 msgid "Sales Order Shipments" msgstr "銷售訂單配送" -#: lib/enums/ModelInformation.tsx:179 -#: src/pages/sales/ReturnOrderDetail.tsx:549 +#: lib/enums/ModelInformation.tsx:194 +#: src/pages/sales/ReturnOrderDetail.tsx:554 #: src/tables/stock/StockTrackingTable.tsx:142 msgid "Return Order" msgstr "退貨訂單" -#: lib/enums/ModelInformation.tsx:180 +#: lib/enums/ModelInformation.tsx:195 #: lib/enums/Roles.tsx:41 #: src/defaults/actions.tsx:125 -#: src/pages/Index/Settings/SystemSettings.tsx:316 -#: src/pages/company/CompanyDetail.tsx:230 -#: src/pages/part/PartDetail.tsx:894 -#: src/pages/sales/SalesIndex.tsx:117 +#: src/pages/Index/Settings/SystemSettings.tsx:322 +#: src/pages/company/CompanyDetail.tsx:231 +#: src/pages/part/PartDetail.tsx:883 +#: src/pages/sales/SalesIndex.tsx:99 msgid "Return Orders" msgstr "退貨訂單" -#: lib/enums/ModelInformation.tsx:188 +#: lib/enums/ModelInformation.tsx:204 msgid "Return Order Line Item" msgstr "退貨訂單行項目" -#: lib/enums/ModelInformation.tsx:189 +#: lib/enums/ModelInformation.tsx:205 msgid "Return Order Line Items" msgstr "退貨訂單行項目" -#: lib/enums/ModelInformation.tsx:194 +#: lib/enums/ModelInformation.tsx:210 #: src/tables/company/AddressTable.tsx:52 msgid "Address" msgstr "地址" -#: lib/enums/ModelInformation.tsx:195 -#: src/pages/company/CompanyDetail.tsx:264 +#: lib/enums/ModelInformation.tsx:211 +#: src/pages/company/CompanyDetail.tsx:265 msgid "Addresses" msgstr "地址" -#: lib/enums/ModelInformation.tsx:201 +#: lib/enums/ModelInformation.tsx:217 #: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:89 #: src/pages/core/UserDetail.tsx:135 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:229 -#: src/pages/sales/ReturnOrderDetail.tsx:207 -#: src/pages/sales/SalesOrderDetail.tsx:200 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:230 +#: src/pages/sales/ReturnOrderDetail.tsx:208 +#: src/pages/sales/SalesOrderDetail.tsx:201 msgid "Contact" msgstr "聯繫人" -#: lib/enums/ModelInformation.tsx:202 -#: src/pages/company/CompanyDetail.tsx:258 +#: lib/enums/ModelInformation.tsx:218 +#: src/pages/company/CompanyDetail.tsx:259 #: src/pages/core/CoreIndex.tsx:33 msgid "Contacts" msgstr "聯繫人" -#: lib/enums/ModelInformation.tsx:208 +#: lib/enums/ModelInformation.tsx:224 #: src/tables/ColumnRenderers.tsx:444 msgid "Owner" msgstr "所有者" -#: lib/enums/ModelInformation.tsx:209 +#: lib/enums/ModelInformation.tsx:225 msgid "Owners" msgstr "所有者" -#: lib/enums/ModelInformation.tsx:215 +#: lib/enums/ModelInformation.tsx:231 #: src/pages/Auth/ChangePassword.tsx:36 #: src/pages/core/UserDetail.tsx:220 #: src/tables/ColumnRenderers.tsx:395 @@ -437,7 +463,7 @@ msgstr "所有者" msgid "User" msgstr "用户" -#: lib/enums/ModelInformation.tsx:216 +#: lib/enums/ModelInformation.tsx:232 #: src/components/nav/NavigationDrawer.tsx:105 #: src/pages/Index/Settings/AdminCenter/UserManagementPanel.tsx:15 #: src/pages/core/CoreIndex.tsx:21 @@ -445,12 +471,12 @@ msgstr "用户" msgid "Users" msgstr "用户" -#: lib/enums/ModelInformation.tsx:222 +#: lib/enums/ModelInformation.tsx:238 #: src/pages/core/GroupDetail.tsx:78 msgid "Group" msgstr "羣組" -#: lib/enums/ModelInformation.tsx:223 +#: lib/enums/ModelInformation.tsx:239 #: src/components/nav/NavigationDrawer.tsx:111 #: src/pages/Index/Settings/AdminCenter/UserManagementPanel.tsx:23 #: src/pages/core/CoreIndex.tsx:27 @@ -460,64 +486,64 @@ msgstr "羣組" msgid "Groups" msgstr "羣組" -#: lib/enums/ModelInformation.tsx:230 +#: lib/enums/ModelInformation.tsx:246 msgid "Import Session" msgstr "導入會話" -#: lib/enums/ModelInformation.tsx:231 +#: lib/enums/ModelInformation.tsx:247 msgid "Import Sessions" msgstr "導入會話" -#: lib/enums/ModelInformation.tsx:238 +#: lib/enums/ModelInformation.tsx:254 msgid "Label Template" msgstr "標籤模板" -#: lib/enums/ModelInformation.tsx:239 +#: lib/enums/ModelInformation.tsx:255 #: src/pages/Index/Settings/AdminCenter/Index.tsx:209 msgid "Label Templates" msgstr "標籤模板" -#: lib/enums/ModelInformation.tsx:246 +#: lib/enums/ModelInformation.tsx:262 msgid "Report Template" msgstr "報告模板" -#: lib/enums/ModelInformation.tsx:247 +#: lib/enums/ModelInformation.tsx:263 #: src/pages/Index/Settings/AdminCenter/Index.tsx:215 msgid "Report Templates" msgstr "報告模板" -#: lib/enums/ModelInformation.tsx:254 +#: lib/enums/ModelInformation.tsx:270 #: src/components/plugins/PluginDrawer.tsx:145 msgid "Plugin Configuration" msgstr "插件配置" -#: lib/enums/ModelInformation.tsx:255 +#: lib/enums/ModelInformation.tsx:271 msgid "Plugin Configurations" msgstr "插件配置" -#: lib/enums/ModelInformation.tsx:262 +#: lib/enums/ModelInformation.tsx:278 msgid "Content Type" msgstr "內容類型" -#: lib/enums/ModelInformation.tsx:263 +#: lib/enums/ModelInformation.tsx:279 msgid "Content Types" msgstr "內容類型" -#: lib/enums/ModelInformation.tsx:268 +#: lib/enums/ModelInformation.tsx:284 msgid "Selection List" msgstr "選擇列表" -#: lib/enums/ModelInformation.tsx:269 -#: src/pages/Index/Settings/AdminCenter/PartParameterPanel.tsx:21 +#: lib/enums/ModelInformation.tsx:285 +#: src/pages/Index/Settings/AdminCenter/ParameterPanel.tsx:21 msgid "Selection Lists" msgstr "選擇列表" -#: lib/enums/ModelInformation.tsx:275 +#: lib/enums/ModelInformation.tsx:291 #: src/components/barcodes/BarcodeInput.tsx:114 #: src/components/dashboard/DashboardLayout.tsx:281 #: src/components/editors/NotesEditor.tsx:74 #: src/components/editors/TemplateEditor/TemplateEditor.tsx:158 -#: src/components/forms/fields/ApiFormField.tsx:273 +#: src/components/forms/fields/ApiFormField.tsx:237 #: src/components/forms/fields/TableField.tsx:45 #: src/components/importer/ImportDataSelector.tsx:192 #: src/components/importer/ImporterColumnSelector.tsx:234 @@ -528,7 +554,7 @@ msgstr "選擇列表" #: src/components/nav/SearchDrawer.tsx:572 #: src/components/settings/SettingList.tsx:139 #: src/components/wizards/ImportPartWizard.tsx:574 -#: src/components/wizards/ImportPartWizard.tsx:718 +#: src/components/wizards/ImportPartWizard.tsx:719 #: src/forms/BomForms.tsx:69 #: src/functions/auth.tsx:643 #: src/pages/ErrorPage.tsx:11 @@ -547,9 +573,9 @@ msgstr "選擇列表" msgid "Error" msgstr "錯誤" -#: lib/enums/ModelInformation.tsx:276 +#: lib/enums/ModelInformation.tsx:292 #: src/tables/machine/MachineListTable.tsx:402 -#: src/tables/machine/MachineTypeTable.tsx:299 +#: src/tables/machine/MachineTypeTable.tsx:297 msgid "Errors" msgstr "錯誤" @@ -559,10 +585,10 @@ msgstr "管理" #: lib/enums/Roles.tsx:33 #: src/defaults/actions.tsx:135 -#: src/pages/Index/Settings/SystemSettings.tsx:264 -#: src/pages/build/BuildIndex.tsx:75 -#: src/pages/part/PartDetail.tsx:904 -#: src/pages/sales/SalesOrderDetail.tsx:421 +#: src/pages/Index/Settings/SystemSettings.tsx:270 +#: src/pages/build/BuildIndex.tsx:67 +#: src/pages/part/PartDetail.tsx:893 +#: src/pages/sales/SalesOrderDetail.tsx:422 msgid "Build Orders" msgstr "生產訂單" @@ -639,39 +665,39 @@ msgstr "掃描或輸入條碼資料" msgid "Enter barcode data" msgstr "輸入條碼資料" -#: src/components/barcodes/BarcodeScanDialog.tsx:49 -#: src/components/buttons/ScanButton.tsx:15 +#: src/components/barcodes/BarcodeScanDialog.tsx:56 +#: src/components/buttons/ScanButton.tsx:27 #: src/components/nav/NavigationDrawer.tsx:122 -#: src/forms/PurchaseOrderForms.tsx:457 -#: src/forms/PurchaseOrderForms.tsx:563 +#: src/forms/PurchaseOrderForms.tsx:509 +#: src/forms/PurchaseOrderForms.tsx:615 msgid "Scan Barcode" msgstr "掃描條碼" -#: src/components/barcodes/BarcodeScanDialog.tsx:105 +#: src/components/barcodes/BarcodeScanDialog.tsx:121 msgid "No matching item found" msgstr "找不到符合的項目" -#: src/components/barcodes/BarcodeScanDialog.tsx:134 +#: src/components/barcodes/BarcodeScanDialog.tsx:150 msgid "Barcode does not match the expected model type" msgstr "" -#: src/components/barcodes/BarcodeScanDialog.tsx:145 +#: src/components/barcodes/BarcodeScanDialog.tsx:161 #: src/components/editors/NotesEditor.tsx:84 #: src/components/editors/NotesEditor.tsx:118 -#: src/components/forms/ApiForm.tsx:465 +#: src/components/forms/ApiForm.tsx:484 #: src/components/wizards/ImportPartWizard.tsx:566 -#: src/components/wizards/ImportPartWizard.tsx:690 +#: src/components/wizards/ImportPartWizard.tsx:691 #: src/pages/Index/Settings/AdminCenter/CurrencyManagementPanel.tsx:45 #: src/tables/bom/BomTable.tsx:548 #: src/tables/settings/PendingTasksTable.tsx:68 msgid "Success" msgstr "操作成功" -#: src/components/barcodes/BarcodeScanDialog.tsx:151 +#: src/components/barcodes/BarcodeScanDialog.tsx:167 msgid "Failed to handle barcode" msgstr "" -#: src/components/barcodes/BarcodeScanDialog.tsx:167 +#: src/components/barcodes/BarcodeScanDialog.tsx:183 #: src/pages/Index/Scan.tsx:129 msgid "Failed to scan barcode" msgstr "" @@ -714,10 +740,10 @@ msgstr "" #: src/components/barcodes/QRCode.tsx:179 #: src/pages/part/PartDetail.tsx:521 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:222 -#: src/pages/sales/ReturnOrderDetail.tsx:188 -#: src/pages/sales/SalesOrderDetail.tsx:181 -#: src/pages/sales/SalesOrderShipmentDetail.tsx:122 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:223 +#: src/pages/sales/ReturnOrderDetail.tsx:189 +#: src/pages/sales/SalesOrderDetail.tsx:182 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:120 #: src/pages/stock/StockDetail.tsx:186 msgid "Link" msgstr "鏈接" @@ -728,7 +754,7 @@ msgstr "這將刪除關聯條碼的鏈接" #: src/components/barcodes/QRCode.tsx:205 #: src/components/items/ActionDropdown.tsx:192 -#: src/forms/PurchaseOrderForms.tsx:554 +#: src/forms/PurchaseOrderForms.tsx:606 msgid "Unlink Barcode" msgstr "解綁條碼" @@ -829,14 +855,14 @@ msgstr "" #~ msgid "Scan QR code" #~ msgstr "Scan QR code" -#: src/components/buttons/ScanButton.tsx:19 -msgid "Open Barcode Scanner" -msgstr "" - #: src/components/buttons/ScanButton.tsx:20 #~ msgid "Open QR code scanner" #~ msgstr "Open QR code scanner" +#: src/components/buttons/ScanButton.tsx:32 +msgid "Open Barcode Scanner" +msgstr "" + #: src/components/buttons/SpotlightButton.tsx:12 msgid "Open spotlight" msgstr "打開聚焦" @@ -1059,7 +1085,7 @@ msgid "Show the number of sales orders which are assigned to you" msgstr "" #: src/components/dashboard/DashboardWidgetLibrary.tsx:129 -#: src/pages/sales/SalesIndex.tsx:105 +#: src/pages/sales/SalesIndex.tsx:87 msgid "Pending Shipments" msgstr "" @@ -1210,12 +1236,18 @@ msgid "Remove the associated image from this item?" msgstr "刪除與此項關聯的圖片?" #: src/components/details/DetailsImage.tsx:83 -#: src/forms/StockForms.tsx:888 +#: src/forms/StockForms.tsx:895 #: src/pages/Index/Settings/AccountSettings/MFASettings.tsx:324 #: src/pages/Index/Settings/AccountSettings/MFASettings.tsx:415 #: src/pages/Index/Settings/AccountSettings/MFASettings.tsx:884 #: src/pages/Index/Settings/AccountSettings/MFASettings.tsx:903 #: src/pages/Index/Settings/AccountSettings/SecurityContent.tsx:254 +#: src/tables/build/BuildAllocatedStockTable.tsx:178 +#: src/tables/build/BuildAllocatedStockTable.tsx:258 +#: src/tables/build/BuildLineTable.tsx:111 +#: src/tables/build/BuildLineTable.tsx:665 +#: src/tables/sales/SalesOrderAllocationTable.tsx:224 +#: src/tables/sales/SalesOrderAllocationTable.tsx:247 msgid "Remove" msgstr "移除" @@ -1241,12 +1273,12 @@ msgid "Upload Error" msgstr "上傳錯誤" #: src/components/details/DetailsImage.tsx:250 -#: src/components/forms/fields/TextField.tsx:65 +#: src/components/forms/fields/AutoFillRightSection.tsx:34 msgid "Clear" msgstr "清除" #: src/components/details/DetailsImage.tsx:256 -#: src/components/forms/ApiForm.tsx:677 +#: src/components/forms/ApiForm.tsx:696 #: src/contexts/ThemeContext.tsx:44 #: src/pages/Index/Settings/AccountSettings/MFASettings.tsx:149 #: src/pages/Index/Settings/AccountSettings/MFASettings.tsx:568 @@ -1499,8 +1531,8 @@ msgstr "服務器錯誤" msgid "A server error occurred" msgstr "服務器出錯。" -#: src/components/forms/ApiForm.tsx:103 -#: src/components/forms/ApiForm.tsx:594 +#: src/components/forms/ApiForm.tsx:107 +#: src/components/forms/ApiForm.tsx:613 msgid "Form Error" msgstr "表單錯誤" @@ -1508,11 +1540,11 @@ msgstr "表單錯誤" #~ msgid "Form Errors Exist" #~ msgstr "Form Errors Exist" -#: src/components/forms/ApiForm.tsx:604 +#: src/components/forms/ApiForm.tsx:623 msgid "Errors exist for one or more form fields" msgstr "一個或多個表單字段存在錯誤" -#: src/components/forms/ApiForm.tsx:715 +#: src/components/forms/ApiForm.tsx:734 #: src/hooks/UseForm.tsx:133 #: src/tables/plugin/PluginListTable.tsx:204 msgid "Update" @@ -1698,15 +1730,14 @@ msgstr "主機" #: src/components/forms/InstanceOptions.tsx:124 #: src/components/plugins/PluginDrawer.tsx:68 #: src/pages/Index/Settings/AdminCenter/UnitManagementPanel.tsx:19 -#: src/pages/part/CategoryDetail.tsx:88 +#: src/pages/part/CategoryDetail.tsx:91 #: src/pages/part/PartDetail.tsx:446 #: src/pages/stock/LocationDetail.tsx:82 #: src/tables/machine/MachineTypeTable.tsx:67 -#: src/tables/machine/MachineTypeTable.tsx:151 -#: src/tables/machine/MachineTypeTable.tsx:254 -#: src/tables/machine/MachineTypeTable.tsx:357 +#: src/tables/machine/MachineTypeTable.tsx:149 +#: src/tables/machine/MachineTypeTable.tsx:252 +#: src/tables/machine/MachineTypeTable.tsx:355 #: src/tables/plugin/PluginErrorTable.tsx:33 -#: src/tables/purchasing/ManufacturerPartParameterTable.tsx:36 #: src/tables/settings/ApiTokenTable.tsx:57 #: src/tables/settings/GroupTable.tsx:95 #: src/tables/settings/GroupTable.tsx:148 @@ -1769,7 +1800,7 @@ msgstr "" #~ msgstr "State: <0>worker ({0}), <1>plugins{1}" #: src/components/forms/InstanceOptions.tsx:118 -#: src/pages/Index/Settings/SystemSettings.tsx:45 +#: src/pages/Index/Settings/SystemSettings.tsx:46 msgid "Server" msgstr "服務器" @@ -1793,6 +1824,8 @@ msgid "Plugins" msgstr "插件" #: src/components/forms/InstanceOptions.tsx:143 +#: src/tables/general/ParameterTemplateTable.tsx:153 +#: src/tables/general/ParameterTemplateTable.tsx:188 #: src/tables/part/PartTestTemplateTable.tsx:117 #: src/tables/settings/TemplateTable.tsx:251 #: src/tables/settings/TemplateTable.tsx:362 @@ -1817,10 +1850,14 @@ msgstr "已停止" msgid "Running" msgstr "" -#: src/components/forms/fields/ApiFormField.tsx:233 +#: src/components/forms/fields/ApiFormField.tsx:197 msgid "Select file to upload" msgstr "" +#: src/components/forms/fields/AutoFillRightSection.tsx:47 +msgid "Accept suggested value" +msgstr "" + #: src/components/forms/fields/DateField.tsx:76 msgid "Select date" msgstr "" @@ -1853,13 +1890,13 @@ msgstr "選擇包" msgid "{0} icons" msgstr "{0} 個圖標" -#: src/components/forms/fields/RelatedModelField.tsx:409 +#: src/components/forms/fields/RelatedModelField.tsx:480 #: src/components/modals/AboutInvenTreeModal.tsx:96 #: src/pages/Index/Settings/AccountSettings/SecurityContent.tsx:383 msgid "Loading" msgstr "正在加載" -#: src/components/forms/fields/RelatedModelField.tsx:411 +#: src/components/forms/fields/RelatedModelField.tsx:482 msgid "No results found" msgstr "找不到結果" @@ -1875,10 +1912,6 @@ msgstr "無可用條目" msgid "Add new row" msgstr "" -#: src/components/forms/fields/TextField.tsx:82 -msgid "Accept suggested value" -msgstr "" - #: src/components/images/DetailsImage.tsx:252 #~ msgid "Select image" #~ msgstr "Select image" @@ -2036,7 +2069,7 @@ msgstr "數據已成功導入" #: src/components/importer/ImporterDrawer.tsx:109 #: src/components/modals/AboutInvenTreeModal.tsx:205 #: src/components/modals/ServerInfoModal.tsx:134 -#: src/components/wizards/ImportPartWizard.tsx:772 +#: src/components/wizards/ImportPartWizard.tsx:773 #: src/forms/BomForms.tsx:132 #: src/pages/Index/Settings/AccountSettings/MFASettings.tsx:685 msgid "Close" @@ -2199,7 +2232,7 @@ msgid "Change" msgstr "" #: src/components/items/RoleTable.tsx:150 -#: src/forms/StockForms.tsx:927 +#: src/forms/StockForms.tsx:941 #: src/tables/stock/StockItemTestResultTable.tsx:367 msgid "Add" msgstr "添加" @@ -2222,11 +2255,11 @@ msgstr "" #: src/components/items/TransferList.tsx:161 #: src/components/render/Stock.tsx:102 -#: src/pages/part/PartDetail.tsx:994 +#: src/pages/part/PartDetail.tsx:1009 #: src/pages/stock/StockDetail.tsx:265 #: src/pages/stock/StockDetail.tsx:942 -#: src/tables/build/BuildAllocatedStockTable.tsx:135 -#: src/tables/build/BuildLineTable.tsx:192 +#: src/tables/build/BuildAllocatedStockTable.tsx:132 +#: src/tables/build/BuildLineTable.tsx:193 #: src/tables/part/PartTable.tsx:137 #: src/tables/stock/StockItemTable.tsx:182 #: src/tables/stock/StockItemTable.tsx:343 @@ -2373,7 +2406,7 @@ msgid "Database" msgstr "數據庫" #: src/components/modals/ServerInfoModal.tsx:49 -#: src/components/nav/Alerts.tsx:118 +#: src/components/nav/Alerts.tsx:120 msgid "Debug Mode" msgstr "調試模式" @@ -2414,7 +2447,7 @@ msgid "Issues detected" msgstr "檢測到問題" #: src/components/modals/ServerInfoModal.tsx:102 -#: src/components/nav/Alerts.tsx:125 +#: src/components/nav/Alerts.tsx:127 msgid "Background Worker" msgstr "後台工作者" @@ -2436,7 +2469,7 @@ msgstr "電子郵件設置" #~ msgstr "Email settings not configured" #: src/components/modals/ServerInfoModal.tsx:120 -#: src/components/nav/Alerts.tsx:141 +#: src/components/nav/Alerts.tsx:143 msgid "Email settings not configured." msgstr "" @@ -2444,43 +2477,47 @@ msgstr "" msgid "Alerts" msgstr "" -#: src/components/nav/Alerts.tsx:120 +#: src/components/nav/Alerts.tsx:97 +msgid "No issues detected" +msgstr "" + +#: src/components/nav/Alerts.tsx:122 msgid "The server is running in debug mode." msgstr "" -#: src/components/nav/Alerts.tsx:127 +#: src/components/nav/Alerts.tsx:129 msgid "The background worker process is not running." msgstr "" -#: src/components/nav/Alerts.tsx:132 +#: src/components/nav/Alerts.tsx:134 msgid "Server Restart" msgstr "" -#: src/components/nav/Alerts.tsx:134 +#: src/components/nav/Alerts.tsx:136 msgid "The server requires a restart to apply changes." msgstr "" -#: src/components/nav/Alerts.tsx:139 +#: src/components/nav/Alerts.tsx:141 msgid "Email settings" msgstr "" -#: src/components/nav/Alerts.tsx:146 +#: src/components/nav/Alerts.tsx:148 msgid "Database Migrations" msgstr "" -#: src/components/nav/Alerts.tsx:148 +#: src/components/nav/Alerts.tsx:150 msgid "There are pending database migrations." msgstr "" -#: src/components/nav/Alerts.tsx:163 +#: src/components/nav/Alerts.tsx:165 msgid "Learn more about {code}" msgstr "" #: src/components/nav/Header.tsx:188 #: src/components/nav/NavigationDrawer.tsx:134 #: src/components/nav/NotificationDrawer.tsx:181 -#: src/pages/Index/Settings/SystemSettings.tsx:121 -#: src/pages/Index/Settings/UserSettings.tsx:106 +#: src/pages/Index/Settings/SystemSettings.tsx:122 +#: src/pages/Index/Settings/UserSettings.tsx:107 #: src/pages/Notifications.tsx:45 #: src/pages/Notifications.tsx:130 msgid "Notifications" @@ -2511,8 +2548,8 @@ msgstr "設置" #: src/components/nav/NavigationDrawer.tsx:140 #: src/components/nav/SettingsHeader.tsx:40 #: src/defaults/actions.tsx:92 -#: src/pages/Index/Settings/UserSettings.tsx:141 -#: src/pages/Index/Settings/UserSettings.tsx:145 +#: src/pages/Index/Settings/UserSettings.tsx:142 +#: src/pages/Index/Settings/UserSettings.tsx:146 msgid "User Settings" msgstr "" @@ -2529,8 +2566,8 @@ msgstr "" #: src/components/nav/NavigationDrawer.tsx:146 #: src/components/nav/SettingsHeader.tsx:41 #: src/defaults/actions.tsx:144 -#: src/pages/Index/Settings/SystemSettings.tsx:348 -#: src/pages/Index/Settings/SystemSettings.tsx:353 +#: src/pages/Index/Settings/SystemSettings.tsx:354 +#: src/pages/Index/Settings/SystemSettings.tsx:359 msgid "System Settings" msgstr "系統設置" @@ -2577,11 +2614,11 @@ msgstr "登出" #: src/components/nav/NavigationDrawer.tsx:77 #: src/components/render/Part.tsx:36 -#: src/components/wizards/ImportPartWizard.tsx:807 +#: src/components/wizards/ImportPartWizard.tsx:808 #: src/defaults/links.tsx:42 #: src/forms/StockForms.tsx:794 -#: src/pages/Index/Settings/SystemSettings.tsx:224 -#: src/pages/part/PartDetail.tsx:804 +#: src/pages/Index/Settings/SystemSettings.tsx:230 +#: src/pages/part/PartDetail.tsx:793 #: src/pages/stock/LocationDetail.tsx:390 #: src/pages/stock/LocationDetail.tsx:420 #: src/pages/stock/StockDetail.tsx:642 @@ -2591,29 +2628,29 @@ msgstr "庫存" #: src/components/nav/NavigationDrawer.tsx:84 #: src/defaults/links.tsx:48 -#: src/pages/build/BuildDetail.tsx:748 -#: src/pages/build/BuildIndex.tsx:102 +#: src/pages/build/BuildDetail.tsx:753 +#: src/pages/build/BuildIndex.tsx:101 msgid "Manufacturing" msgstr "" #: src/components/nav/NavigationDrawer.tsx:91 #: src/defaults/links.tsx:54 #: src/pages/company/ManufacturerDetail.tsx:9 -#: src/pages/company/ManufacturerPartDetail.tsx:276 +#: src/pages/company/ManufacturerPartDetail.tsx:267 #: src/pages/company/SupplierDetail.tsx:9 -#: src/pages/company/SupplierPartDetail.tsx:360 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:553 -#: src/pages/purchasing/PurchasingIndex.tsx:122 +#: src/pages/company/SupplierPartDetail.tsx:365 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:558 +#: src/pages/purchasing/PurchasingIndex.tsx:212 msgid "Purchasing" msgstr "採購中" #: src/components/nav/NavigationDrawer.tsx:98 #: src/defaults/links.tsx:60 #: src/pages/company/CustomerDetail.tsx:9 -#: src/pages/sales/ReturnOrderDetail.tsx:554 -#: src/pages/sales/SalesIndex.tsx:153 -#: src/pages/sales/SalesOrderDetail.tsx:619 -#: src/pages/sales/SalesOrderShipmentDetail.tsx:480 +#: src/pages/sales/ReturnOrderDetail.tsx:559 +#: src/pages/sales/SalesIndex.tsx:168 +#: src/pages/sales/SalesOrderDetail.tsx:624 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:448 msgid "Sales" msgstr "銷售" @@ -2667,21 +2704,21 @@ msgid "Remove search group" msgstr "" #: src/components/nav/SearchDrawer.tsx:288 -#: src/pages/company/ManufacturerPartDetail.tsx:192 -#: src/pages/part/PartDetail.tsx:862 +#: src/pages/company/ManufacturerPartDetail.tsx:179 +#: src/pages/part/PartDetail.tsx:851 #: src/pages/part/PartSupplierDetail.tsx:15 -#: src/pages/purchasing/PurchasingIndex.tsx:81 +#: src/pages/purchasing/PurchasingIndex.tsx:100 msgid "Suppliers" msgstr "供應商" #: src/components/nav/SearchDrawer.tsx:298 #: src/pages/part/PartSupplierDetail.tsx:23 -#: src/pages/purchasing/PurchasingIndex.tsx:98 +#: src/pages/purchasing/PurchasingIndex.tsx:149 msgid "Manufacturers" msgstr "製造商" #: src/components/nav/SearchDrawer.tsx:308 -#: src/pages/sales/SalesIndex.tsx:138 +#: src/pages/sales/SalesIndex.tsx:133 msgid "Customers" msgstr "客户" @@ -2772,21 +2809,21 @@ msgstr "" #: src/components/plugins/PluginDrawer.tsx:73 #: src/forms/selectionListFields.tsx:102 -#: src/pages/build/BuildDetail.tsx:250 -#: src/pages/company/CompanyDetail.tsx:93 -#: src/pages/company/ManufacturerPartDetail.tsx:93 -#: src/pages/company/ManufacturerPartDetail.tsx:120 -#: src/pages/company/SupplierPartDetail.tsx:145 -#: src/pages/part/CategoryDetail.tsx:108 +#: src/pages/build/BuildDetail.tsx:251 +#: src/pages/company/CompanyDetail.tsx:94 +#: src/pages/company/ManufacturerPartDetail.tsx:92 +#: src/pages/company/ManufacturerPartDetail.tsx:119 +#: src/pages/company/SupplierPartDetail.tsx:146 +#: src/pages/part/CategoryDetail.tsx:111 #: src/pages/part/PartDetail.tsx:460 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:162 -#: src/pages/sales/ReturnOrderDetail.tsx:129 -#: src/pages/sales/SalesOrderDetail.tsx:119 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:163 +#: src/pages/sales/ReturnOrderDetail.tsx:130 +#: src/pages/sales/SalesOrderDetail.tsx:120 #: src/pages/stock/LocationDetail.tsx:102 #: src/tables/ColumnRenderers.tsx:278 -#: src/tables/build/BuildAllocatedStockTable.tsx:91 -#: src/tables/machine/MachineTypeTable.tsx:161 -#: src/tables/machine/MachineTypeTable.tsx:257 +#: src/tables/build/BuildAllocatedStockTable.tsx:88 +#: src/tables/machine/MachineTypeTable.tsx:159 +#: src/tables/machine/MachineTypeTable.tsx:255 #: src/tables/plugin/PluginListTable.tsx:110 msgid "Description" msgstr "描述" @@ -2814,7 +2851,7 @@ msgstr "日期" #: src/tables/company/CompanyTable.tsx:91 #: src/tables/machine/MachineListTable.tsx:384 #: src/tables/machine/MachineListTable.tsx:799 -#: src/tables/part/ParametricPartTable.tsx:354 +#: src/tables/part/ParametricPartTable.tsx:19 #: src/tables/part/PartTable.tsx:197 #: src/tables/part/PartVariantTable.tsx:15 #: src/tables/plugin/PluginListTable.tsx:96 @@ -2836,8 +2873,8 @@ msgid "Installation Path" msgstr "安裝路徑" #: src/components/plugins/PluginDrawer.tsx:116 -#: src/tables/machine/MachineTypeTable.tsx:184 -#: src/tables/machine/MachineTypeTable.tsx:293 +#: src/tables/machine/MachineTypeTable.tsx:182 +#: src/tables/machine/MachineTypeTable.tsx:291 #: src/tables/plugin/PluginListTable.tsx:101 #: src/tables/plugin/PluginListTable.tsx:417 msgid "Builtin" @@ -2849,8 +2886,8 @@ msgstr "軟件包" #: src/components/plugins/PluginDrawer.tsx:133 #: src/pages/Index/Settings/AdminCenter/PluginManagementPanel.tsx:55 -#: src/pages/Index/Settings/SystemSettings.tsx:331 -#: src/pages/Index/Settings/UserSettings.tsx:128 +#: src/pages/Index/Settings/SystemSettings.tsx:337 +#: src/pages/Index/Settings/UserSettings.tsx:129 msgid "Plugin Settings" msgstr "插件設置" @@ -2911,7 +2948,7 @@ msgstr "" #~ msgid "Unknown model: {model}" #~ msgstr "Unknown model: {model}" -#: src/components/render/Instance.tsx:249 +#: src/components/render/Instance.tsx:247 msgid "Unknown model: {model_name}" msgstr "" @@ -2939,10 +2976,10 @@ msgstr "配送" #: src/components/render/Part.tsx:28 #: src/components/render/Plugin.tsx:17 #: src/components/render/User.tsx:37 -#: src/pages/company/CompanyDetail.tsx:323 -#: src/pages/company/SupplierPartDetail.tsx:373 +#: src/pages/company/CompanyDetail.tsx:328 +#: src/pages/company/SupplierPartDetail.tsx:378 #: src/pages/core/UserDetail.tsx:211 -#: src/pages/part/PartDetail.tsx:1027 +#: src/pages/part/PartDetail.tsx:1048 #: src/tables/ColumnRenderers.tsx:410 msgid "Inactive" msgstr "未激活" @@ -2962,11 +2999,11 @@ msgstr "無庫存" #: src/components/render/Part.tsx:47 #: src/components/wizards/OrderPartsWizard.tsx:135 -#: src/pages/company/SupplierPartDetail.tsx:197 -#: src/pages/company/SupplierPartDetail.tsx:394 -#: src/pages/part/PartDetail.tsx:1015 +#: src/pages/company/SupplierPartDetail.tsx:198 +#: src/pages/company/SupplierPartDetail.tsx:399 +#: src/pages/part/PartDetail.tsx:1030 #: src/tables/bom/BomTable.tsx:444 -#: src/tables/build/BuildLineTable.tsx:222 +#: src/tables/build/BuildLineTable.tsx:223 #: src/tables/part/PartTable.tsx:108 msgid "On Order" msgstr "訂購中" @@ -2974,9 +3011,9 @@ msgstr "訂購中" #: src/components/render/Part.tsx:55 #: src/components/wizards/OrderPartsWizard.tsx:141 #: src/pages/part/PartDetail.tsx:587 -#: src/pages/part/PartDetail.tsx:1021 +#: src/pages/part/PartDetail.tsx:1036 #: src/pages/stock/StockDetail.tsx:925 -#: src/tables/part/PartTestResultTable.tsx:297 +#: src/tables/part/PartTestResultTable.tsx:305 #: src/tables/stock/StockItemTable.tsx:359 msgid "In Production" msgstr "生產中" @@ -2987,7 +3024,7 @@ msgid "Details" msgstr "詳情" #: src/components/render/Part.tsx:112 -#: src/components/wizards/ImportPartWizard.tsx:806 +#: src/components/wizards/ImportPartWizard.tsx:807 #: src/pages/part/PartDetail.tsx:487 #: src/tables/ColumnRenderers.tsx:233 #: src/tables/ColumnRenderers.tsx:242 @@ -3000,16 +3037,16 @@ msgstr "類別" #: src/components/render/Stock.tsx:114 #: src/components/render/Stock.tsx:132 #: src/forms/BuildForms.tsx:795 -#: src/forms/PurchaseOrderForms.tsx:595 +#: src/forms/PurchaseOrderForms.tsx:647 #: src/forms/StockForms.tsx:792 #: src/forms/StockForms.tsx:839 -#: src/forms/StockForms.tsx:885 -#: src/forms/StockForms.tsx:924 -#: src/forms/StockForms.tsx:960 -#: src/forms/StockForms.tsx:1003 -#: src/forms/StockForms.tsx:1047 -#: src/forms/StockForms.tsx:1095 -#: src/forms/StockForms.tsx:1139 +#: src/forms/StockForms.tsx:892 +#: src/forms/StockForms.tsx:938 +#: src/forms/StockForms.tsx:976 +#: src/forms/StockForms.tsx:1019 +#: src/forms/StockForms.tsx:1063 +#: src/forms/StockForms.tsx:1111 +#: src/forms/StockForms.tsx:1155 #: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:88 #: src/pages/core/UserDetail.tsx:158 #: src/pages/stock/StockDetail.tsx:298 @@ -3023,7 +3060,7 @@ msgstr "位置" #: src/components/render/Stock.tsx:99 #: src/pages/stock/StockDetail.tsx:198 #: src/pages/stock/StockDetail.tsx:930 -#: src/tables/build/BuildAllocatedStockTable.tsx:121 +#: src/tables/build/BuildAllocatedStockTable.tsx:118 #: src/tables/build/BuildOutputTable.tsx:107 #: src/tables/sales/SalesOrderAllocationTable.tsx:142 msgid "Serial Number" @@ -3034,9 +3071,9 @@ msgstr "序列號" #: src/forms/BuildForms.tsx:240 #: src/forms/BuildForms.tsx:634 #: src/forms/BuildForms.tsx:797 -#: src/forms/PurchaseOrderForms.tsx:801 +#: src/forms/PurchaseOrderForms.tsx:853 #: src/forms/ReturnOrderForms.tsx:243 -#: src/forms/SalesOrderForms.tsx:308 +#: src/forms/SalesOrderForms.tsx:387 #: src/forms/StockForms.tsx:841 #: src/pages/part/PartStockHistoryDetail.tsx:56 #: src/pages/part/PartStockHistoryDetail.tsx:210 @@ -3046,9 +3083,9 @@ msgstr "序列號" #: src/pages/part/pricing/PriceBreakPanel.tsx:172 #: src/pages/stock/StockDetail.tsx:258 #: src/pages/stock/StockDetail.tsx:936 -#: src/tables/build/BuildLineTable.tsx:86 +#: src/tables/build/BuildLineTable.tsx:83 #: src/tables/part/PartPurchaseOrdersTable.tsx:94 -#: src/tables/part/PartTestResultTable.tsx:269 +#: src/tables/part/PartTestResultTable.tsx:277 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:175 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:206 #: src/tables/purchasing/SupplierPriceBreakTable.tsx:69 @@ -3063,14 +3100,14 @@ msgstr "數量" #: src/forms/BuildForms.tsx:474 #: src/forms/StockForms.tsx:793 #: src/forms/StockForms.tsx:840 -#: src/forms/StockForms.tsx:886 -#: src/forms/StockForms.tsx:925 -#: src/forms/StockForms.tsx:961 -#: src/forms/StockForms.tsx:1004 -#: src/forms/StockForms.tsx:1048 -#: src/forms/StockForms.tsx:1096 -#: src/forms/StockForms.tsx:1140 -#: src/tables/build/BuildLineTable.tsx:96 +#: src/forms/StockForms.tsx:893 +#: src/forms/StockForms.tsx:939 +#: src/forms/StockForms.tsx:977 +#: src/forms/StockForms.tsx:1020 +#: src/forms/StockForms.tsx:1064 +#: src/forms/StockForms.tsx:1112 +#: src/forms/StockForms.tsx:1156 +#: src/tables/build/BuildLineTable.tsx:93 msgid "Batch" msgstr "批次" @@ -3306,10 +3343,6 @@ msgstr "未指定設置" #~ msgid "Part category updated" #~ msgstr "Part category updated" -#: src/components/tables/part/PartParameterTable.tsx:41 -#~ msgid "Parameter" -#~ msgstr "Parameter" - #: src/components/tables/part/PartParameterTable.tsx:114 #~ msgid "Part parameter updated" #~ msgstr "Part parameter updated" @@ -3571,15 +3604,16 @@ msgid "Already Imported" msgstr "" #: src/components/wizards/ImportPartWizard.tsx:205 -#: src/pages/company/CompanyDetail.tsx:136 +#: src/pages/company/CompanyDetail.tsx:137 #: src/pages/company/SupplierDetail.tsx:8 -#: src/pages/company/SupplierPartDetail.tsx:130 -#: src/pages/company/SupplierPartDetail.tsx:235 -#: src/pages/company/SupplierPartDetail.tsx:364 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:156 +#: src/pages/company/SupplierPartDetail.tsx:131 +#: src/pages/company/SupplierPartDetail.tsx:236 +#: src/pages/company/SupplierPartDetail.tsx:369 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:157 #: src/tables/Filter.tsx:360 #: src/tables/company/CompanyTable.tsx:96 #: src/tables/part/PartPurchaseOrdersTable.tsx:43 +#: src/tables/purchasing/PurchaseOrderParametricTable.tsx:34 #: src/tables/purchasing/PurchaseOrderTable.tsx:109 #: src/tables/purchasing/SupplierPriceBreakTable.tsx:40 msgid "Supplier" @@ -3648,7 +3682,7 @@ msgid "Next" msgstr "" #: src/components/wizards/ImportPartWizard.tsx:540 -#: src/pages/part/PartDetail.tsx:1046 +#: src/pages/part/PartDetail.tsx:1067 #: src/tables/part/PartTable.tsx:408 msgid "Edit Part" msgstr "編輯零件" @@ -3669,28 +3703,28 @@ msgstr "" msgid "Import" msgstr "" -#: src/components/wizards/ImportPartWizard.tsx:691 +#: src/components/wizards/ImportPartWizard.tsx:692 msgid "Parameters created successfully!" msgstr "" -#: src/components/wizards/ImportPartWizard.tsx:719 +#: src/components/wizards/ImportPartWizard.tsx:720 msgid "Failed to create parameters, please fix the errors and try again" msgstr "" #. placeholder {0}: supplierPart?.supplier -#: src/components/wizards/ImportPartWizard.tsx:739 +#: src/components/wizards/ImportPartWizard.tsx:740 msgid "Part imported successfully from supplier {0}." msgstr "" -#: src/components/wizards/ImportPartWizard.tsx:752 +#: src/components/wizards/ImportPartWizard.tsx:753 msgid "Open Part" msgstr "" -#: src/components/wizards/ImportPartWizard.tsx:759 +#: src/components/wizards/ImportPartWizard.tsx:760 msgid "Open Supplier Part" msgstr "" -#: src/components/wizards/ImportPartWizard.tsx:766 +#: src/components/wizards/ImportPartWizard.tsx:767 msgid "Open Manufacturer Part" msgstr "" @@ -3699,25 +3733,19 @@ msgstr "" #~ msgid "Import Part" #~ msgstr "Import Part" -#: src/components/wizards/ImportPartWizard.tsx:802 +#: src/components/wizards/ImportPartWizard.tsx:803 msgid "Import Supplier Part" msgstr "" -#: src/components/wizards/ImportPartWizard.tsx:804 +#: src/components/wizards/ImportPartWizard.tsx:805 msgid "Search Supplier Part" msgstr "" -#: src/components/wizards/ImportPartWizard.tsx:806 -#: src/pages/company/ManufacturerPartDetail.tsx:166 -#: src/pages/part/PartDetail.tsx:793 -msgid "Parameters" -msgstr "參數" - -#: src/components/wizards/ImportPartWizard.tsx:806 +#: src/components/wizards/ImportPartWizard.tsx:807 msgid "Confirm import" msgstr "" -#: src/components/wizards/ImportPartWizard.tsx:808 +#: src/components/wizards/ImportPartWizard.tsx:809 msgid "Done" msgstr "" @@ -3738,24 +3766,24 @@ msgid "Sales Requirements" msgstr "" #: src/components/wizards/OrderPartsWizard.tsx:129 -#: src/forms/StockForms.tsx:887 -#: src/forms/StockForms.tsx:926 -#: src/forms/StockForms.tsx:962 -#: src/forms/StockForms.tsx:1005 -#: src/forms/StockForms.tsx:1049 -#: src/forms/StockForms.tsx:1097 -#: src/forms/StockForms.tsx:1141 -#: src/pages/company/SupplierPartDetail.tsx:190 -#: src/pages/company/SupplierPartDetail.tsx:378 +#: src/forms/StockForms.tsx:894 +#: src/forms/StockForms.tsx:940 +#: src/forms/StockForms.tsx:978 +#: src/forms/StockForms.tsx:1021 +#: src/forms/StockForms.tsx:1065 +#: src/forms/StockForms.tsx:1113 +#: src/forms/StockForms.tsx:1157 +#: src/pages/company/SupplierPartDetail.tsx:191 +#: src/pages/company/SupplierPartDetail.tsx:383 #: src/pages/part/PartDetail.tsx:534 -#: src/pages/part/PartDetail.tsx:984 +#: src/pages/part/PartDetail.tsx:999 #: src/tables/Filter.tsx:92 #: src/tables/purchasing/SupplierPartTable.tsx:230 msgid "In Stock" msgstr "入庫" #: src/components/wizards/OrderPartsWizard.tsx:146 -#: src/tables/build/BuildLineTable.tsx:404 +#: src/tables/build/BuildLineTable.tsx:405 msgid "Required Quantity" msgstr "" @@ -3847,7 +3875,7 @@ msgid "Please correct the errors in the selected parts" msgstr "" #: src/components/wizards/OrderPartsWizard.tsx:587 -#: src/tables/build/BuildLineTable.tsx:815 +#: src/tables/build/BuildLineTable.tsx:822 #: src/tables/part/PartTable.tsx:522 #: src/tables/sales/SalesOrderLineItemTable.tsx:370 msgid "Order Parts" @@ -4349,9 +4377,9 @@ msgstr "" #: src/forms/BuildForms.tsx:333 #: src/forms/BuildForms.tsx:408 #: src/forms/BuildForms.tsx:685 -#: src/tables/build/BuildAllocatedStockTable.tsx:150 +#: src/tables/build/BuildAllocatedStockTable.tsx:147 #: src/tables/build/BuildOutputTable.tsx:582 -#: src/tables/part/PartTestResultTable.tsx:272 +#: src/tables/part/PartTestResultTable.tsx:280 msgid "Build Output" msgstr "生產產出" @@ -4362,22 +4390,22 @@ msgstr "" #: src/forms/BuildForms.tsx:336 #: src/forms/BuildForms.tsx:411 #: src/forms/BuildForms.tsx:475 -#: src/forms/PurchaseOrderForms.tsx:717 +#: src/forms/PurchaseOrderForms.tsx:769 #: src/forms/ReturnOrderForms.tsx:197 #: src/forms/ReturnOrderForms.tsx:244 #: src/forms/StockForms.tsx:712 #: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:87 -#: src/pages/build/BuildDetail.tsx:222 +#: src/pages/build/BuildDetail.tsx:223 #: src/pages/core/UserDetail.tsx:151 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:168 -#: src/pages/sales/ReturnOrderDetail.tsx:135 -#: src/pages/sales/SalesOrderDetail.tsx:125 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:169 +#: src/pages/sales/ReturnOrderDetail.tsx:136 +#: src/pages/sales/SalesOrderDetail.tsx:126 #: src/pages/stock/StockDetail.tsx:170 #: src/tables/Filter.tsx:274 #: src/tables/build/BuildOutputTable.tsx:404 #: src/tables/machine/MachineListTable.tsx:387 #: src/tables/part/PartPurchaseOrdersTable.tsx:38 -#: src/tables/part/PartTestResultTable.tsx:309 +#: src/tables/part/PartTestResultTable.tsx:317 #: src/tables/sales/ReturnOrderLineItemTable.tsx:138 #: src/tables/sales/ReturnOrderLineItemTable.tsx:176 #: src/tables/settings/CustomStateTable.tsx:79 @@ -4443,18 +4471,19 @@ msgid "Build outputs have been cancelled" msgstr "生產已完成" #: src/forms/BuildForms.tsx:631 -#: src/pages/build/BuildDetail.tsx:207 -#: src/pages/company/ManufacturerPartDetail.tsx:85 -#: src/pages/company/SupplierPartDetail.tsx:96 +#: src/pages/build/BuildDetail.tsx:208 +#: src/pages/company/ManufacturerPartDetail.tsx:84 +#: src/pages/company/SupplierPartDetail.tsx:97 #: src/pages/part/PartDetail.tsx:453 #: src/pages/stock/StockDetail.tsx:153 #: src/tables/bom/BomTable.tsx:134 #: src/tables/bom/UsedInTable.tsx:40 -#: src/tables/build/BuildAllocatedStockTable.tsx:108 -#: src/tables/build/BuildLineTable.tsx:336 +#: src/tables/build/BuildAllocatedStockTable.tsx:105 +#: src/tables/build/BuildLineTable.tsx:337 #: src/tables/build/BuildOrderTable.tsx:79 #: src/tables/part/PartSalesAllocationsTable.tsx:61 #: src/tables/part/RelatedPartTable.tsx:73 +#: src/tables/purchasing/ManufacturerPartParametricTable.tsx:21 #: src/tables/purchasing/ManufacturerPartTable.tsx:69 #: src/tables/purchasing/SupplierPartTable.tsx:70 #: src/tables/sales/SalesOrderAllocationTable.tsx:135 @@ -4466,47 +4495,47 @@ msgstr "內部零件編碼 IPN" #: src/forms/BuildForms.tsx:632 #: src/forms/BuildForms.tsx:796 #: src/forms/BuildForms.tsx:897 -#: src/forms/SalesOrderForms.tsx:306 -#: src/tables/build/BuildAllocatedStockTable.tsx:139 -#: src/tables/build/BuildLineTable.tsx:182 +#: src/forms/SalesOrderForms.tsx:385 +#: src/tables/build/BuildAllocatedStockTable.tsx:136 +#: src/tables/build/BuildLineTable.tsx:183 #: src/tables/sales/SalesOrderLineItemTable.tsx:342 #: src/tables/stock/StockItemTable.tsx:338 msgid "Allocated" msgstr "已分配" #: src/forms/BuildForms.tsx:667 -#: src/forms/SalesOrderForms.tsx:295 -#: src/pages/build/BuildDetail.tsx:108 -#: src/pages/build/BuildDetail.tsx:326 +#: src/forms/SalesOrderForms.tsx:374 +#: src/pages/build/BuildDetail.tsx:109 +#: src/pages/build/BuildDetail.tsx:327 msgid "Source Location" msgstr "來源地點" #: src/forms/BuildForms.tsx:668 -#: src/forms/SalesOrderForms.tsx:296 +#: src/forms/SalesOrderForms.tsx:375 msgid "Select the source location for the stock allocation" msgstr "選擇分配庫存的源位置" #: src/forms/BuildForms.tsx:700 -#: src/forms/SalesOrderForms.tsx:336 -#: src/tables/build/BuildLineTable.tsx:574 -#: src/tables/build/BuildLineTable.tsx:731 -#: src/tables/build/BuildLineTable.tsx:830 +#: src/forms/SalesOrderForms.tsx:415 +#: src/tables/build/BuildLineTable.tsx:575 +#: src/tables/build/BuildLineTable.tsx:738 +#: src/tables/build/BuildLineTable.tsx:837 #: src/tables/sales/SalesOrderLineItemTable.tsx:380 #: src/tables/sales/SalesOrderLineItemTable.tsx:406 msgid "Allocate Stock" msgstr "分配庫存" #: src/forms/BuildForms.tsx:703 -#: src/forms/SalesOrderForms.tsx:341 +#: src/forms/SalesOrderForms.tsx:420 msgid "Stock items allocated" msgstr "分配的庫存項目" #: src/forms/BuildForms.tsx:816 #: src/forms/BuildForms.tsx:917 -#: src/tables/build/BuildAllocatedStockTable.tsx:240 -#: src/tables/build/BuildAllocatedStockTable.tsx:272 -#: src/tables/build/BuildLineTable.tsx:741 -#: src/tables/build/BuildLineTable.tsx:864 +#: src/tables/build/BuildAllocatedStockTable.tsx:243 +#: src/tables/build/BuildAllocatedStockTable.tsx:279 +#: src/tables/build/BuildLineTable.tsx:748 +#: src/tables/build/BuildLineTable.tsx:871 msgid "Consume Stock" msgstr "" @@ -4521,21 +4550,21 @@ msgstr "" #~ msgstr "Stock items consumed" #: src/forms/BuildForms.tsx:853 -#: src/tables/build/BuildLineTable.tsx:514 +#: src/tables/build/BuildLineTable.tsx:515 #: src/tables/part/PartBuildAllocationsTable.tsx:101 msgid "Fully consumed" msgstr "" #: src/forms/BuildForms.tsx:898 -#: src/tables/build/BuildLineTable.tsx:187 +#: src/tables/build/BuildLineTable.tsx:188 #: src/tables/stock/StockItemTable.tsx:367 msgid "Consumed" msgstr "" -#: src/forms/CommonForms.tsx:88 -#: src/forms/PurchaseOrderForms.tsx:125 +#: src/forms/CommonForms.tsx:92 +#: src/forms/PurchaseOrderForms.tsx:176 #: src/forms/ReturnOrderForms.tsx:138 -#: src/forms/SalesOrderForms.tsx:164 +#: src/forms/SalesOrderForms.tsx:185 msgid "Select project code for this line item" msgstr "" @@ -4543,16 +4572,16 @@ msgstr "" #~ msgid "Company updated" #~ msgstr "Company updated" -#: src/forms/PartForms.tsx:85 -#: src/forms/PartForms.tsx:207 -#: src/pages/part/CategoryDetail.tsx:124 +#: src/forms/PartForms.tsx:99 +#: src/forms/PartForms.tsx:228 +#: src/pages/part/CategoryDetail.tsx:127 #: src/pages/part/PartDetail.tsx:668 #: src/tables/part/PartCategoryTable.tsx:94 #: src/tables/part/PartTable.tsx:325 msgid "Subscribed" msgstr "已訂閲" -#: src/forms/PartForms.tsx:86 +#: src/forms/PartForms.tsx:100 msgid "Subscribe to notifications for this part" msgstr "" @@ -4564,156 +4593,156 @@ msgstr "" #~ msgid "Part updated" #~ msgstr "Part updated" -#: src/forms/PartForms.tsx:193 +#: src/forms/PartForms.tsx:214 msgid "Parent part category" msgstr "上級零件類別" -#: src/forms/PartForms.tsx:208 +#: src/forms/PartForms.tsx:229 msgid "Subscribe to notifications for this category" msgstr "" -#: src/forms/PurchaseOrderForms.tsx:388 -msgid "Assign Batch Code and Serial Numbers" -msgstr "" - -#: src/forms/PurchaseOrderForms.tsx:390 -msgid "Assign Batch Code" -msgstr "" - -#: src/forms/PurchaseOrderForms.tsx:410 -msgid "Choose Location" -msgstr "選擇位置" - -#: src/forms/PurchaseOrderForms.tsx:418 -msgid "Item Destination selected" -msgstr "已選擇項目目的地" - #: src/forms/PurchaseOrderForms.tsx:421 #~ msgid "Assign Batch Code{0}" #~ msgstr "Assign Batch Code{0}" -#: src/forms/PurchaseOrderForms.tsx:428 -msgid "Part category default location selected" -msgstr "已選擇零件類別默認位置" +#: src/forms/PurchaseOrderForms.tsx:440 +msgid "Assign Batch Code and Serial Numbers" +msgstr "" -#: src/forms/PurchaseOrderForms.tsx:438 -msgid "Received stock location selected" -msgstr "已選擇接收庫存位置" +#: src/forms/PurchaseOrderForms.tsx:442 +msgid "Assign Batch Code" +msgstr "" #: src/forms/PurchaseOrderForms.tsx:444 #: src/forms/StockForms.tsx:428 #~ msgid "Remove item from list" #~ msgstr "Remove item from list" -#: src/forms/PurchaseOrderForms.tsx:446 +#: src/forms/PurchaseOrderForms.tsx:462 +msgid "Choose Location" +msgstr "選擇位置" + +#: src/forms/PurchaseOrderForms.tsx:470 +msgid "Item Destination selected" +msgstr "已選擇項目目的地" + +#: src/forms/PurchaseOrderForms.tsx:480 +msgid "Part category default location selected" +msgstr "已選擇零件類別默認位置" + +#: src/forms/PurchaseOrderForms.tsx:490 +msgid "Received stock location selected" +msgstr "已選擇接收庫存位置" + +#: src/forms/PurchaseOrderForms.tsx:498 msgid "Default location selected" msgstr "已選擇默認位置" -#: src/forms/PurchaseOrderForms.tsx:507 +#: src/forms/PurchaseOrderForms.tsx:559 msgid "Set Location" msgstr "設置位置" -#: src/forms/PurchaseOrderForms.tsx:524 -msgid "Set Expiry Date" -msgstr "" - -#: src/forms/PurchaseOrderForms.tsx:532 -#: src/forms/StockForms.tsx:693 -msgid "Adjust Packaging" -msgstr "調整封包" - -#: src/forms/PurchaseOrderForms.tsx:540 -#: src/forms/StockForms.tsx:684 -#: src/hooks/UseStockAdjustActions.tsx:148 -msgid "Change Status" -msgstr "更改狀態" - -#: src/forms/PurchaseOrderForms.tsx:546 -msgid "Add Note" -msgstr "添加備註" - #: src/forms/PurchaseOrderForms.tsx:566 #~ msgid "Serial numbers" #~ msgstr "Serial numbers" +#: src/forms/PurchaseOrderForms.tsx:576 +msgid "Set Expiry Date" +msgstr "" + #: src/forms/PurchaseOrderForms.tsx:582 #~ msgid "Store at line item destination" #~ msgstr "Store at line item destination" -#: src/forms/PurchaseOrderForms.tsx:610 -msgid "Store at default location" -msgstr "存儲在默認位置" +#: src/forms/PurchaseOrderForms.tsx:584 +#: src/forms/StockForms.tsx:693 +msgid "Adjust Packaging" +msgstr "調整封包" -#: src/forms/PurchaseOrderForms.tsx:625 -msgid "Store at line item destination " -msgstr "" +#: src/forms/PurchaseOrderForms.tsx:592 +#: src/forms/StockForms.tsx:684 +#: src/hooks/UseStockAdjustActions.tsx:148 +msgid "Change Status" +msgstr "更改狀態" -#: src/forms/PurchaseOrderForms.tsx:637 -msgid "Store with already received stock" -msgstr "存儲已收到的庫存" +#: src/forms/PurchaseOrderForms.tsx:598 +msgid "Add Note" +msgstr "添加備註" #: src/forms/PurchaseOrderForms.tsx:658 #~ msgid "Receive line items" #~ msgstr "Receive line items" -#: src/forms/PurchaseOrderForms.tsx:661 -#: src/pages/build/BuildDetail.tsx:340 +#: src/forms/PurchaseOrderForms.tsx:662 +msgid "Store at default location" +msgstr "存儲在默認位置" + +#: src/forms/PurchaseOrderForms.tsx:677 +msgid "Store at line item destination " +msgstr "" + +#: src/forms/PurchaseOrderForms.tsx:689 +msgid "Store with already received stock" +msgstr "存儲已收到的庫存" + +#: src/forms/PurchaseOrderForms.tsx:713 +#: src/pages/build/BuildDetail.tsx:341 #: src/pages/stock/StockDetail.tsx:280 #: src/pages/stock/StockDetail.tsx:952 #: src/tables/Filter.tsx:83 -#: src/tables/build/BuildAllocatedStockTable.tsx:128 +#: src/tables/build/BuildAllocatedStockTable.tsx:125 #: src/tables/build/BuildOutputTable.tsx:112 -#: src/tables/part/PartTestResultTable.tsx:260 -#: src/tables/part/PartTestResultTable.tsx:281 +#: src/tables/part/PartTestResultTable.tsx:268 +#: src/tables/part/PartTestResultTable.tsx:289 #: src/tables/sales/SalesOrderAllocationTable.tsx:149 msgid "Batch Code" msgstr "批號" -#: src/forms/PurchaseOrderForms.tsx:662 +#: src/forms/PurchaseOrderForms.tsx:714 msgid "Enter batch code for received items" msgstr "" -#: src/forms/PurchaseOrderForms.tsx:675 +#: src/forms/PurchaseOrderForms.tsx:727 #: src/forms/StockForms.tsx:218 msgid "Serial Numbers" msgstr "序列號" -#: src/forms/PurchaseOrderForms.tsx:676 +#: src/forms/PurchaseOrderForms.tsx:728 msgid "Enter serial numbers for received items" msgstr "" -#: src/forms/PurchaseOrderForms.tsx:690 +#: src/forms/PurchaseOrderForms.tsx:742 #: src/pages/stock/StockDetail.tsx:382 #: src/tables/stock/StockItemTable.tsx:294 msgid "Expiry Date" msgstr "有效期至" -#: src/forms/PurchaseOrderForms.tsx:691 +#: src/forms/PurchaseOrderForms.tsx:743 msgid "Enter an expiry date for received items" msgstr "" -#: src/forms/PurchaseOrderForms.tsx:703 +#: src/forms/PurchaseOrderForms.tsx:755 #: src/forms/StockForms.tsx:728 -#: src/pages/company/SupplierPartDetail.tsx:172 -#: src/pages/company/SupplierPartDetail.tsx:236 +#: src/pages/company/SupplierPartDetail.tsx:173 +#: src/pages/company/SupplierPartDetail.tsx:237 #: src/pages/stock/StockDetail.tsx:419 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:227 msgid "Packaging" msgstr "包裝" -#: src/forms/PurchaseOrderForms.tsx:727 -#: src/pages/company/SupplierPartDetail.tsx:120 +#: src/forms/PurchaseOrderForms.tsx:779 +#: src/pages/company/SupplierPartDetail.tsx:121 #: src/tables/ColumnRenderers.tsx:332 msgid "Note" msgstr "備註" -#: src/forms/PurchaseOrderForms.tsx:799 -#: src/pages/company/SupplierPartDetail.tsx:138 +#: src/forms/PurchaseOrderForms.tsx:851 +#: src/pages/company/SupplierPartDetail.tsx:139 #: src/tables/purchasing/SupplierPriceBreakTable.tsx:49 msgid "SKU" msgstr "庫存單位 (SKU)" -#: src/forms/PurchaseOrderForms.tsx:800 +#: src/forms/PurchaseOrderForms.tsx:852 #: src/tables/part/PartPurchaseOrdersTable.tsx:127 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:213 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:283 @@ -4721,11 +4750,11 @@ msgstr "庫存單位 (SKU)" msgid "Received" msgstr "已接收" -#: src/forms/PurchaseOrderForms.tsx:817 +#: src/forms/PurchaseOrderForms.tsx:869 msgid "Receive Line Items" msgstr "接收行項目" -#: src/forms/PurchaseOrderForms.tsx:823 +#: src/forms/PurchaseOrderForms.tsx:875 msgid "Items received" msgstr "" @@ -4737,7 +4766,35 @@ msgstr "接收物品" msgid "Item received into stock" msgstr "已收到庫存物品" -#: src/forms/SalesOrderForms.tsx:401 +#: src/forms/SalesOrderForms.tsx:208 +#: src/forms/SalesOrderForms.tsx:210 +#: src/tables/sales/SalesOrderShipmentTable.tsx:215 +msgid "Check Shipment" +msgstr "" + +#: src/forms/SalesOrderForms.tsx:211 +msgid "Marking the shipment as checked indicates that you have verified that all items included in this shipment are correct" +msgstr "" + +#: src/forms/SalesOrderForms.tsx:221 +msgid "Shipment marked as checked" +msgstr "" + +#: src/forms/SalesOrderForms.tsx:236 +#: src/forms/SalesOrderForms.tsx:238 +#: src/tables/sales/SalesOrderShipmentTable.tsx:228 +msgid "Uncheck Shipment" +msgstr "" + +#: src/forms/SalesOrderForms.tsx:239 +msgid "Marking the shipment as unchecked indicates that the shipment requires further verification" +msgstr "" + +#: src/forms/SalesOrderForms.tsx:249 +msgid "Shipment marked as unchecked" +msgstr "" + +#: src/forms/SalesOrderForms.tsx:480 msgid "Leave blank to use the order address" msgstr "" @@ -4792,150 +4849,150 @@ msgstr "移動" msgid "Return" msgstr "退貨" -#: src/forms/StockForms.tsx:963 +#: src/forms/StockForms.tsx:979 #: src/pages/Index/Scan.tsx:182 msgid "Count" msgstr "總計" -#: src/forms/StockForms.tsx:1246 +#: src/forms/StockForms.tsx:1262 #: src/hooks/UseStockAdjustActions.tsx:108 msgid "Add Stock" msgstr "添加庫存" -#: src/forms/StockForms.tsx:1247 +#: src/forms/StockForms.tsx:1263 msgid "Stock added" msgstr "" -#: src/forms/StockForms.tsx:1250 +#: src/forms/StockForms.tsx:1266 msgid "Increase the quantity of the selected stock items by a given amount." msgstr "" -#: src/forms/StockForms.tsx:1261 +#: src/forms/StockForms.tsx:1277 #: src/hooks/UseStockAdjustActions.tsx:118 msgid "Remove Stock" msgstr "移除庫存" -#: src/forms/StockForms.tsx:1262 +#: src/forms/StockForms.tsx:1278 msgid "Stock removed" msgstr "" -#: src/forms/StockForms.tsx:1265 +#: src/forms/StockForms.tsx:1281 msgid "Decrease the quantity of the selected stock items by a given amount." msgstr "" -#: src/forms/StockForms.tsx:1276 +#: src/forms/StockForms.tsx:1292 #: src/hooks/UseStockAdjustActions.tsx:128 msgid "Transfer Stock" msgstr "轉移庫存" -#: src/forms/StockForms.tsx:1277 +#: src/forms/StockForms.tsx:1293 msgid "Stock transferred" msgstr "" -#: src/forms/StockForms.tsx:1280 +#: src/forms/StockForms.tsx:1296 msgid "Transfer selected items to the specified location." msgstr "" -#: src/forms/StockForms.tsx:1291 +#: src/forms/StockForms.tsx:1307 #: src/hooks/UseStockAdjustActions.tsx:168 msgid "Return Stock" msgstr "" -#: src/forms/StockForms.tsx:1292 +#: src/forms/StockForms.tsx:1308 msgid "Stock returned" msgstr "" -#: src/forms/StockForms.tsx:1295 +#: src/forms/StockForms.tsx:1311 msgid "Return selected items into stock, to the specified location." msgstr "" -#: src/forms/StockForms.tsx:1306 +#: src/forms/StockForms.tsx:1322 #: src/hooks/UseStockAdjustActions.tsx:98 msgid "Count Stock" msgstr "庫存數量" -#: src/forms/StockForms.tsx:1307 +#: src/forms/StockForms.tsx:1323 msgid "Stock counted" msgstr "" -#: src/forms/StockForms.tsx:1310 +#: src/forms/StockForms.tsx:1326 msgid "Count the selected stock items, and adjust the quantity accordingly." msgstr "" -#: src/forms/StockForms.tsx:1321 +#: src/forms/StockForms.tsx:1337 msgid "Change Stock Status" msgstr "更改庫存狀態" -#: src/forms/StockForms.tsx:1322 +#: src/forms/StockForms.tsx:1338 msgid "Stock status changed" msgstr "" -#: src/forms/StockForms.tsx:1325 +#: src/forms/StockForms.tsx:1341 msgid "Change the status of the selected stock items." msgstr "" -#: src/forms/StockForms.tsx:1336 +#: src/forms/StockForms.tsx:1352 #: src/hooks/UseStockAdjustActions.tsx:138 msgid "Merge Stock" msgstr "合併庫存" -#: src/forms/StockForms.tsx:1337 +#: src/forms/StockForms.tsx:1353 msgid "Stock merged" msgstr "" -#: src/forms/StockForms.tsx:1339 +#: src/forms/StockForms.tsx:1355 msgid "Merge Stock Items" msgstr "" -#: src/forms/StockForms.tsx:1341 +#: src/forms/StockForms.tsx:1357 msgid "Merge operation cannot be reversed" msgstr "" -#: src/forms/StockForms.tsx:1342 +#: src/forms/StockForms.tsx:1358 msgid "Tracking information may be lost when merging items" msgstr "" -#: src/forms/StockForms.tsx:1343 +#: src/forms/StockForms.tsx:1359 msgid "Supplier information may be lost when merging items" msgstr "" -#: src/forms/StockForms.tsx:1361 +#: src/forms/StockForms.tsx:1377 msgid "Assign Stock to Customer" msgstr "" -#: src/forms/StockForms.tsx:1362 +#: src/forms/StockForms.tsx:1378 msgid "Stock assigned to customer" msgstr "" -#: src/forms/StockForms.tsx:1372 +#: src/forms/StockForms.tsx:1388 msgid "Delete Stock Items" msgstr "刪除庫存項" -#: src/forms/StockForms.tsx:1373 +#: src/forms/StockForms.tsx:1389 msgid "Stock deleted" msgstr "" -#: src/forms/StockForms.tsx:1376 +#: src/forms/StockForms.tsx:1392 msgid "This operation will permanently delete the selected stock items." msgstr "" -#: src/forms/StockForms.tsx:1385 +#: src/forms/StockForms.tsx:1401 msgid "Parent stock location" msgstr "上級庫存地點" -#: src/forms/StockForms.tsx:1512 +#: src/forms/StockForms.tsx:1528 msgid "Find Serial Number" msgstr "" -#: src/forms/StockForms.tsx:1523 +#: src/forms/StockForms.tsx:1539 msgid "No matching items" msgstr "" -#: src/forms/StockForms.tsx:1529 +#: src/forms/StockForms.tsx:1545 msgid "Multiple matching items" msgstr "" -#: src/forms/StockForms.tsx:1538 +#: src/forms/StockForms.tsx:1554 msgid "Invalid response from server" msgstr "" @@ -4953,7 +5010,6 @@ msgstr "" #: src/tables/FilterSelectDrawer.tsx:137 #: src/tables/FilterSelectDrawer.tsx:149 #: src/tables/part/PartTestResultTable.tsx:206 -#: src/tables/purchasing/ManufacturerPartParameterTable.tsx:42 #: src/tables/stock/StockItemTestResultTable.tsx:207 msgid "Value" msgstr "值" @@ -5244,7 +5300,7 @@ msgid "Delete selected stock items" msgstr "" #: src/hooks/UseStockAdjustActions.tsx:205 -#: src/pages/part/PartDetail.tsx:1137 +#: src/pages/part/PartDetail.tsx:1158 msgid "Stock Actions" msgstr "庫存操作" @@ -5932,6 +5988,9 @@ msgstr "" #: src/pages/Index/Settings/AccountSettings/MFASettings.tsx:310 #: src/pages/Index/Settings/AccountSettings/MFASettings.tsx:401 +#: src/tables/build/BuildAllocatedStockTable.tsx:181 +#: src/tables/build/BuildLineTable.tsx:668 +#: src/tables/sales/SalesOrderAllocationTable.tsx:220 msgid "Confirm Removal" msgstr "" @@ -6394,30 +6453,34 @@ msgid "Email Messages" msgstr "" #: src/pages/Index/Settings/AdminCenter/HomePanel.tsx:22 -msgid "Active Alerts" -msgstr "" +#~ msgid "Active Alerts" +#~ msgstr "Active Alerts" #: src/pages/Index/Settings/AdminCenter/HomePanel.tsx:27 -msgid "Inactive Alerts" +#~ msgid "Inactive Alerts" +#~ msgstr "Inactive Alerts" + +#: src/pages/Index/Settings/AdminCenter/HomePanel.tsx:36 +msgid "System Status" msgstr "" -#: src/pages/Index/Settings/AdminCenter/HomePanel.tsx:38 +#: src/pages/Index/Settings/AdminCenter/HomePanel.tsx:47 msgid "Admin Center Information" msgstr "" -#: src/pages/Index/Settings/AdminCenter/HomePanel.tsx:44 +#: src/pages/Index/Settings/AdminCenter/HomePanel.tsx:53 msgid "The home panel (and the whole Admin Center) is a new feature starting with the new UI and was previously (before 1.0) not available." msgstr "" -#: src/pages/Index/Settings/AdminCenter/HomePanel.tsx:51 +#: src/pages/Index/Settings/AdminCenter/HomePanel.tsx:60 msgid "The admin center provides a centralized location for all administration functionality and is meant to replace all interaction with the (django) backend admin interface." msgstr "" -#: src/pages/Index/Settings/AdminCenter/HomePanel.tsx:58 +#: src/pages/Index/Settings/AdminCenter/HomePanel.tsx:67 msgid "Please open feature requests (after checking the tracker) for any existing backend admin functionality you are missing in this UI. The backend admin interface should be used carefully and seldom." msgstr "" -#: src/pages/Index/Settings/AdminCenter/HomePanel.tsx:76 +#: src/pages/Index/Settings/AdminCenter/HomePanel.tsx:85 msgid "Quick Actions" msgstr "" @@ -6476,11 +6539,11 @@ msgstr "自定義單位" #: src/pages/Index/Settings/AdminCenter/Index.tsx:195 #: src/pages/part/CategoryDetail.tsx:313 -msgid "Part Parameters" -msgstr "零件參數" +#~ msgid "Part Parameters" +#~ msgstr "Part Parameters" #: src/pages/Index/Settings/AdminCenter/Index.tsx:202 -#: src/pages/part/CategoryDetail.tsx:306 +#: src/pages/part/CategoryDetail.tsx:329 msgid "Category Parameters" msgstr "類別參數" @@ -6494,7 +6557,7 @@ msgstr "位置類型" #: src/pages/Index/Settings/AdminCenter/Index.tsx:235 #: src/pages/Index/Settings/AdminCenter/MachineManagementPanel.tsx:52 -#: src/tables/machine/MachineTypeTable.tsx:325 +#: src/tables/machine/MachineTypeTable.tsx:323 msgid "Machines" msgstr "設備" @@ -6507,8 +6570,8 @@ msgid "Data Management" msgstr "" #: src/pages/Index/Settings/AdminCenter/Index.tsx:270 -#: src/pages/Index/Settings/SystemSettings.tsx:175 -#: src/pages/Index/Settings/UserSettings.tsx:118 +#: src/pages/Index/Settings/SystemSettings.tsx:176 +#: src/pages/Index/Settings/UserSettings.tsx:119 msgid "Reporting" msgstr "報告" @@ -6709,11 +6772,11 @@ msgstr "" msgid "The settings below are specific to each available plugin" msgstr "" -#: src/pages/Index/Settings/SystemSettings.tsx:77 +#: src/pages/Index/Settings/SystemSettings.tsx:78 msgid "Authentication" msgstr "" -#: src/pages/Index/Settings/SystemSettings.tsx:103 +#: src/pages/Index/Settings/SystemSettings.tsx:104 msgid "Barcodes" msgstr "條碼" @@ -6725,12 +6788,12 @@ msgstr "條碼" #~ msgid "This panel is a placeholder." #~ msgstr "This panel is a placeholder." -#: src/pages/Index/Settings/SystemSettings.tsx:127 -#: src/pages/Index/Settings/UserSettings.tsx:112 +#: src/pages/Index/Settings/SystemSettings.tsx:128 +#: src/pages/Index/Settings/UserSettings.tsx:113 msgid "The settings below are specific to each available notification method" msgstr "" -#: src/pages/Index/Settings/SystemSettings.tsx:133 +#: src/pages/Index/Settings/SystemSettings.tsx:134 msgid "Pricing" msgstr "定價" @@ -6738,7 +6801,7 @@ msgstr "定價" #~ msgid "Exchange Rates" #~ msgstr "Exchange Rates" -#: src/pages/Index/Settings/SystemSettings.tsx:169 +#: src/pages/Index/Settings/SystemSettings.tsx:170 msgid "Labels" msgstr "標籤" @@ -6790,15 +6853,15 @@ msgstr "標記為未讀" #~ msgid "Delete notifications" #~ msgstr "Delete notifications" -#: src/pages/build/BuildDetail.tsx:69 +#: src/pages/build/BuildDetail.tsx:70 msgid "No Required Items" msgstr "" -#: src/pages/build/BuildDetail.tsx:71 +#: src/pages/build/BuildDetail.tsx:72 msgid "This build order does not have any required items." msgstr "" -#: src/pages/build/BuildDetail.tsx:72 +#: src/pages/build/BuildDetail.tsx:73 msgid "The assembled part may not have a Bill of Materials (BOM) defined, or the BOM is empty." msgstr "" @@ -6826,7 +6889,7 @@ msgstr "" #~ msgid "Build Order updated" #~ msgstr "Build Order updated" -#: src/pages/build/BuildDetail.tsx:215 +#: src/pages/build/BuildDetail.tsx:216 #: src/pages/part/PartDetail.tsx:480 #: src/pages/stock/StockDetail.tsx:161 #: src/tables/bom/UsedInTable.tsx:44 @@ -6843,10 +6906,10 @@ msgstr "版本" #~ msgid "Duplicate build order" #~ msgstr "Duplicate build order" -#: src/pages/build/BuildDetail.tsx:228 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:174 -#: src/pages/sales/ReturnOrderDetail.tsx:141 -#: src/pages/sales/SalesOrderDetail.tsx:131 +#: src/pages/build/BuildDetail.tsx:229 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:175 +#: src/pages/sales/ReturnOrderDetail.tsx:142 +#: src/pages/sales/SalesOrderDetail.tsx:132 #: src/pages/stock/StockDetail.tsx:176 msgid "Custom Status" msgstr "" @@ -6855,9 +6918,9 @@ msgstr "" #~ msgid "Delete build order" #~ msgstr "Delete build order" -#: src/pages/build/BuildDetail.tsx:237 -#: src/pages/build/BuildDetail.tsx:723 -#: src/pages/build/BuildIndex.tsx:28 +#: src/pages/build/BuildDetail.tsx:238 +#: src/pages/build/BuildDetail.tsx:728 +#: src/pages/build/BuildIndex.tsx:34 #: src/pages/stock/LocationDetail.tsx:140 #: src/tables/build/BuildOrderTable.tsx:123 #: src/tables/build/BuildOrderTable.tsx:183 @@ -6865,57 +6928,57 @@ msgstr "" msgid "External" msgstr "外部" -#: src/pages/build/BuildDetail.tsx:244 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:141 -#: src/pages/sales/ReturnOrderDetail.tsx:108 -#: src/pages/sales/SalesOrderDetail.tsx:98 +#: src/pages/build/BuildDetail.tsx:245 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:142 +#: src/pages/sales/ReturnOrderDetail.tsx:109 +#: src/pages/sales/SalesOrderDetail.tsx:99 #: src/tables/ColumnRenderers.tsx:321 -#: src/tables/build/BuildAllocatedStockTable.tsx:115 -#: src/tables/build/BuildLineTable.tsx:352 +#: src/tables/build/BuildAllocatedStockTable.tsx:112 +#: src/tables/build/BuildLineTable.tsx:353 msgid "Reference" msgstr "參考" -#: src/pages/build/BuildDetail.tsx:258 +#: src/pages/build/BuildDetail.tsx:259 msgid "Parent Build" msgstr "上級生產" -#: src/pages/build/BuildDetail.tsx:269 +#: src/pages/build/BuildDetail.tsx:270 msgid "Build Quantity" msgstr "生產數量" -#: src/pages/build/BuildDetail.tsx:275 +#: src/pages/build/BuildDetail.tsx:276 #: src/pages/part/PartDetail.tsx:598 #: src/tables/bom/BomTable.tsx:365 #: src/tables/bom/BomTable.tsx:407 msgid "Can Build" msgstr "可以創建" -#: src/pages/build/BuildDetail.tsx:284 -#: src/pages/build/BuildDetail.tsx:474 +#: src/pages/build/BuildDetail.tsx:285 +#: src/pages/build/BuildDetail.tsx:475 msgid "Completed Outputs" msgstr "已出產" -#: src/pages/build/BuildDetail.tsx:301 +#: src/pages/build/BuildDetail.tsx:302 #: src/tables/Filter.tsx:381 #: src/tables/build/BuildOrderTable.tsx:143 msgid "Issued By" msgstr "發佈人" -#: src/pages/build/BuildDetail.tsx:309 +#: src/pages/build/BuildDetail.tsx:310 #: src/pages/part/PartDetail.tsx:691 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:261 -#: src/pages/sales/ReturnOrderDetail.tsx:239 -#: src/pages/sales/SalesOrderDetail.tsx:232 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:262 +#: src/pages/sales/ReturnOrderDetail.tsx:240 +#: src/pages/sales/SalesOrderDetail.tsx:233 #: src/tables/ColumnRenderers.tsx:464 #: src/tables/Filter.tsx:319 msgid "Responsible" msgstr "責任人" -#: src/pages/build/BuildDetail.tsx:327 +#: src/pages/build/BuildDetail.tsx:328 msgid "Any location" msgstr "任意地點" -#: src/pages/build/BuildDetail.tsx:334 +#: src/pages/build/BuildDetail.tsx:335 msgid "Destination Location" msgstr "目標地點" @@ -6924,24 +6987,24 @@ msgstr "目標地點" #~ msgid "Test Statistics" #~ msgstr "Test Statistics" -#: src/pages/build/BuildDetail.tsx:350 +#: src/pages/build/BuildDetail.tsx:351 #: src/tables/settings/ApiTokenTable.tsx:97 #: src/tables/settings/PendingTasksTable.tsx:41 msgid "Created" msgstr "已創建" -#: src/pages/build/BuildDetail.tsx:358 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:286 -#: src/pages/sales/ReturnOrderDetail.tsx:265 -#: src/pages/sales/SalesOrderDetail.tsx:257 +#: src/pages/build/BuildDetail.tsx:359 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:287 +#: src/pages/sales/ReturnOrderDetail.tsx:266 +#: src/pages/sales/SalesOrderDetail.tsx:258 #: src/tables/ColumnRenderers.tsx:486 msgid "Start Date" msgstr "" -#: src/pages/build/BuildDetail.tsx:366 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:294 -#: src/pages/sales/ReturnOrderDetail.tsx:273 -#: src/pages/sales/SalesOrderDetail.tsx:265 +#: src/pages/build/BuildDetail.tsx:367 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:295 +#: src/pages/sales/ReturnOrderDetail.tsx:274 +#: src/pages/sales/SalesOrderDetail.tsx:266 #: src/tables/ColumnRenderers.tsx:494 #: src/tables/part/PartPurchaseOrdersTable.tsx:101 #: src/tables/sales/ReturnOrderLineItemTable.tsx:154 @@ -6954,185 +7017,185 @@ msgstr "預計日期" #~ msgstr "Reporting Actions" #: src/pages/build/BuildDetail.tsx:374 +#~ msgid "Print build report" +#~ msgstr "Print build report" + +#: src/pages/build/BuildDetail.tsx:375 #: src/tables/build/BuildOrderTable.tsx:93 #: src/tables/sales/SalesOrderLineItemTable.tsx:347 msgid "Completed" msgstr "已完成" -#: src/pages/build/BuildDetail.tsx:374 -#~ msgid "Print build report" -#~ msgstr "Print build report" - -#: src/pages/build/BuildDetail.tsx:410 +#: src/pages/build/BuildDetail.tsx:411 msgid "Build Details" msgstr "生產詳情" -#: src/pages/build/BuildDetail.tsx:416 +#: src/pages/build/BuildDetail.tsx:417 msgid "Required Parts" msgstr "" -#: src/pages/build/BuildDetail.tsx:428 -#: src/pages/sales/SalesOrderDetail.tsx:407 -#: src/pages/sales/SalesOrderShipmentDetail.tsx:261 +#: src/pages/build/BuildDetail.tsx:429 +#: src/pages/sales/SalesOrderDetail.tsx:408 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:259 #: src/tables/part/PartSalesAllocationsTable.tsx:73 msgid "Allocated Stock" msgstr "已分配的庫存" -#: src/pages/build/BuildDetail.tsx:444 +#: src/pages/build/BuildDetail.tsx:445 msgid "Consumed Stock" msgstr "已消耗庫存" -#: src/pages/build/BuildDetail.tsx:461 +#: src/pages/build/BuildDetail.tsx:462 msgid "Incomplete Outputs" msgstr "未出產" -#: src/pages/build/BuildDetail.tsx:489 +#: src/pages/build/BuildDetail.tsx:490 msgid "External Orders" msgstr "" -#: src/pages/build/BuildDetail.tsx:503 +#: src/pages/build/BuildDetail.tsx:504 msgid "Child Build Orders" msgstr "子生產訂單" -#: src/pages/build/BuildDetail.tsx:513 -#: src/pages/part/PartDetail.tsx:937 +#: src/pages/build/BuildDetail.tsx:514 +#: src/pages/part/PartDetail.tsx:926 #: src/pages/stock/StockDetail.tsx:587 #: src/tables/build/BuildOutputTable.tsx:654 #: src/tables/stock/StockItemTestResultTable.tsx:173 msgid "Test Results" msgstr "測試結果" -#: src/pages/build/BuildDetail.tsx:550 +#: src/pages/build/BuildDetail.tsx:555 msgid "Edit Build Order" msgstr "編輯生產訂單" -#: src/pages/build/BuildDetail.tsx:572 +#: src/pages/build/BuildDetail.tsx:577 #: src/tables/build/BuildOrderTable.tsx:207 #: src/tables/build/BuildOrderTable.tsx:223 msgid "Add Build Order" msgstr "添加生產訂單" -#: src/pages/build/BuildDetail.tsx:582 +#: src/pages/build/BuildDetail.tsx:587 msgid "Cancel Build Order" msgstr "取消生產訂單" -#: src/pages/build/BuildDetail.tsx:584 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:416 -#: src/pages/sales/ReturnOrderDetail.tsx:427 -#: src/pages/sales/SalesOrderDetail.tsx:454 +#: src/pages/build/BuildDetail.tsx:589 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:421 +#: src/pages/sales/ReturnOrderDetail.tsx:432 +#: src/pages/sales/SalesOrderDetail.tsx:459 msgid "Order cancelled" msgstr "訂單已取消" -#: src/pages/build/BuildDetail.tsx:585 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:415 -#: src/pages/sales/ReturnOrderDetail.tsx:426 -#: src/pages/sales/SalesOrderDetail.tsx:453 +#: src/pages/build/BuildDetail.tsx:590 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:420 +#: src/pages/sales/ReturnOrderDetail.tsx:431 +#: src/pages/sales/SalesOrderDetail.tsx:458 msgid "Cancel this order" msgstr "取消此訂單" -#: src/pages/build/BuildDetail.tsx:594 +#: src/pages/build/BuildDetail.tsx:599 msgid "Hold Build Order" msgstr "掛起生產訂單" -#: src/pages/build/BuildDetail.tsx:596 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:423 -#: src/pages/sales/ReturnOrderDetail.tsx:434 -#: src/pages/sales/SalesOrderDetail.tsx:461 +#: src/pages/build/BuildDetail.tsx:601 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:428 +#: src/pages/sales/ReturnOrderDetail.tsx:439 +#: src/pages/sales/SalesOrderDetail.tsx:466 msgid "Place this order on hold" msgstr "將此訂單掛起" -#: src/pages/build/BuildDetail.tsx:597 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:424 -#: src/pages/sales/ReturnOrderDetail.tsx:435 -#: src/pages/sales/SalesOrderDetail.tsx:462 +#: src/pages/build/BuildDetail.tsx:602 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:429 +#: src/pages/sales/ReturnOrderDetail.tsx:440 +#: src/pages/sales/SalesOrderDetail.tsx:467 msgid "Order placed on hold" msgstr "掛起訂單" -#: src/pages/build/BuildDetail.tsx:602 +#: src/pages/build/BuildDetail.tsx:607 msgid "Issue Build Order" msgstr "發出生產訂單" -#: src/pages/build/BuildDetail.tsx:604 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:407 -#: src/pages/sales/ReturnOrderDetail.tsx:418 -#: src/pages/sales/SalesOrderDetail.tsx:445 +#: src/pages/build/BuildDetail.tsx:609 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:412 +#: src/pages/sales/ReturnOrderDetail.tsx:423 +#: src/pages/sales/SalesOrderDetail.tsx:450 msgid "Issue this order" msgstr "發出這個訂單" -#: src/pages/build/BuildDetail.tsx:605 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:408 -#: src/pages/sales/ReturnOrderDetail.tsx:419 -#: src/pages/sales/SalesOrderDetail.tsx:446 +#: src/pages/build/BuildDetail.tsx:610 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:413 +#: src/pages/sales/ReturnOrderDetail.tsx:424 +#: src/pages/sales/SalesOrderDetail.tsx:451 msgid "Order issued" msgstr "訂單發起" -#: src/pages/build/BuildDetail.tsx:624 +#: src/pages/build/BuildDetail.tsx:629 msgid "Complete Build Order" msgstr "完成生產訂單" -#: src/pages/build/BuildDetail.tsx:630 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:436 -#: src/pages/sales/ReturnOrderDetail.tsx:442 -#: src/pages/sales/SalesOrderDetail.tsx:480 +#: src/pages/build/BuildDetail.tsx:635 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:441 +#: src/pages/sales/ReturnOrderDetail.tsx:447 +#: src/pages/sales/SalesOrderDetail.tsx:485 msgid "Mark this order as complete" msgstr "標記該訂單為已完成" -#: src/pages/build/BuildDetail.tsx:633 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:430 -#: src/pages/sales/ReturnOrderDetail.tsx:443 -#: src/pages/sales/SalesOrderDetail.tsx:481 +#: src/pages/build/BuildDetail.tsx:638 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:435 +#: src/pages/sales/ReturnOrderDetail.tsx:448 +#: src/pages/sales/SalesOrderDetail.tsx:486 msgid "Order completed" msgstr "訂單已完成" -#: src/pages/build/BuildDetail.tsx:660 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:459 -#: src/pages/sales/ReturnOrderDetail.tsx:470 -#: src/pages/sales/SalesOrderDetail.tsx:516 +#: src/pages/build/BuildDetail.tsx:665 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:464 +#: src/pages/sales/ReturnOrderDetail.tsx:475 +#: src/pages/sales/SalesOrderDetail.tsx:521 msgid "Issue Order" msgstr "發佈訂單" -#: src/pages/build/BuildDetail.tsx:667 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:466 -#: src/pages/sales/ReturnOrderDetail.tsx:477 -#: src/pages/sales/SalesOrderDetail.tsx:530 +#: src/pages/build/BuildDetail.tsx:672 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:471 +#: src/pages/sales/ReturnOrderDetail.tsx:482 +#: src/pages/sales/SalesOrderDetail.tsx:535 msgid "Complete Order" msgstr "完成訂單" -#: src/pages/build/BuildDetail.tsx:686 +#: src/pages/build/BuildDetail.tsx:691 msgid "Build Order Actions" msgstr "生產訂單操作" -#: src/pages/build/BuildDetail.tsx:691 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:489 -#: src/pages/sales/ReturnOrderDetail.tsx:500 -#: src/pages/sales/SalesOrderDetail.tsx:554 +#: src/pages/build/BuildDetail.tsx:696 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:494 +#: src/pages/sales/ReturnOrderDetail.tsx:505 +#: src/pages/sales/SalesOrderDetail.tsx:559 msgid "Edit order" msgstr "編輯訂單" -#: src/pages/build/BuildDetail.tsx:695 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:497 -#: src/pages/sales/ReturnOrderDetail.tsx:506 -#: src/pages/sales/SalesOrderDetail.tsx:559 +#: src/pages/build/BuildDetail.tsx:700 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:502 +#: src/pages/sales/ReturnOrderDetail.tsx:511 +#: src/pages/sales/SalesOrderDetail.tsx:564 msgid "Duplicate order" msgstr "複製訂單" -#: src/pages/build/BuildDetail.tsx:699 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:500 -#: src/pages/sales/ReturnOrderDetail.tsx:511 -#: src/pages/sales/SalesOrderDetail.tsx:562 -msgid "Hold order" -msgstr "掛起訂單" - #: src/pages/build/BuildDetail.tsx:704 #: src/pages/purchasing/PurchaseOrderDetail.tsx:505 #: src/pages/sales/ReturnOrderDetail.tsx:516 #: src/pages/sales/SalesOrderDetail.tsx:567 +msgid "Hold order" +msgstr "掛起訂單" + +#: src/pages/build/BuildDetail.tsx:709 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:510 +#: src/pages/sales/ReturnOrderDetail.tsx:521 +#: src/pages/sales/SalesOrderDetail.tsx:572 msgid "Cancel order" msgstr "取消訂單" -#: src/pages/build/BuildDetail.tsx:742 +#: src/pages/build/BuildDetail.tsx:747 #: src/pages/stock/StockDetail.tsx:344 -#: src/tables/build/BuildAllocatedStockTable.tsx:85 +#: src/tables/build/BuildAllocatedStockTable.tsx:82 #: src/tables/part/PartBuildAllocationsTable.tsx:45 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:157 #: src/tables/stock/StockTrackingTable.tsx:109 @@ -7143,7 +7206,7 @@ msgstr "生產訂單" #~ msgid "Build order created" #~ msgstr "Build order created" -#: src/pages/build/BuildIndex.tsx:29 +#: src/pages/build/BuildIndex.tsx:35 #: src/tables/build/BuildOrderTable.tsx:184 msgid "Show external build orders" msgstr "" @@ -7152,61 +7215,82 @@ msgstr "" #~ msgid "New Build Order" #~ msgstr "New Build Order" -#: src/pages/build/BuildIndex.tsx:83 -#: src/pages/purchasing/PurchasingIndex.tsx:69 -#: src/pages/sales/SalesIndex.tsx:92 -#: src/pages/sales/SalesIndex.tsx:125 +#: src/pages/build/BuildIndex.tsx:74 +#: src/pages/part/CategoryDetail.tsx:292 +#: src/pages/purchasing/PurchasingIndex.tsx:74 +#: src/pages/purchasing/PurchasingIndex.tsx:107 +#: src/pages/purchasing/PurchasingIndex.tsx:135 +#: src/pages/purchasing/PurchasingIndex.tsx:156 +#: src/pages/purchasing/PurchasingIndex.tsx:184 +#: src/pages/sales/SalesIndex.tsx:61 +#: src/pages/sales/SalesIndex.tsx:107 +#: src/pages/sales/SalesIndex.tsx:140 msgid "Table View" msgstr "" -#: src/pages/build/BuildIndex.tsx:86 -#: src/pages/purchasing/PurchasingIndex.tsx:72 -#: src/pages/sales/SalesIndex.tsx:95 -#: src/pages/sales/SalesIndex.tsx:128 +#: src/pages/build/BuildIndex.tsx:80 +#: src/pages/purchasing/PurchasingIndex.tsx:80 +#: src/pages/sales/SalesIndex.tsx:67 +#: src/pages/sales/SalesIndex.tsx:113 msgid "Calendar View" msgstr "" -#: src/pages/company/CompanyDetail.tsx:99 +#: src/pages/build/BuildIndex.tsx:86 +#: src/pages/part/CategoryDetail.tsx:306 +#: src/pages/purchasing/PurchasingIndex.tsx:92 +#: src/pages/purchasing/PurchasingIndex.tsx:118 +#: src/pages/purchasing/PurchasingIndex.tsx:141 +#: src/pages/purchasing/PurchasingIndex.tsx:167 +#: src/pages/purchasing/PurchasingIndex.tsx:190 +#: src/pages/sales/SalesIndex.tsx:79 +#: src/pages/sales/SalesIndex.tsx:125 +#: src/pages/sales/SalesIndex.tsx:151 +msgid "Parametric View" +msgstr "" + +#: src/pages/company/CompanyDetail.tsx:100 msgid "Website" msgstr "網站" -#: src/pages/company/CompanyDetail.tsx:107 +#: src/pages/company/CompanyDetail.tsx:108 msgid "Phone Number" msgstr "電話號碼" -#: src/pages/company/CompanyDetail.tsx:114 +#: src/pages/company/CompanyDetail.tsx:115 msgid "Email Address" msgstr "電子郵件地址" -#: src/pages/company/CompanyDetail.tsx:121 +#: src/pages/company/CompanyDetail.tsx:122 msgid "Tax ID" msgstr "" -#: src/pages/company/CompanyDetail.tsx:131 +#: src/pages/company/CompanyDetail.tsx:132 msgid "Default Currency" msgstr "默認貨幣單位" -#: src/pages/company/CompanyDetail.tsx:142 +#: src/pages/company/CompanyDetail.tsx:143 #: src/pages/company/ManufacturerDetail.tsx:8 -#: src/pages/company/ManufacturerPartDetail.tsx:104 -#: src/pages/company/ManufacturerPartDetail.tsx:280 -#: src/pages/company/SupplierPartDetail.tsx:152 +#: src/pages/company/ManufacturerPartDetail.tsx:103 +#: src/pages/company/ManufacturerPartDetail.tsx:271 +#: src/pages/company/SupplierPartDetail.tsx:153 #: src/tables/Filter.tsx:347 #: src/tables/company/CompanyTable.tsx:101 #: src/tables/purchasing/SupplierPartTable.tsx:89 msgid "Manufacturer" msgstr "製造商" -#: src/pages/company/CompanyDetail.tsx:148 +#: src/pages/company/CompanyDetail.tsx:149 #: src/pages/company/CustomerDetail.tsx:8 #: src/pages/part/pricing/SaleHistoryPanel.tsx:31 -#: src/pages/sales/ReturnOrderDetail.tsx:123 -#: src/pages/sales/SalesOrderDetail.tsx:113 -#: src/pages/sales/SalesOrderShipmentDetail.tsx:113 +#: src/pages/sales/ReturnOrderDetail.tsx:124 +#: src/pages/sales/SalesOrderDetail.tsx:114 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:111 #: src/pages/stock/StockDetail.tsx:370 #: src/tables/company/CompanyTable.tsx:106 +#: src/tables/sales/ReturnOrderParametricTable.tsx:32 #: src/tables/sales/ReturnOrderTable.tsx:108 -#: src/tables/sales/SalesOrderShipmentTable.tsx:111 +#: src/tables/sales/SalesOrderParametricTable.tsx:32 +#: src/tables/sales/SalesOrderShipmentTable.tsx:132 #: src/tables/sales/SalesOrderTable.tsx:133 #: src/tables/stock/StockTrackingTable.tsx:153 msgid "Customer" @@ -7216,11 +7300,11 @@ msgstr "客户" #~ msgid "Edit company" #~ msgstr "Edit company" -#: src/pages/company/CompanyDetail.tsx:181 +#: src/pages/company/CompanyDetail.tsx:182 msgid "Company Details" msgstr "" -#: src/pages/company/CompanyDetail.tsx:187 +#: src/pages/company/CompanyDetail.tsx:188 msgid "Supplied Parts" msgstr "已提供的零件" @@ -7228,79 +7312,79 @@ msgstr "已提供的零件" #~ msgid "Delete company" #~ msgstr "Delete company" -#: src/pages/company/CompanyDetail.tsx:194 +#: src/pages/company/CompanyDetail.tsx:195 msgid "Manufactured Parts" msgstr "製成零件" -#: src/pages/company/CompanyDetail.tsx:241 +#: src/pages/company/CompanyDetail.tsx:242 msgid "Assigned Stock" msgstr "已分配的庫存" -#: src/pages/company/CompanyDetail.tsx:282 +#: src/pages/company/CompanyDetail.tsx:287 #: src/tables/company/CompanyTable.tsx:82 msgid "Edit Company" msgstr "編輯公司" -#: src/pages/company/CompanyDetail.tsx:290 +#: src/pages/company/CompanyDetail.tsx:295 msgid "Delete Company" msgstr "刪除該公司" -#: src/pages/company/CompanyDetail.tsx:305 +#: src/pages/company/CompanyDetail.tsx:310 msgid "Company Actions" msgstr "公司操作" -#: src/pages/company/ManufacturerPartDetail.tsx:78 -#: src/pages/company/SupplierPartDetail.tsx:89 +#: src/pages/company/ManufacturerPartDetail.tsx:77 +#: src/pages/company/SupplierPartDetail.tsx:90 msgid "Internal Part" msgstr "內部零件" -#: src/pages/company/ManufacturerPartDetail.tsx:112 +#: src/pages/company/ManufacturerPartDetail.tsx:111 msgid "Manufacturer Part Number" msgstr "製造商零件編號" -#: src/pages/company/ManufacturerPartDetail.tsx:129 -#: src/pages/company/SupplierPartDetail.tsx:113 +#: src/pages/company/ManufacturerPartDetail.tsx:128 +#: src/pages/company/SupplierPartDetail.tsx:114 msgid "External Link" msgstr "外部鏈接" -#: src/pages/company/ManufacturerPartDetail.tsx:148 -#: src/pages/company/SupplierPartDetail.tsx:232 +#: src/pages/company/ManufacturerPartDetail.tsx:147 +#: src/pages/company/SupplierPartDetail.tsx:233 #: src/pages/part/PartDetail.tsx:787 msgid "Part Details" msgstr "零件詳情" -#: src/pages/company/ManufacturerPartDetail.tsx:151 +#: src/pages/company/ManufacturerPartDetail.tsx:150 msgid "Manufacturer Details" msgstr "製造商詳情" -#: src/pages/company/ManufacturerPartDetail.tsx:160 +#: src/pages/company/ManufacturerPartDetail.tsx:159 msgid "Manufacturer Part Details" msgstr "製造商零件詳情" -#: src/pages/company/ManufacturerPartDetail.tsx:178 -#: src/pages/company/SupplierPartDetail.tsx:252 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:381 +#: src/pages/company/ManufacturerPartDetail.tsx:165 +#: src/pages/company/SupplierPartDetail.tsx:253 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:382 msgid "Received Stock" msgstr "接收庫存" -#: src/pages/company/ManufacturerPartDetail.tsx:220 +#: src/pages/company/ManufacturerPartDetail.tsx:211 #: src/tables/purchasing/ManufacturerPartTable.tsx:108 msgid "Edit Manufacturer Part" msgstr "編輯製造商零件" -#: src/pages/company/ManufacturerPartDetail.tsx:227 +#: src/pages/company/ManufacturerPartDetail.tsx:218 #: src/tables/purchasing/ManufacturerPartTable.tsx:96 #: src/tables/purchasing/ManufacturerPartTable.tsx:115 #: src/tables/purchasing/ManufacturerPartTable.tsx:156 msgid "Add Manufacturer Part" msgstr "添加製造商零件" -#: src/pages/company/ManufacturerPartDetail.tsx:239 +#: src/pages/company/ManufacturerPartDetail.tsx:230 #: src/tables/purchasing/ManufacturerPartTable.tsx:126 msgid "Delete Manufacturer Part" msgstr "刪除製造商零件" -#: src/pages/company/ManufacturerPartDetail.tsx:254 +#: src/pages/company/ManufacturerPartDetail.tsx:245 msgid "Manufacturer Part Actions" msgstr "製造商零件操作" @@ -7308,12 +7392,12 @@ msgstr "製造商零件操作" #~ msgid "ManufacturerPart" #~ msgstr "ManufacturerPart" -#: src/pages/company/SupplierPartDetail.tsx:104 +#: src/pages/company/SupplierPartDetail.tsx:105 #: src/tables/part/RelatedPartTable.tsx:82 msgid "Part Description" msgstr "零件描述" -#: src/pages/company/SupplierPartDetail.tsx:179 +#: src/pages/company/SupplierPartDetail.tsx:180 #: src/tables/part/PartPurchaseOrdersTable.tsx:73 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:191 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:233 @@ -7321,50 +7405,50 @@ msgstr "零件描述" msgid "Pack Quantity" msgstr "包裝數量" -#: src/pages/company/SupplierPartDetail.tsx:204 +#: src/pages/company/SupplierPartDetail.tsx:205 msgid "Supplier Availability" msgstr "供應商可用性" -#: src/pages/company/SupplierPartDetail.tsx:212 +#: src/pages/company/SupplierPartDetail.tsx:213 msgid "Availability Updated" msgstr "可用性已更新" -#: src/pages/company/SupplierPartDetail.tsx:237 +#: src/pages/company/SupplierPartDetail.tsx:238 msgid "Availability" msgstr "可用性" -#: src/pages/company/SupplierPartDetail.tsx:246 +#: src/pages/company/SupplierPartDetail.tsx:247 msgid "Supplier Part Details" msgstr "供應商零件詳情" -#: src/pages/company/SupplierPartDetail.tsx:279 +#: src/pages/company/SupplierPartDetail.tsx:280 #: src/pages/part/PartPricingPanel.tsx:113 #: src/pages/part/pricing/PricingOverviewPanel.tsx:239 msgid "Supplier Pricing" msgstr "供應商價格" -#: src/pages/company/SupplierPartDetail.tsx:308 +#: src/pages/company/SupplierPartDetail.tsx:313 msgid "Supplier Part Actions" msgstr "供應商零件操作" -#: src/pages/company/SupplierPartDetail.tsx:332 +#: src/pages/company/SupplierPartDetail.tsx:337 #: src/tables/purchasing/SupplierPartTable.tsx:244 msgid "Edit Supplier Part" msgstr "編輯供應商零件" -#: src/pages/company/SupplierPartDetail.tsx:340 +#: src/pages/company/SupplierPartDetail.tsx:345 #: src/tables/purchasing/SupplierPartTable.tsx:264 msgid "Delete Supplier Part" msgstr "刪除供應商零件" -#: src/pages/company/SupplierPartDetail.tsx:348 +#: src/pages/company/SupplierPartDetail.tsx:353 #: src/tables/purchasing/SupplierPartTable.tsx:172 #: src/tables/purchasing/SupplierPartTable.tsx:251 msgid "Add Supplier Part" msgstr "添加供應商零件" -#: src/pages/company/SupplierPartDetail.tsx:388 -#: src/pages/part/PartDetail.tsx:1003 +#: src/pages/company/SupplierPartDetail.tsx:393 +#: src/pages/part/PartDetail.tsx:1018 msgid "No Stock" msgstr "無庫存" @@ -7411,83 +7495,83 @@ msgstr "用户詳情" msgid "Basic user" msgstr "" -#: src/pages/part/CategoryDetail.tsx:100 +#: src/pages/part/CategoryDetail.tsx:103 #: src/pages/stock/LocationDetail.tsx:94 #: src/tables/settings/ErrorTable.tsx:63 #: src/tables/settings/ErrorTable.tsx:108 msgid "Path" msgstr "路徑" -#: src/pages/part/CategoryDetail.tsx:116 +#: src/pages/part/CategoryDetail.tsx:119 msgid "Parent Category" msgstr "上級類別" -#: src/pages/part/CategoryDetail.tsx:139 -#: src/pages/part/CategoryDetail.tsx:271 +#: src/pages/part/CategoryDetail.tsx:142 +#: src/pages/part/CategoryDetail.tsx:279 msgid "Subcategories" msgstr "子類別" -#: src/pages/part/CategoryDetail.tsx:146 +#: src/pages/part/CategoryDetail.tsx:149 #: src/pages/stock/LocationDetail.tsx:134 #: src/tables/part/PartCategoryTable.tsx:89 #: src/tables/stock/StockLocationTable.tsx:43 msgid "Structural" msgstr "結構性" -#: src/pages/part/CategoryDetail.tsx:152 +#: src/pages/part/CategoryDetail.tsx:155 msgid "Parent default location" msgstr "上級默認位置" -#: src/pages/part/CategoryDetail.tsx:159 +#: src/pages/part/CategoryDetail.tsx:162 msgid "Default location" msgstr "默認位置" -#: src/pages/part/CategoryDetail.tsx:170 +#: src/pages/part/CategoryDetail.tsx:173 msgid "Top level part category" msgstr "最高級零件類別" -#: src/pages/part/CategoryDetail.tsx:180 -#: src/pages/part/CategoryDetail.tsx:248 +#: src/pages/part/CategoryDetail.tsx:183 +#: src/pages/part/CategoryDetail.tsx:251 #: src/tables/part/PartCategoryTable.tsx:122 msgid "Edit Part Category" msgstr "編輯零件類別" -#: src/pages/part/CategoryDetail.tsx:189 +#: src/pages/part/CategoryDetail.tsx:192 msgid "Move items to parent category" msgstr "" -#: src/pages/part/CategoryDetail.tsx:193 +#: src/pages/part/CategoryDetail.tsx:196 #: src/pages/stock/LocationDetail.tsx:226 msgid "Delete items" msgstr "刪除項" -#: src/pages/part/CategoryDetail.tsx:201 -#: src/pages/part/CategoryDetail.tsx:253 +#: src/pages/part/CategoryDetail.tsx:204 +#: src/pages/part/CategoryDetail.tsx:256 msgid "Delete Part Category" msgstr "刪除零件類別" -#: src/pages/part/CategoryDetail.tsx:204 +#: src/pages/part/CategoryDetail.tsx:207 msgid "Parts Action" msgstr "零件操作" -#: src/pages/part/CategoryDetail.tsx:205 +#: src/pages/part/CategoryDetail.tsx:208 msgid "Action for parts in this category" msgstr "對此類別中零件的操作" -#: src/pages/part/CategoryDetail.tsx:211 +#: src/pages/part/CategoryDetail.tsx:214 msgid "Child Categories Action" msgstr "子類別操作" -#: src/pages/part/CategoryDetail.tsx:212 +#: src/pages/part/CategoryDetail.tsx:215 msgid "Action for child categories in this category" msgstr "對此類別中零件的操作" -#: src/pages/part/CategoryDetail.tsx:244 +#: src/pages/part/CategoryDetail.tsx:247 #: src/tables/part/PartCategoryTable.tsx:143 msgid "Category Actions" msgstr "類別操作" -#: src/pages/part/CategoryDetail.tsx:265 +#: src/pages/part/CategoryDetail.tsx:273 msgid "Category Details" msgstr "類別詳情" @@ -7585,7 +7669,6 @@ msgid "Category Default Location" msgstr "類別默認位置" #: src/pages/part/PartDetail.tsx:507 -#: src/tables/purchasing/ManufacturerPartParameterTable.tsx:48 msgid "Units" msgstr "單位" @@ -7600,7 +7683,7 @@ msgstr "關鍵詞" #: src/pages/part/PartDetail.tsx:542 #: src/tables/bom/BomTable.tsx:439 -#: src/tables/build/BuildLineTable.tsx:305 +#: src/tables/build/BuildLineTable.tsx:306 #: src/tables/part/PartTable.tsx:319 #: src/tables/sales/SalesOrderLineItemTable.tsx:138 msgid "Available Stock" @@ -7608,7 +7691,7 @@ msgstr "可用庫存" #: src/pages/part/PartDetail.tsx:548 #: src/tables/bom/BomTable.tsx:341 -#: src/tables/build/BuildLineTable.tsx:267 +#: src/tables/build/BuildLineTable.tsx:268 #: src/tables/sales/SalesOrderLineItemTable.tsx:180 msgid "On order" msgstr "訂購中" @@ -7634,7 +7717,7 @@ msgstr "最低庫存" #~ msgstr "Scheduling" #: src/pages/part/PartDetail.tsx:620 -#: src/tables/part/ParametricPartTable.tsx:359 +#: src/tables/part/ParametricPartTable.tsx:24 #: src/tables/part/PartTable.tsx:203 msgid "Locked" msgstr "已鎖定" @@ -7671,16 +7754,16 @@ msgid "Saleable Part" msgstr "可銷售零件" #: src/pages/part/PartDetail.tsx:663 -#: src/pages/part/PartDetail.tsx:1033 +#: src/pages/part/PartDetail.tsx:1054 #: src/tables/bom/BomTable.tsx:150 #: src/tables/bom/BomTable.tsx:434 msgid "Virtual Part" msgstr "虛擬零件" #: src/pages/part/PartDetail.tsx:678 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:271 -#: src/pages/sales/ReturnOrderDetail.tsx:249 -#: src/pages/sales/SalesOrderDetail.tsx:242 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:272 +#: src/pages/sales/ReturnOrderDetail.tsx:250 +#: src/pages/sales/SalesOrderDetail.tsx:243 #: src/tables/ColumnRenderers.tsx:502 msgid "Creation Date" msgstr "創建日期" @@ -7718,35 +7801,46 @@ msgstr "" msgid "Select Part Revision" msgstr "選擇零件版本" -#: src/pages/part/PartDetail.tsx:823 +#: src/pages/part/PartDetail.tsx:812 msgid "Variants" msgstr "變體" -#: src/pages/part/PartDetail.tsx:830 +#: src/pages/part/PartDetail.tsx:819 #: src/pages/stock/StockDetail.tsx:542 msgid "Allocations" msgstr "分配" -#: src/pages/part/PartDetail.tsx:837 +#: src/pages/part/PartDetail.tsx:826 msgid "Bill of Materials" msgstr "物料清單" -#: src/pages/part/PartDetail.tsx:849 +#: src/pages/part/PartDetail.tsx:838 msgid "Used In" msgstr "用於" -#: src/pages/part/PartDetail.tsx:856 +#: src/pages/part/PartDetail.tsx:845 msgid "Part Pricing" msgstr "零件價格" -#: src/pages/part/PartDetail.tsx:926 +#: src/pages/part/PartDetail.tsx:915 msgid "Test Templates" msgstr "測試模板" -#: src/pages/part/PartDetail.tsx:948 +#: src/pages/part/PartDetail.tsx:937 msgid "Related Parts" msgstr "關聯零件" +#: src/pages/part/PartDetail.tsx:949 +#: src/tables/ColumnRenderers.tsx:73 +#: src/tables/bom/BomTable.tsx:657 +#: src/tables/part/PartTestTemplateTable.tsx:258 +msgid "Part is Locked" +msgstr "零件已鎖定" + +#: src/pages/part/PartDetail.tsx:954 +msgid "Part parameters cannot be edited, as the part is locked" +msgstr "零件參數無法編輯,因為零件已鎖定" + #: src/pages/part/PartDetail.tsx:956 #~ msgid "Count part stock" #~ msgstr "Count part stock" @@ -7755,42 +7849,46 @@ msgstr "關聯零件" #~ msgid "Transfer part stock" #~ msgstr "Transfer part stock" -#: src/pages/part/PartDetail.tsx:1009 +#: src/pages/part/PartDetail.tsx:1024 #: src/tables/part/PartTestTemplateTable.tsx:112 #: src/tables/stock/StockItemTestResultTable.tsx:404 msgid "Required" msgstr "必填" -#: src/pages/part/PartDetail.tsx:1058 +#: src/pages/part/PartDetail.tsx:1042 +msgid "Deficit" +msgstr "" + +#: src/pages/part/PartDetail.tsx:1079 #: src/tables/part/PartTable.tsx:396 #: src/tables/part/PartTable.tsx:449 msgid "Add Part" msgstr "添加零件" -#: src/pages/part/PartDetail.tsx:1072 +#: src/pages/part/PartDetail.tsx:1093 msgid "Delete Part" msgstr "刪除零件" -#: src/pages/part/PartDetail.tsx:1081 +#: src/pages/part/PartDetail.tsx:1102 msgid "Deleting this part cannot be reversed" msgstr "刪除此零件無法撤銷" -#: src/pages/part/PartDetail.tsx:1143 +#: src/pages/part/PartDetail.tsx:1164 #: src/pages/stock/StockDetail.tsx:883 msgid "Order" msgstr "訂單" -#: src/pages/part/PartDetail.tsx:1144 +#: src/pages/part/PartDetail.tsx:1165 #: src/pages/stock/StockDetail.tsx:884 -#: src/tables/build/BuildLineTable.tsx:761 +#: src/tables/build/BuildLineTable.tsx:768 msgid "Order Stock" msgstr "訂單庫存" -#: src/pages/part/PartDetail.tsx:1156 +#: src/pages/part/PartDetail.tsx:1177 msgid "Search by serial number" msgstr "" -#: src/pages/part/PartDetail.tsx:1164 +#: src/pages/part/PartDetail.tsx:1185 #: src/tables/part/PartTable.tsx:506 msgid "Part Actions" msgstr "零件選項" @@ -8039,7 +8137,7 @@ msgstr "採購價格" #: src/pages/part/pricing/PricingOverviewPanel.tsx:288 #: src/pages/stock/StockDetail.tsx:426 -#: src/tables/part/PartParameterTable.tsx:121 +#: src/tables/general/ParameterTable.tsx:101 #: src/tables/stock/StockItemTable.tsx:300 msgid "Last Updated" msgstr "最近更新" @@ -8107,17 +8205,17 @@ msgstr "供應商價格" msgid "Variant Part" msgstr "變體零件" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:89 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:90 msgid "Edit Purchase Order" msgstr "編輯採購訂單" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:125 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:126 #: src/tables/purchasing/PurchaseOrderTable.tsx:154 #: src/tables/purchasing/PurchaseOrderTable.tsx:167 msgid "Add Purchase Order" msgstr "添加採購訂單" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:147 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:148 msgid "Supplier Reference" msgstr "供應商參考" @@ -8127,20 +8225,20 @@ msgstr "供應商參考" #~ msgid "Order Currency," #~ msgstr "Order Currency," -#: src/pages/purchasing/PurchaseOrderDetail.tsx:187 -#: src/pages/sales/ReturnOrderDetail.tsx:160 -#: src/pages/sales/SalesOrderDetail.tsx:144 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:188 +#: src/pages/sales/ReturnOrderDetail.tsx:161 +#: src/pages/sales/SalesOrderDetail.tsx:145 msgid "Completed Line Items" msgstr "已完成行項目" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:196 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:197 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:272 msgid "Destination" msgstr "目的地" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:202 -#: src/pages/sales/ReturnOrderDetail.tsx:167 -#: src/pages/sales/SalesOrderDetail.tsx:161 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:203 +#: src/pages/sales/ReturnOrderDetail.tsx:168 +#: src/pages/sales/SalesOrderDetail.tsx:162 msgid "Order Currency" msgstr "訂單貨幣" @@ -8150,97 +8248,97 @@ msgstr "訂單貨幣" #~ msgid "Created On" #~ msgstr "Created On" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:208 -#: src/pages/sales/ReturnOrderDetail.tsx:174 -#: src/pages/sales/SalesOrderDetail.tsx:167 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:209 +#: src/pages/sales/ReturnOrderDetail.tsx:175 +#: src/pages/sales/SalesOrderDetail.tsx:168 msgid "Total Cost" msgstr "總成本" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:237 -#: src/pages/sales/ReturnOrderDetail.tsx:215 -#: src/pages/sales/SalesOrderDetail.tsx:208 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:238 +#: src/pages/sales/ReturnOrderDetail.tsx:216 +#: src/pages/sales/SalesOrderDetail.tsx:209 msgid "Contact Email" msgstr "" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:245 -#: src/pages/sales/ReturnOrderDetail.tsx:223 -#: src/pages/sales/SalesOrderDetail.tsx:216 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:246 +#: src/pages/sales/ReturnOrderDetail.tsx:224 +#: src/pages/sales/SalesOrderDetail.tsx:217 msgid "Contact Phone" msgstr "" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:278 -#: src/pages/sales/ReturnOrderDetail.tsx:257 -#: src/pages/sales/SalesOrderDetail.tsx:249 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:279 +#: src/pages/sales/ReturnOrderDetail.tsx:258 +#: src/pages/sales/SalesOrderDetail.tsx:250 msgid "Issue Date" msgstr "" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:303 -#: src/pages/sales/ReturnOrderDetail.tsx:281 -#: src/pages/sales/SalesOrderDetail.tsx:272 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:304 +#: src/pages/sales/ReturnOrderDetail.tsx:282 +#: src/pages/sales/SalesOrderDetail.tsx:273 #: src/tables/ColumnRenderers.tsx:510 #: src/tables/build/BuildOrderTable.tsx:137 #: src/tables/part/PartPurchaseOrdersTable.tsx:106 msgid "Completion Date" msgstr "" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:333 -#: src/pages/sales/ReturnOrderDetail.tsx:311 -#: src/pages/sales/SalesOrderDetail.tsx:349 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:334 +#: src/pages/sales/ReturnOrderDetail.tsx:312 +#: src/pages/sales/SalesOrderDetail.tsx:350 msgid "Order Details" msgstr "訂單細節" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:339 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:348 -#: src/pages/sales/ReturnOrderDetail.tsx:153 -#: src/pages/sales/ReturnOrderDetail.tsx:317 -#: src/pages/sales/ReturnOrderDetail.tsx:326 -#: src/pages/sales/SalesOrderDetail.tsx:355 -#: src/pages/sales/SalesOrderDetail.tsx:364 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:340 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:349 +#: src/pages/sales/ReturnOrderDetail.tsx:154 +#: src/pages/sales/ReturnOrderDetail.tsx:318 +#: src/pages/sales/ReturnOrderDetail.tsx:327 +#: src/pages/sales/SalesOrderDetail.tsx:356 +#: src/pages/sales/SalesOrderDetail.tsx:365 msgid "Line Items" msgstr "行項目" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:363 -#: src/pages/sales/ReturnOrderDetail.tsx:341 -#: src/pages/sales/SalesOrderDetail.tsx:378 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:364 +#: src/pages/sales/ReturnOrderDetail.tsx:342 +#: src/pages/sales/SalesOrderDetail.tsx:379 msgid "Extra Line Items" msgstr "額外行項目" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:405 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:410 msgid "Issue Purchase Order" msgstr "發佈採購訂單" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:413 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:418 msgid "Cancel Purchase Order" msgstr "取消採購訂單" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:421 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:426 msgid "Hold Purchase Order" msgstr "掛起採購訂單" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:429 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:434 msgid "Complete Purchase Order" msgstr "完成採購訂單" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:485 -#: src/pages/sales/ReturnOrderDetail.tsx:496 -#: src/pages/sales/SalesOrderDetail.tsx:549 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:490 +#: src/pages/sales/ReturnOrderDetail.tsx:501 +#: src/pages/sales/SalesOrderDetail.tsx:554 msgid "Order Actions" msgstr "訂單操作" -#: src/pages/sales/ReturnOrderDetail.tsx:114 -#: src/pages/sales/SalesOrderDetail.tsx:104 -#: src/pages/sales/SalesOrderShipmentDetail.tsx:134 +#: src/pages/sales/ReturnOrderDetail.tsx:115 +#: src/pages/sales/SalesOrderDetail.tsx:105 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:132 #: src/tables/sales/SalesOrderTable.tsx:141 msgid "Customer Reference" msgstr "客户參考" -#: src/pages/sales/ReturnOrderDetail.tsx:195 +#: src/pages/sales/ReturnOrderDetail.tsx:196 msgid "Return Address" msgstr "" -#: src/pages/sales/ReturnOrderDetail.tsx:201 -#: src/pages/sales/SalesOrderDetail.tsx:194 -#: src/pages/sales/SalesOrderShipmentDetail.tsx:181 +#: src/pages/sales/ReturnOrderDetail.tsx:202 +#: src/pages/sales/SalesOrderDetail.tsx:195 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:179 msgid "Not specified" msgstr "" @@ -8248,117 +8346,117 @@ msgstr "" #~ msgid "Order canceled" #~ msgstr "Order canceled" -#: src/pages/sales/ReturnOrderDetail.tsx:389 +#: src/pages/sales/ReturnOrderDetail.tsx:394 msgid "Edit Return Order" msgstr "編輯退貨訂單" -#: src/pages/sales/ReturnOrderDetail.tsx:407 +#: src/pages/sales/ReturnOrderDetail.tsx:412 #: src/tables/sales/ReturnOrderTable.tsx:154 #: src/tables/sales/ReturnOrderTable.tsx:167 msgid "Add Return Order" msgstr "添加退貨訂單" -#: src/pages/sales/ReturnOrderDetail.tsx:416 +#: src/pages/sales/ReturnOrderDetail.tsx:421 msgid "Issue Return Order" msgstr "發佈退貨訂單" -#: src/pages/sales/ReturnOrderDetail.tsx:424 +#: src/pages/sales/ReturnOrderDetail.tsx:429 msgid "Cancel Return Order" msgstr "取消退貨訂單" -#: src/pages/sales/ReturnOrderDetail.tsx:432 +#: src/pages/sales/ReturnOrderDetail.tsx:437 msgid "Hold Return Order" msgstr "掛起退貨訂單" -#: src/pages/sales/ReturnOrderDetail.tsx:440 +#: src/pages/sales/ReturnOrderDetail.tsx:445 msgid "Complete Return Order" msgstr "完成退貨訂單" -#: src/pages/sales/SalesOrderDetail.tsx:153 +#: src/pages/sales/SalesOrderDetail.tsx:154 msgid "Completed Shipments" msgstr "完成配送" -#: src/pages/sales/SalesOrderDetail.tsx:188 -#: src/pages/sales/SalesOrderShipmentDetail.tsx:170 +#: src/pages/sales/SalesOrderDetail.tsx:189 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:168 msgid "Shipping Address" msgstr "" -#: src/pages/sales/SalesOrderDetail.tsx:316 +#: src/pages/sales/SalesOrderDetail.tsx:317 msgid "Edit Sales Order" msgstr "編輯銷售訂單" -#: src/pages/sales/SalesOrderDetail.tsx:338 +#: src/pages/sales/SalesOrderDetail.tsx:339 #: src/tables/sales/SalesOrderTable.tsx:108 #: src/tables/sales/SalesOrderTable.tsx:121 msgid "Add Sales Order" msgstr "添加銷售訂單" -#: src/pages/sales/SalesOrderDetail.tsx:396 +#: src/pages/sales/SalesOrderDetail.tsx:397 #: src/tables/sales/SalesOrderTable.tsx:147 msgid "Shipments" msgstr "配送" -#: src/pages/sales/SalesOrderDetail.tsx:443 +#: src/pages/sales/SalesOrderDetail.tsx:448 msgid "Issue Sales Order" msgstr "發佈銷售訂單" -#: src/pages/sales/SalesOrderDetail.tsx:451 +#: src/pages/sales/SalesOrderDetail.tsx:456 msgid "Cancel Sales Order" msgstr "取消銷售訂單" -#: src/pages/sales/SalesOrderDetail.tsx:459 +#: src/pages/sales/SalesOrderDetail.tsx:464 msgid "Hold Sales Order" msgstr "掛起銷售訂單" -#: src/pages/sales/SalesOrderDetail.tsx:467 +#: src/pages/sales/SalesOrderDetail.tsx:472 msgid "Ship Sales Order" msgstr "" -#: src/pages/sales/SalesOrderDetail.tsx:469 +#: src/pages/sales/SalesOrderDetail.tsx:474 msgid "Ship this order?" msgstr "" -#: src/pages/sales/SalesOrderDetail.tsx:470 +#: src/pages/sales/SalesOrderDetail.tsx:475 msgid "Order shipped" msgstr "" -#: src/pages/sales/SalesOrderDetail.tsx:478 +#: src/pages/sales/SalesOrderDetail.tsx:483 msgid "Complete Sales Order" msgstr "完成銷售訂單" -#: src/pages/sales/SalesOrderDetail.tsx:523 +#: src/pages/sales/SalesOrderDetail.tsx:528 msgid "Ship Order" msgstr "裝貨單" -#: src/pages/sales/SalesOrderShipmentDetail.tsx:142 -#: src/tables/sales/SalesOrderShipmentTable.tsx:135 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:140 +#: src/tables/sales/SalesOrderShipmentTable.tsx:156 msgid "Shipment Reference" msgstr "配送參考" -#: src/pages/sales/SalesOrderShipmentDetail.tsx:148 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:146 msgid "Tracking Number" msgstr "" -#: src/pages/sales/SalesOrderShipmentDetail.tsx:156 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:154 msgid "Invoice Number" msgstr "" -#: src/pages/sales/SalesOrderShipmentDetail.tsx:191 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:189 msgid "Allocated Items" msgstr "" -#: src/pages/sales/SalesOrderShipmentDetail.tsx:196 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:194 msgid "Checked By" msgstr "" -#: src/pages/sales/SalesOrderShipmentDetail.tsx:202 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:200 msgid "Not checked" msgstr "" -#: src/pages/sales/SalesOrderShipmentDetail.tsx:208 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:206 #: src/tables/ColumnRenderers.tsx:518 #: src/tables/sales/SalesOrderAllocationTable.tsx:182 -#: src/tables/sales/SalesOrderShipmentTable.tsx:168 +#: src/tables/sales/SalesOrderShipmentTable.tsx:189 msgid "Shipment Date" msgstr "發貨日期" @@ -8366,108 +8464,82 @@ msgstr "發貨日期" #~ msgid "Assigned Items" #~ msgstr "Assigned Items" -#: src/pages/sales/SalesOrderShipmentDetail.tsx:216 -#: src/tables/sales/SalesOrderShipmentTable.tsx:172 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:214 +#: src/tables/sales/SalesOrderShipmentTable.tsx:193 msgid "Delivery Date" msgstr "送達日期" -#: src/pages/sales/SalesOrderShipmentDetail.tsx:255 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:253 msgid "Shipment Details" msgstr "" -#: src/pages/sales/SalesOrderShipmentDetail.tsx:294 -#: src/pages/sales/SalesOrderShipmentDetail.tsx:438 -#: src/tables/sales/SalesOrderShipmentTable.tsx:90 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:292 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:406 +#: src/tables/sales/SalesOrderShipmentTable.tsx:97 msgid "Edit Shipment" msgstr "編輯配送" -#: src/pages/sales/SalesOrderShipmentDetail.tsx:301 -#: src/pages/sales/SalesOrderShipmentDetail.tsx:457 -#: src/tables/sales/SalesOrderShipmentTable.tsx:82 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:299 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:425 +#: src/tables/sales/SalesOrderShipmentTable.tsx:89 msgid "Cancel Shipment" msgstr "" -#: src/pages/sales/SalesOrderShipmentDetail.tsx:314 -#: src/tables/sales/SalesOrderShipmentTable.tsx:98 -#: src/tables/sales/SalesOrderShipmentTable.tsx:193 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:312 +#: src/tables/sales/SalesOrderShipmentTable.tsx:119 +#: src/tables/sales/SalesOrderShipmentTable.tsx:238 msgid "Complete Shipment" msgstr "完成配送" -#: src/pages/sales/SalesOrderShipmentDetail.tsx:326 -#: src/pages/sales/SalesOrderShipmentDetail.tsx:328 -msgid "Check Shipment" -msgstr "" - -#: src/pages/sales/SalesOrderShipmentDetail.tsx:329 -msgid "Marking the shipment as checked indicates that you have verified that all items included in this shipment are correct" -msgstr "" - #: src/pages/sales/SalesOrderShipmentDetail.tsx:339 -msgid "Shipment marked as checked" -msgstr "" - -#: src/pages/sales/SalesOrderShipmentDetail.tsx:346 -#: src/pages/sales/SalesOrderShipmentDetail.tsx:348 -msgid "Uncheck Shipment" -msgstr "" - -#: src/pages/sales/SalesOrderShipmentDetail.tsx:349 -msgid "Marking the shipment as unchecked indicates that the shipment requires further verification" -msgstr "" - -#: src/pages/sales/SalesOrderShipmentDetail.tsx:359 -msgid "Shipment marked as unchecked" -msgstr "" - -#: src/pages/sales/SalesOrderShipmentDetail.tsx:371 #: src/tables/part/PartPurchaseOrdersTable.tsx:122 msgid "Pending" msgstr "待定" -#: src/pages/sales/SalesOrderShipmentDetail.tsx:377 -#: src/tables/sales/SalesOrderShipmentTable.tsx:147 -#: src/tables/sales/SalesOrderShipmentTable.tsx:254 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:345 +#: src/tables/sales/SalesOrderShipmentTable.tsx:168 +#: src/tables/sales/SalesOrderShipmentTable.tsx:299 msgid "Checked" msgstr "" -#: src/pages/sales/SalesOrderShipmentDetail.tsx:383 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:351 msgid "Not Checked" msgstr "" -#: src/pages/sales/SalesOrderShipmentDetail.tsx:389 -#: src/tables/sales/SalesOrderShipmentTable.tsx:154 -#: src/tables/sales/SalesOrderShipmentTable.tsx:259 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:357 +#: src/tables/sales/SalesOrderShipmentTable.tsx:175 +#: src/tables/sales/SalesOrderShipmentTable.tsx:304 msgid "Shipped" msgstr "已配送" -#: src/pages/sales/SalesOrderShipmentDetail.tsx:395 -#: src/tables/sales/SalesOrderShipmentTable.tsx:161 -#: src/tables/sales/SalesOrderShipmentTable.tsx:264 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:363 +#: src/tables/sales/SalesOrderShipmentTable.tsx:182 +#: src/tables/sales/SalesOrderShipmentTable.tsx:309 #: src/tables/settings/EmailTable.tsx:31 msgid "Delivered" msgstr "已送達" -#: src/pages/sales/SalesOrderShipmentDetail.tsx:410 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:378 msgid "Send Shipment" msgstr "" -#: src/pages/sales/SalesOrderShipmentDetail.tsx:433 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:401 msgid "Shipment Actions" msgstr "" -#: src/pages/sales/SalesOrderShipmentDetail.tsx:442 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:410 msgid "Check" msgstr "" -#: src/pages/sales/SalesOrderShipmentDetail.tsx:443 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:411 msgid "Mark shipment as checked" msgstr "" -#: src/pages/sales/SalesOrderShipmentDetail.tsx:449 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:417 msgid "Uncheck" msgstr "" -#: src/pages/sales/SalesOrderShipmentDetail.tsx:450 +#: src/pages/sales/SalesOrderShipmentDetail.tsx:418 msgid "Mark shipment as unchecked" msgstr "" @@ -8775,13 +8847,6 @@ msgstr "" msgid "Part is not active" msgstr "零件未激活" -#: src/tables/ColumnRenderers.tsx:73 -#: src/tables/bom/BomTable.tsx:657 -#: src/tables/part/PartParameterTable.tsx:227 -#: src/tables/part/PartTestTemplateTable.tsx:258 -msgid "Part is Locked" -msgstr "零件已鎖定" - #: src/tables/ColumnRenderers.tsx:78 msgid "You are subscribed to notifications for this part" msgstr "" @@ -9219,13 +9284,13 @@ msgstr "" #~ msgstr "Show asssmbled items" #: src/tables/bom/BomTable.tsx:315 -#: src/tables/build/BuildLineTable.tsx:276 +#: src/tables/build/BuildLineTable.tsx:277 #: src/tables/part/PartTable.tsx:145 msgid "External stock" msgstr "外部庫存" #: src/tables/bom/BomTable.tsx:323 -#: src/tables/build/BuildLineTable.tsx:239 +#: src/tables/build/BuildLineTable.tsx:240 msgid "Includes substitute stock" msgstr "包括替代庫存" @@ -9234,7 +9299,7 @@ msgstr "包括替代庫存" #~ msgstr "Edit Bom Item" #: src/tables/bom/BomTable.tsx:332 -#: src/tables/build/BuildLineTable.tsx:249 +#: src/tables/build/BuildLineTable.tsx:250 #: src/tables/sales/SalesOrderLineItemTable.tsx:166 msgid "Includes variant stock" msgstr "包括變體庫存" @@ -9272,8 +9337,8 @@ msgid "Stock Information" msgstr "庫存信息" #: src/tables/bom/BomTable.tsx:399 -#: src/tables/build/BuildLineTable.tsx:496 -#: src/tables/build/BuildLineTable.tsx:537 +#: src/tables/build/BuildLineTable.tsx:497 +#: src/tables/build/BuildLineTable.tsx:538 msgid "Consumable item" msgstr "可耗物品" @@ -9282,7 +9347,7 @@ msgid "No available stock" msgstr "無可用庫存" #: src/tables/bom/BomTable.tsx:420 -#: src/tables/build/BuildLineTable.tsx:213 +#: src/tables/build/BuildLineTable.tsx:214 msgid "Show testable items" msgstr "顯示可跟蹤項目" @@ -9291,7 +9356,7 @@ msgid "Show trackable items" msgstr "顯示可跟蹤項目" #: src/tables/bom/BomTable.tsx:430 -#: src/tables/build/BuildLineTable.tsx:208 +#: src/tables/build/BuildLineTable.tsx:209 msgid "Show assembled items" msgstr "顯示已裝配的項目" @@ -9335,7 +9400,7 @@ msgstr "顯示允許變體替換的項目" #: src/tables/bom/BomTable.tsx:464 #: src/tables/bom/UsedInTable.tsx:85 -#: src/tables/build/BuildLineTable.tsx:202 +#: src/tables/build/BuildLineTable.tsx:203 msgid "Optional" msgstr "可選項" @@ -9345,7 +9410,7 @@ msgid "Show optional items" msgstr "顯示可選項目" #: src/tables/bom/BomTable.tsx:469 -#: src/tables/build/BuildLineTable.tsx:197 +#: src/tables/build/BuildLineTable.tsx:198 msgid "Consumable" msgstr "消耗品" @@ -9420,6 +9485,7 @@ msgid "Add a single BOM item" msgstr "" #: src/tables/bom/BomTable.tsx:637 +#: src/tables/general/ParameterTable.tsx:206 #: src/tables/part/PartTable.tsx:546 msgid "Import from File" msgstr "" @@ -9433,8 +9499,8 @@ msgid "Bill of materials cannot be edited, as the part is locked" msgstr "無法編輯材料清單,因為零件已鎖定" #: src/tables/bom/UsedInTable.tsx:34 -#: src/tables/build/BuildLineTable.tsx:207 -#: src/tables/part/ParametricPartTable.tsx:364 +#: src/tables/build/BuildLineTable.tsx:208 +#: src/tables/part/ParametricPartTable.tsx:29 #: src/tables/part/PartBuildAllocationsTable.tsx:60 #: src/tables/part/PartTable.tsx:209 #: src/tables/stock/StockItemTable.tsx:333 @@ -9455,11 +9521,11 @@ msgstr "可追蹤" msgid "Show trackable assemblies" msgstr "顯示可跟蹤裝配體" -#: src/tables/build/BuildAllocatedStockTable.tsx:67 +#: src/tables/build/BuildAllocatedStockTable.tsx:64 msgid "Allocated to Output" msgstr "分配至輸出" -#: src/tables/build/BuildAllocatedStockTable.tsx:68 +#: src/tables/build/BuildAllocatedStockTable.tsx:65 msgid "Show items allocated to a build output" msgstr "顯示分配給構建輸出的項目" @@ -9472,50 +9538,68 @@ msgstr "顯示分配給構建輸出的項目" #~ msgid "Include orders for part variants" #~ msgstr "Include orders for part variants" -#: src/tables/build/BuildAllocatedStockTable.tsx:97 +#: src/tables/build/BuildAllocatedStockTable.tsx:94 #: src/tables/part/PartBuildAllocationsTable.tsx:84 #: src/tables/part/PartPurchaseOrdersTable.tsx:132 #: src/tables/part/PartSalesAllocationsTable.tsx:69 #: src/tables/sales/SalesOrderAllocationTable.tsx:122 -#: src/tables/sales/SalesOrderShipmentTable.tsx:130 +#: src/tables/sales/SalesOrderShipmentTable.tsx:151 msgid "Order Status" msgstr "訂單狀態" +#: src/tables/build/BuildAllocatedStockTable.tsx:164 +#: src/tables/build/BuildLineTable.tsx:651 +msgid "Edit Stock Allocation" +msgstr "" + #: src/tables/build/BuildAllocatedStockTable.tsx:164 #~ msgid "Edit Build Item" #~ msgstr "Edit Build Item" -#: src/tables/build/BuildAllocatedStockTable.tsx:167 -#: src/tables/build/BuildLineTable.tsx:650 -msgid "Edit Stock Allocation" -msgstr "" - #: src/tables/build/BuildAllocatedStockTable.tsx:174 #~ msgid "Delete Build Item" #~ msgstr "Delete Build Item" -#: src/tables/build/BuildAllocatedStockTable.tsx:180 -#: src/tables/build/BuildLineTable.tsx:663 -msgid "Delete Stock Allocation" +#: src/tables/build/BuildAllocatedStockTable.tsx:177 +#: src/tables/build/BuildLineTable.tsx:664 +#: src/tables/sales/SalesOrderAllocationTable.tsx:218 +msgid "Remove Allocated Stock" msgstr "" -#: src/tables/build/BuildAllocatedStockTable.tsx:239 +#: src/tables/build/BuildAllocatedStockTable.tsx:180 +#: src/tables/build/BuildLineTable.tsx:663 +#~ msgid "Delete Stock Allocation" +#~ msgstr "Delete Stock Allocation" + +#: src/tables/build/BuildAllocatedStockTable.tsx:182 +#: src/tables/build/BuildLineTable.tsx:669 +#: src/tables/sales/SalesOrderAllocationTable.tsx:221 +msgid "Are you sure you want to remove this allocated stock from the order?" +msgstr "" + +#: src/tables/build/BuildAllocatedStockTable.tsx:242 msgid "Consume" msgstr "" +#: src/tables/build/BuildAllocatedStockTable.tsx:259 +#: src/tables/build/BuildLineTable.tsx:112 +#: src/tables/sales/SalesOrderAllocationTable.tsx:248 +msgid "Remove allocated stock" +msgstr "" + #: src/tables/build/BuildLineTable.tsx:59 #~ msgid "Show lines with available stock" #~ msgstr "Show lines with available stock" -#: src/tables/build/BuildLineTable.tsx:120 +#: src/tables/build/BuildLineTable.tsx:121 msgid "View Stock Item" msgstr "" -#: src/tables/build/BuildLineTable.tsx:183 +#: src/tables/build/BuildLineTable.tsx:184 msgid "Show fully allocated lines" msgstr "" -#: src/tables/build/BuildLineTable.tsx:188 +#: src/tables/build/BuildLineTable.tsx:189 msgid "Show fully consumed lines" msgstr "" @@ -9523,124 +9607,124 @@ msgstr "" #~ msgid "Show allocated lines" #~ msgstr "Show allocated lines" -#: src/tables/build/BuildLineTable.tsx:193 +#: src/tables/build/BuildLineTable.tsx:194 msgid "Show items with sufficient available stock" msgstr "" -#: src/tables/build/BuildLineTable.tsx:198 +#: src/tables/build/BuildLineTable.tsx:199 msgid "Show consumable lines" msgstr "顯示可消耗項目" -#: src/tables/build/BuildLineTable.tsx:203 +#: src/tables/build/BuildLineTable.tsx:204 msgid "Show optional lines" msgstr "顯示可選項目" -#: src/tables/build/BuildLineTable.tsx:212 +#: src/tables/build/BuildLineTable.tsx:213 #: src/tables/part/PartTable.tsx:233 msgid "Testable" msgstr "可測試" -#: src/tables/build/BuildLineTable.tsx:217 +#: src/tables/build/BuildLineTable.tsx:218 #: src/tables/stock/StockItemTable.tsx:388 msgid "Tracked" msgstr "已跟蹤" -#: src/tables/build/BuildLineTable.tsx:218 +#: src/tables/build/BuildLineTable.tsx:219 msgid "Show tracked lines" msgstr "顯示已跟蹤項目" -#: src/tables/build/BuildLineTable.tsx:223 +#: src/tables/build/BuildLineTable.tsx:224 msgid "Show items with stock on order" msgstr "" -#: src/tables/build/BuildLineTable.tsx:258 +#: src/tables/build/BuildLineTable.tsx:259 #: src/tables/sales/SalesOrderLineItemTable.tsx:172 msgid "In production" msgstr "生產中" -#: src/tables/build/BuildLineTable.tsx:286 +#: src/tables/build/BuildLineTable.tsx:287 msgid "Insufficient stock" msgstr "庫存不足" -#: src/tables/build/BuildLineTable.tsx:302 +#: src/tables/build/BuildLineTable.tsx:303 #: src/tables/sales/SalesOrderLineItemTable.tsx:160 #: src/tables/stock/StockItemTable.tsx:191 msgid "No stock available" msgstr "無可用庫存" -#: src/tables/build/BuildLineTable.tsx:375 +#: src/tables/build/BuildLineTable.tsx:376 msgid "Gets Inherited" msgstr "獲取已繼承的" -#: src/tables/build/BuildLineTable.tsx:388 +#: src/tables/build/BuildLineTable.tsx:389 msgid "Unit Quantity" msgstr "單位數量" -#: src/tables/build/BuildLineTable.tsx:415 +#: src/tables/build/BuildLineTable.tsx:416 msgid "Setup Quantity" msgstr "" -#: src/tables/build/BuildLineTable.tsx:424 +#: src/tables/build/BuildLineTable.tsx:425 msgid "Attrition" msgstr "" -#: src/tables/build/BuildLineTable.tsx:432 +#: src/tables/build/BuildLineTable.tsx:433 msgid "Rounding Multiple" msgstr "" -#: src/tables/build/BuildLineTable.tsx:441 +#: src/tables/build/BuildLineTable.tsx:442 msgid "BOM Information" msgstr "" -#: src/tables/build/BuildLineTable.tsx:515 +#: src/tables/build/BuildLineTable.tsx:516 #: src/tables/part/PartBuildAllocationsTable.tsx:102 msgid "Fully allocated" msgstr "" -#: src/tables/build/BuildLineTable.tsx:563 +#: src/tables/build/BuildLineTable.tsx:564 #: src/tables/sales/SalesOrderLineItemTable.tsx:311 msgid "Create Build Order" msgstr "創建生產訂單" -#: src/tables/build/BuildLineTable.tsx:592 +#: src/tables/build/BuildLineTable.tsx:593 msgid "Auto allocation in progress" msgstr "自動分配進行中" -#: src/tables/build/BuildLineTable.tsx:595 -#: src/tables/build/BuildLineTable.tsx:802 +#: src/tables/build/BuildLineTable.tsx:596 +#: src/tables/build/BuildLineTable.tsx:809 msgid "Auto Allocate Stock" msgstr "自動分配庫存量" -#: src/tables/build/BuildLineTable.tsx:596 +#: src/tables/build/BuildLineTable.tsx:597 msgid "Automatically allocate stock to this build according to the selected options" msgstr "根據選定的選項自動分配庫存到此版本" -#: src/tables/build/BuildLineTable.tsx:616 -#: src/tables/build/BuildLineTable.tsx:630 -#: src/tables/build/BuildLineTable.tsx:751 -#: src/tables/build/BuildLineTable.tsx:852 +#: src/tables/build/BuildLineTable.tsx:617 +#: src/tables/build/BuildLineTable.tsx:631 +#: src/tables/build/BuildLineTable.tsx:758 +#: src/tables/build/BuildLineTable.tsx:859 #: src/tables/build/BuildOutputTable.tsx:355 #: src/tables/build/BuildOutputTable.tsx:360 msgid "Deallocate Stock" msgstr "取消庫存分配" -#: src/tables/build/BuildLineTable.tsx:632 +#: src/tables/build/BuildLineTable.tsx:633 msgid "Deallocate all untracked stock for this build order" msgstr "為這個構建訂單取消分配所有未跟蹤庫存" -#: src/tables/build/BuildLineTable.tsx:634 +#: src/tables/build/BuildLineTable.tsx:635 msgid "Deallocate stock from the selected line item" msgstr "從選中的行項中取消分配庫存" -#: src/tables/build/BuildLineTable.tsx:638 +#: src/tables/build/BuildLineTable.tsx:639 msgid "Stock has been deallocated" msgstr "庫存已經取消分配" -#: src/tables/build/BuildLineTable.tsx:771 +#: src/tables/build/BuildLineTable.tsx:778 msgid "Build Stock" msgstr "生產庫存" -#: src/tables/build/BuildLineTable.tsx:784 +#: src/tables/build/BuildLineTable.tsx:791 #: src/tables/sales/SalesOrderLineItemTable.tsx:487 msgid "View Part" msgstr "" @@ -9739,7 +9823,7 @@ msgid "Serialize Build Output" msgstr "" #: src/tables/build/BuildOutputTable.tsx:405 -#: src/tables/part/PartTestResultTable.tsx:310 +#: src/tables/part/PartTestResultTable.tsx:318 #: src/tables/stock/StockItemTable.tsx:328 msgid "Filter by stock status" msgstr "按庫存狀態篩選" @@ -9964,8 +10048,8 @@ msgid "View Item" msgstr "" #: src/tables/general/ExtraLineItemTable.tsx:95 -#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:299 -#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:403 +#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:300 +#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:405 #: src/tables/sales/ReturnOrderLineItemTable.tsx:83 #: src/tables/sales/ReturnOrderLineItemTable.tsx:187 #: src/tables/sales/SalesOrderLineItemTable.tsx:252 @@ -9974,14 +10058,14 @@ msgid "Add Line Item" msgstr "添加行項目" #: src/tables/general/ExtraLineItemTable.tsx:108 -#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:320 +#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:322 #: src/tables/sales/ReturnOrderLineItemTable.tsx:96 #: src/tables/sales/SalesOrderLineItemTable.tsx:271 msgid "Edit Line Item" msgstr "編輯行項目" #: src/tables/general/ExtraLineItemTable.tsx:117 -#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:329 +#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:331 #: src/tables/sales/ReturnOrderLineItemTable.tsx:105 #: src/tables/sales/SalesOrderLineItemTable.tsx:280 msgid "Delete Line Item" @@ -9991,6 +10075,137 @@ msgstr "刪除行項目" msgid "Add Extra Line Item" msgstr "添加額外行項目" +#: src/tables/general/ParameterTable.tsx:88 +msgid "Internal Units" +msgstr "內部單位" + +#: src/tables/general/ParameterTable.tsx:108 +#: src/tables/general/ParameterTable.tsx:123 +msgid "Updated By" +msgstr "" + +#: src/tables/general/ParameterTable.tsx:118 +msgid "Show parameters for enabled templates" +msgstr "" + +#: src/tables/general/ParameterTable.tsx:124 +msgid "Filter by user who last updated the parameter" +msgstr "" + +#: src/tables/general/ParameterTable.tsx:154 +msgid "Import Parameters" +msgstr "" + +#: src/tables/general/ParameterTable.tsx:164 +#: src/tables/general/ParametricDataTable.tsx:261 +#: src/tables/general/ParametricDataTable.tsx:392 +msgid "Add Parameter" +msgstr "添加參數" + +#: src/tables/general/ParameterTable.tsx:175 +#: src/tables/general/ParameterTable.tsx:222 +#: src/tables/general/ParametricDataTable.tsx:285 +msgid "Edit Parameter" +msgstr "編輯參數" + +#: src/tables/general/ParameterTable.tsx:183 +#: src/tables/general/ParameterTable.tsx:230 +msgid "Delete Parameter" +msgstr "刪除參數" + +#: src/tables/general/ParameterTable.tsx:191 +msgid "Add Parameters" +msgstr "" + +#: src/tables/general/ParameterTable.tsx:197 +msgid "Create Parameter" +msgstr "" + +#: src/tables/general/ParameterTable.tsx:199 +msgid "Create a new parameter" +msgstr "" + +#: src/tables/general/ParameterTable.tsx:208 +msgid "Import parameters from a file" +msgstr "" + +#: src/tables/general/ParameterTemplateTable.tsx:48 +#: src/tables/general/ParameterTemplateTable.tsx:197 +msgid "Add Parameter Template" +msgstr "添加參數模板" + +#: src/tables/general/ParameterTemplateTable.tsx:64 +msgid "Duplicate Parameter Template" +msgstr "" + +#: src/tables/general/ParameterTemplateTable.tsx:78 +msgid "Delete Parameter Template" +msgstr "刪除零件參數模板" + +#: src/tables/general/ParameterTemplateTable.tsx:85 +msgid "Edit Parameter Template" +msgstr "編輯參數模板" + +#: src/tables/general/ParameterTemplateTable.tsx:138 +msgid "Checkbox" +msgstr "勾選框" + +#: src/tables/general/ParameterTemplateTable.tsx:139 +msgid "Show checkbox templates" +msgstr "顯示覆選框模板" + +#: src/tables/general/ParameterTemplateTable.tsx:143 +msgid "Has choices" +msgstr "有選項" + +#: src/tables/general/ParameterTemplateTable.tsx:144 +msgid "Show templates with choices" +msgstr "顯示有選項的模板" + +#: src/tables/general/ParameterTemplateTable.tsx:148 +#: src/tables/part/PartTable.tsx:245 +msgid "Has Units" +msgstr "有單位" + +#: src/tables/general/ParameterTemplateTable.tsx:149 +msgid "Show templates with units" +msgstr "顯示有單位的模板" + +#: src/tables/general/ParameterTemplateTable.tsx:154 +msgid "Show enabled templates" +msgstr "" + +#: src/tables/general/ParameterTemplateTable.tsx:158 +#: src/tables/settings/ImportSessionTable.tsx:111 +#: src/tables/settings/TemplateTable.tsx:368 +msgid "Model Type" +msgstr "型號類型" + +#: src/tables/general/ParameterTemplateTable.tsx:159 +msgid "Filter by model type" +msgstr "" + +#: src/tables/general/ParametricDataTable.tsx:79 +msgid "Click to edit" +msgstr "點擊以編輯" + +#: src/tables/general/ParametricDataTableFilters.tsx:36 +msgid "True" +msgstr "" + +#: src/tables/general/ParametricDataTableFilters.tsx:37 +msgid "False" +msgstr "" + +#: src/tables/general/ParametricDataTableFilters.tsx:47 +#: src/tables/general/ParametricDataTableFilters.tsx:80 +msgid "Select a choice" +msgstr "" + +#: src/tables/general/ParametricDataTableFilters.tsx:100 +msgid "Enter a value" +msgstr "" + #: src/tables/machine/MachineListTable.tsx:133 msgid "Machine restarted" msgstr "設備已重啓" @@ -10071,7 +10286,7 @@ msgid "Initialized" msgstr "已初始化" #: src/tables/machine/MachineListTable.tsx:410 -#: src/tables/machine/MachineTypeTable.tsx:307 +#: src/tables/machine/MachineTypeTable.tsx:305 msgid "No errors reported" msgstr "未報告錯誤" @@ -10132,15 +10347,15 @@ msgstr "內置驅動" #~ msgid "Machine type information" #~ msgstr "Machine type information" -#: src/tables/machine/MachineTypeTable.tsx:128 +#: src/tables/machine/MachineTypeTable.tsx:126 msgid "Not Found" msgstr "" -#: src/tables/machine/MachineTypeTable.tsx:131 +#: src/tables/machine/MachineTypeTable.tsx:129 msgid "Machine type not found." msgstr "找不到設備類型。" -#: src/tables/machine/MachineTypeTable.tsx:141 +#: src/tables/machine/MachineTypeTable.tsx:139 msgid "Machine Type Information" msgstr "" @@ -10148,34 +10363,34 @@ msgstr "" #~ msgid "Available drivers" #~ msgstr "Available drivers" -#: src/tables/machine/MachineTypeTable.tsx:156 -#: src/tables/machine/MachineTypeTable.tsx:255 +#: src/tables/machine/MachineTypeTable.tsx:154 +#: src/tables/machine/MachineTypeTable.tsx:253 msgid "Slug" msgstr "別名" -#: src/tables/machine/MachineTypeTable.tsx:167 -#: src/tables/machine/MachineTypeTable.tsx:276 +#: src/tables/machine/MachineTypeTable.tsx:165 +#: src/tables/machine/MachineTypeTable.tsx:274 msgid "Provider plugin" msgstr "供應商插件" -#: src/tables/machine/MachineTypeTable.tsx:179 -#: src/tables/machine/MachineTypeTable.tsx:288 +#: src/tables/machine/MachineTypeTable.tsx:177 +#: src/tables/machine/MachineTypeTable.tsx:286 msgid "Provider file" msgstr "供應商文件" -#: src/tables/machine/MachineTypeTable.tsx:194 +#: src/tables/machine/MachineTypeTable.tsx:192 msgid "Available Drivers" msgstr "" -#: src/tables/machine/MachineTypeTable.tsx:234 +#: src/tables/machine/MachineTypeTable.tsx:232 msgid "Machine driver not found." msgstr "未找到設備驅動程序。" -#: src/tables/machine/MachineTypeTable.tsx:242 +#: src/tables/machine/MachineTypeTable.tsx:240 msgid "Machine driver information" msgstr "設備驅動信息" -#: src/tables/machine/MachineTypeTable.tsx:262 +#: src/tables/machine/MachineTypeTable.tsx:260 msgid "Machine type" msgstr "設備類型" @@ -10187,15 +10402,15 @@ msgstr "設備類型" #~ msgid "Machine driver detail" #~ msgstr "Machine driver detail" -#: src/tables/machine/MachineTypeTable.tsx:362 +#: src/tables/machine/MachineTypeTable.tsx:360 msgid "Builtin type" msgstr "內置類型" -#: src/tables/machine/MachineTypeTable.tsx:371 +#: src/tables/machine/MachineTypeTable.tsx:369 msgid "Machine Type Detail" msgstr "" -#: src/tables/machine/MachineTypeTable.tsx:381 +#: src/tables/machine/MachineTypeTable.tsx:379 msgid "Machine Driver Detail" msgstr "" @@ -10213,52 +10428,31 @@ msgstr "通知" msgid "Message" msgstr "信息" -#: src/tables/part/ParametricPartTable.tsx:78 -msgid "Click to edit" -msgstr "點擊以編輯" +#: src/tables/part/ParametricPartTable.tsx:20 +msgid "Show active parts" +msgstr "顯示活動零件" + +#: src/tables/part/ParametricPartTable.tsx:25 +msgid "Show locked parts" +msgstr "顯示鎖定的零件" + +#: src/tables/part/ParametricPartTable.tsx:30 +msgid "Show assembly parts" +msgstr "顯示已裝配的零件" #: src/tables/part/ParametricPartTable.tsx:82 #~ msgid "Edit parameter" #~ msgstr "Edit parameter" #: src/tables/part/ParametricPartTable.tsx:244 -msgid "Add Part Parameter" -msgstr "添加零件參數" +#~ msgid "Add Part Parameter" +#~ msgstr "Add Part Parameter" #: src/tables/part/ParametricPartTable.tsx:258 #: src/tables/part/PartParameterTable.tsx:164 #: src/tables/part/PartParameterTable.tsx:187 -msgid "Edit Part Parameter" -msgstr "編輯零件參數" - -#: src/tables/part/ParametricPartTable.tsx:355 -msgid "Show active parts" -msgstr "顯示活動零件" - -#: src/tables/part/ParametricPartTable.tsx:360 -msgid "Show locked parts" -msgstr "顯示鎖定的零件" - -#: src/tables/part/ParametricPartTable.tsx:365 -msgid "Show assembly parts" -msgstr "顯示已裝配的零件" - -#: src/tables/part/ParametricPartTableFilters.tsx:36 -msgid "True" -msgstr "" - -#: src/tables/part/ParametricPartTableFilters.tsx:37 -msgid "False" -msgstr "" - -#: src/tables/part/ParametricPartTableFilters.tsx:47 -#: src/tables/part/ParametricPartTableFilters.tsx:80 -msgid "Select a choice" -msgstr "" - -#: src/tables/part/ParametricPartTableFilters.tsx:100 -msgid "Enter a value" -msgstr "" +#~ msgid "Edit Part Parameter" +#~ msgstr "Edit Part Parameter" #: src/tables/part/PartBuildAllocationsTable.tsx:64 msgid "Assembly IPN" @@ -10273,7 +10467,7 @@ msgid "Required Stock" msgstr "" #: src/tables/part/PartBuildAllocationsTable.tsx:124 -#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:381 +#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:383 msgid "View Build Order" msgstr "" @@ -10332,85 +10526,22 @@ msgstr "編輯類別參數" msgid "Delete Category Parameter" msgstr "刪除類別參數" -#: src/tables/part/PartCategoryTemplateTable.tsx:87 -msgid "Parameter Template" -msgstr "參數模板" - #: src/tables/part/PartCategoryTemplateTable.tsx:93 #~ msgid "[{0}]" #~ msgstr "[{0}]" -#: src/tables/part/PartParameterTable.tsx:108 -msgid "Internal Units" -msgstr "內部單位" - -#: src/tables/part/PartParameterTable.tsx:128 -#: src/tables/part/PartParameterTable.tsx:138 -msgid "Updated By" -msgstr "" - -#: src/tables/part/PartParameterTable.tsx:139 -msgid "Filter by user who last updated the parameter" -msgstr "" - #: src/tables/part/PartParameterTable.tsx:148 -msgid "New Part Parameter" -msgstr "新增零件參數" +#~ msgid "New Part Parameter" +#~ msgstr "New Part Parameter" #: src/tables/part/PartParameterTable.tsx:173 #: src/tables/part/PartParameterTable.tsx:195 -msgid "Delete Part Parameter" -msgstr "刪除零件參數" +#~ msgid "Delete Part Parameter" +#~ msgstr "Delete Part Parameter" #: src/tables/part/PartParameterTable.tsx:213 -msgid "Add parameter" -msgstr "添加參數" - -#: src/tables/part/PartParameterTable.tsx:232 -msgid "Part parameters cannot be edited, as the part is locked" -msgstr "零件參數無法編輯,因為零件已鎖定" - -#: src/tables/part/PartParameterTemplateTable.tsx:36 -msgid "Checkbox" -msgstr "勾選框" - -#: src/tables/part/PartParameterTemplateTable.tsx:37 -msgid "Show checkbox templates" -msgstr "顯示覆選框模板" - -#: src/tables/part/PartParameterTemplateTable.tsx:41 -msgid "Has choices" -msgstr "有選項" - -#: src/tables/part/PartParameterTemplateTable.tsx:42 -msgid "Show templates with choices" -msgstr "顯示有選項的模板" - -#: src/tables/part/PartParameterTemplateTable.tsx:46 -#: src/tables/part/PartTable.tsx:245 -msgid "Has Units" -msgstr "有單位" - -#: src/tables/part/PartParameterTemplateTable.tsx:47 -msgid "Show templates with units" -msgstr "顯示有單位的模板" - -#: src/tables/part/PartParameterTemplateTable.tsx:91 -#: src/tables/part/PartParameterTemplateTable.tsx:166 -msgid "Add Parameter Template" -msgstr "添加參數模板" - -#: src/tables/part/PartParameterTemplateTable.tsx:105 -msgid "Duplicate Parameter Template" -msgstr "" - -#: src/tables/part/PartParameterTemplateTable.tsx:117 -msgid "Edit Parameter Template" -msgstr "編輯參數模板" - -#: src/tables/part/PartParameterTemplateTable.tsx:128 -msgid "Delete Parameter Template" -msgstr "刪除零件參數模板" +#~ msgid "Add parameter" +#~ msgstr "Add parameter" #: src/tables/part/PartParameterTemplateTable.tsx:141 #~ msgid "Add parameter template" @@ -10430,7 +10561,7 @@ msgid "Show received items" msgstr "顯示已收到的條目" #: src/tables/part/PartSalesAllocationsTable.tsx:90 -#: src/tables/sales/SalesOrderShipmentTable.tsx:218 +#: src/tables/sales/SalesOrderShipmentTable.tsx:263 msgid "View Sales Order" msgstr "" @@ -10617,8 +10748,8 @@ msgstr "" #: src/tables/part/PartTestResultTable.tsx:103 #: src/tables/part/PartTestResultTable.tsx:181 -#: src/tables/part/PartTestResultTable.tsx:320 -#: src/tables/part/PartTestResultTable.tsx:334 +#: src/tables/part/PartTestResultTable.tsx:328 +#: src/tables/part/PartTestResultTable.tsx:342 #: src/tables/stock/StockItemTestResultTable.tsx:296 #: src/tables/stock/StockItemTestResultTable.tsx:368 #: src/tables/stock/StockItemTestResultTable.tsx:429 @@ -10643,7 +10774,7 @@ msgstr "" msgid "No Result" msgstr "無結果" -#: src/tables/part/PartTestResultTable.tsx:298 +#: src/tables/part/PartTestResultTable.tsx:306 msgid "Show build outputs currently in production" msgstr "顯示當前生產中的構建輸出" @@ -11013,36 +11144,45 @@ msgstr "已安裝" #~ msgid "Parameter updated" #~ msgstr "Parameter updated" -#: src/tables/purchasing/ManufacturerPartParameterTable.tsx:63 -#: src/tables/purchasing/ManufacturerPartParameterTable.tsx:112 -msgid "Add Parameter" -msgstr "添加參數" - #: src/tables/purchasing/ManufacturerPartParameterTable.tsx:73 #~ msgid "Parameter deleted" #~ msgstr "Parameter deleted" -#: src/tables/purchasing/ManufacturerPartParameterTable.tsx:74 -msgid "Edit Parameter" -msgstr "編輯參數" - #: src/tables/purchasing/ManufacturerPartParameterTable.tsx:74 #~ msgid "Are you sure you want to delete this parameter?" #~ msgstr "Are you sure you want to delete this parameter?" -#: src/tables/purchasing/ManufacturerPartParameterTable.tsx:82 -msgid "Delete Parameter" -msgstr "刪除參數" - -#: src/tables/purchasing/ManufacturerPartTable.tsx:63 -#~ msgid "Create Manufacturer Part" -#~ msgstr "Create Manufacturer Part" - +#: src/tables/purchasing/ManufacturerPartParametricTable.tsx:34 #: src/tables/purchasing/ManufacturerPartTable.tsx:82 #: src/tables/purchasing/SupplierPartTable.tsx:99 msgid "MPN" msgstr "製造商零件編號 (MPN)" +#: src/tables/purchasing/ManufacturerPartParametricTable.tsx:44 +#: src/tables/purchasing/ManufacturerPartTable.tsx:134 +#: src/tables/purchasing/SupplierPartTable.tsx:220 +msgid "Active Part" +msgstr "激活的零件" + +#: src/tables/purchasing/ManufacturerPartParametricTable.tsx:45 +#: src/tables/purchasing/ManufacturerPartTable.tsx:135 +msgid "Show manufacturer parts for active internal parts." +msgstr "" + +#: src/tables/purchasing/ManufacturerPartParametricTable.tsx:50 +#: src/tables/purchasing/ManufacturerPartTable.tsx:140 +msgid "Active Manufacturer" +msgstr "" + +#: src/tables/purchasing/ManufacturerPartParametricTable.tsx:51 +#: src/tables/purchasing/ManufacturerPartTable.tsx:142 +msgid "Show manufacturer parts for active manufacturers." +msgstr "" + +#: src/tables/purchasing/ManufacturerPartTable.tsx:63 +#~ msgid "Create Manufacturer Part" +#~ msgstr "Create Manufacturer Part" + #: src/tables/purchasing/ManufacturerPartTable.tsx:100 #~ msgid "Manufacturer part updated" #~ msgstr "Manufacturer part updated" @@ -11055,25 +11195,8 @@ msgstr "製造商零件編號 (MPN)" #~ msgid "Are you sure you want to remove this manufacturer part?" #~ msgstr "Are you sure you want to remove this manufacturer part?" -#: src/tables/purchasing/ManufacturerPartTable.tsx:134 -#: src/tables/purchasing/SupplierPartTable.tsx:220 -msgid "Active Part" -msgstr "激活的零件" - -#: src/tables/purchasing/ManufacturerPartTable.tsx:135 -msgid "Show manufacturer parts for active internal parts." -msgstr "" - -#: src/tables/purchasing/ManufacturerPartTable.tsx:140 -msgid "Active Manufacturer" -msgstr "" - -#: src/tables/purchasing/ManufacturerPartTable.tsx:142 -msgid "Show manufacturer parts for active manufacturers." -msgstr "" - #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:115 -#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:397 +#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:399 msgid "Import Line Items" msgstr "導入行項目" @@ -11099,11 +11222,11 @@ msgstr "" #~ msgid "Add line item" #~ msgstr "Add line item" -#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:350 +#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:352 msgid "Receive line item" msgstr "接收這行項目" -#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:414 +#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:416 msgid "Receive items" msgstr "收到項目" @@ -11201,25 +11324,25 @@ msgid "Not shipped" msgstr "" #: src/tables/sales/SalesOrderAllocationTable.tsx:211 -#: src/tables/sales/SalesOrderAllocationTable.tsx:229 +#: src/tables/sales/SalesOrderAllocationTable.tsx:235 msgid "Edit Allocation" msgstr "" #: src/tables/sales/SalesOrderAllocationTable.tsx:218 #: src/tables/sales/SalesOrderAllocationTable.tsx:241 -msgid "Delete Allocation" -msgstr "" +#~ msgid "Delete Allocation" +#~ msgstr "Delete Allocation" -#: src/tables/sales/SalesOrderAllocationTable.tsx:252 -#: src/tables/sales/SalesOrderAllocationTable.tsx:253 +#: src/tables/sales/SalesOrderAllocationTable.tsx:261 +#: src/tables/sales/SalesOrderAllocationTable.tsx:262 msgid "View Shipment" msgstr "" -#: src/tables/sales/SalesOrderAllocationTable.tsx:308 +#: src/tables/sales/SalesOrderAllocationTable.tsx:317 msgid "Assign to Shipment" msgstr "" -#: src/tables/sales/SalesOrderAllocationTable.tsx:324 +#: src/tables/sales/SalesOrderAllocationTable.tsx:333 msgid "Assign to shipment" msgstr "" @@ -11259,35 +11382,35 @@ msgstr "訂單庫存" #~ msgid "Delete Shipment" #~ msgstr "Delete Shipment" -#: src/tables/sales/SalesOrderShipmentTable.tsx:72 +#: src/tables/sales/SalesOrderShipmentTable.tsx:79 msgid "Create Shipment" msgstr "創建配送" -#: src/tables/sales/SalesOrderShipmentTable.tsx:143 +#: src/tables/sales/SalesOrderShipmentTable.tsx:164 msgid "Items" msgstr "項目" -#: src/tables/sales/SalesOrderShipmentTable.tsx:203 +#: src/tables/sales/SalesOrderShipmentTable.tsx:248 msgid "Edit shipment" msgstr "" -#: src/tables/sales/SalesOrderShipmentTable.tsx:211 +#: src/tables/sales/SalesOrderShipmentTable.tsx:256 msgid "Cancel shipment" msgstr "" -#: src/tables/sales/SalesOrderShipmentTable.tsx:241 +#: src/tables/sales/SalesOrderShipmentTable.tsx:286 msgid "Add shipment" msgstr "添加配送" -#: src/tables/sales/SalesOrderShipmentTable.tsx:255 +#: src/tables/sales/SalesOrderShipmentTable.tsx:300 msgid "Show shipments which have been checked" msgstr "" -#: src/tables/sales/SalesOrderShipmentTable.tsx:260 +#: src/tables/sales/SalesOrderShipmentTable.tsx:305 msgid "Show shipments which have been shipped" msgstr "顯示已發貨的貨物" -#: src/tables/sales/SalesOrderShipmentTable.tsx:265 +#: src/tables/sales/SalesOrderShipmentTable.tsx:310 msgid "Show shipments which have been delivered" msgstr "顯示已送達的貨物" @@ -11621,11 +11744,6 @@ msgstr "已上傳" msgid "Imported Rows" msgstr "導入的行" -#: src/tables/settings/ImportSessionTable.tsx:111 -#: src/tables/settings/TemplateTable.tsx:368 -msgid "Model Type" -msgstr "型號類型" - #: src/tables/settings/ImportSessionTable.tsx:112 #: src/tables/settings/TemplateTable.tsx:369 msgid "Filter by target model type" diff --git a/src/frontend/src/pages/Index/Settings/AdminCenter/HomePanel.tsx b/src/frontend/src/pages/Index/Settings/AdminCenter/HomePanel.tsx index 0458bb205d..8a0d202166 100644 --- a/src/frontend/src/pages/Index/Settings/AdminCenter/HomePanel.tsx +++ b/src/frontend/src/pages/Index/Settings/AdminCenter/HomePanel.tsx @@ -4,28 +4,37 @@ import { Accordion, Alert, SimpleGrid, Stack, Text } from '@mantine/core'; import { type JSX, useMemo, useState } from 'react'; import { useShallow } from 'zustand/react/shallow'; import { StylishText } from '../../../../components/items/StylishText'; -import { ServerAlert, getAlerts } from '../../../../components/nav/Alerts'; +import { + type ExtendedAlertInfo, + ServerAlert, + getAlerts +} from '../../../../components/nav/Alerts'; import { QuickAction } from '../../../../components/settings/QuickAction'; import { useServerApiState } from '../../../../states/ServerApiState'; import { useGlobalSettingsState } from '../../../../states/SettingsStates'; +function rankAlert(alert: ExtendedAlertInfo): number { + if (!alert.condition) return 0; + if (alert.error) return 2; + + return 1; +} + export default function HomePanel(): JSX.Element { const [dismissed, setDismissed] = useState(false); const [server] = useServerApiState(useShallow((state) => [state.server])); const globalSettings = useGlobalSettingsState(); const accElements = useMemo(() => { - const _alerts = getAlerts(server, globalSettings, true); + const _alerts = getAlerts(server, globalSettings, true).sort( + (a, b) => rankAlert(b) - rankAlert(a) + ); + return [ { - key: 'active', - text: t`Active Alerts`, - elements: _alerts.filter((alert) => alert.condition) - }, - { - key: 'inactive', - text: t`Inactive Alerts`, - elements: _alerts.filter((alert) => !alert.condition) + key: 'system-status', + text: t`System Status`, + elements: _alerts } ]; }, [server, globalSettings]); @@ -67,7 +76,7 @@ export default function HomePanel(): JSX.Element { )} diff --git a/src/frontend/src/pages/Index/Settings/AdminCenter/Index.tsx b/src/frontend/src/pages/Index/Settings/AdminCenter/Index.tsx index 7ee01d0e5c..4c700b4ed1 100644 --- a/src/frontend/src/pages/Index/Settings/AdminCenter/Index.tsx +++ b/src/frontend/src/pages/Index/Settings/AdminCenter/Index.tsx @@ -71,7 +71,7 @@ const MachineManagementPanel = Loadable( lazy(() => import('./MachineManagementPanel')) ); -const PartParameterPanel = Loadable(lazy(() => import('./PartParameterPanel'))); +const ParameterPanel = Loadable(lazy(() => import('./ParameterPanel'))); const ErrorReportTable = Loadable( lazy(() => import('../../../../tables/settings/ErrorTable')) @@ -191,10 +191,10 @@ export default function AdminCenter() { content: }, { - name: 'part-parameters', - label: t`Part Parameters`, + name: 'parameters', + label: t`Parameters`, icon: , - content: , + content: , hidden: !user.hasViewRole(UserRoles.part) }, { @@ -274,7 +274,7 @@ export default function AdminCenter() { id: 'plm', label: t`PLM`, panelIDs: [ - 'part-parameters', + 'parameters', 'category-parameters', 'location-types', 'stocktake' diff --git a/src/frontend/src/pages/Index/Settings/AdminCenter/PartParameterPanel.tsx b/src/frontend/src/pages/Index/Settings/AdminCenter/ParameterPanel.tsx similarity index 62% rename from src/frontend/src/pages/Index/Settings/AdminCenter/PartParameterPanel.tsx rename to src/frontend/src/pages/Index/Settings/AdminCenter/ParameterPanel.tsx index 2240475702..b352df5ee5 100644 --- a/src/frontend/src/pages/Index/Settings/AdminCenter/PartParameterPanel.tsx +++ b/src/frontend/src/pages/Index/Settings/AdminCenter/ParameterPanel.tsx @@ -2,21 +2,21 @@ import { t } from '@lingui/core/macro'; import { Accordion } from '@mantine/core'; import { StylishText } from '../../../../components/items/StylishText'; -import PartParameterTemplateTable from '../../../../tables/part/PartParameterTemplateTable'; +import ParameterTemplateTable from '../../../../tables/general/ParameterTemplateTable'; import SelectionListTable from '../../../../tables/part/SelectionListTable'; export default function PartParameterPanel() { return ( - - + + - {t`Part Parameter Template`} + {t`Parameter Templates`} - + - + {t`Selection Lists`} diff --git a/src/frontend/src/pages/Index/Settings/SystemSettings.tsx b/src/frontend/src/pages/Index/Settings/SystemSettings.tsx index 918033494a..0e3ef515d7 100644 --- a/src/frontend/src/pages/Index/Settings/SystemSettings.tsx +++ b/src/frontend/src/pages/Index/Settings/SystemSettings.tsx @@ -7,6 +7,7 @@ import { IconCurrencyDollar, IconFileAnalytics, IconFingerprint, + IconList, IconPackages, IconPlugConnected, IconQrcode, @@ -185,6 +186,12 @@ export default function SystemSettings() { /> ) }, + { + name: 'parameters', + label: t`Parameters`, + icon: , + content: + }, { name: 'parts', label: t`Parts`, @@ -213,8 +220,7 @@ export default function SystemSettings() { 'PART_COPY_PARAMETERS', 'PART_COPY_TESTS', 'PART_CATEGORY_PARAMETERS', - 'PART_CATEGORY_DEFAULT_ICON', - 'PART_PARAMETER_ENFORCE_UNITS' + 'PART_CATEGORY_DEFAULT_ICON' ]} /> ) diff --git a/src/frontend/src/pages/Index/Settings/UserSettings.tsx b/src/frontend/src/pages/Index/Settings/UserSettings.tsx index 0bc5837fb1..55a62ede4b 100644 --- a/src/frontend/src/pages/Index/Settings/UserSettings.tsx +++ b/src/frontend/src/pages/Index/Settings/UserSettings.tsx @@ -59,6 +59,7 @@ export default function UserSettings() { 'STICKY_HEADER', 'STICKY_TABLE_HEADER', 'SHOW_SPOTLIGHT', + 'BARCODE_IN_FORM_FIELDS', 'DATE_DISPLAY_FORMAT', 'FORMS_CLOSE_USING_ESCAPE', 'DISPLAY_STOCKTAKE_TAB', diff --git a/src/frontend/src/pages/build/BuildDetail.tsx b/src/frontend/src/pages/build/BuildDetail.tsx index d856376d95..d5016e2909 100644 --- a/src/frontend/src/pages/build/BuildDetail.tsx +++ b/src/frontend/src/pages/build/BuildDetail.tsx @@ -45,6 +45,7 @@ import AttachmentPanel from '../../components/panels/AttachmentPanel'; import NotesPanel from '../../components/panels/NotesPanel'; import type { PanelType } from '../../components/panels/Panel'; import { PanelGroup } from '../../components/panels/PanelGroup'; +import ParametersPanel from '../../components/panels/ParametersPanel'; import { StatusRenderer } from '../../components/render/StatusRenderer'; import { RenderStockLocation } from '../../components/render/Stock'; import { useBuildOrderFields } from '../../forms/BuildForms'; @@ -519,6 +520,10 @@ export default function BuildDetail() { ) }, + ParametersPanel({ + model_type: ModelType.build, + model_id: build.pk + }), AttachmentPanel({ model_type: ModelType.build, model_id: build.pk diff --git a/src/frontend/src/pages/build/BuildIndex.tsx b/src/frontend/src/pages/build/BuildIndex.tsx index bd95117a53..2b8f4e681c 100644 --- a/src/frontend/src/pages/build/BuildIndex.tsx +++ b/src/frontend/src/pages/build/BuildIndex.tsx @@ -1,21 +1,27 @@ import { t } from '@lingui/core/macro'; import { Stack } from '@mantine/core'; -import { IconCalendar, IconTable, IconTools } from '@tabler/icons-react'; +import { + IconCalendar, + IconListDetails, + IconTable, + IconTools +} from '@tabler/icons-react'; import { useMemo } from 'react'; import { ModelType } from '@lib/enums/ModelType'; import { UserRoles } from '@lib/enums/Roles'; import type { TableFilter } from '@lib/types/Filters'; import { useLocalStorage } from '@mantine/hooks'; -import SegmentedIconControl from '../../components/buttons/SegmentedIconControl'; import OrderCalendar from '../../components/calendar/OrderCalendar'; import PermissionDenied from '../../components/errors/PermissionDenied'; import { PageDetail } from '../../components/nav/PageDetail'; import type { PanelType } from '../../components/panels/Panel'; import { PanelGroup } from '../../components/panels/PanelGroup'; +import SegmentedControlPanel from '../../components/panels/SegmentedControlPanel'; import { useGlobalSettingsState } from '../../states/SettingsStates'; import { useUserState } from '../../states/UserState'; import { PartCategoryFilter } from '../../tables/Filter'; +import BuildOrderParametricTable from '../../tables/build/BuildOrderParametricTable'; import { BuildOrderTable } from '../../tables/build/BuildOrderTable'; function BuildOrderCalendar() { @@ -43,20 +49,6 @@ function BuildOrderCalendar() { ); } -function BuildOverview({ - view -}: { - view: string; -}) { - switch (view) { - case 'calendar': - return ; - case 'table': - default: - return ; - } -} - /** * Build Order index page */ @@ -64,34 +56,41 @@ export default function BuildIndex() { const user = useUserState(); const [buildOrderView, setBuildOrderView] = useLocalStorage({ - key: 'buildOrderView', + key: 'build-order-view', defaultValue: 'table' }); const panels: PanelType[] = useMemo(() => { return [ - { - name: 'buildorders', + SegmentedControlPanel({ + name: 'buildorder', label: t`Build Orders`, - content: , icon: , - controls: ( - }, - { - value: 'calendar', - label: t`Calendar View`, - icon: - } - ]} - /> - ) - } + selection: buildOrderView, + onChange: setBuildOrderView, + options: [ + { + value: 'table', + label: t`Table View`, + icon: , + content: + }, + { + value: 'calendar', + label: t`Calendar View`, + icon: , + content: + }, + { + value: 'parametric', + label: t`Parametric View`, + icon: , + content: + } + ] + }) ]; - }, [buildOrderView, setBuildOrderView]); + }, [user, buildOrderView]); if (!user.isLoggedIn() || !user.hasViewRole(UserRoles.build)) { return ; diff --git a/src/frontend/src/pages/company/CompanyDetail.tsx b/src/frontend/src/pages/company/CompanyDetail.tsx index 228cdc2940..1c1383841d 100644 --- a/src/frontend/src/pages/company/CompanyDetail.tsx +++ b/src/frontend/src/pages/company/CompanyDetail.tsx @@ -39,6 +39,7 @@ import AttachmentPanel from '../../components/panels/AttachmentPanel'; import NotesPanel from '../../components/panels/NotesPanel'; import type { PanelType } from '../../components/panels/Panel'; import { PanelGroup } from '../../components/panels/PanelGroup'; +import ParametersPanel from '../../components/panels/ParametersPanel'; import { companyFields } from '../../forms/CompanyForms'; import { useDeleteApiFormModal, @@ -265,6 +266,10 @@ export default function CompanyDetail(props: Readonly) { icon: , content: company?.pk && }, + ParametersPanel({ + model_type: ModelType.company, + model_id: company?.pk + }), AttachmentPanel({ model_type: ModelType.company, model_id: company.pk diff --git a/src/frontend/src/pages/company/ManufacturerPartDetail.tsx b/src/frontend/src/pages/company/ManufacturerPartDetail.tsx index 693906af1a..1ad145e45a 100644 --- a/src/frontend/src/pages/company/ManufacturerPartDetail.tsx +++ b/src/frontend/src/pages/company/ManufacturerPartDetail.tsx @@ -3,7 +3,6 @@ import { Grid, Skeleton, Stack } from '@mantine/core'; import { IconBuildingWarehouse, IconInfoCircle, - IconList, IconPackages } from '@tabler/icons-react'; import { useMemo } from 'react'; @@ -33,6 +32,7 @@ import AttachmentPanel from '../../components/panels/AttachmentPanel'; import NotesPanel from '../../components/panels/NotesPanel'; import type { PanelType } from '../../components/panels/Panel'; import { PanelGroup } from '../../components/panels/PanelGroup'; +import ParametersPanel from '../../components/panels/ParametersPanel'; import { useManufacturerPartFields } from '../../forms/CompanyForms'; import { useCreateApiFormModal, @@ -41,7 +41,6 @@ import { } from '../../hooks/UseForm'; import { useInstance } from '../../hooks/UseInstance'; import { useUserState } from '../../states/UserState'; -import ManufacturerPartParameterTable from '../../tables/purchasing/ManufacturerPartParameterTable'; import { SupplierPartTable } from '../../tables/purchasing/SupplierPartTable'; import { StockItemTable } from '../../tables/stock/StockItemTable'; @@ -161,18 +160,6 @@ export default function ManufacturerPartDetail() { icon: , content: detailsPanel }, - { - name: 'parameters', - label: t`Parameters`, - icon: , - content: manufacturerPart?.pk ? ( - - ) : ( - - ) - }, { name: 'stock', label: t`Received Stock`, @@ -201,6 +188,10 @@ export default function ManufacturerPartDetail() { ) }, + ParametersPanel({ + model_type: ModelType.manufacturerpart, + model_id: manufacturerPart?.pk + }), AttachmentPanel({ model_type: ModelType.manufacturerpart, model_id: manufacturerPart?.pk diff --git a/src/frontend/src/pages/company/SupplierPartDetail.tsx b/src/frontend/src/pages/company/SupplierPartDetail.tsx index 35cdf4f836..e640c3e8da 100644 --- a/src/frontend/src/pages/company/SupplierPartDetail.tsx +++ b/src/frontend/src/pages/company/SupplierPartDetail.tsx @@ -36,6 +36,7 @@ import AttachmentPanel from '../../components/panels/AttachmentPanel'; import NotesPanel from '../../components/panels/NotesPanel'; import type { PanelType } from '../../components/panels/Panel'; import { PanelGroup } from '../../components/panels/PanelGroup'; +import ParametersPanel from '../../components/panels/ParametersPanel'; import { useSupplierPartFields } from '../../forms/CompanyForms'; import { useCreateApiFormModal, @@ -284,6 +285,10 @@ export default function SupplierPartDetail() { ) }, + ParametersPanel({ + model_type: ModelType.supplierpart, + model_id: supplierPart?.pk + }), AttachmentPanel({ model_type: ModelType.supplierpart, model_id: supplierPart?.pk diff --git a/src/frontend/src/pages/part/CategoryDetail.tsx b/src/frontend/src/pages/part/CategoryDetail.tsx index 55b9ce440f..a39ce98f5e 100644 --- a/src/frontend/src/pages/part/CategoryDetail.tsx +++ b/src/frontend/src/pages/part/CategoryDetail.tsx @@ -6,7 +6,8 @@ import { IconListCheck, IconListDetails, IconPackages, - IconSitemap + IconSitemap, + IconTable } from '@tabler/icons-react'; import { useMemo, useState } from 'react'; import { useNavigate, useParams } from 'react-router-dom'; @@ -15,6 +16,7 @@ import { ApiEndpoints } from '@lib/enums/ApiEndpoints'; import { ModelType } from '@lib/enums/ModelType'; import { UserRoles } from '@lib/enums/Roles'; import { getDetailUrl } from '@lib/functions/Navigation'; +import { useLocalStorage } from '@mantine/hooks'; import AdminButton from '../../components/buttons/AdminButton'; import StarredToggleButton from '../../components/buttons/StarredToggleButton'; import { @@ -33,6 +35,7 @@ import NavigationTree from '../../components/nav/NavigationTree'; import { PageDetail } from '../../components/nav/PageDetail'; import type { PanelType } from '../../components/panels/Panel'; import { PanelGroup } from '../../components/panels/PanelGroup'; +import SegmentedControlPanel from '../../components/panels/SegmentedControlPanel'; import { partCategoryFields } from '../../forms/PartForms'; import { useDeleteApiFormModal, @@ -258,6 +261,11 @@ export default function CategoryDetail() { ]; }, [id, user, category.pk, category.starred]); + const [partsView, setPartsView] = useLocalStorage({ + key: 'category-parts-view', + defaultValue: 'table' + }); + const panels: PanelType[] = useMemo( () => [ { @@ -272,20 +280,35 @@ export default function CategoryDetail() { icon: , content: }, - { + SegmentedControlPanel({ name: 'parts', label: t`Parts`, icon: , - content: ( - - ) - }, + selection: partsView, + onChange: setPartsView, + options: [ + { + value: 'table', + label: t`Table View`, + icon: , + content: ( + + ) + }, + { + value: 'parametric', + label: t`Parametric View`, + icon: , + content: + } + ] + }), { name: 'stockitem', label: t`Stock Items`, @@ -307,15 +330,9 @@ export default function CategoryDetail() { icon: , hidden: !id || !category.pk, content: - }, - { - name: 'parameters', - label: t`Part Parameters`, - icon: , - content: } ], - [category, id] + [category, id, partsView] ); const breadcrumbs = useMemo( diff --git a/src/frontend/src/pages/part/PartDetail.tsx b/src/frontend/src/pages/part/PartDetail.tsx index a539b51078..e5f97edfa6 100644 --- a/src/frontend/src/pages/part/PartDetail.tsx +++ b/src/frontend/src/pages/part/PartDetail.tsx @@ -22,8 +22,8 @@ import { IconExclamationCircle, IconInfoCircle, IconLayersLinked, - IconList, IconListCheck, + IconListDetails, IconListTree, IconLock, IconPackages, @@ -97,7 +97,7 @@ import { useUserState } from '../../states/UserState'; import { BomTable } from '../../tables/bom/BomTable'; import { UsedInTable } from '../../tables/bom/UsedInTable'; import { BuildOrderTable } from '../../tables/build/BuildOrderTable'; -import { PartParameterTable } from '../../tables/part/PartParameterTable'; +import { ParameterTable } from '../../tables/general/ParameterTable'; import PartPurchaseOrdersTable from '../../tables/part/PartPurchaseOrdersTable'; import PartTestResultTable from '../../tables/part/PartTestResultTable'; import PartTestTemplateTable from '../../tables/part/PartTestTemplateTable'; @@ -501,6 +501,13 @@ export default function PartDetail() { model: ModelType.stocklocation, hidden: part.default_location || !part.category_default_location }, + { + type: 'link', + name: 'default_supplier', + label: t`Default Supplier`, + model: ModelType.company, + hidden: !part.default_supplier + }, { type: 'string', name: 'units', @@ -788,17 +795,6 @@ export default function PartDetail() { icon: , content: detailsPanel }, - { - name: 'parameters', - label: t`Parameters`, - icon: , - content: ( - - ) - }, { name: 'stock', label: t`Stock`, @@ -949,6 +945,30 @@ export default function PartDetail() { icon: , content: }, + { + name: 'parameters', + label: t`Parameters`, + icon: , + content: ( + <> + {part.locked && ( + } + p='xs' + > + {t`Part parameters cannot be edited, as the part is locked`} + + )} + + + ) + }, AttachmentPanel({ model_type: ModelType.part, model_id: part?.pk @@ -979,6 +999,8 @@ export default function PartDetail() { partRequirements.required_for_build_orders + partRequirements.required_for_sales_orders; + const shortfall = Math.max(required - partRequirements.total_stock, 0); + return [ 0} key='in_production' />, + 0} + key='deficit' + />, ) }, + ParametersPanel({ + model_type: ModelType.purchaseorder, + model_id: order.pk + }), AttachmentPanel({ model_type: ModelType.purchaseorder, model_id: order.pk diff --git a/src/frontend/src/pages/purchasing/PurchasingIndex.tsx b/src/frontend/src/pages/purchasing/PurchasingIndex.tsx index 0101f84f21..706c7e737d 100644 --- a/src/frontend/src/pages/purchasing/PurchasingIndex.tsx +++ b/src/frontend/src/pages/purchasing/PurchasingIndex.tsx @@ -5,6 +5,7 @@ import { IconBuildingStore, IconBuildingWarehouse, IconCalendar, + IconListDetails, IconPackageExport, IconShoppingCart, IconTable @@ -14,104 +15,193 @@ import { useMemo } from 'react'; import { ModelType } from '@lib/enums/ModelType'; import { UserRoles } from '@lib/enums/Roles'; import { useLocalStorage } from '@mantine/hooks'; -import SegmentedIconControl from '../../components/buttons/SegmentedIconControl'; import OrderCalendar from '../../components/calendar/OrderCalendar'; import PermissionDenied from '../../components/errors/PermissionDenied'; import { PageDetail } from '../../components/nav/PageDetail'; import { PanelGroup } from '../../components/panels/PanelGroup'; +import SegmentedControlPanel from '../../components/panels/SegmentedControlPanel'; import { useUserState } from '../../states/UserState'; import { CompanyTable } from '../../tables/company/CompanyTable'; +import ParametricCompanyTable from '../../tables/company/ParametricCompanyTable'; +import ManufacturerPartParametricTable from '../../tables/purchasing/ManufacturerPartParametricTable'; import { ManufacturerPartTable } from '../../tables/purchasing/ManufacturerPartTable'; +import PurchaseOrderParametricTable from '../../tables/purchasing/PurchaseOrderParametricTable'; import { PurchaseOrderTable } from '../../tables/purchasing/PurchaseOrderTable'; +import SupplierPartParametricTable from '../../tables/purchasing/SupplierPartParametricTable'; import { SupplierPartTable } from '../../tables/purchasing/SupplierPartTable'; -function PurchaseOrderOverview({ - view -}: { - view: string; -}) { - switch (view) { - case 'calendar': - return ( - - ); - case 'table': - default: - return ; - } -} - export default function PurchasingIndex() { const user = useUserState(); - const [purchaseOrderView, setpurchaseOrderView] = useLocalStorage({ - key: 'purchaseOrderView', + const [purchaseOrderView, setPurchaseOrderView] = useLocalStorage({ + key: 'purchase-order-view', + defaultValue: 'table' + }); + + const [supplierView, setSupplierView] = useLocalStorage({ + key: 'supplier-view', + defaultValue: 'table' + }); + + const [manufacturerView, setManufacturerView] = useLocalStorage({ + key: 'manufacturer-view', + defaultValue: 'table' + }); + + const [manufacturerPartsView, setManufacturerPartsView] = + useLocalStorage({ + key: 'manufacturer-parts-view', + defaultValue: 'table' + }); + + const [supplierPartsView, setSupplierPartsView] = useLocalStorage({ + key: 'supplier-parts-view', defaultValue: 'table' }); const panels = useMemo(() => { return [ - { + SegmentedControlPanel({ name: 'purchaseorders', label: t`Purchase Orders`, icon: , hidden: !user.hasViewRole(UserRoles.purchase_order), - content: , - controls: ( - }, - { - value: 'calendar', - label: t`Calendar View`, - icon: - } - ]} - /> - ) - }, - { + selection: purchaseOrderView, + onChange: setPurchaseOrderView, + options: [ + { + value: 'table', + label: t`Table View`, + icon: , + content: + }, + { + value: 'calendar', + label: t`Calendar View`, + icon: , + content: ( + + ) + }, + { + value: 'parametric', + label: t`Parametric View`, + icon: , + content: + } + ] + }), + SegmentedControlPanel({ name: 'suppliers', label: t`Suppliers`, icon: , - content: ( - - ) - }, - { + selection: supplierView, + onChange: setSupplierView, + options: [ + { + value: 'table', + label: t`Table View`, + icon: , + content: ( + + ) + }, + { + value: 'parametric', + label: t`Parametric View`, + icon: , + content: ( + + ) + } + ] + }), + SegmentedControlPanel({ name: 'supplier-parts', label: t`Supplier Parts`, icon: , - content: - }, - { + selection: supplierPartsView, + onChange: setSupplierPartsView, + options: [ + { + value: 'table', + label: t`Table View`, + icon: , + content: + }, + { + value: 'parametric', + label: t`Parametric View`, + icon: , + content: + } + ] + }), + SegmentedControlPanel({ name: 'manufacturer', label: t`Manufacturers`, icon: , - content: ( - - ) - }, - { + selection: manufacturerView, + onChange: setManufacturerView, + options: [ + { + value: 'table', + label: t`Table View`, + icon: , + content: ( + + ) + }, + { + value: 'parametric', + label: t`Parametric View`, + icon: , + content: ( + + ) + } + ] + }), + SegmentedControlPanel({ name: 'manufacturer-parts', label: t`Manufacturer Parts`, icon: , - content: - } + selection: manufacturerPartsView, + onChange: setManufacturerPartsView, + options: [ + { + value: 'table', + label: t`Table View`, + icon: , + content: + }, + { + value: 'parametric', + label: t`Parametric View`, + icon: , + content: + } + ] + }) ]; - }, [user, purchaseOrderView]); + }, [ + user, + manufacturerPartsView, + manufacturerView, + purchaseOrderView, + supplierPartsView, + supplierView + ]); if (!user.isLoggedIn() || !user.hasViewRole(UserRoles.purchase_order)) { return ; diff --git a/src/frontend/src/pages/sales/ReturnOrderDetail.tsx b/src/frontend/src/pages/sales/ReturnOrderDetail.tsx index 2c644c4be1..5bce7c6306 100644 --- a/src/frontend/src/pages/sales/ReturnOrderDetail.tsx +++ b/src/frontend/src/pages/sales/ReturnOrderDetail.tsx @@ -32,6 +32,7 @@ import AttachmentPanel from '../../components/panels/AttachmentPanel'; import NotesPanel from '../../components/panels/NotesPanel'; import type { PanelType } from '../../components/panels/Panel'; import { PanelGroup } from '../../components/panels/PanelGroup'; +import ParametersPanel from '../../components/panels/ParametersPanel'; import { RenderAddress } from '../../components/render/Company'; import { StatusRenderer } from '../../components/render/StatusRenderer'; import { formatCurrency } from '../../defaults/formatters'; @@ -354,6 +355,10 @@ export default function ReturnOrderDetail() { ) }, + ParametersPanel({ + model_type: ModelType.returnorder, + model_id: order.pk + }), AttachmentPanel({ model_type: ModelType.returnorder, model_id: order.pk diff --git a/src/frontend/src/pages/sales/SalesIndex.tsx b/src/frontend/src/pages/sales/SalesIndex.tsx index ffa1e1d5d3..0fe4b8a31c 100644 --- a/src/frontend/src/pages/sales/SalesIndex.tsx +++ b/src/frontend/src/pages/sales/SalesIndex.tsx @@ -4,6 +4,7 @@ import { IconBuildingStore, IconCalendar, IconCubeSend, + IconListDetails, IconTable, IconTruckDelivery, IconTruckReturn @@ -13,93 +14,74 @@ import { useMemo } from 'react'; import { ModelType } from '@lib/enums/ModelType'; import { UserRoles } from '@lib/enums/Roles'; import { useLocalStorage } from '@mantine/hooks'; -import SegmentedIconControl from '../../components/buttons/SegmentedIconControl'; import OrderCalendar from '../../components/calendar/OrderCalendar'; import PermissionDenied from '../../components/errors/PermissionDenied'; import { PageDetail } from '../../components/nav/PageDetail'; import { PanelGroup } from '../../components/panels/PanelGroup'; +import SegmentedControlPanel from '../../components/panels/SegmentedControlPanel'; import { useUserState } from '../../states/UserState'; import { CompanyTable } from '../../tables/company/CompanyTable'; +import ParametricCompanyTable from '../../tables/company/ParametricCompanyTable'; +import ReturnOrderParametricTable from '../../tables/sales/ReturnOrderParametricTable'; import { ReturnOrderTable } from '../../tables/sales/ReturnOrderTable'; +import SalesOrderParametricTable from '../../tables/sales/SalesOrderParametricTable'; import SalesOrderShipmentTable from '../../tables/sales/SalesOrderShipmentTable'; import { SalesOrderTable } from '../../tables/sales/SalesOrderTable'; -function SalesOrderOverview({ - view -}: { - view: string; -}) { - switch (view) { - case 'calendar': - return ( - - ); - case 'table': - default: - return ; - } -} - -function ReturnOrderOverview({ - view -}: { - view: string; -}) { - switch (view) { - case 'calendar': - return ( - - ); - case 'table': - default: - return ; - } -} - export default function SalesIndex() { const user = useUserState(); + const [customersView, setCustomersView] = useLocalStorage({ + key: 'customer-view', + defaultValue: 'table' + }); + const [salesOrderView, setSalesOrderView] = useLocalStorage({ - key: 'salesOrderView', + key: 'sales-order-view', defaultValue: 'table' }); const [returnOrderView, setReturnOrderView] = useLocalStorage({ - key: 'returnOrderView', + key: 'return-order-view', defaultValue: 'table' }); const panels = useMemo(() => { return [ - { + SegmentedControlPanel({ name: 'salesorders', label: t`Sales Orders`, icon: , - content: , - controls: ( - }, - { - value: 'calendar', - label: t`Calendar View`, - icon: - } - ]} - /> - ), - hidden: !user.hasViewRole(UserRoles.sales_order) - }, + hidden: !user.hasViewRole(UserRoles.sales_order), + selection: salesOrderView, + onChange: setSalesOrderView, + options: [ + { + value: 'table', + label: t`Table View`, + icon: , + content: + }, + { + value: 'calendar', + label: t`Calendar View`, + icon: , + content: ( + + ) + }, + { + value: 'parametric', + label: t`Parametric View`, + icon: , + content: + } + ] + }), { name: 'shipments', label: t`Pending Shipments`, @@ -112,37 +94,70 @@ export default function SalesIndex() { /> ) }, - { + SegmentedControlPanel({ name: 'returnorders', label: t`Return Orders`, icon: , - content: , - controls: ( - }, - { - value: 'calendar', - label: t`Calendar View`, - icon: - } - ]} - /> - ), - hidden: !user.hasViewRole(UserRoles.return_order) - }, - { + hidden: !user.hasViewRole(UserRoles.return_order), + selection: returnOrderView, + onChange: setReturnOrderView, + options: [ + { + value: 'table', + label: t`Table View`, + icon: , + content: + }, + { + value: 'calendar', + label: t`Calendar View`, + icon: , + content: ( + + ) + }, + { + value: 'parametric', + label: t`Parametric View`, + icon: , + content: + } + ] + }), + SegmentedControlPanel({ name: 'customers', label: t`Customers`, icon: , - content: ( - - ) - } + selection: customersView, + onChange: setCustomersView, + options: [ + { + value: 'table', + label: t`Table View`, + icon: , + content: ( + + ) + }, + { + value: 'parametric', + label: t`Parametric View`, + icon: , + content: ( + + ) + } + ] + }) ]; - }, [user, salesOrderView, returnOrderView]); + }, [user, customersView, salesOrderView, returnOrderView]); if (!user.isLoggedIn() || !user.hasViewRole(UserRoles.sales_order)) { return ; diff --git a/src/frontend/src/pages/sales/SalesOrderDetail.tsx b/src/frontend/src/pages/sales/SalesOrderDetail.tsx index bd3178fb3d..15bc26cdda 100644 --- a/src/frontend/src/pages/sales/SalesOrderDetail.tsx +++ b/src/frontend/src/pages/sales/SalesOrderDetail.tsx @@ -38,6 +38,7 @@ import AttachmentPanel from '../../components/panels/AttachmentPanel'; import NotesPanel from '../../components/panels/NotesPanel'; import type { PanelType } from '../../components/panels/Panel'; import { PanelGroup } from '../../components/panels/PanelGroup'; +import ParametersPanel from '../../components/panels/ParametersPanel'; import { RenderAddress } from '../../components/render/Company'; import { StatusRenderer } from '../../components/render/StatusRenderer'; import { formatCurrency } from '../../defaults/formatters'; @@ -427,6 +428,10 @@ export default function SalesOrderDetail() { ) }, + ParametersPanel({ + model_type: ModelType.salesorder, + model_id: order.pk + }), AttachmentPanel({ model_type: ModelType.salesorder, model_id: order.pk diff --git a/src/frontend/src/pages/sales/SalesOrderShipmentDetail.tsx b/src/frontend/src/pages/sales/SalesOrderShipmentDetail.tsx index 3353b44278..2a0954ea42 100644 --- a/src/frontend/src/pages/sales/SalesOrderShipmentDetail.tsx +++ b/src/frontend/src/pages/sales/SalesOrderShipmentDetail.tsx @@ -1,5 +1,5 @@ import { t } from '@lingui/core/macro'; -import { Alert, Grid, Skeleton, Stack, Text } from '@mantine/core'; +import { Grid, Skeleton, Stack, Text } from '@mantine/core'; import { IconBookmark, IconCircleCheck, @@ -39,8 +39,10 @@ import { RenderAddress } from '../../components/render/Company'; import { RenderUser } from '../../components/render/User'; import { formatDate } from '../../defaults/formatters'; import { + useCheckShipmentForm, useSalesOrderShipmentCompleteFields, - useSalesOrderShipmentFields + useSalesOrderShipmentFields, + useUncheckShipmentForm } from '../../forms/SalesOrderForms'; import { useCreateApiFormModal, @@ -70,11 +72,7 @@ export default function SalesOrderShipmentDetail() { } }); - const { - instance: customer, - instanceQuery: customerQuery, - refreshInstance: refreshCustomer - } = useInstance({ + const { instance: customer, instanceQuery: customerQuery } = useInstance({ endpoint: ApiEndpoints.company_list, pk: shipment.order_detail?.customer, hasPrimaryKey: true @@ -320,44 +318,14 @@ export default function SalesOrderShipmentDetail() { onFormSuccess: refreshShipment }); - const checkShipment = useEditApiFormModal({ - url: ApiEndpoints.sales_order_shipment_list, - pk: shipment.pk, - title: t`Check Shipment`, - preFormContent: ( - } title={t`Check Shipment`}> - {t`Marking the shipment as checked indicates that you have verified that all items included in this shipment are correct`} - - ), - fetchInitialData: false, - fields: { - checked_by: { - hidden: true, - value: userId - } - }, - successMessage: t`Shipment marked as checked`, - onFormSuccess: refreshShipment + const checkShipment = useCheckShipmentForm({ + shipmentId: shipment.pk, + onSuccess: refreshShipment }); - const uncheckShipment = useEditApiFormModal({ - url: ApiEndpoints.sales_order_shipment_list, - pk: shipment.pk, - title: t`Uncheck Shipment`, - preFormContent: ( - } title={t`Uncheck Shipment`}> - {t`Marking the shipment as unchecked indicates that the shipment requires further verification`} - - ), - fetchInitialData: false, - fields: { - checked_by: { - hidden: true, - value: null - } - }, - successMessage: t`Shipment marked as unchecked`, - onFormSuccess: refreshShipment + const uncheckShipment = useUncheckShipmentForm({ + shipmentId: shipment.pk, + onSuccess: refreshShipment }); const shipmentBadges = useMemo(() => { diff --git a/src/frontend/src/tables/build/BuildLineTable.tsx b/src/frontend/src/tables/build/BuildLineTable.tsx index 976f977c62..a247b69018 100644 --- a/src/frontend/src/tables/build/BuildLineTable.tsx +++ b/src/frontend/src/tables/build/BuildLineTable.tsx @@ -972,8 +972,10 @@ export default function BuildLineTable({ ...params, build: build.pk, assembly_detail: false, + bom_item_detail: true, category_detail: true, - part_detail: true + part_detail: true, + allocations: true }, tableActions: tableActions, tableFilters: tableFilters, diff --git a/src/frontend/src/tables/build/BuildOrderParametricTable.tsx b/src/frontend/src/tables/build/BuildOrderParametricTable.tsx new file mode 100644 index 0000000000..d9f85cb295 --- /dev/null +++ b/src/frontend/src/tables/build/BuildOrderParametricTable.tsx @@ -0,0 +1,40 @@ +import { ApiEndpoints, ModelType } from '@lib/index'; +import type { TableFilter } from '@lib/types/Filters'; +import type { TableColumn } from '@lib/types/Tables'; +import { type ReactNode, useMemo } from 'react'; +import { DescriptionColumn, ReferenceColumn } from '../ColumnRenderers'; +import { OrderStatusFilter, OutstandingFilter } from '../Filter'; +import ParametricDataTable from '../general/ParametricDataTable'; + +export default function BuildOrderParametricTable({ + queryParams +}: { + queryParams?: Record; +}): ReactNode { + const customColumns: TableColumn[] = useMemo(() => { + return [ + ReferenceColumn({ + switchable: false + }), + DescriptionColumn({ + accessor: 'title' + }) + ]; + }, []); + + const customFilters: TableFilter[] = useMemo(() => { + return [OutstandingFilter(), OrderStatusFilter({ model: ModelType.build })]; + }, []); + + return ( + + ); +} diff --git a/src/frontend/src/tables/build/BuildOutputTable.tsx b/src/frontend/src/tables/build/BuildOutputTable.tsx index 319db2476f..35f86c6993 100644 --- a/src/frontend/src/tables/build/BuildOutputTable.tsx +++ b/src/frontend/src/tables/build/BuildOutputTable.tsx @@ -206,7 +206,9 @@ export default function BuildOutputTable({ .get(apiUrl(ApiEndpoints.build_line_list), { params: { build: buildId, - tracked: true + tracked: true, + bom_item_detail: true, + allocations: true } }) .then((response) => response.data); diff --git a/src/frontend/src/tables/company/ParametricCompanyTable.tsx b/src/frontend/src/tables/company/ParametricCompanyTable.tsx new file mode 100644 index 0000000000..a309b44790 --- /dev/null +++ b/src/frontend/src/tables/company/ParametricCompanyTable.tsx @@ -0,0 +1,39 @@ +import { ApiEndpoints } from '@lib/enums/ApiEndpoints'; +import { ModelType } from '@lib/enums/ModelType'; +import type { TableColumn } from '@lib/types/Tables'; +import { t } from '@lingui/core/macro'; +import { useMemo } from 'react'; +import { CompanyColumn, DescriptionColumn } from '../ColumnRenderers'; +import ParametricDataTable from '../general/ParametricDataTable'; + +export default function ParametricCompanyTable({ + queryParams +}: { + queryParams?: any; +}) { + const customColumns: TableColumn[] = useMemo(() => { + return [ + { + accessor: 'name', + title: t`Company`, + sortable: true, + switchable: false, + render: (record: any) => { + return ; + } + }, + DescriptionColumn({}) + ]; + }, []); + + return ( + + ); +} diff --git a/src/frontend/src/tables/general/ParameterTable.tsx b/src/frontend/src/tables/general/ParameterTable.tsx new file mode 100644 index 0000000000..d7654e878a --- /dev/null +++ b/src/frontend/src/tables/general/ParameterTable.tsx @@ -0,0 +1,276 @@ +import { + ApiEndpoints, + ModelType, + RowDeleteAction, + RowEditAction, + YesNoButton, + apiUrl, + formatDecimal +} from '@lib/index'; +import type { TableFilter } from '@lib/types/Filters'; +import type { TableColumn } from '@lib/types/Tables'; +import { t } from '@lingui/core/macro'; +import { IconFileUpload, IconPlus } from '@tabler/icons-react'; +import { useCallback, useMemo, useState } from 'react'; +import ImporterDrawer from '../../components/importer/ImporterDrawer'; +import { ActionDropdown } from '../../components/items/ActionDropdown'; +import { useParameterFields } from '../../forms/CommonForms'; +import { dataImporterSessionFields } from '../../forms/ImporterForms'; +import { + useCreateApiFormModal, + useDeleteApiFormModal, + useEditApiFormModal +} from '../../hooks/UseForm'; +import { useTable } from '../../hooks/UseTable'; +import { useUserState } from '../../states/UserState'; +import { + DateColumn, + DescriptionColumn, + NoteColumn, + UserColumn +} from '../ColumnRenderers'; +import { UserFilter } from '../Filter'; +import { InvenTreeTable } from '../InvenTreeTable'; +import { TableHoverCard } from '../TableHoverCard'; + +/** + * Construct a table listing parameters + */ +export function ParameterTable({ + modelType, + modelId, + allowEdit = true +}: { + modelType: ModelType; + modelId: number; + allowEdit?: boolean; +}) { + const table = useTable('parameters'); + const user = useUserState(); + + const tableColumns: TableColumn[] = useMemo(() => { + return [ + { + accessor: 'template_detail.name', + switchable: false, + sortable: true, + ordering: 'name' + }, + DescriptionColumn({ + accessor: 'template_detail.description' + }), + { + accessor: 'data', + switchable: false, + sortable: true, + render: (record) => { + const template = record.template_detail; + + if (template?.checkbox) { + return ; + } + + const extra: any[] = []; + + if ( + template.units && + record.data_numeric && + record.data_numeric != record.data + ) { + const numeric = formatDecimal(record.data_numeric, { digits: 15 }); + extra.push(`${numeric} [${template.units}]`); + } + + return ( + + ); + } + }, + { + accessor: 'template_detail.units', + ordering: 'units', + sortable: true + }, + NoteColumn({}), + DateColumn({ + accessor: 'updated', + title: t`Last Updated`, + sortable: true, + switchable: true + }), + UserColumn({ + accessor: 'updated_by_detail', + ordering: 'updated_by', + title: t`Updated By` + }) + ]; + }, [user]); + + const tableFilters: TableFilter[] = useMemo(() => { + return [ + { + name: 'enabled', + label: 'Enabled', + description: t`Show parameters for enabled templates`, + type: 'boolean' + }, + UserFilter({ + name: 'updated_by', + label: t`Updated By`, + description: t`Filter by user who last updated the parameter` + }) + ]; + }, []); + + const [selectedParameter, setSelectedParameter] = useState( + undefined + ); + + const [importOpened, setImportOpened] = useState(false); + + const [selectedSession, setSelectedSession] = useState( + undefined + ); + + const importSessionFields = useMemo(() => { + const fields = dataImporterSessionFields({ + modelType: ModelType.parameter + }); + + fields.field_overrides.value = { + model_type: modelType, + model_id: modelId + }; + + return fields; + }, [modelType, modelId]); + + const importParameters = useCreateApiFormModal({ + url: ApiEndpoints.import_session_list, + title: t`Import Parameters`, + fields: importSessionFields, + onFormSuccess: (response: any) => { + setSelectedSession(response.pk); + setImportOpened(true); + } + }); + + const newParameter = useCreateApiFormModal({ + url: ApiEndpoints.parameter_list, + title: t`Add Parameter`, + fields: useParameterFields({ modelType, modelId }), + initialData: { + data: '' + }, + table: table + }); + + const editParameter = useEditApiFormModal({ + url: ApiEndpoints.parameter_list, + pk: selectedParameter?.pk, + title: t`Edit Parameter`, + fields: useParameterFields({ modelType, modelId }), + table: table + }); + + const deleteParameter = useDeleteApiFormModal({ + url: ApiEndpoints.parameter_list, + pk: selectedParameter?.pk, + title: t`Delete Parameter`, + table: table + }); + + const tableActions = useMemo(() => { + return [ + } + hidden={!user.hasAddPermission(modelType)} + actions={[ + { + name: t`Create Parameter`, + icon: , + tooltip: t`Create a new parameter`, + onClick: () => { + setSelectedParameter(undefined); + newParameter.open(); + } + }, + { + name: t`Import from File`, + icon: , + tooltip: t`Import parameters from a file`, + onClick: () => { + importParameters.open(); + } + } + ]} + /> + ]; + }, [allowEdit, user]); + + const rowActions = useCallback( + (record: any) => { + return [ + RowEditAction({ + tooltip: t`Edit Parameter`, + onClick: () => { + setSelectedParameter(record); + editParameter.open(); + }, + hidden: !user.hasChangePermission(modelType) + }), + RowDeleteAction({ + tooltip: t`Delete Parameter`, + onClick: () => { + setSelectedParameter(record); + deleteParameter.open(); + }, + hidden: !user.hasDeletePermission(modelType) + }) + ]; + }, + [user] + ); + + return ( + <> + {newParameter.modal} + {editParameter.modal} + {deleteParameter.modal} + {importParameters.modal} + + { + setSelectedSession(undefined); + setImportOpened(false); + table.refreshTable(); + }} + /> + + ); +} diff --git a/src/frontend/src/tables/part/PartParameterTemplateTable.tsx b/src/frontend/src/tables/general/ParameterTemplateTable.tsx similarity index 66% rename from src/frontend/src/tables/part/PartParameterTemplateTable.tsx rename to src/frontend/src/tables/general/ParameterTemplateTable.tsx index c9961422be..fbf8103664 100644 --- a/src/frontend/src/tables/part/PartParameterTemplateTable.tsx +++ b/src/frontend/src/tables/general/ParameterTemplateTable.tsx @@ -1,19 +1,18 @@ -import { t } from '@lingui/core/macro'; -import { useCallback, useMemo, useState } from 'react'; - -import { AddItemButton } from '@lib/components/AddItemButton'; import { - type RowAction, + AddItemButton, + ApiEndpoints, + type ApiFormFieldSet, RowDeleteAction, RowDuplicateAction, - RowEditAction -} from '@lib/components/RowActions'; -import { ApiEndpoints } from '@lib/enums/ApiEndpoints'; -import { UserRoles } from '@lib/enums/Roles'; -import { apiUrl } from '@lib/functions/Api'; + RowEditAction, + UserRoles, + apiUrl +} from '@lib/index'; import type { TableFilter } from '@lib/types/Filters'; -import type { ApiFormFieldSet } from '@lib/types/Forms'; -import type { TableColumn } from '@lib/types/Tables'; +import type { RowAction, TableColumn } from '@lib/types/Tables'; +import { t } from '@lingui/core/macro'; +import { useCallback, useMemo, useState } from 'react'; +import { useFilters } from '../../hooks/UseFilter'; import { useCreateApiFormModal, useDeleteApiFormModal, @@ -24,11 +23,114 @@ import { useUserState } from '../../states/UserState'; import { BooleanColumn, DescriptionColumn } from '../ColumnRenderers'; import { InvenTreeTable } from '../InvenTreeTable'; -export default function PartParameterTemplateTable() { - const table = useTable('part-parameter-templates'); - +/** + * Render a table of ParameterTemplate objects + */ +export default function ParameterTemplateTable() { + const table = useTable('parameter-templates'); const user = useUserState(); + const parameterTemplateFields: ApiFormFieldSet = useMemo(() => { + return { + name: {}, + description: {}, + units: {}, + model_type: {}, + choices: {}, + checkbox: {}, + selectionlist: {}, + enabled: {} + }; + }, []); + + const newTemplate = useCreateApiFormModal({ + url: ApiEndpoints.parameter_template_list, + title: t`Add Parameter Template`, + table: table, + fields: useMemo( + () => ({ + ...parameterTemplateFields + }), + [parameterTemplateFields] + ) + }); + + const [selectedTemplate, setSelectedTemplate] = useState( + undefined + ); + + const duplicateTemplate = useCreateApiFormModal({ + url: ApiEndpoints.parameter_template_list, + title: t`Duplicate Parameter Template`, + table: table, + fields: useMemo( + () => ({ + ...parameterTemplateFields + }), + [parameterTemplateFields] + ), + initialData: selectedTemplate + }); + + const deleteTemplate = useDeleteApiFormModal({ + url: ApiEndpoints.parameter_template_list, + pk: selectedTemplate?.pk, + title: t`Delete Parameter Template`, + table: table + }); + + const editTemplate = useEditApiFormModal({ + url: ApiEndpoints.parameter_template_list, + pk: selectedTemplate?.pk, + title: t`Edit Parameter Template`, + table: table, + fields: useMemo( + () => ({ + ...parameterTemplateFields + }), + [parameterTemplateFields] + ) + }); + + // Callback for row actions + const rowActions = useCallback( + (record: any): RowAction[] => { + return [ + RowEditAction({ + onClick: () => { + setSelectedTemplate(record); + editTemplate.open(); + } + }), + RowDuplicateAction({ + onClick: () => { + setSelectedTemplate(record); + duplicateTemplate.open(); + } + }), + RowDeleteAction({ + onClick: () => { + setSelectedTemplate(record); + deleteTemplate.open(); + } + }) + ]; + }, + [user] + ); + + const modelTypeFilters = useFilters({ + url: apiUrl(ApiEndpoints.parameter_template_list), + method: 'OPTIONS', + accessor: 'data.actions.POST.model_type.choices', + transform: (item: any) => { + return { + value: item.value, + label: item.display_name + }; + } + }); + const tableFilters: TableFilter[] = useMemo(() => { return [ { @@ -45,9 +147,20 @@ export default function PartParameterTemplateTable() { name: 'has_units', label: t`Has Units`, description: t`Show templates with units` + }, + { + name: 'enabled', + label: t`Enabled`, + description: t`Show enabled templates` + }, + { + name: 'model_type', + label: t`Model Type`, + description: t`Filter by model type`, + choices: modelTypeFilters.choices } ]; - }, []); + }, [modelTypeFilters.choices]); const tableColumns: TableColumn[] = useMemo(() => { return [ @@ -56,109 +169,27 @@ export default function PartParameterTemplateTable() { sortable: true, switchable: false }, - { - accessor: 'parts', - sortable: true, - switchable: true - }, + DescriptionColumn({}), { accessor: 'units', sortable: true }, - DescriptionColumn({}), + { + accessor: 'model_type' + }, BooleanColumn({ accessor: 'checkbox' }), { accessor: 'choices' - } + }, + BooleanColumn({ + accessor: 'enabled', + title: t`Enabled` + }) ]; }, []); - const partParameterTemplateFields: ApiFormFieldSet = useMemo(() => { - return { - name: {}, - description: {}, - units: {}, - choices: {}, - checkbox: {}, - selectionlist: {} - }; - }, []); - - const newTemplate = useCreateApiFormModal({ - url: ApiEndpoints.part_parameter_template_list, - title: t`Add Parameter Template`, - table: table, - fields: useMemo( - () => ({ ...partParameterTemplateFields }), - [partParameterTemplateFields] - ) - }); - - const [selectedTemplate, setSelectedTemplate] = useState( - undefined - ); - - const duplicateTemplate = useCreateApiFormModal({ - url: ApiEndpoints.part_parameter_template_list, - title: t`Duplicate Parameter Template`, - table: table, - fields: useMemo( - () => ({ ...partParameterTemplateFields }), - [partParameterTemplateFields] - ), - initialData: selectedTemplate - }); - - const editTemplate = useEditApiFormModal({ - url: ApiEndpoints.part_parameter_template_list, - pk: selectedTemplate?.pk, - title: t`Edit Parameter Template`, - table: table, - fields: useMemo( - () => ({ ...partParameterTemplateFields }), - [partParameterTemplateFields] - ) - }); - - const deleteTemplate = useDeleteApiFormModal({ - url: ApiEndpoints.part_parameter_template_list, - pk: selectedTemplate?.pk, - title: t`Delete Parameter Template`, - table: table - }); - - // Callback for row actions - const rowActions = useCallback( - (record: any): RowAction[] => { - return [ - RowEditAction({ - hidden: !user.hasChangeRole(UserRoles.part), - onClick: () => { - setSelectedTemplate(record); - editTemplate.open(); - } - }), - RowDuplicateAction({ - hidden: !user.hasAddRole(UserRoles.part), - onClick: () => { - setSelectedTemplate(record); - duplicateTemplate.open(); - } - }), - RowDeleteAction({ - hidden: !user.hasDeleteRole(UserRoles.part), - onClick: () => { - setSelectedTemplate(record); - deleteTemplate.open(); - } - }) - ]; - }, - [user] - ); - const tableActions = useMemo(() => { return [ diff --git a/src/frontend/src/tables/general/ParametricDataTable.tsx b/src/frontend/src/tables/general/ParametricDataTable.tsx new file mode 100644 index 0000000000..279f68e90b --- /dev/null +++ b/src/frontend/src/tables/general/ParametricDataTable.tsx @@ -0,0 +1,442 @@ +import { cancelEvent } from '@lib/functions/Events'; +import { + ApiEndpoints, + type ApiFormFieldSet, + type ModelType, + UserRoles, + YesNoButton, + apiUrl, + formatDecimal, + getDetailUrl, + navigateToLink +} from '@lib/index'; +import type { TableFilter } from '@lib/types/Filters'; +import type { TableColumn } from '@lib/types/Tables'; +import { t } from '@lingui/core/macro'; +import { Group } from '@mantine/core'; +import { useHover } from '@mantine/hooks'; +import { IconCirclePlus } from '@tabler/icons-react'; +import { useQuery } from '@tanstack/react-query'; +import { type ReactNode, useCallback, useMemo, useState } from 'react'; +import { useNavigate } from 'react-router-dom'; +import { useApi } from '../../contexts/ApiContext'; +import { useParameterFields } from '../../forms/CommonForms'; +import { + useCreateApiFormModal, + useEditApiFormModal +} from '../../hooks/UseForm'; +import { useTable } from '../../hooks/UseTable'; +import { useUserState } from '../../states/UserState'; +import { InvenTreeTable } from '../InvenTreeTable'; +import { TableHoverCard } from '../TableHoverCard'; +import { + PARAMETER_FILTER_OPERATORS, + ParameterFilter +} from './ParametricDataTableFilters'; + +// Render an individual parameter cell +function ParameterCell({ + record, + template, + canEdit +}: Readonly<{ + record: any; + template: any; + canEdit: boolean; +}>) { + const { hovered, ref } = useHover(); + + // Find matching template parameter + const parameter = useMemo(() => { + return record.parameters?.find((p: any) => p.template == template.pk); + }, [record, template]); + + const extra: any[] = []; + + // Format the value for display + const value: ReactNode = useMemo(() => { + let v: any = parameter?.data; + + // Handle boolean values + if (template?.checkbox && v != undefined) { + v = ; + } + + return v; + }, [parameter, template]); + + if ( + template.units && + parameter && + parameter.data_numeric && + parameter.data_numeric != parameter.data + ) { + const numeric = formatDecimal(parameter.data_numeric, { digits: 15 }); + extra.push(`${numeric} [${template.units}]`); + } + + if (hovered && canEdit) { + extra.push(t`Click to edit`); + } + + return ( +
+ + + + + +
+ ); +} + +/** + * A table which displays parametric data for generic model types. + * The table can be extended by passing in additional column, filters, and actions. + */ +export default function ParametricDataTable({ + modelType, + endpoint, + queryParams, + customFilters, + customColumns +}: { + modelType: ModelType; + endpoint: ApiEndpoints | string; + queryParams?: Record; + customFilters?: TableFilter[]; + customColumns?: TableColumn[]; +}) { + const api = useApi(); + const table = useTable(`parametric-data-${modelType}`); + const user = useUserState(); + const navigate = useNavigate(); + + // Fetch all active parameter templates for the given model type + const parameterTemplates = useQuery({ + queryKey: ['parameter-templates', modelType], + queryFn: async () => { + return api + .get(apiUrl(ApiEndpoints.parameter_template_list), { + params: { + active: true, + for_model: modelType, + exists_for_model: modelType + } + }) + .then((response) => response.data); + }, + refetchOnMount: true + }); + + /* Store filters against selected part parameters. + * These are stored in the format: + * { + * parameter_1: { + * '=': 'value1', + * '<': 'value2', + * ... + * }, + * parameter_2: { + * '=': 'value3', + * }, + * ... + * } + * + * Which allows multiple filters to be applied against each parameter template. + */ + const [parameterFilters, setParameterFilters] = useState({}); + + /* Remove filters for a specific parameter template + * - If no operator is specified, remove all filters for this template + * - If an operator is specified, remove filters for that operator only + */ + const clearParameterFilter = useCallback( + (templateId: number, operator?: string) => { + const filterName = `parameter_${templateId}`; + + if (!operator) { + // If no operator is specified, remove all filters for this template + setParameterFilters((prev: any) => { + const newFilters = { ...prev }; + // Remove any filters that match the template ID + Object.keys(newFilters).forEach((key: string) => { + if (key == filterName) { + delete newFilters[key]; + } + }); + return newFilters; + }); + + return; + } + + // An operator is specified, so we remove filters for that operator only + setParameterFilters((prev: any) => { + const filters = { ...prev }; + + const paramFilters = filters[filterName] || {}; + + if (paramFilters[operator] !== undefined) { + // Remove the specific operator filter + delete paramFilters[operator]; + } + + return { + ...filters, + [filterName]: paramFilters + }; + }); + + table.refreshTable(); + }, + [setParameterFilters, table.refreshTable] + ); + + /** + * Add (or update) a filter for a specific parameter template. + * @param templateId - The ID of the parameter template to filter on. + * @param value - The value to filter by. + * @param operator - The operator to use for filtering (e.g., '=', '<', '>', etc.). + */ + const addParameterFilter = useCallback( + (templateId: number, value: string, operator: string) => { + const filterName = `parameter_${templateId}`; + + const filterValue = value?.toString().trim() ?? ''; + + if (filterValue.length > 0) { + setParameterFilters((prev: any) => { + const filters = { ...prev }; + const paramFilters = filters[filterName] || {}; + + paramFilters[operator] = filterValue; + + return { + ...filters, + [filterName]: paramFilters + }; + }); + + table.refreshTable(); + } + }, + [setParameterFilters, clearParameterFilter, table.refreshTable] + ); + + // Construct the query filters for the table based on the parameter filters + const parametricQueryFilters = useMemo(() => { + const filters: Record = {}; + + Object.keys(parameterFilters).forEach((key: string) => { + const paramFilters: any = parameterFilters[key]; + + Object.keys(paramFilters).forEach((operator: string) => { + const name = `${key}${PARAMETER_FILTER_OPERATORS[operator] || ''}`; + const value = paramFilters[operator]; + + filters[name] = value; + }); + }); + + return filters; + }, [parameterFilters]); + + const [selectedInstance, setSelectedInstance] = useState(-1); + const [selectedTemplate, setSelectedTemplate] = useState(null); + const [selectedParameter, setSelectedParameter] = useState(-1); + + const parameterFields: ApiFormFieldSet = useParameterFields({ + modelType: modelType, + modelId: selectedInstance + }); + + const addParameter = useCreateApiFormModal({ + url: ApiEndpoints.parameter_list, + title: t`Add Parameter`, + fields: useMemo(() => ({ ...parameterFields }), [parameterFields]), + focus: 'data', + onFormSuccess: (parameter: any) => { + updateParameterRecord(selectedInstance, parameter); + + // Ensure that the parameter template is included in the table + const template = parameterTemplates.data.find( + (t: any) => t.pk == parameter.template + ); + + if (!template) { + // Reload the parameter templates + parameterTemplates.refetch(); + } + }, + initialData: { + part: selectedInstance, + template: selectedTemplate + } + }); + + const editParameter = useEditApiFormModal({ + url: ApiEndpoints.parameter_list, + title: t`Edit Parameter`, + pk: selectedParameter, + fields: useMemo(() => ({ ...parameterFields }), [parameterFields]), + focus: 'data', + onFormSuccess: (parameter: any) => { + updateParameterRecord(selectedInstance, parameter); + } + }); + + // Update a single parameter record in the table + const updateParameterRecord = useCallback( + (part: number, parameter: any) => { + const records = table.records; + const recordIndex = records.findIndex((record: any) => record.pk == part); + + if (recordIndex < 0) { + // No matching part: reload the entire table + table.refreshTable(); + return; + } + + const parameterIndex = records[recordIndex].parameters.findIndex( + (p: any) => p.pk == parameter.pk + ); + + if (parameterIndex < 0) { + // No matching parameter - append new parameter + records[recordIndex].parameters.push(parameter); + } else { + records[recordIndex].parameters[parameterIndex] = parameter; + } + + table.updateRecord(records[recordIndex]); + }, + [table.records, table.updateRecord] + ); + + const parameterColumns: TableColumn[] = useMemo(() => { + const data = parameterTemplates?.data || []; + + return data.map((template: any) => { + let title = template.name; + + if (template.units) { + title += ` [${template.units}]`; + } + + const filters = parameterFilters[`parameter_${template.pk}`] || {}; + + return { + accessor: `parameter_${template.pk}`, + title: title, + sortable: true, + extra: { + template: template.pk + }, + render: (record: any) => ( + + ), + filtering: Object.keys(filters).length > 0, + filter: ({ close }: { close: () => void }) => { + return ( + + ); + } + }; + }); + }, [user, parameterTemplates.data, parameterFilters]); + + // Callback function when a parameter cell is clicked + const onParameterClick = useCallback((template: number, instance: any) => { + setSelectedTemplate(template); + setSelectedInstance(instance.pk); + const parameter = instance.parameters?.find( + (p: any) => p.template == template + ); + + if (parameter) { + setSelectedParameter(parameter.pk); + editParameter.open(); + } else { + addParameter.open(); + } + }, []); + + const tableFilters: TableFilter[] = useMemo(() => { + return [...(customFilters || [])]; + }, [customFilters]); + + const tableColumns: TableColumn[] = useMemo(() => { + return [...(customColumns || []), ...parameterColumns]; + }, [customColumns, parameterColumns]); + + const rowActions = useCallback( + (record: any) => { + return [ + { + title: t`Add Parameter`, + icon: , + color: 'green', + hidden: !user.hasAddPermission(modelType), + onClick: () => { + setSelectedInstance(record.pk); + setSelectedTemplate(null); + addParameter.open(); + } + } + ]; + }, + [modelType, user] + ); + + return ( + <> + {addParameter.modal} + {editParameter.modal} + { + cancelEvent(event); + + // Is this a "parameter" cell? + if (column?.accessor?.toString()?.startsWith('parameter_')) { + const col = column as any; + onParameterClick(col.extra.template, record); + } else if (record?.pk) { + // Navigate through to the detail page + const url = getDetailUrl(modelType, record.pk); + navigateToLink(url, navigate, event); + } + } + }} + /> + + ); +} diff --git a/src/frontend/src/tables/part/ParametricPartTableFilters.tsx b/src/frontend/src/tables/general/ParametricDataTableFilters.tsx similarity index 100% rename from src/frontend/src/tables/part/ParametricPartTableFilters.tsx rename to src/frontend/src/tables/general/ParametricDataTableFilters.tsx diff --git a/src/frontend/src/tables/machine/MachineTypeTable.tsx b/src/frontend/src/tables/machine/MachineTypeTable.tsx index f7496da4d7..c9aebc29e8 100644 --- a/src/frontend/src/tables/machine/MachineTypeTable.tsx +++ b/src/frontend/src/tables/machine/MachineTypeTable.tsx @@ -103,9 +103,7 @@ export function MachineDriverTable({ function MachineTypeDrawer({ machineTypeSlug }: Readonly<{ machineTypeSlug: string }>) { - const navigate = useNavigate(); - - const { machineTypes, refresh, isFetching } = useMachineTypeDriver({ + const { machineTypes, isFetching } = useMachineTypeDriver({ includeDrivers: false }); const machineType = useMemo( diff --git a/src/frontend/src/tables/part/ParametricPartTable.tsx b/src/frontend/src/tables/part/ParametricPartTable.tsx index 4203fdd96f..f99e3ee668 100644 --- a/src/frontend/src/tables/part/ParametricPartTable.tsx +++ b/src/frontend/src/tables/part/ParametricPartTable.tsx @@ -1,353 +1,18 @@ -import { t } from '@lingui/core/macro'; -import { Group } from '@mantine/core'; -import { useHover } from '@mantine/hooks'; -import { useQuery } from '@tanstack/react-query'; -import { type ReactNode, useCallback, useMemo, useState } from 'react'; -import { useNavigate } from 'react-router-dom'; - -import { YesNoButton } from '@lib/components/YesNoButton'; import { ApiEndpoints } from '@lib/enums/ApiEndpoints'; import { ModelType } from '@lib/enums/ModelType'; -import { UserRoles } from '@lib/enums/Roles'; -import { apiUrl } from '@lib/functions/Api'; -import { cancelEvent } from '@lib/functions/Events'; -import { getDetailUrl } from '@lib/functions/Navigation'; -import { navigateToLink } from '@lib/functions/Navigation'; import type { TableFilter } from '@lib/types/Filters'; -import type { ApiFormFieldSet } from '@lib/types/Forms'; import type { TableColumn } from '@lib/types/Tables'; -import { useApi } from '../../contexts/ApiContext'; -import { formatDecimal } from '../../defaults/formatters'; -import { usePartParameterFields } from '../../forms/PartForms'; -import { - useCreateApiFormModal, - useEditApiFormModal -} from '../../hooks/UseForm'; -import { useTable } from '../../hooks/UseTable'; -import { useUserState } from '../../states/UserState'; +import { t } from '@lingui/core/macro'; +import { useMemo } from 'react'; import { DescriptionColumn, PartColumn } from '../ColumnRenderers'; -import { InvenTreeTable } from '../InvenTreeTable'; -import { TableHoverCard } from '../TableHoverCard'; -import { - PARAMETER_FILTER_OPERATORS, - ParameterFilter -} from './ParametricPartTableFilters'; - -// Render an individual parameter cell -function ParameterCell({ - record, - template, - canEdit -}: Readonly<{ - record: any; - template: any; - canEdit: boolean; -}>) { - const { hovered, ref } = useHover(); - - // Find matching template parameter - const parameter = useMemo(() => { - return record.parameters?.find((p: any) => p.template == template.pk); - }, [record, template]); - - const extra: any[] = []; - - // Format the value for display - const value: ReactNode = useMemo(() => { - let v: any = parameter?.data; - - // Handle boolean values - if (template?.checkbox && v != undefined) { - v = ; - } - - return v; - }, [parameter, template]); - - if ( - template.units && - parameter && - parameter.data_numeric && - parameter.data_numeric != parameter.data - ) { - const numeric = formatDecimal(parameter.data_numeric, { digits: 15 }); - extra.push(`${numeric} [${template.units}]`); - } - - if (hovered && canEdit) { - extra.push(t`Click to edit`); - } - - return ( -
- - - - - -
- ); -} +import ParametricDataTable from '../general/ParametricDataTable'; export default function ParametricPartTable({ categoryId }: Readonly<{ categoryId?: any; }>) { - const api = useApi(); - const table = useTable('parametric-parts'); - const user = useUserState(); - const navigate = useNavigate(); - - const categoryParameters = useQuery({ - queryKey: ['category-parameters', categoryId], - queryFn: async () => { - return api - .get(apiUrl(ApiEndpoints.part_parameter_template_list), { - params: { - category: categoryId - } - }) - .then((response) => response.data); - }, - refetchOnMount: true - }); - - /* Store filters against selected part parameters. - * These are stored in the format: - * { - * parameter_1: { - * '=': 'value1', - * '<': 'value2', - * ... - * }, - * parameter_2: { - * '=': 'value3', - * }, - * ... - * } - * - * Which allows multiple filters to be applied against each parameter template. - */ - const [parameterFilters, setParameterFilters] = useState({}); - - /* Remove filters for a specific parameter template - * - If no operator is specified, remove all filters for this template - * - If an operator is specified, remove filters for that operator only - */ - const clearParameterFilter = useCallback( - (templateId: number, operator?: string) => { - const filterName = `parameter_${templateId}`; - - if (!operator) { - // If no operator is specified, remove all filters for this template - setParameterFilters((prev: any) => { - const newFilters = { ...prev }; - // Remove any filters that match the template ID - Object.keys(newFilters).forEach((key: string) => { - if (key == filterName) { - delete newFilters[key]; - } - }); - return newFilters; - }); - - return; - } - - // An operator is specified, so we remove filters for that operator only - setParameterFilters((prev: any) => { - const filters = { ...prev }; - - const paramFilters = filters[filterName] || {}; - - if (paramFilters[operator] !== undefined) { - // Remove the specific operator filter - delete paramFilters[operator]; - } - - return { - ...filters, - [filterName]: paramFilters - }; - }); - - table.refreshTable(); - }, - [setParameterFilters, table.refreshTable] - ); - - /** - * Add (or update) a filter for a specific parameter template. - * @param templateId - The ID of the parameter template to filter on. - * @param value - The value to filter by. - * @param operator - The operator to use for filtering (e.g., '=', '<', '>', etc.). - */ - const addParameterFilter = useCallback( - (templateId: number, value: string, operator: string) => { - const filterName = `parameter_${templateId}`; - - const filterValue = value?.toString().trim() ?? ''; - - if (filterValue.length > 0) { - setParameterFilters((prev: any) => { - const filters = { ...prev }; - const paramFilters = filters[filterName] || {}; - - paramFilters[operator] = filterValue; - - return { - ...filters, - [filterName]: paramFilters - }; - }); - - table.refreshTable(); - } - }, - [setParameterFilters, clearParameterFilter, table.refreshTable] - ); - - // Construct the query filters for the table based on the parameter filters - const parametricQueryFilters = useMemo(() => { - const filters: Record = {}; - - Object.keys(parameterFilters).forEach((key: string) => { - const paramFilters: any = parameterFilters[key]; - - Object.keys(paramFilters).forEach((operator: string) => { - const name = `${key}${PARAMETER_FILTER_OPERATORS[operator] || ''}`; - const value = paramFilters[operator]; - - filters[name] = value; - }); - }); - - return filters; - }, [parameterFilters]); - - const [selectedPart, setSelectedPart] = useState(0); - const [selectedTemplate, setSelectedTemplate] = useState(0); - const [selectedParameter, setSelectedParameter] = useState(0); - - const partParameterFields: ApiFormFieldSet = usePartParameterFields({ - editTemplate: false - }); - - const addParameter = useCreateApiFormModal({ - url: ApiEndpoints.part_parameter_list, - title: t`Add Part Parameter`, - fields: useMemo(() => ({ ...partParameterFields }), [partParameterFields]), - focus: 'data', - onFormSuccess: (parameter: any) => { - updateParameterRecord(selectedPart, parameter); - }, - initialData: { - part: selectedPart, - template: selectedTemplate - } - }); - - const editParameter = useEditApiFormModal({ - url: ApiEndpoints.part_parameter_list, - title: t`Edit Part Parameter`, - pk: selectedParameter, - fields: useMemo(() => ({ ...partParameterFields }), [partParameterFields]), - focus: 'data', - onFormSuccess: (parameter: any) => { - updateParameterRecord(selectedPart, parameter); - } - }); - - // Update a single parameter record in the table - const updateParameterRecord = useCallback( - (part: number, parameter: any) => { - const records = table.records; - const partIndex = records.findIndex((record: any) => record.pk == part); - - if (partIndex < 0) { - // No matching part: reload the entire table - table.refreshTable(); - return; - } - - const parameterIndex = records[partIndex].parameters.findIndex( - (p: any) => p.pk == parameter.pk - ); - - if (parameterIndex < 0) { - // No matching parameter - append new parameter - records[partIndex].parameters.push(parameter); - } else { - records[partIndex].parameters[parameterIndex] = parameter; - } - - table.updateRecord(records[partIndex]); - }, - [table.records, table.updateRecord] - ); - - const parameterColumns: TableColumn[] = useMemo(() => { - const data = categoryParameters?.data || []; - - return data.map((template: any) => { - let title = template.name; - - if (template.units) { - title += ` [${template.units}]`; - } - - const filters = parameterFilters[`parameter_${template.pk}`] || {}; - - return { - accessor: `parameter_${template.pk}`, - title: title, - sortable: true, - extra: { - template: template.pk - }, - render: (record: any) => ( - - ), - filtering: Object.keys(filters).length > 0, - filter: ({ close }: { close: () => void }) => { - return ( - - ); - } - }; - }); - }, [user, categoryParameters.data, parameterFilters]); - - const onParameterClick = useCallback((template: number, part: any) => { - setSelectedTemplate(template); - setSelectedPart(part.pk); - const parameter = part.parameters?.find((p: any) => p.template == template); - - if (parameter) { - setSelectedParameter(parameter.pk); - editParameter.open(); - } else { - addParameter.open(); - } - }, []); - - const tableFilters: TableFilter[] = useMemo(() => { + const customFilters: TableFilter[] = useMemo(() => { return [ { name: 'active', @@ -367,8 +32,8 @@ export default function ParametricPartTable({ ]; }, []); - const tableColumns: TableColumn[] = useMemo(() => { - const partColumns: TableColumn[] = [ + const customColumns: TableColumn[] = useMemo(() => { + return [ PartColumn({ part: '', switchable: false @@ -386,43 +51,19 @@ export default function ParametricPartTable({ sortable: true } ]; - - return [...partColumns, ...parameterColumns]; - }, [parameterColumns]); + }, []); return ( - <> - {addParameter.modal} - {editParameter.modal} - { - cancelEvent(event); - - // Is this a "parameter" cell? - if (column?.accessor?.toString()?.startsWith('parameter_')) { - const col = column as any; - onParameterClick(col.extra.template, record); - } else if (record?.pk) { - // Navigate through to the part detail page - const url = getDetailUrl(ModelType.part, record.pk); - navigateToLink(url, navigate, event); - } - } - }} - /> - + ); } diff --git a/src/frontend/src/tables/part/PartBuildAllocationsTable.tsx b/src/frontend/src/tables/part/PartBuildAllocationsTable.tsx index 1fbda1c775..ee4b58f650 100644 --- a/src/frontend/src/tables/part/PartBuildAllocationsTable.tsx +++ b/src/frontend/src/tables/part/PartBuildAllocationsTable.tsx @@ -165,7 +165,8 @@ export default function PartBuildAllocationsTable({ project_code_detail: true, assembly_detail: true, build_detail: true, - order_outstanding: true + order_outstanding: true, + allocations: true }, enableColumnSwitching: true, enableSearch: false, diff --git a/src/frontend/src/tables/part/PartCategoryTemplateTable.tsx b/src/frontend/src/tables/part/PartCategoryTemplateTable.tsx index 6d705afbce..604e18609a 100644 --- a/src/frontend/src/tables/part/PartCategoryTemplateTable.tsx +++ b/src/frontend/src/tables/part/PartCategoryTemplateTable.tsx @@ -37,7 +37,7 @@ export default function PartCategoryTemplateTable({ value: categoryId, disabled: categoryId !== undefined }, - parameter_template: {}, + template: {}, default_value: {} }; }, [categoryId]); @@ -83,7 +83,7 @@ export default function PartCategoryTemplateTable({ accessor: 'category_detail.pathstring' }, { - accessor: 'parameter_template_detail.name', + accessor: 'template_detail.name', title: t`Parameter Template`, sortable: true, switchable: false @@ -99,8 +99,8 @@ export default function PartCategoryTemplateTable({ let units = ''; - if (record?.parameter_template_detail?.units) { - units = `[${record.parameter_template_detail.units}]`; + if (record?.template_detail?.units) { + units = `[${record.template_detail.units}]`; } return ( @@ -162,7 +162,9 @@ export default function PartCategoryTemplateTable({ tableActions: tableActions, enableDownload: true, params: { - category: categoryId + category: categoryId, + template_detail: true, + category_detail: true } }} /> diff --git a/src/frontend/src/tables/part/PartParameterTable.tsx b/src/frontend/src/tables/part/PartParameterTable.tsx deleted file mode 100644 index d7119e4324..0000000000 --- a/src/frontend/src/tables/part/PartParameterTable.tsx +++ /dev/null @@ -1,254 +0,0 @@ -import { t } from '@lingui/core/macro'; -import { Alert, Stack, Text } from '@mantine/core'; -import { IconLock } from '@tabler/icons-react'; -import { useCallback, useMemo, useState } from 'react'; - -import { AddItemButton } from '@lib/components/AddItemButton'; -import { - type RowAction, - RowDeleteAction, - RowEditAction -} from '@lib/components/RowActions'; -import { YesNoButton } from '@lib/components/YesNoButton'; -import { ApiEndpoints } from '@lib/enums/ApiEndpoints'; -import { UserRoles } from '@lib/enums/Roles'; -import { apiUrl } from '@lib/functions/Api'; -import type { TableFilter } from '@lib/types/Filters'; -import type { ApiFormFieldSet } from '@lib/types/Forms'; -import type { TableColumn } from '@lib/types/Tables'; -import { formatDecimal } from '../../defaults/formatters'; -import { usePartParameterFields } from '../../forms/PartForms'; -import { - useCreateApiFormModal, - useDeleteApiFormModal, - useEditApiFormModal -} from '../../hooks/UseForm'; -import { useTable } from '../../hooks/UseTable'; -import { useUserState } from '../../states/UserState'; -import { - DateColumn, - DescriptionColumn, - NoteColumn, - PartColumn, - UserColumn -} from '../ColumnRenderers'; -import { IncludeVariantsFilter, UserFilter } from '../Filter'; -import { InvenTreeTable } from '../InvenTreeTable'; -import { TableHoverCard } from '../TableHoverCard'; - -/** - * Construct a table listing parameters for a given part - */ -export function PartParameterTable({ - partId, - partLocked -}: Readonly<{ - partId: any; - partLocked?: boolean; -}>) { - const table = useTable('part-parameters'); - - const user = useUserState(); - - const tableColumns: TableColumn[] = useMemo(() => { - return [ - PartColumn({ - part: 'part_detail' - }), - { - accessor: 'part_detail.IPN', - sortable: false, - switchable: true, - defaultVisible: false - }, - { - accessor: 'template_detail.name', - switchable: false, - sortable: true, - ordering: 'name', - render: (record) => { - const variant = String(partId) != String(record.part); - - return ( - - {record.template_detail?.name} - - ); - } - }, - DescriptionColumn({ - accessor: 'template_detail.description' - }), - { - accessor: 'data', - switchable: false, - sortable: true, - render: (record) => { - const template = record.template_detail; - - if (template?.checkbox) { - return ; - } - - const extra: any[] = []; - - if ( - template.units && - record.data_numeric && - record.data_numeric != record.data - ) { - const numeric = formatDecimal(record.data_numeric, { digits: 15 }); - extra.push(`${numeric} [${template.units}]`); - } - - return ( - - ); - } - }, - { - accessor: 'template_detail.units', - ordering: 'units', - sortable: true - }, - NoteColumn({}), - DateColumn({ - accessor: 'updated', - title: t`Last Updated`, - sortable: true, - switchable: true - }), - UserColumn({ - accessor: 'updated_by_detail', - ordering: 'updated_by', - title: t`Updated By` - }) - ]; - }, [partId]); - - const tableFilters: TableFilter[] = useMemo(() => { - return [ - IncludeVariantsFilter(), - UserFilter({ - name: 'updated_by', - label: t`Updated By`, - description: t`Filter by user who last updated the parameter` - }) - ]; - }, []); - - const partParameterFields: ApiFormFieldSet = usePartParameterFields({}); - - const newParameter = useCreateApiFormModal({ - url: ApiEndpoints.part_parameter_list, - title: t`New Part Parameter`, - fields: useMemo(() => ({ ...partParameterFields }), [partParameterFields]), - focus: 'template', - initialData: { - part: partId - }, - table: table - }); - - const [selectedParameter, setSelectedParameter] = useState< - number | undefined - >(undefined); - - const editParameter = useEditApiFormModal({ - url: ApiEndpoints.part_parameter_list, - pk: selectedParameter, - title: t`Edit Part Parameter`, - focus: 'data', - fields: useMemo(() => ({ ...partParameterFields }), [partParameterFields]), - table: table - }); - - const deleteParameter = useDeleteApiFormModal({ - url: ApiEndpoints.part_parameter_list, - pk: selectedParameter, - title: t`Delete Part Parameter`, - table: table - }); - - // Callback for row actions - const rowActions = useCallback( - (record: any): RowAction[] => { - // Actions not allowed for "variant" rows - if (String(partId) != String(record.part)) { - return []; - } - - return [ - RowEditAction({ - tooltip: t`Edit Part Parameter`, - hidden: partLocked || !user.hasChangeRole(UserRoles.part), - onClick: () => { - setSelectedParameter(record.pk); - editParameter.open(); - } - }), - RowDeleteAction({ - tooltip: t`Delete Part Parameter`, - hidden: partLocked || !user.hasDeleteRole(UserRoles.part), - onClick: () => { - setSelectedParameter(record.pk); - deleteParameter.open(); - } - }) - ]; - }, - [partId, partLocked, user] - ); - - // Custom table actions - const tableActions = useMemo(() => { - return [ -